diff --git a/README.md b/README.md index 6b11d2a..25474f6 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The Common Education Data Standards (CEDS) Integrated Data Store (IDS) factors t To create a new instance of the CEDS IDS on your SQL Server, perform the following steps. 1. Open the database creation script at /src/ddl/CEDS-IDS.sql using your preferred SQL client. 2. Connect to the server on which you want to create the CEDS IDS instance. -3. Find and replace the existing database name in the script (eg. CEDS-IDS-V11_0_0_0) with the database name of your choice. +3. Find and replace the existing database name in the script (eg. CEDS-IDS-V12_0_0_0) with the database name of your choice. 4. Run the script. The database is empty by default. Proceed with the following instructions to load CEDS Element metadata and CEDS Option Set values into the reference tables. diff --git a/doc/CEDS OSC IDS Summary v11 Changes.xlsx b/doc/CEDS OSC IDS Summary v11 Changes.xlsx deleted file mode 100644 index 652c421..0000000 Binary files a/doc/CEDS OSC IDS Summary v11 Changes.xlsx and /dev/null differ diff --git a/doc/CEDS OSC IDS Summary v12 Changes.xlsx b/doc/CEDS OSC IDS Summary v12 Changes.xlsx new file mode 100644 index 0000000..80f7931 Binary files /dev/null and b/doc/CEDS OSC IDS Summary v12 Changes.xlsx differ diff --git a/doc/CEDS OSC IDS v11 Breaking Changes Notes.docx b/doc/CEDS OSC IDS v11 Breaking Changes Notes.docx deleted file mode 100644 index 975e12e..0000000 Binary files a/doc/CEDS OSC IDS v11 Breaking Changes Notes.docx and /dev/null differ diff --git a/doc/CEDS OSC IDS v12 Breaking Changes Notes.docx b/doc/CEDS OSC IDS v12 Breaking Changes Notes.docx new file mode 100644 index 0000000..12f1a10 Binary files /dev/null and b/doc/CEDS OSC IDS v12 Breaking Changes Notes.docx differ diff --git a/doc/IDS-Reference.xlsx b/doc/IDS-Reference.xlsx index 41a5aba..ae2b165 100644 Binary files a/doc/IDS-Reference.xlsx and b/doc/IDS-Reference.xlsx differ diff --git a/src/ddl/CEDS-IDS.sql b/src/ddl/CEDS-IDS.sql index a4ad7cf..f5c145a 100644 --- a/src/ddl/CEDS-IDS.sql +++ b/src/ddl/CEDS-IDS.sql @@ -3,7 +3,7 @@ GO /* - Copyright 2023 Common Education Data Standards + Copyright 2024 Common Education Data Standards Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -19,13 +19,13 @@ GO Common Education Data Standards (CEDS) - Version 11.0.0.0 + Version 12.0.0.0 Integration Data Store (IDS) MODEL DATABASE This script creates the tables, constraints, and relationships defined in - version 9 of the CEDS IDS. The script was generated from a model database + version 12 of the CEDS IDS. The script was generated from a model database hosted on a Microsoft SQL Server 2019 platform. Questions on this script can be sent to ceds@ed.gov @@ -34,91 +34,91 @@ GO http://ceds.ed.gov, and the CEDS Open Source Community (OSC) site, https://github.com/CEDStandards/CEDS-IDS. The CEDS-IDS OSC site also has additional files to populate - the Ref tables with CEDS option sets and a script to update a Version 10.0.0.0 and 10.0.1.0 - model database to Version 11.0.0.0. + the Ref tables with CEDS option sets and a script to update a Version 11.0.0.0 and 12.0.0.0 + - WARNING: This script creates a database named CEDS-IDS-V11_0_0_0 on the default + WARNING: This script creates a database named CEDS-IDS-V12_0_0_0 on the default file location for the database. */ -/****** Object: Database [CEDS-IDS-V11_0_0_0] Script Date: 4/11/2023 3:50:02 PM ******/ -CREATE DATABASE [CEDS-IDS-V11_0_0_0] +/****** Object: Database [CEDS-IDS-V12_0_0_0] Script Date: 3/15/2024 3:50:02 PM ******/ +CREATE DATABASE [CEDS-IDS-V12_0_0_0] CONTAINMENT = NONE GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET COMPATIBILITY_LEVEL = 150 +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET COMPATIBILITY_LEVEL = 150 GO IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')) begin -EXEC [CEDS-IDS-V11_0_0_0].[dbo].[sp_fulltext_database] @action = 'enable' +EXEC [CEDS-IDS-V12_0_0_0].[dbo].[sp_fulltext_database] @action = 'enable' end GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET ANSI_NULL_DEFAULT OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET ANSI_NULL_DEFAULT OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET ANSI_NULLS OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET ANSI_NULLS OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET ANSI_PADDING OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET ANSI_PADDING OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET ANSI_WARNINGS OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET ANSI_WARNINGS OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET ARITHABORT OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET ARITHABORT OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET AUTO_CLOSE OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET AUTO_CLOSE OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET AUTO_SHRINK OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET AUTO_SHRINK OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET AUTO_UPDATE_STATISTICS ON +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET AUTO_UPDATE_STATISTICS ON GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET CURSOR_CLOSE_ON_COMMIT OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET CURSOR_CLOSE_ON_COMMIT OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET CURSOR_DEFAULT GLOBAL +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET CURSOR_DEFAULT GLOBAL GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET CONCAT_NULL_YIELDS_NULL OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET CONCAT_NULL_YIELDS_NULL OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET NUMERIC_ROUNDABORT OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET NUMERIC_ROUNDABORT OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET QUOTED_IDENTIFIER OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET QUOTED_IDENTIFIER OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET RECURSIVE_TRIGGERS OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET RECURSIVE_TRIGGERS OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET ENABLE_BROKER +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET ENABLE_BROKER GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET AUTO_UPDATE_STATISTICS_ASYNC OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET AUTO_UPDATE_STATISTICS_ASYNC OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET DATE_CORRELATION_OPTIMIZATION OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET DATE_CORRELATION_OPTIMIZATION OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET TRUSTWORTHY OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET TRUSTWORTHY OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET ALLOW_SNAPSHOT_ISOLATION OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET ALLOW_SNAPSHOT_ISOLATION OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET PARAMETERIZATION SIMPLE +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET PARAMETERIZATION SIMPLE GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET READ_COMMITTED_SNAPSHOT OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET READ_COMMITTED_SNAPSHOT OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET HONOR_BROKER_PRIORITY OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET HONOR_BROKER_PRIORITY OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET RECOVERY FULL +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET RECOVERY FULL GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET MULTI_USER +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET MULTI_USER GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET PAGE_VERIFY CHECKSUM +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET PAGE_VERIFY CHECKSUM GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET DB_CHAINING OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET DB_CHAINING OFF GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF ) +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF ) GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET TARGET_RECOVERY_TIME = 60 SECONDS +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET TARGET_RECOVERY_TIME = 60 SECONDS GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET DELAYED_DURABILITY = DISABLED +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET DELAYED_DURABILITY = DISABLED GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET ACCELERATED_DATABASE_RECOVERY = OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET ACCELERATED_DATABASE_RECOVERY = OFF GO -EXEC sys.sp_db_vardecimal_storage_format N'CEDS-IDS-V11_0_0_0', N'ON' +EXEC sys.sp_db_vardecimal_storage_format N'CEDS-IDS-V12_0_0_0', N'ON' GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET QUERY_STORE = OFF +ALTER DATABASE [CEDS-IDS-V12_0_0_0] SET QUERY_STORE = OFF GO -USE [CEDS-IDS-V11_0_0_0] +USE [CEDS-IDS-V12_0_0_0] GO -/****** Object: UserDefinedFunction [dbo].[fnSplit] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: UserDefinedFunction [dbo].[fnSplit] Script Date: 3/15/2024 3:50:02 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -155,15 +155,6 @@ begin return end; - - - - -GO -/****** Object: View [dbo].[vCEDSElementDetails] Script Date: 4/11/2023 3:50:02 PM ******/ -SET ANSI_NULLS ON -GO -SET QUOTED_IDENTIFIER ON GO CREATE VIEW [dbo].[vCEDSElementDetails] @@ -220,8 +211,9 @@ WHERE t.table_type = 'BASE TABLE' + GO -/****** Object: View [dbo].[vCEDSMapping] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: View [dbo].[vCEDSMapping] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -273,8 +265,9 @@ WHERE ms.RowNumber = es.RowNumber + GO -/****** Object: Table [dbo].[_CEDSElements] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[_CEDSElements] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -298,7 +291,7 @@ CREATE TABLE [dbo].[_CEDSElements]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[_CEDStoNDSMapping] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[_CEDStoNDSMapping] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -317,7 +310,7 @@ CREATE TABLE [dbo].[_CEDStoNDSMapping]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Activity] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[Activity] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -336,7 +329,7 @@ CREATE TABLE [dbo].[Activity]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ActivityRecognition] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[ActivityRecognition] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -355,7 +348,7 @@ CREATE TABLE [dbo].[ActivityRecognition]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AeCourse] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AeCourse] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -375,7 +368,7 @@ CREATE TABLE [dbo].[AeCourse]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AeProvider] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AeProvider] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -394,7 +387,7 @@ CREATE TABLE [dbo].[AeProvider]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AeStaff] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AeStaff] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -415,7 +408,7 @@ CREATE TABLE [dbo].[AeStaff]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AeStudentAcademicRecord] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AeStudentAcademicRecord] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -436,7 +429,7 @@ CREATE TABLE [dbo].[AeStudentAcademicRecord]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AeStudentEmployment] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AeStudentEmployment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -457,7 +450,7 @@ CREATE TABLE [dbo].[AeStudentEmployment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ApipInteraction] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[ApipInteraction] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -479,7 +472,7 @@ CREATE TABLE [dbo].[ApipInteraction]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[Application] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[Application] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -498,7 +491,7 @@ CREATE TABLE [dbo].[Application]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Assessment] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[Assessment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -530,7 +523,7 @@ CREATE TABLE [dbo].[Assessment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Assessment_AssessmentAdministration] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[Assessment_AssessmentAdministration] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -554,7 +547,7 @@ CREATE TABLE [dbo].[Assessment_AssessmentAdministration]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentAccommodation] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentAccommodation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -574,7 +567,7 @@ CREATE TABLE [dbo].[AssessmentAccommodation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentAdministration] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentAdministration] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -601,7 +594,7 @@ CREATE TABLE [dbo].[AssessmentAdministration]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentAdministration_Organization] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentAdministration_Organization] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -625,7 +618,7 @@ CREATE TABLE [dbo].[AssessmentAdministration_Organization]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentAsset] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentAsset] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -654,7 +647,7 @@ CREATE TABLE [dbo].[AssessmentAsset]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentELDevelopmentalDomain] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentELDevelopmentalDomain] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -678,7 +671,7 @@ CREATE TABLE [dbo].[AssessmentELDevelopmentalDomain]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentForm] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentForm] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -713,7 +706,7 @@ CREATE TABLE [dbo].[AssessmentForm]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentForm_AssessmentAsset] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentForm_AssessmentAsset] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -737,7 +730,7 @@ CREATE TABLE [dbo].[AssessmentForm_AssessmentAsset]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentForm_AssessmentFormSection] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentForm_AssessmentFormSection] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -757,7 +750,7 @@ CREATE TABLE [dbo].[AssessmentForm_AssessmentFormSection]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentFormSection] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentFormSection] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -786,7 +779,7 @@ CREATE TABLE [dbo].[AssessmentFormSection]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentFormSection_AssessmentAsset] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentFormSection_AssessmentAsset] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -810,7 +803,7 @@ CREATE TABLE [dbo].[AssessmentFormSection_AssessmentAsset]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentFormSection_AssessmentItem] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentFormSection_AssessmentItem] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -830,7 +823,7 @@ CREATE TABLE [dbo].[AssessmentFormSection_AssessmentItem]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentItem] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentItem] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -869,7 +862,7 @@ CREATE TABLE [dbo].[AssessmentItem]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentItemApip] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentItemApip] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -896,7 +889,7 @@ CREATE TABLE [dbo].[AssessmentItemApip]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentItemApipDescription] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentItemApipDescription] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -941,7 +934,7 @@ CREATE TABLE [dbo].[AssessmentItemApipDescription]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentItemCharacteristic] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentItemCharacteristic] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -962,7 +955,7 @@ CREATE TABLE [dbo].[AssessmentItemCharacteristic]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentItemPossibleResponse] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentItemPossibleResponse] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -985,7 +978,7 @@ CREATE TABLE [dbo].[AssessmentItemPossibleResponse]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentItemResponse] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentItemResponse] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1021,7 +1014,7 @@ CREATE TABLE [dbo].[AssessmentItemResponse]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentItemResponseTheory] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentItemResponseTheory] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1053,7 +1046,7 @@ CREATE TABLE [dbo].[AssessmentItemResponseTheory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentItemRubricCriterionResult] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentItemRubricCriterionResult] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1072,7 +1065,7 @@ CREATE TABLE [dbo].[AssessmentItemRubricCriterionResult]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentLanguage] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentLanguage] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1096,7 +1089,7 @@ CREATE TABLE [dbo].[AssessmentLanguage]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentLevelsForWhichDesigned] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentLevelsForWhichDesigned] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1120,7 +1113,7 @@ CREATE TABLE [dbo].[AssessmentLevelsForWhichDesigned]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentNeedApipContent] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentNeedApipContent] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1146,7 +1139,7 @@ CREATE TABLE [dbo].[AssessmentNeedApipContent]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentNeedApipControl] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentNeedApipControl] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1169,7 +1162,7 @@ CREATE TABLE [dbo].[AssessmentNeedApipControl]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentNeedApipDisplay] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentNeedApipDisplay] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1194,7 +1187,7 @@ CREATE TABLE [dbo].[AssessmentNeedApipDisplay]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentNeedBraille] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentNeedBraille] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1219,7 +1212,7 @@ CREATE TABLE [dbo].[AssessmentNeedBraille]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentNeedScreenEnhancement] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentNeedScreenEnhancement] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1241,7 +1234,7 @@ CREATE TABLE [dbo].[AssessmentNeedScreenEnhancement]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentParticipantSession] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentParticipantSession] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1274,7 +1267,7 @@ CREATE TABLE [dbo].[AssessmentParticipantSession]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentParticipantSession_Accommodation] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentParticipantSession_Accommodation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1293,7 +1286,7 @@ CREATE TABLE [dbo].[AssessmentParticipantSession_Accommodation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentPerformanceLevel] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentPerformanceLevel] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1317,7 +1310,7 @@ CREATE TABLE [dbo].[AssessmentPerformanceLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentPersonalNeedLanguageLearner] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentPersonalNeedLanguageLearner] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1338,7 +1331,7 @@ CREATE TABLE [dbo].[AssessmentPersonalNeedLanguageLearner]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentPersonalNeedScreenReader] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentPersonalNeedScreenReader] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1361,7 +1354,7 @@ CREATE TABLE [dbo].[AssessmentPersonalNeedScreenReader]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentPersonalNeedsProfile] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentPersonalNeedsProfile] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1381,7 +1374,7 @@ CREATE TABLE [dbo].[AssessmentPersonalNeedsProfile]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentPersonalNeedsProfileContent] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentPersonalNeedsProfileContent] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1416,7 +1409,7 @@ CREATE TABLE [dbo].[AssessmentPersonalNeedsProfileContent]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentPersonalNeedsProfileControl] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentPersonalNeedsProfileControl] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1434,7 +1427,7 @@ CREATE TABLE [dbo].[AssessmentPersonalNeedsProfileControl]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentPersonalNeedsProfileDisplay] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentPersonalNeedsProfileDisplay] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1452,7 +1445,7 @@ CREATE TABLE [dbo].[AssessmentPersonalNeedsProfileDisplay]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentPersonalNeedsProfileScreenEnhancement] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentPersonalNeedsProfileScreenEnhancement] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1470,7 +1463,7 @@ CREATE TABLE [dbo].[AssessmentPersonalNeedsProfileScreenEnhancement]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentRegistration] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentRegistration] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1512,7 +1505,7 @@ CREATE TABLE [dbo].[AssessmentRegistration]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentRegistration_Accommodation] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentRegistration_Accommodation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1531,7 +1524,7 @@ CREATE TABLE [dbo].[AssessmentRegistration_Accommodation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentResult] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentResult] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1569,7 +1562,7 @@ CREATE TABLE [dbo].[AssessmentResult]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentResult_PerformanceLevel] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentResult_PerformanceLevel] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1588,7 +1581,7 @@ CREATE TABLE [dbo].[AssessmentResult_PerformanceLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentResultRubricCriterionResult] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentResultRubricCriterionResult] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1612,7 +1605,7 @@ CREATE TABLE [dbo].[AssessmentResultRubricCriterionResult]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentSession] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentSession] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1643,7 +1636,7 @@ CREATE TABLE [dbo].[AssessmentSession]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentSessionStaffRole] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentSessionStaffRole] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1664,7 +1657,7 @@ CREATE TABLE [dbo].[AssessmentSessionStaffRole]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentSubtest] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentSubtest] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1700,7 +1693,7 @@ CREATE TABLE [dbo].[AssessmentSubtest]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentSubtest_AssessmentItem] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentSubtest_AssessmentItem] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1722,7 +1715,7 @@ CREATE TABLE [dbo].[AssessmentSubtest_AssessmentItem]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentSubtest_CompetencyDefinition] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentSubtest_CompetencyDefinition] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1741,7 +1734,7 @@ CREATE TABLE [dbo].[AssessmentSubtest_CompetencyDefinition]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentSubtestELDevelopmentalDomain] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentSubtestELDevelopmentalDomain] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1765,7 +1758,7 @@ CREATE TABLE [dbo].[AssessmentSubtestELDevelopmentalDomain]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AssessmentSubtestLevelsForWhichDesigned] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AssessmentSubtestLevelsForWhichDesigned] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1789,7 +1782,7 @@ CREATE TABLE [dbo].[AssessmentSubtestLevelsForWhichDesigned]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Authentication] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[Authentication] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1812,7 +1805,7 @@ CREATE TABLE [dbo].[Authentication]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Authorization] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[Authorization] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1834,7 +1827,7 @@ CREATE TABLE [dbo].[Authorization]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[AuthorizationDocument] Script Date: 4/11/2023 3:50:02 PM ******/ +/****** Object: Table [dbo].[AuthorizationDocument] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1856,7 +1849,29 @@ CREATE TABLE [dbo].[AuthorizationDocument]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[BuildingSpace] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[BoardMembership] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[BoardMembership]( + [BoardMembershipId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationPersonRoleId] [int] NOT NULL, + [RefBoardMemberPositionTypeId] [int] NULL, + [RefBoardMembershipTypeId] [int] NULL, + [BoardMemberTermStartDate] [datetime] NULL, + [BoardMemberTermEndDate] [datetime] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_BoardMembership] PRIMARY KEY CLUSTERED +( + [BoardMembershipId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[BuildingSpace] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1894,7 +1909,7 @@ CREATE TABLE [dbo].[BuildingSpace]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[BuildingSpaceUtilization] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[BuildingSpaceUtilization] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1918,7 +1933,7 @@ CREATE TABLE [dbo].[BuildingSpaceUtilization]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[BuildingSystemCategory] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[BuildingSystemCategory] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1950,7 +1965,7 @@ CREATE TABLE [dbo].[BuildingSystemCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[BuildingSystemComponent] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[BuildingSystemComponent] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1976,7 +1991,7 @@ CREATE TABLE [dbo].[BuildingSystemComponent]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[BuildingSystemComponentService] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[BuildingSystemComponentService] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -1996,7 +2011,7 @@ CREATE TABLE [dbo].[BuildingSystemComponentService]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Classroom] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[Classroom] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2015,7 +2030,7 @@ CREATE TABLE [dbo].[Classroom]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CompetencyDefAssociation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CompetencyDefAssociation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2044,7 +2059,7 @@ CREATE TABLE [dbo].[CompetencyDefAssociation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CompetencyDefEducationLevel] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CompetencyDefEducationLevel] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2063,7 +2078,7 @@ CREATE TABLE [dbo].[CompetencyDefEducationLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CompetencyDefinition] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CompetencyDefinition] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2113,7 +2128,7 @@ CREATE TABLE [dbo].[CompetencyDefinition]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[CompetencyDefinition_CompetencySet] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CompetencyDefinition_CompetencySet] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2132,7 +2147,7 @@ CREATE TABLE [dbo].[CompetencyDefinition_CompetencySet]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CompetencyFramework] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CompetencyFramework] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2166,7 +2181,7 @@ CREATE TABLE [dbo].[CompetencyFramework]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CompetencySet] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CompetencySet] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2186,7 +2201,7 @@ CREATE TABLE [dbo].[CompetencySet]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CompetencySet_Rubric] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CompetencySet_Rubric] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2205,7 +2220,7 @@ CREATE TABLE [dbo].[CompetencySet_Rubric]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CompetencySet_RubricCriterion] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CompetencySet_RubricCriterion] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2224,7 +2239,7 @@ CREATE TABLE [dbo].[CompetencySet_RubricCriterion]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CoreKnowledgeArea] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CoreKnowledgeArea] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2248,7 +2263,7 @@ CREATE TABLE [dbo].[CoreKnowledgeArea]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Course] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[Course] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2273,13 +2288,53 @@ CREATE TABLE [dbo].[Course]( [DataCollectionId] [int] NULL, [CourseLevelApprovalIndicator] [bit] NULL, [RefCourseLevelTypeId] [int] NULL, + [SequenceOfCourse] [nvarchar](10) NULL, CONSTRAINT [PK_Course] PRIMARY KEY CLUSTERED ( [CourseId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CourseSection] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CourseFundingSource] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[CourseFundingSource]( + [CourseFundingSourceId] [int] IDENTITY(1,1) NOT NULL, + [CourseId] [int] NOT NULL, + [FinancialAccountId] [int] NOT NULL, + [RefCourseFundingProgramAllowedId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_CourseFundingSource] PRIMARY KEY CLUSTERED +( + [CourseFundingSourceId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[CourseRelationship] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[CourseRelationship]( + [CourseRelationshipId] [int] IDENTITY(1,1) NOT NULL, + [CourseId] [int] NOT NULL, + [RelatedCourseId] [int] NOT NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_CourseRelationship] PRIMARY KEY CLUSTERED +( + [CourseRelationshipId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[CourseSection] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2310,7 +2365,7 @@ CREATE TABLE [dbo].[CourseSection]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CourseSectionAssessmentReporting] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CourseSectionAssessmentReporting] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2329,7 +2384,7 @@ CREATE TABLE [dbo].[CourseSectionAssessmentReporting]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CourseSectionLevel] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CourseSectionLevel] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2348,7 +2403,7 @@ CREATE TABLE [dbo].[CourseSectionLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CourseSectionLocation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CourseSectionLocation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2368,7 +2423,7 @@ CREATE TABLE [dbo].[CourseSectionLocation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CourseSectionSchedule] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CourseSectionSchedule] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2391,7 +2446,7 @@ CREATE TABLE [dbo].[CourseSectionSchedule]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CredentialAward] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CredentialAward] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2422,7 +2477,7 @@ CREATE TABLE [dbo].[CredentialAward]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[CredentialAwardCredit] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CredentialAwardCredit] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2442,7 +2497,7 @@ CREATE TABLE [dbo].[CredentialAwardCredit]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CredentialAwardEvidence] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CredentialAwardEvidence] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2462,7 +2517,27 @@ CREATE TABLE [dbo].[CredentialAwardEvidence]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CredentialCriteriaCourse] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CredentialAwardRelationship] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[CredentialAwardRelationship]( + [CredentialAwardRelationshipId] [int] IDENTITY(1,1) NOT NULL, + [RefCredentialAwardRelationshipId] [int] NULL, + [RelatedCredentialAwardId] [int] NOT NULL, + [CredentialAwardId] [int] NOT NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_CredentialAwardRelationship] PRIMARY KEY CLUSTERED +( + [CredentialAwardRelationshipId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[CredentialCriteriaCourse] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2481,7 +2556,7 @@ CREATE TABLE [dbo].[CredentialCriteriaCourse]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CredentialDefAgent] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CredentialDefAgent] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2502,7 +2577,7 @@ CREATE TABLE [dbo].[CredentialDefAgent]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CredentialDefAgentCredential] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CredentialDefAgentCredential] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2521,7 +2596,7 @@ CREATE TABLE [dbo].[CredentialDefAgentCredential]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CredentialDefCategory] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CredentialDefCategory] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2541,7 +2616,7 @@ CREATE TABLE [dbo].[CredentialDefCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CredentialDefCriteria] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CredentialDefCriteria] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2567,7 +2642,28 @@ CREATE TABLE [dbo].[CredentialDefCriteria]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CredentialDefIdentifier] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CredentialDefGradeLevel] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[CredentialDefGradeLevel]( + [CredentialDefGradeLevelId] [int] IDENTITY(1,1) NOT NULL, + [RefGradeLevelId] [int] NULL, + [RefLowGradeLevelId] [int] NULL, + [CredentialDefinitionId] [int] NOT NULL, + [RefHighGradeLevelId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_CredentialDefGradeLevel] PRIMARY KEY CLUSTERED +( + [CredentialDefGradeLevelId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[CredentialDefIdentifier] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2587,7 +2683,7 @@ CREATE TABLE [dbo].[CredentialDefIdentifier]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CredentialDefinition] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CredentialDefinition] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2624,7 +2720,7 @@ CREATE TABLE [dbo].[CredentialDefinition]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[CredentialIssuer] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CredentialIssuer] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2645,7 +2741,7 @@ CREATE TABLE [dbo].[CredentialIssuer]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CredentialOffered] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CredentialOffered] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2666,7 +2762,7 @@ CREATE TABLE [dbo].[CredentialOffered]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CteCourse] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CteCourse] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2698,7 +2794,7 @@ CREATE TABLE [dbo].[CteCourse]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[CteStudentAcademicRecord] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[CteStudentAcademicRecord] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2720,7 +2816,7 @@ CREATE TABLE [dbo].[CteStudentAcademicRecord]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[DataCollection] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[DataCollection] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2742,7 +2838,7 @@ CREATE TABLE [dbo].[DataCollection]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[EarlyChildhoodCredential] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[EarlyChildhoodCredential] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2761,7 +2857,7 @@ CREATE TABLE [dbo].[EarlyChildhoodCredential]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[EarlyChildhoodProgramTypeOffered] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[EarlyChildhoodProgramTypeOffered] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2787,7 +2883,7 @@ CREATE TABLE [dbo].[EarlyChildhoodProgramTypeOffered]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELChildDemographic] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELChildDemographic] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2808,7 +2904,7 @@ CREATE TABLE [dbo].[ELChildDemographic]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELChildDevelopmentalAssessment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELChildDevelopmentalAssessment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2828,7 +2924,7 @@ CREATE TABLE [dbo].[ELChildDevelopmentalAssessment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELChildHealth] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELChildHealth] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2848,7 +2944,7 @@ CREATE TABLE [dbo].[ELChildHealth]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELChildIndividualizedProgram] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELChildIndividualizedProgram] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2869,7 +2965,7 @@ CREATE TABLE [dbo].[ELChildIndividualizedProgram]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELChildOutcomeSummary] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELChildOutcomeSummary] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2893,7 +2989,7 @@ CREATE TABLE [dbo].[ELChildOutcomeSummary]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELChildProgramEligibility] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELChildProgramEligibility] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2914,7 +3010,7 @@ CREATE TABLE [dbo].[ELChildProgramEligibility]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELChildService] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELChildService] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2938,7 +3034,7 @@ CREATE TABLE [dbo].[ELChildService]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELChildServicesApplication] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELChildServicesApplication] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2965,7 +3061,7 @@ CREATE TABLE [dbo].[ELChildServicesApplication]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELChildTransitionPlan] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELChildTransitionPlan] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -2992,7 +3088,7 @@ CREATE TABLE [dbo].[ELChildTransitionPlan]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELClassSection] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELClassSection] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3017,7 +3113,7 @@ CREATE TABLE [dbo].[ELClassSection]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELClassSectionService] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELClassSectionService] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3041,7 +3137,7 @@ CREATE TABLE [dbo].[ELClassSectionService]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELCourse] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELCourse] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3063,7 +3159,7 @@ CREATE TABLE [dbo].[ELCourse]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELEnrollment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELEnrollment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3090,7 +3186,7 @@ CREATE TABLE [dbo].[ELEnrollment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELEnrollmentOtherFunding] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELEnrollmentOtherFunding] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3109,7 +3205,7 @@ CREATE TABLE [dbo].[ELEnrollmentOtherFunding]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELFacilityLicensing] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELFacilityLicensing] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3132,7 +3228,7 @@ CREATE TABLE [dbo].[ELFacilityLicensing]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[EligibilityEvaluation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[EligibilityEvaluation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3151,7 +3247,7 @@ CREATE TABLE [dbo].[EligibilityEvaluation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[ELOrganization] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELOrganization] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3178,7 +3274,7 @@ CREATE TABLE [dbo].[ELOrganization]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELOrganizationAvailability] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELOrganizationAvailability] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3202,7 +3298,7 @@ CREATE TABLE [dbo].[ELOrganizationAvailability]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELOrganizationFunds] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELOrganizationFunds] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3227,7 +3323,7 @@ CREATE TABLE [dbo].[ELOrganizationFunds]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELOrganizationMonitoring] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELOrganizationMonitoring] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3250,7 +3346,7 @@ CREATE TABLE [dbo].[ELOrganizationMonitoring]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELOrganizationStudentResponsibility] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELOrganizationStudentResponsibility] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3269,7 +3365,7 @@ CREATE TABLE [dbo].[ELOrganizationStudentResponsibility]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELProgramLicensing] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELProgramLicensing] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3295,7 +3391,7 @@ CREATE TABLE [dbo].[ELProgramLicensing]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELQualityInitiative] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELQualityInitiative] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3320,7 +3416,7 @@ CREATE TABLE [dbo].[ELQualityInitiative]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELQualityRatingImprovement] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELQualityRatingImprovement] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3343,7 +3439,7 @@ CREATE TABLE [dbo].[ELQualityRatingImprovement]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELServicePartner] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELServicePartner] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3365,7 +3461,7 @@ CREATE TABLE [dbo].[ELServicePartner]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELStaff] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELStaff] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3384,7 +3480,7 @@ CREATE TABLE [dbo].[ELStaff]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELStaffAssignment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELStaffAssignment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3416,7 +3512,7 @@ CREATE TABLE [dbo].[ELStaffAssignment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELStaffEducation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELStaffEducation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3440,7 +3536,7 @@ CREATE TABLE [dbo].[ELStaffEducation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ELStaffEmployment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ELStaffEmployment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3476,7 +3572,7 @@ CREATE TABLE [dbo].[ELStaffEmployment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Facility] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[Facility] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3504,13 +3600,14 @@ CREATE TABLE [dbo].[Facility]( [RecordEndDateTime] [datetime] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [TemperatureControlledBuildingArea] [nvarchar](100) NULL, CONSTRAINT [PK_Facility] PRIMARY KEY CLUSTERED ( [FacilityId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityAudit] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityAudit] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3530,7 +3627,7 @@ CREATE TABLE [dbo].[FacilityAudit]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityCompliance] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityCompliance] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3558,7 +3655,7 @@ CREATE TABLE [dbo].[FacilityCompliance]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityDesign] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityDesign] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3581,7 +3678,7 @@ CREATE TABLE [dbo].[FacilityDesign]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityDesignConstruction] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityDesignConstruction] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3611,7 +3708,7 @@ CREATE TABLE [dbo].[FacilityDesignConstruction]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityEnergy] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityEnergy] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3633,7 +3730,7 @@ CREATE TABLE [dbo].[FacilityEnergy]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityFinance] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityFinance] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3655,7 +3752,7 @@ CREATE TABLE [dbo].[FacilityFinance]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityFinancial] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityFinancial] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3676,7 +3773,7 @@ CREATE TABLE [dbo].[FacilityFinancial]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityHazard] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityHazard] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3701,7 +3798,7 @@ CREATE TABLE [dbo].[FacilityHazard]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityJointUse] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityJointUse] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3716,13 +3813,15 @@ CREATE TABLE [dbo].[FacilityJointUse]( [RecordEndDateTime] [datetime] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [RefFacilityJointUseIndicatorId] [int] NULL, + [FacilityJointUseDescription] [nvarchar](300) NULL, CONSTRAINT [PK_FacilityJointUse] PRIMARY KEY CLUSTERED ( [FacilityJointUseId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityLease] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityLease] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3743,7 +3842,7 @@ CREATE TABLE [dbo].[FacilityLease]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityLocation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityLocation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3767,7 +3866,7 @@ CREATE TABLE [dbo].[FacilityLocation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityManagement] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityManagement] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3790,7 +3889,7 @@ CREATE TABLE [dbo].[FacilityManagement]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityManagementPlan] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityManagementPlan] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3811,7 +3910,7 @@ CREATE TABLE [dbo].[FacilityManagementPlan]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityMandate] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityMandate] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3834,7 +3933,7 @@ CREATE TABLE [dbo].[FacilityMandate]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityMortgage] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityMortgage] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3856,7 +3955,7 @@ CREATE TABLE [dbo].[FacilityMortgage]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityMortgageFee] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityMortgageFee] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3880,7 +3979,7 @@ CREATE TABLE [dbo].[FacilityMortgageFee]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityRelationship] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityRelationship] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3904,7 +4003,7 @@ CREATE TABLE [dbo].[FacilityRelationship]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilitySchoolDesign] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilitySchoolDesign] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3928,7 +4027,7 @@ CREATE TABLE [dbo].[FacilitySchoolDesign]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilitySite] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilitySite] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3950,7 +4049,7 @@ CREATE TABLE [dbo].[FacilitySite]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FacilityUtilization] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FacilityUtilization] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -3974,7 +4073,7 @@ CREATE TABLE [dbo].[FacilityUtilization]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FinancialAccount] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FinancialAccount] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4001,13 +4100,14 @@ CREATE TABLE [dbo].[FinancialAccount]( [DataCollectionId] [int] NULL, [RefFederalProgramCodeId] [int] NULL, [RefFederalProgramSubgrantCodeId] [int] NULL, + [RefFinancialAccountGASBRevenueClassificationId] [int] NULL, CONSTRAINT [PK_FinancialAccount] PRIMARY KEY CLUSTERED ( [FinancialAccountId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FinancialAccountLocal] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FinancialAccountLocal] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4028,13 +4128,14 @@ CREATE TABLE [dbo].[FinancialAccountLocal]( [RecordEndDateTime] [datetime] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [RefFinancialAccountLocalGASBRevenueClassificationId] [int] NULL, CONSTRAINT [PK_FinancialAccountLocal] PRIMARY KEY CLUSTERED ( [FinancialAccountLocalId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FinancialAccountProgram] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FinancialAccountProgram] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4053,7 +4154,7 @@ CREATE TABLE [dbo].[FinancialAccountProgram]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FinancialAidApplication] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FinancialAidApplication] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4073,7 +4174,7 @@ CREATE TABLE [dbo].[FinancialAidApplication]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[FinancialAidAward] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[FinancialAidAward] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4095,7 +4196,7 @@ CREATE TABLE [dbo].[FinancialAidAward]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Goal] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[Goal] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4117,7 +4218,7 @@ CREATE TABLE [dbo].[Goal]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[GoalMeasurement] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[GoalMeasurement] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4139,7 +4240,7 @@ CREATE TABLE [dbo].[GoalMeasurement]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[GoalMeasurementCriterion] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[GoalMeasurementCriterion] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4161,7 +4262,7 @@ CREATE TABLE [dbo].[GoalMeasurementCriterion]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[GoalPerformance] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[GoalPerformance] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4183,7 +4284,7 @@ CREATE TABLE [dbo].[GoalPerformance]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[IDEAEligibilityEvaluationCategory] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IDEAEligibilityEvaluationCategory] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4207,7 +4308,7 @@ CREATE TABLE [dbo].[IDEAEligibilityEvaluationCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[IDSVersion] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IDSVersion] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4223,7 +4324,7 @@ CREATE TABLE [dbo].[IDSVersion]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[IEPAuthorization] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IEPAuthorization] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4243,7 +4344,7 @@ CREATE TABLE [dbo].[IEPAuthorization]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[IEPAuthorizationRejected] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IEPAuthorizationRejected] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4263,7 +4364,7 @@ CREATE TABLE [dbo].[IEPAuthorizationRejected]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[IEPPresentLevel] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IEPPresentLevel] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4288,7 +4389,7 @@ CREATE TABLE [dbo].[IEPPresentLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[Incident] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[Incident] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4325,7 +4426,25 @@ CREATE TABLE [dbo].[Incident]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[IncidentPerson] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IncidentActivity] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[IncidentActivity]( + [IncidentActivityId] [int] IDENTITY(1,1) NOT NULL, + [RefIncidentActivityId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_IncidentActivity] PRIMARY KEY CLUSTERED +( + [IncidentActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[IncidentPerson] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4347,7 +4466,7 @@ CREATE TABLE [dbo].[IncidentPerson]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgram] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgram] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4381,7 +4500,29 @@ CREATE TABLE [dbo].[IndividualizedProgram]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramAccommodation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramAccessibleFormat] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[IndividualizedProgramAccessibleFormat]( + [IndividualizedProgramAccessibleFormatId] [int] IDENTITY(1,1) NOT NULL, + [RefAccessibleFormatIssuedIndicatorId] [int] NULL, + [RefAccessibleFormatRequiredIndicatorId] [int] NULL, + [RefAccessibleFormatTypeId] [int] NULL, + [AccessibleFormatIssuedBeginDate] [datetime] NULL, + [AccessibleFormatIssuedEndDate] [datetime] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_IndividualizedProgramAccessibleFormat] PRIMARY KEY CLUSTERED +( + [IndividualizedProgramAccessibleFormatId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[IndividualizedProgramAccommodation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4402,7 +4543,7 @@ CREATE TABLE [dbo].[IndividualizedProgramAccommodation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramAccommodationSubject] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramAccommodationSubject] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4426,7 +4567,7 @@ CREATE TABLE [dbo].[IndividualizedProgramAccommodationSubject]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramAmendment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramAmendment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4446,7 +4587,7 @@ CREATE TABLE [dbo].[IndividualizedProgramAmendment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramAssessment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramAssessment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4466,7 +4607,7 @@ CREATE TABLE [dbo].[IndividualizedProgramAssessment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramAssessmentAccommodation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramAssessmentAccommodation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4490,7 +4631,7 @@ CREATE TABLE [dbo].[IndividualizedProgramAssessmentAccommodation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramEligibility] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramEligibility] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4511,7 +4652,7 @@ CREATE TABLE [dbo].[IndividualizedProgramEligibility]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramEligibilityEvaluation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramEligibilityEvaluation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4531,7 +4672,7 @@ CREATE TABLE [dbo].[IndividualizedProgramEligibilityEvaluation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramGoal] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramGoal] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4551,7 +4692,7 @@ CREATE TABLE [dbo].[IndividualizedProgramGoal]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramMeeting] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramMeeting] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4570,7 +4711,7 @@ CREATE TABLE [dbo].[IndividualizedProgramMeeting]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramMeetingAttendee] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramMeetingAttendee] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4594,7 +4735,7 @@ CREATE TABLE [dbo].[IndividualizedProgramMeetingAttendee]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramProgressGoal] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramProgressGoal] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4618,7 +4759,7 @@ CREATE TABLE [dbo].[IndividualizedProgramProgressGoal]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramProgressReport] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramProgressReport] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4640,7 +4781,7 @@ CREATE TABLE [dbo].[IndividualizedProgramProgressReport]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramProgressReportPlan] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramProgressReportPlan] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4660,7 +4801,7 @@ CREATE TABLE [dbo].[IndividualizedProgramProgressReportPlan]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramService] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramService] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4683,7 +4824,7 @@ CREATE TABLE [dbo].[IndividualizedProgramService]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[IndividualizedProgramServicesReceived] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IndividualizedProgramServicesReceived] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4707,7 +4848,7 @@ CREATE TABLE [dbo].[IndividualizedProgramServicesReceived]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[IPEDSFinance] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[IPEDSFinance] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4737,7 +4878,199 @@ CREATE TABLE [dbo].[IPEDSFinance]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12CharterSchoolAuthorizerAgency] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[Job] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Job]( + [JobId] [int] IDENTITY(1,1) NOT NULL, + CONSTRAINT [PK_Job] PRIMARY KEY CLUSTERED +( + [JobId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[JobCompetency] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[JobCompetency]( + [JobCompetencyId] [int] IDENTITY(1,1) NOT NULL, + [CompetencyDefinitionId] [int] NOT NULL, + [JobId] [int] NOT NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_JobCompetency] PRIMARY KEY CLUSTERED +( + [JobCompetencyId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[JobCredential] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[JobCredential]( + [JobCredentialId] [int] IDENTITY(1,1) NOT NULL, + [JobId] [int] NOT NULL, + [CredentialDefinitionId] [int] NOT NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_JobCredential] PRIMARY KEY CLUSTERED +( + [JobCredentialId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[JobDetail] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[JobDetail]( + [JobDetailId] [int] IDENTITY(1,1) NOT NULL, + [JobId] [int] NOT NULL, + [RefCodingSystemOrganizationTypeId] [int] NULL, + [RefEducationJobTypeId] [int] NULL, + [RefK12StaffClassificationId] [int] NULL, + [RefLocalJobCategoryId] [int] NULL, + [RefLocalJobFunctionId] [int] NULL, + [RefStandardOccupationalClassificationId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_JobDetail] PRIMARY KEY CLUSTERED +( + [JobDetailId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[JobIdentifier] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[JobIdentifier]( + [JobIdentifierId] [int] IDENTITY(1,1) NOT NULL, + [JobId] [int] NOT NULL, + [JobIdentifier] [nvarchar](40) NULL, + [RefJobIdentificationSystemId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_JobIdentifier] PRIMARY KEY CLUSTERED +( + [JobIdentifierId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[JobK12StaffAssignment] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[JobK12StaffAssignment]( + [JobK12StaffAssignmentId] [int] IDENTITY(1,1) NOT NULL, + [JobId] [int] NOT NULL, + [K12StaffAssignmentId] [int] NOT NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_JobK12StaffAssignment] PRIMARY KEY CLUSTERED +( + [JobK12StaffAssignmentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[JobPosition] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[JobPosition]( + [JobPositionId] [int] IDENTITY(1,1) NOT NULL, + [JobId] [int] NOT NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_JobPosition] PRIMARY KEY CLUSTERED +( + [JobPositionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[JobPositionDetail] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[JobPositionDetail]( + [JobPositionDetailId] [int] IDENTITY(1,1) NOT NULL, + [JobPositionId] [int] NOT NULL, + [JobPositionExpectedStartDate] [datetime] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_JobPositionDetail] PRIMARY KEY CLUSTERED +( + [JobPositionDetailId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[JobPositionIdentifier] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[JobPositionIdentifier]( + [JobPositionIdentifierId] [int] IDENTITY(1,1) NOT NULL, + [JobPositionIdentifier] [nvarchar](40) NULL, + [JobPositionId] [int] NOT NULL, + [RefJobPositionIdentificationSystemId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_JobPositionIdentifier] PRIMARY KEY CLUSTERED +( + [JobPositionIdentifierId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[JobPositionStatus] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[JobPositionStatus]( + [JobPositionStatusId] [int] IDENTITY(1,1) NOT NULL, + [JobPositionId] [int] NOT NULL, + [RefJobPositionStatusCancelledReasonId] [int] NULL, + [RefJobPositionStatusId] [int] NULL, + [JobPositionStatusDate] [datetime] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_JobPositionStatus] PRIMARY KEY CLUSTERED +( + [JobPositionStatusId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[K12CharterSchoolAuthorizerAgency] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4756,7 +5089,7 @@ CREATE TABLE [dbo].[K12CharterSchoolAuthorizerAgency]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12CharterSchoolManagementOrganization] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12CharterSchoolManagementOrganization] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4775,7 +5108,7 @@ CREATE TABLE [dbo].[K12CharterSchoolManagementOrganization]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12Course] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12Course] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4814,7 +5147,7 @@ CREATE TABLE [dbo].[K12Course]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12FederalFundAllocation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12FederalFundAllocation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4843,7 +5176,7 @@ CREATE TABLE [dbo].[K12FederalFundAllocation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12Lea] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12Lea] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4867,7 +5200,7 @@ CREATE TABLE [dbo].[K12Lea]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12LeaFederalFunds] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12LeaFederalFunds] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4893,7 +5226,7 @@ CREATE TABLE [dbo].[K12LeaFederalFunds]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12LeaFederalReporting] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12LeaFederalReporting] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4924,7 +5257,7 @@ CREATE TABLE [dbo].[K12LeaFederalReporting]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12LeaGradeLevelsApproved] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12LeaGradeLevelsApproved] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4943,7 +5276,7 @@ CREATE TABLE [dbo].[K12LeaGradeLevelsApproved]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12LeaGradeOffered] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12LeaGradeOffered] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4962,7 +5295,27 @@ CREATE TABLE [dbo].[K12LeaGradeOffered]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12LeaPreKEligibility] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12LeaPolicy] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[K12LeaPolicy]( + [K12LeaPolicyId] [int] IDENTITY(1,1) NOT NULL, + [K12LeaId] [int] NOT NULL, + [RefLEAGFSAAssuranceofComplianceIndicatorId] [int] NULL, + [RefLEAGFSAPolicyAssuranceIndicatorId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_K12LeaPolicy] PRIMARY KEY CLUSTERED +( + [K12LeaPolicyId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[K12LeaPreKEligibility] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -4981,7 +5334,7 @@ CREATE TABLE [dbo].[K12LeaPreKEligibility]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12LeaPreKEligibleAgesIDEA] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12LeaPreKEligibleAgesIDEA] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5000,7 +5353,7 @@ CREATE TABLE [dbo].[K12LeaPreKEligibleAgesIDEA]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12LeaSafeDrugFree] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12LeaSafeDrugFree] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5026,7 +5379,7 @@ CREATE TABLE [dbo].[K12LeaSafeDrugFree]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12LeaTitleIIIProfessionalDevelopment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12LeaTitleIIIProfessionalDevelopment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5045,7 +5398,7 @@ CREATE TABLE [dbo].[K12LeaTitleIIIProfessionalDevelopment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12LeaTitleISupportService] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12LeaTitleISupportService] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5064,7 +5417,7 @@ CREATE TABLE [dbo].[K12LeaTitleISupportService]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12OrganizationStudentResponsibility] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12OrganizationStudentResponsibility] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5089,7 +5442,7 @@ CREATE TABLE [dbo].[K12OrganizationStudentResponsibility]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12ProgramOrService] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12ProgramOrService] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5115,7 +5468,7 @@ CREATE TABLE [dbo].[K12ProgramOrService]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12School] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12School] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5148,7 +5501,7 @@ CREATE TABLE [dbo].[K12School]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12SchoolCorrectiveAction] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12SchoolCorrectiveAction] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5167,7 +5520,7 @@ CREATE TABLE [dbo].[K12SchoolCorrectiveAction]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12SchoolGradeLevelsApproved] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12SchoolGradeLevelsApproved] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5186,7 +5539,7 @@ CREATE TABLE [dbo].[K12SchoolGradeLevelsApproved]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12SchoolGradeOffered] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12SchoolGradeOffered] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5205,7 +5558,7 @@ CREATE TABLE [dbo].[K12SchoolGradeOffered]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12SchoolImprovement] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12SchoolImprovement] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5227,7 +5580,7 @@ CREATE TABLE [dbo].[K12SchoolImprovement]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12SchoolIndicatorStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12SchoolIndicatorStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5251,7 +5604,7 @@ CREATE TABLE [dbo].[K12SchoolIndicatorStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12SchoolStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12SchoolStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5286,7 +5639,7 @@ CREATE TABLE [dbo].[K12SchoolStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12Sea] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12Sea] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5305,7 +5658,7 @@ CREATE TABLE [dbo].[K12Sea]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12SeaAlternateFundUse] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12SeaAlternateFundUse] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5324,7 +5677,7 @@ CREATE TABLE [dbo].[K12SeaAlternateFundUse]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12SeaFederalFunds] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12SeaFederalFunds] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5346,7 +5699,7 @@ CREATE TABLE [dbo].[K12SeaFederalFunds]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StaffAssignment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StaffAssignment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5386,7 +5739,7 @@ CREATE TABLE [dbo].[K12StaffAssignment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StaffEmployment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StaffEmployment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5410,7 +5763,7 @@ CREATE TABLE [dbo].[K12StaffEmployment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StudentAcademicHonor] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StudentAcademicHonor] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5430,7 +5783,7 @@ CREATE TABLE [dbo].[K12StudentAcademicHonor]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StudentAcademicRecord] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StudentAcademicRecord] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5459,13 +5812,14 @@ CREATE TABLE [dbo].[K12StudentAcademicRecord]( [RecordEndDateTime] [datetime] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [RefProjectedHighSchoolDiplomaTypeId] [int] NULL, CONSTRAINT [PK_K12StudentAcademicRecord] PRIMARY KEY CLUSTERED ( [K12StudentAcademicRecordId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StudentActivity] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StudentActivity] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5485,7 +5839,7 @@ CREATE TABLE [dbo].[K12StudentActivity]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StudentCohort] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StudentCohort] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5508,7 +5862,7 @@ CREATE TABLE [dbo].[K12StudentCohort]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StudentCourseSection] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StudentCourseSection] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5543,7 +5897,7 @@ CREATE TABLE [dbo].[K12StudentCourseSection]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StudentCourseSectionMark] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StudentCourseSectionMark] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5567,7 +5921,7 @@ CREATE TABLE [dbo].[K12StudentCourseSectionMark]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StudentDiscipline] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StudentDiscipline] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5602,7 +5956,45 @@ CREATE TABLE [dbo].[K12StudentDiscipline]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StudentEmployment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StudentDropout] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[K12StudentDropout]( + [K12StudentDropoutId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationPersonRoleId] [int] NOT NULL, + [RefStudentDropoutStatusId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_K12StudentDropout] PRIMARY KEY CLUSTERED +( + [K12StudentDropoutId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[K12StudentDropoutReason] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[K12StudentDropoutReason]( + [K12StudentDropoutReasonId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationPersonRoleId] [int] NOT NULL, + [RefDropoutReasonTypeId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_K12StudentDropoutReason] PRIMARY KEY CLUSTERED +( + [K12StudentDropoutReasonId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[K12StudentEmployment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5623,7 +6015,7 @@ CREATE TABLE [dbo].[K12StudentEmployment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StudentEnrollment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StudentEnrollment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5651,13 +6043,14 @@ CREATE TABLE [dbo].[K12StudentEnrollment]( [RecordEndDateTime] [datetime] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [RefAdjustedExitOrWithdrawalTypeId] [int] NULL, CONSTRAINT [PK_K12StudentEnrollment] PRIMARY KEY CLUSTERED ( [K12StudentEnrollmentId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StudentGraduationPlan] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StudentGraduationPlan] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5679,7 +6072,7 @@ CREATE TABLE [dbo].[K12StudentGraduationPlan]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StudentHomeLanguageSurvey] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StudentHomeLanguageSurvey] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5699,7 +6092,7 @@ CREATE TABLE [dbo].[K12StudentHomeLanguageSurvey]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StudentLiteracyAssessment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StudentLiteracyAssessment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5721,7 +6114,7 @@ CREATE TABLE [dbo].[K12StudentLiteracyAssessment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12StudentSession] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12StudentSession] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5741,7 +6134,7 @@ CREATE TABLE [dbo].[K12StudentSession]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[K12TitleIIILanguageInstruction] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[K12TitleIIILanguageInstruction] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5765,7 +6158,7 @@ CREATE TABLE [dbo].[K12TitleIIILanguageInstruction]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[LearnerAction] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[LearnerAction] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5790,7 +6183,7 @@ CREATE TABLE [dbo].[LearnerAction]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[LearnerActivity] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[LearnerActivity] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5830,7 +6223,7 @@ CREATE TABLE [dbo].[LearnerActivity]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[LearnerActivity_LearningResource] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[LearnerActivity_LearningResource] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5854,7 +6247,7 @@ CREATE TABLE [dbo].[LearnerActivity_LearningResource]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[LearningResource] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[LearningResource] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5909,13 +6302,15 @@ CREATE TABLE [dbo].[LearningResource]( [RecordEndDateTime] [datetime] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [RefHighQualityInstructionalMaterialIndicatorId] [int] NULL, + [RefAccessibleFormatTypeId] [int] NULL, CONSTRAINT [PK_LearningResource] PRIMARY KEY CLUSTERED ( [LearningResourceId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[LearningResourceAdaptation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[LearningResourceAdaptation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5934,7 +6329,7 @@ CREATE TABLE [dbo].[LearningResourceAdaptation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[LearningResourceEducationLevel] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[LearningResourceEducationLevel] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5958,7 +6353,47 @@ CREATE TABLE [dbo].[LearningResourceEducationLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[LearningResourceMediaFeature] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[LearningResourceIdentifier] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[LearningResourceIdentifier]( + [LearningResourceIdentifierId] [int] IDENTITY(1,1) NOT NULL, + [LearningResourceId] [int] NOT NULL, + [LearningResourceIdentifier] [nvarchar](40) NULL, + [RefLearningResourceIdentificationSystemId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_LearningResourceIdentifier] PRIMARY KEY CLUSTERED +( + [LearningResourceIdentifierId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[LearningResourceIssued] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[LearningResourceIssued]( + [LearningResourceIssuedId] [int] IDENTITY(1,1) NOT NULL, + [LearningResourceId] [int] NOT NULL, + [IssuedToPersonId] [int] NULL, + [LearningResourceIssuedDate] [datetime] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_LearningResourceIssued] PRIMARY KEY CLUSTERED +( + [LearningResourceIssuedId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[LearningResourceMediaFeature] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5977,7 +6412,27 @@ CREATE TABLE [dbo].[LearningResourceMediaFeature]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[LearningResourcePeerRating] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[LearningResourceOrder] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[LearningResourceOrder]( + [LearningResourceOrderId] [int] IDENTITY(1,1) NOT NULL, + [LearningResourceId] [int] NOT NULL, + [LearningResourceOrderedDate] [datetime] NULL, + [LearningResourceReceivedDate] [datetime] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_LearningResourceOrder] PRIMARY KEY CLUSTERED +( + [LearningResourceOrderId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[LearningResourcePeerRating] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -5999,7 +6454,7 @@ CREATE TABLE [dbo].[LearningResourcePeerRating]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[LearningResourcePhysicalMedia] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[LearningResourcePhysicalMedia] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6018,7 +6473,28 @@ CREATE TABLE [dbo].[LearningResourcePhysicalMedia]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Location] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[LearningResourceStatus] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[LearningResourceStatus]( + [LearningResourceStatusId] [int] IDENTITY(1,1) NOT NULL, + [RefLearningResourceStatusId] [int] NULL, + [LearningResourceStatusQuantity] [int] NULL, + [StatusEndDate] [datetime] NULL, + [StatusStartDate] [datetime] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_LearningResourceStatus] PRIMARY KEY CLUSTERED +( + [LearningResourceStatusId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Location] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6035,7 +6511,7 @@ CREATE TABLE [dbo].[Location]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[LocationAddress] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[LocationAddress] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6068,7 +6544,7 @@ CREATE TABLE [dbo].[LocationAddress]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Organization] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[Organization] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6085,7 +6561,7 @@ CREATE TABLE [dbo].[Organization]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationAccreditation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationAccreditation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6110,7 +6586,7 @@ CREATE TABLE [dbo].[OrganizationAccreditation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationCalendar] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationCalendar] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6131,7 +6607,7 @@ CREATE TABLE [dbo].[OrganizationCalendar]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationCalendarCrisis] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationCalendarCrisis] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6156,7 +6632,7 @@ CREATE TABLE [dbo].[OrganizationCalendarCrisis]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationCalendarDay] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationCalendarDay] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6176,7 +6652,7 @@ CREATE TABLE [dbo].[OrganizationCalendarDay]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationCalendarEvent] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationCalendarEvent] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6199,7 +6675,7 @@ CREATE TABLE [dbo].[OrganizationCalendarEvent]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationCalendarSession] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationCalendarSession] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6228,13 +6704,36 @@ CREATE TABLE [dbo].[OrganizationCalendarSession]( [RefAcademicTermDesignatorId] [int] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [InstructionalMinutesPerDay] [int] NULL, + [LunchMinutesPerDay] [int] NULL, + [RecessMinutesPerDay] [int] NULL, + [SessionSequenceNumber] [int] NULL, CONSTRAINT [PK_OrganizationCalendarSession] PRIMARY KEY CLUSTERED ( [OrganizationCalendarSessionId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationDetail] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationCalendarSessionRelationship] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[OrganizationCalendarSessionRelationship]( + [OrganizationCalendarSessionRelationshipId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationCalendarSessionId] [int] NOT NULL, + [RelatedOrganizationCalendarSessionId] [int] NOT NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_OrganizationCalendarSessionRelationship] PRIMARY KEY CLUSTERED +( + [OrganizationCalendarSessionRelationshipId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[OrganizationDetail] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6256,7 +6755,7 @@ CREATE TABLE [dbo].[OrganizationDetail]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationEmail] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationEmail] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6277,7 +6776,7 @@ CREATE TABLE [dbo].[OrganizationEmail]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationEmployeeBenefit] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationEmployeeBenefit] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6298,7 +6797,7 @@ CREATE TABLE [dbo].[OrganizationEmployeeBenefit]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationEnrollmentCapacity] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationEnrollmentCapacity] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6311,17 +6810,17 @@ CREATE TABLE [dbo].[OrganizationEnrollmentCapacity]( [EarlyLearningAgeUnder2Capacity] [int] NULL, [EnrollmentCapacity] [int] NULL, [AdjustedCapacity] [int] NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - [RecordStatusId] int NULL, - [DataCollectionId] int NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, CONSTRAINT [PK_OrganizationEnrollmentCapacity] PRIMARY KEY CLUSTERED ( [OrganizationEnrollmentCapacityId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationFederalAccountability] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationFederalAccountability] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6358,7 +6857,7 @@ CREATE TABLE [dbo].[OrganizationFederalAccountability]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationFinancial] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationFinancial] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6386,7 +6885,7 @@ CREATE TABLE [dbo].[OrganizationFinancial]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationFinancialFinancialAccountLocal] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationFinancialFinancialAccountLocal] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6395,17 +6894,17 @@ CREATE TABLE [dbo].[OrganizationFinancialFinancialAccountLocal]( [OrganizationFinancialFinancialAccountLocalId] [int] IDENTITY(1,1) NOT NULL, [OrganizationFinancialId] [int] NOT NULL, [FinancialAccountLocalId] [int] NOT NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - [RecordStatusId] int NULL, - [DataCollectionId] int NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, CONSTRAINT [PK_OrganizationFinancialFinancialAccountLocal] PRIMARY KEY CLUSTERED ( [OrganizationFinancialFinancialAccountLocalId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationIdentifier] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationIdentifier] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6426,7 +6925,7 @@ CREATE TABLE [dbo].[OrganizationIdentifier]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationImage] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationImage] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6445,7 +6944,7 @@ CREATE TABLE [dbo].[OrganizationImage]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationIndicator] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationIndicator] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6465,7 +6964,45 @@ CREATE TABLE [dbo].[OrganizationIndicator]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationLocation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationJob] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[OrganizationJob]( + [OrganizationJobId] [int] IDENTITY(1,1) NOT NULL, + [JobId] [int] NOT NULL, + [OrganizationId] [int] NOT NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_OrganizationJob] PRIMARY KEY CLUSTERED +( + [OrganizationJobId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[OrganizationJurisdiction] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[OrganizationJurisdiction]( + [OrganizationJurisdictionId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationId] [int] NOT NULL, + [OrganizationJurisdictionSquareMiles] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_OrganizationJurisdiction] PRIMARY KEY CLUSTERED +( + [OrganizationJurisdictionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[OrganizationLocation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6485,7 +7022,7 @@ CREATE TABLE [dbo].[OrganizationLocation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationOperationalStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationOperationalStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6505,7 +7042,7 @@ CREATE TABLE [dbo].[OrganizationOperationalStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationPersonRole] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationPersonRole] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6527,7 +7064,7 @@ CREATE TABLE [dbo].[OrganizationPersonRole]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationPersonRoleApplication] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationPersonRoleApplication] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6546,7 +7083,7 @@ CREATE TABLE [dbo].[OrganizationPersonRoleApplication]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationPersonRoleFTE] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationPersonRoleFTE] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6565,7 +7102,7 @@ CREATE TABLE [dbo].[OrganizationPersonRoleFTE]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationPersonRoleRelationship] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationPersonRoleRelationship] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6577,14 +7114,14 @@ CREATE TABLE [dbo].[OrganizationPersonRoleRelationship]( [RecordStartDateTime] [datetime] NULL, [RecordEndDateTime] [datetime] NULL, [DataCollectionId] [int] NULL, - [RecordStatusId] int NULL, + [RecordStatusId] [int] NULL, CONSTRAINT [PK_OrganizationPersonRoleRelationship] PRIMARY KEY CLUSTERED ( [OrganizationPersonRoleRelationshipId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationPolicy] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationPolicy] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6598,13 +7135,14 @@ CREATE TABLE [dbo].[OrganizationPolicy]( [RecordEndDateTime] [datetime] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [RefDEIPolicyIndicatorId] [int] NULL, CONSTRAINT [PK_OrganizationPolicy] PRIMARY KEY CLUSTERED ( [OrganizationPolicyId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationPopulationServed] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationPopulationServed] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6627,7 +7165,7 @@ CREATE TABLE [dbo].[OrganizationPopulationServed]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationProgramType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationProgramType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6647,7 +7185,7 @@ CREATE TABLE [dbo].[OrganizationProgramType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationProjectBasedLearning] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationProjectBasedLearning] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6656,17 +7194,17 @@ CREATE TABLE [dbo].[OrganizationProjectBasedLearning]( [OrganizationProjectBasedLearningId] [int] IDENTITY(1,1) NOT NULL, [RefProjectBasedLearningTypeId] [int] NULL, [ProjectBasedLearningIndicator] [bit] NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - [RecordStatusId] int NULL, - [DataCollectionId] int NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, CONSTRAINT [PK_OrganizationProjectBasedLearning] PRIMARY KEY CLUSTERED ( [OrganizationProjectBasedLearningId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationRelationship] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationRelationship] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6686,7 +7224,87 @@ CREATE TABLE [dbo].[OrganizationRelationship]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationService] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationSalaryScheduleCriteria] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[OrganizationSalaryScheduleCriteria]( + [OrganizationSalaryScheduleCriteriaId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationId] [int] NOT NULL, + [SalaryScheduleCriterionName] [nvarchar](100) NULL, + [SalaryScheduleCriterionDescription] [nvarchar](4000) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_OrganizationSalaryScheduleCriteria] PRIMARY KEY CLUSTERED +( + [OrganizationSalaryScheduleCriteriaId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[OrganizationSalaryScheduleCriteriaValue] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[OrganizationSalaryScheduleCriteriaValue]( + [OrganizationSalaryScheduleCriteriaValueId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationSalaryScheduleCriteriaId] [int] NOT NULL, + [SalaryScheduleCriterionValue] [nvarchar](100) NOT NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_OrganizationSalaryScheduleCriteriaValue] PRIMARY KEY CLUSTERED +( + [OrganizationSalaryScheduleCriteriaValueId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[OrganizationSalaryScheduleSalary] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[OrganizationSalaryScheduleSalary]( + [OrganizationSalaryScheduleSalaryId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationId] [int] NOT NULL, + [SalaryScheduleSalaryValue] [decimal](9, 2) NOT NULL, + [RefStandardOccupationalClassificationId] [int] NULL, + [RefONETSOCOccupationTypeId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_OrganizationSalaryScheduleSalary] PRIMARY KEY CLUSTERED +( + [OrganizationSalaryScheduleSalaryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary]( + [OrganizationSalaryScheduleCriteriaValueSalaryId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationSalaryScheduleCriteriaValueId] [int] NOT NULL, + [OrganizationSalaryScheduleSalaryId] [int] NOT NULL, + [OrganizationId] [int] NOT NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_OrganizationSalaryScheduleCriteriaValueSalary] PRIMARY KEY CLUSTERED +( + [OrganizationSalaryScheduleCriteriaValueSalaryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[OrganizationService] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6710,7 +7328,7 @@ CREATE TABLE [dbo].[OrganizationService]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationTechnicalAssistance] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationTechnicalAssistance] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6731,7 +7349,7 @@ CREATE TABLE [dbo].[OrganizationTechnicalAssistance]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationTelephone] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationTelephone] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6754,7 +7372,7 @@ CREATE TABLE [dbo].[OrganizationTelephone]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[OrganizationWebsite] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[OrganizationWebsite] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6773,7 +7391,7 @@ CREATE TABLE [dbo].[OrganizationWebsite]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PDActivityEducationLevel] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PDActivityEducationLevel] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6792,7 +7410,7 @@ CREATE TABLE [dbo].[PDActivityEducationLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PeerRatingSystem] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PeerRatingSystem] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6813,7 +7431,7 @@ CREATE TABLE [dbo].[PeerRatingSystem]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Person] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[Person] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6831,7 +7449,7 @@ CREATE TABLE [dbo].[Person]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Person_AssessmentPersonalNeedsProfile] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[Person_AssessmentPersonalNeedsProfile] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6855,7 +7473,7 @@ CREATE TABLE [dbo].[Person_AssessmentPersonalNeedsProfile]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonAddress] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonAddress] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6886,7 +7504,7 @@ CREATE TABLE [dbo].[PersonAddress]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonAddressNcesSide] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonAddressNcesSide] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6909,7 +7527,7 @@ CREATE TABLE [dbo].[PersonAddressNcesSide]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonAllergy] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonAllergy] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6930,7 +7548,7 @@ CREATE TABLE [dbo].[PersonAllergy]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonBirthplace] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonBirthplace] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6951,7 +7569,7 @@ CREATE TABLE [dbo].[PersonBirthplace]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonCareerEducationPlan] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonCareerEducationPlan] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6974,7 +7592,7 @@ CREATE TABLE [dbo].[PersonCareerEducationPlan]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonCredential] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonCredential] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -6999,7 +7617,7 @@ CREATE TABLE [dbo].[PersonCredential]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonDegreeOrCertificate] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonDegreeOrCertificate] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7023,7 +7641,7 @@ CREATE TABLE [dbo].[PersonDegreeOrCertificate]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonDemographicRace] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonDemographicRace] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7043,7 +7661,7 @@ CREATE TABLE [dbo].[PersonDemographicRace]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonDetail] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonDetail] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7076,7 +7694,7 @@ PRIMARY KEY CLUSTERED )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonDigitalAccess] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonDigitalAccess] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7099,7 +7717,7 @@ CREATE TABLE [dbo].[PersonDigitalAccess]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonDigitalAccessSpeed] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonDigitalAccessSpeed] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7121,7 +7739,7 @@ CREATE TABLE [dbo].[PersonDigitalAccessSpeed]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonDisability] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonDisability] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7147,7 +7765,7 @@ CREATE TABLE [dbo].[PersonDisability]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonEmailAddress] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonEmailAddress] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7168,7 +7786,7 @@ CREATE TABLE [dbo].[PersonEmailAddress]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonFamily] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonFamily] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7192,13 +7810,14 @@ CREATE TABLE [dbo].[PersonFamily]( [NumberOfHouseholdCollegeStudents] [int] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [RefTeenParentIndicatorId] [int] NULL, CONSTRAINT [XPKPersonFamily] PRIMARY KEY CLUSTERED ( [PersonFamilyId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonHealth] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonHealth] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7227,7 +7846,7 @@ CREATE TABLE [dbo].[PersonHealth]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonHealthBirth] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonHealthBirth] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7249,7 +7868,7 @@ CREATE TABLE [dbo].[PersonHealthBirth]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonHomelessness] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonHomelessness] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7269,7 +7888,7 @@ CREATE TABLE [dbo].[PersonHomelessness]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonIdentifier] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonIdentifier] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7290,7 +7909,7 @@ CREATE TABLE [dbo].[PersonIdentifier]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonImmunization] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonImmunization] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7310,7 +7929,7 @@ CREATE TABLE [dbo].[PersonImmunization]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonLanguage] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonLanguage] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7330,7 +7949,7 @@ CREATE TABLE [dbo].[PersonLanguage]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonLearningDevice] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonLearningDevice] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7351,7 +7970,7 @@ CREATE TABLE [dbo].[PersonLearningDevice]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonMaster] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonMaster] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7368,7 +7987,7 @@ CREATE TABLE [dbo].[PersonMaster]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonMilitary] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonMilitary] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7376,21 +7995,171 @@ GO CREATE TABLE [dbo].[PersonMilitary]( [PersonMilitaryId] [int] IDENTITY(1,1) NOT NULL, [PersonId] [int] NOT NULL, - [RefMilitaryActiveStudentIndicatorId] [int] NULL, + [RefActiveMilitaryStatusIndicatorId] [int] NULL, [RefMilitaryConnectedStudentIndicatorId] [int] NULL, - [RefMilitaryVeteranStudentIndicatorId] [int] NULL, + [RefMilitaryVeteranStatusIndicatorId] [int] NULL, [RefMilitaryBranchId] [int] NULL, [RecordStartDateTime] [datetime] NULL, [RecordEndDateTime] [datetime] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [MilitaryServiceNumber] [nvarchar](40) NULL, + [MilitaryInductionDate] [datetime] NULL, + [MilitaryDischargeDate] [datetime] NULL, + [MilitaryReleaseDate] [datetime] NULL, + [RefMilitaryDischargeCategoryId] [int] NULL, + [MilitaryInductionRank] [nvarchar](40) NULL, + [MilitaryDischargeRank] [nvarchar](40) NULL, + [MilitaryHighestRank] [nvarchar](40) NULL, + [MilitaryCurrentRank] [nvarchar](40) NULL, + [RefNationalGuardIndicatorId] [int] NULL, CONSTRAINT [PK_PersonMilitary] PRIMARY KEY CLUSTERED ( [PersonMilitaryId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonOtherName] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonMilitaryCampaigns] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PersonMilitaryCampaigns]( + [PersonMilitaryCampaignsId] [int] IDENTITY(1,1) NOT NULL, + [PersonMilitaryId] [int] NOT NULL, + [RefMilitaryCampaignsId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_PersonMilitaryCampaigns] PRIMARY KEY CLUSTERED +( + [PersonMilitaryCampaignsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[PersonMilitaryDeployment] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PersonMilitaryDeployment]( + [PersonMilitaryDeploymentId] [int] IDENTITY(1,1) NOT NULL, + [PersonMilitaryId] [int] NOT NULL, + [RefMilitaryDeploymentStatusCodeId] [int] NULL, + [MilitaryDeploymentActivityCode] [nvarchar](200) NULL, + [MilitaryDeploymentActivityName] [nvarchar](400) NULL, + [MilitaryDeploymentDescription] [nvarchar](200) NULL, + [MilitaryDeploymentOrderDescription] [nvarchar](200) NULL, + [MilitaryDeploymentRequestedBy] [nvarchar](100) NULL, + [MilitaryDeploymentStartDate] [datetime] NULL, + [MilitaryDeploymentEndDate] [datetime] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_PersonMilitaryDeployment] PRIMARY KEY CLUSTERED +( + [PersonMilitaryDeploymentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[PersonMilitaryDuties] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PersonMilitaryDuties]( + [PersonMilitaryDutiesId] [int] IDENTITY(1,1) NOT NULL, + [PersonMilitaryId] [int] NOT NULL, + [RefMilitaryDutiesId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_PersonMilitaryDuties] PRIMARY KEY CLUSTERED +( + [PersonMilitaryDutiesId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[PersonMilitaryExpertise] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PersonMilitaryExpertise]( + [PersonMilitaryExpertiseId] [int] IDENTITY(1,1) NOT NULL, + [PersonMilitaryId] [int] NOT NULL, + [RefMilitaryExpertiseId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_PersonMilitaryExpertise] PRIMARY KEY CLUSTERED +( + [PersonMilitaryExpertiseId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[PersonMilitaryHonors] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PersonMilitaryHonors]( + [PersonMilitaryHonorsId] [int] IDENTITY(1,1) NOT NULL, + [PersonMilitaryId] [int] NOT NULL, + [MilitaryHonors] [nvarchar](40) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_PersonMilitaryHonors] PRIMARY KEY CLUSTERED +( + [PersonMilitaryHonorsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[PersonMilitaryOccupationalSpecialties] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PersonMilitaryOccupationalSpecialties]( + [PersonMilitaryOccupationalSpecialtiesId] [int] IDENTITY(1,1) NOT NULL, + [PersonMilitaryId] [int] NOT NULL, + [MilitaryOccupationalSpecialties] [nvarchar](200) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_PersonMilitaryOccupationalSpecialties] PRIMARY KEY CLUSTERED +( + [PersonMilitaryOccupationalSpecialtiesId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[PersonMilitaryServiceLocations] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PersonMilitaryServiceLocations]( + [PersonMilitaryServiceLocationsId] [int] IDENTITY(1,1) NOT NULL, + [PersonMilitaryId] [int] NOT NULL, + [MilitaryServiceLocations] [nvarchar](max) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_PersonMilitaryServiceLocations] PRIMARY KEY CLUSTERED +( + [PersonMilitaryServiceLocationsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[PersonOtherName] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7413,7 +8182,7 @@ CREATE TABLE [dbo].[PersonOtherName]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonPersonalInformationVerification] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonPersonalInformationVerification] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7436,7 +8205,7 @@ CREATE TABLE [dbo].[PersonPersonalInformationVerification]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonProgramParticipation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonProgramParticipation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7458,7 +8227,7 @@ CREATE TABLE [dbo].[PersonProgramParticipation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonReferral] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonReferral] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7482,7 +8251,7 @@ CREATE TABLE [dbo].[PersonReferral]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonRelationship] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonRelationship] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7508,7 +8277,7 @@ CREATE TABLE [dbo].[PersonRelationship]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7530,7 +8299,7 @@ CREATE TABLE [dbo].[PersonStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PersonTelephone] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonTelephone] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7553,7 +8322,27 @@ CREATE TABLE [dbo].[PersonTelephone]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProfessionalDevelopmentActivity] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PersonTransportationEligibility] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PersonTransportationEligibility]( + [PersonTransportationEligibilityId] [int] IDENTITY(1,1) NOT NULL, + [RefTransportationStatusTypeId] [int] NULL, + [RefTransportationStateAidQualificationTypeId] [int] NULL, + [RefTransportationPublicExpenseEligibilityTypeId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_PersonTransportationEligibility] PRIMARY KEY CLUSTERED +( + [PersonTransportationEligibilityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ProfessionalDevelopmentActivity] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7590,7 +8379,7 @@ CREATE TABLE [dbo].[ProfessionalDevelopmentActivity]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProfessionalDevelopmentRequirement] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProfessionalDevelopmentRequirement] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7610,7 +8399,7 @@ CREATE TABLE [dbo].[ProfessionalDevelopmentRequirement]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProfessionalDevelopmentSession] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProfessionalDevelopmentSession] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7646,7 +8435,7 @@ CREATE TABLE [dbo].[ProfessionalDevelopmentSession]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProfessionalDevelopmentSessionInstructor] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProfessionalDevelopmentSessionInstructor] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7665,7 +8454,7 @@ CREATE TABLE [dbo].[ProfessionalDevelopmentSessionInstructor]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Program] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[Program] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7684,7 +8473,7 @@ CREATE TABLE [dbo].[Program]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProgramParticipationAE] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProgramParticipationAE] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7716,7 +8505,7 @@ CREATE TABLE [dbo].[ProgramParticipationAE]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProgramParticipationAttainment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProgramParticipationAttainment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7739,7 +8528,7 @@ CREATE TABLE [dbo].[ProgramParticipationAttainment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProgramParticipationCte] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProgramParticipationCte] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7762,13 +8551,14 @@ CREATE TABLE [dbo].[ProgramParticipationCte]( [OutOfWorkforceIndicator] [bit] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [RefPerkinsPostProgramPlacementIndicatorId] [int] NULL, CONSTRAINT [PK_ProgramParticipationCte] PRIMARY KEY CLUSTERED ( [ProgramParticipationCteId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProgramParticipationFoodService] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProgramParticipationFoodService] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7787,7 +8577,7 @@ CREATE TABLE [dbo].[ProgramParticipationFoodService]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProgramParticipationMigrant] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProgramParticipationMigrant] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7820,14 +8610,14 @@ CREATE TABLE [dbo].[ProgramParticipationMigrant]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProgramParticipationNeglected] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProgramParticipationNeglected] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[ProgramParticipationNeglected]( [PersonProgramParticipationId] [int] NOT NULL, - [RefNeglectedProgramTypeId] [int] NULL, + [RefNeglectedOrDelinquentProgramTypeId] [int] NULL, [AchievementIndicator] [bit] NULL, [OutcomeIndicator] [bit] NULL, [ObtainedEmployment] [bit] NULL, @@ -7836,13 +8626,15 @@ CREATE TABLE [dbo].[ProgramParticipationNeglected]( [ProgramParticipationNeglectedId] [int] IDENTITY(1,1) NOT NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [RefDelinquentProgramTypeId] [int] NULL, + [RefNeglectedProgramTypeId] [int] NULL, CONSTRAINT [PK_ProgramParticipationNeglected] PRIMARY KEY CLUSTERED ( [ProgramParticipationNeglectedId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProgramParticipationSpecialEducation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProgramParticipationSpecialEducation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7861,13 +8653,14 @@ CREATE TABLE [dbo].[ProgramParticipationSpecialEducation]( [RecordEndDateTime] [datetime] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [RefPartBPostsecondaryOutcomesIndicatorId] [int] NULL, CONSTRAINT [PK_ProgramParticipationSpecialEducation] PRIMARY KEY CLUSTERED ( [ProgramParticipationSpecialEducationId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[ProgramParticipationTeacherPrep] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProgramParticipationTeacherPrep] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7894,7 +8687,7 @@ CREATE TABLE [dbo].[ProgramParticipationTeacherPrep]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProgramParticipationTitleI] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProgramParticipationTitleI] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7913,7 +8706,7 @@ CREATE TABLE [dbo].[ProgramParticipationTitleI]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProgramParticipationTitleIIILep] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProgramParticipationTitleIIILep] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7933,7 +8726,7 @@ CREATE TABLE [dbo].[ProgramParticipationTitleIIILep]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProgramParticipationWIOA] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProgramParticipationWIOA] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7953,7 +8746,7 @@ CREATE TABLE [dbo].[ProgramParticipationWIOA]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ProgramParticipationWIOABarriers] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[ProgramParticipationWIOABarriers] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7972,7 +8765,7 @@ CREATE TABLE [dbo].[ProgramParticipationWIOABarriers]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsCourse] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsCourse] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -7998,7 +8791,7 @@ CREATE TABLE [dbo].[PsCourse]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsInstitution] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsInstitution] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8021,13 +8814,14 @@ CREATE TABLE [dbo].[PsInstitution]( [RefIncreasedLearningTimeTypeId] [int] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [RefMostPrevalentLevelOfInstitutionId] [int] NULL, CONSTRAINT [PK_PsInstitution] PRIMARY KEY CLUSTERED ( [PsInstitutionId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsPriceOfAttendance] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsPriceOfAttendance] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8056,7 +8850,7 @@ CREATE TABLE [dbo].[PsPriceOfAttendance]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsProgram] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsProgram] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8082,7 +8876,7 @@ CREATE TABLE [dbo].[PsProgram]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsSection] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsSection] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8108,7 +8902,7 @@ CREATE TABLE [dbo].[PsSection]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsSectionLocation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsSectionLocation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8128,7 +8922,7 @@ CREATE TABLE [dbo].[PsSectionLocation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsStaffEmployment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsStaffEmployment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8159,7 +8953,7 @@ CREATE TABLE [dbo].[PsStaffEmployment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsStudentAcademicAward] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsStudentAcademicAward] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8183,7 +8977,7 @@ CREATE TABLE [dbo].[PsStudentAcademicAward]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsStudentAcademicRecord] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsStudentAcademicRecord] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8215,7 +9009,7 @@ CREATE TABLE [dbo].[PsStudentAcademicRecord]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsStudentAdmissionTest] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsStudentAdmissionTest] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8235,7 +9029,7 @@ CREATE TABLE [dbo].[PsStudentAdmissionTest]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsStudentApplication] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsStudentApplication] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8262,7 +9056,7 @@ CREATE TABLE [dbo].[PsStudentApplication]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsStudentCohort] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsStudentCohort] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8281,7 +9075,7 @@ CREATE TABLE [dbo].[PsStudentCohort]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsStudentCourseSectionMark] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsStudentCourseSectionMark] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8302,7 +9096,7 @@ CREATE TABLE [dbo].[PsStudentCourseSectionMark]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsStudentDemographic] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsStudentDemographic] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8331,7 +9125,7 @@ CREATE TABLE [dbo].[PsStudentDemographic]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsStudentEmployment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsStudentEmployment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8353,7 +9147,7 @@ CREATE TABLE [dbo].[PsStudentEmployment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsStudentEnrollment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsStudentEnrollment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8401,7 +9195,7 @@ CREATE TABLE [dbo].[PsStudentEnrollment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsStudentFinancialAid] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsStudentFinancialAid] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8426,7 +9220,7 @@ CREATE TABLE [dbo].[PsStudentFinancialAid]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PSStudentProgram] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PSStudentProgram] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8449,7 +9243,7 @@ CREATE TABLE [dbo].[PSStudentProgram]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[PsStudentSection] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[PsStudentSection] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8475,7 +9269,7 @@ CREATE TABLE [dbo].[PsStudentSection]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[QuarterlyEmploymentRecord] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[QuarterlyEmploymentRecord] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8500,7 +9294,7 @@ CREATE TABLE [dbo].[QuarterlyEmploymentRecord]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RecordStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RecordStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8518,7 +9312,7 @@ CREATE TABLE [dbo].[RecordStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RecordStatusHistory] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RecordStatusHistory] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8540,7 +9334,7 @@ CREATE TABLE [dbo].[RecordStatusHistory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAbsentAttendanceCategory] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAbsentAttendanceCategory] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8560,7 +9354,7 @@ CREATE TABLE [dbo].[RefAbsentAttendanceCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAcademicAwardLevel] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAcademicAwardLevel] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8580,7 +9374,7 @@ CREATE TABLE [dbo].[RefAcademicAwardLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAcademicAwardPrerequisiteType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAcademicAwardPrerequisiteType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8600,7 +9394,7 @@ CREATE TABLE [dbo].[RefAcademicAwardPrerequisiteType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAcademicHonorType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAcademicHonorType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8620,7 +9414,7 @@ CREATE TABLE [dbo].[RefAcademicHonorType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAcademicRank] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAcademicRank] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8640,7 +9434,7 @@ CREATE TABLE [dbo].[RefAcademicRank]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAcademicSubject] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAcademicSubject] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8660,7 +9454,7 @@ CREATE TABLE [dbo].[RefAcademicSubject]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAcademicTermDesignator] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAcademicTermDesignator] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8680,7 +9474,67 @@ CREATE TABLE [dbo].[RefAcademicTermDesignator]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAccommodationsNeededType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAccessibleFormatIssuedIndicator] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefAccessibleFormatIssuedIndicator]( + [RefAccessibleFormatIssuedIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefAccessibleFormatIssuedIndicator] PRIMARY KEY CLUSTERED +( + [RefAccessibleFormatIssuedIndicatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefAccessibleFormatRequiredIndicator] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefAccessibleFormatRequiredIndicator]( + [RefAccessibleFormatRequiredIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefAccessibleFormatRequiredIndicator] PRIMARY KEY CLUSTERED +( + [RefAccessibleFormatRequiredIndicatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefAccessibleFormatType] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefAccessibleFormatType]( + [RefAccessibleFormatTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefAccessibleFormatType] PRIMARY KEY CLUSTERED +( + [RefAccessibleFormatTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefAccommodationsNeededType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8700,7 +9554,7 @@ CREATE TABLE [dbo].[RefAccommodationsNeededType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAccommodationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAccommodationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8720,7 +9574,7 @@ CREATE TABLE [dbo].[RefAccommodationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAccreditationAgency] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAccreditationAgency] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8740,7 +9594,27 @@ CREATE TABLE [dbo].[RefAccreditationAgency]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefActivityRecognitionType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefActiveMilitaryStatusIndicator] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefActiveMilitaryStatusIndicator]( + [RefActiveMilitaryStatusIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefMilitaryActiveStudentIndicator] PRIMARY KEY CLUSTERED +( + [RefActiveMilitaryStatusIndicatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefActivityRecognitionType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8760,7 +9634,7 @@ CREATE TABLE [dbo].[RefActivityRecognitionType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefActivityTimeMeasurementType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefActivityTimeMeasurementType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8780,7 +9654,7 @@ CREATE TABLE [dbo].[RefActivityTimeMeasurementType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAdditionalCreditType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAdditionalCreditType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8800,7 +9674,7 @@ CREATE TABLE [dbo].[RefAdditionalCreditType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAdditionalTargetedSupportAndImprovementStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAdditionalTargetedSupportAndImprovementStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8820,7 +9694,7 @@ CREATE TABLE [dbo].[RefAdditionalTargetedSupportAndImprovementStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAddressType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAddressType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8840,7 +9714,7 @@ CREATE TABLE [dbo].[RefAddressType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAdjustedCapacityReasonType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAdjustedCapacityReasonType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8860,7 +9734,27 @@ CREATE TABLE [dbo].[RefAdjustedCapacityReasonType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAdministrativeFundingControl] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAdjustedExitOrWithdrawalType] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefAdjustedExitOrWithdrawalType]( + [RefAdjustedExitOrWithdrawalTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefAdjustedExitOrWithdrawalType] PRIMARY KEY CLUSTERED +( + [RefAdjustedExitOrWithdrawalTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefAdministrativeFundingControl] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8880,7 +9774,7 @@ CREATE TABLE [dbo].[RefAdministrativeFundingControl]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAdmissionConsiderationLevel] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAdmissionConsiderationLevel] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8900,7 +9794,7 @@ CREATE TABLE [dbo].[RefAdmissionConsiderationLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAdmissionConsiderationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAdmissionConsiderationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8920,7 +9814,7 @@ CREATE TABLE [dbo].[RefAdmissionConsiderationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAdmittedStudent] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAdmittedStudent] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8940,7 +9834,7 @@ CREATE TABLE [dbo].[RefAdmittedStudent]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAdultEducationProgramExitReason] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAdultEducationProgramExitReason] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8960,7 +9854,7 @@ CREATE TABLE [dbo].[RefAdultEducationProgramExitReason]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAdvancedPlacementCourseCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAdvancedPlacementCourseCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -8980,7 +9874,7 @@ CREATE TABLE [dbo].[RefAdvancedPlacementCourseCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAeCertificationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAeCertificationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9000,7 +9894,7 @@ CREATE TABLE [dbo].[RefAeCertificationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAeFunctioningLevelAtIntake] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAeFunctioningLevelAtIntake] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9020,7 +9914,7 @@ CREATE TABLE [dbo].[RefAeFunctioningLevelAtIntake]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAeFunctioningLevelAtPosttest] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAeFunctioningLevelAtPosttest] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9040,7 +9934,7 @@ CREATE TABLE [dbo].[RefAeFunctioningLevelAtPosttest]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAeInstructionalProgramType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAeInstructionalProgramType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9060,7 +9954,7 @@ CREATE TABLE [dbo].[RefAeInstructionalProgramType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAePostsecondaryTransitionAction] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAePostsecondaryTransitionAction] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9080,7 +9974,7 @@ CREATE TABLE [dbo].[RefAePostsecondaryTransitionAction]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAeSpecialProgramType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAeSpecialProgramType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9100,7 +9994,7 @@ CREATE TABLE [dbo].[RefAeSpecialProgramType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAeStaffClassification] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAeStaffClassification] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9120,7 +10014,7 @@ CREATE TABLE [dbo].[RefAeStaffClassification]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAeStaffEmploymentStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAeStaffEmploymentStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9140,7 +10034,7 @@ CREATE TABLE [dbo].[RefAeStaffEmploymentStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAllergySeverity] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAllergySeverity] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9160,7 +10054,7 @@ CREATE TABLE [dbo].[RefAllergySeverity]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAllergyType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAllergyType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9180,7 +10074,7 @@ CREATE TABLE [dbo].[RefAllergyType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAlternateFundUses] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAlternateFundUses] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9200,7 +10094,7 @@ CREATE TABLE [dbo].[RefAlternateFundUses]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAlternativeSchoolFocus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAlternativeSchoolFocus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9220,7 +10114,7 @@ CREATE TABLE [dbo].[RefAlternativeSchoolFocus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAltRouteToCertificationOrLicensure] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAltRouteToCertificationOrLicensure] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9240,7 +10134,7 @@ CREATE TABLE [dbo].[RefAltRouteToCertificationOrLicensure]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefApipInteractionType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefApipInteractionType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9260,7 +10154,7 @@ CREATE TABLE [dbo].[RefApipInteractionType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentAccommodationCategory] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentAccommodationCategory] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9280,7 +10174,7 @@ CREATE TABLE [dbo].[RefAssessmentAccommodationCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentAssetIdentifierType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentAssetIdentifierType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9300,7 +10194,7 @@ CREATE TABLE [dbo].[RefAssessmentAssetIdentifierType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentAssetType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentAssetType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9320,7 +10214,7 @@ CREATE TABLE [dbo].[RefAssessmentAssetType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentELDevelopmentalDomain] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentELDevelopmentalDomain] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9340,7 +10234,7 @@ CREATE TABLE [dbo].[RefAssessmentELDevelopmentalDomain]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentFormSectionIdentificationSystem] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentFormSectionIdentificationSystem] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9360,7 +10254,7 @@ CREATE TABLE [dbo].[RefAssessmentFormSectionIdentificationSystem]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentItemCharacteristicType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentItemCharacteristicType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9380,7 +10274,7 @@ CREATE TABLE [dbo].[RefAssessmentItemCharacteristicType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentItemResponseScoreStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentItemResponseScoreStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9400,7 +10294,7 @@ CREATE TABLE [dbo].[RefAssessmentItemResponseScoreStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentItemResponseStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentItemResponseStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9420,7 +10314,7 @@ CREATE TABLE [dbo].[RefAssessmentItemResponseStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentItemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentItemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9440,7 +10334,7 @@ CREATE TABLE [dbo].[RefAssessmentItemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedAlternativeRepresentationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedAlternativeRepresentationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9460,7 +10354,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedAlternativeRepresentationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedBrailleGradeType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedBrailleGradeType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9480,7 +10374,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedBrailleGradeType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedBrailleMarkType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedBrailleMarkType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9500,7 +10394,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedBrailleMarkType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedBrailleStatusCellType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedBrailleStatusCellType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9520,7 +10414,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedBrailleStatusCellType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedHazardType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedHazardType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9540,7 +10434,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedHazardType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedIncreasedWhitespacingType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedIncreasedWhitespacingType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9560,7 +10454,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedIncreasedWhitespacingType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedLanguageLearnerType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedLanguageLearnerType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9580,7 +10474,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedLanguageLearnerType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedLinkIndicationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedLinkIndicationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9600,7 +10494,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedLinkIndicationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedMaskingType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedMaskingType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9620,7 +10514,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedMaskingType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedNumberOfBrailleDots] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedNumberOfBrailleDots] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9640,7 +10534,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedNumberOfBrailleDots]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedSigningType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedSigningType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9660,7 +10554,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedSigningType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedSpokenSourcePreferenceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedSpokenSourcePreferenceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9680,7 +10574,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedSpokenSourcePreferenceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedSupportTool] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedSupportTool] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9700,7 +10594,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedSupportTool]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedUsageType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedUsageType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9720,7 +10614,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedUsageType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentNeedUserSpokenPreferenceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentNeedUserSpokenPreferenceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9740,7 +10634,7 @@ CREATE TABLE [dbo].[RefAssessmentNeedUserSpokenPreferenceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentParticipationIndicator] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentParticipationIndicator] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9760,7 +10654,7 @@ CREATE TABLE [dbo].[RefAssessmentParticipationIndicator]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentPlatformType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentPlatformType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9780,7 +10674,7 @@ CREATE TABLE [dbo].[RefAssessmentPlatformType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentPretestOutcome] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentPretestOutcome] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9800,7 +10694,7 @@ CREATE TABLE [dbo].[RefAssessmentPretestOutcome]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentPurpose] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentPurpose] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9820,7 +10714,7 @@ CREATE TABLE [dbo].[RefAssessmentPurpose]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentReasonNotCompleting] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentReasonNotCompleting] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9840,7 +10734,7 @@ CREATE TABLE [dbo].[RefAssessmentReasonNotCompleting]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentReasonNotTested] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentReasonNotTested] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9860,7 +10754,7 @@ CREATE TABLE [dbo].[RefAssessmentReasonNotTested]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentRegistrationCompletionStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentRegistrationCompletionStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9880,7 +10774,7 @@ CREATE TABLE [dbo].[RefAssessmentRegistrationCompletionStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentReportingMethod] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentReportingMethod] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9900,7 +10794,7 @@ CREATE TABLE [dbo].[RefAssessmentReportingMethod]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentResultDataType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentResultDataType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9920,7 +10814,7 @@ CREATE TABLE [dbo].[RefAssessmentResultDataType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentResultScoreType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentResultScoreType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9940,7 +10834,7 @@ CREATE TABLE [dbo].[RefAssessmentResultScoreType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentSessionSpecialCircumstanceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentSessionSpecialCircumstanceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9960,7 +10854,7 @@ CREATE TABLE [dbo].[RefAssessmentSessionSpecialCircumstanceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentSessionStaffRoleType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentSessionStaffRoleType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -9980,7 +10874,7 @@ CREATE TABLE [dbo].[RefAssessmentSessionStaffRoleType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentSessionType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentSessionType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10000,7 +10894,7 @@ CREATE TABLE [dbo].[RefAssessmentSessionType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentSubtestIdentifierType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentSubtestIdentifierType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10020,7 +10914,7 @@ CREATE TABLE [dbo].[RefAssessmentSubtestIdentifierType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10040,7 +10934,7 @@ CREATE TABLE [dbo].[RefAssessmentType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentTypeAdministered] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentTypeAdministered] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10060,7 +10954,7 @@ CREATE TABLE [dbo].[RefAssessmentTypeAdministered]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAssessmentTypeAdministeredToEnglishLearners] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAssessmentTypeAdministeredToEnglishLearners] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10080,7 +10974,7 @@ CREATE TABLE [dbo].[RefAssessmentTypeAdministeredToEnglishLearners]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAttendanceEventType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAttendanceEventType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10100,7 +10994,7 @@ CREATE TABLE [dbo].[RefAttendanceEventType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAttendanceStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAttendanceStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10120,7 +11014,7 @@ CREATE TABLE [dbo].[RefAttendanceStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAuthorizerType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAuthorizerType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10140,7 +11034,7 @@ CREATE TABLE [dbo].[RefAuthorizerType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefAypStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefAypStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10160,7 +11054,7 @@ CREATE TABLE [dbo].[RefAypStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBarrierToEducatingHomeless] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBarrierToEducatingHomeless] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10180,7 +11074,7 @@ CREATE TABLE [dbo].[RefBarrierToEducatingHomeless]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBarrierToInternetAccessInResidence] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBarrierToInternetAccessInResidence] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10200,7 +11094,7 @@ CREATE TABLE [dbo].[RefBarrierToInternetAccessInResidence]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBillableBasisType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBillableBasisType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10220,7 +11114,7 @@ CREATE TABLE [dbo].[RefBillableBasisType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBlendedLearningModelType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBlendedLearningModelType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10240,7 +11134,7 @@ CREATE TABLE [dbo].[RefBlendedLearningModelType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBloomsTaxonomyDomain] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBloomsTaxonomyDomain] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10260,7 +11154,47 @@ CREATE TABLE [dbo].[RefBloomsTaxonomyDomain]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingAdministrativeSpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBoardMemberPositionType] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefBoardMemberPositionType]( + [RefBoardMemberPositionTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefBoardMemberPositionType] PRIMARY KEY CLUSTERED +( + [RefBoardMemberPositionTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefBoardMembershipType] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefBoardMembershipType]( + [RefBoardMembershipTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefBoardMembershipType] PRIMARY KEY CLUSTERED +( + [RefBoardMembershipTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefBuildingAdministrativeSpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10280,7 +11214,7 @@ CREATE TABLE [dbo].[RefBuildingAdministrativeSpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingAirDistributionSystemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingAirDistributionSystemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10300,7 +11234,7 @@ CREATE TABLE [dbo].[RefBuildingAirDistributionSystemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingArtSpecialtySpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingArtSpecialtySpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10320,7 +11254,7 @@ CREATE TABLE [dbo].[RefBuildingArtSpecialtySpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingAssemblySpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingAssemblySpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10340,7 +11274,7 @@ CREATE TABLE [dbo].[RefBuildingAssemblySpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingBasicClassroomDesignType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingBasicClassroomDesignType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10360,7 +11294,7 @@ CREATE TABLE [dbo].[RefBuildingBasicClassroomDesignType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingCareerTechEducationSpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingCareerTechEducationSpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10380,7 +11314,7 @@ CREATE TABLE [dbo].[RefBuildingCareerTechEducationSpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingCharterSchoolRealtyAccessType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingCharterSchoolRealtyAccessType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10400,7 +11334,7 @@ CREATE TABLE [dbo].[RefBuildingCharterSchoolRealtyAccessType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingCirculationSpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingCirculationSpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10420,7 +11354,7 @@ CREATE TABLE [dbo].[RefBuildingCirculationSpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingCleaningStandardType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingCleaningStandardType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10440,7 +11374,7 @@ CREATE TABLE [dbo].[RefBuildingCleaningStandardType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingCommMgmtComponentSystemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingCommMgmtComponentSystemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10460,7 +11394,7 @@ CREATE TABLE [dbo].[RefBuildingCommMgmtComponentSystemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingCommunityUseSpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingCommunityUseSpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10480,7 +11414,7 @@ CREATE TABLE [dbo].[RefBuildingCommunityUseSpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingCoolingGenerationSystemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingCoolingGenerationSystemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10500,7 +11434,7 @@ CREATE TABLE [dbo].[RefBuildingCoolingGenerationSystemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingDesignType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingDesignType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10520,7 +11454,7 @@ CREATE TABLE [dbo].[RefBuildingDesignType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingElectricalSystemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingElectricalSystemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10540,7 +11474,7 @@ CREATE TABLE [dbo].[RefBuildingElectricalSystemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingEnergyConservationMeasureType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingEnergyConservationMeasureType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10560,7 +11494,7 @@ CREATE TABLE [dbo].[RefBuildingEnergyConservationMeasureType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingEnergySourceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingEnergySourceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10580,7 +11514,7 @@ CREATE TABLE [dbo].[RefBuildingEnergySourceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingEnvOrEnergyPerformanceRatingCat] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingEnvOrEnergyPerformanceRatingCat] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10600,7 +11534,7 @@ CREATE TABLE [dbo].[RefBuildingEnvOrEnergyPerformanceRatingCat]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingFireProtectionSystemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingFireProtectionSystemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10620,7 +11554,7 @@ CREATE TABLE [dbo].[RefBuildingFireProtectionSystemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingFoodServiceSpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingFoodServiceSpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10640,7 +11574,7 @@ CREATE TABLE [dbo].[RefBuildingFoodServiceSpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingFullServiceKitchenType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingFullServiceKitchenType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10660,7 +11594,7 @@ CREATE TABLE [dbo].[RefBuildingFullServiceKitchenType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingHeatingGenerationSystemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingHeatingGenerationSystemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10680,7 +11614,7 @@ CREATE TABLE [dbo].[RefBuildingHeatingGenerationSystemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingHistoricStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingHistoricStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10700,7 +11634,7 @@ CREATE TABLE [dbo].[RefBuildingHistoricStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingHVACSystemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingHVACSystemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10720,7 +11654,7 @@ CREATE TABLE [dbo].[RefBuildingHVACSystemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingIndoorAthleticOrPhysEdSpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingIndoorAthleticOrPhysEdSpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10740,7 +11674,7 @@ CREATE TABLE [dbo].[RefBuildingIndoorAthleticOrPhysEdSpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingInstructionalSpaceFactorType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingInstructionalSpaceFactorType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10760,7 +11694,7 @@ CREATE TABLE [dbo].[RefBuildingInstructionalSpaceFactorType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingJointUseRationaleType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingJointUseRationaleType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10780,7 +11714,7 @@ CREATE TABLE [dbo].[RefBuildingJointUseRationaleType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingJointUserType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingJointUserType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10800,7 +11734,7 @@ CREATE TABLE [dbo].[RefBuildingJointUserType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingJointUseSchedulingType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingJointUseSchedulingType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10820,7 +11754,7 @@ CREATE TABLE [dbo].[RefBuildingJointUseSchedulingType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingLibMediaCenterSpecialtySpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingLibMediaCenterSpecialtySpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10840,7 +11774,7 @@ CREATE TABLE [dbo].[RefBuildingLibMediaCenterSpecialtySpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingMechanicalConveyingSystemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingMechanicalConveyingSystemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10860,7 +11794,7 @@ CREATE TABLE [dbo].[RefBuildingMechanicalConveyingSystemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingMechanicalSystemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingMechanicalSystemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10880,7 +11814,7 @@ CREATE TABLE [dbo].[RefBuildingMechanicalSystemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingOperationsOrMaintSpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingOperationsOrMaintSpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10900,7 +11834,7 @@ CREATE TABLE [dbo].[RefBuildingOperationsOrMaintSpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingOutdoorAthleticOrPhysEdSpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingOutdoorAthleticOrPhysEdSpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10920,7 +11854,7 @@ CREATE TABLE [dbo].[RefBuildingOutdoorAthleticOrPhysEdSpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingOutdoorOrNonathleticSpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingOutdoorOrNonathleticSpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10940,7 +11874,7 @@ CREATE TABLE [dbo].[RefBuildingOutdoorOrNonathleticSpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingPerformingArtsSpecialtySpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingPerformingArtsSpecialtySpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10960,7 +11894,7 @@ CREATE TABLE [dbo].[RefBuildingPerformingArtsSpecialtySpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingPlumbingSystemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingPlumbingSystemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -10980,7 +11914,7 @@ CREATE TABLE [dbo].[RefBuildingPlumbingSystemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingPrimaryUseType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingPrimaryUseType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11000,7 +11934,7 @@ CREATE TABLE [dbo].[RefBuildingPrimaryUseType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingSchoolDesignType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingSchoolDesignType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11020,7 +11954,7 @@ CREATE TABLE [dbo].[RefBuildingSchoolDesignType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingScienceSpecialtySpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingScienceSpecialtySpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11040,7 +11974,7 @@ CREATE TABLE [dbo].[RefBuildingScienceSpecialtySpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingSecuritySystemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingSecuritySystemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11060,7 +11994,7 @@ CREATE TABLE [dbo].[RefBuildingSecuritySystemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingSiteUseRestrictionsType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingSiteUseRestrictionsType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11080,7 +12014,7 @@ CREATE TABLE [dbo].[RefBuildingSiteUseRestrictionsType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingSpaceDesignType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingSpaceDesignType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11100,7 +12034,7 @@ CREATE TABLE [dbo].[RefBuildingSpaceDesignType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingSpecEdSpecialtySpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingSpecEdSpecialtySpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11120,7 +12054,7 @@ CREATE TABLE [dbo].[RefBuildingSpecEdSpecialtySpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingStudentSupportSpaceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingStudentSupportSpaceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11140,7 +12074,7 @@ CREATE TABLE [dbo].[RefBuildingStudentSupportSpaceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingSystemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingSystemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11160,7 +12094,7 @@ CREATE TABLE [dbo].[RefBuildingSystemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingTechnologyWiringSystemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingTechnologyWiringSystemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11180,7 +12114,7 @@ CREATE TABLE [dbo].[RefBuildingTechnologyWiringSystemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingUseType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingUseType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11200,7 +12134,7 @@ CREATE TABLE [dbo].[RefBuildingUseType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefBuildingVerticalTransportationSystemType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefBuildingVerticalTransportationSystemType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11220,7 +12154,7 @@ CREATE TABLE [dbo].[RefBuildingVerticalTransportationSystemType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCalendarEventType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCalendarEventType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11240,7 +12174,7 @@ CREATE TABLE [dbo].[RefCalendarEventType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCampusResidencyType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCampusResidencyType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11260,7 +12194,7 @@ CREATE TABLE [dbo].[RefCampusResidencyType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCampusStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCampusStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11280,7 +12214,7 @@ CREATE TABLE [dbo].[RefCampusStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCampusType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCampusType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11300,7 +12234,7 @@ CREATE TABLE [dbo].[RefCampusType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCareerCluster] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCareerCluster] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11320,7 +12254,7 @@ CREATE TABLE [dbo].[RefCareerCluster]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCareerEducationPlanType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCareerEducationPlanType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11340,7 +12274,7 @@ CREATE TABLE [dbo].[RefCareerEducationPlanType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCarnegieBasicClassification] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCarnegieBasicClassification] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11360,7 +12294,7 @@ CREATE TABLE [dbo].[RefCarnegieBasicClassification]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCharterLeaStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCharterLeaStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11380,7 +12314,7 @@ CREATE TABLE [dbo].[RefCharterLeaStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCharterSchoolAuthorizerType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCharterSchoolAuthorizerType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11400,7 +12334,7 @@ CREATE TABLE [dbo].[RefCharterSchoolAuthorizerType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCharterSchoolManagementOrganizationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCharterSchoolManagementOrganizationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11420,7 +12354,7 @@ CREATE TABLE [dbo].[RefCharterSchoolManagementOrganizationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCharterSchoolType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCharterSchoolType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11440,7 +12374,7 @@ CREATE TABLE [dbo].[RefCharterSchoolType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefChildDevelopmentalScreeningStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefChildDevelopmentalScreeningStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11460,7 +12394,7 @@ CREATE TABLE [dbo].[RefChildDevelopmentalScreeningStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefChildDevelopmentAssociateType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefChildDevelopmentAssociateType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11480,7 +12414,7 @@ CREATE TABLE [dbo].[RefChildDevelopmentAssociateType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefChildOutcomesSummaryRating] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefChildOutcomesSummaryRating] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11500,7 +12434,27 @@ CREATE TABLE [dbo].[RefChildOutcomesSummaryRating]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCipCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefChronicStudentAbsenteeismIndicator] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefChronicStudentAbsenteeismIndicator]( + [RefChronicStudentAbsenteeismIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefChronicStudentAbsenteeismIndicator] PRIMARY KEY CLUSTERED +( + [RefChronicStudentAbsenteeismIndicatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefCipCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11520,7 +12474,7 @@ CREATE TABLE [dbo].[RefCipCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCipUse] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCipUse] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11540,7 +12494,7 @@ CREATE TABLE [dbo].[RefCipUse]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCipVersion] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCipVersion] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11560,7 +12514,7 @@ CREATE TABLE [dbo].[RefCipVersion]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefClassroomPositionType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefClassroomPositionType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11580,7 +12534,27 @@ CREATE TABLE [dbo].[RefClassroomPositionType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCohortExclusion] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCodingSystemOrganizationType] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefCodingSystemOrganizationType]( + [RefCodingSystemOrganizationTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefCodingSystemOrganizationType] PRIMARY KEY CLUSTERED +( + [RefCodingSystemOrganizationTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefCohortExclusion] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11600,7 +12574,7 @@ CREATE TABLE [dbo].[RefCohortExclusion]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCommunicationMethod] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCommunicationMethod] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11620,7 +12594,7 @@ CREATE TABLE [dbo].[RefCommunicationMethod]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCommunityBasedType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCommunityBasedType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11640,7 +12614,7 @@ CREATE TABLE [dbo].[RefCommunityBasedType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCompetencyDefAssociationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCompetencyDefAssociationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11660,7 +12634,7 @@ CREATE TABLE [dbo].[RefCompetencyDefAssociationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCompetencyDefNodeAccessibilityProfile] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCompetencyDefNodeAccessibilityProfile] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11680,7 +12654,7 @@ CREATE TABLE [dbo].[RefCompetencyDefNodeAccessibilityProfile]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCompetencyDefTestabilityType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCompetencyDefTestabilityType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11700,7 +12674,7 @@ CREATE TABLE [dbo].[RefCompetencyDefTestabilityType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCompetencyFrameworkPublicationStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCompetencyFrameworkPublicationStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11720,7 +12694,7 @@ CREATE TABLE [dbo].[RefCompetencyFrameworkPublicationStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCompetencySetCompletionCriteria] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCompetencySetCompletionCriteria] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11740,7 +12714,7 @@ CREATE TABLE [dbo].[RefCompetencySetCompletionCriteria]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefComprehensiveAndTargetedSupport] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefComprehensiveAndTargetedSupport] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11760,7 +12734,7 @@ CREATE TABLE [dbo].[RefComprehensiveAndTargetedSupport]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[RefComprehensiveSupport] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefComprehensiveSupport] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11780,7 +12754,7 @@ CREATE TABLE [dbo].[RefComprehensiveSupport]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[RefComprehensiveSupportAndImprovementStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefComprehensiveSupportAndImprovementStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11800,7 +12774,7 @@ CREATE TABLE [dbo].[RefComprehensiveSupportAndImprovementStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefContentStandardType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefContentStandardType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11820,7 +12794,7 @@ CREATE TABLE [dbo].[RefContentStandardType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefContinuationOfServices] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefContinuationOfServices] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11840,7 +12814,7 @@ CREATE TABLE [dbo].[RefContinuationOfServices]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefControlOfInstitution] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefControlOfInstitution] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11860,7 +12834,7 @@ CREATE TABLE [dbo].[RefControlOfInstitution]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCoreKnowledgeArea] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCoreKnowledgeArea] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11880,7 +12854,7 @@ CREATE TABLE [dbo].[RefCoreKnowledgeArea]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCorrectionalEducationFacilityType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCorrectionalEducationFacilityType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11900,7 +12874,7 @@ CREATE TABLE [dbo].[RefCorrectionalEducationFacilityType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCorrectiveActionType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCorrectiveActionType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11920,7 +12894,7 @@ CREATE TABLE [dbo].[RefCorrectiveActionType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCountry] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCountry] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11940,7 +12914,7 @@ CREATE TABLE [dbo].[RefCountry]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCounty] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCounty] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11960,7 +12934,7 @@ CREATE TABLE [dbo].[RefCounty]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseAcademicGradeStatusCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseAcademicGradeStatusCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -11980,7 +12954,7 @@ CREATE TABLE [dbo].[RefCourseAcademicGradeStatusCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseApplicableEducationLevel] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseApplicableEducationLevel] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12000,7 +12974,7 @@ CREATE TABLE [dbo].[RefCourseApplicableEducationLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseCreditBasisType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseCreditBasisType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12020,7 +12994,7 @@ CREATE TABLE [dbo].[RefCourseCreditBasisType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseCreditLevelType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseCreditLevelType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12040,7 +13014,7 @@ CREATE TABLE [dbo].[RefCourseCreditLevelType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseCreditUnit] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseCreditUnit] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12060,7 +13034,27 @@ CREATE TABLE [dbo].[RefCourseCreditUnit]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseGpaApplicability] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseFundingProgramAllowed] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefCourseFundingProgramAllowed]( + [RefCourseFundingProgramAllowedId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefCourseFundingProgramAllowed] PRIMARY KEY CLUSTERED +( + [RefCourseFundingProgramAllowedId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefCourseGpaApplicability] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12080,7 +13074,7 @@ CREATE TABLE [dbo].[RefCourseGpaApplicability]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseHonorsType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseHonorsType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12100,7 +13094,7 @@ CREATE TABLE [dbo].[RefCourseHonorsType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseInstructionMethod] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseInstructionMethod] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12120,7 +13114,7 @@ CREATE TABLE [dbo].[RefCourseInstructionMethod]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseInstructionSiteType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseInstructionSiteType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12140,7 +13134,7 @@ CREATE TABLE [dbo].[RefCourseInstructionSiteType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseInteractionMode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseInteractionMode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12160,7 +13154,7 @@ CREATE TABLE [dbo].[RefCourseInteractionMode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseLevelCharacteristic] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseLevelCharacteristic] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12180,7 +13174,7 @@ CREATE TABLE [dbo].[RefCourseLevelCharacteristic]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseLevelType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseLevelType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12200,7 +13194,7 @@ CREATE TABLE [dbo].[RefCourseLevelType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseRepeatCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseRepeatCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12220,7 +13214,7 @@ CREATE TABLE [dbo].[RefCourseRepeatCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseSectionAssessmentReportingMethod] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseSectionAssessmentReportingMethod] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12240,7 +13234,7 @@ CREATE TABLE [dbo].[RefCourseSectionAssessmentReportingMethod]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseSectionDeliveryMode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseSectionDeliveryMode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12260,7 +13254,7 @@ CREATE TABLE [dbo].[RefCourseSectionDeliveryMode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseSectionEnrollmentStatusType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseSectionEnrollmentStatusType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12280,7 +13274,7 @@ CREATE TABLE [dbo].[RefCourseSectionEnrollmentStatusType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseSectionEntryType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseSectionEntryType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12300,7 +13294,7 @@ CREATE TABLE [dbo].[RefCourseSectionEntryType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCourseSectionExitType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCourseSectionExitType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12320,7 +13314,27 @@ CREATE TABLE [dbo].[RefCourseSectionExitType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCredentialDefAgentRoleType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCredentialAwardRelationship] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefCredentialAwardRelationship]( + [RefCredentialAwardRelationshipId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefCredentialAwardRelationship] PRIMARY KEY CLUSTERED +( + [RefCredentialAwardRelationshipId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefCredentialDefAgentRoleType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12340,7 +13354,7 @@ CREATE TABLE [dbo].[RefCredentialDefAgentRoleType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCredentialDefAssessMethodType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCredentialDefAssessMethodType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12360,7 +13374,7 @@ CREATE TABLE [dbo].[RefCredentialDefAssessMethodType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCredentialDefIntendedPurposeType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCredentialDefIntendedPurposeType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12380,7 +13394,7 @@ CREATE TABLE [dbo].[RefCredentialDefIntendedPurposeType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCredentialDefStatusType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCredentialDefStatusType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12400,7 +13414,7 @@ CREATE TABLE [dbo].[RefCredentialDefStatusType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCredentialDefVerificationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCredentialDefVerificationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12420,7 +13434,7 @@ CREATE TABLE [dbo].[RefCredentialDefVerificationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCredentialIdentifierSystem] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCredentialIdentifierSystem] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12440,7 +13454,7 @@ CREATE TABLE [dbo].[RefCredentialIdentifierSystem]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCredentialType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCredentialType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12460,7 +13474,7 @@ CREATE TABLE [dbo].[RefCredentialType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCreditHoursAppliedOtherProgram] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCreditHoursAppliedOtherProgram] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12480,7 +13494,7 @@ CREATE TABLE [dbo].[RefCreditHoursAppliedOtherProgram]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCreditTypeEarned] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCreditTypeEarned] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12500,7 +13514,7 @@ CREATE TABLE [dbo].[RefCreditTypeEarned]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCriticalTeacherShortageCandidate] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCriticalTeacherShortageCandidate] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12520,7 +13534,7 @@ CREATE TABLE [dbo].[RefCriticalTeacherShortageCandidate]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCTDLAudienceLevelType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCTDLAudienceLevelType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12540,7 +13554,7 @@ CREATE TABLE [dbo].[RefCTDLAudienceLevelType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCTDLOrganizationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCTDLOrganizationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12560,7 +13574,7 @@ CREATE TABLE [dbo].[RefCTDLOrganizationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCteGraduationRateInclusion] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCteGraduationRateInclusion] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12580,7 +13594,7 @@ CREATE TABLE [dbo].[RefCteGraduationRateInclusion]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCteNonTraditionalGenderStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCteNonTraditionalGenderStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12600,7 +13614,7 @@ CREATE TABLE [dbo].[RefCteNonTraditionalGenderStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefCurriculumFrameworkType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefCurriculumFrameworkType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12620,7 +13634,7 @@ CREATE TABLE [dbo].[RefCurriculumFrameworkType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDataCollectionStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDataCollectionStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12640,7 +13654,7 @@ CREATE TABLE [dbo].[RefDataCollectionStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDegreeOrCertificateType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDegreeOrCertificateType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12660,7 +13674,47 @@ CREATE TABLE [dbo].[RefDegreeOrCertificateType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDentalInsuranceCoverageType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDEIPolicyIndicator] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefDEIPolicyIndicator]( + [RefDEIPolicyIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefDEIPolicyIndicator] PRIMARY KEY CLUSTERED +( + [RefDEIPolicyIndicatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefDelinquentProgramType] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefDelinquentProgramType]( + [RefDelinquentProgramTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefDelinquentProgramType] PRIMARY KEY CLUSTERED +( + [RefDelinquentProgramTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefDentalInsuranceCoverageType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12680,7 +13734,7 @@ CREATE TABLE [dbo].[RefDentalInsuranceCoverageType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDentalScreeningStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDentalScreeningStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12700,7 +13754,7 @@ CREATE TABLE [dbo].[RefDentalScreeningStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDependencyStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDependencyStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12720,7 +13774,7 @@ CREATE TABLE [dbo].[RefDependencyStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDevelopmentalEducationReferralStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDevelopmentalEducationReferralStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12740,7 +13794,7 @@ CREATE TABLE [dbo].[RefDevelopmentalEducationReferralStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDevelopmentalEducationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDevelopmentalEducationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12760,7 +13814,7 @@ CREATE TABLE [dbo].[RefDevelopmentalEducationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDevelopmentalEvaluationFinding] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDevelopmentalEvaluationFinding] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12780,7 +13834,7 @@ CREATE TABLE [dbo].[RefDevelopmentalEvaluationFinding]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDirectoryInformationBlockStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDirectoryInformationBlockStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12800,7 +13854,7 @@ CREATE TABLE [dbo].[RefDirectoryInformationBlockStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDisabilityConditionStatusCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDisabilityConditionStatusCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12820,7 +13874,7 @@ CREATE TABLE [dbo].[RefDisabilityConditionStatusCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDisabilityConditionType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDisabilityConditionType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12840,7 +13894,7 @@ CREATE TABLE [dbo].[RefDisabilityConditionType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDisabilityDeterminationSourceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDisabilityDeterminationSourceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12860,7 +13914,7 @@ CREATE TABLE [dbo].[RefDisabilityDeterminationSourceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDisabilityType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDisabilityType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12880,7 +13934,7 @@ CREATE TABLE [dbo].[RefDisabilityType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDisciplinaryActionTaken] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDisciplinaryActionTaken] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12900,7 +13954,7 @@ CREATE TABLE [dbo].[RefDisciplinaryActionTaken]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDisciplineLengthDifferenceReason] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDisciplineLengthDifferenceReason] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12920,7 +13974,7 @@ CREATE TABLE [dbo].[RefDisciplineLengthDifferenceReason]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDisciplineMethodFirearms] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDisciplineMethodFirearms] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12940,7 +13994,7 @@ CREATE TABLE [dbo].[RefDisciplineMethodFirearms]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDisciplineMethodOfCwd] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDisciplineMethodOfCwd] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12960,7 +14014,7 @@ CREATE TABLE [dbo].[RefDisciplineMethodOfCwd]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDisciplineReason] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDisciplineReason] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -12980,7 +14034,7 @@ CREATE TABLE [dbo].[RefDisciplineReason]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDistanceEducationCourseEnrollment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDistanceEducationCourseEnrollment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13000,7 +14054,7 @@ CREATE TABLE [dbo].[RefDistanceEducationCourseEnrollment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDoctoralExamsRequiredCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDoctoralExamsRequiredCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13020,7 +14074,7 @@ CREATE TABLE [dbo].[RefDoctoralExamsRequiredCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefDQPCategoriesOfLearning] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDQPCategoriesOfLearning] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13040,7 +14094,27 @@ CREATE TABLE [dbo].[RefDQPCategoriesOfLearning]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEarlyChildhoodCredential] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefDropoutReasonType] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefDropoutReasonType]( + [RefDropoutReasonTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefDropoutReasonType] PRIMARY KEY CLUSTERED +( + [RefDropoutReasonTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefEarlyChildhoodCredential] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13060,7 +14134,7 @@ CREATE TABLE [dbo].[RefEarlyChildhoodCredential]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEarlyChildhoodProgramEnrollmentType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEarlyChildhoodProgramEnrollmentType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13080,7 +14154,7 @@ CREATE TABLE [dbo].[RefEarlyChildhoodProgramEnrollmentType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEarlyChildhoodServices] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEarlyChildhoodServices] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13100,7 +14174,7 @@ CREATE TABLE [dbo].[RefEarlyChildhoodServices]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13120,7 +14194,7 @@ CREATE TABLE [dbo].[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13140,7 +14214,7 @@ CREATE TABLE [dbo].[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEdFactsCertificationStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEdFactsCertificationStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13160,7 +14234,7 @@ CREATE TABLE [dbo].[RefEdFactsCertificationStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEDFactsTeacherInexperiencedStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEDFactsTeacherInexperiencedStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13180,7 +14254,27 @@ CREATE TABLE [dbo].[RefEDFactsTeacherInexperiencedStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEducationLevel] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEducationJobType] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefEducationJobType]( + [RefEducationJobTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefEducationJobType] PRIMARY KEY CLUSTERED +( + [RefEducationJobTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefEducationLevel] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13201,7 +14295,7 @@ CREATE TABLE [dbo].[RefEducationLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEducationLevelType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEducationLevelType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13221,7 +14315,7 @@ CREATE TABLE [dbo].[RefEducationLevelType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEducationVerificationMethod] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEducationVerificationMethod] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13241,7 +14335,7 @@ CREATE TABLE [dbo].[RefEducationVerificationMethod]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELEducationStaffClassification] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELEducationStaffClassification] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13261,7 +14355,7 @@ CREATE TABLE [dbo].[RefELEducationStaffClassification]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefElementaryMiddleAdditional] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefElementaryMiddleAdditional] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13281,7 +14375,7 @@ CREATE TABLE [dbo].[RefElementaryMiddleAdditional]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELEmploymentSeparationReason] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELEmploymentSeparationReason] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13301,7 +14395,7 @@ CREATE TABLE [dbo].[RefELEmploymentSeparationReason]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELFacilityLicensingStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELFacilityLicensingStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13321,7 +14415,7 @@ CREATE TABLE [dbo].[RefELFacilityLicensingStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELFederalFundingType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELFederalFundingType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13341,7 +14435,7 @@ CREATE TABLE [dbo].[RefELFederalFundingType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELGroupSizeStandardMet] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELGroupSizeStandardMet] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13361,7 +14455,7 @@ CREATE TABLE [dbo].[RefELGroupSizeStandardMet]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELLevelOfSpecialization] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELLevelOfSpecialization] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13381,7 +14475,7 @@ CREATE TABLE [dbo].[RefELLevelOfSpecialization]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELLocalRevenueSource] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELLocalRevenueSource] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13401,7 +14495,7 @@ CREATE TABLE [dbo].[RefELLocalRevenueSource]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELOtherFederalFundingSources] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELOtherFederalFundingSources] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13421,7 +14515,7 @@ CREATE TABLE [dbo].[RefELOtherFederalFundingSources]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELOutcomeMeasurementLevel] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELOutcomeMeasurementLevel] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13441,7 +14535,7 @@ CREATE TABLE [dbo].[RefELOutcomeMeasurementLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELProfessionalDevelopmentTopicArea] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELProfessionalDevelopmentTopicArea] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13461,7 +14555,7 @@ CREATE TABLE [dbo].[RefELProfessionalDevelopmentTopicArea]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELProgramEligibility] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELProgramEligibility] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13481,7 +14575,7 @@ CREATE TABLE [dbo].[RefELProgramEligibility]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELProgramEligibilityStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELProgramEligibilityStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13501,7 +14595,7 @@ CREATE TABLE [dbo].[RefELProgramEligibilityStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELProgramLicenseStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELProgramLicenseStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13521,7 +14615,7 @@ CREATE TABLE [dbo].[RefELProgramLicenseStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELServiceProfessionalStaffClassification] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELServiceProfessionalStaffClassification] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13541,7 +14635,7 @@ CREATE TABLE [dbo].[RefELServiceProfessionalStaffClassification]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELServiceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELServiceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13561,7 +14655,7 @@ CREATE TABLE [dbo].[RefELServiceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELStateRevenueSource] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELStateRevenueSource] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13581,7 +14675,7 @@ CREATE TABLE [dbo].[RefELStateRevenueSource]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefELTrainerCoreKnowledgeArea] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefELTrainerCoreKnowledgeArea] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13601,7 +14695,7 @@ CREATE TABLE [dbo].[RefELTrainerCoreKnowledgeArea]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEmailType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEmailType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13621,7 +14715,7 @@ CREATE TABLE [dbo].[RefEmailType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEmergencyOrProvisionalCredentialStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEmergencyOrProvisionalCredentialStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13641,7 +14735,7 @@ CREATE TABLE [dbo].[RefEmergencyOrProvisionalCredentialStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEmployedAfterExit] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEmployedAfterExit] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13661,7 +14755,7 @@ CREATE TABLE [dbo].[RefEmployedAfterExit]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEmployedPriorToEnrollment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEmployedPriorToEnrollment] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13681,7 +14775,7 @@ CREATE TABLE [dbo].[RefEmployedPriorToEnrollment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEmployedWhileEnrolled] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEmployedWhileEnrolled] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13701,7 +14795,7 @@ CREATE TABLE [dbo].[RefEmployedWhileEnrolled]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEmployeeBenefit] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEmployeeBenefit] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13721,7 +14815,7 @@ CREATE TABLE [dbo].[RefEmployeeBenefit]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEmploymentContractType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEmploymentContractType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13741,7 +14835,7 @@ CREATE TABLE [dbo].[RefEmploymentContractType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEmploymentLocation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEmploymentLocation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13761,7 +14855,7 @@ CREATE TABLE [dbo].[RefEmploymentLocation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEmploymentSeparationReason] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEmploymentSeparationReason] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13781,7 +14875,7 @@ CREATE TABLE [dbo].[RefEmploymentSeparationReason]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEmploymentSeparationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEmploymentSeparationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13801,7 +14895,7 @@ CREATE TABLE [dbo].[RefEmploymentSeparationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEmploymentStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEmploymentStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13821,7 +14915,7 @@ CREATE TABLE [dbo].[RefEmploymentStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEmploymentStatusWhileEnrolled] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEmploymentStatusWhileEnrolled] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13841,7 +14935,7 @@ CREATE TABLE [dbo].[RefEmploymentStatusWhileEnrolled]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEndOfTermStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEndOfTermStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13861,7 +14955,7 @@ CREATE TABLE [dbo].[RefEndOfTermStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEnrollmentStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEnrollmentStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13881,7 +14975,7 @@ CREATE TABLE [dbo].[RefEnrollmentStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEntityType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEntityType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13901,7 +14995,7 @@ CREATE TABLE [dbo].[RefEntityType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEntryType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEntryType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13921,7 +15015,7 @@ CREATE TABLE [dbo].[RefEntryType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefEnvironmentSetting] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefEnvironmentSetting] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13941,7 +15035,7 @@ CREATE TABLE [dbo].[RefEnvironmentSetting]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefERAdministrativeDataSource] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefERAdministrativeDataSource] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13961,7 +15055,7 @@ CREATE TABLE [dbo].[RefERAdministrativeDataSource]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefERSRuralUrbanContinuumCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefERSRuralUrbanContinuumCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -13981,7 +15075,7 @@ CREATE TABLE [dbo].[RefERSRuralUrbanContinuumCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefExitOrWithdrawalStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefExitOrWithdrawalStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14001,7 +15095,7 @@ CREATE TABLE [dbo].[RefExitOrWithdrawalStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefExitOrWithdrawalType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefExitOrWithdrawalType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14021,7 +15115,7 @@ CREATE TABLE [dbo].[RefExitOrWithdrawalType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilitiesMandateAuthorityType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilitiesMandateAuthorityType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14041,7 +15135,7 @@ CREATE TABLE [dbo].[RefFacilitiesMandateAuthorityType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilitiesMgmtEmergencyType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilitiesMgmtEmergencyType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14061,7 +15155,7 @@ CREATE TABLE [dbo].[RefFacilitiesMgmtEmergencyType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilitiesPlanType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilitiesPlanType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14081,7 +15175,7 @@ CREATE TABLE [dbo].[RefFacilitiesPlanType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityApplicableFederalMandateType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityApplicableFederalMandateType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14101,7 +15195,7 @@ CREATE TABLE [dbo].[RefFacilityApplicableFederalMandateType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityAuditType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityAuditType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14121,7 +15215,7 @@ CREATE TABLE [dbo].[RefFacilityAuditType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityCapitalProgramMgmtType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityCapitalProgramMgmtType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14141,7 +15235,7 @@ CREATE TABLE [dbo].[RefFacilityCapitalProgramMgmtType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityComplianceAgencyType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityComplianceAgencyType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14161,7 +15255,7 @@ CREATE TABLE [dbo].[RefFacilityComplianceAgencyType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityComplianceStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityComplianceStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14181,7 +15275,7 @@ CREATE TABLE [dbo].[RefFacilityComplianceStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityConstructionDateType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityConstructionDateType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14201,7 +15295,7 @@ CREATE TABLE [dbo].[RefFacilityConstructionDateType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityConstructionMaterialType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityConstructionMaterialType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14221,7 +15315,7 @@ CREATE TABLE [dbo].[RefFacilityConstructionMaterialType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityFederalMandateInterestType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityFederalMandateInterestType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14241,7 +15335,7 @@ CREATE TABLE [dbo].[RefFacilityFederalMandateInterestType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityFinancingFeeType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityFinancingFeeType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14261,7 +15355,7 @@ CREATE TABLE [dbo].[RefFacilityFinancingFeeType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityFurnishingsType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityFurnishingsType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14281,7 +15375,7 @@ CREATE TABLE [dbo].[RefFacilityFurnishingsType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityHazardousMaterialsOrCondType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityHazardousMaterialsOrCondType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14301,7 +15395,7 @@ CREATE TABLE [dbo].[RefFacilityHazardousMaterialsOrCondType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityJointDevelopmentType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityJointDevelopmentType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14321,7 +15415,27 @@ CREATE TABLE [dbo].[RefFacilityJointDevelopmentType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityLeaseAmountCategory] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityJointUseIndicator] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefFacilityJointUseIndicator]( + [RefFacilityJointUseIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefFacilityJointUseIndicator] PRIMARY KEY CLUSTERED +( + [RefFacilityJointUseIndicatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefFacilityLeaseAmountCategory] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14341,7 +15455,7 @@ CREATE TABLE [dbo].[RefFacilityLeaseAmountCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityLeaseType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityLeaseType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14361,7 +15475,7 @@ CREATE TABLE [dbo].[RefFacilityLeaseType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityMaintStandardType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityMaintStandardType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14381,7 +15495,7 @@ CREATE TABLE [dbo].[RefFacilityMaintStandardType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityMortgageInterestType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityMortgageInterestType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14401,7 +15515,7 @@ CREATE TABLE [dbo].[RefFacilityMortgageInterestType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityMortgageType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityMortgageType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14421,7 +15535,7 @@ CREATE TABLE [dbo].[RefFacilityMortgageType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityNaturallyOccurringHazardType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityNaturallyOccurringHazardType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14441,7 +15555,7 @@ CREATE TABLE [dbo].[RefFacilityNaturallyOccurringHazardType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityOperationsMgmtType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityOperationsMgmtType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14461,7 +15575,7 @@ CREATE TABLE [dbo].[RefFacilityOperationsMgmtType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilitySiteImprovementLocationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilitySiteImprovementLocationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14481,7 +15595,7 @@ CREATE TABLE [dbo].[RefFacilitySiteImprovementLocationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilitySiteOutdoorAreaType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilitySiteOutdoorAreaType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14501,7 +15615,7 @@ CREATE TABLE [dbo].[RefFacilitySiteOutdoorAreaType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityStandardType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityStandardType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14521,7 +15635,7 @@ CREATE TABLE [dbo].[RefFacilityStandardType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityStateOrLocalMandateInterestType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityStateOrLocalMandateInterestType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14541,7 +15655,7 @@ CREATE TABLE [dbo].[RefFacilityStateOrLocalMandateInterestType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilitySystemOrComponentCondition] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilitySystemOrComponentCondition] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14561,7 +15675,7 @@ CREATE TABLE [dbo].[RefFacilitySystemOrComponentCondition]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityUtilityProviderType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityUtilityProviderType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14581,7 +15695,7 @@ CREATE TABLE [dbo].[RefFacilityUtilityProviderType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFacilityUtilityType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFacilityUtilityType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14601,7 +15715,7 @@ CREATE TABLE [dbo].[RefFacilityUtilityType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFamilyIncomeSource] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFamilyIncomeSource] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14621,7 +15735,7 @@ CREATE TABLE [dbo].[RefFamilyIncomeSource]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFederalProgramCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFederalProgramCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14641,7 +15755,7 @@ CREATE TABLE [dbo].[RefFederalProgramCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFederalProgramFundingAllocationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFederalProgramFundingAllocationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14661,7 +15775,7 @@ CREATE TABLE [dbo].[RefFederalProgramFundingAllocationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFederalProgramSubgrantCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFederalProgramSubgrantCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14681,7 +15795,7 @@ CREATE TABLE [dbo].[RefFederalProgramSubgrantCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAccountBalanceSheetCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAccountBalanceSheetCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14701,7 +15815,7 @@ CREATE TABLE [dbo].[RefFinancialAccountBalanceSheetCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAccountCategory] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAccountCategory] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14721,7 +15835,7 @@ CREATE TABLE [dbo].[RefFinancialAccountCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAccountCodingSystemOrganizationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAccountCodingSystemOrganizationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14741,7 +15855,7 @@ CREATE TABLE [dbo].[RefFinancialAccountCodingSystemOrganizationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAccountFundClassification] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAccountFundClassification] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14761,7 +15875,27 @@ CREATE TABLE [dbo].[RefFinancialAccountFundClassification]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAccountLocalBalanceSheetCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAccountGASBRevenueClassification] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefFinancialAccountGASBRevenueClassification]( + [RefFinancialAccountGASBRevenueClassificationId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefFinancialAccountGASBRevenueClassification] PRIMARY KEY CLUSTERED +( + [RefFinancialAccountGASBRevenueClassificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefFinancialAccountLocalBalanceSheetCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14782,7 +15916,7 @@ CREATE TABLE [dbo].[RefFinancialAccountLocalBalanceSheetCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAccountLocalFundClassification] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAccountLocalFundClassification] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14803,7 +15937,27 @@ CREATE TABLE [dbo].[RefFinancialAccountLocalFundClassification]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAccountLocalProgramCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAccountLocalGASBRevenueClassification] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefFinancialAccountLocalGASBRevenueClassification]( + [RefFinancialAccountLocalGASBRevenueClassificationId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefFinancialAccountLocalGASBRevenueClassification] PRIMARY KEY CLUSTERED +( + [RefFinancialAccountLocalGASBRevenueClassificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefFinancialAccountLocalProgramCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14824,7 +15978,7 @@ CREATE TABLE [dbo].[RefFinancialAccountLocalProgramCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAccountLocalRevenueCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAccountLocalRevenueCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14845,7 +15999,7 @@ CREATE TABLE [dbo].[RefFinancialAccountLocalRevenueCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAccountProgramCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAccountProgramCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14865,7 +16019,7 @@ CREATE TABLE [dbo].[RefFinancialAccountProgramCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAccountRevenueCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAccountRevenueCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14885,7 +16039,7 @@ CREATE TABLE [dbo].[RefFinancialAccountRevenueCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAidApplicationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAidApplicationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14905,7 +16059,7 @@ CREATE TABLE [dbo].[RefFinancialAidApplicationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAidAwardStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAidAwardStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14925,7 +16079,7 @@ CREATE TABLE [dbo].[RefFinancialAidAwardStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAidAwardType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAidAwardType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14945,7 +16099,7 @@ CREATE TABLE [dbo].[RefFinancialAidAwardType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAidVeteransBenefitStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAidVeteransBenefitStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14965,7 +16119,7 @@ CREATE TABLE [dbo].[RefFinancialAidVeteransBenefitStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialAidVeteransBenefitType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialAidVeteransBenefitType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -14985,7 +16139,7 @@ CREATE TABLE [dbo].[RefFinancialAidVeteransBenefitType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialExpenditureFunctionCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialExpenditureFunctionCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15005,7 +16159,7 @@ CREATE TABLE [dbo].[RefFinancialExpenditureFunctionCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialExpenditureLevelOfInstructionCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialExpenditureLevelOfInstructionCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15025,7 +16179,7 @@ CREATE TABLE [dbo].[RefFinancialExpenditureLevelOfInstructionCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialExpenditureLocalFunctionCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialExpenditureLocalFunctionCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15046,7 +16200,7 @@ CREATE TABLE [dbo].[RefFinancialExpenditureLocalFunctionCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15067,7 +16221,7 @@ CREATE TABLE [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialExpenditureLocalObjectCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialExpenditureLocalObjectCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15088,7 +16242,7 @@ CREATE TABLE [dbo].[RefFinancialExpenditureLocalObjectCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFinancialExpenditureObjectCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFinancialExpenditureObjectCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15108,7 +16262,7 @@ CREATE TABLE [dbo].[RefFinancialExpenditureObjectCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFirearmType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFirearmType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15128,7 +16282,7 @@ CREATE TABLE [dbo].[RefFirearmType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFoodServiceEligibility] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFoodServiceEligibility] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15148,7 +16302,7 @@ CREATE TABLE [dbo].[RefFoodServiceEligibility]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFoodServiceParticipation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFoodServiceParticipation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15168,7 +16322,7 @@ CREATE TABLE [dbo].[RefFoodServiceParticipation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFrequencyOfService] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFrequencyOfService] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15188,7 +16342,7 @@ CREATE TABLE [dbo].[RefFrequencyOfService]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFrequencyUnit] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFrequencyUnit] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15208,7 +16362,7 @@ CREATE TABLE [dbo].[RefFrequencyUnit]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefFullTimeStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefFullTimeStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15228,7 +16382,7 @@ CREATE TABLE [dbo].[RefFullTimeStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefGoalMeasurementType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefGoalMeasurementType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15248,7 +16402,7 @@ CREATE TABLE [dbo].[RefGoalMeasurementType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefGoalsForAttendingAdultEducation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefGoalsForAttendingAdultEducation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15268,7 +16422,7 @@ CREATE TABLE [dbo].[RefGoalsForAttendingAdultEducation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefGoalStatusType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefGoalStatusType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15288,7 +16442,7 @@ CREATE TABLE [dbo].[RefGoalStatusType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefGpaWeightedIndicator] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefGpaWeightedIndicator] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15308,7 +16462,7 @@ CREATE TABLE [dbo].[RefGpaWeightedIndicator]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefGradeLevel] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefGradeLevel] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15329,7 +16483,7 @@ CREATE TABLE [dbo].[RefGradeLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefGradeLevelsApproved] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefGradeLevelsApproved] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15349,7 +16503,7 @@ CREATE TABLE [dbo].[RefGradeLevelsApproved]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefGradeLevelType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefGradeLevelType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15369,7 +16523,7 @@ CREATE TABLE [dbo].[RefGradeLevelType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefGradePointAverageDomain] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefGradePointAverageDomain] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15389,7 +16543,7 @@ CREATE TABLE [dbo].[RefGradePointAverageDomain]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefGraduateAssistantIpedsCategory] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefGraduateAssistantIpedsCategory] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15409,7 +16563,7 @@ CREATE TABLE [dbo].[RefGraduateAssistantIpedsCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefGraduateOrDoctoralExamResultsStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefGraduateOrDoctoralExamResultsStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15429,7 +16583,7 @@ CREATE TABLE [dbo].[RefGraduateOrDoctoralExamResultsStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefGunFreeSchoolsActReportingStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefGunFreeSchoolsActReportingStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15449,7 +16603,7 @@ CREATE TABLE [dbo].[RefGunFreeSchoolsActReportingStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefHealthInsuranceCoverage] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefHealthInsuranceCoverage] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15469,7 +16623,7 @@ CREATE TABLE [dbo].[RefHealthInsuranceCoverage]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefHearingScreeningStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefHearingScreeningStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15489,7 +16643,7 @@ CREATE TABLE [dbo].[RefHearingScreeningStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefHigherEducationInstitutionAccreditationStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefHigherEducationInstitutionAccreditationStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15509,7 +16663,27 @@ CREATE TABLE [dbo].[RefHigherEducationInstitutionAccreditationStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefHighSchoolDiplomaDistinctionType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefHighQualityInstructionalMaterialIndicator] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefHighQualityInstructionalMaterialIndicator]( + [RefHighQualityInstructionalMaterialIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefHighQualityInstructionalMaterialIndicator] PRIMARY KEY CLUSTERED +( + [RefHighQualityInstructionalMaterialIndicatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefHighSchoolDiplomaDistinctionType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15529,7 +16703,7 @@ CREATE TABLE [dbo].[RefHighSchoolDiplomaDistinctionType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefHighSchoolDiplomaType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefHighSchoolDiplomaType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15549,7 +16723,7 @@ CREATE TABLE [dbo].[RefHighSchoolDiplomaType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefHighSchoolGraduationRateIndicator] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefHighSchoolGraduationRateIndicator] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15569,7 +16743,7 @@ CREATE TABLE [dbo].[RefHighSchoolGraduationRateIndicator]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefHomelessNighttimeResidence] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefHomelessNighttimeResidence] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15589,7 +16763,7 @@ CREATE TABLE [dbo].[RefHomelessNighttimeResidence]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIDEADisabilityType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIDEADisabilityType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15609,7 +16783,7 @@ CREATE TABLE [dbo].[RefIDEADisabilityType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIDEADisciplineMethodFirearm] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIDEADisciplineMethodFirearm] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15629,7 +16803,7 @@ CREATE TABLE [dbo].[RefIDEADisciplineMethodFirearm]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIDEAEducationalEnvironmentEC] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIDEAEducationalEnvironmentEC] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15649,7 +16823,7 @@ CREATE TABLE [dbo].[RefIDEAEducationalEnvironmentEC]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIDEAEducationalEnvironmentSchoolAge] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIDEAEducationalEnvironmentSchoolAge] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15669,7 +16843,7 @@ CREATE TABLE [dbo].[RefIDEAEducationalEnvironmentSchoolAge]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIDEAEligibilityEvaluationCategory] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIDEAEligibilityEvaluationCategory] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15689,7 +16863,7 @@ CREATE TABLE [dbo].[RefIDEAEligibilityEvaluationCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIDEAEnvironmentEL] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIDEAEnvironmentEL] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15709,7 +16883,7 @@ CREATE TABLE [dbo].[RefIDEAEnvironmentEL]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIDEAIEPStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIDEAIEPStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15729,7 +16903,7 @@ CREATE TABLE [dbo].[RefIDEAIEPStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIDEAInterimRemoval] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIDEAInterimRemoval] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15749,7 +16923,7 @@ CREATE TABLE [dbo].[RefIDEAInterimRemoval]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIDEAInterimRemovalReason] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIDEAInterimRemovalReason] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15769,7 +16943,7 @@ CREATE TABLE [dbo].[RefIDEAInterimRemovalReason]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIDEAPartCEligibilityCategory] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIDEAPartCEligibilityCategory] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15789,7 +16963,7 @@ CREATE TABLE [dbo].[RefIDEAPartCEligibilityCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIEPAuthorizationDocumentType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIEPAuthorizationDocumentType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15809,7 +16983,7 @@ CREATE TABLE [dbo].[RefIEPAuthorizationDocumentType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIEPEligibilityEvaluationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIEPEligibilityEvaluationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15829,7 +17003,7 @@ CREATE TABLE [dbo].[RefIEPEligibilityEvaluationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIEPGoalType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIEPGoalType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15849,7 +17023,7 @@ CREATE TABLE [dbo].[RefIEPGoalType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefImmunizationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefImmunizationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15869,7 +17043,27 @@ CREATE TABLE [dbo].[RefImmunizationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIncidentBehavior] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIncidentActivity] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefIncidentActivity]( + [RefIncidentActivityId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefIncidentActivity] PRIMARY KEY CLUSTERED +( + [RefIncidentActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefIncidentBehavior] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15889,7 +17083,7 @@ CREATE TABLE [dbo].[RefIncidentBehavior]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIncidentBehaviorSecondary] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIncidentBehaviorSecondary] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15909,7 +17103,7 @@ CREATE TABLE [dbo].[RefIncidentBehaviorSecondary]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIncidentInjuryType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIncidentInjuryType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15929,7 +17123,7 @@ CREATE TABLE [dbo].[RefIncidentInjuryType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIncidentLocation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIncidentLocation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15949,7 +17143,7 @@ CREATE TABLE [dbo].[RefIncidentLocation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIncidentMultipleOffenseType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIncidentMultipleOffenseType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15969,7 +17163,7 @@ CREATE TABLE [dbo].[RefIncidentMultipleOffenseType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIncidentPerpetratorInjuryType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIncidentPerpetratorInjuryType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -15989,7 +17183,7 @@ CREATE TABLE [dbo].[RefIncidentPerpetratorInjuryType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIncidentPersonRoleType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIncidentPersonRoleType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16009,7 +17203,7 @@ CREATE TABLE [dbo].[RefIncidentPersonRoleType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIncidentPersonType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIncidentPersonType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16029,7 +17223,7 @@ CREATE TABLE [dbo].[RefIncidentPersonType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIncidentReporterType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIncidentReporterType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16049,7 +17243,7 @@ CREATE TABLE [dbo].[RefIncidentReporterType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIncidentTimeDescriptionCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIncidentTimeDescriptionCode] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16069,7 +17263,7 @@ CREATE TABLE [dbo].[RefIncidentTimeDescriptionCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIncomeCalculationMethod] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIncomeCalculationMethod] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16089,7 +17283,7 @@ CREATE TABLE [dbo].[RefIncomeCalculationMethod]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIncreasedLearningTimeType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIncreasedLearningTimeType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16109,7 +17303,7 @@ CREATE TABLE [dbo].[RefIncreasedLearningTimeType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIndicatorStateDefinedStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIndicatorStateDefinedStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16129,7 +17323,7 @@ CREATE TABLE [dbo].[RefIndicatorStateDefinedStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIndicatorStatusCustomType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIndicatorStatusCustomType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16149,7 +17343,7 @@ CREATE TABLE [dbo].[RefIndicatorStatusCustomType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIndicatorStatusSubgroupType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIndicatorStatusSubgroupType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16169,7 +17363,7 @@ CREATE TABLE [dbo].[RefIndicatorStatusSubgroupType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIndicatorStatusType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIndicatorStatusType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16189,7 +17383,7 @@ CREATE TABLE [dbo].[RefIndicatorStatusType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIndividualizedProgramDateType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIndividualizedProgramDateType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16209,7 +17403,7 @@ CREATE TABLE [dbo].[RefIndividualizedProgramDateType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIndividualizedProgramLocation] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIndividualizedProgramLocation] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16229,7 +17423,7 @@ CREATE TABLE [dbo].[RefIndividualizedProgramLocation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIndividualizedProgramPlannedServiceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIndividualizedProgramPlannedServiceType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16249,7 +17443,7 @@ CREATE TABLE [dbo].[RefIndividualizedProgramPlannedServiceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIndividualizedProgramTransitionType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIndividualizedProgramTransitionType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16269,7 +17463,7 @@ CREATE TABLE [dbo].[RefIndividualizedProgramTransitionType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIndividualizedProgramType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIndividualizedProgramType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16289,7 +17483,7 @@ CREATE TABLE [dbo].[RefIndividualizedProgramType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefInstitutionTelephoneType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefInstitutionTelephoneType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16309,7 +17503,7 @@ CREATE TABLE [dbo].[RefInstitutionTelephoneType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefInstructionalActivityHours] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefInstructionalActivityHours] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16329,7 +17523,7 @@ CREATE TABLE [dbo].[RefInstructionalActivityHours]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefInstructionalStaffContractLength] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefInstructionalStaffContractLength] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16349,7 +17543,7 @@ CREATE TABLE [dbo].[RefInstructionalStaffContractLength]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefInstructionalStaffFacultyTenure] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefInstructionalStaffFacultyTenure] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16369,7 +17563,7 @@ CREATE TABLE [dbo].[RefInstructionalStaffFacultyTenure]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefInstructionCreditType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefInstructionCreditType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16389,7 +17583,7 @@ CREATE TABLE [dbo].[RefInstructionCreditType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefInstructionLocationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefInstructionLocationType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16409,7 +17603,7 @@ CREATE TABLE [dbo].[RefInstructionLocationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIntegratedTechnologyStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIntegratedTechnologyStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16429,7 +17623,7 @@ CREATE TABLE [dbo].[RefIntegratedTechnologyStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefInternetAccess] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefInternetAccess] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16449,7 +17643,7 @@ CREATE TABLE [dbo].[RefInternetAccess]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefInternetAccessTypeInResidence] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefInternetAccessTypeInResidence] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16469,7 +17663,7 @@ CREATE TABLE [dbo].[RefInternetAccessTypeInResidence]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefInternetPerformanceInResidence] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefInternetPerformanceInResidence] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16489,7 +17683,7 @@ CREATE TABLE [dbo].[RefInternetPerformanceInResidence]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIPEDSFASBFinancialPosition] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIPEDSFASBFinancialPosition] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16509,7 +17703,7 @@ CREATE TABLE [dbo].[RefIPEDSFASBFinancialPosition]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIPEDSFASBFunctionalExpense] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIPEDSFASBFunctionalExpense] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16529,7 +17723,7 @@ CREATE TABLE [dbo].[RefIPEDSFASBFunctionalExpense]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIPEDSFASBPellGrantTransactions] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIPEDSFASBPellGrantTransactions] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16549,7 +17743,7 @@ CREATE TABLE [dbo].[RefIPEDSFASBPellGrantTransactions]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIPEDSFASBRevenue] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIPEDSFASBRevenue] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16569,7 +17763,7 @@ CREATE TABLE [dbo].[RefIPEDSFASBRevenue]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIPEDSFASBRevenueRestriction] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIPEDSFASBRevenueRestriction] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16589,7 +17783,7 @@ CREATE TABLE [dbo].[RefIPEDSFASBRevenueRestriction]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIPEDSFASBScholarshipsandFellowshipsRevenue] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIPEDSFASBScholarshipsandFellowshipsRevenue] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16609,7 +17803,7 @@ CREATE TABLE [dbo].[RefIPEDSFASBScholarshipsandFellowshipsRevenue]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIPEDSGASBFinancialPosition] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIPEDSGASBFinancialPosition] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16629,7 +17823,7 @@ CREATE TABLE [dbo].[RefIPEDSGASBFinancialPosition]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIPEDSGASBFunctionalExpense] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIPEDSGASBFunctionalExpense] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16649,7 +17843,7 @@ CREATE TABLE [dbo].[RefIPEDSGASBFunctionalExpense]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIPEDSGASBRevenue] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIPEDSGASBRevenue] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16669,7 +17863,7 @@ CREATE TABLE [dbo].[RefIPEDSGASBRevenue]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIPEDSGASBScholarshipsandFellowshipsRevenue] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIPEDSGASBScholarshipsandFellowshipsRevenue] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16689,7 +17883,7 @@ CREATE TABLE [dbo].[RefIPEDSGASBScholarshipsandFellowshipsRevenue]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIPEDSIntercollegiateAthleticsExpenses] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIPEDSIntercollegiateAthleticsExpenses] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16709,7 +17903,7 @@ CREATE TABLE [dbo].[RefIPEDSIntercollegiateAthleticsExpenses]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIPEDSNaturalExpense] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIPEDSNaturalExpense] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16729,7 +17923,7 @@ CREATE TABLE [dbo].[RefIPEDSNaturalExpense]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIpedsOccupationalCategory] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIpedsOccupationalCategory] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16749,7 +17943,7 @@ CREATE TABLE [dbo].[RefIpedsOccupationalCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIPSPProgressReportSchedule] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIPSPProgressReportSchedule] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16769,7 +17963,7 @@ CREATE TABLE [dbo].[RefIPSPProgressReportSchedule]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefIPSPProgressReportType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefIPSPProgressReportType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16789,7 +17983,7 @@ CREATE TABLE [dbo].[RefIPSPProgressReportType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefISO6392Language] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefISO6392Language] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16809,7 +18003,7 @@ CREATE TABLE [dbo].[RefISO6392Language]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefISO6393Language] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefISO6393Language] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16829,7 +18023,7 @@ CREATE TABLE [dbo].[RefISO6393Language]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefISO6395LanguageFamily] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefISO6395LanguageFamily] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16849,7 +18043,7 @@ CREATE TABLE [dbo].[RefISO6395LanguageFamily]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefItemResponseTheoryDifficultyCategory] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefItemResponseTheoryDifficultyCategory] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16869,7 +18063,7 @@ CREATE TABLE [dbo].[RefItemResponseTheoryDifficultyCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefItemResponseTheoryKappaAlgorithm] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefItemResponseTheoryKappaAlgorithm] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16889,7 +18083,87 @@ CREATE TABLE [dbo].[RefItemResponseTheoryKappaAlgorithm]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefK12EndOfCourseRequirement] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefJobIdentificationSystem] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefJobIdentificationSystem]( + [RefJobIdentificationSystemId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefJobIdentificationSystem] PRIMARY KEY CLUSTERED +( + [RefJobIdentificationSystemId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefJobPositionIdentificationSystem] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefJobPositionIdentificationSystem]( + [RefJobPositionIdentificationSystemId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefJobPositionIdentificationSystem] PRIMARY KEY CLUSTERED +( + [RefJobPositionIdentificationSystemId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefJobPositionStatus] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefJobPositionStatus]( + [RefJobPositionStatusId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefJobPositionStatus] PRIMARY KEY CLUSTERED +( + [RefJobPositionStatusId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefJobPositionStatusCancelledReason] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefJobPositionStatusCancelledReason]( + [RefJobPositionStatusCancelledReasonId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefJobPositionStatusCancelledReason] PRIMARY KEY CLUSTERED +( + [RefJobPositionStatusCancelledReasonId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefK12EndOfCourseRequirement] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16909,7 +18183,7 @@ CREATE TABLE [dbo].[RefK12EndOfCourseRequirement]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefK12LeaTitleISupportService] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefK12LeaTitleISupportService] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16929,7 +18203,7 @@ CREATE TABLE [dbo].[RefK12LeaTitleISupportService]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefK12ResponsibilityType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefK12ResponsibilityType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16949,7 +18223,7 @@ CREATE TABLE [dbo].[RefK12ResponsibilityType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefK12StaffClassification] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefK12StaffClassification] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16969,7 +18243,7 @@ CREATE TABLE [dbo].[RefK12StaffClassification]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLanguage] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLanguage] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -16989,7 +18263,7 @@ CREATE TABLE [dbo].[RefLanguage]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLanguageUseType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLanguageUseType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17009,7 +18283,7 @@ CREATE TABLE [dbo].[RefLanguageUseType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLeaFundsTransferType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLeaFundsTransferType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17029,7 +18303,47 @@ CREATE TABLE [dbo].[RefLeaFundsTransferType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLeaImprovementStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLEAGFSAAssuranceofComplianceIndicator] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefLEAGFSAAssuranceofComplianceIndicator]( + [RefLEAGFSAAssuranceofComplianceIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefLEAGFSAAssuranceofComplianceIndicator] PRIMARY KEY CLUSTERED +( + [RefLEAGFSAAssuranceofComplianceIndicatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefLEAGFSAPolicyAssuranceIndicator] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefLEAGFSAPolicyAssuranceIndicator]( + [RefLEAGFSAPolicyAssuranceIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefLEAGFSAPolicyAssuranceIndicator] PRIMARY KEY CLUSTERED +( + [RefLEAGFSAPolicyAssuranceIndicatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefLeaImprovementStatus] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17049,7 +18363,7 @@ CREATE TABLE [dbo].[RefLeaImprovementStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearnerActionType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearnerActionType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17069,7 +18383,7 @@ CREATE TABLE [dbo].[RefLearnerActionType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearnerActivityAddToGradeBookFlag] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearnerActivityAddToGradeBookFlag] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17089,7 +18403,7 @@ CREATE TABLE [dbo].[RefLearnerActivityAddToGradeBookFlag]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearnerActivityMaximumTimeAllowedUnits] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearnerActivityMaximumTimeAllowedUnits] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17109,7 +18423,7 @@ CREATE TABLE [dbo].[RefLearnerActivityMaximumTimeAllowedUnits]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearnerActivityType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearnerActivityType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17129,7 +18443,7 @@ CREATE TABLE [dbo].[RefLearnerActivityType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceAccessAPIType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceAccessAPIType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17149,7 +18463,7 @@ CREATE TABLE [dbo].[RefLearningResourceAccessAPIType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceAccessHazardType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceAccessHazardType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17169,7 +18483,7 @@ CREATE TABLE [dbo].[RefLearningResourceAccessHazardType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceAccessModeType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceAccessModeType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17189,7 +18503,7 @@ CREATE TABLE [dbo].[RefLearningResourceAccessModeType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceAccessRightsUrl] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceAccessRightsUrl] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17209,7 +18523,7 @@ CREATE TABLE [dbo].[RefLearningResourceAccessRightsUrl]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceAuthorType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceAuthorType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17229,7 +18543,7 @@ CREATE TABLE [dbo].[RefLearningResourceAuthorType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceBookFormatType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceBookFormatType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17249,7 +18563,7 @@ CREATE TABLE [dbo].[RefLearningResourceBookFormatType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceCompetencyAlignmentType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceCompetencyAlignmentType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17269,7 +18583,7 @@ CREATE TABLE [dbo].[RefLearningResourceCompetencyAlignmentType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceControlFlexibilityType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceControlFlexibilityType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17289,7 +18603,7 @@ CREATE TABLE [dbo].[RefLearningResourceControlFlexibilityType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceDigitalMediaSubType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceDigitalMediaSubType] Script Date: 3/15/2024 4:25:23 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17309,7 +18623,7 @@ CREATE TABLE [dbo].[RefLearningResourceDigitalMediaSubType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceDigitalMediaType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceDigitalMediaType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17329,7 +18643,7 @@ CREATE TABLE [dbo].[RefLearningResourceDigitalMediaType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceEducationalUse] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceEducationalUse] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17349,7 +18663,27 @@ CREATE TABLE [dbo].[RefLearningResourceEducationalUse]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceIntendedEndUserRole] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceIdentificationSystem] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefLearningResourceIdentificationSystem]( + [RefLearningResourceIdentificationSystemId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefLearningResourceIdentificationSystem] PRIMARY KEY CLUSTERED +( + [RefLearningResourceIdentificationSystemId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefLearningResourceIntendedEndUserRole] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17369,7 +18703,7 @@ CREATE TABLE [dbo].[RefLearningResourceIntendedEndUserRole]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceInteractionMode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceInteractionMode] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17389,7 +18723,7 @@ CREATE TABLE [dbo].[RefLearningResourceInteractionMode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceInteractivityType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceInteractivityType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17409,7 +18743,7 @@ CREATE TABLE [dbo].[RefLearningResourceInteractivityType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceMediaFeatureType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceMediaFeatureType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17429,7 +18763,7 @@ CREATE TABLE [dbo].[RefLearningResourceMediaFeatureType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourcePhysicalMediaType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourcePhysicalMediaType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17449,7 +18783,27 @@ CREATE TABLE [dbo].[RefLearningResourcePhysicalMediaType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLearningResourceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLearningResourceStatus] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefLearningResourceStatus]( + [RefLearningResourceStatusId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefLearningResourceStatus] PRIMARY KEY CLUSTERED +( + [RefLearningResourceStatusId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefLearningResourceType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17469,7 +18823,7 @@ CREATE TABLE [dbo].[RefLearningResourceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLeaType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLeaType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17489,7 +18843,7 @@ CREATE TABLE [dbo].[RefLeaType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLeaveEventType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLeaveEventType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17509,7 +18863,7 @@ CREATE TABLE [dbo].[RefLeaveEventType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLevelOfInstitution] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLevelOfInstitution] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17529,7 +18883,7 @@ CREATE TABLE [dbo].[RefLevelOfInstitution]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLicenseExempt] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLicenseExempt] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17549,7 +18903,7 @@ CREATE TABLE [dbo].[RefLicenseExempt]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefLiteracyAssessment] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLiteracyAssessment] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17569,7 +18923,47 @@ CREATE TABLE [dbo].[RefLiteracyAssessment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefMagnetSpecialProgram] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefLocalJobCategory] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefLocalJobCategory]( + [RefLocalJobCategoryId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefLocalJobCategory] PRIMARY KEY CLUSTERED +( + [RefLocalJobCategoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefLocalJobFunction] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefLocalJobFunction]( + [RefLocalJobFunctionId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefLocalJobFunction] PRIMARY KEY CLUSTERED +( + [RefLocalJobFunctionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefMagnetSpecialProgram] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17589,7 +18983,7 @@ CREATE TABLE [dbo].[RefMagnetSpecialProgram]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefMedicalAlertIndicator] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefMedicalAlertIndicator] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17609,7 +19003,7 @@ CREATE TABLE [dbo].[RefMedicalAlertIndicator]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefMepEnrollmentType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefMepEnrollmentType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17629,7 +19023,7 @@ CREATE TABLE [dbo].[RefMepEnrollmentType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefMepProjectBased] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefMepProjectBased] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17649,7 +19043,7 @@ CREATE TABLE [dbo].[RefMepProjectBased]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefMepProjectType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefMepProjectType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17669,7 +19063,7 @@ CREATE TABLE [dbo].[RefMepProjectType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefMepServiceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefMepServiceType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17689,7 +19083,7 @@ CREATE TABLE [dbo].[RefMepServiceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefMepSessionType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefMepSessionType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17709,7 +19103,7 @@ CREATE TABLE [dbo].[RefMepSessionType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefMepStaffCategory] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefMepStaffCategory] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17729,7 +19123,7 @@ CREATE TABLE [dbo].[RefMepStaffCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefMethodOfServiceDelivery] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefMethodOfServiceDelivery] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17749,47 +19143,47 @@ CREATE TABLE [dbo].[RefMethodOfServiceDelivery]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefMilitaryActiveStudentIndicator] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefMilitaryBranch] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -CREATE TABLE [dbo].[RefMilitaryActiveStudentIndicator]( - [RefMilitaryActiveStudentIndicatorId] [int] IDENTITY(1,1) NOT NULL, +CREATE TABLE [dbo].[RefMilitaryBranch]( + [RefMilitaryBranchId] [int] IDENTITY(1,1) NOT NULL, [Description] [nvarchar](150) NOT NULL, - [Code] [nvarchar](50) NULL, + [Code] [nvarchar](60) NULL, [Definition] [nvarchar](4000) NULL, [RefJurisdictionId] [int] NULL, - [SortOrder] [decimal](5, 2) NULL, + [SortOrder] [decimal](6, 2) NULL, [RecordStartDateTime] [datetime] NULL, [RecordEndDateTime] [datetime] NULL, - CONSTRAINT [PK_RefMilitaryActiveStudentIndicator] PRIMARY KEY CLUSTERED + CONSTRAINT [PK_RefMilitaryBranch] PRIMARY KEY CLUSTERED ( - [RefMilitaryActiveStudentIndicatorId] ASC + [RefMilitaryBranchId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefMilitaryBranch] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefMilitaryCampaigns] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -CREATE TABLE [dbo].[RefMilitaryBranch]( - [RefMilitaryBranchId] [int] IDENTITY(1,1) NOT NULL, +CREATE TABLE [dbo].[RefMilitaryCampaigns]( + [RefMilitaryCampaignsId] [int] IDENTITY(1,1) NOT NULL, [Description] [nvarchar](150) NOT NULL, - [Code] [nvarchar](60) NULL, + [Code] [nvarchar](50) NULL, [Definition] [nvarchar](4000) NULL, [RefJurisdictionId] [int] NULL, - [SortOrder] [decimal](6, 2) NULL, + [SortOrder] [decimal](5, 2) NULL, [RecordStartDateTime] [datetime] NULL, [RecordEndDateTime] [datetime] NULL, - CONSTRAINT [PK_RefMilitaryBranch] PRIMARY KEY CLUSTERED + CONSTRAINT [PK_RefMilitaryCampaigns] PRIMARY KEY CLUSTERED ( - [RefMilitaryBranchId] ASC + [RefMilitaryCampaignsId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefMilitaryConnectedStudentIndicator] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefMilitaryConnectedStudentIndicator] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17809,13 +19203,93 @@ CREATE TABLE [dbo].[RefMilitaryConnectedStudentIndicator]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefMilitaryVeteranStudentIndicator] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefMilitaryDeploymentStatusCode] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -CREATE TABLE [dbo].[RefMilitaryVeteranStudentIndicator]( - [RefMilitaryVeteranStudentIndicatorId] [int] IDENTITY(1,1) NOT NULL, +CREATE TABLE [dbo].[RefMilitaryDeploymentStatusCode]( + [RefMilitaryDeploymentStatusCodeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefMilitaryDeploymentStatusCode] PRIMARY KEY CLUSTERED +( + [RefMilitaryDeploymentStatusCodeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefMilitaryDischargeCategory] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefMilitaryDischargeCategory]( + [RefMilitaryDischargeCategoryId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefMilitaryDischargeCategory] PRIMARY KEY CLUSTERED +( + [RefMilitaryDischargeCategoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefMilitaryDuties] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefMilitaryDuties]( + [RefMilitaryDutiesId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefMilitaryDuties] PRIMARY KEY CLUSTERED +( + [RefMilitaryDutiesId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefMilitaryExpertise] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefMilitaryExpertise]( + [RefMilitaryExpertiseId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefMilitaryExpertise] PRIMARY KEY CLUSTERED +( + [RefMilitaryExpertiseId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefMilitaryVeteranStatusIndicator] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefMilitaryVeteranStatusIndicator]( + [RefMilitaryVeteranStatusIndicatorId] [int] IDENTITY(1,1) NOT NULL, [Description] [nvarchar](150) NOT NULL, [Code] [nvarchar](50) NULL, [Definition] [nvarchar](4000) NULL, @@ -17825,11 +19299,31 @@ CREATE TABLE [dbo].[RefMilitaryVeteranStudentIndicator]( [RecordEndDateTime] [datetime] NULL, CONSTRAINT [PK_RefMilitaryVeteranStudentIndicator] PRIMARY KEY CLUSTERED ( - [RefMilitaryVeteranStudentIndicatorId] ASC + [RefMilitaryVeteranStatusIndicatorId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefMultipleIntelligenceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefMostPrevalentLevelOfInstitution] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefMostPrevalentLevelOfInstitution]( + [RefMostPrevalentLevelOfInstitutionId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefMostPrevalentLevelOfInstitution] PRIMARY KEY CLUSTERED +( + [RefMostPrevalentLevelOfInstitutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefMultipleIntelligenceType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17849,7 +19343,7 @@ CREATE TABLE [dbo].[RefMultipleIntelligenceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefNaepAspectsOfReading] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefNaepAspectsOfReading] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17869,7 +19363,7 @@ CREATE TABLE [dbo].[RefNaepAspectsOfReading]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefNaepMathComplexityLevel] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefNaepMathComplexityLevel] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17889,7 +19383,27 @@ CREATE TABLE [dbo].[RefNaepMathComplexityLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefNationalSchoolLunchProgramStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefNationalGuardIndicator] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefNationalGuardIndicator]( + [RefNationalGuardIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefNationalGuardIndicator] PRIMARY KEY CLUSTERED +( + [RefNationalGuardIndicatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefNationalSchoolLunchProgramStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17909,7 +19423,7 @@ CREATE TABLE [dbo].[RefNationalSchoolLunchProgramStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefNCESCollegeCourseMapCode] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefNCESCollegeCourseMapCode] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17929,7 +19443,7 @@ CREATE TABLE [dbo].[RefNCESCollegeCourseMapCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefNeedDeterminationMethod] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefNeedDeterminationMethod] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17949,7 +19463,23 @@ CREATE TABLE [dbo].[RefNeedDeterminationMethod]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefNeglectedProgramType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefNeglectedOrDelinquentProgramType] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefNeglectedOrDelinquentProgramType]( + [RefNeglectedOrDelinquentProgramTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefNeglectedProgramType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17969,7 +19499,7 @@ CREATE TABLE [dbo].[RefNeglectedProgramType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefNonPromotionReason] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefNonPromotionReason] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -17989,7 +19519,7 @@ CREATE TABLE [dbo].[RefNonPromotionReason]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefNonTraditionalGenderStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefNonTraditionalGenderStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18009,7 +19539,7 @@ CREATE TABLE [dbo].[RefNonTraditionalGenderStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefNSLPStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefNSLPStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18029,7 +19559,7 @@ CREATE TABLE [dbo].[RefNSLPStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefNumberOfDependentsType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefNumberOfDependentsType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18049,7 +19579,7 @@ CREATE TABLE [dbo].[RefNumberOfDependentsType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefONETSOCOccupationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefONETSOCOccupationType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18069,7 +19599,7 @@ CREATE TABLE [dbo].[RefONETSOCOccupationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefOperationalStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefOperationalStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18090,7 +19620,7 @@ CREATE TABLE [dbo].[RefOperationalStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefOperationalStatusType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefOperationalStatusType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18110,7 +19640,7 @@ CREATE TABLE [dbo].[RefOperationalStatusType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefOrganizationElementType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefOrganizationElementType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18130,7 +19660,7 @@ CREATE TABLE [dbo].[RefOrganizationElementType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefOrganizationIdentificationSystem] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefOrganizationIdentificationSystem] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18151,7 +19681,7 @@ CREATE TABLE [dbo].[RefOrganizationIdentificationSystem]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefOrganizationIdentifierType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefOrganizationIdentifierType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18171,7 +19701,7 @@ CREATE TABLE [dbo].[RefOrganizationIdentifierType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefOrganizationIndicator] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefOrganizationIndicator] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18192,7 +19722,7 @@ CREATE TABLE [dbo].[RefOrganizationIndicator]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefOrganizationLocationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefOrganizationLocationType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18212,7 +19742,7 @@ CREATE TABLE [dbo].[RefOrganizationLocationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefOrganizationMonitoringNotifications] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefOrganizationMonitoringNotifications] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18232,7 +19762,7 @@ CREATE TABLE [dbo].[RefOrganizationMonitoringNotifications]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefOrganizationRelationship] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefOrganizationRelationship] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18252,7 +19782,7 @@ CREATE TABLE [dbo].[RefOrganizationRelationship]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefOrganizationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefOrganizationType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18273,7 +19803,7 @@ CREATE TABLE [dbo].[RefOrganizationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefOtherNameType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefOtherNameType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18293,7 +19823,7 @@ CREATE TABLE [dbo].[RefOtherNameType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefOutcomeTimePoint] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefOutcomeTimePoint] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18313,7 +19843,7 @@ CREATE TABLE [dbo].[RefOutcomeTimePoint]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefOutOfFieldStatus] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefOutOfFieldStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18333,7 +19863,7 @@ CREATE TABLE [dbo].[RefOutOfFieldStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[RefParaprofessionalQualification] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefParaprofessionalQualification] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18353,7 +19883,27 @@ CREATE TABLE [dbo].[RefParaprofessionalQualification]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefParticipationStatusAyp] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefPartBPostsecondaryOutcomesIndicator] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefPartBPostsecondaryOutcomesIndicator]( + [RefPartBPostsecondaryOutcomesIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefPartBPostsecondaryOutcomesIndicator] PRIMARY KEY CLUSTERED +( + [RefPartBPostsecondaryOutcomesIndicatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefParticipationStatusAyp] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18373,7 +19923,7 @@ CREATE TABLE [dbo].[RefParticipationStatusAyp]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefParticipationType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefParticipationType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18394,7 +19944,7 @@ CREATE TABLE [dbo].[RefParticipationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPDActivityApprovedPurpose] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefPDActivityApprovedPurpose] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18414,7 +19964,7 @@ CREATE TABLE [dbo].[RefPDActivityApprovedPurpose]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPDActivityCreditType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefPDActivityCreditType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18434,7 +19984,7 @@ CREATE TABLE [dbo].[RefPDActivityCreditType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPDActivityEducationLevelsAddressed] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefPDActivityEducationLevelsAddressed] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18454,7 +20004,7 @@ CREATE TABLE [dbo].[RefPDActivityEducationLevelsAddressed]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPDActivityLevel] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefPDActivityLevel] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18474,7 +20024,7 @@ CREATE TABLE [dbo].[RefPDActivityLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPDActivityTargetAudience] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefPDActivityTargetAudience] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18494,7 +20044,7 @@ CREATE TABLE [dbo].[RefPDActivityTargetAudience]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPDActivityType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefPDActivityType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18514,7 +20064,7 @@ CREATE TABLE [dbo].[RefPDActivityType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPDAudienceType] Script Date: 4/11/2023 3:50:03 PM ******/ +/****** Object: Table [dbo].[RefPDAudienceType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18534,7 +20084,7 @@ CREATE TABLE [dbo].[RefPDAudienceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPDDeliveryMethod] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPDDeliveryMethod] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18554,7 +20104,7 @@ CREATE TABLE [dbo].[RefPDDeliveryMethod]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPDInstructionalDeliveryMode] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPDInstructionalDeliveryMode] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18574,7 +20124,7 @@ CREATE TABLE [dbo].[RefPDInstructionalDeliveryMode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPDSessionStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPDSessionStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18594,7 +20144,27 @@ CREATE TABLE [dbo].[RefPDSessionStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPersonalInformationType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPerkinsPostProgramPlacementIndicator] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefPerkinsPostProgramPlacementIndicator]( + [RefPerkinsPostProgramPlacementIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefPerkinsPostProgramPlacementIndicator] PRIMARY KEY CLUSTERED +( + [RefPerkinsPostProgramPlacementIndicatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefPersonalInformationType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18614,7 +20184,7 @@ CREATE TABLE [dbo].[RefPersonalInformationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPersonalInformationVerification] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPersonalInformationVerification] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18634,7 +20204,7 @@ CREATE TABLE [dbo].[RefPersonalInformationVerification]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPersonIdentificationSystem] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPersonIdentificationSystem] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18655,7 +20225,7 @@ CREATE TABLE [dbo].[RefPersonIdentificationSystem]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPersonIdentifierType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPersonIdentifierType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18675,7 +20245,7 @@ CREATE TABLE [dbo].[RefPersonIdentifierType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPersonLocationType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPersonLocationType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18697,7 +20267,7 @@ CREATE TABLE [dbo].[RefPersonLocationType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPersonRelationshipType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPersonRelationshipType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18717,7 +20287,7 @@ CREATE TABLE [dbo].[RefPersonRelationshipType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPersonStatusType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPersonStatusType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18737,7 +20307,7 @@ CREATE TABLE [dbo].[RefPersonStatusType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPersonTelephoneNumberType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPersonTelephoneNumberType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18757,7 +20327,7 @@ CREATE TABLE [dbo].[RefPersonTelephoneNumberType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPESCAwardLevelType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPESCAwardLevelType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18777,7 +20347,7 @@ CREATE TABLE [dbo].[RefPESCAwardLevelType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPopulationServed] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPopulationServed] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18797,7 +20367,7 @@ CREATE TABLE [dbo].[RefPopulationServed]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPreAndPostTestIndicator] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPreAndPostTestIndicator] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18817,7 +20387,7 @@ CREATE TABLE [dbo].[RefPreAndPostTestIndicator]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPredominantCalendarSystem] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPredominantCalendarSystem] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18837,7 +20407,7 @@ CREATE TABLE [dbo].[RefPredominantCalendarSystem]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPreKEligibleAgesNonIDEA] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPreKEligibleAgesNonIDEA] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18857,7 +20427,7 @@ CREATE TABLE [dbo].[RefPreKEligibleAgesNonIDEA]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPrekindergartenEligibility] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPrekindergartenEligibility] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18877,7 +20447,7 @@ CREATE TABLE [dbo].[RefPrekindergartenEligibility]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPresentAttendanceCategory] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPresentAttendanceCategory] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18897,7 +20467,7 @@ CREATE TABLE [dbo].[RefPresentAttendanceCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPrimaryLearningDeviceAccess] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPrimaryLearningDeviceAccess] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18917,7 +20487,7 @@ CREATE TABLE [dbo].[RefPrimaryLearningDeviceAccess]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPrimaryLearningDeviceAwayFromSchool] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPrimaryLearningDeviceAwayFromSchool] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18937,7 +20507,7 @@ CREATE TABLE [dbo].[RefPrimaryLearningDeviceAwayFromSchool]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPrimaryLearningDeviceProvider] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPrimaryLearningDeviceProvider] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18957,7 +20527,7 @@ CREATE TABLE [dbo].[RefPrimaryLearningDeviceProvider]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProfessionalDevelopmentFinancialSupport] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProfessionalDevelopmentFinancialSupport] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18977,7 +20547,7 @@ CREATE TABLE [dbo].[RefProfessionalDevelopmentFinancialSupport]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProfessionalEducationJobClassification] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProfessionalEducationJobClassification] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -18997,7 +20567,7 @@ CREATE TABLE [dbo].[RefProfessionalEducationJobClassification]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProfessionalTechnicalCredentialType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProfessionalTechnicalCredentialType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19017,7 +20587,7 @@ CREATE TABLE [dbo].[RefProfessionalTechnicalCredentialType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProficiencyStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProficiencyStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19037,7 +20607,7 @@ CREATE TABLE [dbo].[RefProficiencyStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProficiencyTargetAyp] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProficiencyTargetAyp] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19057,7 +20627,7 @@ CREATE TABLE [dbo].[RefProficiencyTargetAyp]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProfitStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProfitStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19077,7 +20647,7 @@ CREATE TABLE [dbo].[RefProfitStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProgramDayLength] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProgramDayLength] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19097,7 +20667,7 @@ CREATE TABLE [dbo].[RefProgramDayLength]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProgramEntryReason] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProgramEntryReason] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19117,7 +20687,7 @@ CREATE TABLE [dbo].[RefProgramEntryReason]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProgramExitReason] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProgramExitReason] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19137,7 +20707,7 @@ CREATE TABLE [dbo].[RefProgramExitReason]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProgramGiftedEligibility] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProgramGiftedEligibility] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19157,7 +20727,7 @@ CREATE TABLE [dbo].[RefProgramGiftedEligibility]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProgramLengthHoursType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProgramLengthHoursType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19177,7 +20747,7 @@ CREATE TABLE [dbo].[RefProgramLengthHoursType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProgramSponsorType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProgramSponsorType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19197,7 +20767,7 @@ CREATE TABLE [dbo].[RefProgramSponsorType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProgramType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProgramType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19217,7 +20787,7 @@ CREATE TABLE [dbo].[RefProgramType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19237,7 +20807,7 @@ CREATE TABLE [dbo].[RefProgressAchievingEnglishLanguageProficiencyIndicatorStatu )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProgressLevel] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProgressLevel] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19257,7 +20827,7 @@ CREATE TABLE [dbo].[RefProgressLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProjectBasedLearningType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProjectBasedLearningType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19277,7 +20847,27 @@ CREATE TABLE [dbo].[RefProjectBasedLearningType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPromotionReason] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProjectedHighSchoolDiplomaType] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefProjectedHighSchoolDiplomaType]( + [RefProjectedHighSchoolDiplomaTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefProjectedHighSchoolDiplomaType] PRIMARY KEY CLUSTERED +( + [RefProjectedHighSchoolDiplomaTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefPromotionReason] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19297,7 +20887,7 @@ CREATE TABLE [dbo].[RefPromotionReason]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefProofOfResidencyType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefProofOfResidencyType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19317,7 +20907,7 @@ CREATE TABLE [dbo].[RefProofOfResidencyType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPsEnrollmentAction] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPsEnrollmentAction] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19337,7 +20927,7 @@ CREATE TABLE [dbo].[RefPsEnrollmentAction]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPsEnrollmentAwardType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPsEnrollmentAwardType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19357,7 +20947,7 @@ CREATE TABLE [dbo].[RefPsEnrollmentAwardType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPsEnrollmentStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPsEnrollmentStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19377,7 +20967,7 @@ CREATE TABLE [dbo].[RefPsEnrollmentStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPsEnrollmentType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPsEnrollmentType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19397,7 +20987,7 @@ CREATE TABLE [dbo].[RefPsEnrollmentType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPSExitOrWithdrawalType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPSExitOrWithdrawalType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19417,7 +21007,7 @@ CREATE TABLE [dbo].[RefPSExitOrWithdrawalType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPSProgramLevel] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPSProgramLevel] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19437,7 +21027,7 @@ CREATE TABLE [dbo].[RefPSProgramLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPsStudentLevel] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPsStudentLevel] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19457,7 +21047,7 @@ CREATE TABLE [dbo].[RefPsStudentLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPublicSchoolChoiceStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPublicSchoolChoiceStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19477,7 +21067,7 @@ CREATE TABLE [dbo].[RefPublicSchoolChoiceStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPublicSchoolResidence] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPublicSchoolResidence] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19497,7 +21087,7 @@ CREATE TABLE [dbo].[RefPublicSchoolResidence]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefPurposeOfMonitoringVisit] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefPurposeOfMonitoringVisit] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19517,7 +21107,7 @@ CREATE TABLE [dbo].[RefPurposeOfMonitoringVisit]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefQrisParticipation] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefQrisParticipation] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19537,7 +21127,7 @@ CREATE TABLE [dbo].[RefQrisParticipation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefRace] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefRace] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19557,7 +21147,7 @@ CREATE TABLE [dbo].[RefRace]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefReapAlternativeFundingStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefReapAlternativeFundingStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19577,7 +21167,7 @@ CREATE TABLE [dbo].[RefReapAlternativeFundingStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefReasonDelayTransitionConf] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefReasonDelayTransitionConf] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19597,7 +21187,7 @@ CREATE TABLE [dbo].[RefReasonDelayTransitionConf]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefReconstitutedStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefReconstitutedStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19617,7 +21207,7 @@ CREATE TABLE [dbo].[RefReconstitutedStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefRecordStatusCreatorEntity] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefRecordStatusCreatorEntity] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19637,7 +21227,7 @@ CREATE TABLE [dbo].[RefRecordStatusCreatorEntity]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefRecordStatusType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefRecordStatusType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19657,7 +21247,7 @@ CREATE TABLE [dbo].[RefRecordStatusType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefReferralOutcome] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefReferralOutcome] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19677,7 +21267,7 @@ CREATE TABLE [dbo].[RefReferralOutcome]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefReimbursementType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefReimbursementType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19697,7 +21287,7 @@ CREATE TABLE [dbo].[RefReimbursementType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefRestructuringAction] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefRestructuringAction] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19717,7 +21307,7 @@ CREATE TABLE [dbo].[RefRestructuringAction]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefRlisProgramUse] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefRlisProgramUse] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19737,7 +21327,7 @@ CREATE TABLE [dbo].[RefRlisProgramUse]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefRole] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefRole] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19757,7 +21347,7 @@ CREATE TABLE [dbo].[RefRole]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefRoleStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefRoleStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19778,7 +21368,7 @@ CREATE TABLE [dbo].[RefRoleStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefRoleStatusType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefRoleStatusType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19798,7 +21388,7 @@ CREATE TABLE [dbo].[RefRoleStatusType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSCEDCourseCode] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSCEDCourseCode] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19817,7 +21407,7 @@ CREATE TABLE [dbo].[RefSCEDCourseCode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSCEDCourseLevel] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSCEDCourseLevel] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19837,7 +21427,7 @@ CREATE TABLE [dbo].[RefSCEDCourseLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSCEDCourseSubjectArea] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSCEDCourseSubjectArea] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19857,7 +21447,7 @@ CREATE TABLE [dbo].[RefSCEDCourseSubjectArea]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefScheduledWellChildScreening] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefScheduledWellChildScreening] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19877,7 +21467,7 @@ CREATE TABLE [dbo].[RefScheduledWellChildScreening]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSchoolDangerousStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSchoolDangerousStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19897,7 +21487,7 @@ CREATE TABLE [dbo].[RefSchoolDangerousStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSchoolFoodServiceProgram] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSchoolFoodServiceProgram] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19917,7 +21507,7 @@ CREATE TABLE [dbo].[RefSchoolFoodServiceProgram]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSchoolImprovementFunds] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSchoolImprovementFunds] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19937,7 +21527,7 @@ CREATE TABLE [dbo].[RefSchoolImprovementFunds]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSchoolImprovementStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSchoolImprovementStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19957,7 +21547,7 @@ CREATE TABLE [dbo].[RefSchoolImprovementStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSchoolLevel] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSchoolLevel] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19977,7 +21567,7 @@ CREATE TABLE [dbo].[RefSchoolLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSchoolType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSchoolType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -19997,7 +21587,7 @@ CREATE TABLE [dbo].[RefSchoolType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefScoreMetricType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefScoreMetricType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20017,7 +21607,7 @@ CREATE TABLE [dbo].[RefScoreMetricType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefServiceFrequency] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefServiceFrequency] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20037,7 +21627,7 @@ CREATE TABLE [dbo].[RefServiceFrequency]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefServiceOption] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefServiceOption] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20057,7 +21647,7 @@ CREATE TABLE [dbo].[RefServiceOption]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefServices] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefServices] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20077,7 +21667,7 @@ CREATE TABLE [dbo].[RefServices]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSessionType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSessionType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20097,7 +21687,7 @@ CREATE TABLE [dbo].[RefSessionType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSex] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSex] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20117,7 +21707,7 @@ CREATE TABLE [dbo].[RefSex]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSigInterventionType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSigInterventionType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20137,7 +21727,7 @@ CREATE TABLE [dbo].[RefSigInterventionType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSingleSexClassStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSingleSexClassStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20157,7 +21747,7 @@ CREATE TABLE [dbo].[RefSingleSexClassStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSpaceUseType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSpaceUseType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20177,7 +21767,7 @@ CREATE TABLE [dbo].[RefSpaceUseType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSpecialEducationAgeGroupTaught] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSpecialEducationAgeGroupTaught] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20197,7 +21787,7 @@ CREATE TABLE [dbo].[RefSpecialEducationAgeGroupTaught]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSpecialEducationExitReason] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSpecialEducationExitReason] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20217,7 +21807,7 @@ CREATE TABLE [dbo].[RefSpecialEducationExitReason]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSpecialEducationStaffCategory] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSpecialEducationStaffCategory] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20237,7 +21827,7 @@ CREATE TABLE [dbo].[RefSpecialEducationStaffCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSpecialEducationTeacherQualificationStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSpecialEducationTeacherQualificationStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20257,7 +21847,7 @@ CREATE TABLE [dbo].[RefSpecialEducationTeacherQualificationStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefStaffCompensationSourceType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefStaffCompensationSourceType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20277,7 +21867,7 @@ CREATE TABLE [dbo].[RefStaffCompensationSourceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefStaffPerformanceLevel] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefStaffPerformanceLevel] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20297,7 +21887,7 @@ CREATE TABLE [dbo].[RefStaffPerformanceLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefStandardizedAdmissionTest] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefStandardizedAdmissionTest] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20317,7 +21907,27 @@ CREATE TABLE [dbo].[RefStandardizedAdmissionTest]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefState] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefStandardOccupationalClassification] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefStandardOccupationalClassification]( + [RefStandardOccupationalClassificationId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefStandardOccupationalClassification] PRIMARY KEY CLUSTERED +( + [RefStandardOccupationalClassificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefState] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20337,7 +21947,7 @@ CREATE TABLE [dbo].[RefState]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefStateANSICode] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefStateANSICode] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20357,7 +21967,7 @@ CREATE TABLE [dbo].[RefStateANSICode]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefStatePovertyDesignation] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefStatePovertyDesignation] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20377,7 +21987,27 @@ CREATE TABLE [dbo].[RefStatePovertyDesignation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefStudentEnrollmentAccessType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefStudentDropoutStatus] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefStudentDropoutStatus]( + [RefStudentDropoutStatusId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefStudentDropoutStatus] PRIMARY KEY CLUSTERED +( + [RefStudentDropoutStatusId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefStudentEnrollmentAccessType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20397,7 +22027,7 @@ CREATE TABLE [dbo].[RefStudentEnrollmentAccessType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefStudentSchoolAffiliationStateDefinedStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefStudentSchoolAffiliationStateDefinedStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20417,7 +22047,7 @@ CREATE TABLE [dbo].[RefStudentSchoolAffiliationStateDefinedStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefStudentSupportServiceAvailabilityType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefStudentSupportServiceAvailabilityType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20437,7 +22067,7 @@ CREATE TABLE [dbo].[RefStudentSupportServiceAvailabilityType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefStudentSupportServiceType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefStudentSupportServiceType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20457,7 +22087,7 @@ CREATE TABLE [dbo].[RefStudentSupportServiceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefSupervisedClinicalExperience] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefSupervisedClinicalExperience] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20477,7 +22107,7 @@ CREATE TABLE [dbo].[RefSupervisedClinicalExperience]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTargetedSupport] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTargetedSupport] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20497,7 +22127,7 @@ CREATE TABLE [dbo].[RefTargetedSupport]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTargetedSupportAndImprovementStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTargetedSupportAndImprovementStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20517,7 +22147,7 @@ CREATE TABLE [dbo].[RefTargetedSupportAndImprovementStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTeacherEducationCredentialExam] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTeacherEducationCredentialExam] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20537,7 +22167,7 @@ CREATE TABLE [dbo].[RefTeacherEducationCredentialExam]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTeacherEducationExamScoreType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTeacherEducationExamScoreType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20557,7 +22187,7 @@ CREATE TABLE [dbo].[RefTeacherEducationExamScoreType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTeacherEducationTestCompany] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTeacherEducationTestCompany] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20577,7 +22207,7 @@ CREATE TABLE [dbo].[RefTeacherEducationTestCompany]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTeacherPrepCompleterStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTeacherPrepCompleterStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20597,7 +22227,7 @@ CREATE TABLE [dbo].[RefTeacherPrepCompleterStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTeacherPrepEnrollmentStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTeacherPrepEnrollmentStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20617,7 +22247,7 @@ CREATE TABLE [dbo].[RefTeacherPrepEnrollmentStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTeachingAssignmentRole] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTeachingAssignmentRole] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20637,7 +22267,7 @@ CREATE TABLE [dbo].[RefTeachingAssignmentRole]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTeachingCredentialBasis] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTeachingCredentialBasis] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20657,7 +22287,7 @@ CREATE TABLE [dbo].[RefTeachingCredentialBasis]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTeachingCredentialType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTeachingCredentialType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20677,7 +22307,7 @@ CREATE TABLE [dbo].[RefTeachingCredentialType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTechnicalAssistanceDeliveryType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTechnicalAssistanceDeliveryType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20697,7 +22327,7 @@ CREATE TABLE [dbo].[RefTechnicalAssistanceDeliveryType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTechnicalAssistanceType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTechnicalAssistanceType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20717,7 +22347,7 @@ CREATE TABLE [dbo].[RefTechnicalAssistanceType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTechnologyLiteracyStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTechnologyLiteracyStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20737,7 +22367,27 @@ CREATE TABLE [dbo].[RefTechnologyLiteracyStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTelephoneNumberListedStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTeenParentIndicator] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefTeenParentIndicator]( + [RefTeenParentIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefTeenParentIndicator] PRIMARY KEY CLUSTERED +( + [RefTeenParentIndicatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefTelephoneNumberListedStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20757,7 +22407,7 @@ CREATE TABLE [dbo].[RefTelephoneNumberListedStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTelephoneNumberType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTelephoneNumberType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20777,7 +22427,7 @@ CREATE TABLE [dbo].[RefTelephoneNumberType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTenureSystem] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTenureSystem] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20797,7 +22447,7 @@ CREATE TABLE [dbo].[RefTenureSystem]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTextComplexitySystem] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTextComplexitySystem] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20817,7 +22467,7 @@ CREATE TABLE [dbo].[RefTextComplexitySystem]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTimeForCompletionUnits] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTimeForCompletionUnits] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20837,7 +22487,7 @@ CREATE TABLE [dbo].[RefTimeForCompletionUnits]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTitleIIIAccountability] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTitleIIIAccountability] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20857,7 +22507,7 @@ CREATE TABLE [dbo].[RefTitleIIIAccountability]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTitleIIILanguageInstructionProgramType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTitleIIILanguageInstructionProgramType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20877,7 +22527,7 @@ CREATE TABLE [dbo].[RefTitleIIILanguageInstructionProgramType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTitleIIIProfessionalDevelopmentType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTitleIIIProfessionalDevelopmentType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20897,7 +22547,7 @@ CREATE TABLE [dbo].[RefTitleIIIProfessionalDevelopmentType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTitleIIndicator] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTitleIIndicator] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20917,7 +22567,7 @@ CREATE TABLE [dbo].[RefTitleIIndicator]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTitleIInstructionalServices] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTitleIInstructionalServices] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20937,7 +22587,7 @@ CREATE TABLE [dbo].[RefTitleIInstructionalServices]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTitleIProgramStaffCategory] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTitleIProgramStaffCategory] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20957,7 +22607,7 @@ CREATE TABLE [dbo].[RefTitleIProgramStaffCategory]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTitleIProgramType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTitleIProgramType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20977,7 +22627,7 @@ CREATE TABLE [dbo].[RefTitleIProgramType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTitleISchoolStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTitleISchoolStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -20997,7 +22647,7 @@ CREATE TABLE [dbo].[RefTitleISchoolStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTransferOutIndicator] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTransferOutIndicator] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21017,7 +22667,7 @@ CREATE TABLE [dbo].[RefTransferOutIndicator]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTransferReady] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTransferReady] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21037,7 +22687,67 @@ CREATE TABLE [dbo].[RefTransferReady]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTribalAffiliation] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTransportationPublicExpenseEligibilityType] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefTransportationPublicExpenseEligibilityType]( + [RefTransportationPublicExpenseEligibilityTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefTransportationPublicExpenseEligibilityType] PRIMARY KEY CLUSTERED +( + [RefTransportationPublicExpenseEligibilityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefTransportationStateAidQualificationType] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefTransportationStateAidQualificationType]( + [RefTransportationStateAidQualificationTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefTransportationStateAidQualificationType] PRIMARY KEY CLUSTERED +( + [RefTransportationStateAidQualificationTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefTransportationStatusType] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RefTransportationStatusType]( + [RefTransportationStatusTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](150) NOT NULL, + [Code] [nvarchar](50) NULL, + [Definition] [nvarchar](4000) NULL, + [RefJurisdictionId] [int] NULL, + [SortOrder] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + CONSTRAINT [PK_RefTransportationStatusType] PRIMARY KEY CLUSTERED +( + [RefTransportationStatusTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RefTribalAffiliation] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21057,7 +22767,7 @@ CREATE TABLE [dbo].[RefTribalAffiliation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTrimesterWhenPrenatalCareBegan] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTrimesterWhenPrenatalCareBegan] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21077,7 +22787,7 @@ CREATE TABLE [dbo].[RefTrimesterWhenPrenatalCareBegan]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTuitionResidencyType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTuitionResidencyType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21097,7 +22807,7 @@ CREATE TABLE [dbo].[RefTuitionResidencyType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefTuitionUnit] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefTuitionUnit] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21117,7 +22827,7 @@ CREATE TABLE [dbo].[RefTuitionUnit]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefUSCitizenshipStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefUSCitizenshipStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21137,7 +22847,7 @@ CREATE TABLE [dbo].[RefUSCitizenshipStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefVirtualSchoolStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefVirtualSchoolStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21157,7 +22867,7 @@ CREATE TABLE [dbo].[RefVirtualSchoolStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefVisaType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefVisaType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21177,7 +22887,7 @@ CREATE TABLE [dbo].[RefVisaType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefVisionScreeningStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefVisionScreeningStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21197,7 +22907,7 @@ CREATE TABLE [dbo].[RefVisionScreeningStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefWageCollectionMethod] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefWageCollectionMethod] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21217,7 +22927,7 @@ CREATE TABLE [dbo].[RefWageCollectionMethod]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefWageVerification] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefWageVerification] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21237,7 +22947,7 @@ CREATE TABLE [dbo].[RefWageVerification]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefWeaponType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefWeaponType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21257,7 +22967,7 @@ CREATE TABLE [dbo].[RefWeaponType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefWfProgramParticipation] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefWfProgramParticipation] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21277,7 +22987,7 @@ CREATE TABLE [dbo].[RefWfProgramParticipation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefWIOABarrierstoEmployment] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefWIOABarrierstoEmployment] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21297,7 +23007,7 @@ CREATE TABLE [dbo].[RefWIOABarrierstoEmployment]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RefWorkbasedLearningOpportunityType] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RefWorkbasedLearningOpportunityType] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21317,7 +23027,7 @@ CREATE TABLE [dbo].[RefWorkbasedLearningOpportunityType]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RequiredImmunization] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RequiredImmunization] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21341,7 +23051,7 @@ CREATE TABLE [dbo].[RequiredImmunization]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Role] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[Role] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21361,7 +23071,7 @@ CREATE TABLE [dbo].[Role]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RoleAttendance] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RoleAttendance] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21377,13 +23087,14 @@ CREATE TABLE [dbo].[RoleAttendance]( [NumberOfDaysTardy] [decimal](9, 2) NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [RefChronicStudentAbsenteeismIndicatorId] [int] NULL, CONSTRAINT [PK_RoleAttendance] PRIMARY KEY CLUSTERED ( [RoleAttendanceId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RoleAttendanceEvent] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RoleAttendanceEvent] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21403,13 +23114,16 @@ CREATE TABLE [dbo].[RoleAttendanceEvent]( [RecordEndDateTime] [datetime] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [AttendanceEventDurationDay] [decimal](4, 2) NULL, + [AttendanceEventDurationMinutes] [decimal](6, 2) NULL, + [AttendanceEventDurationHours] [decimal](4, 2) NULL, CONSTRAINT [PK_RoleAttendanceEvent] PRIMARY KEY CLUSTERED ( [RoleAttendanceEventId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[RoleStatus] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RoleStatus] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21430,7 +23144,7 @@ CREATE TABLE [dbo].[RoleStatus]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[Rubric] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[Rubric] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21451,7 +23165,7 @@ CREATE TABLE [dbo].[Rubric]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[RubricCriterion] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RubricCriterion] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21474,7 +23188,7 @@ CREATE TABLE [dbo].[RubricCriterion]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[RubricCriterionLevel] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[RubricCriterionLevel] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21497,7 +23211,7 @@ CREATE TABLE [dbo].[RubricCriterionLevel]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[ServiceFrequency] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[ServiceFrequency] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21519,7 +23233,7 @@ CREATE TABLE [dbo].[ServiceFrequency]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ServicePlan] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[ServicePlan] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21542,7 +23256,7 @@ CREATE TABLE [dbo].[ServicePlan]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO -/****** Object: Table [dbo].[ServiceProvided] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[ServiceProvided] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21562,7 +23276,7 @@ CREATE TABLE [dbo].[ServiceProvided]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ServiceProvider] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[ServiceProvider] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21582,7 +23296,7 @@ CREATE TABLE [dbo].[ServiceProvider]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ServicesReceived] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[ServicesReceived] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21602,7 +23316,7 @@ CREATE TABLE [dbo].[ServicesReceived]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[ServiceStaff] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[ServiceStaff] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21626,7 +23340,7 @@ CREATE TABLE [dbo].[ServiceStaff]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[StaffCompensation] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[StaffCompensation] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21647,13 +23361,35 @@ CREATE TABLE [dbo].[StaffCompensation]( [RecordEndDateTime] [datetime] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [StaffCompensationAnnualSupplementDescription] [nvarchar](300) NULL, CONSTRAINT [PK_StaffCompensation] PRIMARY KEY CLUSTERED ( [StaffCompensationId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[StaffCredential] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[StaffCompensationFundingSource] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[StaffCompensationFundingSource]( + [StaffCompensationFundingSourceId] [int] IDENTITY(1,1) NOT NULL, + [StaffCompensationId] [int] NOT NULL, + [FinancialAccountId] [int] NOT NULL, + [StaffCompensationFundingSourceAmount] [decimal](9, 2) NULL, + [StaffCompensationFundingSourcePercentage] [decimal](5, 2) NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_StaffCompensationFundingSource] PRIMARY KEY CLUSTERED +( + [StaffCompensationFundingSourceId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[StaffCredential] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21682,7 +23418,7 @@ CREATE TABLE [dbo].[StaffCredential]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[StaffEmployment] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[StaffEmployment] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21702,13 +23438,33 @@ CREATE TABLE [dbo].[StaffEmployment]( [FullTimeEquivalency] [decimal](5, 4) NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [RefStandardOccupationalClassificationId] [int] NULL, CONSTRAINT [PK_StaffEmployment] PRIMARY KEY CLUSTERED ( [StaffEmploymentId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[StaffEvaluation] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[StaffEmploymentJobPosition] Script Date: 3/15/2024 4:25:24 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[StaffEmploymentJobPosition]( + [StaffEmploymentJobPositionId] [int] IDENTITY(1,1) NOT NULL, + [JobPositionId] [int] NOT NULL, + [StaffEmploymentId] [int] NOT NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_StaffEmploymentJobPosition] PRIMARY KEY CLUSTERED +( + [StaffEmploymentJobPositionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[StaffEvaluation] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21731,7 +23487,7 @@ CREATE TABLE [dbo].[StaffEvaluation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[StaffEvaluationPart] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[StaffEvaluationPart] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21753,7 +23509,7 @@ CREATE TABLE [dbo].[StaffEvaluationPart]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[StaffExperience] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[StaffExperience] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21767,13 +23523,15 @@ CREATE TABLE [dbo].[StaffExperience]( [RecordEndDateTime] [datetime] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [YearsOfTotalExperience] [int] NULL, + [YearsOfPriorProfessionalExperience] [int] NULL, CONSTRAINT [PK_StaffExperience] PRIMARY KEY CLUSTERED ( [StaffExperienceId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[StaffProfessionalDevelopmentActivity] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[StaffProfessionalDevelopmentActivity] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21802,7 +23560,7 @@ CREATE TABLE [dbo].[StaffProfessionalDevelopmentActivity]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[StaffTechnicalAssistance] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[StaffTechnicalAssistance] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21823,7 +23581,7 @@ CREATE TABLE [dbo].[StaffTechnicalAssistance]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[TeacherEducationCredentialExam] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[TeacherEducationCredentialExam] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21838,13 +23596,14 @@ CREATE TABLE [dbo].[TeacherEducationCredentialExam]( [RecordEndDateTime] [datetime] NULL, [RecordStatusId] [int] NULL, [DataCollectionId] [int] NULL, + [AssessmentResultId] [int] NULL, CONSTRAINT [PK_TeacherEduCredentialExam] PRIMARY KEY CLUSTERED ( [TeacherEducationCredentialExamId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[TeacherStudentDataLinkExclusion] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[TeacherStudentDataLinkExclusion] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21863,7 +23622,7 @@ CREATE TABLE [dbo].[TeacherStudentDataLinkExclusion]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[WorkforceEmploymentQuarterlyData] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[WorkforceEmploymentQuarterlyData] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21885,7 +23644,7 @@ CREATE TABLE [dbo].[WorkforceEmploymentQuarterlyData]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[WorkforceProgramParticipantCohort] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[WorkforceProgramParticipantCohort] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21905,7 +23664,7 @@ CREATE TABLE [dbo].[WorkforceProgramParticipantCohort]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Table [dbo].[WorkforceProgramParticipation] Script Date: 4/11/2023 3:50:04 PM ******/ +/****** Object: Table [dbo].[WorkforceProgramParticipation] Script Date: 3/15/2024 4:25:24 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON @@ -21926,132 +23685,6 @@ CREATE TABLE [dbo].[WorkforceProgramParticipation]( )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO -/****** Object: Index [IX_AssReg_PersonId] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE NONCLUSTERED INDEX [IX_AssReg_PersonId] ON [dbo].[AssessmentRegistration] -( - [PersonId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_AssessmentResultId] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE NONCLUSTERED INDEX [IX_AssessmentResultId] ON [dbo].[AssessmentResult] -( - [AssessmentResultId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_AssessmentSubtest_CompetencyDefinition] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE UNIQUE NONCLUSTERED INDEX [IX_AssessmentSubtest_CompetencyDefinition] ON [dbo].[AssessmentSubtest_CompetencyDefinition] -( - [AssessmentSubtestId] ASC, - [CompetencyDefinitionId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_CompetencyFrameworkItem_RefEducationLevel] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE UNIQUE NONCLUSTERED INDEX [IX_CompetencyFrameworkItem_RefEducationLevel] ON [dbo].[CompetencyDefEducationLevel] -( - [CompetencyDefinitionId] ASC, - [RefEducationLevelId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_CompetencyFrameworkItem_CompetencySet] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE UNIQUE NONCLUSTERED INDEX [IX_CompetencyFrameworkItem_CompetencySet] ON [dbo].[CompetencyDefinition_CompetencySet] -( - [CompetencyDefinitionId] ASC, - [CompetencySetId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_CourseSection_RefCourseLevelType] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE UNIQUE NONCLUSTERED INDEX [IX_CourseSection_RefCourseLevelType] ON [dbo].[CourseSectionLevel] -( - [CourseSectionId] ASC, - [RefCourseLevelTypeId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_Course_CredentialCriteria] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE UNIQUE NONCLUSTERED INDEX [IX_Course_CredentialCriteria] ON [dbo].[CredentialCriteriaCourse] -( - [CourseId] ASC, - [CredentialDefCriteriaId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_Credential_CredentialCreator] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE UNIQUE NONCLUSTERED INDEX [IX_Credential_CredentialCreator] ON [dbo].[CredentialDefAgentCredential] -( - [CredentialDefinitionId] ASC, - [CredentialDefAgentId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_Credential_CredentialIssuer] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE UNIQUE NONCLUSTERED INDEX [IX_Credential_CredentialIssuer] ON [dbo].[CredentialOffered] -( - [CredentialDefinitionId] ASC, - [CredentialIssuerId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_K12LeaPreKEligibility] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE UNIQUE NONCLUSTERED INDEX [IX_K12LeaPreKEligibility] ON [dbo].[K12LeaPreKEligibility] -( - [K12LeaId] ASC, - [RefPrekindergartenEligibilityId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_K12LeaTitleIIIProfessionalDevelopment] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE UNIQUE NONCLUSTERED INDEX [IX_K12LeaTitleIIIProfessionalDevelopment] ON [dbo].[K12LeaTitleIIIProfessionalDevelopment] -( - [K12LeaId] ASC, - [RefTitleIIIProfessionalDevelopmentTypeId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_K12SeaAlternateFundUse] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE UNIQUE NONCLUSTERED INDEX [IX_K12SeaAlternateFundUse] ON [dbo].[K12SeaAlternateFundUse] -( - [K12SeaFederalFundsId] ASC, - [RefAlternateFundUsesId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_OrganizationPersonRoleId] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE NONCLUSTERED INDEX [IX_OrganizationPersonRoleId] ON [dbo].[K12StudentEnrollment] -( - [OrganizationPersonRoleId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_EntryDate_ExitDate] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE NONCLUSTERED INDEX [IX_EntryDate_ExitDate] ON [dbo].[OrganizationPersonRole] -( - [EntryDate] ASC, - [ExitDate] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_PersonID] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE NONCLUSTERED INDEX [IX_PersonID] ON [dbo].[OrganizationPersonRole] -( - [PersonId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_PersonId] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE NONCLUSTERED INDEX [IX_PersonId] ON [dbo].[PersonDetail] -( - [PersonId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_OrganizationPersonRoleId] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE NONCLUSTERED INDEX [IX_OrganizationPersonRoleId] ON [dbo].[PersonProgramParticipation] -( - [OrganizationPersonRoleId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_PersonId_RefPersonStatusTypeId] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE NONCLUSTERED INDEX [IX_PersonId_RefPersonStatusTypeId] ON [dbo].[PersonStatus] -( - [PersonId] ASC, - [RefPersonStatusTypeId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO -/****** Object: Index [IX_PersonProgramParticipationId] Script Date: 4/11/2023 3:50:04 PM ******/ -CREATE NONCLUSTERED INDEX [IX_PersonProgramParticipationId] ON [dbo].[ProgramParticipationCte] -( - [PersonProgramParticipationId] ASC -)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] -GO ALTER TABLE [dbo].[PersonTelephone] ADD CONSTRAINT [DF__PersonPho__Prima__50E5F592] DEFAULT ((0)) FOR [PrimaryTelephoneNumberIndicator] GO ALTER TABLE [dbo].[Activity] WITH CHECK ADD CONSTRAINT [FK_Activity_DataCollection] FOREIGN KEY([DataCollectionId]) @@ -23549,6 +25182,31 @@ REFERENCES [dbo].[RefAuthorizerType] ([RefAuthorizerTypeId]) GO ALTER TABLE [dbo].[AuthorizationDocument] CHECK CONSTRAINT [FK_AuthorizationDocument_RefAuthorizerType] GO +ALTER TABLE [dbo].[BoardMembership] WITH CHECK ADD CONSTRAINT [FK_BoardMembership_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[BoardMembership] CHECK CONSTRAINT [FK_BoardMembership_DataCollection] +GO +ALTER TABLE [dbo].[BoardMembership] WITH CHECK ADD CONSTRAINT [FK_BoardMembership_OrganizationPersonRole] FOREIGN KEY([OrganizationPersonRoleId]) +REFERENCES [dbo].[OrganizationPersonRole] ([OrganizationPersonRoleId]) +GO +ALTER TABLE [dbo].[BoardMembership] CHECK CONSTRAINT [FK_BoardMembership_OrganizationPersonRole] +GO +ALTER TABLE [dbo].[BoardMembership] WITH CHECK ADD CONSTRAINT [FK_BoardMembership_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[BoardMembership] CHECK CONSTRAINT [FK_BoardMembership_RecordStatus] +GO +ALTER TABLE [dbo].[BoardMembership] WITH CHECK ADD CONSTRAINT [FK_BoardMembership_RefBoardMemberPositionType] FOREIGN KEY([RefBoardMemberPositionTypeId]) +REFERENCES [dbo].[RefBoardMemberPositionType] ([RefBoardMemberPositionTypeId]) +GO +ALTER TABLE [dbo].[BoardMembership] CHECK CONSTRAINT [FK_BoardMembership_RefBoardMemberPositionType] +GO +ALTER TABLE [dbo].[BoardMembership] WITH CHECK ADD CONSTRAINT [FK_BoardMembership_RefBoardMembershipType] FOREIGN KEY([RefBoardMembershipTypeId]) +REFERENCES [dbo].[RefBoardMembershipType] ([RefBoardMembershipTypeId]) +GO +ALTER TABLE [dbo].[BoardMembership] CHECK CONSTRAINT [FK_BoardMembership_RefBoardMembershipType] +GO ALTER TABLE [dbo].[BuildingSpace] WITH CHECK ADD CONSTRAINT [FK_BuildingSpace_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -24079,6 +25737,46 @@ REFERENCES [dbo].[RefLanguage] ([RefLanguageId]) GO ALTER TABLE [dbo].[Course] CHECK CONSTRAINT [FK_Course_RefLanguage] GO +ALTER TABLE [dbo].[CourseFundingSource] WITH CHECK ADD CONSTRAINT [FK_CourseFundingSource_Course] FOREIGN KEY([CourseId]) +REFERENCES [dbo].[Course] ([CourseId]) +GO +ALTER TABLE [dbo].[CourseFundingSource] CHECK CONSTRAINT [FK_CourseFundingSource_Course] +GO +ALTER TABLE [dbo].[CourseFundingSource] WITH CHECK ADD CONSTRAINT [FK_CourseFundingSource_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[CourseFundingSource] CHECK CONSTRAINT [FK_CourseFundingSource_DataCollection] +GO +ALTER TABLE [dbo].[CourseFundingSource] WITH CHECK ADD CONSTRAINT [FK_CourseFundingSource_FinancialAccount] FOREIGN KEY([FinancialAccountId]) +REFERENCES [dbo].[FinancialAccount] ([FinancialAccountId]) +GO +ALTER TABLE [dbo].[CourseFundingSource] CHECK CONSTRAINT [FK_CourseFundingSource_FinancialAccount] +GO +ALTER TABLE [dbo].[CourseFundingSource] WITH CHECK ADD CONSTRAINT [FK_CourseFundingSource_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[CourseFundingSource] CHECK CONSTRAINT [FK_CourseFundingSource_RecordStatus] +GO +ALTER TABLE [dbo].[CourseFundingSource] WITH CHECK ADD CONSTRAINT [FK_CourseFundingSource_RefCourseFundingProgramAllowed] FOREIGN KEY([RefCourseFundingProgramAllowedId]) +REFERENCES [dbo].[RefCourseFundingProgramAllowed] ([RefCourseFundingProgramAllowedId]) +GO +ALTER TABLE [dbo].[CourseFundingSource] CHECK CONSTRAINT [FK_CourseFundingSource_RefCourseFundingProgramAllowed] +GO +ALTER TABLE [dbo].[CourseRelationship] WITH CHECK ADD CONSTRAINT [FK_CourseRelationship_Course] FOREIGN KEY([CourseId]) +REFERENCES [dbo].[Course] ([CourseId]) +GO +ALTER TABLE [dbo].[CourseRelationship] CHECK CONSTRAINT [FK_CourseRelationship_Course] +GO +ALTER TABLE [dbo].[CourseRelationship] WITH CHECK ADD CONSTRAINT [FK_CourseRelationship_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[CourseRelationship] CHECK CONSTRAINT [FK_CourseRelationship_DataCollection] +GO +ALTER TABLE [dbo].[CourseRelationship] WITH CHECK ADD CONSTRAINT [FK_CourseRelationship_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[CourseRelationship] CHECK CONSTRAINT [FK_CourseRelationship_RecordStatus] +GO ALTER TABLE [dbo].[CourseSection] WITH CHECK ADD CONSTRAINT [FK_CourseSection_Course] FOREIGN KEY([CourseId]) REFERENCES [dbo].[Course] ([CourseId]) GO @@ -24286,6 +25984,26 @@ REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) GO ALTER TABLE [dbo].[CredentialAwardEvidence] CHECK CONSTRAINT [FK_CredentialAwardEvidence_RecordStatus] GO +ALTER TABLE [dbo].[CredentialAwardRelationship] WITH CHECK ADD CONSTRAINT [FK_CredentialAwardRelationship_CredentialAward] FOREIGN KEY([CredentialAwardId]) +REFERENCES [dbo].[CredentialAward] ([CredentialAwardId]) +GO +ALTER TABLE [dbo].[CredentialAwardRelationship] CHECK CONSTRAINT [FK_CredentialAwardRelationship_CredentialAward] +GO +ALTER TABLE [dbo].[CredentialAwardRelationship] WITH CHECK ADD CONSTRAINT [FK_CredentialAwardRelationship_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[CredentialAwardRelationship] CHECK CONSTRAINT [FK_CredentialAwardRelationship_DataCollection] +GO +ALTER TABLE [dbo].[CredentialAwardRelationship] WITH CHECK ADD CONSTRAINT [FK_CredentialAwardRelationship_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[CredentialAwardRelationship] CHECK CONSTRAINT [FK_CredentialAwardRelationship_RecordStatus] +GO +ALTER TABLE [dbo].[CredentialAwardRelationship] WITH CHECK ADD CONSTRAINT [FK_CredentialAwardRelationship_RefCredentialAwardRelationship] FOREIGN KEY([RefCredentialAwardRelationshipId]) +REFERENCES [dbo].[RefCredentialAwardRelationship] ([RefCredentialAwardRelationshipId]) +GO +ALTER TABLE [dbo].[CredentialAwardRelationship] CHECK CONSTRAINT [FK_CredentialAwardRelationship_RefCredentialAwardRelationship] +GO ALTER TABLE [dbo].[CredentialCriteriaCourse] WITH CHECK ADD CONSTRAINT [FK_CredentialCriteriaCourse_Course] FOREIGN KEY([CourseId]) REFERENCES [dbo].[Course] ([CourseId]) GO @@ -24396,6 +26114,26 @@ REFERENCES [dbo].[CredentialDefinition] ([CredentialDefinitionId]) GO ALTER TABLE [dbo].[CredentialDefCriteria] CHECK CONSTRAINT [FK_CredentialDefinitionDefCriteria_CredentialDefinition] GO +ALTER TABLE [dbo].[CredentialDefGradeLevel] WITH CHECK ADD CONSTRAINT [FK_CredentialDefGradeLevel_CredentialDefinition] FOREIGN KEY([CredentialDefinitionId]) +REFERENCES [dbo].[CredentialDefinition] ([CredentialDefinitionId]) +GO +ALTER TABLE [dbo].[CredentialDefGradeLevel] CHECK CONSTRAINT [FK_CredentialDefGradeLevel_CredentialDefinition] +GO +ALTER TABLE [dbo].[CredentialDefGradeLevel] WITH CHECK ADD CONSTRAINT [FK_CredentialDefGradeLevel_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[CredentialDefGradeLevel] CHECK CONSTRAINT [FK_CredentialDefGradeLevel_DataCollection] +GO +ALTER TABLE [dbo].[CredentialDefGradeLevel] WITH CHECK ADD CONSTRAINT [FK_CredentialDefGradeLevel_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[CredentialDefGradeLevel] CHECK CONSTRAINT [FK_CredentialDefGradeLevel_RecordStatus] +GO +ALTER TABLE [dbo].[CredentialDefGradeLevel] WITH CHECK ADD CONSTRAINT [FK_CredentialDefGradeLevel_RefGradeLevel] FOREIGN KEY([RefGradeLevelId]) +REFERENCES [dbo].[RefGradeLevel] ([RefGradeLevelId]) +GO +ALTER TABLE [dbo].[CredentialDefGradeLevel] CHECK CONSTRAINT [FK_CredentialDefGradeLevel_RefGradeLevel] +GO ALTER TABLE [dbo].[CredentialDefIdentifier] WITH CHECK ADD CONSTRAINT [FK_CredentialDefIdentifier_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -25723,6 +27461,11 @@ REFERENCES [dbo].[RefBuildingJointUseSchedulingType] ([RefBuildingJointUseSchedu GO ALTER TABLE [dbo].[FacilityJointUse] CHECK CONSTRAINT [FK_FacilityJointUse_RefBuildingJointUseSchedulingType] GO +ALTER TABLE [dbo].[FacilityJointUse] WITH CHECK ADD CONSTRAINT [FK_FacilityJointUse_RefFacilityJointUseIndicator] FOREIGN KEY([RefFacilityJointUseIndicatorId]) +REFERENCES [dbo].[RefFacilityJointUseIndicator] ([RefFacilityJointUseIndicatorId]) +GO +ALTER TABLE [dbo].[FacilityJointUse] CHECK CONSTRAINT [FK_FacilityJointUse_RefFacilityJointUseIndicator] +GO ALTER TABLE [dbo].[FacilityLease] WITH CHECK ADD CONSTRAINT [FK_FacilityLease_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -26023,6 +27766,11 @@ REFERENCES [dbo].[RefFinancialAccountFundClassification] ([RefFinancialAccountFu GO ALTER TABLE [dbo].[FinancialAccount] CHECK CONSTRAINT [FK_FinancialAccount_RefFinancialAccountFundClassification] GO +ALTER TABLE [dbo].[FinancialAccount] WITH CHECK ADD CONSTRAINT [FK_FinancialAccount_RefFinancialAccountGASBRevenueClassification] FOREIGN KEY([RefFinancialAccountGASBRevenueClassificationId]) +REFERENCES [dbo].[RefFinancialAccountGASBRevenueClassification] ([RefFinancialAccountGASBRevenueClassificationId]) +GO +ALTER TABLE [dbo].[FinancialAccount] CHECK CONSTRAINT [FK_FinancialAccount_RefFinancialAccountGASBRevenueClassification] +GO ALTER TABLE [dbo].[FinancialAccount] WITH CHECK ADD CONSTRAINT [FK_FinancialAccount_RefFinancialAccountProgramCode] FOREIGN KEY([RefFinancialAccountProgramCodeId]) REFERENCES [dbo].[RefFinancialAccountProgramCode] ([RefFinancialAccountProgramCodeId]) GO @@ -26073,6 +27821,11 @@ REFERENCES [dbo].[RefFinancialAccountLocalFundClassification] ([RefFinancialAcco GO ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalFundClassification] GO +ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalGASBRevenueClassification] FOREIGN KEY([RefFinancialAccountLocalGASBRevenueClassificationId]) +REFERENCES [dbo].[RefFinancialAccountLocalGASBRevenueClassification] ([RefFinancialAccountLocalGASBRevenueClassificationId]) +GO +ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalGASBRevenueClassification] +GO ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalProgramCode] FOREIGN KEY([RefFinancialAccountLocalProgramCodeId]) REFERENCES [dbo].[RefFinancialAccountLocalProgramCode] ([RefFinancialAccountLocalProgramCodeId]) GO @@ -26373,6 +28126,21 @@ REFERENCES [dbo].[RefWeaponType] ([RefWeaponTypeId]) GO ALTER TABLE [dbo].[Incident] CHECK CONSTRAINT [FK_Incident_RefWeaponType] GO +ALTER TABLE [dbo].[IncidentActivity] WITH CHECK ADD CONSTRAINT [FK_IncidentActivity_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[IncidentActivity] CHECK CONSTRAINT [FK_IncidentActivity_DataCollection] +GO +ALTER TABLE [dbo].[IncidentActivity] WITH CHECK ADD CONSTRAINT [FK_IncidentActivity_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[IncidentActivity] CHECK CONSTRAINT [FK_IncidentActivity_RecordStatus] +GO +ALTER TABLE [dbo].[IncidentActivity] WITH CHECK ADD CONSTRAINT [FK_IncidentActivity_RefIncidentActivity] FOREIGN KEY([RefIncidentActivityId]) +REFERENCES [dbo].[RefIncidentActivity] ([RefIncidentActivityId]) +GO +ALTER TABLE [dbo].[IncidentActivity] CHECK CONSTRAINT [FK_IncidentActivity_RefIncidentActivity] +GO ALTER TABLE [dbo].[IncidentPerson] WITH CHECK ADD CONSTRAINT [FK_IncidentPerson_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -26443,6 +28211,31 @@ REFERENCES [dbo].[RefStudentSupportServiceType] ([RefStudentSupportServiceTypeId GO ALTER TABLE [dbo].[IndividualizedProgram] CHECK CONSTRAINT [FK_IndividualizedProgram_RefStudentSupportServiceType] GO +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] WITH CHECK ADD CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] CHECK CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_DataCollection] +GO +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] WITH CHECK ADD CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] CHECK CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RecordStatus] +GO +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] WITH CHECK ADD CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RefAccessibleFormatIssuedIndicator] FOREIGN KEY([RefAccessibleFormatIssuedIndicatorId]) +REFERENCES [dbo].[RefAccessibleFormatIssuedIndicator] ([RefAccessibleFormatIssuedIndicatorId]) +GO +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] CHECK CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RefAccessibleFormatIssuedIndicator] +GO +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] WITH CHECK ADD CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RefAccessibleFormatRequiredIndicator] FOREIGN KEY([RefAccessibleFormatRequiredIndicatorId]) +REFERENCES [dbo].[RefAccessibleFormatRequiredIndicator] ([RefAccessibleFormatRequiredIndicatorId]) +GO +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] CHECK CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RefAccessibleFormatRequiredIndicator] +GO +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] WITH CHECK ADD CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RefAccessibleFormatType] FOREIGN KEY([RefAccessibleFormatTypeId]) +REFERENCES [dbo].[RefAccessibleFormatType] ([RefAccessibleFormatTypeId]) +GO +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] CHECK CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RefAccessibleFormatType] +GO ALTER TABLE [dbo].[IndividualizedProgramAccommodation] WITH CHECK ADD CONSTRAINT [FK_IndividualizedProgramAccommodation_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -26833,6 +28626,206 @@ REFERENCES [dbo].[RefIPEDSNaturalExpense] ([RefIPEDSNaturalExpenseId]) GO ALTER TABLE [dbo].[IPEDSFinance] CHECK CONSTRAINT [FK_IPEDSFinance_RefIPEDSNaturalExpense] GO +ALTER TABLE [dbo].[JobCompetency] WITH CHECK ADD CONSTRAINT [FK_JobCompetency_CompetencyDefinition] FOREIGN KEY([CompetencyDefinitionId]) +REFERENCES [dbo].[CompetencyDefinition] ([CompetencyDefinitionId]) +GO +ALTER TABLE [dbo].[JobCompetency] CHECK CONSTRAINT [FK_JobCompetency_CompetencyDefinition] +GO +ALTER TABLE [dbo].[JobCompetency] WITH CHECK ADD CONSTRAINT [FK_JobCompetency_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[JobCompetency] CHECK CONSTRAINT [FK_JobCompetency_DataCollection] +GO +ALTER TABLE [dbo].[JobCompetency] WITH CHECK ADD CONSTRAINT [FK_JobCompetency_Job] FOREIGN KEY([JobId]) +REFERENCES [dbo].[Job] ([JobId]) +GO +ALTER TABLE [dbo].[JobCompetency] CHECK CONSTRAINT [FK_JobCompetency_Job] +GO +ALTER TABLE [dbo].[JobCompetency] WITH CHECK ADD CONSTRAINT [FK_JobCompetency_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[JobCompetency] CHECK CONSTRAINT [FK_JobCompetency_RecordStatus] +GO +ALTER TABLE [dbo].[JobCredential] WITH CHECK ADD CONSTRAINT [FK_JobCredential_CredentialDefinition] FOREIGN KEY([CredentialDefinitionId]) +REFERENCES [dbo].[CredentialDefinition] ([CredentialDefinitionId]) +GO +ALTER TABLE [dbo].[JobCredential] CHECK CONSTRAINT [FK_JobCredential_CredentialDefinition] +GO +ALTER TABLE [dbo].[JobCredential] WITH CHECK ADD CONSTRAINT [FK_JobCredential_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[JobCredential] CHECK CONSTRAINT [FK_JobCredential_DataCollection] +GO +ALTER TABLE [dbo].[JobCredential] WITH CHECK ADD CONSTRAINT [FK_JobCredential_Job] FOREIGN KEY([JobId]) +REFERENCES [dbo].[Job] ([JobId]) +GO +ALTER TABLE [dbo].[JobCredential] CHECK CONSTRAINT [FK_JobCredential_Job] +GO +ALTER TABLE [dbo].[JobCredential] WITH CHECK ADD CONSTRAINT [FK_JobCredential_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[JobCredential] CHECK CONSTRAINT [FK_JobCredential_RecordStatus] +GO +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_DataCollection] +GO +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_Job] FOREIGN KEY([JobId]) +REFERENCES [dbo].[Job] ([JobId]) +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_Job] +GO +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_RecordStatus] +GO +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_RefCodingSystemOrganizationType] FOREIGN KEY([RefCodingSystemOrganizationTypeId]) +REFERENCES [dbo].[RefCodingSystemOrganizationType] ([RefCodingSystemOrganizationTypeId]) +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_RefCodingSystemOrganizationType] +GO +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_RefEducationJobType] FOREIGN KEY([RefEducationJobTypeId]) +REFERENCES [dbo].[RefEducationJobType] ([RefEducationJobTypeId]) +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_RefEducationJobType] +GO +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_RefK12StaffClassification] FOREIGN KEY([RefK12StaffClassificationId]) +REFERENCES [dbo].[RefK12StaffClassification] ([RefK12StaffClassificationId]) +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_RefK12StaffClassification] +GO +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_RefLocalJobCategory] FOREIGN KEY([RefLocalJobCategoryId]) +REFERENCES [dbo].[RefLocalJobCategory] ([RefLocalJobCategoryId]) +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_RefLocalJobCategory] +GO +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_RefLocalJobFunction] FOREIGN KEY([RefLocalJobFunctionId]) +REFERENCES [dbo].[RefLocalJobFunction] ([RefLocalJobFunctionId]) +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_RefLocalJobFunction] +GO +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_RefStandardOccupationalClassification] FOREIGN KEY([RefStandardOccupationalClassificationId]) +REFERENCES [dbo].[RefStandardOccupationalClassification] ([RefStandardOccupationalClassificationId]) +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_RefStandardOccupationalClassification] +GO +ALTER TABLE [dbo].[JobIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobIdentifier_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[JobIdentifier] CHECK CONSTRAINT [FK_JobIdentifier_DataCollection] +GO +ALTER TABLE [dbo].[JobIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobIdentifier_Job] FOREIGN KEY([JobId]) +REFERENCES [dbo].[Job] ([JobId]) +GO +ALTER TABLE [dbo].[JobIdentifier] CHECK CONSTRAINT [FK_JobIdentifier_Job] +GO +ALTER TABLE [dbo].[JobIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobIdentifier_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[JobIdentifier] CHECK CONSTRAINT [FK_JobIdentifier_RecordStatus] +GO +ALTER TABLE [dbo].[JobIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobIdentifier_RefJobIdentificationSystem] FOREIGN KEY([RefJobIdentificationSystemId]) +REFERENCES [dbo].[RefJobIdentificationSystem] ([RefJobIdentificationSystemId]) +GO +ALTER TABLE [dbo].[JobIdentifier] CHECK CONSTRAINT [FK_JobIdentifier_RefJobIdentificationSystem] +GO +ALTER TABLE [dbo].[JobK12StaffAssignment] WITH CHECK ADD CONSTRAINT [FK_JobK12StaffAssignment_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[JobK12StaffAssignment] CHECK CONSTRAINT [FK_JobK12StaffAssignment_DataCollection] +GO +ALTER TABLE [dbo].[JobK12StaffAssignment] WITH CHECK ADD CONSTRAINT [FK_JobK12StaffAssignment_Job] FOREIGN KEY([JobId]) +REFERENCES [dbo].[Job] ([JobId]) +GO +ALTER TABLE [dbo].[JobK12StaffAssignment] CHECK CONSTRAINT [FK_JobK12StaffAssignment_Job] +GO +ALTER TABLE [dbo].[JobK12StaffAssignment] WITH CHECK ADD CONSTRAINT [FK_JobK12StaffAssignment_K12StaffAssignment] FOREIGN KEY([K12StaffAssignmentId]) +REFERENCES [dbo].[K12StaffAssignment] ([K12StaffAssignmentId]) +GO +ALTER TABLE [dbo].[JobK12StaffAssignment] CHECK CONSTRAINT [FK_JobK12StaffAssignment_K12StaffAssignment] +GO +ALTER TABLE [dbo].[JobK12StaffAssignment] WITH CHECK ADD CONSTRAINT [FK_JobK12StaffAssignment_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[JobK12StaffAssignment] CHECK CONSTRAINT [FK_JobK12StaffAssignment_RecordStatus] +GO +ALTER TABLE [dbo].[JobPosition] WITH CHECK ADD CONSTRAINT [FK_JobPosition_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[JobPosition] CHECK CONSTRAINT [FK_JobPosition_DataCollection] +GO +ALTER TABLE [dbo].[JobPosition] WITH CHECK ADD CONSTRAINT [FK_JobPosition_Job] FOREIGN KEY([JobId]) +REFERENCES [dbo].[Job] ([JobId]) +GO +ALTER TABLE [dbo].[JobPosition] CHECK CONSTRAINT [FK_JobPosition_Job] +GO +ALTER TABLE [dbo].[JobPosition] WITH CHECK ADD CONSTRAINT [FK_JobPosition_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[JobPosition] CHECK CONSTRAINT [FK_JobPosition_RecordStatus] +GO +ALTER TABLE [dbo].[JobPositionDetail] WITH CHECK ADD CONSTRAINT [FK_JobPositionDetail_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[JobPositionDetail] CHECK CONSTRAINT [FK_JobPositionDetail_DataCollection] +GO +ALTER TABLE [dbo].[JobPositionDetail] WITH CHECK ADD CONSTRAINT [FK_JobPositionDetail_JobPosition] FOREIGN KEY([JobPositionId]) +REFERENCES [dbo].[JobPosition] ([JobPositionId]) +GO +ALTER TABLE [dbo].[JobPositionDetail] CHECK CONSTRAINT [FK_JobPositionDetail_JobPosition] +GO +ALTER TABLE [dbo].[JobPositionDetail] WITH CHECK ADD CONSTRAINT [FK_JobPositionDetail_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[JobPositionDetail] CHECK CONSTRAINT [FK_JobPositionDetail_RecordStatus] +GO +ALTER TABLE [dbo].[JobPositionIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobPositionIdentifier_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[JobPositionIdentifier] CHECK CONSTRAINT [FK_JobPositionIdentifier_DataCollection] +GO +ALTER TABLE [dbo].[JobPositionIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobPositionIdentifier_JobPosition] FOREIGN KEY([JobPositionId]) +REFERENCES [dbo].[JobPosition] ([JobPositionId]) +GO +ALTER TABLE [dbo].[JobPositionIdentifier] CHECK CONSTRAINT [FK_JobPositionIdentifier_JobPosition] +GO +ALTER TABLE [dbo].[JobPositionIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobPositionIdentifier_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[JobPositionIdentifier] CHECK CONSTRAINT [FK_JobPositionIdentifier_RecordStatus] +GO +ALTER TABLE [dbo].[JobPositionIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobPositionIdentifier_RefJobPositionIdentificationSystem] FOREIGN KEY([RefJobPositionIdentificationSystemId]) +REFERENCES [dbo].[RefJobPositionIdentificationSystem] ([RefJobPositionIdentificationSystemId]) +GO +ALTER TABLE [dbo].[JobPositionIdentifier] CHECK CONSTRAINT [FK_JobPositionIdentifier_RefJobPositionIdentificationSystem] +GO +ALTER TABLE [dbo].[JobPositionStatus] WITH CHECK ADD CONSTRAINT [FK_JobPositionStatus_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[JobPositionStatus] CHECK CONSTRAINT [FK_JobPositionStatus_DataCollection] +GO +ALTER TABLE [dbo].[JobPositionStatus] WITH CHECK ADD CONSTRAINT [FK_JobPositionStatus_JobPosition] FOREIGN KEY([JobPositionId]) +REFERENCES [dbo].[JobPosition] ([JobPositionId]) +GO +ALTER TABLE [dbo].[JobPositionStatus] CHECK CONSTRAINT [FK_JobPositionStatus_JobPosition] +GO +ALTER TABLE [dbo].[JobPositionStatus] WITH CHECK ADD CONSTRAINT [FK_JobPositionStatus_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[JobPositionStatus] CHECK CONSTRAINT [FK_JobPositionStatus_RecordStatus] +GO +ALTER TABLE [dbo].[JobPositionStatus] WITH CHECK ADD CONSTRAINT [FK_JobPositionStatus_RefJobPositionStatus] FOREIGN KEY([RefJobPositionStatusId]) +REFERENCES [dbo].[RefJobPositionStatus] ([RefJobPositionStatusId]) +GO +ALTER TABLE [dbo].[JobPositionStatus] CHECK CONSTRAINT [FK_JobPositionStatus_RefJobPositionStatus] +GO +ALTER TABLE [dbo].[JobPositionStatus] WITH CHECK ADD CONSTRAINT [FK_JobPositionStatus_RefJobPositionStatusCancelledReason] FOREIGN KEY([RefJobPositionStatusCancelledReasonId]) +REFERENCES [dbo].[RefJobPositionStatusCancelledReason] ([RefJobPositionStatusCancelledReasonId]) +GO +ALTER TABLE [dbo].[JobPositionStatus] CHECK CONSTRAINT [FK_JobPositionStatus_RefJobPositionStatusCancelledReason] +GO ALTER TABLE [dbo].[K12CharterSchoolAuthorizerAgency] WITH CHECK ADD CONSTRAINT [FK_K12CharterSchoolAuthorizerAgency_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -27100,6 +29093,31 @@ REFERENCES [dbo].[RefGradeLevel] ([RefGradeLevelId]) GO ALTER TABLE [dbo].[K12LeaGradeOffered] CHECK CONSTRAINT [FK_K12LeaGradeOffered_RefGradeLevel] GO +ALTER TABLE [dbo].[K12LeaPolicy] WITH CHECK ADD CONSTRAINT [FK_K12LeaPolicy_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[K12LeaPolicy] CHECK CONSTRAINT [FK_K12LeaPolicy_DataCollection] +GO +ALTER TABLE [dbo].[K12LeaPolicy] WITH CHECK ADD CONSTRAINT [FK_K12LeaPolicy_K12Lea] FOREIGN KEY([K12LeaId]) +REFERENCES [dbo].[K12Lea] ([K12LeaId]) +GO +ALTER TABLE [dbo].[K12LeaPolicy] CHECK CONSTRAINT [FK_K12LeaPolicy_K12Lea] +GO +ALTER TABLE [dbo].[K12LeaPolicy] WITH CHECK ADD CONSTRAINT [FK_K12LeaPolicy_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[K12LeaPolicy] CHECK CONSTRAINT [FK_K12LeaPolicy_RecordStatus] +GO +ALTER TABLE [dbo].[K12LeaPolicy] WITH CHECK ADD CONSTRAINT [FK_K12LeaPolicy_RefLEAGFSAAssuranceofComplianceIndicator] FOREIGN KEY([RefLEAGFSAAssuranceofComplianceIndicatorId]) +REFERENCES [dbo].[RefLEAGFSAAssuranceofComplianceIndicator] ([RefLEAGFSAAssuranceofComplianceIndicatorId]) +GO +ALTER TABLE [dbo].[K12LeaPolicy] CHECK CONSTRAINT [FK_K12LeaPolicy_RefLEAGFSAAssuranceofComplianceIndicator] +GO +ALTER TABLE [dbo].[K12LeaPolicy] WITH CHECK ADD CONSTRAINT [FK_K12LeaPolicy_RefLEAGFSAPolicyAssuranceIndicator] FOREIGN KEY([RefLEAGFSAPolicyAssuranceIndicatorId]) +REFERENCES [dbo].[RefLEAGFSAPolicyAssuranceIndicator] ([RefLEAGFSAPolicyAssuranceIndicatorId]) +GO +ALTER TABLE [dbo].[K12LeaPolicy] CHECK CONSTRAINT [FK_K12LeaPolicy_RefLEAGFSAPolicyAssuranceIndicator] +GO ALTER TABLE [dbo].[K12LeaPreKEligibility] WITH CHECK ADD CONSTRAINT [FK_K12LeaPreKEligibility_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -27776,6 +29794,11 @@ REFERENCES [dbo].[RefProgressLevel] ([RefProgressLevelId]) GO ALTER TABLE [dbo].[K12StudentAcademicRecord] CHECK CONSTRAINT [FK_K12StudentAcademicRecord_RefProgressLevel] GO +ALTER TABLE [dbo].[K12StudentAcademicRecord] WITH CHECK ADD CONSTRAINT [FK_K12StudentAcademicRecord_RefProjectedHighSchoolDiplomaType] FOREIGN KEY([RefProjectedHighSchoolDiplomaTypeId]) +REFERENCES [dbo].[RefProjectedHighSchoolDiplomaType] ([RefProjectedHighSchoolDiplomaTypeId]) +GO +ALTER TABLE [dbo].[K12StudentAcademicRecord] CHECK CONSTRAINT [FK_K12StudentAcademicRecord_RefProjectedHighSchoolDiplomaType] +GO ALTER TABLE [dbo].[K12StudentAcademicRecord] WITH CHECK ADD CONSTRAINT [FK_K12StudentAcademicRecord_RefPsEnrollmentAction] FOREIGN KEY([RefPsEnrollmentActionId]) REFERENCES [dbo].[RefPsEnrollmentAction] ([RefPsEnrollmentActionId]) GO @@ -27970,6 +29993,46 @@ REFERENCES [dbo].[RefIDEAInterimRemovalReason] ([RefIDEAInterimRemovalReasonId]) GO ALTER TABLE [dbo].[K12StudentDiscipline] CHECK CONSTRAINT [FK_K12StudentDiscipline_RefIDESInterimRemovalReason] GO +ALTER TABLE [dbo].[K12StudentDropout] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropout_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[K12StudentDropout] CHECK CONSTRAINT [FK_K12StudentDropout_DataCollection] +GO +ALTER TABLE [dbo].[K12StudentDropout] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropout_OrganizationPersonRole] FOREIGN KEY([OrganizationPersonRoleId]) +REFERENCES [dbo].[OrganizationPersonRole] ([OrganizationPersonRoleId]) +GO +ALTER TABLE [dbo].[K12StudentDropout] CHECK CONSTRAINT [FK_K12StudentDropout_OrganizationPersonRole] +GO +ALTER TABLE [dbo].[K12StudentDropout] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropout_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[K12StudentDropout] CHECK CONSTRAINT [FK_K12StudentDropout_RecordStatus] +GO +ALTER TABLE [dbo].[K12StudentDropout] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropout_RefStudentDropoutStatus] FOREIGN KEY([RefStudentDropoutStatusId]) +REFERENCES [dbo].[RefStudentDropoutStatus] ([RefStudentDropoutStatusId]) +GO +ALTER TABLE [dbo].[K12StudentDropout] CHECK CONSTRAINT [FK_K12StudentDropout_RefStudentDropoutStatus] +GO +ALTER TABLE [dbo].[K12StudentDropoutReason] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropoutReason_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[K12StudentDropoutReason] CHECK CONSTRAINT [FK_K12StudentDropoutReason_DataCollection] +GO +ALTER TABLE [dbo].[K12StudentDropoutReason] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropoutReason_OrganizationPersonRole] FOREIGN KEY([OrganizationPersonRoleId]) +REFERENCES [dbo].[OrganizationPersonRole] ([OrganizationPersonRoleId]) +GO +ALTER TABLE [dbo].[K12StudentDropoutReason] CHECK CONSTRAINT [FK_K12StudentDropoutReason_OrganizationPersonRole] +GO +ALTER TABLE [dbo].[K12StudentDropoutReason] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropoutReason_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[K12StudentDropoutReason] CHECK CONSTRAINT [FK_K12StudentDropoutReason_RecordStatus] +GO +ALTER TABLE [dbo].[K12StudentDropoutReason] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropoutReason_RefDropoutReasonType] FOREIGN KEY([RefDropoutReasonTypeId]) +REFERENCES [dbo].[RefDropoutReasonType] ([RefDropoutReasonTypeId]) +GO +ALTER TABLE [dbo].[K12StudentDropoutReason] CHECK CONSTRAINT [FK_K12StudentDropoutReason_RefDropoutReasonType] +GO ALTER TABLE [dbo].[K12StudentEmployment] WITH CHECK ADD CONSTRAINT [FK_K12StudentEmployment_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -28022,6 +30085,11 @@ REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) GO ALTER TABLE [dbo].[K12StudentEnrollment] CHECK CONSTRAINT [FK_K12StudentEnrollment_RecordStatus] GO +ALTER TABLE [dbo].[K12StudentEnrollment] WITH CHECK ADD CONSTRAINT [FK_K12StudentEnrollment_RefAdjustedExitOrWithdrawalType] FOREIGN KEY([RefAdjustedExitOrWithdrawalTypeId]) +REFERENCES [dbo].[RefAdjustedExitOrWithdrawalType] ([RefAdjustedExitOrWithdrawalTypeId]) +GO +ALTER TABLE [dbo].[K12StudentEnrollment] CHECK CONSTRAINT [FK_K12StudentEnrollment_RefAdjustedExitOrWithdrawalType] +GO ALTER TABLE [dbo].[K12StudentEnrollment] WITH CHECK ADD CONSTRAINT [FK_K12StudentEnrollment_RefDirectoryInformationBlockStatus] FOREIGN KEY([RefDirectoryInformationBlockStatusId]) REFERENCES [dbo].[RefDirectoryInformationBlockStatus] ([RefDirectoryInformationBlockStatusId]) GO @@ -28292,6 +30360,16 @@ REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) GO ALTER TABLE [dbo].[LearningResource] CHECK CONSTRAINT [FK_LearningResource_RecordStatus] GO +ALTER TABLE [dbo].[LearningResource] WITH CHECK ADD CONSTRAINT [FK_LearningResource_RefAccessibleFormatType] FOREIGN KEY([RefAccessibleFormatTypeId]) +REFERENCES [dbo].[RefAccessibleFormatType] ([RefAccessibleFormatTypeId]) +GO +ALTER TABLE [dbo].[LearningResource] CHECK CONSTRAINT [FK_LearningResource_RefAccessibleFormatType] +GO +ALTER TABLE [dbo].[LearningResource] WITH CHECK ADD CONSTRAINT [FK_LearningResource_RefHighQualityInstructionalMaterialIndicator] FOREIGN KEY([RefHighQualityInstructionalMaterialIndicatorId]) +REFERENCES [dbo].[RefHighQualityInstructionalMaterialIndicator] ([RefHighQualityInstructionalMaterialIndicatorId]) +GO +ALTER TABLE [dbo].[LearningResource] CHECK CONSTRAINT [FK_LearningResource_RefHighQualityInstructionalMaterialIndicator] +GO ALTER TABLE [dbo].[LearningResource] WITH CHECK ADD CONSTRAINT [FK_LearningResource_RefLanguage] FOREIGN KEY([RefLanguageId]) REFERENCES [dbo].[RefLanguage] ([RefLanguageId]) GO @@ -28402,6 +30480,46 @@ REFERENCES [dbo].[RefEducationLevel] ([RefEducationLevelId]) GO ALTER TABLE [dbo].[LearningResourceEducationLevel] CHECK CONSTRAINT [FK_LearningResourceEducationLevel_RefEducationLevel] GO +ALTER TABLE [dbo].[LearningResourceIdentifier] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIdentifier_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[LearningResourceIdentifier] CHECK CONSTRAINT [FK_LearningResourceIdentifier_DataCollection] +GO +ALTER TABLE [dbo].[LearningResourceIdentifier] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIdentifier_LearningResource] FOREIGN KEY([LearningResourceId]) +REFERENCES [dbo].[LearningResource] ([LearningResourceId]) +GO +ALTER TABLE [dbo].[LearningResourceIdentifier] CHECK CONSTRAINT [FK_LearningResourceIdentifier_LearningResource] +GO +ALTER TABLE [dbo].[LearningResourceIdentifier] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIdentifier_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[LearningResourceIdentifier] CHECK CONSTRAINT [FK_LearningResourceIdentifier_RecordStatus] +GO +ALTER TABLE [dbo].[LearningResourceIdentifier] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIdentifier_RefLearningResourceIdentificationSystem] FOREIGN KEY([RefLearningResourceIdentificationSystemId]) +REFERENCES [dbo].[RefLearningResourceIdentificationSystem] ([RefLearningResourceIdentificationSystemId]) +GO +ALTER TABLE [dbo].[LearningResourceIdentifier] CHECK CONSTRAINT [FK_LearningResourceIdentifier_RefLearningResourceIdentificationSystem] +GO +ALTER TABLE [dbo].[LearningResourceIssued] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIssued_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[LearningResourceIssued] CHECK CONSTRAINT [FK_LearningResourceIssued_DataCollection] +GO +ALTER TABLE [dbo].[LearningResourceIssued] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIssued_IssuedToPerson] FOREIGN KEY([IssuedToPersonId]) +REFERENCES [dbo].[Person] ([PersonId]) +GO +ALTER TABLE [dbo].[LearningResourceIssued] CHECK CONSTRAINT [FK_LearningResourceIssued_IssuedToPerson] +GO +ALTER TABLE [dbo].[LearningResourceIssued] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIssued_LearningResource] FOREIGN KEY([LearningResourceId]) +REFERENCES [dbo].[LearningResource] ([LearningResourceId]) +GO +ALTER TABLE [dbo].[LearningResourceIssued] CHECK CONSTRAINT [FK_LearningResourceIssued_LearningResource] +GO +ALTER TABLE [dbo].[LearningResourceIssued] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIssued_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[LearningResourceIssued] CHECK CONSTRAINT [FK_LearningResourceIssued_RecordStatus] +GO ALTER TABLE [dbo].[LearningResourceMediaFeature] WITH CHECK ADD CONSTRAINT [FK_LearningResourceMediaFeature_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -28422,6 +30540,21 @@ REFERENCES [dbo].[RefLearningResourceMediaFeatureType] ([RefLearningResourceMedi GO ALTER TABLE [dbo].[LearningResourceMediaFeature] CHECK CONSTRAINT [FK_LearningResourceMediaFeature_RefLearningResourceMediaFeatureType] GO +ALTER TABLE [dbo].[LearningResourceOrder] WITH CHECK ADD CONSTRAINT [FK_LearningResourceOrder_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[LearningResourceOrder] CHECK CONSTRAINT [FK_LearningResourceOrder_DataCollection] +GO +ALTER TABLE [dbo].[LearningResourceOrder] WITH CHECK ADD CONSTRAINT [FK_LearningResourceOrder_LearningResource] FOREIGN KEY([LearningResourceId]) +REFERENCES [dbo].[LearningResource] ([LearningResourceId]) +GO +ALTER TABLE [dbo].[LearningResourceOrder] CHECK CONSTRAINT [FK_LearningResourceOrder_LearningResource] +GO +ALTER TABLE [dbo].[LearningResourceOrder] WITH CHECK ADD CONSTRAINT [FK_LearningResourceOrder_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[LearningResourceOrder] CHECK CONSTRAINT [FK_LearningResourceOrder_RecordStatus] +GO ALTER TABLE [dbo].[LearningResourcePeerRating] WITH CHECK ADD CONSTRAINT [FK_LearningResourcePeerRating_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -28467,6 +30600,21 @@ REFERENCES [dbo].[RefLearningResourcePhysicalMediaType] ([RefLearningResourcePhy GO ALTER TABLE [dbo].[LearningResourcePhysicalMedia] CHECK CONSTRAINT [FK_LearningResourcePhysicalMedia_RefLearningResourcePhysicalMediaType] GO +ALTER TABLE [dbo].[LearningResourceStatus] WITH CHECK ADD CONSTRAINT [FK_LearningResourceStatus_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[LearningResourceStatus] CHECK CONSTRAINT [FK_LearningResourceStatus_DataCollection] +GO +ALTER TABLE [dbo].[LearningResourceStatus] WITH CHECK ADD CONSTRAINT [FK_LearningResourceStatus_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[LearningResourceStatus] CHECK CONSTRAINT [FK_LearningResourceStatus_RecordStatus] +GO +ALTER TABLE [dbo].[LearningResourceStatus] WITH CHECK ADD CONSTRAINT [FK_LearningResourceStatus_RefLearningResourceStatus] FOREIGN KEY([RefLearningResourceStatusId]) +REFERENCES [dbo].[RefLearningResourceStatus] ([RefLearningResourceStatusId]) +GO +ALTER TABLE [dbo].[LearningResourceStatus] CHECK CONSTRAINT [FK_LearningResourceStatus_RefLearningResourceStatus] +GO ALTER TABLE [dbo].[Location] WITH CHECK ADD CONSTRAINT [FK_Location_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -28639,6 +30787,21 @@ REFERENCES [dbo].[RefSessionType] ([RefSessionTypeId]) GO ALTER TABLE [dbo].[OrganizationCalendarSession] CHECK CONSTRAINT [FK_OrganizationCalendarSession_RefSessionType] GO +ALTER TABLE [dbo].[OrganizationCalendarSessionRelationship] WITH CHECK ADD CONSTRAINT [FK_OrganizationCalendarSessionRelationship_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[OrganizationCalendarSessionRelationship] CHECK CONSTRAINT [FK_OrganizationCalendarSessionRelationship_DataCollection] +GO +ALTER TABLE [dbo].[OrganizationCalendarSessionRelationship] WITH CHECK ADD CONSTRAINT [FK_OrganizationCalendarSessionRelationship_OrganizationCalendarSession] FOREIGN KEY([OrganizationCalendarSessionId]) +REFERENCES [dbo].[OrganizationCalendarSession] ([OrganizationCalendarSessionId]) +GO +ALTER TABLE [dbo].[OrganizationCalendarSessionRelationship] CHECK CONSTRAINT [FK_OrganizationCalendarSessionRelationship_OrganizationCalendarSession] +GO +ALTER TABLE [dbo].[OrganizationCalendarSessionRelationship] WITH CHECK ADD CONSTRAINT [FK_OrganizationCalendarSessionRelationship_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[OrganizationCalendarSessionRelationship] CHECK CONSTRAINT [FK_OrganizationCalendarSessionRelationship_RecordStatus] +GO ALTER TABLE [dbo].[OrganizationDetail] WITH CHECK ADD CONSTRAINT [FK_OrganizationDetail_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -28699,11 +30862,21 @@ REFERENCES [dbo].[RefEmployeeBenefit] ([RefEmployeeBenefitId]) GO ALTER TABLE [dbo].[OrganizationEmployeeBenefit] CHECK CONSTRAINT [FK_OrganizationEmployeeBenefit_RefEmployeeBenefit] GO +ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] WITH CHECK ADD CONSTRAINT [FK_OrganizationEnrollmentCapacity_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] CHECK CONSTRAINT [FK_OrganizationEnrollmentCapacity_DataCollection] +GO ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] WITH CHECK ADD CONSTRAINT [FK_OrganizationEnrollmentCapacity_OrganizationCalendarSession] FOREIGN KEY([OrganizationCalendarSessionId]) REFERENCES [dbo].[OrganizationCalendarSession] ([OrganizationCalendarSessionId]) GO ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] CHECK CONSTRAINT [FK_OrganizationEnrollmentCapacity_OrganizationCalendarSession] GO +ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] WITH CHECK ADD CONSTRAINT [FK_OrganizationEnrollmentCapacity_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] CHECK CONSTRAINT [FK_OrganizationEnrollmentCapacity_RecordStatus] +GO ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] WITH CHECK ADD CONSTRAINT [FK_OrganizationEnrollmentCapacity_RefAdjustedCapacityReasonType] FOREIGN KEY([RefAdjustedCapacityReasonTypeId]) REFERENCES [dbo].[RefAdjustedCapacityReasonType] ([RefAdjustedCapacityReasonTypeId]) GO @@ -28814,6 +30987,11 @@ REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) GO ALTER TABLE [dbo].[OrganizationFinancial] CHECK CONSTRAINT [FK_OrganizationFinancial_RecordStatus] GO +ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] CHECK CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_DataCollection] +GO ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_FinancialAccountLocal] FOREIGN KEY([FinancialAccountLocalId]) REFERENCES [dbo].[FinancialAccountLocal] ([FinancialAccountLocalId]) GO @@ -28824,6 +31002,11 @@ REFERENCES [dbo].[OrganizationFinancial] ([OrganizationFinancialId]) GO ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] CHECK CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_OrganizationFinancial] GO +ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] CHECK CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_RecordStatus] +GO ALTER TABLE [dbo].[OrganizationIdentifier] WITH CHECK ADD CONSTRAINT [FK_OrganizationIdentifier_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -28884,6 +31067,41 @@ REFERENCES [dbo].[RefOrganizationIndicator] ([RefOrganizationIndicatorId]) GO ALTER TABLE [dbo].[OrganizationIndicator] CHECK CONSTRAINT [FK_OrganizationIndicator_RefOrganizationIndicator] GO +ALTER TABLE [dbo].[OrganizationJob] WITH CHECK ADD CONSTRAINT [FK_OrganizationJob_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[OrganizationJob] CHECK CONSTRAINT [FK_OrganizationJob_DataCollection] +GO +ALTER TABLE [dbo].[OrganizationJob] WITH CHECK ADD CONSTRAINT [FK_OrganizationJob_Job] FOREIGN KEY([JobId]) +REFERENCES [dbo].[Job] ([JobId]) +GO +ALTER TABLE [dbo].[OrganizationJob] CHECK CONSTRAINT [FK_OrganizationJob_Job] +GO +ALTER TABLE [dbo].[OrganizationJob] WITH CHECK ADD CONSTRAINT [FK_OrganizationJob_Organization] FOREIGN KEY([OrganizationId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[OrganizationJob] CHECK CONSTRAINT [FK_OrganizationJob_Organization] +GO +ALTER TABLE [dbo].[OrganizationJob] WITH CHECK ADD CONSTRAINT [FK_OrganizationJob_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[OrganizationJob] CHECK CONSTRAINT [FK_OrganizationJob_RecordStatus] +GO +ALTER TABLE [dbo].[OrganizationJurisdiction] WITH CHECK ADD CONSTRAINT [FK_OrganizationJurisdiction_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[OrganizationJurisdiction] CHECK CONSTRAINT [FK_OrganizationJurisdiction_DataCollection] +GO +ALTER TABLE [dbo].[OrganizationJurisdiction] WITH CHECK ADD CONSTRAINT [FK_OrganizationJurisdiction_Organization] FOREIGN KEY([OrganizationId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[OrganizationJurisdiction] CHECK CONSTRAINT [FK_OrganizationJurisdiction_Organization] +GO +ALTER TABLE [dbo].[OrganizationJurisdiction] WITH CHECK ADD CONSTRAINT [FK_OrganizationJurisdiction_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[OrganizationJurisdiction] CHECK CONSTRAINT [FK_OrganizationJurisdiction_RecordStatus] +GO ALTER TABLE [dbo].[OrganizationLocation] WITH CHECK ADD CONSTRAINT [FK_OrganizationLocation_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -28999,6 +31217,11 @@ REFERENCES [dbo].[OrganizationPersonRole] ([OrganizationPersonRoleId]) GO ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] CHECK CONSTRAINT [FK_OrganizationPersonRoleRelationship_OrganizationPersonRole_Parent] GO +ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] WITH CHECK ADD CONSTRAINT [FK_OrganizationPersonRoleRelationship_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] CHECK CONSTRAINT [FK_OrganizationPersonRoleRelationship_RecordStatus] +GO ALTER TABLE [dbo].[OrganizationPolicy] WITH CHECK ADD CONSTRAINT [FK_OrganizationPolicy_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -29014,6 +31237,11 @@ REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) GO ALTER TABLE [dbo].[OrganizationPolicy] CHECK CONSTRAINT [FK_OrganizationPolicy_RecordStatus] GO +ALTER TABLE [dbo].[OrganizationPolicy] WITH CHECK ADD CONSTRAINT [FK_OrganizationPolicy_RefDEIPolicyIndicator] FOREIGN KEY([RefDEIPolicyIndicatorId]) +REFERENCES [dbo].[RefDEIPolicyIndicator] ([RefDEIPolicyIndicatorId]) +GO +ALTER TABLE [dbo].[OrganizationPolicy] CHECK CONSTRAINT [FK_OrganizationPolicy_RefDEIPolicyIndicator] +GO ALTER TABLE [dbo].[OrganizationPopulationServed] WITH CHECK ADD CONSTRAINT [FK_OrganizationPopulationServed_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -29059,6 +31287,16 @@ REFERENCES [dbo].[RefProgramType] ([RefProgramTypeId]) GO ALTER TABLE [dbo].[OrganizationProgramType] CHECK CONSTRAINT [FK_OrganizationProgramType_RefProgramType] GO +ALTER TABLE [dbo].[OrganizationProjectBasedLearning] WITH CHECK ADD CONSTRAINT [FK_OrganizationProjectBasedLearning_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[OrganizationProjectBasedLearning] CHECK CONSTRAINT [FK_OrganizationProjectBasedLearning_DataCollection] +GO +ALTER TABLE [dbo].[OrganizationProjectBasedLearning] WITH CHECK ADD CONSTRAINT [FK_OrganizationProjectBasedLearning_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[OrganizationProjectBasedLearning] CHECK CONSTRAINT [FK_OrganizationProjectBasedLearning_RecordStatus] +GO ALTER TABLE [dbo].[OrganizationProjectBasedLearning] WITH CHECK ADD CONSTRAINT [FK_OrganizationProjectBasedLearning_RefProjectBasedLearningType] FOREIGN KEY([RefProjectBasedLearningTypeId]) REFERENCES [dbo].[RefProjectBasedLearningType] ([RefProjectBasedLearningTypeId]) GO @@ -29089,6 +31327,86 @@ REFERENCES [dbo].[RefOrganizationRelationship] ([RefOrganizationRelationshipId]) GO ALTER TABLE [dbo].[OrganizationRelationship] CHECK CONSTRAINT [FK_OrganizationRelationship_RefOrganizationRelationshipType] GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteria] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteria_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteria] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteria_DataCollection] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteria] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteria_Organization] FOREIGN KEY([OrganizationId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteria] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteria_Organization] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteria] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteria_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteria] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteria_RecordStatus] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValue] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValue_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValue] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValue_DataCollection] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValue] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValue_OrganizationSalaryScheduleCriteria] FOREIGN KEY([OrganizationSalaryScheduleCriteriaId]) +REFERENCES [dbo].[OrganizationSalaryScheduleCriteria] ([OrganizationSalaryScheduleCriteriaId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValue] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValue_OrganizationSalaryScheduleCriteria] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValue] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValue_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValue] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValue_RecordStatus] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_DataCollection] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_Organization] FOREIGN KEY([OrganizationId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_Organization] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_OrganizationSalaryScheduleCriteriaValue] FOREIGN KEY([OrganizationSalaryScheduleCriteriaValueId]) +REFERENCES [dbo].[OrganizationSalaryScheduleCriteriaValue] ([OrganizationSalaryScheduleCriteriaValueId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_OrganizationSalaryScheduleCriteriaValue] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_OrganizationSalaryScheduleSalary] FOREIGN KEY([OrganizationSalaryScheduleSalaryId]) +REFERENCES [dbo].[OrganizationSalaryScheduleSalary] ([OrganizationSalaryScheduleSalaryId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_OrganizationSalaryScheduleSalary] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_RecordStatus] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleSalary_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleSalary_DataCollection] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleSalary_Organization] FOREIGN KEY([OrganizationId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleSalary_Organization] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleSalary_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleSalary_RecordStatus] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleSalary_RefONETSOCOccupationType] FOREIGN KEY([RefONETSOCOccupationTypeId]) +REFERENCES [dbo].[RefONETSOCOccupationType] ([RefONETSOCOccupationTypeId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleSalary_RefONETSOCOccupationType] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleSalary_RefStandardOccupationalClassification] FOREIGN KEY([RefStandardOccupationalClassificationId]) +REFERENCES [dbo].[RefStandardOccupationalClassification] ([RefStandardOccupationalClassificationId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleSalary_RefStandardOccupationalClassification] +GO ALTER TABLE [dbo].[OrganizationService] WITH CHECK ADD CONSTRAINT [FK_OrganizationService_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -29644,6 +31962,11 @@ REFERENCES [dbo].[RefProofOfResidencyType] ([RefProofOfResidencyTypeId]) GO ALTER TABLE [dbo].[PersonFamily] CHECK CONSTRAINT [FK_PersonFamily_RefProofOfResidencyType] GO +ALTER TABLE [dbo].[PersonFamily] WITH CHECK ADD CONSTRAINT [FK_PersonFamily_RefTeenParentIndicator] FOREIGN KEY([RefTeenParentIndicatorId]) +REFERENCES [dbo].[RefTeenParentIndicator] ([RefTeenParentIndicatorId]) +GO +ALTER TABLE [dbo].[PersonFamily] CHECK CONSTRAINT [FK_PersonFamily_RefTeenParentIndicator] +GO ALTER TABLE [dbo].[PersonHealth] WITH CHECK ADD CONSTRAINT [FK_PersonHealth_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -29854,11 +32177,6 @@ REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) GO ALTER TABLE [dbo].[PersonMilitary] CHECK CONSTRAINT [FK_PersonMilitary_RecordStatus] GO -ALTER TABLE [dbo].[PersonMilitary] WITH CHECK ADD CONSTRAINT [FK_PersonMilitary_RefMilitaryActiveStudentIndicator] FOREIGN KEY([RefMilitaryActiveStudentIndicatorId]) -REFERENCES [dbo].[RefMilitaryActiveStudentIndicator] ([RefMilitaryActiveStudentIndicatorId]) -GO -ALTER TABLE [dbo].[PersonMilitary] CHECK CONSTRAINT [FK_PersonMilitary_RefMilitaryActiveStudentIndicator] -GO ALTER TABLE [dbo].[PersonMilitary] WITH CHECK ADD CONSTRAINT [FK_PersonMilitary_RefMilitaryBranch] FOREIGN KEY([RefMilitaryBranchId]) REFERENCES [dbo].[RefMilitaryBranch] ([RefMilitaryBranchId]) GO @@ -29869,10 +32187,125 @@ REFERENCES [dbo].[RefMilitaryConnectedStudentIndicator] ([RefMilitaryConnectedSt GO ALTER TABLE [dbo].[PersonMilitary] CHECK CONSTRAINT [FK_PersonMilitary_RefMilitaryConnectedStudentIndicator] GO -ALTER TABLE [dbo].[PersonMilitary] WITH CHECK ADD CONSTRAINT [FK_PersonMilitary_RefMilitaryVeteranStudentIndicator] FOREIGN KEY([RefMilitaryVeteranStudentIndicatorId]) -REFERENCES [dbo].[RefMilitaryVeteranStudentIndicator] ([RefMilitaryVeteranStudentIndicatorId]) +ALTER TABLE [dbo].[PersonMilitary] WITH CHECK ADD CONSTRAINT [FK_PersonMilitary_RefMilitaryDischargeCategory] FOREIGN KEY([RefMilitaryDischargeCategoryId]) +REFERENCES [dbo].[RefMilitaryDischargeCategory] ([RefMilitaryDischargeCategoryId]) +GO +ALTER TABLE [dbo].[PersonMilitary] CHECK CONSTRAINT [FK_PersonMilitary_RefMilitaryDischargeCategory] +GO +ALTER TABLE [dbo].[PersonMilitary] WITH CHECK ADD CONSTRAINT [FK_PersonMilitary_RefNationalGuardIndicator] FOREIGN KEY([RefNationalGuardIndicatorId]) +REFERENCES [dbo].[RefNationalGuardIndicator] ([RefNationalGuardIndicatorId]) +GO +ALTER TABLE [dbo].[PersonMilitary] CHECK CONSTRAINT [FK_PersonMilitary_RefNationalGuardIndicator] +GO +ALTER TABLE [dbo].[PersonMilitaryCampaigns] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryCampaigns_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[PersonMilitaryCampaigns] CHECK CONSTRAINT [FK_PersonMilitaryCampaigns_DataCollection] +GO +ALTER TABLE [dbo].[PersonMilitaryCampaigns] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryCampaigns_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[PersonMilitaryCampaigns] CHECK CONSTRAINT [FK_PersonMilitaryCampaigns_RecordStatus] +GO +ALTER TABLE [dbo].[PersonMilitaryCampaigns] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryCampaigns_RefMilitaryCampaigns] FOREIGN KEY([RefMilitaryCampaignsId]) +REFERENCES [dbo].[RefMilitaryCampaigns] ([RefMilitaryCampaignsId]) +GO +ALTER TABLE [dbo].[PersonMilitaryCampaigns] CHECK CONSTRAINT [FK_PersonMilitaryCampaigns_RefMilitaryCampaigns] +GO +ALTER TABLE [dbo].[PersonMilitaryDeployment] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryDeployment_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[PersonMilitaryDeployment] CHECK CONSTRAINT [FK_PersonMilitaryDeployment_DataCollection] +GO +ALTER TABLE [dbo].[PersonMilitaryDeployment] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryDeployment_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[PersonMilitaryDeployment] CHECK CONSTRAINT [FK_PersonMilitaryDeployment_RecordStatus] +GO +ALTER TABLE [dbo].[PersonMilitaryDeployment] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryDeployment_RefMilitaryDeploymentStatusCode] FOREIGN KEY([RefMilitaryDeploymentStatusCodeId]) +REFERENCES [dbo].[RefMilitaryDeploymentStatusCode] ([RefMilitaryDeploymentStatusCodeId]) +GO +ALTER TABLE [dbo].[PersonMilitaryDeployment] CHECK CONSTRAINT [FK_PersonMilitaryDeployment_RefMilitaryDeploymentStatusCode] +GO +ALTER TABLE [dbo].[PersonMilitaryDuties] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryDuties_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[PersonMilitaryDuties] CHECK CONSTRAINT [FK_PersonMilitaryDuties_DataCollection] +GO +ALTER TABLE [dbo].[PersonMilitaryDuties] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryDuties_PersonMilitary] FOREIGN KEY([PersonMilitaryId]) +REFERENCES [dbo].[PersonMilitary] ([PersonMilitaryId]) +GO +ALTER TABLE [dbo].[PersonMilitaryDuties] CHECK CONSTRAINT [FK_PersonMilitaryDuties_PersonMilitary] +GO +ALTER TABLE [dbo].[PersonMilitaryDuties] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryDuties_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[PersonMilitaryDuties] CHECK CONSTRAINT [FK_PersonMilitaryDuties_RecordStatus] +GO +ALTER TABLE [dbo].[PersonMilitaryDuties] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryDuties_RefMilitaryDuties] FOREIGN KEY([RefMilitaryDutiesId]) +REFERENCES [dbo].[RefMilitaryDuties] ([RefMilitaryDutiesId]) +GO +ALTER TABLE [dbo].[PersonMilitaryDuties] CHECK CONSTRAINT [FK_PersonMilitaryDuties_RefMilitaryDuties] +GO +ALTER TABLE [dbo].[PersonMilitaryExpertise] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryExpertise_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[PersonMilitaryExpertise] CHECK CONSTRAINT [FK_PersonMilitaryExpertise_DataCollection] +GO +ALTER TABLE [dbo].[PersonMilitaryExpertise] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryExpertise_PersonMilitary] FOREIGN KEY([PersonMilitaryId]) +REFERENCES [dbo].[PersonMilitary] ([PersonMilitaryId]) +GO +ALTER TABLE [dbo].[PersonMilitaryExpertise] CHECK CONSTRAINT [FK_PersonMilitaryExpertise_PersonMilitary] +GO +ALTER TABLE [dbo].[PersonMilitaryExpertise] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryExpertise_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[PersonMilitaryExpertise] CHECK CONSTRAINT [FK_PersonMilitaryExpertise_RecordStatus] +GO +ALTER TABLE [dbo].[PersonMilitaryExpertise] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryExpertise_RefMilitaryExpertise] FOREIGN KEY([RefMilitaryExpertiseId]) +REFERENCES [dbo].[RefMilitaryExpertise] ([RefMilitaryExpertiseId]) +GO +ALTER TABLE [dbo].[PersonMilitaryExpertise] CHECK CONSTRAINT [FK_PersonMilitaryExpertise_RefMilitaryExpertise] +GO +ALTER TABLE [dbo].[PersonMilitaryHonors] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryHonors_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[PersonMilitaryHonors] CHECK CONSTRAINT [FK_PersonMilitaryHonors_DataCollection] +GO +ALTER TABLE [dbo].[PersonMilitaryHonors] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryHonors_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[PersonMilitaryHonors] CHECK CONSTRAINT [FK_PersonMilitaryHonors_RecordStatus] +GO +ALTER TABLE [dbo].[PersonMilitaryOccupationalSpecialties] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryOccupationalSpecialties_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[PersonMilitaryOccupationalSpecialties] CHECK CONSTRAINT [FK_PersonMilitaryOccupationalSpecialties_DataCollection] GO -ALTER TABLE [dbo].[PersonMilitary] CHECK CONSTRAINT [FK_PersonMilitary_RefMilitaryVeteranStudentIndicator] +ALTER TABLE [dbo].[PersonMilitaryOccupationalSpecialties] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryOccupationalSpecialties_PersonMilitary] FOREIGN KEY([PersonMilitaryId]) +REFERENCES [dbo].[PersonMilitary] ([PersonMilitaryId]) +GO +ALTER TABLE [dbo].[PersonMilitaryOccupationalSpecialties] CHECK CONSTRAINT [FK_PersonMilitaryOccupationalSpecialties_PersonMilitary] +GO +ALTER TABLE [dbo].[PersonMilitaryOccupationalSpecialties] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryOccupationalSpecialties_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[PersonMilitaryOccupationalSpecialties] CHECK CONSTRAINT [FK_PersonMilitaryOccupationalSpecialties_RecordStatus] +GO +ALTER TABLE [dbo].[PersonMilitaryServiceLocations] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryServiceLocations_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[PersonMilitaryServiceLocations] CHECK CONSTRAINT [FK_PersonMilitaryServiceLocations_DataCollection] +GO +ALTER TABLE [dbo].[PersonMilitaryServiceLocations] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryServiceLocations_PersonMilitary] FOREIGN KEY([PersonMilitaryId]) +REFERENCES [dbo].[PersonMilitary] ([PersonMilitaryId]) +GO +ALTER TABLE [dbo].[PersonMilitaryServiceLocations] CHECK CONSTRAINT [FK_PersonMilitaryServiceLocations_PersonMilitary] +GO +ALTER TABLE [dbo].[PersonMilitaryServiceLocations] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryServiceLocations_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[PersonMilitaryServiceLocations] CHECK CONSTRAINT [FK_PersonMilitaryServiceLocations_RecordStatus] GO ALTER TABLE [dbo].[PersonOtherName] WITH CHECK ADD CONSTRAINT [FK_PersonOtherName__RefOtherNameType] FOREIGN KEY([RefOtherNameTypeId]) REFERENCES [dbo].[RefOtherNameType] ([RefOtherNameTypeId]) @@ -30054,6 +32487,31 @@ REFERENCES [dbo].[RefTelephoneNumberListedStatus] ([RefTelephoneNumberListedStat GO ALTER TABLE [dbo].[PersonTelephone] CHECK CONSTRAINT [FK_PersonTelephone_RefTelephoneNumberListedStatus] GO +ALTER TABLE [dbo].[PersonTransportationEligibility] WITH CHECK ADD CONSTRAINT [FK_PersonTransportationEligibility_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[PersonTransportationEligibility] CHECK CONSTRAINT [FK_PersonTransportationEligibility_DataCollection] +GO +ALTER TABLE [dbo].[PersonTransportationEligibility] WITH CHECK ADD CONSTRAINT [FK_PersonTransportationEligibility_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[PersonTransportationEligibility] CHECK CONSTRAINT [FK_PersonTransportationEligibility_RecordStatus] +GO +ALTER TABLE [dbo].[PersonTransportationEligibility] WITH CHECK ADD CONSTRAINT [FK_PersonTransportationEligibility_RefTransportationPublicExpenseEligibilityType] FOREIGN KEY([RefTransportationPublicExpenseEligibilityTypeId]) +REFERENCES [dbo].[RefTransportationPublicExpenseEligibilityType] ([RefTransportationPublicExpenseEligibilityTypeId]) +GO +ALTER TABLE [dbo].[PersonTransportationEligibility] CHECK CONSTRAINT [FK_PersonTransportationEligibility_RefTransportationPublicExpenseEligibilityType] +GO +ALTER TABLE [dbo].[PersonTransportationEligibility] WITH CHECK ADD CONSTRAINT [FK_PersonTransportationEligibility_RefTransportationStateAidQualificationType] FOREIGN KEY([RefTransportationStateAidQualificationTypeId]) +REFERENCES [dbo].[RefTransportationStateAidQualificationType] ([RefTransportationStateAidQualificationTypeId]) +GO +ALTER TABLE [dbo].[PersonTransportationEligibility] CHECK CONSTRAINT [FK_PersonTransportationEligibility_RefTransportationStateAidQualificationType] +GO +ALTER TABLE [dbo].[PersonTransportationEligibility] WITH CHECK ADD CONSTRAINT [FK_PersonTransportationEligibility_RefTransportationStatusType] FOREIGN KEY([RefTransportationStatusTypeId]) +REFERENCES [dbo].[RefTransportationStatusType] ([RefTransportationStatusTypeId]) +GO +ALTER TABLE [dbo].[PersonTransportationEligibility] CHECK CONSTRAINT [FK_PersonTransportationEligibility_RefTransportationStatusType] +GO ALTER TABLE [dbo].[ProfessionalDevelopmentActivity] WITH CHECK ADD CONSTRAINT [FK_PDSession_Course] FOREIGN KEY([CourseId]) REFERENCES [dbo].[Course] ([CourseId]) GO @@ -30304,6 +32762,11 @@ REFERENCES [dbo].[RefNonTraditionalGenderStatus] ([RefNonTraditionalGenderStatus GO ALTER TABLE [dbo].[ProgramParticipationCte] CHECK CONSTRAINT [FK_ProgramParticipationCte_RefNonTraditionalGenderStatus] GO +ALTER TABLE [dbo].[ProgramParticipationCte] WITH CHECK ADD CONSTRAINT [FK_ProgramParticipationCte_RefPerkinsPostProgramPlacementIndicator] FOREIGN KEY([RefPerkinsPostProgramPlacementIndicatorId]) +REFERENCES [dbo].[RefPerkinsPostProgramPlacementIndicator] ([RefPerkinsPostProgramPlacementIndicatorId]) +GO +ALTER TABLE [dbo].[ProgramParticipationCte] CHECK CONSTRAINT [FK_ProgramParticipationCte_RefPerkinsPostProgramPlacementIndicator] +GO ALTER TABLE [dbo].[ProgramParticipationCte] WITH CHECK ADD CONSTRAINT [FK_ProgramParticipationCte_RefWorkbasedLearningOpportunityType] FOREIGN KEY([RefWorkbasedLearningOpportunityTypeId]) REFERENCES [dbo].[RefWorkbasedLearningOpportunityType] ([RefWorkbasedLearningOpportunityTypeId]) GO @@ -30394,6 +32857,11 @@ REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) GO ALTER TABLE [dbo].[ProgramParticipationNeglected] CHECK CONSTRAINT [FK_ProgramParticipationNeglected_RecordStatus] GO +ALTER TABLE [dbo].[ProgramParticipationNeglected] WITH CHECK ADD CONSTRAINT [FK_ProgramParticipationNeglected_RefDelinquentProgramType] FOREIGN KEY([RefDelinquentProgramTypeId]) +REFERENCES [dbo].[RefDelinquentProgramType] ([RefDelinquentProgramTypeId]) +GO +ALTER TABLE [dbo].[ProgramParticipationNeglected] CHECK CONSTRAINT [FK_ProgramParticipationNeglected_RefDelinquentProgramType] +GO ALTER TABLE [dbo].[ProgramParticipationNeglected] WITH CHECK ADD CONSTRAINT [FK_ProgramParticipationNeglected_RefNeglectedProgramType] FOREIGN KEY([RefNeglectedProgramTypeId]) REFERENCES [dbo].[RefNeglectedProgramType] ([RefNeglectedProgramTypeId]) GO @@ -30646,6 +33114,11 @@ REFERENCES [dbo].[RefLevelOfInstitution] ([RefLevelOfInstitutionId]) GO ALTER TABLE [dbo].[PsInstitution] CHECK CONSTRAINT [FK_PsInstitution_RefLevelOfInstitution] GO +ALTER TABLE [dbo].[PsInstitution] WITH CHECK ADD CONSTRAINT [FK_PsInstitution_RefMostPrevalentLevelOfInstitution] FOREIGN KEY([RefMostPrevalentLevelOfInstitutionId]) +REFERENCES [dbo].[RefMostPrevalentLevelOfInstitution] ([RefMostPrevalentLevelOfInstitutionId]) +GO +ALTER TABLE [dbo].[PsInstitution] CHECK CONSTRAINT [FK_PsInstitution_RefMostPrevalentLevelOfInstitution] +GO ALTER TABLE [dbo].[PsInstitution] WITH CHECK ADD CONSTRAINT [FK_PsInstitution_RefPredominantCalendarSystem] FOREIGN KEY([RefPredominantCalendarSystemId]) REFERENCES [dbo].[RefPredominantCalendarSystem] ([RefPredominantCalendarSystemId]) GO @@ -31361,6 +33834,11 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefAccreditationAgency] CHECK CONSTRAINT [FK_RefAccreditationAgency_Organization] GO +ALTER TABLE [dbo].[RefActiveMilitaryStatusIndicator] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryActiveStudentIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefActiveMilitaryStatusIndicator] CHECK CONSTRAINT [FK_RefMilitaryActiveStudentIndicator_Organization] +GO ALTER TABLE [dbo].[RefActivityRecognitionType] WITH CHECK ADD CONSTRAINT [FK_RefActivityRecognitionType_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO @@ -33471,6 +35949,16 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefLeaFundsTransferType] CHECK CONSTRAINT [FK_RefLEAFundsTransferType_Organization] GO +ALTER TABLE [dbo].[RefLEAGFSAAssuranceofComplianceIndicator] WITH CHECK ADD CONSTRAINT [FK_RefLEAGFSAAssuranceofComplianceIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefLEAGFSAAssuranceofComplianceIndicator] CHECK CONSTRAINT [FK_RefLEAGFSAAssuranceofComplianceIndicator_Organization] +GO +ALTER TABLE [dbo].[RefLEAGFSAPolicyAssuranceIndicator] WITH CHECK ADD CONSTRAINT [FK_RefLEAGFSAPolicyAssuranceIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefLEAGFSAPolicyAssuranceIndicator] CHECK CONSTRAINT [FK_RefLEAGFSAPolicyAssuranceIndicator_Organization] +GO ALTER TABLE [dbo].[RefLeaImprovementStatus] WITH CHECK ADD CONSTRAINT [FK_RefLEAImprovementStatus_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO @@ -33551,6 +36039,11 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefLearningResourceEducationalUse] CHECK CONSTRAINT [FK_RefLREducationalUse_Organization] GO +ALTER TABLE [dbo].[RefLearningResourceIdentificationSystem] WITH CHECK ADD CONSTRAINT [FK_RefLearningResourceIdentificationSystem_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefLearningResourceIdentificationSystem] CHECK CONSTRAINT [FK_RefLearningResourceIdentificationSystem_Organization] +GO ALTER TABLE [dbo].[RefLearningResourceIntendedEndUserRole] WITH CHECK ADD CONSTRAINT [FK_RefLRIntendedEndUserRole_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO @@ -33576,6 +36069,11 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefLearningResourcePhysicalMediaType] CHECK CONSTRAINT [FK_RefLearningResourcePhysicalMediaType_Organization] GO +ALTER TABLE [dbo].[RefLearningResourceStatus] WITH CHECK ADD CONSTRAINT [FK_RefLearningResourceStatus_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefLearningResourceStatus] CHECK CONSTRAINT [FK_RefLearningResourceStatus_Organization] +GO ALTER TABLE [dbo].[RefLearningResourceType] WITH CHECK ADD CONSTRAINT [FK_RefLRType_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO @@ -33606,6 +36104,16 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefLiteracyAssessment] CHECK CONSTRAINT [FK_RefLiteracyAssessment_Organization] GO +ALTER TABLE [dbo].[RefLocalJobCategory] WITH CHECK ADD CONSTRAINT [FK_RefLocalJobCategory_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefLocalJobCategory] CHECK CONSTRAINT [FK_RefLocalJobCategory_Organization] +GO +ALTER TABLE [dbo].[RefLocalJobFunction] WITH CHECK ADD CONSTRAINT [FK_RefLocalJobFunction_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefLocalJobFunction] CHECK CONSTRAINT [FK_RefLocalJobFunction_Organization] +GO ALTER TABLE [dbo].[RefMagnetSpecialProgram] WITH CHECK ADD CONSTRAINT [FK_RefMagnetSpecialProgram_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO @@ -33651,25 +36159,50 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefMethodOfServiceDelivery] CHECK CONSTRAINT [FK_RefMethodOfServiceDelivery_Organization] GO -ALTER TABLE [dbo].[RefMilitaryActiveStudentIndicator] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryActiveStudentIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +ALTER TABLE [dbo].[RefMilitaryBranch] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryBranch_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO -ALTER TABLE [dbo].[RefMilitaryActiveStudentIndicator] CHECK CONSTRAINT [FK_RefMilitaryActiveStudentIndicator_Organization] +ALTER TABLE [dbo].[RefMilitaryBranch] CHECK CONSTRAINT [FK_RefMilitaryBranch_Organization] GO -ALTER TABLE [dbo].[RefMilitaryBranch] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryBranch_Organization] FOREIGN KEY([RefJurisdictionId]) +ALTER TABLE [dbo].[RefMilitaryCampaigns] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryCampaigns_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO -ALTER TABLE [dbo].[RefMilitaryBranch] CHECK CONSTRAINT [FK_RefMilitaryBranch_Organization] +ALTER TABLE [dbo].[RefMilitaryCampaigns] CHECK CONSTRAINT [FK_RefMilitaryCampaigns_Organization] GO ALTER TABLE [dbo].[RefMilitaryConnectedStudentIndicator] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryConnectedStudentIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefMilitaryConnectedStudentIndicator] CHECK CONSTRAINT [FK_RefMilitaryConnectedStudentIndicator_Organization] GO -ALTER TABLE [dbo].[RefMilitaryVeteranStudentIndicator] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryVeteranStudentIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +ALTER TABLE [dbo].[RefMilitaryDeploymentStatusCode] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryDeploymentStatusCode_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefMilitaryDeploymentStatusCode] CHECK CONSTRAINT [FK_RefMilitaryDeploymentStatusCode_Organization] +GO +ALTER TABLE [dbo].[RefMilitaryDischargeCategory] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryDischargeCategory_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO -ALTER TABLE [dbo].[RefMilitaryVeteranStudentIndicator] CHECK CONSTRAINT [FK_RefMilitaryVeteranStudentIndicator_Organization] +ALTER TABLE [dbo].[RefMilitaryDischargeCategory] CHECK CONSTRAINT [FK_RefMilitaryDischargeCategory_Organization] +GO +ALTER TABLE [dbo].[RefMilitaryDuties] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryDuties_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefMilitaryDuties] CHECK CONSTRAINT [FK_RefMilitaryDuties_Organization] +GO +ALTER TABLE [dbo].[RefMilitaryExpertise] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryExpertise_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefMilitaryExpertise] CHECK CONSTRAINT [FK_RefMilitaryExpertise_Organization] +GO +ALTER TABLE [dbo].[RefMilitaryVeteranStatusIndicator] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryVeteranStudentIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefMilitaryVeteranStatusIndicator] CHECK CONSTRAINT [FK_RefMilitaryVeteranStudentIndicator_Organization] +GO +ALTER TABLE [dbo].[RefMostPrevalentLevelOfInstitution] WITH CHECK ADD CONSTRAINT [FK_RefMostPrevalentLevelOfInstitution_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefMostPrevalentLevelOfInstitution] CHECK CONSTRAINT [FK_RefMostPrevalentLevelOfInstitution_Organization] GO ALTER TABLE [dbo].[RefMultipleIntelligenceType] WITH CHECK ADD CONSTRAINT [FK_RefMultipleIntelligenceType_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) @@ -33686,6 +36219,11 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefNaepMathComplexityLevel] CHECK CONSTRAINT [FK_RefNAEPMathComplexityLevel_Organization] GO +ALTER TABLE [dbo].[RefNationalGuardIndicator] WITH CHECK ADD CONSTRAINT [FK_RefNationalGuardIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefNationalGuardIndicator] CHECK CONSTRAINT [FK_RefNationalGuardIndicator_Organization] +GO ALTER TABLE [dbo].[RefNationalSchoolLunchProgramStatus] WITH CHECK ADD CONSTRAINT [FK_RefNationalSchoolLunchProgramStatus_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO @@ -33701,10 +36239,10 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefNeedDeterminationMethod] CHECK CONSTRAINT [FK_RefNeedDeterminationMethod_Organization] GO -ALTER TABLE [dbo].[RefNeglectedProgramType] WITH CHECK ADD CONSTRAINT [FK_RefNeglectedProgramType_Organization] FOREIGN KEY([RefJurisdictionId]) +ALTER TABLE [dbo].[RefNeglectedOrDelinquentProgramType] WITH CHECK ADD CONSTRAINT [FK_RefNeglectedProgramType_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO -ALTER TABLE [dbo].[RefNeglectedProgramType] CHECK CONSTRAINT [FK_RefNeglectedProgramType_Organization] +ALTER TABLE [dbo].[RefNeglectedOrDelinquentProgramType] CHECK CONSTRAINT [FK_RefNeglectedProgramType_Organization] GO ALTER TABLE [dbo].[RefNonPromotionReason] WITH CHECK ADD CONSTRAINT [FK_RefNonPromotionReason_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) @@ -33821,6 +36359,11 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefParaprofessionalQualification] CHECK CONSTRAINT [FK_RefParaprofessionalQualification_Organization] GO +ALTER TABLE [dbo].[RefPartBPostsecondaryOutcomesIndicator] WITH CHECK ADD CONSTRAINT [FK_RefPartBPostsecondaryOutcomesIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefPartBPostsecondaryOutcomesIndicator] CHECK CONSTRAINT [FK_RefPartBPostsecondaryOutcomesIndicator_Organization] +GO ALTER TABLE [dbo].[RefParticipationStatusAyp] WITH CHECK ADD CONSTRAINT [FK_RefParticipationStatusAYP_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO @@ -33881,6 +36424,11 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefPDSessionStatus] CHECK CONSTRAINT [FK_RefPDSessionStatus_Organization] GO +ALTER TABLE [dbo].[RefPerkinsPostProgramPlacementIndicator] WITH CHECK ADD CONSTRAINT [FK_RefPerkinsPostProgramPlacementIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefPerkinsPostProgramPlacementIndicator] CHECK CONSTRAINT [FK_RefPerkinsPostProgramPlacementIndicator_Organization] +GO ALTER TABLE [dbo].[RefPersonalInformationType] WITH CHECK ADD CONSTRAINT [FK_RefPersonalInformationType_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO @@ -34056,6 +36604,11 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefProjectBasedLearningType] CHECK CONSTRAINT [FK_RefProjectBasedLearningType_Organization] GO +ALTER TABLE [dbo].[RefProjectedHighSchoolDiplomaType] WITH CHECK ADD CONSTRAINT [FK_RefProjectedHighSchoolDiplomaType_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefProjectedHighSchoolDiplomaType] CHECK CONSTRAINT [FK_RefProjectedHighSchoolDiplomaType_Organization] +GO ALTER TABLE [dbo].[RefPromotionReason] WITH CHECK ADD CONSTRAINT [FK_RefPromotionReason_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO @@ -34326,6 +36879,11 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefStandardizedAdmissionTest] CHECK CONSTRAINT [FK_RefStandardizedAdmissionTest_Organization] GO +ALTER TABLE [dbo].[RefStandardOccupationalClassification] WITH CHECK ADD CONSTRAINT [FK_RefStandardOccupationalClassification_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefStandardOccupationalClassification] CHECK CONSTRAINT [FK_RefStandardOccupationalClassification_Organization] +GO ALTER TABLE [dbo].[RefState] WITH CHECK ADD CONSTRAINT [FK_RefState_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO @@ -34341,6 +36899,11 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefStatePovertyDesignation] CHECK CONSTRAINT [FK_RefStatePovertyDesignation_Organization] GO +ALTER TABLE [dbo].[RefStudentDropoutStatus] WITH CHECK ADD CONSTRAINT [FK_RefStudentDropoutStatus_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefStudentDropoutStatus] CHECK CONSTRAINT [FK_RefStudentDropoutStatus_Organization] +GO ALTER TABLE [dbo].[RefStudentEnrollmentAccessType] WITH CHECK ADD CONSTRAINT [FK_RefStudentEnrollmentAccessType_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO @@ -34431,6 +36994,11 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefTechnologyLiteracyStatus] CHECK CONSTRAINT [FK_RefTechnologyLiteracyStatus_Organization] GO +ALTER TABLE [dbo].[RefTeenParentIndicator] WITH CHECK ADD CONSTRAINT [FK_RefTeenParentIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefTeenParentIndicator] CHECK CONSTRAINT [FK_RefTeenParentIndicator_Organization] +GO ALTER TABLE [dbo].[RefTelephoneNumberListedStatus] WITH CHECK ADD CONSTRAINT [FK_RefTelephoneNumberListedStatus_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO @@ -34506,6 +37074,21 @@ REFERENCES [dbo].[Organization] ([OrganizationId]) GO ALTER TABLE [dbo].[RefTransferReady] CHECK CONSTRAINT [FK_RefTransferReady_Organization] GO +ALTER TABLE [dbo].[RefTransportationPublicExpenseEligibilityType] WITH CHECK ADD CONSTRAINT [FK_RefTransportationPublicExpenseEligibilityType_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefTransportationPublicExpenseEligibilityType] CHECK CONSTRAINT [FK_RefTransportationPublicExpenseEligibilityType_Organization] +GO +ALTER TABLE [dbo].[RefTransportationStateAidQualificationType] WITH CHECK ADD CONSTRAINT [FK_RefTransportationStateAidQualificationType_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefTransportationStateAidQualificationType] CHECK CONSTRAINT [FK_RefTransportationStateAidQualificationType_Organization] +GO +ALTER TABLE [dbo].[RefTransportationStatusType] WITH CHECK ADD CONSTRAINT [FK_RefTransportationStatusType_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[RefTransportationStatusType] CHECK CONSTRAINT [FK_RefTransportationStatusType_Organization] +GO ALTER TABLE [dbo].[RefTribalAffiliation] WITH CHECK ADD CONSTRAINT [FK_RefTribalAffiliation_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]) GO @@ -34631,6 +37214,11 @@ REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) GO ALTER TABLE [dbo].[RoleAttendance] CHECK CONSTRAINT [FK_RoleAttendance_RecordStatus] GO +ALTER TABLE [dbo].[RoleAttendance] WITH CHECK ADD CONSTRAINT [FK_RoleAttendance_RefChronicStudentAbsenteeismIndicator] FOREIGN KEY([RefChronicStudentAbsenteeismIndicatorId]) +REFERENCES [dbo].[RefChronicStudentAbsenteeismIndicator] ([RefChronicStudentAbsenteeismIndicatorId]) +GO +ALTER TABLE [dbo].[RoleAttendance] CHECK CONSTRAINT [FK_RoleAttendance_RefChronicStudentAbsenteeismIndicator] +GO ALTER TABLE [dbo].[RoleAttendanceEvent] WITH CHECK ADD CONSTRAINT [FK_RoleAttendanceEvent_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -34881,6 +37469,26 @@ REFERENCES [dbo].[StaffEmployment] ([StaffEmploymentId]) GO ALTER TABLE [dbo].[StaffCompensation] CHECK CONSTRAINT [FK_StaffCompensation_StaffEmployment] GO +ALTER TABLE [dbo].[StaffCompensationFundingSource] WITH CHECK ADD CONSTRAINT [FK_StaffCompensationFundingSource_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[StaffCompensationFundingSource] CHECK CONSTRAINT [FK_StaffCompensationFundingSource_DataCollection] +GO +ALTER TABLE [dbo].[StaffCompensationFundingSource] WITH CHECK ADD CONSTRAINT [FK_StaffCompensationFundingSource_FinancialAccount] FOREIGN KEY([FinancialAccountId]) +REFERENCES [dbo].[FinancialAccount] ([FinancialAccountId]) +GO +ALTER TABLE [dbo].[StaffCompensationFundingSource] CHECK CONSTRAINT [FK_StaffCompensationFundingSource_FinancialAccount] +GO +ALTER TABLE [dbo].[StaffCompensationFundingSource] WITH CHECK ADD CONSTRAINT [FK_StaffCompensationFundingSource_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[StaffCompensationFundingSource] CHECK CONSTRAINT [FK_StaffCompensationFundingSource_RecordStatus] +GO +ALTER TABLE [dbo].[StaffCompensationFundingSource] WITH CHECK ADD CONSTRAINT [FK_StaffCompensationFundingSource_StaffCompensation] FOREIGN KEY([StaffCompensationId]) +REFERENCES [dbo].[StaffCompensation] ([StaffCompensationId]) +GO +ALTER TABLE [dbo].[StaffCompensationFundingSource] CHECK CONSTRAINT [FK_StaffCompensationFundingSource_StaffCompensation] +GO ALTER TABLE [dbo].[StaffCredential] WITH CHECK ADD CONSTRAINT [FK_StaffCredential_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -34951,6 +37559,31 @@ REFERENCES [dbo].[RefEmploymentSeparationType] ([RefEmploymentSeparationTypeId]) GO ALTER TABLE [dbo].[StaffEmployment] CHECK CONSTRAINT [FK_StaffEmployment_RefEmploymentSeparationType] GO +ALTER TABLE [dbo].[StaffEmployment] WITH CHECK ADD CONSTRAINT [FK_StaffEmployment_RefStandardOccupationalClassification] FOREIGN KEY([RefStandardOccupationalClassificationId]) +REFERENCES [dbo].[RefStandardOccupationalClassification] ([RefStandardOccupationalClassificationId]) +GO +ALTER TABLE [dbo].[StaffEmployment] CHECK CONSTRAINT [FK_StaffEmployment_RefStandardOccupationalClassification] +GO +ALTER TABLE [dbo].[StaffEmploymentJobPosition] WITH CHECK ADD CONSTRAINT [FK_StaffEmploymentJobPosition_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[StaffEmploymentJobPosition] CHECK CONSTRAINT [FK_StaffEmploymentJobPosition_DataCollection] +GO +ALTER TABLE [dbo].[StaffEmploymentJobPosition] WITH CHECK ADD CONSTRAINT [FK_StaffEmploymentJobPosition_JobPosition] FOREIGN KEY([JobPositionId]) +REFERENCES [dbo].[JobPosition] ([JobPositionId]) +GO +ALTER TABLE [dbo].[StaffEmploymentJobPosition] CHECK CONSTRAINT [FK_StaffEmploymentJobPosition_JobPosition] +GO +ALTER TABLE [dbo].[StaffEmploymentJobPosition] WITH CHECK ADD CONSTRAINT [FK_StaffEmploymentJobPosition_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[StaffEmploymentJobPosition] CHECK CONSTRAINT [FK_StaffEmploymentJobPosition_RecordStatus] +GO +ALTER TABLE [dbo].[StaffEmploymentJobPosition] WITH CHECK ADD CONSTRAINT [FK_StaffEmploymentJobPosition_StaffEmployment] FOREIGN KEY([StaffEmploymentId]) +REFERENCES [dbo].[StaffEmployment] ([StaffEmploymentId]) +GO +ALTER TABLE [dbo].[StaffEmploymentJobPosition] CHECK CONSTRAINT [FK_StaffEmploymentJobPosition_StaffEmployment] +GO ALTER TABLE [dbo].[StaffEvaluation] WITH CHECK ADD CONSTRAINT [FK_StaffEvaluation_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -35071,6 +37704,11 @@ REFERENCES [dbo].[RefTechnicalAssistanceType] ([RefTechnicalAssistanceTypeId]) GO ALTER TABLE [dbo].[StaffTechnicalAssistance] CHECK CONSTRAINT [FK_StaffTechnicalAssistance_RefTechnicalAssistanceType] GO +ALTER TABLE [dbo].[TeacherEducationCredentialExam] WITH CHECK ADD CONSTRAINT [FK_TeacherEducationCredentialExam_AssessmentResult] FOREIGN KEY([AssessmentResultId]) +REFERENCES [dbo].[AssessmentResult] ([AssessmentResultId]) +GO +ALTER TABLE [dbo].[TeacherEducationCredentialExam] CHECK CONSTRAINT [FK_TeacherEducationCredentialExam_AssessmentResult] +GO ALTER TABLE [dbo].[TeacherEducationCredentialExam] WITH CHECK ADD CONSTRAINT [FK_TeacherEducationCredentialExam_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]) GO @@ -35176,41 +37814,6 @@ REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) GO ALTER TABLE [dbo].[WorkforceProgramParticipation] CHECK CONSTRAINT [FK_WorkforceProgramParticipation_RecordStatus] GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) -GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] CHECK CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_RecordStatus] -GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_DataCollection] FOREIGN KEY([DataCollectionId]) -REFERENCES [dbo].[DataCollection] ([DataCollectionId]) -GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] CHECK CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_DataCollection] -GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] WITH CHECK ADD CONSTRAINT [FK_OrganizationEnrollmentCapacity_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) -GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] CHECK CONSTRAINT [FK_OrganizationEnrollmentCapacity_RecordStatus] -GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] WITH CHECK ADD CONSTRAINT [FK_OrganizationEnrollmentCapacity_DataCollection] FOREIGN KEY([DataCollectionId]) -REFERENCES [dbo].[DataCollection] ([DataCollectionId]) -GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] CHECK CONSTRAINT [FK_OrganizationEnrollmentCapacity_DataCollection] -GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] WITH CHECK ADD CONSTRAINT [FK_OrganizationProjectBasedLearning_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) -GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] CHECK CONSTRAINT [FK_OrganizationProjectBasedLearning_RecordStatus] -GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] WITH CHECK ADD CONSTRAINT [FK_OrganizationProjectBasedLearning_DataCollection] FOREIGN KEY([DataCollectionId]) -REFERENCES [dbo].[DataCollection] ([DataCollectionId]) -GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] CHECK CONSTRAINT [FK_OrganizationProjectBasedLearning_DataCollection] -GO -ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] WITH CHECK ADD CONSTRAINT [FK_OrganizationPersonRoleRelationship_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) -GO -ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] CHECK CONSTRAINT [FK_OrganizationPersonRoleRelationship_RecordStatus] -GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate key from Organization' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Activity', @level2type=N'COLUMN',@level2name=N'OrganizationId' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the events and procedures that take place under the purview of an organized activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Activity', @level2type=N'COLUMN',@level2name=N'ActivityDescription' @@ -39855,6 +42458,46 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information abo GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'AuthorizationDocument' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position or role the person performs on the board.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMemberPositionTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Board Member Position Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMemberPositionTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002104' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMemberPositionTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25004' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMemberPositionTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMemberPositionTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of membership for the board member.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMembershipTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Board Membership Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMembershipTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002105' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMembershipTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25007' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMembershipTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMembershipTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the board member''s term begins.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Board Member Term Start Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002102' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25006' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the board member''s term ends.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Board Member Term End Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002103' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25005' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermEndDate' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the space, as determined by its physical layout and built-in systems and equipment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BuildingSpace', @level2type=N'COLUMN',@level2name=N'SpaceDescription' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Facility Space Description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BuildingSpace', @level2type=N'COLUMN',@level2name=N'SpaceDescription' @@ -41361,10 +44004,30 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'RefCourseLevelTypeId' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Where a specific course lies when it is part of a consecutive sequence of courses. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'SequenceOfCourse' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Sequence of Course' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'SequenceOfCourse' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002023' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'SequenceOfCourse' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25085' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'SequenceOfCourse' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'SequenceOfCourse' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The organization of subject matter and related learning experiences provided for the instruction of students on a regular or systematic basis, usually for a predetermined period of time.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of permission for allocation of a course funding program''s funds for the support of a course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseFundingSource', @level2type=N'COLUMN',@level2name=N'RefCourseFundingProgramAllowedId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Course Funding Program Allowed' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseFundingSource', @level2type=N'COLUMN',@level2name=N'RefCourseFundingProgramAllowedId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002065' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseFundingSource', @level2type=N'COLUMN',@level2name=N'RefCourseFundingProgramAllowedId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25010' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseFundingSource', @level2type=N'COLUMN',@level2name=N'RefCourseFundingProgramAllowedId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseFundingSource', @level2type=N'COLUMN',@level2name=N'RefCourseFundingProgramAllowedId' +GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate key from Organization' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseSection', @level2type=N'COLUMN',@level2name=N'OrganizationId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Foreign key - Course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseSection', @level2type=N'COLUMN',@level2name=N'CourseId' @@ -41857,6 +44520,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'CredentialAward GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardEvidence' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of a credential award''s relationship to another credential award.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardRelationship', @level2type=N'COLUMN',@level2name=N'CredentialAwardRelationshipId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Credential Award Relationship' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardRelationship', @level2type=N'COLUMN',@level2name=N'CredentialAwardRelationshipId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002081' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardRelationship', @level2type=N'COLUMN',@level2name=N'CredentialAwardRelationshipId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25011' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardRelationship', @level2type=N'COLUMN',@level2name=N'CredentialAwardRelationshipId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardRelationship', @level2type=N'COLUMN',@level2name=N'CredentialAwardRelationshipId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' @@ -42085,6 +44758,26 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the cri GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefCriteria' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The lowest grade level when referring to grade levels as a range.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefLowGradeLevelId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Low Grade Level' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefLowGradeLevelId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002082' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefLowGradeLevelId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25045' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefLowGradeLevelId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefLowGradeLevelId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The highest grade level when referring to grade levels as a range.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefHighGradeLevelId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'High Grade Level' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefHighGradeLevelId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002083' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefHighGradeLevelId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25022' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefHighGradeLevelId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefHighGradeLevelId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A globally unique identifier by which the creator/owner/provider of a credential recognizes the achievement in transactions with the external environment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN',@level2name=N'Identifier' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Identifier' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN',@level2name=N'Identifier' @@ -45343,6 +48036,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Facility', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sum of the Building Area capable of being regulated and maintained within a specific temperature range for a designated purpose, employing heating, cooling, insulation, or climate control systems.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Facility', @level2type=N'COLUMN',@level2name=N'TemperatureControlledBuildingArea' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Temperature Controlled Building Area' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Facility', @level2type=N'COLUMN',@level2name=N'TemperatureControlledBuildingArea' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002024' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Facility', @level2type=N'COLUMN',@level2name=N'TemperatureControlledBuildingArea' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25090' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Facility', @level2type=N'COLUMN',@level2name=N'TemperatureControlledBuildingArea' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Facility', @level2type=N'COLUMN',@level2name=N'TemperatureControlledBuildingArea' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about a piece of land, a building site, a building, or part of a building owned by and/or used for activities of an organizational unit such as a school, school system, program, or institution. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Facility' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Facility' @@ -45925,6 +48628,26 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that an organization shares a facility or space within a facility with another organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'RefFacilityJointUseIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Facility Joint Use Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'RefFacilityJointUseIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002111' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'RefFacilityJointUseIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25017' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'RefFacilityJointUseIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'RefFacilityJointUseIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description explaining the details of an organization''s shared facility arrangement.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'FacilityJointUseDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Facility Joint Use Description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'FacilityJointUseDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002112' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'FacilityJointUseDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25016' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'FacilityJointUseDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'FacilityJointUseDescription' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'How a facility is used by parties aside from a primary tenant such as school district.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse' @@ -46617,6 +49340,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramSubgrantCodeId' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of Governmental Accounting Standards Board (GASB) revenues.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountGASBRevenueClassificationId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account GASB Revenue Classification' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountGASBRevenueClassificationId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002066' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountGASBRevenueClassificationId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25018' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountGASBRevenueClassificationId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountGASBRevenueClassificationId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Summary of financial transations that provides information to external financial statement users.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount' @@ -46691,6 +49424,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalObjectCodeId' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify Governmental Accounting Standards Board (GASB) revenues.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalGASBRevenueClassificationId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local GASB Revenue Classification' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalGASBRevenueClassificationId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002067' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalGASBRevenueClassificationId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25019' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalGASBRevenueClassificationId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalGASBRevenueClassificationId' +GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountProgram', @level2type=N'COLUMN',@level2name=N'FinancialAccountProgramId' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name given to the program area in an educational institution''s accounting system.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountProgram', @level2type=N'COLUMN',@level2name=N'Name' @@ -47463,6 +50206,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The details for GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Incident' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The activity taking place during the occurrence. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentActivity', @level2type=N'COLUMN',@level2name=N'RefIncidentActivityId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Incident Activity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentActivity', @level2type=N'COLUMN',@level2name=N'RefIncidentActivityId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002110' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentActivity', @level2type=N'COLUMN',@level2name=N'RefIncidentActivityId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25024' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentActivity', @level2type=N'COLUMN',@level2name=N'RefIncidentActivityId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentActivity', @level2type=N'COLUMN',@level2name=N'RefIncidentActivityId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Person''s identifier.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentPerson', @level2type=N'COLUMN',@level2name=N'Identifier' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Incident Perpetrator Identifier, Incident Victim Identifier, Incident Witness Identifier' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentPerson', @level2type=N'COLUMN',@level2name=N'Identifier' @@ -47699,6 +50452,56 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information on GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgram' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student was issued an accessible format according to their IEP or 504 Plan. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatIssuedIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Accessible Format Issued Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatIssuedIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002088' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatIssuedIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24997' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatIssuedIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatIssuedIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student requires an accessible format according to their IEP or 504 Plan.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatRequiredIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Accessible Format Required Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatRequiredIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002092' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatRequiredIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24998' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatRequiredIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatRequiredIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An alternative manner or form that gives an eligible person access to the work when the copy or phonorecord in the accessible format is used exclusively by the eligible person to permit him or her to have access as feasibly and comfortably as a person without such disability (20 U.S.C. § 121(d)(1)).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Accessible Format Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002089' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24999' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the student was issued any accessible format(s).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedBeginDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Accessible Format Issued Begin Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedBeginDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002090' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedBeginDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24995' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedBeginDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedBeginDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date for the issuance of accessible format(s) to the student.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Accessible Format Issued End Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002091' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24996' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedEndDate' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of a specific accommodation or change to standards or practices that will be made.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN',@level2name=N'Description' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Accommodation Description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN',@level2name=N'Description' @@ -48377,6 +51180,126 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information rel GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IPEDSFinance' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of organization that created the coding system for this element.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefCodingSystemOrganizationTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Coding System Organization Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefCodingSystemOrganizationTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002073' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefCodingSystemOrganizationTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25009' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefCodingSystemOrganizationTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefCodingSystemOrganizationTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A broad categorization of the job as it relates to education.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefEducationJobTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Education Job Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefEducationJobTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002074' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefEducationJobTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25015' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefEducationJobTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefEducationJobTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe and classify the job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobCategoryId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Local Job Category' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobCategoryId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002071' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobCategoryId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25043' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobCategoryId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobCategoryId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code indicating the broad business activity supported by the job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobFunctionId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Local Job Function' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobFunctionId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002072' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobFunctionId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25044' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobFunctionId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobFunctionId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code used to identify a job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'JobIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Identifier' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'JobIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002069' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'JobIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25027' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'JobIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'JobIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used by an organization for identification and record keeping purposes to refer to a job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Identification System' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002070' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25026' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date, determined by the organization, on which they anticipate the selected individual to commence their role within the organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionDetail', @level2type=N'COLUMN',@level2name=N'JobPositionExpectedStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Position Expected Start Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionDetail', @level2type=N'COLUMN',@level2name=N'JobPositionExpectedStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002077' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionDetail', @level2type=N'COLUMN',@level2name=N'JobPositionExpectedStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25028' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionDetail', @level2type=N'COLUMN',@level2name=N'JobPositionExpectedStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionDetail', @level2type=N'COLUMN',@level2name=N'JobPositionExpectedStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code used to identify a job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'JobPositionIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Position Identifier' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'JobPositionIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002075' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'JobPositionIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25030' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'JobPositionIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'JobPositionIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used by an organization for identification and record keeping purposes to refer to a job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobPositionIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Position Identification System' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobPositionIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002076' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobPositionIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25029' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobPositionIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobPositionIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason why the job position was given the job position status of cancelled.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusCancelledReasonId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Position Status Cancelled Reason' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusCancelledReasonId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002080' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusCancelledReasonId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25032' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusCancelledReasonId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusCancelledReasonId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A value defining the status of the job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Position Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002078' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25031' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The effective date of the job position status.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'JobPositionStatusDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Position Status Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'JobPositionStatusDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002079' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'JobPositionStatusDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25033' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'JobPositionStatusDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'JobPositionStatusDate' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agency that authorized the establishment or continuation of a charter school.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN',@level2name=N'K12CharterSchoolAuthorizerAgencyId' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Charter School Authorizer Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN',@level2name=N'K12CharterSchoolAuthorizerAgencyId' @@ -49060,6 +51983,26 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The grade level GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaGradeOffered' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates if a Local Education Agency (LEA) has provided an assurance that it is in compliance with the State law requiring that a student who brings a firearm to school, or possesses a firearm at school, be expelled for one year, except that such State law shall allow the chief administering officer of a local educational agency to modify such expulsion requirement for a student on a case-by-case basis if such modification is in writing.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAAssuranceofComplianceIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'LEA GFSA Assurance of Compliance Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAAssuranceofComplianceIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002096' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAAssuranceofComplianceIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25034' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAAssuranceofComplianceIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAAssuranceofComplianceIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates if a Local Education Agency has provided an assurance that it is in compliance with the requirement in Section 4141(h) that an LEA receiving ESEA funds have in place a policy requiring referral to the criminal justice or juvenile delinquency system of any student who brings a firearm to a school or possesses a firearm at school. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAPolicyAssuranceIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'LEA GFSA Policy Assurance Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAPolicyAssuranceIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002097' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAPolicyAssuranceIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25035' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAPolicyAssuranceIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAPolicyAssuranceIndicatorId' +GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN',@level2name=N'K12LEAPreKEligibilityId' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The groups of students for whom pre-kindergarten programs are available.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN',@level2name=N'RefPrekindergartenEligibilityId' @@ -50556,6 +53499,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of projected diploma/credential a person would be awarded in recognition of his/her completion of the curricular requirements.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN',@level2name=N'RefProjectedHighSchoolDiplomaTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Projected High School Diploma Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN',@level2name=N'RefProjectedHighSchoolDiplomaTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002026' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN',@level2name=N'RefProjectedHighSchoolDiplomaTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25077' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN',@level2name=N'RefProjectedHighSchoolDiplomaTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN',@level2name=N'RefProjectedHighSchoolDiplomaTypeId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The summary level academic record for a K12 student including graduation information.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentAcademicRecord' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentAcademicRecord' @@ -51150,6 +54103,26 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The detail info GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDiscipline' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the status of this student as dropout.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropout', @level2type=N'COLUMN',@level2name=N'RefStudentDropoutStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Student Dropout Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropout', @level2type=N'COLUMN',@level2name=N'RefStudentDropoutStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002068' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropout', @level2type=N'COLUMN',@level2name=N'RefStudentDropoutStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25088' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropout', @level2type=N'COLUMN',@level2name=N'RefStudentDropoutStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropout', @level2type=N'COLUMN',@level2name=N'RefStudentDropoutStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason or reasons the student dropped out of school.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropoutReason', @level2type=N'COLUMN',@level2name=N'RefDropoutReasonTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Dropout Reason Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropoutReason', @level2type=N'COLUMN',@level2name=N'RefDropoutReasonTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002113' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropoutReason', @level2type=N'COLUMN',@level2name=N'RefDropoutReasonTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25014' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropoutReason', @level2type=N'COLUMN',@level2name=N'RefDropoutReasonTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropoutReason', @level2type=N'COLUMN',@level2name=N'RefDropoutReasonTypeId' +GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key - Foreign key: OrganizationPersonRole' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEmployment', @level2type=N'COLUMN',@level2name=N'OrganizationPersonRoleId' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The North American Industry Classification System (NAICS) code associated with an individual''s employment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEmployment', @level2type=N'COLUMN',@level2name=N'EmploymentNaicsCode' @@ -51350,6 +54323,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @leve GO EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEnrollment', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An adjustment of the last known circumstances under which the student exited from membership in an educational institution.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEnrollment', @level2type=N'COLUMN',@level2name=N'RefAdjustedExitOrWithdrawalTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Adjusted Exit or Withdrawal Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEnrollment', @level2type=N'COLUMN',@level2name=N'RefAdjustedExitOrWithdrawalTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002017' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEnrollment', @level2type=N'COLUMN',@level2name=N'RefAdjustedExitOrWithdrawalTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25000' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEnrollment', @level2type=N'COLUMN',@level2name=N'RefAdjustedExitOrWithdrawalTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEnrollment', @level2type=N'COLUMN',@level2name=N'RefAdjustedExitOrWithdrawalTypeId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about a student enrollment that is unique to the K12 context.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEnrollment' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEnrollment' @@ -52386,6 +55369,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResource', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the related learning resource meets requirements to be considered high quality instructional material as defined by the organization assigning the indicator.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResource', @level2type=N'COLUMN',@level2name=N'RefHighQualityInstructionalMaterialIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'High Quality Instructional Material Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResource', @level2type=N'COLUMN',@level2name=N'RefHighQualityInstructionalMaterialIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002032' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResource', @level2type=N'COLUMN',@level2name=N'RefHighQualityInstructionalMaterialIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25023' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResource', @level2type=N'COLUMN',@level2name=N'RefHighQualityInstructionalMaterialIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResource', @level2type=N'COLUMN',@level2name=N'RefHighQualityInstructionalMaterialIndicatorId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A persistent resource that has one or more physical or digital representations, and that explicitly involves, specifies or entails a learning activity or learning experience.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResource' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResource' @@ -52466,6 +55459,36 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Links a learnin GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceEducationLevel' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to a learning resource by an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'LearningResourceIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Identifier' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'LearningResourceIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002027' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'LearningResourceIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25037' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'LearningResourceIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'LearningResourceIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used for identification and record-keeping purposes to refer to a learning resource.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'RefLearningResourceIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Identification System' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'RefLearningResourceIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002028' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'RefLearningResourceIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25036' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'RefLearningResourceIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'RefLearningResourceIdentificationSystemId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the learning resource was issued to the student.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIssued', @level2type=N'COLUMN',@level2name=N'LearningResourceIssuedDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Issued Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIssued', @level2type=N'COLUMN',@level2name=N'LearningResourceIssuedDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002093' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIssued', @level2type=N'COLUMN',@level2name=N'LearningResourceIssuedDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25038' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIssued', @level2type=N'COLUMN',@level2name=N'LearningResourceIssuedDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIssued', @level2type=N'COLUMN',@level2name=N'LearningResourceIssuedDate' +GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN',@level2name=N'LearningResourceMediaFeatureId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Foreign key to LearningResource' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN',@level2name=N'LearningResourceId' @@ -52504,6 +55527,26 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Links a learnin GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceMediaFeature' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the learning resource was ordered for the student.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceOrderedDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Ordered Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceOrderedDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002095' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceOrderedDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25039' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceOrderedDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceOrderedDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the learning resource was received by the organization that placed the order. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceReceivedDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Received Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceReceivedDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002094' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceReceivedDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25040' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceReceivedDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceReceivedDate' +GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN',@level2name=N'LearningResourcePeerRatingId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Foreign key - LearningResource' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN',@level2name=N'LearningResourceId' @@ -52594,6 +55637,46 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information abo GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourcePhysicalMedia' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the Learning Resource as of the status start date.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'RefLearningResourceStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'RefLearningResourceStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002031' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'RefLearningResourceStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25041' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'RefLearningResourceStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'RefLearningResourceStatusId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of a specific related learning resource for each distinct learning resource status.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'LearningResourceStatusQuantity' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Status Quantity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'LearningResourceStatusQuantity' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002033' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'LearningResourceStatusQuantity' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25042' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'LearningResourceStatusQuantity' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'LearningResourceStatusQuantity' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The last year, month, day, and optionally time when a status applied.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Status End Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001228' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24193' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, day and optionally time, that a status became applicable.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Status Start Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001227' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24192' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusStartDate' +GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Location', @level2type=N'COLUMN',@level2name=N'LocationId' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Location', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' @@ -53354,6 +56437,46 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'RefAcademicTermDesignatorId' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of instructional minutes in the day in which the school is normally in session.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'InstructionalMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Instructional Minutes Per Day' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'InstructionalMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002099' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'InstructionalMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25025' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'InstructionalMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'InstructionalMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of lunch minutes in the day in which the school is normally in session.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'LunchMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Lunch Minutes Per Day' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'LunchMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002100' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'LunchMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25046' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'LunchMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'LunchMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of recess minutes in the day in which the school is normally in session.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'RecessMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Recess Minutes Per Day' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'RecessMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002101' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'RecessMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25078' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'RecessMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'RecessMinutesPerDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position of this session in a sequence of sessions.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'SessionSequenceNumber' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Session Sequence Number' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'SessionSequenceNumber' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002021' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'SessionSequenceNumber' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25086' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'SessionSequenceNumber' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'SessionSequenceNumber' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'OrganizationCalendarSession provides the beginning and end date of the period of time, such as a term or semester. It has multiple uses. For example, it may be flagged as an "attendance term" with a value for DaysInSession, or the specific days applicable for attendance may be derived using OrganizationCalendarEvent. Early learning use cases use this entity to specify instructional session start and end times within the context of a day.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession' @@ -53578,6 +56701,26 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'AdjustedCapacity' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001917' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20898' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN',@level2name=N'OrganizationFederalAccountabilityId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate key from Organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN',@level2name=N'OrganizationId' @@ -53910,6 +57053,26 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intersectio GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancial' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001917' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20898' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationIdentifier', @level2type=N'COLUMN',@level2name=N'OrganizationIdentifierId' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to an organization by a school, school system, a state, or other agency or entity.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationIdentifier', @level2type=N'COLUMN',@level2name=N'Identifier' @@ -54034,6 +57197,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Describes any s GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationIndicator' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total area, measured in square miles, over which an organization holds administrative or governing authority, including regions under its regulatory, operational, or legal control. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJurisdiction', @level2type=N'COLUMN',@level2name=N'OrganizationJurisdictionSquareMiles' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Organization Jurisdiction Square Miles' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJurisdiction', @level2type=N'COLUMN',@level2name=N'OrganizationJurisdictionSquareMiles' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002063' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJurisdiction', @level2type=N'COLUMN',@level2name=N'OrganizationJurisdictionSquareMiles' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25074' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJurisdiction', @level2type=N'COLUMN',@level2name=N'OrganizationJurisdictionSquareMiles' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJurisdiction', @level2type=N'COLUMN',@level2name=N'OrganizationJurisdictionSquareMiles' +GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationLocation', @level2type=N'COLUMN',@level2name=N'OrganizationLocationId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Foreign key - Organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationLocation', @level2type=N'COLUMN',@level2name=N'OrganizationId' @@ -54274,6 +57447,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPolicy', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the program has a written policy addressing diversity, equity and inclusion (DEI).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPolicy', @level2type=N'COLUMN',@level2name=N'RefDEIPolicyIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Diversity Equity Inclusion Policy Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPolicy', @level2type=N'COLUMN',@level2name=N'RefDEIPolicyIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002016' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPolicy', @level2type=N'COLUMN',@level2name=N'RefDEIPolicyIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25013' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPolicy', @level2type=N'COLUMN',@level2name=N'RefDEIPolicyIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPolicy', @level2type=N'COLUMN',@level2name=N'RefDEIPolicyIndicatorId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Organizational policies. Examples would include Immunization Policy, Referral Policy, Language Translation Policy, Employee Policy.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPolicy' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPolicy' @@ -54414,6 +57597,26 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'ProjectBasedLearningIndicator' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001917' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20898' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationRelationship', @level2type=N'COLUMN',@level2name=N'OrganizationRelationshipId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Foreign key - Organization' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationRelationship', @level2type=N'COLUMN',@level2name=N'Parent_OrganizationId' @@ -54452,6 +57655,46 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationshi GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationRelationship' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A name given to a specific criterion used to determine a salary provided or offered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionName' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Salary Schedule Criterion Name' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionName' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002106' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionName' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25082' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionName' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionName' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description given to a specific criterion used to determine a salary provided or offered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Salary Schedule Criterion Description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002107' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25081' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique value or code assigned to a salary schedule criterion used to differentiate between the achievable levels of the criterion.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValue', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionValue' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Salary Schedule Criterion Value' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValue', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionValue' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002108' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValue', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionValue' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25083' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValue', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionValue' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValue', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionValue' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The salary or wage determined by the salary schedule criteria.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleSalary', @level2type=N'COLUMN',@level2name=N'SalaryScheduleSalaryValue' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Salary Schedule Salary Value' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleSalary', @level2type=N'COLUMN',@level2name=N'SalaryScheduleSalaryValue' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002109' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleSalary', @level2type=N'COLUMN',@level2name=N'SalaryScheduleSalaryValue' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25084' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleSalary', @level2type=N'COLUMN',@level2name=N'SalaryScheduleSalaryValue' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleSalary', @level2type=N'COLUMN',@level2name=N'SalaryScheduleSalaryValue' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of related or ancillary services provided to a person or a group of persons within the formal educational system or offered by an outside agency which provides non-instructional services to support the general welfare of students. This includes physical and emotional health, the ability to select an appropriate course of study, admission to appropriate educational programs, and the ability to adjust to and remain in school through the completion of programs. In serving a student with an identified disability, related services include developmental, corrective, or supportive services required to ensure that the person benefits from special education.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationService', @level2type=N'COLUMN',@level2name=N'RefStudentSupportServiceTypeId' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationService', @level2type=N'COLUMN',@level2name=N'RefStudentSupportServiceTypeId' @@ -56027,6 +59270,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonFamily', @level2type=N'COLUMN',@level2name=N'NumberOfHouseholdCollegeStudents' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The child''s parent or guardian is a teen parent between ages 10 to 19 years.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonFamily', @level2type=N'COLUMN',@level2name=N'RefTeenParentIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Teen Parent Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonFamily', @level2type=N'COLUMN',@level2name=N'RefTeenParentIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002062' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonFamily', @level2type=N'COLUMN',@level2name=N'RefTeenParentIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25089' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonFamily', @level2type=N'COLUMN',@level2name=N'RefTeenParentIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonFamily', @level2type=N'COLUMN',@level2name=N'RefTeenParentIndicatorId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The attributes of a person''s family.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonFamily' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonFamily' @@ -56513,15 +59766,15 @@ EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_D GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate key from Person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'PersonId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is currently serving on Active Duty, in the National Guard, or in the Reserve components of the United States military services' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryActiveStudentIndicatorId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is currently serving on Active Duty, in the National Guard, or in the Reserve components of the United States military services' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefActiveMilitaryStatusIndicatorId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Active Student Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryActiveStudentIndicatorId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Active Student Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefActiveMilitaryStatusIndicatorId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001577' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryActiveStudentIndicatorId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001577' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefActiveMilitaryStatusIndicatorId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20556' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryActiveStudentIndicatorId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20556' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefActiveMilitaryStatusIndicatorId' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryActiveStudentIndicatorId' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefActiveMilitaryStatusIndicatorId' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student’s parent or guardian is on Active Duty, in the National Guard, or in the Reserve components of the United States military services' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryConnectedStudentIndicatorId' GO @@ -56533,15 +59786,15 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryConnectedStudentIndicatorId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is a veteran who served on Active Duty, in the National Guard, or in the Reserve components of the United States military services' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryVeteranStudentIndicatorId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is a veteran who served on Active Duty, in the National Guard, or in the Reserve components of the United States military services' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryVeteranStatusIndicatorId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Veteran Student Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryVeteranStudentIndicatorId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Veteran Student Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryVeteranStatusIndicatorId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001578' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryVeteranStudentIndicatorId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001578' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryVeteranStatusIndicatorId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20557' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryVeteranStudentIndicatorId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20557' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryVeteranStatusIndicatorId' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryVeteranStudentIndicatorId' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryVeteranStatusIndicatorId' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A branch of the U.S. Military applicable for specifying more details when using Military Connected Student Indicator, Military Active Student Indicator, Military Veteran Student Indicator, and Military Enlistment After Exit elements.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryBranchId' GO @@ -56571,10 +59824,250 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of a specific related learning resource for each distinct learning resource status.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryServiceNumber' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Status Quantity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryServiceNumber' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002033' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryServiceNumber' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25042' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryServiceNumber' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryServiceNumber' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date when a person was inducted into active military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Induction Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002039' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25065' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date when a person was released from further military obligations.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Discharge Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002040' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25059' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date a person was released from active military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryReleaseDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Release Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryReleaseDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002041' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryReleaseDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25068' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryReleaseDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryReleaseDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A kind of discharge a person received from military services.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryDischargeCategoryId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Discharge Category' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryDischargeCategoryId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002044' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryDischargeCategoryId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25058' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryDischargeCategoryId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryDischargeCategoryId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A rank at the time a person started their military experience.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Induction Rank' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002045' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25066' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionRank' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A rank at time a person was discharged from military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Discharge Rank' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002046' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25060' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeRank' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The highest rank achieved by a person in military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryHighestRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Highest Rank' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryHighestRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002047' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryHighestRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25063' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryHighestRank' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryHighestRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The rank a person currently holds as part of active service. Do not use this indicator if the person is no longer holding this rank.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryCurrentRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Current Rank' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryCurrentRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002048' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryCurrentRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25049' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryCurrentRank' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryCurrentRank' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s current membership status in the United States National Guard. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefNationalGuardIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'National Guard Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefNationalGuardIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002057' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefNationalGuardIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25072' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefNationalGuardIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefNationalGuardIndicatorId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about a person''s connections to the military.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A military campaign in which the person has been involved during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryCampaigns', @level2type=N'COLUMN',@level2name=N'RefMilitaryCampaignsId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Campaigns' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryCampaigns', @level2type=N'COLUMN',@level2name=N'RefMilitaryCampaignsId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002050' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryCampaigns', @level2type=N'COLUMN',@level2name=N'RefMilitaryCampaignsId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25047' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryCampaigns', @level2type=N'COLUMN',@level2name=N'RefMilitaryCampaignsId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryCampaigns', @level2type=N'COLUMN',@level2name=N'RefMilitaryCampaignsId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Deployment status code issued to military personnel by the U.S. military.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'RefMilitaryDeploymentStatusCodeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment Status Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'RefMilitaryDeploymentStatusCodeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002051' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'RefMilitaryDeploymentStatusCodeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25057' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'RefMilitaryDeploymentStatusCodeId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'RefMilitaryDeploymentStatusCodeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The codes of any activities performed by the person while deployed in the military.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityCode' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment Activity Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityCode' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002055' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityCode' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25050' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityCode' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityCode' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The names of any activities performed by the person while deployed in the military.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityName' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment Activity Name' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityName' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002056' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityName' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25051' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityName' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityName' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A textual description of the person''s military deployment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment Description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002052' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25052' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A textual description of the person''s military deployment order.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentOrderDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment Order Description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentOrderDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002053' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentOrderDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25054' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentOrderDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentOrderDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A textual description of an entity that requested the person''s military deployment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentRequestedBy' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment Requested By' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentRequestedBy' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002054' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentRequestedBy' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25055' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentRequestedBy' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentRequestedBy' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date when a person''s military deployment started.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment Start Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002042' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25056' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentStartDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date when a person''s military deployment ended.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment End Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002043' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25053' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentEndDate' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the duties encompassed within a period of military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDuties', @level2type=N'COLUMN',@level2name=N'RefMilitaryDutiesId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Duties' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDuties', @level2type=N'COLUMN',@level2name=N'RefMilitaryDutiesId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002037' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDuties', @level2type=N'COLUMN',@level2name=N'RefMilitaryDutiesId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25061' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDuties', @level2type=N'COLUMN',@level2name=N'RefMilitaryDutiesId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDuties', @level2type=N'COLUMN',@level2name=N'RefMilitaryDutiesId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A list of expertise that the person developed during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryExpertise', @level2type=N'COLUMN',@level2name=N'RefMilitaryExpertiseId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Expertise' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryExpertise', @level2type=N'COLUMN',@level2name=N'RefMilitaryExpertiseId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002036' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryExpertise', @level2type=N'COLUMN',@level2name=N'RefMilitaryExpertiseId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25062' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryExpertise', @level2type=N'COLUMN',@level2name=N'RefMilitaryExpertiseId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryExpertise', @level2type=N'COLUMN',@level2name=N'RefMilitaryExpertiseId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A military honor that the person received during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryHonors', @level2type=N'COLUMN',@level2name=N'MilitaryHonors' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Honors' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryHonors', @level2type=N'COLUMN',@level2name=N'MilitaryHonors' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002049' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryHonors', @level2type=N'COLUMN',@level2name=N'MilitaryHonors' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25064' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryHonors', @level2type=N'COLUMN',@level2name=N'MilitaryHonors' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryHonors', @level2type=N'COLUMN',@level2name=N'MilitaryHonors' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A military occupational specialty of a person. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryOccupationalSpecialties', @level2type=N'COLUMN',@level2name=N'MilitaryOccupationalSpecialties' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Occupational Specialties ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryOccupationalSpecialties', @level2type=N'COLUMN',@level2name=N'MilitaryOccupationalSpecialties' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002035' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryOccupationalSpecialties', @level2type=N'COLUMN',@level2name=N'MilitaryOccupationalSpecialties' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25067' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryOccupationalSpecialties', @level2type=N'COLUMN',@level2name=N'MilitaryOccupationalSpecialties' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryOccupationalSpecialties', @level2type=N'COLUMN',@level2name=N'MilitaryOccupationalSpecialties' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the duty stations (locations) encompassed within a period of military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryServiceLocations', @level2type=N'COLUMN',@level2name=N'MilitaryServiceLocations' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Service Locations' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryServiceLocations', @level2type=N'COLUMN',@level2name=N'MilitaryServiceLocations' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002038' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryServiceLocations', @level2type=N'COLUMN',@level2name=N'MilitaryServiceLocations' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25069' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryServiceLocations', @level2type=N'COLUMN',@level2name=N'MilitaryServiceLocations' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryServiceLocations', @level2type=N'COLUMN',@level2name=N'MilitaryServiceLocations' +GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonOtherName', @level2type=N'COLUMN',@level2name=N'PersonOtherNameId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Foreign key - Person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonOtherName', @level2type=N'COLUMN',@level2name=N'PersonId' @@ -57075,6 +60568,36 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Telephone numbe GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTelephone' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The transportation status of the person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStatusTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Transportation Status Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStatusTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002019' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStatusTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25093' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStatusTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStatusTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The qualification status for the transportation of a person that entitles an organization to receive state transportation aid.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStateAidQualificationTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Transportation State Aid Qualification Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStateAidQualificationTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002020' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStateAidQualificationTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25092' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStateAidQualificationTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStateAidQualificationTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of eligibility for transporting a person at public expense.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationPublicExpenseEligibilityTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Transportation Public Expense Eligibility Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationPublicExpenseEligibilityTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002018' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationPublicExpenseEligibilityTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25091' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationPublicExpenseEligibilityTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationPublicExpenseEligibilityTypeId' +GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN',@level2name=N'ProfessionalDevelopmentActivityId' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Foreign key - ProfessionaDevelopmentRequirement.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN',@level2name=N'ProfessionalDevelopmentRequirementId' @@ -57917,6 +61440,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationCte', @level2type=N'COLUMN',@level2name=N'OutOfWorkforceIndicator' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the post-program status of a CTE Concentrator in the second quarter after exiting from secondary education.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationCte', @level2type=N'COLUMN',@level2name=N'RefPerkinsPostProgramPlacementIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Perkins Post-Program Placement Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationCte', @level2type=N'COLUMN',@level2name=N'RefPerkinsPostProgramPlacementIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002087' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationCte', @level2type=N'COLUMN',@level2name=N'RefPerkinsPostProgramPlacementIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25076' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationCte', @level2type=N'COLUMN',@level2name=N'RefPerkinsPostProgramPlacementIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationCte', @level2type=N'COLUMN',@level2name=N'RefPerkinsPostProgramPlacementIndicatorId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information on a person participating in a career and technical education program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationCte' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationCte' @@ -58095,13 +61628,13 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information on GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationMigrant' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedOrDelinquentProgramTypeId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Neglected or Delinquent Program Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Neglected or Delinquent Program Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedOrDelinquentProgramTypeId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000194' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000194' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedOrDelinquentProgramTypeId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=19194' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=19194' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedOrDelinquentProgramTypeId' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student was served by Title I, Part D, Subpart 1 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'AchievementIndicator' GO @@ -58145,6 +61678,26 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of delinquent programs under Title I, Part D, Subpart 1 (State Agency) of ESEA as amended or under Title I, Part D, Subpart 2 (LEA) of ESEA, as amended.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefDelinquentProgramTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Delinquent Program Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefDelinquentProgramTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002085' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefDelinquentProgramTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25012' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefDelinquentProgramTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefDelinquentProgramTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of neglected programs under Title I, Part D, Subpart 1 (State Agency) of ESEA as amended.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Neglected Program Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002084' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25073' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information on a person participating in a neglected or delinquent student education program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected' @@ -58227,6 +61780,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @leve GO EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the status of a person within one year of leaving secondary school and who had an individualized education program in effect at the time they left secondary school.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN',@level2name=N'RefPartBPostsecondaryOutcomesIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Part B Postsecondary Outcomes Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN',@level2name=N'RefPartBPostsecondaryOutcomesIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002086' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN',@level2name=N'RefPartBPostsecondaryOutcomesIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25075' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN',@level2name=N'RefPartBPostsecondaryOutcomesIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN',@level2name=N'RefPartBPostsecondaryOutcomesIndicatorId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information on a person participating in a special education program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationSpecialEducation' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationSpecialEducation' @@ -58701,6 +62264,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PsInstitution', @level2type=N'COLUMN',@level2name=N'RefIncreasedLearningTimeTypeId' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of a postsecondary institution''s most prevalent level.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PsInstitution', @level2type=N'COLUMN',@level2name=N'RefMostPrevalentLevelOfInstitutionId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Most Prevalent Level of Institution' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PsInstitution', @level2type=N'COLUMN',@level2name=N'RefMostPrevalentLevelOfInstitutionId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002025' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PsInstitution', @level2type=N'COLUMN',@level2name=N'RefMostPrevalentLevelOfInstitutionId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25071' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PsInstitution', @level2type=N'COLUMN',@level2name=N'RefMostPrevalentLevelOfInstitutionId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PsInstitution', @level2type=N'COLUMN',@level2name=N'RefMostPrevalentLevelOfInstitutionId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An organization that provides educational programs for individuals who have completed or otherwise left educational programs in secondary school(s).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PsInstitution' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PsInstitution' @@ -60965,6 +64538,32 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAccreditationAgency' GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActiveMilitaryStatusIndicator', @level2type=N'COLUMN',@level2name=N'RefActiveMilitaryStatusIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActiveMilitaryStatusIndicator', @level2type=N'COLUMN',@level2name=N'Description' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActiveMilitaryStatusIndicator', @level2type=N'COLUMN',@level2name=N'Description' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActiveMilitaryStatusIndicator', @level2type=N'COLUMN',@level2name=N'Code' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActiveMilitaryStatusIndicator', @level2type=N'COLUMN',@level2name=N'Code' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActiveMilitaryStatusIndicator', @level2type=N'COLUMN',@level2name=N'Definition' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate key from Organization identifying the publisher of the reference value.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActiveMilitaryStatusIndicator', @level2type=N'COLUMN',@level2name=N'RefJurisdictionId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActiveMilitaryStatusIndicator', @level2type=N'COLUMN',@level2name=N'SortOrder' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is currently serving on Active Duty, in the National Guard, or in the Reserve components of the United States military services' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActiveMilitaryStatusIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Active Student Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActiveMilitaryStatusIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001577' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActiveMilitaryStatusIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20556' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActiveMilitaryStatusIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActiveMilitaryStatusIndicator' +GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActivityRecognitionType', @level2type=N'COLUMN',@level2name=N'RefActivityRecognitionTypeId' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefActivityRecognitionType', @level2type=N'COLUMN',@level2name=N'Description' @@ -73413,32 +77012,6 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMethodOfServiceDelivery' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryActiveStudentIndicator', @level2type=N'COLUMN',@level2name=N'RefMilitaryActiveStudentIndicatorId' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryActiveStudentIndicator', @level2type=N'COLUMN',@level2name=N'Description' -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryActiveStudentIndicator', @level2type=N'COLUMN',@level2name=N'Description' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryActiveStudentIndicator', @level2type=N'COLUMN',@level2name=N'Code' -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryActiveStudentIndicator', @level2type=N'COLUMN',@level2name=N'Code' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryActiveStudentIndicator', @level2type=N'COLUMN',@level2name=N'Definition' -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate key from Organization identifying the publisher of the reference value.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryActiveStudentIndicator', @level2type=N'COLUMN',@level2name=N'RefJurisdictionId' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryActiveStudentIndicator', @level2type=N'COLUMN',@level2name=N'SortOrder' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is currently serving on Active Duty, in the National Guard, or in the Reserve components of the United States military services' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryActiveStudentIndicator' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Active Student Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryActiveStudentIndicator' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001577' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryActiveStudentIndicator' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20556' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryActiveStudentIndicator' -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryActiveStudentIndicator' -GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryBranch', @level2type=N'COLUMN',@level2name=N'RefMilitaryBranchId' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryBranch', @level2type=N'COLUMN',@level2name=N'Description' @@ -73491,31 +77064,31 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryConnectedStudentIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=N'COLUMN',@level2name=N'RefMilitaryVeteranStudentIndicatorId' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStatusIndicator', @level2type=N'COLUMN',@level2name=N'RefMilitaryVeteranStatusIndicatorId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=N'COLUMN',@level2name=N'Description' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStatusIndicator', @level2type=N'COLUMN',@level2name=N'Description' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=N'COLUMN',@level2name=N'Description' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStatusIndicator', @level2type=N'COLUMN',@level2name=N'Description' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=N'COLUMN',@level2name=N'Code' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStatusIndicator', @level2type=N'COLUMN',@level2name=N'Code' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=N'COLUMN',@level2name=N'Code' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStatusIndicator', @level2type=N'COLUMN',@level2name=N'Code' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=N'COLUMN',@level2name=N'Definition' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStatusIndicator', @level2type=N'COLUMN',@level2name=N'Definition' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate key from Organization identifying the publisher of the reference value.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=N'COLUMN',@level2name=N'RefJurisdictionId' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate key from Organization identifying the publisher of the reference value.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStatusIndicator', @level2type=N'COLUMN',@level2name=N'RefJurisdictionId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=N'COLUMN',@level2name=N'SortOrder' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStatusIndicator', @level2type=N'COLUMN',@level2name=N'SortOrder' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is a veteran who served on Active Duty, in the National Guard, or in the Reserve components of the United States military services' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStudentIndicator' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is a veteran who served on Active Duty, in the National Guard, or in the Reserve components of the United States military services' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStatusIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Veteran Student Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStudentIndicator' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Veteran Student Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStatusIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001578' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStudentIndicator' +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001578' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStatusIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20557' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStudentIndicator' +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20557' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStatusIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStudentIndicator' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryVeteranStatusIndicator' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMultipleIntelligenceType', @level2type=N'COLUMN',@level2name=N'RefMultipleIntelligenceTypeId' GO @@ -73679,31 +77252,31 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeedDeterminationMethod' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedOrDelinquentProgramType', @level2type=N'COLUMN',@level2name=N'RefNeglectedOrDelinquentProgramTypeId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType', @level2type=N'COLUMN',@level2name=N'Description' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedOrDelinquentProgramType', @level2type=N'COLUMN',@level2name=N'Description' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType', @level2type=N'COLUMN',@level2name=N'Description' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedOrDelinquentProgramType', @level2type=N'COLUMN',@level2name=N'Description' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType', @level2type=N'COLUMN',@level2name=N'Code' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedOrDelinquentProgramType', @level2type=N'COLUMN',@level2name=N'Code' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType', @level2type=N'COLUMN',@level2name=N'Code' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedOrDelinquentProgramType', @level2type=N'COLUMN',@level2name=N'Code' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType', @level2type=N'COLUMN',@level2name=N'Definition' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedOrDelinquentProgramType', @level2type=N'COLUMN',@level2name=N'Definition' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate key from Organization identifying the publisher of the reference value.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType', @level2type=N'COLUMN',@level2name=N'RefJurisdictionId' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate key from Organization identifying the publisher of the reference value.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedOrDelinquentProgramType', @level2type=N'COLUMN',@level2name=N'RefJurisdictionId' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType', @level2type=N'COLUMN',@level2name=N'SortOrder' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedOrDelinquentProgramType', @level2type=N'COLUMN',@level2name=N'SortOrder' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedOrDelinquentProgramType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Neglected or Delinquent Program Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Neglected or Delinquent Program Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedOrDelinquentProgramType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000194' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType' +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000194' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedOrDelinquentProgramType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=19194' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType' +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=19194' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedOrDelinquentProgramType' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedOrDelinquentProgramType' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Surrogate Key' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNonPromotionReason', @level2type=N'COLUMN',@level2name=N'RefNonPromotionReasonId' GO @@ -78328,6 +81901,16 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendance', @level2type=N'COLUMN',@level2name=N'NumberOfDaysTardy' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether a student was absent 10% or more school days during the school year with an absence being defined as a student not physically on school grounds and was not participating in instruction or instruction-related activities at an approved off-grounds location for at least half the school day.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendance', @level2type=N'COLUMN',@level2name=N'RefChronicStudentAbsenteeismIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Chronic Student Absenteeism Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendance', @level2type=N'COLUMN',@level2name=N'RefChronicStudentAbsenteeismIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002022' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendance', @level2type=N'COLUMN',@level2name=N'RefChronicStudentAbsenteeismIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25008' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendance', @level2type=N'COLUMN',@level2name=N'RefChronicStudentAbsenteeismIndicatorId' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendance', @level2type=N'COLUMN',@level2name=N'RefChronicStudentAbsenteeismIndicatorId' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Aggregated attendance counts.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendance' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendance' @@ -78436,6 +82019,36 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The duration of the attendance event captured as one whole day or a portion of a day.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Attendance Event Duration Day' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002098' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25001' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationDay' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationDay' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The duration of the attendance event in minutes.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationMinutes' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Attendance Event Duration Minutes' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationMinutes' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002014' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationMinutes' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25003' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationMinutes' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationMinutes' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The duration of the attendance event in hours.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationHours' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Attendance Event Duration Hours' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationHours' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002015' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationHours' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25002' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationHours' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationHours' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The attributes of a person''s attendance during a given day. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent' @@ -79080,6 +82693,36 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the annual supplement awarded to a staff member.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation', @level2type=N'COLUMN',@level2name=N'StaffCompensationAnnualSupplementDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Annual Supplement Description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation', @level2type=N'COLUMN',@level2name=N'StaffCompensationAnnualSupplementDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002064' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation', @level2type=N'COLUMN',@level2name=N'StaffCompensationAnnualSupplementDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25087' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation', @level2type=N'COLUMN',@level2name=N'StaffCompensationAnnualSupplementDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation', @level2type=N'COLUMN',@level2name=N'StaffCompensationAnnualSupplementDescription' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of financial support contributed by a specific funding or revenue stream.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourceAmount' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Funding Source Amount' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourceAmount' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002059' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourceAmount' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25020' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourceAmount' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourceAmount' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The proportion or percentage of financial support or resources contributed by a specific funding or revenue stream in relation to the total funding.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourcePercentage' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Funding Source Percentage' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourcePercentage' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002058' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourcePercentage' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25021' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourcePercentage' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourcePercentage' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the person has achieved acceptable performance on a standards-based profile of technology user skills as defined by the state.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCredential', @level2type=N'COLUMN',@level2name=N'TechnologySkillsStandardsMet' GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Technology Skills Standards Met' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCredential', @level2type=N'COLUMN',@level2name=N'TechnologySkillsStandardsMet' @@ -79470,6 +83113,26 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/ GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of years that a person has held this position or a similar position in one or more organizations.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfTotalExperience' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Years of Total Experience' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfTotalExperience' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002060' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfTotalExperience' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25095' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfTotalExperience' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfTotalExperience' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of years that an individual has previously held a similar professional position in one or more education institutions prior to the current school year.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfPriorProfessionalExperience' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Years of Prior Professional Experience' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfPriorProfessionalExperience' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002061' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfPriorProfessionalExperience' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25094' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfPriorProfessionalExperience' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfPriorProfessionalExperience' +GO EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Number of years of experience for a staff member.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience' @@ -79862,67 +83525,540 @@ EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information abo GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'WorkforceProgramParticipation' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A broad categorization of the job as it relates to education.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEducationJobType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A Bureau of Labor Statistics coding system for classifying occupations by work performed and, in some cases, on the skills, education and training needed to perform the work at a competent level. See https://www.bls.gov/soc/2018/major_groups.htm.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStandardOccupationalClassification' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001917' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of a postsecondary institution''s most prevalent level.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMostPrevalentLevelOfInstitution' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20898' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used by an organization for identification and record keeping purposes to refer to a job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobPositionIdentificationSystem' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used by an organization for identification and record keeping purposes to refer to a job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobIdentificationSystem' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used for identification and record-keeping purposes to refer to a learning resource.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLearningResourceIdentificationSystem' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the duties encompassed within a period of military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryDuties' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001917' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A historical status of records in the IDS.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RecordStatusHistory' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20898' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A kind of discharge a person received from military services.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryDischargeCategory' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A list of expertise that the person developed during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryExpertise' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code indicating the broad business activity supported by the job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLocalJobFunction' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify a fund which is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001917' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify Governmental Accounting Standards Board (GASB) revenues.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalGASBRevenueClassification' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20898' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify the segregation of expenditures by instructional level.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe and classify the job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLocalJobCategory' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe balance sheet accounts and statement of net position accounts which are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the activity for which a service or material object is acquired.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the service or commodity obtained as the result of a specific expenditure.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to record revenue and other receivables by source.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A military campaign in which the person has been involved during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryCampaigns' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s current membership status in the United States National Guard. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNationalGuardIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to a learning resource by an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code used to identify a job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code used to identify a job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A value defining the status of the job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobPositionStatus' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Aggregate information related to persons being served by an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPopulationServed' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An additional code appended to the Federal Program Code used to identify a subgrant of the grant identified by the Federal Program Code.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An adjustment of the last known circumstances under which the student exited from membership in an educational institution.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedExitOrWithdrawalType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An alternative manner or form that gives an eligible person access to the work when the copy or phonorecord in the accessible format is used exclusively by the eligible person to permit him or her to have access as feasibly and comfortably as a person without such disability (20 U.S.C. § 121(d)(1)).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAccessibleFormatType' GO -USE [master] +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An entity that represent any type of job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Job' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An entity that represents any type of job position. A job position represents an instance of a job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPosition' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of permission for allocation of a course funding program''s funds for the support of a course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefCourseFundingProgramAllowed' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the post-program status of a CTE Concentrator in the second quarter after exiting from secondary education.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefPerkinsPostProgramPlacementIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the status of a person within one year of leaving secondary school and who had an individualized education program in effect at the time they left secondary school.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefPartBPostsecondaryOutcomesIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the status of this student as dropout.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentDropoutStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an educator holds the certification or licensure required by their assignment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether special education teachers are fully certified in the State..' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the related learning resource meets requirements to be considered high quality instructional material as defined by the organization assigning the indicator.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefHighQualityInstructionalMaterialIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that an organization shares a facility or space within a facility with another organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFacilityJointUseIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student requires an accessible format according to their IEP or 504 Plan.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAccessibleFormatRequiredIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student was issued an accessible format according to their IEP or 504 Plan. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAccessibleFormatIssuedIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Criteria defined by an organization used to determine a salary schedule.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Deployment status code issued to military personnel by the U.S. military.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryDeploymentStatusCode' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the reason for adjusted capacity in a program. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates if a Local Education Agency (LEA) has provided an assurance that it is in compliance with the State law requiring that a student who brings a firearm to school, or possesses a firearm at school, be expelled for one year, except that such State law shall allow the chief administering officer of a local educational agency to modify such expulsion requirement for a student on a case-by-case basis if such modification is in writing.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLEAGFSAAssuranceofComplianceIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates if a Local Education Agency has provided an assurance that it is in compliance with the requirement in Section 4141(h) that an LEA receiving ESEA funds have in place a policy requiring referral to the criminal justice or juvenile delinquency system of any student who brings a firearm to a school or possesses a firearm at school. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLEAGFSAPolicyAssuranceIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether a student was absent 10% or more school days during the school year with an absence being defined as a student not physically on school grounds and was not participating in instruction or instruction-related activities at an approved off-grounds location for at least half the school day.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefChronicStudentAbsenteeismIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the program has a written policy addressing diversity, equity and inclusion (DEI).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefDEIPolicyIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about a job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about a specific cohort of workforce program participants.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'WorkforceProgramParticipantCohort' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about a student who has dropped out or potentially may have dropped out of a K12 school.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropout' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about accessible formats provided to students as part of an individualized program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about the activity or activies taking place during an incident.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentActivity' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about the capacity for an enrollment in an organization such as school, program, or course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about the job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionDetail' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about the reason or reasons related to a student dropping out of a K12 school.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropoutReason' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about the score and sections of a staff evaluation assessment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffEvaluationPart' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information captured on an English learner home language survey.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentHomeLanguageSurvey' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information defining the status of a job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to a military campaign in which the person has been involved during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryCampaigns' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to a military honor that the person received during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryHonors' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to a military occupational specialty of a person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryOccupationalSpecialties' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to a person applying for a specifing role in an organization (e.g., applying for college, applying to be enrolled in a program).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPersonRoleApplication' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to an organization ordering or purchasing a learning resource.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to barries to employment for a person who participated in programs through the Workforce Innovation and Opportunity Act (WIOA).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationWIOABarriers' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to digitial accessiblity for a person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDigitalAccess' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to duties encompassed within a period of military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDuties' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to employee benefits.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEmployeeBenefit' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to expertise that the person developed during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryExpertise' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to issuing a learning resource to a person for a period of time.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIssued' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to learning devices used by a person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonLearningDevice' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to military deployment for a person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to outcomes in a program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationAttainment' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to participation in workforce programs through the Workforce Innovation and Opportunity Act (WIOA).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationWIOA' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to persons as board members within an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to policies within a K12 location education agency.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to project bassed learning offered by an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the collection of data used to record this information.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DataCollection' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the compensation of staff members.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the duty stations (locations) encompassed within a period of military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryServiceLocations' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the eligibility of a person to be transported using public funds.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the jurisdiction of an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJurisdiction' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) based on the address latitude and longitude location.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonAddressNcesSide' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the speed of digital access for a person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDigitalAccessSpeed' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the type of personal information used (e.g., Birth Certificate) and for what purpose.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonPersonalInformationVerification' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Provides a listing of all elements in CEDS for this version along with an indication of the table and columns where data for this element would be stored.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'_CEDStoNDSMapping' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Provides a listing of all elements in CEDS for this version.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'_CEDSElements' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Summary of financial transations, using a coding system local to the organization, that provides information to external financial statement users.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The activity taking place during the occurrence. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefIncidentActivity' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The child''s parent or guardian is a teen parent between ages 10 to 19 years.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTeenParentIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of Governmental Accounting Standards Board (GASB) revenues.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountGASBRevenueClassification' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of participation by a school in the National School Lunch Program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNSLPStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The current status of a learning resource owned or leased by an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSCEDCourseCode' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The group of students to whom related or ancillary service is offered within the formal educational system or by an outside agency which provides non-instructional service to support the general welfare of students.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of a credential award''s relationship to another credential award.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefCredentialAwardRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The organization of early learning subject matter and related learning experiences provided for the instruction of children on a regular or systematic basis, usually for a predetermined period of time (e.g., a semester or two-week workshop) to an individual or group of children (e.g., a class or group). This further defines course at the domain level.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The organization responsible for creating the information related to a job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJob' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position or role the person performs on the board.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefBoardMemberPositionType' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The possible values associated with the criteria.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValue' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The qualification status for the transportation of a person that entitles an organization to receive state transportation aid.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTransportationStateAidQualificationType' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason or reasons the student dropped out of school.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefDropoutReasonType' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason why the job position was given the job position status of cancelled.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobPositionStatusCancelledReason' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between a credential and an applicable grade level or grade levels.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between a job and credential or credentials required for that job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobCredential' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between a job and staff assignment of a K12 staff member.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobK12StaffAssignment' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between a job and the competency or competencies required for that job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobCompetency' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between an employed staff member and the job position offered by an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffEmploymentJobPosition' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between course and the financial account that would be used to fund the course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseFundingSource' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between organization financial and local financial account.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between the salary schedule criteria value and the salary schedule salary value.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValueSalary' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between the staff compensation and the financial account used for the compensation.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between two calendar sessions, generally used with Session Sequence Number to order sessions.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSessionRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between two courses, generally used with Sequence of Course to order courses.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between two credential awards, genrally used to capture extentions to an award (e.g., An endorsement for a teaching license).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between two OrganizationPersonRole records.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPersonRoleRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The responsibility of an early learning organization to a student.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationStudentResponsibility' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The salary for the salary schedule and if relevant any occupation related classifications.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleSalary' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific grade or combination of grades approved by an organization to be offered by an education institution.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefGradeLevelsApproved' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of a record in the IDS.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RecordStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the Learning Resource as of the status start date.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLearningResourceStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The transportation status of the person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTransportationStatusType' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of delinquent programs under Title I, Part D, Subpart 1 (State Agency) of ESEA as amended or under Title I, Part D, Subpart 2 (LEA) of ESEA, as amended.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefDelinquentProgramType' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of eligibility for transporting a person at public expense.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTransportationPublicExpenseEligibilityType' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of membership for the board member.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefBoardMembershipType' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of neglected programs under Title I, Part D, Subpart 1 (State Agency) of ESEA as amended.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of organization that created the coding system for the financial account information.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of organization that created the coding system for this element.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefCodingSystemOrganizationType' GO -ALTER DATABASE [CEDS-IDS-V11_0_0_0] SET READ_WRITE +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of project-based instruction being offered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType' GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of projected diploma/credential a person would be awarded in recognition of his/her completion of the curricular requirements.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectedHighSchoolDiplomaType' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of assessments administered to English Learners.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique five-digit number assigned to each federal program as listed in the Assistance Listings. See https://sam.gov/content/assistance-listings' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramCode' +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The version of the IDS.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IDSVersion' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEducationJobType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStandardOccupationalClassification' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMostPrevalentLevelOfInstitution' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobPositionIdentificationSystem' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobIdentificationSystem' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLearningResourceIdentificationSystem' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryDuties' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RecordStatusHistory' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryDischargeCategory' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryExpertise' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLocalJobFunction' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalGASBRevenueClassification' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLocalJobCategory' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryCampaigns' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNationalGuardIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobPositionStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPopulationServed' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedExitOrWithdrawalType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAccessibleFormatType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Job' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPosition' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefCourseFundingProgramAllowed' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefPerkinsPostProgramPlacementIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefPartBPostsecondaryOutcomesIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentDropoutStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefHighQualityInstructionalMaterialIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFacilityJointUseIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAccessibleFormatRequiredIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAccessibleFormatIssuedIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryDeploymentStatusCode' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLEAGFSAAssuranceofComplianceIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLEAGFSAPolicyAssuranceIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefChronicStudentAbsenteeismIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefDEIPolicyIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'WorkforceProgramParticipantCohort' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropout' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentActivity' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionDetail' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropoutReason' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffEvaluationPart' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentHomeLanguageSurvey' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryCampaigns' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryHonors' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryOccupationalSpecialties' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPersonRoleApplication' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationWIOABarriers' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDigitalAccess' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDuties' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEmployeeBenefit' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryExpertise' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIssued' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonLearningDevice' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationAttainment' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationWIOA' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DataCollection' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryServiceLocations' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJurisdiction' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonAddressNcesSide' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDigitalAccessSpeed' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonPersonalInformationVerification' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'_CEDStoNDSMapping' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'_CEDSElements' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefIncidentActivity' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTeenParentIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountGASBRevenueClassification' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNSLPStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSCEDCourseCode' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefCredentialAwardRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJob' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefBoardMemberPositionType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValue' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTransportationStateAidQualificationType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefDropoutReasonType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobPositionStatusCancelledReason' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobCredential' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobK12StaffAssignment' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobCompetency' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffEmploymentJobPosition' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseFundingSource' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValueSalary' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSessionRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPersonRoleRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationStudentResponsibility' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleSalary' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefGradeLevelsApproved' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RecordStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLearningResourceStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTransportationStatusType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefDelinquentProgramType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTransportationPublicExpenseEligibilityType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefBoardMembershipType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefCodingSystemOrganizationType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectedHighSchoolDiplomaType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramCode' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IDSVersion' +GO + diff --git a/src/metadata/Populate-CEDS-Element-Tables.sql b/src/metadata/Populate-CEDS-Element-Tables.sql index 1b45d5d..142a3a2 100644 --- a/src/metadata/Populate-CEDS-Element-Tables.sql +++ b/src/metadata/Populate-CEDS-Element-Tables.sql @@ -1,6 +1,6 @@ /* - Copyright 2023 Common Education Data Standards + Copyright 2024 Common Education Data Standards Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -16,12 +16,12 @@ Common Education Data Standards (CEDS) - Version 11.0.0.0 + Version 12.0.0.0 Integration Data Store (IDS) Model database _CEDS table population script - This script populates the CEDS element and mapping tables in a IDS version 11.0.0.0 model database. + This script populates the CEDS element and mapping tables in a IDS version 12.0.0.0 model database. WARNING!!!! This script is intended for use on a model database and should not @@ -38,11 +38,10 @@ */ --- Uncomment next two lines to update a database named CEDS-IDS-V11_0_0_0 or specify appropriate database name for your server. ---USE [CEDS-IDS-V11_0_0_0]; +-- Uncomment next two lines to update a database named CEDS-IDS-V12_0_0_0 or specify appropriate database name for your server. +--USE [CEDS-IDS-V12_0_0_0]; --GO - PRINT N'Populate _CEDSElements table' GO @@ -52,3621 +51,3815 @@ IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[_CEDSElemen BEGIN DELETE FROM dbo.[_CEDSElements] INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000301', 'White', 'Race White', 'A person having origins in any of the original peoples of Europe, Middle East, or North Africa.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21659', '11', '21659', NULL, NULL) +VALUES ('000328', 'Ability Grouping Status', NULL, 'An indication of whether the school has students who are ability grouped for classroom instruction in mathematics or English/reading/language arts.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23000', '12', '23000', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000001', 'Academic Award Date', NULL, 'The year, month and day or year and month on which the academic award was conferred.', 'YYYY-MM-DD or YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23001', '12', '23001', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000002', 'Academic Award Level Conferred', NULL, 'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23002', '12', '23002', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000003', 'Academic Award Title', NULL, 'The descriptive title for the academic award.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23003', '12', '23003', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000004', 'Academic Honors Type', NULL, 'A designation of the type of academic distinctions earned by or awarded to the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23004', '12', '23004', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000005', 'Accountability Report Title', NULL, 'The title of the accountability report.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23005', '12', '23005', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000006', 'Activity Identifier', NULL, 'A unique number or alphanumeric code used in the local system to identify an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23006', '12', '23006', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000007', 'Activity Involvement Begin Date', NULL, 'The year, month and day on which the person began to participate in the activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23007', '12', '23007', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000008', 'Activity Involvement End Date', NULL, 'The year, month and day on which the person ceased to participate in the activity.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23008', '12', '23008', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000009', 'Activity Title', NULL, 'The title for a particular activity, such as a co-curricular or extra-curricular activity.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23009', '12', '23009', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000011', 'Adequate Yearly Progress Status', 'AYP Status', 'An indication of whether the state, district, or school met the Adequate Yearly Progress (AYP) requirements for the school year, as determined by the state-established criteria.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23011', '12', '23011', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000012', 'Administrative Funding Control', NULL, 'The type of education institution as classified by its funding source.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23012', '12', '23012', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000013', 'Course Aligned with Standards', NULL, 'An indication whether a course is aligned with the established standards of a curriculum framework.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23013', '12', '23013', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000014', 'Alternate Adequate Yearly Progress Approach Indicator', 'Alternate AYP Approach Indicator', 'An indication of whether the district or school used an approved alternate approach for calculating Adequate Yearly Progress (AYP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23014', '12', '23014', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000015', 'Alternative School Focus Type', NULL, 'An indication of the specific group of students whose needs the alternative school is designed to meet.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23015', '12', '23015', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000017', 'Advanced Placement Course Self Selection', 'AP Course Self Selection', 'An indication of whether enrollment via self-selection by the student is permitted for all Advanced Placement (AP) courses offered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23017', '12', '23017', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000018', 'Advanced Placement Credits Awarded', 'AP Credits Awarded', 'The number of credits awarded a student by the postsecondary institution based on successful completion of advanced placement courses and/or advanced placement tests. ', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23018', '12', '23018', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000019', 'Address Apartment Room or Suite Number', NULL, 'The apartment, room, or suite number of an address.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23019', '12', '23019', 'Updated', 'Add new DES location') +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000021', 'Assessment Academic Subject', NULL, 'The description of the academic content or subject area (e.g., arts, mathematics, reading, or a foreign language) being evaluated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23021', '12', '23021', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000024', 'Assessment Form Name', NULL, 'The name of a given assessment form.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23024', '12', '23024', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000025', 'Assessment Registration Participation Indicator', NULL, 'An indication of whether a student participated in an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23025', '12', '23025', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000026', 'Assessment Purpose', NULL, 'The reason for which an assessment is designed or delivered.', NULL, '1', 'This element might have multiple occurrences associated with any one assessment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23026', '12', '23026', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000027', 'Course Section Assessment Reporting Method', NULL, 'The method that the instructor of the course uses to report the performance and achievement of all students. It may be a qualitative method such as individualized teacher comments or a quantitative method such as a letter or a numerical grade. In some cases, more than one type of reporting method may be used.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23027', '12', '23027', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000028', 'Assessment Title', NULL, 'The title or name of the assessment.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23028', '12', '23028', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000029', 'Assessment Type', NULL, 'The category of an assessment based on format and content.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23029', '12', '23029', 'Updated', 'Add new option to option set') +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000030', 'Available Carnegie Unit Credit', NULL, 'Measured in Carnegie units, the amount of credit available to a student who successfully meets the objectives of the course. A course meeting every day for one period of the school day over the span of a school year offers one Carnegie unit. A Carnegie unit is thus a measure of "seat time" rather than a measure of attainment of the course objectives.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23030', '12', '23030', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000031', 'Awaiting Initial IDEA Evaluation Status', NULL, 'Awaiting initial evaluation for special education programs and related services under the Individuals with Disabilities Education Act (IDEA). ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23031', '12', '23031', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000728', 'Distance Education Course Enrollment', NULL, 'An individual''s enrollment in a course or courses in which the instructional content is delivered exclusively via distance education. Distance education is education that uses one or more technologies to deliver instruction to students who are separated from the instructor and to support regular and substantive interaction between the students and the instructor synchronously or asynchronously. Technologies used for instruction may include: Internet; one-way and two-way transmissions through open broadcasts, closed circuit, cable, microwave, broadband lines, fiber optics, satellite or wireless communication devices; audio conferencing; and video cassette, DVDs, and CD-ROMs, if the cassette, DVDs, and CD-ROMs are used in a course in conjunction with the technologies listed above.', NULL, '1', 'Element defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23704', '12', '23704', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000729', 'Predominant Calendar System', NULL, 'The method by which an institution structures most of its courses for the academic year.', NULL, '1', 'Definition and code set in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23705', '12', '23705', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000730', 'Standard Occupational Classification', NULL, 'A Bureau of Labor Statistics coding system for classifying occupations by work performed and, in some cases, on the skills, education and training needed to perform the work at a competent level. See https://www.bls.gov/soc/2018/major_groups.htm.', '##-####', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23707', '12', '23707', 'Updated', 'Add new DES location') +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000731', 'IPEDS Occupational Category', NULL, 'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report employees.', NULL, '1', 'IPEDS reporting categories beginning with the 2012 IPEDS survey year.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23708', '12', '23708', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000732', 'Instructional Staff Status', NULL, 'Staff whose primary function/occupational activity is primarily instruction or instruction combined with research and/or public service. Does not include medical school staff.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23709', '12', '23709', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000733', 'Medical School Staff Status', NULL, 'Staff employed by or employees working in the medical school component of a postsecondary institution or in a free standing medical school. Does not include staff employed by or employees working strictly in a hospital associated with a medical school or those who work in health or allied health schools or departments such as dentistry, veterinary medicine, nursing or dental hygiene.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23710', '12', '23710', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000734', 'Faculty Status', NULL, 'Persons identified by the institution as such and typically those whose initial assignments are made for the purpose of conducting instruction, research or public service as a principal activity (or activities). They may hold academic rank titles of professor, associate professor, assistant professor, instructor, lecturer or the equivalent of any of those academic ranks. Faculty may also include the chancellor/president, provost, vice provosts, deans, directors or the equivalent, as well as associate deans, assistant deans and executive officers of academic departments (chairpersons, heads or the equivalent) if their principal activity is instruction combined with research and/or public service. The designation as "faculty" is separate from the activities to which they may be currently assigned. For example, a newly appointed president of an institution may also be appointed as a faculty member. Graduate, instruction, and research assistants are not included in this category.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23711', '12', '23711', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000735', 'Instructional Staff Contract Length', NULL, 'The contracted teaching period for faculty.', NULL, '1', 'Option set new for IPEDS in 2012 survey year; IPEDS does not include the Less than 9-month code', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23712', '12', '23712', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000736', 'Full-time Status', NULL, 'An indication of whether an individual is employed for a standard number of hours (as determined by civil or organizational policies) in a week, month, or other period of time.', NULL, '1', 'Postsecondary: The type of appointment at the snapshot date determines whether an employee is full-time or part-time. The employee''s term of contract is not considered in making the determination of full or part-time. Causal employees (hired on an ad-hoc basis or occasional basis to meet short-term needs) and students in the College Work-Study Program (CWS) are not considered part-time staff.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23713', '12', '23713', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000737', 'Contract Type', NULL, 'The type of employment contract used by an institution.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23714', '12', '23714', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000738', 'Tenure System', NULL, 'An indicator of whether an institution has personnel positions that lead to consideration for tenure.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23715', '12', '23715', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000739', 'Instructional Staff Faculty Tenure Status', NULL, 'An indicator of the type of faculty status a person has if, by institutional definition, a staff member has faculty status.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23716', '12', '23716', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000740', 'Academic Rank', NULL, 'The academic rank of staff whose primary responsibility is instruction, research, and/or public service. Institutions without standard academic ranks should code staff whose primary responsibility is instruction, research, and/or public service as "No Academic Rank."', NULL, '1', 'Element definition and option set defined in IPEDS. Adjunct is not included since it can be determined from a combination of the elements Instructional Staff Faculty Tenure Status and Full-time Status.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23717', '12', '23717', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000741', 'Instruction Credit Type', NULL, 'A designation of the type(s) of instruction being delivered by staff whose primary responsibility is instruction. Instruction that is for "credit" can be applied toward the requirements for a postsecondary degree, diploma, certificate or other formal award.', NULL, '1', 'Element definition and option set defined in IPEDS; new collection element for the 2012 survey year', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23719', '12', '23719', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000742', 'Graduate Assistant Status', NULL, 'Graduate-level students employed on a part-time basis, not limited to, but often employed for the primary purpose of assisting in classroom or laboratory instruction or in the conduct of research. Graduate students having titles such as graduate assistant, teaching assistant, teaching associate, teaching fellow, or research assistant typically hold these positions.', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23720', '12', '23720', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000743', 'Graduate Assistant IPEDS Occupation Category', NULL, 'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report graduate assistants.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23721', '12', '23721', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000744', 'Annual Base Contractual Salary', NULL, 'The total annual base contractual salary of a person.', 'Integer - greater than or equal to 0', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23722', '12', '23722', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000745', 'Tuition - Published', NULL, 'The published tuition for first time, full-time undergraduate students (lower of in-district or in-state for public institutions). Tuition may be charged per term, per course, per credit or per program.', 'Numeric - up to 2 digits after decimal place', '0', 'The tuition rate used in the calculation of the institutional "net price" of attendance.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23723', '12', '23723', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000746', 'Tuition Unit', NULL, 'The component for which tuition is being charged. It might be a time period (term, quarter, year, etc.) or it might be an entity of education (course, credit hour, etc.).', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23725', '12', '23725', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000747', 'Required Student Fees', NULL, 'Fixed sum charged to persons for items not covered by tuition and required of such a large proportion of all students that the student who does not pay the charge is the exception.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23726', '12', '23726', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000748', 'Institutionally Controlled Housing Status', NULL, 'An indication of whether an institution has any residence hall or housing facility located on- or off-campus that is owned or controlled by an institution and used by the institution in direct support of or in a manner related to, the institution''s educational purposes.', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23727', '12', '23727', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000749', 'Room Charges', NULL, 'The charges for an academic year for rooming accommodations for a typical student sharing a room with one other student.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23728', '12', '23728', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000750', 'Board Charges', NULL, 'The charges assessed students for an academic year for the maximum meal plan available.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23729', '12', '23729', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000751', 'Books and Supplies Costs', NULL, 'The average cost for books and supplies for a typical student for an entire academic year (or program). Does not include unusual costs for special groups of students (e.g., engineering or art majors) unless they constitute the majority of students at an institution.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23730', '12', '23730', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000752', 'Other Student Expenses', NULL, 'The amount of money (estimated by the financial aid office) needed by a person to cover expenses such as laundry, transportation, and entertainment.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23731', '12', '23731', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000753', 'Price of Attendance', NULL, 'The total amount institutions estimate that undergraduate-level full-time, first-time degree-seeking students will pay to attend before financial aid is considered. This price includes tuition and fees, books and supplies, room and board, and certain other designated expenses such as transportation. These estimates are the average amounts used by the financial aid office to determine a student’s financial aid.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23732', '12', '23732', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000754', 'Comprehensive Fee', NULL, 'A single fixed amount of money charged by an institution that covers tuition, required fees, room, and board. For some institutions, this amount may also cover books and supplies.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23733', '12', '23733', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000755', 'Postsecondary Applicant', NULL, 'An individual who has fulfilled the institution’s requirements to be considered for admission (including payment or waiving of the application fee, if any) and who has been notified of one of the following actions: admission, nonadmission, placement on waiting list, or application withdrawn (by applicant or institution). Include early decision, early action, and students who began studies during summer in this cohort.', NULL, '1', 'CDS definition/instructions; first part matches IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23735', '12', '23735', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000756', 'Admitted Student', NULL, 'Applicant who has been granted an official offer to enroll in a postsecondary institution. Admitted applicants should include wait-listed students who were subsequently offered admission.', NULL, '1', 'First sentence from IPEDS, not CDS; Second sentence from CDS instructions. All options except "No" should be able to be collapsed into "Yes" for IPEDS reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23736', '12', '23736', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000757', 'Wait Listed Student', NULL, 'A person who meets the admission requirements but will only be offered a place in the class if space becomes available.', NULL, '1', 'Common Data Set definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23738', '12', '23738', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000758', 'Grade Point Average Domain', 'GPA Domain', 'The domain to which the Grade Point Average is referencing.', NULL, '1', 'Used to indicate to which academic domain a grade point element is referencing', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23739', '12', '23739', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000653', 'Interscholastic Sports - Male Only', NULL, 'The number of interscholastic sports in which only male students participate. Sports include distinct sports such as football, basketball, soccer but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21660', '11', '21660', NULL, NULL) +VALUES ('000759', 'High School Percentile', NULL, 'The High School Rank divided by the Size of High School Graduating Class expressed as a percentage.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', 'Related Connection; linked to High School Grade Point Average Cumulative, Grade Point Average Weighted Indicator, High School Rank, and Size of High School Graduating Class
0% to 99% (where 99% corresponds to the valedictorian, 0% to the bottom rank in the class)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23740', '12', '23740', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000654', 'Interscholastic Sports - Female Only', NULL, 'The number of interscholastic sports in which only female students participate. Sports include distinct sports such as football, basketball, soccer but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21661', '11', '21661', NULL, NULL) +VALUES ('000760', 'Postsecondary Student Housing On-Campus', NULL, 'The student resides in a residence hall or housing facility owned or controlled by an institution within the same reasonably contiguous geographic area and used by the institution in direct support of or in a manner related to, the institution''s educational purposes.', NULL, '1', 'IPEDS Definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23741', '12', '23741', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000655', 'Interscholastic Teams - Male Only', NULL, 'The number of interscholastic teams in which only male students participate. Teams include each competitive level team in each sport, such as freshman team, junior varsity team, and varsity team but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21662', '11', '21662', NULL, NULL) +VALUES ('000761', 'Fraternity Participation Status', NULL, 'Student is in membership of a chiefly social organization of men students at a college or university, usually designated by Greek letters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23743', '12', '23743', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000656', 'Interscholastic Teams - Female Only', NULL, 'The number of interscholastic teams in which only female students participate. Teams include each competitive level team in each sport, such as freshman team, junior varsity team, and varsity team but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21663', '11', '21663', NULL, NULL) +VALUES ('000762', 'Sorority Participation Status', NULL, 'Student is in membership in a chiefly social organization of women students at a college or university, usually designated by Greek letters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23744', '12', '23744', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000657', 'Interscholastic Sport Participants - Male Only', NULL, 'The number of male students who participated on an interscholastic team. A student should be counted once for each team he was on.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21664', '11', '21664', NULL, NULL) +VALUES ('000763', 'Financial Aid Applicant', NULL, 'Any applicant who submits any one of the institutionally required financial aid applications/forms, such as the Free Application for Federal Student Aid (FAFSA).', NULL, '1', 'Common Data Set definition.
Element should be used in combination with Financial Aid Applicant Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23745', '12', '23745', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000658', 'Interscholastic Sport Participants - Female Only', NULL, 'The number of female students who participated on an interscholastic team. A student should be counted once for each team she was on.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21665', '11', '21665', NULL, NULL) +VALUES ('000765', 'Financial Need', NULL, 'The amount of financial need as determined by an institution using the federal methodology and/or your institution''s own standards.', 'Numeric - up to 2 digits after decimal place', '0', 'Common Data Set definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23747', '12', '23747', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000689', 'Competency Definition Identifier', 'Learning Standard Item Identifier, Competency Item Identifier', 'The globally unique identifier (GUID) issued by the publisher of the competency framework that uniquely identifies the definition in the hierarchy of competency definitions using a RFC 4122 compliant 32-character hexadecimal string, such as 21EC2020-3AEA-1069-A2DD-08002B30309D.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21666', '11', '21666', NULL, NULL) +VALUES ('000766', 'Teacher Education Test Company', NULL, 'The name of the company that provides the examination used in the teacher education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23748', '12', '23748', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000690', 'Competency Definition Statement', 'Learning Standard Item Statement, Competency Item Statement', 'The text of the statement. The textual content that either describes a specific competency or describes a less granular group of competencies within the taxonomy of the competency framework.', 'Alphanumeric', '0', 'Note: This element is designed to support statements from various learning standards frameworks. The Head Start Child Outcomes Framework includes statements for Domains, Elements, and Indicators. Examples from the K-12 Common Core State Standards are the domain: “Geometry", the cluster: “Understand and apply the Pythagorean Theorem,” and standard: “Apply the Pythagorean Theorem to determine unknown side lengths in right triangles in real-world and mathematical problems in two and three dimensions.”', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21667', '11', '21667', NULL, NULL) +VALUES ('000767', 'Teacher Preparation Program Enrollment Status', NULL, 'An indication of whether a person is pursuing certification as a teacher.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23749', '12', '23749', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000691', 'Competency Definition Type', 'Learning Standard Item Type, Competency Item Type', 'The class of statement in the structure of statements in the Competency Framework according to a controlled vocabulary, specified as a textual label.', 'Alphanumeric - 60 characters maximum', '0', 'This property points to a class, not to instances of that class. For example, where two competencies in a competency framework have been identified respectively as \"Strand: Renaissance\" and \"Strand: Social history\", the competencyCategory for both these competencies is \"Strand\"."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21668', '11', '21668', NULL, NULL) +VALUES ('000768', 'Teacher Preparation Program Completer Status', NULL, 'An indication of whether a person completed a state-approved teacher preparation program. The fact that a person has or has not been recommended to the state for initial certification or licensure may not be used as a criterion for determining who is a program completer.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23750', '12', '23750', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000692', 'Competency Definition Code', 'Learning Standard Item Code, Competency Item Code', 'A human-referenceable code designated by the publisher to identify the item in the hierarchy of competency definitions.', 'Alphanumeric - 30 characters maximum', '0', 'For example: "M.1.N.3" The code is usually not globally unique and usually has embedded meaning such as a number that represents a grade/level and letters that represent content strands.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21669', '11', '21669', NULL, NULL) +VALUES ('000769', 'Alternative Route to Certification or Licensure', NULL, 'An indication of whether a person is enrolled in an alternative teacher preparation program as defined by Title II.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23751', '12', '23751', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000693', 'Competency Framework Identifier URI', 'Learning Standard Document Identifier URI', 'An unambiguous reference to the competency framework using a network-resolvable URI.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21670', '11', '21670', NULL, NULL) +VALUES ('000770', 'Critical Teacher Shortage Area Candidate', NULL, 'An indication of whether a person is pursuing licensure/certification in a field designated as a shortage area as defined by Title II.', NULL, '1', 'When used in conjunction with the element Classification of Instructional Program, the field of study can be determined.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23753', '12', '23753', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000694', 'Competency Framework Title', 'Learning Standard Document Title', 'The name of the competency framework.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21671', '11', '21671', NULL, NULL) +VALUES ('000771', 'Supervised Clinical Experience', NULL, 'An indication of whether a person is enrolled in a supervised clinical experience (including student teaching) as part of a teacher preparation program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23754', '12', '23754', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000695', 'Competency Framework Version', 'Learning Standard Document Version', 'Defines the revision of the competency framework as a version number or date.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21672', '11', '21672', NULL, NULL) +VALUES ('000772', 'Supervised Clinical Experience Clock Hours', NULL, 'An indication of the number of clock hours (minimum) a student is required to complete associated with a supervised clinical experience.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23755', '12', '23755', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000696', 'Competency Framework Creator', 'Learning Standard Document Creator', 'The person or organization chiefly responsible for the intellectual content of the competency framework.', 'Alphanumeric - 120 characters maximum', '0', 'Implementations may choose to model this element as a repeatable field to support the case of multiple authors. Others may just use a comma delimited string for multiple authors.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21673', '11', '21673', NULL, NULL) +VALUES ('000773', 'Teacher Education Credential Exam Type', NULL, 'The type of examination used to assess teacher candidate''s knowledge and skills.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23756', '12', '23756', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000697', 'Competency Framework Description', 'Learning Standard Document Description', 'A textual description of the scope and contents of the competency framework.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21674', '11', '21674', NULL, NULL) +VALUES ('000774', 'Teacher Education Credential Exam Score Type', NULL, 'An indication of the type of credential exam associated with a given exam score.', 'Alphanumeric - 30 characters maximum', '0', 'Praxis I:
Reading
Mathematics
Writing

Praxis II:
Codes at http://www.ets.org/praxis/about/praxisii/content

ACTFL codes at http://www.languagetesting.com/', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23757', '12', '23757', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000698', 'Competency Framework Publication Status', 'Learning Standard Document Publication Status', 'The publication status of the competency framework.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21675', '11', '21675', NULL, NULL) +VALUES ('000775', 'Low-income Status', NULL, 'A person who receives or is a member of a family who receives a total family income in the 6 months prior to enrollment of 70 percent of the income standard for a family of that size or that does not exceed the poverty line, or the person is receiving or is a member of a family who is receiving cash assistance payments from Federal, State, or local agencies or food stamps, or the person can be designated as homeless under the McKinney Act.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23758', '12', '23758', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000699', 'Competency Framework Jurisdiction', 'Learning Standard Document Jurisdiction', 'A legal, quasi-legal, organizational or institutional domain of the entity mandating the use of the statement--e.g., California.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21676', '11', '21676', NULL, NULL) +VALUES ('000776', 'Dislocated Worker Status', NULL, 'An individual who has been terminated or laid off, or who has received a notice of termination or layoff from employment, or an individual who was self-employed but is unemployed as a result of general economic conditions in the community in which the individual resides or because of natural disasters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23759', '12', '23759', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000700', 'Competency Framework Valid Start Date', 'Learning Standard Document Valid Start Date', 'The year, month and day the competency framework was adopted by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21677', '11', '21677', NULL, NULL) +VALUES ('000777', 'Public Assistance Status', NULL, 'A person who receives financial assistance from Federal, State, or local government agencies, including Temporary Assistance for Needy Families or equivalent.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23760', '12', '23760', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000701', 'Competency Framework Valid End Date', 'Learning Standard Document Valid End Date', 'The year, month and day the competency framework was deprecated/replaced by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21678', '11', '21678', NULL, NULL) +VALUES ('000778', 'Rural Residency Status', NULL, 'A person who resides in a place with a population of less than 2,500 that is not near any metropolitan area with a population greater than 50,000, or in a city with adjacent areas of high density.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23761', '12', '23761', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000702', 'Competency Framework Subject', 'Learning Standard Document Subject', 'The topic or academic subject of the competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21679', '11', '21679', NULL, NULL) +VALUES ('000779', 'Adult Educational Functioning Level at Intake', NULL, 'An individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23763', '12', '23763', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000703', 'Vision Screening Date', NULL, 'The year, month and day of a vision screening.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21680', '11', '21680', NULL, NULL) +VALUES ('000780', 'Adult Educational Functioning Level at Posttest', NULL, 'An individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23764', '12', '23764', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000705', 'Hearing Screening Date', NULL, 'The year, month and day of a hearing screening.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21681', '11', '21681', NULL, NULL) +VALUES ('001077', 'Adult Education Instructional Program Type', NULL, 'The type of instructional program in which an adult is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23765', '12', '23765', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000706', 'Dental Screening Date', NULL, 'The year, month and day of a dental screening', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21682', '11', '21682', NULL, NULL) +VALUES ('000782', 'Adult Education Special Program Type', NULL, 'The type, by location or delivery mode, of adult education instruction program in which an adult participates.', NULL, '1', 'Also see Adult Education Instructional Program Type', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23766', '12', '23766', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000707', 'Assessment Item Maximum Score', NULL, 'The maximum number of points possible for the assessment item.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21683', '11', '21683', NULL, NULL) +VALUES ('001079', 'Goals for Attending Adult Education', NULL, 'A person''s reasons for attending an adult education class or program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23767', '12', '23767', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000708', 'Assessment Item Minimum Score', NULL, 'The minimum number of points possible for the assessment item.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21684', '11', '21684', NULL, NULL) +VALUES ('000784', 'Adult Education Postsecondary Transition Action', NULL, 'The action taken with respect to postsecondary enrollment by the learner after program exit or when co-enrolled in ABE and postsecondary with respect to enrollment in a postsecondary educational or occupational skills program building on prior services or training received.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23768', '12', '23768', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000709', 'Assessment Item Characteristic Value', NULL, 'A psychometric measure provided for an assessment item.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21685', '11', '21685', NULL, NULL) +VALUES ('001081', 'Adult Education Postsecondary Transition Date', NULL, 'The year, month and day on which a person previously enrolled in adult education entered and began to receive instructional services or training at a postsecondary institution.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23769', '12', '23769', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000710', 'Charter School Type', NULL, 'The category of charter school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21686', '11', '21686', NULL, NULL) +VALUES ('000786', 'Adult Education Staff Classification', NULL, 'The titles of employment, official status, or rank of adult education staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23770', '12', '23770', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000711', 'Cohort Description', NULL, 'A description of the student cohort.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21687', '11', '21687', NULL, NULL) +VALUES ('001083', 'Adult Education Staff Employment Status', NULL, 'The condition under which a person has agreed to serve as an employee.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23771', '12', '23771', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000712', 'Curriculum Framework Type', NULL, 'An indication of the standard curriculum used for this course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21688', '11', '21688', NULL, NULL) +VALUES ('000788', 'Years of Prior Adult Education Teaching Experience', NULL, 'The total number of years that a person has previously held a teaching position in one or more adult education programs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23774', '12', '23774', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000713', 'High School Diploma Distinction Type', NULL, 'The distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21689', '11', '21689', NULL, NULL) +VALUES ('001085', 'Adult Education Certification Type', NULL, 'An indication of the category of the adult education certification a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23775', '12', '23775', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000714', 'Kindergarten Program Participation Type ', NULL, 'The type of Kindergarten program the student is enrolled in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21690', '11', '21690', NULL, NULL) +VALUES ('000790', 'Proxy Contact Hours', NULL, 'The number of instructional hours completed by an adult enrolled in a distance learning program.', 'Numeric - up to 1 digit after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23776', '12', '23776', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000715', 'Competency Definition Prerequisite Identifier', 'Learning Standard Item Prerequisite Identifier, Competency Item Prerequisite Identifier', 'The unique identifier of an immediate prerequisite Competency Definition, a competency needed prior to learning this one. (Some items may have no prerequisites while others may have one or more prerequisites. This should only be used to represent the immediate predecessors in a competency-based pathway, i.e. not prerequisites of prerequisites.)', 'Alphanumeric - 40 characters maximum', '0', 'The recommended approach is to use the entity Learning Standard Item Association instead of this data element. Learning Standard Item Association also supports associating other entities, such as Learning Resources, to learning standard items. CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces. An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21691', '11', '21691', NULL, NULL) +VALUES ('000810', 'Professional Development Activity Title', NULL, 'The title of an activity designed for the purpose of developing someone professionally.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23809', '12', '23809', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000716', 'Program Sponsor Type', NULL, 'A type of organization providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21692', '11', '21692', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001076', 'Adult Education Service Provider Identifier', NULL, 'A unique number or alphanumeric code assigned to an institution by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23777', '12', '23777', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000717', 'Assessment Performance Level Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment performance level.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21693', '11', '21693', NULL, NULL) +VALUES ('000781', 'Adult Education Service Provider Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23778', '12', '23778', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000718', 'Assessment Performance Level Label', NULL, 'A label representing the performance level appropriate for use on a report.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21694', '11', '21694', NULL, NULL) +VALUES ('001078', 'Adult Education Provider Type', NULL, 'The type of institution responsible for providing adult education instructional services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23779', '12', '23779', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000719', 'Assessment Subtest Rules', NULL, 'A description of the rules to produce a student test/subtest score from for a grouping of student item scores.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21695', '11', '21695', NULL, NULL) +VALUES ('000783', 'Professional or Technical Credential Conferred', NULL, 'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23780', '12', '23780', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000722', 'Address Type for Staff', NULL, 'The address type for a staff member.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21698', '11', '21698', NULL, NULL) +VALUES ('001080', 'Child Identifier', NULL, 'A unique number or alphanumeric code assigned to a child by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23781', '12', '23781', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000724', 'Assessment Item Response Score Value', NULL, 'The score given to a person''s response to an assessment item.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21700', '11', '21700', NULL, NULL) +VALUES ('000785', 'Child Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by programs, schools, social services, or other agencies to refer to a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23782', '12', '23782', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000725', 'Competency Definition Education Level', 'Learning Standard Item Education Level, Competency Item Education Level', 'The education level, grade level or primary instructional level at which a Competency Definition is intended.', NULL, '1', 'More than one Learning Standard Grade Level may be associated with one Learning Standard Item.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21701', '11', '21701', NULL, NULL) +VALUES ('000787', 'Family Identifier', NULL, 'A unique number or alphanumeric code assigned to a family by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23784', '12', '23784', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000726', 'Academic Year Designator', NULL, 'The academic year for which the data apply.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21702', '11', '21702', NULL, NULL) +VALUES ('000789', 'Early Childhood Degree or Certificate Holder', NULL, 'Staff has a degree in early childhood regardless of level.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23786', '12', '23786', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000727', 'Academic Term Designator', NULL, 'The academic term for which the data apply.', NULL, '1', 'Needs to be used in combination with Predominant Calendar System element in order to determine if the option set is referring to a semester, quarter, or some other term length.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21703', '11', '21703', NULL, NULL) +VALUES ('001086', 'Total Approved Early Childhood Credits Earned', NULL, 'Total semester credits earned in early childhood regardless of whether credits are earned as part of an early childhood degree program, other degree program or outside of a degree program.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23787', '12', '23787', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000728', 'Distance Education Course Enrollment', NULL, 'An individual''s enrollment in a course or courses in which the instructional content is delivered exclusively via distance education. Distance education is education that uses one or more technologies to deliver instruction to students who are separated from the instructor and to support regular and substantive interaction between the students and the instructor synchronously or asynchronously. Technologies used for instruction may include: Internet; one-way and two-way transmissions through open broadcasts, closed circuit, cable, microwave, broadband lines, fiber optics, satellite or wireless communication devices; audio conferencing; and video cassette, DVDs, and CD-ROMs, if the cassette, DVDs, and CD-ROMs are used in a course in conjunction with the technologies listed above.', NULL, '1', 'Element defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21704', '11', '21704', NULL, NULL) +VALUES ('000792', 'Early Learning Staff Total College Credits Earned', NULL, 'Total number of college credits earned, including all credits within a degree and outside a degree, regardless of whether they all are early childhood credits.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23791', '12', '23791', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000729', 'Predominant Calendar System', NULL, 'The method by which an institution structures most of its courses for the academic year.', NULL, '1', 'Definition and code set in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21705', '11', '21705', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000793', 'Staff Education Entry Date', NULL, 'The year, month and day that a staff member began participating in an educational experience (course, educational program, or formal education activity).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23792', '12', '23792', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000730', 'Standard Occupational Classification', NULL, 'A Bureau of Labor Statistics coding system for classifying occupations by work performed and, in some cases, on the skills, education and training needed to perform the work at a competent level. See https://www.bls.gov/soc/2018/major_groups.htm.', '##-####', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21707', '11', '21707', NULL, NULL) +VALUES ('000794', 'Staff Education Withdrawal Date', NULL, 'The year, month and day that an individual ceased participating in an educational experience without completing the course, educational program, or staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23793', '12', '23793', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000731', 'IPEDS Occupational Category', NULL, 'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report employees.', NULL, '1', 'IPEDS reporting categories beginning with the 2012 IPEDS survey year.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21708', '11', '21708', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000795', 'Employment End Date', NULL, 'The year, month and day on which a person ended self-employment or employment with an organization or institution.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23794', '12', '23794', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000732', 'Instructional Staff Status', NULL, 'Staff whose primary function/occupational activity is primarily instruction or instruction combined with research and/or public service. Does not include medical school staff.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21709', '11', '21709', NULL, NULL) +VALUES ('000796', 'Hours Worked Per Week', NULL, 'The number of hours worked per week in employment.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23795', '12', '23795', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000733', 'Medical School Staff Status', NULL, 'Staff employed by or employees working in the medical school component of a postsecondary institution or in a free standing medical school. Does not include staff employed by or employees working strictly in a hospital associated with a medical school or those who work in health or allied health schools or departments such as dentistry, veterinary medicine, nursing or dental hygiene.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21710', '11', '21710', NULL, NULL) +VALUES ('000797', 'Hourly Wage', NULL, 'Hourly wage associated with the employment position being reported.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23796', '12', '23796', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000734', 'Faculty Status', NULL, 'Persons identified by the institution as such and typically those whose initial assignments are made for the purpose of conducting instruction, research or public service as a principal activity (or activities). They may hold academic rank titles of professor, associate professor, assistant professor, instructor, lecturer or the equivalent of any of those academic ranks. Faculty may also include the chancellor/president, provost, vice provosts, deans, directors or the equivalent, as well as associate deans, assistant deans and executive officers of academic departments (chairpersons, heads or the equivalent) if their principal activity is instruction combined with research and/or public service. The designation as "faculty" is separate from the activities to which they may be currently assigned. For example, a newly appointed president of an institution may also be appointed as a faculty member. Graduate, instruction, and research assistants are not included in this category.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21711', '11', '21711', NULL, NULL) +VALUES ('000798', 'Wage Collection Code', NULL, 'Method used for the collection of wage data for an employment record.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23797', '12', '23797', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000735', 'Instructional Staff Contract Length', NULL, 'The contracted teaching period for faculty.', NULL, '1', 'Option set new for IPEDS in 2012 survey year; IPEDS does not include the Less than 9-month code', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21712', '11', '21712', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000799', 'Union Membership Status', NULL, 'An indication of whether the person is a member of a union.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23798', '12', '23798', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000736', 'Full-time Status', NULL, 'An indication of whether an individual is employed for a standard number of hours (as determined by civil or organizational policies) in a week, month, or other period of time.', NULL, '1', 'Postsecondary: The type of appointment at the snapshot date determines whether an employee is full-time or part-time. The employee''s term of contract is not considered in making the determination of full or part-time. Causal employees (hired on an ad-hoc basis or occasional basis to meet short-term needs) and students in the College Work-Study Program (CWS) are not considered part-time staff.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21713', '11', '21713', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000804', 'Required Training Clock Hours', NULL, 'Number of clock hours of training required for providers to meet requirements of the state.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23803', '12', '23803', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000737', 'Contract Type', NULL, 'The type of employment contract used by an institution.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21714', '11', '21714', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000805', 'State Issuing Professional Credential or License', NULL, 'State where the professional license/credential was issued.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23804', '12', '23804', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000738', 'Tenure System', NULL, 'An indicator of whether an institution has personnel positions that lead to consideration for tenure.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21715', '11', '21715', NULL, NULL) +VALUES ('000806', 'Child Development Associate Type', 'CDA Type', 'Type of Child Development Associate credential as defined by options.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23805', '12', '23805', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000739', 'Instructional Staff Faculty Tenure Status', NULL, 'An indicator of the type of faculty status a person has if, by institutional definition, a staff member has faculty status.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21716', '11', '21716', NULL, NULL) +VALUES ('000807', 'Professional Association Membership Status', NULL, 'An indication of whether the person is a member of a professional organization or association.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23806', '12', '23806', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000740', 'Academic Rank', NULL, 'The academic rank of staff whose primary responsibility is instruction, research, and/or public service. Institutions without standard academic ranks should code staff whose primary responsibility is instruction, research, and/or public service as "No Academic Rank."', NULL, '1', 'Element definition and option set defined in IPEDS. Adjunct is not included since it can be determined from a combination of the elements Instructional Staff Faculty Tenure Status and Full-time Status.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21717', '11', '21717', NULL, NULL) +VALUES ('000808', 'Professional Association Name', NULL, 'The name of a professional association or organization.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23807', '12', '23807', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000741', 'Instruction Credit Type', NULL, 'A designation of the type(s) of instruction being delivered by staff whose primary responsibility is instruction. Instruction that is for "credit" can be applied toward the requirements for a postsecondary degree, diploma, certificate or other formal award.', NULL, '1', 'Element definition and option set defined in IPEDS; new collection element for the 2012 survey year', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21719', '11', '21719', NULL, NULL) +VALUES ('000809', 'Professional Development Activity Identifier', NULL, 'A unique number or alphanumeric code assigned to the Professional Development Activity as assigned by the organization offering the training.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23808', '12', '23808', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000742', 'Graduate Assistant Status', NULL, 'Graduate-level students employed on a part-time basis, not limited to, but often employed for the primary purpose of assisting in classroom or laboratory instruction or in the conduct of research. Graduate students having titles such as graduate assistant, teaching assistant, teaching associate, teaching fellow, or research assistant typically hold these positions.', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21720', '11', '21720', NULL, NULL) +VALUES ('000811', 'Professional Development Scholarship Status', NULL, 'An indication of whether a scholarship was received for the person to participate in the professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23810', '12', '23810', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000743', 'Graduate Assistant IPEDS Occupation Category', NULL, 'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report graduate assistants.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21721', '11', '21721', NULL, NULL) +VALUES ('000812', 'Professional Development Financial Support Type', NULL, 'The type of financial assistance received in support of non-credit professional development activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23811', '12', '23811', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000744', 'Annual Base Contractual Salary', NULL, 'The total annual base contractual salary of a person.', 'Integer - greater than or equal to 0', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21722', '11', '21722', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000813', 'Early Learning Core Knowledge Area', NULL, 'A description of the core knowledge areas addressed by Early Learning professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23812', '12', '23812', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000745', 'Tuition - Published', NULL, 'The published tuition for first time, full-time undergraduate students (lower of in-district or in-state for public institutions). Tuition may be charged per term, per course, per credit or per program.', 'Numeric - up to 2 digits after decimal place', '0', 'The tuition rate used in the calculation of the institutional "net price" of attendance.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21723', '11', '21723', NULL, NULL) +VALUES ('000814', 'State Approved Trainer Status', NULL, 'An indication of whether an individual has been approved as a trainer through a state process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23813', '12', '23813', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000746', 'Tuition Unit', NULL, 'The component for which tuition is being charged. It might be a time period (term, quarter, year, etc.) or it might be an entity of education (course, credit hour, etc.).', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21725', '11', '21725', NULL, NULL) +VALUES ('000815', 'State Approved Technical Assistance Provider Status', NULL, 'An indication of whether an individual has been approved as a technical assistance provider through a state process.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23814', '12', '23814', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000747', 'Required Student Fees', NULL, 'Fixed sum charged to persons for items not covered by tuition and required of such a large proportion of all students that the student who does not pay the charge is the exception.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21726', '11', '21726', NULL, NULL) +VALUES ('000816', 'Number of School-age Education Postsecondary Credit Hours', NULL, 'The number of college course credit hours an individual has successfully completed that are related to K-12 education, parks and recreation, and juvenile justice.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23815', '12', '23815', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000748', 'Institutionally Controlled Housing Status', NULL, 'An indication of whether an institution has any residence hall or housing facility located on- or off-campus that is owned or controlled by an institution and used by the institution in direct support of or in a manner related to, the institution''s educational purposes.', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21727', '11', '21727', NULL, NULL) +VALUES ('000818', 'Higher Education Institution Accreditation Status', NULL, 'An indication of the accreditation status of a higher education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23817', '12', '23817', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000749', 'Room Charges', NULL, 'The charges for an academic year for rooming accommodations for a typical student sharing a room with one other student.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21728', '11', '21728', NULL, NULL) +VALUES ('000819', 'Wage Verification Code', NULL, 'An indication of whether the wage information has been verified.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23818', '12', '23818', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000750', 'Board Charges', NULL, 'The charges assessed students for an academic year for the maximum meal plan available.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21729', '11', '21729', NULL, NULL) +VALUES ('000820', 'Early Learning Class Group Identifier', NULL, 'A unique number or alphanumeric code assigned by a school, school system, a state, or other agency or entity for a particular early learning class or group.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23819', '12', '23819', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000751', 'Books and Supplies Costs', NULL, 'The average cost for books and supplies for a typical student for an entire academic year (or program). Does not include unusual costs for special groups of students (e.g., engineering or art majors) unless they constitute the majority of students at an institution.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21730', '11', '21730', NULL, NULL) +VALUES ('000821', 'Early Learning Class Group Name', NULL, 'Name of an early learning class or group.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23820', '12', '23820', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000752', 'Other Student Expenses', NULL, 'The amount of money (estimated by the financial aid office) needed by a person to cover expenses such as laundry, transportation, and entertainment.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21731', '11', '21731', NULL, NULL) +VALUES ('000822', 'Serves Children with Special Needs', NULL, 'An indication of whether a class or group serves children with special needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23821', '12', '23821', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000753', 'Price of Attendance', NULL, 'The total amount institutions estimate that undergraduate-level full-time, first-time degree-seeking students will pay to attend before financial aid is considered. This price includes tuition and fees, books and supplies, room and board, and certain other designated expenses such as transportation. These estimates are the average amounts used by the financial aid office to determine a student’s financial aid.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21732', '11', '21732', NULL, NULL) +VALUES ('000823', 'Early Learning Class Group Curriculum Type', NULL, 'The type of curriculum used in an early learning classroom or group.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23822', '12', '23822', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000754', 'Comprehensive Fee', NULL, 'A single fixed amount of money charged by an institution that covers tuition, required fees, room, and board. For some institutions, this amount may also cover books and supplies.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21733', '11', '21733', NULL, NULL) +VALUES ('000824', 'Early Learning Group Size Standards Met', NULL, 'An indication of whether a program meets NAEYC or NAFCC standards for infant group sizes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23823', '12', '23823', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000755', 'Postsecondary Applicant', NULL, 'An individual who has fulfilled the institution’s requirements to be considered for admission (including payment or waiving of the application fee, if any) and who has been notified of one of the following actions: admission, nonadmission, placement on waiting list, or application withdrawn (by applicant or institution). Include early decision, early action, and students who began studies during summer in this cohort.', NULL, '1', 'CDS definition/instructions; first part matches IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21735', '11', '21735', NULL, NULL) +VALUES ('000825', 'Early Learning Program Annual Operating Weeks', NULL, 'The number of operating weeks per year for an early learning program.', 'Integer - between 0 and 52', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23824', '12', '23824', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000756', 'Admitted Student', NULL, 'Applicant who has been granted an official offer to enroll in a postsecondary institution. Admitted applicants should include wait-listed students who were subsequently offered admission.', NULL, '1', 'First sentence from IPEDS, not CDS; Second sentence from CDS instructions. All options except "No" should be able to be collapsed into "Yes" for IPEDS reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21736', '11', '21736', NULL, NULL) +VALUES ('000826', 'Organization Identifier', NULL, 'A unique number or alphanumeric code assigned to an organization by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23825', '12', '23825', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000757', 'Wait Listed Student', NULL, 'A person who meets the admission requirements but will only be offered a place in the class if space becomes available.', NULL, '1', 'Common Data Set definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21738', '11', '21738', NULL, NULL) +VALUES ('000827', 'Organization Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23827', '12', '23827', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000758', 'Grade Point Average Domain', 'GPA Domain', 'The domain to which the Grade Point Average is referencing.', NULL, '1', 'Used to indicate to which academic domain a grade point element is referencing', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21739', '11', '21739', NULL, NULL) +VALUES ('000828', 'Early Learning Program Licensing Status', NULL, 'The current licensing status for an early learning program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23828', '12', '23828', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000759', 'High School Percentile', NULL, 'The High School Rank divided by the Size of High School Graduating Class expressed as a percentage.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', 'Related Connection; linked to High School Grade Point Average Cumulative, Grade Point Average Weighted Indicator, High School Rank, and Size of High School Graduating Class
0% to 99% (where 99% corresponds to the valedictorian, 0% to the bottom rank in the class)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21740', '11', '21740', NULL, NULL) +VALUES ('000829', 'Early Childhood Program Enrollment Type', NULL, 'The system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23829', '12', '23829', 'Updated', 'Added new option to existing option set, change option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000760', 'Postsecondary Student Housing On-Campus', NULL, 'The student resides in a residence hall or housing facility owned or controlled by an institution within the same reasonably contiguous geographic area and used by the institution in direct support of or in a manner related to, the institution''s educational purposes.', NULL, '1', 'IPEDS Definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21741', '11', '21741', NULL, NULL) +VALUES ('000830', 'Quality Rating and Improvement System Award Date', 'QRIS Award Date', 'Date Quality Rating and Improvement System score, level or rating was awarded.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23830', '12', '23830', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000761', 'Fraternity Participation Status', NULL, 'Student is in membership of a chiefly social organization of men students at a college or university, usually designated by Greek letters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21743', '11', '21743', NULL, NULL) +VALUES ('000831', 'Quality Rating and Improvement System Expiration Date', 'QRIS Expiration Date', 'Date Quality Rating and Improvement System score, level or rating expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23831', '12', '23831', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000762', 'Sorority Participation Status', NULL, 'Student is in membership in a chiefly social organization of women students at a college or university, usually designated by Greek letters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21744', '11', '21744', NULL, NULL) +VALUES ('000834', 'Facility Profit Status', NULL, 'An indication of the for-profit status of a facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23834', '12', '23834', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000763', 'Financial Aid Applicant', NULL, 'Any applicant who submits any one of the institutionally required financial aid applications/forms, such as the Free Application for Federal Student Aid (FAFSA).', NULL, '1', 'Common Data Set definition.
Element should be used in combination with Financial Aid Applicant Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21745', '11', '21745', NULL, NULL) +VALUES ('000835', 'Number of Early Learning Fatalities', NULL, 'Number of child fatalities at the program in the past year, as defined by the State', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23835', '12', '23835', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000765', 'Financial Need', NULL, 'The amount of financial need as determined by an institution using the federal methodology and/or your institution''s own standards.', 'Numeric - up to 2 digits after decimal place', '0', 'Common Data Set definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21747', '11', '21747', NULL, NULL) +VALUES ('000836', 'Number of Early Learning Injuries', NULL, 'Number of child injuries at the program in the past year, as defined by the State.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23836', '12', '23836', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000766', 'Teacher Education Test Company', NULL, 'The name of the company that provides the examination used in the teacher education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21748', '11', '21748', NULL, NULL) +VALUES ('000837', 'Early Learning Program License Suspension Status', NULL, 'An indication of whether a program''s license was suspended due to violations as determined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23837', '12', '23837', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000767', 'Teacher Preparation Program Enrollment Status', NULL, 'An indication of whether a person is pursuing certification as a teacher.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21749', '11', '21749', NULL, NULL) +VALUES ('000838', 'Early Learning Program License Revocation Status', NULL, 'An indication of whether a program''s license was revoked due to violations as determined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23838', '12', '23838', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000768', 'Teacher Preparation Program Completer Status', NULL, 'An indication of whether a person completed a state-approved teacher preparation program. The fact that a person has or has not been recommended to the state for initial certification or licensure may not be used as a criterion for determining who is a program completer.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21750', '11', '21750', NULL, NULL) +VALUES ('000840', 'Accreditation Award Date', NULL, 'The year, month and day when an accreditation was awarded.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23840', '12', '23840', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000769', 'Alternative Route to Certification or Licensure', NULL, 'An indication of whether a person is enrolled in an alternative teacher preparation program as defined by Title II.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21751', '11', '21751', NULL, NULL) +VALUES ('000841', 'Accreditation Expiration Date', NULL, 'The year, month and day when an accreditation expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23841', '12', '23841', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000770', 'Critical Teacher Shortage Area Candidate', NULL, 'An indication of whether a person is pursuing licensure/certification in a field designated as a shortage area as defined by Title II.', NULL, '1', 'When used in conjunction with the element Classification of Instructional Program, the field of study can be determined.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21753', '11', '21753', NULL, NULL) +VALUES ('000842', 'Personnel Policy Type', NULL, 'Policies related to personnel in the organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23842', '12', '23842', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000771', 'Supervised Clinical Experience', NULL, 'An indication of whether a person is enrolled in a supervised clinical experience (including student teaching) as part of a teacher preparation program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21754', '11', '21754', NULL, NULL) +VALUES ('000843', 'Number of Quality Rating and Improvement System Levels', 'Number of QRIS Levels', 'Number of quality levels in the Quality Rating and Improvement System (QRIS).', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23843', '12', '23843', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000772', 'Supervised Clinical Experience Clock Hours', NULL, 'An indication of the number of clock hours (minimum) a student is required to complete associated with a supervised clinical experience.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21755', '11', '21755', NULL, NULL) +VALUES ('000844', 'Number of Classrooms', NULL, 'The total number of classrooms for a program, facility, location, or other educational environment.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23844', '12', '23844', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000773', 'Teacher Education Credential Exam Type', NULL, 'The type of examination used to assess teacher candidate''s knowledge and skills.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21756', '11', '21756', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000845', 'Program Provides Translated Materials', NULL, 'An indication of whether a program translates written materials into the individual''s home or parent''s language.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23845', '12', '23845', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000774', 'Teacher Education Credential Exam Score Type', NULL, 'An indication of the type of credential exam associated with a given exam score.', 'Alphanumeric - 30 characters maximum', '0', 'Praxis I:
Reading
Mathematics
Writing

Praxis II:
Codes at http://www.ets.org/praxis/about/praxisii/content

ACTFL codes at http://www.languagetesting.com/', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21757', '11', '21757', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000847', 'Ongoing Health Screening Policy', NULL, 'An indication of whether a program requires that all children are receiving ongoing health screenings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23847', '12', '23847', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000775', 'Low-income Status', NULL, 'A person who receives or is a member of a family who receives a total family income in the 6 months prior to enrollment of 70 percent of the income standard for a family of that size or that does not exceed the poverty line, or the person is receiving or is a member of a family who is receiving cash assistance payments from Federal, State, or local agencies or food stamps, or the person can be designated as homeless under the McKinney Act.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21758', '11', '21758', NULL, NULL) +VALUES ('000848', 'Early Learning Program Developmental Screening Status', NULL, 'An indication of whether a program ensures that all children served by the program are receiving developmental screenings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23848', '12', '23848', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000776', 'Dislocated Worker Status', NULL, 'An individual who has been terminated or laid off, or who has received a notice of termination or layoff from employment, or an individual who was self-employed but is unemployed as a result of general economic conditions in the community in which the individual resides or because of natural disasters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21759', '11', '21759', NULL, NULL) +VALUES ('000849', 'Immunization Policy', NULL, 'An indication of whether a program has an immunization policy that specifically indicates that all children are receiving immunizations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23849', '12', '23849', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000777', 'Public Assistance Status', NULL, 'A person who receives financial assistance from Federal, State, or local government agencies, including Temporary Assistance for Needy Families or equivalent.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21760', '11', '21760', NULL, NULL) +VALUES ('000850', 'Referral Policy', NULL, 'An indication of whether the program has a policy for referrals for all children requiring them.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23850', '12', '23850', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000778', 'Rural Residency Status', NULL, 'A person who resides in a place with a population of less than 2,500 that is not near any metropolitan area with a population greater than 50,000, or in a city with adjacent areas of high density.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21761', '11', '21761', NULL, NULL) +VALUES ('000851', 'Program Health Safety Checklist Use Status', NULL, 'An indication of whether a program uses a health or safety checklist or documentation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23851', '12', '23851', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000779', 'Adult Educational Functioning Level at Intake', NULL, 'An individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21763', '11', '21763', NULL, NULL) +VALUES ('000852', 'Special Circumstances Population Served', NULL, 'Program provides services to meet the needs of children in special circumstances.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23852', '12', '23852', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000780', 'Adult Educational Functioning Level at Posttest', NULL, 'An individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21764', '11', '21764', NULL, NULL) +VALUES ('000853', 'Program Provides Written Handbook', NULL, 'An indication of whether the program provides each parent with a written handbook.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23853', '12', '23853', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001077', 'Adult Education Instructional Program Type', NULL, 'The type of instructional program in which an adult is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21765', '11', '21765', NULL, NULL) +VALUES ('000854', 'Program Collects Parental Feedback', NULL, 'An indication of whether the program collects feedback from parents that informs program content and/or administration.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23854', '12', '23854', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000782', 'Adult Education Special Program Type', NULL, 'The type, by location or delivery mode, of adult education instruction program in which an adult participates.', NULL, '1', 'Also see Adult Education Instructional Program Type', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21766', '11', '21766', NULL, NULL) +VALUES ('000855', 'Program Provides Parent Involvement Opportunity', NULL, 'An indication of whether the program provides opportunities to parents to be involved with their children''s activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23855', '12', '23855', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001079', 'Goals for Attending Adult Education', NULL, 'A person''s reasons for attending an adult education class or program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21767', '11', '21767', NULL, NULL) +VALUES ('000856', 'Program Provides Parent Education', NULL, 'An indication of whether the program provides parent training/education/workshops.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23856', '12', '23856', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000784', 'Adult Education Postsecondary Transition Action', NULL, 'The action taken with respect to postsecondary enrollment by the learner after program exit or when co-enrolled in ABE and postsecondary with respect to enrollment in a postsecondary educational or occupational skills program building on prior services or training received.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21768', '11', '21768', NULL, NULL) +VALUES ('000857', 'Parent Communication Method', NULL, 'The types of communication methods with parents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23857', '12', '23857', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001081', 'Adult Education Postsecondary Transition Date', NULL, 'The year, month and day on which a person previously enrolled in adult education entered and began to receive instructional services or training at a postsecondary institution.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21769', '11', '21769', NULL, NULL) +VALUES ('000858', 'Assessment Shared with Parents', NULL, 'An indication of whether assessment results are shared with parents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23858', '12', '23858', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000786', 'Adult Education Staff Classification', NULL, 'The titles of employment, official status, or rank of adult education staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21770', '11', '21770', NULL, NULL) +VALUES ('000859', 'Program Transition Planning Policy', NULL, 'An indication of whether a program has a transition planning policy (to center, to classroom, to school).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23859', '12', '23859', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001083', 'Adult Education Staff Employment Status', NULL, 'The condition under which a person has agreed to serve as an employee.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21771', '11', '21771', NULL, NULL) +VALUES ('000862', 'Economic Research Service Rural-Urban Continuum Code', 'ERS Rural-Urban Continuum Code', 'Rural-Urban Continuum Codes form a classification scheme that distinguishes metropolitan (metro) counties by the population size of their metro area, and nonmetropolitan (nonmetro) counties by degree of urbanization and adjacency to a metro area or areas. The metro and nonmetro categories have been subdivided into three metro and six nonmetro groupings, resulting in a nine-part county codification. The codes allow researchers working with county data to break such data into finer residential groups beyond a simple metro-nonmetro dichotomy, particularly for the analysis of trends in nonmetro areas that may be related to degree of rurality and metro proximity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23862', '12', '23862', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000788', 'Years of Prior Adult Education Teaching Experience', NULL, 'The total number of years that a person has previously held a teaching position in one or more adult education programs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21774', '11', '21774', NULL, NULL) +VALUES ('000863', 'Program Follows Salary Scale', NULL, 'An indication of whether a program has a salary scale that is followed for practitioners', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23863', '12', '23863', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001085', 'Adult Education Certification Type', NULL, 'An indication of the category of the adult education certification a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21775', '11', '21775', NULL, NULL) +VALUES ('000864', 'Early Learning Program Year', NULL, 'The year the program is operating.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23864', '12', '23864', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000790', 'Proxy Contact Hours', NULL, 'The number of instructional hours completed by an adult enrolled in a distance learning program.', 'Numeric - up to 1 digit after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21776', '11', '21776', NULL, NULL) +VALUES ('000865', 'State Licensed Facility Capacity', NULL, 'The maximum number of children for which a state licensed a facility.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23865', '12', '23865', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001076', 'Adult Education Service Provider Identifier', NULL, 'A unique number or alphanumeric code assigned to an institution by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21777', '11', '21777', NULL, NULL) +VALUES ('000866', 'Full-Time Employee Benefits', NULL, 'The benefits offered by a program/facility/employer for full-time staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23866', '12', '23866', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000781', 'Adult Education Service Provider Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21778', '11', '21778', NULL, NULL) +VALUES ('000867', 'Part-Time Employee Benefits', NULL, 'The benefits offered by a program/facility/employer for part-time staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23867', '12', '23867', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001078', 'Adult Education Provider Type', NULL, 'The type of institution responsible for providing adult education instructional services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21779', '11', '21779', NULL, NULL) +VALUES ('000868', 'Differential Shift Pay Indicator', NULL, 'An indication of whether staff receive differential shift pay.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23868', '12', '23868', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000783', 'Professional or Technical Credential Conferred', NULL, 'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', '11', '21780', NULL, NULL) +VALUES ('000869', 'Competency Association Type', 'Learning Standard Item Association Type', 'Defines the nature of the association between a Competency Definition and an associated data object such as a Learning Resource, an Assessment Item, or even another Competency Definition.', NULL, '1', 'The Learning Standard Item Association entity defines metadata relationships between a Learning Standard Item and other objects or relationships between Learning Standard Items not otherwise defined in the normal taxonomy of the framework such as for competency-based pathways, relationships between different versions of the same learning standard, and relationships to resources.


For example, "Prerequisite" may indicate that the Associated Learning Standard Item is a Prerequisite of this Learning Standards Item. Another association may specify that a Learning Resource "Teaches" the specified Learning Standard Item, or is aligned to the "Reading Level" specified as part of the Learning Standard Item.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23869', '12', '23869', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001080', 'Child Identifier', NULL, 'A unique number or alphanumeric code assigned to a child by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21781', '11', '21781', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000871', 'Competency Association Identifier URI', 'Learning Standard Item Association Identifier URI', 'A URI that establishes uniqueness of an association between a competency definition and another competency item or other objects such as learning resources.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23871', '12', '23871', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000785', 'Child Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by programs, schools, social services, or other agencies to refer to a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21782', '11', '21782', NULL, NULL) +VALUES ('000912', 'Learning Resource Title', NULL, 'The title of the resource.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23912', '12', '23912', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000787', 'Family Identifier', NULL, 'A unique number or alphanumeric code assigned to a family by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21784', '11', '21784', NULL, NULL) +VALUES ('000913', 'Learning Resource Subject Name', NULL, 'The descriptive name for the subject of the content for the learning resource.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23913', '12', '23913', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000789', 'Early Childhood Degree or Certificate Holder', NULL, 'Staff has a degree in early childhood regardless of level.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21786', '11', '21786', NULL, NULL) +VALUES ('000872', 'Competency Definition Parent Identifier', 'Learning Standard Item Parent Identifier, Competency Item Parent Identifier', 'The globally unique identifier (GUID) issued by the publisher of the competency framework that uniquely identifies the parent item in the hierarchy of competency definitions using a RFC 4122 compliant 32-character hexadecimal string, such as 21EC2020-3AEA-1069-A2DD-08002B30309D.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23872', '12', '23872', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001086', 'Total Approved Early Childhood Credits Earned', NULL, 'Total semester credits earned in early childhood regardless of whether credits are earned as part of an early childhood degree program, other degree program or outside of a degree program.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21787', '11', '21787', NULL, NULL) +VALUES ('000873', 'Competency Definition Parent Code', 'Learning Standard Item Parent Code, Competency Item Parent Code', 'A human-referenceable code designated by the publisher to identify the parent item in the hierarchy of competency definitions.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23873', '12', '23873', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000792', 'Early Learning Staff Total College Credits Earned', NULL, 'Total number of college credits earned, including all credits within a degree and outside a degree, regardless of whether they all are early childhood credits.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21791', '11', '21791', NULL, NULL) +VALUES ('000874', 'Competency Definition URL', 'Learning Standard Item URL, Competency Item URL', 'A network-resolvable Uniform Resource Locator (URL) pointing to the authoritative reference for the competency definition.', 'Alphanumeric - 512 characters maximum', '0', 'An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23874', '12', '23874', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000793', 'Staff Education Entry Date', NULL, 'The year, month and day that a staff member began participating in an educational experience (course, educational program, or formal education activity).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21792', '11', '21792', NULL, NULL) +VALUES ('000875', 'Competency Definition Blooms Taxonomy Domain', 'Learning Standard Item Blooms Taxonomy Domain, Competency Item Blooms Taxonomy Domain', 'Classification of the Competency Definition using Bloom''s Taxonomy Domains. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23875', '12', '23875', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000794', 'Staff Education Withdrawal Date', NULL, 'The year, month and day that an individual ceased participating in an educational experience without completing the course, educational program, or staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21793', '11', '21793', NULL, NULL) +VALUES ('000876', 'Competency Definition Multiple Intelligence', 'Learning Standard Item Multiple Intelligence, Competency Item Multiple Intelligence', 'Classification of the Competency Definition using intelligences defined for Howard Earl Gardner''s Theory of Multiple Intelligences.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23876', '12', '23876', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000795', 'Employment End Date', NULL, 'The year, month and day on which a person ended self-employment or employment with an organization or institution.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21794', '11', '21794', NULL, NULL) +VALUES ('000877', 'Competency Set Completion Criteria', NULL, 'The criteria for the set of competencies that represent completion or partial completion of a unit, course, program, degree, certification, or other achievement/award. Specifies whether completion requires achievement of all items in the set or some number of items.', NULL, '1', 'The criteria may be ‘all’ competencies in the set or ‘at-least’ # of competencies. Sets may be nested, e.g. all in subset A and 3 of 5 from subset B.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23877', '12', '23877', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000796', 'Hours Worked Per Week', NULL, 'The number of hours worked per week in employment.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21795', '11', '21795', NULL, NULL) +VALUES ('000878', 'Competency Set Completion Criteria Threshold', NULL, 'The minimum number of competencies in the set that must be achieved for completion or partial completion of a unit, course, program, degree, certification, or other achievement/award.', 'Integer - greater than or equal to 0', '0', 'Used to define the completion criteria when Competency Set Completion Criteria is "At Least". Not used when Competency Set Completion Criteria is "All".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23878', '12', '23878', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000797', 'Hourly Wage', NULL, 'Hourly wage associated with the employment position being reported.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21796', '11', '21796', NULL, NULL) +VALUES ('000879', 'Learning Resource Competency Alignment Type', NULL, 'The alignment relationship between the resource and a competency definition object.', NULL, '1', 'A community of SEAs have agreed to use a limited set of Learning Resource Competency Alignment Type options when tagging learning resources in shared resource repositories. Those options are assesses, teaches, and requires.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23879', '12', '23879', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000798', 'Wage Collection Code', NULL, 'Method used for the collection of wage data for an employment record.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21797', '11', '21797', NULL, NULL) +VALUES ('000880', 'Competency Framework Language', 'Learning Standard Document Language', 'The default language of the text used for the content in the competency framework.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23880', '12', '23880', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000799', 'Union Membership Status', NULL, 'An indication of whether the person is a member of a union.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21798', '11', '21798', NULL, NULL) +VALUES ('000881', 'Competency Definition Language', 'Learning Standard Item Language, Competency Item Language', 'The default language of the text used for the content in the competency definition statement.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23881', '12', '23881', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000804', 'Required Training Clock Hours', NULL, 'Number of clock hours of training required for providers to meet requirements of the state.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21803', '11', '21803', NULL, NULL) +VALUES ('000882', 'Competency Framework License', 'Learning Standard Document License', 'A legal document giving official permission to do something with the competency framework.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23882', '12', '23882', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000805', 'State Issuing Professional Credential or License', NULL, 'State where the professional license/credential was issued.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21804', '11', '21804', NULL, NULL) +VALUES ('000883', 'Competency Definition License', 'Learning Standard Item License, Competency Item License', 'The full text or URL reference to a legal document giving official permission to do something with the competency definition statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23883', '12', '23883', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000806', 'Child Development Associate Type', 'CDA Type', 'Type of Child Development Associate credential as defined by options.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21805', '11', '21805', NULL, NULL) +VALUES ('000884', 'Competency Framework Publisher', 'Learning Standard Document Publisher', 'The entity responsible for making the competency framework available.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23884', '12', '23884', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000807', 'Professional Association Membership Status', NULL, 'An indication of whether the person is a member of a professional organization or association.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21806', '11', '21806', NULL, NULL) +VALUES ('000885', 'Competency Framework Rights', 'Learning Standard Document Rights', 'The information about rights held in and over the resource.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23885', '12', '23885', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000808', 'Professional Association Name', NULL, 'The name of a professional association or organization.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21807', '11', '21807', NULL, NULL) +VALUES ('000886', 'Competency Framework Rights Holder', 'Learning Standard Document Rights Holder', 'The person or organization owning or managing rights over the competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23886', '12', '23886', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000809', 'Professional Development Activity Identifier', NULL, 'A unique number or alphanumeric code assigned to the Professional Development Activity as assigned by the organization offering the training.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21808', '11', '21808', NULL, NULL) +VALUES ('000887', 'Competency Definition Concept Keyword', 'Learning Standard Item Concept Keyword, Competency Item Concept Keyword', 'The significant topicality of the competency definition using free-text keywords and phrases.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23887', '12', '23887', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000810', 'Professional Development Activity Title', NULL, 'The title of an activity designed for the purpose of developing someone professionally.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21809', '11', '21809', NULL, NULL) +VALUES ('000888', 'Competency Definition Concept Term', 'Learning Standard Item Concept Term, Competency Item Concept Term', 'The topicality of the competency definition, e.g. "Pythagorean Theorem," "Trigonometric functions," "Forces and energy," "Scientific method," "Oral history," etc.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23888', '12', '23888', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000811', 'Professional Development Scholarship Status', NULL, 'An indication of whether a scholarship was received for the person to participate in the professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21810', '11', '21810', NULL, NULL) +VALUES ('000939', 'Learner Activity Title', NULL, 'The title for work assigned to the learner, which can comprise of learning resources, activities, and assessments.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23940', '12', '23940', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000812', 'Professional Development Financial Support Type', NULL, 'The type of financial assistance received in support of non-credit professional development activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21811', '11', '21811', NULL, NULL) +VALUES ('000940', 'Learner Activity Description', NULL, 'The description and context for the assignment described in a way that the learner can understand.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23941', '12', '23941', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000813', 'Early Learning Core Knowledge Area', NULL, 'A description of the core knowledge areas addressed by Early Learning professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21812', '11', '21812', NULL, NULL) +VALUES ('000889', 'Assessment Registration Assignor Identifier', NULL, 'The unique identifier of the person who assigned the assessment to the learner.', 'Alphanumeric - 40 characters maximum', '0', 'For example, the unique identifier of a classroom teacher or school principal.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23889', '12', '23889', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000814', 'State Approved Trainer Status', NULL, 'An indication of whether an individual has been approved as a trainer through a state process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21813', '11', '21813', NULL, NULL) +VALUES ('000890', 'Assessment Result Descriptive Feedback', NULL, 'The formative descriptive feedback that was given to a learner based on a scored/evaluated portion of an assessment as recorded in the result entity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23890', '12', '23890', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000815', 'State Approved Technical Assistance Provider Status', NULL, 'An indication of whether an individual has been approved as a technical assistance provider through a state process.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21814', '11', '21814', NULL, NULL) +VALUES ('000891', 'Assessment Item Response Descriptive Feedback', NULL, 'The formative descriptive feedback that was given to a learner in response to the results from a scored/evaluated assessment item.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23891', '12', '23891', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000816', 'Number of School-age Education Postsecondary Credit Hours', NULL, 'The number of college course credit hours an individual has successfully completed that are related to K-12 education, parks and recreation, and juvenile justice.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21815', '11', '21815', NULL, NULL) +VALUES ('000892', 'Credential Definition Category Type', 'Credential Category Type', 'A category for defining the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 60 characters maximum', '0', 'Categories could include "Competency Mastered", "Competency Retained", "Course Completed", "Level Completed", "Certificate Earned", "Diploma Earned", "License Earned", "License Endorsement Earned", "Participation", "Academic Honor", "Non-Academic Honor", etc. (This element supports an emerging use case, therefore a complete set of options are not known. Future CEDS versions may define an Achievement Type element when a fixed option set can be compiled.) Note: The Achievement entity is most valuable when linked to a specific competency set that defined the learning standards related to the achievement.(SEE "Achievement Category System")', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23892', '12', '23892', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000818', 'Higher Education Institution Accreditation Status', NULL, 'An indication of the accreditation status of a higher education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21817', '11', '21817', NULL, NULL) +VALUES ('000893', 'Credential Definition Title', 'Credential Title', 'The title assigned to a qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23893', '12', '23893', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000819', 'Wage Verification Code', NULL, 'An indication of whether the wage information has been verified.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21818', '11', '21818', NULL, NULL) +VALUES ('000894', 'Credential Image URL', NULL, 'The Uniform Resource Locator (URL) for the unique address of an image representing an award or badge associated with the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 512 characters maximum', '0', 'Typical use is for online display of a badge image.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23894', '12', '23894', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000820', 'Early Learning Class Group Identifier', NULL, 'A unique number or alphanumeric code assigned by a school, school system, a state, or other agency or entity for a particular early learning class or group.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21819', '11', '21819', NULL, NULL) +VALUES ('000895', 'Credential Definition Description', 'Credential Description', 'A description of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23895', '12', '23895', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000821', 'Early Learning Class Group Name', NULL, 'Name of an early learning class or group.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21820', '11', '21820', NULL, NULL) +VALUES ('000896', 'Credential Definition Criteria', 'Credential Criteria', 'The criteria for competency-based completion of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23896', '12', '23896', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000822', 'Serves Children with Special Needs', NULL, 'An indication of whether a class or group serves children with special needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21821', '11', '21821', NULL, NULL) +VALUES ('000898', 'Credential Award Issuer Name', NULL, 'The name of the agent issuing the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 128 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23898', '12', '23898', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000823', 'Early Learning Class Group Curriculum Type', NULL, 'The type of curriculum used in an early learning classroom or group.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21822', '11', '21822', NULL, NULL) +VALUES ('000900', 'Credential Award Issuer Origin URL', NULL, 'The Uniform Resource Locator (URL) from which the qualification, achievement, personal or organizational quality, or aspect of an identity was issued.', 'Alphanumeric - 512 characters maximum', '0', 'Used only if an award is issued electronically for the achievement.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23900', '12', '23900', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000824', 'Early Learning Group Size Standards Met', NULL, 'An indication of whether a program meets NAEYC or NAFCC standards for infant group sizes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21823', '11', '21823', NULL, NULL) +VALUES ('000901', 'Credential Evidence Statement', NULL, 'A statement or reference describing the evidence that the learner met the criteria for attainment of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', 'A narrative that may connect multiple pieces of evidence OR an IRI or document describing the work that the recipient did to earn the achievement. This can be a page that links out to other pages if linking directly to the work is infeasible. May be used in an array of multiple values.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23901', '12', '23901', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000825', 'Early Learning Program Annual Operating Weeks', NULL, 'The number of operating weeks per year for an early learning program.', 'Integer - between 0 and 52', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21824', '11', '21824', NULL, NULL) +VALUES ('000902', 'Goal Success Criteria', NULL, 'One or more statements that describes the criteria used by teachers and students to check for attainment of a goal.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23902', '12', '23902', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000826', 'Organization Identifier', NULL, 'A unique number or alphanumeric code assigned to an organization by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21825', '11', '21825', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000903', 'Goal Description', NULL, 'A statement that describes the desired outcomes.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23903', '12', '23903', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000827', 'Organization Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21827', '11', '21827', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000904', 'Assessment Item Possible Response Feedback Message', NULL, 'A message provided to the person being assessed after giving a response that matches the possible response.', 'Alphanumeric - 300 characters maximum', '0', 'This may be a message of affirmation for a correct answer or descriptive feedback for an incorrect answer. For example, if the item asked the question what is 2 times 3 and the learner answered 5, the Feedback Message might be "Try multiplication instead of addition."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23904', '12', '23904', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000828', 'Early Learning Program Licensing Status', NULL, 'The current licensing status for an early learning program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21828', '11', '21828', NULL, NULL) +VALUES ('000905', 'Assessment Item Possible Response Sequence Number', NULL, 'The position of this response in the list of responses displayed, such as for a multiple choice item type.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23905', '12', '23905', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000829', 'Early Childhood Program Enrollment Type', NULL, 'The system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21829', '11', '21829', NULL, NULL) +VALUES ('000906', 'Assessment Item Text Complexity Value', NULL, 'The complexity of the text using the scaling system defined by Text Complexity System, e.g. Lexile™ for assessment items with a reading passage.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23906', '12', '23906', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000830', 'Quality Rating and Improvement System Award Date', 'QRIS Award Date', 'Date Quality Rating and Improvement System score, level or rating was awarded.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21830', '11', '21830', NULL, NULL) +VALUES ('000907', 'Assessment Item Text Complexity System', NULL, 'The scaling system used to specify the text complexity of an assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23907', '12', '23907', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000831', 'Quality Rating and Improvement System Expiration Date', 'QRIS Expiration Date', 'Date Quality Rating and Improvement System score, level or rating expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21831', '11', '21831', NULL, NULL) +VALUES ('000908', 'Assessment Item Possible Response Value', NULL, 'The description of each distracter on an assessment item, explaining why it is there, what misunderstandings it exposes.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23908', '12', '23908', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000834', 'Facility Profit Status', NULL, 'An indication of the for-profit status of a facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21834', '11', '21834', NULL, NULL) +VALUES ('000910', 'Competency Definition Text Complexity System', 'Learning Standard Item Text Complexity System, Competency Item Text Complexity System', 'The scaling system used to specify the text complexity of a competency item.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23910', '12', '23910', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000835', 'Number of Early Learning Fatalities', NULL, 'Number of child fatalities at the program in the past year, as defined by the State', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21835', '11', '21835', NULL, NULL) +VALUES ('000911', 'Learning Resource URL', NULL, 'The Uniform Resource Locator where the resource may be accessed, or a proxy for the resource, such as an information page for a commercially available resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23911', '12', '23911', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000836', 'Number of Early Learning Injuries', NULL, 'Number of child injuries at the program in the past year, as defined by the State.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21836', '11', '21836', NULL, NULL) +VALUES ('001533', 'Assessment Form Algorithm Identifier', NULL, 'An identifier for algorithm used to generate a custom form for an adaptive test.', 'Alphanumeric - 40 characters maximum', '0', 'The algorithm is typically used to generate the entire assessment form, but there may be cases in which it is used to generate only one part (Assessment Form Section).

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24508', '12', '24508', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000837', 'Early Learning Program License Suspension Status', NULL, 'An indication of whether a program''s license was suspended due to violations as determined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21837', '11', '21837', NULL, NULL) +VALUES ('001534', 'Assessment Form Algorithm Version', NULL, 'The version of the algorithm used to generate a custom form for an adaptive test.', 'Alphanumeric - 40 characters maximum', '0', 'The algorithm is typically used to generate the entire assessment form, but there may be cases in which it is used to generate only one part (Assessment Form Section).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24509', '12', '24509', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000838', 'Early Learning Program License Revocation Status', NULL, 'An indication of whether a program''s license was revoked due to violations as determined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21838', '11', '21838', NULL, NULL) +VALUES ('001535', 'Assessment Form GUID', NULL, 'The globally unique identifier of an Assessment Form.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24510', '12', '24510', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000840', 'Accreditation Award Date', NULL, 'The year, month and day when an accreditation was awarded.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21840', '11', '21840', NULL, NULL) +VALUES ('001536', 'Assessment Form Section Item Field Test Indicator', NULL, 'Indicates that the assessment item is being field tested on this form of the test, and is not to be included for scoring.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24511', '12', '24511', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000841', 'Accreditation Expiration Date', NULL, 'The year, month and day when an accreditation expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21841', '11', '21841', NULL, NULL) +VALUES ('001537', 'Assessment Item Response Descriptive Feedback Date', NULL, 'The date and time the descriptive feedback was entered in response to the results from a scored/evaluated assessment item.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24512', '12', '24512', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000842', 'Personnel Policy Type', NULL, 'Policies related to personnel in the organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21842', '11', '21842', NULL, NULL) +VALUES ('001538', 'Assessment Item Response Score Status', NULL, 'The status of scoring a person''s response to an assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24513', '12', '24513', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000843', 'Number of Quality Rating and Improvement System Levels', 'Number of QRIS Levels', 'Number of quality levels in the Quality Rating and Improvement System (QRIS).', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21843', '11', '21843', NULL, NULL) +VALUES ('001539', 'Assessment Participant Session Database Name', NULL, 'The name of the database that was used to administer the test.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24514', '12', '24514', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000844', 'Number of Classrooms', NULL, 'The total number of classrooms for a program, facility, location, or other educational environment.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21844', '11', '21844', NULL, NULL) +VALUES ('001540', 'Assessment Participant Session GUID', NULL, 'A globally unique identifier for an instance of a person taking an assessment.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24515', '12', '24515', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000845', 'Program Provides Translated Materials', NULL, 'An indication of whether a program translates written materials into the individual''s home or parent''s language.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21845', '11', '21845', NULL, NULL) +VALUES ('001541', 'Assessment Registration Completion Status', NULL, 'The completion and scoring status for an instance of a person taking an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24516', '12', '24516', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000847', 'Ongoing Health Screening Policy', NULL, 'An indication of whether a program requires that all children are receiving ongoing health screenings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21847', '11', '21847', NULL, NULL) +VALUES ('001542', 'Assessment Registration Completion Status Date Time', NULL, 'The date and time the completion and scoring status was changed for an instance of a person taking an assessment.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24517', '12', '24517', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000848', 'Early Learning Program Developmental Screening Status', NULL, 'An indication of whether a program ensures that all children served by the program are receiving developmental screenings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21848', '11', '21848', NULL, NULL) +VALUES ('001543', 'Assessment Result Data Type', NULL, ' The data type of the assessment result score value.', NULL, '1', 'An Assessment Result in CEDS may apply to an entire assessment or one aspect of evaluation as defined in the related “subtest” entity. The Assessment Result entity is repeatable, so there could be multiple Assessment Result Score Values each using a different Assessment Result Data Type, and each of these score values may be associated with one or more Assessment Performance Level(s).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24518', '12', '24518', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000849', 'Immunization Policy', NULL, 'An indication of whether a program has an immunization policy that specifically indicates that all children are receiving immunizations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21849', '11', '21849', NULL, NULL) +VALUES ('001544', 'Assessment Revision Date', NULL, 'The month, day, and year that the conceptual design for the assessment was most recently revised substantially.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24519', '12', '24519', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000850', 'Referral Policy', NULL, 'An indication of whether the program has a policy for referrals for all children requiring them.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21850', '11', '21850', NULL, NULL) +VALUES ('001545', 'Assessment Result Descriptive Feedback Date Time', NULL, 'The date and time the descriptive feedback was entered for a scored/evaluated portion of an assessment.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24520', '12', '24520', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000851', 'Program Health Safety Checklist Use Status', NULL, 'An indication of whether a program uses a health or safety checklist or documentation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21851', '11', '21851', NULL, NULL) +VALUES ('001546', 'Assessment Result Score Standard Error', NULL, 'The measure of sampling variability and measurement error for the score, the amount of error to be expected in the score.', 'Numeric', '0', 'See http://nces.ed.gov/nationsreportcard/NDEHelp/WebHelp/standard_error.htm', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24522', '12', '24522', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000852', 'Special Circumstances Population Served', NULL, 'Program provides services to meet the needs of children in special circumstances.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21852', '11', '21852', NULL, NULL) +VALUES ('001547', 'Assessment Result Score Type', NULL, 'Indicates the purpose for which this assessment score instance was recorded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24523', '12', '24523', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000853', 'Program Provides Written Handbook', NULL, 'An indication of whether the program provides each parent with a written handbook.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21853', '11', '21853', NULL, NULL) +VALUES ('001548', 'Charter School Open Enrollment Indicator', NULL, 'Indicates that the charter school offers open enrollment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24524', '12', '24524', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000854', 'Program Collects Parental Feedback', NULL, 'An indication of whether the program collects feedback from parents that informs program content and/or administration.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21854', '11', '21854', NULL, NULL) +VALUES ('001549', 'Course Department Name', NULL, 'Department with jurisdiction over this course.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24525', '12', '24525', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000855', 'Program Provides Parent Involvement Opportunity', NULL, 'An indication of whether the program provides opportunities to parents to be involved with their children''s activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21855', '11', '21855', NULL, NULL) +VALUES ('001550', 'Crisis Description', NULL, 'A description of the crisis that caused the displacement of students.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24526', '12', '24526', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000856', 'Program Provides Parent Education', NULL, 'An indication of whether the program provides parent training/education/workshops.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21856', '11', '21856', NULL, NULL) +VALUES ('001552', 'Crisis End Date', NULL, 'The date on which the crisis ceased to affect the agency.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24528', '12', '24528', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000857', 'Parent Communication Method', NULL, 'The types of communication methods with parents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21857', '11', '21857', NULL, NULL) +VALUES ('001553', 'Early Childhood Services Offered', NULL, 'A type of service offered by an organization that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24529', '12', '24529', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000858', 'Assessment Shared with Parents', NULL, 'An indication of whether assessment results are shared with parents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21858', '11', '21858', NULL, NULL) +VALUES ('001554', 'Financial Account Number', NULL, 'A number given to a financial account within a local source accounting system. The number may be a concatenation of a standard prefix for the type of account with digits added that have specific meaning within the local system.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24530', '12', '24530', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000859', 'Program Transition Planning Policy', NULL, 'An indication of whether a program has a transition planning policy (to center, to classroom, to school).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21859', '11', '21859', NULL, NULL) +VALUES ('001555', 'Financial Expenditure Level of Instruction Code', NULL, 'This classification permits expenditures to be segregated by instructional level.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24531', '12', '24531', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000862', 'Economic Research Service Rural-Urban Continuum Code', 'ERS Rural-Urban Continuum Code', 'Rural-Urban Continuum Codes form a classification scheme that distinguishes metropolitan (metro) counties by the population size of their metro area, and nonmetropolitan (nonmetro) counties by degree of urbanization and adjacency to a metro area or areas. The metro and nonmetro categories have been subdivided into three metro and six nonmetro groupings, resulting in a nine-part county codification. The codes allow researchers working with county data to break such data into finer residential groups beyond a simple metro-nonmetro dichotomy, particularly for the analysis of trends in nonmetro areas that may be related to degree of rurality and metro proximity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21862', '11', '21862', NULL, NULL) +VALUES ('001575', 'Tuition Funded', NULL, 'Indicates that tuition for person''s participation in a program, service, or course is funded or partially funded by an external grant program.', NULL, '1', 'The initial use case is for professional development courses/programs, but could apply to student programs/courses as well.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24554', '12', '24554', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000863', 'Program Follows Salary Scale', NULL, 'An indication of whether a program has a salary scale that is followed for practitioners', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21863', '11', '21863', NULL, NULL) +VALUES ('001556', 'Financial Expenditure Project Reporting Code', NULL, 'The project/reporting code permits organizations to accumulate expenditures to meet a variety of specialized reporting requirements at the local, state, and federal levels. It is a three-digit code with the format 00X. The first two digits identify the particular funding source, authority, or expenditure purpose for which a special record or report is required. The third digit is available to identify particular projects and the fiscal year of the appropriation within that funding source. Each classification is presented by a code range followed by a description.', 'Numeric', '0', 'Based on the following code conventions specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition":

010 to 190 Local Projects. Expenditures that require specialized reporting and are funded from local sources.

200 to 390 State Projects. Expenditures that require specialized reporting for categorically funded state programs.

400 to 990 Federal Projects. Expenditures that require specialized reporting to the federal government directly or through the state.

1000 Noncategorical. Expenditures that do not require specialized reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24532', '12', '24532', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000864', 'Early Learning Program Year', NULL, 'The year the program is operating.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21864', '11', '21864', NULL, NULL) +VALUES ('001557', 'Learner Action Actor Identifier', NULL, ' A unique identifier for the person performing the learner action. The identifier should be encrypted when integrating learning experience data across systems to secure the privacy of the learner.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24533', '12', '24533', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000865', 'State Licensed Facility Capacity', NULL, 'The maximum number of children for which a state licensed a facility.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21865', '11', '21865', NULL, NULL) +VALUES ('001558', 'Learner Action Object Description', NULL, 'A description of the object upon which the person has performed the Learner Action.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24534', '12', '24534', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000866', 'Full-Time Employee Benefits', NULL, 'The benefits offered by a program/facility/employer for full-time staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21866', '11', '21866', NULL, NULL) +VALUES ('001559', 'Learner Action Object Identifier', NULL, 'A globally unique identifier for the object upon which the learning has performed the Learner Action which may be a URL with information about a learning resource or to launch the resource.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24535', '12', '24535', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000867', 'Part-Time Employee Benefits', NULL, 'The benefits offered by a program/facility/employer for part-time staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21867', '11', '21867', NULL, NULL) +VALUES ('001560', 'Learner Action Object Type', NULL, 'The type of object upon which a person has performed the Learner Action.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24536', '12', '24536', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000868', 'Differential Shift Pay Indicator', NULL, 'An indication of whether staff receive differential shift pay.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21868', '11', '21868', NULL, NULL) +VALUES ('001561', 'Learning Resource Access Rights URL', NULL, 'A Uniform Resource Locator (URL) that identifies the conditions that govern the user’s ability to access a learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24537', '12', '24537', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000869', 'Competency Association Type', 'Learning Standard Item Association Type', 'Defines the nature of the association between a Competency Definition and an associated data object such as a Learning Resource, an Assessment Item, or even another Competency Definition.', NULL, '1', 'The Learning Standard Item Association entity defines metadata relationships between a Learning Standard Item and other objects or relationships between Learning Standard Items not otherwise defined in the normal taxonomy of the framework such as for competency-based pathways, relationships between different versions of the same learning standard, and relationships to resources.


For example, "Prerequisite" may indicate that the Associated Learning Standard Item is a Prerequisite of this Learning Standards Item. Another association may specify that a Learning Resource "Teaches" the specified Learning Standard Item, or is aligned to the "Reading Level" specified as part of the Learning Standard Item.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21869', '11', '21869', NULL, NULL) +VALUES ('001562', 'Learning Resource Author Type', NULL, 'The type of entity, organization or person, that authored the learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24540', '12', '24540', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000871', 'Competency Association Identifier URI', 'Learning Standard Item Association Identifier URI', 'A URI that establishes uniqueness of an association between a competency definition and another competency item or other objects such as learning resources.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21871', '11', '21871', NULL, NULL) +VALUES ('001563', 'Learning Resource Author URL', NULL, 'A Uniform Resource Locator (URL) attributed to the author of a learning resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24541', '12', '24541', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001469', 'Rubric Criterion Category', NULL, 'A textual label for category by which Rubric Criterion may be grouped.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22441', '11', '22441', NULL, NULL) +VALUES ('001564', 'Learning Resource Date Modified', NULL, 'The most recent date that the learning resource was updated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24542', '12', '24542', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001470', 'Rubric Criterion Description', NULL, 'Text describing a criterion that must be met to demonstrate quality for a product, process, or performance task.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22442', '11', '22442', NULL, NULL) +VALUES ('001565', 'Learning Resource Interaction Mode', NULL, 'The primary type of interaction, synchronous or asynchronous, defined for the learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24543', '12', '24543', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001471', 'Rubric Criterion Level Description', NULL, 'Text describing one or more benchmarks that must be met to achieve a degree of achievement on a product, process, or performance task.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22443', '11', '22443', NULL, NULL) +VALUES ('001566', 'Learning Resource Author Email', NULL, 'An email address for the author of the learning resource.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24544', '12', '24544', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001472', 'Rubric Criterion Level Feedback', NULL, 'Pre-defined feedback text to be relayed to the person or organization being evaluated. This may include guidance and suggestions for improvement or development.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22444', '11', '22444', NULL, NULL) +VALUES ('001567', 'Learning Resource Publisher Email', NULL, 'An email address for the publisher of the learning resource.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24545', '12', '24545', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001473', 'Rubric Criterion Level Position', NULL, 'A numeric value representing the level''s position in the list of levels defined for the Rubric Criterion.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22445', '11', '22445', NULL, NULL) +VALUES ('001568', 'Learning Resource Publisher URL', NULL, 'A Uniform Resource Locator (URL) attributed to the publisher of a learning resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24547', '12', '24547', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001474', 'Rubric Criterion Level Quality Label', NULL, 'A qualitative description of this degree of achievement used for column headers or row labels in tabular rubrics.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22446', '11', '22446', NULL, NULL) +VALUES ('001569', 'Competency Framework Publication Date', 'Learning Standard Document Publication Date', 'The date on which this content was first published.', 'YYYY-MM-DD', '0', 'This may or may not be different from the Learning Standard Document Valid Start Date.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24548', '12', '24548', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001475', 'Rubric Criterion Level Score', NULL, 'The points awarded for achieving this level.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22447', '11', '22447', NULL, NULL) +VALUES ('001570', 'Competency Definition Sequence', 'Learning Standard Item Sequence, Competency Item Sequence', 'A set of one or more alphanumeric characters and/or symbols denoting the positioning of the statement being described in a sequential listing of statements.', 'Alphanumeric - 60 characters maximum', '0', 'Based on ASN''s ListID. (add reference URL)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24549', '12', '24549', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001476', 'Rubric Criterion Position', NULL, 'A numeric value representing this criterion''s position in the criteria list for this rubric.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22448', '11', '22448', NULL, NULL) +VALUES ('001571', 'Person Identification System', NULL, 'A coding scheme that is used for identification of a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24550', '12', '24550', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001477', 'Rubric Criterion Title', NULL, 'The title of the rubric criterion.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22449', '11', '22449', NULL, NULL) +VALUES ('001572', 'Person Identifier', NULL, 'A unique number or alphanumeric code assigned to a person by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24551', '12', '24551', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001478', 'Rubric Criterion Weight', NULL, 'A numeric weight assigned to this Rubric Criterion, used for scored rubrics.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22450', '11', '22450', NULL, NULL) +VALUES ('001573', 'Student Course Section Grade Narrative', NULL, 'The narrative of the student performance in a course section as submitted by the instructor.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24552', '12', '24552', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001479', 'Rubric Description', NULL, 'Text describing the intended use of the rubric.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22451', '11', '22451', NULL, NULL) +VALUES ('001574', 'Credits Required', NULL, 'The total number of credits required for a student to graduate from the school of enrollment or complete a program.', 'Numeric - up to 2 digits after decimal place', '0', 'May be compared to the sum of Number of Credits Earned for courses associated with the program of study to determine the remaining credits that the student needs to complete the program.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24553', '12', '24553', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001480', 'School Courses for the Exchange of Data Grade Span', 'SCED Grade Span', 'The grade span for which the course is appropriate.', 'Alphanumeric - exactly 4 characters in length', '0', 'The span is represented by a four-character code with no decimals. Each grade level from 1 through 12 is represented by a two-digit code, ranging from 01 to 12; kindergarten is represented by the letters KG and prekindergarten by the letters PK.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22452', '11', '22452', NULL, NULL) +VALUES ('001576', 'Military Connected Student Indicator', NULL, 'An indication that the student’s parent or guardian is on Active Duty, in the National Guard, or in the Reserve components of the United States military services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24555', '12', '24555', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001481', 'Referral Date', NULL, 'The date of referral.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22453', '11', '22453', NULL, NULL) +VALUES ('001577', 'Active Military Status Indicator', NULL, 'Indicates whether a person is an active member of the active duty forces, national guard, or reserve forces.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24556', '12', '24556', 'Updated', 'Modify element name, defintion, technical name, option set, and DES locations') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001482', 'Referral Outcome', NULL, 'The outcome of the referral.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22454', '11', '22454', NULL, NULL) +VALUES ('001578', 'Military Veteran Status Indicator', NULL, 'An indication that a person is a veteran who served on Active Duty, in the National Guard, or in the Reserve components of the United States military services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24557', '12', '24557', 'Updated', 'Modify element name, defintion, technical name, option set, and DES locations') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001483', 'Referral Reason', NULL, 'The reason for the referral.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22455', '11', '22455', NULL, NULL) +VALUES ('001579', 'Admission Consideration Level', NULL, 'The level of consideration given a type of admission criteria used at an institution during the selection process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24558', '12', '24558', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001484', 'Referral Source', NULL, 'The person, program, or organization making the initial referral.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22456', '11', '22456', NULL, NULL) +VALUES ('001580', 'Admission Consideration Type', NULL, 'The type of admission consideration used at an institution during the selection process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24559', '12', '24559', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001485', 'Referral Type Received', NULL, 'A type of service that a child or family has received a referral for.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22457', '11', '22457', NULL, NULL) +VALUES ('001581', 'Staff Approval Indicator', NULL, 'Individual is approved to Work with Children', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24560', '12', '24560', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001486', 'Referred To', NULL, 'The program or organization to which the child/family was referred.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22458', '11', '22458', NULL, NULL) +VALUES ('001582', 'Billable Basis Type', NULL, 'The event/action that results in a billable action.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24561', '12', '24561', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001487', 'Short Name of Organization', NULL, 'The name of the organization, which could be abbreviated form of the full legally accepted name.', 'Alphanumeric - 30 characters maximum', '0', 'An abbreviated name of an institution is commonly used, especially in reports and applications, e.g. a K12 school with the full legal name "Dr. Martin Luther King, Jr. Elementary School" may use "King Elementary".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22459', '11', '22459', 'Updated', 'Changed name of element, technical name, and definition. Added elements to DES context to all organization domains.') +VALUES ('001583', 'Career Pathways Program Participation Exit Date', NULL, 'The year, month and day on which the person ceased to participate in a program.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24562', '12', '24562', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001488', 'Reason for Declined Services', NULL, 'The reason given for declining the recommended services.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22460', '11', '22460', NULL, NULL) +VALUES ('001584', 'Career Pathways Program Participation Start Date', NULL, 'The year, month and day on which the person began to participate in a career pathway program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24563', '12', '24563', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001489', 'Sponsoring Agency Name', NULL, 'The name of the sponsoring agency.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22461', '11', '22461', NULL, NULL) +VALUES ('001587', 'Credential or License Award Entity', NULL, 'The name of the organization awarding the individual''s credential or license.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24566', '12', '24566', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001490', 'State Agency Identifier', NULL, 'A unique number or alphanumeric code assigned to a state agency.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22462', '11', '22462', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001588', 'Developmental Education Referral Status', NULL, 'The status of a student''s referral to or placement into developmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24567', '12', '24567', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001491', 'State Agency Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes to refer to a state agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22463', '11', '22463', 'Updated', 'Added new options to the existing option set. Changed definition for grammatical error. Added elements to DES contexts to support Early Learning needs.') +VALUES ('001589', 'Developmental Education Type', NULL, 'An indicator of the category of developmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24568', '12', '24568', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001492', 'Professional Development Activity Target Audience', NULL, 'A categorization of the audience for which the professional development activity is intended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22464', '11', '22464', NULL, NULL) +VALUES ('001590', 'Directory Information Block Status', NULL, 'An indication of whether a individual requested a Family Education Rights and Privacy Act (FERPA) block to withhold the release of the person''s directory information.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24569', '12', '24569', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001493', 'Technical Assistance Approved Indicator', NULL, 'Indicates whether or not the technical assistance was approved.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22465', '11', '22465', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001591', 'Early Childhood Education and Assistance Program Eligibility', NULL, 'Denotes whether the family member can receive Early Childhood Education and Assistance Program (ECEAP) information for the child in question.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24570', '12', '24570', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001494', 'Technical Assistance Delivery Type', NULL, 'The method of delivery of technical assistance received/provided', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22466', '11', '22466', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001592', 'Early Learning Enrollment Application Verification Date', NULL, 'Date the required document was verified for the enrollment application', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24571', '12', '24571', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001495', 'Technical Assistance Type', NULL, 'The type of technical assistance provided.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22467', '11', '22467', NULL, NULL) +VALUES ('001593', 'Early Learning Enrollment Application Document Identifier', NULL, 'Identifier for an enrollment application document record.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24572', '12', '24572', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001496', 'Thesis or Dissertation Title', NULL, 'The title of the thesis or dissertation.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22468', '11', '22468', NULL, NULL) +VALUES ('001594', 'Early Learning Enrollment Application Document Name', NULL, 'Document name for an enrollment application document record.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24573', '12', '24573', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001497', 'Union Membership Name', NULL, 'The name of the labor organization of which the person is a member.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22469', '11', '22469', NULL, NULL) +VALUES ('001595', 'Early Learning Enrollment Application Document Type', NULL, 'Document type for an enrollment application document record.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24574', '12', '24574', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001498', 'Weeks Employed Per Year', NULL, 'The number of weeks employed by year.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22470', '11', '22470', NULL, NULL) +VALUES ('001597', 'Early Learning Application Identifier', NULL, 'Identifier for the application for enrollment or direct services filled out on behalf of a child', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24576', '12', '24576', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001499', 'Work-based Learning Opportunity Type', NULL, 'The type of work-based learning opportunity a student participated in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', '11', '22471', NULL, NULL) +VALUES ('001599', 'Early Learning Application Required Document', NULL, 'Identifies a specific document required for enrollment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24578', '12', '24578', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001500', 'IDEA Part C to Part B Notification Date', NULL, 'The date that notification is provided to the State Education Agency (SEA) and local education agency (LEA) of residence for a child potentially eligible for Part B (619) preschool services.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22472', '11', '22472', NULL, NULL) +VALUES ('001600', 'Early Learning Enrollment Application Verification Reason Type', NULL, 'Identifies the reason for verification of enrollment application information', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24579', '12', '24579', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001501', 'IDEA IEP Status', NULL, 'The status of an individualized services plan for a specified reporting period or on a specified date.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22473', '11', '22473', NULL, NULL) +VALUES ('001602', 'Early Learning Education Staff Classification', NULL, 'The title/role of employment, official status, or rank of education staff', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24581', '12', '24581', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001503', 'Early Learning Outcome Time Point', NULL, 'The point in time for which the result is used for an outcome measure.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22475', '11', '22475', NULL, NULL) +VALUES ('001603', 'Early Learning Local Revenue Source', NULL, 'Funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24582', '12', '24582', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001504', 'Child Outcomes Summary Progress A Indicator', 'COS Progress A Indicator', 'Indicates that the child demonstrates progress in positive social-emotional skills, including social relationships.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22476', '11', '22476', NULL, NULL) +VALUES ('001604', 'Early Learning Service Type', NULL, 'A type of service provided to a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24583', '12', '24583', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001505', 'Child Outcomes Summary Progress B Indicator', 'COS Progress B Indicator', 'Indicates that the child demonstrates progress in acquisition and use of knowledge and skills, including early language/communication.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22477', '11', '22477', NULL, NULL) +VALUES ('001605', 'Early Learning State Revenue Source', NULL, ' Funds that originate at the State, and not from a federal or local source, that contribute to EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24584', '12', '24584', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001506', 'Child Outcomes Summary Progress C Indicator', 'COS Progress C Indicator', 'Indicates that the child demonstrates progress in use of appropriate behaviors to meet their needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22478', '11', '22478', NULL, NULL) +VALUES ('001606', 'Early Learning Trainer Core Knowledge Area', NULL, 'A description of the core knowledge expertise of a trainer of a professional development experience.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24585', '12', '24585', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001507', 'Child Outcomes Summary Rating A', 'COS Rating A', 'Child''s level of functioning in positive social-emotional skills (including social relationships).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22479', '11', '22479', NULL, NULL) +VALUES ('001607', 'Education Verification Method', NULL, 'The method by which the formal education is verified.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24586', '12', '24586', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001508', 'Child Outcomes Summary Rating B', 'COS Rating B', 'Child''s level of functioning in the acquisition and use of knowledge and skills (including early language/communication.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22480', '11', '22480', NULL, NULL) +VALUES ('001609', 'Financial Aid Veteran’s Benefit Status', NULL, 'An indication of whether a person is receiving Veteran''s benefits.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24588', '12', '24588', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001509', 'Child Outcomes Summary Rating C', 'COS Rating C', 'Child''s level of functioning in the use of appropriate behaviors to meet their needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22481', '11', '22481', NULL, NULL) +VALUES ('001610', 'Financial Aid Veteran’s Benefit Type', NULL, 'The type of Veteran''s benefits a person is receiving.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24589', '12', '24589', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001510', 'Method of Service Delivery', NULL, 'The method by which the services will be provided.', 'Alphanumeric - 60 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22482', '11', '22482', NULL, NULL) +VALUES ('001611', 'Financial Aid Year Designator', NULL, 'The school year for which the student''s financial aid application and award data apply. Generally, this is the 12-month period from July 1 to June 30.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24590', '12', '24590', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001511', 'Competency Definition Valid End Date', 'Learning Standard Item Valid End Date, Competency Item Valid End Date', 'The year, month and day the competency definition was deprecated/replaced by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', 'When not specified, the entity is assumed to contain the most current version of the specified competency definition. All CEDS Exit and End Dates represent the last day of the date range specified, in this case the last day the competency definition was valid.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22483', '11', '22483', NULL, NULL) +VALUES ('001612', 'Included in Counted Family Size', NULL, 'Denotes whether this family member is counted in the family size as it pertains to the federal poverty level', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24591', '12', '24591', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001512', 'Competency Definition Valid Start Date', 'Learning Standard Item Valid Start Date, Competency Item Valid Start Date', 'The year, month and day the competency definition was adopted by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22484', '11', '22484', NULL, NULL) +VALUES ('001613', 'IPEDS Collection Year Designator', NULL, 'The academic year, generally extending from September to June, in which IPEDS data is collected. Most Institutional Characteristics, Salaries, Fall Staff, Fall Enrollment, and Employees by Assigned Position data are collected for the current year; Completions, 12-Month Enrollment, Student Financial Aid, and Finance data collections cover the prior year.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24592', '12', '24592', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001513', 'Other Last Name', NULL, 'A last name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other Last Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22485', '11', '22485', NULL, NULL) +VALUES ('001614', 'Memorandum of Understanding End Date', NULL, 'The date that a Memorandum of Understanding between the Early Learning Organization and the Service Partner is determined to expire.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24593', '12', '24593', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001514', 'Other First Name', NULL, 'A first name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other First Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22486', '11', '22486', NULL, NULL) +VALUES ('001615', 'Memorandum of Understanding Start Date', NULL, 'The effective date that a Memorandum of Understanding between the Early Learning Organization and the Service Partner Organization is effective.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24594', '12', '24594', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001515', 'Other Middle Name', NULL, 'A middle name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other Middle Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22487', '11', '22487', NULL, NULL) +VALUES ('001616', 'Postsecondary Program Level', NULL, 'The level describing the concentration of study for a postsecondary program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24595', '12', '24595', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001516', 'School Courses for the Exchange of Data Course Level', 'SCED Course Level', ' The course''s level of rigor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22488', '11', '22488', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001617', 'Postsecondary Exit or Withdrawal Type', NULL, ' The circumstances under which the student exited from enrollment in a postsecondary institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24596', '12', '24596', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001517', 'School Courses for the Exchange of Data Course Code', 'SCED Course Code', 'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', NULL, '1', 'https://nces.ed.gov/forum/SCED.asp', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490', '11', '22490', 'Updated', 'Added new options to the existing option set. Updated existing options. Added elements to DES contexts to support Early Learning needs.') +VALUES ('001618', 'Eligibility Priority Points', NULL, 'Priority points used to determine eligibility and placement order', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24597', '12', '24597', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001518', 'School Courses for the Exchange of Data Course Subject Area', 'SCED Course Subject Area', 'The intended major subject area of the education course.', NULL, '1', 'This is a compilation of Secondary Course Subject Area and Prior to Secondary Course Subject Area. This version merges SCED and pSCED.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', '11', '22491', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001619', 'Professional Development Activity State Approved Status', NULL, 'An indication of whether a training activity has been approved through a state process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24598', '12', '24598', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001519', 'Individualized Program Planned Service Frequency', NULL, 'The frequency that a service is planned to be provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22492', '11', '22492', NULL, NULL) +VALUES ('001620', 'Professional Development Plan Approved by Supervisor', NULL, 'Professional development plan is approved by the employee''s supervisor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24599', '12', '24599', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001520', 'Individualized Program Planned Service Duration', NULL, 'The length, in hours, that delivery of the service is planned.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22493', '11', '22493', NULL, NULL) +VALUES ('001621', 'Professional Development Plan Completion', NULL, 'The date the professional development plan is completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24600', '12', '24600', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001521', 'Reason for Delay of Transition Conference', NULL, 'The reasons for the delay of a transition conference.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22494', '11', '22494', NULL, NULL) +VALUES ('001622', 'Reimbursement Type', NULL, 'A billable basis which defines payment. This is how state agencies/programs move funding to the local provider/agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24601', '12', '24601', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001524', 'Competency Definition Previous Version Identifier', 'Learning Standard Item Previous Version Identifier, Competency Item Previous Version Identifier', 'The unique identifier of the previous version of the Competency Definition if the statement was modified.', 'Alphanumeric - 40 characters maximum', '0', 'This element supports version histories at the statement level. If corrections have been made to individual items/statements that are not part of a new Competency Framework, the elements ''Competency Definition Previous Version Identifier'' and ''Competency Definition Current Version Indicator'' provide a reference to historical versions of the current statement. In such uses the ''Competency Definition Code'' could be the same for multiple versions of a statement and ''Competency Definition URL'' could resolve to the most current version of the statement.


CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.


An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22498', '11', '22498', NULL, NULL) +VALUES ('001623', 'Scheduled Well Child Screening', NULL, 'The individual well child visit scheduled according to the AAP recommended periodicity schedule.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24602', '12', '24602', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001525', 'Competency Definition Current Version Indicator', 'Learning Standard Item Current Version Indicator, Competency Item Current Version Indicator', 'Indicates that this is the most current version of the Competency Definition.', NULL, '1', 'This element supports version histories at the statement level. If corrections have been made to individual items/statements that are not part of a new Competency Framework, the elements ''Competency Definition Previous Version Identifier'' and ''Competency Definition Current Version Indicator'' provide a reference to historical versions of the current statement. In such uses the ''Competency Definition Code'' could be the same for multiple versions of a statement and ''Competency Definition URL'' could resolve to the most current version of the statement.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22499', '11', '22499', NULL, NULL) +VALUES ('001624', 'Service Partner Description', NULL, 'A description of the type of services that the partner organization provides.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24603', '12', '24603', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001526', 'Accreditation Agency Name', NULL, 'The full name of an agency that accredited a school.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22500', '11', '22500', NULL, NULL) +VALUES ('001625', 'Service Partner Name', NULL, 'The name of a non-person entity such as an organization, institution, agency or business, that partners with the Early Learning Organization to provide services to enrolled children/families.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24606', '12', '24606', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001527', 'Activity Time Involved', NULL, 'The amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22502', '11', '22502', NULL, NULL) +VALUES ('001627', 'Site Preference Rank', NULL, 'The applicant preference that the family has for the program sites.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24608', '12', '24608', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001528', 'Activity Time Measurement Type', NULL, 'The type of measurement for the amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22503', '11', '22503', NULL, NULL) +VALUES ('001628', 'Training and Technical Assistance Level', NULL, 'The level of expertise an individual training and technical assistance specialist has based on a set of established criteria.', 'Alphanumeric - 100 characters maximum', '0', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24609', '12', '24609', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001529', 'APIP Interaction Sequence Number', NULL, 'The position of this APIP Interaction in a sequence of interactions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22504', '11', '22504', NULL, NULL) +VALUES ('001629', 'Transfer-out Indicator', NULL, 'An indicator of whether the student has transferred to another institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24610', '12', '24610', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001530', 'Activity Description', NULL, 'A description of the events and procedures that take place under the purview of an organized activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22505', '11', '22505', NULL, NULL) +VALUES ('001630', 'Trimester When Prenatal Care Began', NULL, 'The trimester of pregnancy in which a child''s mother began receiving prenatal health care.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24611', '12', '24611', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001531', 'Assessment Administration Period Description', NULL, 'The period or window in which an assessment is supposed to be administered.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22506', '11', '22506', NULL, NULL) +VALUES ('001631', 'Well Child Screening Received Date', NULL, 'The year, month and day of a well child visit.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24612', '12', '24612', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001532', 'Assessment Form Adaptive Indicator', NULL, 'Indicates that the assessment form was generated using an algorithm rather than a fixed form.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22507', '11', '22507', NULL, NULL) +VALUES ('001632', 'Early Learning Employment Separation Reason', NULL, 'The primary reason for the termination of the employment relationship.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24613', '12', '24613', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001533', 'Assessment Form Algorithm Identifier', NULL, 'An identifier for algorithm used to generate a custom form for an adaptive test.', 'Alphanumeric - 40 characters maximum', '0', 'The algorithm is typically used to generate the entire assessment form, but there may be cases in which it is used to generate only one part (Assessment Form Section).

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22508', '11', '22508', NULL, NULL) +VALUES ('001633', 'Community-based Type', NULL, 'Non domestic residence in which the early learning setting is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24614', '12', '24614', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001534', 'Assessment Form Algorithm Version', NULL, 'The version of the algorithm used to generate a custom form for an adaptive test.', 'Alphanumeric - 40 characters maximum', '0', 'The algorithm is typically used to generate the entire assessment form, but there may be cases in which it is used to generate only one part (Assessment Form Section).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22509', '11', '22509', NULL, NULL) +VALUES ('001634', 'Inclusive Setting Indicator', NULL, 'Indicates that services are provided to the child in a place where children of all abilities learn together.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24615', '12', '24615', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001535', 'Assessment Form GUID', NULL, 'The globally unique identifier of an Assessment Form.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22510', '11', '22510', NULL, NULL) +VALUES ('001635', 'Service Date', NULL, 'The year, month, and day on which a service was provided.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24616', '12', '24616', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001536', 'Assessment Form Section Item Field Test Indicator', NULL, 'Indicates that the assessment item is being field tested on this form of the test, and is not to be included for scoring.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22511', '11', '22511', NULL, NULL) +VALUES ('001636', 'Early Learning Service Professional Staff Classification', NULL, 'The title/role of employment, official status, or rank of early learning service professionals', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24617', '12', '24617', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001537', 'Assessment Item Response Descriptive Feedback Date', NULL, 'The date and time the descriptive feedback was entered in response to the results from a scored/evaluated assessment item.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22512', '11', '22512', NULL, NULL) +VALUES ('001637', 'ISO 639-3 Language Code', NULL, 'The code for the specific language or dialect that a person uses to communicate.', NULL, '1', 'The CEDS ISO 639-3 Language Code option set comes from the ISO 639-3 standard, the Latin-1 download. Only living language code types from the ISO standard are included in the CEDS list. Special scope and discontinued codes are excluded.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24618', '12', '24618', 'Updated', 'Add new option set, change option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001538', 'Assessment Item Response Score Status', NULL, 'The status of scoring a person''s response to an assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22513', '11', '22513', NULL, NULL) +VALUES ('001638', 'ISO 639-5 Language Family', NULL, 'A code for a specific language family, which supplements the language groups and families in the ISO 639-2 Language Code.', NULL, '1', 'The CEDS ISO 639-5 Language Family option set comes from the ISO 639-5 standard.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24619', '12', '24619', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001539', 'Assessment Participant Session Database Name', NULL, 'The name of the database that was used to administer the test.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22514', '11', '22514', NULL, NULL) +VALUES ('001639', 'Fiscal Year', NULL, 'The year an organization uses for budgeting, accounting, and reporting financials.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24620', '12', '24620', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001540', 'Assessment Participant Session GUID', NULL, 'A globally unique identifier for an instance of a person taking an assessment.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22515', '11', '22515', NULL, NULL) +VALUES ('001640', 'Military Branch', NULL, 'A branch of the U.S. Military applicable for specifying more details when using Military Connected Student Indicator, Military Active Student Indicator, Military Veteran Student Indicator, and Military Enlistment After Exit elements.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24621', '12', '24621', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001541', 'Assessment Registration Completion Status', NULL, 'The completion and scoring status for an instance of a person taking an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22516', '11', '22516', NULL, NULL) +VALUES ('001641', 'DQP Categories of Learning', NULL, 'The Lumina Foundation''s Degree Qualifications Profile offers reference points for what students should know and be able to do upon completion of associate, bachelor''s and master''s degrees – in any field of study. The DQP Categories of Learning provide a profile of what degrees mean within which specific proficiencies may be defined.', NULL, '1', 'Based on the Degree Qualifications Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24622', '12', '24622', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001542', 'Assessment Registration Completion Status Date Time', NULL, 'The date and time the completion and scoring status was changed for an instance of a person taking an assessment.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22517', '11', '22517', NULL, NULL) +VALUES ('001642', 'Fiscal Period Begin Date', NULL, 'The year, month and day on which an accounting period begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24623', '12', '24623', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001543', 'Assessment Result Data Type', NULL, ' The data type of the assessment result score value.', NULL, '1', 'An Assessment Result in CEDS may apply to an entire assessment or one aspect of evaluation as defined in the related “subtest” entity. The Assessment Result entity is repeatable, so there could be multiple Assessment Result Score Values each using a different Assessment Result Data Type, and each of these score values may be associated with one or more Assessment Performance Level(s).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22518', '11', '22518', NULL, NULL) +VALUES ('001643', 'Fiscal Period End Date', NULL, 'The year, month and day on which an accounting period ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24624', '12', '24624', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001544', 'Assessment Revision Date', NULL, 'The month, day, and year that the conceptual design for the assessment was most recently revised substantially.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22519', '11', '22519', NULL, NULL) +VALUES ('001644', 'Financial Accounting Period Encumbered Value', NULL, 'The planned or obligated expense value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', 'Used for purchase order balances, the value not already included in "Financial Accounting Period Actual Value" as an expense.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24625', '12', '24625', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001545', 'Assessment Result Descriptive Feedback Date Time', NULL, 'The date and time the descriptive feedback was entered for a scored/evaluated portion of an assessment.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22520', '11', '22520', NULL, NULL) +VALUES ('001645', 'Financial Account Program Name', NULL, 'The name given to the program area in an organization''s accounting system.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24626', '12', '24626', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001546', 'Assessment Result Score Standard Error', NULL, 'The measure of sampling variability and measurement error for the score, the amount of error to be expected in the score.', 'Numeric', '0', 'See http://nces.ed.gov/nationsreportcard/NDEHelp/WebHelp/standard_error.htm', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22522', '11', '22522', NULL, NULL) +VALUES ('001646', 'Financial Account Program Number', NULL, 'A number given to a program area within an organization''s accounting system.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24627', '12', '24627', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001547', 'Assessment Result Score Type', NULL, 'Indicates the purpose for which this assessment score instance was recorded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22523', '11', '22523', NULL, NULL) +VALUES ('001647', 'Financial Accounting Value', NULL, 'The value of a financial account balance or transaction.', 'Numeric - up to 2 digits after decimal place', '0', 'Used to represent a point-in-time transaction or snapshot of an account/fund balance. Use “Financial Accounting Period Budgeted Value”, “Financial Accounting Period Actual Value”, and “Financial Accounting Period Encumbered Value” for values representing a period (with begin and end dates).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24628', '12', '24628', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001548', 'Charter School Open Enrollment Indicator', NULL, 'Indicates that the charter school offers open enrollment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22524', '11', '22524', NULL, NULL) +VALUES ('001648', 'Financial Accounting Date', NULL, 'The date of a financial transaction or when an account balance is reported.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24629', '12', '24629', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001549', 'Course Department Name', NULL, 'Department with jurisdiction over this course.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22525', '11', '22525', NULL, NULL) +VALUES ('001649', 'Attendance Event Date', NULL, 'The date on which an attendance event takes place.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24630', '12', '24630', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001550', 'Crisis Description', NULL, 'A description of the crisis that caused the displacement of students.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22526', '11', '22526', NULL, NULL) +VALUES ('001650', 'Charter School Management Organization Type', NULL, 'The type of organization that is a separate legal entity that 1) contracts with one or more charter schools to manage, operate, and oversee the charter schools; or 2) holds a charter, or charters, to operate multiple charter schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24631', '12', '24631', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001552', 'Crisis End Date', NULL, 'The date on which the crisis ceased to affect the agency.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22528', '11', '22528', NULL, NULL) +VALUES ('001651', 'Charter School Contract Id Number', NULL, 'The unique number the SEA assigns to the contract (or charter) that authorizes the charter school to operate in the state under the state''s charter school legislation.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24632', '12', '24632', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001553', 'Early Childhood Services Offered', NULL, 'A type of service offered by an organization that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22529', '11', '22529', NULL, NULL) +VALUES ('001652', 'Charter School Contract Approval Date', NULL, 'The effective date of the contract (or charter) that an approved charter school authorizer authorized the charter school to operate in the state under the state''s charter school legislation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24633', '12', '24633', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001554', 'Financial Account Number', NULL, 'A number given to a financial account within a local source accounting system. The number may be a concatenation of a standard prefix for the type of account with digits added that have specific meaning within the local system.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22530', '11', '22530', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001653', 'Charter School Contract Renewal Date', NULL, 'The date by which the charter school must renew its contract (or charter) with an approved charter school authorizer in order to continue to operate in the state under the state''s charter school legislation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24634', '12', '24634', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001555', 'Financial Expenditure Level of Instruction Code', NULL, 'This classification permits expenditures to be segregated by instructional level.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22531', '11', '22531', 'Updated', 'Changed element name and technical name. Added option to the existing option set. Added elements to DES contexts to support Early Learning needs.') +VALUES ('001654', 'National School Lunch Program Direct Certification Indicator', NULL, 'Indicates that the student''s National School Lunch Program (NSLP) eligibility has been determined through direct certification.', NULL, '1', 'This element was introduced in version 6 of CEDS with plans for further development of elements needed to fully support direct certification use cases.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24635', '12', '24635', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001556', 'Financial Expenditure Project Reporting Code', NULL, 'The project/reporting code permits organizations to accumulate expenditures to meet a variety of specialized reporting requirements at the local, state, and federal levels. It is a three-digit code with the format 00X. The first two digits identify the particular funding source, authority, or expenditure purpose for which a special record or report is required. The third digit is available to identify particular projects and the fiscal year of the appropriation within that funding source. Each classification is presented by a code range followed by a description.', 'Numeric', '0', 'Based on the following code conventions specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition":

010 to 190 Local Projects. Expenditures that require specialized reporting and are funded from local sources.

200 to 390 State Projects. Expenditures that require specialized reporting for categorically funded state programs.

400 to 990 Federal Projects. Expenditures that require specialized reporting to the federal government directly or through the state.

1000 Noncategorical. Expenditures that do not require specialized reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22532', '11', '22532', 'Updated', 'Changed element name, technical name, and definition. Added elements to DES contexts to support Early Learning needs.') +VALUES ('001655', 'Course Section Maximum Capacity', NULL, 'The maximum number of students the Course Section can maintain.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24636', '12', '24636', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001557', 'Learner Action Actor Identifier', NULL, ' A unique identifier for the person performing the learner action. The identifier should be encrypted when integrating learning experience data across systems to secure the privacy of the learner.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22533', '11', '22533', NULL, NULL) +VALUES ('001656', 'IDEA Part C Eligibility Category', NULL, 'The category under which a person under 3 years of age is eligible for early intervention services under IDEA Part C.', NULL, '1', 'http://idea.ed.gov/part-c/statutes', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24637', '12', '24637', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001558', 'Learner Action Object Description', NULL, 'A description of the object upon which the person has performed the Learner Action.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22534', '11', '22534', NULL, NULL) +VALUES ('001657', 'Tribal Affiliation', NULL, 'The Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24638', '12', '24638', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001559', 'Learner Action Object Identifier', NULL, 'A globally unique identifier for the object upon which the learning has performed the Learner Action which may be a URL with information about a learning resource or to launch the resource.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22535', '11', '22535', NULL, NULL) +VALUES ('001658', 'Credential Definition Identifier', 'Credential Identifier', 'A globally unique identifier by which the creator/owner/provider of a credential recognizes the qualification, achievement, personal or organizational quality, or aspect of an identity in transactions with the external environment.', 'Alphanumeric - 512 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces. An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24639', '12', '24639', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001560', 'Learner Action Object Type', NULL, 'The type of object upon which a person has performed the Learner Action.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22536', '11', '22536', NULL, NULL) +VALUES ('001659', 'IPEDS Finance FASB Functional Expense Category', NULL, 'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', NULL, '1', '(NACUBO FARM, section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24640', '12', '24640', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001561', 'Learning Resource Access Rights URL', NULL, 'A Uniform Resource Locator (URL) that identifies the conditions that govern the user’s ability to access a learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22537', '11', '22537', NULL, NULL) +VALUES ('001660', 'Credential Revoked Date', NULL, 'The date on which the qualification, achievement, personal or organizational quality, or aspect of an identity was revoked.', 'YYYY-MM-DD', '0', 'An empty string means the assertion was not revoked. Some uses (e.g. OpenBadges) may append time info in ISO 8601 format.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24641', '12', '24641', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001562', 'Learning Resource Author Type', NULL, 'The type of entity, organization or person, that authored the learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22540', '11', '22540', NULL, NULL) +VALUES ('001661', 'Credential Revoked Reason', NULL, 'Published reason for revocation of a credential award.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24642', '12', '24642', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001563', 'Learning Resource Author URL', NULL, 'A Uniform Resource Locator (URL) attributed to the author of a learning resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22541', '11', '22541', NULL, NULL) +VALUES ('001662', 'Credential Issuer Revocation List URL', NULL, 'The URL to a document that includes a list of credential award assertions an issuer has revoked.', 'Alphanumeric - 512 characters maximum', '0', 'See OpenBadges standard example http://openbadges.github.io/openbadges-specification/#RevocationList', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24643', '12', '24643', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001564', 'Learning Resource Date Modified', NULL, 'The most recent date that the learning resource was updated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22542', '11', '22542', NULL, NULL) +VALUES ('001663', 'Organization Image URL', NULL, 'The Uniform Resource Locator (URL) for the unique address of an image representing the Organization.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24644', '12', '24644', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001565', 'Learning Resource Interaction Mode', NULL, 'The primary type of interaction, synchronous or asynchronous, defined for the learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22543', '11', '22543', NULL, NULL) +VALUES ('001664', 'Credential Completion Date', NULL, 'The date on which the person''s requirements for earning a credential were met or completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24645', '12', '24645', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001566', 'Learning Resource Author Email', NULL, 'An email address for the author of the learning resource.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22544', '11', '22544', NULL, NULL) +VALUES ('001665', 'Academic Award Requirements URL', NULL, 'A URL to a page that describes the requirements for the credential.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24646', '12', '24646', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001567', 'Learning Resource Publisher Email', NULL, 'An email address for the publisher of the learning resource.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22545', '11', '22545', NULL, NULL) +VALUES ('001666', 'Academic Award Prerequisite Type', NULL, 'Prerequisite conditions for earning an academic award.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24647', '12', '24647', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001568', 'Learning Resource Publisher URL', NULL, 'A Uniform Resource Locator (URL) attributed to the publisher of a learning resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22547', '11', '22547', NULL, NULL) +VALUES ('001667', 'Course Repeatability Maximum Number', NULL, 'The maximum number of times the course may be taken or completed for credit.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24648', '12', '24648', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001569', 'Competency Framework Publication Date', 'Learning Standard Document Publication Date', 'The date on which this content was first published.', 'YYYY-MM-DD', '0', 'This may or may not be different from the Learning Standard Document Valid Start Date.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22548', '11', '22548', NULL, NULL) +VALUES ('001668', 'PESC Award Level Type', NULL, 'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24649', '12', '24649', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001570', 'Competency Definition Sequence', 'Learning Standard Item Sequence, Competency Item Sequence', 'A set of one or more alphanumeric characters and/or symbols denoting the positioning of the statement being described in a sequential listing of statements.', 'Alphanumeric - 60 characters maximum', '0', 'Based on ASN''s ListID. (add reference URL)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22549', '11', '22549', NULL, NULL) +VALUES ('001669', 'Credential Award Evidence URL', NULL, 'A URL to a page that describes the evidence that the learner met the criteria for attainment of the credential award.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24650', '12', '24650', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001571', 'Person Identification System', NULL, 'A coding scheme that is used for identification of a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22550', '11', '22550', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001670', 'IPEDS Finance GASB Financial Position Category', NULL, 'IPEDS financial position classification used by degree-granting public institutions using GASB Reporting Standards for reporting the assets, liabilities, and net position in a manner consistent with the Statement of Net Position in the General Purpose Financial Statements (GPFS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24651', '12', '24651', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001572', 'Person Identifier', NULL, 'A unique number or alphanumeric code assigned to a person by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22551', '11', '22551', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001671', 'IPEDS Finance FASB Financial Position Category', NULL, 'IPEDS financial position classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting the assets, liabilities, and net assets in a manner consistent with the Statement of Financial Position in the General Purpose Financial Statements (GPFS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24652', '12', '24652', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001573', 'Student Course Section Grade Narrative', NULL, 'The narrative of the student performance in a course section as submitted by the instructor.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22552', '11', '22552', NULL, NULL) +VALUES ('001672', 'IPEDS Finance GASB Revenue Category', NULL, 'IPEDS revenue classification used by degree-granting public institutions using GASB Reporting Standards for reporting revenues and other additions by source including all operating revenues, nonoperating revenues, and other additions for the reporting period. This includes unrestricted and restricted revenues and additions, whether expendable or nonexpendable.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24653', '12', '24653', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001574', 'Credits Required', NULL, 'The total number of credits required for a student to graduate from the school of enrollment or complete a program.', 'Numeric - up to 2 digits after decimal place', '0', 'May be compared to the sum of Number of Credits Earned for courses associated with the program of study to determine the remaining credits that the student needs to complete the program.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22553', '11', '22553', NULL, NULL) +VALUES ('001673', 'IPEDS Finance FASB Revenue Category', NULL, 'IPEDS revenue classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues and investment return by source in a manner consistent with the definitions from the National Association of College and University Business Officers (NACUBO) Financial Accounting and Reporting Manual for Higher Education (FARM).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24654', '12', '24654', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001575', 'Tuition Funded', NULL, 'Indicates that tuition for person''s participation in a program, service, or course is funded or partially funded by an external grant program.', NULL, '1', 'The initial use case is for professional development courses/programs, but could apply to student programs/courses as well.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22554', '11', '22554', NULL, NULL) +VALUES ('001674', 'IPEDS Finance FASB Revenue Restriction Category', NULL, 'IPEDS revenue restriction classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues by restriction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24655', '12', '24655', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001576', 'Military Connected Student Indicator', NULL, 'An indication that the student’s parent or guardian is on Active Duty, in the National Guard, or in the Reserve components of the United States military services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22555', '11', '22555', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001675', 'IPEDS Finance GASB Functional Expense Category', NULL, 'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', NULL, '1', '(NACUBO FARM, section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24656', '12', '24656', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001577', 'Military Active Student Indicator', NULL, 'An indication that the student is currently serving on Active Duty, in the National Guard, or in the Reserve components of the United States military services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22556', '11', '22556', NULL, NULL) +VALUES ('001676', 'IPEDS Finance Natural Expense Category', NULL, 'A natural expense classification is a method of grouping expenses according to the type of costs that are incurred. The classifications tell what was purchased rather than why an expense was incurred.', NULL, '1', '(NACUBO FARM section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24657', '12', '24657', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001578', 'Military Veteran Student Indicator', NULL, 'An indication that the student is a veteran who served on Active Duty, in the National Guard, or in the Reserve components of the United States military services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22557', '11', '22557', NULL, NULL) +VALUES ('001677', 'IPEDS Finance GASB Scholarships and Fellowships Revenue Category', NULL, 'IPEDS revenue category used by degree-granting public institutions using GASB Reporting Standards for the reporting of resources received for supporting student scholarships and fellowships.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24658', '12', '24658', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001579', 'Admission Consideration Level', NULL, 'The level of consideration given a type of admission criteria used at an institution during the selection process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22558', '11', '22558', NULL, NULL) +VALUES ('001678', 'IPEDS Finance FASB Scholarships and Fellowships Revenue Category', NULL, 'IPEDS revenue category used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for the reporting of resources received for supporting student grant aid.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24659', '12', '24659', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001580', 'Admission Consideration Type', NULL, 'The type of admission consideration used at an institution during the selection process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22559', '11', '22559', NULL, NULL) +VALUES ('001679', 'IPEDS Finance Intercollegiate Athletics Expenses', NULL, 'Identifies the functional expense category where the institution allocates its intercollegiate athletics expenses.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24660', '12', '24660', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001581', 'Staff Approval Indicator', NULL, 'Individual is approved to Work with Children', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22560', '11', '22560', NULL, NULL) +VALUES ('001680', 'IPEDS Finance FASB Pell Grant Transactions', NULL, 'Method of reporting Pell Grants in IPEDS by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24661', '12', '24661', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001582', 'Billable Basis Type', NULL, 'The event/action that results in a billable action.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22561', '11', '22561', NULL, NULL) +VALUES ('001681', 'Individualized Program Service Plan Progress Report Schedule', NULL, 'Frequency by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24662', '12', '24662', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001583', 'Career Pathways Program Participation Exit Date', NULL, 'The year, month and day on which the person ceased to participate in a program.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22562', '11', '22562', NULL, NULL) +VALUES ('001682', 'IEP Transfer of Rights Statement', NULL, 'Beginning not later than one year before the child reaches the age of majority under State law, the IEP must include a statement that the child has been informed of the child''s rights under Part B of the Individuals with Disabilities Education Act, if any, that will transfer to the child on reaching the age of majority under §300.520.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24663', '12', '24663', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001584', 'Career Pathways Program Participation Start Date', NULL, 'The year, month and day on which the person began to participate in a career pathway program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22563', '11', '22563', NULL, NULL) +VALUES ('001683', 'Individualized Program Service Plan End Date', NULL, 'The year, month and day on which the status of the service plan for a child effectively ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24664', '12', '24664', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001587', 'Credential or License Award Entity', NULL, 'The name of the organization awarding the individual''s credential or license.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22566', '11', '22566', NULL, NULL) +VALUES ('001684', 'Individualized Program Service Plan Meeting Date', NULL, 'The date on which a child''s service plan meeting is held.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24665', '12', '24665', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001588', 'Developmental Education Referral Status', NULL, 'The status of a student''s referral to or placement into developmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22567', '11', '22567', NULL, NULL) +VALUES ('001685', 'Individualized Program Accommodation Description', NULL, 'Description of a specific accommodation or change to standards or practices that will be made.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24666', '12', '24666', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001589', 'Developmental Education Type', NULL, 'An indicator of the category of developmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22568', '11', '22568', NULL, NULL) +VALUES ('001686', 'Individualized Program Accommodation Applicability', NULL, 'Circumstances in which the accommodation or change to standards or practices will be applied.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24667', '12', '24667', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001590', 'Directory Information Block Status', NULL, 'An indication of whether a individual requested a Family Education Rights and Privacy Act (FERPA) block to withhold the release of the person''s directory information.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22569', '11', '22569', NULL, NULL) +VALUES ('001687', 'IEP Alternative Assessment Rationale', NULL, 'A statement of why— (A) The child cannot participate in the regular assessment; and (B) The particular alternate assessment selected is appropriate for the child.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24668', '12', '24668', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001591', 'Early Childhood Education and Assistance Program Eligibility', NULL, 'Denotes whether the family member can receive Early Childhood Education and Assistance Program (ECEAP) information for the child in question.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22570', '11', '22570', NULL, NULL) +VALUES ('001688', 'Individualized Program Service Plan Amendment Reason Description', NULL, 'Description of the reason changes were made to the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24669', '12', '24669', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001592', 'Early Learning Enrollment Application Verification Date', NULL, 'Date the required document was verified for the enrollment application', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22571', '11', '22571', NULL, NULL) +VALUES ('001689', 'Individualized Program Service Plan Amendment Description', NULL, 'Description of the changes made to the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24670', '12', '24670', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001593', 'Early Learning Enrollment Application Document Identifier', NULL, 'Identifier for an enrollment application document record.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22572', '11', '22572', NULL, NULL) +VALUES ('001690', 'Goal Current Performance Description', NULL, 'Current performance explanation related to the annual goal or short-term objectives.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24671', '12', '24671', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001594', 'Early Learning Enrollment Application Document Name', NULL, 'Document name for an enrollment application document record.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22573', '11', '22573', NULL, NULL) +VALUES ('001691', 'Goal Measurement Criterion Accuracy Percent', NULL, 'The percent of correct results that will be considered to represent successful achievement of a goal.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24672', '12', '24672', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001595', 'Early Learning Enrollment Application Document Type', NULL, 'Document type for an enrollment application document record.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22574', '11', '22574', NULL, NULL) +VALUES ('001692', 'Goal Measurement Criterion Attempts Count', NULL, 'The number of attempts representing a completed trial for assessing achievement of a goal.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24673', '12', '24673', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001597', 'Early Learning Application Identifier', NULL, 'Identifier for the application for enrollment or direct services filled out on behalf of a child', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22576', '11', '22576', NULL, NULL) +VALUES ('001693', 'Goal Measurement Criterion Metric', NULL, 'A metric used for evaluating achievement of a goal.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24674', '12', '24674', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001599', 'Early Learning Application Required Document', NULL, 'Identifies a specific document required for enrollment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22578', '11', '22578', NULL, NULL) +VALUES ('001694', 'Goal Measurement Criterion Success Count', NULL, 'The number of correct results that will be considered to represent successful achievement of a goal.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24675', '12', '24675', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001600', 'Early Learning Enrollment Application Verification Reason Type', NULL, 'Identifies the reason for verification of enrollment application information', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22579', '11', '22579', NULL, NULL) +VALUES ('001695', 'Goal Measurement Description', NULL, 'The procedures and/or instruments that will be used to measure achievement of a goal or short-term objective.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24676', '12', '24676', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001602', 'Early Learning Education Staff Classification', NULL, 'The title/role of employment, official status, or rank of education staff', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22581', '11', '22581', NULL, NULL) +VALUES ('001696', 'Goal Measurement Schedule', NULL, 'Frequency of evaluation of progress toward meeting the goal or short-term objective.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24677', '12', '24677', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001603', 'Early Learning Local Revenue Source', NULL, 'Funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22582', '11', '22582', NULL, NULL) +VALUES ('001697', 'Goal Measurement Type', NULL, 'Type of evidence appropriate for assessing achievement of a goal or short-term objective.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24678', '12', '24678', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001604', 'Early Learning Service Type', NULL, 'A type of service provided to a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22583', '11', '22583', NULL, NULL) +VALUES ('001698', 'IEP Goal Type', NULL, 'Legal category for an IEP annual goal or short-term objectives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24679', '12', '24679', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001605', 'Early Learning State Revenue Source', NULL, ' Funds that originate at the State, and not from a federal or local source, that contribute to EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22584', '11', '22584', NULL, NULL) +VALUES ('001699', 'Individualized Program Service Plan Progress Report Date', NULL, 'The date parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24680', '12', '24680', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001606', 'Early Learning Trainer Core Knowledge Area', NULL, 'A description of the core knowledge expertise of a trainer of a professional development experience.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22585', '11', '22585', NULL, NULL) +VALUES ('001700', 'Individualized Program Service Plan Progress Report Description', NULL, 'A description of the progress report used to notify parents of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24681', '12', '24681', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001607', 'Education Verification Method', NULL, 'The method by which the formal education is verified.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22586', '11', '22586', NULL, NULL) +VALUES ('001701', 'Individualized Program Service Plan Progress Report Type', NULL, 'A method by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24682', '12', '24682', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001609', 'Financial Aid Veteran’s Benefit Status', NULL, 'An indication of whether a person is receiving Veteran''s benefits.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22588', '11', '22588', NULL, NULL) +VALUES ('001702', 'Goal Status Type', NULL, 'Status toward achievement of the annual goal or short-term objectives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24683', '12', '24683', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001610', 'Financial Aid Veteran’s Benefit Type', NULL, 'The type of Veteran''s benefits a person is receiving.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22589', '11', '22589', NULL, NULL) +VALUES ('001703', 'Goal Status', NULL, 'Description of status toward achievement of the annual goal or short-term objectives.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24684', '12', '24684', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001611', 'Financial Aid Year Designator', NULL, 'The school year for which the student''s financial aid application and award data apply. Generally, this is the 12-month period from July 1 to June 30.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22590', '11', '22590', NULL, NULL) +VALUES ('001704', 'IDEA Placement Rationale', NULL, 'The rationale for the placement decision and if applicable, an explanation of the extent, if any, to which the child will not participate with nondisabled children in the regular class and in the activities described in paragraph (a)(4) of CFR. §300.320.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24685', '12', '24685', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001612', 'Included in Counted Family Size', NULL, 'Denotes whether this family member is counted in the family size as it pertains to the federal poverty level', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22591', '11', '22591', NULL, NULL) +VALUES ('001705', 'IEP Present Level Academic Description', NULL, 'How the child''s disability affects the child''s academic achievement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24686', '12', '24686', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001613', 'IPEDS Collection Year Designator', NULL, 'The academic year, generally extending from September to June, in which IPEDS data is collected. Most Institutional Characteristics, Salaries, Fall Staff, Fall Enrollment, and Employees by Assigned Position data are collected for the current year; Completions, 12-Month Enrollment, Student Financial Aid, and Finance data collections cover the prior year.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22592', '11', '22592', NULL, NULL) +VALUES ('001706', 'IEP Present Level Functional Description', NULL, 'How the child''s disability affects the child''s functional performance.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24687', '12', '24687', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001614', 'Memorandum of Understanding End Date', NULL, 'The date that a Memorandum of Understanding between the Early Learning Organization and the Service Partner is determined to expire.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22593', '11', '22593', NULL, NULL) +VALUES ('001707', 'IEP Present Level General Education Description', NULL, 'How the child''s disability affects the child''s involvement and progress in the general education curriculum.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24688', '12', '24688', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001615', 'Memorandum of Understanding Start Date', NULL, 'The effective date that a Memorandum of Understanding between the Early Learning Organization and the Service Partner Organization is effective.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22594', '11', '22594', NULL, NULL) +VALUES ('001708', 'IEP Present Level Preschool Description', NULL, 'For preschool children, as appropriate, how the disability affects the child''s participation in appropriate activities.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24689', '12', '24689', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001616', 'Postsecondary Program Level', NULL, 'The level describing the concentration of study for a postsecondary program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22595', '11', '22595', NULL, NULL) +VALUES ('001709', 'IEP Present Level Student Strengths Description', NULL, 'Explanation of perceived strengths and abilities of the student.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24690', '12', '24690', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001617', 'Postsecondary Exit or Withdrawal Type', NULL, ' The circumstances under which the student exited from enrollment in a postsecondary institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22596', '11', '22596', NULL, NULL) +VALUES ('001710', 'IEP Present Level Parent Concern Description', NULL, 'Parent’s explanation of their interest in or concerns about the student’s participation in special education.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24691', '12', '24691', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001618', 'Eligibility Priority Points', NULL, 'Priority points used to determine eligibility and placement order', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22597', '11', '22597', NULL, NULL) +VALUES ('001711', 'IEP Present Level Student Concern Description', NULL, 'Student’s explanation of his or her interest in or concerns about participation in special education.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24692', '12', '24692', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001619', 'Professional Development Activity State Approved Status', NULL, 'An indication of whether a training activity has been approved through a state process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22598', '11', '22598', NULL, NULL) +VALUES ('001712', 'Declined Services Date', NULL, 'The date recommended services were declined.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24693', '12', '24693', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001620', 'Professional Development Plan Approved by Supervisor', NULL, 'Professional development plan is approved by the employee''s supervisor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22599', '11', '22599', NULL, NULL) +VALUES ('001713', 'Frequency Unit', NULL, 'The unit of time by which a cycle is defined.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24694', '12', '24694', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001621', 'Professional Development Plan Completion', NULL, 'The date the professional development plan is completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22600', '11', '22600', NULL, NULL) +VALUES ('001714', 'Frequency Instances Per Cycle', NULL, 'The number of recurrences within a cycle.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24695', '12', '24695', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001622', 'Reimbursement Type', NULL, 'A billable basis which defines payment. This is how state agencies/programs move funding to the local provider/agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22601', '11', '22601', NULL, NULL) +VALUES ('001715', 'Frequency Length', NULL, 'The number of units within a repeating cycle. Used with Frequency and Frequency Units elements to describe the occurrence of repeating events such as student services delivered 3 times a week for 16 weeks.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24696', '12', '24696', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001623', 'Scheduled Well Child Screening', NULL, 'The individual well child visit scheduled according to the AAP recommended periodicity schedule.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22602', '11', '22602', NULL, NULL) +VALUES ('001716', 'Duration Length in Minutes', NULL, 'The number of minutes in an instance.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24697', '12', '24697', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001624', 'Service Partner Description', NULL, 'A description of the type of services that the partner organization provides.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22603', '11', '22603', NULL, NULL) +VALUES ('001717', 'Service Extends Outside School Year', NULL, 'Determination if this service continues outside school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24698', '12', '24698', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001625', 'Service Partner Name', NULL, 'The name of a non-person entity such as an organization, institution, agency or business, that partners with the Early Learning Organization to provide services to enrolled children/families.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22606', '11', '22606', NULL, NULL) +VALUES ('001718', 'Service Setting Description', NULL, 'Description of the setting in which the services are delivered.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24699', '12', '24699', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001627', 'Site Preference Rank', NULL, 'The applicant preference that the family has for the program sites.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22608', '11', '22608', NULL, NULL) +VALUES ('001719', 'IEP Authorization Document Type', NULL, 'Type of Individualized Education Plan document authorized.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24700', '12', '24700', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001628', 'Training and Technical Assistance Level', NULL, 'The level of expertise an individual training and technical assistance specialist has based on a set of established criteria.', 'Alphanumeric - 100 characters maximum', '0', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22609', '11', '22609', NULL, NULL) +VALUES ('001720', 'Authorizer Type', NULL, 'Type of person who authorized the decision or document.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24701', '12', '24701', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001629', 'Transfer-out Indicator', NULL, 'An indicator of whether the student has transferred to another institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22610', '11', '22610', NULL, NULL) +VALUES ('001721', 'Authorization Acceptance Indicator', NULL, 'Indicates authorizer agreement to a document or plan, such as plan for delivery of student services, program, or improvement plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24702', '12', '24702', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001630', 'Trimester When Prenatal Care Began', NULL, 'The trimester of pregnancy in which a child''s mother began receiving prenatal health care.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22611', '11', '22611', NULL, NULL) +VALUES ('001722', 'Authorization Decision Explanation', NULL, 'Authorizer''s explanation regarding the authorization decision.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24703', '12', '24703', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001631', 'Well Child Screening Received Date', NULL, 'The year, month and day of a well child visit.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22612', '11', '22612', NULL, NULL) +VALUES ('001723', 'IEP Authorization Rejected Portion Description', NULL, 'Portion the authorizer does not want executed.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24704', '12', '24704', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001632', 'Early Learning Employment Separation Reason', NULL, 'The primary reason for the termination of the employment relationship.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22613', '11', '22613', NULL, NULL) +VALUES ('001724', 'IEP Authorization Rejected Portion Explanation', NULL, 'Authorizer''s explanation for rejected portions.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24705', '12', '24705', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001633', 'Community-based Type', NULL, 'Non domestic residence in which the early learning setting is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22614', '11', '22614', NULL, NULL) +VALUES ('001725', 'Authorization Date', NULL, 'The date the authorization occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24706', '12', '24706', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001634', 'Inclusive Setting Indicator', NULL, 'Indicates that services are provided to the child in a place where children of all abilities learn together.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22615', '11', '22615', NULL, NULL) +VALUES ('001726', 'Consent to Evaluation Indicator', NULL, 'Indication parent agreed to evaluate student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24707', '12', '24707', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001635', 'Service Date', NULL, 'The year, month, and day on which a service was provided.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22616', '11', '22616', NULL, NULL) +VALUES ('001727', 'Consent to Evaluation Date', NULL, 'The date the consent to evaluation occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24708', '12', '24708', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001636', 'Early Learning Service Professional Staff Classification', NULL, 'The title/role of employment, official status, or rank of early learning service professionals', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22617', '11', '22617', NULL, NULL) +VALUES ('001728', 'IEP Eligibility Evaluation Type', NULL, 'Purpose within the IEP lifecycle for which the eligibility evaluation is conducted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24709', '12', '24709', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001637', 'ISO 639-3 Language Code', NULL, 'The code for the specific language or dialect that a person uses to communicate.', NULL, '1', 'The CEDS ISO 639-3 Language Code option set comes from the ISO 639-3 standard, the Latin-1 download. Only living language code types from the ISO standard are included in the CEDS list. Special scope and discontinued codes are excluded.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22618', '11', '22618', 'Updated', 'Added new options to the existing option set, updated existing option set.') +VALUES ('001729', 'IDEA Eligibility Evaluation Category', NULL, 'Category of evaluation used for IDEA eligibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24710', '12', '24710', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001638', 'ISO 639-5 Language Family', NULL, 'A code for a specific language family, which supplements the language groups and families in the ISO 639-2 Language Code.', NULL, '1', 'The CEDS ISO 639-5 Language Family option set comes from the ISO 639-5 standard.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22619', '11', '22619', NULL, NULL) +VALUES ('001730', 'Eligibility Evaluation Description', NULL, 'Description of evaluation procedure and result used for determining eligibility.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24711', '12', '24711', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001639', 'Fiscal Year', NULL, 'The year an organization uses for budgeting, accounting, and reporting financials.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22620', '11', '22620', 'Updated', 'Changed definition. Added elements to DES contexts to support Early Learning needs.') +VALUES ('001731', 'Eligibility Evaluation Date', NULL, 'The date when the evaluation to determine eligibility was conducted.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24712', '12', '24712', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001640', 'Military Branch', NULL, 'A branch of the U.S. Military applicable for specifying more details when using Military Connected Student Indicator, Military Active Student Indicator, Military Veteran Student Indicator, and Military Enlistment After Exit elements.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22621', '11', '22621', NULL, NULL) +VALUES ('001732', 'Eligibility Parent Observations Explanation', NULL, 'Explanation of parent''s observations of student’s characteristics and history used for determining eligibility.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24713', '12', '24713', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001641', 'DQP Categories of Learning', NULL, 'The Lumina Foundation''s Degree Qualifications Profile offers reference points for what students should know and be able to do upon completion of associate, bachelor''s and master''s degrees – in any field of study. The DQP Categories of Learning provide a profile of what degrees mean within which specific proficiencies may be defined.', NULL, '1', 'Based on the Degree Qualifications Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22622', '11', '22622', NULL, NULL) +VALUES ('001733', 'IDEA Disability Type', NULL, 'A category of disability that describes a person’s impairment defined by the Individuals with Disabilities Education Act.', NULL, '1', 'Option set based on IDEA disability categories. Multiple disability condition could be selected. Refer to Primary Disability Type for a single disability condition based on EDFacts.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24714', '12', '24714', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001642', 'Fiscal Period Begin Date', NULL, 'The year, month and day on which an accounting period begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22623', '11', '22623', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001734', 'Credential Advanced Standing Description', NULL, 'A description of a credential that reduced the time or cost of attaining this credential.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24715', '12', '24715', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001643', 'Fiscal Period End Date', NULL, 'The year, month and day on which an accounting period ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22624', '11', '22624', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001735', 'Credential Advanced Standing URL', NULL, 'A URL that resolves to information about a credential that reduced the time or cost of attaining this credential.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24716', '12', '24716', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001644', 'Financial Accounting Period Encumbered Value', NULL, 'The planned or obligated expense value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', 'Used for purchase order balances, the value not already included in "Financial Accounting Period Actual Value" as an expense.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22625', '11', '22625', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001736', 'Credential Definition Alternate Name', 'Credential Alternate Name', 'An alias for the credential, which may include acronyms, alpha-numeric notations, and other forms of name abbreviations in common use such as PhD, MA, and BA.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24717', '12', '24717', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001645', 'Financial Account Program Name', NULL, 'The name given to the program area in an organization''s accounting system.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22626', '11', '22626', 'Updated', 'Changed definition. Added elements to DES contexts to support Early Learning needs.') +VALUES ('001737', 'Credential Award Approver Name', NULL, 'Pronouncement of a favorable judgment by the agent being referenced.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24718', '12', '24718', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001646', 'Financial Account Program Number', NULL, 'A number given to a program area within an organization''s accounting system.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22627', '11', '22627', 'Updated', 'Changed definition. Added elements to DES contexts to support Early Learning needs.') +VALUES ('001738', 'Credential Definition Assessment Method Type', 'Credential Assessment Method Type', 'The method used to conduct the assessment being referenced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24719', '12', '24719', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001647', 'Financial Accounting Value', NULL, 'The value of a financial account balance or transaction.', 'Numeric - up to 2 digits after decimal place', '0', 'Used to represent a point-in-time transaction or snapshot of an account/fund balance. Use “Financial Accounting Period Budgeted Value”, “Financial Accounting Period Actual Value”, and “Financial Accounting Period Encumbered Value” for values representing a period (with begin and end dates).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22628', '11', '22628', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001739', 'Credential Definition Identifier System', 'Credential Identifier System', 'A coding scheme that is used for identification and record-keeping purposes by a credentialing organization to refer to a qualification, achievement, personal or organizational quality, or aspect of an identity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24720', '12', '24720', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001648', 'Financial Accounting Date', NULL, 'The date of a financial transaction or when an account balance is reported.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22629', '11', '22629', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001740', 'Credential Definition Status Type', 'Credential Status Type', 'The status of the credential offered by a credentialing organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24721', '12', '24721', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001649', 'Attendance Event Date', NULL, 'The date on which an attendance event takes place.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22630', '11', '22630', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001741', 'Credential Definition Estimated Duration', 'Credential Estimated Duration', 'The estimated amount of time in minutes it will take to earn the credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24722', '12', '24722', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001650', 'Charter School Management Organization Type', NULL, 'The type of organization that is a separate legal entity that 1) contracts with one or more charter schools to manage, operate, and oversee the charter schools; or 2) holds a charter, or charters, to operate multiple charter schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22631', '11', '22631', NULL, NULL) +VALUES ('001742', 'Credential Definition NAICS Industry Type', 'Credential NAICS Industry Type', 'The North American Industry Classification System (NAICS) class identifier for an industry associated with the credential.', 'Integer - exactly 6 digits', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24723', '12', '24723', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001651', 'Charter School Contract Id Number', NULL, 'The unique number the SEA assigns to the contract (or charter) that authorizes the charter school to operate in the state under the state''s charter school legislation.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22632', '11', '22632', NULL, NULL) +VALUES ('001743', 'Credential Definition Jurisdiction Region', 'Credential Jurisdiction Region', 'The geo-political region in which the credential is applicable.', 'GeoJSON', '0', 'http://geojson.org/geojson-spec.html#polygon', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24724', '12', '24724', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001652', 'Charter School Contract Approval Date', NULL, 'The effective date of the contract (or charter) that an approved charter school authorizer authorized the charter school to operate in the state under the state''s charter school legislation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22633', '11', '22633', NULL, NULL) +VALUES ('001744', 'Credential Definition Jurisdiction Region Exception', 'Credential Jurisdiction Region Exception', 'A geo-political region in which the credential does not apply.', 'GeoJSON', '0', 'http://geojson.org/geojson-spec.html#polygon', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24725', '12', '24725', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001653', 'Charter School Contract Renewal Date', NULL, 'The date by which the charter school must renew its contract (or charter) with an approved charter school authorizer in order to continue to operate in the state under the state''s charter school legislation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22634', '11', '22634', NULL, NULL) +VALUES ('001745', 'Credential Definition Keywords', 'Credential Keywords', 'Keywords or key phrases describing aspects of a credential considered useful for its discovery.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24726', '12', '24726', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001654', 'National School Lunch Program Direct Certification Indicator', NULL, 'Indicates that the student''s National School Lunch Program (NSLP) eligibility has been determined through direct certification.', NULL, '1', 'This element was introduced in version 6 of CEDS with plans for further development of elements needed to fully support direct certification use cases.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22635', '11', '22635', NULL, NULL) +VALUES ('001746', 'Credential Definition Maximum Duration', 'Credential Maximum Duration', 'The maximum amount of time in minutes it will take to earn the described credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24727', '12', '24727', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001655', 'Course Section Maximum Capacity', NULL, 'The maximum number of students the Course Section can maintain.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22636', '11', '22636', NULL, NULL) +VALUES ('001747', 'Credential Definition Minimum Age', 'Credential Minimum Age', 'The minimum allowed age in years at which a person is eligible for the credential.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24728', '12', '24728', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001656', 'IDEA Part C Eligibility Category', NULL, 'The category under which a person under 3 years of age is eligible for early intervention services under IDEA Part C.', NULL, '1', 'http://idea.ed.gov/part-c/statutes', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22637', '11', '22637', NULL, NULL) +VALUES ('001748', 'Credential Definition Minimum Duration', 'Credential Minimum Duration', 'The minimum amount of time in minutes it will take to earn the described credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24729', '12', '24729', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001657', 'Tribal Affiliation', NULL, 'The Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22638', '11', '22638', NULL, NULL) +VALUES ('000032', 'Staff Compensation Base Salary', NULL, 'The salary or wage a person is paid before deductions (excluding differentials) but including annuities.', 'Numeric - up to 2 digits after decimal place', '0', 'For the Common Core Data Teacher Compensation Survey this is: ''The negotiated annual salary for teaching duties for the school year. The base salary excludes pay for additional duties, such as supervising or directing afterschool activities, school administration activities, and teaching summer school or adult education classes. Bonuses and other incentives are not included in base salaries.'' Also use CEDS element Salary for Teaching Assignment Only Indicator to indicate if a Base Salary is specific to teaching assignments.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23032', '12', '23032', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001658', 'Credential Definition Identifier', 'Credential Identifier', 'A globally unique identifier by which the creator/owner/provider of a credential recognizes the qualification, achievement, personal or organizational quality, or aspect of an identity in transactions with the external environment.', 'Alphanumeric - 512 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces. An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22639', '11', '22639', NULL, NULL) +VALUES ('000033', 'Birthdate', NULL, 'The year, month and day on which a person was born.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23033', '12', '23033', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001659', 'IPEDS Finance FASB Functional Expense Category', NULL, 'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', NULL, '1', '(NACUBO FARM, section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22640', '11', '22640', NULL, NULL) +VALUES ('000035', 'Campus Residency Type', NULL, 'A person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23035', '12', '23035', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001660', 'Credential Revoked Date', NULL, 'The date on which the qualification, achievement, personal or organizational quality, or aspect of an identity was revoked.', 'YYYY-MM-DD', '0', 'An empty string means the assertion was not revoked. Some uses (e.g. OpenBadges) may append time info in ISO 8601 format.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22641', '11', '22641', NULL, NULL) +VALUES ('000036', 'Career and Technical Education Completer', 'CTE Completer', 'An indication of a student who reached a state-defined threshold of a career and technical education program/pathway.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23036', '12', '23036', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001661', 'Credential Revoked Reason', NULL, 'Published reason for revocation of a credential award.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22642', '11', '22642', NULL, NULL) +VALUES ('000037', 'Career and Technical Education Concentrator', 'CTE Concentrator', 'An indication of a student who has met the state-defined threshold of career and technical education concentrators, as defined in the State''s approved Perkins IV State Plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23037', '12', '23037', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001662', 'Credential Issuer Revocation List URL', NULL, 'The URL to a document that includes a list of credential award assertions an issuer has revoked.', 'Alphanumeric - 512 characters maximum', '0', 'See OpenBadges standard example http://openbadges.github.io/openbadges-specification/#RevocationList', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22643', '11', '22643', NULL, NULL) +VALUES ('000038', 'Carnegie Basic Classification', NULL, 'The Basic Classification is an update of the traditional classification framework developed by the Carnegie Commission on Higher Education in 1970 to support its research program, and later published in 1973 for use by other researchers.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23038', '12', '23038', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001663', 'Organization Image URL', NULL, 'The Uniform Resource Locator (URL) for the unique address of an image representing the Organization.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22644', '11', '22644', NULL, NULL) +VALUES ('000039', 'Charter School Indicator', NULL, 'An indication that a public school provides free public elementary and/or secondary education to eligible students under a specific charter executed, pursuant to a state charter school law, by an authorized chartering agency/authority and that is designated by such authority to be a public charter school.', NULL, '1', 'When the element is used for an LEA, it means the LEA is a Charter District meaning any and all schools under the authority of the LEA are charter schools. Don''t flag an LEA as a charter district if it has a mix of charter schools and non-charter schools.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23039', '12', '23039', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001664', 'Credential Completion Date', NULL, 'The date on which the person''s requirements for earning a credential were met or completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22645', '11', '22645', NULL, NULL) +VALUES ('000040', 'Address City', NULL, 'The name of the city in which an address is located.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23040', '12', '23040', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001665', 'Academic Award Requirements URL', NULL, 'A URL to a page that describes the requirements for the credential.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22646', '11', '22646', NULL, NULL) +VALUES ('000041', 'High School Student Class Rank', NULL, 'The academic rank of a student in relation to his or her high school graduating class (e.g., 1, 2, 3) based on high school GPA.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23041', '12', '23041', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001666', 'Academic Award Prerequisite Type', NULL, 'Prerequisite conditions for earning an academic award.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22647', '11', '22647', NULL, NULL) +VALUES ('000042', 'Class Ranking Date', NULL, 'The date class ranking was determined.', 'YYYY-MM-DD or YYYY-MM or YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23042', '12', '23042', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001667', 'Course Repeatability Maximum Number', NULL, 'The maximum number of times the course may be taken or completed for credit.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22648', '11', '22648', NULL, NULL) +VALUES ('000043', 'Classification of Instructional Program Code', 'CIP Code', 'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23043', '12', '23043', 'Updated', 'Updated link to newer version of CIP Codes') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001668', 'PESC Award Level Type', NULL, 'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22649', '11', '22649', NULL, NULL) +VALUES ('000044', 'Classification of Instructional Program Use', 'CIP Use', 'An indicator of whether the CIP Code is referencing an enrollment program or an award program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23044', '12', '23044', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001669', 'Credential Award Evidence URL', NULL, 'A URL to a page that describes the evidence that the learner met the criteria for attainment of the credential award.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22650', '11', '22650', NULL, NULL) +VALUES ('000045', 'Classification of Instructional Program Version', 'CIP Version', 'The version of CIP being reported.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23045', '12', '23045', 'Updated', 'Added new option to existing option set, add new DES locations') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000328', 'Ability Grouping Status', NULL, 'An indication of whether the school has students who are ability grouped for classroom instruction in mathematics or English/reading/language arts.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21000', '11', '21000', NULL, NULL) +VALUES ('000046', 'Cohort Year', NULL, 'The school year in which the student entered the baseline group used for computing completion rates (e.g., high school, program).', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23046', '12', '23046', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000001', 'Academic Award Date', NULL, 'The year, month and day or year and month on which the academic award was conferred.', 'YYYY-MM-DD or YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21001', '11', '21001', NULL, NULL) +VALUES ('000047', 'Contract Days of Service Per Year', NULL, 'The number of days per year that a person is expected to work as outlined specifically in his or her employment agreement.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23047', '12', '23047', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000002', 'Academic Award Level Conferred', NULL, 'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21002', '11', '21002', NULL, NULL) +VALUES ('000048', 'Control of Institution', NULL, 'A classification of whether a postsecondary institution is operated by publicly elected or appointed officials (public control) or by privately elected or appointed officials and derives its major source of funds from private sources (private control). ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23048', '12', '23048', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000003', 'Academic Award Title', NULL, 'The descriptive title for the academic award.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21003', '11', '21003', NULL, NULL) +VALUES ('000049', 'Corrective Action Type', NULL, 'The types of corrective actions under ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23049', '12', '23049', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000004', 'Academic Honors Type', NULL, 'A designation of the type of academic distinctions earned by or awarded to the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21004', '11', '21004', NULL, NULL) +VALUES ('000050', 'Country Code', NULL, 'The unique two character International Organization for Standardization (ISO) code for the country in which an address is located.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23050', '12', '23050', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000005', 'Accountability Report Title', NULL, 'The title of the accountability report.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21005', '11', '21005', NULL, NULL) +VALUES ('000051', 'Country of Birth Code', NULL, 'The unique two digit International Organization for Standardization (ISO) code for the country in which a person is born.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23051', '12', '23051', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000006', 'Activity Identifier', NULL, 'A unique number or alphanumeric code used in the local system to identify an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21006', '11', '21006', NULL, NULL) +VALUES ('000053', 'Course Academic Grade', NULL, 'The final grade awarded for participation in the course. ', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23053', '12', '23053', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000007', 'Activity Involvement Begin Date', NULL, 'The year, month and day on which the person began to participate in the activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21007', '11', '21007', NULL, NULL) +VALUES ('000054', 'Course Begin Date', NULL, 'The year, month and day an instance of a course officially began.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23054', '12', '23054', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000008', 'Activity Involvement End Date', NULL, 'The year, month and day on which the person ceased to participate in the activity.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21008', '11', '21008', NULL, NULL) +VALUES ('000055', 'Course Identifier', NULL, 'The actual code that identifies the organization of subject matter and related learning experiences provided for the instruction of students.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23055', '12', '23055', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000009', 'Activity Title', NULL, 'The title for a particular activity, such as a co-curricular or extra-curricular activity.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21009', '11', '21009', NULL, NULL) +VALUES ('000056', 'Course Code System', NULL, 'A system that is used to identify the organization of subject matter and related learning experiences provided for the instruction of students.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23056', '12', '23056', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000011', 'Adequate Yearly Progress Status', 'AYP Status', 'An indication of whether the state, district, or school met the Adequate Yearly Progress (AYP) requirements for the school year, as determined by the state-established criteria.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21011', '11', '21011', NULL, NULL) +VALUES ('000057', 'Course Credit Units', NULL, 'The type of credit (unit, semester, or quarter) associated with the credit hours earned for the course. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23057', '12', '23057', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000012', 'Administrative Funding Control', NULL, 'The type of education institution as classified by its funding source.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21012', '11', '21012', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000058', 'Credit Value', NULL, 'The amount of credit available to the student who successfully meets the objectives of the course or learning opportunity based on the units defined by Credit Unit Type.', 'Numeric - up to 2 digits after decimal place', '0', 'For K-12 a course meeting every day for one period of the school day over the span of a school year typically offers one Carnegie unit. In this case a Carnegie unit is a measure of "seat time" rather than a measure of attainment of the course objectives.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23058', '12', '23058', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000013', 'Course Aligned with Standards', NULL, 'An indication whether a course is aligned with the established standards of a curriculum framework.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21013', '11', '21013', NULL, NULL) +VALUES ('000059', 'Course End Date', NULL, 'The year, month and day an instance of a course ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23059', '12', '23059', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000014', 'Alternate Adequate Yearly Progress Approach Indicator', 'Alternate AYP Approach Indicator', 'An indication of whether the district or school used an approved alternate approach for calculating Adequate Yearly Progress (AYP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21014', '11', '21014', NULL, NULL) +VALUES ('000060', 'Course Grade Point Average Applicability', 'Course GPA Applicability', 'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23060', '12', '23060', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000015', 'Alternative School Focus Type', NULL, 'An indication of the specific group of students whose needs the alternative school is designed to meet.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21015', '11', '21015', NULL, NULL) +VALUES ('000061', 'Course Level Characteristic', NULL, 'An indication of the general nature and difficulty of instruction provided throughout a course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23061', '12', '23061', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000017', 'Advanced Placement Course Self Selection', 'AP Course Self Selection', 'An indication of whether enrollment via self-selection by the student is permitted for all Advanced Placement (AP) courses offered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21017', '11', '21017', NULL, NULL) +VALUES ('000063', 'Course Override School', NULL, 'The school where the credit was earned if different from the institution reporting. ', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23063', '12', '23063', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000018', 'Advanced Placement Credits Awarded', 'AP Credits Awarded', 'The number of credits awarded a student by the postsecondary institution based on successful completion of advanced placement courses and/or advanced placement tests. ', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21018', '11', '21018', NULL, NULL) +VALUES ('000064', 'Course Quality Points Earned', NULL, 'The numerical value assigned to a letter grade to provide a basis of quantitative determination of an average. ', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23064', '12', '23064', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000019', 'Address Apartment Room or Suite Number', NULL, 'The apartment, room, or suite number of an address.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21019', '11', '21019', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000065', 'Course Repeat Code', NULL, 'Indicates that an academic course has been repeated by a student and how that repeat is to be computed in the student''s academic grade average.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23065', '12', '23065', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000021', 'Assessment Academic Subject', NULL, 'The description of the academic content or subject area (e.g., arts, mathematics, reading, or a foreign language) being evaluated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21021', '11', '21021', NULL, NULL) +VALUES ('000066', 'Course Subject Abbreviation', NULL, 'The alphabetic abbreviation of the academic department or discipline offering the course. It is one part of the total course identifier number. ', 'Alphanumeric - 10 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23066', '12', '23066', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000024', 'Assessment Form Name', NULL, 'The name of a given assessment form.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21024', '11', '21024', NULL, NULL) +VALUES ('000067', 'Course Title', NULL, 'The descriptive name given to a course of study offered in a school or other institution or organization. In departmentalized classes at the elementary, secondary, and postsecondary levels (and for staff development activities), this refers to the name by which a course is identified (e.g., American History, English III). For elementary and other non-departmentalized classes, it refers to any portion of the instruction for which a grade or report is assigned (e.g., reading, composition, spelling, and language arts).', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23067', '12', '23067', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000025', 'Assessment Registration Participation Indicator', NULL, 'An indication of whether a student participated in an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21025', '11', '21025', NULL, NULL) +VALUES ('000068', 'Postsecondary Course Title', NULL, 'The name or title of the course taken by a student at an academic institution.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23068', '12', '23068', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000026', 'Assessment Purpose', NULL, 'The reason for which an assessment is designed or delivered.', NULL, '1', 'This element might have multiple occurrences associated with any one assessment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21026', '11', '21026', NULL, NULL) +VALUES ('000069', 'Credential Expiration Date', NULL, 'The year, month and day on which an active credential held by a person will expire.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23069', '12', '23069', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000027', 'Course Section Assessment Reporting Method', NULL, 'The method that the instructor of the course uses to report the performance and achievement of all students. It may be a qualitative method such as individualized teacher comments or a quantitative method such as a letter or a numerical grade. In some cases, more than one type of reporting method may be used.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21027', '11', '21027', 'Updated', 'Added new option to the existing option set.') +VALUES ('000070', 'Credential Issuance Date', NULL, 'The year, month and day on which an active credential was issued to a person.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23070', '12', '23070', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000028', 'Assessment Title', NULL, 'The title or name of the assessment.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21028', '11', '21028', NULL, NULL) +VALUES ('000071', 'Credential Type', NULL, 'An indication of the category of credential a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23071', '12', '23071', 'Updated', 'Added new option to existing option set and add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000029', 'Assessment Type', NULL, 'The category of an assessment based on format and content.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21029', '11', '21029', NULL, NULL) +VALUES ('000072', 'Credit Unit Type', NULL, 'The type of credits or units of value awarded for the completion of a course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23072', '12', '23072', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000030', 'Available Carnegie Unit Credit', NULL, 'Measured in Carnegie units, the amount of credit available to a student who successfully meets the objectives of the course. A course meeting every day for one period of the school day over the span of a school year offers one Carnegie unit. A Carnegie unit is thus a measure of "seat time" rather than a measure of attainment of the course objectives.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21030', '11', '21030', NULL, NULL) +VALUES ('000073', 'Credits Attempted Cumulative', NULL, 'The cumulative number of credits a person attempts to earn by taking courses during their enrollment in their current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23073', '12', '23073', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000031', 'Awaiting Initial IDEA Evaluation Status', NULL, 'Awaiting initial evaluation for special education programs and related services under the Individuals with Disabilities Education Act (IDEA). ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21031', '11', '21031', NULL, NULL) +VALUES ('000074', 'Credits Earned Cumulative', NULL, 'The cumulative number of credits a person earns by completing courses or examinations during their enrollment in the current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23074', '12', '23074', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000032', 'Staff Compensation Base Salary', NULL, 'The salary or wage a person is paid before deductions (excluding differentials) but including annuities.', 'Numeric - up to 2 digits after decimal place', '0', 'For the Common Core Data Teacher Compensation Survey this is: ''The negotiated annual salary for teaching duties for the school year. The base salary excludes pay for additional duties, such as supervising or directing afterschool activities, school administration activities, and teaching summer school or adult education classes. Bonuses and other incentives are not included in base salaries.'' Also use CEDS element Salary for Teaching Assignment Only Indicator to indicate if a Base Salary is specific to teaching assignments.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21032', '11', '21032', NULL, NULL) +VALUES ('000075', 'Career and Technical Education Graduation Rate Inclusion', 'CTE Graduation Rate Inclusion', 'An indication of how CTE concentrators are included in the state''s computation of its graduation rate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23075', '12', '23075', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000033', 'Birthdate', NULL, 'The year, month and day on which a person was born.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21033', '11', '21033', NULL, NULL) +VALUES ('000076', 'Attendance Status', NULL, 'The status of a person''s attendance associated with an Attendance Event Type and Attendance Event Date in an organization-person-role context.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23076', '12', '23076', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000035', 'Campus Residency Type', NULL, 'A person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21035', '11', '21035', NULL, NULL) +VALUES ('000077', 'Degree Applicability', NULL, 'An indication that the course is a part of a degree program. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23077', '12', '23077', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000036', 'Career and Technical Education Completer', 'CTE Completer', 'An indication of a student who reached a state-defined threshold of a career and technical education program/pathway.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21036', '11', '21036', NULL, NULL) +VALUES ('000078', 'Degree or Certificate Seeking Student', NULL, 'Person is enrolled in courses for credit and recognized by the institution as seeking a degree, certificate, or other formal award. High school students also enrolled in postsecondary courses for credit are not considered degree/certificate-seeking.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23078', '12', '23078', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000037', 'Career and Technical Education Concentrator', 'CTE Concentrator', 'An indication of a student who has met the state-defined threshold of career and technical education concentrators, as defined in the State''s approved Perkins IV State Plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21037', '11', '21037', NULL, NULL) +VALUES ('000079', 'Dependency Status', NULL, 'A person''s classification as dependent or independent with regards to eligibility for Title IV Federal Student aid.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23079', '12', '23079', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000038', 'Carnegie Basic Classification', NULL, 'The Basic Classification is an update of the traditional classification framework developed by the Carnegie Commission on Higher Education in 1970 to support its research program, and later published in 1973 for use by other researchers.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21038', '11', '21038', NULL, NULL) +VALUES ('000080', 'Desegregation Order or Plan', NULL, 'An indication whether the LEA is covered by a desegregation plan either ordered by a court or entered into with the Office for Civil Rights under Title VI of the Civil Rights Act of 1964.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23080', '12', '23080', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000039', 'Charter School Indicator', NULL, 'An indication that a public school provides free public elementary and/or secondary education to eligible students under a specific charter executed, pursuant to a state charter school law, by an authorized chartering agency/authority and that is designated by such authority to be a public charter school.', NULL, '1', 'When the element is used for an LEA, it means the LEA is a Charter District meaning any and all schools under the authority of the LEA are charter schools. Don''t flag an LEA as a charter district if it has a mix of charter schools and non-charter schools.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21039', '11', '21039', NULL, NULL) +VALUES ('000081', 'Diploma or Credential Award Date', NULL, 'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23081', '12', '23081', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000040', 'Address City', NULL, 'The name of the city in which an address is located.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21040', '11', '21040', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000082', 'Disciplinary Action End Date', NULL, 'The year, month and day on which a discipline action ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23082', '12', '23082', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000041', 'High School Student Class Rank', NULL, 'The academic rank of a student in relation to his or her high school graduating class (e.g., 1, 2, 3) based on high school GPA.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21041', '11', '21041', NULL, NULL) +VALUES ('000083', 'Disciplinary Action Start Date', NULL, 'The year, month and day on which a discipline action begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23083', '12', '23083', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000042', 'Class Ranking Date', NULL, 'The date class ranking was determined.', 'YYYY-MM-DD or YYYY-MM or YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21042', '11', '21042', NULL, NULL) +VALUES ('000084', 'Career-Technical-Adult Education Displaced Homemaker Indicator', 'CTE-AE Displaced Homemaker Indicator', 'A person who ; (A) (i) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; (ii) has been dependent on the income of another family member but is no longer supported by that income; or (iii) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (B) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23084', '12', '23084', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000043', 'Classification of Instructional Program Code', 'CIP Code', 'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21043', '11', '21043', NULL, NULL) +VALUES ('000085', 'Dual Credit Dual Enrollment Credits Awarded', NULL, 'The number of credits awarded a student by the postsecondary institution based on successful completion of dual credit/dual enrollment courses. ', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23085', '12', '23085', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000044', 'Classification of Instructional Program Use', 'CIP Use', 'An indicator of whether the CIP Code is referencing an enrollment program or an award program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21044', '11', '21044', NULL, NULL) +VALUES ('000086', 'Economic Disadvantage Status', NULL, 'An indication that the student met the State criteria for classification as having an economic disadvantage.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23086', '12', '23086', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000045', 'Classification of Instructional Program Version', 'CIP Version', 'The version of CIP being reported.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21045', '11', '21045', NULL, NULL) +VALUES ('000087', 'K12 Staff Classification', NULL, 'The titles of employment, official status, or rank of education staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23087', '12', '23087', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000046', 'Cohort Year', NULL, 'The school year in which the student entered the baseline group used for computing completion rates (e.g., high school, program).', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21046', '11', '21046', NULL, NULL) +VALUES ('000088', 'Electronic Mail Address', 'Email Address', 'The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the person or organization belongs.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23088', '12', '23088', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000047', 'Contract Days of Service Per Year', NULL, 'The number of days per year that a person is expected to work as outlined specifically in his or her employment agreement.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21047', '11', '21047', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000089', 'Electronic Mail Address Type', 'Email Address Type', 'The type of electronic mail (e-mail) address listed for a person or organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23089', '12', '23089', 'Updated', 'Change option for Organizational address') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000048', 'Control of Institution', NULL, 'A classification of whether a postsecondary institution is operated by publicly elected or appointed officials (public control) or by privately elected or appointed officials and derives its major source of funds from private sources (private control). ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21048', '11', '21048', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000091', 'Elementary-Middle Additional Indicator Status', NULL, ' An indication of whether the school or district met the Elementary/Middle Additional Indicator requirement in accordance with state definition for the purpose of determining Adequate Yearly Progress (AYP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23091', '12', '23091', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000049', 'Corrective Action Type', NULL, 'The types of corrective actions under ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21049', '11', '21049', NULL, NULL) +VALUES ('000092', 'Eligibility Status for School Food Service Programs', NULL, 'An indication of a student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23092', '12', '23092', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000050', 'Country Code', NULL, 'The unique two character International Organization for Standardization (ISO) code for the country in which an address is located.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21050', '11', '21050', NULL, NULL) +VALUES ('000093', 'End of Term Status', NULL, 'The nature of the student''s progress at the end of a given school term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23093', '12', '23093', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000051', 'Country of Birth Code', NULL, 'The unique two digit International Organization for Standardization (ISO) code for the country in which a person is born.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21051', '11', '21051', NULL, NULL) +VALUES ('000094', 'Enrollment Status', NULL, 'An indication as to whether a student''s name was, is, or will be officially registered on the roll of a school or schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23094', '12', '23094', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000053', 'Course Academic Grade', NULL, 'The final grade awarded for participation in the course. ', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21053', '11', '21053', NULL, NULL) +VALUES ('000095', 'Postsecondary Enrollment Type', NULL, 'An indicator of the enrollment type associated with the enrollment award level of a person at the beginning of a term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23095', '12', '23095', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000054', 'Course Begin Date', NULL, 'The year, month and day an instance of a course officially began.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21054', '11', '21054', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000096', 'Postsecondary Enrollment Status', NULL, 'An indication of the student''s enrollment status for a particular term as defined by the institution', NULL, '1', 'Either use option 02 or one of the options, 04 or 05, for less than full-time but at least half-time.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23096', '12', '23096', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000055', 'Course Identifier', NULL, 'The actual code that identifies the organization of subject matter and related learning experiences provided for the instruction of students.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21055', '11', '21055', NULL, NULL) +VALUES ('000097', 'Enrollment Entry Date', NULL, 'The month, day, and year on which a person enters and begins to receive instructional services in a school, institution, program, or class-section during a given session.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23097', '12', '23097', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000056', 'Course Code System', NULL, 'A system that is used to identify the organization of subject matter and related learning experiences provided for the instruction of students.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21056', '11', '21056', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000098', 'Entry Date into Postsecondary', NULL, 'The year, month and day on which a person entered and began to receive instructional services at a postsecondary institution for the first time after completing high school (or its equivalent). ', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23098', '12', '23098', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000057', 'Course Credit Units', NULL, 'The type of credit (unit, semester, or quarter) associated with the credit hours earned for the course. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21057', '11', '21057', NULL, NULL) +VALUES ('000099', 'Entry Type', NULL, 'The process by which a student enters a school during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23099', '12', '23099', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000058', 'Credit Value', NULL, 'The amount of credit available to the student who successfully meets the objectives of the course or learning opportunity based on the units defined by Credit Unit Type.', 'Numeric - up to 2 digits after decimal place', '0', 'For K-12 a course meeting every day for one period of the school day over the span of a school year typically offers one Carnegie unit. In this case a Carnegie unit is a measure of "seat time" rather than a measure of attainment of the course objectives.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21058', '11', '21058', NULL, NULL) +VALUES ('000100', 'Entry Grade Level', NULL, 'The grade level or primary instructional level at which a student enters and receives services in a school or an educational institution during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23100', '12', '23100', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000059', 'Course End Date', NULL, 'The year, month and day an instance of a course ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21059', '11', '21059', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000101', 'Course Section Time Required for Completion', NULL, 'The actual or estimated number of clock minutes required for course completion. This number is especially important for career and technical education course and may represent (in minutes) the clock hour requirement of the course, the number of minutes (or clock hours) of class time per week, times the number of equivalent weeks the class typically meets.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23101', '12', '23101', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000060', 'Course Grade Point Average Applicability', 'Course GPA Applicability', 'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21060', '11', '21060', NULL, NULL) +VALUES ('000102', 'Staff Evaluation Outcome', NULL, 'The result of an assessment of a person''s performance.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23102', '12', '23102', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000061', 'Course Level Characteristic', NULL, 'An indication of the general nature and difficulty of instruction provided throughout a course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21061', '11', '21061', NULL, NULL) +VALUES ('000103', 'Staff Evaluation Scale', NULL, 'The quantitative or qualitative range of possible scores/rating for a person''s overall performance (e.g., 0 - 10; Poor, Fair, Average, Good, Excellent).', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23103', '12', '23103', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000063', 'Course Override School', NULL, 'The school where the credit was earned if different from the institution reporting. ', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21063', '11', '21063', NULL, NULL) +VALUES ('000104', 'Staff Evaluation Score or Rating', NULL, 'The actual quantitative or qualitative assessment of a person''s overall performance.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23104', '12', '23104', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000064', 'Course Quality Points Earned', NULL, 'The numerical value assigned to a letter grade to provide a basis of quantitative determination of an average. ', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21064', '11', '21064', NULL, NULL) +VALUES ('000105', 'Staff Evaluation System', NULL, 'The instrument and/or set of procedures with which a person''s performance is assessed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23105', '12', '23105', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000065', 'Course Repeat Code', NULL, 'Indicates that an academic course has been repeated by a student and how that repeat is to be computed in the student''s academic grade average.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21065', '11', '21065', NULL, NULL) +VALUES ('000106', 'Cohort Exclusion', NULL, 'Those persons who may be removed (deleted) from a cohort (or subcohort). For the Graduation Rates and Fall Enrollment retention rate reporting, persons may be removed from a cohort if they left the institution for one of the following reasons: death or total and permanent disability; service in the armed forces (including those called to active duty); service with a foreign aid service of the federal government, such as the Peace Corps; or service on official church missions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23106', '12', '23106', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000066', 'Course Subject Abbreviation', NULL, 'The alphabetic abbreviation of the academic department or discipline offering the course. It is one part of the total course identifier number. ', 'Alphanumeric - 10 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21066', '11', '21066', NULL, NULL) +VALUES ('000107', 'Enrollment Exit Date', NULL, 'The year, month and day on which the student officially withdrew or graduated, i.e. the date on which the student''s enrollment ended.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23107', '12', '23107', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000067', 'Course Title', NULL, 'The descriptive name given to a course of study offered in a school or other institution or organization. In departmentalized classes at the elementary, secondary, and postsecondary levels (and for staff development activities), this refers to the name by which a course is identified (e.g., American History, English III). For elementary and other non-departmentalized classes, it refers to any portion of the instruction for which a grade or report is assigned (e.g., reading, composition, spelling, and language arts).', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21067', '11', '21067', NULL, NULL) +VALUES ('000108', 'Exit or Withdrawal Status', NULL, 'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23108', '12', '23108', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000068', 'Postsecondary Course Title', NULL, 'The name or title of the course taken by a student at an academic institution.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21068', '11', '21068', NULL, NULL) +VALUES ('000110', 'Exit or Withdrawal Type', NULL, 'The circumstances under which the student exited from membership in an educational institution. ', NULL, '1', 'The purpose of this element is to track the circumstances related to an exit from membership. There are multiple use cases related to this element, some for longitudinal purposes, some for funding, some for live transactional systems. The descriptions and definitions are intended to meet those needs. Four often misunderstood options are explained below:
1. 09999 - Other. Other is intended to indicate that CEDS has not yet defined a circumstance in which this exit occurred.
2. 03505 - Exited. Unlike "09999 - Other", the "Exited" option is intended to be used for administrative purposes such as a mid-year grade level change.
3. 01931 - Not enrolled, unknown status. This is to be used as a placeholder while additional exit information is collected or to track students who are known to have Discontinued Schooling (dropped out) separate from students whose whereabouts are unknown.
4. 03502 - Not enrolled, eligible to return. Different than the 01931 code, the status of this student is not unknown; however, the institution is required to exit the student from membership for an extended period. It is expected the student will reenroll in the same institution following this extended period.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23110', '12', '23110', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000069', 'Credential Expiration Date', NULL, 'The year, month and day on which an active credential held by a person will expire.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21069', '11', '21069', NULL, NULL) +VALUES ('000111', 'Federal School Code', NULL, ' A unique code assigned by the U.S. Department of Education to schools participating in the Title IV Federal Student Aid programs. Persons enter these codes in the Free Application for Federal Student Aid (FAFSA) to indicate which postsecondary schools they want to receive their financial aid application results.', 'Alphanumeric - exactly 6 characters in length', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23111', '12', '23111', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000070', 'Credential Issuance Date', NULL, 'The year, month and day on which an active credential was issued to a person.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21070', '11', '21070', NULL, NULL) +VALUES ('000112', 'Financial Aid Award Amount', NULL, 'The amount of financial aid awarded to a person for the term/year.', 'Numeric - up to 2 digits after decimal place', '0', 'Linked to financial aid award type.
Note: For any given individual this cluster of fields may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23112', '12', '23112', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000071', 'Credential Type', NULL, 'An indication of the category of credential a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21071', '11', '21071', NULL, NULL) +VALUES ('000113', 'Financial Aid Award Type', NULL, 'The classification of financial aid awarded to a person for the academic term/year.', NULL, '1', 'Linked to financial aid type.
Note: For any given individual this cluster of fields may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23113', '12', '23113', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000072', 'Credit Unit Type', NULL, 'The type of credits or units of value awarded for the completion of a course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21072', '11', '21072', NULL, NULL) +VALUES ('000115', 'First Name', NULL, 'The full legal first name given to a person at birth, baptism, or through legal change.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23115', '12', '23115', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000073', 'Credits Attempted Cumulative', NULL, 'The cumulative number of credits a person attempts to earn by taking courses during their enrollment in their current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21073', '11', '21073', NULL, NULL) +VALUES ('000117', 'First Time Postsecondary Student', NULL, 'A person who has no prior postsecondary experience attending any institution for the first time at the undergraduate level since completing high school (or its equivalent). This includes persons enrolled in academic or occupational programs. It also includes persons enrolled in the fall term who attended college for the first time in the prior summer term, and persons who entered with advanced standing (college credits earned before graduation from high school).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23117', '12', '23117', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000074', 'Credits Earned Cumulative', NULL, 'The cumulative number of credits a person earns by completing courses or examinations during their enrollment in the current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21074', '11', '21074', NULL, NULL) +VALUES ('000118', 'Staff Full Time Equivalency', 'Staff FTE', 'The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23118', '12', '23118', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000075', 'Career and Technical Education Graduation Rate Inclusion', 'CTE Graduation Rate Inclusion', 'An indication of how CTE concentrators are included in the state''s computation of its graduation rate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21075', '11', '21075', NULL, NULL) +VALUES ('000120', 'GED Preparation Program Participation Status', NULL, 'An indication that a student aged 16-19 participates in a General Educational Development (GED) preparation program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23120', '12', '23120', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000076', 'Attendance Status', NULL, 'The status of a person''s attendance associated with an Attendance Event Type and Attendance Event Date in an organization-person-role context.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21076', '11', '21076', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000121', 'Generation Code or Suffix', NULL, 'An appendage, if any, used to denote a person''s generation in his family (e.g., Jr., Sr., III).', 'Alphanumeric - 10 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23121', '12', '23121', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000077', 'Degree Applicability', NULL, 'An indication that the course is a part of a degree program. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21077', '11', '21077', NULL, NULL) +VALUES ('000122', 'Gifted and Talented Indicator', NULL, 'An indication that the student is participating in and served by a Gifted/Talented program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23122', '12', '23122', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000078', 'Degree or Certificate Seeking Student', NULL, 'Person is enrolled in courses for credit and recognized by the institution as seeking a degree, certificate, or other formal award. High school students also enrolled in postsecondary courses for credit are not considered degree/certificate-seeking.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21078', '11', '21078', NULL, NULL) +VALUES ('000123', 'Grade Point Average Weighted Indicator', 'GPA Weighted Indicator', 'An indication of whether the reported Grade Point Average is weighted or unweighted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23123', '12', '23123', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000079', 'Dependency Status', NULL, 'A person''s classification as dependent or independent with regards to eligibility for Title IV Federal Student aid.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21079', '11', '21079', NULL, NULL) +VALUES ('000124', 'Student Course Section Grade Earned', NULL, 'A final indicator of student performance in a course section as submitted by the instructor.', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23124', '12', '23124', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000080', 'Desegregation Order or Plan', NULL, 'An indication whether the LEA is covered by a desegregation plan either ordered by a court or entered into with the Office for Civil Rights under Title VI of the Civil Rights Act of 1964.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21080', '11', '21080', NULL, NULL) +VALUES ('000125', 'Grade Level When Course Taken', NULL, 'Student''s grade level at time of course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23125', '12', '23125', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000081', 'Diploma or Credential Award Date', NULL, 'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', '11', '21081', NULL, NULL) +VALUES ('000126', 'Grade Level When Assessed', NULL, 'The grade or developmental level of a student when assessed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23126', '12', '23126', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000082', 'Disciplinary Action End Date', NULL, 'The year, month and day on which a discipline action ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21082', '11', '21082', NULL, NULL) +VALUES ('000127', 'Grade Point Average', NULL, 'The value of the total quality points divided by the Credit Hours for Grade Point Average. ', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23127', '12', '23127', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000083', 'Disciplinary Action Start Date', NULL, 'The year, month and day on which a discipline action begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21083', '11', '21083', NULL, NULL) +VALUES ('000128', 'Grade Point Average Cumulative', 'GPA - Cumulative', 'A measure of average performance in all courses taken by a person during his or her school career as determined for record-keeping purposes. This is obtained by dividing the total grade points received by the total number of credits attempted. This usually includes grade points received and credits attempted in his or her current school as well as those transferred from schools in which the person was previously enrolled.', 'Numeric - up to 4 digits after decimal place', '0', 'Related Connection; linked to Grade Point Average Weighted Indicator, High School Percentile, High School Rank, and Size of High School Graduating Class', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23128', '12', '23128', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000084', 'Career-Technical-Adult Education Displaced Homemaker Indicator', 'CTE-AE Displaced Homemaker Indicator', 'A person who ; (A) (i) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; (ii) has been dependent on the income of another family member but is no longer supported by that income; or (iii) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (B) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21084', '11', '21084', NULL, NULL) +VALUES ('000129', 'Grade Point Average Given Session', 'GPA - Given Session', 'A measure of average performance in all courses taken by a person during a given session. This is obtained by dividing the total grade points received by the number of credits attempted for the same session.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23129', '12', '23129', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000085', 'Dual Credit Dual Enrollment Credits Awarded', NULL, 'The number of credits awarded a student by the postsecondary institution based on successful completion of dual credit/dual enrollment courses. ', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21085', '11', '21085', NULL, NULL) +VALUES ('000130', 'Grade Points Earned Cumulative', NULL, 'The cumulative number of grade points a person earns by successfully completing courses or examinations during his or her enrollment in the current school as well as those transferred from schools in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23130', '12', '23130', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000086', 'Economic Disadvantage Status', NULL, 'An indication that the student met the State criteria for classification as having an economic disadvantage.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21086', '11', '21086', NULL, NULL) +VALUES ('000131', 'Grades Offered', NULL, 'The specific grade or combination of grades offered by an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23131', '12', '23131', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000087', 'K12 Staff Classification', NULL, 'The titles of employment, official status, or rank of education staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21087', '11', '21087', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000132', 'Graduation Rate Survey Cohort Year', NULL, 'The academic year in which a student entered as part of the GRS cohort.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23132', '12', '23132', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000088', 'Electronic Mail Address', 'Email Address', 'The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the person or organization belongs.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21088', '11', '21088', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000133', 'Graduation Rate Survey Indicator', NULL, 'An indication of whether or not the student is in a GRS cohort; meaning the student began as a first-time, full-time, degree seeking student in the fall of a given year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23133', '12', '23133', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000089', 'Electronic Mail Address Type', 'Email Address Type', 'The type of electronic mail (e-mail) address listed for a person or organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21089', '11', '21089', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000134', 'Gun Free Schools Act Reporting Status', NULL, 'An indication of whether the school or local education agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, as defined by Title 18, Section 921.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23134', '12', '23134', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000091', 'Elementary-Middle Additional Indicator Status', NULL, ' An indication of whether the school or district met the Elementary/Middle Additional Indicator requirement in accordance with state definition for the purpose of determining Adequate Yearly Progress (AYP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21091', '11', '21091', NULL, NULL) +VALUES ('000135', 'Harassment or Bullying Policy Status', NULL, 'An indication of whether the education unit has adopted written policy prohibiting harassment and bullying on the basis of a civil rights law.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23135', '12', '23135', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000092', 'Eligibility Status for School Food Service Programs', NULL, 'An indication of a student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21092', '11', '21092', NULL, NULL) +VALUES ('000136', 'Staff Compensation Health Benefits', NULL, 'Contributions made by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider''s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23136', '12', '23136', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000093', 'End of Term Status', NULL, 'The nature of the student''s progress at the end of a given school term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21093', '11', '21093', NULL, NULL) +VALUES ('000137', 'High School Course Requirement', NULL, 'An indication that this course credit is required for a high school diploma.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23137', '12', '23137', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000094', 'Enrollment Status', NULL, 'An indication as to whether a student''s name was, is, or will be officially registered on the roll of a school or schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21094', '11', '21094', NULL, NULL) +VALUES ('000138', 'High School Diploma Type', NULL, 'The type of diploma/credential that is awarded to a person in recognition of his/her completion of the curricular requirements.', NULL, '1', 'Use "Other Diploma" instead of "Other" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23138', '12', '23138', 'Updated', 'Added new option to existing option set, change option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000095', 'Postsecondary Enrollment Type', NULL, 'An indicator of the enrollment type associated with the enrollment award level of a person at the beginning of a term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21095', '11', '21095', NULL, NULL) +VALUES ('000140', 'High School Graduation Rate Indicator Status', NULL, 'An indication of whether the school or district met the High School Graduation Rate requirement in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23140', '12', '23140', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000096', 'Postsecondary Enrollment Status', NULL, 'An indication of the student''s enrollment status for a particular term as defined by the institution', NULL, '1', 'Either use option 02 or one of the options, 04 or 05, for less than full-time but at least half-time.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21096', '11', '21096', NULL, NULL) +VALUES ('000141', 'Highest Level of Education Completed', NULL, 'The extent of formal instruction a person has received (e.g., the highest grade in school completed or its equivalent or the highest degree received).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23141', '12', '23141', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000097', 'Enrollment Entry Date', NULL, 'The month, day, and year on which a person enters and begins to receive instructional services in a school, institution, program, or class-section during a given session.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21097', '11', '21097', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000142', 'Highly Qualified Teacher Indicator', NULL, 'An indication that the teacher has been classified as highly qualified based on assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23142', '12', '23142', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000098', 'Entry Date into Postsecondary', NULL, 'The year, month and day on which a person entered and began to receive instructional services at a postsecondary institution for the first time after completing high school (or its equivalent). ', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21098', '11', '21098', NULL, NULL) +VALUES ('000143', 'Hire Date', NULL, 'The year, month and day on which a person was hired for a position, or consecutive positions within the same organization and job classification.', 'YYYY-MM-DD', '0', 'This is the Hire Date beginning consecutive employment with the current employer in the same Professional-Educational Job Classification. A person may change positions within the same organization and job classification without triggering a new hire date. For example a teacher originally hire to teach 3rd grade may be reassigned to 4th grade. However, a change of job classifications, e.g. from teacher to principal, would trigger a new Hire Date.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23143', '12', '23143', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000099', 'Entry Type', NULL, 'The process by which a student enters a school during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21099', '11', '21099', NULL, NULL) +VALUES ('000144', 'Hispanic or Latino Ethnicity', NULL, 'An indication that the person traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central and South America, and other Spanish cultures, regardless of race.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23144', '12', '23144', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000100', 'Entry Grade Level', NULL, 'The grade level or primary instructional level at which a student enters and receives services in a school or an educational institution during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21100', '11', '21100', NULL, NULL) +VALUES ('000146', 'Homeless Primary Nighttime Residence', NULL, 'The primary nighttime residence of the person at the time the person was identified as homeless.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23146', '12', '23146', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000101', 'Course Section Time Required for Completion', NULL, 'The actual or estimated number of clock minutes required for course completion. This number is especially important for career and technical education course and may represent (in minutes) the clock hour requirement of the course, the number of minutes (or clock hours) of class time per week, times the number of equivalent weeks the class typically meets.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21101', '11', '21101', NULL, NULL) +VALUES ('000147', 'Homeless Serviced Indicator', NULL, 'An indication of whether homeless children and youth were served by a McKinney-Vento program in the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23147', '12', '23147', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000102', 'Staff Evaluation Outcome', NULL, 'The result of an assessment of a person''s performance.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21102', '11', '21102', NULL, NULL) +VALUES ('000148', 'Homeless Unaccompanied Youth Status', NULL, 'A homeless unaccompanied youth is a youth who is not in the physical custody of a parent or guardian and who fits the McKinney-Vento definition of homeless. Students must be both unaccompanied and homeless to be included as unaccompanied homeless youth. There is no age range specified for an unaccompanied youth in the law. The upper age range is determined by what a state defines as school age, unless the child is in special education. The upper age range for students in special education may extend to 22 years of age. There is no lower age range. Therefore, as an example, a young child not in the physical custody of a parent or guardian, though living with a caregiver, and is living in a situation that is not fixed, regular, and adequate, would be identified as a homeless unaccompanied youth.', NULL, '1', 'Homelessness Status and Primary Nighttime Residence should be known in order to collect this additional information.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23148', '12', '23148', 'Updated', 'Add usage note, update defintion') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000103', 'Staff Evaluation Scale', NULL, 'The quantitative or qualitative range of possible scores/rating for a person''s overall performance (e.g., 0 - 10; Poor, Fair, Average, Good, Excellent).', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21103', '11', '21103', NULL, NULL) +VALUES ('000149', 'Homelessness Status', NULL, 'Children and youth who lack a fixed, regular, and adequate nighttime residence. Homeless children and youth include: 1) children and youth who are sharing the housing of other persons due to loss of housing, economic hardship, or a similar reason; are living in motels, hotels, trailer parks, or camping grounds due to the lack of alternative adequate accommodations; are living in emergency or transitional shelters; are abandoned in hospitals; or are awaiting foster care placement; 2) children and youth who have a primary nighttime residence that is a public or private place not designed for or originally used as a regular sleeping accommodation for human beings; or 3) children and youths who are living in cars, parks, public spaces, abandoned buildings, substandard housing, bus or train stations, or similar settings. 4) migratory children who qualify as homeless because the children are living in circumstances described in the above. (See Section 103 of the McKinney Act for a more detailed description of this data element).', NULL, '1', 'Use of this element for EDFacts reporting beginning in school year 2022-2023 must include student enrollment. This element does not indicate if the student was served under the McKinney-Vento Act.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23149', '12', '23149', 'Updated', 'Add usage note') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000104', 'Staff Evaluation Score or Rating', NULL, 'The actual quantitative or qualitative assessment of a person''s overall performance.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21104', '11', '21104', NULL, NULL) +VALUES ('000150', 'Honors Description', NULL, 'A description of the type of academic distinctions earned by or awarded to the person.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23150', '12', '23150', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000105', 'Staff Evaluation System', NULL, 'The instrument and/or set of procedures with which a person''s performance is assessed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21105', '11', '21105', NULL, NULL) +VALUES ('000170', 'Integrated Technology Status', NULL, 'An indication of the extent to which the district has effectively and fully integrated technology, as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23170', '12', '23170', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000106', 'Cohort Exclusion', NULL, 'Those persons who may be removed (deleted) from a cohort (or subcohort). For the Graduation Rates and Fall Enrollment retention rate reporting, persons may be removed from a cohort if they left the institution for one of the following reasons: death or total and permanent disability; service in the armed forces (including those called to active duty); service with a foreign aid service of the federal government, such as the Peace Corps; or service on official church missions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21106', '11', '21106', NULL, NULL) +VALUES ('000151', 'IDEA Indicator', NULL, 'A person having intellectual disability; hearing impairment, including deafness; speech or language impairment; visual impairment, including blindness; serious emotional disturbance (hereafter referred to as emotional disturbance); orthopedic impairment; autism; traumatic brain injury; developmental delay; other health impairment; specific learning disability; deaf-blindness; or multiple disabilities and who, by reason thereof, receive special education and related services under the Individuals with Disabilities Education Act (IDEA) according to an Individualized Education Program (IEP), Individual Family Service Plan (IFSP), or service plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23151', '12', '23151', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000107', 'Enrollment Exit Date', NULL, 'The year, month and day on which the student officially withdrew or graduated, i.e. the date on which the student''s enrollment ended.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21107', '11', '21107', NULL, NULL) +VALUES ('001067', 'Assessment Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment by a school, school system, a state, or other agency or entity. This may be the publisher identifier.', 'Alphanumeric - 100 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23152', '12', '23152', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000108', 'Exit or Withdrawal Status', NULL, 'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21108', '11', '21108', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001068', 'Local Education Agency Identifier', 'LEA Identifier', 'A unique number or alphanumeric code assigned to a local education agency by a school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23153', '12', '23153', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000110', 'Exit or Withdrawal Type', NULL, 'The circumstances under which the student exited from membership in an educational institution. ', NULL, '1', 'The purpose of this element is to track the circumstances related to an exit from membership. There are multiple use cases related to this element, some for longitudinal purposes, some for funding, some for live transactional systems. The descriptions and definitions are intended to meet those needs. Four often misunderstood options are explained below:
1. 09999 - Other. Other is intended to indicate that CEDS has not yet defined a circumstance in which this exit occurred.
2. 03505 - Exited. Unlike "09999 - Other", the "Exited" option is intended to be used for administrative purposes such as a mid-year grade level change.
3. 01931 - Not enrolled, unknown status. This is to be used as a placeholder while additional exit information is collected or to track students who are known to have Discontinued Schooling (dropped out) separate from students whose whereabouts are unknown.
4. 03502 - Not enrolled, eligible to return. Different than the 01931 code, the status of this student is not unknown; however, the institution is required to exit the student from membership for an extended period. It is expected the student will reenroll in the same institution following this extended period.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21110', '11', '21110', NULL, NULL) +VALUES ('001069', 'School Identifier', NULL, 'A unique number or alphanumeric code assigned to an institution by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23155', '12', '23155', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000111', 'Federal School Code', NULL, ' A unique code assigned by the U.S. Department of Education to schools participating in the Title IV Federal Student Aid programs. Persons enter these codes in the Free Application for Federal Student Aid (FAFSA) to indicate which postsecondary schools they want to receive their financial aid application results.', 'Alphanumeric - exactly 6 characters in length', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21111', '11', '21111', NULL, NULL) +VALUES ('001070', 'Staff Member Identifier', NULL, 'A unique number or alphanumeric code assigned to a staff member by a school, school system, a state, registry, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23156', '12', '23156', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000112', 'Financial Aid Award Amount', NULL, 'The amount of financial aid awarded to a person for the term/year.', 'Numeric - up to 2 digits after decimal place', '0', 'Linked to financial aid award type.
Note: For any given individual this cluster of fields may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21112', '11', '21112', NULL, NULL) +VALUES ('001071', 'Student Identifier', NULL, 'A unique number or alphanumeric code assigned to a student by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23157', '12', '23157', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000113', 'Financial Aid Award Type', NULL, 'The classification of financial aid awarded to a person for the academic term/year.', NULL, '1', 'Linked to financial aid type.
Note: For any given individual this cluster of fields may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21113', '11', '21113', NULL, NULL) +VALUES ('000365', 'Assessment Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23158', '12', '23158', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000115', 'First Name', NULL, 'The full legal first name given to a person at birth, baptism, or through legal change.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21115', '11', '21115', NULL, NULL) +VALUES ('001072', 'Local Education Agency Identification System', 'LEA Identification System', 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to a local education agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23159', '12', '23159', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000117', 'First Time Postsecondary Student', NULL, 'A person who has no prior postsecondary experience attending any institution for the first time at the undergraduate level since completing high school (or its equivalent). This includes persons enrolled in academic or occupational programs. It also includes persons enrolled in the fall term who attended college for the first time in the prior summer term, and persons who entered with advanced standing (college credits earned before graduation from high school).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21117', '11', '21117', NULL, NULL) +VALUES ('001073', 'School Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23161', '12', '23161', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000118', 'Staff Full Time Equivalency', 'Staff FTE', 'The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21118', '11', '21118', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001074', 'Staff Member Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, registry, or other agencies to refer to a staff member.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23162', '12', '23162', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000120', 'GED Preparation Program Participation Status', NULL, 'An indication that a student aged 16-19 participates in a General Educational Development (GED) preparation program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21120', '11', '21120', NULL, NULL) +VALUES ('001075', 'Student Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to a student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23163', '12', '23163', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000121', 'Generation Code or Suffix', NULL, 'An appendage, if any, used to denote a person''s generation in his family (e.g., Jr., Sr., III).', 'Alphanumeric - 10 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21121', '11', '21121', NULL, NULL) +VALUES ('000164', 'Increased Learning Time Type', NULL, 'The types of increased learning time provided.', NULL, '1', 'If your data is granular enough to differentiate between Before School and After School, it is recommended those options be selected over using the combined Before or After School option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23164', '12', '23164', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000122', 'Gifted and Talented Indicator', NULL, 'An indication that the student is participating in and served by a Gifted/Talented program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21122', '11', '21122', NULL, NULL) +VALUES ('000165', 'Initial Enrollment Term', NULL, 'The first registration term of a person enrolling in credit-granting courses at a postsecondary institution after completing high school (or its equivalent). ', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23165', '12', '23165', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000123', 'Grade Point Average Weighted Indicator', 'GPA Weighted Indicator', 'An indication of whether the reported Grade Point Average is weighted or unweighted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21123', '11', '21123', NULL, NULL) +VALUES ('000166', 'Institution IPEDS UnitID', 'IPEDS Identifier', 'Unique identification number assigned to postsecondary institutions surveyed through the Integrated Postsecondary Education Data System (IPEDS). Also referred to as UNITID or IPEDS ID.', 'Integer - exactly 6 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23166', '12', '23166', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000124', 'Student Course Section Grade Earned', NULL, 'A final indicator of student performance in a course section as submitted by the instructor.', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21124', '11', '21124', NULL, NULL) +VALUES ('000167', 'Institution Telephone Number Type', NULL, 'The type of communication number listed for an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23167', '12', '23167', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000125', 'Grade Level When Course Taken', NULL, 'Student''s grade level at time of course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21125', '11', '21125', 'Updated', 'Added new option to the existing option set.') +VALUES ('000168', 'Instructional Activity Hours Attempted', NULL, 'The number of credit hours and/or contact hours attempted by a person during a term.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23168', '12', '23168', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000126', 'Grade Level When Assessed', NULL, 'The grade or developmental level of a student when assessed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21126', '11', '21126', 'Updated', 'Added new option to the existing option set.') +VALUES ('000169', 'Instructional Activity Hours Type', NULL, 'The unit of measure of student instructional activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23169', '12', '23169', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000127', 'Grade Point Average', NULL, 'The value of the total quality points divided by the Credit Hours for Grade Point Average. ', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21127', '11', '21127', NULL, NULL) +VALUES ('000171', 'Last Qualifying Move Date', NULL, 'The year, month and day of the last qualifying move of a migrant student.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23171', '12', '23171', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000128', 'Grade Point Average Cumulative', 'GPA - Cumulative', 'A measure of average performance in all courses taken by a person during his or her school career as determined for record-keeping purposes. This is obtained by dividing the total grade points received by the total number of credits attempted. This usually includes grade points received and credits attempted in his or her current school as well as those transferred from schools in which the person was previously enrolled.', 'Numeric - up to 4 digits after decimal place', '0', 'Related Connection; linked to Grade Point Average Weighted Indicator, High School Percentile, High School Rank, and Size of High School Graduating Class', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21128', '11', '21128', NULL, NULL) +VALUES ('000172', 'Last or Surname', 'Last Name', 'The full legal last name borne in common by members of a family.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23172', '12', '23172', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000129', 'Grade Point Average Given Session', 'GPA - Given Session', 'A measure of average performance in all courses taken by a person during a given session. This is obtained by dividing the total grade points received by the number of credits attempted for the same session.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21129', '11', '21129', NULL, NULL) +VALUES ('000173', 'Local Education Agency Improvement Status', 'LEA Improvement Status', 'An indication of the improvement stage for AYP of the local education agency (LEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23173', '12', '23173', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000130', 'Grade Points Earned Cumulative', NULL, 'The cumulative number of grade points a person earns by successfully completing courses or examinations during his or her enrollment in the current school as well as those transferred from schools in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21130', '11', '21130', NULL, NULL) +VALUES ('000174', 'Local Education Agency Operational Status', 'LEA Operational Status', 'The classification of the operational condition of a local education agency (LEA) at the start of the school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23174', '12', '23174', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000131', 'Grades Offered', NULL, 'The specific grade or combination of grades offered by an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21131', '11', '21131', 'Updated', 'Added and removed options from existing option set.') +VALUES ('000175', 'Local Education Agency Supervisory Union Identification Number', 'LEA Supervisory Union Identification Number', 'The three-digit unique identifier assigned to the supervisory union by the state. ', 'Alphanumeric - 3 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23175', '12', '23175', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000132', 'Graduation Rate Survey Cohort Year', NULL, 'The academic year in which a student entered as part of the GRS cohort.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21132', '11', '21132', NULL, NULL) +VALUES ('000177', 'Assessment Level for Which Designed', NULL, 'The typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23177', '12', '23177', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000133', 'Graduation Rate Survey Indicator', NULL, 'An indication of whether or not the student is in a GRS cohort; meaning the student began as a first-time, full-time, degree seeking student in the fall of a given year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21133', '11', '21133', NULL, NULL) +VALUES ('000178', 'Level of Institution', NULL, 'A classification of whether a postsecondary institution''s highest level of offering is a program of 4-years or higher (4 year), 2-but-less-than 4-years (2 year), or less than 2-years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23178', '12', '23178', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000134', 'Gun Free Schools Act Reporting Status', NULL, 'An indication of whether the school or local education agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, as defined by Title 18, Section 921.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21134', '11', '21134', NULL, NULL) +VALUES ('000180', 'English Learner Status', NULL, 'In coordination with the state''s definition based on Section 8101(20) of the ESEA, as amended by the ESSA, the term ''English learner'', when used with respect to an individual, means an individual: (A) who is aged 3 through 21; (B) who is enrolled or preparing to enroll in an elementary school or a secondary school; (C) (i) who was not born in the United States or whose native languages are languages other than English; (ii) (I) who is a Native American or Alaska Native, or a native resident of the outlying areas; and (II) who comes from an environment where a language other than English has had a significant impact on the individual''s level of English language proficiency; or (iii) who is migratory, whose native language is a language other than English, and who come from an environment where a language other than English is dominant; and (D) whose difficulties in speaking, reading, writing, or understanding the English language may be sufficient to deny the individual (i) the ability to meet the challenging State academic standards; (ii) the ability to successfully achieve in classrooms where the language of instruction is English; or (iii) the opportunity to participate fully in society.', NULL, '1', 'To be classified as an English learner, an individual must be A, B, and (C or D). For C, an individual can be i, ii, or iii. If C-ii, the individual must be I and II. For D, an individual must be denied i or ii or iii and must be determined by a valid assessment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23180', '12', '23180', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000135', 'Harassment or Bullying Policy Status', NULL, 'An indication of whether the education unit has adopted written policy prohibiting harassment and bullying on the basis of a civil rights law.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21135', '11', '21135', NULL, NULL) +VALUES ('000181', 'Magnet or Special Program Emphasis School', NULL, 'A school that has been designed: 1) to attract students of different racial/ethnic backgrounds for the purpose of reducing, preventing, or eliminating racial isolation; and/or 2)to provide an academic or social focus on a particular theme (e.g., science/math, performing arts, gifted/talented, career academy or foreign language).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23181', '12', '23181', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000136', 'Staff Compensation Health Benefits', NULL, 'Contributions made by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider''s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21136', '11', '21136', NULL, NULL) +VALUES ('000182', 'Marking Period Name', NULL, 'The name or description of the marking period (e.g., fall, first marking period).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23182', '12', '23182', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000137', 'High School Course Requirement', NULL, 'An indication that this course credit is required for a high school diploma.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21137', '11', '21137', NULL, NULL) +VALUES ('000183', 'Mid Term Mark', NULL, 'Indicator of student performance at the mid-point of the marking period.', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23183', '12', '23183', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000138', 'High School Diploma Type', NULL, 'The type of diploma/credential that is awarded to a person in recognition of his/her completion of the curricular requirements.', NULL, '1', 'Use "Other Diploma" instead of "Other" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21138', '11', '21138', NULL, NULL) +VALUES ('000184', 'Middle Name', NULL, 'A full legal middle name given to a person at birth, baptism, or through legal change.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23184', '12', '23184', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000140', 'High School Graduation Rate Indicator Status', NULL, 'An indication of whether the school or district met the High School Graduation Rate requirement in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21140', '11', '21140', NULL, NULL) +VALUES ('000185', 'Migrant Education Program Participation Status', 'MEP Participation Status', 'An indicator of whether the student is served by a Migrant Education Program (MEP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23185', '12', '23185', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000141', 'Highest Level of Education Completed', NULL, 'The extent of formal instruction a person has received (e.g., the highest grade in school completed or its equivalent or the highest degree received).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21141', '11', '21141', NULL, NULL) +VALUES ('000186', 'Migrant Education Program Services Type', 'MEP Services Type', 'The type of services received by participating migrant students in the migrant education program (MEP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23186', '12', '23186', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000142', 'Highly Qualified Teacher Indicator', NULL, 'An indication that the teacher has been classified as highly qualified based on assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21142', '11', '21142', NULL, NULL) +VALUES ('000187', 'Migrant Education Program Session Type', 'MEP Session Type', 'The time of year that a Migrant Education Program operates.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23187', '12', '23187', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000143', 'Hire Date', NULL, 'The year, month and day on which a person was hired for a position, or consecutive positions within the same organization and job classification.', 'YYYY-MM-DD', '0', 'This is the Hire Date beginning consecutive employment with the current employer in the same Professional-Educational Job Classification. A person may change positions within the same organization and job classification without triggering a new hire date. For example a teacher originally hire to teach 3rd grade may be reassigned to 4th grade. However, a change of job classifications, e.g. from teacher to principal, would trigger a new Hire Date.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21143', '11', '21143', NULL, NULL) +VALUES ('000188', 'Migrant Education Program Staff Category', 'MEP Staff Category', 'Titles of employment, official status, or rank of staff working in the Migrant Education Program (MEP).', NULL, '1', 'Funded by Title I-C.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23188', '12', '23188', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000144', 'Hispanic or Latino Ethnicity', NULL, 'An indication that the person traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central and South America, and other Spanish cultures, regardless of race.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21144', '11', '21144', NULL, NULL) +VALUES ('000189', 'Migrant Status', NULL, 'Persons who are, or whose parents or spouses are, migratory agricultural workers, including migratory dairy workers, or migratory fishers, and who, in the preceding 36 months, in order to obtain, or accompany such parents or spouses, in order to obtain, temporary or seasonal employment in agricultural or fishing work (A) have moved from one LEA to another; (B) in a state that comprises a single LEA, have moved from one administrative area to another within such LEA; or (C) reside in an LEA of more than 15,000 square miles, and migrate a distance of 20 miles or more to a temporary residence to engage in a fishing activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23189', '12', '23189', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000146', 'Homeless Primary Nighttime Residence', NULL, 'The primary nighttime residence of the person at the time the person was identified as homeless.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21146', '11', '21146', NULL, NULL) +VALUES ('000190', 'Address County Name', NULL, 'The name of the county, parish, borough, or comparable unit (within a state) in which an address is located.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23190', '12', '23190', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000147', 'Homeless Serviced Indicator', NULL, 'An indication of whether homeless children and youth were served by a McKinney-Vento program in the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21147', '11', '21147', NULL, NULL) +VALUES ('000191', 'Name of Institution', NULL, 'The full legally accepted name of the institution.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23191', '12', '23191', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000148', 'Homeless Unaccompanied Youth Status', NULL, 'An indication that homeless youths were unaccompanied by parents or legal guardians.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21148', '11', '21148', NULL, NULL) +VALUES ('000193', 'Neglected or Delinquent Status', NULL, 'An indication that the student is participating in programs for neglected or delinquent students (N or D) under Title I, Part D, Subpart 1 (state agencies) of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23193', '12', '23193', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000149', 'Homelessness Status', NULL, 'Children and youth who lack a fixed, regular, and adequate nighttime residence. Homeless children and youth include: 1) children and youth who are sharing the housing of other persons due to loss of housing, economic hardship, or a similar reason; are living in motels, hotels, trailer parks, or camping grounds due to the lack of alternative adequate accommodations; are living in emergency or transitional shelters; are abandoned in hospitals; or are awaiting foster care placement; 2) children and youth who have a primary nighttime residence that is a public or private place not designed for or originally used as a regular sleeping accommodation for human beings; or 3) children and youths who are living in cars, parks, public spaces, abandoned buildings, substandard housing, bus or train stations, or similar settings. 4) migratory children who qualify as homeless because the children are living in circumstances described in the above. (See Section 103 of the McKinney Act for a more detailed description of this data element).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21149', '11', '21149', NULL, NULL) +VALUES ('000194', 'Neglected or Delinquent Program Type', NULL, 'The type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23194', '12', '23194', 'Updated', 'Add new option to option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000150', 'Honors Description', NULL, 'A description of the type of academic distinctions earned by or awarded to the person.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21150', '11', '21150', NULL, NULL) +VALUES ('000196', 'Visa Type', NULL, 'An indicator of a non-US citizen''s Visa type.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23196', '12', '23196', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000151', 'IDEA Indicator', NULL, 'A person having intellectual disability; hearing impairment, including deafness; speech or language impairment; visual impairment, including blindness; serious emotional disturbance (hereafter referred to as emotional disturbance); orthopedic impairment; autism; traumatic brain injury; developmental delay; other health impairment; specific learning disability; deaf-blindness; or multiple disabilities and who, by reason thereof, receive special education and related services under the Individuals with Disabilities Education Act (IDEA) according to an Individualized Education Program (IEP), Individual Family Service Plan (IFSP), or service plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21151', '11', '21151', NULL, NULL) +VALUES ('000197', 'Normal Length of Time for Completion', NULL, 'The amount of time necessary for a person to complete all requirements for a degree or certificate according to the institution''s catalog. This is typically 4 years (8 semesters or trimesters, or 12 quarters, excluding summer terms) for a bachelor''s degree in a standard term-based institution; 2 years (4 semesters or trimesters, or 6 quarters, excluding summer terms) for an associate''s degree in a standard term-based institution; and the various scheduled times for certificate programs.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23197', '12', '23197', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001067', 'Assessment Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment by a school, school system, a state, or other agency or entity. This may be the publisher identifier.', 'Alphanumeric - 100 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21152', '11', '21152', 'Updated', 'Increased Format to Alphanumeric- 100 characters.') +VALUES ('000198', 'Normal Length of Time for Completion Units', NULL, 'The unit of measurement for length of time for completion.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23198', '12', '23198', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001068', 'Local Education Agency Identifier', 'LEA Identifier', 'A unique number or alphanumeric code assigned to a local education agency by a school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21153', '11', '21153', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000199', 'Number of Credits Attempted', NULL, 'The number of credits that a student can earn for enrolling in and completing a given course.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23199', '12', '23199', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001069', 'School Identifier', NULL, 'A unique number or alphanumeric code assigned to an institution by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21155', '11', '21155', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000200', 'Number of Credits Earned', NULL, 'The number of credits an individual earns by the successful completion of a course.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23200', '12', '23200', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001070', 'Staff Member Identifier', NULL, 'A unique number or alphanumeric code assigned to a staff member by a school, school system, a state, registry, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21156', '11', '21156', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000201', 'Number of Days Absent', NULL, 'The number of days a person is absent when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23201', '12', '23201', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001071', 'Student Identifier', NULL, 'A unique number or alphanumeric code assigned to a student by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21157', '11', '21157', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000202', 'Number of Days in Attendance', NULL, 'The number of days a person is present when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', 'Note: This applies to an enrollment period record. Separate records using this element definition could capture attendance for regular enrollment, an out-of-school program or other program requiring attendance records. CEDS now supports the detailed attendance events to capture attendance status on any given day, class period, or session. CEDS generally doesn''t include elements for counts when it has the unit level elements to calculate the count. However, this element has been retained to support the intended use cases, recognizing that the rules for attendance vary based on location.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23202', '12', '23202', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000365', 'Assessment Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21158', '11', '21158', NULL, NULL) +VALUES ('000203', 'Office of Postsecondary Education Identifier', 'OPEID', 'Identification number used by the U.S. Department of Education''s Office of Postsecondary Education (OPE) to identify schools that have Program Participation Agreements (PPA) so that its students are eligible to participate in Federal Student Financial Assistance programs under Title IV regulations. This is a 6-digit number followed by a 2-digit suffix used to identify branches, additional locations, and other entities that are part of the eligible institution.', 'Integer - exactly 8 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23203', '12', '23203', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001072', 'Local Education Agency Identification System', 'LEA Identification System', 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to a local education agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21159', '11', '21159', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000204', 'Organization Name', NULL, 'The name of a non-person entity such as an organization, institution, agency or business.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23204', '12', '23204', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001073', 'School Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21161', '11', '21161', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000205', 'Staff Compensation Other Benefits', NULL, 'All other benefits paid by the school district, municipal, state, federal, and other government agencies for the teacher or early learning provider, prorated to the specific school or local provider agency indicated on the record, not including retirement and health insurance benefits or contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23205', '12', '23205', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001074', 'Staff Member Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, registry, or other agencies to refer to a staff member.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21162', '11', '21162', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000206', 'Other Name', NULL, 'Previous, alternate or other names or aliases associated with the person.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23206', '12', '23206', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001075', 'Student Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to a student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21163', '11', '21163', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000207', 'Paraprofessional Qualification Status', NULL, 'An indication of whether paraprofessionals are classified as qualified for their assignment according to state definition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23207', '12', '23207', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000164', 'Increased Learning Time Type', NULL, 'The types of increased learning time provided.', NULL, '1', 'If your data is granular enough to differentiate between Before School and After School, it is recommended those options be selected over using the combined Before or After School option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21164', '11', '21164', NULL, NULL) +VALUES ('000208', 'Participation Status for Math', NULL, 'An indication of whether the school or district met the 95 percent participation requirement in the mathematics assessment in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23208', '12', '23208', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000165', 'Initial Enrollment Term', NULL, 'The first registration term of a person enrolling in credit-granting courses at a postsecondary institution after completing high school (or its equivalent). ', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21165', '11', '21165', NULL, NULL) +VALUES ('000209', 'Participation Status for Reading and Language Arts', NULL, 'An indication of whether the school or district met the 95 percent participation requirement on the reading/language arts assessment in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23209', '12', '23209', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000166', 'Institution IPEDS UnitID', 'IPEDS Identifier', 'Unique identification number assigned to postsecondary institutions surveyed through the Integrated Postsecondary Education Data System (IPEDS). Also referred to as UNITID or IPEDS ID.', 'Integer - exactly 6 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21166', '11', '21166', NULL, NULL) +VALUES ('000210', 'Persistently Dangerous Status', NULL, 'An indication of whether the school is identified as persistently dangerous in accordance with state definition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23210', '12', '23210', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000167', 'Institution Telephone Number Type', NULL, 'The type of communication number listed for an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21167', '11', '21167', NULL, NULL) +VALUES ('000211', 'Persistently Lowest Achieving School Status', NULL, 'An indication of whether the school is identified by the state as persistently lowest-achieving.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23211', '12', '23211', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000168', 'Instructional Activity Hours Attempted', NULL, 'The number of credit hours and/or contact hours attempted by a person during a term.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21168', '11', '21168', NULL, NULL) +VALUES ('000212', 'Personal Title or Prefix', 'Prefix', 'An appellation, if any, used to denote rank, placement, or status (e.g., Mr., Ms., Reverend, Sister, Dr., Colonel).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23212', '12', '23212', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000169', 'Instructional Activity Hours Type', NULL, 'The unit of measure of student instructional activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21169', '11', '21169', NULL, NULL) +VALUES ('000213', 'Position Title', NULL, 'The descriptive name of a person''s position.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23213', '12', '23213', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000170', 'Integrated Technology Status', NULL, 'An indication of the extent to which the district has effectively and fully integrated technology, as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21170', '11', '21170', NULL, NULL) +VALUES ('000214', 'Address Postal Code', NULL, 'A number that identifies each postal delivery area in the United States used as a portion of an address.', 'Alphanumeric - 17 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23214', '12', '23214', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000171', 'Last Qualifying Move Date', NULL, 'The year, month and day of the last qualifying move of a migrant student.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21171', '11', '21171', NULL, NULL) +VALUES ('000216', 'Prekindergarten Eligibility', NULL, 'The groups of students for whom pre-kindergarten programs are available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23216', '12', '23216', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000172', 'Last or Surname', 'Last Name', 'The full legal last name borne in common by members of a family.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21172', '11', '21172', NULL, NULL) +VALUES ('000217', 'Prekindergarten Eligible Ages for Non-IDEA Students', NULL, 'The ages of children not served under IDEA to whom the LEA''s pre-kindergarten services are available. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23217', '12', '23217', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000173', 'Local Education Agency Improvement Status', 'LEA Improvement Status', 'An indication of the improvement stage for AYP of the local education agency (LEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21173', '11', '21173', NULL, NULL) +VALUES ('000218', 'Primary Disability Type', NULL, 'The major or overriding disability condition that best describes a person''s impairment.', NULL, '1', 'Option set based on EDFacts. Only one disability condition would be selected. Refer to IDEA Disability Type for selecting multiple disability category options and any additional IDEA disability categories.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23218', '12', '23218', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000174', 'Local Education Agency Operational Status', 'LEA Operational Status', 'The classification of the operational condition of a local education agency (LEA) at the start of the school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21174', '11', '21174', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000219', 'Primary Telephone Number Indicator', NULL, 'An indication that the telephone number should be used as the principal number for a person or organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23219', '12', '23219', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000175', 'Local Education Agency Supervisory Union Identification Number', 'LEA Supervisory Union Identification Number', 'The three-digit unique identifier assigned to the supervisory union by the state. ', 'Alphanumeric - 3 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21175', '11', '21175', NULL, NULL) +VALUES ('000914', 'Learning Resource Subject Code', NULL, 'The code used to identify the organization of subject matter and related learning experiences addressed by the learning resource.', 'Alphanumeric - 30 characters maximum', '0', 'A promising practice is to use a URL as the Learning Resource Subject Code, that resolves to a web page describing a term in a subject taxonomy. For example, for "Mathematics", the URL http://id.loc.gov/authorities/classification/BH301.M35.html points to the Library of Congress classification for "Mathematics". For K12 curriculum "SCED" - School Courses for the Exchange of Data (SCED) may be used, e.g. https://ceds.ed.gov/ScedCourseCodes.aspx#02031 is "Mathematics (grade 1)"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23914', '12', '23914', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000177', 'Assessment Level for Which Designed', NULL, 'The typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21177', '11', '21177', 'Updated', 'Added new option to the existing option set.') +VALUES ('000915', 'Learning Resource Subject Code System', NULL, 'The system that is used to identify the organization of subject matter and related learning experiences addressed by the learning resource.', 'Alphanumeric - 30 characters maximum', '0', 'This may be a URL to a web page describing the subject code system or a name or abbreviation for the system if no authoritative web page exists. When the associated learning resource Subject Code is a URL, that URL usually provides enough context so that the "Subject Code System" need not be specified. However, this may be the URL to a page describing the classification system and/or the entry point to the web hosted classification system. E.g. for the Library of Congress Classification System use: http://id.loc.gov/authorities/classification.html', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23915', '12', '23915', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000178', 'Level of Institution', NULL, 'A classification of whether a postsecondary institution''s highest level of offering is a program of 4-years or higher (4 year), 2-but-less-than 4-years (2 year), or less than 2-years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21178', '11', '21178', NULL, NULL) +VALUES ('000916', 'Learning Resource Date Created', NULL, 'The date on which the resource was created.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23916', '12', '23916', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000179', 'Limited English Proficiency - Postsecondary', 'LEP - Postsecondary', 'The term "individual with limited English proficiency" means a secondary school student, an adult, or an out-of-school youth, who has limited ability in speaking, reading, writing, or understanding the English language AND whose native language is a language other than English; OR who lives in a family or community environment in which a language other than English is the dominant language. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21179', '11', '21179', 'Removed', 'Marked "Limited English Proficiency - Postsecondary" as "Removed". Use "English Learner Status" instead.') +VALUES ('000917', 'Learning Resource Creator', NULL, 'The name of a person or organization credited with the creation of the resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23918', '12', '23918', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000180', 'English Learner Status', NULL, 'In coordination with the state''s definition based on Section 8101(20) of the ESEA, as amended by the ESSA, the term ''English learner'', when used with respect to an individual, means an individual: (A) who is aged 3 through 21; (B) who is enrolled or preparing to enroll in an elementary school or a secondary school; (C) (i) who was not born in the United States or whose native languages are languages other than English; (ii) (I) who is a Native American or Alaska Native, or a native resident of the outlying areas; and (II) who comes from an environment where a language other than English has had a significant impact on the individual''s level of English language proficiency; or (iii) who is migratory, whose native language is a language other than English, and who come from an environment where a language other than English is dominant; and (D) whose difficulties in speaking, reading, writing, or understanding the English language may be sufficient to deny the individual (i) the ability to meet the challenging State academic standards; (ii) the ability to successfully achieve in classrooms where the language of instruction is English; or (iii) the opportunity to participate fully in society.', NULL, '1', 'To be classified as an English learner, an individual must be A, B, and (C or D). For C, an individual can be i, ii, or iii. If C-ii, the individual must be I and II. For D, an individual must be denied i or ii or iii and must be determined by a valid assessment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21180', '11', '21180', 'Updated', 'Removed English Learner Status out of EL Child>Disability. Created new category called English Learner. Removed Alternate Name') +VALUES ('000918', 'Learning Resource Publisher Name', NULL, 'The name of the organization credited with publishing the resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23919', '12', '23919', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000181', 'Magnet or Special Program Emphasis School', NULL, 'A school that has been designed: 1) to attract students of different racial/ethnic backgrounds for the purpose of reducing, preventing, or eliminating racial isolation; and/or 2)to provide an academic or social focus on a particular theme (e.g., science/math, performing arts, gifted/talented, career academy or foreign language).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21181', '11', '21181', NULL, NULL) +VALUES ('000919', 'Learning Resource Language', NULL, 'The primary language of the resource.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.
Note: For accessible resources LRMI uses language codes from the IETF BCP 47 standard which also refers to ISO 639. (Equivalent of the AfA languageOfAdaptation property.)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23920', '12', '23920', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000182', 'Marking Period Name', NULL, 'The name or description of the marking period (e.g., fall, first marking period).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21182', '11', '21182', NULL, NULL) +VALUES ('000921', 'Learning Resource License URL', NULL, 'The URL where the owner specifies permissions for using the resource.', 'Alphanumeric - 512 characters maximum', '0', 'Ex: “http://creativecommons.org/licenses/by/3.0/“', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23922', '12', '23922', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000183', 'Mid Term Mark', NULL, 'Indicator of student performance at the mid-point of the marking period.', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21183', '11', '21183', NULL, NULL) +VALUES ('000922', 'Learning Resource Based on URL', NULL, 'A resource that was used in the creation of this resource. This term can be repeated for multiple sources.', 'Alphanumeric - 512 characters maximum', '0', 'Ex: “http://example.com/great-multiplication-intro.html“', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23923', '12', '23923', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000184', 'Middle Name', NULL, 'A full legal middle name given to a person at birth, baptism, or through legal change.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21184', '11', '21184', NULL, NULL) +VALUES ('000923', 'Learning Resource Intended End User Role', NULL, 'The individual or group for which the resource was produced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23924', '12', '23924', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000185', 'Migrant Education Program Participation Status', 'MEP Participation Status', 'An indicator of whether the student is served by a Migrant Education Program (MEP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21185', '11', '21185', NULL, NULL) +VALUES ('000924', 'Learning Resource Time Required', NULL, 'The approximate or typical time it takes to work with or through this learning resource for the typical intended target audience.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23925', '12', '23925', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000186', 'Migrant Education Program Services Type', 'MEP Services Type', 'The type of services received by participating migrant students in the migrant education program (MEP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21186', '11', '21186', NULL, NULL) +VALUES ('000925', 'Learning Resource Typical Age Range Minimum', NULL, 'The minimum for the typical range of ages of the content’s intended end user.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23926', '12', '23926', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000187', 'Migrant Education Program Session Type', 'MEP Session Type', 'The time of year that a Migrant Education Program operates.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21187', '11', '21187', NULL, NULL) +VALUES ('000926', 'Learning Resource Typical Age Range Maximum', NULL, 'The maximum for the typical range of ages of the content’s intended end user.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23927', '12', '23927', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000188', 'Migrant Education Program Staff Category', 'MEP Staff Category', 'Titles of employment, official status, or rank of staff working in the Migrant Education Program (MEP).', NULL, '1', 'Funded by Title I-C.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21188', '11', '21188', NULL, NULL) +VALUES ('000927', 'Learning Resource Interactivity Type', NULL, 'The predominate mode of learning supported by the learning resource. Acceptable values are active, expositive, or mixed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23928', '12', '23928', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000189', 'Migrant Status', NULL, 'Persons who are, or whose parents or spouses are, migratory agricultural workers, including migratory dairy workers, or migratory fishers, and who, in the preceding 36 months, in order to obtain, or accompany such parents or spouses, in order to obtain, temporary or seasonal employment in agricultural or fishing work (A) have moved from one LEA to another; (B) in a state that comprises a single LEA, have moved from one administrative area to another within such LEA; or (C) reside in an LEA of more than 15,000 square miles, and migrate a distance of 20 miles or more to a temporary residence to engage in a fishing activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21189', '11', '21189', NULL, NULL) +VALUES ('000928', 'Learning Resource Type', NULL, 'The predominate type or kind characterizing the learning resource.', NULL, '1', 'A community of SEAs have agreed to use a limited set of Learning Resource Type options when tagging learning resources in shared resource repositories. The options defined for this element align with those common tagging specifications.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23929', '12', '23929', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000190', 'Address County Name', NULL, 'The name of the county, parish, borough, or comparable unit (within a state) in which an address is located.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21190', '11', '21190', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000929', 'Learning Resource Text Complexity Value', NULL, 'The complexity of the text using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23930', '12', '23930', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000872', 'Competency Definition Parent Identifier', 'Learning Standard Item Parent Identifier, Competency Item Parent Identifier', 'The globally unique identifier (GUID) issued by the publisher of the competency framework that uniquely identifies the parent item in the hierarchy of competency definitions using a RFC 4122 compliant 32-character hexadecimal string, such as 21EC2020-3AEA-1069-A2DD-08002B30309D.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21872', '11', '21872', NULL, NULL) +VALUES ('000930', 'Learning Resource Text Complexity System', NULL, 'The scaling system used to specify the text complexity of an Learning Resource', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23931', '12', '23931', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000873', 'Competency Definition Parent Code', 'Learning Standard Item Parent Code, Competency Item Parent Code', 'A human-referenceable code designated by the publisher to identify the parent item in the hierarchy of competency definitions.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21873', '11', '21873', NULL, NULL) +VALUES ('000931', 'Assessment Short Name', NULL, 'An abbreviated title for an assessment.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23932', '12', '23932', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000874', 'Competency Definition URL', 'Learning Standard Item URL, Competency Item URL', 'A network-resolvable Uniform Resource Locator (URL) pointing to the authoritative reference for the competency definition.', 'Alphanumeric - 512 characters maximum', '0', 'An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21874', '11', '21874', NULL, NULL) +VALUES ('000932', 'Assessment Family Title', NULL, 'The full title of the Assessment Family. An Assessment Family is a set of assessments with a common name, jurisdiction, or focus, such as Graduate Record Exam or National Assessment of Educational Progress.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23933', '12', '23933', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000875', 'Competency Definition Blooms Taxonomy Domain', 'Learning Standard Item Blooms Taxonomy Domain, Competency Item Blooms Taxonomy Domain', 'Classification of the Competency Definition using Bloom''s Taxonomy Domains. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21875', '11', '21875', NULL, NULL) +VALUES ('000933', 'Assessment Family Short Name', NULL, 'The abbreviated title of the Assessment Family. An Assessment Family is a set of assessments with a common name, jurisdiction, or focus.', 'Alphanumeric - 30 characters maximum', '0', 'Examples: SAT, GRE, NAEP', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23934', '12', '23934', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000876', 'Competency Definition Multiple Intelligence', 'Learning Standard Item Multiple Intelligence, Competency Item Multiple Intelligence', 'Classification of the Competency Definition using intelligences defined for Howard Earl Gardner''s Theory of Multiple Intelligences.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21876', '11', '21876', NULL, NULL) +VALUES ('000934', 'Learner Action Type', NULL, 'The type of action taken by the learner.', NULL, '1', 'The CEDS Learner Action Type option set comes from the ADL Controlled Vocabulary, xAPI specification.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23935', '12', '23935', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000877', 'Competency Set Completion Criteria', NULL, 'The criteria for the set of competencies that represent completion or partial completion of a unit, course, program, degree, certification, or other achievement/award. Specifies whether completion requires achievement of all items in the set or some number of items.', NULL, '1', 'The criteria may be ‘all’ competencies in the set or ‘at-least’ # of competencies. Sets may be nested, e.g. all in subset A and 3 of 5 from subset B.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21877', '11', '21877', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('000935', 'Learner Action Value', NULL, 'The value representing input by the learner using an online system, such as a value entered in response to an assessment question, or the URL of a learning resource link clicked.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23936', '12', '23936', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000878', 'Competency Set Completion Criteria Threshold', NULL, 'The minimum number of competencies in the set that must be achieved for completion or partial completion of a unit, course, program, degree, certification, or other achievement/award.', 'Integer - greater than or equal to 0', '0', 'Used to define the completion criteria when Competency Set Completion Criteria is "At Least". Not used when Competency Set Completion Criteria is "All".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21878', '11', '21878', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('000937', 'Learner Action Date Time', NULL, 'The date and time at which the action was taken.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23938', '12', '23938', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000879', 'Learning Resource Competency Alignment Type', NULL, 'The alignment relationship between the resource and a competency definition object.', NULL, '1', 'A community of SEAs have agreed to use a limited set of Learning Resource Competency Alignment Type options when tagging learning resources in shared resource repositories. Those options are assesses, teaches, and requires.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21879', '11', '21879', NULL, NULL) +VALUES ('000938', 'Learner Activity Language', NULL, 'The default language used for the assignment.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23939', '12', '23939', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000880', 'Competency Framework Language', 'Learning Standard Document Language', 'The default language of the text used for the content in the competency framework.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21880', '11', '21880', NULL, NULL) +VALUES ('000941', 'Learner Activity Prerequisite', NULL, 'The description of the skills or competencies the student must have to engage in assignment.', 'Alphanumeric - 300 characters maximum', '0', 'Note: Prerequisites may also be referenced via an associated Learning Goal and Competency Set (prerequisites for individual competencies). For some applications enumeration of the detailed prerequisites will have greater utility than a single descriptive field.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23942', '12', '23942', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000881', 'Competency Definition Language', 'Learning Standard Item Language, Competency Item Language', 'The default language of the text used for the content in the competency definition statement.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21881', '11', '21881', NULL, NULL) +VALUES ('000942', 'Learner Activity Type', NULL, 'The type of work assigned to the learner.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23943', '12', '23943', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000882', 'Competency Framework License', 'Learning Standard Document License', 'A legal document giving official permission to do something with the competency framework.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21882', '11', '21882', NULL, NULL) +VALUES ('000943', 'Learner Activity Creation Date', NULL, 'The creation date of the assignment.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23944', '12', '23944', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000883', 'Competency Definition License', 'Learning Standard Item License, Competency Item License', 'The full text or URL reference to a legal document giving official permission to do something with the competency definition statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21883', '11', '21883', NULL, NULL) +VALUES ('000944', 'Learner Activity Maximum Time Allowed', NULL, 'The time required to complete the assignment.', 'Integer - greater than or equal to 0', '0', 'Time allowed is assumed to be unlimited if zero or omitted.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23945', '12', '23945', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000884', 'Competency Framework Publisher', 'Learning Standard Document Publisher', 'The entity responsible for making the competency framework available.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21884', '11', '21884', NULL, NULL) +VALUES ('000945', 'Learner Activity Maximum Time Allowed Unit', NULL, 'The unit of time of the Maximum Time Allowed value.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23946', '12', '23946', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000885', 'Competency Framework Rights', 'Learning Standard Document Rights', 'The information about rights held in and over the resource.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21885', '11', '21885', NULL, NULL) +VALUES ('000946', 'Learner Activity Due Date', NULL, 'The date assignment is due.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23947', '12', '23947', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000886', 'Competency Framework Rights Holder', 'Learning Standard Document Rights Holder', 'The person or organization owning or managing rights over the competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21886', '11', '21886', NULL, NULL) +VALUES ('000947', 'Learner Activity Due Time', NULL, 'The time the assignment is due.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23948', '12', '23948', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000887', 'Competency Definition Concept Keyword', 'Learning Standard Item Concept Keyword, Competency Item Concept Keyword', 'The significant topicality of the competency definition using free-text keywords and phrases.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21887', '11', '21887', NULL, NULL) +VALUES ('000948', 'Learner Activity Maximum Attempts Allowed', NULL, 'The number attempts a student may make on this assignment. Assumed to be unlimited if zero or omitted.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23949', '12', '23949', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000888', 'Competency Definition Concept Term', 'Learning Standard Item Concept Term, Competency Item Concept Term', 'The topicality of the competency definition, e.g. "Pythagorean Theorem," "Trigonometric functions," "Forces and energy," "Scientific method," "Oral history," etc.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21888', '11', '21888', NULL, NULL) +VALUES ('000949', 'Learner Activity Add to Grade Book Flag', NULL, 'Identifies the assignment as one that is graded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23950', '12', '23950', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000889', 'Assessment Registration Assignor Identifier', NULL, 'The unique identifier of the person who assigned the assessment to the learner.', 'Alphanumeric - 40 characters maximum', '0', 'For example, the unique identifier of a classroom teacher or school principal.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21889', '11', '21889', NULL, NULL) +VALUES ('000950', 'Learner Activity Release Date', NULL, 'The date the student was informed about an assignment or that an automated system displays the assignment.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23951', '12', '23951', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000890', 'Assessment Result Descriptive Feedback', NULL, 'The formative descriptive feedback that was given to a learner based on a scored/evaluated portion of an assessment as recorded in the result entity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21890', '11', '21890', NULL, NULL) +VALUES ('000951', 'Learner Activity Weight', NULL, 'The percentage weight of the assignment during the particular course or term.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23952', '12', '23952', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000891', 'Assessment Item Response Descriptive Feedback', NULL, 'The formative descriptive feedback that was given to a learner in response to the results from a scored/evaluated assessment item.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21891', '11', '21891', NULL, NULL) +VALUES ('000952', 'Learner Activity Possible Points', NULL, 'The number of possible points for an assignment.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23953', '12', '23953', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000892', 'Credential Definition Category Type', 'Credential Category Type', 'A category for defining the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 60 characters maximum', '0', 'Categories could include "Competency Mastered", "Competency Retained", "Course Completed", "Level Completed", "Certificate Earned", "Diploma Earned", "License Earned", "License Endorsement Earned", "Participation", "Academic Honor", "Non-Academic Honor", etc. (This element supports an emerging use case, therefore a complete set of options are not known. Future CEDS versions may define an Achievement Type element when a fixed option set can be compiled.) Note: The Achievement entity is most valuable when linked to a specific competency set that defined the learning standards related to the achievement.(SEE "Achievement Category System")', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21892', '11', '21892', NULL, NULL) +VALUES ('000953', 'Learner Activity Rubric URL', NULL, 'The Uniform Resource Locator pointing to a rubric that may be used to evaluate learner performance on the assignment.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23954', '12', '23954', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000893', 'Credential Definition Title', 'Credential Title', 'The title assigned to a qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21893', '11', '21893', NULL, NULL) +VALUES ('000954', 'Assessment Item Response Scaffolding Item Flag', NULL, 'Indicates that the response is to a scaffolding problem rather than the main/assigned problem. A scaffolding item is a follow-up formative assessment item used to assess prerequisite or component skills, presented immediately after a learner gives an incorrect answer on the previous item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23955', '12', '23955', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000894', 'Credential Image URL', NULL, 'The Uniform Resource Locator (URL) for the unique address of an image representing an award or badge associated with the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 512 characters maximum', '0', 'Typical use is for online display of a badge image.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21894', '11', '21894', NULL, NULL) +VALUES ('000955', 'Assessment Item Response Hint Count', NULL, 'The total number of hints presented as the learner responded to a formative assessment item. This may include hints requested by the learner or hints automatically presented such as in an online tutoring system. Presentation of a scaffolding item is a separate response record and not counted as a hint.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23956', '12', '23956', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000895', 'Credential Definition Description', 'Credential Description', 'A description of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21895', '11', '21895', NULL, NULL) +VALUES ('000956', 'Assessment Item Response Hint Included Answer', NULL, 'Indicates that one of the hints presented included the correct answer.', NULL, '1', 'A typical scenario for an online tutoring application may present a series of hints for a formative assessment item with the last hint being the correct answer. The learner must enter the correct answer before continuing. This data element is a flag that the learner was presented with the "bottom hint", which is the correct answer.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23957', '12', '23957', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000896', 'Credential Definition Criteria', 'Credential Criteria', 'The criteria for competency-based completion of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21896', '11', '21896', NULL, NULL) +VALUES ('000957', 'Assessment Item Response First Attempt Duration', NULL, 'The amount of time in seconds or milliseconds that a person took to give an initial response, a first attempt to answer a formative assessment item.', 'HH:MM:SS or HH:MM:SS.sss', '0', 'Formative assessments often allow learners to make multiple attempts until a correct or acceptable answer is given. In such cases it is valuable to know both the time it took for the initial response and the total time spent responding to the problem.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23958', '12', '23958', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000898', 'Credential Award Issuer Name', NULL, 'The name of the agent issuing the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 128 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21898', '11', '21898', NULL, NULL) +VALUES ('000958', 'Assessment Item Response Start Time', NULL, 'The time of day that the assessment item was presented to the learner.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23959', '12', '23959', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000900', 'Credential Award Issuer Origin URL', NULL, 'The Uniform Resource Locator (URL) from which the qualification, achievement, personal or organizational quality, or aspect of an identity was issued.', 'Alphanumeric - 512 characters maximum', '0', 'Used only if an award is issued electronically for the achievement.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21900', '11', '21900', NULL, NULL) +VALUES ('000959', 'Assessment Item Response Start Date', NULL, 'The date on which the assessment item was presented to the learner.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23960', '12', '23960', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000901', 'Credential Evidence Statement', NULL, 'A statement or reference describing the evidence that the learner met the criteria for attainment of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', 'A narrative that may connect multiple pieces of evidence OR an IRI or document describing the work that the recipient did to earn the achievement. This can be a page that links out to other pages if linking directly to the work is infeasible. May be used in an array of multiple values.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21901', '11', '21901', NULL, NULL) +VALUES ('000961', 'Assessment Administration Code', NULL, 'The code given to the assessment event by a state or other authority directing overall administration.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23962', '12', '23962', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000902', 'Goal Success Criteria', NULL, 'One or more statements that describes the criteria used by teachers and students to check for attainment of a goal.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21902', '11', '21902', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('000962', 'Assessment Administration Start Date', NULL, 'The start date of the time period designated for the assessment administration.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23963', '12', '23963', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000903', 'Goal Description', NULL, 'A statement that describes the desired outcomes.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21903', '11', '21903', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('000963', 'Assessment Administration Start Time', NULL, 'The start time of the time period designated for the assessment administration.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23964', '12', '23964', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000904', 'Assessment Item Possible Response Feedback Message', NULL, 'A message provided to the person being assessed after giving a response that matches the possible response.', 'Alphanumeric - 300 characters maximum', '0', 'This may be a message of affirmation for a correct answer or descriptive feedback for an incorrect answer. For example, if the item asked the question what is 2 times 3 and the learner answered 5, the Feedback Message might be "Try multiplication instead of addition."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21904', '11', '21904', NULL, NULL) +VALUES ('000964', 'Assessment Administration Finish Date', NULL, 'The finish date of the time period designated for the assessment administration.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23965', '12', '23965', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000905', 'Assessment Item Possible Response Sequence Number', NULL, 'The position of this response in the list of responses displayed, such as for a multiple choice item type.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21905', '11', '21905', NULL, NULL) +VALUES ('000965', 'Assessment Administration Finish Time', NULL, 'The finish time of the time period designated for the assessment administration.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23966', '12', '23966', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000906', 'Assessment Item Text Complexity Value', NULL, 'The complexity of the text using the scaling system defined by Text Complexity System, e.g. Lexile™ for assessment items with a reading passage.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21906', '11', '21906', NULL, NULL) +VALUES ('000966', 'Assessment Administration Organization Name', NULL, 'The name of the organization with overall responsibility for the assessment event.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23967', '12', '23967', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000907', 'Assessment Item Text Complexity System', NULL, 'The scaling system used to specify the text complexity of an assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21907', '11', '21907', NULL, NULL) +VALUES ('000967', 'Assessment Administration Assessment Family', NULL, 'The title of the assessment family to be administered.', 'Alphanumeric - 60 characters maximum', '0', 'A typical scenario for an assessment administration is a state-wide administration of an accountability test. For example, in Florida "Florida Comprehensive Assessment Test".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23968', '12', '23968', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000908', 'Assessment Item Possible Response Value', NULL, 'The description of each distracter on an assessment item, explaining why it is there, what misunderstandings it exposes.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21908', '11', '21908', NULL, NULL) +VALUES ('000985', 'Session Start Time', NULL, 'The hour, minute and second on which a session begins.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23986', '12', '23986', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000910', 'Competency Definition Text Complexity System', 'Learning Standard Item Text Complexity System, Competency Item Text Complexity System', 'The scaling system used to specify the text complexity of a competency item.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21910', '11', '21910', NULL, NULL) +VALUES ('000986', 'Session End Time', NULL, 'The hour, minute and second on which a session ends.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23988', '12', '23988', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000911', 'Learning Resource URL', NULL, 'The Uniform Resource Locator where the resource may be accessed, or a proxy for the resource, such as an information page for a commercially available resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21911', '11', '21911', NULL, NULL) +VALUES ('000968', 'Assessment Session Security Issue', NULL, 'The description of a security issue, if any, discovered for an administration of an assessment, such as suspected cheating by a student or a teacher changing answers after a student takes the test.', 'Alphanumeric - 300 characters maximum', '0', 'For example: Suspected plagiarism ; Computer left test window ; Excessive response time ; Proctor suspected copying ; Student identity not confirmed ; No proctor present ; Student carried wireless mobile device during test ; Student terminated test early and restarted ; Excessive erasures on test form ; Response pattern identical to another student''s', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23969', '12', '23969', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000912', 'Learning Resource Title', NULL, 'The title of the resource.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21912', '11', '21912', NULL, NULL) +VALUES ('000969', 'Assessment Item Response Security Issue', NULL, 'The description of security issue, if any, related to a learner''s response to an assessment item.', 'Alphanumeric - 300 characters maximum', '0', 'For example: Suspected plagiarism ; Computer left test window ; Excessive response time ; Proctor suspected copying ; Student identity not confirmed ; No proctor present ; Student carried wireless mobile device during test ; Student terminated test early and restarted ; Excessive erasures on test form ; Response pattern identical to another student''s', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23970', '12', '23970', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000913', 'Learning Resource Subject Name', NULL, 'The descriptive name for the subject of the content for the learning resource.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21913', '11', '21913', NULL, NULL) +VALUES ('000970', 'Assessment Result Date Updated', NULL, 'The most recent date that the result was calculated/updated. The value should be the same as Assessment Result Date Created if the subtest has only been scored once, but may be different if the score was recalculated with a different result.', 'YYYY-MM-DD', '0', 'This flag is to handle cases when a subtest result is originally scored using incorrect parameters and then rescored, such as if the grade level attributed to the student was originally encoded incorrectly and later corrected. An operational system may also capture the history of if rescored more than once.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23971', '12', '23971', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000914', 'Learning Resource Subject Code', NULL, 'The code used to identify the organization of subject matter and related learning experiences addressed by the learning resource.', 'Alphanumeric - 30 characters maximum', '0', 'A promising practice is to use a URL as the Learning Resource Subject Code, that resolves to a web page describing a term in a subject taxonomy. For example, for "Mathematics", the URL http://id.loc.gov/authorities/classification/BH301.M35.html points to the Library of Congress classification for "Mathematics". For K12 curriculum "SCED" - School Courses for the Exchange of Data (SCED) may be used, e.g. https://ceds.ed.gov/ScedCourseCodes.aspx#02031 is "Mathematics (grade 1)"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21914', '11', '21914', NULL, NULL) +VALUES ('000971', 'Assessment Result Date Created', NULL, 'The date on which the assessment result was generated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23972', '12', '23972', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000915', 'Learning Resource Subject Code System', NULL, 'The system that is used to identify the organization of subject matter and related learning experiences addressed by the learning resource.', 'Alphanumeric - 30 characters maximum', '0', 'This may be a URL to a web page describing the subject code system or a name or abbreviation for the system if no authoritative web page exists. When the associated learning resource Subject Code is a URL, that URL usually provides enough context so that the "Subject Code System" need not be specified. However, this may be the URL to a page describing the classification system and/or the entry point to the web hosted classification system. E.g. for the Library of Congress Classification System use: http://id.loc.gov/authorities/classification.html', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21915', '11', '21915', NULL, NULL) +VALUES ('000972', 'Teacher Student Data Link Exclusion Flag', NULL, 'Indicates that the student is excluded from calculation of value-added or growth attribution calculations used for teacher evaluation.', NULL, '1', 'The context for this element is the intersection of a teacher assignment to a Class/Section and a student enrollment to a Class/Section. It may be represented in a data model as a separate entity such as Teacher Student Data Link Exclusion.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23973', '12', '23973', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000916', 'Learning Resource Date Created', NULL, 'The date on which the resource was created.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21916', '11', '21916', NULL, NULL) +VALUES ('000973', 'Demographic Race Two or More Races', NULL, 'A person having origins in any of more than one of the racial groups.', NULL, '1', 'To support backward compatibility for systems that cannot derive this, i.e. systems that use a single race/ethnicity element rather than separate flags that can indicate one or more ethnicities.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23974', '12', '23974', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000917', 'Learning Resource Creator', NULL, 'The name of a person or organization credited with the creation of the resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21918', '11', '21918', NULL, NULL) +VALUES ('000974', 'Course Section Enrollment Status Start Date', NULL, 'The date on which the enrollment status began related to a student enrolled in an instance of a course.', 'YYYY-MM-DD', '0', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23975', '12', '23975', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000918', 'Learning Resource Publisher Name', NULL, 'The name of the organization credited with publishing the resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21919', '11', '21919', NULL, NULL) +VALUES ('000975', 'Course Section Enrollment Status End Date', NULL, 'The date on which the enrollment status ended related to a student enrolled in an instance of a course.', 'YYYY-MM-DD', '0', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait-listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list. All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23976', '12', '23976', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000919', 'Learning Resource Language', NULL, 'The primary language of the resource.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.
Note: For accessible resources LRMI uses language codes from the IETF BCP 47 standard which also refers to ISO 639. (Equivalent of the AfA languageOfAdaptation property.)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21920', '11', '21920', NULL, NULL) +VALUES ('000976', 'Course Section Enrollment Status Type', NULL, 'The status related to a student enrollment in an instance of a course.', NULL, '1', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23977', '12', '23977', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000921', 'Learning Resource License URL', NULL, 'The URL where the owner specifies permissions for using the resource.', 'Alphanumeric - 512 characters maximum', '0', 'Ex: “http://creativecommons.org/licenses/by/3.0/“', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21922', '11', '21922', NULL, NULL) +VALUES ('000977', 'Assessment Administration Name', NULL, 'The name given to an assessment event.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23978', '12', '23978', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000922', 'Learning Resource Based on URL', NULL, 'A resource that was used in the creation of this resource. This term can be repeated for multiple sources.', 'Alphanumeric - 512 characters maximum', '0', 'Ex: “http://example.com/great-multiplication-intro.html“', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21923', '11', '21923', NULL, NULL) +VALUES ('000978', 'Course Section Identifier', NULL, 'A unique number or alphanumeric code assigned by an institution, school, school system, state, or other agency or entity for a particular course-section.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23979', '12', '23979', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000923', 'Learning Resource Intended End User Role', NULL, 'The individual or group for which the resource was produced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21924', '11', '21924', NULL, NULL) +VALUES ('000979', 'Assessment Form Section Sequence Number', NULL, 'The position of the assessment section presented in the sequence of sections within an assessment form.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23980', '12', '23980', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000924', 'Learning Resource Time Required', NULL, 'The approximate or typical time it takes to work with or through this learning resource for the typical intended target audience.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21925', '11', '21925', NULL, NULL) +VALUES ('000980', 'Assessment Form Section GUID', NULL, 'The globally unique identifier of an Assessment Form Section using a RFC 4122 compliant hexadecimal string.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23981', '12', '23981', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000925', 'Learning Resource Typical Age Range Minimum', NULL, 'The minimum for the typical range of ages of the content’s intended end user.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21926', '11', '21926', NULL, NULL) +VALUES ('000981', 'Assessment GUID', NULL, 'The globally unique identifier of an Assessment using a RFC 4122 compliant hexadecimal string.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23982', '12', '23982', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000926', 'Learning Resource Typical Age Range Maximum', NULL, 'The maximum for the typical range of ages of the content’s intended end user.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21927', '11', '21927', NULL, NULL) +VALUES ('000982', 'Accreditation Agency', NULL, 'The agency that accredited a program.', NULL, '1', 'Organization Name may be used with Organization Type=''Accrediting Organization'' when Accreditation Agency is set to ''Other Accreditation Agency.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23983', '12', '23983', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000927', 'Learning Resource Interactivity Type', NULL, 'The predominate mode of learning supported by the learning resource. Acceptable values are active, expositive, or mixed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21928', '11', '21928', NULL, NULL) +VALUES ('000983', 'Administrative Policy Type', NULL, 'A type of administrative policy used by a program.', NULL, '1', 'More than one Administrative Policy Type may apply.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23984', '12', '23984', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000928', 'Learning Resource Type', NULL, 'The predominate type or kind characterizing the learning resource.', NULL, '1', 'A community of SEAs have agreed to use a limited set of Learning Resource Type options when tagging learning resources in shared resource repositories. The options defined for this element align with those common tagging specifications.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21929', '11', '21929', NULL, NULL) +VALUES ('000984', 'Facility Licensing Status', NULL, 'The status of the facility license.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23985', '12', '23985', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000929', 'Learning Resource Text Complexity Value', NULL, 'The complexity of the text using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21930', '11', '21930', NULL, NULL) +VALUES ('000987', 'Employed While Enrolled', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources won''t tell you anything further about employment or unemployment, only that a record was "not found" or "not matched" thus "unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23989', '12', '23989', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000930', 'Learning Resource Text Complexity System', NULL, 'The scaling system used to specify the text complexity of an Learning Resource', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21931', '11', '21931', NULL, NULL) +VALUES ('000988', 'Employed After Exit', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources will provide information about most of the types of jobs that students or former students will become employed in but not all. For that reason when a record is "not found" or "not matched" their employment status is "unknown" for the targeted time base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23990', '12', '23990', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000931', 'Assessment Short Name', NULL, 'An abbreviated title for an assessment.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21932', '11', '21932', NULL, NULL) +VALUES ('000989', 'Quarterly Earnings', NULL, 'The quarterly amount paid to individuals found employed during the reference period.', 'Numeric - up to 2 digits after decimal place', '0', 'Workforce Notes: Quarterly earnings are the sum of all the reported earnings for each individual for all jobs held during the reference quarter. "Reference" quarter is the period of employment defined by the agency for its purposes either for students who are enrolled or after they exit. The amount is expressed as a numeric dollar amount. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23991', '12', '23991', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000932', 'Assessment Family Title', NULL, 'The full title of the Assessment Family. An Assessment Family is a set of assessments with a common name, jurisdiction, or focus, such as Graduate Record Exam or National Assessment of Educational Progress.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21933', '11', '21933', NULL, NULL) +VALUES ('000990', 'Employment Location', NULL, 'The state or other location in which an individual is found employed.', NULL, '1', 'Workforce Notes: The most commonly available indication of where employment is located is at the state level. While federal data resources provide indicators outside of the United States, these resources will not represent the majority of the students found employed, which will be based on state UI Wage Data. There may, in some instances, be multiple states where employment is found. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence, change, and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23992', '12', '23992', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000933', 'Assessment Family Short Name', NULL, 'The abbreviated title of the Assessment Family. An Assessment Family is a set of assessments with a common name, jurisdiction, or focus.', 'Alphanumeric - 30 characters maximum', '0', 'Examples: SAT, GRE, NAEP', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21934', '11', '21934', NULL, NULL) +VALUES ('000991', 'Person Employed in Multiple Jobs Count', NULL, 'The number of jobs held by a person during the reference period.', 'Integer - greater than or equal to 0', '0', 'Workforce Notes: The data sources represent employment during a three month period. Students found employed may have multiple jobs during a reference period with no indication of their sequence. The option set provides a set of numeric ranges for these instances. Many states report these numbers, some as indications of employment stability. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence, change, and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23993', '12', '23993', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000934', 'Learner Action Type', NULL, 'The type of action taken by the learner.', NULL, '1', 'The CEDS Learner Action Type option set comes from the ADL Controlled Vocabulary, xAPI specification.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21935', '11', '21935', NULL, NULL) +VALUES ('000992', 'Employment Record Reference Period Start Date', NULL, 'The year, month, and day of the first day of the employment record reference period.', 'YYYY-MM-DD', '0', 'The reference quarter is the 13-week period around which employment and earnings data are collected. For unemployment insurance purposes, quarters are defined by 13-week periods. In most state cases, a reference quarter is defined to coincide with an enrollment period (e.g., a term or semester) or as a certain number of quarters after exiting a program, such as "3d quarter after exit." In some cases, states have defined the reference quarter to represent a period where employment and earnings data are collected for all of a previous year''s exits and graduates. This is often the October- December quarter. Ultimately, the most value to be gained from the use of employment and earnings data is when data are collected continuously, both in a longitudinal sense for defined cohorts of students, as well as for an "annual set" of students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23994', '12', '23994', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000935', 'Learner Action Value', NULL, 'The value representing input by the learner using an online system, such as a value entered in response to an assessment question, or the URL of a learning resource link clicked.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21936', '11', '21936', NULL, NULL) +VALUES ('000993', 'Employment Record Reference Period End Date', NULL, 'The year, month, and day of the last day of the employment record reference period.', 'YYYY-MM-DD', '0', 'The reference quarter is the 13-week period around which employment and earnings data are collected. For unemployment insurance purposes, quarters are defined by 13-week periods. In most state cases, a reference quarter is defined to coincide with an enrollment period (e.g., a term or semester) or as a certain number of quarters after exiting a program, such as "3d quarter after exit." In some cases, states have defined the reference quarter to represent a period where employment and earnings data are collected for all of a previous year''s exits and graduates. This is often the October - December quarter. Ultimately, the most value to be gained from the use of employment and earnings data is when data are collected continuously, both in a longitudinal sense for defined cohorts of students, as well as for an "annual set" of students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23995', '12', '23995', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000937', 'Learner Action Date Time', NULL, 'The date and time at which the action was taken.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21938', '11', '21938', NULL, NULL) +VALUES ('000994', 'Employment Record Administrative Data Source', NULL, 'Administrative data source of information used to collect employment and earnings-related data.', NULL, '1', 'For over 25 years, states have relied upon administrative data sources to document the employment and earnings of students and former students. The sources listed are complementary, rather than alternatives. That is, State UI records only include information for employees within a state''s boundaries. The WRIS II system can provide employment data for other states (from their UI wage record systems). State UI records do not include information about federal or postal service employment, nor do they contain information about military enlistments. FEDES provides access to that information. Ideally, an entity will use UI, WRIS (other state UI), and FEDES together.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23996', '12', '23996', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000938', 'Learner Activity Language', NULL, 'The default language used for the assignment.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21939', '11', '21939', NULL, NULL) +VALUES ('000997', 'Workforce Program Type', NULL, 'The type of workforce and employment development program that an individual is participating in.', NULL, '1', 'A reference period for identifying program participation during or after enrollment in secondary education, postsecondary education, or adult education will have to be defined by the agency in collaboration with other agency partners. At this point this element is intended only to indicate program participation and does not delve into programmatic details, persistence, or completion.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24000', '12', '24000', 'Updated', 'Add new option to option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000939', 'Learner Activity Title', NULL, 'The title for work assigned to the learner, which can comprise of learning resources, activities, and assessments.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21940', '11', '21940', NULL, NULL) +VALUES ('000998', 'Workforce Program Participation Start Date', NULL, 'The year, month, and day of the first day of the reference period during which data are matched between education and workforce data sources.', 'YYYY-MM-DD', '0', 'Agencies define the time period for this collection around an enrollment period or exit date with a to-be defined lag period following an exit event. Enrollment periods are defined in CEDS for K12 and postsecondary students. The term "exit" includes leaving education for any reason including dropping out or graduating with or without a credential. Exiting conditions are defined in CEDS for K12 and postsecondary students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24001', '12', '24001', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000940', 'Learner Activity Description', NULL, 'The description and context for the assignment described in a way that the learner can understand.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21941', '11', '21941', NULL, NULL) +VALUES ('000999', 'Workforce Program Participation End Date', NULL, 'The year, month, and day of the last day of the reference period during which data are matched between education and workforce data sources.', 'YYYY-MM-DD', '0', 'Agencies define the time period for this collection around an enrollment period or exit date with a to-be defined lag period following an exit event. Enrollment periods are defined in CEDS for K12 and postsecondary students. The term "exit" includes leaving education for any reason including dropping out or graduating with or without a credential. Exiting conditions are defined in CEDS for K12 and postsecondary students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24002', '12', '24002', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000941', 'Learner Activity Prerequisite', NULL, 'The description of the skills or competencies the student must have to engage in assignment.', 'Alphanumeric - 300 characters maximum', '0', 'Note: Prerequisites may also be referenced via an associated Learning Goal and Competency Set (prerequisites for individual competencies). For some applications enumeration of the detailed prerequisites will have greater utility than a single descriptive field.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21942', '11', '21942', NULL, NULL) +VALUES ('001000', 'Assessment Early Learning Developmental Domain', NULL, 'Developmental domains related to early learning and used for assessing a child''s kindergarten readiness.', NULL, '1', 'Used by states in reporting Kindergarten Entry Assessment (KEA) results as defined for some federal grant programs.

For each domain used by the state, the state would provide:
- The total number of children who participated in the KEA for each domain
- The number of children who participated in the KEA for each domain AND was at or above what the state defines as “ready” for kindergarten for that domain.

The counts may be calculated using unit-level data defined for Assessment Subtest (scoring method and what is being measured, e.g. the Domain), related Assessment Performance Levels (e.g. "Ready"), related to each student Assessment Result.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24003', '12', '24003', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000942', 'Learner Activity Type', NULL, 'The type of work assigned to the learner.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21943', '11', '21943', NULL, NULL) +VALUES ('001001', 'Special Needs Policy', NULL, 'Program ensures that policies are in place for Individualized Education Programs (IEPs) or Individual Family Service Plans (IFSPs) to meet the child''s unique needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24004', '12', '24004', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000943', 'Learner Activity Creation Date', NULL, 'The creation date of the assignment.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21944', '11', '21944', NULL, NULL) +VALUES ('001002', 'Learning Resource Educational Use', NULL, 'The purpose of the work in the context of education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24005', '12', '24005', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000944', 'Learner Activity Maximum Time Allowed', NULL, 'The time required to complete the assignment.', 'Integer - greater than or equal to 0', '0', 'Time allowed is assumed to be unlimited if zero or omitted.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21945', '11', '21945', NULL, NULL) +VALUES ('001003', 'Assessment Participant Session Delivery Device Details', NULL, 'The details about the device or platform by with which the assessment was delivered to the learner.', 'Alphanumeric - 300 characters maximum', '0', 'For example web browser version and screen resolution.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24006', '12', '24006', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000945', 'Learner Activity Maximum Time Allowed Unit', NULL, 'The unit of time of the Maximum Time Allowed value.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21946', '11', '21946', NULL, NULL) +VALUES ('001004', 'Assessment Personal Needs Profile Assigned Support', NULL, 'Defines whether or not the individual needs the kind of support defined by the entity.', NULL, '1', 'This flag may apply to any need within the Assessment Personal Need Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24007', '12', '24007', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000946', 'Learner Activity Due Date', NULL, 'The date assignment is due.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21947', '11', '21947', NULL, NULL) +VALUES ('001005', 'Assessment Personal Needs Profile Activate by Default', NULL, 'Determines if the alternative accessible content is rendered as the default content for the learner.', NULL, '1', 'This flag may apply to any need within the Assessment Personal Need Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24008', '12', '24008', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000947', 'Learner Activity Due Time', NULL, 'The time the assignment is due.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21948', '11', '21948', NULL, NULL) +VALUES ('001006', 'Assessment Provider', NULL, 'Identifies the provider or publisher of the assessment.', 'Alphanumeric - 30 characters maximum', '0', 'AIF property', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24009', '12', '24009', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000948', 'Learner Activity Maximum Attempts Allowed', NULL, 'The number attempts a student may make on this assignment. Assumed to be unlimited if zero or omitted.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21949', '11', '21949', NULL, NULL) +VALUES ('001007', 'Assessment Result Preliminary Indicator', NULL, 'If this score is preliminary, then this attribute value should be set. Preliminary scores may be provided for early use by the assessment program or user while final scoring is occurring.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24010', '12', '24010', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000949', 'Learner Activity Add to Grade Book Flag', NULL, 'Identifies the assignment as one that is graded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21950', '11', '21950', NULL, NULL) +VALUES ('001008', 'Diagnostic Statement Source', NULL, 'Identifies the source of the Diagnostic Statement based on a scored/evaluated portion of an assessment.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24011', '12', '24011', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000950', 'Learner Activity Release Date', NULL, 'The date the student was informed about an assignment or that an automated system displays the assignment.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21951', '11', '21951', NULL, NULL) +VALUES ('001009', 'Assessment Result Number of Responses', NULL, 'The number of responses that are included with the Student Score Set. Responses are those items that were attempted (partially or fully answered) by the student and not necessarily the number of items in the assessment (which can be determined from the assessment object).', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24012', '12', '24012', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000951', 'Learner Activity Weight', NULL, 'The percentage weight of the assignment during the particular course or term.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21952', '11', '21952', NULL, NULL) +VALUES ('001010', 'Assessment Form Subtest Item Weight Correct', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item is correct or partially correct. Item weight of 1 indicates the full item score is used. A weight of .5 would indicate the item only contributes one half of the item score to the subtest. A weight of 0 indicates the item does not affect the sub test score.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24013', '12', '24013', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000952', 'Learner Activity Possible Points', NULL, 'The number of possible points for an assignment.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21953', '11', '21953', NULL, NULL) +VALUES ('001012', 'Assessment Form Subtest Item Weight Incorrect', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item is attempted and incorrect. Item weight should be a negative value if the item subtracts from the score if missed.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24014', '12', '24014', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000953', 'Learner Activity Rubric URL', NULL, 'The Uniform Resource Locator pointing to a rubric that may be used to evaluate learner performance on the assignment.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21954', '11', '21954', NULL, NULL) +VALUES ('001013', 'Assessment Form Subtest Item Weight Not Attempted', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item has not been attempted by the student. Item weight should be a negative value if the item subtracts from the score if not attempted.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24015', '12', '24015', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000954', 'Assessment Item Response Scaffolding Item Flag', NULL, 'Indicates that the response is to a scaffolding problem rather than the main/assigned problem. A scaffolding item is a follow-up formative assessment item used to assess prerequisite or component skills, presented immediately after a learner gives an incorrect answer on the previous item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21955', '11', '21955', NULL, NULL) +VALUES ('001014', 'Assessment Subtest Identifier Type', NULL, 'The type of identifier that is provided for a Subtest.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24016', '12', '24016', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000955', 'Assessment Item Response Hint Count', NULL, 'The total number of hints presented as the learner responded to a formative assessment item. This may include hints requested by the learner or hints automatically presented such as in an online tutoring system. Presentation of a scaffolding item is a separate response record and not counted as a hint.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21956', '11', '21956', NULL, NULL) +VALUES ('001015', 'Assessment Registration Days of Instruction', NULL, 'The number of days of instruction the student has taken prior to testing.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24017', '12', '24017', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000956', 'Assessment Item Response Hint Included Answer', NULL, 'Indicates that one of the hints presented included the correct answer.', NULL, '1', 'A typical scenario for an online tutoring application may present a series of hints for a formative assessment item with the last hint being the correct answer. The learner must enter the correct answer before continuing. This data element is a flag that the learner was presented with the "bottom hint", which is the correct answer.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21957', '11', '21957', NULL, NULL) +VALUES ('001016', 'Assessment Registration Retest Indicator', NULL, 'Indicates if this registration is for a retest (retake). Retest can occur if a student failed a prior attempt and is eligible to retake. Other retest scenarios also can occur.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24018', '12', '24018', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000957', 'Assessment Item Response First Attempt Duration', NULL, 'The amount of time in seconds or milliseconds that a person took to give an initial response, a first attempt to answer a formative assessment item.', 'HH:MM:SS or HH:MM:SS.sss', '0', 'Formative assessments often allow learners to make multiple attempts until a correct or acceptable answer is given. In such cases it is valuable to know both the time it took for the initial response and the total time spent responding to the problem.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21958', '11', '21958', NULL, NULL) +VALUES ('001017', 'Assessment Registration Creation Date', NULL, 'Date/time assignment is made.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24019', '12', '24019', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000958', 'Assessment Item Response Start Time', NULL, 'The time of day that the assessment item was presented to the learner.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21959', '11', '21959', NULL, NULL) +VALUES ('001018', 'Assessment Session Type', NULL, 'The type of session that is scheduled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24020', '12', '24020', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000959', 'Assessment Item Response Start Date', NULL, 'The date on which the assessment item was presented to the learner.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21960', '11', '21960', NULL, NULL) +VALUES ('001019', 'Assessment Session Scheduled Start Date Time', NULL, 'Date and time the assessment is scheduled to begin.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24021', '12', '24021', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000961', 'Assessment Administration Code', NULL, 'The code given to the assessment event by a state or other authority directing overall administration.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21962', '11', '21962', NULL, NULL) +VALUES ('001020', 'Assessment Session Scheduled End Date Time', NULL, 'Date and time the assessment is scheduled to end.', 'YYYY-MM-DDTHH:MM:SS', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24022', '12', '24022', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000962', 'Assessment Administration Start Date', NULL, 'The start date of the time period designated for the assessment administration.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21963', '11', '21963', NULL, NULL) +VALUES ('001021', 'Assessment Session Actual Start Date Time', NULL, 'Date and time the assessment actually began.', 'YYYY-MM-DDTHH:MM:SS', '0', 'When associated to an assessment session this is the actual start date and time. When associated to an individual taking an assessment, this is the actual date and time when the individual started.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24023', '12', '24023', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000963', 'Assessment Administration Start Time', NULL, 'The start time of the time period designated for the assessment administration.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21964', '11', '21964', NULL, NULL) +VALUES ('001022', 'Assessment Session Actual End Date Time', NULL, 'Date and time the assessment actually ended.', 'YYYY-MM-DDTHH:MM:SS', '0', 'When associated to an assessment session this is the actual end date and time. When associated to an individual taking an assessment, this is the actual date and time when the individual finished.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24024', '12', '24024', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000964', 'Assessment Administration Finish Date', NULL, 'The finish date of the time period designated for the assessment administration.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21965', '11', '21965', NULL, NULL) +VALUES ('001023', 'Assessment Need Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile a preference for the language of the user interface.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24025', '12', '24025', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000965', 'Assessment Administration Finish Time', NULL, 'The finish time of the time period designated for the assessment administration.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21966', '11', '21966', NULL, NULL) +VALUES ('001024', 'Assessment Need Hazard Type', NULL, 'Defines as part of an Assessment Personal Needs Profile a characteristic of a digital resource that may be specified as being dangerous to a user.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24026', '12', '24026', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000966', 'Assessment Administration Organization Name', NULL, 'The name of the organization with overall responsibility for the assessment event.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21967', '11', '21967', NULL, NULL) +VALUES ('001025', 'Assessment Need Support Tool Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the electronic tool associated with a resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24027', '12', '24027', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000967', 'Assessment Administration Assessment Family', NULL, 'The title of the assessment family to be administered.', 'Alphanumeric - 60 characters maximum', '0', 'A typical scenario for an assessment administration is a state-wide administration of an accountability test. For example, in Florida "Florida Comprehensive Assessment Test".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21968', '11', '21968', NULL, NULL) +VALUES ('001026', 'Assessment Need Usage Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the rating for the collection of Access for All (AfA) needs and preferences.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24028', '12', '24028', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000968', 'Assessment Session Security Issue', NULL, 'The description of a security issue, if any, discovered for an administration of an assessment, such as suspected cheating by a student or a teacher changing answers after a student takes the test.', 'Alphanumeric - 300 characters maximum', '0', 'For example: Suspected plagiarism ; Computer left test window ; Excessive response time ; Proctor suspected copying ; Student identity not confirmed ; No proctor present ; Student carried wireless mobile device during test ; Student terminated test early and restarted ; Excessive erasures on test form ; Response pattern identical to another student''s', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21969', '11', '21969', NULL, NULL) +VALUES ('001027', 'Assessment Need Link Indication Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the characteristics of presentation for a hyperlink when using a screen reader.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24029', '12', '24029', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000969', 'Assessment Item Response Security Issue', NULL, 'The description of security issue, if any, related to a learner''s response to an assessment item.', 'Alphanumeric - 300 characters maximum', '0', 'For example: Suspected plagiarism ; Computer left test window ; Excessive response time ; Proctor suspected copying ; Student identity not confirmed ; No proctor present ; Student carried wireless mobile device during test ; Student terminated test early and restarted ; Excessive erasures on test form ; Response pattern identical to another student''s', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21970', '11', '21970', NULL, NULL) +VALUES ('001028', 'Assessment Need Speech Rate', NULL, 'Defines as part of an Assessment Personal Needs Profile the rate of speech of a speech synthesizer.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24030', '12', '24030', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000970', 'Assessment Result Date Updated', NULL, 'The most recent date that the result was calculated/updated. The value should be the same as Assessment Result Date Created if the subtest has only been scored once, but may be different if the score was recalculated with a different result.', 'YYYY-MM-DD', '0', 'This flag is to handle cases when a subtest result is originally scored using incorrect parameters and then rescored, such as if the grade level attributed to the student was originally encoded incorrectly and later corrected. An operational system may also capture the history of if rescored more than once.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21971', '11', '21971', NULL, NULL) +VALUES ('001087', 'Assessment Need Pitch', NULL, 'Defines as part of an Assessment Personal Needs Profile the pitch of a speech synthesizer.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24031', '12', '24031', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000971', 'Assessment Result Date Created', NULL, 'The date on which the assessment result was generated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21972', '11', '21972', NULL, NULL) +VALUES ('001029', 'Assessment Need Volume', NULL, 'Defines as part of an Assessment Personal Needs Profile the volume of a speech synthesizer.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24032', '12', '24032', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000972', 'Teacher Student Data Link Exclusion Flag', NULL, 'Indicates that the student is excluded from calculation of value-added or growth attribution calculations used for teacher evaluation.', NULL, '1', 'The context for this element is the intersection of a teacher assignment to a Class/Section and a student enrollment to a Class/Section. It may be represented in a data model as a separate entity such as Teacher Student Data Link Exclusion.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21973', '11', '21973', NULL, NULL) +VALUES ('001030', 'Assessment Need Invert Color Choice', NULL, 'Defines as part of an Assessment Personal Needs Profile the Access for All (AfA) preference to invert the foreground and background Colors.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24033', '12', '24033', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000973', 'Demographic Race Two or More Races', NULL, 'A person having origins in any of more than one of the racial groups.', NULL, '1', 'To support backward compatibility for systems that cannot derive this, i.e. systems that use a single race/ethnicity element rather than separate flags that can indicate one or more ethnicities.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21974', '11', '21974', NULL, NULL) +VALUES ('001031', 'Assessment Need Magnification', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred magnification of the screen as a factor of a screen’s original size.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24034', '12', '24034', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000974', 'Course Section Enrollment Status Start Date', NULL, 'The date on which the enrollment status began related to a student enrolled in an instance of a course.', 'YYYY-MM-DD', '0', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21975', '11', '21975', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001032', 'Assessment Need Braille Grade Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the grade of Braille to use when using a Braille display.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24035', '12', '24035', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000975', 'Course Section Enrollment Status End Date', NULL, 'The date on which the enrollment status ended related to a student enrolled in an instance of a course.', 'YYYY-MM-DD', '0', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait-listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list. All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21976', '11', '21976', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001033', 'Assessment Need Number of Braille Dots Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the number of dots in a Braille cell.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24036', '12', '24036', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000976', 'Course Section Enrollment Status Type', NULL, 'The status related to a student enrollment in an instance of a course.', NULL, '1', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21977', '11', '21977', NULL, NULL) +VALUES ('001034', 'Assessment Need Number of Braille Cells', NULL, 'Defines as part of an Assessment Personal Needs Profile the number of active Braille cells in a Braille display.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24037', '12', '24037', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000977', 'Assessment Administration Name', NULL, 'The name given to an assessment event.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21978', '11', '21978', NULL, NULL) +VALUES ('001035', 'Assessment Need Braille Mark Type', NULL, 'Defines as part of an Assessment Personal Needs Profile what textual properties to mark when using a Braille display.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24038', '12', '24038', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000978', 'Course Section Identifier', NULL, 'A unique number or alphanumeric code assigned by an institution, school, school system, state, or other agency or entity for a particular course-section.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21979', '11', '21979', NULL, NULL) +VALUES ('001036', 'Assessment Need Braille Dot Pressure', NULL, 'Defines as part of an Assessment Personal Needs Profile the resistance pressure of Braille display pins.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24040', '12', '24040', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000979', 'Assessment Form Section Sequence Number', NULL, 'The position of the assessment section presented in the sequence of sections within an assessment form.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21980', '11', '21980', NULL, NULL) +VALUES ('001037', 'Assessment Need Braille Status Cell Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred presence or location of a Braille display status cell.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24041', '12', '24041', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000980', 'Assessment Form Section GUID', NULL, 'The globally unique identifier of an Assessment Form Section using a RFC 4122 compliant hexadecimal string.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21981', '11', '21981', NULL, NULL) +VALUES ('001038', 'Assessment Need Item Translation Display Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default language for the displayed translation.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24042', '12', '24042', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000981', 'Assessment GUID', NULL, 'The globally unique identifier of an Assessment using a RFC 4122 compliant hexadecimal string.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21982', '11', '21982', NULL, NULL) +VALUES ('001039', 'Assessment Need Keyword Translation Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default language for the keyword translation.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24043', '12', '24043', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000982', 'Accreditation Agency', NULL, 'The agency that accredited a program.', NULL, '1', 'Organization Name may be used with Organization Type=''Accrediting Organization'' when Accreditation Agency is set to ''Other Accreditation Agency.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21983', '11', '21983', NULL, NULL) +VALUES ('001040', 'Assessment Need Signing Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the type of signing preferred by the user.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24044', '12', '24044', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000983', 'Administrative Policy Type', NULL, 'A type of administrative policy used by a program.', NULL, '1', 'More than one Administrative Policy Type may apply.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21984', '11', '21984', NULL, NULL) +VALUES ('001041', 'Assessment Need Alternative Representation Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default presentation mode of the associated Alternative Representations accessibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24045', '12', '24045', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000984', 'Facility Licensing Status', NULL, 'The status of the facility license.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21985', '11', '21985', NULL, NULL) +VALUES ('001042', 'Assessment Need Spoken Source Preference Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred spoken audio form.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24046', '12', '24046', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000985', 'Session Start Time', NULL, 'The hour, minute and second on which a session begins.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21986', '11', '21986', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('001043', 'Assessment Need Read at Start Preference', NULL, 'Used as part of an Assessment Personal Needs Profile to define if the spoken play-back should commence from the start of a recording or not.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24048', '12', '24048', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000986', 'Session End Time', NULL, 'The hour, minute and second on which a session ends.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21988', '11', '21988', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('001044', 'Assessment Need User Spoken Preference Type', NULL, 'Used as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24049', '12', '24049', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000987', 'Employed While Enrolled', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources won''t tell you anything further about employment or unemployment, only that a record was "not found" or "not matched" thus "unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21989', '11', '21989', NULL, NULL) +VALUES ('001045', 'Assessment Need Directions Only', NULL, 'Defines as part of an Assessment Personal Needs Profile whether or not the verbal alternative content presentation should be applied to directive content only.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24050', '12', '24050', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000988', 'Employed After Exit', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources will provide information about most of the types of jobs that students or former students will become employed in but not all. For that reason when a record is "not found" or "not matched" their employment status is "unknown" for the targeted time base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21990', '11', '21990', NULL, NULL) +VALUES ('001046', 'Assessment Need Masking Type', NULL, 'Specifies as part of an Assessment Personal Needs Profile the type of masks the user is able to create to cover portions of the question until needed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24051', '12', '24051', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000989', 'Quarterly Earnings', NULL, 'The quarterly amount paid to individuals found employed during the reference period.', 'Numeric - up to 2 digits after decimal place', '0', 'Workforce Notes: Quarterly earnings are the sum of all the reported earnings for each individual for all jobs held during the reference quarter. "Reference" quarter is the period of employment defined by the agency for its purposes either for students who are enrolled or after they exit. The amount is expressed as a numeric dollar amount. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21991', '11', '21991', NULL, NULL) +VALUES ('001047', 'Assessment Need Text Messaging String', NULL, 'The text string that is to be displayed to the user as an expression of encouragement when Masking is specified as part of an Assessment Personal Needs Profile. It is left to the system to determine when to display this string.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24052', '12', '24052', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000990', 'Employment Location', NULL, 'The state or other location in which an individual is found employed.', NULL, '1', 'Workforce Notes: The most commonly available indication of where employment is located is at the state level. While federal data resources provide indicators outside of the United States, these resources will not represent the majority of the students found employed, which will be based on state UI Wage Data. There may, in some instances, be multiple states where employment is found. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence, change, and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21992', '11', '21992', NULL, NULL) +VALUES ('001048', 'Assessment Need Sound File URL', NULL, 'The URI of the sound file that is to be played to the user as an expression of encouragement when Masking is specified as part of an Assessment Personal Needs Profile. It is left to the system to determine when to play this audio file.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24053', '12', '24053', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000991', 'Person Employed in Multiple Jobs Count', NULL, 'The number of jobs held by a person during the reference period.', 'Integer - greater than or equal to 0', '0', 'Workforce Notes: The data sources represent employment during a three month period. Students found employed may have multiple jobs during a reference period with no indication of their sequence. The option set provides a set of numeric ranges for these instances. Many states report these numbers, some as indications of employment stability. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence, change, and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21993', '11', '21993', NULL, NULL) +VALUES ('001049', 'Assessment Need Time Multiplier', NULL, 'Defines the multiplier to be applied to the time limit to determine the total testing time allowed when Additional Testing Time is specified as part of an Assessment Personal Needs Profile. If the value is ‘unlimited’ then there is no time limit for the test.', 'Alphanumeric - 9 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24055', '12', '24055', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000992', 'Employment Record Reference Period Start Date', NULL, 'The year, month, and day of the first day of the employment record reference period.', 'YYYY-MM-DD', '0', 'The reference quarter is the 13-week period around which employment and earnings data are collected. For unemployment insurance purposes, quarters are defined by 13-week periods. In most state cases, a reference quarter is defined to coincide with an enrollment period (e.g., a term or semester) or as a certain number of quarters after exiting a program, such as "3d quarter after exit." In some cases, states have defined the reference quarter to represent a period where employment and earnings data are collected for all of a previous year''s exits and graduates. This is often the October- December quarter. Ultimately, the most value to be gained from the use of employment and earnings data is when data are collected continuously, both in a longitudinal sense for defined cohorts of students, as well as for an "annual set" of students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21994', '11', '21994', NULL, NULL) +VALUES ('001050', 'Assessment Need Line Reader Highlight Color', NULL, 'The color defined as part of an Assessment Personal Needs Profile to be used to highlight the point of line reader activity i.e. the line being read.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24056', '12', '24056', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000993', 'Employment Record Reference Period End Date', NULL, 'The year, month, and day of the last day of the employment record reference period.', 'YYYY-MM-DD', '0', 'The reference quarter is the 13-week period around which employment and earnings data are collected. For unemployment insurance purposes, quarters are defined by 13-week periods. In most state cases, a reference quarter is defined to coincide with an enrollment period (e.g., a term or semester) or as a certain number of quarters after exiting a program, such as "3d quarter after exit." In some cases, states have defined the reference quarter to represent a period where employment and earnings data are collected for all of a previous year''s exits and graduates. This is often the October - December quarter. Ultimately, the most value to be gained from the use of employment and earnings data is when data are collected continuously, both in a longitudinal sense for defined cohorts of students, as well as for an "annual set" of students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21995', '11', '21995', NULL, NULL) +VALUES ('001051', 'Assessment Need Overlay Color', NULL, 'This is the preferred color for the overlay for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24057', '12', '24057', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000994', 'Employment Record Administrative Data Source', NULL, 'Administrative data source of information used to collect employment and earnings-related data.', NULL, '1', 'For over 25 years, states have relied upon administrative data sources to document the employment and earnings of students and former students. The sources listed are complementary, rather than alternatives. That is, State UI records only include information for employees within a state''s boundaries. The WRIS II system can provide employment data for other states (from their UI wage record systems). State UI records do not include information about federal or postal service employment, nor do they contain information about military enlistments. FEDES provides access to that information. Ideally, an entity will use UI, WRIS (other state UI), and FEDES together.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21996', '11', '21996', NULL, NULL) +VALUES ('001052', 'Assessment Need Foreground Color', NULL, 'This is the preferred Foreground color for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24058', '12', '24058', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000997', 'Workforce Program Type', NULL, 'The type of workforce and employment development program that an individual is participating in.', NULL, '1', 'A reference period for identifying program participation during or after enrollment in secondary education, postsecondary education, or adult education will have to be defined by the agency in collaboration with other agency partners. At this point this element is intended only to indicate program participation and does not delve into programmatic details, persistence, or completion.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22000', '11', '22000', NULL, NULL) +VALUES ('001053', 'Assessment Need Background Color', NULL, 'This is the preferred Background color for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24059', '12', '24059', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000998', 'Workforce Program Participation Start Date', NULL, 'The year, month, and day of the first day of the reference period during which data are matched between education and workforce data sources.', 'YYYY-MM-DD', '0', 'Agencies define the time period for this collection around an enrollment period or exit date with a to-be defined lag period following an exit event. Enrollment periods are defined in CEDS for K12 and postsecondary students. The term "exit" includes leaving education for any reason including dropping out or graduating with or without a credential. Exiting conditions are defined in CEDS for K12 and postsecondary students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22001', '11', '22001', NULL, NULL) +VALUES ('001054', 'Assessment Need Increased Whitespacing Type', NULL, 'Defines the user preferences for white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24060', '12', '24060', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000999', 'Workforce Program Participation End Date', NULL, 'The year, month, and day of the last day of the reference period during which data are matched between education and workforce data sources.', 'YYYY-MM-DD', '0', 'Agencies define the time period for this collection around an enrollment period or exit date with a to-be defined lag period following an exit event. Enrollment periods are defined in CEDS for K12 and postsecondary students. The term "exit" includes leaving education for any reason including dropping out or graduating with or without a credential. Exiting conditions are defined in CEDS for K12 and postsecondary students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22002', '11', '22002', NULL, NULL) +VALUES ('001055', 'Assessment Registration Testing Indicator', NULL, 'Indicates rules about use of results based on Special Events before, during or after the test. The option set values are determined by the testing program.', 'Alphanumeric - 300 characters maximum', '0', 'For example, "do not score", "do not report".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24061', '12', '24061', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001000', 'Assessment Early Learning Developmental Domain', NULL, 'Developmental domains related to early learning and used for assessing a child''s kindergarten readiness.', NULL, '1', 'Used by states in reporting Kindergarten Entry Assessment (KEA) results as defined for some federal grant programs.

For each domain used by the state, the state would provide:
- The total number of children who participated in the KEA for each domain
- The number of children who participated in the KEA for each domain AND was at or above what the state defines as “ready” for kindergarten for that domain.

The counts may be calculated using unit-level data defined for Assessment Subtest (scoring method and what is being measured, e.g. the Domain), related Assessment Performance Levels (e.g. "Ready"), related to each student Assessment Result.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22003', '11', '22003', NULL, NULL) +VALUES ('001056', 'Assessment Registration Score Publish Date', NULL, 'The date set by the testing program when the test scores are published. For formative or classroom assessments, this will likely be the date when the scored the individual test. For summative assessments, this date is likely set for a group of assessments when the processing system releases the scores.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24062', '12', '24062', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001001', 'Special Needs Policy', NULL, 'Program ensures that policies are in place for Individualized Education Programs (IEPs) or Individual Family Service Plans (IFSPs) to meet the child''s unique needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22004', '11', '22004', NULL, NULL) +VALUES ('001057', 'Assessment Registration Grade Level to Be Assessed', NULL, 'The grade or level at which the learner is to be assessed.', NULL, '1', ' Informs selection of the assessment form appropriate for the grade level to be tested.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24063', '12', '24063', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001002', 'Learning Resource Educational Use', NULL, 'The purpose of the work in the context of education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22005', '11', '22005', NULL, NULL) +VALUES ('001058', 'Name of Professional Credential or License', NULL, 'The name of the license/credential awarded by a given profession.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24064', '12', '24064', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001003', 'Assessment Participant Session Delivery Device Details', NULL, 'The details about the device or platform by with which the assessment was delivered to the learner.', 'Alphanumeric - 300 characters maximum', '0', 'For example web browser version and screen resolution.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22006', '11', '22006', NULL, NULL) +VALUES ('001059', 'Cardiopulmonary Resuscitation Certification Expiration Date', 'CPR Certification Expiration Date', 'The date an individual''s cardiopulmonary resuscitation (CPR) training certification expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24065', '12', '24065', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001004', 'Assessment Personal Needs Profile Assigned Support', NULL, 'Defines whether or not the individual needs the kind of support defined by the entity.', NULL, '1', 'This flag may apply to any need within the Assessment Personal Need Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22007', '11', '22007', NULL, NULL) +VALUES ('001060', 'First Aid Certification Expiration Date', NULL, 'The date an individual''s first aid training certification expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24066', '12', '24066', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001005', 'Assessment Personal Needs Profile Activate by Default', NULL, 'Determines if the alternative accessible content is rendered as the default content for the learner.', NULL, '1', 'This flag may apply to any need within the Assessment Personal Need Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22008', '11', '22008', NULL, NULL) +VALUES ('001061', 'Staff Professional Development Activity Start Date', NULL, 'The year, month and day on which an individual begins a course, an education program or a staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24067', '12', '24067', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001006', 'Assessment Provider', NULL, 'Identifies the provider or publisher of the assessment.', 'Alphanumeric - 30 characters maximum', '0', 'AIF property', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22009', '11', '22009', NULL, NULL) +VALUES ('001062', 'Staff Professional Development Activity Completion Date', NULL, 'The year, month and day on which an individual completed a course, an education program or a staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24068', '12', '24068', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001007', 'Assessment Result Preliminary Indicator', NULL, 'If this score is preliminary, then this attribute value should be set. Preliminary scores may be provided for early use by the assessment program or user while final scoring is occurring.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22010', '11', '22010', NULL, NULL) +VALUES ('001063', 'Assessment Item Response Value', NULL, ' A specific response to an assessment item by the person being assessed.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24069', '12', '24069', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001008', 'Diagnostic Statement Source', NULL, 'Identifies the source of the Diagnostic Statement based on a scored/evaluated portion of an assessment.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22011', '11', '22011', NULL, NULL) +VALUES ('001064', 'Employment NAICS Code', NULL, 'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', 'Integer - exactly 6 digits', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24070', '12', '24070', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001009', 'Assessment Result Number of Responses', NULL, 'The number of responses that are included with the Student Score Set. Responses are those items that were attempted (partially or fully answered) by the student and not necessarily the number of items in the assessment (which can be determined from the assessment object).', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22012', '11', '22012', NULL, NULL) +VALUES ('001088', 'NAEP Mathematical Complexity Level', NULL, 'Complexity levels defined by the National Assessment of Educational Progress (NAEP 2005a Framework).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24072', '12', '24072', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001010', 'Assessment Form Subtest Item Weight Correct', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item is correct or partially correct. Item weight of 1 indicates the full item score is used. A weight of .5 would indicate the item only contributes one half of the item score to the subtest. A weight of 0 indicates the item does not affect the sub test score.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22013', '11', '22013', NULL, NULL) +VALUES ('001089', 'Assessment Language', NULL, 'The language in which the assessment form is designed to be delivered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24073', '12', '24073', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001012', 'Assessment Form Subtest Item Weight Incorrect', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item is attempted and incorrect. Item weight should be a negative value if the item subtracts from the score if missed.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22014', '11', '22014', NULL, NULL) +VALUES ('001091', 'Assessment Subtest Published Date', NULL, 'The date on which the Subtest was published.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24075', '12', '24075', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001013', 'Assessment Form Subtest Item Weight Not Attempted', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item has not been attempted by the student. Item weight should be a negative value if the item subtracts from the score if not attempted.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22015', '11', '22015', NULL, NULL) +VALUES ('001092', 'Assessment Result Descriptive Feedback Source', NULL, 'Identifies the source of the descriptive feedback that was given to a learner based on a scored/evaluated portion of an assessment. May indicate if this is teacher, scorer, or system generated feedback. Values for this attribute would be determined by the assessment program.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24076', '12', '24076', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001014', 'Assessment Subtest Identifier Type', NULL, 'The type of identifier that is provided for a Subtest.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22016', '11', '22016', NULL, NULL) +VALUES ('001093', 'Assessment Session Special Event Description', NULL, 'Describes special events that occur before during or after the assessment session that may impact use of results according to rules related to the Assessment Registration Testing Indicator.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24077', '12', '24077', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001015', 'Assessment Registration Days of Instruction', NULL, 'The number of days of instruction the student has taken prior to testing.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22017', '11', '22017', NULL, NULL) +VALUES ('001094', 'Competency Definition Parent URL', 'Learning Standard Item Parent URL, Competency Item Parent URL', 'A network-resolvable Uniform Resource Locator (URL) pointing to the authoritative reference for the hierarchal parent of the competency definition.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24078', '12', '24078', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001016', 'Assessment Registration Retest Indicator', NULL, 'Indicates if this registration is for a retest (retake). Retest can occur if a student failed a prior attempt and is eligible to retake. Other retest scenarios also can occur.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22018', '11', '22018', NULL, NULL) +VALUES ('001102', 'Assessment Item Body Custom Interaction XML', NULL, 'The custom interaction provides an opportunity for extensibility of this specification to include support for interactions not currently documented. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24079', '12', '24079', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001017', 'Assessment Registration Creation Date', NULL, 'Date/time assignment is made.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22019', '11', '22019', NULL, NULL) +VALUES ('001103', 'Assessment Item Body Drawing Interaction XML', NULL, 'The drawing interaction allows the candidate to use a common set of drawing tools to modify a given graphical image (the canvas). It must be bound to a response variable with base-type file and single cardinality. The result is a file in the same format as the original image. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24080', '12', '24080', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001018', 'Assessment Session Type', NULL, 'The type of session that is scheduled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22020', '11', '22020', NULL, NULL) +VALUES ('001104', 'Assessment Item Body Gap Match Interaction XML', NULL, 'A gap match interaction contains a number gaps that the candidate can fill from an associated set of choices. The candidate must be able to review the content with the gaps filled in context, as indicated by their choices. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24081', '12', '24081', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001019', 'Assessment Session Scheduled Start Date Time', NULL, 'Date and time the assessment is scheduled to begin.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22021', '11', '22021', NULL, NULL) +VALUES ('001105', 'Assessment Item Body Match Interaction XML', NULL, 'A match interaction presents candidates with two sets of choices and allows them to create associates between pairs of choices in the two sets, but not between pairs of choices in the same set. Further restrictions can still be placed on the allowable associations using the matchMax attribute of the choices. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24082', '12', '24082', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001020', 'Assessment Session Scheduled End Date Time', NULL, 'Date and time the assessment is scheduled to end.', 'YYYY-MM-DDTHH:MM:SS', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22022', '11', '22022', NULL, NULL) +VALUES ('001106', 'Assessment Item Body Graphic Gap Match Interaction XML', NULL, 'A graphic gap-match interaction is a graphical interaction with a set of gaps that are defined as areas (hotspots) of the graphic image and an additional set of gap choices that are defined outside the image. The candidate must associate the gap choices with the gaps in the image and be able to review the image with the gaps filled in context, as indicated by their choices. Care should be taken when designing these interactions to ensure that the gaps in the image are a suitable size to receive the required gap choices. It must be clear to the candidate which hotspot each choice has been associated with. When associated, choices must appear wholly inside the gaps if at all possible and, where overlaps are required, should not hide each other completely. If the candidate indicates the association by positioning the choice over the gap (e.g., drag and drop) the system should ''snap'' it to the nearest position that satisfies these requirements. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24083', '12', '24083', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001021', 'Assessment Session Actual Start Date Time', NULL, 'Date and time the assessment actually began.', 'YYYY-MM-DDTHH:MM:SS', '0', 'When associated to an assessment session this is the actual start date and time. When associated to an individual taking an assessment, this is the actual date and time when the individual started.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22023', '11', '22023', NULL, NULL) +VALUES ('001107', 'Assessment Item Body Hot Spot Interaction XML', NULL, 'A hotspot interaction is a graphical interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to select one or more of the areas (hotspots). The hotspot interaction should only be used when the spatial relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, choiceInteraction should be used instead with separate material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24084', '12', '24084', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001022', 'Assessment Session Actual End Date Time', NULL, 'Date and time the assessment actually ended.', 'YYYY-MM-DDTHH:MM:SS', '0', 'When associated to an assessment session this is the actual end date and time. When associated to an individual taking an assessment, this is the actual date and time when the individual finished.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22024', '11', '22024', NULL, NULL) +VALUES ('001108', 'Assessment Item Body Graphic Order Interaction XML', NULL, 'A graphic order interaction is a graphic interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to impose an ordering on the areas (hotspots). The order hotspot interaction should only be used when the spatial relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, orderInteraction should be used instead with separate material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24085', '12', '24085', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001023', 'Assessment Need Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile a preference for the language of the user interface.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22025', '11', '22025', NULL, NULL) +VALUES ('001109', 'Assessment Item Body Select Point Interaction XML', NULL, 'Like hotspotInteraction, a select point interaction is a graphic interaction. The candidate''s task is to select one or more points. The associated response may have an areaMapping that scores the response on the basis of comparing it against predefined areas but the delivery engine must not indicate these areas of the image. Only the actual point(s) selected by the candidate shall be indicated. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24087', '12', '24087', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001024', 'Assessment Need Hazard Type', NULL, 'Defines as part of an Assessment Personal Needs Profile a characteristic of a digital resource that may be specified as being dangerous to a user.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22026', '11', '22026', NULL, NULL) +VALUES ('001110', 'Assessment Item Body Select Point Interaction', NULL, 'A graphic associate interaction is a graphic interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to associate the areas (hotspots) with each other. The graphic associate interaction should only be used when the graphical relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, associateInteraction should be used instead with separate Material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24088', '12', '24088', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001025', 'Assessment Need Support Tool Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the electronic tool associated with a resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22027', '11', '22027', NULL, NULL) +VALUES ('001111', 'Assessment Item Body Slider Interaction XML', NULL, 'The slider interaction presents the candidate with a control for selecting a numerical value between a lower and upper bound. It must be bound to a response variable with single cardinality with a base-type of either integer or float. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24089', '12', '24089', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001026', 'Assessment Need Usage Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the rating for the collection of Access for All (AfA) needs and preferences.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22028', '11', '22028', NULL, NULL) +VALUES ('001112', 'Assessment Item Body Choice Interaction XML', NULL, 'The choice interaction presents a set of choices to the candidate. The candidate''s task is to select one or more of the choices, up to a maximum of maxChoices. The interaction is always initialized with no choices selected. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24090', '12', '24090', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001027', 'Assessment Need Link Indication Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the characteristics of presentation for a hyperlink when using a screen reader.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22029', '11', '22029', NULL, NULL) +VALUES ('001114', 'Assessment Item Body Inline Choice Interaction XML', NULL, 'A inline choice is an inline interaction that presents the user with a set of choices, each of which is a simple piece of text. The candidate''s task is to select one of the choices. Unlike the Choice Interaction, the delivery engine must allow the candidate to review their choice within the context of the surrounding text.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24091', '12', '24091', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001028', 'Assessment Need Speech Rate', NULL, 'Defines as part of an Assessment Personal Needs Profile the rate of speech of a speech synthesizer.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22030', '11', '22030', NULL, NULL) +VALUES ('001115', 'Assessment Item Body Media Interaction XML', NULL, 'The media interaction allows more control over the way the candidate interacts with a time-based media object and allows the number of times the media object was experienced to be reported in the value of the associated response variable, which must be of base-type integer and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24092', '12', '24092', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001087', 'Assessment Need Pitch', NULL, 'Defines as part of an Assessment Personal Needs Profile the pitch of a speech synthesizer.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22031', '11', '22031', NULL, NULL) +VALUES ('001749', 'Credential Definition Intended Purpose Type', 'Credential Intended Purpose Type', 'The intended type of application of the credential by the holder.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24730', '12', '24730', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001029', 'Assessment Need Volume', NULL, 'Defines as part of an Assessment Personal Needs Profile the volume of a speech synthesizer.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22032', '11', '22032', NULL, NULL) +VALUES ('001750', 'Organization Region GeoJSON', NULL, 'The geo-political area of the organization''s facility, building, or site.', 'GeoJSON', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24731', '12', '24731', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001030', 'Assessment Need Invert Color Choice', NULL, 'Defines as part of an Assessment Personal Needs Profile the Access for All (AfA) preference to invert the foreground and background Colors.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22033', '11', '22033', NULL, NULL) +VALUES ('001751', 'Credential Revoked Indicator', NULL, 'Indicates whether the credential has been revoked by the credential provider.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24732', '12', '24732', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001031', 'Assessment Need Magnification', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred magnification of the screen as a factor of a screen’s original size.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22034', '11', '22034', NULL, NULL) +VALUES ('001752', 'Credential Definition Validation Method Description', 'Credential Validation Method Description', 'Description of the methods used to evaluate the validity and reliability of a credential earned by a person.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24733', '12', '24733', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001032', 'Assessment Need Braille Grade Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the grade of Braille to use when using a Braille display.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22035', '11', '22035', NULL, NULL) +VALUES ('001753', 'Credential Definition Verification Type', 'Credential Verification Type', 'A resource describing the means by which someone can verify whether a credential has been attained by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24734', '12', '24734', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001033', 'Assessment Need Number of Braille Dots Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the number of dots in a Braille cell.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22036', '11', '22036', NULL, NULL) +VALUES ('001754', 'Credential Definition Version', 'Credential Version', 'An alphanumeric identifier of a version of the credential being described that is unique within the organizational context.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24735', '12', '24735', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001034', 'Assessment Need Number of Braille Cells', NULL, 'Defines as part of an Assessment Personal Needs Profile the number of active Braille cells in a Braille display.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22037', '11', '22037', NULL, NULL) +VALUES ('001755', 'CTDL Organization Type', NULL, 'The type of credentialing organization or entity as defined by the Credential Transparency Description Language.', NULL, '1', 'Includes free-standing medical, law or other first-professional schools, schools that offer postbaccalaureate certificates only, those that offer graduate programs only, etc.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24736', '12', '24736', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001035', 'Assessment Need Braille Mark Type', NULL, 'Defines as part of an Assessment Personal Needs Profile what textual properties to mark when using a Braille display.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22038', '11', '22038', NULL, NULL) +VALUES ('001756', 'O*NET-SOC Occupation Type', NULL, 'The O*NET-SOC taxonomy defines the set of occupations across the world of work based on the Standard Occupational Classification.', '##-####.##', '0', 'https://www.onetcenter.org/taxonomy.html', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24737', '12', '24737', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001036', 'Assessment Need Braille Dot Pressure', NULL, 'Defines as part of an Assessment Personal Needs Profile the resistance pressure of Braille display pins.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22040', '11', '22040', NULL, NULL) +VALUES ('001757', 'Competency Definition Type URL', 'Competency Item Type URL', 'The class of statement in the structure of statements in the Competency Framework according to a controlled vocabulary, specified as a URI referencing a controlled vocabulary.', 'Alphanumeric - 512 characters maximum', '0', 'This property points to a class, not to instances of that class. For example, where two competencies in a competency framework have been identified respectively as \"Strand: Renaissance\" and \"Strand: Social history\", the competency category for both these competencies is \"Strand\"."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24738', '12', '24738', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001037', 'Assessment Need Braille Status Cell Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred presence or location of a Braille display status cell.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22041', '11', '22041', NULL, NULL) +VALUES ('001758', 'Submission Date', NULL, 'The month, day, and year on which a report is submitted.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24739', '12', '24739', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001038', 'Assessment Need Item Translation Display Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default language for the displayed translation.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22042', '11', '22042', NULL, NULL) +VALUES ('001759', 'Report Date', NULL, 'The month, day, and year on which a report was produced.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24740', '12', '24740', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001039', 'Assessment Need Keyword Translation Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default language for the keyword translation.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22043', '11', '22043', NULL, NULL) +VALUES ('001760', 'Count Date', NULL, 'The effective month, day, and year on which the data was counted.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24741', '12', '24741', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001670', 'IPEDS Finance GASB Financial Position Category', NULL, 'IPEDS financial position classification used by degree-granting public institutions using GASB Reporting Standards for reporting the assets, liabilities, and net position in a manner consistent with the Statement of Net Position in the General Purpose Financial Statements (GPFS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22651', '11', '22651', NULL, NULL) +VALUES ('001761', 'State Full Academic Year', NULL, 'An indication of whether a student was in membership in the state education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24742', '12', '24742', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001671', 'IPEDS Finance FASB Financial Position Category', NULL, 'IPEDS financial position classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting the assets, liabilities, and net assets in a manner consistent with the Statement of Financial Position in the General Purpose Financial Statements (GPFS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22652', '11', '22652', NULL, NULL) +VALUES ('001762', 'LEA Full Academic Year', NULL, 'An indication of whether a student was in membership in the LEA education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24743', '12', '24743', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001672', 'IPEDS Finance GASB Revenue Category', NULL, 'IPEDS revenue classification used by degree-granting public institutions using GASB Reporting Standards for reporting revenues and other additions by source including all operating revenues, nonoperating revenues, and other additions for the reporting period. This includes unrestricted and restricted revenues and additions, whether expendable or nonexpendable.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22653', '11', '22653', NULL, NULL) +VALUES ('001763', 'School Full Academic Year', NULL, 'An indication of whether a student was in membership in the school education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24744', '12', '24744', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001673', 'IPEDS Finance FASB Revenue Category', NULL, 'IPEDS revenue classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues and investment return by source in a manner consistent with the definitions from the National Association of College and University Business Officers (NACUBO) Financial Accounting and Reporting Manual for Higher Education (FARM).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22654', '11', '22654', NULL, NULL) +VALUES ('001764', 'Building Area', NULL, 'The sum of the areas at each floor level included within the principal outside faces of exterior walls, including roofed areas with finished floors that may not have exterior walls, but are connected to the main building. This sum should include all stories or areas having floor surfaces with clear standing head room (6.5 feet or 1.98 meters) but omit architectural setbacks or projections.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24745', '12', '24745', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001674', 'IPEDS Finance FASB Revenue Restriction Category', NULL, 'IPEDS revenue restriction classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues by restriction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22655', '11', '22655', NULL, NULL) +VALUES ('001765', 'Significant Cognitive Disability Indicator', NULL, 'Student has an existing IDEA disability with cognitive impairments which may prevent him/her from attaining grade-level achievement standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24746', '12', '24746', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001675', 'IPEDS Finance GASB Functional Expense Category', NULL, 'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', NULL, '1', '(NACUBO FARM, section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22656', '11', '22656', NULL, NULL) +VALUES ('001766', 'Virtual School Status', NULL, 'An indication of the extent to which a school offers instruction in which students and teachers are separated by time and/or location, and interaction occurs via computers and/or telecommunications technologies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24747', '12', '24747', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001676', 'IPEDS Finance Natural Expense Category', NULL, 'A natural expense classification is a method of grouping expenses according to the type of costs that are incurred. The classifications tell what was purchased rather than why an expense was incurred.', NULL, '1', '(NACUBO FARM section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22657', '11', '22657', NULL, NULL) +VALUES ('001767', 'National School Lunch Program Status', NULL, 'The classification of participation by a school in the National School Lunch Program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24748', '12', '24748', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001677', 'IPEDS Finance GASB Scholarships and Fellowships Revenue Category', NULL, 'IPEDS revenue category used by degree-granting public institutions using GASB Reporting Standards for the reporting of resources received for supporting student scholarships and fellowships.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22658', '11', '22658', NULL, NULL) +VALUES ('001768', 'Facility Acquisition Date', NULL, 'The date the property/facility was acquired.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24749', '12', '24749', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001678', 'IPEDS Finance FASB Scholarships and Fellowships Revenue Category', NULL, 'IPEDS revenue category used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for the reporting of resources received for supporting student grant aid.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22659', '11', '22659', NULL, NULL) +VALUES ('001769', 'Facility Addition Year', NULL, 'The year the construction on the addition was completed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24750', '12', '24750', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001679', 'IPEDS Finance Intercollegiate Athletics Expenses', NULL, 'Identifies the functional expense category where the institution allocates its intercollegiate athletics expenses.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22660', '11', '22660', NULL, NULL) +VALUES ('001770', 'Facility Building Permanency', NULL, 'An indication of whether the building is built for permanent use in the same location or is relocatable.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24751', '12', '24751', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001680', 'IPEDS Finance FASB Pell Grant Transactions', NULL, 'Method of reporting Pell Grants in IPEDS by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22661', '11', '22661', NULL, NULL) +VALUES ('001771', 'Facility Construction Year', NULL, 'The year the building was first constructed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24752', '12', '24752', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001681', 'Individualized Program Service Plan Progress Report Schedule', NULL, 'Frequency by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22662', '11', '22662', NULL, NULL) +VALUES ('001772', 'Building Historic Status', NULL, 'An indication of whether or not a building is eligible to be or has been declared a landmark or historic building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24753', '12', '24753', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001682', 'IEP Transfer of Rights Statement', NULL, 'Beginning not later than one year before the child reaches the age of majority under State law, the IEP must include a statement that the child has been informed of the child''s rights under Part B of the Individuals with Disabilities Education Act, if any, that will transfer to the child on reaching the age of majority under §300.520.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22663', '11', '22663', NULL, NULL) +VALUES ('001773', 'Facility Site Area', NULL, 'The total number of acres in a continuous piece of land, to the nearest tenth, including undeveloped areas as well as areas occupied by buildings, walks, drives, parking facilities, and other improvements.', 'Numeric - up to 1 digit after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24754', '12', '24754', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001683', 'Individualized Program Service Plan End Date', NULL, 'The year, month and day on which the status of the service plan for a child effectively ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22664', '11', '22664', NULL, NULL) +VALUES ('001774', 'Facility Block Number Area', 'BNA', 'The informal description of location sometimes used in rural areas, for example, "from the highway to the railroad tracks."', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24755', '12', '24755', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001684', 'Individualized Program Service Plan Meeting Date', NULL, 'The date on which a child''s service plan meeting is held.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22665', '11', '22665', NULL, NULL) +VALUES ('001775', 'Building Addition Description', NULL, 'A description of the permanent structure added to the original building.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24756', '12', '24756', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001685', 'Individualized Program Accommodation Description', NULL, 'Description of a specific accommodation or change to standards or practices that will be made.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22666', '11', '22666', NULL, NULL) +VALUES ('001776', 'Building Addition Code', NULL, 'A unique number or alphanumeric code assigned to a building addition by a school, school system, state, or other agency or entity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24757', '12', '24757', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001686', 'Individualized Program Accommodation Applicability', NULL, 'Circumstances in which the accommodation or change to standards or practices will be applied.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22667', '11', '22667', NULL, NULL) +VALUES ('001777', 'Building Primary Use Type', NULL, 'The primary use type of the building in which a school is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24758', '12', '24758', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001687', 'IEP Alternative Assessment Rationale', NULL, 'A statement of why— (A) The child cannot participate in the regular assessment; and (B) The particular alternate assessment selected is appropriate for the child.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22668', '11', '22668', NULL, NULL) +VALUES ('001778', 'Campus Status', NULL, 'The generalized use or control of a campus, independent of program type.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24759', '12', '24759', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001688', 'Individualized Program Service Plan Amendment Reason Description', NULL, 'Description of the reason changes were made to the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22669', '11', '22669', NULL, NULL) +VALUES ('001779', 'Facility Census Tract', NULL, 'The census tract number of the school site.', 'Integer - exactly 11 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24760', '12', '24760', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001689', 'Individualized Program Service Plan Amendment Description', NULL, 'Description of the changes made to the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22670', '11', '22670', NULL, NULL) +VALUES ('001780', 'Facility Construction Date', NULL, 'The month, day, and year on which construction of a building, addition, or improvement was completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24761', '12', '24761', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001690', 'Goal Current Performance Description', NULL, 'Current performance explanation related to the annual goal or short-term objectives.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22671', '11', '22671', NULL, NULL) +VALUES ('001781', 'Facility Construction Date Type', NULL, 'Designation of the nature of the construction completion date.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24762', '12', '24762', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001691', 'Goal Measurement Criterion Accuracy Percent', NULL, 'The percent of correct results that will be considered to represent successful achievement of a goal.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22672', '11', '22672', NULL, NULL) +VALUES ('001782', 'Facility Construction Material Type', NULL, 'The primary material used for the construction of a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24763', '12', '24763', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001692', 'Goal Measurement Criterion Attempts Count', NULL, 'The number of attempts representing a completed trial for assessing achievement of a goal.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22673', '11', '22673', NULL, NULL) +VALUES ('001783', 'Facility Expected Life', NULL, 'The time, in years, of the expected useful life of a facility for the purposes of depreciation.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24764', '12', '24764', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001693', 'Goal Measurement Criterion Metric', NULL, 'A metric used for evaluating achievement of a goal.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22674', '11', '22674', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('001784', 'Facility Replacement Value', NULL, 'The estimated cost of replacing a facility using current per square foot estimates of total project costs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24765', '12', '24765', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001694', 'Goal Measurement Criterion Success Count', NULL, 'The number of correct results that will be considered to represent successful achievement of a goal.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22675', '11', '22675', NULL, NULL) +VALUES ('001785', 'Building Number of Stories', NULL, 'The number of stories in a building, excluding the basement if its ceiling is less than three feet above ground level.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24766', '12', '24766', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001695', 'Goal Measurement Description', NULL, 'The procedures and/or instruments that will be used to measure achievement of a goal or short-term objective.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22676', '11', '22676', NULL, NULL) +VALUES ('001786', 'Facility Site Identifier', NULL, 'The lot and square number, or equivalent unique municipal number identification, of a parcel of land.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24767', '12', '24767', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001696', 'Goal Measurement Schedule', NULL, 'Frequency of evaluation of progress toward meeting the goal or short-term objective.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22677', '11', '22677', NULL, NULL) +VALUES ('001787', 'Facility Site Improvement Location Type', NULL, 'The type of location of the designed and constructed improvements made to a site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24768', '12', '24768', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001697', 'Goal Measurement Type', NULL, 'Type of evidence appropriate for assessing achievement of a goal or short-term objective.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22678', '11', '22678', NULL, NULL) +VALUES ('001788', 'Building Year Built', NULL, 'The year a building was constructed, as indicated by cornerstone or official government records.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24769', '12', '24769', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001698', 'IEP Goal Type', NULL, 'Legal category for an IEP annual goal or short-term objectives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22679', '11', '22679', NULL, NULL) +VALUES ('001789', 'Building Year of Last Modernization', NULL, 'The most recent year that a comprehensive upgrade of ALL major building systems and components was completed, such that it functions as a modern building, as measured by a facility condition index not greater than 15%.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24770', '12', '24770', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001699', 'Individualized Program Service Plan Progress Report Date', NULL, 'The date parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22680', '11', '22680', NULL, NULL) +VALUES ('001790', 'Building Air Distribution System Type', NULL, 'The primary means by which air is circulated, freshened, and exhausted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24771', '12', '24771', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001700', 'Individualized Program Service Plan Progress Report Description', NULL, 'A description of the progress report used to notify parents of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22681', '11', '22681', NULL, NULL) +VALUES ('001791', 'Building Communications Management Component System Type', NULL, 'The type of system, interface, and management components for carrying voice, video, and data throughout a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24772', '12', '24772', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001701', 'Individualized Program Service Plan Progress Report Type', NULL, 'A method by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22682', '11', '22682', NULL, NULL) +VALUES ('001792', 'Facility Compliance Status', NULL, 'An indication of whether the school, building, site, system, component, equipment, vehicle, or fixture conforms to the requirements or standards specified in federal, state, or local standards or codes or other officially required guidelines or regulations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24773', '12', '24773', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001702', 'Goal Status Type', NULL, 'Status toward achievement of the annual goal or short-term objectives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22683', '11', '22683', NULL, NULL) +VALUES ('001793', 'Facility System or Component Condition', NULL, 'The rating of the system or component functions under the demands of its regular operation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24774', '12', '24774', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001703', 'Goal Status', NULL, 'Description of status toward achievement of the annual goal or short-term objectives.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22684', '11', '22684', NULL, NULL) +VALUES ('001794', 'Building Cooling Generation System Type', NULL, 'The type of mechanical systems and building designs used for cooling.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24775', '12', '24775', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001704', 'IDEA Placement Rationale', NULL, 'The rationale for the placement decision and if applicable, an explanation of the extent, if any, to which the child will not participate with nondisabled children in the regular class and in the activities described in paragraph (a)(4) of CFR. §300.320.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22685', '11', '22685', NULL, NULL) +VALUES ('001795', 'Building Electrical System Type', NULL, 'The components and system required to distribute electricity throughout the building or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24776', '12', '24776', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001705', 'IEP Present Level Academic Description', NULL, 'How the child''s disability affects the child''s academic achievement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22686', '11', '22686', NULL, NULL) +VALUES ('001796', 'Facility Applicable Federal Mandate Type', NULL, 'The particular federal law, regulation, or standard that pertains to a school facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24777', '12', '24777', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001706', 'IEP Present Level Functional Description', NULL, 'How the child''s disability affects the child''s functional performance.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22687', '11', '22687', NULL, NULL) +VALUES ('001797', 'Facility Federal Mandate Interest Type', NULL, 'The area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24778', '12', '24778', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001707', 'IEP Present Level General Education Description', NULL, 'How the child''s disability affects the child''s involvement and progress in the general education curriculum.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22688', '11', '22688', NULL, NULL) +VALUES ('001798', 'Building Fire Protection System Type', NULL, 'The type of system that protects the facility against fire.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24779', '12', '24779', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001708', 'IEP Present Level Preschool Description', NULL, 'For preschool children, as appropriate, how the disability affects the child''s participation in appropriate activities.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22689', '11', '22689', NULL, NULL) +VALUES ('001799', 'Building Heating Generation System Type', NULL, 'The method by which the heat is distributed and delivered throughout the room(s) or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24780', '12', '24780', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001709', 'IEP Present Level Student Strengths Description', NULL, 'Explanation of perceived strengths and abilities of the student.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22690', '11', '22690', NULL, NULL) +VALUES ('001800', 'Building HVAC System Type', NULL, 'The building service system that provides for heating, ventilation and air-conditioning.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24781', '12', '24781', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001710', 'IEP Present Level Parent Concern Description', NULL, 'Parent’s explanation of their interest in or concerns about the student’s participation in special education.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22691', '11', '22691', NULL, NULL) +VALUES ('001801', 'Building Institutional Equipment Description', NULL, 'Equipment that is installed for use in support of instructional program such as kilns for art, planetarium equipment for astronomy, fitness equipment for physical education.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24782', '12', '24782', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001711', 'IEP Present Level Student Concern Description', NULL, 'Student’s explanation of his or her interest in or concerns about participation in special education.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22692', '11', '22692', NULL, NULL) +VALUES ('001802', 'Building Mechanical Conveying System Type', NULL, 'Mechanical means for moving people and equipment within buildings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24783', '12', '24783', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001712', 'Declined Services Date', NULL, 'The date recommended services were declined.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22693', '11', '22693', NULL, NULL) +VALUES ('001803', 'Building Plumbing System Type', NULL, 'The component of an on-site system for supplying, eliminating, and treating water.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24784', '12', '24784', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001713', 'Frequency Unit', NULL, 'The unit of time by which a cycle is defined.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22694', '11', '22694', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001804', 'Building Security System Type', NULL, 'The type of system that protects the facility from intrusion.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24785', '12', '24785', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001714', 'Frequency Instances Per Cycle', NULL, 'The number of recurrences within a cycle.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22695', '11', '22695', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001805', 'Facility State or Local Mandate Interest Type', NULL, 'The area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24786', '12', '24786', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001715', 'Frequency Length', NULL, 'The number of units within a repeating cycle. Used with Frequency and Frequency Units elements to describe the occurrence of repeating events such as student services delivered 3 times a week for 16 weeks.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22696', '11', '22696', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001806', 'Facility State or Local Mandate Name', NULL, 'The specific law, rule, regulation, or standard of a state or local government that pertains to public school facilities.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24787', '12', '24787', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001716', 'Duration Length in Minutes', NULL, 'The number of minutes in an instance.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22697', '11', '22697', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('001807', 'Building Technology Wiring System Type', NULL, 'The means through which voice, video, audio, and data information are conveyed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24788', '12', '24788', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001717', 'Service Extends Outside School Year', NULL, 'Determination if this service continues outside school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22698', '11', '22698', NULL, NULL) +VALUES ('001808', 'Facility Location of Hazardous Materials', NULL, 'The location at which the identified hazardous material is found.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24789', '12', '24789', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001718', 'Service Setting Description', NULL, 'Description of the setting in which the services are delivered.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22699', '11', '22699', NULL, NULL) +VALUES ('001809', 'Building Mechanical System Type', NULL, 'The major manufactured systems required to operate a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24790', '12', '24790', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001719', 'IEP Authorization Document Type', NULL, 'Type of Individualized Education Plan document authorized.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22700', '11', '22700', NULL, NULL) +VALUES ('001810', 'Facility Nearby Environmental Hazard Description', NULL, 'Description of any type of environmental hazards within range of the facility that has the potential to seriously affect the health, safety and operation of school facilities and their occupants.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24791', '12', '24791', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001720', 'Authorizer Type', NULL, 'Type of person who authorized the decision or document.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22701', '11', '22701', NULL, NULL) +VALUES ('001811', 'Building System Type', NULL, 'The type of system that is installed in the building or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24792', '12', '24792', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001721', 'Authorization Acceptance Indicator', NULL, 'Indicates authorizer agreement to a document or plan, such as plan for delivery of student services, program, or improvement plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22702', '11', '22702', NULL, NULL) +VALUES ('001812', 'Building Vertical Transportation System Type', NULL, 'The type of system used to convey persons or freight between floors.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24793', '12', '24793', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001722', 'Authorization Decision Explanation', NULL, 'Authorizer''s explanation regarding the authorization decision.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22703', '11', '22703', NULL, NULL) +VALUES ('001813', 'Building Administrative Space Type', NULL, 'The space designed primarily for conducting administrative and business functions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24794', '12', '24794', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001723', 'IEP Authorization Rejected Portion Description', NULL, 'Portion the authorizer does not want executed.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22704', '11', '22704', NULL, NULL) +VALUES ('001814', 'Building Art Specialty Space Type', NULL, 'The space designed to support the teaching and learning of 2 dimensional or 3 dimensional visual arts.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24795', '12', '24795', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001724', 'IEP Authorization Rejected Portion Explanation', NULL, 'Authorizer''s explanation for rejected portions.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22705', '11', '22705', NULL, NULL) +VALUES ('001815', 'Building Basic Classroom Design Type', NULL, 'A classroom designed for instruction of a particular age group, but not a specific subject.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24796', '12', '24796', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001725', 'Authorization Date', NULL, 'The date the authorization occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22706', '11', '22706', NULL, NULL) +VALUES ('001816', 'Building Design Type', NULL, 'The primary design or purpose of a building, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24797', '12', '24797', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001726', 'Consent to Evaluation Indicator', NULL, 'Indication parent agreed to evaluate student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22707', '11', '22707', NULL, NULL) +VALUES ('001817', 'Building Career-Technical Education Space Type', NULL, 'The classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24798', '12', '24798', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001727', 'Consent to Evaluation Date', NULL, 'The date the consent to evaluation occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22708', '11', '22708', NULL, NULL) +VALUES ('001818', 'Building Circulation Space Type', NULL, 'A space designed to enable people to move within the building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24799', '12', '24799', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001728', 'IEP Eligibility Evaluation Type', NULL, 'Purpose within the IEP lifecycle for which the eligibility evaluation is conducted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22709', '11', '22709', NULL, NULL) +VALUES ('001819', 'Building Environmental or Energy Performance Rating Category', NULL, 'The primary groupings that rating organizations use to evaluate environmental sustainability and energy use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24800', '12', '24800', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001729', 'IDEA Eligibility Evaluation Category', NULL, 'Category of evaluation used for IDEA eligibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22710', '11', '22710', NULL, NULL) +VALUES ('001820', 'Facility Furnishings Type', NULL, 'Moveable assets that are provided so the building or interior assets can be utilized by occupants for their intended purposes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24801', '12', '24801', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001730', 'Eligibility Evaluation Description', NULL, 'Description of evaluation procedure and result used for determining eligibility.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22711', '11', '22711', NULL, NULL) +VALUES ('001821', 'Building Food Service Space Type', NULL, 'The space located, designed, furnished and equipped to support meal programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24802', '12', '24802', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001731', 'Eligibility Evaluation Date', NULL, 'The date when the evaluation to determine eligibility was conducted.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22712', '11', '22712', NULL, NULL) +VALUES ('001822', 'Building Indoor Athletic or Physical Education Space Type', NULL, 'The indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24803', '12', '24803', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001732', 'Eligibility Parent Observations Explanation', NULL, 'Explanation of parent''s observations of student’s characteristics and history used for determining eligibility.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22713', '11', '22713', NULL, NULL) +VALUES ('001823', 'Building Library or Media Center Specialty Space Type', NULL, 'The primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24804', '12', '24804', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001733', 'IDEA Disability Type', NULL, 'A category of disability that describes a person’s impairment defined by the Individuals with Disabilities Education Act.', NULL, '1', 'Option set based on IDEA disability categories. Multiple disability condition could be selected. Refer to Primary Disability Type for a single disability condition based on EDFacts.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22714', '11', '22714', NULL, NULL) +VALUES ('001824', 'Building Operations or Maintenance Space Type', NULL, 'The area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24805', '12', '24805', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001734', 'Credential Advanced Standing Description', NULL, 'A description of a credential that reduced the time or cost of attaining this credential.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22715', '11', '22715', NULL, NULL) +VALUES ('001825', 'Building Outdoor Athletic or Physical Education Space Type', NULL, 'The outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24806', '12', '24806', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001735', 'Credential Advanced Standing URL', NULL, 'A URL that resolves to information about a credential that reduced the time or cost of attaining this credential.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22716', '11', '22716', NULL, NULL) +VALUES ('001826', 'Building Outdoor or Non-athletic Space Type', NULL, 'The outdoor space located, designed, furnished, and equipped primarily for recreation, play and outdoor environmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24807', '12', '24807', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001736', 'Credential Definition Alternate Name', 'Credential Alternate Name', 'An alias for the credential, which may include acronyms, alpha-numeric notations, and other forms of name abbreviations in common use such as PhD, MA, and BA.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22717', '11', '22717', NULL, NULL) +VALUES ('001827', 'Building Performing Arts Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped for instruction and support of music and drama curricula and productions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24808', '12', '24808', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001737', 'Credential Award Approver Name', NULL, 'Pronouncement of a favorable judgment by the agent being referenced.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22718', '11', '22718', NULL, NULL) +VALUES ('001828', 'Building School Design Type', NULL, 'The physical layout and character of a school facility, as determined by age groups served and educational programs provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24809', '12', '24809', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001738', 'Credential Definition Assessment Method Type', 'Credential Assessment Method Type', 'The method used to conduct the assessment being referenced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22719', '11', '22719', NULL, NULL) +VALUES ('001829', 'Building Science Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped for instruction and experimentation in science.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24810', '12', '24810', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001739', 'Credential Definition Identifier System', 'Credential Identifier System', 'A coding scheme that is used for identification and record-keeping purposes by a credentialing organization to refer to a qualification, achievement, personal or organizational quality, or aspect of an identity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22720', '11', '22720', NULL, NULL) +VALUES ('001830', 'Facility Site Outdoor Area Type', NULL, 'The designated constructed outdoor area on a public school site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24811', '12', '24811', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001740', 'Credential Definition Status Type', 'Credential Status Type', 'The status of the credential offered by a credentialing organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22721', '11', '22721', NULL, NULL) +VALUES ('001831', 'Building Space Design Type', NULL, 'The primary design or purpose of a space, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24812', '12', '24812', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001741', 'Credential Definition Estimated Duration', 'Credential Estimated Duration', 'The estimated amount of time in minutes it will take to earn the credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22722', '11', '22722', NULL, NULL) +VALUES ('001832', 'Building Special Education Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24813', '12', '24813', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001742', 'Credential Definition NAICS Industry Type', 'Credential NAICS Industry Type', 'The North American Industry Classification System (NAICS) class identifier for an industry associated with the credential.', 'Integer - exactly 6 digits', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22723', '11', '22723', NULL, NULL) +VALUES ('001833', 'Building Student Support Space Type', NULL, 'The space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24814', '12', '24814', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001743', 'Credential Definition Jurisdiction Region', 'Credential Jurisdiction Region', 'The geo-political region in which the credential is applicable.', 'GeoJSON', '0', 'http://geojson.org/geojson-spec.html#polygon', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22724', '11', '22724', NULL, NULL) +VALUES ('001834', 'Building Architect Name', NULL, 'The name of the architect of record for the building.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24815', '12', '24815', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001744', 'Credential Definition Jurisdiction Region Exception', 'Credential Jurisdiction Region Exception', 'A geo-political region in which the credential does not apply.', 'GeoJSON', '0', 'http://geojson.org/geojson-spec.html#polygon', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22725', '11', '22725', NULL, NULL) +VALUES ('001835', 'Building Architectural Firm Name', NULL, 'The name of the architectural firm responsible for the building design.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24816', '12', '24816', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001745', 'Credential Definition Keywords', 'Credential Keywords', 'Keywords or key phrases describing aspects of a credential considered useful for its discovery.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22726', '11', '22726', NULL, NULL) +VALUES ('001836', 'Building Assembly Space Type', NULL, 'An area designed primarily for theater productions, assemblies, and other large gatherings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24817', '12', '24817', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001746', 'Credential Definition Maximum Duration', 'Credential Maximum Duration', 'The maximum amount of time in minutes it will take to earn the described credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22727', '11', '22727', NULL, NULL) +VALUES ('001837', 'Facility Compliance Determination Date', NULL, 'The month, day, and year that the school, building, site, system, component, equipment, or fixture compliance status was determined.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24818', '12', '24818', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001747', 'Credential Definition Minimum Age', 'Credential Minimum Age', 'The minimum allowed age in years at which a person is eligible for the credential.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22728', '11', '22728', NULL, NULL) +VALUES ('001838', 'Facility Compliance Name', NULL, 'The name of the inspection or process that indicates conformity to the requirements or standards specified in federal, state, or local standards or codes.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24819', '12', '24819', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001748', 'Credential Definition Minimum Duration', 'Credential Minimum Duration', 'The minimum amount of time in minutes it will take to earn the described credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22729', '11', '22729', NULL, NULL) +VALUES ('001839', 'Facility Component Deficiency Description', NULL, 'A description of the component, system, or finish that needs replacement, repair, or maintenance to perform at an optimal level.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24820', '12', '24820', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001749', 'Credential Definition Intended Purpose Type', 'Credential Intended Purpose Type', 'The intended type of application of the credential by the holder.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22730', '11', '22730', NULL, NULL) +VALUES ('001840', 'Facility Component Identification Code', NULL, 'A unique number or alphanumeric code assigned to a component by a school, school system, state, or other agency or entity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24821', '12', '24821', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001750', 'Organization Region GeoJSON', NULL, 'The geo-political area of the organization''s facility, building, or site.', 'GeoJSON', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22731', '11', '22731', NULL, NULL) +VALUES ('001841', 'Facility Estimated Cost to Eliminate Deferred Maintenance', NULL, 'The estimated cost to bring systems, components, finishes, fixtures, or equipment to a state of good repair.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24822', '12', '24822', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001751', 'Credential Revoked Indicator', NULL, 'Indicates whether the credential has been revoked by the credential provider.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22732', '11', '22732', NULL, NULL) +VALUES ('001842', 'Facility Hazardous Condition Expected Remediation Date', NULL, 'The month, day, and year by which a hazardous condition of a site or building is expected to be remediated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24823', '12', '24823', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001752', 'Credential Definition Validation Method Description', 'Credential Validation Method Description', 'Description of the methods used to evaluate the validity and reliability of a credential earned by a person.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22733', '11', '22733', NULL, NULL) +VALUES ('001843', 'Building Full Service Kitchen Type', NULL, 'The type of kitchen housed in the facility as defined by whether it prepares food to be served onsite and/or at additional locations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24824', '12', '24824', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001753', 'Credential Definition Verification Type', 'Credential Verification Type', 'A resource describing the means by which someone can verify whether a credential has been attained by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22734', '11', '22734', NULL, NULL) +VALUES ('001844', 'Hazardous Material or Condition Description', NULL, 'A description of the seriousness a threat or hazardous material poses.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24825', '12', '24825', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001754', 'Credential Definition Version', 'Credential Version', 'An alphanumeric identifier of a version of the credential being described that is unique within the organizational context.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22735', '11', '22735', NULL, NULL) +VALUES ('001845', 'Hazardous Material or Condition Testing Date', NULL, 'The month, day, and year that the site or building is tested for a specific hazardous material.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24826', '12', '24826', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001755', 'CTDL Organization Type', NULL, 'The type of credentialing organization or entity as defined by the Credential Transparency Description Language.', NULL, '1', 'Includes free-standing medical, law or other first-professional schools, schools that offer postbaccalaureate certificates only, those that offer graduate programs only, etc.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22736', '11', '22736', NULL, NULL) +VALUES ('001846', 'Facility Inspection Score Result Description', NULL, 'The description of a meaningful raw score of statistical expression of the performance on an inspection.', 'Alphanumeric - 35 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24827', '12', '24827', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001756', 'O*NET-SOC Occupation Type', NULL, 'The O*NET-SOC taxonomy defines the set of occupations across the world of work based on the Standard Occupational Classification.', '##-####.##', '0', 'https://www.onetcenter.org/taxonomy.html', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22737', '11', '22737', NULL, NULL) +VALUES ('001847', 'Facility Inspection Violation Description', NULL, 'A description of the standard violation(s) found in the inspection.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24828', '12', '24828', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001757', 'Competency Definition Type URL', 'Competency Item Type URL', 'The class of statement in the structure of statements in the Competency Framework according to a controlled vocabulary, specified as a URI referencing a controlled vocabulary.', 'Alphanumeric - 512 characters maximum', '0', 'This property points to a class, not to instances of that class. For example, where two competencies in a competency framework have been identified respectively as \"Strand: Renaissance\" and \"Strand: Social history\", the competency category for both these competencies is \"Strand\"."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22738', '11', '22738', NULL, NULL) +VALUES ('001848', 'Installation Date', NULL, 'The year in which the system, component, equipment, or fixture was originally installed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24829', '12', '24829', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001758', 'Submission Date', NULL, 'The month, day, and year on which a report is submitted.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22739', '11', '22739', NULL, NULL) +VALUES ('001849', 'Life-cycle Cost', NULL, 'The total cost of acquiring, owning, operating, and disposing of a building, facility, or piece of equipment over its useful life.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24830', '12', '24830', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001759', 'Report Date', NULL, 'The month, day, and year on which a report was produced.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22740', '11', '22740', NULL, NULL) +VALUES ('001850', 'Building Site Improvement Description', NULL, 'A description of the designed and constructed improvements made to a site.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24831', '12', '24831', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001760', 'Count Date', NULL, 'The effective month, day, and year on which the data was counted.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22741', '11', '22741', NULL, NULL) +VALUES ('001851', 'Building Instructional Space Factor Type', NULL, 'A designation as to whether the space is considered an instructional space under state or local guidelines.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24832', '12', '24832', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001761', 'State Full Academic Year', NULL, 'An indication of whether a student was in membership in the state education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22742', '11', '22742', NULL, NULL) +VALUES ('001852', 'Building Joint Use Rationale Type', NULL, 'The reasons for permitting and participating in joint-use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24833', '12', '24833', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001762', 'LEA Full Academic Year', NULL, 'An indication of whether a student was in membership in the LEA education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22743', '11', '22743', NULL, NULL) +VALUES ('001853', 'Building Joint Use Scheduling Type', NULL, 'The type of designation of non school district users by the amount of time they have access to public school for joint use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24834', '12', '24834', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001763', 'School Full Academic Year', NULL, 'An indication of whether a student was in membership in the school education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22744', '11', '22744', NULL, NULL) +VALUES ('001854', 'Building Joint User Type', NULL, 'The types of users sharing school district controlled, owned, or utilized facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24835', '12', '24835', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001764', 'Building Area', NULL, 'The sum of the areas at each floor level included within the principal outside faces of exterior walls, including roofed areas with finished floors that may not have exterior walls, but are connected to the main building. This sum should include all stories or areas having floor surfaces with clear standing head room (6.5 feet or 1.98 meters) but omit architectural setbacks or projections.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22745', '11', '22745', NULL, NULL) +VALUES ('001855', 'Building Community Use Space Type', NULL, 'The space designed primarily for community or shared use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24836', '12', '24836', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001765', 'Significant Cognitive Disability Indicator', NULL, 'Student has an existing IDEA disability with cognitive impairments which may prevent him/her from attaining grade-level achievement standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22746', '11', '22746', NULL, NULL) +VALUES ('001856', 'Building Hours of Public Use Per Week', NULL, 'The number of hours that all or part of a building is used for purposes other than general education by the community or other organizations.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24837', '12', '24837', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001766', 'Virtual School Status', NULL, 'An indication of the extent to which a school offers instruction in which students and teachers are separated by time and/or location, and interaction occurs via computers and/or telecommunications technologies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22747', '11', '22747', 'Updated', 'Added elements to DES contexts to support Early Learning needs. Changed definition of element to support other domains.') +VALUES ('001857', 'Building Net Area of Instructional Space', NULL, 'The area of space directly used for instruction excluding circulation, administration, student services, and building support.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24838', '12', '24838', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001767', 'National School Lunch Program Status', NULL, 'The classification of participation by a school in the National School Lunch Program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22748', '11', '22748', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001858', 'Building Number of Teaching Stations', NULL, 'The number of teaching stations, as defined by how many spaces have, or could have, a teacher assigned to them for classroom instruction.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24839', '12', '24839', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001768', 'Facility Acquisition Date', NULL, 'The date the property/facility was acquired.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22749', '11', '22749', NULL, NULL) +VALUES ('001859', 'Building Public Use Policy Description', NULL, 'A description of the policy that enables the community or other organizations to use all or part of a building for purposes other than general education.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24840', '12', '24840', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001769', 'Facility Addition Year', NULL, 'The year the construction on the addition was completed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22750', '11', '22750', NULL, NULL) +VALUES ('001860', 'Building Site Use Restrictions Type', NULL, 'A characterization of a site that would define restrictions or opportunities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24841', '12', '24841', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001770', 'Facility Building Permanency', NULL, 'An indication of whether the building is built for permanent use in the same location or is relocatable.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22751', '11', '22751', NULL, NULL) +VALUES ('001861', 'Building Space Utilization Area', NULL, 'The area in square feet measured between the principal wall that faces at or near floor level, including alcove spaces, and the outer limits of space designed to serve the activity. Structural space is excluded.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24842', '12', '24842', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001771', 'Facility Construction Year', NULL, 'The year the building was first constructed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22752', '11', '22752', NULL, NULL) +VALUES ('001862', 'Student Enrollment Access Type', NULL, 'The designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24843', '12', '24843', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001772', 'Building Historic Status', NULL, 'An indication of whether or not a building is eligible to be or has been declared a landmark or historic building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22753', '11', '22753', NULL, NULL) +VALUES ('001863', 'Building Unassigned Space Indicator', NULL, 'An indication that the space in a school, including circulation, administration offices, support spaces, and common areas, is not part of the calculation for capacity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24844', '12', '24844', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001773', 'Facility Site Area', NULL, 'The total number of acres in a continuous piece of land, to the nearest tenth, including undeveloped areas as well as areas occupied by buildings, walks, drives, parking facilities, and other improvements.', 'Numeric - up to 1 digit after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22754', '11', '22754', NULL, NULL) +VALUES ('001864', 'Facility Audit Type', NULL, 'The type of systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24845', '12', '24845', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001774', 'Facility Block Number Area', 'BNA', 'The informal description of location sometimes used in rural areas, for example, "from the highway to the railroad tracks."', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22755', '11', '22755', NULL, NULL) +VALUES ('001865', 'Building Charter School Realty Access Type', NULL, 'The type of real estate vehicle through which a public charter school has access and control of its building space.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24846', '12', '24846', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001775', 'Building Addition Description', NULL, 'A description of the permanent structure added to the original building.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22756', '11', '22756', NULL, NULL) +VALUES ('001866', 'Building Cleaning Standard Type', NULL, 'The standard for cleanliness, and benchmarks for how much space can be assigned to one properly supplied custodian to meet these standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24847', '12', '24847', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001776', 'Building Addition Code', NULL, 'A unique number or alphanumeric code assigned to a building addition by a school, school system, state, or other agency or entity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22757', '11', '22757', NULL, NULL) +VALUES ('001867', 'Facility Compliance Agency Type', NULL, 'The type of agency that has ultimate responsibility for the compliance determination.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24848', '12', '24848', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001777', 'Building Primary Use Type', NULL, 'The primary use type of the building in which a school is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22758', '11', '22758', NULL, NULL) +VALUES ('001868', 'Building Energy Conservation Measure Type', NULL, 'The type of modification to, or replacement of, a piece of equipment or building shell/system that increases energy efficiency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24849', '12', '24849', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001778', 'Campus Status', NULL, 'The generalized use or control of a campus, independent of program type.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22759', '11', '22759', NULL, NULL) +VALUES ('001869', 'Building Energy Service Company Name', NULL, 'The name of the company that designs, procures, finances, installs, maintains, and guarantees the performance of energy conservation measures in an owner''s facility or facilities.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24850', '12', '24850', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001779', 'Facility Census Tract', NULL, 'The census tract number of the school site.', 'Integer - exactly 11 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22760', '11', '22760', NULL, NULL) +VALUES ('001870', 'Building Energy Source Type', NULL, 'The source of energy that directly powers a school district facility or building system.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24851', '12', '24851', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001780', 'Facility Construction Date', NULL, 'The month, day, and year on which construction of a building, addition, or improvement was completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22761', '11', '22761', NULL, NULL) +VALUES ('001871', 'Facilities Management Emergency Type', NULL, 'The type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24852', '12', '24852', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001781', 'Facility Construction Date Type', NULL, 'Designation of the nature of the construction completion date.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22762', '11', '22762', NULL, NULL) +VALUES ('001872', 'Facility Capital Program Management Type', NULL, 'The type of management organization for planning, design, and construction of major capital projects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24853', '12', '24853', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001782', 'Facility Construction Material Type', NULL, 'The primary material used for the construction of a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22763', '11', '22763', NULL, NULL) +VALUES ('001873', 'Facility Operations Management Type', NULL, 'The type of management arrangements whereby a district oversees and manages its facilities operations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24854', '12', '24854', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001783', 'Facility Expected Life', NULL, 'The time, in years, of the expected useful life of a facility for the purposes of depreciation.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22764', '11', '22764', NULL, NULL) +VALUES ('001874', 'Facility Hazardous Materials or Condition Type', NULL, 'The type of hazardous materials or conditions tested for at a site or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24855', '12', '24855', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001784', 'Facility Replacement Value', NULL, 'The estimated cost of replacing a facility using current per square foot estimates of total project costs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22765', '11', '22765', NULL, NULL) +VALUES ('001875', 'Facility Joint Development Type', NULL, 'The type of development where two or more entities partner to plan, site, design, and/or build a new school or renovate an existing school to better support the joint use of the building and/or land.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24856', '12', '24856', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001785', 'Building Number of Stories', NULL, 'The number of stories in a building, excluding the basement if its ceiling is less than three feet above ground level.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22766', '11', '22766', NULL, NULL) +VALUES ('001876', 'Facility Maintenance Standard Type', NULL, 'The standard for maintenance of a component, system, or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24857', '12', '24857', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001786', 'Facility Site Identifier', NULL, 'The lot and square number, or equivalent unique municipal number identification, of a parcel of land.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22767', '11', '22767', NULL, NULL) +VALUES ('001877', 'Facility Naturally Occurring Hazard Type', NULL, 'Type of natural hazard that can affect the health, safety and operation of school facilities and their occupants.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24858', '12', '24858', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001787', 'Facility Site Improvement Location Type', NULL, 'The type of location of the designed and constructed improvements made to a site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22768', '11', '22768', NULL, NULL) +VALUES ('001878', 'Facility Utility Provider Type', NULL, 'An indication of how utilities are supplied to a site or a building by a company or provider.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24859', '12', '24859', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001788', 'Building Year Built', NULL, 'The year a building was constructed, as indicated by cornerstone or official government records.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22769', '11', '22769', NULL, NULL) +VALUES ('001879', 'Facility Utility Type', NULL, 'The type of utility used in the operation of a facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24860', '12', '24860', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001789', 'Building Year of Last Modernization', NULL, 'The most recent year that a comprehensive upgrade of ALL major building systems and components was completed, such that it functions as a modern building, as measured by a facility condition index not greater than 15%.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22770', '11', '22770', NULL, NULL) +VALUES ('001880', 'Building Date of Certificate of Occupancy', NULL, 'The month, day and year in which a certificate of occupancy was granted by the appropriate local authority.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24861', '12', '24861', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001790', 'Building Air Distribution System Type', NULL, 'The primary means by which air is circulated, freshened, and exhausted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22771', '11', '22771', NULL, NULL) +VALUES ('001881', 'Facility Audit Date', NULL, 'The month, day, and year of the systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24862', '12', '24862', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001791', 'Building Communications Management Component System Type', NULL, 'The type of system, interface, and management components for carrying voice, video, and data throughout a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22772', '11', '22772', NULL, NULL) +VALUES ('001882', 'Facilities Plan Description', NULL, 'A description of the management and accountability plan.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24863', '12', '24863', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001792', 'Facility Compliance Status', NULL, 'An indication of whether the school, building, site, system, component, equipment, vehicle, or fixture conforms to the requirements or standards specified in federal, state, or local standards or codes or other officially required guidelines or regulations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22773', '11', '22773', NULL, NULL) +VALUES ('001883', 'Facilities Plan Type', NULL, 'The type of management and accountability plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24864', '12', '24864', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001793', 'Facility System or Component Condition', NULL, 'The rating of the system or component functions under the demands of its regular operation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22774', '11', '22774', NULL, NULL) +VALUES ('001884', 'Facility Standard Type', NULL, 'An indication of the district or state requirements or guidelines for the design and construction of school facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24865', '12', '24865', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001794', 'Building Cooling Generation System Type', NULL, 'The type of mechanical systems and building designs used for cooling.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22775', '11', '22775', NULL, NULL) +VALUES ('001885', 'Facilities Mandate Authority Type', NULL, 'The authority that mandates through law, regulation, or standard that pertains to a specific mandate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24866', '12', '24866', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001795', 'Building Electrical System Type', NULL, 'The components and system required to distribute electricity throughout the building or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22776', '11', '22776', NULL, NULL) +VALUES ('001886', 'Facility Financing Fee Type', NULL, 'The type of fee that one must pay when getting a mortgage.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24867', '12', '24867', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001796', 'Facility Applicable Federal Mandate Type', NULL, 'The particular federal law, regulation, or standard that pertains to a school facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22777', '11', '22777', NULL, NULL) +VALUES ('001887', 'Facility Lease Amount', NULL, 'The amount of money the school must pay to rent the facility that it is in.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24868', '12', '24868', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001797', 'Facility Federal Mandate Interest Type', NULL, 'The area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22778', '11', '22778', NULL, NULL) +VALUES ('001888', 'Facility Lease Amount Category', NULL, 'The category of payment that a school must pay to rent the facility that it is in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24869', '12', '24869', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001798', 'Building Fire Protection System Type', NULL, 'The type of system that protects the facility against fire.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22779', '11', '22779', NULL, NULL) +VALUES ('001889', 'Facility Lease Type', NULL, 'The type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24870', '12', '24870', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001799', 'Building Heating Generation System Type', NULL, 'The method by which the heat is distributed and delivered throughout the room(s) or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22780', '11', '22780', NULL, NULL) +VALUES ('001890', 'Facility Mortgage Interest Amount', NULL, 'The amount the borrower pays the lender to compensate the lender for the use of money to purchase a building or facility.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24871', '12', '24871', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001800', 'Building HVAC System Type', NULL, 'The building service system that provides for heating, ventilation and air-conditioning.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22781', '11', '22781', NULL, NULL) +VALUES ('001891', 'Facility Mortgage Interest Type', NULL, 'The type of interest paid on a mortgage to the lender to compensate the lender for the use of money to purchase a building or facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24872', '12', '24872', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001801', 'Building Institutional Equipment Description', NULL, 'Equipment that is installed for use in support of instructional program such as kilns for art, planetarium equipment for astronomy, fitness equipment for physical education.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22782', '11', '22782', NULL, NULL) +VALUES ('001892', 'Facility Mortgage Type', NULL, 'The status of a mortgage as it relates to priority of payment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24873', '12', '24873', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001802', 'Building Mechanical Conveying System Type', NULL, 'Mechanical means for moving people and equipment within buildings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22783', '11', '22783', NULL, NULL) +VALUES ('001893', 'Indebtedness Amount Allowed', NULL, 'The amount of indebtedness allowed by law to be carried by the school district.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24874', '12', '24874', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001803', 'Building Plumbing System Type', NULL, 'The component of an on-site system for supplying, eliminating, and treating water.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22784', '11', '22784', NULL, NULL) +VALUES ('001894', 'Insurance Deductible', NULL, 'The dollar amount a school district must pay before its insurance will compensate it for loss.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24875', '12', '24875', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001804', 'Building Security System Type', NULL, 'The type of system that protects the facility from intrusion.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22785', '11', '22785', NULL, NULL) +VALUES ('001895', 'Public Education Mill Rate', NULL, 'The millage rate used to calculate property tax revenue for K-12 public education.', 'Numeric - up to 2 digits before and 8 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24876', '12', '24876', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001805', 'Facility State or Local Mandate Interest Type', NULL, 'The area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22786', '11', '22786', NULL, NULL) +VALUES ('001896', 'Facility Total Assessed Value', NULL, 'The total assessed value of property that constitutes the basis for public borrowing.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24877', '12', '24877', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001806', 'Facility State or Local Mandate Name', NULL, 'The specific law, rule, regulation, or standard of a state or local government that pertains to public school facilities.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22787', '11', '22787', NULL, NULL) +VALUES ('001897', 'Campus Facility Type', NULL, 'The primary purpose for which a campus is designed and/or used.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24878', '12', '24878', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001807', 'Building Technology Wiring System Type', NULL, 'The means through which voice, video, audio, and data information are conveyed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22788', '11', '22788', NULL, NULL) +VALUES ('001898', 'Component or Fixture Check Date', NULL, 'The month, day, and year that the condition of a system, component, equipment, or fixture was checked.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24879', '12', '24879', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001808', 'Facility Location of Hazardous Materials', NULL, 'The location at which the identified hazardous material is found.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22789', '11', '22789', NULL, NULL) +VALUES ('001899', 'Component or Fixture Serviced Date', NULL, 'The month, day, and year a system, component, equipment, or fixture was serviced for repair or routine maintenance.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24880', '12', '24880', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001809', 'Building Mechanical System Type', NULL, 'The major manufactured systems required to operate a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22790', '11', '22790', NULL, NULL) +VALUES ('001900', 'Component or Fixture Scheduled Serviced Date', NULL, 'The month, day, and year a major component, system, equipment, or fixture is scheduled to be serviced for preventive or routine maintenance.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24881', '12', '24881', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001810', 'Facility Nearby Environmental Hazard Description', NULL, 'Description of any type of environmental hazards within range of the facility that has the potential to seriously affect the health, safety and operation of school facilities and their occupants.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22791', '11', '22791', NULL, NULL) +VALUES ('001901', 'Component or Fixture Useful Life', NULL, 'The anticipated time (in years) from the time of installation or service that a properly maintained system, component, equipment, or fixture is expected to operate effectively and efficiently.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24882', '12', '24882', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001811', 'Building System Type', NULL, 'The type of system that is installed in the building or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22792', '11', '22792', NULL, NULL) +VALUES ('001902', 'Available Utilized Instructional Space', NULL, 'An indication that the instruction space in a school is used in the calculation of student capacity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24883', '12', '24883', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001812', 'Building Vertical Transportation System Type', NULL, 'The type of system used to convey persons or freight between floors.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22793', '11', '22793', NULL, NULL) +VALUES ('001903', 'Building Capacity Factor Indicator', NULL, 'A designation as to whether the space is included in the calculation of school building capacity under state or local guidelines.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24884', '12', '24884', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001813', 'Building Administrative Space Type', NULL, 'The space designed primarily for conducting administrative and business functions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22794', '11', '22794', NULL, NULL) +VALUES ('001904', 'Facility Enrollment Capacity', NULL, 'The maximum number of age appropriate students who can be enrolled in a facility such that the district''s programmatic, operational, and student/teacher work load requirements are met.', 'Integer', '0', 'This element will be phased out in version 12. It is being replaced by Enrollment Capacity.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24885', '12', '24885', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001814', 'Building Art Specialty Space Type', NULL, 'The space designed to support the teaching and learning of 2 dimensional or 3 dimensional visual arts.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22795', '11', '22795', NULL, NULL) +VALUES ('001905', 'Organization Relationship Type', NULL, 'The nature of one organization’s relationship to another.', NULL, '1', 'Related Body would be used for a use case in which no hierarchy exists, such as a foundation related to a postsecondary institution. Neither organization has authority over the other, but is related to one another.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24886', '12', '24886', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001815', 'Building Basic Classroom Design Type', NULL, 'A classroom designed for instruction of a particular age group, but not a specific subject.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22796', '11', '22796', NULL, NULL) +VALUES ('001906', 'Facility Ownership Indicator', NULL, 'Indicates the public or private entity holds legal title to the building and/or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24887', '12', '24887', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001816', 'Building Design Type', NULL, 'The primary design or purpose of a building, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22797', '11', '22797', NULL, NULL) +VALUES ('001907', 'Competency Framework Source URL', NULL, 'A URL that resolves to the original or authoritative competency framework document.', 'Alphanumeric - 512 characters maximum', '0', 'This is the URL of a human-readable artifact. Often this document is published in html and/or pdf and is used by the standard setting entity as part of its approval process.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24888', '12', '24888', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001817', 'Building Career-Technical Education Space Type', NULL, 'The classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22798', '11', '22798', NULL, NULL) +VALUES ('001908', 'Competency Definition Typical Age Range Minimum', NULL, 'The typical minimum age at which a person learns the defined competency.', 'Integer - greater than or equal to 0', '0', 'Use this element with "Competency Definition Typical Age Range Maximum" instead of "Competency Item Typical Age Range"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24889', '12', '24889', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001818', 'Building Circulation Space Type', NULL, 'A space designed to enable people to move within the building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22799', '11', '22799', NULL, NULL) +VALUES ('001909', 'Competency Definition Typical Age Range Maximum', NULL, 'The typical maximum age at which a person learns the defined competency.', 'Integer - greater than or equal to 0', '0', 'Use this element with "Competency Definition Typical Age Range Minimum" instead of "Competency Item Typical Age Range"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24890', '12', '24890', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001819', 'Building Environmental or Energy Performance Rating Category', NULL, 'The primary groupings that rating organizations use to evaluate environmental sustainability and energy use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22800', '11', '22800', NULL, NULL) +VALUES ('001910', 'Credential Definition Date Effective', NULL, 'Effective date of the content of a credential definition.', 'YYYY-MM-DD', '0', 'This is the date the content/definition of the credential became effective, not necessarily the date that one or more credentialing organizations began offering the credential.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24891', '12', '24891', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001820', 'Facility Furnishings Type', NULL, 'Moveable assets that are provided so the building or interior assets can be utilized by occupants for their intended purposes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22801', '11', '22801', NULL, NULL) +VALUES ('001911', 'Credential Offered Start Date', NULL, 'The first date a credential was offered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24892', '12', '24892', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001821', 'Building Food Service Space Type', NULL, 'The space located, designed, furnished and equipped to support meal programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22802', '11', '22802', NULL, NULL) +VALUES ('001912', 'Credential Offered End Date', NULL, 'The last date a credential was offered.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24893', '12', '24893', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001822', 'Building Indoor Athletic or Physical Education Space Type', NULL, 'The indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22803', '11', '22803', NULL, NULL) +VALUES ('001913', 'CTDL Audience Level Type', 'ceterms:AudienceLevel', 'Type of level indicating a point in a progression through an educational or training context, for which the credential is intended; select from an existing enumeration of such types.', NULL, '1', 'This is similar to "PESC Award Level Type" and "Academic Award Level Conferred" but uses a different controlled vocabulary. See https://credreg.net/ctdl/terms/Credential#AudienceLevel.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24894', '12', '24894', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001823', 'Building Library or Media Center Specialty Space Type', NULL, 'The primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22804', '11', '22804', NULL, NULL) +VALUES ('001914', 'Credential Definition Agent Role Type', NULL, 'The role that an organization or person has in relation to this Credential Definition based on terms defined by Credential Engine.', NULL, '1', 'Option codes and definitions are from the Credential Engine and the ceterms namespace, except the codes use Pascal case in CEDS to follow CEDS conventions and use camel case in the original ceterms.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24895', '12', '24895', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001824', 'Building Operations or Maintenance Space Type', NULL, 'The area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22805', '11', '22805', NULL, NULL) +VALUES ('001915', 'Progress Achieving English Language Proficiency Indicator Type', NULL, 'The category used to report the school''s performance on the progress of achieving the English language proficiency indicator.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24896', '12', '24896', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001825', 'Building Outdoor Athletic or Physical Education Space Type', NULL, 'The outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22806', '11', '22806', NULL, NULL) +VALUES ('001916', 'Progress Achieving English Language Proficiency State Defined Status', NULL, 'The state defined status assigned to the school''s performance on the progress of achieving the English language proficiency indicator.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24897', '12', '24897', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001826', 'Building Outdoor or Non-athletic Space Type', NULL, 'The outdoor space located, designed, furnished, and equipped primarily for recreation, play and outdoor environmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22807', '11', '22807', NULL, NULL) +VALUES ('001917', 'Record Start Date Time', NULL, 'The start date and, optionally, time that a record is active as used to support version control.', 'YYYY-MM-DDTHH:MM:SS', '0', 'See CEDS Integrated Data Store for use in version control.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24898', '12', '24898', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001827', 'Building Performing Arts Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped for instruction and support of music and drama curricula and productions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22808', '11', '22808', NULL, NULL) +VALUES ('001918', 'Record End Date Time', NULL, 'The end date and, optionally, time that a record is active as used to support version control.', 'YYYY-MM-DDTHH:MM:SS', '0', 'See CEDS Integrated Data Store for use in version control. All CEDS Exit and End Dates represent the last day of the date range specified.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24899', '12', '24899', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001828', 'Building School Design Type', NULL, 'The physical layout and character of a school facility, as determined by age groups served and educational programs provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22809', '11', '22809', NULL, NULL) +VALUES ('001919', 'Start Time', NULL, 'The starting hour, minute and second.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24900', '12', '24900', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001829', 'Building Science Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped for instruction and experimentation in science.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22810', '11', '22810', NULL, NULL) +VALUES ('001920', 'End Time', NULL, 'The ending hour, minute and second.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24901', '12', '24901', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001830', 'Facility Site Outdoor Area Type', NULL, 'The designated constructed outdoor area on a public school site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22811', '11', '22811', NULL, NULL) +VALUES ('001925', 'Additional Targeted Support and Improvement Status', NULL, 'The designation given to a school by the state for additional targeted support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24902', '12', '24902', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001831', 'Building Space Design Type', NULL, 'The primary design or purpose of a space, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22812', '11', '22812', NULL, NULL) +VALUES ('001929', 'Awaiting Foster Care Status', NULL, 'An indication of whether this child is awaiting foster care.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24903', '12', '24903', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001832', 'Building Special Education Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22813', '11', '22813', NULL, NULL) +VALUES ('001923', 'Comprehensive Support and Improvement Status', NULL, 'The designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24904', '12', '24904', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001833', 'Building Student Support Space Type', NULL, 'The space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22814', '11', '22814', NULL, NULL) +VALUES ('001928', 'Do Not Publish Indicator', NULL, 'An indication that the record should not be published.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24905', '12', '24905', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001834', 'Building Architect Name', NULL, 'The name of the architect of record for the building.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22815', '11', '22815', NULL, NULL) +VALUES ('001921', 'Full Time Equivalency', NULL, 'The time a person is enrolled, employed, involved, or participates in the organization, divided by the time the organization defines as full-time for that role.', 'Numeric - up to 2 decimal places', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24906', '12', '24906', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001835', 'Building Architectural Firm Name', NULL, 'The name of the architectural firm responsible for the building design.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22816', '11', '22816', NULL, NULL) +VALUES ('001926', 'Grade Levels Approved', NULL, 'The specific grade or combination of grades approved by an organization to be offered by an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24907', '12', '24907', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001836', 'Building Assembly Space Type', NULL, 'An area designed primarily for theater productions, assemblies, and other large gatherings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22817', '11', '22817', NULL, NULL) +VALUES ('001930', 'Out of Workforce Indicator', NULL, 'An individual: (A) who is a displaced homemaker, as defined in section 3 of the Workforce Innovation and Opportunity Act (29 U.S.C. 3102); or (B) who (i)(I) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; or (II) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (ii) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24908', '12', '24908', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001837', 'Facility Compliance Determination Date', NULL, 'The month, day, and year that the school, building, site, system, component, equipment, or fixture compliance status was determined.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22818', '11', '22818', NULL, NULL) +VALUES ('001922', 'Program Entry Reason', NULL, 'The documented or assumed reason a person is being served by a program.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24909', '12', '24909', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001838', 'Facility Compliance Name', NULL, 'The name of the inspection or process that indicates conformity to the requirements or standards specified in federal, state, or local standards or codes.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22819', '11', '22819', NULL, NULL) +VALUES ('001924', 'Targeted Support and Improvement Status', NULL, 'The designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24910', '12', '24910', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001839', 'Facility Component Deficiency Description', NULL, 'A description of the component, system, or finish that needs replacement, repair, or maintenance to perform at an optimal level.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22820', '11', '22820', NULL, NULL) +VALUES ('001927', 'Telephone Number Listed Status', NULL, 'An indication of whether a telephone number is listed under a directory assistance service.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24911', '12', '24911', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001840', 'Facility Component Identification Code', NULL, 'A unique number or alphanumeric code assigned to a component by a school, school system, state, or other agency or entity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22821', '11', '22821', NULL, NULL) +VALUES ('001955', 'Adult Education Credential Attainment Employed Indicator', NULL, 'An indication of whether the adult education participant received a secondary school diploma or its recognized equivalent while enrolled in the adult education program or within one year of exiting the adult education program and was employed within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24912', '12', '24912', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001841', 'Facility Estimated Cost to Eliminate Deferred Maintenance', NULL, 'The estimated cost to bring systems, components, finishes, fixtures, or equipment to a state of good repair.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22822', '11', '22822', NULL, NULL) +VALUES ('001956', 'Adult Education Credential Attainment Postsecondary Credential Indicator', NULL, 'An indication of whether the adult education participant received a postsecondary credential while enrolled in the adult education program or within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24913', '12', '24913', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001842', 'Facility Hazardous Condition Expected Remediation Date', NULL, 'The month, day, and year by which a hazardous condition of a site or building is expected to be remediated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22823', '11', '22823', NULL, NULL) +VALUES ('001954', 'Adult Education Credential Attainment Postsecondary Enrollment Indicator', NULL, 'An indication of whether the adult education participant received a secondary school diploma or its recognized equivalent while enrolled in the adult education program or within one year of exiting the adult education program and entered into postsecondary education within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24914', '12', '24914', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001843', 'Building Full Service Kitchen Type', NULL, 'The type of kitchen housed in the facility as defined by whether it prepares food to be served onsite and/or at additional locations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22824', '11', '22824', NULL, NULL) +VALUES ('001939', 'Adult Education Program Exit Reason', NULL, 'The documented or assumed reason the person is no longer being served by the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24915', '12', '24915', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001844', 'Hazardous Material or Condition Description', NULL, 'A description of the seriousness a threat or hazardous material poses.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22825', '11', '22825', NULL, NULL) +VALUES ('001935', 'Barrier to Internet Access In Residence', NULL, 'An indication of the barrier to having internet access in the student''s primary place of residence.', NULL, '1', 'This element is used in combination with the element "Internet Access in Residence." When asking for this information on a parent or student survey, the question could be phrased like this: "If the student is unable to access the internet in their primary place of residence, why not?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24916', '12', '24916', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001845', 'Hazardous Material or Condition Testing Date', NULL, 'The month, day, and year that the site or building is tested for a specific hazardous material.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22826', '11', '22826', NULL, NULL) +VALUES ('001984', 'Children of Fallen Heroes Indicator', NULL, 'Pell-eligible students whose parent or guardian was a member of the U.S. armed forces and died as a result of military service performed in Iraq or Afghanistan after the events of 9/11 or a public safety officer and died as a result of active service in the line of duty. At the time of the parent''s or guardian''s death, the student must be less than 24 years of age or enrolled in college or career school at least part-time.', NULL, '1', 'The Children of Fallen heroes Indicator should follow the current legislation definitions and be updated as definitions change', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24917', '12', '24917', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001846', 'Facility Inspection Score Result Description', NULL, 'The description of a meaningful raw score of statistical expression of the performance on an inspection.', 'Alphanumeric - 35 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22827', '11', '22827', NULL, NULL) +VALUES ('001938', 'Cohort Median Earnings', NULL, 'The midpoint between the lowest and highest quarterly wage, in U.S. dollars, for the total number of persons included in the cohort for the period of time between the Employment Record Reference Period Start Date and Employment Record Reference Period End Date.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24918', '12', '24918', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001847', 'Facility Inspection Violation Description', NULL, 'A description of the standard violation(s) found in the inspection.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22828', '11', '22828', NULL, NULL) +VALUES ('001953', 'Credential Definition Terminal Degree Indicator', NULL, 'This degree is the highest degree that can be awarded in this classification of instructional programs field or program area.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24919', '12', '24919', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001848', 'Installation Date', NULL, 'The year in which the system, component, equipment, or fixture was originally installed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22829', '11', '22829', NULL, NULL) +VALUES ('001970', 'Data Collection Academic School Year', NULL, 'The year for a reported school session for which the data is applicable.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24920', '12', '24920', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001849', 'Life-cycle Cost', NULL, 'The total cost of acquiring, owning, operating, and disposing of a building, facility, or piece of equipment over its useful life.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22830', '11', '22830', NULL, NULL) +VALUES ('001969', 'Data Collection Close Date', NULL, 'The date the data collection closes or ends.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24921', '12', '24921', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001850', 'Building Site Improvement Description', NULL, 'A description of the designed and constructed improvements made to a site.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22831', '11', '22831', NULL, NULL) +VALUES ('001967', 'Data Collection Description', NULL, 'The description of what is included in the data within the context of the data collection based on the source system and collection period as defined by the Data Collection Open Date and Data Collection Close Date.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24922', '12', '24922', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001851', 'Building Instructional Space Factor Type', NULL, 'A designation as to whether the space is considered an instructional space under state or local guidelines.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22832', '11', '22832', NULL, NULL) +VALUES ('001966', 'Data Collection Name', NULL, 'A human readable name used to identify the data within the collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24923', '12', '24923', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001852', 'Building Joint Use Rationale Type', NULL, 'The reasons for permitting and participating in joint-use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22833', '11', '22833', NULL, NULL) +VALUES ('001968', 'Data Collection Open Date', NULL, 'The date the data collection opens or commences.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24924', '12', '24924', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001853', 'Building Joint Use Scheduling Type', NULL, 'The type of designation of non school district users by the amount of time they have access to public school for joint use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22834', '11', '22834', NULL, NULL) +VALUES ('001971', 'Data Collection School Year', NULL, 'The year for a reported school session in which the data collection occurs.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24925', '12', '24925', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001854', 'Building Joint User Type', NULL, 'The types of users sharing school district controlled, owned, or utilized facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22835', '11', '22835', NULL, NULL) +VALUES ('001990', 'Data Collection Status', NULL, 'A process indicator of the level of stability, quality, and/or preparedness of the collection of data.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24926', '12', '24926', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001855', 'Building Community Use Space Type', NULL, 'The space designed primarily for community or shared use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22836', '11', '22836', NULL, NULL) +VALUES ('001979', 'EDFacts Academic or Career and Technical Outcome Exit Type', NULL, 'The type of academic or career and technical outcome attained up to 90 days after exiting the facility or program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24927', '12', '24927', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001856', 'Building Hours of Public Use Per Week', NULL, 'The number of hours that all or part of a building is used for purposes other than general education by the community or other organizations.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22837', '11', '22837', NULL, NULL) +VALUES ('001978', 'EDFacts Academic or Career and Technical Outcome Type', NULL, 'The type of academic or career and technical outcome attained while enrolled in the program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24928', '12', '24928', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001857', 'Building Net Area of Instructional Space', NULL, 'The area of space directly used for instruction excluding circulation, administration, student services, and building support.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22838', '11', '22838', NULL, NULL) +VALUES ('001961', 'EDFacts Teacher Inexperienced Status', NULL, 'An indication of whether teachers have been identified as inexperienced as defined by the state.', NULL, '1', 'This element is used specifically for EDFacts reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24929', '12', '24929', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001858', 'Building Number of Teaching Stations', NULL, 'The number of teaching stations, as defined by how many spaces have, or could have, a teacher assigned to them for classroom instruction.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22839', '11', '22839', NULL, NULL) +VALUES ('001962', 'EDFacts Teacher Out of Field Status', NULL, 'An indication of whether teachers have been identified as teaching a subject or field for which they are not certified or licensed as defined by the state.', NULL, '1', 'This element is used specifically for EDFacts reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24930', '12', '24930', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001859', 'Building Public Use Policy Description', NULL, 'A description of the policy that enables the community or other organizations to use all or part of a building for purposes other than general education.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22840', '11', '22840', NULL, NULL) +VALUES ('001981', 'Emancipated Minor', NULL, 'A minor student under the age of 18 who has been granted by legal action to have the power and capacity of an adult.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24931', '12', '24931', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001860', 'Building Site Use Restrictions Type', NULL, 'A characterization of a site that would define restrictions or opportunities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22841', '11', '22841', NULL, NULL) +VALUES ('001944', 'Federal Race and Ethnicity Declined', NULL, 'A parent, guardian, or student declined to report sufficient information for identifying a student''s federal race and/or ethnicity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24932', '12', '24932', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001861', 'Building Space Utilization Area', NULL, 'The area in square feet measured between the principal wall that faces at or near floor level, including alcove spaces, and the outer limits of space designed to serve the activity. Structural space is excluded.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22842', '11', '22842', NULL, NULL) +VALUES ('001947', 'First Generation College Student', NULL, 'The term First Generation College Student means an individual both of whose parents did not complete a baccalaureate degree or in the case of any individual who regularly resided with and received support from only one parent, an individual whose only such parent did not complete a baccalaureate degree.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24933', '12', '24933', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001862', 'Student Enrollment Access Type', NULL, 'The designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22843', '11', '22843', NULL, NULL) +VALUES ('001989', 'Home Language Survey Administration Date', NULL, 'The year, month, and day on which the Home Language Survey is known to have been administered to the parent or guardian of this student.', 'YYYY-MM-DD', '0', 'The actual date of the administration is not what this element is capturing but rather when the result of the home language survey have been received by the school. The survey may have been completed in the school office upon registration of the student or could have been completed at home as part of a set of documents parents or guardians complete when enrolling students. When the completed home language survey has been provided to the school, the date received or the date the information is entered into a student information system as having been completed is sufficient to meet the intent of this element.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24934', '12', '24934', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001863', 'Building Unassigned Space Indicator', NULL, 'An indication that the space in a school, including circulation, administration offices, support spaces, and common areas, is not part of the calculation for capacity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22844', '11', '22844', NULL, NULL) +VALUES ('001988', 'Home Language Survey Administration Indicator', NULL, 'An indication that the parent or guardian of this student was administered the Home Language Survey - a questionnaire given to parents or guardians that helps schools and local education agencies identify which students are potential English Learners and who will require assessment of their English language proficiency to determine whether they are eligible for language assistance services.', NULL, '1', 'The term "administration" would indicate that the results of the home language survey for this student have been provided to the school. The intent of this element is not to determine whether or not the school provided a home language survey to the parents/guardians of the student but instead to determine if the school received the results of that home language survey back from the parents/guardians of the student.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24935', '12', '24935', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001864', 'Facility Audit Type', NULL, 'The type of systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22845', '11', '22845', NULL, NULL) +VALUES ('001934', 'Internet Access In Residence', NULL, 'An indication of whether the student is able to access the internet in their primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Can the student access the internet in their primary place of residence?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24936', '12', '24936', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001865', 'Building Charter School Realty Access Type', NULL, 'The type of real estate vehicle through which a public charter school has access and control of its building space.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22846', '11', '22846', NULL, NULL) +VALUES ('001936', 'Internet Access Type In Residence', NULL, 'The primary type of internet service used in the student''s primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "What is the primary type of internet service used in the student''s primary place of residence?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24937', '12', '24937', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001866', 'Building Cleaning Standard Type', NULL, 'The standard for cleanliness, and benchmarks for how much space can be assigned to one properly supplied custodian to meet these standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22847', '11', '22847', NULL, NULL) +VALUES ('001976', 'Internet Download Speed', NULL, 'The speed that data or information can be downloaded from a server on the internet to one''s device in megabits per second.', 'Numeric', '0', 'This information is collected via an internet speed test. In 2021, the FCC minimum broadband threshold is 25 Mbps. Display Example: 25.0', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24938', '12', '24938', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001867', 'Facility Compliance Agency Type', NULL, 'The type of agency that has ultimate responsibility for the compliance determination.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22848', '11', '22848', NULL, NULL) +VALUES ('001937', 'Internet Performance In Residence', NULL, 'An indication of whether the student can complete the full range of learning activities, including video streaming and assignment upload, without interruptions caused by poor internet performance in their primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Can the student complete learning activities such as streaming a video and uploading assignments without interruptions caused by poor internet performance?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24939', '12', '24939', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001868', 'Building Energy Conservation Measure Type', NULL, 'The type of modification to, or replacement of, a piece of equipment or building shell/system that increases energy efficiency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22849', '11', '22849', NULL, NULL) +VALUES ('001977', 'Internet Speed Test Date Time', NULL, 'The date and, optionally, time that the information was gathered.', 'YYYY-MM-DDTHH:MM:SS', '0', 'This information is collected and stored as part of each speed test. Display Example: 2021-09-20T10:30:00', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24940', '12', '24940', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001869', 'Building Energy Service Company Name', NULL, 'The name of the company that designs, procures, finances, installs, maintains, and guarantees the performance of energy conservation measures in an owner''s facility or facilities.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22850', '11', '22850', NULL, NULL) +VALUES ('001975', 'Internet Upload Speed', NULL, 'The speed that data or information can be sent from one''s device to another device or server on the internet in megabits per second.', 'Numeric', '0', 'This information is collected via an internet speed test. In 2021, the FCC minimum broadband threshold is 3 Mbps. Display Example: 3.0', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24941', '12', '24941', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001870', 'Building Energy Source Type', NULL, 'The source of energy that directly powers a school district facility or building system.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22851', '11', '22851', NULL, NULL) +VALUES ('001980', 'Marital Status', NULL, 'The marital status of the person as of today.', NULL, '1', 'This element supports FAFSA questions related to parent''s marital status and student''s marital status. The option set was developed using Census classifications.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24942', '12', '24942', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001871', 'Facilities Management Emergency Type', NULL, 'The type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22852', '11', '22852', NULL, NULL) +VALUES ('001950', 'NCES SIDE Date Processed', NULL, 'The year, month, and day on which the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) was processed through the BlindSIDE resource.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24943', '12', '24943', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001872', 'Facility Capital Program Management Type', NULL, 'The type of management organization for planning, design, and construction of major capital projects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22853', '11', '22853', NULL, NULL) +VALUES ('001948', 'NCES SIDE Estimate', NULL, 'The National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) based on the person''s latitude and longitude location.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24944', '12', '24944', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001873', 'Facility Operations Management Type', NULL, 'The type of management arrangements whereby a district oversees and manages its facilities operations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22854', '11', '22854', NULL, NULL) +VALUES ('001949', 'NCES SIDE Standard Error', NULL, 'The standard error applied to the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24945', '12', '24945', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001874', 'Facility Hazardous Materials or Condition Type', NULL, 'The type of hazardous materials or conditions tested for at a site or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22855', '11', '22855', NULL, NULL) +VALUES ('001951', 'NCES SIDE Vintage Begin Year', NULL, 'The begin year for the American Community Survey (ACS) period estimates used to construct the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'YYYY', '0', 'The NCES SIDE base is constructed from ACS five-year microdata. The NCES SIDE Vintage Begin Year indicates the first year of that five-year microdata base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24946', '12', '24946', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001875', 'Facility Joint Development Type', NULL, 'The type of development where two or more entities partner to plan, site, design, and/or build a new school or renovate an existing school to better support the joint use of the building and/or land.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22856', '11', '22856', NULL, NULL) +VALUES ('001952', 'NCES SIDE Vintage End Year', NULL, 'The end year for the American Community Survey (ACS) period estimates used to construct the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'YYYY', '0', 'The NCES SIDE base is constructed from ACS five-year microdata. The NCES SIDE Vintage End Year indicates the last year of that five-year microdata base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24947', '12', '24947', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001876', 'Facility Maintenance Standard Type', NULL, 'The standard for maintenance of a component, system, or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22857', '11', '22857', NULL, NULL) +VALUES ('000220', 'Professional Educational Job Classification', NULL, 'A general job classification that describes staff that performs duties requiring a high degree of knowledge and skills generally acquired through at least a baccalaureate degree (or its equivalent obtained through special study and/or experience) including skills in the field of education, educational psychology, educational social work, or an education therapy field.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23220', '12', '23220', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001877', 'Facility Naturally Occurring Hazard Type', NULL, 'Type of natural hazard that can affect the health, safety and operation of school facilities and their occupants.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22858', '11', '22858', NULL, NULL) +VALUES ('000221', 'Proficiency Target Status for Math', NULL, 'An indication of whether the school or district met the math proficiency target in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23221', '12', '23221', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001878', 'Facility Utility Provider Type', NULL, 'An indication of how utilities are supplied to a site or a building by a company or provider.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22859', '11', '22859', NULL, NULL) +VALUES ('000222', 'Exit Reason', NULL, 'The documented or assumed reason a student is no longer being served by a special program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23222', '12', '23222', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001879', 'Facility Utility Type', NULL, 'The type of utility used in the operation of a facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22860', '11', '22860', NULL, NULL) +VALUES ('000223', 'Program Length Hours', NULL, 'The normal length in credit/contact hours of a person''s program as published in the institution''s catalogue, website, or other official documents.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23223', '12', '23223', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001880', 'Building Date of Certificate of Occupancy', NULL, 'The month, day and year in which a certificate of occupancy was granted by the appropriate local authority.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22861', '11', '22861', NULL, NULL) +VALUES ('000224', 'Program Length Hours Type', NULL, 'The type of hours (credit or contact) by which the normal length of a program of study is measured.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23224', '12', '23224', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001881', 'Facility Audit Date', NULL, 'The month, day, and year of the systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22862', '11', '22862', NULL, NULL) +VALUES ('000225', 'Program Type', NULL, 'The system outlining instructional or non-instructional activities and procedures designed to accomplish a predetermined educational objective or set of objectives or to provide support services to a person and/or the community.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23225', '12', '23225', 'Updated', 'Add new option to option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001882', 'Facilities Plan Description', NULL, 'A description of the management and accountability plan.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22863', '11', '22863', NULL, NULL) +VALUES ('000226', 'Projected Graduation Date', NULL, 'The year and month the student is projected to graduate.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23226', '12', '23226', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001883', 'Facilities Plan Type', NULL, 'The type of management and accountability plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22864', '11', '22864', NULL, NULL) +VALUES ('000227', 'Public School Choice Implementation Status', NULL, 'An indication of whether the LEA was able to implement the provisions for public school choice under Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23227', '12', '23227', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001884', 'Facility Standard Type', NULL, 'An indication of the district or state requirements or guidelines for the design and construction of school facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22865', '11', '22865', NULL, NULL) +VALUES ('000228', 'Reason Not Tested', NULL, 'The primary reason a student is not tested.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23228', '12', '23228', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001885', 'Facilities Mandate Authority Type', NULL, 'The authority that mandates through law, regulation, or standard that pertains to a specific mandate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22866', '11', '22866', NULL, NULL) +VALUES ('000229', 'Recognition for Participation or Performance in an Activity', NULL, 'The nature of recognition given to the student for accomplishments in a co-curricular, or extra-curricular activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23229', '12', '23229', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001886', 'Facility Financing Fee Type', NULL, 'The type of fee that one must pay when getting a mortgage.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22867', '11', '22867', NULL, NULL) +VALUES ('000230', 'Reconstituted Status', NULL, 'An indication that the school was restructured, transformed or otherwise changed as a consequence of the state’s accountability system under ESEA or as a result of School Improvement Grants (SIG).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23230', '12', '23230', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001887', 'Facility Lease Amount', NULL, 'The amount of money the school must pay to rent the facility that it is in.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22868', '11', '22868', NULL, NULL) +VALUES ('000231', 'Related Competency Definitions', 'Related Learning Standard Items, Related Competency Items', 'An indication of the competency definition(s) addressed in the Course Section.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23231', '12', '23231', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001888', 'Facility Lease Amount Category', NULL, 'The category of payment that a school must pay to rent the facility that it is in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22869', '11', '22869', NULL, NULL) +VALUES ('000232', 'Restructuring Action', NULL, 'The types of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23232', '12', '23232', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001889', 'Facility Lease Type', NULL, 'The type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22870', '11', '22870', NULL, NULL) +VALUES ('000233', 'Staff Compensation Retirement Benefits', NULL, 'Contributions made by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider’s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23233', '12', '23233', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001890', 'Facility Mortgage Interest Amount', NULL, 'The amount the borrower pays the lender to compensate the lender for the use of money to purchase a building or facility.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22871', '11', '22871', NULL, NULL) +VALUES ('000234', 'Salary for Teaching Assignment Only Indicator', NULL, 'Indicator to determine whether the teacher''s base salary includes pay for teaching assignments alone.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23234', '12', '23234', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001891', 'Facility Mortgage Interest Type', NULL, 'The type of interest paid on a mortgage to the lender to compensate the lender for the use of money to purchase a building or facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22872', '11', '22872', NULL, NULL) +VALUES ('000235', 'School Choice Applied for Transfer Status', NULL, 'An indication that a student applied to transfer in the current year (regardless of whether the student transferred), OR previously applied and transferred under the public school choice provisions and continue to attend the transfer school in the current year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23235', '12', '23235', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001892', 'Facility Mortgage Type', NULL, 'The status of a mortgage as it relates to priority of payment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22873', '11', '22873', NULL, NULL) +VALUES ('000236', 'School Choice Eligible for Transfer Status', NULL, 'An indication the student is eligible to transfer for the current school year under the public school choice provisions or who applied and transferred in the current school year under the public school choice provisions or previously applied and transferred under the public school choice provisions and continue to attend the transfer school in the current year.', NULL, '1', 'Which students should be reported?', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23236', '12', '23236', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001893', 'Indebtedness Amount Allowed', NULL, 'The amount of indebtedness allowed by law to be carried by the school district.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22874', '11', '22874', NULL, NULL) +VALUES ('000237', 'School Choice Transfer Status', NULL, 'An indication of whether an eligible student transferred to the school under the provisions for public school choice in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23237', '12', '23237', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001894', 'Insurance Deductible', NULL, 'The dollar amount a school district must pay before its insurance will compensate it for loss.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22875', '11', '22875', NULL, NULL) +VALUES ('000238', 'School Improvement Funds Status', NULL, 'An indication of whether the school received funds under Section 1003 of ESEA, as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23238', '12', '23238', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001895', 'Public Education Mill Rate', NULL, 'The millage rate used to calculate property tax revenue for K-12 public education.', 'Numeric - up to 2 digits before and 8 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22876', '11', '22876', NULL, NULL) +VALUES ('000239', 'School Improvement Grant Intervention Type', NULL, 'The type of intervention used by the school under the School Improvement Grant (SIG).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23239', '12', '23239', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001896', 'Facility Total Assessed Value', NULL, 'The total assessed value of property that constitutes the basis for public borrowing.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22877', '11', '22877', NULL, NULL) +VALUES ('000240', 'School Improvement Status', NULL, 'An indication of the improvement stage of the school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23240', '12', '23240', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001897', 'Campus Facility Type', NULL, 'The primary purpose for which a campus is designed and/or used.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22878', '11', '22878', NULL, NULL) +VALUES ('000241', 'School Level', NULL, 'An indication of the level of the education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23241', '12', '23241', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001898', 'Component or Fixture Check Date', NULL, 'The month, day, and year that the condition of a system, component, equipment, or fixture was checked.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22879', '11', '22879', NULL, NULL) +VALUES ('000242', 'School Type', NULL, 'The type of education institution as classified by its primary focus. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23242', '12', '23242', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001899', 'Component or Fixture Serviced Date', NULL, 'The month, day, and year a system, component, equipment, or fixture was serviced for repair or routine maintenance.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22880', '11', '22880', NULL, NULL) +VALUES ('000243', 'School Year', NULL, 'The year for a reported school session.', 'YYYY', '0', 'For academic years that span a calendar year this is the four digit year-end. E.g. 2013 for 2012-2013', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23243', '12', '23243', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001900', 'Component or Fixture Scheduled Serviced Date', NULL, 'The month, day, and year a major component, system, equipment, or fixture is scheduled to be serviced for preventive or routine maintenance.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22881', '11', '22881', NULL, NULL) +VALUES ('000244', 'School Year Minutes', NULL, 'The number of minutes that all students were required to be at school and any additional learning time (e.g., before or after school, weekend school, summer school) for which all students had the opportunity to participate.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23244', '12', '23244', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001901', 'Component or Fixture Useful Life', NULL, 'The anticipated time (in years) from the time of installation or service that a properly maintained system, component, equipment, or fixture is expected to operate effectively and efficiently.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22882', '11', '22882', NULL, NULL) +VALUES ('000704', 'Web Site Address', NULL, 'The Uniform Resource Locator (URL) for the unique address of a Web page.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23300', '12', '23300', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001902', 'Available Utilized Instructional Space', NULL, 'An indication that the instruction space in a school is used in the calculation of student capacity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22883', '11', '22883', NULL, NULL) +VALUES ('000302', 'Years of Prior Teaching Experience', NULL, 'The total number of years prior to this job that a person has previously held a teaching position in one or more education institutions.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23302', '12', '23302', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001903', 'Building Capacity Factor Indicator', NULL, 'A designation as to whether the space is included in the calculation of school building capacity under state or local guidelines.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22884', '11', '22884', NULL, NULL) +VALUES ('000245', 'Assessment Result Score Value', NULL, 'A meaningful raw score, derived score, or statistical expression of the performance of a person on an assessment. The type of result is indicated by the Assessment Score Metric Type element. The results can be expressed as a number, percentile, range, level, etc. The score relates to all scored items or a sub test scoring one aspect of performance on the test. This value may or may not correspond to one or more Performance Levels.', 'Alphanumeric - 35 characters maximum', '0', 'Information for interpreting the score is defined by elements in the related Assessment Subtest entity. This includes the minimum, maximum, and optimal values for the measurement. Assessment Subtest defines information for scoring an Assessment Form, which may be for the entire assessment or one aspect of evaluation. The Assessment Subtest may in turn be associated with one or more content standards using the Learning Standard Item Association entity.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23245', '12', '23245', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000191', 'Name of Institution', NULL, 'The full legally accepted name of the institution.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21191', '11', '21191', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000249', 'Section 504 Status', NULL, 'Individuals with disabilities who are being provided with related aids and services under Section 504 of the Rehabilitation Act of 1973, as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23249', '12', '23249', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000193', 'Neglected or Delinquent Status', NULL, 'An indication that the student is participating in programs for neglected or delinquent students (N or D) under Title I, Part D, Subpart 1 (state agencies) of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21193', '11', '21193', NULL, NULL) +VALUES ('000250', 'School Courses for the Exchange of Data Sequence of Course', 'SCED Sequence of Course', 'Where a specific course lies when it is part of a consecutive sequence of courses. This element should be interpreted as "part ''n'' of ''m'' parts.', 'Alphanumeric - 10 characters maximum', '0', 'For example: if a school offers 4 years of Theater, Theater 3 within this school would be indicated in the sequence elements as 3 4, denoting the 3rd part of a 4-part sequence of courses.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23250', '12', '23250', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000194', 'Neglected or Delinquent Program Type', NULL, 'The type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21194', '11', '21194', NULL, NULL) +VALUES ('000251', 'Session Begin Date', NULL, 'The year, month and day on which a session begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23251', '12', '23251', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000196', 'Visa Type', NULL, 'An indicator of a non-US citizen''s Visa type.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21196', '11', '21196', NULL, NULL) +VALUES ('000252', 'Session Designator', NULL, 'The academic session for which the data are recorded and applicable.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23252', '12', '23252', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000197', 'Normal Length of Time for Completion', NULL, 'The amount of time necessary for a person to complete all requirements for a degree or certificate according to the institution''s catalog. This is typically 4 years (8 semesters or trimesters, or 12 quarters, excluding summer terms) for a bachelor''s degree in a standard term-based institution; 2 years (4 semesters or trimesters, or 6 quarters, excluding summer terms) for an associate''s degree in a standard term-based institution; and the various scheduled times for certificate programs.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21197', '11', '21197', NULL, NULL) +VALUES ('000253', 'Session End Date', NULL, 'The year, month and day on which a session ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23253', '12', '23253', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000198', 'Normal Length of Time for Completion Units', NULL, 'The unit of measurement for length of time for completion.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21198', '11', '21198', NULL, NULL) +VALUES ('000254', 'Session Type', NULL, 'A prescribed span of time when an education institution is open, instruction is provided, and students are under the direction and guidance of teachers and/or education institution administration. A session may be interrupted by one or more vacations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23254', '12', '23254', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000199', 'Number of Credits Attempted', NULL, 'The number of credits that a student can earn for enrolling in and completing a given course.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21199', '11', '21199', NULL, NULL) +VALUES ('000255', 'Sex', NULL, 'The concept describing the biological traits that distinguish the males and females of a species.', NULL, '1', 'Postsecondary: As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23255', '12', '23255', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000200', 'Number of Credits Earned', NULL, 'The number of credits an individual earns by the successful completion of a course.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21200', '11', '21200', NULL, NULL) +VALUES ('000257', 'Shared Time Indicator', NULL, 'An indication that a school offers career and technical education or other educational services in which some or all students are enrolled at a separate school of record and attend the shared-time school on a part-time basis.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23257', '12', '23257', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000201', 'Number of Days Absent', NULL, 'The number of days a person is absent when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21201', '11', '21201', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000258', 'Course Section Single Sex Class Status', NULL, 'Section in a co-educational school where only male or only female students are permitted to take the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23258', '12', '23258', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000202', 'Number of Days in Attendance', NULL, 'The number of days a person is present when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', 'Note: This applies to an enrollment period record. Separate records using this element definition could capture attendance for regular enrollment, an out-of-school program or other program requiring attendance records. CEDS now supports the detailed attendance events to capture attendance status on any given day, class period, or session. CEDS generally doesn''t include elements for counts when it has the unit level elements to calculate the count. However, this element has been retained to support the intended use cases, recognizing that the rules for attendance vary based on location.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21202', '11', '21202', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000260', 'Special Education Exit Reason', NULL, 'The reason children who were in special education at the start of the reporting period were not in special education at the end of the reporting period.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23260', '12', '23260', 'Updated', 'Change option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000203', 'Office of Postsecondary Education Identifier', 'OPEID', 'Identification number used by the U.S. Department of Education''s Office of Postsecondary Education (OPE) to identify schools that have Program Participation Agreements (PPA) so that its students are eligible to participate in Federal Student Financial Assistance programs under Title IV regulations. This is a 6-digit number followed by a 2-digit suffix used to identify branches, additional locations, and other entities that are part of the eligible institution.', 'Integer - exactly 8 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21203', '11', '21203', NULL, NULL) +VALUES ('000261', 'Special Education Paraprofessional', NULL, 'An indication of whether a paraprofessional is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23261', '12', '23261', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000204', 'Organization Name', NULL, 'The name of a non-person entity such as an organization, institution, agency or business.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21204', '11', '21204', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000262', 'Special Education Related Services Personnel', NULL, 'An indication of whether a related services person is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23262', '12', '23262', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000205', 'Staff Compensation Other Benefits', NULL, 'All other benefits paid by the school district, municipal, state, federal, and other government agencies for the teacher or early learning provider, prorated to the specific school or local provider agency indicated on the record, not including retirement and health insurance benefits or contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21205', '11', '21205', NULL, NULL) +VALUES ('000263', 'Special Education Services Exit Date', NULL, 'The year, month and day a child with disabilities (IDEA) ages 14 through 21 exited special education.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23263', '12', '23263', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000206', 'Other Name', NULL, 'Previous, alternate or other names or aliases associated with the person.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21206', '11', '21206', NULL, NULL) +VALUES ('000264', 'Special Education Teacher', NULL, 'An indication of whether a teacher is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23264', '12', '23264', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000207', 'Paraprofessional Qualification Status', NULL, 'An indication of whether paraprofessionals are classified as qualified for their assignment according to state definition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21207', '11', '21207', NULL, NULL) +VALUES ('000265', 'Standardized Admission Test Score', NULL, 'The quantitative score on a standardized admission test reported to a postsecondary institution.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23265', '12', '23265', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000208', 'Participation Status for Math', NULL, 'An indication of whether the school or district met the 95 percent participation requirement in the mathematics assessment in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21208', '11', '21208', NULL, NULL) +VALUES ('000266', 'Standardized Admission Test Type', NULL, 'The type of test prepared and administered by an agency that is independent of any postsecondary education institution and is typically used for admissions purposes. Tests provide information about prospective students and their academic qualifications relative to a national sample.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23266', '12', '23266', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000209', 'Participation Status for Reading and Language Arts', NULL, 'An indication of whether the school or district met the 95 percent participation requirement on the reading/language arts assessment in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21209', '11', '21209', NULL, NULL) +VALUES ('000267', 'State Abbreviation', NULL, 'The abbreviation for the state (within the United States) or outlying area in which an address is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23267', '12', '23267', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000210', 'Persistently Dangerous Status', NULL, 'An indication of whether the school is identified as persistently dangerous in accordance with state definition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21210', '11', '21210', NULL, NULL) +VALUES ('000268', 'State of Residence', NULL, 'An person''s permanent address as determined by such evidence as a driver''s license or voter registration. For entering freshmen, state of residence may be the legal state of residence of a parent or guardian.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23268', '12', '23268', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000211', 'Persistently Lowest Achieving School Status', NULL, 'An indication of whether the school is identified by the state as persistently lowest-achieving.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21211', '11', '21211', NULL, NULL) +VALUES ('000269', 'Address Street Number and Name', NULL, 'The street number and street name or post office box number of an address.', 'Alphanumeric - 150 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23269', '12', '23269', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000212', 'Personal Title or Prefix', 'Prefix', 'An appellation, if any, used to denote rank, placement, or status (e.g., Mr., Ms., Reverend, Sister, Dr., Colonel).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21212', '11', '21212', NULL, NULL) +VALUES ('000271', 'Student Attendance Rate', NULL, 'The number of school days during the regular school year (plus summer, if applicable, if part of implementing the restart, transformation, or turnaround model) the student attended school divided by the maximum number of days the student could have attended school during the regular school year.', 'Numeric - between 0 and 1', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23271', '12', '23271', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000213', 'Position Title', NULL, 'The descriptive name of a person''s position.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21213', '11', '21213', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000272', 'Student Level', NULL, 'Classification of a person enrolling in credit-granting courses at a postsecondary institution since completing high school (or its equivalent) as either an undergraduate or graduate student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23272', '12', '23272', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000214', 'Address Postal Code', NULL, 'A number that identifies each postal delivery area in the United States used as a portion of an address.', 'Alphanumeric - 17 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21214', '11', '21214', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000304', 'Early Learning Program Eligibility Category', NULL, 'Category under which the person is eligible for an early childhood program or service.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23304', '12', '23304', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000216', 'Prekindergarten Eligibility', NULL, 'The groups of students for whom pre-kindergarten programs are available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21216', '11', '21216', NULL, NULL) +VALUES ('000305', 'Proof of Residency Type', NULL, 'An accepted form of proof of residency in the district/county/other locality.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23305', '12', '23305', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000217', 'Prekindergarten Eligible Ages for Non-IDEA Students', NULL, 'The ages of children not served under IDEA to whom the LEA''s pre-kindergarten services are available. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21217', '11', '21217', NULL, NULL) +VALUES ('000273', 'Student Support Service Type', NULL, 'Type of related or ancillary services offered or provided to a person or a group of persons within the formal educational system or by an outside agency which provides non-instructional services to support the general welfare of students. This includes physical and emotional health, the ability to select an appropriate course of study, admission to appropriate educational programs, and the ability to adjust to and remain in school through the completion of programs. In serving a student with an identified disability, related services include developmental, corrective, or supportive services required to ensure that the person benefits from special education.', NULL, '1', 'At the organization level, this element indicates the services offered to students. At the person level, this element indicates the services received by students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23273', '12', '23273', 'Updated', 'Add new option to option set, add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000218', 'Primary Disability Type', NULL, 'The major or overriding disability condition that best describes a person''s impairment.', NULL, '1', 'Option set based on EDFacts. Only one disability condition would be selected. Refer to IDEA Disability Type for selecting multiple disability category options and any additional IDEA disability categories.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21218', '11', '21218', NULL, NULL) +VALUES ('000274', 'Assessment Subtest Description', NULL, 'The description of the subtest (e.g., vocabulary, measurement, or geometry).', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23274', '12', '23274', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000219', 'Primary Telephone Number Indicator', NULL, 'An indication that the telephone number should be used as the principal number for a person or organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21219', '11', '21219', NULL, NULL) +VALUES ('000275', 'Assessment Subtest Title', NULL, 'The name or title of the subtest.', '300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23275', '12', '23275', 'Updated', 'Modify element format maximum length') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000220', 'Professional Educational Job Classification', NULL, 'A general job classification that describes staff that performs duties requiring a high degree of knowledge and skills generally acquired through at least a baccalaureate degree (or its equivalent obtained through special study and/or experience) including skills in the field of education, educational psychology, educational social work, or an education therapy field.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21220', '11', '21220', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000277', 'Teaching Credential Basis', NULL, 'An indication of the pre-determined criteria for granting the teaching credential that a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23277', '12', '23277', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000221', 'Proficiency Target Status for Math', NULL, 'An indication of whether the school or district met the math proficiency target in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21221', '11', '21221', NULL, NULL) +VALUES ('000278', 'Teaching Credential Type', NULL, 'An indication of the category of a legal document giving authorization to perform teaching assignment services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23278', '12', '23278', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000222', 'Exit Reason', NULL, 'The documented or assumed reason a student is no longer being served by a special program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21222', '11', '21222', NULL, NULL) +VALUES ('000279', 'Telephone Number', NULL, 'The telephone number including the area code, and extension, if applicable.', 'Alphanumeric - 24 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23279', '12', '23279', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000223', 'Program Length Hours', NULL, 'The normal length in credit/contact hours of a person''s program as published in the institution''s catalogue, website, or other official documents.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21223', '11', '21223', NULL, NULL) +VALUES ('000280', 'Telephone Number Type', NULL, 'The type of communication number listed for a person.', 'Alphanumeric - 15 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23280', '12', '23280', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000224', 'Program Length Hours Type', NULL, 'The type of hours (credit or contact) by which the normal length of a program of study is measured.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21224', '11', '21224', NULL, NULL) +VALUES ('000281', 'Title I Indicator', NULL, 'An indication that the student is participating in and served by programs under Title I, Part A of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23281', '12', '23281', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000225', 'Program Type', NULL, 'The system outlining instructional or non-instructional activities and procedures designed to accomplish a predetermined educational objective or set of objectives or to provide support services to a person and/or the community.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21225', '11', '21225', 'Updated', 'Added element to DES contexts and added new options to the existing option set.') +VALUES ('000282', 'Title I Instructional Services', NULL, 'The type of instructional services provided to students in ESEA Title I programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23282', '12', '23282', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000226', 'Projected Graduation Date', NULL, 'The year and month the student is projected to graduate.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21226', '11', '21226', NULL, NULL) +VALUES ('000283', 'Title I Program Staff Category', NULL, 'Titles of employment, official status, or rank for staff working in a Title I program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23283', '12', '23283', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000227', 'Public School Choice Implementation Status', NULL, 'An indication of whether the LEA was able to implement the provisions for public school choice under Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21227', '11', '21227', NULL, NULL) +VALUES ('000284', 'Title I Program Type', NULL, 'The type of Title I program offered in the school or district.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23284', '12', '23284', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000228', 'Reason Not Tested', NULL, 'The primary reason a student is not tested.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21228', '11', '21228', NULL, NULL) +VALUES ('000285', 'Title I School Status', NULL, 'An indication that a school is designated under state and federal regulations as being eligible for participation in programs authorized by Title I of ESEA as amended and whether it has a Title I program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23285', '12', '23285', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000229', 'Recognition for Participation or Performance in an Activity', NULL, 'The nature of recognition given to the student for accomplishments in a co-curricular, or extra-curricular activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21229', '11', '21229', NULL, NULL) +VALUES ('000286', 'Title I School Supplemental Services Applied Status', NULL, 'An indication of whether an eligible student applied/requested to receive supplemental educational services under Title I, Part A, Section 1116 of ESEA as amended during the school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23286', '12', '23286', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000230', 'Reconstituted Status', NULL, 'An indication that the school was restructured, transformed or otherwise changed as a consequence of the state’s accountability system under ESEA or as a result of School Improvement Grants (SIG).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21230', '11', '21230', NULL, NULL) +VALUES ('000287', 'Title I School Supplemental Services Eligible Status', NULL, 'An indication of whether a student is eligible to receive supplemental educational services during the school year in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23287', '12', '23287', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000231', 'Related Competency Definitions', 'Related Learning Standard Items, Related Competency Items', 'An indication of the competency definition(s) addressed in the Course Section.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21231', '11', '21231', NULL, NULL) +VALUES ('000288', 'Title I School Supplemental Services Received Status', NULL, 'An indication of whether an eligible student received supplemental educational services during the school year in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23288', '12', '23288', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000232', 'Restructuring Action', NULL, 'The types of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21232', '11', '21232', NULL, NULL) +VALUES ('000289', 'Title I Support Services', NULL, 'The type of support services provided to students in Title I programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23289', '12', '23289', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000233', 'Staff Compensation Retirement Benefits', NULL, 'Contributions made by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider’s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21233', '11', '21233', NULL, NULL) +VALUES ('000290', 'Title III Immigrant Participation Status', NULL, 'An indication that an immigrant student participated in programs for immigrant children and youth funded under ESEA Title III Section 3114(d)(1) using funds reserved for immigrant education programs/activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23290', '12', '23290', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000234', 'Salary for Teaching Assignment Only Indicator', NULL, 'Indicator to determine whether the teacher''s base salary includes pay for teaching assignments alone.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21234', '11', '21234', NULL, NULL) +VALUES ('000291', 'Title III Immigrant Status', NULL, 'An indication that the child is an immigrant according to the Title III of ESEA definition, meaning children who are aged 3 through 21; were not born in any state; and have not been attending one or more schools in any one or more States for more than 3 full academic years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23291', '12', '23291', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000235', 'School Choice Applied for Transfer Status', NULL, 'An indication that a student applied to transfer in the current year (regardless of whether the student transferred), OR previously applied and transferred under the public school choice provisions and continue to attend the transfer school in the current year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21235', '11', '21235', NULL, NULL) +VALUES ('000292', 'Title IV Participant and Recipient', NULL, 'A person who receives Title IV aid. Title IV aid includes grant aid, work study aid, and loan aid such as: Federal Pell Grant, Federal Supplemental Educational Opportunity Grant (FSEOG), Teacher Education Assistance for College and Higher Education (TEACH) Grant, Federal Work-Study, Federal Perkins Loan, Subsidized Direct or FFEL Stafford Loan, and Unsubsidized Direct or FFEL Stafford Loan. Title IV aid specifications are defined by the instructions for the IPEDS Student Financial Aid survey.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23292', '12', '23292', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000236', 'School Choice Eligible for Transfer Status', NULL, 'An indication the student is eligible to transfer for the current school year under the public school choice provisions or who applied and transferred in the current school year under the public school choice provisions or previously applied and transferred under the public school choice provisions and continue to attend the transfer school in the current year.', NULL, '1', 'Which students should be reported?', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21236', '11', '21236', NULL, NULL) +VALUES ('000293', 'Staff Compensation Total Benefits', NULL, 'Sum of retirement, health, and all other benefits, or total benefits paid by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider’s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23293', '12', '23293', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000237', 'School Choice Transfer Status', NULL, 'An indication of whether an eligible student transferred to the school under the provisions for public school choice in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21237', '11', '21237', NULL, NULL) +VALUES ('000294', 'Size of High School Graduating Class', NULL, 'The total number of students in the student''s high school graduating class.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23294', '12', '23294', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000238', 'School Improvement Funds Status', NULL, 'An indication of whether the school received funds under Section 1003 of ESEA, as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21238', '11', '21238', NULL, NULL) +VALUES ('000295', 'Staff Compensation Total Salary', NULL, 'Total annualized salary of staff at the specific school/program indicated on the record in the school/program year specified on the record.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23295', '12', '23295', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000239', 'School Improvement Grant Intervention Type', NULL, 'The type of intervention used by the school under the School Improvement Grant (SIG).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21239', '11', '21239', NULL, NULL) +VALUES ('000296', 'Transfer-ready', NULL, 'A person who has successfully completed a transfer-preparatory program as defined by the state or by the institution if no official state definition exists.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23296', '12', '23296', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000240', 'School Improvement Status', NULL, 'An indication of the improvement stage of the school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21240', '11', '21240', NULL, NULL) +VALUES ('000297', 'Tuition Residency Type', NULL, 'A person''s residency status for tuition purposes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23297', '12', '23297', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000241', 'School Level', NULL, 'An indication of the level of the education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21241', '11', '21241', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000299', 'United States Citizenship Status', NULL, 'An indicator of whether or not the person is a US citizen.', NULL, '1', 'Postsecondary: As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23299', '12', '23299', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000242', 'School Type', NULL, 'The type of education institution as classified by its primary focus. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21242', '11', '21242', NULL, NULL) +VALUES ('000306', 'Immunization Date', NULL, 'The year, month and day of an immunization.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23306', '12', '23306', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000243', 'School Year', NULL, 'The year for a reported school session.', 'YYYY', '0', 'For academic years that span a calendar year this is the four digit year-end. E.g. 2013 for 2012-2013', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21243', '11', '21243', NULL, NULL) +VALUES ('000307', 'Required Immunization', NULL, 'An indication that an immunization is specifically required by an organization or governing body.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23307', '12', '23307', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000244', 'School Year Minutes', NULL, 'The number of minutes that all students were required to be at school and any additional learning time (e.g., before or after school, weekend school, summer school) for which all students had the opportunity to participate.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21244', '11', '21244', NULL, NULL) +VALUES ('000308', 'Vision Screening Status', NULL, 'Status of an examination used to measure a person''s ability to see.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23308', '12', '23308', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000245', 'Assessment Result Score Value', NULL, 'A meaningful raw score, derived score, or statistical expression of the performance of a person on an assessment. The type of result is indicated by the Assessment Score Metric Type element. The results can be expressed as a number, percentile, range, level, etc. The score relates to all scored items or a sub test scoring one aspect of performance on the test. This value may or may not correspond to one or more Performance Levels.', 'Alphanumeric - 35 characters maximum', '0', 'Information for interpreting the score is defined by elements in the related Assessment Subtest entity. This includes the minimum, maximum, and optimal values for the measurement. Assessment Subtest defines information for scoring an Assessment Form, which may be for the entire assessment or one aspect of evaluation. The Assessment Subtest may in turn be associated with one or more content standards using the Learning Standard Item Association entity.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21245', '11', '21245', NULL, NULL) +VALUES ('000309', 'Hearing Screening Status', NULL, 'Status of an examination used to measure a person''s ability to perceive sounds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23309', '12', '23309', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000249', 'Section 504 Status', NULL, 'Individuals with disabilities who are being provided with related aids and services under Section 504 of the Rehabilitation Act of 1973, as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21249', '11', '21249', NULL, NULL) +VALUES ('000310', 'Dental Screening Status', NULL, 'The condition of a person''s mouth or oral cavity; more specifically the condition of the hard tissues (i.e., teeth and jaws) and the soft tissues (i.e., gums, tongue, lips, palate, mouth floor, and inner cheeks). Good oral health denotes the absence of clinically manifested disease or abnormalities of the oral cavity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23310', '12', '23310', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000250', 'School Courses for the Exchange of Data Sequence of Course', 'SCED Sequence of Course', 'Where a specific course lies when it is part of a consecutive sequence of courses. This element should be interpreted as "part ''n'' of ''m'' parts.', 'Alphanumeric - 10 characters maximum', '0', 'For example: if a school offers 4 years of Theater, Theater 3 within this school would be indicated in the sequence elements as 3 4, denoting the 3rd part of a 4-part sequence of courses.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21250', '11', '21250', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000312', 'Weight at Birth', NULL, 'The weight of a child at birth in pounds and ounces.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23312', '12', '23312', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000251', 'Session Begin Date', NULL, 'The year, month and day on which a session begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21251', '11', '21251', NULL, NULL) +VALUES ('000313', 'Weeks of Gestation', NULL, 'The number of weeks during gestational period.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23313', '12', '23313', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000252', 'Session Designator', NULL, 'The academic session for which the data are recorded and applicable.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21252', '11', '21252', NULL, NULL) +VALUES ('000314', 'Child Developmental Screening Status', NULL, 'The result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23314', '12', '23314', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000253', 'Session End Date', NULL, 'The year, month and day on which a session ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21253', '11', '21253', NULL, NULL) +VALUES ('000315', 'Developmental Evaluation Finding', NULL, 'Child developmental delay/disability determined by procedure used by appropriate qualified personnel.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23315', '12', '23315', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000254', 'Session Type', NULL, 'A prescribed span of time when an education institution is open, instruction is provided, and students are under the direction and guidance of teachers and/or education institution administration. A session may be interrupted by one or more vacations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21254', '11', '21254', NULL, NULL) +VALUES ('000316', 'Language Type', NULL, 'An indication of the function and context in which a person uses a language to communicate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23316', '12', '23316', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000255', 'Sex', NULL, 'The concept describing the biological traits that distinguish the males and females of a species.', NULL, '1', 'Postsecondary: As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21255', '11', '21255', NULL, NULL) +VALUES ('000317', 'ISO 639-2 Language Code', NULL, 'The code for the specific language or dialect that a person uses to communicate.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23317', '12', '23317', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000257', 'Shared Time Indicator', NULL, 'An indication that a school offers career and technical education or other educational services in which some or all students are enrolled at a separate school of record and attend the shared-time school on a part-time basis.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21257', '11', '21257', NULL, NULL) +VALUES ('000320', 'Individualized Program Type', NULL, 'A designation of the type of program developed for a student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23320', '12', '23320', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000258', 'Course Section Single Sex Class Status', NULL, 'Section in a co-educational school where only male or only female students are permitted to take the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21258', '11', '21258', NULL, NULL) +VALUES ('000321', 'Early Childhood Services Received', NULL, 'The types of service that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23321', '12', '23321', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000260', 'Special Education Exit Reason', NULL, 'The reason children who were in special education at the start of the reporting period were not in special education at the end of the reporting period.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21260', '11', '21260', NULL, NULL) +VALUES ('000323', 'Application Date', NULL, 'The year, month and day on which an individual application is received by the organization.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23323', '12', '23323', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000261', 'Special Education Paraprofessional', NULL, 'An indication of whether a paraprofessional is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21261', '11', '21261', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000324', 'Enrollment Date', NULL, 'The year, month and day on which a person is considered officially enrolled in the program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23324', '12', '23324', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000262', 'Special Education Related Services Personnel', NULL, 'An indication of whether a related services person is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21262', '11', '21262', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000325', 'Participation in School Food Service Programs', NULL, 'An indication of a student''s participation in free, reduced price, full price breakfast, lunch, snack, supper, and milk programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23325', '12', '23325', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000263', 'Special Education Services Exit Date', NULL, 'The year, month and day a child with disabilities (IDEA) ages 14 through 21 exited special education.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21263', '11', '21263', NULL, NULL) +VALUES ('000326', 'Service Entry Date', NULL, 'The year, month and day on which a person begins to receive early intervention, special education or other services.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23326', '12', '23326', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000264', 'Special Education Teacher', NULL, 'An indication of whether a teacher is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21264', '11', '21264', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000327', 'Service Exit Date', NULL, 'The year, month and day on which a person stops receiving early intervention or special education services.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23327', '12', '23327', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000265', 'Standardized Admission Test Score', NULL, 'The quantitative score on a standardized admission test reported to a postsecondary institution.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21265', '11', '21265', NULL, NULL) +VALUES ('000329', 'Custodial Parent or Guardian Indicator', NULL, 'An indication that a person has legal custody of a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23328', '12', '23328', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000266', 'Standardized Admission Test Type', NULL, 'The type of test prepared and administered by an agency that is independent of any postsecondary education institution and is typically used for admissions purposes. Tests provide information about prospective students and their academic qualifications relative to a national sample.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21266', '11', '21266', NULL, NULL) +VALUES ('000330', 'Number of People in Family', NULL, 'Total number of persons in immediate family. Family means for the purposes of the regulations in this part all persons: (i) Living in the same household who are: (A) Supported by the income of the parent(s) or guardian(s) of the child enrolling or participating in the program; or (B) Related to the child by blood, marriage, or adoption; or (ii) Related to the child enrolling or participating in the program as parents or siblings, by blood, marriage, or adoption.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23329', '12', '23329', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000267', 'State Abbreviation', NULL, 'The abbreviation for the state (within the United States) or outlying area in which an address is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21267', '11', '21267', 'Updated', 'Added elements to DES contexts to support Early Learning needs. Added new options to the existing option set.') +VALUES ('000331', 'Number of People in Household', NULL, 'Total number of persons residing in the same household.', 'Integer - greater than or equal to 0', '0', 'For FAFSA, this includes the number of family members that are in the household, including the student, their spouse, children, and any other persons living in the household to whom they will provide more than half of their support', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23330', '12', '23330', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000268', 'State of Residence', NULL, 'An person''s permanent address as determined by such evidence as a driver''s license or voter registration. For entering freshmen, state of residence may be the legal state of residence of a parent or guardian.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21268', '11', '21268', NULL, NULL) +VALUES ('000332', 'Family Income', NULL, 'Total income of family from all sources. Income includes money, wages or salary before deductions; net income from non-farm self-employment; net income from farm self-employment; regular payments from Social Security or railroad retirement; payments from unemployment compensation, strike benefits from union funds, workers’ compensation, veterans benefits (with the exception noted below), public assistance (including Temporary Assistance for Needy Families, Supplemental Security Income, Emergency Assistance money payments, and non-Federally funded General Assistance or General Relief money payments); training stipends; alimony, child support, and military family allotments or other regular support from an absent family member or someone not living in the household; private pensions, government employee pensions (including military retirement pay), and regular insurance or annuity payments; college or university scholarships, grants, fellowships, and assistantships; and dividends, interest, net rental income, net royalties, and periodic receipts from estates or trusts; and net gambling or lottery winnings.', 'Numeric - up to 2 digits after decimal place', '0', 'Family Income is calculated based on the method specified by “Income Calculation Method.”', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23331', '12', '23331', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000269', 'Address Street Number and Name', NULL, 'The street number and street name or post office box number of an address.', 'Alphanumeric - 150 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21269', '11', '21269', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000333', 'Source of Family Income', NULL, 'Sources of total family income.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23332', '12', '23332', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000271', 'Student Attendance Rate', NULL, 'The number of school days during the regular school year (plus summer, if applicable, if part of implementing the restart, transformation, or turnaround model) the student attended school divided by the maximum number of days the student could have attended school during the regular school year.', 'Numeric - between 0 and 1', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21271', '11', '21271', NULL, NULL) +VALUES ('000334', 'Income Calculation Method', NULL, 'The calculation method used by a program to determine total family income.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23333', '12', '23333', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000272', 'Student Level', NULL, 'Classification of a person enrolling in credit-granting courses at a postsecondary institution since completing high school (or its equivalent) as either an undergraduate or graduate student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21272', '11', '21272', NULL, NULL) +VALUES ('000335', 'Insurance Coverage', NULL, 'The nature of insurance covering an person''s hospitalization and other health or medical care.', NULL, '1', 'Use cases may utilize subsets of the option set. For example, the option set for Parent/Guardian may not include the "Children''s health insurance program" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23334', '12', '23334', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000273', 'Student Support Service Type', NULL, 'Type of related or ancillary services offered or provided to a person or a group of persons within the formal educational system or by an outside agency which provides non-instructional services to support the general welfare of students. This includes physical and emotional health, the ability to select an appropriate course of study, admission to appropriate educational programs, and the ability to adjust to and remain in school through the completion of programs. In serving a student with an identified disability, related services include developmental, corrective, or supportive services required to ensure that the person benefits from special education.', NULL, '1', 'At the organization level, this element indicates the services offered to students. At the person level, this element indicates the services received by students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21273', '11', '21273', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000336', 'Dental Insurance Coverage Type', NULL, 'The source of insurance covering an person''s dental care.', NULL, '1', 'Use cases may utilize subsets of the option set. For example, the option set for Parent/Guardian may not include the "Children''s health insurance program" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23335', '12', '23335', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000274', 'Assessment Subtest Description', NULL, 'The description of the subtest (e.g., vocabulary, measurement, or geometry).', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21274', '11', '21274', NULL, NULL) +VALUES ('000341', 'Level of Specialization in Early Learning', NULL, 'The extent to which a person concentrates upon a particular subject matter area during his or her period of study at an educational institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23340', '12', '23340', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000275', 'Assessment Subtest Title', NULL, 'The name or title of the subtest.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21275', '11', '21275', NULL, NULL) +VALUES ('000342', 'Degree or Certificate Title or Subject', NULL, 'The name of the degree or certificate earned by a person. This includes honorary degrees conferred upon an individual.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23341', '12', '23341', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000277', 'Teaching Credential Basis', NULL, 'An indication of the pre-determined criteria for granting the teaching credential that a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21277', '11', '21277', NULL, NULL) +VALUES ('000343', 'Degree or Certificate Type', NULL, 'The type of degree or certificate earned by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23342', '12', '23342', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000278', 'Teaching Credential Type', NULL, 'An indication of the category of a legal document giving authorization to perform teaching assignment services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21278', '11', '21278', NULL, NULL) +VALUES ('000344', 'Degree or Certificate Conferring Date', NULL, 'The year, month and day on which a person received a degree or certificate.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23343', '12', '23343', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000279', 'Telephone Number', NULL, 'The telephone number including the area code, and extension, if applicable.', 'Alphanumeric - 24 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21279', '11', '21279', NULL, NULL) +VALUES ('000345', 'Early Childhood Credential', NULL, 'The credential related to early childhood education or development held by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23344', '12', '23344', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000280', 'Telephone Number Type', NULL, 'The type of communication number listed for a person.', 'Alphanumeric - 15 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21280', '11', '21280', NULL, NULL) +VALUES ('000346', 'Employment Start Date', NULL, 'The year, month and day on which a person began self-employment or employment with an organization or institution.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23345', '12', '23345', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000281', 'Title I Indicator', NULL, 'An indication that the student is participating in and served by programs under Title I, Part A of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21281', '11', '21281', NULL, NULL) +VALUES ('000347', 'Employment Status', NULL, 'The condition under which a person has agreed to serve as an employee.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23346', '12', '23346', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000282', 'Title I Instructional Services', NULL, 'The type of instructional services provided to students in ESEA Title I programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21282', '11', '21282', NULL, NULL) +VALUES ('000348', 'Initial License Date', NULL, 'The year, month and day on which a program or center received its initial license.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23347', '12', '23347', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000283', 'Title I Program Staff Category', NULL, 'Titles of employment, official status, or rank for staff working in a Title I program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21283', '11', '21283', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000349', 'Continuing License Date', NULL, 'The year, month and day on which a program or center received its continuing license.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23348', '12', '23348', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000284', 'Title I Program Type', NULL, 'The type of Title I program offered in the school or district.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21284', '11', '21284', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000350', 'License Exempt', NULL, 'The program or center is legally exempt from licensing.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23349', '12', '23349', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000285', 'Title I School Status', NULL, 'An indication that a school is designated under state and federal regulations as being eligible for participation in programs authorized by Title I of ESEA as amended and whether it has a Title I program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21285', '11', '21285', NULL, NULL) +VALUES ('000351', 'Operation Date', NULL, 'The year, month and day on which a program or center began operation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23350', '12', '23350', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000286', 'Title I School Supplemental Services Applied Status', NULL, 'An indication of whether an eligible student applied/requested to receive supplemental educational services under Title I, Part A, Section 1116 of ESEA as amended during the school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21286', '11', '21286', NULL, NULL) +VALUES ('000353', 'Service Option Variation', NULL, 'Nature of early childhood program, class or group in which a person is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23352', '12', '23352', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000287', 'Title I School Supplemental Services Eligible Status', NULL, 'An indication of whether a student is eligible to receive supplemental educational services during the school year in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21287', '11', '21287', NULL, NULL) +VALUES ('000354', 'Hours Available Per Day', NULL, 'The number of hours per day the site or classroom is open for children to attend.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23353', '12', '23353', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000288', 'Title I School Supplemental Services Received Status', NULL, 'An indication of whether an eligible student received supplemental educational services during the school year in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21288', '11', '21288', NULL, NULL) +VALUES ('000355', 'Days Available Per Week', NULL, 'The number of days per week the site or classroom is open for children to attend.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23354', '12', '23354', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000289', 'Title I Support Services', NULL, 'The type of support services provided to students in Title I programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21289', '11', '21289', NULL, NULL) +VALUES ('000356', 'Early Childhood Setting', NULL, 'The site or setting in which early childhood care, education, and/or services are provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23355', '12', '23355', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000290', 'Title III Immigrant Participation Status', NULL, 'An indication that an immigrant student participated in programs for immigrant children and youth funded under ESEA Title III Section 3114(d)(1) using funds reserved for immigrant education programs/activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21290', '11', '21290', NULL, NULL) +VALUES ('000357', 'Quality Rating and Improvement System Participation', 'QRIS Participation', 'Program site participates in a Quality Rating and Improvement System (QRIS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23356', '12', '23356', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000291', 'Title III Immigrant Status', NULL, 'An indication that the child is an immigrant according to the Title III of ESEA definition, meaning children who are aged 3 through 21; were not born in any state; and have not been attending one or more schools in any one or more States for more than 3 full academic years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21291', '11', '21291', NULL, NULL) +VALUES ('000358', 'Quality Rating and Improvement System Score', 'QRIS Score', 'The score, rating or level received by a program for its Quality Rating and Improvement System (QRIS).', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23357', '12', '23357', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000292', 'Title IV Participant and Recipient', NULL, 'A person who receives Title IV aid. Title IV aid includes grant aid, work study aid, and loan aid such as: Federal Pell Grant, Federal Supplemental Educational Opportunity Grant (FSEOG), Teacher Education Assistance for College and Higher Education (TEACH) Grant, Federal Work-Study, Federal Perkins Loan, Subsidized Direct or FFEL Stafford Loan, and Unsubsidized Direct or FFEL Stafford Loan. Title IV aid specifications are defined by the instructions for the IPEDS Student Financial Aid survey.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21292', '11', '21292', NULL, NULL) +VALUES ('000010', 'Address Type for Learner or Family', NULL, 'The type of address listed for a learner or a parent, guardian, family member or related person.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23358', '12', '23358', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000293', 'Staff Compensation Total Benefits', NULL, 'Sum of retirement, health, and all other benefits, or total benefits paid by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider’s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21293', '11', '21293', NULL, NULL) +VALUES ('000361', 'Enrollment in Postsecondary Award Type', NULL, 'An indicator of the award level in which the person is currently enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23360', '12', '23360', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000294', 'Size of High School Graduating Class', NULL, 'The total number of students in the student''s high school graduating class.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21294', '11', '21294', NULL, NULL) +VALUES ('000362', 'Instructional Activity Hours Completed', NULL, 'The number of credit hours and/or contact hours successfully completed by a person during a term.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23361', '12', '23361', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000295', 'Staff Compensation Total Salary', NULL, 'Total annualized salary of staff at the specific school/program indicated on the record in the school/program year specified on the record.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21295', '11', '21295', NULL, NULL) +VALUES ('000363', 'Financial Aid Award Status', NULL, 'An indication of whether the financial aid type being reported is aid that has been awarded, accepted or dispersed.', NULL, '1', 'Linked to financial aid type, financial aid amount.
Note: For any given individual this field may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23362', '12', '23362', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000296', 'Transfer-ready', NULL, 'A person who has successfully completed a transfer-preparatory program as defined by the state or by the institution if no official state definition exists.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21296', '11', '21296', NULL, NULL) +VALUES ('000366', 'Assessment Form Number', NULL, 'The number of a given assessment form.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23365', '12', '23365', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000297', 'Tuition Residency Type', NULL, 'A person''s residency status for tuition purposes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21297', '11', '21297', NULL, NULL) +VALUES ('000367', 'Assessment Subtest Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment subtest.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23366', '12', '23366', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000299', 'United States Citizenship Status', NULL, 'An indicator of whether or not the person is a US citizen.', NULL, '1', 'Postsecondary: As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21299', '11', '21299', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000368', 'Assessment Subtest Abbreviation', NULL, 'The shortened name identifying the assessment for use in reference and/or reports.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23367', '12', '23367', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000704', 'Web Site Address', NULL, 'The Uniform Resource Locator (URL) for the unique address of a Web page.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21300', '11', '21300', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000369', 'Assessment Score Metric Type', NULL, 'The specific method used to report the performance and achievement of the assessment. This is the metric that is being used to derive the scores.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23368', '12', '23368', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000302', 'Years of Prior Teaching Experience', NULL, 'The total number of years prior to this job that a person has previously held a teaching position in one or more education institutions.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21302', '11', '21302', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000370', 'Instructional Recommendation', NULL, 'This provides the next steps for instruction for the student based upon the assessment results and student characteristics.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23369', '12', '23369', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000304', 'Early Learning Program Eligibility Category', NULL, 'Category under which the person is eligible for an early childhood program or service.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21304', '11', '21304', NULL, NULL) +VALUES ('000371', 'Assessment Participant Session Language', NULL, 'The language that the assessment is administered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23370', '12', '23370', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000305', 'Proof of Residency Type', NULL, 'An accepted form of proof of residency in the district/county/other locality.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21305', '11', '21305', NULL, NULL) +VALUES ('000382', 'Assessment Objective', NULL, 'This is the objective that the assessment is measuring.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23373', '12', '23373', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000306', 'Immunization Date', NULL, 'The year, month and day of an immunization.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21306', '11', '21306', NULL, NULL) +VALUES ('000383', 'Assessment Accommodation Category', NULL, 'A category of accommodations needed for a given assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23374', '12', '23374', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000307', 'Required Immunization', NULL, 'An indication that an immunization is specifically required by an organization or governing body.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21307', '11', '21307', NULL, NULL) +VALUES ('000384', 'Assessment Secure Indicator', NULL, 'Indicates whether or not the assessment is a secure assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23375', '12', '23375', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000308', 'Vision Screening Status', NULL, 'Status of an examination used to measure a person''s ability to see.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21308', '11', '21308', NULL, NULL) +VALUES ('000385', 'Accommodation Type', NULL, 'The specific accommodation necessary for assessment or instruction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23376', '12', '23376', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000309', 'Hearing Screening Status', NULL, 'Status of an examination used to measure a person''s ability to perceive sounds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21309', '11', '21309', NULL, NULL) +VALUES ('000386', 'Assessment Participant Session Platform Type', NULL, 'The platform with which the assessment was delivered to the student during the assessment session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23377', '12', '23377', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000310', 'Dental Screening Status', NULL, 'The condition of a person''s mouth or oral cavity; more specifically the condition of the hard tissues (i.e., teeth and jaws) and the soft tissues (i.e., gums, tongue, lips, palate, mouth floor, and inner cheeks). Good oral health denotes the absence of clinically manifested disease or abnormalities of the oral cavity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21310', '11', '21310', NULL, NULL) +VALUES ('000388', 'Assessment Subtest Version', NULL, 'The version of the subtest that is included for the assessment.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23379', '12', '23379', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000312', 'Weight at Birth', NULL, 'The weight of a child at birth in pounds and ounces.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21312', '11', '21312', NULL, NULL) +VALUES ('000389', 'Assessment Session Special Circumstance Type', NULL, 'An unusual event occurred during the administration of the assessment. This could include fire alarm, student became ill, etc.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23380', '12', '23380', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000313', 'Weeks of Gestation', NULL, 'The number of weeks during gestational period.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21313', '11', '21313', NULL, NULL) +VALUES ('000390', 'Assessment Item Type', NULL, 'The specific type of assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23382', '12', '23382', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000314', 'Child Developmental Screening Status', NULL, 'The result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21314', '11', '21314', NULL, NULL) +VALUES ('000391', 'Assessment Item Difficulty', NULL, 'The percentage of students who answered the item correctly during trial testing of the item.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23383', '12', '23383', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000315', 'Developmental Evaluation Finding', NULL, 'Child developmental delay/disability determined by procedure used by appropriate qualified personnel.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21315', '11', '21315', NULL, NULL) +VALUES ('000392', 'Assessment Item Characteristic Type', NULL, 'The type of psychometric measure provided for assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23384', '12', '23384', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000316', 'Language Type', NULL, 'An indication of the function and context in which a person uses a language to communicate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21316', '11', '21316', NULL, NULL) +VALUES ('000393', 'Assessment Item Response Choice Pattern', NULL, 'The distribution of responses for each choice in the assessment item.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23385', '12', '23385', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000317', 'ISO 639-2 Language Code', NULL, 'The code for the specific language or dialect that a person uses to communicate.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21317', '11', '21317', NULL, NULL) +VALUES ('000395', 'Assessment Subtest Minimum Value', NULL, 'The minimum value possible for the measurement.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23387', '12', '23387', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000320', 'Individualized Program Type', NULL, 'A designation of the type of program developed for a student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21320', '11', '21320', NULL, NULL) +VALUES ('000396', 'Assessment Subtest Maximum Value', NULL, 'The maximum value for the measurement.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23388', '12', '23388', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000321', 'Early Childhood Services Received', NULL, 'The types of service that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21321', '11', '21321', NULL, NULL) +VALUES ('000397', 'Assessment Subtest Optimal Value', NULL, 'The optimal value for this measurement.', 'Alphanumeric - 30 characters maximum', '0', 'The Optimal Value may be the same as the Maximum Value, the Minimum Value, or something in between.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23389', '12', '23389', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000323', 'Application Date', NULL, 'The year, month and day on which an individual application is received by the organization.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21323', '11', '21323', NULL, NULL) +VALUES ('000398', 'Assessment Item Distractor Analysis', NULL, 'The analysis of the distractors provided for a specific assessment.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23390', '12', '23390', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000324', 'Enrollment Date', NULL, 'The year, month and day on which a person is considered officially enrolled in the program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21324', '11', '21324', NULL, NULL) +VALUES ('000400', 'Assessment Item Stem', NULL, 'The statement of the question or prompt for an Assessment Item to which the student responds.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23392', '12', '23392', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000325', 'Participation in School Food Service Programs', NULL, 'An indication of a student''s participation in free, reduced price, full price breakfast, lunch, snack, supper, and milk programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21325', '11', '21325', NULL, NULL) +VALUES ('000402', 'Assessment Item Response Duration', NULL, 'The total amount of time in seconds or milliseconds that a person spent responding to a given assessment item.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23394', '12', '23394', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000326', 'Service Entry Date', NULL, 'The year, month and day on which a person begins to receive early intervention, special education or other services.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21326', '11', '21326', NULL, NULL) +VALUES ('000403', 'Assessment Item Allotted Time', NULL, 'The amount of time allotted for a specific item.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23395', '12', '23395', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000327', 'Service Exit Date', NULL, 'The year, month and day on which a person stops receiving early intervention or special education services.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21327', '11', '21327', NULL, NULL) +VALUES ('000405', 'Assessment Item Response Status', NULL, 'The status of the response for a given item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23396', '12', '23396', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000329', 'Custodial Parent or Guardian Indicator', NULL, 'An indication that a person has legal custody of a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21328', '11', '21328', NULL, NULL) +VALUES ('000406', 'Assessment Item Response Aid Set Used', NULL, 'A tool or aid set used while viewing the item. This can include things like a calculator, reference tools, etc.', 'Alphanumeric - 30 characters maximum', '0', 'This a permissible set of tools suggested for use for successful completion of a test question, not an accommodation.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23397', '12', '23397', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000330', 'Number of People in Family', NULL, 'Total number of persons in immediate family. Family means for the purposes of the regulations in this part all persons: (i) Living in the same household who are: (A) Supported by the income of the parent(s) or guardian(s) of the child enrolling or participating in the program; or (B) Related to the child by blood, marriage, or adoption; or (ii) Related to the child enrolling or participating in the program as parents or siblings, by blood, marriage, or adoption.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21329', '11', '21329', NULL, NULL) +VALUES ('000407', 'Assessment Participant Session Time Assessed', NULL, 'The overall time a learner actually spent during the assessment session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23398', '12', '23398', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000331', 'Number of People in Household', NULL, 'Total number of persons residing in the same household.', 'Integer - greater than or equal to 0', '0', 'For FAFSA, this includes the number of family members that are in the household, including the student, their spouse, children, and any other persons living in the household to whom they will provide more than half of their support', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21330', '11', '21330', NULL, NULL) +VALUES ('000408', 'Assessment Session Allotted Time', NULL, 'The duration of time allotted for the assessment session.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23399', '12', '23399', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000332', 'Family Income', NULL, 'Total income of family from all sources. Income includes money, wages or salary before deductions; net income from non-farm self-employment; net income from farm self-employment; regular payments from Social Security or railroad retirement; payments from unemployment compensation, strike benefits from union funds, workers’ compensation, veterans benefits (with the exception noted below), public assistance (including Temporary Assistance for Needy Families, Supplemental Security Income, Emergency Assistance money payments, and non-Federally funded General Assistance or General Relief money payments); training stipends; alimony, child support, and military family allotments or other regular support from an absent family member or someone not living in the household; private pensions, government employee pensions (including military retirement pay), and regular insurance or annuity payments; college or university scholarships, grants, fellowships, and assistantships; and dividends, interest, net rental income, net royalties, and periodic receipts from estates or trusts; and net gambling or lottery winnings.', 'Numeric - up to 2 digits after decimal place', '0', 'Family Income is calculated based on the method specified by “Income Calculation Method.”', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21331', '11', '21331', NULL, NULL) +VALUES ('000410', 'Assessment Session Administrator Identifier', NULL, 'The unique identifier of the person overseeing the administration of an assessment. This is typically at a district or school level or at an administrator at a testing facility.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23400', '12', '23400', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000333', 'Source of Family Income', NULL, 'Sources of total family income.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21332', '11', '21332', NULL, NULL) +VALUES ('000411', 'Assessment Session Proctor Identifier', NULL, 'The unique identifier of the person overseeing the assessment session in the setting.', 'Alphanumeric - 40 characters maximum', '0', 'This could be the identifier for a teacher, a paraprofessional or individual at a testing site.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23401', '12', '23401', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000334', 'Income Calculation Method', NULL, 'The calculation method used by a program to determine total family income.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21333', '11', '21333', NULL, NULL) +VALUES ('000415', 'Assessment Type Administered', NULL, 'The type of assessment administered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23405', '12', '23405', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000335', 'Insurance Coverage', NULL, 'The nature of insurance covering an person''s hospitalization and other health or medical care.', NULL, '1', 'Use cases may utilize subsets of the option set. For example, the option set for Parent/Guardian may not include the "Children''s health insurance program" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21334', '11', '21334', NULL, NULL) +VALUES ('000417', 'Assessment Performance Level Score Metric', NULL, 'The metric or scale used for score reporting.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23407', '12', '23407', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000336', 'Dental Insurance Coverage Type', NULL, 'The source of insurance covering an person''s dental care.', NULL, '1', 'Use cases may utilize subsets of the option set. For example, the option set for Parent/Guardian may not include the "Children''s health insurance program" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21335', '11', '21335', NULL, NULL) +VALUES ('000418', 'Assessment Performance Level Lower Cut Score', NULL, 'Lowest possible score for the performance level.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23408', '12', '23408', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000341', 'Level of Specialization in Early Learning', NULL, 'The extent to which a person concentrates upon a particular subject matter area during his or her period of study at an educational institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21340', '11', '21340', NULL, NULL) +VALUES ('000419', 'Assessment Performance Level Upper Cut Score', NULL, 'Highest possible score for the performance level.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23409', '12', '23409', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000342', 'Degree or Certificate Title or Subject', NULL, 'The name of the degree or certificate earned by a person. This includes honorary degrees conferred upon an individual.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21341', '11', '21341', NULL, NULL) +VALUES ('000421', 'Rubric Title', NULL, 'The title of the rubric.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23411', '12', '23411', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000343', 'Degree or Certificate Type', NULL, 'The type of degree or certificate earned by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21342', '11', '21342', NULL, NULL) +VALUES ('000481', 'School Improvement Exit Date', NULL, 'Date the school exited school improvement status.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23472', '12', '23472', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000344', 'Degree or Certificate Conferring Date', NULL, 'The year, month and day on which a person received a degree or certificate.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21343', '11', '21343', NULL, NULL) +VALUES ('000422', 'Rubric Identifier', NULL, 'An identifier assigned to a rubric.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23412', '12', '23412', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000345', 'Early Childhood Credential', NULL, 'The credential related to early childhood education or development held by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21344', '11', '21344', NULL, NULL) +VALUES ('000423', 'Rubric URL Reference', NULL, 'The URL location where the rubric may be found.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23413', '12', '23413', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000346', 'Employment Start Date', NULL, 'The year, month and day on which a person began self-employment or employment with an organization or institution.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21345', '11', '21345', NULL, NULL) +VALUES ('000424', 'State ANSI Code', NULL, 'The American National Standards Institute (ANSI) two-digit code for the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23414', '12', '23414', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000347', 'Employment Status', NULL, 'The condition under which a person has agreed to serve as an employee.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21346', '11', '21346', NULL, NULL) +VALUES ('000425', 'Person Relationship Type', NULL, 'The nature of a person''s relationship to another person.', NULL, '1', 'For implementation in the CEDS Integrated Data Store (IDS), the "person" in the description would be the person referred to in the PersonId column in the IDS. The "related person" in the description would be the person referred to in the "RelatedPersonId" in the IDS. Example: Foster mother - The person (PersonId) is the related person''s (RelatedPersonId) Foster mother.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23415', '12', '23415', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000348', 'Initial License Date', NULL, 'The year, month and day on which a program or center received its initial license.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21347', '11', '21347', NULL, NULL) +VALUES ('000426', 'City of Birth', NULL, ' The name of the city in which a person was born.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23416', '12', '23416', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000349', 'Continuing License Date', NULL, 'The year, month and day on which a program or center received its continuing license.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21348', '11', '21348', NULL, NULL) +VALUES ('000427', 'State of Birth Abbreviation', NULL, 'The abbreviation for the name of the state (within the United States) or extra-state jurisdiction in which a person was born.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23417', '12', '23417', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000350', 'License Exempt', NULL, 'The program or center is legally exempt from licensing.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21349', '11', '21349', NULL, NULL) +VALUES ('000428', 'Birthdate Verification', NULL, 'The evidence by which a child''s date of birth is confirmed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23418', '12', '23418', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000351', 'Operation Date', NULL, 'The year, month and day on which a program or center began operation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21350', '11', '21350', NULL, NULL) +VALUES ('000429', 'Continuation of Services Reason', NULL, 'Reason why the student is being served under the continuation of services provision of the MEP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23419', '12', '23419', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000353', 'Service Option Variation', NULL, 'Nature of early childhood program, class or group in which a person is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21352', '11', '21352', NULL, NULL) +VALUES ('000430', 'Migrant Education Program Eligibility Expiration Date', 'MEP Eligibility Expiration Date', 'The year, month, and day on which the child is no longer eligible for the Migrant Education Program. This date should initially be a date equal to 36 months from the Qualifying Arrival Date to indicate the end of MEP eligibility or the student reaches 22 years of age, whichever comes first.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23420', '12', '23420', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000354', 'Hours Available Per Day', NULL, 'The number of hours per day the site or classroom is open for children to attend.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21353', '11', '21353', NULL, NULL) +VALUES ('000431', 'Multiple Birth Indicator', NULL, 'An indication that the person is a twin, triplet, etc.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23421', '12', '23421', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000355', 'Days Available Per Week', NULL, 'The number of days per week the site or classroom is open for children to attend.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21354', '11', '21354', NULL, NULL) +VALUES ('000432', 'Migrant Student Qualifying Arrival Date', NULL, 'The qualifying arrival date (QAD) is the month, date, and year that the child completed a move with his or her parent to enable the parent to find qualifying employment. In some cases, the child and worker may not always move together, in which case the QAD would be the date that the child joins the worker who has already moved, or the date the worker joins the child who has already moved. The QAD is the date the child''s eligibility for the Migrant Education Program begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23422', '12', '23422', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000356', 'Early Childhood Setting', NULL, 'The site or setting in which early childhood care, education, and/or services are provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21355', '11', '21355', NULL, NULL) +VALUES ('000433', 'Qualifying Move From City', NULL, 'The name of the city in which the child resided prior to the qualifying move.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23423', '12', '23423', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000357', 'Quality Rating and Improvement System Participation', 'QRIS Participation', 'Program site participates in a Quality Rating and Improvement System (QRIS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21356', '11', '21356', NULL, NULL) +VALUES ('000434', 'Qualifying Move From Country', NULL, 'The abbreviation code for a country (other than the US) area in which the child resided prior to the qualifying move.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23424', '12', '23424', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000358', 'Quality Rating and Improvement System Score', 'QRIS Score', 'The score, rating or level received by a program for its Quality Rating and Improvement System (QRIS).', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21357', '11', '21357', NULL, NULL) +VALUES ('000435', 'Qualifying Move From State', NULL, 'The postal abbreviation code for a state (within the United States) or outlying area in which the child resided prior to the qualifying move.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23425', '12', '23425', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000010', 'Address Type for Learner or Family', NULL, 'The type of address listed for a learner or a parent, guardian, family member or related person.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21358', '11', '21358', NULL, NULL) +VALUES ('000436', 'Designated Graduation School Identifier', NULL, 'The NCES school identification number that identifies the school or facility from which a student expects to graduate.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23426', '12', '23426', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000361', 'Enrollment in Postsecondary Award Type', NULL, 'An indicator of the award level in which the person is currently enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21360', '11', '21360', NULL, NULL) +VALUES ('000437', 'Migrant Education Program Enrollment Type', 'MEP Enrollment Type', 'The type of school/migrant education project in which instruction and/or support services are provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23427', '12', '23427', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000362', 'Instructional Activity Hours Completed', NULL, 'The number of credit hours and/or contact hours successfully completed by a person during a term.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21361', '11', '21361', NULL, NULL) +VALUES ('000438', 'Immunization Record Flag', NULL, 'Indicates whether the school or MEP program has immunization records on file for the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23428', '12', '23428', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000363', 'Financial Aid Award Status', NULL, 'An indication of whether the financial aid type being reported is aid that has been awarded, accepted or dispersed.', NULL, '1', 'Linked to financial aid type, financial aid amount.
Note: For any given individual this field may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21362', '11', '21362', NULL, NULL) +VALUES ('000439', 'Medical Alert Indicator', NULL, 'Alert indicator for a medical/health condition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23429', '12', '23429', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000366', 'Assessment Form Number', NULL, 'The number of a given assessment form.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21365', '11', '21365', NULL, NULL) +VALUES ('000440', 'Migrant Education Program Project Based', 'MEP Project Based', 'Indicates the type of MEP project based on the location where the MEP services are held.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23430', '12', '23430', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000367', 'Assessment Subtest Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment subtest.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21366', '11', '21366', NULL, NULL) +VALUES ('000442', 'Appealed Adequate Yearly Progress Designation', 'Appealed AYP Designation', 'An indication that a school or district appealed its AYP designation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23432', '12', '23432', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000368', 'Assessment Subtest Abbreviation', NULL, 'The shortened name identifying the assessment for use in reference and/or reports.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21367', '11', '21367', NULL, NULL) +VALUES ('000443', 'Adequate Yearly Progress Appeal Changed Designation', 'AYP Appeal Changed Designation', 'An indication that the appeal resulted in a change in a school or district''s AYP designation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23433', '12', '23433', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000369', 'Assessment Score Metric Type', NULL, 'The specific method used to report the performance and achievement of the assessment. This is the metric that is being used to derive the scores.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21368', '11', '21368', 'Updated', 'Added new option to the existing option set.') +VALUES ('000444', 'Adequate Yearly Progress Appeal Process Date', 'AYP Appeal Process Date', 'The last date that an appeal of an AYP designation was processed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23434', '12', '23434', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000370', 'Instructional Recommendation', NULL, 'This provides the next steps for instruction for the student based upon the assessment results and student characteristics.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21369', '11', '21369', NULL, NULL) +VALUES ('000445', 'State Transferability of Funds', NULL, 'Did the State transfer funds under the State Transferability authority of Section 6123(a)', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23435', '12', '23435', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000371', 'Assessment Participant Session Language', NULL, 'The language that the assessment is administered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21370', '11', '21370', NULL, NULL) +VALUES ('000446', 'Local Education Agency Transferability of Funds', 'LEA Transferability of Funds', 'LEA notified the State that they were transferring funds under the LEA Transferability authority of Section 6123(b).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23436', '12', '23436', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000382', 'Assessment Objective', NULL, 'This is the objective that the assessment is measuring.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21373', '11', '21373', NULL, NULL) +VALUES ('000447', 'Title III Language Instruction Program Type', NULL, 'The type of Title III language instructional education programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23437', '12', '23437', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000383', 'Assessment Accommodation Category', NULL, 'A category of accommodations needed for a given assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21374', '11', '21374', NULL, NULL) +VALUES ('000448', 'Instruction Language', NULL, 'The language of instruction, other than English, used in the program or course.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23438', '12', '23438', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000384', 'Assessment Secure Indicator', NULL, 'Indicates whether or not the assessment is a secure assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21375', '11', '21375', NULL, NULL) +VALUES ('000449', 'Barrier to Educating Homeless', NULL, 'Barriers to the enrollment and success of homeless children and youths.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23439', '12', '23439', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000385', 'Accommodation Type', NULL, 'The specific accommodation necessary for assessment or instruction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21376', '11', '21376', NULL, NULL) +VALUES ('000451', 'Local Education Agency Funds Transfer Type', 'LEA Funds Transfer Type', 'An indication of the type of transfer for an LEAs that transferred funds from an eligible program to another eligible program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23441', '12', '23441', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000386', 'Assessment Participant Session Platform Type', NULL, 'The platform with which the assessment was delivered to the student during the assessment session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21377', '11', '21377', NULL, NULL) +VALUES ('000452', 'Funds Transfer Amount', NULL, 'The total amount of FY appropriated funds transferred from and to each eligible program.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23442', '12', '23442', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000388', 'Assessment Subtest Version', NULL, 'The version of the subtest that is included for the assessment.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21379', '11', '21379', NULL, NULL) +VALUES ('000453', 'State Assessment Standards Funding', NULL, 'The percentage of funds used to pay the costs of the development of the State assessments and standards required by section 1111(b).', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23443', '12', '23443', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000389', 'Assessment Session Special Circumstance Type', NULL, 'An unusual event occurred during the administration of the assessment. This could include fire alarm, student became ill, etc.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21380', '11', '21380', NULL, NULL) +VALUES ('000454', 'State Assessment Administration Funding', NULL, 'The percentage of funds used to administer assessments required by section 1111(b) or to carry out other activities described in section 6111 and other activities related to ensuring that the State’s schools and local educational agencies are held accountable for results.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23444', '12', '23444', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000390', 'Assessment Item Type', NULL, 'The specific type of assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21382', '11', '21382', NULL, NULL) +VALUES ('000455', 'Date State Received Title III Allocation', NULL, 'Annual date the State receives the Title III allocation from U.S. Department of Education (ED).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23445', '12', '23445', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000391', 'Assessment Item Difficulty', NULL, 'The percentage of students who answered the item correctly during trial testing of the item.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21383', '11', '21383', NULL, NULL) +VALUES ('000456', 'Date Title III Funds Available to Subgrantees', NULL, 'Annual date that Title III funds are available to approved subgrantees.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23446', '12', '23446', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000392', 'Assessment Item Characteristic Type', NULL, 'The type of psychometric measure provided for assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21384', '11', '21384', NULL, NULL) +VALUES ('000457', 'Number of Days for Title III Subgrants', NULL, 'Average number of days for States receiving Title III funds to make subgrants to subgrantees beginning from July 1 of each year, except under conditions where funds are being withheld.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23447', '12', '23447', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000393', 'Assessment Item Response Choice Pattern', NULL, 'The distribution of responses for each choice in the assessment item.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21385', '11', '21385', NULL, NULL) +VALUES ('000461', 'Innovative Dollars Spent', NULL, 'The total Title V, Part A funds expended by LEAs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23451', '12', '23451', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000395', 'Assessment Subtest Minimum Value', NULL, 'The minimum value possible for the measurement.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21387', '11', '21387', NULL, NULL) +VALUES ('000462', 'Innovative Dollars Spent on Strategic Priorities', NULL, 'The total amount of Title V, Part A funds expended by LEAs for the four strategic priorities.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23452', '12', '23452', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000396', 'Assessment Subtest Maximum Value', NULL, 'The maximum value for the measurement.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21388', '11', '21388', NULL, NULL) +VALUES ('000463', 'Migrant Education Program Project Type', 'MEP Project Type', 'Type of project funded in whole or in part by MEP funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23453', '12', '23453', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000397', 'Assessment Subtest Optimal Value', NULL, 'The optimal value for this measurement.', 'Alphanumeric - 30 characters maximum', '0', 'The Optimal Value may be the same as the Maximum Value, the Minimum Value, or something in between.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21389', '11', '21389', NULL, NULL) +VALUES ('000464', 'Innovative Programs Funds Received', NULL, 'The total Title V, Part A funds received by LEAs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23454', '12', '23454', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000398', 'Assessment Item Distractor Analysis', NULL, 'The analysis of the distractors provided for a specific assessment.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21390', '11', '21390', NULL, NULL) +VALUES ('000466', 'Literacy Assessment Administered Type', NULL, 'The type of literacy test administered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23456', '12', '23456', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000400', 'Assessment Item Stem', NULL, 'The statement of the question or prompt for an Assessment Item to which the student responds.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21392', '11', '21392', NULL, NULL) +VALUES ('000467', 'Literacy Goal Met Status', NULL, 'The participant showed "significant learning gains" on measures of reading, the definition of which is determined at the State level.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23457', '12', '23457', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000402', 'Assessment Item Response Duration', NULL, 'The total amount of time in seconds or milliseconds that a person spent responding to a given assessment item.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21394', '11', '21394', NULL, NULL) +VALUES ('000468', 'Literacy Post Test Status', NULL, 'The participant completed a literacy post-test.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23458', '12', '23458', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000403', 'Assessment Item Allotted Time', NULL, 'The amount of time allotted for a specific item.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21395', '11', '21395', NULL, NULL) +VALUES ('000469', 'Literacy Pre Test Status', NULL, 'The participant completed a literacy pre-test.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23459', '12', '23459', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000405', 'Assessment Item Response Status', NULL, 'The status of the response for a given item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21396', '11', '21396', NULL, NULL) +VALUES ('000470', 'Number of Immigrant Program Subgrants', NULL, 'The number of immigrant program [3114(d)(1)] subgrants.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23460', '12', '23460', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000406', 'Assessment Item Response Aid Set Used', NULL, 'A tool or aid set used while viewing the item. This can include things like a calculator, reference tools, etc.', 'Alphanumeric - 30 characters maximum', '0', 'This a permissible set of tools suggested for use for successful completion of a test question, not an accommodation.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21397', '11', '21397', NULL, NULL) +VALUES ('000471', 'Safe and Drug Free Indicator Name', NULL, 'The name of the performance indicator for student behaviors under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23461', '12', '23461', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000407', 'Assessment Participant Session Time Assessed', NULL, 'The overall time a learner actually spent during the assessment session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21398', '11', '21398', NULL, NULL) +VALUES ('000472', 'Safe and Drug Free Instrument', NULL, 'The instrument or data source for reported performance indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23462', '12', '23462', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000408', 'Assessment Session Allotted Time', NULL, 'The duration of time allotted for the assessment session.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21399', '11', '21399', NULL, NULL) +VALUES ('000473', 'Safe and Drug Free Collection Frequency', NULL, ' The frequency of data collection for performance indicator under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23463', '12', '23463', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000410', 'Assessment Session Administrator Identifier', NULL, 'The unique identifier of the person overseeing the administration of an assessment. This is typically at a district or school level or at an administrator at a testing facility.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21400', '11', '21400', NULL, NULL) +VALUES ('000474', 'Safe and Drug Free Year Most Recent Collection', NULL, 'The academic year of the most recent collection of the performance indicator under the Sage and Drug-Free Schools and Communities Act.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23464', '12', '23464', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000411', 'Assessment Session Proctor Identifier', NULL, 'The unique identifier of the person overseeing the assessment session in the setting.', 'Alphanumeric - 40 characters maximum', '0', 'This could be the identifier for a teacher, a paraprofessional or individual at a testing site.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21401', '11', '21401', NULL, NULL) +VALUES ('000475', 'Safe and Drug Free Target', NULL, 'The targeted performance for the given indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23465', '12', '23465', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000415', 'Assessment Type Administered', NULL, 'The type of assessment administered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21405', '11', '21405', 'Updated', 'Changed Name, Definition, and Technical Name to reflect a broader use.') +VALUES ('000476', 'Safe and Drug Free Performance', NULL, 'Actual performance for the given indicator of student behavior under the Safe and Drug-Free Schools and Communities Act', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23466', '12', '23466', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000417', 'Assessment Performance Level Score Metric', NULL, 'The metric or scale used for score reporting.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21407', '11', '21407', NULL, NULL) +VALUES ('000477', 'Safe and Drug Free Baseline', NULL, 'The baseline of the performance indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23468', '12', '23468', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000418', 'Assessment Performance Level Lower Cut Score', NULL, 'Lowest possible score for the performance level.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21408', '11', '21408', NULL, NULL) +VALUES ('000478', 'Safe and Drug Free Baseline Year', NULL, 'The academic year the baseline was established.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23469', '12', '23469', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000419', 'Assessment Performance Level Upper Cut Score', NULL, 'Highest possible score for the performance level.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21409', '11', '21409', NULL, NULL) +VALUES ('000479', 'School Improvement Reserved Funds Percentage', NULL, 'An indication of the percentage of the Title I, Part A allocation that the SEA reserved in accordance with Section 1003(a) of ESEA and §200.100(a) of ED''s regulations governing the reservation of funds for school improvement under Section 1003(a) of ESEA.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23470', '12', '23470', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000421', 'Rubric Title', NULL, 'The title of the rubric.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21411', '11', '21411', NULL, NULL) +VALUES ('000480', 'School Improvement Allocation', NULL, 'The amount of Section 1003(a) and 1003(g) allocations to LEAs and Schools.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23471', '12', '23471', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000422', 'Rubric Identifier', NULL, 'An identifier assigned to a rubric.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21412', '11', '21412', NULL, NULL) +VALUES ('001116', 'Assessment Item Body Hottext Interaction XML', NULL, 'The hottext interaction presents a set of choices to the candidate represented as selectable runs of text embedded within a surrounding context, such as a simple passage of text. Like choiceInteraction, the candidate''s task is to select one or more of the choices, up to a maximum of maxChoices. The interaction is initialized from the defaultValue of the associated response variable, a NULL value indicating that no choices are selected (the usual case). The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24093', '12', '24093', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000423', 'Rubric URL Reference', NULL, 'The URL location where the rubric may be found.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21413', '11', '21413', NULL, NULL) +VALUES ('001117', 'Assessment Item Body Order Interaction XML', NULL, 'In an order interaction the candidate''s task is to reorder the choices, the order in which the choices are displayed initially is significant. By default the candidate''s task is to order all of the choices but a subset of the choices can be requested using the maxChoices and minChoices attributes. When specified the candidate must select a subset of the choices and impose an ordering on them. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24094', '12', '24094', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000424', 'State ANSI Code', NULL, 'The American National Standards Institute (ANSI) two-digit code for the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21414', '11', '21414', 'Updated', 'Added new options to the existing option set.') +VALUES ('001118', 'Assessment Item Body Position Object Interaction XML', NULL, 'The position object interaction consists of a single image which must be positioned on another graphic image (the stage) by the candidate. Like selectPointInteraction, the associated response may have an areaMapping that scores the response on the basis of comparing it against predefined areas but the delivery engine must not indicate these areas of the stage. Only the actual position(s) selected by the candidate shall be indicated. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24095', '12', '24095', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000425', 'Person Relationship Type', NULL, 'The nature of a person''s relationship to another person.', NULL, '1', 'For implementation in the CEDS Integrated Data Store (IDS), the "person" in the description would be the person referred to in the PersonId column in the IDS. The "related person" in the description would be the person referred to in the "RelatedPersonId" in the IDS. Example: Foster mother - The person (PersonId) is the related person''s (RelatedPersonId) Foster mother.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21415', '11', '21415', NULL, NULL) +VALUES ('001119', 'Assessment Item Body Text Entry Interaction XML', NULL, 'A textEntry interaction obtains a simple piece of text from the candidate. Like inlineChoiceInteraction, the delivery engine must allow the candidate to review their choice within the context of the surrounding text. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24096', '12', '24096', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000426', 'City of Birth', NULL, ' The name of the city in which a person was born.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21416', '11', '21416', NULL, NULL) +VALUES ('001120', 'Assessment Item Body Extended Text Interaction XML', NULL, 'An extended text interaction allows the candidate to enter an extended amount of text. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24097', '12', '24097', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000427', 'State of Birth Abbreviation', NULL, 'The abbreviation for the name of the state (within the United States) or extra-state jurisdiction in which a person was born.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21417', '11', '21417', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001121', 'Assessment Item Body End Attempt Interaction XML', NULL, 'The end attempt interaction is a special type of interaction which allows item authors to provide the candidate with control over the way in which the candidate terminates an attempt. The candidate can use the interaction to terminate the attempt (triggering response processing) immediately, typically to request a hint. It must be bound to a response variable with base-type boolean and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24098', '12', '24098', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000428', 'Birthdate Verification', NULL, 'The evidence by which a child''s date of birth is confirmed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21418', '11', '21418', NULL, NULL) +VALUES ('001222', 'Assessment Item Body Upload Interaction XML', NULL, 'The upload interaction allows the candidate to upload a pre-prepared file representing their response. It must be bound to a response variable with base-type file and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24099', '12', '24099', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000429', 'Continuation of Services Reason', NULL, 'Reason why the student is being served under the continuation of services provision of the MEP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21419', '11', '21419', NULL, NULL) +VALUES ('001123', 'Assessment Item Body Associate Interaction XML', NULL, 'An associate interaction presents candidates with a number of choices and allows them to create associations between them. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24100', '12', '24100', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000430', 'Migrant Education Program Eligibility Expiration Date', 'MEP Eligibility Expiration Date', 'The year, month, and day on which the child is no longer eligible for the Migrant Education Program. This date should initially be a date equal to 36 months from the Qualifying Arrival Date to indicate the end of MEP eligibility or the student reaches 22 years of age, whichever comes first.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21420', '11', '21420', NULL, NULL) +VALUES ('001127', 'Assessment Need Type', NULL, 'A type of need identified for a learner as part of an assessment need profile.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24101', '12', '24101', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000431', 'Multiple Birth Indicator', NULL, 'An indication that the person is a twin, triplet, etc.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21421', '11', '21421', NULL, NULL) +VALUES ('001130', 'Assessment Participant Session Security Issue', NULL, 'Describes an issue related to the security of a testing instrument identified during a specific instance of delivering an assessment to a specific person during a specific time period.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24102', '12', '24102', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000432', 'Migrant Student Qualifying Arrival Date', NULL, 'The qualifying arrival date (QAD) is the month, date, and year that the child completed a move with his or her parent to enable the parent to find qualifying employment. In some cases, the child and worker may not always move together, in which case the QAD would be the date that the child joins the worker who has already moved, or the date the worker joins the child who has already moved. The QAD is the date the child''s eligibility for the Migrant Education Program begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21422', '11', '21422', NULL, NULL) +VALUES ('001131', 'Assessment Item APIP Response Processing Template URL', NULL, 'These templates are described using the processing language defined in IMS Global APIP specification and are distributed (in XML form) along with it. Delivery engines that support generalized response processing do not need to implement special mechanisms to support them as a template file can be parsed directly while processing the assessment item that refers to it. This element provides the URL for the template.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24103', '12', '24103', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000433', 'Qualifying Move From City', NULL, 'The name of the city in which the child resided prior to the qualifying move.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21423', '11', '21423', NULL, NULL) +VALUES ('001132', 'Assessment Item APIP Response Processing XML', NULL, 'Response processing is the process by which the Delivery Engine assigns outcomes based on the learner''s responses. The outcomes may be used to provide feedback to the learner Feedback is either provided immediately following the end of the learner''s attempt or it is provided at some later time, perhaps as part of a summary report on the item session. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24104', '12', '24104', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000434', 'Qualifying Move From Country', NULL, 'The abbreviation code for a country (other than the US) area in which the child resided prior to the qualifying move.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21424', '11', '21424', NULL, NULL) +VALUES ('001133', 'Assessment Item APIP Response Declaration XML', NULL, 'Response declarations state what the response variables include. The response declaration may assign an optional correct response. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24105', '12', '24105', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000435', 'Qualifying Move From State', NULL, 'The postal abbreviation code for a state (within the United States) or outlying area in which the child resided prior to the qualifying move.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21425', '11', '21425', NULL, NULL) +VALUES ('001134', 'Assessment Item APIP Outcome Declaration XML', NULL, 'Outcome variables are declared by outcome declarations. Their value is set either from a default given in the declaration itself or by a responseRule during response processing. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24106', '12', '24106', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001040', 'Assessment Need Signing Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the type of signing preferred by the user.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22044', '11', '22044', NULL, NULL) +VALUES ('001135', 'Assessment Item APIP Template Declaration XML', NULL, 'Template declarations declare item variables that are to be used specifically for the purposes of cloning items. They can have their value set only during template processing. They are referred to within the item body in order to individualize the clone and possibly also within the response Processing rules if the cloning process affects the way the item is scored. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24107', '12', '24107', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001041', 'Assessment Need Alternative Representation Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default presentation mode of the associated Alternative Representations accessibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22045', '11', '22045', NULL, NULL) +VALUES ('001136', 'Assessment Item APIP Template Processing XML', NULL, 'Template processing consists of one or more template rules that are followed by the cloning engine or delivery system in order to assign values to the template variables. Template processing is identical in form to responseProcessing except that the purpose is to assign values to template variables, not outcome variables. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24108', '12', '24108', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001042', 'Assessment Need Spoken Source Preference Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred spoken audio form.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22046', '11', '22046', NULL, NULL) +VALUES ('001137', 'Assessment Item APIP Modal Feedback XML', NULL, 'Modal feedback is shown to the candidate directly following response processing. The value of an outcome variable is used in conjunction with the showHide and identifier attributes to determine whether or not the feedback is shown in a similar way to feedbackElement. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24109', '12', '24109', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001043', 'Assessment Need Read at Start Preference', NULL, 'Used as part of an Assessment Personal Needs Profile to define if the spoken play-back should commence from the start of a recording or not.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22048', '11', '22048', NULL, NULL) +VALUES ('001138', 'Assessment Item APIP Item Body XML', NULL, 'The item body contains the text, graphics, media objects, and interactions that describe the item''s content and information about how it is structured. The body is presented by combining it with stylesheet information, either explicitly or implicitly using the default style rules of the delivery or authoring system. This element contains the appropriate XML from the IMS Global APIP Specification defining the various item body interactions.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24110', '12', '24110', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001044', 'Assessment Need User Spoken Preference Type', NULL, 'Used as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22049', '11', '22049', NULL, NULL) +VALUES ('001139', 'Assessment Item Adaptive Indicator', NULL, 'This indicator determines whether an assessment item is an adaptive item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24111', '12', '24111', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001045', 'Assessment Need Directions Only', NULL, 'Defines as part of an Assessment Personal Needs Profile whether or not the verbal alternative content presentation should be applied to directive content only.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22050', '11', '22050', NULL, NULL) +VALUES ('001152', 'Assessment Participant Session Platform User Agent', NULL, ' A list of product tokens (keywords) with optional comments that identifies the client hardware and software with which the assessment was delivered to the student during the assessment session.', 'Alphanumeric - 512 characters maximum', '0', 'Implementation Note: The recommended approach is to store the User-Agent string returned as part of an HTTP header. For example, an assessment session delivery via iPad might have "Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Mobile/7B405"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24112', '12', '24112', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001046', 'Assessment Need Masking Type', NULL, 'Specifies as part of an Assessment Personal Needs Profile the type of masks the user is able to create to cover portions of the question until needed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22051', '11', '22051', NULL, NULL) +VALUES ('001153', 'Credential Definition Criteria URL', 'Credential Criteria URL', 'The Uniform Resource Locator (URL) for the unique address of a web page describing the competency-based completion criteria for the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24113', '12', '24113', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001047', 'Assessment Need Text Messaging String', NULL, 'The text string that is to be displayed to the user as an expression of encouragement when Masking is specified as part of an Assessment Personal Needs Profile. It is left to the system to determine when to display this string.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22052', '11', '22052', NULL, NULL) +VALUES ('001154', 'Competency Definition Text Complexity Minimum Value', 'Learning Standard Item Text Complexity Minimum Value, Competency Item Text Complexity Minimum Value', 'The minimum value in the range of text complexity applicable to a language competency definition using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24114', '12', '24114', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001048', 'Assessment Need Sound File URL', NULL, 'The URI of the sound file that is to be played to the user as an expression of encouragement when Masking is specified as part of an Assessment Personal Needs Profile. It is left to the system to determine when to play this audio file.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22053', '11', '22053', NULL, NULL) +VALUES ('001155', 'Competency Definition Text Complexity Maximum Value', 'Learning Standard Item Text Complexity Maximum Value, Competency Item Text Complexity Maximum Value', 'The maximum value in the range of text complexity applicable to a language competency definition using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24115', '12', '24115', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001049', 'Assessment Need Time Multiplier', NULL, 'Defines the multiplier to be applied to the time limit to determine the total testing time allowed when Additional Testing Time is specified as part of an Assessment Personal Needs Profile. If the value is ‘unlimited’ then there is no time limit for the test.', 'Alphanumeric - 9 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22055', '11', '22055', NULL, NULL) +VALUES ('001157', 'Accommodation Other Description', NULL, 'The description of the accommodation when ''Accommodation Type'' is set to ''Other''.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24116', '12', '24116', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001050', 'Assessment Need Line Reader Highlight Color', NULL, 'The color defined as part of an Assessment Personal Needs Profile to be used to highlight the point of line reader activity i.e. the line being read.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22056', '11', '22056', NULL, NULL) +VALUES ('001158', 'Assessment Item Interaction Type', NULL, 'The assessment item body interaction type as defined by IMS Global specifications.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24117', '12', '24117', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001051', 'Assessment Need Overlay Color', NULL, 'This is the preferred color for the overlay for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22057', '11', '22057', NULL, NULL) +VALUES ('001162', 'Assessment Registration Test Attempt Identifier', NULL, 'A unique identifier for the test attempt assigned by the delivery system.', 'Alphanumeric - 40 characters maximum', '0', 'For paper-based tests this is typically a batch/stack/serial number and for online tests it is likely a unique internal identifier. Used to locate the original attempt.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24119', '12', '24119', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001052', 'Assessment Need Foreground Color', NULL, 'This is the preferred Foreground color for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22058', '11', '22058', NULL, NULL) +VALUES ('001163', 'Credential Award Start Date', 'Credential Start Date', 'The date on which the qualification, achievement, personal or organizational quality, or aspect of an identity was conferred.', 'YYYY-MM-DD', '0', 'Diploma or Credential Award Date is the same concept but used when only month and year are known or needed.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24120', '12', '24120', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001053', 'Assessment Need Background Color', NULL, 'This is the preferred Background color for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22059', '11', '22059', NULL, NULL) +VALUES ('001164', 'Credential Award End Date', 'Credential End Date', 'The date, if any, on which the qualification, achievement, personal or organizational quality, or aspect of an identity expires or requires renewal.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24121', '12', '24121', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001054', 'Assessment Need Increased Whitespacing Type', NULL, 'Defines the user preferences for white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22060', '11', '22060', NULL, NULL) +VALUES ('001168', 'Authentication Identity Provider Name', NULL, 'The name of a provider that can authenticate the identity of an person.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24122', '12', '24122', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001055', 'Assessment Registration Testing Indicator', NULL, 'Indicates rules about use of results based on Special Events before, during or after the test. The option set values are determined by the testing program.', 'Alphanumeric - 300 characters maximum', '0', 'For example, "do not score", "do not report".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22061', '11', '22061', NULL, NULL) +VALUES ('001169', 'Authentication Identity Provider URI', NULL, 'The Uniform Resource Identifier (URI) of the Authentication Identity Provider.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24123', '12', '24123', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001056', 'Assessment Registration Score Publish Date', NULL, 'The date set by the testing program when the test scores are published. For formative or classroom assessments, this will likely be the date when the scored the individual test. For summative assessments, this date is likely set for a group of assessments when the processing system releases the scores.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22062', '11', '22062', NULL, NULL) +VALUES ('001170', 'Authentication Identity Provider Login Identifier', NULL, 'The login identifier for the person for the specified Authentication Identity Provider.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24124', '12', '24124', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001057', 'Assessment Registration Grade Level to Be Assessed', NULL, 'The grade or level at which the learner is to be assessed.', NULL, '1', ' Informs selection of the assessment form appropriate for the grade level to be tested.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22063', '11', '22063', 'Updated', 'Added and removed options to the existing option set.') +VALUES ('001171', 'Authentication Identity Provider Start Date', NULL, 'The date on which the an associated person may begin to use the specified Authentication Identity Provider to authenticate identity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24125', '12', '24125', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001058', 'Name of Professional Credential or License', NULL, 'The name of the license/credential awarded by a given profession.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22064', '11', '22064', NULL, NULL) +VALUES ('001172', 'Authentication Identity Provider End Date', NULL, 'The date after which the an associated person is no longer allowed to use the specified Authentication Identity Provider to authenticate identity.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24126', '12', '24126', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001059', 'Cardiopulmonary Resuscitation Certification Expiration Date', 'CPR Certification Expiration Date', 'The date an individual''s cardiopulmonary resuscitation (CPR) training certification expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22065', '11', '22065', NULL, NULL) +VALUES ('001173', 'Authorization Application Name', NULL, 'The name of a data system or application which an authenticated person may access.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24127', '12', '24127', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001060', 'First Aid Certification Expiration Date', NULL, 'The date an individual''s first aid training certification expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22066', '11', '22066', NULL, NULL) +VALUES ('001174', 'Authorization Application URI', NULL, 'The Uniform Resource Identifier (URI) of a data system or application which an authenticated person may access.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24128', '12', '24128', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001061', 'Staff Professional Development Activity Start Date', NULL, 'The year, month and day on which an individual begins a course, an education program or a staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22067', '11', '22067', NULL, NULL) +VALUES ('001175', 'Authorization Application Role Name', NULL, 'The user role for which the person is allowed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24129', '12', '24129', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001062', 'Staff Professional Development Activity Completion Date', NULL, 'The year, month and day on which an individual completed a course, an education program or a staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22068', '11', '22068', NULL, NULL) +VALUES ('001176', 'Authorization Start Date', NULL, 'The date on which the an associated person is authorized to start using the application with the specified role.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24130', '12', '24130', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001063', 'Assessment Item Response Value', NULL, ' A specific response to an assessment item by the person being assessed.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22069', '11', '22069', NULL, NULL) +VALUES ('001177', 'Authorization End Date', NULL, 'The date after which the an associated person is no longer allowed to use the application with the specified role.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24131', '12', '24131', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001064', 'Employment NAICS Code', NULL, 'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', 'Integer - exactly 6 digits', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22070', '11', '22070', NULL, NULL) +VALUES ('001181', 'Assessment Item Bank Identifier', NULL, 'If the assessment is provided with an item bank, then this identifies the item bank: a unique code or number used by the item banking system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24132', '12', '24132', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001088', 'NAEP Mathematical Complexity Level', NULL, 'Complexity levels defined by the National Assessment of Educational Progress (NAEP 2005a Framework).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22072', '11', '22072', NULL, NULL) +VALUES ('001182', 'Assessment Item Bank Name', NULL, 'If the assessment is provided with an item bank, then this is the name of the item bank.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24133', '12', '24133', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001089', 'Assessment Language', NULL, 'The language in which the assessment form is designed to be delivered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22073', '11', '22073', NULL, NULL) +VALUES ('001183', 'Assessment Form Version', NULL, 'The version number of the Assessment Form.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24134', '12', '24134', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001091', 'Assessment Subtest Published Date', NULL, 'The date on which the Subtest was published.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22075', '11', '22075', NULL, NULL) +VALUES ('001184', 'Learning Resource Published Date', NULL, 'The published date of an educational resource, such as instructional media, an assessment form, or section of an assessment form.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24135', '12', '24135', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001092', 'Assessment Result Descriptive Feedback Source', NULL, 'Identifies the source of the descriptive feedback that was given to a learner based on a scored/evaluated portion of an assessment. May indicate if this is teacher, scorer, or system generated feedback. Values for this attribute would be determined by the assessment program.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22076', '11', '22076', NULL, NULL) +VALUES ('001185', 'Assessment Form Accommodation List', NULL, 'The human readable list of one or more of the specific accommodations available. If no accommodations are provided, then this list will not be present.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24136', '12', '24136', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001093', 'Assessment Session Special Event Description', NULL, 'Describes special events that occur before during or after the assessment session that may impact use of results according to rules related to the Assessment Registration Testing Indicator.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22077', '11', '22077', NULL, NULL) +VALUES ('001186', 'Intended Administration Start Date', NULL, 'The beginning date of the time period in which the form is intended to be administered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24137', '12', '24137', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001094', 'Competency Definition Parent URL', 'Learning Standard Item Parent URL, Competency Item Parent URL', 'A network-resolvable Uniform Resource Locator (URL) pointing to the authoritative reference for the hierarchal parent of the competency definition.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22078', '11', '22078', NULL, NULL) +VALUES ('001187', 'Assessment Form Intended Administration End Date', NULL, 'The ending date of the time period in which the assessment form is intended to be administered.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24138', '12', '24138', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001102', 'Assessment Item Body Custom Interaction XML', NULL, 'The custom interaction provides an opportunity for extensibility of this specification to include support for interactions not currently documented. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22079', '11', '22079', NULL, NULL) +VALUES ('001188', 'Assessment Form Platforms Supported', NULL, 'A human readable list of delivery platforms the form will support.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24139', '12', '24139', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001103', 'Assessment Item Body Drawing Interaction XML', NULL, 'The drawing interaction allows the candidate to use a common set of drawing tools to modify a given graphical image (the canvas). It must be bound to a response variable with base-type file and single cardinality. The result is a file in the same format as the original image. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22080', '11', '22080', NULL, NULL) +VALUES ('001189', 'Assessment Form Section Version', NULL, 'The version number of the Assessment Form Section.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24140', '12', '24140', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001104', 'Assessment Item Body Gap Match Interaction XML', NULL, 'A gap match interaction contains a number gaps that the candidate can fill from an associated set of choices. The candidate must be able to review the content with the gaps filled in context, as indicated by their choices. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22081', '11', '22081', NULL, NULL) +VALUES ('001190', 'Identification System for Assessment Form Section', NULL, 'A coding scheme that is used for identification of an Assessment Form Section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24141', '12', '24141', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001105', 'Assessment Item Body Match Interaction XML', NULL, 'A match interaction presents candidates with two sets of choices and allows them to create associates between pairs of choices in the two sets, but not between pairs of choices in the same set. Further restrictions can still be placed on the allowable associations using the matchMax attribute of the choices. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22082', '11', '22082', NULL, NULL) +VALUES ('001191', 'Assessment Form Section Identifier', NULL, 'A unique number or alphanumeric code assigned to the Assessment Form Section using the system specified by Identification System for Assessment Form Section.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24142', '12', '24142', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001106', 'Assessment Item Body Graphic Gap Match Interaction XML', NULL, 'A graphic gap-match interaction is a graphical interaction with a set of gaps that are defined as areas (hotspots) of the graphic image and an additional set of gap choices that are defined outside the image. The candidate must associate the gap choices with the gaps in the image and be able to review the image with the gaps filled in context, as indicated by their choices. Care should be taken when designing these interactions to ensure that the gaps in the image are a suitable size to receive the required gap choices. It must be clear to the candidate which hotspot each choice has been associated with. When associated, choices must appear wholly inside the gaps if at all possible and, where overlaps are required, should not hide each other completely. If the candidate indicates the association by positioning the choice over the gap (e.g., drag and drop) the system should ''snap'' it to the nearest position that satisfies these requirements. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22083', '11', '22083', NULL, NULL) +VALUES ('001192', 'Assessment Form Section Time Limit', NULL, 'If this section is timed, then this will identify the maximum amount of time the test taker can spend within this section.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24143', '12', '24143', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001107', 'Assessment Item Body Hot Spot Interaction XML', NULL, 'A hotspot interaction is a graphical interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to select one or more of the areas (hotspots). The hotspot interaction should only be used when the spatial relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, choiceInteraction should be used instead with separate material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22084', '11', '22084', NULL, NULL) +VALUES ('001193', 'Assessment Form Section Sealed', NULL, 'Indicates this section is sealed, meaning the test taker cannot enter the section until authorized by the proctor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24144', '12', '24144', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001108', 'Assessment Item Body Graphic Order Interaction XML', NULL, 'A graphic order interaction is a graphic interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to impose an ordering on the areas (hotspots). The order hotspot interaction should only be used when the spatial relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, orderInteraction should be used instead with separate material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22085', '11', '22085', NULL, NULL) +VALUES ('001194', 'Assessment Form Section Reentry', NULL, 'Indicates that this section can be re-entered, meaning the test taker can return to this section after they have left the section. A common example of this is a two section test where one section does not allow the use of a calculator and the other does. Typically the test taker cannot return to the non-calculator section after they have used a calculator.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24145', '12', '24145', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001109', 'Assessment Item Body Select Point Interaction XML', NULL, 'Like hotspotInteraction, a select point interaction is a graphic interaction. The candidate''s task is to select one or more points. The associated response may have an areaMapping that scores the response on the basis of comparing it against predefined areas but the delivery engine must not indicate these areas of the image. Only the actual point(s) selected by the candidate shall be indicated. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22087', '11', '22087', NULL, NULL) +VALUES ('001195', 'Assessment Asset Version', NULL, 'A version number or label defined by the publisher.', 'Alphanumeric - 30 characters maximum', '0', 'In some use cases a date, such as Learning Resource Date Created may be used as an alternative to a version number. Each use case may adopt different rules depending on the application requirements for maintenance of current version only or the multiple objects/records representing the complete version history.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24146', '12', '24146', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001110', 'Assessment Item Body Select Point Interaction', NULL, 'A graphic associate interaction is a graphic interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to associate the areas (hotspots) with each other. The graphic associate interaction should only be used when the graphical relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, associateInteraction should be used instead with separate Material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22088', '11', '22088', NULL, NULL) +VALUES ('001196', 'Assessment Asset Type', NULL, 'Specifies a predominant type of assessment asset represented by the Learning Resource. Assessment assets represent any content used to compose an assessment item, is referenced by an item but not part of the item content itself, or is content that is included as part of a section within an assessment form. Assets can be static content such as art work or dynamic assets such as calculators.', NULL, '1', 'The standard option set may be extended based on local and implementation-specific requirements. Commonly used options may be submitted for inclusion in future versions of CEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24147', '12', '24147', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001111', 'Assessment Item Body Slider Interaction XML', NULL, 'The slider interaction presents the candidate with a control for selecting a numerical value between a lower and upper bound. It must be bound to a response variable with single cardinality with a base-type of either integer or float. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22089', '11', '22089', NULL, NULL) +VALUES ('001197', 'Assessment Asset Published Date', NULL, 'The date that this version of the asset was made available for use.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24148', '12', '24148', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001112', 'Assessment Item Body Choice Interaction XML', NULL, 'The choice interaction presents a set of choices to the candidate. The candidate''s task is to select one or more of the choices, up to a maximum of maxChoices. The interaction is always initialized with no choices selected. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22090', '11', '22090', NULL, NULL) +VALUES ('001198', 'Assessment Asset Identifier', NULL, 'A unique code identifying the Assessment Asset provided by the authoring system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24149', '12', '24149', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001114', 'Assessment Item Body Inline Choice Interaction XML', NULL, 'A inline choice is an inline interaction that presents the user with a set of choices, each of which is a simple piece of text. The candidate''s task is to select one of the choices. Unlike the Choice Interaction, the delivery engine must allow the candidate to review their choice within the context of the surrounding text.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22091', '11', '22091', NULL, NULL) +VALUES ('001199', 'Assessment Asset Identifier Type', NULL, 'The type of identifier that is provided for this asset.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24150', '12', '24150', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001115', 'Assessment Item Body Media Interaction XML', NULL, 'The media interaction allows more control over the way the candidate interacts with a time-based media object and allows the number of times the media object was experienced to be reported in the value of the associated response variable, which must be of base-type integer and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22092', '11', '22092', NULL, NULL) +VALUES ('001200', 'Assessment Asset Name', NULL, 'The name of the Assessment Asset.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24151', '12', '24151', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001116', 'Assessment Item Body Hottext Interaction XML', NULL, 'The hottext interaction presents a set of choices to the candidate represented as selectable runs of text embedded within a surrounding context, such as a simple passage of text. Like choiceInteraction, the candidate''s task is to select one or more of the choices, up to a maximum of maxChoices. The interaction is initialized from the defaultValue of the associated response variable, a NULL value indicating that no choices are selected (the usual case). The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22093', '11', '22093', NULL, NULL) +VALUES ('001201', 'Assessment Asset Owner', NULL, 'The name of the ownership rights holder or publisher of the asset.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24152', '12', '24152', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001117', 'Assessment Item Body Order Interaction XML', NULL, 'In an order interaction the candidate''s task is to reorder the choices, the order in which the choices are displayed initially is significant. By default the candidate''s task is to order all of the choices but a subset of the choices can be requested using the maxChoices and minChoices attributes. When specified the candidate must select a subset of the choices and impose an ordering on them. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22094', '11', '22094', NULL, NULL) +VALUES ('001202', 'Assessment Asset Content XML', NULL, 'XML encoded in UTF-8 representing the content of the Assessment Asset.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24153', '12', '24153', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001118', 'Assessment Item Body Position Object Interaction XML', NULL, 'The position object interaction consists of a single image which must be positioned on another graphic image (the stage) by the candidate. Like selectPointInteraction, the associated response may have an areaMapping that scores the response on the basis of comparing it against predefined areas but the delivery engine must not indicate these areas of the stage. Only the actual position(s) selected by the candidate shall be indicated. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22095', '11', '22095', NULL, NULL) +VALUES ('001203', 'Assessment Asset Content Mime Type', NULL, 'MIME type to specifically indicate the Assessment Asset content type.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24154', '12', '24154', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001119', 'Assessment Item Body Text Entry Interaction XML', NULL, 'A textEntry interaction obtains a simple piece of text from the candidate. Like inlineChoiceInteraction, the delivery engine must allow the candidate to review their choice within the context of the surrounding text. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22096', '11', '22096', NULL, NULL) +VALUES ('001204', 'Assessment Asset Content URL', NULL, 'The Uniform Resource Locator (URL) location of the external Assessment Asset content.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24155', '12', '24155', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001120', 'Assessment Item Body Extended Text Interaction XML', NULL, 'An extended text interaction allows the candidate to enter an extended amount of text. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22097', '11', '22097', NULL, NULL) +VALUES ('001143', 'Learning Resource Description', NULL, ' A short description of the Learning Resource.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24156', '12', '24156', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001121', 'Assessment Item Body End Attempt Interaction XML', NULL, 'The end attempt interaction is a special type of interaction which allows item authors to provide the candidate with control over the way in which the candidate terminates an attempt. The candidate can use the interaction to terminate the attempt (triggering response processing) immediately, typically to request a hint. It must be bound to a response variable with base-type boolean and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22098', '11', '22098', NULL, NULL) +VALUES ('001144', 'Learning Resource Copyright Holder Name', NULL, 'The name(s) of the person(s) or organization(s) holding the copyright for the Learning Resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24157', '12', '24157', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001222', 'Assessment Item Body Upload Interaction XML', NULL, 'The upload interaction allows the candidate to upload a pre-prepared file representing their response. It must be bound to a response variable with base-type file and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22099', '11', '22099', NULL, NULL) +VALUES ('001145', 'Learning Resource Copyright Year', NULL, 'The copyright year for the Learning Resource.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24158', '12', '24158', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001123', 'Assessment Item Body Associate Interaction XML', NULL, 'An associate interaction presents candidates with a number of choices and allows them to create associations between them. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22100', '11', '22100', NULL, NULL) +VALUES ('001146', 'Learning Resource Concept Keyword', NULL, 'The significant topicality of the Learning Resource using free-text keywords and phrases.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24159', '12', '24159', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001127', 'Assessment Need Type', NULL, 'A type of need identified for a learner as part of an assessment need profile.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22101', '11', '22101', NULL, NULL) +VALUES ('001147', 'Peer Rating System Name', NULL, 'The name of the scaling system used to specify the Peer Rating.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24160', '12', '24160', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001130', 'Assessment Participant Session Security Issue', NULL, 'Describes an issue related to the security of a testing instrument identified during a specific instance of delivering an assessment to a specific person during a specific time period.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22102', '11', '22102', NULL, NULL) +VALUES ('001148', 'Learning Resource Peer Rating Value', NULL, 'An individual score, rating or level assigned to a Learning Resource by a person within the boundaries set by a Peer Rating System that may be aggregated to derive an overall score for the learning resource.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24161', '12', '24161', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001131', 'Assessment Item APIP Response Processing Template URL', NULL, 'These templates are described using the processing language defined in IMS Global APIP specification and are distributed (in XML form) along with it. Delivery engines that support generalized response processing do not need to implement special mechanisms to support them as a template file can be parsed directly while processing the assessment item that refers to it. This element provides the URL for the template.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22103', '11', '22103', NULL, NULL) +VALUES ('001149', 'Peer Rating System Maximum Value', NULL, ' The maximum value allowed by the Peer Rating System.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24162', '12', '24162', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001132', 'Assessment Item APIP Response Processing XML', NULL, 'Response processing is the process by which the Delivery Engine assigns outcomes based on the learner''s responses. The outcomes may be used to provide feedback to the learner Feedback is either provided immediately following the end of the learner''s attempt or it is provided at some later time, perhaps as part of a summary report on the item session. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22104', '11', '22104', NULL, NULL) +VALUES ('001150', 'Peer Rating System Minimum Value', NULL, 'The minimum value allowed by the Peer Rating System.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24163', '12', '24163', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001133', 'Assessment Item APIP Response Declaration XML', NULL, 'Response declarations state what the response variables include. The response declaration may assign an optional correct response. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22105', '11', '22105', NULL, NULL) +VALUES ('001151', 'Peer Rating System Optimum Value', NULL, 'The optimum value allowed by the Peer Rating System. The optimum or best rating may be the maximum value, the minimum value, or something in between.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24164', '12', '24164', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001134', 'Assessment Item APIP Outcome Declaration XML', NULL, 'Outcome variables are declared by outcome declarations. Their value is set either from a default given in the declaration itself or by a responseRule during response processing. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22106', '11', '22106', NULL, NULL) +VALUES ('001156', 'Organization Type', NULL, 'The type of educational organization or entity.', NULL, '1', 'This element is used in data models that are normalized and identifies the primary role of the organization.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24165', '12', '24165', 'Updated', 'Added new option to existing option set, add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001135', 'Assessment Item APIP Template Declaration XML', NULL, 'Template declarations declare item variables that are to be used specifically for the purposes of cloning items. They can have their value set only during template processing. They are referred to within the item body in order to individualize the clone and possibly also within the response Processing rules if the cloning process affects the way the item is scored. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22107', '11', '22107', NULL, NULL) +VALUES ('001122', 'NAEP Aspects of Reading', NULL, 'Aspects of reading defined by the National Assessment of Educational Progress (NAEP 2005b Framework).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24166', '12', '24166', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001136', 'Assessment Item APIP Template Processing XML', NULL, 'Template processing consists of one or more template rules that are followed by the cloning engine or delivery system in order to assign values to the template variables. Template processing is identical in form to responseProcessing except that the purpose is to assign values to template variables, not outcome variables. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22108', '11', '22108', NULL, NULL) +VALUES ('001160', 'Virtual Indicator', NULL, 'An indication that a childcare, early education, or early learning program, school, institution, program, or course section focuses primarily on instruction in which children and teachers are separated by time and/or location and interact through the use of computers and/or telecommunications technology.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24167', '12', '24167', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001137', 'Assessment Item APIP Modal Feedback XML', NULL, 'Modal feedback is shown to the candidate directly following response processing. The value of an outcome variable is used in conjunction with the showHide and identifier attributes to determine whether or not the feedback is shown in a similar way to feedbackElement. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22109', '11', '22109', NULL, NULL) +VALUES ('001161', 'Course Section Instructional Delivery Mode', NULL, 'The primary setting or medium of delivery for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24168', '12', '24168', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001138', 'Assessment Item APIP Item Body XML', NULL, 'The item body contains the text, graphics, media objects, and interactions that describe the item''s content and information about how it is structured. The body is presented by combining it with stylesheet information, either explicitly or implicitly using the default style rules of the delivery or authoring system. This element contains the appropriate XML from the IMS Global APIP Specification defining the various item body interactions.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22110', '11', '22110', NULL, NULL) +VALUES ('001165', 'Goal Start Date', NULL, 'The date on which the goal becomes active.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24169', '12', '24169', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001139', 'Assessment Item Adaptive Indicator', NULL, 'This indicator determines whether an assessment item is an adaptive item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22111', '11', '22111', NULL, NULL) +VALUES ('001166', 'Goal End Date', NULL, 'The date on which the goal expires or has been achieved.', 'YYYY-MM-DD', '0', 'For federal reporting use cases some codes are required to be reported and others are not. All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24170', '12', '24170', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001152', 'Assessment Participant Session Platform User Agent', NULL, ' A list of product tokens (keywords) with optional comments that identifies the client hardware and software with which the assessment was delivered to the student during the assessment session.', 'Alphanumeric - 512 characters maximum', '0', 'Implementation Note: The recommended approach is to store the User-Agent string returned as part of an HTTP header. For example, an assessment session delivery via iPad might have "Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Mobile/7B405"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22112', '11', '22112', NULL, NULL) +VALUES ('001167', 'Peer Rating Date', NULL, 'The date on which the Peer Rating was entered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24171', '12', '24171', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001153', 'Credential Definition Criteria URL', 'Credential Criteria URL', 'The Uniform Resource Locator (URL) for the unique address of a web page describing the competency-based completion criteria for the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22113', '11', '22113', NULL, NULL) +VALUES ('001205', 'Facility Building Name', NULL, 'The full, legally accepted or popularly accepted name of a building.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24172', '12', '24172', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001154', 'Competency Definition Text Complexity Minimum Value', 'Learning Standard Item Text Complexity Minimum Value, Competency Item Text Complexity Minimum Value', 'The minimum value in the range of text complexity applicable to a language competency definition using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22114', '11', '22114', NULL, NULL) +VALUES ('001206', 'Building Use Type', NULL, 'How a building is principally used, regardless of its original design.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24173', '12', '24173', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001155', 'Competency Definition Text Complexity Maximum Value', 'Learning Standard Item Text Complexity Maximum Value, Competency Item Text Complexity Maximum Value', 'The maximum value in the range of text complexity applicable to a language competency definition using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22115', '11', '22115', NULL, NULL) +VALUES ('001207', 'Facility Space Description', NULL, 'A description of the space, as determined by its physical layout and built-in systems and equipment.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24174', '12', '24174', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001157', 'Accommodation Other Description', NULL, 'The description of the accommodation when ''Accommodation Type'' is set to ''Other''.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22116', '11', '22116', NULL, NULL) +VALUES ('001208', 'Facility Space Use Type', NULL, 'The primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24175', '12', '24175', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001158', 'Assessment Item Interaction Type', NULL, 'The assessment item body interaction type as defined by IMS Global specifications.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22117', '11', '22117', NULL, NULL) +VALUES ('001209', 'County ANSI Code', NULL, 'County code as defined for the identification of counties and equivalent areas of the United States, Puerto Rico, and the insular areas as established by the American National Standards Institute (ANSI) Inter-National Committee for Information Technology Standards (INCITS) in specification BSR INCITS 31-200x or more current updates. See https://www.census.gov/library/reference/code-lists/ansi.html#par_statelist.', 'Integer - 5 digits with leading zeros', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24176', '12', '24176', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001162', 'Assessment Registration Test Attempt Identifier', NULL, 'A unique identifier for the test attempt assigned by the delivery system.', 'Alphanumeric - 40 characters maximum', '0', 'For paper-based tests this is typically a batch/stack/serial number and for online tests it is likely a unique internal identifier. Used to locate the original attempt.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22119', '11', '22119', NULL, NULL) +VALUES ('001210', 'Exit Grade Level', NULL, 'The grade level or primary instructional level at which a student exits a school, program, or an educational institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24177', '12', '24177', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001163', 'Credential Award Start Date', 'Credential Start Date', 'The date on which the qualification, achievement, personal or organizational quality, or aspect of an identity was conferred.', 'YYYY-MM-DD', '0', 'Diploma or Credential Award Date is the same concept but used when only month and year are known or needed.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22120', '11', '22120', NULL, NULL) +VALUES ('001211', 'Weapon Type', NULL, 'Identifies the type of weapon used during an incident.', NULL, '1', 'See Forum Guide to Crime, Violence, and Discipline Incident Data http://nces.ed.gov/pubs2011/2011806.pdf Forum Guide.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24178', '12', '24178', 'Updated', 'Added new option to existing option set, change option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001164', 'Credential Award End Date', 'Credential End Date', 'The date, if any, on which the qualification, achievement, personal or organizational quality, or aspect of an identity expires or requires renewal.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22121', '11', '22121', NULL, NULL) +VALUES ('001212', 'Assessment Session Staff Role Type', NULL, 'The type of role served related to the administration of an assessment session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24179', '12', '24179', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001168', 'Authentication Identity Provider Name', NULL, 'The name of a provider that can authenticate the identity of an person.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22122', '11', '22122', NULL, NULL) +VALUES ('001214', 'Assessment Form Subtest Tier', NULL, 'In a hierarchy of subtests, this element represents the level of the sub test in the hierarchy. The top tier and default is zero.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24180', '12', '24180', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001169', 'Authentication Identity Provider URI', NULL, 'The Uniform Resource Identifier (URI) of the Authentication Identity Provider.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22123', '11', '22123', NULL, NULL) +VALUES ('001215', 'Assessment Form Subtest Container Only', NULL, 'In a hierarchy of subtests, this indicates that this tier is only used as a level in the hierarchy and does not represent a scoring model.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24181', '12', '24181', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001170', 'Authentication Identity Provider Login Identifier', NULL, 'The login identifier for the person for the specified Authentication Identity Provider.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22124', '11', '22124', NULL, NULL) +VALUES ('001216', 'Learning Resource Version', NULL, 'Defines the version of the learning resource as defined by the publisher.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24182', '12', '24182', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001171', 'Authentication Identity Provider Start Date', NULL, 'The date on which the an associated person may begin to use the specified Authentication Identity Provider to authenticate identity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22125', '11', '22125', NULL, NULL) +VALUES ('001217', 'Assessment Item Possible Response Correct Indicator', NULL, 'Indicates that the possible response is the correct response.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24183', '12', '24183', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001172', 'Authentication Identity Provider End Date', NULL, 'The date after which the an associated person is no longer allowed to use the specified Authentication Identity Provider to authenticate identity.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22126', '11', '22126', NULL, NULL) +VALUES ('001218', 'Assessment Performance Level Descriptive Feedback', NULL, 'A feedback message designed to be reported with the assessment performance level.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24184', '12', '24184', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001173', 'Authorization Application Name', NULL, 'The name of a data system or application which an authenticated person may access.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22127', '11', '22127', NULL, NULL) +VALUES ('001219', 'Assessment Result Diagnostic Statement', NULL, 'A statement intended for use by education professionals, using professional terminology, to interpret learner needs based on the scored/evaluated portion of an assessment. This statement may inform Descriptive Feedback given to the learner.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24185', '12', '24185', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001174', 'Authorization Application URI', NULL, 'The Uniform Resource Identifier (URI) of a data system or application which an authenticated person may access.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22128', '11', '22128', NULL, NULL) +VALUES ('001223', 'Financial Aid Application Type', NULL, 'The type of financial application completed by an individual.', NULL, '1', 'Common Data Set definition. This element may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24186', '12', '24186', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001175', 'Authorization Application Role Name', NULL, 'The user role for which the person is allowed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22129', '11', '22129', NULL, NULL) +VALUES ('001224', 'Financial Need Determination Methodology', NULL, 'The methodology used to determine an individual''s financial need.', NULL, '1', 'Element should be used in combination with Financial Need.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24188', '12', '24188', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001176', 'Authorization Start Date', NULL, 'The date on which the an associated person is authorized to start using the application with the specified role.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22130', '11', '22130', NULL, NULL) +VALUES ('001225', 'Early Learning Oldest Age Authorized to Serve', NULL, 'The oldest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24189', '12', '24189', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001177', 'Authorization End Date', NULL, 'The date after which the an associated person is no longer allowed to use the application with the specified role.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22131', '11', '22131', NULL, NULL) +VALUES ('001226', 'Language Translation Policy', NULL, 'Indicates that the organization or class/group has translation services available .', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24190', '12', '24190', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001181', 'Assessment Item Bank Identifier', NULL, 'If the assessment is provided with an item bank, then this identifies the item bank: a unique code or number used by the item banking system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22132', '11', '22132', NULL, NULL) +VALUES ('001142', 'Student Course Section Mark Final Indicator', NULL, 'Indicates that the mark is a final mark the learner has earned for the course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24191', '12', '24191', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001182', 'Assessment Item Bank Name', NULL, 'If the assessment is provided with an item bank, then this is the name of the item bank.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22133', '11', '22133', NULL, NULL) +VALUES ('001227', 'Status Start Date', NULL, 'The year, month, day and optionally time, that a status became applicable.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24192', '12', '24192', 'Updated', 'Modify element definition, format and add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001183', 'Assessment Form Version', NULL, 'The version number of the Assessment Form.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22134', '11', '22134', NULL, NULL) +VALUES ('001228', 'Status End Date', NULL, 'The last year, month, day, and optionally time when a status applied.', 'YYYY-MM-DDTHH:MM:SS', '0', 'This element reflects the end date for a person''s status rather than that person''s participation in a program. Use Program Participation Exit Date if referring to a person''s participation in a program or receipt of services. Status dates and program participation dates don''t need to align, they are for different purposes. For example, for a homeless student the Status Begin Date and Status End Date elements are used to record when the student began being homeless to the date when the student ceased being homeless. The student may begin receiving services under a program for homeless students after becoming homeless and that program may continue to provide services after the student ceases to have the status of "homeless" and therefore have a Program Participation Start Date and Program Participation Exit Date that are different from the status dates. Students under the McKinney-Vento may continue to receive services until the end of a school year even if they become stably housed at some point during the year.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24193', '12', '24193', 'Updated', 'Modify element definition, format and add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001184', 'Learning Resource Published Date', NULL, 'The published date of an educational resource, such as instructional media, an assessment form, or section of an assessment form.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22135', '11', '22135', NULL, NULL) +VALUES ('001229', 'Maternal Guardian Education', NULL, 'The highest level of education attained by a person''s mother or maternal guardian', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24194', '12', '24194', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001185', 'Assessment Form Accommodation List', NULL, 'The human readable list of one or more of the specific accommodations available. If no accommodations are provided, then this list will not be present.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22136', '11', '22136', NULL, NULL) +VALUES ('001230', 'Paternal Guardian Education', NULL, 'The highest level of education attained by a person''s father or paternal guardian', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24195', '12', '24195', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001186', 'Intended Administration Start Date', NULL, 'The beginning date of the time period in which the form is intended to be administered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22137', '11', '22137', NULL, NULL) +VALUES ('001231', 'Individualized Program Service Plan Date Type', NULL, 'An indication of the significance of a date to an individualized program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24196', '12', '24196', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001187', 'Assessment Form Intended Administration End Date', NULL, 'The ending date of the time period in which the assessment form is intended to be administered.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22138', '11', '22138', NULL, NULL) +VALUES ('001232', 'Individualized Program Date', NULL, 'The year, month and day on which the status of an individualized program for a student is significantly altered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24197', '12', '24197', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001188', 'Assessment Form Platforms Supported', NULL, 'A human readable list of delivery platforms the form will support.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22139', '11', '22139', NULL, NULL) +VALUES ('001233', 'Individualized Program NonInclusion Minutes Per Week', NULL, 'The number of minutes per week that a student with disabilities is served in a special education setting separate from his or her non-disabled peers.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24198', '12', '24198', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001189', 'Assessment Form Section Version', NULL, 'The version number of the Assessment Form Section.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22140', '11', '22140', NULL, NULL) +VALUES ('001234', 'Individualized Program Inclusion Minutes Per Week', NULL, 'The number of minutes per week that a student with disabilities is served in a regular classroom with his or her non-disabled peers.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24199', '12', '24199', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001190', 'Identification System for Assessment Form Section', NULL, 'A coding scheme that is used for identification of an Assessment Form Section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22141', '11', '22141', NULL, NULL) +VALUES ('001235', 'Individualized Program Transition Plan Type', NULL, 'The post-school transition plan for the student recorded on their Individualized Education Program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24200', '12', '24200', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001191', 'Assessment Form Section Identifier', NULL, 'A unique number or alphanumeric code assigned to the Assessment Form Section using the system specified by Identification System for Assessment Form Section.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22142', '11', '22142', NULL, NULL) +VALUES ('001236', 'Individualized Program Service Plan Date', NULL, 'The year, month and day on which the status of the service plan for a child is established or significantly altered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24201', '12', '24201', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001192', 'Assessment Form Section Time Limit', NULL, 'If this section is timed, then this will identify the maximum amount of time the test taker can spend within this section.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22143', '11', '22143', NULL, NULL) +VALUES ('001237', 'Individualized Program Service Plan Meeting Location', NULL, 'The place in which a child''s service plan meeting is held.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24202', '12', '24202', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001193', 'Assessment Form Section Sealed', NULL, 'Indicates this section is sealed, meaning the test taker cannot enter the section until authorized by the proctor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22144', '11', '22144', NULL, NULL) +VALUES ('001238', 'Individualized Program Service Plan Meeting Participants', NULL, 'The position titles of individuals who attend the service plan meeting.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24203', '12', '24203', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001194', 'Assessment Form Section Reentry', NULL, 'Indicates that this section can be re-entered, meaning the test taker can return to this section after they have left the section. A common example of this is a two section test where one section does not allow the use of a calculator and the other does. Typically the test taker cannot return to the non-calculator section after they have used a calculator.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22145', '11', '22145', NULL, NULL) +VALUES ('001239', 'Individualized Program Service Plan Signed By', NULL, 'The position titles of individuals who sign a written service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24204', '12', '24204', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001195', 'Assessment Asset Version', NULL, 'A version number or label defined by the publisher.', 'Alphanumeric - 30 characters maximum', '0', 'In some use cases a date, such as Learning Resource Date Created may be used as an alternative to a version number. Each use case may adopt different rules depending on the application requirements for maintenance of current version only or the multiple objects/records representing the complete version history.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22146', '11', '22146', NULL, NULL) +VALUES ('001240', 'Individualized Program Service Plan Signature Date', NULL, 'The year, month and day on which the service plan document is signed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24205', '12', '24205', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001196', 'Assessment Asset Type', NULL, 'Specifies a predominant type of assessment asset represented by the Learning Resource. Assessment assets represent any content used to compose an assessment item, is referenced by an item but not part of the item content itself, or is content that is included as part of a section within an assessment form. Assets can be static content such as art work or dynamic assets such as calculators.', NULL, '1', 'The standard option set may be extended based on local and implementation-specific requirements. Commonly used options may be submitted for inclusion in future versions of CEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22147', '11', '22147', NULL, NULL) +VALUES ('001241', 'Individualized Program Service Plan Reevaluation Date', NULL, 'Date student will be reevaluated for continued placement in a support program(s).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24207', '12', '24207', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001197', 'Assessment Asset Published Date', NULL, 'The date that this version of the asset was made available for use.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22148', '11', '22148', NULL, NULL) +VALUES ('001242', 'Special Education Full Time Equivalency', 'Special Education FTE', 'Calculated ratio of time the student is in a special education setting. Values range from 0.00 to 1.00. If the student is in a special education setting 25% of the time, the value is .25; if 100% of the time, the value is 1.00.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24208', '12', '24208', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001198', 'Assessment Asset Identifier', NULL, 'A unique code identifying the Assessment Asset provided by the authoring system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22149', '11', '22149', NULL, NULL) +VALUES ('001243', 'Program Participation Status', NULL, 'The current status of the student''s program participation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24209', '12', '24209', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001199', 'Assessment Asset Identifier Type', NULL, 'The type of identifier that is provided for this asset.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22150', '11', '22150', NULL, NULL) +VALUES ('001244', 'Program Gifted Eligibility Criteria', NULL, 'State/local code used to determine a student''s eligibility for Gifted/Talented program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24210', '12', '24210', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001200', 'Assessment Asset Name', NULL, 'The name of the Assessment Asset.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22151', '11', '22151', NULL, NULL) +VALUES ('001245', 'Credential Definition Category System', 'Credential Category System', 'The system that defines the categories of the qualification, achievement, personal or organizational quality, or aspect of an identity used in Credential Category Type.', 'Alphanumeric - 30 characters maximum', '0', 'This element recognizes formal adoption of categories for the Achievement Category Type to aid in comparability of data when a formally adopted vocabulary is used.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24211', '12', '24211', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001201', 'Assessment Asset Owner', NULL, 'The name of the ownership rights holder or publisher of the asset.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22152', '11', '22152', NULL, NULL) +VALUES ('001246', 'Learning Resource Education Level ', NULL, 'The education level, grade level or primary instructional level at which a Learning Resource is intended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24212', '12', '24212', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001202', 'Assessment Asset Content XML', NULL, 'XML encoded in UTF-8 representing the content of the Assessment Asset.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22153', '11', '22153', NULL, NULL) +VALUES ('001248', 'Immunization Type', NULL, 'An indication of the type of immunization that an individual has satisfactorily received. (Note: The International Classification of Diseases (ICD) is maintained by the World Health Organization. The ICD is revised periodically to incorporate changes in the medical field, the most updated and detailed list of International Statistical Classification of Diseases and Related Health Problems can be found at http://www.who.int/classifications/apps/icd/icd10online).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24214', '12', '24214', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001203', 'Assessment Asset Content Mime Type', NULL, 'MIME type to specifically indicate the Assessment Asset content type.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22154', '11', '22154', NULL, NULL) +VALUES ('001249', 'Competency Definition Notes', 'Learning Standard Item Notes, Competency Item Notes', 'Information about the derivation of a Competency Definition Statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24215', '12', '24215', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001204', 'Assessment Asset Content URL', NULL, 'The Uniform Resource Locator (URL) location of the external Assessment Asset content.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22155', '11', '22155', NULL, NULL) +VALUES ('001250', 'Competency Definition Version', 'Learning Standard Item Version, Competency Item Version', 'A label assigned by the publisher indicating the version of the competency framework statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24216', '12', '24216', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001143', 'Learning Resource Description', NULL, ' A short description of the Learning Resource.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22156', '11', '22156', NULL, NULL) +VALUES ('001251', 'Assessment Item Response Theory Parameter A', NULL, 'The Item Response Theory value representing the discrimination of the item. The a parameter is found by taking the slope of the line tangent to the item characteristic curve at the inflection point, B. The parameter is the steepness of the curve at its steepest point.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24217', '12', '24217', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001144', 'Learning Resource Copyright Holder Name', NULL, 'The name(s) of the person(s) or organization(s) holding the copyright for the Learning Resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22157', '11', '22157', NULL, NULL) +VALUES ('001252', 'Assessment Item Response Theory Parameter B', NULL, 'The Item Response Theory value representing the difficulty of the item. It is the Theta value for the location of the inflection point of the item characteristic curve.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24218', '12', '24218', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001145', 'Learning Resource Copyright Year', NULL, 'The copyright year for the Learning Resource.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22158', '11', '22158', NULL, NULL) +VALUES ('001253', 'Assessment Item Response Theory Parameter Difficulty Category', NULL, 'A category for the difficulty of the item based on the Item Response Theory value.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24219', '12', '24219', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001146', 'Learning Resource Concept Keyword', NULL, 'The significant topicality of the Learning Resource using free-text keywords and phrases.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22159', '11', '22159', NULL, NULL) +VALUES ('001254', 'Assessment Item Response Theory Parameter C', NULL, 'The Item Response Theory value for multiple choice items representing the guessing of the item. The c parameter is a lower asymptote. It is the low point of the curve as it moves to negative infinity on the horizontal axis. You can think of c as the probability that a chicken would get the item right.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24220', '12', '24220', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001147', 'Peer Rating System Name', NULL, 'The name of the scaling system used to specify the Peer Rating.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22160', '11', '22160', NULL, NULL) +VALUES ('001255', 'Assessment Item Response Theory Parameter D1', NULL, 'For polytomous assessment items with more than two possible responses, this is the item response theory value representing the threshold between the first and second item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24221', '12', '24221', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001148', 'Learning Resource Peer Rating Value', NULL, 'An individual score, rating or level assigned to a Learning Resource by a person within the boundaries set by a Peer Rating System that may be aggregated to derive an overall score for the learning resource.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22161', '11', '22161', NULL, NULL) +VALUES ('001256', 'Assessment Item Response Theory Parameter D2', NULL, 'For polytomous assessment items with more than two possible responses, this is the item response theory value representing the threshold between the second and third item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24222', '12', '24222', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001149', 'Peer Rating System Maximum Value', NULL, ' The maximum value allowed by the Peer Rating System.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22162', '11', '22162', NULL, NULL) +VALUES ('001257', 'Assessment Item Response Theory Parameter D3', NULL, 'For polytomous assessment items with more than three possible responses, this is the item response theory value representing the threshold between the third and fourth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24223', '12', '24223', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001150', 'Peer Rating System Minimum Value', NULL, 'The minimum value allowed by the Peer Rating System.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22163', '11', '22163', NULL, NULL) +VALUES ('001258', 'Assessment Item Response Theory Parameter D4', NULL, 'For polytomous assessment items with more than four possible responses, this is the item response theory value representing the threshold between the fourth and fifth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24224', '12', '24224', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001151', 'Peer Rating System Optimum Value', NULL, 'The optimum value allowed by the Peer Rating System. The optimum or best rating may be the maximum value, the minimum value, or something in between.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22164', '11', '22164', NULL, NULL) +VALUES ('001259', 'Assessment Item Response Theory Parameter D5', NULL, 'For polytomous assessment items with more than five possible responses, this is the item response theory value representing the threshold between the fifth and sixth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24225', '12', '24225', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001156', 'Organization Type', NULL, 'The type of educational organization or entity.', NULL, '1', 'This element is used in data models that are normalized and identifies the primary role of the organization.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22165', '11', '22165', 'Updated', 'Added new options to existing option set.') +VALUES ('001260', 'Assessment Item Response Theory Parameter D6', NULL, 'For polytomous assessment items with more than six possible responses, this is the item response theory value representing the threshold between the sixth and seventh item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24226', '12', '24226', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001122', 'NAEP Aspects of Reading', NULL, 'Aspects of reading defined by the National Assessment of Educational Progress (NAEP 2005b Framework).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22166', '11', '22166', NULL, NULL) +VALUES ('001261', 'Assessment Item Linking Item Indicator', NULL, 'Indicates that the item is intended to be administered in two different grades for the goal of establishing cross grade comparison.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24227', '12', '24227', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001160', 'Virtual Indicator', NULL, 'An indication that a childcare, early education, or early learning program, school, institution, program, or course section focuses primarily on instruction in which children and teachers are separated by time and/or location and interact through the use of computers and/or telecommunications technology.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22167', '11', '22167', 'Updated', 'Added elements to DES contexts to support Early Learning needs. Changed definition of element to support other domains.') +VALUES ('001262', 'Assessment Item Response Theory Point Biserial Correlation Value', NULL, 'The correlation between correct answers on this item and total correct answers on the test during a previous administration. ', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24228', '12', '24228', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001161', 'Course Section Instructional Delivery Mode', NULL, 'The primary setting or medium of delivery for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22168', '11', '22168', NULL, NULL) +VALUES ('001263', 'Assessment Item Release Status', NULL, 'Indicates that the assessment item has been released to the public.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24229', '12', '24229', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001165', 'Goal Start Date', NULL, 'The date on which the goal becomes active.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22169', '11', '22169', NULL, NULL) +VALUES ('001264', 'Assessment Item Response Theory DIF Value', NULL, 'A value representing the Differential Item Functioning, also referred to as measurement bias, for the assessment item. The value represents differences in the functioning of the item across groups which are matched on the attribute being measure by the item. The value is calculated using Mantel-Haenszel approach or a comparable algorithm so that a value of 1.0 represents no bias.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24230', '12', '24230', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001166', 'Goal End Date', NULL, 'The date on which the goal expires or has been achieved.', 'YYYY-MM-DD', '0', 'For federal reporting use cases some codes are required to be reported and others are not. All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22170', '11', '22170', NULL, NULL) +VALUES ('001265', 'Assessment Item Response Theory Kappa Value', NULL, 'The measure used to represent the degree of agreement among raters.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24231', '12', '24231', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001167', 'Peer Rating Date', NULL, 'The date on which the Peer Rating was entered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22171', '11', '22171', NULL, NULL) +VALUES ('001266', 'Assessment Item Response Theory Kappa Algorithm', NULL, 'The algorithm used to derive the Assessment Item Kappa Value', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24232', '12', '24232', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001205', 'Facility Building Name', NULL, 'The full, legally accepted or popularly accepted name of a building.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22172', '11', '22172', NULL, NULL) +VALUES ('001267', 'Assessment Item Body Text', NULL, 'The complete text of an assessment item including all applicable parts such as stimulus, stem, and possible response options presented.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24233', '12', '24233', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001206', 'Building Use Type', NULL, 'How a building is principally used, regardless of its original design.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22173', '11', '22173', NULL, NULL) +VALUES ('001268', 'Assessment Item Stimulus', NULL, ' The text, source (e.g., video clip), and/or graphic about which the assessment item is written. The stimulus provides the context of the item/task to which the student must respond.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24234', '12', '24234', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001207', 'Facility Space Description', NULL, 'A description of the space, as determined by its physical layout and built-in systems and equipment.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22174', '11', '22174', NULL, NULL) +VALUES ('001269', 'Assessment Item Possible Response Option', NULL, 'The possible response presented to the participant within a selected-response/multiple-choice assessment item.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24235', '12', '24235', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001208', 'Facility Space Use Type', NULL, 'The primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22175', '11', '22175', NULL, NULL) +VALUES ('001270', 'Session Code', NULL, 'A local code given to the session, usually for a session that represents a term within the school year such as a marking term.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24236', '12', '24236', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001209', 'County ANSI Code', NULL, 'County code as defined for the identification of counties and equivalent areas of the United States, Puerto Rico, and the insular areas as established by the American National Standards Institute (ANSI) Inter-National Committee for Information Technology Standards (INCITS) in specification BSR INCITS 31-200x or more current updates. See https://www.census.gov/library/reference/code-lists/ansi.html#par_statelist.', 'Integer - 5 digits with leading zeros', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22176', '11', '22176', NULL, NULL) +VALUES ('001271', 'Session Description', NULL, 'A short description of the Session.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24237', '12', '24237', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001210', 'Exit Grade Level', NULL, 'The grade level or primary instructional level at which a student exits a school, program, or an educational institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22177', '11', '22177', 'Updated', 'Added new option to the existing option set.') +VALUES ('001272', 'Session Marking Term Indicator', NULL, 'Indicates that the session is a marking term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24238', '12', '24238', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001211', 'Weapon Type', NULL, 'Identifies the type of weapon used during an incident.', NULL, '1', 'See Forum Guide to Crime, Violence, and Discipline Incident Data http://nces.ed.gov/pubs2011/2011806.pdf Forum Guide.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22178', '11', '22178', NULL, NULL) +VALUES ('001273', 'Session Scheduling Term Indicator', NULL, 'Indicates that the session is a scheduling term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24239', '12', '24239', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001212', 'Assessment Session Staff Role Type', NULL, 'The type of role served related to the administration of an assessment session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22179', '11', '22179', NULL, NULL) +VALUES ('001274', 'Session Attendance Term Indicator', NULL, 'Indicates that the session is an attendance term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24240', '12', '24240', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001214', 'Assessment Form Subtest Tier', NULL, 'In a hierarchy of subtests, this element represents the level of the sub test in the hierarchy. The top tier and default is zero.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22180', '11', '22180', NULL, NULL) +VALUES ('001275', 'Calendar Event Date', NULL, 'The date of the scheduled or unscheduled calendar event.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24241', '12', '24241', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001215', 'Assessment Form Subtest Container Only', NULL, 'In a hierarchy of subtests, this indicates that this tier is only used as a level in the hierarchy and does not represent a scoring model.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22181', '11', '22181', NULL, NULL) +VALUES ('001276', 'Calendar Event Day Name', NULL, 'A name used for the day of the calendar event.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24242', '12', '24242', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001216', 'Learning Resource Version', NULL, 'Defines the version of the learning resource as defined by the publisher.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22182', '11', '22182', NULL, NULL) +VALUES ('001277', 'Accommodations Needed Type', NULL, 'Codes identifying the set of health accommodations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24243', '12', '24243', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001217', 'Assessment Item Possible Response Correct Indicator', NULL, 'Indicates that the possible response is the correct response.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22183', '11', '22183', NULL, NULL) +VALUES ('001278', 'Advanced Placement Course Code', 'AP Course Code', 'Course areas for advanced placement or credit. For a list of codes see http://apcentral.collegeboard.com/apc/public/courses/teachers_corner/index.html .', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24244', '12', '24244', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001218', 'Assessment Performance Level Descriptive Feedback', NULL, 'A feedback message designed to be reported with the assessment performance level.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22184', '11', '22184', NULL, NULL) +VALUES ('001279', 'Professional Development Activity Education Levels Addressed', NULL, 'An age group or education level to which the professional development activity''s content pertains.', NULL, '1', 'Multiple options may be selected.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24245', '12', '24245', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001219', 'Assessment Result Diagnostic Statement', NULL, 'A statement intended for use by education professionals, using professional terminology, to interpret learner needs based on the scored/evaluated portion of an assessment. This statement may inform Descriptive Feedback given to the learner.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22185', '11', '22185', NULL, NULL) +VALUES ('001280', 'Agency Course Identifier', NULL, 'The course identifier as it may be recorded at the regional or state level to conform to a standardized course classification system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24246', '12', '24246', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001223', 'Financial Aid Application Type', NULL, 'The type of financial application completed by an individual.', NULL, '1', 'Common Data Set definition. This element may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22186', '11', '22186', NULL, NULL) +VALUES ('001281', 'Allergy Reaction Description', NULL, 'Describes symptoms know to be associated with a person''s reaction to an allergen.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24247', '12', '24247', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001224', 'Financial Need Determination Methodology', NULL, 'The methodology used to determine an individual''s financial need.', NULL, '1', 'Element should be used in combination with Financial Need.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22188', '11', '22188', NULL, NULL) +VALUES ('001282', 'Allergy Severity', NULL, 'The level of severity of a person''s reaction to an allergen.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24248', '12', '24248', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001225', 'Early Learning Oldest Age Authorized to Serve', NULL, 'The oldest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22189', '11', '22189', NULL, NULL) +VALUES ('001283', 'Allergy Type', NULL, 'Type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', NULL, '1', 'This material includes SNOMED Clinical Terms® (SNOMED CT®) which is used by permission of the International Health Terminology Standards Development Organization (IHTSDO). All rights reserved. SNOMED CT®, was originally created by The College of American Pathologists. “SNOMED” and “SNOMED CT” are registered trademarks of the IHTSDO.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24249', '12', '24249', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001226', 'Language Translation Policy', NULL, 'Indicates that the organization or class/group has translation services available .', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22190', '11', '22190', NULL, NULL) +VALUES ('001284', 'Assessment Item Result XML', NULL, 'The assessment item result formatted according to the IMS Global QTI Specification.', 'Alphanumeric', '0', 'See http://www.imsglobal.org/question/qtiv2p1/imsqti_resultv2p1.html#element10818', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24250', '12', '24250', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001142', 'Student Course Section Mark Final Indicator', NULL, 'Indicates that the mark is a final mark the learner has earned for the course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22191', '11', '22191', NULL, NULL) +VALUES ('001287', 'Blended Learning Model Type', NULL, 'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.', NULL, '1', 'This may be an attribute of a Course (as designed) or a Class Section (as delivered). It also may be attributed to a school, institution, or program for "whole-school" blended models.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24253', '12', '24253', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001227', 'Status Start Date', NULL, 'The year, month and day that a status became applicable to an individual.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22192', '11', '22192', NULL, NULL) +VALUES ('001288', 'Career Cluster', NULL, 'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', NULL, '1', 'Options from O*NET OnLine an application that was created for the general public to provide broad access to the O*NET database of occupational information. O*NET OnLine offers a variety of search options and occupational data, while My Next Move is a streamlined application for students and job seekers. Both applications were developed for the U.S. Department of Labor by the National Center for O*NET Development. See onetonline.org for more information.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24254', '12', '24254', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001228', 'Status End Date', NULL, 'The last year, month and day when a status applied to an individual.', 'YYYY-MM-DD', '0', 'This element reflects the end date for a person''s status rather than that person''s participation in a program. Use Program Participation Exit Date if referring to a person''s participation in a program or receipt of services. Status dates and program participation dates don''t need to align, they are for different purposes. For example, for a homeless student the Status Begin Date and Status End Date elements are used to record when the student began being homeless to the date when the student ceased being homeless. The student may begin receiving services under a program for homeless students after becoming homeless and that program may continue to provide services after the student ceases to have the status of "homeless" and therefore have a Program Participation Start Date and Program Participation Exit Date that are different from the status dates. Students under the McKinney-Vento may continue to receive services until the end of a school year even if they become stably housed at some point during the year.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22193', '11', '22193', NULL, NULL) +VALUES ('001289', 'Career Education Plan Date', NULL, 'The date on which an individual''s professional development career plan was last updated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24255', '12', '24255', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001229', 'Maternal Guardian Education', NULL, 'The highest level of education attained by a person''s mother or maternal guardian', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22194', '11', '22194', NULL, NULL) +VALUES ('001290', 'Career Education Plan Type', NULL, 'An indication of whether an individual completed an individualized guidance and counseling plan', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24256', '12', '24256', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001230', 'Paternal Guardian Education', NULL, 'The highest level of education attained by a person''s father or paternal guardian', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22195', '11', '22195', NULL, NULL) +VALUES ('001291', 'Career Pathways Program Participation Indicator', NULL, 'An indication of an individual who is participating in a program that is a component of or leads to a specific or recognized career pathway, as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24257', '12', '24257', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001231', 'Individualized Program Service Plan Date Type', NULL, 'An indication of the significance of a date to an individualized program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22196', '11', '22196', NULL, NULL) +VALUES ('001292', 'Charter School Authorizer Type', NULL, 'The type of agency that authorized the establishment or continuation of a charter school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24258', '12', '24258', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001232', 'Individualized Program Date', NULL, 'The year, month and day on which the status of an individualized program for a student is significantly altered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22197', '11', '22197', NULL, NULL) +VALUES ('001293', 'Charter School Approval Year', NULL, 'The school year in which a charter school was initially approved.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24259', '12', '24259', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001233', 'Individualized Program NonInclusion Minutes Per Week', NULL, 'The number of minutes per week that a student with disabilities is served in a special education setting separate from his or her non-disabled peers.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22198', '11', '22198', 'Updated', 'Edited definition to fix mix up.') +VALUES ('001296', 'Correctional Education Facility Type', NULL, 'The type of facility in which an inmate receives correctional education services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24262', '12', '24262', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001234', 'Individualized Program Inclusion Minutes Per Week', NULL, 'The number of minutes per week that a student with disabilities is served in a regular classroom with his or her non-disabled peers.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22199', '11', '22199', 'Updated', 'Edited definition to fix mix up.') +VALUES ('001297', 'Correctional Education Reentry Services Participation Indicator', NULL, 'An indication of whether an adult correctional education student who receives instructional services (e.g., life skills, cognitive restructuring, etc.) to support reentry into society.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24263', '12', '24263', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001235', 'Individualized Program Transition Plan Type', NULL, 'The post-school transition plan for the student recorded on their Individualized Education Program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22200', '11', '22200', NULL, NULL) +VALUES ('001298', 'Course Academic Grade Scale Code', NULL, 'The grading scale used by an academic educational institution for an academic course.', 'Integer - 2 digits with leading zeros', '0', 'Based on the American Medical Colleges Admissions Services (AMCAS) grade scale, values 01 through 99. See Appendix E of the PESC XML High School Transcript Implementation Guide for a complete list of code values. 3-digit values (500 and above) established in earlier versions of the standard for miscellaneous grades are deprecated.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24264', '12', '24264', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001236', 'Individualized Program Service Plan Date', NULL, 'The year, month and day on which the status of the service plan for a child is established or significantly altered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22201', '11', '22201', NULL, NULL) +VALUES ('001299', 'Course Academic Grade Status Code', NULL, 'Additional information regarding the context of the given grade.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24265', '12', '24265', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001237', 'Individualized Program Service Plan Meeting Location', NULL, 'The place in which a child''s service plan meeting is held.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22202', '11', '22202', NULL, NULL) +VALUES ('001300', 'Course Add Date', NULL, 'The date an individual was added to an academic course at a school.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24266', '12', '24266', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001238', 'Individualized Program Service Plan Meeting Participants', NULL, 'The position titles of individuals who attend the service plan meeting.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22203', '11', '22203', NULL, NULL) +VALUES ('001301', 'Course Applicable Education Level', NULL, 'The education level, grade level or primary instructional level at which a course is intended.', NULL, '1', 'This element is repeatable for most use cases. Examples: (1.) SCED identifiers may specify a grade span of two or more grades. (2) A postsecondary course designed to qualify a student for an associates degree and professional certification could be repeated with both of those options.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24267', '12', '24267', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001239', 'Individualized Program Service Plan Signed By', NULL, 'The position titles of individuals who sign a written service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22204', '11', '22204', NULL, NULL) +VALUES ('001302', 'Course Certification Description', NULL, 'A description of the certification or recognition associated with this course (ex. Networking, CAD, etc.)', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24268', '12', '24268', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001240', 'Individualized Program Service Plan Signature Date', NULL, 'The year, month and day on which the service plan document is signed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22205', '11', '22205', NULL, NULL) +VALUES ('001303', 'Course Credit Basis Type', NULL, 'The type of enrollment associated with the credit hours for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24269', '12', '24269', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001241', 'Individualized Program Service Plan Reevaluation Date', NULL, 'Date student will be reevaluated for continued placement in a support program(s).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22207', '11', '22207', NULL, NULL) +VALUES ('001304', 'Course Credit Level Type', NULL, 'The level of credit associated with the credit hours earned for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24270', '12', '24270', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001242', 'Special Education Full Time Equivalency', 'Special Education FTE', 'Calculated ratio of time the student is in a special education setting. Values range from 0.00 to 1.00. If the student is in a special education setting 25% of the time, the value is .25; if 100% of the time, the value is 1.00.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22208', '11', '22208', NULL, NULL) +VALUES ('001305', 'Course Drop Date', NULL, 'The date on which the individual drops or withdraws from the course.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24271', '12', '24271', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001243', 'Program Participation Status', NULL, 'The current status of the student''s program participation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22209', '11', '22209', NULL, NULL) +VALUES ('001306', 'Course Funding Program', NULL, 'A program through which the course is funded.', 'Alphanumeric - 30 characters maximum', '0', 'This may be a program targeted to a specific student population (e.g. SPED, ESOL) and the funding guidelines may specify that all or some of the students in the course are members of the subgroup.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24272', '12', '24272', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001244', 'Program Gifted Eligibility Criteria', NULL, 'State/local code used to determine a student''s eligibility for Gifted/Talented program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22210', '11', '22210', NULL, NULL) +VALUES ('001307', 'Course Honors Type', NULL, 'An indication that the course is or can be counted as an honors course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24273', '12', '24273', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001245', 'Credential Definition Category System', 'Credential Category System', 'The system that defines the categories of the qualification, achievement, personal or organizational quality, or aspect of an identity used in Credential Category Type.', 'Alphanumeric - 30 characters maximum', '0', 'This element recognizes formal adoption of categories for the Achievement Category Type to aid in comparability of data when a formally adopted vocabulary is used.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22211', '11', '22211', NULL, NULL) +VALUES ('001308', 'Course Instruction Method', NULL, 'The primary method of instruction used for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24274', '12', '24274', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001246', 'Learning Resource Education Level ', NULL, 'The education level, grade level or primary instructional level at which a Learning Resource is intended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22212', '11', '22212', NULL, NULL) +VALUES ('001309', 'Course Instruction Site Name', NULL, 'The name of the location at which the course is taught.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24275', '12', '24275', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001248', 'Immunization Type', NULL, 'An indication of the type of immunization that an individual has satisfactorily received. (Note: The International Classification of Diseases (ICD) is maintained by the World Health Organization. The ICD is revised periodically to incorporate changes in the medical field, the most updated and detailed list of International Statistical Classification of Diseases and Related Health Problems can be found at http://www.who.int/classifications/apps/icd/icd10online).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22214', '11', '22214', NULL, NULL) +VALUES ('001310', 'Course Instruction Site Type', NULL, 'An indication of the type of location at which the course is taught.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24276', '12', '24276', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001249', 'Competency Definition Notes', 'Learning Standard Item Notes, Competency Item Notes', 'Information about the derivation of a Competency Definition Statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22215', '11', '22215', NULL, NULL) +VALUES ('001311', 'Course Interaction Mode', NULL, 'The primary type of interaction, synchronous or asynchronous, defined for the course.', NULL, '1', 'This may be an attribute of a Course (as designed) or an instance of a Class Section (as delivered).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24277', '12', '24277', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001250', 'Competency Definition Version', 'Learning Standard Item Version, Competency Item Version', 'A label assigned by the publisher indicating the version of the competency framework statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22216', '11', '22216', NULL, NULL) +VALUES ('001312', 'Course Level Type', NULL, 'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24278', '12', '24278', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001251', 'Assessment Item Response Theory Parameter A', NULL, 'The Item Response Theory value representing the discrimination of the item. The a parameter is found by taking the slope of the line tangent to the item characteristic curve at the inflection point, B. The parameter is the steepness of the curve at its steepest point.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22217', '11', '22217', NULL, NULL) +VALUES ('001313', 'Course Narrative Explanation Grade', NULL, 'The narrative of the grade awarded to an individual in an academic course in those cases where a course does not receive a letter or numeric grade included in the grading scale of the Course Academic Grade Qualifier.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24279', '12', '24279', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001252', 'Assessment Item Response Theory Parameter B', NULL, 'The Item Response Theory value representing the difficulty of the item. It is the Theta value for the location of the inflection point of the item characteristic curve.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22218', '11', '22218', NULL, NULL) +VALUES ('001314', 'Course Number', NULL, 'The official reference number portion of a course identifier. This number normally designates the level of the course as well as the level of the individual expected to enroll in the course.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24280', '12', '24280', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001253', 'Assessment Item Response Theory Parameter Difficulty Category', NULL, 'A category for the difficulty of the item based on the Item Response Theory value.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22219', '11', '22219', NULL, NULL) +VALUES ('001315', 'Course Section Number', NULL, 'The number assigned to differentiate among distinct occurrences of courses that have the same course abbreviation and number but are considered to be different courses.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24281', '12', '24281', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001254', 'Assessment Item Response Theory Parameter C', NULL, 'The Item Response Theory value for multiple choice items representing the guessing of the item. The c parameter is a lower asymptote. It is the low point of the curve as it moves to negative infinity on the horizontal axis. You can think of c as the probability that a chicken would get the item right.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22220', '11', '22220', NULL, NULL) +VALUES ('001316', 'Course Total', NULL, 'The total number of courses listed on a transcript. Used as a check digit for integrity purposes.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24282', '12', '24282', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001255', 'Assessment Item Response Theory Parameter D1', NULL, 'For polytomous assessment items with more than two possible responses, this is the item response theory value representing the threshold between the first and second item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22221', '11', '22221', NULL, NULL) +VALUES ('001317', 'Credit Hours Applied Other Program', NULL, 'Codes identifying the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24283', '12', '24283', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001256', 'Assessment Item Response Theory Parameter D2', NULL, 'For polytomous assessment items with more than two possible responses, this is the item response theory value representing the threshold between the second and third item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22222', '11', '22222', NULL, NULL) +VALUES ('001318', 'Career and Technical Education Instructor Industry Certification', 'CTE Instructor Industry Certification', 'An indication of whether a Career and Technical Education (CTE) instructor holds a current industry-recognized credential related to their teaching field.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24284', '12', '24284', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001257', 'Assessment Item Response Theory Parameter D3', NULL, 'For polytomous assessment items with more than three possible responses, this is the item response theory value representing the threshold between the third and fourth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22223', '11', '22223', NULL, NULL) +VALUES ('001319', 'Disability Condition Status Type', 'Disability Condition Status Code', 'A code indicating the disability condition status.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24285', '12', '24285', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001258', 'Assessment Item Response Theory Parameter D4', NULL, 'For polytomous assessment items with more than four possible responses, this is the item response theory value representing the threshold between the fourth and fifth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22224', '11', '22224', NULL, NULL) +VALUES ('001320', 'Disability Condition Type', NULL, 'Codes identifying the set of disability conditions.', NULL, '1', 'Disability Conditional Type may be used in K12 to specify a disability other than Primary Disability Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24286', '12', '24286', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001259', 'Assessment Item Response Theory Parameter D5', NULL, 'For polytomous assessment items with more than five possible responses, this is the item response theory value representing the threshold between the fifth and sixth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22225', '11', '22225', NULL, NULL) +VALUES ('001321', 'Disability Determination Source Type', NULL, 'Codes identifying the set of disability determination sources.', NULL, '1', 'Disability Conditional Type may be used in K12 to specify a disability other than Primary Disability Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24287', '12', '24287', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001904', 'Facility Enrollment Capacity', NULL, 'The maximum number of age appropriate students who can be enrolled in a facility such that the district''s programmatic, operational, and student/teacher work load requirements are met.', 'Integer', '0', 'This element will be phased out in version 12. It is being replaced by Enrollment Capacity.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22885', '11', '22885', 'Updated', 'Added Usage Note.') +VALUES ('001322', 'Disciplinary Action IEP Placement Meeting Indicator', NULL, 'An indication as to whether an offense and/or disciplinary action resulted in a meeting of a student’s Individualized Education Program (IEP) team to determine appropriate placement.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24288', '12', '24288', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001905', 'Organization Relationship Type', NULL, 'The nature of one organization’s relationship to another.', NULL, '1', 'Related Body would be used for a use case in which no hierarchy exists, such as a foundation related to a postsecondary institution. Neither organization has authority over the other, but is related to one another.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22886', '11', '22886', 'Updated', 'Add new option to existing option set. Added Usage Note.') +VALUES ('001351', 'Financial Accounting Period Budgeted Value', NULL, 'The budgeted value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24318', '12', '24318', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001906', 'Facility Ownership Indicator', NULL, 'Indicates the public or private entity holds legal title to the building and/or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22887', '11', '22887', NULL, NULL) +VALUES ('001957', 'Number of Days Tardy', NULL, 'The number of days a person is tardy when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24948', '12', '24948', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001907', 'Competency Framework Source URL', NULL, 'A URL that resolves to the original or authoritative competency framework document.', 'Alphanumeric - 512 characters maximum', '0', 'This is the URL of a human-readable artifact. Often this document is published in html and/or pdf and is used by the standard setting entity as part of its approval process.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22888', '11', '22888', NULL, NULL) +VALUES ('001983', 'Number of Dependents Type', NULL, 'The student''s relationship to the dependents who live with the student or receive more than half of the student''s support', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24949', '12', '24949', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001908', 'Competency Definition Typical Age Range Minimum', NULL, 'The typical minimum age at which a person learns the defined competency.', 'Integer - greater than or equal to 0', '0', 'Use this element with "Competency Definition Typical Age Range Maximum" instead of "Competency Item Typical Age Range"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22889', '11', '22889', NULL, NULL) +VALUES ('001982', 'Number of Household College Students', NULL, 'Number of people, including the student, who will attend at least half-time in the current academic year, a program that leads to a college degree or certificate', 'Integer - greater than or equal to 0', '0', 'This information is collected on the FAFSA', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24950', '12', '24950', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001909', 'Competency Definition Typical Age Range Maximum', NULL, 'The typical maximum age at which a person learns the defined competency.', 'Integer - greater than or equal to 0', '0', 'Use this element with "Competency Definition Typical Age Range Minimum" instead of "Competency Item Typical Age Range"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22890', '11', '22890', NULL, NULL) +VALUES ('001945', 'Personal Information Type', NULL, 'The type of personal information verified through the Personal Information Verification evidence.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24951', '12', '24951', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001910', 'Credential Definition Date Effective', NULL, 'Effective date of the content of a credential definition.', 'YYYY-MM-DD', '0', 'This is the date the content/definition of the credential became effective, not necessarily the date that one or more credentialing organizations began offering the credential.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22891', '11', '22891', NULL, NULL) +VALUES ('001932', 'Primary Learning Device Access', NULL, 'An indication of whether the primary learning device is shared or not shared with another individual', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Is the student''s primary learning device shared with anyone else?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24952', '12', '24952', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001911', 'Credential Offered Start Date', NULL, 'The first date a credential was offered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22892', '11', '22892', NULL, NULL) +VALUES ('001931', 'Primary Learning Device Away From School', NULL, 'The type of device the student uses most often to complete learning activities away from school.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "What device does the student most often use to complete learning activities away from school?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24953', '12', '24953', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001912', 'Credential Offered End Date', NULL, 'The last date a credential was offered.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22893', '11', '22893', NULL, NULL) +VALUES ('001933', 'Primary Learning Device Provider', NULL, 'The provider of the primary learning device.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Who provided the primary learning device to the student?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24954', '12', '24954', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001913', 'CTDL Audience Level Type', 'ceterms:AudienceLevel', 'Type of level indicating a point in a progression through an educational or training context, for which the credential is intended; select from an existing enumeration of such types.', NULL, '1', 'This is similar to "PESC Award Level Type" and "Academic Award Level Conferred" but uses a different controlled vocabulary. See https://credreg.net/ctdl/terms/Credential#AudienceLevel.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22894', '11', '22894', NULL, NULL) +VALUES ('001943', 'Race', NULL, 'The origins of a person.', NULL, '1', 'It is expected that a person may select more than one option with the exception of the options "Demographic Race Two or More Races" and "Race and Ethnicity Unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24955', '12', '24955', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001914', 'Credential Definition Agent Role Type', NULL, 'The role that an organization or person has in relation to this Credential Definition based on terms defined by Credential Engine.', NULL, '1', 'Option codes and definitions are from the Credential Engine and the ceterms namespace, except the codes use Pascal case in CEDS to follow CEDS conventions and use camel case in the original ceterms.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22895', '11', '22895', NULL, NULL) +VALUES ('001974', 'Record Status Creator Entity', NULL, 'The type of entity that created or indicated the Record Status Type', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24956', '12', '24956', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001915', 'Progress Achieving English Language Proficiency Indicator Type', NULL, 'The category used to report the school''s performance on the progress of achieving the English language proficiency indicator.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22896', '11', '22896', NULL, NULL) +VALUES ('001973', 'Record Status Date', NULL, 'The date the record was marked with the Record Status Type.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24957', '12', '24957', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001916', 'Progress Achieving English Language Proficiency State Defined Status', NULL, 'The state defined status assigned to the school''s performance on the progress of achieving the English language proficiency indicator.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22897', '11', '22897', NULL, NULL) +VALUES ('001972', 'Record Status Type', NULL, 'A process indicator of the level of stability, quality, and/or preparedness of the record.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24958', '12', '24958', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001917', 'Record Start Date Time', NULL, 'The start date and, optionally, time that a record is active as used to support version control.', 'YYYY-MM-DDTHH:MM:SS', '0', 'See CEDS Integrated Data Store for use in version control.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', '11', '22898', NULL, NULL) +VALUES ('001946', 'Role', NULL, 'A description of the way in which a person relates to an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24959', '12', '24959', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001918', 'Record End Date Time', NULL, 'The end date and, optionally, time that a record is active as used to support version control.', 'YYYY-MM-DDTHH:MM:SS', '0', 'See CEDS Integrated Data Store for use in version control. All CEDS Exit and End Dates represent the last day of the date range specified.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', '11', '22899', NULL, NULL) +VALUES ('001964', 'Source System Data Collection Identifier', NULL, 'The identifier specified by the source system that uniquely identifies the data collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24960', '12', '24960', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001919', 'Start Time', NULL, 'The starting hour, minute and second.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22900', '11', '22900', NULL, NULL) +VALUES ('001965', 'Source System Name', NULL, 'The name of the source system that provided the data within the collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24961', '12', '24961', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001920', 'End Time', NULL, 'The ending hour, minute and second.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22901', '11', '22901', NULL, NULL) +VALUES ('001959', 'Staff Compensation Annual Supplement', NULL, 'The annual sum of payments given to staff in addition to their regular wages.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24962', '12', '24962', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001925', 'Additional Targeted Support and Improvement Status', NULL, 'The designation given to a school by the state for additional targeted support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22902', '11', '22902', NULL, NULL) +VALUES ('001960', 'Staff Compensation Longevity', NULL, 'Compensation paid to a staff member based on their years of service.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24963', '12', '24963', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001929', 'Awaiting Foster Care Status', NULL, 'An indication of whether this child is awaiting foster care.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22903', '11', '22903', NULL, NULL) +VALUES ('001958', 'Staff Compensation Source Type', NULL, 'The source for the staff compensation a person receives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24964', '12', '24964', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001923', 'Comprehensive Support and Improvement Status', NULL, 'The designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22904', '11', '22904', NULL, NULL) +VALUES ('001985', 'Staff Evaluation Part Name', NULL, 'The name of the component part that is being evaluated and scored.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24965', '12', '24965', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001928', 'Do Not Publish Indicator', NULL, 'An indication that the record should not be published.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', '11', '22905', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001987', 'Staff Evaluation Part Scale', NULL, 'The quantitative or qualitative range of possible scores/rating for a person''s performance on a component part (e.g., 0 - 10; Poor, Fair, Average, Good, Excellent).', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24966', '12', '24966', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001921', 'Full Time Equivalency', NULL, 'The time a person is enrolled, employed, involved, or participates in the organization, divided by the time the organization defines as full-time for that role.', 'Numeric - up to 2 decimal places', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22906', '11', '22906', NULL, NULL) +VALUES ('001986', 'Staff Evaluation Part Score or Rating', NULL, 'The actual quantitative or qualitative assessment of a person''s performance on a component part that is being evaluated. ', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24967', '12', '24967', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001926', 'Grade Levels Approved', NULL, 'The specific grade or combination of grades approved by an organization to be offered by an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22907', '11', '22907', 'Updated', 'Added and removed options to the existing option set.') +VALUES ('001963', 'Student School Affiliation State Defined Status', NULL, 'An indication of the nature of a student''s affiliation, as defined by the state, with a public school and used generally, but not exclusively, for the purpose of determining residency, funding, or accountability.', NULL, '1', 'This element should be used in conjunction with the Public School Residence Status and the Responsible School Type elements to create specificity about the role a school plays or should play in the education of the student.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24968', '12', '24968', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001930', 'Out of Workforce Indicator', NULL, 'An individual: (A) who is a displaced homemaker, as defined in section 3 of the Workforce Innovation and Opportunity Act (29 U.S.C. 3102); or (B) who (i)(I) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; or (II) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (ii) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22908', '11', '22908', NULL, NULL) +VALUES ('001940', 'WIOA Barriers to Employment', NULL, 'A self-identified barrier as defined by the Workforce Innovation and Opportunity Act (WIOA) that is presumed to affect placement of a participant in unsubsidized employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24969', '12', '24969', 'Updated', 'Add new option to option set, change option set, and add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001922', 'Program Entry Reason', NULL, 'The documented or assumed reason a person is being served by a program.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22909', '11', '22909', NULL, NULL) +VALUES ('001941', 'WIOA Career Services', NULL, 'An indication of whether or not the individual has received services as identified in sec. 134(c)(2) of the Workforce Innovation and Opportunity Act (WIOA) consisting of (a) basic career services, (b) individualized career services, or (c) follow-up services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24970', '12', '24970', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001924', 'Targeted Support and Improvement Status', NULL, 'The designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22910', '11', '22910', NULL, NULL) +VALUES ('001942', 'WIOA Training Services', NULL, 'An indication of whether or not the individual has received services as defined by the Workforce Innovation and Opportunity Act (WIOA), one or more courses or classes, or a structured regimen that provides the services in 20 CFR part 680.200 and leads to: (a) An industry-recognized certificate or certification, a certificate of completion of a registered apprenticeship, a license recognized by the State involved or the Federal Government, an associate or baccalaureate degree, or community college certificate of completion; (b) Consistent with § 680.350, a secondary school diploma or its equivalent; (c) Employment; or (d) Measurable skill gains toward a credential described in paragraph (a) or (b) of this section or employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24971', '12', '24971', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001927', 'Telephone Number Listed Status', NULL, 'An indication of whether a telephone number is listed under a directory assistance service.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22911', '11', '22911', NULL, NULL) +VALUES ('001999', 'Adjusted Capacity', NULL, 'The maximum number of participants that can be served in a program.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24972', '12', '24972', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001955', 'Adult Education Credential Attainment Employed Indicator', NULL, 'An indication of whether the adult education participant received a secondary school diploma or its recognized equivalent while enrolled in the adult education program or within one year of exiting the adult education program and was employed within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22912', '11', '22912', NULL, NULL) +VALUES ('002000', 'Adjusted Capacity Reason Type', NULL, 'Identifies the reason for adjusted capacity in a program. ', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24973', '12', '24973', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001956', 'Adult Education Credential Attainment Postsecondary Credential Indicator', NULL, 'An indication of whether the adult education participant received a postsecondary credential while enrolled in the adult education program or within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22913', '11', '22913', NULL, NULL) +VALUES ('001995', 'Assessment Type Administered to English Learners', NULL, 'The types of assessments administered to English Learners.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24974', '12', '24974', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001954', 'Adult Education Credential Attainment Postsecondary Enrollment Indicator', NULL, 'An indication of whether the adult education participant received a secondary school diploma or its recognized equivalent while enrolled in the adult education program or within one year of exiting the adult education program and entered into postsecondary education within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22914', '11', '22914', NULL, NULL) +VALUES ('001994', 'Course Level Approval Indicator', NULL, 'An indication that there are school or program developed requirements for student participation in the course.', 'Option Set', '1', 'This element is used in conjunction with Course Level Characteristic.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24975', '12', '24975', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001939', 'Adult Education Program Exit Reason', NULL, 'The documented or assumed reason the person is no longer being served by the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22915', '11', '22915', NULL, NULL) +VALUES ('002001', 'Early Learning Age 2 and Older Capacity', NULL, 'The maximum number of children ages two and above that can be served.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24976', '12', '24976', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001935', 'Barrier to Internet Access In Residence', NULL, 'An indication of the barrier to having internet access in the student''s primary place of residence.', NULL, '1', 'This element is used in combination with the element "Internet Access in Residence." When asking for this information on a parent or student survey, the question could be phrased like this: "If the student is unable to access the internet in their primary place of residence, why not?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22916', '11', '22916', NULL, NULL) +VALUES ('002002', 'Early Learning Age Under 2 Capacity', NULL, 'The maximum number of children under the age of two that can be served.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24977', '12', '24977', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001984', 'Children of Fallen Heroes Indicator', NULL, 'Pell-eligible students whose parent or guardian was a member of the U.S. armed forces and died as a result of military service performed in Iraq or Afghanistan after the events of 9/11 or a public safety officer and died as a result of active service in the line of duty. At the time of the parent''s or guardian''s death, the student must be less than 24 years of age or enrolled in college or career school at least part-time.', NULL, '1', 'The Children of Fallen heroes Indicator should follow the current legislation definitions and be updated as definitions change', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22917', '11', '22917', NULL, NULL) +VALUES ('001997', 'EDFacts Certification Status', NULL, 'An indication of whether an educator holds the certification or licensure required by their assignment.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24978', '12', '24978', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001938', 'Cohort Median Earnings', NULL, 'The midpoint between the lowest and highest quarterly wage, in U.S. dollars, for the total number of persons included in the cohort for the period of time between the Employment Record Reference Period Start Date and Employment Record Reference Period End Date.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22918', '11', '22918', NULL, NULL) +VALUES ('002012', 'Enrollment Capacity', NULL, 'Maximum number of age-appropriate students who can be enrolled. ', 'Integer', '0', 'Enrollment capacity can be collected at a variety of levels, such as classroom, grade, school, and facility.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24979', '12', '24979', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001953', 'Credential Definition Terminal Degree Indicator', NULL, 'This degree is the highest degree that can be awarded in this classification of instructional programs field or program area.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22919', '11', '22919', NULL, NULL) +VALUES ('002010', 'Federal Program Subgrant Code', NULL, 'An additional code appended to the Federal Program Code used to identify a subgrant of the grant identified by the Federal Program Code.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24980', '12', '24980', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001970', 'Data Collection Academic School Year', NULL, 'The year for a reported school session for which the data is applicable.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22920', '11', '22920', NULL, NULL) +VALUES ('002011', 'Financial Account Coding System Organization Type', NULL, 'The type of organization that created the coding system for the financial account information.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24981', '12', '24981', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001969', 'Data Collection Close Date', NULL, 'The date the data collection closes or ends.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22921', '11', '22921', NULL, NULL) +VALUES ('002007', 'Financial Account Local Balance Sheet Code', NULL, 'A local code used to describe balance sheet accounts and statement of net position accounts which are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24982', '12', '24982', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001967', 'Data Collection Description', NULL, 'The description of what is included in the data within the context of the data collection based on the source system and collection period as defined by the Data Collection Open Date and Data Collection Close Date.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22922', '11', '22922', NULL, NULL) +VALUES ('002008', 'Financial Account Local Fund Classification', NULL, 'A local code used to classify a fund which is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24983', '12', '24983', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001966', 'Data Collection Name', NULL, 'A human readable name used to identify the data within the collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22923', '11', '22923', NULL, NULL) +VALUES ('002009', 'Financial Account Local Program Code', NULL, 'A local code used to describe a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24984', '12', '24984', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001968', 'Data Collection Open Date', NULL, 'The date the data collection opens or commences.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22924', '11', '22924', NULL, NULL) +VALUES ('002003', 'Financial Account Local Revenue Code', NULL, 'A local code used to record revenue and other receivables by source.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24985', '12', '24985', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001971', 'Data Collection School Year', NULL, 'The year for a reported school session in which the data collection occurs.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22925', '11', '22925', NULL, NULL) +VALUES ('002004', 'Financial Expenditure Local Function Code', NULL, 'A local code used to describe the activity for which a service or material object is acquired.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24986', '12', '24986', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001990', 'Data Collection Status', NULL, 'A process indicator of the level of stability, quality, and/or preparedness of the collection of data.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22926', '11', '22926', NULL, NULL) +VALUES ('002006', 'Financial Expenditure Local Level of Instruction Code', NULL, 'A local code used to classify the segregation of expenditures by instructional level.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24987', '12', '24987', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001979', 'EDFacts Academic or Career and Technical Outcome Exit Type', NULL, 'The type of academic or career and technical outcome attained up to 90 days after exiting the facility or program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22927', '11', '22927', NULL, NULL) +VALUES ('002005', 'Financial Expenditure Local Object Code', NULL, 'A local code used to describe the service or commodity obtained as the result of a specific expenditure.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24988', '12', '24988', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001978', 'EDFacts Academic or Career and Technical Outcome Type', NULL, 'The type of academic or career and technical outcome attained while enrolled in the program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22928', '11', '22928', NULL, NULL) +VALUES ('001993', 'Interdisciplinary Indicator', NULL, 'An indication that the course, projects, and/or learning activities develop knowledge and skills across multiple subject areas and highlight connections between subject area domains, with formal collaboration among teachers across subject areas.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24989', '12', '24989', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001961', 'EDFacts Teacher Inexperienced Status', NULL, 'An indication of whether teachers have been identified as inexperienced as defined by the state.', NULL, '1', 'This element is used specifically for EDFacts reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22929', '11', '22929', NULL, NULL) +VALUES ('002013', 'Primary Program Indicator', NULL, 'An indication that the associated program is the primary function of this organization.', 'Option Set', '1', 'This element is used in conjunction with Program Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24990', '12', '24990', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001962', 'EDFacts Teacher Out of Field Status', NULL, 'An indication of whether teachers have been identified as teaching a subject or field for which they are not certified or licensed as defined by the state.', NULL, '1', 'This element is used specifically for EDFacts reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22930', '11', '22930', NULL, NULL) +VALUES ('001991', 'Project-Based Learning Indicator', NULL, 'An indication that an instructional model is being implemented wherein a student learns through answering complex questions or solving for real-world problems. Also called problem-based learning, inquiry-based learning, or learning-by-doing.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24991', '12', '24991', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001981', 'Emancipated Minor', NULL, 'A minor student under the age of 18 who has been granted by legal action to have the power and capacity of an adult.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22931', '11', '22931', NULL, NULL) +VALUES ('001992', 'Project-Based Learning Type', NULL, 'The type of project-based instruction being offered.', 'Option Set', '1', 'Select all that apply.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24992', '12', '24992', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001944', 'Federal Race and Ethnicity Declined', NULL, 'A parent, guardian, or student declined to report sufficient information for identifying a student''s federal race and/or ethnicity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22932', '11', '22932', NULL, NULL) +VALUES ('001996', 'Special Education Teacher Qualification Status', NULL, 'An indication of whether special education teachers are fully certified in the State..', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24993', '12', '24993', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001947', 'First Generation College Student', NULL, 'The term First Generation College Student means an individual both of whose parents did not complete a baccalaureate degree or in the case of any individual who regularly resided with and received support from only one parent, an individual whose only such parent did not complete a baccalaureate degree.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22933', '11', '22933', NULL, NULL) +VALUES ('001998', 'Student Support Service Availability Type', NULL, 'The group of students to whom related or ancillary service is offered within the formal educational system or by an outside agency which provides non-instructional service to support the general welfare of students.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24994', '12', '24994', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001989', 'Home Language Survey Administration Date', NULL, 'The year, month, and day on which the Home Language Survey is known to have been administered to the parent or guardian of this student.', 'YYYY-MM-DD', '0', 'The actual date of the administration is not what this element is capturing but rather when the result of the home language survey have been received by the school. The survey may have been completed in the school office upon registration of the student or could have been completed at home as part of a set of documents parents or guardians complete when enrolling students. When the completed home language survey has been provided to the school, the date received or the date the information is entered into a student information system as having been completed is sufficient to meet the intent of this element.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22934', '11', '22934', NULL, NULL) +VALUES ('002090', 'Accessible Format Issued Begin Date', NULL, 'The date the student was issued any accessible format(s).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24995', '12', '24995', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001988', 'Home Language Survey Administration Indicator', NULL, 'An indication that the parent or guardian of this student was administered the Home Language Survey - a questionnaire given to parents or guardians that helps schools and local education agencies identify which students are potential English Learners and who will require assessment of their English language proficiency to determine whether they are eligible for language assistance services.', NULL, '1', 'The term "administration" would indicate that the results of the home language survey for this student have been provided to the school. The intent of this element is not to determine whether or not the school provided a home language survey to the parents/guardians of the student but instead to determine if the school received the results of that home language survey back from the parents/guardians of the student.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22935', '11', '22935', NULL, NULL) +VALUES ('002091', 'Accessible Format Issued End Date', NULL, 'The end date for the issuance of accessible format(s) to the student.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24996', '12', '24996', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001934', 'Internet Access In Residence', NULL, 'An indication of whether the student is able to access the internet in their primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Can the student access the internet in their primary place of residence?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22936', '11', '22936', NULL, NULL) +VALUES ('002088', 'Accessible Format Issued Indicator', NULL, 'An indication that the student was issued an accessible format according to their IEP or 504 Plan. ', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24997', '12', '24997', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001936', 'Internet Access Type In Residence', NULL, 'The primary type of internet service used in the student''s primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "What is the primary type of internet service used in the student''s primary place of residence?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22937', '11', '22937', NULL, NULL) +VALUES ('002092', 'Accessible Format Required Indicator', NULL, 'An indication that the student requires an accessible format according to their IEP or 504 Plan.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24998', '12', '24998', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001976', 'Internet Download Speed', NULL, 'The speed that data or information can be downloaded from a server on the internet to one''s device in megabits per second.', 'Numeric', '0', 'This information is collected via an internet speed test. In 2021, the FCC minimum broadband threshold is 25 Mbps. Display Example: 25.0', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22938', '11', '22938', NULL, NULL) +VALUES ('002089', 'Accessible Format Type', NULL, 'An alternative manner or form that gives an eligible person access to the work when the copy or phonorecord in the accessible format is used exclusively by the eligible person to permit him or her to have access as feasibly and comfortably as a person without such disability (20 U.S.C. § 121(d)(1)).', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24999', '12', '24999', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001937', 'Internet Performance In Residence', NULL, 'An indication of whether the student can complete the full range of learning activities, including video streaming and assignment upload, without interruptions caused by poor internet performance in their primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Can the student complete learning activities such as streaming a video and uploading assignments without interruptions caused by poor internet performance?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22939', '11', '22939', NULL, NULL) +VALUES ('002110', 'Incident Activity', NULL, 'The activity taking place during the occurrence. ', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25024', '12', '25024', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001977', 'Internet Speed Test Date Time', NULL, 'The date and, optionally, time that the information was gathered.', 'YYYY-MM-DDTHH:MM:SS', '0', 'This information is collected and stored as part of each speed test. Display Example: 2021-09-20T10:30:00', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22940', '11', '22940', NULL, NULL) +VALUES ('002017', 'Adjusted Exit or Withdrawal Type', NULL, 'An adjustment of the last known circumstances under which the student exited from membership in an educational institution.', 'Option Set', '1', 'There are extended periods of time where information collected about a student can change, but for which there may not be another enrollment record. Summer is a good example of this. At the end of the school year, the Exit or Withdrawal Reason for the student may be 73062 - Student is expected to return to the same school. Then halfway through the summer, the student moves out of state - 01909 - Transferred to a public school in a different state. There is a need to capture this adjusted exit information while still retaining the original exit or withdrawal type. This element serves that purpose and should always be used in conjunction with an existing Exit or Withdrawal Type and enrollment record.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25000', '12', '25000', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001975', 'Internet Upload Speed', NULL, 'The speed that data or information can be sent from one''s device to another device or server on the internet in megabits per second.', 'Numeric', '0', 'This information is collected via an internet speed test. In 2021, the FCC minimum broadband threshold is 3 Mbps. Display Example: 3.0', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22941', '11', '22941', NULL, NULL) +VALUES ('002098', 'Attendance Event Duration Day', NULL, 'The duration of the attendance event captured as one whole day or a portion of a day.', 'Numeric - up to 2 decimal places', '0', 'When used to capture daily attendance, 1.0 would represent a whole day. Other examples would include 0.5 as a half-day and 0.33 as one-third of a day. For capturing course section attendance, the recommendation would be to use the element "Attendance Event Duration Minutes".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25001', '12', '25001', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001980', 'Marital Status', NULL, 'The marital status of the person as of today.', NULL, '1', 'This element supports FAFSA questions related to parent''s marital status and student''s marital status. The option set was developed using Census classifications.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22942', '11', '22942', NULL, NULL) +VALUES ('002015', 'Attendance Event Duration Hours', NULL, 'The duration of the attendance event in hours.', 'Numeric - up to 2 decimal places', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25002', '12', '25002', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001950', 'NCES SIDE Date Processed', NULL, 'The year, month, and day on which the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) was processed through the BlindSIDE resource.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22943', '11', '22943', NULL, NULL) +VALUES ('002014', 'Attendance Event Duration Minutes', NULL, 'The duration of the attendance event in minutes.', 'Numeric - up to 2 decimal places', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25003', '12', '25003', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001948', 'NCES SIDE Estimate', NULL, 'The National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) based on the person''s latitude and longitude location.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22944', '11', '22944', NULL, NULL) +VALUES ('002104', 'Board Member Position Type', NULL, 'The position or role the person performs on the board.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25004', '12', '25004', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001949', 'NCES SIDE Standard Error', NULL, 'The standard error applied to the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22945', '11', '22945', NULL, NULL) +VALUES ('002103', 'Board Member Term End Date', NULL, 'The date on which the board member''s term ends.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25005', '12', '25005', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001951', 'NCES SIDE Vintage Begin Year', NULL, 'The begin year for the American Community Survey (ACS) period estimates used to construct the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'YYYY', '0', 'The NCES SIDE base is constructed from ACS five-year microdata. The NCES SIDE Vintage Begin Year indicates the first year of that five-year microdata base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22946', '11', '22946', NULL, NULL) +VALUES ('002102', 'Board Member Term Start Date', NULL, 'The date on which the board member''s term begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25006', '12', '25006', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001952', 'NCES SIDE Vintage End Year', NULL, 'The end year for the American Community Survey (ACS) period estimates used to construct the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'YYYY', '0', 'The NCES SIDE base is constructed from ACS five-year microdata. The NCES SIDE Vintage End Year indicates the last year of that five-year microdata base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22947', '11', '22947', NULL, NULL) +VALUES ('002105', 'Board Membership Type', NULL, 'The type of membership for the board member.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25007', '12', '25007', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001957', 'Number of Days Tardy', NULL, 'The number of days a person is tardy when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22948', '11', '22948', NULL, NULL) +VALUES ('002022', 'Chronic Student Absenteeism Indicator', NULL, 'Indicates whether a student was absent 10% or more school days during the school year with an absence being defined as a student not physically on school grounds and was not participating in instruction or instruction-related activities at an approved off-grounds location for at least half the school day.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25008', '12', '25008', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001983', 'Number of Dependents Type', NULL, 'The student''s relationship to the dependents who live with the student or receive more than half of the student''s support', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22949', '11', '22949', NULL, NULL) +VALUES ('002073', 'Coding System Organization Type', NULL, 'The type of organization that created the coding system for this element.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25009', '12', '25009', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001982', 'Number of Household College Students', NULL, 'Number of people, including the student, who will attend at least half-time in the current academic year, a program that leads to a college degree or certificate', 'Integer - greater than or equal to 0', '0', 'This information is collected on the FAFSA', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22950', '11', '22950', NULL, NULL) +VALUES ('002065', 'Course Funding Program Allowed', NULL, 'An indication of permission for allocation of a course funding program''s funds for the support of a course.', 'Option Set', '1', 'This element is used in relation to the element Course Funding Program.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25010', '12', '25010', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001945', 'Personal Information Type', NULL, 'The type of personal information verified through the Personal Information Verification evidence.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22951', '11', '22951', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('002081', 'Credential Award Relationship', NULL, 'The nature of a credential award''s relationship to another credential award.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25011', '12', '25011', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001932', 'Primary Learning Device Access', NULL, 'An indication of whether the primary learning device is shared or not shared with another individual', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Is the student''s primary learning device shared with anyone else?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22952', '11', '22952', NULL, NULL) +VALUES ('002085', 'Delinquent Program Type', NULL, 'The type of delinquent programs under Title I, Part D, Subpart 1 (State Agency) of ESEA as amended or under Title I, Part D, Subpart 2 (LEA) of ESEA, as amended.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25012', '12', '25012', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001931', 'Primary Learning Device Away From School', NULL, 'The type of device the student uses most often to complete learning activities away from school.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "What device does the student most often use to complete learning activities away from school?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22953', '11', '22953', NULL, NULL) +VALUES ('002016', 'Diversity Equity Inclusion Policy Indicator', NULL, 'Indicates whether or not the program has a written policy addressing diversity, equity and inclusion (DEI).', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25013', '12', '25013', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001933', 'Primary Learning Device Provider', NULL, 'The provider of the primary learning device.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Who provided the primary learning device to the student?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22954', '11', '22954', NULL, NULL) +VALUES ('002113', 'Dropout Reason Type', NULL, 'The reason or reasons the student dropped out of school.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25014', '12', '25014', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001943', 'Race', NULL, 'The origins of a person.', NULL, '1', 'It is expected that a person may select more than one option with the exception of the options "Demographic Race Two or More Races" and "Race and Ethnicity Unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22955', '11', '22955', NULL, NULL) +VALUES ('002074', 'Education Job Type', NULL, 'A broad categorization of the job as it relates to education.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25015', '12', '25015', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001974', 'Record Status Creator Entity', NULL, 'The type of entity that created or indicated the Record Status Type', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22956', '11', '22956', NULL, NULL) +VALUES ('002112', 'Facility Joint Use Description', NULL, 'A description explaining the details of an organization''s shared facility arrangement.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25016', '12', '25016', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001973', 'Record Status Date', NULL, 'The date the record was marked with the Record Status Type.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22957', '11', '22957', NULL, NULL) +VALUES ('002111', 'Facility Joint Use Indicator', NULL, 'An indication that an organization shares a facility or space within a facility with another organization.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25017', '12', '25017', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001972', 'Record Status Type', NULL, 'A process indicator of the level of stability, quality, and/or preparedness of the record.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22958', '11', '22958', NULL, NULL) +VALUES ('002066', 'Financial Account GASB Revenue Classification', NULL, 'The classification of Governmental Accounting Standards Board (GASB) revenues.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25018', '12', '25018', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001946', 'Role', NULL, 'A description of the way in which a person relates to an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22959', '11', '22959', 'Updated', 'Added new option to the existing option set.') +VALUES ('002067', 'Financial Account Local GASB Revenue Classification', NULL, 'A local code used to classify Governmental Accounting Standards Board (GASB) revenues.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25019', '12', '25019', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001964', 'Source System Data Collection Identifier', NULL, 'The identifier specified by the source system that uniquely identifies the data collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22960', '11', '22960', NULL, NULL) +VALUES ('002059', 'Funding Source Amount', NULL, 'The amount of financial support contributed by a specific funding or revenue stream.', 'Alphanumeric - 40 characters maximum', '0', 'The funding source, usually an organization, is related to either another organization that is receiving the funding or to a person such as in the case of employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25020', '12', '25020', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001965', 'Source System Name', NULL, 'The name of the source system that provided the data within the collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22961', '11', '22961', NULL, NULL) +VALUES ('002058', 'Funding Source Percentage', NULL, 'The proportion or percentage of financial support or resources contributed by a specific funding or revenue stream in relation to the total funding.', 'Numeric - up to 2 digits after decimal place', '0', 'The funding source, usually an organization, is related to either another organization that is receiving the funding or to a person such as in the case of employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25021', '12', '25021', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001959', 'Staff Compensation Annual Supplement', NULL, 'The annual sum of payments given to staff in addition to their regular wages.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22962', '11', '22962', NULL, NULL) +VALUES ('002083', 'High Grade Level', NULL, 'The highest grade level when referring to grade levels as a range.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25022', '12', '25022', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001960', 'Staff Compensation Longevity', NULL, 'Compensation paid to a staff member based on their years of service.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22963', '11', '22963', NULL, NULL) +VALUES ('002032', 'High Quality Instructional Material Indicator', NULL, 'An indication of whether the related learning resource meets requirements to be considered high quality instructional material as defined by the organization assigning the indicator.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25023', '12', '25023', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001958', 'Staff Compensation Source Type', NULL, 'The source for the staff compensation a person receives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22964', '11', '22964', NULL, NULL) +VALUES ('002099', 'Instructional Minutes Per Day', NULL, 'The number of instructional minutes in the day in which the school is normally in session.', 'Integer- greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25025', '12', '25025', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001985', 'Staff Evaluation Part Name', NULL, 'The name of the component part that is being evaluated and scored.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22965', '11', '22965', NULL, NULL) +VALUES ('002070', 'Job Identification System', NULL, 'A coding scheme that is used by an organization for identification and record keeping purposes to refer to a job.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25026', '12', '25026', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001987', 'Staff Evaluation Part Scale', NULL, 'The quantitative or qualitative range of possible scores/rating for a person''s performance on a component part (e.g., 0 - 10; Poor, Fair, Average, Good, Excellent).', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22966', '11', '22966', NULL, NULL) +VALUES ('002069', 'Job Identifier', NULL, 'A unique number or alphanumeric code used to identify a job.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25027', '12', '25027', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001986', 'Staff Evaluation Part Score or Rating', NULL, 'The actual quantitative or qualitative assessment of a person''s performance on a component part that is being evaluated. ', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22967', '11', '22967', NULL, NULL) +VALUES ('002077', 'Job Position Expected Start Date', NULL, 'The date, determined by the organization, on which they anticipate the selected individual to commence their role within the organization.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25028', '12', '25028', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001963', 'Student School Affiliation State Defined Status', NULL, 'An indication of the nature of a student''s affiliation, as defined by the state, with a public school and used generally, but not exclusively, for the purpose of determining residency, funding, or accountability.', NULL, '1', 'This element should be used in conjunction with the Public School Residence Status and the Responsible School Type elements to create specificity about the role a school plays or should play in the education of the student.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22968', '11', '22968', NULL, NULL) +VALUES ('002076', 'Job Position Identification System', NULL, 'A coding scheme that is used by an organization for identification and record keeping purposes to refer to a job position.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25029', '12', '25029', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001940', 'WIOA Barriers to Employment', NULL, 'A self-identified barrier as defined by the Workforce Innovation and Opportunity Act (WIOA) that is presumed to affect placement of a participant in unsubsidized employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22969', '11', '22969', NULL, NULL) +VALUES ('002075', 'Job Position Identifier', NULL, 'A unique number or alphanumeric code used to identify a job position.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25030', '12', '25030', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001941', 'WIOA Career Services', NULL, 'An indication of whether or not the individual has received services as identified in sec. 134(c)(2) of the Workforce Innovation and Opportunity Act (WIOA) consisting of (a) basic career services, (b) individualized career services, or (c) follow-up services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22970', '11', '22970', NULL, NULL) +VALUES ('002078', 'Job Position Status', NULL, 'A value defining the status of the job position.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25031', '12', '25031', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001942', 'WIOA Training Services', NULL, 'An indication of whether or not the individual has received services as defined by the Workforce Innovation and Opportunity Act (WIOA), one or more courses or classes, or a structured regimen that provides the services in 20 CFR part 680.200 and leads to: (a) An industry-recognized certificate or certification, a certificate of completion of a registered apprenticeship, a license recognized by the State involved or the Federal Government, an associate or baccalaureate degree, or community college certificate of completion; (b) Consistent with § 680.350, a secondary school diploma or its equivalent; (c) Employment; or (d) Measurable skill gains toward a credential described in paragraph (a) or (b) of this section or employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22971', '11', '22971', NULL, NULL) +VALUES ('002080', 'Job Position Status Cancelled Reason', NULL, 'The reason why the job position was given the job position status of cancelled.', 'Option Set', '1', 'To be used in conjunction with the element Job Position Status.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25032', '12', '25032', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001999', 'Adjusted Capacity', NULL, 'The maximum number of participants that can be served in a program.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22972', '11', '22972', 'New', 'Added new element to DES.') +VALUES ('002079', 'Job Position Status Date', NULL, 'The effective date of the job position status.', 'YYYY-MM-DD', '0', 'Used in conjunction with the element Job Position Status.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25033', '12', '25033', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002000', 'Adjusted Capacity Reason Type', NULL, 'Identifies the reason for adjusted capacity in a program. ', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22973', '11', '22973', 'New', 'Added new element to DES.') +VALUES ('002096', 'LEA GFSA Assurance of Compliance Indicator', NULL, 'Indicates if a Local Education Agency (LEA) has provided an assurance that it is in compliance with the State law requiring that a student who brings a firearm to school, or possesses a firearm at school, be expelled for one year, except that such State law shall allow the chief administering officer of a local educational agency to modify such expulsion requirement for a student on a case-by-case basis if such modification is in writing.', 'Option Set', '1', 'This data is part of the requirement for LEAs to adhere to the Gun Free Schools Act (GFSA).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25034', '12', '25034', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001995', 'Assessment Type Administered to English Learners', NULL, 'The types of assessments administered to English Learners.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22974', '11', '22974', 'New', 'Added new element to DES.') +VALUES ('002097', 'LEA GFSA Policy Assurance Indicator', NULL, 'Indicates if a Local Education Agency has provided an assurance that it is in compliance with the requirement in Section 4141(h) that an LEA receiving ESEA funds have in place a policy requiring referral to the criminal justice or juvenile delinquency system of any student who brings a firearm to a school or possesses a firearm at school. ', 'Option Set', '1', 'This data is part of the requirement for LEAs to adhere to the Gun Free Schools Act (GFSA).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25035', '12', '25035', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001994', 'Course Level Approval Indicator', NULL, 'An indication that there are school or program developed requirements for student participation in the course.', 'Option Set', '1', 'This element is used in conjunction with Course Level Characteristic.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22975', '11', '22975', 'New', 'Added new element to DES.') +VALUES ('002028', 'Learning Resource Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes to refer to a learning resource.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25036', '12', '25036', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002001', 'Early Learning Age 2 and Older Capacity', NULL, 'The maximum number of children ages two and above that can be served.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22976', '11', '22976', 'New', 'Added new element to DES.') +VALUES ('002027', 'Learning Resource Identifier', NULL, 'A unique number or alphanumeric code assigned to a learning resource by an organization.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25037', '12', '25037', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002002', 'Early Learning Age Under 2 Capacity', NULL, 'The maximum number of children under the age of two that can be served.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22977', '11', '22977', 'New', 'Added new element to DES.') +VALUES ('002093', 'Learning Resource Issued Date', NULL, 'The date the learning resource was issued to the student.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25038', '12', '25038', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001997', 'EDFacts Certification Status', NULL, 'An indication of whether an educator holds the certification or licensure required by their assignment.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22978', '11', '22978', 'New', 'Added new element to DES.') +VALUES ('002095', 'Learning Resource Ordered Date', NULL, 'The date the learning resource was ordered for the student.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25039', '12', '25039', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002012', 'Enrollment Capacity', NULL, 'Maximum number of age-appropriate students who can be enrolled. ', 'Integer', '0', 'Enrollment capacity can be collected at a variety of levels, such as classroom, grade, school, and facility.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979', '11', '22979', 'New', 'Added new element to DES.') +VALUES ('002094', 'Learning Resource Received Date', NULL, 'The date the learning resource was received by the organization that placed the order. ', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25040', '12', '25040', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002010', 'Federal Program Subgrant Code', NULL, 'An additional code appended to the Federal Program Code used to identify a subgrant of the grant identified by the Federal Program Code.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22980', '11', '22980', 'New', 'Added new element to DES.') +VALUES ('002031', 'Learning Resource Status', NULL, 'The status of the Learning Resource as of the status start date.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25041', '12', '25041', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002011', 'Financial Account Coding System Organization Type', NULL, 'The type of organization that created the coding system for the financial account information.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22981', '11', '22981', 'New', 'Added new element to DES.') +VALUES ('002033', 'Learning Resource Status Quantity', NULL, 'The total number of a specific related learning resource for each distinct learning resource status.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25042', '12', '25042', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002007', 'Financial Account Local Balance Sheet Code', NULL, 'A local code used to describe balance sheet accounts and statement of net position accounts which are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22982', '11', '22982', 'New', 'Added new element to DES.') +VALUES ('002071', 'Local Job Category', NULL, 'A local code used to describe and classify the job.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25043', '12', '25043', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002008', 'Financial Account Local Fund Classification', NULL, 'A local code used to classify a fund which is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22983', '11', '22983', 'New', 'Added new element to DES.') +VALUES ('002072', 'Local Job Function', NULL, 'A local code indicating the broad business activity supported by the job.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25044', '12', '25044', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002009', 'Financial Account Local Program Code', NULL, 'A local code used to describe a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22984', '11', '22984', 'New', 'Added new element to DES.') +VALUES ('002082', 'Low Grade Level', NULL, 'The lowest grade level when referring to grade levels as a range.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25045', '12', '25045', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002003', 'Financial Account Local Revenue Code', NULL, 'A local code used to record revenue and other receivables by source.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22985', '11', '22985', 'New', 'Added new element to DES.') +VALUES ('002100', 'Lunch Minutes Per Day', NULL, 'The number of lunch minutes in the day in which the school is normally in session.', 'Integer- greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25046', '12', '25046', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002004', 'Financial Expenditure Local Function Code', NULL, 'A local code used to describe the activity for which a service or material object is acquired.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22986', '11', '22986', 'New', 'Added new element to DES.') +VALUES ('002050', 'Military Campaigns', NULL, 'A military campaign in which the person has been involved during the service period.', 'Option Set', '1', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25047', '12', '25047', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002006', 'Financial Expenditure Local Level of Instruction Code', NULL, 'A local code used to classify the segregation of expenditures by instructional level.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22987', '11', '22987', 'New', 'Added new element to DES.') +VALUES ('002034', 'Military Country', NULL, 'The unique two character International Organization for Standardization (ISO) code for the country in whose military a person serves or served.', 'Option Set', '1', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list. This element is intended to show when a person is serving or has served in another country''s military, not the country in which they serve as part of the US Military.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25048', '12', '25048', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002005', 'Financial Expenditure Local Object Code', NULL, 'A local code used to describe the service or commodity obtained as the result of a specific expenditure.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22988', '11', '22988', 'New', 'Added new element to DES.') +VALUES ('002048', 'Military Current Rank', NULL, 'The rank a person currently holds as part of active service. Do not use this indicator if the person is no longer holding this rank.', 'Alphanumeric - 40 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25049', '12', '25049', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001993', 'Interdisciplinary Indicator', NULL, 'An indication that the course, projects, and/or learning activities develop knowledge and skills across multiple subject areas and highlight connections between subject area domains, with formal collaboration among teachers across subject areas.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22989', '11', '22989', 'New', 'Added new element to DES.') +VALUES ('002055', 'Military Deployment Activity Code', NULL, 'The codes of any activities performed by the person while deployed in the military.', 'Alphanumeric - 200 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25050', '12', '25050', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002013', 'Primary Program Indicator', NULL, 'An indication that the associated program is the primary function of this organization.', 'Option Set', '1', 'This element is used in conjunction with Program Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22990', '11', '22990', 'New', 'Added new element to DES.') +VALUES ('002056', 'Military Deployment Activity Name', NULL, 'The names of any activities performed by the person while deployed in the military.', 'Alphanumeric - 400 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25051', '12', '25051', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001991', 'Project-Based Learning Indicator', NULL, 'An indication that an instructional model is being implemented wherein a student learns through answering complex questions or solving for real-world problems. Also called problem-based learning, inquiry-based learning, or learning-by-doing.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22991', '11', '22991', 'New', 'Added new element to DES.') +VALUES ('002052', 'Military Deployment Description', NULL, 'A textual description of the person''s military deployment.', 'Alphanumeric - 200 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25052', '12', '25052', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001992', 'Project-Based Learning Type', NULL, 'The type of project-based instruction being offered.', 'Option Set', '1', 'Select all that apply.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22992', '11', '22992', 'New', 'Added new element to DES.') +VALUES ('002043', 'Military Deployment End Date', NULL, 'The date when a person''s military deployment ended.', 'YYYY-MM-DD or YYYY-MM', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25053', '12', '25053', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001996', 'Special Education Teacher Qualification Status', NULL, 'An indication of whether special education teachers are fully certified in the State..', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22993', '11', '22993', 'New', 'Added new element to DES.') +VALUES ('002053', 'Military Deployment Order Description', NULL, 'A textual description of the person''s military deployment order.', 'Alphanumeric - 200 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25054', '12', '25054', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001998', 'Student Support Service Availability Type', NULL, 'The group of students to whom related or ancillary service is offered within the formal educational system or by an outside agency which provides non-instructional service to support the general welfare of students.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22994', '11', '22994', 'New', 'Added new element to DES.') +VALUES ('002054', 'Military Deployment Requested By', NULL, 'A textual description of an entity that requested the person''s military deployment.', 'Alphanumeric - 100 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25055', '12', '25055', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000436', 'Designated Graduation School Identifier', NULL, 'The NCES school identification number that identifies the school or facility from which a student expects to graduate.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21426', '11', '21426', NULL, NULL) +VALUES ('002042', 'Military Deployment Start Date', NULL, 'The date when a person''s military deployment started.', 'YYYY-MM-DD or YYYY-MM', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25056', '12', '25056', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000437', 'Migrant Education Program Enrollment Type', 'MEP Enrollment Type', 'The type of school/migrant education project in which instruction and/or support services are provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21427', '11', '21427', NULL, NULL) +VALUES ('002051', 'Military Deployment Status Code', NULL, 'Deployment status code issued to military personnel by the U.S. military.', 'Option Set', '1', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25057', '12', '25057', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000438', 'Immunization Record Flag', NULL, 'Indicates whether the school or MEP program has immunization records on file for the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21428', '11', '21428', NULL, NULL) +VALUES ('002044', 'Military Discharge Category', NULL, 'A kind of discharge a person received from military services.', 'Option Set', '1', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25058', '12', '25058', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000439', 'Medical Alert Indicator', NULL, 'Alert indicator for a medical/health condition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21429', '11', '21429', NULL, NULL) +VALUES ('002040', 'Military Discharge Date', NULL, 'The date when a person was released from further military obligations.', 'YYYY-MM-DD or YYYY-MM', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25059', '12', '25059', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000440', 'Migrant Education Program Project Based', 'MEP Project Based', 'Indicates the type of MEP project based on the location where the MEP services are held.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21430', '11', '21430', NULL, NULL) +VALUES ('002046', 'Military Discharge Rank', NULL, 'A rank at time a person was discharged from military service.', 'Alphanumeric - 40 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25060', '12', '25060', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000442', 'Appealed Adequate Yearly Progress Designation', 'Appealed AYP Designation', 'An indication that a school or district appealed its AYP designation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21432', '11', '21432', NULL, NULL) +VALUES ('002037', 'Military Duties', NULL, 'A description of the duties encompassed within a period of military service.', 'Option Set', '1', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25061', '12', '25061', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000443', 'Adequate Yearly Progress Appeal Changed Designation', 'AYP Appeal Changed Designation', 'An indication that the appeal resulted in a change in a school or district''s AYP designation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21433', '11', '21433', NULL, NULL) +VALUES ('002036', 'Military Expertise', NULL, 'A list of expertise that the person developed during the service period.', 'Option Set', '1', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25062', '12', '25062', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000444', 'Adequate Yearly Progress Appeal Process Date', 'AYP Appeal Process Date', 'The last date that an appeal of an AYP designation was processed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21434', '11', '21434', NULL, NULL) +VALUES ('002047', 'Military Highest Rank', NULL, 'The highest rank achieved by a person in military service.', 'Alphanumeric - 40 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25063', '12', '25063', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000445', 'State Transferability of Funds', NULL, 'Did the State transfer funds under the State Transferability authority of Section 6123(a)', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21435', '11', '21435', NULL, NULL) +VALUES ('002049', 'Military Honors', NULL, 'A military honor that the person received during the service period.', 'Alphanumeric - 40 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25064', '12', '25064', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000446', 'Local Education Agency Transferability of Funds', 'LEA Transferability of Funds', 'LEA notified the State that they were transferring funds under the LEA Transferability authority of Section 6123(b).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21436', '11', '21436', NULL, NULL) +VALUES ('002039', 'Military Induction Date', NULL, 'The date when a person was inducted into active military service.', 'YYYY-MM-DD or YYYY-MM', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25065', '12', '25065', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000447', 'Title III Language Instruction Program Type', NULL, 'The type of Title III language instructional education programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21437', '11', '21437', NULL, NULL) +VALUES ('002045', 'Military Induction Rank', NULL, 'A rank at the time a person started their military experience.', 'Alphanumeric - 40 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25066', '12', '25066', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000448', 'Instruction Language', NULL, 'The language of instruction, other than English, used in the program or course.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21438', '11', '21438', NULL, NULL) +VALUES ('002035', 'Military Occupational Specialties ', NULL, 'A military occupational specialty of a person. ', 'Alphanumeric - 200 characters maximum', '0', 'This is a code or an identifier of an occupation applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. The complete list of MOS for each branch of the U.S. military can be found on their respective websites. In addition, there are other resources available that provide information on how MOS relate to civilian jobs, such as the crosswalk tools available on the Department of Veterans Affairs website: https://www.myhealth.va.gov/mhv-portal-web/dod-military-service-information-faqs#civilianjobs. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25067', '12', '25067', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000449', 'Barrier to Educating Homeless', NULL, 'Barriers to the enrollment and success of homeless children and youths.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21439', '11', '21439', NULL, NULL) +VALUES ('002041', 'Military Release Date', NULL, 'The date a person was released from active military service.', 'YYYY-MM-DD or YYYY-MM', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25068', '12', '25068', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000451', 'Local Education Agency Funds Transfer Type', 'LEA Funds Transfer Type', 'An indication of the type of transfer for an LEAs that transferred funds from an eligible program to another eligible program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21441', '11', '21441', NULL, NULL) +VALUES ('002038', 'Military Service Locations', NULL, 'A description of the duty stations (locations) encompassed within a period of military service.', 'Alphanumeric', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25069', '12', '25069', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000452', 'Funds Transfer Amount', NULL, 'The total amount of FY appropriated funds transferred from and to each eligible program.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21442', '11', '21442', NULL, NULL) +VALUES ('002114', 'Military Service Number', NULL, 'The military service number or identifier of the person as defined by the country, branch, and/or division.', 'Alphanumeric - 40 characters maximum', '0', 'This identifier is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25070', '12', '25070', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000453', 'State Assessment Standards Funding', NULL, 'The percentage of funds used to pay the costs of the development of the State assessments and standards required by section 1111(b).', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21443', '11', '21443', NULL, NULL) +VALUES ('002025', 'Most Prevalent Level of Institution', NULL, 'A classification of a postsecondary institution''s most prevalent level.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25071', '12', '25071', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000454', 'State Assessment Administration Funding', NULL, 'The percentage of funds used to administer assessments required by section 1111(b) or to carry out other activities described in section 6111 and other activities related to ensuring that the State’s schools and local educational agencies are held accountable for results.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21444', '11', '21444', NULL, NULL) +VALUES ('002057', 'National Guard Indicator', NULL, 'A person''s current membership status in the United States National Guard. ', 'Option Set', '1', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25072', '12', '25072', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000455', 'Date State Received Title III Allocation', NULL, 'Annual date the State receives the Title III allocation from U.S. Department of Education (ED).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21445', '11', '21445', NULL, NULL) +VALUES ('002084', 'Neglected Program Type', NULL, 'The type of neglected programs under Title I, Part D, Subpart 1 (State Agency) of ESEA as amended.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25073', '12', '25073', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000456', 'Date Title III Funds Available to Subgrantees', NULL, 'Annual date that Title III funds are available to approved subgrantees.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21446', '11', '21446', NULL, NULL) +VALUES ('002063', 'Organization Jurisdiction Square Miles', NULL, 'The total area, measured in square miles, over which an organization holds administrative or governing authority, including regions under its regulatory, operational, or legal control. ', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25074', '12', '25074', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000457', 'Number of Days for Title III Subgrants', NULL, 'Average number of days for States receiving Title III funds to make subgrants to subgrantees beginning from July 1 of each year, except under conditions where funds are being withheld.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21447', '11', '21447', NULL, NULL) +VALUES ('002086', 'Part B Postsecondary Outcomes Indicator', NULL, 'An indication of the status of a person within one year of leaving secondary school and who had an individualized education program in effect at the time they left secondary school.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25075', '12', '25075', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000461', 'Innovative Dollars Spent', NULL, 'The total Title V, Part A funds expended by LEAs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21451', '11', '21451', NULL, NULL) +VALUES ('002087', 'Perkins Post-Program Placement Indicator', NULL, 'An indication of the post-program status of a CTE Concentrator in the second quarter after exiting from secondary education.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25076', '12', '25076', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000462', 'Innovative Dollars Spent on Strategic Priorities', NULL, 'The total amount of Title V, Part A funds expended by LEAs for the four strategic priorities.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21452', '11', '21452', NULL, NULL) +VALUES ('002026', 'Projected High School Diploma Type', NULL, 'The type of projected diploma/credential a person would be awarded in recognition of his/her completion of the curricular requirements.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25077', '12', '25077', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000463', 'Migrant Education Program Project Type', 'MEP Project Type', 'Type of project funded in whole or in part by MEP funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21453', '11', '21453', NULL, NULL) +VALUES ('002101', 'Recess Minutes Per Day', NULL, 'The number of recess minutes in the day in which the school is normally in session.', 'Integer- greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25078', '12', '25078', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000464', 'Innovative Programs Funds Received', NULL, 'The total Title V, Part A funds received by LEAs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21454', '11', '21454', NULL, NULL) +VALUES ('002030', 'Record Reference Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes to refer to a record.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25079', '12', '25079', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000466', 'Literacy Assessment Administered Type', NULL, 'The type of literacy test administered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21456', '11', '21456', NULL, NULL) +VALUES ('002029', 'Record Reference Identifier', NULL, 'A unique number or alphanumeric code assigned to a record.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25080', '12', '25080', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000467', 'Literacy Goal Met Status', NULL, 'The participant showed "significant learning gains" on measures of reading, the definition of which is determined at the State level.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21457', '11', '21457', NULL, NULL) +VALUES ('002107', 'Salary Schedule Criterion Description', NULL, 'A description given to a specific criterion used to determine a salary provided or offered.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25081', '12', '25081', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000468', 'Literacy Post Test Status', NULL, 'The participant completed a literacy post-test.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21458', '11', '21458', NULL, NULL) +VALUES ('002106', 'Salary Schedule Criterion Name', NULL, 'A name given to a specific criterion used to determine a salary provided or offered.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25082', '12', '25082', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000469', 'Literacy Pre Test Status', NULL, 'The participant completed a literacy pre-test.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21459', '11', '21459', NULL, NULL) +VALUES ('002108', 'Salary Schedule Criterion Value', NULL, 'A unique value or code assigned to a salary schedule criterion used to differentiate between the achievable levels of the criterion.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25083', '12', '25083', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000470', 'Number of Immigrant Program Subgrants', NULL, 'The number of immigrant program [3114(d)(1)] subgrants.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21460', '11', '21460', NULL, NULL) +VALUES ('002109', 'Salary Schedule Salary Value', NULL, 'The salary or wage determined by the salary schedule criteria.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25084', '12', '25084', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000471', 'Safe and Drug Free Indicator Name', NULL, 'The name of the performance indicator for student behaviors under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21461', '11', '21461', NULL, NULL) +VALUES ('002023', 'Sequence of Course', NULL, 'Where a specific course lies when it is part of a consecutive sequence of courses. ', 'Alphanumeric- 10 characters maximum', '0', 'For example: if a school offers 4 years of Theater, Theater 3 within this school would be indicated in the sequence elements as 3 4, denoting the 3rd part of a 4-part sequence of courses.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25085', '12', '25085', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000472', 'Safe and Drug Free Instrument', NULL, 'The instrument or data source for reported performance indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21462', '11', '21462', NULL, NULL) +VALUES ('002021', 'Session Sequence Number', NULL, 'The position of this session in a sequence of sessions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25086', '12', '25086', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000473', 'Safe and Drug Free Collection Frequency', NULL, ' The frequency of data collection for performance indicator under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21463', '11', '21463', NULL, NULL) +VALUES ('002064', 'Staff Compensation Annual Supplement Description', NULL, 'A description of the annual supplement awarded to a staff member.', 'Alphanumeric - 300 characters maximum', '0', 'Used in relation to the element Staff Compensation Annual Supplement.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25087', '12', '25087', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000474', 'Safe and Drug Free Year Most Recent Collection', NULL, 'The academic year of the most recent collection of the performance indicator under the Sage and Drug-Free Schools and Communities Act.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21464', '11', '21464', NULL, NULL) +VALUES ('002068', 'Student Dropout Status', NULL, 'An indication of the status of this student as dropout.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25088', '12', '25088', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000475', 'Safe and Drug Free Target', NULL, 'The targeted performance for the given indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21465', '11', '21465', NULL, NULL) +VALUES ('002062', 'Teen Parent Indicator', NULL, 'The child''s parent or guardian is a teen parent between ages 10 to 19 years.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25089', '12', '25089', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000476', 'Safe and Drug Free Performance', NULL, 'Actual performance for the given indicator of student behavior under the Safe and Drug-Free Schools and Communities Act', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21466', '11', '21466', NULL, NULL) +VALUES ('002024', 'Temperature Controlled Building Area', NULL, 'The sum of the Building Area capable of being regulated and maintained within a specific temperature range for a designated purpose, employing heating, cooling, insulation, or climate control systems.', 'Alphanumeric - 30 characters maximum', '0', 'Use in conjunction with the element: Building Area.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25090', '12', '25090', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000477', 'Safe and Drug Free Baseline', NULL, 'The baseline of the performance indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21468', '11', '21468', NULL, NULL) +VALUES ('002018', 'Transportation Public Expense Eligibility Type', NULL, 'The type of eligibility for transporting a person at public expense.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25091', '12', '25091', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000478', 'Safe and Drug Free Baseline Year', NULL, 'The academic year the baseline was established.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21469', '11', '21469', NULL, NULL) +VALUES ('002020', 'Transportation State Aid Qualification Type', NULL, 'The qualification status for the transportation of a person that entitles an organization to receive state transportation aid.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25092', '12', '25092', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000479', 'School Improvement Reserved Funds Percentage', NULL, 'An indication of the percentage of the Title I, Part A allocation that the SEA reserved in accordance with Section 1003(a) of ESEA and §200.100(a) of ED''s regulations governing the reservation of funds for school improvement under Section 1003(a) of ESEA.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21470', '11', '21470', NULL, NULL) +VALUES ('002019', 'Transportation Status Type', NULL, 'The transportation status of the person.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25093', '12', '25093', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000480', 'School Improvement Allocation', NULL, 'The amount of Section 1003(a) and 1003(g) allocations to LEAs and Schools.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21471', '11', '21471', NULL, NULL) +VALUES ('002061', 'Years of Prior Professional Experience', NULL, 'The total number of years that an individual has previously held a similar professional position in one or more education institutions prior to the current school year.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25094', '12', '25094', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000481', 'School Improvement Exit Date', NULL, 'Date the school exited school improvement status.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21472', '11', '21472', NULL, NULL) +VALUES ('002060', 'Years of Total Experience', NULL, 'The total number of years that a person has held this position or a similar position in one or more organizations.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25095', '12', '25095', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000482', 'Terminated Title III Programs Due to Failure', NULL, 'An indication of whether a Title III program or activity was terminated due to failure to meet goals.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21473', '11', '21473', NULL, NULL) +VALUES ('000482', 'Terminated Title III Programs Due to Failure', NULL, 'An indication of whether a Title III program or activity was terminated due to failure to meet goals.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23473', '12', '23473', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000484', 'Neglected or Delinquent Obtained Employment', NULL, 'An indication that a Neglected or Delinquent student obtained employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21475', '11', '21475', NULL, NULL) +VALUES ('000484', 'Neglected or Delinquent Obtained Employment', NULL, 'An indication that a Neglected or Delinquent student obtained employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23475', '12', '23475', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000485', 'Program in Multiple Purpose Facility', NULL, 'An institution/facility/program that serves more than one programming purpose. For example, the same facility may run both a juvenile correction program and a juvenile detention program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21476', '11', '21476', NULL, NULL) +VALUES ('000485', 'Program in Multiple Purpose Facility', NULL, 'An institution/facility/program that serves more than one programming purpose. For example, the same facility may run both a juvenile correction program and a juvenile detention program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23476', '12', '23476', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000486', 'Type of Use of the Rural Low-Income Schools Program', 'Type of Use of the RLIS Program', 'The type of use of the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21477', '11', '21477', NULL, NULL) +VALUES ('000486', 'Type of Use of the Rural Low-Income Schools Program', 'Type of Use of the RLIS Program', 'The type of use of the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23477', '12', '23477', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000487', 'Title III Professional Development Type', NULL, 'The type of Title III professional development utilized.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21478', '11', '21478', NULL, NULL) +VALUES ('000487', 'Title III Professional Development Type', NULL, 'The type of Title III professional development utilized.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23478', '12', '23478', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000488', 'Disciplinary Action Taken', NULL, 'Identifies the consequences of an incident for the student(s) involved in an incident as perpetrator(s).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21479', '11', '21479', NULL, NULL) +VALUES ('000488', 'Disciplinary Action Taken', NULL, 'Identifies the consequences of an incident for the student(s) involved in an incident as perpetrator(s).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23479', '12', '23479', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000490', 'Prekindergarten Daily Length', NULL, 'The portion of a day that a pre-kindergarten program is provided to the students it serves.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21481', '11', '21481', NULL, NULL) +VALUES ('000490', 'Prekindergarten Daily Length', NULL, 'The portion of a day that a pre-kindergarten program is provided to the students it serves.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23481', '12', '23481', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000491', 'Kindergarten Daily Length', NULL, 'The portion of a day that a kindergarten program is provided to the students it serves.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21482', '11', '21482', NULL, NULL) +VALUES ('000491', 'Kindergarten Daily Length', NULL, 'The portion of a day that a kindergarten program is provided to the students it serves.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23482', '12', '23482', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000494', 'Calendar Code', NULL, 'A unique number assigned by a school district to a school calendar.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21485', '11', '21485', NULL, NULL) +VALUES ('000494', 'Calendar Code', NULL, 'A unique number assigned by a school district to a school calendar.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23485', '12', '23485', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000495', 'Calendar Description', NULL, 'A description or identification of the calendar.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21486', '11', '21486', NULL, NULL) +VALUES ('000495', 'Calendar Description', NULL, 'A description or identification of the calendar.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23486', '12', '23486', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000496', 'Days in Session', NULL, 'The total number of days that the school was or is anticipated to be in session during the school year. Also included are days on which the education institution facility is closed and the student body as a whole is engaged in planned activities off-campus under the guidance and direction of staff members.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21487', '11', '21487', NULL, NULL) +VALUES ('000496', 'Days in Session', NULL, 'The total number of days that the school was or is anticipated to be in session during the school year. Also included are days on which the education institution facility is closed and the student body as a whole is engaged in planned activities off-campus under the guidance and direction of staff members.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23487', '12', '23487', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000497', 'First Instruction Date', NULL, 'The year, month and day of the first day of student instruction for the school year.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21488', '11', '21488', NULL, NULL) +VALUES ('000497', 'First Instruction Date', NULL, 'The year, month and day of the first day of student instruction for the school year.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23488', '12', '23488', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000498', 'Last Instruction Date', NULL, 'The year, month and day of the last day of student instruction (including days or times that students are present for purposes of testing and/or evaluation, but not including whole or part-days whose sole purposes is for distribution of report cards).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21489', '11', '21489', NULL, NULL) +VALUES ('000498', 'Last Instruction Date', NULL, 'The year, month and day of the last day of student instruction (including days or times that students are present for purposes of testing and/or evaluation, but not including whole or part-days whose sole purposes is for distribution of report cards).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23489', '12', '23489', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000499', 'Instructional Minutes', NULL, 'The total number of instruction minutes in a given session, as determined by time in class, time on task (e.g., engaged in a class), or as estimated by a qualified course designer.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21490', '11', '21490', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('000499', 'Instructional Minutes', NULL, 'The total number of instruction minutes in a given session, as determined by time in class, time on task (e.g., engaged in a class), or as estimated by a qualified course designer.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23490', '12', '23490', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000500', 'Minutes Per Day', NULL, 'The number of minutes in the day in which the school is normally in session.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21491', '11', '21491', NULL, NULL) +VALUES ('000500', 'Minutes Per Day', NULL, 'The number of minutes in the day in which the school is normally in session.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23491', '12', '23491', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000501', 'Incident Identifier', NULL, 'A locally assigned unique identifier (within the school or school district) to identify each specific incident or occurrence. The same identifier should be used to document the entire incident even if it included multiple offenses and multiple offenders.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21492', '11', '21492', NULL, NULL) +VALUES ('000501', 'Incident Identifier', NULL, 'A locally assigned unique identifier (within the school or school district) to identify each specific incident or occurrence. The same identifier should be used to document the entire incident even if it included multiple offenses and multiple offenders.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23492', '12', '23492', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000502', 'Incident Date', NULL, 'The year, month and day on which the incident occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21493', '11', '21493', NULL, NULL) +VALUES ('000502', 'Incident Date', NULL, 'The year, month and day on which the incident occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23493', '12', '23493', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000503', 'Incident Time', NULL, 'An indication of the time of day the incident took place.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21494', '11', '21494', NULL, NULL) +VALUES ('000503', 'Incident Time', NULL, 'An indication of the time of day the incident took place.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23494', '12', '23494', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000504', 'Facilities Identifier', NULL, 'A locally assigned unique number or alphanumeric code used to capture precise information on locations specific to a school (e.g., building number, class number, hall number, school bus number, computer station number, or internet protocol (IP) address).', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21495', '11', '21495', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000504', 'Facilities Identifier', NULL, 'A locally assigned unique number or alphanumeric code used to capture precise information on locations specific to a school (e.g., building number, class number, hall number, school bus number, computer station number, or internet protocol (IP) address).', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23495', '12', '23495', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000505', 'Incident Cost', NULL, 'The value of any quantifiable monetary loss directly resulting from the incident. Examples include the value of repairs necessitated by vandalism of a school facility, the value of personnel resources used for repairs or consumed by the incident, the value of stolen items, and the value of time consumed by an incident (e.g., instructional time involved in evacuating a school during a false fire alarm). Cost may be reported by specific monetary amount or range.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21496', '11', '21496', NULL, NULL) +VALUES ('000505', 'Incident Cost', NULL, 'The value of any quantifiable monetary loss directly resulting from the incident. Examples include the value of repairs necessitated by vandalism of a school facility, the value of personnel resources used for repairs or consumed by the incident, the value of stolen items, and the value of time consumed by an incident (e.g., instructional time involved in evacuating a school during a false fire alarm). Cost may be reported by specific monetary amount or range.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23496', '12', '23496', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000506', 'Incident Reporter Type', NULL, 'Information on the type of person who reported the incident. When known and/or if useful, use a more specific option code (e.g., "Counselor" rather than "Professional Staff").', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21497', '11', '21497', NULL, NULL) +VALUES ('000506', 'Incident Reporter Type', NULL, 'Information on the type of person who reported the incident. When known and/or if useful, use a more specific option code (e.g., "Counselor" rather than "Professional Staff").', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23497', '12', '23497', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000507', 'Reporter Identifier', NULL, 'Identifies the reporter of the incident using a pre-existing unique student identifier or unique staff identifier, when the reporter is a student or staff member.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21498', '11', '21498', NULL, NULL) +VALUES ('000507', 'Reporter Identifier', NULL, 'Identifies the reporter of the incident using a pre-existing unique student identifier or unique staff identifier, when the reporter is a student or staff member.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23498', '12', '23498', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000508', 'Incident Description', NULL, 'The description for an incident.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21499', '11', '21499', NULL, NULL) +VALUES ('000508', 'Incident Description', NULL, 'The description for an incident.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23499', '12', '23499', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000509', 'Incident Behavior', NULL, 'Categories of behavior coded for use in describing an incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21500', '11', '21500', NULL, NULL) +VALUES ('000509', 'Incident Behavior', NULL, 'Categories of behavior coded for use in describing an incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23500', '12', '23500', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000510', 'Incident Injury Type', NULL, 'An indication of the occurrence of physical injury to participants involved in the incident and, if so, the level of injury sustained.', NULL, '1', 'Incident Injury Type can be linked to any person involved in the incident.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21501', '11', '21501', NULL, NULL) +VALUES ('000510', 'Incident Injury Type', NULL, 'An indication of the occurrence of physical injury to participants involved in the incident and, if so, the level of injury sustained.', NULL, '1', 'Incident Injury Type can be linked to any person involved in the incident.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23501', '12', '23501', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000511', 'Duration of Disciplinary Action', NULL, 'The length, in school days, of the disciplinary action.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21502', '11', '21502', NULL, NULL) +VALUES ('000511', 'Duration of Disciplinary Action', NULL, 'The length, in school days, of the disciplinary action.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23502', '12', '23502', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000512', 'Related to Zero Tolerance Policy', NULL, 'An indication of whether or not any of the disciplinary actions taken against a student were imposed as a consequence of state or local zero tolerance policies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21503', '11', '21503', NULL, NULL) +VALUES ('000512', 'Related to Zero Tolerance Policy', NULL, 'An indication of whether or not any of the disciplinary actions taken against a student were imposed as a consequence of state or local zero tolerance policies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23503', '12', '23503', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000513', 'Full Year Expulsion', NULL, 'An expulsion with or without services for a period of one full year (i.e., 365 days).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21504', '11', '21504', NULL, NULL) +VALUES ('000513', 'Full Year Expulsion', NULL, 'An expulsion with or without services for a period of one full year (i.e., 365 days).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23504', '12', '23504', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000514', 'Shortened Expulsion', NULL, 'An expulsion with or without services that is shortened to a term of less than one year by the superintendent or chief administrator of a school district.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21505', '11', '21505', NULL, NULL) +VALUES ('000514', 'Shortened Expulsion', NULL, 'An expulsion with or without services that is shortened to a term of less than one year by the superintendent or chief administrator of a school district.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23505', '12', '23505', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000515', 'Incident Time Description Code', NULL, 'A code for the description of the time of day that an incident took place.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21506', '11', '21506', NULL, NULL) +VALUES ('000515', 'Incident Time Description Code', NULL, 'A code for the description of the time of day that an incident took place.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23506', '12', '23506', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000364', 'Classroom Identifier', NULL, 'A unique number or alphanumeric code assigned to a room by a school, school system, state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21507', '11', '21507', NULL, NULL) +VALUES ('000364', 'Classroom Identifier', NULL, 'A unique number or alphanumeric code assigned to a room by a school, school system, state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23507', '12', '23507', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000517', 'Course Description', NULL, 'A description of the course content and/or goals. Reference may be made to state or national content standards.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21508', '11', '21508', NULL, NULL) +VALUES ('000517', 'Course Description', NULL, 'A description of the course content and/or goals. Reference may be made to state or national content standards.', 'Alphanumeric-1024 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23508', '12', '23508', 'Updated', 'Update format') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000518', 'Core Academic Course', NULL, 'The course meets the state definition of a core academic course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21509', '11', '21509', NULL, NULL) +VALUES ('000518', 'Core Academic Course', NULL, 'The course meets the state definition of a core academic course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23509', '12', '23509', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000519', 'Class Beginning Time', NULL, 'An indication of the time of day the class begins.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21510', '11', '21510', NULL, NULL) +VALUES ('000519', 'Class Beginning Time', NULL, 'An indication of the time of day the class begins.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23510', '12', '23510', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000520', 'Class Ending Time', NULL, 'An indication of the time of day the class ends.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21511', '11', '21511', NULL, NULL) +VALUES ('000520', 'Class Ending Time', NULL, 'An indication of the time of day the class ends.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23511', '12', '23511', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000521', 'Class Meeting Days', NULL, 'The day(s) of the week (e.g., Monday, Wednesday) that the class meets or an indication that a class meets "out-of-school" or "self-paced".', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21512', '11', '21512', NULL, NULL) +VALUES ('000521', 'Class Meeting Days', NULL, 'The day(s) of the week (e.g., Monday, Wednesday) that the class meets or an indication that a class meets "out-of-school" or "self-paced".', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23512', '12', '23512', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000522', 'Class Period', NULL, 'An indication of the portion of a typical daily session in which students receive instruction in a specified subject (e.g., morning, sixth period, block period, or AB schedules).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21513', '11', '21513', NULL, NULL) +VALUES ('000522', 'Class Period', NULL, 'An indication of the portion of a typical daily session in which students receive instruction in a specified subject (e.g., morning, sixth period, block period, or AB schedules).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23513', '12', '23513', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000523', 'Timetable Day Identifier', NULL, 'The unique identifier for the locally defined rotation cycle date code when the class meets (e.g., in a two day schedule, valid values could be "A" and "B", or "1" and "2").', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21514', '11', '21514', NULL, NULL) +VALUES ('000523', 'Timetable Day Identifier', NULL, 'The unique identifier for the locally defined rotation cycle date code when the class meets (e.g., in a two day schedule, valid values could be "A" and "B", or "1" and "2").', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23514', '12', '23514', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000524', 'Receiving Location of Instruction', NULL, 'The type of location at which instruction or service takes place.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21515', '11', '21515', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('000524', 'Receiving Location of Instruction', NULL, 'The type of location at which instruction or service takes place.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23515', '12', '23515', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000525', 'Primary Assignment Indicator', NULL, 'An indication of whether the assignment is the staff member''s primary assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21516', '11', '21516', NULL, NULL) +VALUES ('000525', 'Primary Assignment Indicator', NULL, 'An indication of whether the assignment is the staff member''s primary assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23516', '12', '23516', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000526', 'Assignment Start Date', NULL, 'The year, month and day from which the assignment is valid.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21517', '11', '21517', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000526', 'Assignment Start Date', NULL, 'The year, month and day from which the assignment is valid.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23517', '12', '23517', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000527', 'Assignment End Date', NULL, 'The last year, month and day on which the assignment is valid.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21518', '11', '21518', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000527', 'Assignment End Date', NULL, 'The last year, month and day on which the assignment is valid.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23518', '12', '23518', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000528', 'Itinerant Teacher', NULL, 'An indication of whether a teacher provides instruction in more than one instructional site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21519', '11', '21519', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000528', 'Itinerant Teacher', NULL, 'An indication of whether a teacher provides instruction in more than one instructional site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23519', '12', '23519', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000529', 'First Entry Date into a US School', NULL, 'The year, month and day of a person''s initial enrollment into a United States school.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21520', '11', '21520', NULL, NULL) +VALUES ('000529', 'First Entry Date into a US School', NULL, 'The year, month and day of a person''s initial enrollment into a United States school.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23520', '12', '23520', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000530', 'Promotion Reason', NULL, 'The nature of the student''s promotion or progress at the end of a given school term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21521', '11', '21521', NULL, NULL) +VALUES ('000530', 'Promotion Reason', NULL, 'The nature of the student''s promotion or progress at the end of a given school term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23521', '12', '23521', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000531', 'Nonpromotion Reason', NULL, 'The primary reason as to why a staff member determined that a student should not be promoted (or be demoted).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21522', '11', '21522', NULL, NULL) +VALUES ('000531', 'Nonpromotion Reason', NULL, 'The primary reason as to why a staff member determined that a student should not be promoted (or be demoted).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23522', '12', '23522', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000532', 'Public School Residence Status', NULL, 'An indication of the location of a persons legal residence relative to (within or outside) the boundaries of the public school attended and its administrative unit.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21523', '11', '21523', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000532', 'Public School Residence Status', NULL, 'An indication of the location of a persons legal residence relative to (within or outside) the boundaries of the public school attended and its administrative unit.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23523', '12', '23523', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000533', 'School Operational Status', NULL, 'The current status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21524', '11', '21524', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000533', 'School Operational Status', NULL, 'The current status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23524', '12', '23524', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000534', 'Operational Status Effective Date', NULL, 'The effective date for a change in operational status.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21525', '11', '21525', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000534', 'Operational Status Effective Date', NULL, 'The effective date for a change in operational status.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23525', '12', '23525', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000535', 'IDEA Educational Environment for School Age', NULL, 'The setting in which children ages 6 through 21, receive special education and related services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21526', '11', '21526', NULL, NULL) +VALUES ('000535', 'IDEA Educational Environment for School Age', NULL, 'The setting in which children ages 6 through 21, receive special education and related services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23526', '12', '23526', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000536', 'Title III Accountability Progress Status', NULL, 'An indication of the progress made by a student toward English proficiency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21527', '11', '21527', NULL, NULL) +VALUES ('000536', 'Title III Accountability Progress Status', NULL, 'An indication of the progress made by a student toward English proficiency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23527', '12', '23527', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000537', 'Local Education Agency Type', NULL, ' The classification of education agencies within the geographic boundaries of a state according to the level of administrative and operational control.', NULL, '1', 'Option definitions from EDFacts documents
EDFacts Data Set for School Years 2016-17, 2017-18, and 2018-19 -- Attachment B-2 (February 2016).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21528', '11', '21528', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000537', 'Local Education Agency Type', NULL, ' The classification of education agencies within the geographic boundaries of a state according to the level of administrative and operational control.', NULL, '1', 'Option definitions from EDFacts documents
EDFacts Data Set for School Years 2016-17, 2017-18, and 2018-19 -- Attachment B-2 (February 2016).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23528', '12', '23528', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000538', 'Discipline Method of Children with Disabilities', NULL, 'The type of suspension or expulsion used for the discipline of children with disabilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21529', '11', '21529', NULL, NULL) +VALUES ('000538', 'Discipline Method of Children with Disabilities', NULL, 'The type of suspension or expulsion used for the discipline of children with disabilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23529', '12', '23529', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000539', 'IDEA Interim Removal Reason', NULL, 'The reasons why children with disabilities were unilaterally removed from their current educational placement to an interim alternative educational setting.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21530', '11', '21530', NULL, NULL) +VALUES ('000539', 'IDEA Interim Removal Reason', NULL, 'The reasons why children with disabilities were unilaterally removed from their current educational placement to an interim alternative educational setting.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23530', '12', '23530', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000540', 'Assessment Registration Reason Not Completing', NULL, 'The primary reason a participant did not complete an assessment.', NULL, '1', 'This may apply to any learner, but is used particularly for reporting based on children with disabilities (IDEA).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21531', '11', '21531', NULL, NULL) +VALUES ('000540', 'Assessment Registration Reason Not Completing', NULL, 'The primary reason a participant did not complete an assessment.', NULL, '1', 'This may apply to any learner, but is used particularly for reporting based on children with disabilities (IDEA).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23531', '12', '23531', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000541', 'IDEA Interim Removal', NULL, 'The type of interim removal from current educational setting experienced by children with disabilities (IDEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21532', '11', '21532', NULL, NULL) +VALUES ('000541', 'IDEA Interim Removal', NULL, 'The type of interim removal from current educational setting experienced by children with disabilities (IDEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23532', '12', '23532', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000542', 'Consolidated Migrant Education Program Funds Status', 'Consolidated MEP Funds Status', 'An indication of whether the school has a school-wide program, as defined by current law, in which federal Migrant Education Program (MEP) funds are consolidated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21533', '11', '21533', NULL, NULL) +VALUES ('000542', 'Consolidated Migrant Education Program Funds Status', 'Consolidated MEP Funds Status', 'An indication of whether the school has a school-wide program, as defined by current law, in which federal Migrant Education Program (MEP) funds are consolidated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23533', '12', '23533', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000543', 'Migrant Education Program Personnel Indicator', 'MEP Personnel Indicator', 'An indication that a staff member''s salary is paid by the Title I, Part C Migrant Education Program (MEP) of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21534', '11', '21534', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000543', 'Migrant Education Program Personnel Indicator', 'MEP Personnel Indicator', 'An indication that a staff member''s salary is paid by the Title I, Part C Migrant Education Program (MEP) of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23534', '12', '23534', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000544', 'Annual Measurable Achievement Objective Proficiency Attainment Status for LEP Students', 'AMAO Proficiency Attainment Status for LEP Students', 'An indication whether the state, district or school met the Annual Measurable Achievement Objectives (AMAO) for attaining English proficiency for limited English proficient (LEP) students under Title III of ESEA.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21535', '11', '21535', 'Removed', 'Marked "Annual Measurable Achievement Objective Proficiency Attainment Status for LEP Students" as "Removed". Element is no longer in use.') +VALUES ('000545', 'Discipline Reason', NULL, 'The reason why the student was disciplined.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23536', '12', '23536', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000545', 'Discipline Reason', NULL, 'The reason why the student was disciplined.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21536', '11', '21536', NULL, NULL) +VALUES ('000546', 'Technology Skills Standards Met', NULL, 'An indication that the person has achieved acceptable performance on a standards-based profile of technology user skills as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23537', '12', '23537', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000546', 'Technology Skills Standards Met', NULL, 'An indication that the person has achieved acceptable performance on a standards-based profile of technology user skills as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21537', '11', '21537', NULL, NULL) +VALUES ('000547', 'Federal Program Code', NULL, 'The unique five-digit number assigned to each federal program as listed in the Assistance Listings. See https://sam.gov/content/assistance-listings', 'Numeric - up to 2 digits before and 3 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23538', '12', '23538', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000547', 'Federal Program Code', NULL, 'The unique five-digit number assigned to each federal program as listed in the Assistance Listings. See https://sam.gov/content/assistance-listings', 'Numeric - up to 2 digits before and 3 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21538', '11', '21538', 'Updated', 'Updated definition to change link to sam.gov.') +VALUES ('000548', 'Federal Programs Funding Allocation Type', NULL, 'The type of federal program funding allocation or distribution made.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23539', '12', '23539', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000548', 'Federal Programs Funding Allocation Type', NULL, 'The type of federal program funding allocation or distribution made.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21539', '11', '21539', NULL, NULL) +VALUES ('000549', 'Federal Programs Funding Allocation', NULL, 'The amount of federal dollars distributed to local education agencies (LEAs), retained by the state education agency (SEA) for program administration or other approved state-level activities (including unallocated, transferred to another state agency, or distributed to entities other than LEAs).', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23540', '12', '23540', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000549', 'Federal Programs Funding Allocation', NULL, 'The amount of federal dollars distributed to local education agencies (LEAs), retained by the state education agency (SEA) for program administration or other approved state-level activities (including unallocated, transferred to another state agency, or distributed to entities other than LEAs).', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21540', '11', '21540', NULL, NULL) +VALUES ('000550', 'Title I Schoolwide Program Participation', NULL, 'An indication that the student participates in and is served by a schoolwide program (SWP) under Title I of ESEA, Part A, Sections 1114.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23541', '12', '23541', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000550', 'Title I Schoolwide Program Participation', NULL, 'An indication that the student participates in and is served by a schoolwide program (SWP) under Title I of ESEA, Part A, Sections 1114.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21541', '11', '21541', NULL, NULL) +VALUES ('000551', 'Title I Targeted Assistance Participation', NULL, 'An indication that the student participates in and is served by a targeted assistance (TAS) program under Title I of ESEA, Part A, Sections 1115.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23542', '12', '23542', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000551', 'Title I Targeted Assistance Participation', NULL, 'An indication that the student participates in and is served by a targeted assistance (TAS) program under Title I of ESEA, Part A, Sections 1115.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21542', '11', '21542', NULL, NULL) +VALUES ('000552', 'Title I Targeted Assistance Staff Funded', NULL, 'An indication that a staff member is targeted assistance (TAS) program staff funded by Title I, Part A, Section 1115 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23543', '12', '23543', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000552', 'Title I Targeted Assistance Staff Funded', NULL, 'An indication that a staff member is targeted assistance (TAS) program staff funded by Title I, Part A, Section 1115 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21543', '11', '21543', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000553', 'Proficiency Target Status for Reading and Language Arts', NULL, 'An indication of whether the school or district met the reading/language arts proficiency target in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23544', '12', '23544', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000553', 'Proficiency Target Status for Reading and Language Arts', NULL, 'An indication of whether the school or district met the reading/language arts proficiency target in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21544', '11', '21544', NULL, NULL) +VALUES ('000555', 'Discipline Method for Firearms Incidents', NULL, 'The method used to discipline students who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23546', '12', '23546', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000554', 'Annual Measurable Achievement Objective Progress Attainment Status for LEP Students', 'AMAO Progress Attainment Status for LEP Students', 'An indication whether the state, district, or school met the Annual Measurable Achievement Objective (AMAO) for making progress in learning English for limited English proficient (LEP) students under Title III of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21545', '11', '21545', 'Removed', 'Marked "Annual Measurable Achievement Objective Progress Attainment Status for LEP Students" as "Removed". Element is no longer in use.') +VALUES ('000556', 'IDEA Discipline Method for Firearms Incidents', NULL, 'The methods used to discipline students who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23547', '12', '23547', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000555', 'Discipline Method for Firearms Incidents', NULL, 'The method used to discipline students who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21546', '11', '21546', NULL, NULL) +VALUES ('000557', 'Firearm Type', NULL, 'The type of firearm.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23548', '12', '23548', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000556', 'IDEA Discipline Method for Firearms Incidents', NULL, 'The methods used to discipline students who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21547', '11', '21547', NULL, NULL) +VALUES ('000558', 'Special Education Support Services Category', NULL, 'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23549', '12', '23549', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000557', 'Firearm Type', NULL, 'The type of firearm.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21548', '11', '21548', NULL, NULL) +VALUES ('000559', 'IDEA Educational Environment for Early Childhood', NULL, 'The program in which children ages 3 through 5 attend and in which these children receive special education and related services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23550', '12', '23550', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000558', 'Special Education Support Services Category', NULL, 'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21549', '11', '21549', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000560', 'Rural Education Achievement Program Alternative Funding Status', 'REAP Alternative Funding Status', 'An indication that the local education agency (LEA) notified the state of the LEA''s intention to use REAP-Flex Alternative Uses of Funding Authority during the school year as specified in the Title VI, Section 6211 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23552', '12', '23552', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000559', 'IDEA Educational Environment for Early Childhood', NULL, 'The program in which children ages 3 through 5 attend and in which these children receive special education and related services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21550', '11', '21550', NULL, NULL) +VALUES ('000561', 'Progress Level', NULL, 'The amount of progress shown in academic subjects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23553', '12', '23553', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000560', 'Rural Education Achievement Program Alternative Funding Status', 'REAP Alternative Funding Status', 'An indication that the local education agency (LEA) notified the state of the LEA''s intention to use REAP-Flex Alternative Uses of Funding Authority during the school year as specified in the Title VI, Section 6211 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21552', '11', '21552', NULL, NULL) +VALUES ('000562', 'Migrant Prioritized for Services', NULL, 'An indication that a migratory child 1) is failing to meet, or most at risk of failing to meet, the state''s challenging academic content standards and student academic achievement standards; and 2) has experienced interruptions in their education during the regular school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23554', '12', '23554', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000561', 'Progress Level', NULL, 'The amount of progress shown in academic subjects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21553', '11', '21553', NULL, NULL) +VALUES ('000563', 'Migrant Education Program Continuation of Services Status', 'MEP Continuation of Services Status', 'An indication that migrant children are receiving instructional or support services under the continuation of services authority ESEA Title III Section 1304(e)(2)-(3).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23555', '12', '23555', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000562', 'Migrant Prioritized for Services', NULL, 'An indication that a migratory child 1) is failing to meet, or most at risk of failing to meet, the state''s challenging academic content standards and student academic achievement standards; and 2) has experienced interruptions in their education during the regular school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21554', '11', '21554', NULL, NULL) +VALUES ('000564', 'Special Education Age Group Taught', NULL, 'The age range of special education students taught.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23556', '12', '23556', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000563', 'Migrant Education Program Continuation of Services Status', 'MEP Continuation of Services Status', 'An indication that migrant children are receiving instructional or support services under the continuation of services authority ESEA Title III Section 1304(e)(2)-(3).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21555', '11', '21555', NULL, NULL) +VALUES ('000565', 'Title III English Learner Participation Status', NULL, 'An indication that an English Learner student is served by an English language instruction educational program supported with Title III of ESEA funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23557', '12', '23557', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000564', 'Special Education Age Group Taught', NULL, 'The age range of special education students taught.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21556', '11', '21556', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000566', 'Technology Literacy Status in 8th Grade', NULL, 'An indication of the technology literacy of 8th graders.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23558', '12', '23558', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000565', 'Title III English Learner Participation Status', NULL, 'An indication that an English Learner student is served by an English language instruction educational program supported with Title III of ESEA funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21557', '11', '21557', 'Updated', 'Removed Alternate Name.') +VALUES ('000567', 'Supplemental Educational Services Funds Spent', 'SES Funds Spent', 'The dollar amount spent on supplemental educational services during the school year under Title I, Part A, Section 1116 of ESEA as amended.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23559', '12', '23559', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000566', 'Technology Literacy Status in 8th Grade', NULL, 'An indication of the technology literacy of 8th graders.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21558', '11', '21558', NULL, NULL) +VALUES ('000568', 'Public School Choice Funds Spent', NULL, 'The dollar amount spent on transportation for public school choice during the school year under Title I of ESEA as amended, Part A, Section 1116.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23560', '12', '23560', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000567', 'Supplemental Educational Services Funds Spent', 'SES Funds Spent', 'The dollar amount spent on supplemental educational services during the school year under Title I, Part A, Section 1116 of ESEA as amended.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21559', '11', '21559', NULL, NULL) +VALUES ('000569', 'Truant Status', NULL, 'An indication that a student is identified as a truant as defined by state rules.', NULL, '1', 'Some data systems may require additional information on truancy based on local requirements. For example, capturing students who reach the statutory truancy status but then are in and out of attendance after that point, may require use of Number of Days in Attendance in conjunction with Truancy.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23561', '12', '23561', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000568', 'Public School Choice Funds Spent', NULL, 'The dollar amount spent on transportation for public school choice during the school year under Title I of ESEA as amended, Part A, Section 1116.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21560', '11', '21560', NULL, NULL) +VALUES ('000571', 'Pre and Post Test Indicator', NULL, 'An indication of whether students took both a pre-test and a post-test to measure academic improvement.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23563', '12', '23563', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000569', 'Truant Status', NULL, 'An indication that a student is identified as a truant as defined by state rules.', NULL, '1', 'Some data systems may require additional information on truancy based on local requirements. For example, capturing students who reach the statutory truancy status but then are in and out of attendance after that point, may require use of Number of Days in Attendance in conjunction with Truancy.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21561', '11', '21561', NULL, NULL) +VALUES ('000572', 'Assessment Result Pretest Outcome', NULL, 'The results of a pre-test in academic subjects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23564', '12', '23564', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000571', 'Pre and Post Test Indicator', NULL, 'An indication of whether students took both a pre-test and a post-test to measure academic improvement.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21563', '11', '21563', NULL, NULL) +VALUES ('000573', 'Proficiency Status', NULL, 'An indication of whether a student''s scores were proficient.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23565', '12', '23565', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000572', 'Assessment Result Pretest Outcome', NULL, 'The results of a pre-test in academic subjects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21564', '11', '21564', NULL, NULL) +VALUES ('000574', 'Supplemental Education Services Public School Choice Twenty Percent Obligation', 'SES Public School Choice Twenty Percent Obligation', 'The dollar amount of the 20 percent reservation for supplemental educational services and choice-related transportation.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23566', '12', '23566', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000573', 'Proficiency Status', NULL, 'An indication of whether a student''s scores were proficient.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21565', '11', '21565', NULL, NULL) +VALUES ('000575', 'Supplemental Educational Services Per Pupil Expenditure', 'SES Per Pupil Expenditure', 'The maximum dollar amount that may be spent per child for expenditures related to supplemental educational services under Title I of the ESEA.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23567', '12', '23567', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000574', 'Supplemental Education Services Public School Choice Twenty Percent Obligation', 'SES Public School Choice Twenty Percent Obligation', 'The dollar amount of the 20 percent reservation for supplemental educational services and choice-related transportation.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21566', '11', '21566', NULL, NULL) +VALUES ('000577', 'Disability Status', NULL, 'An indication of whether a person is classified as disabled under the American''s with Disability Act (ADA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23569', '12', '23569', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000575', 'Supplemental Educational Services Per Pupil Expenditure', 'SES Per Pupil Expenditure', 'The maximum dollar amount that may be spent per child for expenditures related to supplemental educational services under Title I of the ESEA.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21567', '11', '21567', NULL, NULL) +VALUES ('000578', 'Educational Services After Removal', NULL, 'An indication of whether children (students) were provided educational services when removed from the regular school program for disciplinary reasons.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23570', '12', '23570', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000577', 'Disability Status', NULL, 'An indication of whether a person is classified as disabled under the American''s with Disability Act (ADA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21569', '11', '21569', NULL, NULL) +VALUES ('000580', 'Single Parent or Single Pregnant Woman Status', NULL, 'A student who, at some time during the school year, is either a pregnant female student who is unmarried; or a male or female student who is unmarried or legally separated from a spouse and has a minor child or children.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23573', '12', '23573', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000578', 'Educational Services After Removal', NULL, 'An indication of whether children (students) were provided educational services when removed from the regular school program for disciplinary reasons.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21570', '11', '21570', NULL, NULL) +VALUES ('000581', 'Perkins English Learner Status', NULL, 'A secondary student, an adult, or an out-of-school youth, who has limited ability in speaking, reading, writing, or understanding English language, and (a) whose native language is a language other than English, or (b) who lives in a family or community environment in which a language other than English is the dominant language.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23574', '12', '23574', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000579', 'Annual Measurable Achievement Objective AYP Progress Attainment Status for LEP Students', 'AMAO AYP Progress Attainment Status for LEP Students', 'An indication of whether the state or district met the annual measurable objectives for the Limited English Proficient (LEP) student subgroup in mathematics and reading/language arts.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21572', '11', '21572', 'Removed', 'Marked "Annual Measurable Achievement Objective AYP Progress Attainment Status for LEP Students" as "Removed". Element is no longer in use.') +VALUES ('000584', 'Cohort Graduation Year', NULL, 'The year the cohort is expected to graduate.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23577', '12', '23577', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000580', 'Single Parent or Single Pregnant Woman Status', NULL, 'A student who, at some time during the school year, is either a pregnant female student who is unmarried; or a male or female student who is unmarried or legally separated from a spouse and has a minor child or children.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21573', '11', '21573', NULL, NULL) +VALUES ('000585', 'State Poverty Designation', NULL, 'The designation of a school’s poverty quartile for purposes of determining classes taught by highly qualified teachers in high and low poverty schools, according to state’s indicator of poverty.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23578', '12', '23578', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000581', 'Perkins English Learner Status', NULL, 'A secondary student, an adult, or an out-of-school youth, who has limited ability in speaking, reading, writing, or understanding English language, and (a) whose native language is a language other than English, or (b) who lives in a family or community environment in which a language other than English is the dominant language.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21574', '11', '21574', 'Updated', 'Changed Name, Definition, Technical Name and removed Alternate Name.') +VALUES ('000586', 'Postsecondary Enrollment Action', NULL, 'The action taken with respect to postsecondary enrollment by the student who graduated from the school, LEA or state in the past two years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23579', '12', '23579', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000584', 'Cohort Graduation Year', NULL, 'The year the cohort is expected to graduate.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21577', '11', '21577', NULL, NULL) +VALUES ('000587', 'Internet Access', NULL, 'The type of internet access available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23580', '12', '23580', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000585', 'State Poverty Designation', NULL, 'The designation of a school’s poverty quartile for purposes of determining classes taught by highly qualified teachers in high and low poverty schools, according to state’s indicator of poverty.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21578', '11', '21578', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000588', 'Career Technical Education Nontraditional Gender Status', 'CTE Nontraditional Gender Status', 'An indication of whether CTE participants were members of an underrepresented gender group (where one gender comprises less than 25 percent of the persons employed in those occupations or field of work).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23581', '12', '23581', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000586', 'Postsecondary Enrollment Action', NULL, 'The action taken with respect to postsecondary enrollment by the student who graduated from the school, LEA or state in the past two years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21579', '11', '21579', NULL, NULL) +VALUES ('000589', 'Faculty and Administration Performance Level', NULL, 'The levels used in district evaluation systems for assigning teacher or principal performance ratings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23582', '12', '23582', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000587', 'Internet Access', NULL, 'The type of internet access available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21580', '11', '21580', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000590', 'Program Participation Start Date', NULL, 'The year, month and day on which the person began to participate in a program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23583', '12', '23583', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000588', 'Career Technical Education Nontraditional Gender Status', 'CTE Nontraditional Gender Status', 'An indication of whether CTE participants were members of an underrepresented gender group (where one gender comprises less than 25 percent of the persons employed in those occupations or field of work).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21581', '11', '21581', NULL, NULL) +VALUES ('000591', 'Program Participation Exit Date', NULL, 'The year, month and day on which the person ceased to participate in a program.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23584', '12', '23584', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000589', 'Faculty and Administration Performance Level', NULL, 'The levels used in district evaluation systems for assigning teacher or principal performance ratings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21582', '11', '21582', NULL, NULL) +VALUES ('000592', 'Career and Technical Education Participant', 'CTE Participant', 'An indication a student has met the state-defined threshold of Career and Technical Education participation as defined in the State''s approved Perkins IV State Plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23585', '12', '23585', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000590', 'Program Participation Start Date', NULL, 'The year, month and day on which the person began to participate in a program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21583', '11', '21583', NULL, NULL) +VALUES ('000593', 'Career and Technical Education Nontraditional Completion', 'CTE Nontraditional Completion', 'An indication that the CTE student has completed a CTE program in a nontraditional field (where one gender comprises less than 25 percent of the persons employed in those occupations or fields of work).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23586', '12', '23586', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000591', 'Program Participation Exit Date', NULL, 'The year, month and day on which the person ceased to participate in a program.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21584', '11', '21584', NULL, NULL) +VALUES ('000594', 'Responsible District Type', NULL, 'The type of responsibility the district has for the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23587', '12', '23587', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000592', 'Career and Technical Education Participant', 'CTE Participant', 'An indication a student has met the state-defined threshold of Career and Technical Education participation as defined in the State''s approved Perkins IV State Plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21585', '11', '21585', NULL, NULL) +VALUES ('000595', 'Responsible School Type', NULL, 'The type of services/instruction the school is responsible for providing to the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23588', '12', '23588', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000593', 'Career and Technical Education Nontraditional Completion', 'CTE Nontraditional Completion', 'An indication that the CTE student has completed a CTE program in a nontraditional field (where one gender comprises less than 25 percent of the persons employed in those occupations or fields of work).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21586', '11', '21586', NULL, NULL) +VALUES ('000596', 'Additional Credit Type', NULL, 'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23589', '12', '23589', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000594', 'Responsible District Type', NULL, 'The type of responsibility the district has for the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21587', '11', '21587', NULL, NULL) +VALUES ('000597', 'Assessment Session Location', NULL, ' The description of the place where an assessment is administered.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23590', '12', '23590', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000595', 'Responsible School Type', NULL, 'The type of services/instruction the school is responsible for providing to the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21588', '11', '21588', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000598', 'Alternate Day Name', NULL, 'An alternate name used for the school day, typically used for the bell schedule (e.g., Blue day, Red day).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23591', '12', '23591', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000596', 'Additional Credit Type', NULL, 'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21589', '11', '21589', NULL, NULL) +VALUES ('000599', 'Absent Attendance Category', NULL, ' The category that describes how the student spends his or her time not physically present on school grounds and not participating in instruction or instruction-related activities at an approved off-grounds location.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23592', '12', '23592', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000597', 'Assessment Session Location', NULL, ' The description of the place where an assessment is administered.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21590', '11', '21590', NULL, NULL) +VALUES ('000600', 'Present Attendance Category', NULL, 'The category that describes how the student spends his or her time when attending an instructional program approved by the state and/or school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23593', '12', '23593', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000598', 'Alternate Day Name', NULL, 'An alternate name used for the school day, typically used for the bell schedule (e.g., Blue day, Red day).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21591', '11', '21591', NULL, NULL) +VALUES ('000601', 'Attendance Event Type', NULL, 'The type of attendance event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23594', '12', '23594', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000599', 'Absent Attendance Category', NULL, ' The category that describes how the student spends his or her time not physically present on school grounds and not participating in instruction or instruction-related activities at an approved off-grounds location.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21592', '11', '21592', NULL, NULL) +VALUES ('000602', 'Building Site Number', NULL, 'The number of the building on the site, if more than one building shares the same address.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23595', '12', '23595', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000600', 'Present Attendance Category', NULL, 'The category that describes how the student spends his or her time when attending an instructional program approved by the state and/or school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21593', '11', '21593', NULL, NULL) +VALUES ('000603', 'Calendar Event Type', NULL, 'A type of scheduled or unscheduled calendar event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23596', '12', '23596', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000601', 'Attendance Event Type', NULL, 'The type of attendance event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21594', '11', '21594', NULL, NULL) +VALUES ('000605', 'Assessment Content Standard Type', NULL, 'An indication as to whether an assessment conforms to a standard.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23598', '12', '23598', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000602', 'Building Site Number', NULL, 'The number of the building on the site, if more than one building shares the same address.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21595', '11', '21595', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000606', 'Latitude', NULL, 'The north or south angular distance from the equator that, when combined with longitude, reflects an estimation of where the address is physically situated.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23599', '12', '23599', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000603', 'Calendar Event Type', NULL, 'A type of scheduled or unscheduled calendar event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21596', '11', '21596', NULL, NULL) +VALUES ('000607', 'Longitude', NULL, 'The east or west angular distance from the prime meridian that, when combined with latitude, reflects an estimation of where the address is physically situated.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23600', '12', '23600', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000605', 'Assessment Content Standard Type', NULL, 'An indication as to whether an assessment conforms to a standard.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21598', '11', '21598', NULL, NULL) +VALUES ('000609', 'Discipline Action Length Difference Reason', NULL, 'The reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23602', '12', '23602', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000606', 'Latitude', NULL, 'The north or south angular distance from the equator that, when combined with longitude, reflects an estimation of where the address is physically situated.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21599', '11', '21599', NULL, NULL) +VALUES ('000610', 'Displaced Student Status', NULL, 'A student who was enrolled, or eligible for enrollment, but has enrolled in another place because of a crisis.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23603', '12', '23603', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000607', 'Longitude', NULL, 'The east or west angular distance from the prime meridian that, when combined with latitude, reflects an estimation of where the address is physically situated.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21600', '11', '21600', NULL, NULL) +VALUES ('000611', 'Crisis Code', NULL, 'A unique number or alphanumeric code used to identify a crisis. This code should be able to accommodate numerous crises within a single school year. It is associated with the displaced student identifier in order to link a crisis to a student who was displaced or otherwise affected by the event. If the same code values are to be used over multiple years, it is important to have enough crisis-specific items (e.g., school year, date/time) to keep the events unique over time.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23604', '12', '23604', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000609', 'Discipline Action Length Difference Reason', NULL, 'The reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21602', '11', '21602', NULL, NULL) +VALUES ('000612', 'Crisis Name', NULL, 'The name of the crisis that caused the displacement of students.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23605', '12', '23605', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000610', 'Displaced Student Status', NULL, 'A student who was enrolled, or eligible for enrollment, but has enrolled in another place because of a crisis.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21603', '11', '21603', NULL, NULL) +VALUES ('000613', 'Crisis Type', NULL, 'The type or category of crisis (ex., chemical, earthquake, flood, wildfire, etc.).', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23606', '12', '23606', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000611', 'Crisis Code', NULL, 'A unique number or alphanumeric code used to identify a crisis. This code should be able to accommodate numerous crises within a single school year. It is associated with the displaced student identifier in order to link a crisis to a student who was displaced or otherwise affected by the event. If the same code values are to be used over multiple years, it is important to have enough crisis-specific items (e.g., school year, date/time) to keep the events unique over time.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21604', '11', '21604', NULL, NULL) +VALUES ('000614', 'Crisis Start Date', NULL, 'The year, month and day on which the crisis affected the agency. This date may not be the same as the date the crisis occurred if evacuation orders are implemented in anticipation of a crisis.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23607', '12', '23607', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000612', 'Crisis Name', NULL, 'The name of the crisis that caused the displacement of students.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21605', '11', '21605', NULL, NULL) +VALUES ('000616', 'Grade Value Qualifier', NULL, 'The scale of equivalents, if applicable, for grades awarded as indicators of performance in schoolwork. For example, numerical equivalents for letter grades used in determining a student''s Grade Point Average (A=4, B=3, C=2, D=1 in a four-point system) or letter equivalents for percentage grades (90-100%=A, 80-90%=B, etc.)', 'Alphanumeric - 100 characters maximum', '0', 'A list of "Academic Grade Qualifiers" is available from the Association of American Medical Colleges, 2450 N St., N.W., Washington, DC 20037', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23609', '12', '23609', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000613', 'Crisis Type', NULL, 'The type or category of crisis (ex., chemical, earthquake, flood, wildfire, etc.).', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21606', '11', '21606', NULL, NULL) +VALUES ('000617', 'Incident Location', NULL, 'Identifies where the incident occurred and whether or not it occurred on campus.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23610', '12', '23610', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000614', 'Crisis Start Date', NULL, 'The year, month and day on which the crisis affected the agency. This date may not be the same as the date the crisis occurred if evacuation orders are implemented in anticipation of a crisis.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21607', '11', '21607', NULL, NULL) +VALUES ('000618', 'Personal Information Verification', NULL, 'The evidence by which a persons name, address, date of birth, etc. is confirmed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23611', '12', '23611', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000616', 'Grade Value Qualifier', NULL, 'The scale of equivalents, if applicable, for grades awarded as indicators of performance in schoolwork. For example, numerical equivalents for letter grades used in determining a student''s Grade Point Average (A=4, B=3, C=2, D=1 in a four-point system) or letter equivalents for percentage grades (90-100%=A, 80-90%=B, etc.)', 'Alphanumeric - 100 characters maximum', '0', 'A list of "Academic Grade Qualifiers" is available from the Association of American Medical Colleges, 2450 N St., N.W., Washington, DC 20037', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21609', '11', '21609', NULL, NULL) +VALUES ('000620', 'Employment Separation Reason', NULL, 'The primary reason for the termination of the employment relationship.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23613', '12', '23613', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000617', 'Incident Location', NULL, 'Identifies where the incident occurred and whether or not it occurred on campus.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21610', '11', '21610', NULL, NULL) +VALUES ('000621', 'Employment Separation Type', NULL, 'A designation of the type of separation occurring between a person and the organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23614', '12', '23614', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000618', 'Personal Information Verification', NULL, 'The evidence by which a persons name, address, date of birth, etc. is confirmed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21611', '11', '21611', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000622', 'Classroom Position Type', NULL, 'The type of position the staff member holds in the specific course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23615', '12', '23615', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000620', 'Employment Separation Reason', NULL, 'The primary reason for the termination of the employment relationship.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21613', '11', '21613', NULL, NULL) +VALUES ('000624', 'Leave Event Type', NULL, 'The type of the leave event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23617', '12', '23617', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000621', 'Employment Separation Type', NULL, 'A designation of the type of separation occurring between a person and the organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21614', '11', '21614', NULL, NULL) +VALUES ('000625', 'Program Identifier', NULL, 'A unique number or alphanumeric code assigned to a program by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23618', '12', '23618', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000622', 'Classroom Position Type', NULL, 'The type of position the staff member holds in the specific course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21615', '11', '21615', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000626', 'Program Name', NULL, 'The name of the program of instruction, training, services or benefits available through federal, state, or local agencies.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23619', '12', '23619', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000624', 'Leave Event Type', NULL, 'The type of the leave event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21617', '11', '21617', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000627', 'Secondary Incident Behavior', NULL, 'Supplemental information about an incident when the primary offense is more serious in nature than alcohol or drug, etc. offenses.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23620', '12', '23620', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000625', 'Program Identifier', NULL, 'A unique number or alphanumeric code assigned to a program by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21618', '11', '21618', 'Updated', 'Added elements to DES contexts to support Early Learning and K12 implementation needs.') +VALUES ('000630', 'Assessment Item Identifier', NULL, 'The identifier that uniquely identifies an assessment item.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23623', '12', '23623', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000626', 'Program Name', NULL, 'The name of the program of instruction, training, services or benefits available through federal, state, or local agencies.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21619', '11', '21619', 'Updated', 'Added elements to DES contexts to support Early Learning and K12 implementation needs.') +VALUES ('000632', 'Site Name', NULL, 'The full, legally accepted name of the institution at the site level.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23625', '12', '23625', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000627', 'Secondary Incident Behavior', NULL, 'Supplemental information about an incident when the primary offense is more serious in nature than alcohol or drug, etc. offenses.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21620', '11', '21620', NULL, NULL) +VALUES ('000633', 'Early Learning Youngest Age Authorized to Serve', NULL, 'The youngest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23626', '12', '23626', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000630', 'Assessment Item Identifier', NULL, 'The identifier that uniquely identifies an assessment item.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21623', '11', '21623', NULL, NULL) +VALUES ('000634', 'Other Name Type', NULL, 'The types of previous, alternate or other names for a person.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23627', '12', '23627', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000632', 'Site Name', NULL, 'The full, legally accepted name of the institution at the site level.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21625', '11', '21625', NULL, NULL) +VALUES ('000635', 'Neglected or Delinquent Academic Achievement Indicator', NULL, 'Student was served by Title I, Part D, Subpart 1 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.', NULL, '1', 'The elements "Neglected or Delinquent Academic Achievement Indicator" and "Neglected or Delinquent Academic Outcome Indicator" are different, although similarly worded.
EDFacts guidance: The Neglected or Delinquent Academic Achievement indicator should only be used for Subpart 1; the Neglected or Delinquent Academic Outcome Indicator should be used for Subpart 2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23636', '12', '23636', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000633', 'Early Learning Youngest Age Authorized to Serve', NULL, 'The youngest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21626', '11', '21626', NULL, NULL) +VALUES ('000636', 'Neglected or Delinquent Academic Outcome Indicator', NULL, 'Student was served by Title I, Part D, Subpart 2 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.', NULL, '1', 'The elements "Neglected or Delinquent Academic Achievement Indicator" and "Neglected or Delinquent Academic Outcome Indicator" are different, although similarly worded.
EDFacts guidance: The Neglected or Delinquent Academic Achievement indicator should only be used for Subpart 1; the Neglected or Delinquent Academic Outcome Indicator should be used for Subpart 2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23638', '12', '23638', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000634', 'Other Name Type', NULL, 'The types of previous, alternate or other names for a person.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21627', '11', '21627', NULL, NULL) +VALUES ('000637', 'Responsible District Identifier', NULL, 'The district responsible for specific educational services and/or instruction of the student.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23639', '12', '23639', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000635', 'Neglected or Delinquent Academic Achievement Indicator', NULL, 'Student was served by Title I, Part D, Subpart 1 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.', NULL, '1', 'The elements "Neglected or Delinquent Academic Achievement Indicator" and "Neglected or Delinquent Academic Outcome Indicator" are different, although similarly worded.
EDFacts guidance: The Neglected or Delinquent Academic Achievement indicator should only be used for Subpart 1; the Neglected or Delinquent Academic Outcome Indicator should be used for Subpart 2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21636', '11', '21636', NULL, NULL) +VALUES ('000638', 'Responsible School Identifier', NULL, 'The school responsible for specific education services and/or instruction of the student.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23640', '12', '23640', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000636', 'Neglected or Delinquent Academic Outcome Indicator', NULL, 'Student was served by Title I, Part D, Subpart 2 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.', NULL, '1', 'The elements "Neglected or Delinquent Academic Achievement Indicator" and "Neglected or Delinquent Academic Outcome Indicator" are different, although similarly worded.
EDFacts guidance: The Neglected or Delinquent Academic Achievement indicator should only be used for Subpart 1; the Neglected or Delinquent Academic Outcome Indicator should be used for Subpart 2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21638', '11', '21638', NULL, NULL) +VALUES ('001066', 'Address Type for Organization', NULL, 'The type of address listed for an organization.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23644', '12', '23644', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000637', 'Responsible District Identifier', NULL, 'The district responsible for specific educational services and/or instruction of the student.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21639', '11', '21639', NULL, NULL) +VALUES ('000645', 'Teaching Assignment Start Date', NULL, 'The year, month and day on which a teaching assignment begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23647', '12', '23647', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000638', 'Responsible School Identifier', NULL, 'The school responsible for specific education services and/or instruction of the student.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21640', '11', '21640', NULL, NULL) +VALUES ('000646', 'Teaching Assignment End Date', NULL, 'The year, month and day on which a teaching assignment ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was employed.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23648', '12', '23648', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001066', 'Address Type for Organization', NULL, 'The type of address listed for an organization.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21644', '11', '21644', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000647', 'Teacher of Record', NULL, 'Staff member who has a Teacher of Record responsibility for a Class Section based upon the state''s definition of Teacher of Record.', NULL, '1', 'There is usually one Teacher of Record assignment in a Class Section except in the case of co-teaching/team-teaching.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23649', '12', '23649', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000645', 'Teaching Assignment Start Date', NULL, 'The year, month and day on which a teaching assignment begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21647', '11', '21647', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000648', 'Teaching Assignment Role', NULL, 'The role that the Staff Member has been assigned for a Class Section. (A teacher may have the lead responsibility for one section and serve a supporting role for another section of the same course.)', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23650', '12', '23650', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000646', 'Teaching Assignment End Date', NULL, 'The year, month and day on which a teaching assignment ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was employed.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21648', '11', '21648', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000649', 'Teaching Assignment Contribution Percentage', NULL, 'A percentage used to weight the educator''s assigned responsibility for student learning in a Class Section, particularly when more than one educator is assigned to the class section.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23651', '12', '23651', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000647', 'Teacher of Record', NULL, 'Staff member who has a Teacher of Record responsibility for a Class Section based upon the state''s definition of Teacher of Record.', NULL, '1', 'There is usually one Teacher of Record assignment in a Class Section except in the case of co-teaching/team-teaching.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21649', '11', '21649', NULL, NULL) +VALUES ('000650', 'Course Section Entry Type', NULL, 'The process by which a student enters a school (Course Section) during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23652', '12', '23652', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000648', 'Teaching Assignment Role', NULL, 'The role that the Staff Member has been assigned for a Class Section. (A teacher may have the lead responsibility for one section and serve a supporting role for another section of the same course.)', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21650', '11', '21650', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000651', 'Course Section Exit Withdrawal Date', NULL, 'The year, month and day of the first day after the date of a person''s last enrollment in a course section.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23653', '12', '23653', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000649', 'Teaching Assignment Contribution Percentage', NULL, 'A percentage used to weight the educator''s assigned responsibility for student learning in a Class Section, particularly when more than one educator is assigned to the class section.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21651', '11', '21651', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000652', 'Course Section Exit Type', NULL, 'The circumstances under which the student exited from membership in a course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23654', '12', '23654', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000650', 'Course Section Entry Type', NULL, 'The process by which a student enters a school (Course Section) during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21652', '11', '21652', NULL, NULL) +VALUES ('000016', 'American Indian or Alaska Native', 'Race American Indian or Alaska Native', 'A person having origins in any of the original peoples of North and South America (including Central America), and who maintains cultural identification through tribal affiliation or community attachment.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23655', '12', '23655', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000651', 'Course Section Exit Withdrawal Date', NULL, 'The year, month and day of the first day after the date of a person''s last enrollment in a course section.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21653', '11', '21653', NULL, NULL) +VALUES ('000020', 'Asian', 'Race Asian', 'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian Subcontinent. This area includes, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23656', '12', '23656', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000652', 'Course Section Exit Type', NULL, 'The circumstances under which the student exited from membership in a course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21654', '11', '21654', NULL, NULL) +VALUES ('000034', 'Black or African American', 'Race Black or African American', 'A person having origins in any of the black racial groups of Africa.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23657', '12', '23657', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000016', 'American Indian or Alaska Native', 'Race American Indian or Alaska Native', 'A person having origins in any of the original peoples of North and South America (including Central America), and who maintains cultural identification through tribal affiliation or community attachment.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21655', '11', '21655', NULL, NULL) +VALUES ('000192', 'Native Hawaiian or Other Pacific Islander', 'Race Native Hawaiian or Other Pacific Islander', 'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23658', '12', '23658', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000020', 'Asian', 'Race Asian', 'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian Subcontinent. This area includes, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21656', '11', '21656', NULL, NULL) +VALUES ('000301', 'White', 'Race White', 'A person having origins in any of the original peoples of Europe, Middle East, or North Africa.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23659', '12', '23659', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000034', 'Black or African American', 'Race Black or African American', 'A person having origins in any of the black racial groups of Africa.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21657', '11', '21657', NULL, NULL) +VALUES ('000653', 'Interscholastic Sports - Male Only', NULL, 'The number of interscholastic sports in which only male students participate. Sports include distinct sports such as football, basketball, soccer but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23660', '12', '23660', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000192', 'Native Hawaiian or Other Pacific Islander', 'Race Native Hawaiian or Other Pacific Islander', 'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21658', '11', '21658', NULL, NULL) +VALUES ('000654', 'Interscholastic Sports - Female Only', NULL, 'The number of interscholastic sports in which only female students participate. Sports include distinct sports such as football, basketball, soccer but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23661', '12', '23661', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001260', 'Assessment Item Response Theory Parameter D6', NULL, 'For polytomous assessment items with more than six possible responses, this is the item response theory value representing the threshold between the sixth and seventh item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22226', '11', '22226', NULL, NULL) +VALUES ('000655', 'Interscholastic Teams - Male Only', NULL, 'The number of interscholastic teams in which only male students participate. Teams include each competitive level team in each sport, such as freshman team, junior varsity team, and varsity team but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23662', '12', '23662', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001261', 'Assessment Item Linking Item Indicator', NULL, 'Indicates that the item is intended to be administered in two different grades for the goal of establishing cross grade comparison.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22227', '11', '22227', NULL, NULL) +VALUES ('000656', 'Interscholastic Teams - Female Only', NULL, 'The number of interscholastic teams in which only female students participate. Teams include each competitive level team in each sport, such as freshman team, junior varsity team, and varsity team but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23663', '12', '23663', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001262', 'Assessment Item Response Theory Point Biserial Correlation Value', NULL, 'The correlation between correct answers on this item and total correct answers on the test during a previous administration. ', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22228', '11', '22228', NULL, NULL) +VALUES ('000657', 'Interscholastic Sport Participants - Male Only', NULL, 'The number of male students who participated on an interscholastic team. A student should be counted once for each team he was on.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23664', '12', '23664', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001263', 'Assessment Item Release Status', NULL, 'Indicates that the assessment item has been released to the public.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22229', '11', '22229', NULL, NULL) +VALUES ('000658', 'Interscholastic Sport Participants - Female Only', NULL, 'The number of female students who participated on an interscholastic team. A student should be counted once for each team she was on.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23665', '12', '23665', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001264', 'Assessment Item Response Theory DIF Value', NULL, 'A value representing the Differential Item Functioning, also referred to as measurement bias, for the assessment item. The value represents differences in the functioning of the item across groups which are matched on the attribute being measure by the item. The value is calculated using Mantel-Haenszel approach or a comparable algorithm so that a value of 1.0 represents no bias.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22230', '11', '22230', NULL, NULL) +VALUES ('000689', 'Competency Definition Identifier', 'Learning Standard Item Identifier, Competency Item Identifier', 'The globally unique identifier (GUID) issued by the publisher of the competency framework that uniquely identifies the definition in the hierarchy of competency definitions using a RFC 4122 compliant 32-character hexadecimal string, such as 21EC2020-3AEA-1069-A2DD-08002B30309D.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23666', '12', '23666', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001265', 'Assessment Item Response Theory Kappa Value', NULL, 'The measure used to represent the degree of agreement among raters.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22231', '11', '22231', NULL, NULL) +VALUES ('000690', 'Competency Definition Statement', 'Learning Standard Item Statement, Competency Item Statement', 'The text of the statement. The textual content that either describes a specific competency or describes a less granular group of competencies within the taxonomy of the competency framework.', 'Alphanumeric', '0', 'Note: This element is designed to support statements from various learning standards frameworks. The Head Start Child Outcomes Framework includes statements for Domains, Elements, and Indicators. Examples from the K-12 Common Core State Standards are the domain: “Geometry", the cluster: “Understand and apply the Pythagorean Theorem,” and standard: “Apply the Pythagorean Theorem to determine unknown side lengths in right triangles in real-world and mathematical problems in two and three dimensions.”', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23667', '12', '23667', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001266', 'Assessment Item Response Theory Kappa Algorithm', NULL, 'The algorithm used to derive the Assessment Item Kappa Value', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22232', '11', '22232', NULL, NULL) +VALUES ('000691', 'Competency Definition Type', 'Learning Standard Item Type, Competency Item Type', 'The class of statement in the structure of statements in the Competency Framework according to a controlled vocabulary, specified as a textual label.', 'Alphanumeric - 60 characters maximum', '0', 'This property points to a class, not to instances of that class. For example, where two competencies in a competency framework have been identified respectively as \"Strand: Renaissance\" and \"Strand: Social history\", the competencyCategory for both these competencies is \"Strand\"."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23668', '12', '23668', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001267', 'Assessment Item Body Text', NULL, 'The complete text of an assessment item including all applicable parts such as stimulus, stem, and possible response options presented.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22233', '11', '22233', NULL, NULL) +VALUES ('000692', 'Competency Definition Code', 'Learning Standard Item Code, Competency Item Code', 'A human-referenceable code designated by the publisher to identify the item in the hierarchy of competency definitions.', 'Alphanumeric - 30 characters maximum', '0', 'For example: "M.1.N.3" The code is usually not globally unique and usually has embedded meaning such as a number that represents a grade/level and letters that represent content strands.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23669', '12', '23669', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001268', 'Assessment Item Stimulus', NULL, ' The text, source (e.g., video clip), and/or graphic about which the assessment item is written. The stimulus provides the context of the item/task to which the student must respond.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22234', '11', '22234', NULL, NULL) +VALUES ('000693', 'Competency Framework Identifier URI', 'Learning Standard Document Identifier URI', 'An unambiguous reference to the competency framework using a network-resolvable URI.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23670', '12', '23670', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001269', 'Assessment Item Possible Response Option', NULL, 'The possible response presented to the participant within a selected-response/multiple-choice assessment item.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22235', '11', '22235', NULL, NULL) +VALUES ('000694', 'Competency Framework Title', 'Learning Standard Document Title', 'The name of the competency framework.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23671', '12', '23671', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001270', 'Session Code', NULL, 'A local code given to the session, usually for a session that represents a term within the school year such as a marking term.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22236', '11', '22236', NULL, NULL) +VALUES ('000695', 'Competency Framework Version', 'Learning Standard Document Version', 'Defines the revision of the competency framework as a version number or date.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23672', '12', '23672', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001271', 'Session Description', NULL, 'A short description of the Session.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22237', '11', '22237', NULL, NULL) +VALUES ('000696', 'Competency Framework Creator', 'Learning Standard Document Creator', 'The person or organization chiefly responsible for the intellectual content of the competency framework.', 'Alphanumeric - 120 characters maximum', '0', 'Implementations may choose to model this element as a repeatable field to support the case of multiple authors. Others may just use a comma delimited string for multiple authors.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23673', '12', '23673', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001272', 'Session Marking Term Indicator', NULL, 'Indicates that the session is a marking term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22238', '11', '22238', NULL, NULL) +VALUES ('000697', 'Competency Framework Description', 'Learning Standard Document Description', 'A textual description of the scope and contents of the competency framework.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23674', '12', '23674', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001273', 'Session Scheduling Term Indicator', NULL, 'Indicates that the session is a scheduling term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22239', '11', '22239', NULL, NULL) +VALUES ('000698', 'Competency Framework Publication Status', 'Learning Standard Document Publication Status', 'The publication status of the competency framework.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23675', '12', '23675', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001274', 'Session Attendance Term Indicator', NULL, 'Indicates that the session is an attendance term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22240', '11', '22240', NULL, NULL) +VALUES ('000699', 'Competency Framework Jurisdiction', 'Learning Standard Document Jurisdiction', 'A legal, quasi-legal, organizational or institutional domain of the entity mandating the use of the statement--e.g., California.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23676', '12', '23676', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001275', 'Calendar Event Date', NULL, 'The date of the scheduled or unscheduled calendar event.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22241', '11', '22241', NULL, NULL) +VALUES ('000700', 'Competency Framework Valid Start Date', 'Learning Standard Document Valid Start Date', 'The year, month and day the competency framework was adopted by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23677', '12', '23677', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001276', 'Calendar Event Day Name', NULL, 'A name used for the day of the calendar event.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22242', '11', '22242', NULL, NULL) +VALUES ('000701', 'Competency Framework Valid End Date', 'Learning Standard Document Valid End Date', 'The year, month and day the competency framework was deprecated/replaced by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23678', '12', '23678', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001277', 'Accommodations Needed Type', NULL, 'Codes identifying the set of health accommodations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22243', '11', '22243', NULL, NULL) +VALUES ('000702', 'Competency Framework Subject', 'Learning Standard Document Subject', 'The topic or academic subject of the competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23679', '12', '23679', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001278', 'Advanced Placement Course Code', 'AP Course Code', 'Course areas for advanced placement or credit. For a list of codes see http://apcentral.collegeboard.com/apc/public/courses/teachers_corner/index.html .', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22244', '11', '22244', NULL, NULL) +VALUES ('000703', 'Vision Screening Date', NULL, 'The year, month and day of a vision screening.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23680', '12', '23680', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001279', 'Professional Development Activity Education Levels Addressed', NULL, 'An age group or education level to which the professional development activity''s content pertains.', NULL, '1', 'Multiple options may be selected.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22245', '11', '22245', NULL, NULL) +VALUES ('000705', 'Hearing Screening Date', NULL, 'The year, month and day of a hearing screening.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23681', '12', '23681', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001280', 'Agency Course Identifier', NULL, 'The course identifier as it may be recorded at the regional or state level to conform to a standardized course classification system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22246', '11', '22246', NULL, NULL) +VALUES ('000706', 'Dental Screening Date', NULL, 'The year, month and day of a dental screening', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23682', '12', '23682', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001281', 'Allergy Reaction Description', NULL, 'Describes symptoms know to be associated with a person''s reaction to an allergen.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22247', '11', '22247', NULL, NULL) +VALUES ('000707', 'Assessment Item Maximum Score', NULL, 'The maximum number of points possible for the assessment item.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23683', '12', '23683', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001282', 'Allergy Severity', NULL, 'The level of severity of a person''s reaction to an allergen.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22248', '11', '22248', NULL, NULL) +VALUES ('000708', 'Assessment Item Minimum Score', NULL, 'The minimum number of points possible for the assessment item.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23684', '12', '23684', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001283', 'Allergy Type', NULL, 'Type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', NULL, '1', 'This material includes SNOMED Clinical Terms® (SNOMED CT®) which is used by permission of the International Health Terminology Standards Development Organization (IHTSDO). All rights reserved. SNOMED CT®, was originally created by The College of American Pathologists. “SNOMED” and “SNOMED CT” are registered trademarks of the IHTSDO.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22249', '11', '22249', NULL, NULL) +VALUES ('000709', 'Assessment Item Characteristic Value', NULL, 'A psychometric measure provided for an assessment item.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23685', '12', '23685', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001284', 'Assessment Item Result XML', NULL, 'The assessment item result formatted according to the IMS Global QTI Specification.', 'Alphanumeric', '0', 'See http://www.imsglobal.org/question/qtiv2p1/imsqti_resultv2p1.html#element10818', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22250', '11', '22250', NULL, NULL) +VALUES ('000710', 'Charter School Type', NULL, 'The category of charter school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23686', '12', '23686', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001287', 'Blended Learning Model Type', NULL, 'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.', NULL, '1', 'This may be an attribute of a Course (as designed) or a Class Section (as delivered). It also may be attributed to a school, institution, or program for "whole-school" blended models.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22253', '11', '22253', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000711', 'Cohort Description', NULL, 'A description of the student cohort.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23687', '12', '23687', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001288', 'Career Cluster', NULL, 'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', NULL, '1', 'Options from O*NET OnLine an application that was created for the general public to provide broad access to the O*NET database of occupational information. O*NET OnLine offers a variety of search options and occupational data, while My Next Move is a streamlined application for students and job seekers. Both applications were developed for the U.S. Department of Labor by the National Center for O*NET Development. See onetonline.org for more information.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', '11', '22254', NULL, NULL) +VALUES ('000712', 'Curriculum Framework Type', NULL, 'An indication of the standard curriculum used for this course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23688', '12', '23688', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001289', 'Career Education Plan Date', NULL, 'The date on which an individual''s professional development career plan was last updated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22255', '11', '22255', NULL, NULL) +VALUES ('000713', 'High School Diploma Distinction Type', NULL, 'The distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23689', '12', '23689', 'Updated', 'Add new options to option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001290', 'Career Education Plan Type', NULL, 'An indication of whether an individual completed an individualized guidance and counseling plan', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22256', '11', '22256', NULL, NULL) +VALUES ('000714', 'Kindergarten Program Participation Type ', NULL, 'The type of Kindergarten program the student is enrolled in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23690', '12', '23690', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001291', 'Career Pathways Program Participation Indicator', NULL, 'An indication of an individual who is participating in a program that is a component of or leads to a specific or recognized career pathway, as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22257', '11', '22257', NULL, NULL) +VALUES ('000715', 'Competency Definition Prerequisite Identifier', 'Learning Standard Item Prerequisite Identifier, Competency Item Prerequisite Identifier', 'The unique identifier of an immediate prerequisite Competency Definition, a competency needed prior to learning this one. (Some items may have no prerequisites while others may have one or more prerequisites. This should only be used to represent the immediate predecessors in a competency-based pathway, i.e. not prerequisites of prerequisites.)', 'Alphanumeric - 40 characters maximum', '0', 'The recommended approach is to use the entity Learning Standard Item Association instead of this data element. Learning Standard Item Association also supports associating other entities, such as Learning Resources, to learning standard items. CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces. An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23691', '12', '23691', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001292', 'Charter School Authorizer Type', NULL, 'The type of agency that authorized the establishment or continuation of a charter school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22258', '11', '22258', NULL, NULL) +VALUES ('000716', 'Program Sponsor Type', NULL, 'A type of organization providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23692', '12', '23692', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001293', 'Charter School Approval Year', NULL, 'The school year in which a charter school was initially approved.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22259', '11', '22259', NULL, NULL) +VALUES ('000717', 'Assessment Performance Level Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment performance level.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23693', '12', '23693', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001296', 'Correctional Education Facility Type', NULL, 'The type of facility in which an inmate receives correctional education services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22262', '11', '22262', NULL, NULL) +VALUES ('000718', 'Assessment Performance Level Label', NULL, 'A label representing the performance level appropriate for use on a report.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23694', '12', '23694', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001297', 'Correctional Education Reentry Services Participation Indicator', NULL, 'An indication of whether an adult correctional education student who receives instructional services (e.g., life skills, cognitive restructuring, etc.) to support reentry into society.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22263', '11', '22263', NULL, NULL) +VALUES ('000719', 'Assessment Subtest Rules', NULL, 'A description of the rules to produce a student test/subtest score from for a grouping of student item scores.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23695', '12', '23695', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001298', 'Course Academic Grade Scale Code', NULL, 'The grading scale used by an academic educational institution for an academic course.', 'Integer - 2 digits with leading zeros', '0', 'Based on the American Medical Colleges Admissions Services (AMCAS) grade scale, values 01 through 99. See Appendix E of the PESC XML High School Transcript Implementation Guide for a complete list of code values. 3-digit values (500 and above) established in earlier versions of the standard for miscellaneous grades are deprecated.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22264', '11', '22264', NULL, NULL) +VALUES ('000722', 'Address Type for Staff', NULL, 'The address type for a staff member.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23698', '12', '23698', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001299', 'Course Academic Grade Status Code', NULL, 'Additional information regarding the context of the given grade.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22265', '11', '22265', NULL, NULL) +VALUES ('000724', 'Assessment Item Response Score Value', NULL, 'The score given to a person''s response to an assessment item.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23700', '12', '23700', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001300', 'Course Add Date', NULL, 'The date an individual was added to an academic course at a school.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22266', '11', '22266', NULL, NULL) +VALUES ('000725', 'Competency Definition Education Level', 'Learning Standard Item Education Level, Competency Item Education Level', 'The education level, grade level or primary instructional level at which a Competency Definition is intended.', NULL, '1', 'More than one Learning Standard Grade Level may be associated with one Learning Standard Item.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23701', '12', '23701', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001301', 'Course Applicable Education Level', NULL, 'The education level, grade level or primary instructional level at which a course is intended.', NULL, '1', 'This element is repeatable for most use cases. Examples: (1.) SCED identifiers may specify a grade span of two or more grades. (2) A postsecondary course designed to qualify a student for an associates degree and professional certification could be repeated with both of those options.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22267', '11', '22267', NULL, NULL) +VALUES ('000726', 'Academic Year Designator', NULL, 'The academic year for which the data apply.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23702', '12', '23702', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001302', 'Course Certification Description', NULL, 'A description of the certification or recognition associated with this course (ex. Networking, CAD, etc.)', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22268', '11', '22268', NULL, NULL) +VALUES ('000727', 'Academic Term Designator', NULL, 'The academic term for which the data apply.', NULL, '1', 'Needs to be used in combination with Predominant Calendar System element in order to determine if the option set is referring to a semester, quarter, or some other term length.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23703', '12', '23703', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001303', 'Course Credit Basis Type', NULL, 'The type of enrollment associated with the credit hours for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22269', '11', '22269', NULL, NULL) +VALUES ('001323', 'Distance Education Program Enrollment Indicator', NULL, 'An individual''s enrollment in a program for which all the required coursework for program completion is able to be completed via distance education courses. Distance education is education that uses one or more technologies to deliver instruction to individuals who are separated from the instructor and to support regular and substantive interaction between the individuals and the instructor synchronously or asynchronously.', NULL, '1', 'Element defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24289', '12', '24289', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001304', 'Course Credit Level Type', NULL, 'The level of credit associated with the credit hours earned for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22270', '11', '22270', NULL, NULL) +VALUES ('001324', 'Doctoral Candidacy Admit Indicator', NULL, 'The individual''s status in being admitted as a doctoral candidate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24290', '12', '24290', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001305', 'Course Drop Date', NULL, 'The date on which the individual drops or withdraws from the course.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22271', '11', '22271', NULL, NULL) +VALUES ('001325', 'Doctoral Candidacy Date', NULL, 'The date on which the individual was admitted to doctoral candidate status.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24291', '12', '24291', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001306', 'Course Funding Program', NULL, 'A program through which the course is funded.', 'Alphanumeric - 30 characters maximum', '0', 'This may be a program targeted to a specific student population (e.g. SPED, ESOL) and the funding guidelines may specify that all or some of the students in the course are members of the subgroup.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22272', '11', '22272', NULL, NULL) +VALUES ('001326', 'Doctoral Exam Taken Date', NULL, 'The date on which the individual took an exam for advancement in, continuation or completion of a doctoral program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24292', '12', '24292', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001307', 'Course Honors Type', NULL, 'An indication that the course is or can be counted as an honors course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22273', '11', '22273', NULL, NULL) +VALUES ('001327', 'Doctoral Exams Required Type', NULL, 'A qualifier identifying the types of exams required of doctoral level individuals.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24293', '12', '24293', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001308', 'Course Instruction Method', NULL, 'The primary method of instruction used for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22274', '11', '22274', NULL, NULL) +VALUES ('001328', 'Early Learning Federal Funding Type', NULL, 'Federal source, even if administered by state or local, that contributes to the EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24294', '12', '24294', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001309', 'Course Instruction Site Name', NULL, 'The name of the location at which the course is taught.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22275', '11', '22275', NULL, NULL) +VALUES ('001329', 'Early Learning Group Size', NULL, 'The number of slots/spaces available.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24295', '12', '24295', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001310', 'Course Instruction Site Type', NULL, 'An indication of the type of location at which the course is taught.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22276', '11', '22276', NULL, NULL) +VALUES ('001330', 'Organization Monitoring Notifications', NULL, 'Whether the organization received notification about monitoring', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24296', '12', '24296', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001311', 'Course Interaction Mode', NULL, 'The primary type of interaction, synchronous or asynchronous, defined for the course.', NULL, '1', 'This may be an attribute of a Course (as designed) or an instance of a Class Section (as delivered).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22277', '11', '22277', NULL, NULL) +VALUES ('001331', 'Monitoring Visit Start Date', NULL, 'The date that monitoring visit began.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24297', '12', '24297', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001312', 'Course Level Type', NULL, 'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278', '11', '22278', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001332', 'Monitoring Visit End Date', NULL, 'The date that monitoring visit ended.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24298', '12', '24298', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001313', 'Course Narrative Explanation Grade', NULL, 'The narrative of the grade awarded to an individual in an academic course in those cases where a course does not receive a letter or numeric grade included in the grading scale of the Course Academic Grade Qualifier.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22279', '11', '22279', NULL, NULL) +VALUES ('001333', 'Purpose of Monitoring Visit', NULL, 'The purpose for the monitoring visit.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24299', '12', '24299', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001314', 'Course Number', NULL, 'The official reference number portion of a course identifier. This number normally designates the level of the course as well as the level of the individual expected to enroll in the course.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22280', '11', '22280', NULL, NULL) +VALUES ('001334', 'Organization Type of Monitoring', NULL, 'The type of monitoring on the organization.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24300', '12', '24300', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001315', 'Course Section Number', NULL, 'The number assigned to differentiate among distinct occurrences of courses that have the same course abbreviation and number but are considered to be different courses.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22281', '11', '22281', NULL, NULL) +VALUES ('001335', 'Early Learning Other Federal Funding Sources', NULL, 'The other contributing funding sources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24302', '12', '24302', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001316', 'Course Total', NULL, 'The total number of courses listed on a transcript. Used as a check digit for integrity purposes.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22282', '11', '22282', NULL, NULL) +VALUES ('001336', 'Early Learning Outcome Measurement Level', NULL, 'Use for outcome measures in early learning.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24303', '12', '24303', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001317', 'Credit Hours Applied Other Program', NULL, 'Codes identifying the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22283', '11', '22283', NULL, NULL) +VALUES ('001337', 'Early Learning Professional Development Topic Area', NULL, 'The topical area of competence needed for Staff professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24304', '12', '24304', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001318', 'Career and Technical Education Instructor Industry Certification', 'CTE Instructor Industry Certification', 'An indication of whether a Career and Technical Education (CTE) instructor holds a current industry-recognized credential related to their teaching field.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22284', '11', '22284', NULL, NULL) +VALUES ('001338', 'Early Learning Program Eligibility Expiration Date', NULL, 'The year, month, and day on which the child is no longer eligible for the Program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24305', '12', '24305', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001319', 'Disability Condition Status Type', 'Disability Condition Status Code', 'A code indicating the disability condition status.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22285', '11', '22285', NULL, NULL) +VALUES ('001339', 'Early Learning Program Eligibility Status', NULL, 'The status of eligibility for the child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24306', '12', '24306', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001320', 'Disability Condition Type', NULL, 'Codes identifying the set of disability conditions.', NULL, '1', 'Disability Conditional Type may be used in K12 to specify a disability other than Primary Disability Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22286', '11', '22286', NULL, NULL) +VALUES ('001340', 'Early Learning Program Eligibility Status Date', NULL, 'The date of status of eligibility.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24307', '12', '24307', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001321', 'Disability Determination Source Type', NULL, 'Codes identifying the set of disability determination sources.', NULL, '1', 'Disability Conditional Type may be used in K12 to specify a disability other than Primary Disability Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22287', '11', '22287', NULL, NULL) +VALUES ('001341', 'Emergency Contact Indicator', NULL, 'Indicates whether or not the person is a designated emergency contact for the learner.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24308', '12', '24308', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001322', 'Disciplinary Action IEP Placement Meeting Indicator', NULL, 'An indication as to whether an offense and/or disciplinary action resulted in a meeting of a student’s Individualized Education Program (IEP) team to determine appropriate placement.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22288', '11', '22288', NULL, NULL) +VALUES ('001342', 'Employed Prior to Enrollment', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, before enrolling in secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources won''t tell you anything further about employment or unemployment, only that a record was "not found" or "not matched" thus “unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24309', '12', '24309', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001323', 'Distance Education Program Enrollment Indicator', NULL, 'An individual''s enrollment in a program for which all the required coursework for program completion is able to be completed via distance education courses. Distance education is education that uses one or more technologies to deliver instruction to individuals who are separated from the instructor and to support regular and substantive interaction between the individuals and the instructor synchronously or asynchronously.', NULL, '1', 'Element defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22289', '11', '22289', NULL, NULL) +VALUES ('001343', 'Employment Status While Enrolled', NULL, 'An indication of the individual''s employment status while enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24310', '12', '24310', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001324', 'Doctoral Candidacy Admit Indicator', NULL, 'The individual''s status in being admitted as a doctoral candidate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22290', '11', '22290', NULL, NULL) +VALUES ('001344', 'Family and Consumer Sciences Course Indicator', NULL, 'An indication that the course is associated with the Family and Consumer Sciences plan of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24311', '12', '24311', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001325', 'Doctoral Candidacy Date', NULL, 'The date on which the individual was admitted to doctoral candidate status.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22291', '11', '22291', NULL, NULL) +VALUES ('001345', 'Financial Account Category', NULL, 'A label for a grouping of financial accounts, based on type and purpose.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24312', '12', '24312', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001326', 'Doctoral Exam Taken Date', NULL, 'The date on which the individual took an exam for advancement in, continuation or completion of a doctoral program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22292', '11', '22292', NULL, NULL) +VALUES ('001346', 'Financial Account Description', NULL, 'The description for the financial account in an organization''s accounting system.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24313', '12', '24313', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001327', 'Doctoral Exams Required Type', NULL, 'A qualifier identifying the types of exams required of doctoral level individuals.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22293', '11', '22293', NULL, NULL) +VALUES ('001347', 'Financial Account Fund Classification', NULL, 'A fund is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24314', '12', '24314', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001328', 'Early Learning Federal Funding Type', NULL, 'Federal source, even if administered by state or local, that contributes to the EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22294', '11', '22294', 'Updated', 'Added new option to the existing option set.') +VALUES ('001348', 'Financial Account Name', NULL, 'The name given to the financial account in an organization''s accounting system.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24315', '12', '24315', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001329', 'Early Learning Group Size', NULL, 'The number of slots/spaces available.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22295', '11', '22295', NULL, NULL) +VALUES ('001349', 'Financial Account Program Code', NULL, 'A program is a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives. The program classification provides the organization with a framework to classify instructional and other expenditures by program to determine cost.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24316', '12', '24316', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001330', 'Organization Monitoring Notifications', NULL, 'Whether the organization received notification about monitoring', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22296', '11', '22296', NULL, NULL) +VALUES ('001350', 'Financial Accounting Period Actual Value', NULL, 'The actual value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24317', '12', '24317', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001331', 'Monitoring Visit Start Date', NULL, 'The date that monitoring visit began.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22297', '11', '22297', NULL, NULL) +VALUES ('001352', 'Financial Aid Income Level', NULL, 'The income level of an individual that is used by an institution''s financial aid office to determine an individual''s Expected Family Contribution (EFC). For dependent students this will include the parents'' adjusted gross income and the student''s adjusted gross income. For independent students this will include the student''s adjusted gross income.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24319', '12', '24319', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001332', 'Monitoring Visit End Date', NULL, 'The date that monitoring visit ended.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22298', '11', '22298', NULL, NULL) +VALUES ('001353', 'Financial Account Balance Sheet Code', NULL, 'Balance sheet accounts and statement of net position accounts are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24320', '12', '24320', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001333', 'Purpose of Monitoring Visit', NULL, 'The purpose for the monitoring visit.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22299', '11', '22299', NULL, NULL) +VALUES ('001354', 'Financial Expenditure Function Code', NULL, 'The function describes the activity for which a service or material object is acquired. The functions of an organization are classified into five broad areas: instruction, support services, operation of non-instructional services, facilities acquisition and construction, and debt service. Functions are further classified into sub functions.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24321', '12', '24321', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001334', 'Organization Type of Monitoring', NULL, 'The type of monitoring on the organization.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22300', '11', '22300', NULL, NULL) +VALUES ('001355', 'Financial Expenditure Object Code', NULL, 'This classification is used to describe the service or commodity obtained as the result of a specific expenditure. Nine major object categories have codes ending in 00 and are further subdivided.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24322', '12', '24322', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001335', 'Early Learning Other Federal Funding Sources', NULL, 'The other contributing funding sources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22302', '11', '22302', NULL, NULL) +VALUES ('001356', 'Frequency of Service', NULL, 'The frequency at which a service is planned to occur or has occurred.', NULL, '1', 'This element is used to describe the planned frequency of services to be delivered and the actual frequency of services delivered.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24323', '12', '24323', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001336', 'Early Learning Outcome Measurement Level', NULL, 'Use for outcome measures in early learning.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22303', '11', '22303', NULL, NULL) +VALUES ('001357', 'Graduate or Doctoral Exam Results Status', NULL, 'The individual''s status in completing exams required for graduate or doctoral degree programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24324', '12', '24324', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001337', 'Early Learning Professional Development Topic Area', NULL, 'The topical area of competence needed for Staff professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22304', '11', '22304', NULL, NULL) +VALUES ('001358', 'Health Screening Equipment Used', NULL, 'The screening equipment used for the hearing screening or the method used for the vision screening', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24325', '12', '24325', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001338', 'Early Learning Program Eligibility Expiration Date', NULL, 'The year, month, and day on which the child is no longer eligible for the Program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22305', '11', '22305', NULL, NULL) +VALUES ('001359', 'Health Screening Follow-up Recommendation', NULL, 'Recommendations for follow-up after a health screening.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24326', '12', '24326', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001339', 'Early Learning Program Eligibility Status', NULL, 'The status of eligibility for the child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22306', '11', '22306', NULL, NULL) +VALUES ('001360', 'IDEA Part B 619 Potential Eligibility Indicator', NULL, 'The determination of whether a child is potentially eligible for Part B 619 services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24327', '12', '24327', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001340', 'Early Learning Program Eligibility Status Date', NULL, 'The date of status of eligibility.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22307', '11', '22307', NULL, NULL) +VALUES ('001363', 'IDEA Part C to Part B Notification Opt Out Indicator', NULL, 'Indicates whether parents of a child potentially eligible for Part B preschool services have opted out of the impending notification to the local education agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24330', '12', '24330', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001341', 'Emergency Contact Indicator', NULL, 'Indicates whether or not the person is a designated emergency contact for the learner.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22308', '11', '22308', NULL, NULL) +VALUES ('001364', 'IDEA Part C to Part B Notification Opt Out Date', NULL, 'The date that parents of a child potentially eligible for Part B preschool services opt out of the impending notification to the local education agency.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24331', '12', '24331', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001342', 'Employed Prior to Enrollment', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, before enrolling in secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources won''t tell you anything further about employment or unemployment, only that a record was "not found" or "not matched" thus “unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22309', '11', '22309', NULL, NULL) +VALUES ('001365', 'Transition Conference Date', NULL, 'The date of the transition conference from IDEA Part C to Part B 619 or another early learning program or service.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24333', '12', '24333', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001343', 'Employment Status While Enrolled', NULL, 'An indication of the individual''s employment status while enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22310', '11', '22310', NULL, NULL) +VALUES ('001366', 'Transition Conference Decline Date', NULL, 'The date the parents declined approval for the transition conference from IDEA Part C to Part B 619 or another early learning program or service.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24334', '12', '24334', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001344', 'Family and Consumer Sciences Course Indicator', NULL, 'An indication that the course is associated with the Family and Consumer Sciences plan of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22311', '11', '22311', NULL, NULL) +VALUES ('001367', 'Date of Transition Plan', NULL, 'The date transition steps and services were added to the individualized service plan.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24335', '12', '24335', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001345', 'Financial Account Category', NULL, 'A label for a grouping of financial accounts, based on type and purpose.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22312', '11', '22312', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001369', 'Incident Multiple Offense Type', NULL, 'An indication of whether the offense was primary or secondary in nature when a single incident included more than one type of offense.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24337', '12', '24337', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001346', 'Financial Account Description', NULL, 'The description for the financial account in an organization''s accounting system.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22313', '11', '22313', 'Updated', 'Changed definition and added elements to DES contexts to support Early Learning needs.') +VALUES ('001370', 'Incident Perpetrator Identifier', NULL, 'Identifies the perpetrator of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24338', '12', '24338', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001347', 'Financial Account Fund Classification', NULL, 'A fund is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22314', '11', '22314', 'Updated', 'Changed element name and technical name and added elements to DES contexts to support Early Learning needs.') +VALUES ('001371', 'Incident Perpetrator Injury Type', NULL, 'An indication of the occurrence of physical injury to the perpetrator(s) (participants) involved in the incident and‚ if so‚ the level of injury sustained.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24339', '12', '24339', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001348', 'Financial Account Name', NULL, 'The name given to the financial account in an organization''s accounting system.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22315', '11', '22315', 'Updated', 'Changed definition and added elements to DES contexts to support Early Learning needs.') +VALUES ('001372', 'Incident Perpetrator Type', NULL, 'Information on the type of individual who committed an incident. A “perpetrator” is an individual involved in an incident as an offender (the person who committed the infraction constituting the incident).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24340', '12', '24340', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001349', 'Financial Account Program Code', NULL, 'A program is a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives. The program classification provides the organization with a framework to classify instructional and other expenditures by program to determine cost.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22316', '11', '22316', 'Updated', 'Changed element name and technical name and added elements to DES contexts to support Early Learning needs.') +VALUES ('001373', 'Incident Person Role Type', NULL, 'The role or type of participation of a person in a discipline incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24341', '12', '24341', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001350', 'Financial Accounting Period Actual Value', NULL, 'The actual value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22317', '11', '22317', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001374', 'Incident Regulation Violated Description', NULL, 'A description of the rule‚ regulation‚ or standard that was violated when an incident occurred (e.g.‚ the identification of a relevant law‚ conduct standard‚ or acceptable use policy).', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24342', '12', '24342', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001351', 'Financial Accounting Period Budgeted Value', NULL, 'The budgeted value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22318', '11', '22318', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001375', 'Incident Related to Disability Manifestation', NULL, 'An indication whether a student’s behavior (offense) was a manifestation of‚ or related to‚ a disability condition.', NULL, '1', 'Under IDEA §300.530(e), a manifestation determination must occur within 10 days of any decision to change the child’s placement because of a violation of a code of student conduct.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24343', '12', '24343', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001352', 'Financial Aid Income Level', NULL, 'The income level of an individual that is used by an institution''s financial aid office to determine an individual''s Expected Family Contribution (EFC). For dependent students this will include the parents'' adjusted gross income and the student''s adjusted gross income. For independent students this will include the student''s adjusted gross income.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22319', '11', '22319', NULL, NULL) +VALUES ('001376', 'Incident Reported to Law Enforcement Indicator', NULL, 'An indication that the school resource officer or any other law enforcement official was notified about the incident‚ regardless of whether official action is taken.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24345', '12', '24345', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001353', 'Financial Account Balance Sheet Code', NULL, 'Balance sheet accounts and statement of net position accounts are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22320', '11', '22320', 'Updated', 'Changed name of element and technical name.') +VALUES ('001377', 'Incident Victim Identifier', NULL, 'Identifies the victim of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24346', '12', '24346', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001354', 'Financial Expenditure Function Code', NULL, 'The function describes the activity for which a service or material object is acquired. The functions of an organization are classified into five broad areas: instruction, support services, operation of non-instructional services, facilities acquisition and construction, and debt service. Functions are further classified into sub functions.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22321', '11', '22321', 'Updated', 'Changed element name and technical name. Added elements to DES contexts to support Early Learning needs. Changed definition of element to support other domains.') +VALUES ('001378', 'Incident Victim Type', NULL, 'Information on the type of individual who was injured or otherwise harmed as a direct result of the incident. A “victim” is the individual who suffers injury or harm that directly results from the incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24347', '12', '24347', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001355', 'Financial Expenditure Object Code', NULL, 'This classification is used to describe the service or commodity obtained as the result of a specific expenditure. Nine major object categories have codes ending in 00 and are further subdivided.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22322', '11', '22322', 'Updated', 'Changed element name and technical name and added elements to DES contexts to support Early Learning needs.') +VALUES ('001379', 'Incident Witness Identifier', NULL, 'Identifies the witness of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district. Using this data element permits linkage to descriptive information about the individual in the student or staff database.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24348', '12', '24348', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001356', 'Frequency of Service', NULL, 'The frequency at which a service is planned to occur or has occurred.', NULL, '1', 'This element is used to describe the planned frequency of services to be delivered and the actual frequency of services delivered.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22323', '11', '22323', 'Updated', 'Changed definition. Added usage note. Updated option set. Added elements to DES context to support K12 Implementation.') +VALUES ('001380', 'Incident Witness Type', NULL, 'Information on the type of individual who witnessed the incident and can give a firsthand account of an incident that was seen‚ heard‚ or experienced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24349', '12', '24349', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001357', 'Graduate or Doctoral Exam Results Status', NULL, 'The individual''s status in completing exams required for graduate or doctoral degree programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22324', '11', '22324', NULL, NULL) +VALUES ('001381', 'Individualized Program Planned Service Start Date', NULL, 'The date the service is planned to begin.', 'YYYY-MM-DD', '0', 'As decided on by an IFSP/IEP team, including the parent.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24350', '12', '24350', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001358', 'Health Screening Equipment Used', NULL, 'The screening equipment used for the hearing screening or the method used for the vision screening', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22325', '11', '22325', NULL, NULL) +VALUES ('001383', 'Individualized Program Planned Service Type', NULL, 'The types of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24352', '12', '24352', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001359', 'Health Screening Follow-up Recommendation', NULL, 'Recommendations for follow-up after a health screening.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22326', '11', '22326', NULL, NULL) +VALUES ('001384', 'Itinerant Provider', NULL, 'An indication of whether a person provides services at more than one site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24353', '12', '24353', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001360', 'IDEA Part B 619 Potential Eligibility Indicator', NULL, 'The determination of whether a child is potentially eligible for Part B 619 services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22327', '11', '22327', NULL, NULL) +VALUES ('001386', 'K12 End of Course Requirement', NULL, 'An indication that this course has an end of course examination required by the SEA or LEA.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24355', '12', '24355', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001363', 'IDEA Part C to Part B Notification Opt Out Indicator', NULL, 'Indicates whether parents of a child potentially eligible for Part B preschool services have opted out of the impending notification to the local education agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22330', '11', '22330', NULL, NULL) +VALUES ('001388', 'Professional Development Session Language', NULL, 'The language in which the professional development session is delivered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24357', '12', '24357', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001364', 'IDEA Part C to Part B Notification Opt Out Date', NULL, 'The date that parents of a child potentially eligible for Part B preschool services opt out of the impending notification to the local education agency.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22331', '11', '22331', NULL, NULL) +VALUES ('001389', 'Learning Resource Access API Type', NULL, 'Indicates that the learning resource is compatible with the referenced accessibility application programming interface (API).', NULL, '1', ' Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: apiInteroperable.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24358', '12', '24358', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001365', 'Transition Conference Date', NULL, 'The date of the transition conference from IDEA Part C to Part B 619 or another early learning program or service.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22333', '11', '22333', NULL, NULL) +VALUES ('001390', 'Learning Resource Access Hazard Type', NULL, 'A characteristic of the described learning resource that is physiologically dangerous to some users.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24359', '12', '24359', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001366', 'Transition Conference Decline Date', NULL, 'The date the parents declined approval for the transition conference from IDEA Part C to Part B 619 or another early learning program or service.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22334', '11', '22334', NULL, NULL) +VALUES ('001391', 'Learning Resource Access Mode Type', NULL, 'An access mode through which the intellectual content of a described learning resource or adaptation is communicated; if adaptations for the resource are known, the access modes of those adaptations are not included.', NULL, '1', 'Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: AccessModeRequired.Type/existingAccessMode.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24360', '12', '24360', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001367', 'Date of Transition Plan', NULL, 'The date transition steps and services were added to the individualized service plan.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22335', '11', '22335', NULL, NULL) +VALUES ('001392', 'Learning Resource Adaptation URL', NULL, 'The Uniform Resource Locator of a learning resource that is an adaptation for this resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24361', '12', '24361', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001369', 'Incident Multiple Offense Type', NULL, 'An indication of whether the offense was primary or secondary in nature when a single incident included more than one type of offense.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22337', '11', '22337', NULL, NULL) +VALUES ('001393', 'Learning Resource Assistive Technologies Compatible Indicator', NULL, 'Indicates that the learning resource is compatible with assistive technologies.', NULL, '1', 'For example, that the resource complies to Web Content Accessibility Guidelines (WCAG) 2.0 checkpoints: 1.1.1, 1.3.1, 1.3.2, 2.4.4, 3.1.1, 3.1.2, 3.3.2, 4.1.1, 4.1.2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24362', '12', '24362', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001370', 'Incident Perpetrator Identifier', NULL, 'Identifies the perpetrator of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22338', '11', '22338', NULL, NULL) +VALUES ('001394', 'Learning Resource Book Format Type', NULL, 'Specifies the format for a learning resource that is a book. Other options may be considered for inclusion in the option set.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24363', '12', '24363', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001371', 'Incident Perpetrator Injury Type', NULL, 'An indication of the occurrence of physical injury to the perpetrator(s) (participants) involved in the incident and‚ if so‚ the level of injury sustained.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22339', '11', '22339', NULL, NULL) +VALUES ('001395', 'Learning Resource Control Flexibility Type', NULL, 'Identifies a single input method that is sufficient to control the described learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24364', '12', '24364', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001372', 'Incident Perpetrator Type', NULL, 'Information on the type of individual who committed an incident. A “perpetrator” is an individual involved in an incident as an offender (the person who committed the infraction constituting the incident).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22340', '11', '22340', NULL, NULL) +VALUES ('001396', 'Learning Resource Digital Media Sub Type', NULL, 'The media or file subtype of the digital resource being based on the Media Types and Subtypes, formerly known as MIME types, defined by the Internet Assigned Numbers Authority (IANA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24365', '12', '24365', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001373', 'Incident Person Role Type', NULL, 'The role or type of participation of a person in a discipline incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22341', '11', '22341', NULL, NULL) +VALUES ('001397', 'Learning Resource Digital Media Type', NULL, 'The media or file type of the digital resource being based on the media types defined by the Internet Assigned Numbers Authority (AINA) at http://www.iana.org/assignments/media-types.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24366', '12', '24366', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001374', 'Incident Regulation Violated Description', NULL, 'A description of the rule‚ regulation‚ or standard that was violated when an incident occurred (e.g.‚ the identification of a relevant law‚ conduct standard‚ or acceptable use policy).', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22342', '11', '22342', NULL, NULL) +VALUES ('001398', 'Learning Resource Adapted From URL', NULL, 'URL identifier of a learning resource for which this resource is an adaptation.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24367', '12', '24367', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001375', 'Incident Related to Disability Manifestation', NULL, 'An indication whether a student’s behavior (offense) was a manifestation of‚ or related to‚ a disability condition.', NULL, '1', 'Under IDEA §300.530(e), a manifestation determination must occur within 10 days of any decision to change the child’s placement because of a violation of a code of student conduct.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22343', '11', '22343', NULL, NULL) +VALUES ('001399', 'Learning Resource Media Feature Type', NULL, 'Accessible content features included with the learning resource.', NULL, '1', 'Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: AdaptationTypeRequired.Type/adaptationRequest.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24368', '12', '24368', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001376', 'Incident Reported to Law Enforcement Indicator', NULL, 'An indication that the school resource officer or any other law enforcement official was notified about the incident‚ regardless of whether official action is taken.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22345', '11', '22345', NULL, NULL) +VALUES ('001400', 'Learning Resource Peer Rating Sample Size', NULL, 'The sample size of a peer rating value. Only used when the Peer Rating Value is collected in aggregate as an average of multiple atomic/individual ratings.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24369', '12', '24369', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001377', 'Incident Victim Identifier', NULL, 'Identifies the victim of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22346', '11', '22346', NULL, NULL) +VALUES ('001401', 'Learning Resource Physical Media Type', NULL, 'A type of physical media on which the Learning Resource is delivered or available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24370', '12', '24370', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001378', 'Incident Victim Type', NULL, 'Information on the type of individual who was injured or otherwise harmed as a direct result of the incident. A “victim” is the individual who suffers injury or harm that directly results from the incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22347', '11', '22347', NULL, NULL) +VALUES ('001402', 'Competency Association Connection Citation', 'Learning Standard Item Association Connection Citation', 'Any citation appropriate to evidence the connection between nodes', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24371', '12', '24371', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001379', 'Incident Witness Identifier', NULL, 'Identifies the witness of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district. Using this data element permits linkage to descriptive information about the individual in the student or staff database.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22348', '11', '22348', NULL, NULL) +VALUES ('001403', 'Competency Association Destination Node Name', 'Learning Standard Item Association Destination Node Name', 'Name of the destination node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24372', '12', '24372', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001380', 'Incident Witness Type', NULL, 'Information on the type of individual who witnessed the incident and can give a firsthand account of an incident that was seen‚ heard‚ or experienced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22349', '11', '22349', NULL, NULL) +VALUES ('001404', 'Competency Association Destination Node URI', 'Learning Standard Item Association Destination Node URI', 'URI of the destination node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24373', '12', '24373', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001381', 'Individualized Program Planned Service Start Date', NULL, 'The date the service is planned to begin.', 'YYYY-MM-DD', '0', 'As decided on by an IFSP/IEP team, including the parent.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22350', '11', '22350', NULL, NULL) +VALUES ('001405', 'Competency Association Origin Node Name', 'Learning Standard Item Association Origin Node Name', 'Name of the origin node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24374', '12', '24374', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001383', 'Individualized Program Planned Service Type', NULL, 'The types of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22352', '11', '22352', NULL, NULL) +VALUES ('001406', 'Competency Association Origin Node URI', 'Learning Standard Item Association Origin Node URI', 'URI of the origin node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24375', '12', '24375', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001384', 'Itinerant Provider', NULL, 'An indication of whether a person provides services at more than one site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22353', '11', '22353', NULL, NULL) +VALUES ('001407', 'Competency Association Weight', 'Learning Standard Item Association Weight', 'Indicates the relative significance this connection has for the destination node in a learning map.', 'Numeric - up to 3 digits after decimal place', '0', 'This element is used to support learning maps and may be used in two ways 1) use a 1.000 to flag incoming nodes as important prerequisites/predecessors and 0.000 to indicate those with less significance, or 2) to indicate a levels of significance for the connection as a decimal between 0.000 and 1.000.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24376', '12', '24376', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001386', 'K12 End of Course Requirement', NULL, 'An indication that this course has an end of course examination required by the SEA or LEA.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22355', '11', '22355', NULL, NULL) +VALUES ('001408', 'Competency Definition Node Accessibility Profile', 'Learning Standard Item Node Accessibility Profile, Competency Item Node Accessibility Profile', 'When the Competency Definition is used as a node in a learning map, this element supports alternative pathways based on a learner''s accessibility profile. The type selected indicates which accessibility profile the node is designed to address.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24377', '12', '24377', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001388', 'Professional Development Session Language', NULL, 'The language in which the professional development session is delivered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22357', '11', '22357', NULL, NULL) +VALUES ('001409', 'Competency Definition Short Name', 'Learning Standard Item Node Name, Competency Item Node Name', 'The short name or label for the competency definition or its node in a competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24378', '12', '24378', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001389', 'Learning Resource Access API Type', NULL, 'Indicates that the learning resource is compatible with the referenced accessibility application programming interface (API).', NULL, '1', ' Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: apiInteroperable.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22358', '11', '22358', NULL, NULL) +VALUES ('001411', 'Competency Definition Testability Type', 'Learning Standard Item Testability Type, Competency Item Testability Type', 'Indicates if the competency described in the Competency Definition Statement can be tested using one or more assessment items.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24380', '12', '24380', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001390', 'Learning Resource Access Hazard Type', NULL, 'A characteristic of the described learning resource that is physiologically dangerous to some users.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22359', '11', '22359', NULL, NULL) +VALUES ('001412', 'Military Enlistment After Exit', NULL, 'An individual who is a member of the uniformed armed forces of the United States as reported through FEDES after exiting secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Information on military enlistment is collected as a part of the FEDES program which facilitates periodic matches with the Department of Defense Manpower Information Center. While the unemployment insurance data cannot be used to indicate that an individual is not employed, the DOD Enlistment data can suggest "not enlisted when there is no match." These data are included in FEDES matches and may need to be "unduplicated" from employment counts.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24381', '12', '24381', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001391', 'Learning Resource Access Mode Type', NULL, 'An access mode through which the intellectual content of a described learning resource or adaptation is communicated; if adaptations for the resource are known, the access modes of those adaptations are not included.', NULL, '1', 'Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: AccessModeRequired.Type/existingAccessMode.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22360', '11', '22360', NULL, NULL) +VALUES ('001413', 'National Collegiate Athletic Association Eligibility', 'NCAA Eligibility', 'An indication that the course is approved for determining NCAA eligibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24382', '12', '24382', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001392', 'Learning Resource Adaptation URL', NULL, 'The Uniform Resource Locator of a learning resource that is an adaptation for this resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22361', '11', '22361', NULL, NULL) +VALUES ('001414', 'NCES College Course Map Code', NULL, 'A taxonomy system for coding postsecondary courses in NCES research studies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24383', '12', '24383', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001393', 'Learning Resource Assistive Technologies Compatible Indicator', NULL, 'Indicates that the learning resource is compatible with assistive technologies.', NULL, '1', 'For example, that the resource complies to Web Content Accessibility Guidelines (WCAG) 2.0 checkpoints: 1.1.1, 1.3.1, 1.3.2, 2.4.4, 3.1.1, 3.1.2, 3.3.2, 4.1.1, 4.1.2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22362', '11', '22362', NULL, NULL) +VALUES ('001415', 'Number of Dependents', NULL, 'The number of dependents who live with the student and receive more than half their support from them.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24384', '12', '24384', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001394', 'Learning Resource Book Format Type', NULL, 'Specifies the format for a learning resource that is a book. Other options may be considered for inclusion in the option set.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22363', '11', '22363', NULL, NULL) +VALUES ('001416', 'Oral Defense Completed Indicator', NULL, 'An indication of the individual''s completion of an oral defense. The requirement to conduct an oral defense by doctoral individuals may vary across institutions, programs, or fields of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24385', '12', '24385', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001395', 'Learning Resource Control Flexibility Type', NULL, 'Identifies a single input method that is sufficient to control the described learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22364', '11', '22364', NULL, NULL) +VALUES ('001417', 'Oral Defense Date', NULL, 'The date on which the individual gave an oral defense.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24386', '12', '24386', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001396', 'Learning Resource Digital Media Sub Type', NULL, 'The media or file subtype of the digital resource being based on the Media Types and Subtypes, formerly known as MIME types, defined by the Internet Assigned Numbers Authority (IANA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22365', '11', '22365', NULL, NULL) +VALUES ('001418', 'Organization Operational Status', NULL, 'The current status of the organization''s operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24387', '12', '24387', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001397', 'Learning Resource Digital Media Type', NULL, 'The media or file type of the digital resource being based on the media types defined by the Internet Assigned Numbers Authority (AINA) at http://www.iana.org/assignments/media-types.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22366', '11', '22366', NULL, NULL) +VALUES ('001419', 'Organization Seeking Accreditation Date', NULL, 'The date in which accreditation process was started (but not officially approved or denied)', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24388', '12', '24388', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001398', 'Learning Resource Adapted From URL', NULL, 'URL identifier of a learning resource for which this resource is an adaptation.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22367', '11', '22367', NULL, NULL) +VALUES ('001420', 'Original Course Identifier', NULL, 'The course identifier as it was listed when the credit was earned (e.g. before a system conversion) to show consistency between present transcripts and older ones.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24389', '12', '24389', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001399', 'Learning Resource Media Feature Type', NULL, 'Accessible content features included with the learning resource.', NULL, '1', 'Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: AdaptationTypeRequired.Type/adaptationRequest.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22368', '11', '22368', NULL, NULL) +VALUES ('001421', 'Other Race Indicator', NULL, 'Race other than American Indian, Black, Asian, White, Native Pacific Islander', NULL, '1', 'This element only applies to Early Learning (Head Start). For non-ED early learning programs only.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24390', '12', '24390', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001400', 'Learning Resource Peer Rating Sample Size', NULL, 'The sample size of a peer rating value. Only used when the Peer Rating Value is collected in aggregate as an average of multiple atomic/individual ratings.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22369', '11', '22369', NULL, NULL) +VALUES ('001422', 'Override School Course Number', NULL, 'An indication of the way an academic course was identified at an educational institution.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24391', '12', '24391', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001401', 'Learning Resource Physical Media Type', NULL, 'A type of physical media on which the Learning Resource is delivered or available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22370', '11', '22370', NULL, NULL) +VALUES ('001423', 'Person Relationship to Learner Contact Priority Number', NULL, 'The numeric order in the preferred sequence and priority for contacting a person related to the learner.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24392', '12', '24392', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001402', 'Competency Association Connection Citation', 'Learning Standard Item Association Connection Citation', 'Any citation appropriate to evidence the connection between nodes', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22371', '11', '22371', NULL, NULL) +VALUES ('001424', 'Person Relationship to Learner Contact Restrictions Description', NULL, 'Restrictions for student and/or teacher contact with the individual (e.g., the student may not be picked up by the individual)', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24393', '12', '24393', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001403', 'Competency Association Destination Node Name', 'Learning Standard Item Association Destination Node Name', 'Name of the destination node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22372', '11', '22372', NULL, NULL) +VALUES ('001425', 'Person Relationship to Learner Lives with Indicator', NULL, 'Indicates whether or not the learner lives with the related person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24394', '12', '24394', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001404', 'Competency Association Destination Node URI', 'Learning Standard Item Association Destination Node URI', 'URI of the destination node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22373', '11', '22373', NULL, NULL) +VALUES ('001426', 'Postsecondary Entering Student Indicator', NULL, 'The initial enrollment of an individual in credit bearing courses or developmental/remedial courses at an institution after completing high school or a high school equivalency program (e.g. GED, Adult High School Diploma).', NULL, '1', 'An individual can only be an entering student once at an institution at the undergraduate level.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24395', '12', '24395', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001405', 'Competency Association Origin Node Name', 'Learning Standard Item Association Origin Node Name', 'Name of the origin node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22374', '11', '22374', NULL, NULL) +VALUES ('001427', 'Postsecondary Student Entering Term', NULL, 'The term and year of the initial enrollment of an individual in credit bearing courses or developmental/remedial courses at an institution after completing high school or a high school equivalency program (e.g., GED, Adult High School Diploma).', 'Alphanumeric - 30 characters maximum', '0', 'An individual can only be an entering student once at an institution at the undergraduate level.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24396', '12', '24396', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001406', 'Competency Association Origin Node URI', 'Learning Standard Item Association Origin Node URI', 'URI of the origin node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22375', '11', '22375', NULL, NULL) +VALUES ('001428', 'Primary Contact Indicator', NULL, 'Indicates that a person is a primary contact within the specified context, such as a primary parental contact specified in Person Relationship to Learner or a primary administrative contact for an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24397', '12', '24397', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001407', 'Competency Association Weight', 'Learning Standard Item Association Weight', 'Indicates the relative significance this connection has for the destination node in a learning map.', 'Numeric - up to 3 digits after decimal place', '0', 'This element is used to support learning maps and may be used in two ways 1) use a 1.000 to flag incoming nodes as important prerequisites/predecessors and 0.000 to indicate those with less significance, or 2) to indicate a levels of significance for the connection as a decimal between 0.000 and 1.000.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22376', '11', '22376', NULL, NULL) +VALUES ('001429', 'Professional Certificate or License Number', NULL, 'The number issued by the credentialing/licensing agency.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24398', '12', '24398', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001408', 'Competency Definition Node Accessibility Profile', 'Learning Standard Item Node Accessibility Profile, Competency Item Node Accessibility Profile', 'When the Competency Definition is used as a node in a learning map, this element supports alternative pathways based on a learner''s accessibility profile. The type selected indicates which accessibility profile the node is designed to address.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22377', '11', '22377', NULL, NULL) +VALUES ('001430', 'Professional Development Audience Type', NULL, 'The type of audience for the professional development activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24399', '12', '24399', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001409', 'Competency Definition Short Name', 'Learning Standard Item Node Name, Competency Item Node Name', 'The short name or label for the competency definition or its node in a competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22378', '11', '22378', NULL, NULL) +VALUES ('001431', 'Professional Development Delivery Method', NULL, 'The method by which a session is delivered', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24401', '12', '24401', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001411', 'Competency Definition Testability Type', 'Learning Standard Item Testability Type, Competency Item Testability Type', 'Indicates if the competency described in the Competency Definition Statement can be tested using one or more assessment items.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22380', '11', '22380', NULL, NULL) +VALUES ('001432', 'Professional Development Activity Approval Code', NULL, 'A code given to an activity by an approval organization to designate it as an approved activity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24402', '12', '24402', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001412', 'Military Enlistment After Exit', NULL, 'An individual who is a member of the uniformed armed forces of the United States as reported through FEDES after exiting secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Information on military enlistment is collected as a part of the FEDES program which facilitates periodic matches with the Department of Defense Manpower Information Center. While the unemployment insurance data cannot be used to indicate that an individual is not employed, the DOD Enlistment data can suggest "not enlisted when there is no match." These data are included in FEDES matches and may need to be "unduplicated" from employment counts.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22381', '11', '22381', NULL, NULL) +VALUES ('001433', 'Professional Development Activity Approved Purpose', NULL, 'The purposes for which an activity is approved.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24403', '12', '24403', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001413', 'National Collegiate Athletic Association Eligibility', 'NCAA Eligibility', 'An indication that the course is approved for determining NCAA eligibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22382', '11', '22382', NULL, NULL) +VALUES ('001434', 'Professional Development Activity Code', NULL, 'A code assigned to an professional development activity by the organization offering the activity that is unique to the non-variable activity details.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24404', '12', '24404', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001414', 'NCES College Course Map Code', NULL, 'A taxonomy system for coding postsecondary courses in NCES research studies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22383', '11', '22383', NULL, NULL) +VALUES ('001435', 'Professional Development Activity Cost', NULL, 'The cost for an attendee to participate in a professional development activity.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24405', '12', '24405', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001415', 'Number of Dependents', NULL, 'The number of dependents who live with the student and receive more than half their support from them.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22384', '11', '22384', NULL, NULL) +VALUES ('001436', 'Professional Development Activity Credit Type', NULL, 'The type of credit awarded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24406', '12', '24406', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001416', 'Oral Defense Completed Indicator', NULL, 'An indication of the individual''s completion of an oral defense. The requirement to conduct an oral defense by doctoral individuals may vary across institutions, programs, or fields of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22385', '11', '22385', NULL, NULL) +VALUES ('001437', 'Professional Development Activity Credits', NULL, 'The number of credits a professional development activity provides.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24407', '12', '24407', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001417', 'Oral Defense Date', NULL, 'The date on which the individual gave an oral defense.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22386', '11', '22386', NULL, NULL) +VALUES ('001438', 'Professional Development Activity Description', NULL, 'A description of the content covered in the professional development activity.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24408', '12', '24408', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001418', 'Organization Operational Status', NULL, 'The current status of the organization''s operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22387', '11', '22387', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001439', 'Professional Development Activity Level', NULL, 'An indicator of the level of a professional development activity on the beginner to advanced continuum.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24409', '12', '24409', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001419', 'Organization Seeking Accreditation Date', NULL, 'The date in which accreditation process was started (but not officially approved or denied)', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22388', '11', '22388', NULL, NULL) +VALUES ('001440', 'Professional Development Activity Objective', NULL, 'The expected outcomes of a participant in an activity.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24410', '12', '24410', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001420', 'Original Course Identifier', NULL, 'The course identifier as it was listed when the credit was earned (e.g. before a system conversion) to show consistency between present transcripts and older ones.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22389', '11', '22389', NULL, NULL) +VALUES ('001442', 'Professional Development Activity Type', NULL, 'The indication of the type of professional development activity.', NULL, '1', 'The type of event should be determined based on the content of the event, not the delivery method.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24412', '12', '24412', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001421', 'Other Race Indicator', NULL, 'Race other than American Indian, Black, Asian, White, Native Pacific Islander', NULL, '1', 'This element only applies to Early Learning (Head Start). For non-ED early learning programs only.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22390', '11', '22390', NULL, NULL) +VALUES ('001443', 'Professional Development Funding Source', NULL, 'The primary source of funding for a professional development session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24413', '12', '24413', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001422', 'Override School Course Number', NULL, 'An indication of the way an academic course was identified at an educational institution.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22391', '11', '22391', NULL, NULL) +VALUES ('001444', 'Professional Development Instructor Identifier', NULL, 'Identifies an instructor of a professional development session.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24414', '12', '24414', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001423', 'Person Relationship to Learner Contact Priority Number', NULL, 'The numeric order in the preferred sequence and priority for contacting a person related to the learner.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22392', '11', '22392', NULL, NULL) +VALUES ('001445', 'Professional Development Publish Activity Indicator', NULL, 'An indicator of whether the professional development activity should be published.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24415', '12', '24415', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001424', 'Person Relationship to Learner Contact Restrictions Description', NULL, 'Restrictions for student and/or teacher contact with the individual (e.g., the student may not be picked up by the individual)', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22393', '11', '22393', NULL, NULL) +VALUES ('001446', 'Professional Development Session Capacity', NULL, 'The total number of participants that can be accommodated by a professional development session.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24416', '12', '24416', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001425', 'Person Relationship to Learner Lives with Indicator', NULL, 'Indicates whether or not the learner lives with the related person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22394', '11', '22394', NULL, NULL) +VALUES ('001447', 'Professional Development Session End Date', NULL, 'The year, month and day a professional development session ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24417', '12', '24417', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001426', 'Postsecondary Entering Student Indicator', NULL, 'The initial enrollment of an individual in credit bearing courses or developmental/remedial courses at an institution after completing high school or a high school equivalency program (e.g. GED, Adult High School Diploma).', NULL, '1', 'An individual can only be an entering student once at an institution at the undergraduate level.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22395', '11', '22395', NULL, NULL) +VALUES ('001448', 'Professional Development Session End Time', NULL, 'The time at which a professional development session ends.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24418', '12', '24418', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001427', 'Postsecondary Student Entering Term', NULL, 'The term and year of the initial enrollment of an individual in credit bearing courses or developmental/remedial courses at an institution after completing high school or a high school equivalency program (e.g., GED, Adult High School Diploma).', 'Alphanumeric - 30 characters maximum', '0', 'An individual can only be an entering student once at an institution at the undergraduate level.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22396', '11', '22396', NULL, NULL) +VALUES ('001449', 'Professional Development Session Evaluation Method', NULL, 'The method used to evaluate a professional development session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24419', '12', '24419', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001428', 'Primary Contact Indicator', NULL, 'Indicates that a person is a primary contact within the specified context, such as a primary parental contact specified in Person Relationship to Learner or a primary administrative contact for an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22397', '11', '22397', NULL, NULL) +VALUES ('001450', 'Professional Development Session Evaluation Score', NULL, 'The score or rating used to determine if a professional development session was successful.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24420', '12', '24420', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001429', 'Professional Certificate or License Number', NULL, 'The number issued by the credentialing/licensing agency.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22398', '11', '22398', NULL, NULL) +VALUES ('001451', 'Professional Development Activity Expiration Date', NULL, 'The year, month, and day on which any certificate awarded as part of a professional development activity expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24421', '12', '24421', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001430', 'Professional Development Audience Type', NULL, 'The type of audience for the professional development activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22399', '11', '22399', NULL, NULL) +VALUES ('001509', 'Child Outcomes Summary Rating C', 'COS Rating C', 'Child''s level of functioning in the use of appropriate behaviors to meet their needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24481', '12', '24481', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001431', 'Professional Development Delivery Method', NULL, 'The method by which a session is delivered', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22401', '11', '22401', NULL, NULL) +VALUES ('001510', 'Method of Service Delivery', NULL, 'The method by which the services will be provided.', 'Alphanumeric - 60 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24482', '12', '24482', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001432', 'Professional Development Activity Approval Code', NULL, 'A code given to an activity by an approval organization to designate it as an approved activity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22402', '11', '22402', NULL, NULL) +VALUES ('001452', 'Professional Development Session Identifier', NULL, 'The unique, non-duplicated, identification number assigned by the registry data system for a session of a particular professional development activity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24422', '12', '24422', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001433', 'Professional Development Activity Approved Purpose', NULL, 'The purposes for which an activity is approved.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22403', '11', '22403', NULL, NULL) +VALUES ('001454', 'Professional Development Session Location Name', NULL, 'The name of a location where a professional development session will be held.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24424', '12', '24424', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001434', 'Professional Development Activity Code', NULL, 'A code assigned to an professional development activity by the organization offering the activity that is unique to the non-variable activity details.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22404', '11', '22404', NULL, NULL) +VALUES ('001455', 'Professional Development Session Start Date', NULL, 'The year, month, and day a professional development session begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24426', '12', '24426', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001435', 'Professional Development Activity Cost', NULL, 'The cost for an attendee to participate in a professional development activity.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22405', '11', '22405', NULL, NULL) +VALUES ('001456', 'Professional Development Session Start Time', NULL, 'The time at which a professional development session begins.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24427', '12', '24427', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001436', 'Professional Development Activity Credit Type', NULL, 'The type of credit awarded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22406', '11', '22406', NULL, NULL) +VALUES ('001457', 'Professional Development Session Status', NULL, 'The current status of a professional development session', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24428', '12', '24428', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001437', 'Professional Development Activity Credits', NULL, 'The number of credits a professional development activity provides.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22407', '11', '22407', NULL, NULL) +VALUES ('001458', 'Professional Development Instructional Delivery Mode', NULL, 'The primary setting or medium of professional development delivery.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24429', '12', '24429', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001438', 'Professional Development Activity Description', NULL, 'A description of the content covered in the professional development activity.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22408', '11', '22408', NULL, NULL) +VALUES ('001460', 'Quality Initiative Maximum Score', NULL, 'The maximum score option for the QRIS or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24432', '12', '24432', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001439', 'Professional Development Activity Level', NULL, 'An indicator of the level of a professional development activity on the beginner to advanced continuum.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22409', '11', '22409', NULL, NULL) +VALUES ('001461', 'Quality Initiative Minimum Score', NULL, 'The minimum score option for the QRIS or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24433', '12', '24433', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001440', 'Professional Development Activity Objective', NULL, 'The expected outcomes of a participant in an activity.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22410', '11', '22410', NULL, NULL) +VALUES ('001462', 'Quality Initiative Score Level', NULL, 'The score, rating or level received by a program for its Quality Rating and Improvement System (QRIS) or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24434', '12', '24434', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001442', 'Professional Development Activity Type', NULL, 'The indication of the type of professional development activity.', NULL, '1', 'The type of event should be determined based on the content of the event, not the delivery method.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22412', '11', '22412', NULL, NULL) +VALUES ('001463', 'Quality Initiative Participation Indicator', NULL, 'Site participates in a quality improvement initiative component other than QRIS.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24435', '12', '24435', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001443', 'Professional Development Funding Source', NULL, 'The primary source of funding for a professional development session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22413', '11', '22413', NULL, NULL) +VALUES ('001464', 'Quality Initiative Participation End Date', NULL, 'The quality initiative end date.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24436', '12', '24436', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001444', 'Professional Development Instructor Identifier', NULL, 'Identifies an instructor of a professional development session.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22414', '11', '22414', NULL, NULL) +VALUES ('001465', 'Quality Initiative Participation Start Date', NULL, 'The quality initiative start date.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24437', '12', '24437', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001445', 'Professional Development Publish Activity Indicator', NULL, 'An indicator of whether the professional development activity should be published.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22415', '11', '22415', NULL, NULL) +VALUES ('001466', 'Responsible Organization Identifier', NULL, 'Identifies an organization responsible for specific educational services and/or instruction based on a type of responsibility specified in the Responsible Organization Type.', 'Alphanumeric - 40 characters maximum', '0', 'This may be used to specify responsibility when the organization is not a school (Responsible School) or school district (Responsible District).

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24438', '12', '24438', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001446', 'Professional Development Session Capacity', NULL, 'The total number of participants that can be accommodated by a professional development session.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22416', '11', '22416', NULL, NULL) +VALUES ('001467', 'Responsible Organization Type', NULL, 'The type of responsibility the organization has for the student.', NULL, '1', 'This may be used to specify responsibility when the organization is not a school (Responsible School) or school district (Responsible District).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24439', '12', '24439', 'Updated', 'Added new option to existing option set, change option set, add new DES locations') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001447', 'Professional Development Session End Date', NULL, 'The year, month and day a professional development session ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22417', '11', '22417', NULL, NULL) +VALUES ('001468', 'Financial Account Revenue Code', NULL, 'These codes are for recording revenue and other receivables by source. Major revenue categories have codes ending in 00 and are further subdivided.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".

Early Learning: If related to an "in kind" contribution use codes 1920 or 100.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24440', '12', '24440', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001448', 'Professional Development Session End Time', NULL, 'The time at which a professional development session ends.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22418', '11', '22418', NULL, NULL) +VALUES ('001469', 'Rubric Criterion Category', NULL, 'A textual label for category by which Rubric Criterion may be grouped.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24441', '12', '24441', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001449', 'Professional Development Session Evaluation Method', NULL, 'The method used to evaluate a professional development session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22419', '11', '22419', NULL, NULL) +VALUES ('001470', 'Rubric Criterion Description', NULL, 'Text describing a criterion that must be met to demonstrate quality for a product, process, or performance task.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24442', '12', '24442', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001450', 'Professional Development Session Evaluation Score', NULL, 'The score or rating used to determine if a professional development session was successful.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22420', '11', '22420', NULL, NULL) +VALUES ('001471', 'Rubric Criterion Level Description', NULL, 'Text describing one or more benchmarks that must be met to achieve a degree of achievement on a product, process, or performance task.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24443', '12', '24443', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001451', 'Professional Development Activity Expiration Date', NULL, 'The year, month, and day on which any certificate awarded as part of a professional development activity expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22421', '11', '22421', NULL, NULL) +VALUES ('001472', 'Rubric Criterion Level Feedback', NULL, 'Pre-defined feedback text to be relayed to the person or organization being evaluated. This may include guidance and suggestions for improvement or development.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24444', '12', '24444', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001452', 'Professional Development Session Identifier', NULL, 'The unique, non-duplicated, identification number assigned by the registry data system for a session of a particular professional development activity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22422', '11', '22422', NULL, NULL) +VALUES ('001473', 'Rubric Criterion Level Position', NULL, 'A numeric value representing the level''s position in the list of levels defined for the Rubric Criterion.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24445', '12', '24445', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001454', 'Professional Development Session Location Name', NULL, 'The name of a location where a professional development session will be held.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22424', '11', '22424', NULL, NULL) +VALUES ('001474', 'Rubric Criterion Level Quality Label', NULL, 'A qualitative description of this degree of achievement used for column headers or row labels in tabular rubrics.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24446', '12', '24446', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001455', 'Professional Development Session Start Date', NULL, 'The year, month, and day a professional development session begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22426', '11', '22426', NULL, NULL) +VALUES ('001475', 'Rubric Criterion Level Score', NULL, 'The points awarded for achieving this level.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24447', '12', '24447', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001456', 'Professional Development Session Start Time', NULL, 'The time at which a professional development session begins.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22427', '11', '22427', NULL, NULL) +VALUES ('001476', 'Rubric Criterion Position', NULL, 'A numeric value representing this criterion''s position in the criteria list for this rubric.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24448', '12', '24448', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001457', 'Professional Development Session Status', NULL, 'The current status of a professional development session', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22428', '11', '22428', NULL, NULL) +VALUES ('001477', 'Rubric Criterion Title', NULL, 'The title of the rubric criterion.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24449', '12', '24449', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001458', 'Professional Development Instructional Delivery Mode', NULL, 'The primary setting or medium of professional development delivery.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22429', '11', '22429', NULL, NULL) +VALUES ('001478', 'Rubric Criterion Weight', NULL, 'A numeric weight assigned to this Rubric Criterion, used for scored rubrics.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24450', '12', '24450', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001460', 'Quality Initiative Maximum Score', NULL, 'The maximum score option for the QRIS or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22432', '11', '22432', NULL, NULL) +VALUES ('001479', 'Rubric Description', NULL, 'Text describing the intended use of the rubric.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24451', '12', '24451', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001461', 'Quality Initiative Minimum Score', NULL, 'The minimum score option for the QRIS or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22433', '11', '22433', NULL, NULL) +VALUES ('001480', 'School Courses for the Exchange of Data Grade Span', 'SCED Grade Span', 'The grade span for which the course is appropriate.', 'Alphanumeric - exactly 4 characters in length', '0', 'The span is represented by a four-character code with no decimals. Each grade level from 1 through 12 is represented by a two-digit code, ranging from 01 to 12; kindergarten is represented by the letters KG and prekindergarten by the letters PK.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24452', '12', '24452', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001462', 'Quality Initiative Score Level', NULL, 'The score, rating or level received by a program for its Quality Rating and Improvement System (QRIS) or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22434', '11', '22434', NULL, NULL) +VALUES ('001481', 'Referral Date', NULL, 'The date of referral.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24453', '12', '24453', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001463', 'Quality Initiative Participation Indicator', NULL, 'Site participates in a quality improvement initiative component other than QRIS.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22435', '11', '22435', NULL, NULL) +VALUES ('001482', 'Referral Outcome', NULL, 'The outcome of the referral.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24454', '12', '24454', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001464', 'Quality Initiative Participation End Date', NULL, 'The quality initiative end date.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22436', '11', '22436', NULL, NULL) +VALUES ('001483', 'Referral Reason', NULL, 'The reason for the referral.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24455', '12', '24455', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001465', 'Quality Initiative Participation Start Date', NULL, 'The quality initiative start date.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22437', '11', '22437', NULL, NULL) +VALUES ('001484', 'Referral Source', NULL, 'The person, program, or organization making the initial referral.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24456', '12', '24456', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001466', 'Responsible Organization Identifier', NULL, 'Identifies an organization responsible for specific educational services and/or instruction based on a type of responsibility specified in the Responsible Organization Type.', 'Alphanumeric - 40 characters maximum', '0', 'This may be used to specify responsibility when the organization is not a school (Responsible School) or school district (Responsible District).

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22438', '11', '22438', NULL, NULL) +VALUES ('001485', 'Referral Type Received', NULL, 'A type of service that a child or family has received a referral for.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24457', '12', '24457', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001467', 'Responsible Organization Type', NULL, 'The type of responsibility the organization has for the student.', NULL, '1', 'This may be used to specify responsibility when the organization is not a school (Responsible School) or school district (Responsible District).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22439', '11', '22439', NULL, NULL) +VALUES ('001486', 'Referred To', NULL, 'The program or organization to which the child/family was referred.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24458', '12', '24458', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001468', 'Financial Account Revenue Code', NULL, 'These codes are for recording revenue and other receivables by source. Major revenue categories have codes ending in 00 and are further subdivided.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".

Early Learning: If related to an "in kind" contribution use codes 1920 or 100.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22440', '11', '22440', 'Updated', 'Changed element name and technical name and added elements to DES contexts to support Early Learning needs.') +VALUES ('001487', 'Short Name of Organization', NULL, 'The name of the organization, which could be abbreviated form of the full legally accepted name.', 'Alphanumeric - 30 characters maximum', '0', 'An abbreviated name of an institution is commonly used, especially in reports and applications, e.g. a K12 school with the full legal name "Dr. Martin Luther King, Jr. Elementary School" may use "King Elementary".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24459', '12', '24459', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001488', 'Reason for Declined Services', NULL, 'The reason given for declining the recommended services.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24460', '12', '24460', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001489', 'Sponsoring Agency Name', NULL, 'The name of the sponsoring agency.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24461', '12', '24461', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001490', 'State Agency Identifier', NULL, 'A unique number or alphanumeric code assigned to a state agency.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24462', '12', '24462', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001491', 'State Agency Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes to refer to a state agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24463', '12', '24463', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001492', 'Professional Development Activity Target Audience', NULL, 'A categorization of the audience for which the professional development activity is intended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24464', '12', '24464', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001493', 'Technical Assistance Approved Indicator', NULL, 'Indicates whether or not the technical assistance was approved.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24465', '12', '24465', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001494', 'Technical Assistance Delivery Type', NULL, 'The method of delivery of technical assistance received/provided', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24466', '12', '24466', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001495', 'Technical Assistance Type', NULL, 'The type of technical assistance provided.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24467', '12', '24467', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001496', 'Thesis or Dissertation Title', NULL, 'The title of the thesis or dissertation.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24468', '12', '24468', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001497', 'Union Membership Name', NULL, 'The name of the labor organization of which the person is a member.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24469', '12', '24469', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001498', 'Weeks Employed Per Year', NULL, 'The number of weeks employed by year.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24470', '12', '24470', 'Updated', 'Add new DES location') +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001499', 'Work-based Learning Opportunity Type', NULL, 'The type of work-based learning opportunity a student participated in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24471', '12', '24471', 'Updated', 'Added new option to existing option set and add new DES location') +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001500', 'IDEA Part C to Part B Notification Date', NULL, 'The date that notification is provided to the State Education Agency (SEA) and local education agency (LEA) of residence for a child potentially eligible for Part B (619) preschool services.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24472', '12', '24472', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001501', 'IDEA IEP Status', NULL, 'The status of an individualized services plan for a specified reporting period or on a specified date.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24473', '12', '24473', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001503', 'Early Learning Outcome Time Point', NULL, 'The point in time for which the result is used for an outcome measure.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24475', '12', '24475', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001504', 'Child Outcomes Summary Progress A Indicator', 'COS Progress A Indicator', 'Indicates that the child demonstrates progress in positive social-emotional skills, including social relationships.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24476', '12', '24476', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001505', 'Child Outcomes Summary Progress B Indicator', 'COS Progress B Indicator', 'Indicates that the child demonstrates progress in acquisition and use of knowledge and skills, including early language/communication.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24477', '12', '24477', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001506', 'Child Outcomes Summary Progress C Indicator', 'COS Progress C Indicator', 'Indicates that the child demonstrates progress in use of appropriate behaviors to meet their needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24478', '12', '24478', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001507', 'Child Outcomes Summary Rating A', 'COS Rating A', 'Child''s level of functioning in positive social-emotional skills (including social relationships).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24479', '12', '24479', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001508', 'Child Outcomes Summary Rating B', 'COS Rating B', 'Child''s level of functioning in the acquisition and use of knowledge and skills (including early language/communication.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24480', '12', '24480', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001511', 'Competency Definition Valid End Date', 'Learning Standard Item Valid End Date, Competency Item Valid End Date', 'The year, month and day the competency definition was deprecated/replaced by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', 'When not specified, the entity is assumed to contain the most current version of the specified competency definition. All CEDS Exit and End Dates represent the last day of the date range specified, in this case the last day the competency definition was valid.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24483', '12', '24483', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001512', 'Competency Definition Valid Start Date', 'Learning Standard Item Valid Start Date, Competency Item Valid Start Date', 'The year, month and day the competency definition was adopted by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24484', '12', '24484', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001513', 'Other Last Name', NULL, 'A last name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other Last Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24485', '12', '24485', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001514', 'Other First Name', NULL, 'A first name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other First Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24486', '12', '24486', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001515', 'Other Middle Name', NULL, 'A middle name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other Middle Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24487', '12', '24487', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001516', 'School Courses for the Exchange of Data Course Level', 'SCED Course Level', ' The course''s level of rigor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24488', '12', '24488', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001517', 'School Courses for the Exchange of Data Course Code', 'SCED Course Code', 'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', NULL, '1', 'https://nces.ed.gov/forum/SCED.asp', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24490', '12', '24490', 'Updated', 'Add new DES location') +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001518', 'School Courses for the Exchange of Data Course Subject Area', 'SCED Course Subject Area', 'The intended major subject area of the education course.', NULL, '1', 'This is a compilation of Secondary Course Subject Area and Prior to Secondary Course Subject Area. This version merges SCED and pSCED.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24491', '12', '24491', 'Updated', 'Add new DES location') +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001519', 'Individualized Program Planned Service Frequency', NULL, 'The frequency that a service is planned to be provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24492', '12', '24492', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001520', 'Individualized Program Planned Service Duration', NULL, 'The length, in hours, that delivery of the service is planned.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24493', '12', '24493', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001521', 'Reason for Delay of Transition Conference', NULL, 'The reasons for the delay of a transition conference.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24494', '12', '24494', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001524', 'Competency Definition Previous Version Identifier', 'Learning Standard Item Previous Version Identifier, Competency Item Previous Version Identifier', 'The unique identifier of the previous version of the Competency Definition if the statement was modified.', 'Alphanumeric - 40 characters maximum', '0', 'This element supports version histories at the statement level. If corrections have been made to individual items/statements that are not part of a new Competency Framework, the elements ''Competency Definition Previous Version Identifier'' and ''Competency Definition Current Version Indicator'' provide a reference to historical versions of the current statement. In such uses the ''Competency Definition Code'' could be the same for multiple versions of a statement and ''Competency Definition URL'' could resolve to the most current version of the statement.


CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.


An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24498', '12', '24498', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001525', 'Competency Definition Current Version Indicator', 'Learning Standard Item Current Version Indicator, Competency Item Current Version Indicator', 'Indicates that this is the most current version of the Competency Definition.', NULL, '1', 'This element supports version histories at the statement level. If corrections have been made to individual items/statements that are not part of a new Competency Framework, the elements ''Competency Definition Previous Version Identifier'' and ''Competency Definition Current Version Indicator'' provide a reference to historical versions of the current statement. In such uses the ''Competency Definition Code'' could be the same for multiple versions of a statement and ''Competency Definition URL'' could resolve to the most current version of the statement.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24499', '12', '24499', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001526', 'Accreditation Agency Name', NULL, 'The full name of an agency that accredited a school.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24500', '12', '24500', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001527', 'Activity Time Involved', NULL, 'The amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24502', '12', '24502', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001528', 'Activity Time Measurement Type', NULL, 'The type of measurement for the amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24503', '12', '24503', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001529', 'APIP Interaction Sequence Number', NULL, 'The position of this APIP Interaction in a sequence of interactions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24504', '12', '24504', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001530', 'Activity Description', NULL, 'A description of the events and procedures that take place under the purview of an organized activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24505', '12', '24505', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001531', 'Assessment Administration Period Description', NULL, 'The period or window in which an assessment is supposed to be administered.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24506', '12', '24506', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001532', 'Assessment Form Adaptive Indicator', NULL, 'Indicates that the assessment form was generated using an algorithm rather than a fixed form.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24507', '12', '24507', NULL, NULL) END GO SET IDENTITY_INSERT dbo._CEDSElements OFF; @@ -3676,8863 +3869,9587 @@ IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[_CEDStoNDSM BEGIN DELETE FROM dbo._CEDStoNDSMapping INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001005', 'AssessmentNeedApipDisplay', 'EncouragementActivateByDefaultIndicator', '11') +VALUES ('001917', 'CompetencySet', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CompetencySet_Rubric', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CompetencySet_RubricCriterion', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CoreKnowledgeArea', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'Course', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CourseSection', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CourseSectionAssessmentReporting', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CourseSectionLevel', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CourseSectionLocation', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CourseSectionSchedule', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CredentialAward', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CredentialAwardCredit', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CredentialAwardEvidence', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CredentialCriteriaCourse', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CredentialDefAgent', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CredentialDefAgentCredential', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CredentialDefCategory', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CredentialDefCriteria', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CredentialDefIdentifier', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CredentialDefinition', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CredentialIssuer', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CredentialOffered', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CteCourse', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CteStudentAcademicRecord', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'EarlyChildhoodCredential', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'EarlyChildhoodProgramTypeOffered', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELChildDemographic', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELChildDevelopmentalAssessment', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELChildHealth', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELChildIndividualizedProgram', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELChildOutcomeSummary', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELChildProgramEligibility', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELChildService', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELChildServicesApplication', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELChildTransitionPlan', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELClassSection', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELClassSectionService', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELCourse', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELEnrollment', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELEnrollmentOtherFunding', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELFacilityLicensing', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'EligibilityEvaluation', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELOrganization', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELOrganizationAvailability', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELOrganizationFunds', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELOrganizationMonitoring', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELProgramLicensing', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELQualityInitiative', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELQualityRatingImprovement', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELServicePartner', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELStaff', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELStaffAssignment', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELStaffEducation', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ELStaffEmployment', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'Facility', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'FacilityAudit', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'FacilityCompliance', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'FacilityDesign', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'FacilityDesignConstruction', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'FacilityEnergy', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12School', 'K12CharterSchoolAuthorizerAgencyId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12School', 'K12SchoolId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12School', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12School', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolCorrectiveAction', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolCorrectiveAction', 'K12SchoolCorrectiveActionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolCorrectiveAction', 'K12SchoolId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolCorrectiveAction', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolGradeLevelsApproved', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolGradeLevelsApproved', 'K12SchoolGradeLevelsApprovedId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolGradeLevelsApproved', 'K12SchoolId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolGradeLevelsApproved', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolGradeOffered', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolGradeOffered', 'K12SchoolGradeOfferedId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolGradeOffered', 'K12SchoolId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolGradeOffered', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolImprovement', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolImprovement', 'K12SchoolId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolImprovement', 'K12SchoolImprovementId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolImprovement', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolIndicatorStatus', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolIndicatorStatus', 'IndicatorStatus', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolIndicatorStatus', 'IndicatorStatusSubgroup', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolIndicatorStatus', 'K12SchoolId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolIndicatorStatus', 'K12SchoolIndicatorStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolIndicatorStatus', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStateDefinedStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusCustomTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusSubgroupTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolStatus', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolStatus', 'K12SchoolId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolStatus', 'K12SchoolStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolStatus', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolStatus', 'RefComprehensiveAndTargetedSupportId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolStatus', 'RefComprehensiveSupportId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolStatus', 'RefNSLPStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolStatus', 'RefSchoolDangerousStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolStatus', 'RefSchoolImprovementStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SchoolStatus', 'RefTargetedSupportId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12Sea', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12Sea', 'K12SeaId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12Sea', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12Sea', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SeaAlternateFundUse', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SeaAlternateFundUse', 'K12SeaAlternateFundUseId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SeaAlternateFundUse', 'K12SeaFederalFundsId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SeaAlternateFundUse', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SeaAlternateFundUse', 'RefAlternateFundUsesId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SeaFederalFunds', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SeaFederalFunds', 'K12SeaFederalFundsId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SeaFederalFunds', 'K12SeaId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12SeaFederalFunds', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StaffAssignment', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StaffAssignment', 'K12StaffAssignmentId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StaffAssignment', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StaffAssignment', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StaffAssignment', 'RefEmergencyOrProvisionalCredentialStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StaffEmployment', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StaffEmployment', 'K12StaffEmploymentId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StaffEmployment', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StaffEmployment', 'StaffEmploymentId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentAcademicHonor', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentAcademicHonor', 'K12StudentAcademicHonorId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentAcademicHonor', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentAcademicHonor', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentAcademicRecord', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentAcademicRecord', 'K12StudentAcademicRecordId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentAcademicRecord', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentAcademicRecord', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentActivity', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentActivity', 'K12StudentActivityId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentActivity', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentActivity', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentCohort', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentCohort', 'K12StudentCohortId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentCohort', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentCohort', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentCourseSection', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentCourseSection', 'K12StudentCourseSectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentCourseSection', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentCourseSection', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentCourseSectionMark', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentCourseSectionMark', 'K12StudentCourseSectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentCourseSectionMark', 'K12StudentCourseSectionMarkId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentCourseSectionMark', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDiscipline', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDiscipline', 'IncidentId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDiscipline', 'K12StudentDisciplineId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDiscipline', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDiscipline', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDropout', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDropout', 'K12StudentDropoutId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDropout', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDropout', 'RecordEndDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDropout', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDropout', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDropoutReason', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDropoutReason', 'K12StudentDropoutReasonId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDropoutReason', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDropoutReason', 'RecordEndDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDropoutReason', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentDropoutReason', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentEmployment', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentEmployment', 'K12StudentEmploymentId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentEmployment', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentEmployment', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentEnrollment', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentEnrollment', 'K12StudentEnrollmentId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentEnrollment', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentEnrollment', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentGraduationPlan', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentGraduationPlan', 'K12CourseId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentGraduationPlan', 'K12StudentGraduationPlanId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentGraduationPlan', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentGraduationPlan', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentHomeLanguageSurvey', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentHomeLanguageSurvey', 'K12StudentHomeLanguageSurveyId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentHomeLanguageSurvey', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentHomeLanguageSurvey', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentLiteracyAssessment', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentLiteracyAssessment', 'K12StudentLiteracyAssessmentId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentLiteracyAssessment', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentLiteracyAssessment', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentSession', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentSession', 'K12StudentSessionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentSession', 'OrganizationCalendarSessionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentSession', 'OrganizationPersonRoleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12StudentSession', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12TitleIIILanguageInstruction', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12TitleIIILanguageInstruction', 'K12TitleIIILanguageInstructionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12TitleIIILanguageInstruction', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'K12TitleIIILanguageInstruction', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerAction', 'AssessmentItemResponseId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerAction', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerAction', 'LearnerActionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerAction', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity', 'AssessmentRegistrationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity', 'AssignedByPersonId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity', 'CourseSectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity', 'LeaOrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity', 'LearnerActivityId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity', 'OrganizationCalendarSessionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity', 'PersonId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity', 'SchoolOrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity_LearningResource', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity_LearningResource', 'LearnerActivity_LearningResourceId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity_LearningResource', 'LearnerActivityId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity_LearningResource', 'LearningResourceId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearnerActivity_LearningResource', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResource', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResource', 'LearningResourceId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResource', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResource', 'RefAccessibleFormatTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceAdaptation', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceAdaptation', 'LearningResourceAdaptationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceAdaptation', 'LearningResourceId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceAdaptation', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceEducationLevel', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceEducationLevel', 'LearningResourceEducationLevelId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceEducationLevel', 'LearningResourceId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceEducationLevel', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceIdentifier', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceIdentifier', 'LearningResourceId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceIdentifier', 'LearningResourceIdentifierId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceIdentifier', 'RecordEndDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceIdentifier', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceIdentifier', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceIssued', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceIssued', 'IssuedToPersonId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceIssued', 'LearningResourceId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceIssued', 'LearningResourceIssuedId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceIssued', 'RecordEndDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceIssued', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceIssued', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceMediaFeature', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceMediaFeature', 'LearningResourceId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceMediaFeature', 'LearningResourceMediaFeatureId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceMediaFeature', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceOrder', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceOrder', 'LearningResourceId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceOrder', 'LearningResourceOrderId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceOrder', 'RecordEndDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceOrder', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceOrder', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourcePeerRating', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourcePeerRating', 'LearningResourceId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourcePeerRating', 'LearningResourcePeerRatingId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourcePeerRating', 'PeerRatingSystemId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourcePeerRating', 'PersonId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourcePeerRating', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourcePhysicalMedia', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourcePhysicalMedia', 'LearningResourceId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourcePhysicalMedia', 'LearningResourcePhysicalMediaId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourcePhysicalMedia', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceStatus', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceStatus', 'LearningResourceStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceStatus', 'RecordEndDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceStatus', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LearningResourceStatus', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'Location', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'Location', 'LocationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'Location', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LocationAddress', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LocationAddress', 'LocationAddressId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LocationAddress', 'LocationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LocationAddress', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LocationAddress', 'RefCountryId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LocationAddress', 'RefCountyId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'LocationAddress', 'RefStateId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'Organization', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'Organization', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'Organization', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationAccreditation', 'AccreditationStatus', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationAccreditation', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationAccreditation', 'OrganizationAccreditationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationAccreditation', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationAccreditation', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendar', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendar', 'OrganizationCalendarId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendar', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendar', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarCrisis', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarCrisis', 'OrganizationCalendarCrisisId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarCrisis', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarCrisis', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarDay', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarDay', 'DayName', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarDay', 'OrganizationCalendarDayId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarDay', 'OrganizationCalendarId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarDay', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarEvent', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarEvent', 'OrganizationCalendarEventId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarEvent', 'OrganizationCalendarId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarEvent', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarSession', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarSession', 'OrganizationCalendarId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarSession', 'OrganizationCalendarSessionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarSession', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarSessionRelationship', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarSessionRelationship', 'OrganizationCalendarSessionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarSessionRelationship', 'OrganizationCalendarSessionRelationshipId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarSessionRelationship', 'RecordEndDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarSessionRelationship', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarSessionRelationship', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationCalendarSessionRelationship', 'RelatedOrganizationCalendarSessionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationDetail', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationDetail', 'OrganizationDetailId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationDetail', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationDetail', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationDetail', 'RefOrganizationTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationEmail', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationEmail', 'OrganizationEmailId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationEmail', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationEmail', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationEmployeeBenefit', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationEmployeeBenefit', 'OrganizationEmployeeBenefitId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationEmployeeBenefit', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationEmployeeBenefit', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationEnrollmentCapacity', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationEnrollmentCapacity', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFederalAccountability', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFederalAccountability', 'OrganizationFederalAccountabilityId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFederalAccountability', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFederalAccountability', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFinancial', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFinancial', 'FinancialAccountId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFinancial', 'FinancialAccountProgramId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFinancial', 'OrganizationCalendarSessionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFinancial', 'OrganizationFinancialId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFinancial', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'FinancialAccountLocalId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'OrganizationFinancialFinancialAccountLocalId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'OrganizationFinancialId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationIdentifier', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationIdentifier', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationIdentifier', 'OrganizationIdentifierId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationIdentifier', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationImage', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationImage', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationImage', 'OrganizationImageId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationImage', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationIndicator', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationIndicator', 'IndicatorValue', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationIndicator', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationIndicator', 'OrganizationIndicatorId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationIndicator', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationJob', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationJob', 'JobId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationJob', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationJob', 'OrganizationJobId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationJob', 'RecordEndDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationJob', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationJob', 'RecordStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationJurisdiction', 'DataCollectionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationJurisdiction', 'OrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationJurisdiction', 'OrganizationJurisdictionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationJurisdiction', 'RecordEndDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('', 'OrganizationJurisdiction', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001005', 'AssessmentNeedApipDisplay', 'MaskingActivateByDefaultIndicator', '11') +VALUES ('', 'OrganizationJurisdiction', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001005', 'AssessmentPersonalNeedLanguageLearner', 'ActivateByDefault', '11') +VALUES ('', 'OrganizationLocation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001005', 'AssessmentPersonalNeedsProfile', 'ActivateByDefault', '11') +VALUES ('', 'OrganizationLocation', 'LocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001006', 'Assessment', 'Provider', '11') +VALUES ('', 'OrganizationLocation', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001007', 'AssessmentResult', 'PreliminaryIndicator', '11') +VALUES ('', 'OrganizationLocation', 'OrganizationLocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001008', 'AssessmentResult', 'DiagnosticStatementSource', '11') +VALUES ('', 'OrganizationLocation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001009', 'AssessmentResult', 'NumberOfResponses', '11') +VALUES ('', 'OrganizationOperationalStatus', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001010', 'AssessmentSubtest_AssessmentItem', 'ItemWeightCorrect', '11') +VALUES ('', 'OrganizationOperationalStatus', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001012', 'AssessmentSubtest_AssessmentItem', 'ItemWeightIncorrect', '11') +VALUES ('', 'OrganizationOperationalStatus', 'OrganizationOperationalStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001013', 'AssessmentSubtest_AssessmentItem', 'ItemWeightNotAttempted', '11') +VALUES ('', 'OrganizationOperationalStatus', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001014', 'AssessmentSubtest', 'RefAssessmentSubtestIdentifierTypeId', '11') +VALUES ('', 'OrganizationPersonRole', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001015', 'AssessmentRegistration', 'DaysOfInstructionPriorToAssessment', '11') +VALUES ('', 'OrganizationPersonRole', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001016', 'AssessmentRegistration', 'RetestIndicator', '11') +VALUES ('', 'OrganizationPersonRole', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001017', 'AssessmentRegistration', 'CreationDate', '11') +VALUES ('', 'OrganizationPersonRole', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001018', 'AssessmentSession', 'RefAssessmentSessionTypeId', '11') +VALUES ('', 'OrganizationPersonRole', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001019', 'AssessmentSession', 'ScheduledStartDateTime', '11') +VALUES ('', 'OrganizationPersonRole', 'RoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001020', 'AssessmentSession', 'ScheduledEndDateTime', '11') +VALUES ('', 'OrganizationPersonRoleApplication', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001021', 'AssessmentParticipantSession', 'ActualStartDateTime', '11') +VALUES ('', 'OrganizationPersonRoleApplication', 'OrganizationPersonRoleApplicationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001021', 'AssessmentSession', 'ActualStartDateTime', '11') +VALUES ('', 'OrganizationPersonRoleApplication', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001022', 'AssessmentParticipantSession', 'ActualEndDateTime', '11') +VALUES ('', 'OrganizationPersonRoleApplication', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001022', 'AssessmentSession', 'ActualEndDateTime', '11') +VALUES ('', 'OrganizationPersonRoleFTE', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001023', 'AssessmentPersonalNeedLanguageLearner', 'RefAssessmentNeedsProfileContentLanguageLearnerTypeId', '11') +VALUES ('', 'OrganizationPersonRoleFTE', 'OrganizationPersonRoleFTEId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001024', 'AssessmentPersonalNeedsProfileContent', 'RefAssessmentNeedHazardTypeId', '11') +VALUES ('', 'OrganizationPersonRoleFTE', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001025', 'AssessmentPersonalNeedsProfileContent', 'RefAssessmentNeedSupportToolId', '11') +VALUES ('', 'OrganizationPersonRoleFTE', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001026', 'AssessmentNeedBraille', 'RefAssessmentNeedUsageTypeId', '11') +VALUES ('', 'OrganizationPersonRoleRelationship', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001026', 'AssessmentPersonalNeedScreenReader', 'RefAssessmentNeedUsageTypeId', '11') +VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001027', 'AssessmentPersonalNeedScreenReader', 'RefAssessmentNeedLinkIndicationTypeId', '11') +VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleId_Parent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001028', 'AssessmentPersonalNeedScreenReader', 'SpeechRate', '11') +VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001029', 'AssessmentPersonalNeedScreenReader', 'Volume', '11') +VALUES ('', 'OrganizationPersonRoleRelationship', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001030', 'AssessmentNeedScreenEnhancement', 'InvertColorChoice', '11') +VALUES ('', 'OrganizationPersonRoleRelationship', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001031', 'AssessmentNeedScreenEnhancement', 'Magnification', '11') +VALUES ('', 'OrganizationPersonRoleRelationship', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001032', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleGradeTypeId', '11') +VALUES ('', 'OrganizationPolicy', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001033', 'AssessmentNeedBraille', 'RefAssessmentNeedNumberOfBrailleDotsId', '11') +VALUES ('', 'OrganizationPolicy', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001034', 'AssessmentNeedBraille', 'NumberOfBrailleCells', '11') +VALUES ('', 'OrganizationPolicy', 'OrganizationPolicyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001035', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleMarkTypeId', '11') +VALUES ('', 'OrganizationPolicy', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001036', 'AssessmentNeedBraille', 'BrailleDotPressure', '11') +VALUES ('', 'OrganizationPolicy', 'Value', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001037', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleStatusCellTypeId', '11') +VALUES ('', 'OrganizationPopulationServed', 'AgeUnit', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001038', 'AssessmentNeedApipContent', 'ItemTranslationDisplayLanguageTypeId', '11') +VALUES ('', 'OrganizationPopulationServed', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001039', 'AssessmentNeedApipContent', 'KeywordTranslationLanguageTypeId', '11') +VALUES ('', 'OrganizationPopulationServed', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001039', 'AssessmentPersonalNeedsProfileContent', 'RefKeywordTranslationsLanguageId', '11') +VALUES ('', 'OrganizationPopulationServed', 'OrganizationPopulationServedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001040', 'AssessmentNeedApipContent', 'RefAssessmentNeedSigningTypeId', '11') +VALUES ('', 'OrganizationPopulationServed', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001041', 'AssessmentNeedApipContent', 'RefAssessmentNeedAlternativeRepresentationTypeId', '11') +VALUES ('', 'OrganizationProgramType', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001042', 'AssessmentNeedApipContent', 'RefAssessmentNeedSpokenSourcePreferenceTypeId', '11') +VALUES ('', 'OrganizationProgramType', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001043', 'AssessmentNeedApipContent', 'ReadAtStartPreferenceIndicator', '11') +VALUES ('', 'OrganizationProgramType', 'OrganizationProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001044', 'AssessmentNeedApipContent', 'RefAssessmentNeedUserSpokenPreferenceTypeId', '11') +VALUES ('', 'OrganizationProgramType', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001045', 'AssessmentNeedApipContent', 'AssessmentNeedDirectionsOnlyIndicator', '11') +VALUES ('', 'OrganizationProjectBasedLearning', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001046', 'AssessmentNeedApipDisplay', 'RefAssessmentNeedMaskingTypeId', '11') +VALUES ('', 'OrganizationProjectBasedLearning', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001047', 'AssessmentNeedApipDisplay', 'EncouragementTextMessagingString', '11') +VALUES ('', 'OrganizationRelationship', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001048', 'AssessmentNeedApipDisplay', 'EncouragementSoundFileUrl', '11') +VALUES ('', 'OrganizationRelationship', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001049', 'AssessmentNeedApipControl', 'AssessmentNeedTimeMultiplier', '11') +VALUES ('', 'OrganizationRelationship', 'OrganizationRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001050', 'AssessmentNeedApipControl', 'LineReaderHighlightColor', '11') +VALUES ('', 'OrganizationRelationship', 'Parent_OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001051', 'AssessmentNeedApipControl', 'OverlayColor', '11') +VALUES ('', 'OrganizationRelationship', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001052', 'AssessmentNeedScreenEnhancement', 'ForegroundColor', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteria', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001053', 'AssessmentNeedApipControl', 'BackgroundColor', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteria', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001054', 'AssessmentNeedApipControl', 'RefAssessmentNeedIncreasedWhitespacingTypeId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteria', 'OrganizationSalaryScheduleCriteriaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001055', 'AssessmentRegistration', 'TestingIndicator', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteria', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001056', 'AssessmentRegistration', 'ScorePublishDate', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteria', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001058', 'PersonCredential', 'CredentialName', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteria', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001059', 'PersonCredential', 'ExpirationDate', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValue', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001059', 'StaffCredential', 'CardiopulmonaryResuscitationCertification', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValue', 'OrganizationSalaryScheduleCriteriaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001060', 'StaffCredential', 'FirstAidCertification', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValue', 'OrganizationSalaryScheduleCriteriaValueId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001061', 'StaffProfessionalDevelopmentActivity', 'ActivityStartDate', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValue', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001062', 'StaffProfessionalDevelopmentActivity', 'ActivityCompletionDate', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValue', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001063', 'AssessmentItemResponse', 'Value', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValue', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'AeStudentEmployment', 'EmploymentNaicsCode', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValueSalary', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'CredentialDefinition', 'EmploymentNAICSCode', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValueSalary', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'K12StudentEmployment', 'EmploymentNaicsCode', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValueSalary', 'OrganizationSalaryScheduleCriteriaValueId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'PsStudentEmployment', 'EmploymentNaicsCode', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValueSalary', 'OrganizationSalaryScheduleCriteriaValueSalaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'QuarterlyEmploymentRecord', 'EmploymentNAICSCode', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValueSalary', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001066', 'OrganizationLocation', 'RefOrganizationLocationTypeId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValueSalary', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001067', 'Assessment', 'Identifier', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValueSalary', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001068', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('', 'OrganizationSalaryScheduleSalary', 'RefONETSOCOccupationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001069', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('', 'OrganizationSalaryScheduleSalary', 'RefStandardOccupationalClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001070', 'PersonIdentifier', 'Identifier', '11') +VALUES ('', 'OrganizationService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001071', 'PersonIdentifier', 'Identifier', '11') +VALUES ('', 'OrganizationService', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001072', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') +VALUES ('', 'OrganizationService', 'OrganizationServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001072', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('', 'OrganizationService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001073', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') +VALUES ('', 'OrganizationTechnicalAssistance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001073', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('', 'OrganizationTechnicalAssistance', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001074', 'PersonIdentifier', 'RefPersonIdentificationSystemId', '11') +VALUES ('', 'OrganizationTechnicalAssistance', 'OrganizationTechnicalAssistanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001075', 'PersonIdentifier', 'RefPersonIdentificationSystemId', '11') +VALUES ('', 'OrganizationTechnicalAssistance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001076', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('', 'OrganizationTelephone', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001077', 'ProgramParticipationAE', 'RefAeInstructionalProgramTypeId', '11') +VALUES ('', 'OrganizationTelephone', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001079', 'ProgramParticipationAE', 'RefGoalsForAttendingAdultEducationId', '11') +VALUES ('', 'OrganizationTelephone', 'OrganizationTelephoneId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001080', 'PersonIdentifier', 'Identifier', '11') +VALUES ('', 'OrganizationTelephone', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001081', 'ProgramParticipationAE', 'PostsecondaryTransitionDate', '11') +VALUES ('', 'OrganizationWebsite', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001083', 'AeStaff', 'RefAeStaffEmploymentStatusId', '11') +VALUES ('', 'OrganizationWebsite', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001085', 'StaffCredential', 'RefAeCertificationTypeId', '11') +VALUES ('', 'OrganizationWebsite', 'OrganizationWebsiteId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001086', 'ELStaffEducation', 'TotalApprovedECCreditsEarned', '11') +VALUES ('', 'OrganizationWebsite', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001087', 'AssessmentPersonalNeedScreenReader', 'Pitch', '11') +VALUES ('', 'PDActivityEducationLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001088', 'AssessmentItem', 'RefNaepMathComplexityLevelId', '11') +VALUES ('', 'PDActivityEducationLevel', 'PDActivityEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001089', 'AssessmentAsset', 'RefAssessmentLanguageId', '11') +VALUES ('', 'PDActivityEducationLevel', 'ProfessionalDevelopmentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001089', 'AssessmentForm', 'RefAssessmentLanguageId', '11') +VALUES ('', 'PDActivityEducationLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001091', 'AssessmentSubtest', 'PublishedDate', '11') +VALUES ('', 'PeerRatingSystem', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001092', 'AssessmentResult', 'DescriptiveFeedbackSource', '11') +VALUES ('', 'PeerRatingSystem', 'PeerRatingSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001093', 'AssessmentParticipantSession', 'SpecialEventDescription', '11') +VALUES ('', 'PeerRatingSystem', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001093', 'AssessmentSession', 'SpecialEventDescription', '11') +VALUES ('', 'Person', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001094', 'CompetencyDefinition', 'CompetencyDefParentUrl', '11') +VALUES ('', 'Person', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001102', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'Person', 'PersonMasterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001103', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'Person', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001103', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'AssessmentPersonalNeedsProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001104', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001104', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'Person_AssessmentPersonalNeedsProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001105', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001105', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001106', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonAddress', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001106', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonAddress', 'PersonAddressId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001107', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonAddress', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001107', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonAddress', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001108', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonAddress', 'RefCountyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001108', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonAddressNcesSide', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001109', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonAddressNcesSide', 'PersonAddressId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001109', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonAddressNcesSide', 'PersonAddressNcesSideId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001110', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonAddressNcesSide', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001110', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonAllergy', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001111', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonAllergy', 'PersonAllergyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001111', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonAllergy', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001112', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonAllergy', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001112', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonBirthplace', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001114', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonBirthplace', 'PersonBirthplaceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001114', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonBirthplace', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001115', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonBirthplace', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001115', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonCareerEducationPlan', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001116', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonCareerEducationPlan', 'PersonCareerEducationPlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001116', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonCareerEducationPlan', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001117', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonCareerEducationPlan', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001117', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonCredential', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001118', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonCredential', 'PersonCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001118', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonCredential', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001119', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonCredential', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001119', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonDegreeOrCertificate', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001120', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonDegreeOrCertificate', 'PersonDegreeOrCertificateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001120', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonDegreeOrCertificate', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001121', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonDegreeOrCertificate', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001121', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonDemographicRace', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001122', 'AssessmentItem', 'RefNaepAspectsOfReadingId', '11') +VALUES ('', 'PersonDemographicRace', 'PersonDemographicRaceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001127', 'AssessmentPersonalNeedsProfile', 'AssessmentNeedType', '11') +VALUES ('', 'PersonDemographicRace', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001130', 'AssessmentParticipantSession', 'SecurityIssue', '11') +VALUES ('', 'PersonDemographicRace', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001131', 'AssessmentItemApip', 'ResponseProcessingTemplateUrl', '11') +VALUES ('', 'PersonDetail', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001132', 'AssessmentItemApip', 'ResponseProcessingXml', '11') +VALUES ('', 'PersonDetail', 'PersonDetailId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001133', 'AssessmentItemApip', 'ResponseDeclarationXml', '11') +VALUES ('', 'PersonDetail', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001134', 'AssessmentItemApip', 'OutcomeDeclarationXml', '11') +VALUES ('', 'PersonDetail', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001135', 'AssessmentItemApip', 'TemplateDeclarationXml', '11') +VALUES ('', 'PersonDigitalAccess', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001136', 'AssessmentItemApip', 'TemplateProcessingXml', '11') +VALUES ('', 'PersonDigitalAccess', 'PersonAddressId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001137', 'AssessmentItemApip', 'ModalFeedbackXml', '11') +VALUES ('', 'PersonDigitalAccess', 'PersonDigitalAccessId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001138', 'AssessmentItemApip', 'ItemBodyXml', '11') +VALUES ('', 'PersonDigitalAccess', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001139', 'AssessmentItem', 'AdaptiveIndicator', '11') +VALUES ('', 'PersonDigitalAccess', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001139', 'AssessmentItemApip', 'AdaptiveIndicator', '11') +VALUES ('', 'PersonDigitalAccessSpeed', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001142', 'K12StudentCourseSectionMark', 'FinalIndicator', '11') +VALUES ('', 'PersonDigitalAccessSpeed', 'PersonDigitalAccessId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001143', 'LearningResource', 'Description', '11') +VALUES ('', 'PersonDigitalAccessSpeed', 'PersonDigitalAccessSpeedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001144', 'LearningResource', 'CopyrightHolderName', '11') +VALUES ('', 'PersonDigitalAccessSpeed', 'PersonLearningDeviceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001145', 'LearningResource', 'CopyrightYear', '11') +VALUES ('', 'PersonDigitalAccessSpeed', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001146', 'LearningResource', 'ConceptKeyword', '11') +VALUES ('', 'PersonDisability', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001147', 'PeerRatingSystem', 'Name', '11') +VALUES ('', 'PersonDisability', 'PersonDisabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001148', 'LearningResourcePeerRating', 'Value', '11') +VALUES ('', 'PersonDisability', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001149', 'PeerRatingSystem', 'MaximumValue', '11') +VALUES ('', 'PersonDisability', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001150', 'PeerRatingSystem', 'MinimumValue', '11') +VALUES ('', 'PersonEmailAddress', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001151', 'PeerRatingSystem', 'OptimumValue', '11') +VALUES ('', 'PersonEmailAddress', 'PersonEmailAddressId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001152', 'AssessmentParticipantSession', 'PlatformUserAgent', '11') +VALUES ('', 'PersonEmailAddress', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001153', 'CredentialDefCriteria', 'CriteriaUrl', '11') +VALUES ('', 'PersonEmailAddress', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001154', 'CompetencyDefinition', 'TextComplexityMinimumValue', '11') +VALUES ('', 'PersonFamily', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001155', 'CompetencyDefinition', 'TextComplexityMaximumValue', '11') +VALUES ('', 'PersonFamily', 'PersonFamilyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001157', 'AssessmentAccommodation', 'OtherDescription', '11') +VALUES ('', 'PersonFamily', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001160', 'CourseSection', 'VirtualIndicator', '11') +VALUES ('', 'PersonFamily', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001160', 'PsInstitution', 'VirtualIndicator', '11') +VALUES ('', 'PersonHealth', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001161', 'CourseSection', 'RefCourseSectionDeliveryModeId', '11') +VALUES ('', 'PersonHealth', 'PersonHealthId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001162', 'AssessmentRegistration', 'TestAttemptIdentifier', '11') +VALUES ('', 'PersonHealth', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001163', 'CredentialAward', 'CredentialAwardStartDate', '11') +VALUES ('', 'PersonHealth', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001164', 'CredentialAward', 'CredentialAwardEndDate', '11') +VALUES ('', 'PersonHealthBirth', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001165', 'Goal', 'StartDate', '11') +VALUES ('', 'PersonHealthBirth', 'PersonHealthBirthId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001166', 'Goal', 'EndDate', '11') +VALUES ('', 'PersonHealthBirth', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001167', 'LearningResourcePeerRating', 'Date', '11') +VALUES ('', 'PersonHealthBirth', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001168', 'Authentication', 'IdentityProviderName', '11') +VALUES ('', 'PersonHomelessness', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001169', 'Authentication', 'IdentityProviderUri', '11') +VALUES ('', 'PersonHomelessness', 'PersonHomelessnessId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001170', 'Authentication', 'LoginIdentifier', '11') +VALUES ('', 'PersonHomelessness', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001171', 'Authentication', 'StartDate', '11') +VALUES ('', 'PersonHomelessness', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001172', 'Authentication', 'EndDate', '11') +VALUES ('', 'PersonIdentifier', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001173', 'Application', 'Name', '11') +VALUES ('', 'PersonIdentifier', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001174', 'Application', 'Uri', '11') +VALUES ('', 'PersonIdentifier', 'PersonIdentifierId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001175', 'Authorization', 'ApplicationRoleName', '11') +VALUES ('', 'PersonIdentifier', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001176', 'Authorization', 'StartDate', '11') +VALUES ('', 'PersonImmunization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001177', 'Authorization', 'EndDate', '11') +VALUES ('', 'PersonImmunization', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001181', 'AssessmentForm', 'AssessmentItemBankIdentifier', '11') +VALUES ('', 'PersonImmunization', 'PersonImmunizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001181', 'AssessmentFormSection', 'AssessmentItemBankIdentifier', '11') +VALUES ('', 'PersonImmunization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001181', 'AssessmentItem', 'AssessmentItemBankIdentifier', '11') +VALUES ('', 'PersonLanguage', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001182', 'AssessmentForm', 'AssessmentItemBankName', '11') +VALUES ('', 'PersonLanguage', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001182', 'AssessmentFormSection', 'AssessmentItemBankName', '11') +VALUES ('', 'PersonLanguage', 'PersonLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001182', 'AssessmentItem', 'AssessmentItemBankName', '11') +VALUES ('', 'PersonLanguage', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001183', 'AssessmentForm', 'Version', '11') +VALUES ('', 'PersonLearningDevice', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001184', 'AssessmentForm', 'PublishedDate', '11') +VALUES ('', 'PersonLearningDevice', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001184', 'AssessmentFormSection', 'PublishedDate', '11') +VALUES ('', 'PersonLearningDevice', 'PersonLearningDeviceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001184', 'LearningResource', 'PublishedDate', '11') +VALUES ('', 'PersonLearningDevice', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001185', 'AssessmentForm', 'AccommodationList', '11') +VALUES ('', 'PersonMaster', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001186', 'AssessmentForm', 'IntendedAdministrationStartDate', '11') +VALUES ('', 'PersonMaster', 'PersonMasterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001187', 'AssessmentForm', 'IntendedAdministrationEndDate', '11') +VALUES ('', 'PersonMaster', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001188', 'AssessmentForm', 'PlatformsSupported', '11') +VALUES ('', 'PersonMilitary', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001189', 'AssessmentFormSection', 'Version', '11') +VALUES ('', 'PersonMilitary', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001190', 'AssessmentFormSection', 'RefAssessmentFormSectionIdentificationSystemId', '11') +VALUES ('', 'PersonMilitary', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001191', 'AssessmentFormSection', 'Identifier', '11') +VALUES ('', 'PersonMilitary', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001192', 'AssessmentFormSection', 'SectionTimeLimit', '11') +VALUES ('', 'PersonMilitaryCampaigns', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001193', 'AssessmentFormSection', 'SectionSealed', '11') +VALUES ('', 'PersonMilitaryCampaigns', 'PersonMilitaryCampaignsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001194', 'AssessmentFormSection', 'SectionReentry', '11') +VALUES ('', 'PersonMilitaryCampaigns', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001195', 'AssessmentAsset', 'Version', '11') +VALUES ('', 'PersonMilitaryCampaigns', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001196', 'AssessmentAsset', 'RefAssessmentAssetTypeId', '11') +VALUES ('', 'PersonMilitaryCampaigns', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001197', 'AssessmentAsset', 'PublishedDate', '11') +VALUES ('', 'PersonMilitaryCampaigns', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001198', 'AssessmentAsset', 'Identifier', '11') +VALUES ('', 'PersonMilitaryDeployment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001199', 'AssessmentAsset', 'RefAssessmentAssestIdentifierType', '11') +VALUES ('', 'PersonMilitaryDeployment', 'PersonMilitaryDeploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001200', 'AssessmentAsset', 'Name', '11') +VALUES ('', 'PersonMilitaryDeployment', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001201', 'AssessmentAsset', 'Owner', '11') +VALUES ('', 'PersonMilitaryDeployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001202', 'AssessmentAsset', 'ContentXML', '11') +VALUES ('', 'PersonMilitaryDeployment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001203', 'AssessmentAsset', 'ContentMimeType', '11') +VALUES ('', 'PersonMilitaryDeployment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001204', 'AssessmentAsset', 'ContentUrl', '11') +VALUES ('', 'PersonMilitaryDuties', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001206', 'Facility', 'RefBuildingUseTypeId', '11') +VALUES ('', 'PersonMilitaryDuties', 'PersonMilitaryDutiesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001207', 'BuildingSpace', 'SpaceDescription', '11') +VALUES ('', 'PersonMilitaryDuties', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001208', 'BuildingSpace', 'RefSpaceUseTypeId', '11') +VALUES ('', 'PersonMilitaryDuties', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001210', 'K12StudentEnrollment', 'RefExitGradeLevelId', '11') +VALUES ('', 'PersonMilitaryDuties', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001211', 'Incident', 'RefWeaponTypeId', '11') +VALUES ('', 'PersonMilitaryDuties', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001212', 'AssessmentSessionStaffRole', 'RefAssessmentSessionStaffRoleTypeId', '11') +VALUES ('', 'PersonMilitaryExpertise', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001214', 'AssessmentSubtest', 'Tier', '11') +VALUES ('', 'PersonMilitaryExpertise', 'PersonMilitaryExpertiseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001215', 'AssessmentSubtest', 'ContainerOnly', '11') +VALUES ('', 'PersonMilitaryExpertise', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001216', 'LearningResource', 'Version', '11') +VALUES ('', 'PersonMilitaryExpertise', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001217', 'AssessmentItemPossibleResponse', 'CorrectIndicator', '11') +VALUES ('', 'PersonMilitaryExpertise', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001218', 'AssessmentPerformanceLevel', 'DescriptiveFeedback', '11') +VALUES ('', 'PersonMilitaryExpertise', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001219', 'AssessmentResult', 'DiagnosticStatement', '11') +VALUES ('', 'PersonMilitaryHonors', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001222', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('', 'PersonMilitaryHonors', 'PersonMilitaryHonorsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001222', 'ApipInteraction', 'Xml', '11') +VALUES ('', 'PersonMilitaryHonors', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001223', 'FinancialAidApplication', 'RefFinancialAidApplicationTypeId', '11') +VALUES ('', 'PersonMilitaryHonors', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001224', 'PsStudentFinancialAid', 'RefNeedDeterminationMethodId', '11') +VALUES ('', 'PersonMilitaryHonors', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001225', 'ELClassSectionService', 'OldestAgeServed', '11') +VALUES ('', 'PersonMilitaryHonors', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001225', 'OrganizationPopulationServed', 'OldestAgeServed', '11') +VALUES ('', 'PersonMilitaryOccupationalSpecialties', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001226', 'ELClassSection', 'LanguageTranslationPolicy', '11') +VALUES ('', 'PersonMilitaryOccupationalSpecialties', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001227', 'PersonStatus', 'StatusStartDate', '11') +VALUES ('', 'PersonMilitaryOccupationalSpecialties', 'PersonMilitaryOccupationalSpecialtiesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001228', 'PersonStatus', 'StatusEndDate', '11') +VALUES ('', 'PersonMilitaryOccupationalSpecialties', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001229', 'PsStudentDemographic', 'RefMaternalEducationLevelId', '11') +VALUES ('', 'PersonMilitaryOccupationalSpecialties', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001230', 'PsStudentDemographic', 'RefPaternalEducationLevelId', '11') +VALUES ('', 'PersonMilitaryOccupationalSpecialties', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001231', 'IndividualizedProgram', 'RefIndividualizedProgramDateType', '11') +VALUES ('', 'PersonMilitaryServiceLocations', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001232', 'IndividualizedProgram', 'IndividualizedProgramDate', '11') +VALUES ('', 'PersonMilitaryServiceLocations', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001233', 'IndividualizedProgram', 'NonInclusionMinutesPerWeek', '11') +VALUES ('', 'PersonMilitaryServiceLocations', 'PersonMilitaryServiceLocationsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001234', 'IndividualizedProgram', 'InclusionMinutesPerWeek', '11') +VALUES ('', 'PersonMilitaryServiceLocations', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001235', 'IndividualizedProgram', 'RefIndividualizedProgramTransitionTypeId', '11') +VALUES ('', 'PersonMilitaryServiceLocations', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001236', 'IndividualizedProgram', 'ServicePlanDate', '11') +VALUES ('', 'PersonMilitaryServiceLocations', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001237', 'IndividualizedProgram', 'RefIndividualizedProgramLocationId', '11') +VALUES ('', 'PersonOtherName', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001238', 'IndividualizedProgram', 'ServicePlanMeetingParticipants', '11') +VALUES ('', 'PersonOtherName', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001239', 'IndividualizedProgram', 'ServicePlanSignedBy', '11') +VALUES ('', 'PersonOtherName', 'PersonOtherNameId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001240', 'IndividualizedProgram', 'ServicePlanSignatureDate', '11') +VALUES ('', 'PersonOtherName', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001241', 'IndividualizedProgram', 'ServicePlanReevaluationDate', '11') +VALUES ('', 'PersonPersonalInformationVerification', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001242', 'ProgramParticipationSpecialEducation', 'SpecialEducationFTE', '11') +VALUES ('', 'PersonPersonalInformationVerification', 'PersonAddressId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001242', 'ServicesReceived', 'FullTimeEquivalency', '11') +VALUES ('', 'PersonPersonalInformationVerification', 'PersonDetailId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001243', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('', 'PersonPersonalInformationVerification', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001244', 'K12ProgramOrService', 'RefProgramGiftedEligibilityId', '11') +VALUES ('', 'PersonPersonalInformationVerification', 'PersonPersonalInformationVerificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001245', 'CredentialDefCategory', 'CategorySystem', '11') +VALUES ('', 'PersonPersonalInformationVerification', 'PersonTelephoneId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001246', 'LearningResourceEducationLevel', 'RefEducationLevelId', '11') +VALUES ('', 'PersonPersonalInformationVerification', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001248', 'PersonImmunization', 'RefImmunizationTypeId', '11') +VALUES ('', 'PersonProgramParticipation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001249', 'CompetencyDefinition', 'Notes', '11') +VALUES ('', 'PersonProgramParticipation', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001250', 'CompetencyDefinition', 'Version', '11') +VALUES ('', 'PersonProgramParticipation', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001251', 'AssessmentItemResponseTheory', 'ParameterA', '11') +VALUES ('', 'PersonProgramParticipation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001252', 'AssessmentItemResponseTheory', 'ParameterB', '11') +VALUES ('', 'PersonReferral', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001253', 'AssessmentItemResponseTheory', 'RefItemResponseTheoryDifficultyCategoryId', '11') +VALUES ('', 'PersonReferral', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001254', 'AssessmentItemResponseTheory', 'ParameterC', '11') +VALUES ('', 'PersonReferral', 'PersonReferralId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001255', 'AssessmentItemResponseTheory', 'ParameterD1', '11') +VALUES ('', 'PersonReferral', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001256', 'AssessmentItemResponseTheory', 'ParameterD2', '11') +VALUES ('', 'PersonRelationship', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001257', 'AssessmentItemResponseTheory', 'ParameterD3', '11') +VALUES ('', 'PersonRelationship', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001258', 'AssessmentItemResponseTheory', 'ParameterD4', '11') +VALUES ('', 'PersonRelationship', 'PersonRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001259', 'AssessmentItemResponseTheory', 'ParameterD5', '11') +VALUES ('', 'PersonRelationship', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001260', 'AssessmentItemResponseTheory', 'ParameterD6', '11') +VALUES ('', 'PersonRelationship', 'RelatedPersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001261', 'AssessmentItem', 'LinkingItemIndicator', '11') +VALUES ('', 'PersonStatus', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001262', 'AssessmentItemResponseTheory', 'PointBiserialCorrelationValue', '11') +VALUES ('', 'PersonStatus', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001263', 'AssessmentItem', 'ReleaseStatus', '11') +VALUES ('', 'PersonStatus', 'PersonStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001264', 'AssessmentItemResponseTheory', 'DIFValue', '11') +VALUES ('', 'PersonStatus', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001265', 'AssessmentItemResponseTheory', 'KappaValue', '11') +VALUES ('', 'PersonStatus', 'StatusValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001266', 'AssessmentItemResponseTheory', 'RefItemResponseTheoryKappaAlgorithmId', '11') +VALUES ('', 'PersonTelephone', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001267', 'AssessmentItem', 'BodyText', '11') +VALUES ('', 'PersonTelephone', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001268', 'AssessmentItem', 'Stimulus', '11') +VALUES ('', 'PersonTelephone', 'PersonTelephoneId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001269', 'AssessmentItemPossibleResponse', 'PossibleResponseOption', '11') +VALUES ('', 'PersonTelephone', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001270', 'OrganizationCalendarSession', 'Code', '11') +VALUES ('', 'PersonTransportationEligibility', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001271', 'OrganizationCalendarSession', 'Description', '11') +VALUES ('', 'PersonTransportationEligibility', 'PersonTransportationEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001272', 'OrganizationCalendarSession', 'MarkingTermIndicator', '11') +VALUES ('', 'PersonTransportationEligibility', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001273', 'OrganizationCalendarSession', 'SchedulingTermIndicator', '11') +VALUES ('', 'PersonTransportationEligibility', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001274', 'OrganizationCalendarSession', 'AttendanceTermIndicator', '11') +VALUES ('', 'PersonTransportationEligibility', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001275', 'OrganizationCalendarEvent', 'EventDate', '11') +VALUES ('', 'ProfessionalDevelopmentActivity', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001276', 'OrganizationCalendarEvent', 'Name', '11') +VALUES ('', 'ProfessionalDevelopmentActivity', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001277', 'PersonDisability', 'RefAccommodationsNeededTypeId', '11') +VALUES ('', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001278', 'CourseSection', 'RefAdvancedPlacementCourseCodeId', '11') +VALUES ('', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentRequirementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001279', 'PDActivityEducationLevel', 'RefPDActivityEducationLevelsAddressedId', '11') +VALUES ('', 'ProfessionalDevelopmentActivity', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001280', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('', 'ProfessionalDevelopmentRequirement', 'CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001281', 'PersonAllergy', 'ReactionDescription', '11') +VALUES ('', 'ProfessionalDevelopmentRequirement', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001282', 'PersonAllergy', 'RefAllergySeverityId', '11') +VALUES ('', 'ProfessionalDevelopmentRequirement', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001283', 'PersonAllergy', 'RefAllergyTypeId', '11') +VALUES ('', 'ProfessionalDevelopmentRequirement', 'ProfessionalDevelopmentRequirementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001284', 'AssessmentItemResponse', 'ResultXML', '11') +VALUES ('', 'ProfessionalDevelopmentRequirement', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001287', 'ELCourse', 'RefBlendedLearningModelTypeId', '11') +VALUES ('', 'ProfessionalDevelopmentSession', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001287', 'K12Course', 'RefBlendedLearningModelTypeId', '11') +VALUES ('', 'ProfessionalDevelopmentSession', 'ProfessionalDevelopmentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001287', 'K12SchoolStatus', 'RefBlendedLearningModelTypeId', '11') +VALUES ('', 'ProfessionalDevelopmentSession', 'ProfessionalDevelopmentSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'AeCourse', 'RefCareerClusterId', '11') +VALUES ('', 'ProfessionalDevelopmentSession', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'CredentialDefinition', 'RefCareerClusterId', '11') +VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'CteCourse', 'RefCareerClusterId', '11') +VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'K12Course', 'RefCareerClusterId', '11') +VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'ProfessionalDevelopmentSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'PSStudentProgram', 'RefCareerClusterId', '11') +VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'ProfessionalDevelopmentSessionInstructorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001289', 'PersonCareerEducationPlan', 'LastUpdated', '11') +VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001290', 'PersonCareerEducationPlan', 'RefCareerEducationPlanTypeId', '11') +VALUES ('', 'Program', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001291', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('', 'Program', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001292', 'K12CharterSchoolAuthorizerAgency', 'K12CharterSchoolAuthorizerAgencyId', '11') +VALUES ('', 'Program', 'ProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001292', 'K12CharterSchoolAuthorizerAgency', 'RefCharterSchoolAuthorizerTypeId', '11') +VALUES ('', 'Program', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001293', 'K12School', 'CharterSchoolApprovalYear', '11') +VALUES ('', 'ProgramParticipationAE', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001296', 'ProgramParticipationAE', 'RefCorrectionalEducationFacilityTypeId', '11') +VALUES ('', 'ProgramParticipationAE', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001298', 'PsSection', 'GradeValueQualifier', '11') +VALUES ('', 'ProgramParticipationAE', 'ProgramParticipationAEId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001299', 'PsStudentCourseSectionMark', 'RefCourseAcademicGradeStatusCodeId', '11') +VALUES ('', 'ProgramParticipationAE', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001299', 'PsStudentSection', 'RefCourseAcademicGradeStatusCodeId', '11') +VALUES ('', 'ProgramParticipationAttainment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001301', 'Course', 'RefCourseApplicableEducationLevelId', '11') +VALUES ('', 'ProgramParticipationAttainment', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001302', 'Course', 'CertificationDescription', '11') +VALUES ('', 'ProgramParticipationAttainment', 'ProgramParticipationAttainmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001303', 'PsCourse', 'RefCourseCreditBasisTypeId', '11') +VALUES ('', 'ProgramParticipationAttainment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001304', 'PsCourse', 'RefCourseCreditLevelTypeId', '11') +VALUES ('', 'ProgramParticipationCte', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001306', 'K12Course', 'FundingProgram', '11') +VALUES ('', 'ProgramParticipationCte', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001307', 'PsSection', 'RefCourseHonorsTypeId', '11') +VALUES ('', 'ProgramParticipationCte', 'ProgramParticipationCteId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001308', 'PsSection', 'RefCourseInstructionMethodId', '11') +VALUES ('', 'ProgramParticipationCte', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001309', 'PsSectionLocation', 'CourseInstructionSiteName', '11') +VALUES ('', 'ProgramParticipationFoodService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001310', 'PsSectionLocation', 'RefCourseInstructionSiteTypeId', '11') +VALUES ('', 'ProgramParticipationFoodService', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001311', 'K12Course', 'RefCourseInteractionModeId', '11') +VALUES ('', 'ProgramParticipationFoodService', 'ProgramParticipationFoodServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001312', 'AeCourse', 'RefCourseLevelTypeId', '11') +VALUES ('', 'ProgramParticipationFoodService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001312', 'Course', 'RefCourseLevelTypeId', '11') +VALUES ('', 'ProgramParticipationMigrant', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001312', 'CourseSectionLevel', 'RefCourseLevelTypeId', '11') +VALUES ('', 'ProgramParticipationMigrant', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001312', 'PsSection', 'RefCourseLevelTypeId', '11') +VALUES ('', 'ProgramParticipationMigrant', 'ProgramParticipationMigrantId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001313', 'PsStudentCourseSectionMark', 'CourseNarrativeExplanationGrade', '11') +VALUES ('', 'ProgramParticipationMigrant', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001314', 'PsCourse', 'CourseNumber', '11') +VALUES ('', 'ProgramParticipationNeglected', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001315', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('', 'ProgramParticipationNeglected', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001315', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('', 'ProgramParticipationNeglected', 'ProgramParticipationNeglectedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001316', 'PsStudentAcademicRecord', 'CourseTotal', '11') +VALUES ('', 'ProgramParticipationNeglected', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001317', 'PsStudentAcademicRecord', 'RefCreditHoursAppliedOtherProgramId', '11') +VALUES ('', 'ProgramParticipationSpecialEducation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001318', 'StaffCredential', 'CTEInstructorIndustryCertification', '11') +VALUES ('', 'ProgramParticipationSpecialEducation', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001319', 'PersonDisability', 'RefDisabilityConditionStatusCodeId', '11') +VALUES ('', 'ProgramParticipationSpecialEducation', 'ProgramParticipationSpecialEducationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001320', 'PersonDisability', 'RefDisabilityConditionTypeId', '11') +VALUES ('', 'ProgramParticipationSpecialEducation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001321', 'PersonDisability', 'RefDisabilityDeterminationSourceTypeId', '11') +VALUES ('', 'ProgramParticipationTeacherPrep', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001322', 'K12StudentDiscipline', 'IEPPlacementMeetingIndicator', '11') +VALUES ('', 'ProgramParticipationTeacherPrep', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001323', 'PsStudentEnrollment', 'DistanceEducationProgramEnrollmentInd', '11') +VALUES ('', 'ProgramParticipationTeacherPrep', 'ProgramParticipationTeacherPrepId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001324', 'PsStudentEnrollment', 'DoctoralCandidacyAdmitInd', '11') +VALUES ('', 'ProgramParticipationTeacherPrep', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001325', 'PsStudentEnrollment', 'DoctoralCandidacyDate', '11') +VALUES ('', 'ProgramParticipationTitleI', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001326', 'PsStudentEnrollment', 'DoctoralExamTakenDate', '11') +VALUES ('', 'ProgramParticipationTitleI', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001327', 'PsStudentEnrollment', 'RefDoctoralExamsRequiredCodeId', '11') +VALUES ('', 'ProgramParticipationTitleI', 'ProgramParticipationTitleIId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001328', 'ELEnrollment', 'RefELFederalFundingTypeId', '11') +VALUES ('', 'ProgramParticipationTitleI', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001328', 'ELOrganizationFunds', 'RefELFederalFundingTypeId', '11') +VALUES ('', 'ProgramParticipationTitleIIILep', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001329', 'ELClassSection', 'GroupSize', '11') +VALUES ('', 'ProgramParticipationTitleIIILep', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001330', 'ELOrganizationMonitoring', 'RefOrganizationMonitoringNotificationsId', '11') +VALUES ('', 'ProgramParticipationTitleIIILep', 'ProgramParticipationTitleIiiLepId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001331', 'ELOrganizationMonitoring', 'VisitStartDate', '11') +VALUES ('', 'ProgramParticipationTitleIIILep', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001332', 'ELOrganizationMonitoring', 'VisitEndDate', '11') +VALUES ('', 'ProgramParticipationWIOA', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001333', 'ELOrganizationMonitoring', 'RefPurposeOfMonitoringVisitId', '11') +VALUES ('', 'ProgramParticipationWIOA', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001334', 'ELOrganizationMonitoring', 'TypeOfMonitoring', '11') +VALUES ('', 'ProgramParticipationWIOA', 'ProgramParticipationWIOAId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001335', 'ELEnrollmentOtherFunding', 'RefELOtherFederalFundingSourcesId', '11') +VALUES ('', 'ProgramParticipationWIOA', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001335', 'ELOrganizationFunds', 'RefELOtherFederalFundingSourcesId', '11') +VALUES ('', 'ProgramParticipationWIOABarriers', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001336', 'AssessmentResult', 'RefELOutcomeMeasurementLevelId', '11') +VALUES ('', 'ProgramParticipationWIOABarriers', 'ProgramParticipationWIOABarriersId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001337', 'ELStaffEducation', 'RefELProfessionalDevelopmentTopicAreaId', '11') +VALUES ('', 'ProgramParticipationWIOABarriers', 'ProgramParticipationWIOAId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001338', 'ELChildProgramEligibility', 'ExpirationDate', '11') +VALUES ('', 'ProgramParticipationWIOABarriers', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001339', 'ELChildProgramEligibility', 'RefELProgramEligibilityStatusId', '11') +VALUES ('', 'PsCourse', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001340', 'ELChildProgramEligibility', 'StatusDate', '11') +VALUES ('', 'PsCourse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001341', 'PersonRelationship', 'EmergencyContactInd', '11') +VALUES ('', 'PsCourse', 'PsCourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001342', 'QuarterlyEmploymentRecord', 'RefEmployedPriorToEnrollmentId', '11') +VALUES ('', 'PsCourse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001343', 'PsStudentEmployment', 'RefEmploymentStatusWhileEnrolledId', '11') +VALUES ('', 'PsInstitution', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001344', 'K12Course', 'FamilyConsumerSciencesCourseInd', '11') +VALUES ('', 'PsInstitution', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001345', 'FinancialAccount', 'RefFinancialAccountCategoryId', '11') +VALUES ('', 'PsInstitution', 'PsInstitutionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001346', 'FinancialAccount', 'Description', '11') +VALUES ('', 'PsInstitution', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001347', 'FinancialAccount', 'RefFinancialAccountFundClassificationId', '11') +VALUES ('', 'PsPriceOfAttendance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001348', 'FinancialAccount', 'Name', '11') +VALUES ('', 'PsPriceOfAttendance', 'PsInstitutionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001349', 'FinancialAccount', 'RefFinancialAccountProgramCodeId', '11') +VALUES ('', 'PsPriceOfAttendance', 'PSPriceOfAttendanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001350', 'OrganizationFinancial', 'ActualValue', '11') +VALUES ('', 'PsPriceOfAttendance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001351', 'OrganizationFinancial', 'BudgetedValue', '11') +VALUES ('', 'PsProgram', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001352', 'PsStudentFinancialAid', 'FinancialAidIncomeLevel', '11') +VALUES ('', 'PsProgram', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001353', 'FinancialAccount', 'RefFinancialAccountBalanceSheetCodeId', '11') +VALUES ('', 'PsProgram', 'PsProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001354', 'FinancialAccount', 'RefFinancialExpenditureFunctionCodeId', '11') +VALUES ('', 'PsProgram', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001355', 'FinancialAccount', 'RefFinancialExpenditureObjectCodeId', '11') +VALUES ('', 'PsSection', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001356', 'ELClassSectionService', 'RefFrequencyOfServiceId', '11') +VALUES ('', 'PsSection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001357', 'PsStudentEnrollment', 'RefGraduateOrDoctoralExamResultsStatusId', '11') +VALUES ('', 'PsSection', 'PsSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001358', 'PersonHealth', 'HealthScreeningEquipmentUsed', '11') +VALUES ('', 'PsSection', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001359', 'PersonHealth', 'HealthScreeningFollowUpRecommendation', '11') +VALUES ('', 'PsSectionLocation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001360', 'ELChildTransitionPlan', 'PartB619PotentialEligibilityInd', '11') +VALUES ('', 'PsSectionLocation', 'PsSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001363', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationOptOutIndicator', '11') +VALUES ('', 'PsSectionLocation', 'PsSectionLocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001364', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationOptOutDate', '11') +VALUES ('', 'PsSectionLocation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001365', 'ELChildTransitionPlan', 'TransitionConferenceDate', '11') +VALUES ('', 'PsStaffEmployment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001366', 'ELChildTransitionPlan', 'TransitionConferenceDeclineDate', '11') +VALUES ('', 'PsStaffEmployment', 'PsStaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001367', 'ELChildTransitionPlan', 'DateOfTransitionPlan', '11') +VALUES ('', 'PsStaffEmployment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001369', 'Incident', 'RefIncidentMultipleOffenseTypeId', '11') +VALUES ('', 'PsStaffEmployment', 'StaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001370', 'IncidentPerson', 'Identifier', '11') +VALUES ('', 'PsStudentAcademicAward', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001371', 'Incident', 'RefIncidentPerpetratorInjuryTypeId', '11') +VALUES ('', 'PsStudentAcademicAward', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001372', 'IncidentPerson', 'RefIncidentPersonTypeId', '11') +VALUES ('', 'PsStudentAcademicAward', 'PsStudentAcademicAwardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001373', 'IncidentPerson', 'RefIncidentPersonRoleTypeId', '11') +VALUES ('', 'PsStudentAcademicAward', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001374', 'Incident', 'RegulationViolatedDescription', '11') +VALUES ('', 'PsStudentAcademicRecord', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001375', 'Incident', 'RelatedToDisabilityManifestationInd', '11') +VALUES ('', 'PsStudentAcademicRecord', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001376', 'Incident', 'ReportedToLawEnforcementInd', '11') +VALUES ('', 'PsStudentAcademicRecord', 'PsStudentAcademicRecordId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001377', 'IncidentPerson', 'Identifier', '11') +VALUES ('', 'PsStudentAcademicRecord', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001378', 'IncidentPerson', 'RefIncidentPersonTypeId', '11') +VALUES ('', 'PsStudentAdmissionTest', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001381', 'IndividualizedProgramService', 'PlannedServiceStartDate', '11') +VALUES ('', 'PsStudentAdmissionTest', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001383', 'IndividualizedProgramService', 'RefIndividualizedProgramPlannedServiceTypeId', '11') +VALUES ('', 'PsStudentAdmissionTest', 'PsStudentAdmissionTestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001384', 'ELStaffAssignment', 'ItinerantProvider', '11') +VALUES ('', 'PsStudentAdmissionTest', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001386', 'K12Course', 'RefK12EndOfCourseRequirementId', '11') +VALUES ('', 'PsStudentApplication', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001388', 'ProfessionalDevelopmentSession', 'RefLanguageId', '11') +VALUES ('', 'PsStudentApplication', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001389', 'LearningResource', 'RefLearningResourceAccessAPITypeId', '11') +VALUES ('', 'PsStudentApplication', 'PsStudentApplicationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001390', 'LearningResource', 'RefLearningResourceAccessHazardTypeId', '11') +VALUES ('', 'PsStudentApplication', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001391', 'LearningResource', 'RefLearningResourceAccessModeTypeId', '11') +VALUES ('', 'PsStudentCohort', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001392', 'LearningResourceAdaptation', 'AdaptationURL', '11') +VALUES ('', 'PsStudentCohort', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001393', 'LearningResource', 'AssistiveTechnologiesCompatibleInd', '11') +VALUES ('', 'PsStudentCohort', 'PsStudentCohortId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001394', 'LearningResource', 'RefLearningResourceBookFormatTypeId', '11') +VALUES ('', 'PsStudentCohort', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001395', 'LearningResource', 'RefLearningResourceControlFlexibilityTypeId', '11') +VALUES ('', 'PsStudentCourseSectionMark', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001396', 'LearningResource', 'RefLearningResourceDigitalMediaSubTypeId', '11') +VALUES ('', 'PsStudentCourseSectionMark', 'PsStudentCourseSectionMarkId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001397', 'LearningResource', 'RefLearningResourceDigitalMediaTypeId', '11') +VALUES ('', 'PsStudentCourseSectionMark', 'PsStudentSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001398', 'LearningResource', 'AdaptedFromURL', '11') +VALUES ('', 'PsStudentCourseSectionMark', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001399', 'LearningResourceMediaFeature', 'RefLearningResourceMediaFeatureTypeId', '11') +VALUES ('', 'PsStudentDemographic', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001400', 'LearningResource', 'PeerRatingSampleSize', '11') +VALUES ('', 'PsStudentDemographic', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001401', 'LearningResourcePhysicalMedia', 'RefLearningResourcePhysicalMediaTypeId', '11') +VALUES ('', 'PsStudentDemographic', 'PsStudentDemographicId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001402', 'CompetencyDefAssociation', 'ConnectionCitation', '11') +VALUES ('', 'PsStudentDemographic', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001403', 'CompetencyDefAssociation', 'DestinationNodeName', '11') +VALUES ('', 'PsStudentEmployment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001404', 'CompetencyDefAssociation', 'DestinationNodeURI', '11') +VALUES ('', 'PsStudentEmployment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001405', 'CompetencyDefAssociation', 'OriginNodeName', '11') +VALUES ('', 'PsStudentEmployment', 'PsStudentEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001406', 'CompetencyDefAssociation', 'OriginNodeURI', '11') +VALUES ('', 'PsStudentEmployment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001407', 'CompetencyDefAssociation', 'Weight', '11') +VALUES ('', 'PsStudentEnrollment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001408', 'CompetencyDefinition', 'RefCompetencyDefNodeAccessibilityProfileId', '11') +VALUES ('', 'PsStudentEnrollment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001409', 'CompetencyDefinition', 'ShortName', '11') +VALUES ('', 'PsStudentEnrollment', 'PSStudentEnrollmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001411', 'CompetencyDefinition', 'RefCompetencyDefTestabilityTypeId', '11') +VALUES ('', 'PsStudentEnrollment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001412', 'WorkforceEmploymentQuarterlyData', 'MilitaryEnlistmentAfterExit', '11') +VALUES ('', 'PsStudentFinancialAid', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001413', 'PsCourse', 'NCAAEligibilityInd', '11') +VALUES ('', 'PsStudentFinancialAid', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001414', 'PsCourse', 'RefNCESCollegeCourseMapCodeId', '11') +VALUES ('', 'PsStudentFinancialAid', 'PsStudentFinancialAidId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001415', 'PsStudentDemographic', 'NumberOfDependents', '11') +VALUES ('', 'PsStudentFinancialAid', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001416', 'PsStudentEnrollment', 'OralDefenseCompletedIndicator', '11') +VALUES ('', 'PSStudentProgram', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001417', 'PsStudentEnrollment', 'OralDefenseDate', '11') +VALUES ('', 'PSStudentProgram', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001419', 'OrganizationAccreditation', 'SeekingAccreditationDate', '11') +VALUES ('', 'PSStudentProgram', 'PsProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001420', 'PsCourse', 'OriginalCourseIdentifier', '11') +VALUES ('', 'PSStudentProgram', 'PSStudentProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001421', 'ELChildDemographic', 'OtherRaceIndicator', '11') +VALUES ('', 'PSStudentProgram', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001422', 'PsCourse', 'OverrideSchoolCourseNumber', '11') +VALUES ('', 'PsStudentSection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001423', 'PersonRelationship', 'ContactPriorityNumber', '11') +VALUES ('', 'PsStudentSection', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001424', 'PersonRelationship', 'ContactRestrictions', '11') +VALUES ('', 'PsStudentSection', 'PsStudentSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001425', 'PersonRelationship', 'LivesWithIndicator', '11') +VALUES ('', 'PsStudentSection', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001426', 'PsStudentEnrollment', 'PostsecondaryEnteringStudentInd', '11') +VALUES ('', 'QuarterlyEmploymentRecord', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001427', 'PsStudentAcademicRecord', 'EnteringTerm', '11') +VALUES ('', 'QuarterlyEmploymentRecord', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001428', 'PersonRelationship', 'PrimaryContactIndicator', '11') +VALUES ('', 'QuarterlyEmploymentRecord', 'QuarterlyEmploymentRecordId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001429', 'PersonCredential', 'ProfessionalCertificateOrLicenseNumber', '11') +VALUES ('', 'QuarterlyEmploymentRecord', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001430', 'ProfessionalDevelopmentActivity', 'RefPDAudienceTypeId', '11') +VALUES ('', 'RecordStatus', 'RecordStatusCreatorOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001431', 'ProfessionalDevelopmentSession', 'RefPDDeliveryMethodId', '11') +VALUES ('', 'RecordStatus', 'RecordStatusCreatorPersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001432', 'ProfessionalDevelopmentActivity', 'ApprovalCode', '11') +VALUES ('', 'RecordStatus', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001433', 'ProfessionalDevelopmentActivity', 'RefPDActivityApprovedPurposeId', '11') +VALUES ('', 'RecordStatusHistory', 'RecordId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001434', 'ProfessionalDevelopmentActivity', 'ActivityCode', '11') +VALUES ('', 'RecordStatusHistory', 'RecordPKColumn', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001435', 'ProfessionalDevelopmentActivity', 'Cost', '11') +VALUES ('', 'RecordStatusHistory', 'RecordStatusCreatorOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001436', 'ProfessionalDevelopmentActivity', 'RefPDActivityCreditTypeId', '11') +VALUES ('', 'RecordStatusHistory', 'RecordStatusCreatorPersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001437', 'ProfessionalDevelopmentActivity', 'Credits', '11') +VALUES ('', 'RecordStatusHistory', 'RecordStatusHistoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001438', 'ProfessionalDevelopmentActivity', 'Description', '11') +VALUES ('', 'RecordStatusHistory', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001439', 'ProfessionalDevelopmentActivity', 'RefPDActivityLevelId', '11') +VALUES ('', 'RecordStatusHistory', 'RecordTable', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001440', 'ProfessionalDevelopmentActivity', 'Objective', '11') +VALUES ('001917', 'FacilityFinance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001442', 'ProfessionalDevelopmentActivity', 'RefPDActivityTypeId', '11') +VALUES ('001917', 'FacilityFinancial', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001443', 'ProfessionalDevelopmentSession', 'FundingSource', '11') +VALUES ('001917', 'FacilityHazard', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001444', 'PersonIdentifier', 'Identifier', '11') +VALUES ('001917', 'FacilityJointUse', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001445', 'ProfessionalDevelopmentActivity', 'PublishIndicator', '11') +VALUES ('001917', 'FacilityLease', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001446', 'ProfessionalDevelopmentSession', 'Capacity', '11') +VALUES ('001917', 'FacilityLocation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001447', 'ProfessionalDevelopmentSession', 'EndDate', '11') +VALUES ('001917', 'FacilityManagement', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001448', 'ProfessionalDevelopmentSession', 'EndTime', '11') +VALUES ('001917', 'FacilityManagementPlan', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001449', 'ProfessionalDevelopmentSession', 'EvaluationMethod', '11') +VALUES ('001917', 'FacilityMandate', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001450', 'ProfessionalDevelopmentSession', 'EvaluationScore', '11') +VALUES ('001917', 'FacilityMortgage', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001451', 'ProfessionalDevelopmentSession', 'ExpirationDate', '11') +VALUES ('001917', 'FacilityMortgageFee', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001452', 'ProfessionalDevelopmentSession', 'SessionIdentifier', '11') +VALUES ('001917', 'FacilityRelationship', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001454', 'ProfessionalDevelopmentSession', 'LocationName', '11') +VALUES ('001917', 'FacilitySchoolDesign', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001455', 'ProfessionalDevelopmentSession', 'StartDate', '11') +VALUES ('001917', 'FacilitySite', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001456', 'ProfessionalDevelopmentSession', 'StartTime', '11') +VALUES ('001917', 'FacilityUtilization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001457', 'ProfessionalDevelopmentSession', 'RefPDSessionStatusId', '11') +VALUES ('001917', 'FinancialAccount', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001458', 'ProfessionalDevelopmentSession', 'RefPDInstructionalDeliveryModeId', '11') +VALUES ('001917', 'FinancialAccountProgram', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001460', 'ELQualityInitiative', 'MaximumScore', '11') +VALUES ('001917', 'FinancialAidApplication', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001461', 'ELQualityInitiative', 'MinimumScore', '11') +VALUES ('001917', 'FinancialAidAward', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001462', 'ELQualityInitiative', 'ScoreLevel', '11') +VALUES ('001917', 'Goal', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001463', 'ELQualityInitiative', 'ParticipationIndicator', '11') +VALUES ('001917', 'GoalMeasurement', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001464', 'ELQualityInitiative', 'ParticipationEndDate', '11') +VALUES ('001917', 'GoalMeasurementCriterion', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001465', 'ELQualityInitiative', 'ParticipationStartDate', '11') +VALUES ('001917', 'GoalPerformance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001466', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'IDEAEligibilityEvaluationCategory', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001468', 'FinancialAccount', 'RefFinancialAccountRevenueCodeId', '11') +VALUES ('001917', 'IEPAuthorization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001469', 'RubricCriterion', 'Category', '11') +VALUES ('001917', 'IEPAuthorizationRejected', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001470', 'RubricCriterion', 'Description', '11') +VALUES ('001917', 'IEPPresentLevel', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001471', 'RubricCriterionLevel', 'Description', '11') +VALUES ('001917', 'Incident', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001472', 'RubricCriterionLevel', 'Feedback', '11') +VALUES ('001917', 'IncidentPerson', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001473', 'RubricCriterionLevel', 'Position', '11') +VALUES ('001917', 'IndividualizedProgram', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001474', 'RubricCriterionLevel', 'Quality', '11') +VALUES ('001917', 'IndividualizedProgramAccommodation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001475', 'RubricCriterionLevel', 'Score', '11') +VALUES ('001917', 'IndividualizedProgramAccommodationSubject', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001476', 'RubricCriterion', 'Position', '11') +VALUES ('001917', 'IndividualizedProgramAmendment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001477', 'RubricCriterion', 'Title', '11') +VALUES ('001917', 'IndividualizedProgramAssessment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001478', 'RubricCriterion', 'Weight', '11') +VALUES ('001917', 'IndividualizedProgramAssessmentAccommodation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001479', 'Rubric', 'Description', '11') +VALUES ('001917', 'IndividualizedProgramEligibility', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001480', 'K12Course', 'SCEDGradeSpan', '11') +VALUES ('001917', 'IndividualizedProgramEligibilityEvaluation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001481', 'PersonReferral', 'ReferralDate', '11') +VALUES ('001917', 'IndividualizedProgramGoal', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001482', 'PersonReferral', 'RefReferralOutcomeId', '11') +VALUES ('001917', 'IndividualizedProgramMeeting', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001483', 'PersonReferral', 'Reason', '11') +VALUES ('001917', 'IndividualizedProgramMeetingAttendee', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001484', 'PersonReferral', 'Source', '11') +VALUES ('001917', 'IndividualizedProgramProgressGoal', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001485', 'PersonReferral', 'ReferralTypeReceived', '11') +VALUES ('001917', 'IndividualizedProgramProgressReport', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001486', 'PersonReferral', 'ReferredTo', '11') +VALUES ('001917', 'IndividualizedProgramProgressReportPlan', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001487', 'OrganizationDetail', 'ShortName', '11') +VALUES ('001917', 'IndividualizedProgramService', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001488', 'ServicePlan', 'ReasonForDeclinedServices', '11') +VALUES ('001917', 'IndividualizedProgramServicesReceived', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001489', 'ProfessionalDevelopmentSession', 'SponsoringAgencyName', '11') +VALUES ('001917', 'IPEDSFinance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001493', 'OrganizationTechnicalAssistance', 'TechnicalAssistanceApprovedInd', '11') +VALUES ('001917', 'K12CharterSchoolAuthorizerAgency', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001493', 'StaffTechnicalAssistance', 'TechnicalAssistanceApprovedInd', '11') +VALUES ('001917', 'K12CharterSchoolManagementOrganization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001494', 'OrganizationTechnicalAssistance', 'RefTechnicalAssistanceDeliveryTypeId', '11') +VALUES ('001917', 'K12Course', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001494', 'StaffTechnicalAssistance', 'RefTechnicalAssistanceDeliveryTypeId', '11') +VALUES ('001917', 'K12FederalFundAllocation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001495', 'OrganizationTechnicalAssistance', 'RefTechnicalAssistanceTypeId', '11') +VALUES ('001917', 'K12Lea', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001495', 'StaffTechnicalAssistance', 'RefTechnicalAssistanceTypeId', '11') +VALUES ('001917', 'K12LeaFederalFunds', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001496', 'PsStudentEnrollment', 'ThesisOrDissertationTitle', '11') +VALUES ('001917', 'K12LeaFederalReporting', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001497', 'StaffEmployment', 'UnionMembershipName', '11') +VALUES ('001917', 'K12LeaGradeLevelsApproved', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001498', 'StaffEmployment', 'WeeksEmployedPerYear', '11') +VALUES ('001917', 'K12LeaGradeOffered', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'K12Course', 'RefWorkbasedLearningOpportunityTypeId', '11') +VALUES ('001917', 'K12LeaPreKEligibility', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'ProgramParticipationAE', 'RefWorkbasedLearningOpportunityTypeId', '11') +VALUES ('001917', 'K12LeaPreKEligibleAgesIDEA', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'ProgramParticipationCte', 'RefWorkbasedLearningOpportunityTypeId', '11') +VALUES ('001917', 'K12LeaSafeDrugFree', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'PsSection', 'RefWorkbasedLearningOpportunityTypeId', '11') +VALUES ('001917', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'PSStudentProgram', 'RefWorkbasedLearningOpportunityTypeId', '11') +VALUES ('001917', 'K12LeaTitleISupportService', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001500', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationDate', '11') +VALUES ('001917', 'K12OrganizationStudentResponsibility', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001501', 'ELChildIndividualizedProgram', 'RefIDEAIEPStatusId', '11') +VALUES ('001917', 'K12ProgramOrService', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001503', 'AssessmentResult', 'RefOutcomeTimePointId', '11') +VALUES ('001917', 'K12School', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001504', 'ELChildOutcomeSummary', 'COSProgressAIndicator', '11') +VALUES ('001917', 'K12SchoolCorrectiveAction', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001505', 'ELChildOutcomeSummary', 'COSProgressBIndicator', '11') +VALUES ('001917', 'K12SchoolGradeLevelsApproved', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001506', 'ELChildOutcomeSummary', 'COSProgressCIndicator', '11') +VALUES ('001917', 'K12SchoolGradeOffered', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001507', 'ELChildOutcomeSummary', 'COSRatingAId', '11') +VALUES ('001917', 'K12SchoolImprovement', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001508', 'ELChildOutcomeSummary', 'COSRatingBId', '11') +VALUES ('001917', 'K12SchoolIndicatorStatus', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001509', 'ELChildOutcomeSummary', 'COSRatingCId', '11') +VALUES ('001917', 'K12SchoolStatus', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001510', 'IndividualizedProgramService', 'RefMethodOfServiceDeliveryId', '11') +VALUES ('001917', 'K12Sea', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001511', 'CompetencyDefinition', 'ValidEndDate', '11') +VALUES ('001917', 'K12SeaAlternateFundUse', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001512', 'CompetencyDefinition', 'ValidStartDate', '11') +VALUES ('001917', 'K12SeaFederalFunds', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001513', 'PersonOtherName', 'LastName', '11') +VALUES ('001917', 'K12StaffAssignment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001514', 'PersonOtherName', 'FirstName', '11') +VALUES ('001917', 'K12StaffEmployment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001515', 'PersonOtherName', 'MiddleName', '11') +VALUES ('001917', 'K12StudentAcademicHonor', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001516', 'CteCourse', 'RefSCEDCourseLevelId', '11') +VALUES ('001917', 'K12StudentAcademicRecord', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001516', 'ELCourse', 'RefSCEDCourseLevelId', '11') +VALUES ('001917', 'K12StudentActivity', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001516', 'K12Course', 'RefSCEDCourseLevelId', '11') +VALUES ('001917', 'K12StudentCohort', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'CteCourse', 'RefSCEDCourseCodeId', '11') +VALUES ('001917', 'K12StudentCourseSection', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'CteCourse', 'SCEDCourseCode', '11') +VALUES ('001917', 'K12StudentCourseSectionMark', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'ELCourse', 'RefSCEDCourseCodeId', '11') +VALUES ('001917', 'K12StudentDiscipline', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'K12Course', 'RefSCEDCourseCodeId', '11') +VALUES ('001917', 'K12StudentEmployment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'K12Course', 'SCEDCourseCode', '11') +VALUES ('001917', 'K12StudentEnrollment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'CteCourse', 'RefSCEDCourseSubjectAreaId', '11') +VALUES ('001917', 'K12StudentGraduationPlan', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'ELCourse', 'RefSCEDCourseSubjectAreaId', '11') +VALUES ('001917', 'K12StudentHomeLanguageSurvey', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'IndividualizedProgramAccommodationSubject', 'RefSCEDCourseSubjectAreaId', '11') +VALUES ('001917', 'K12StudentLiteracyAssessment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'K12Course', 'RefSCEDCourseSubjectAreaId', '11') +VALUES ('001917', 'K12StudentSession', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'K12StudentGraduationPlan', 'RefSCEDCourseSubjectAreaId', '11') +VALUES ('001917', 'K12TitleIIILanguageInstruction', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001519', 'IndividualizedProgramService', 'RefServiceFrequencyId', '11') +VALUES ('001917', 'LearnerAction', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001520', 'IndividualizedProgramService', 'PlannedServiceDuration', '11') +VALUES ('001917', 'LearnerActivity', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001521', 'ELChildTransitionPlan', 'RefReasonDelayTransitionConfId', '11') +VALUES ('001917', 'LearnerActivity_LearningResource', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001524', 'CompetencyDefinition', 'PreviousVersionIdentifier', '11') +VALUES ('001917', 'LearningResource', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001525', 'CompetencyDefinition', 'CurrentVersionIndicator', '11') +VALUES ('001917', 'LearningResourceAdaptation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001526', 'K12School', 'AccreditationAgencyName', '11') +VALUES ('001917', 'LearningResourceEducationLevel', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001526', 'OrganizationAccreditation', 'AccreditationAgencyName', '11') +VALUES ('001917', 'LearningResourceMediaFeature', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001527', 'K12StudentActivity', 'ActivityTimeInvolved', '11') +VALUES ('001917', 'LearningResourcePeerRating', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001528', 'K12StudentActivity', 'RefActivityTimeMeasurementTypeId', '11') +VALUES ('001917', 'LearningResourcePhysicalMedia', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001529', 'ApipInteraction', 'APIPInteractionSequenceNumber', '11') +VALUES ('001917', 'Location', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001530', 'Activity', 'ActivityDescription', '11') +VALUES ('001917', 'LocationAddress', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001531', 'AssessmentAdministration', 'AssessmentAdministrationPeriodDescription', '11') +VALUES ('001917', 'Organization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001532', 'AssessmentForm', 'AssessmentFormAdaptiveIndicator', '11') +VALUES ('001917', 'OrganizationAccreditation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001533', 'AssessmentForm', 'AssessmentFormAlgorithmIdentifier', '11') +VALUES ('001917', 'OrganizationCalendar', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001534', 'AssessmentForm', 'AssessmentFormAlgorithmVersion', '11') +VALUES ('001917', 'OrganizationCalendarCrisis', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001535', 'AssessmentForm', 'AssessmentFormGUID', '11') +VALUES ('001917', 'OrganizationCalendarDay', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001536', 'AssessmentItem', 'AssessmentFormSectionItemFieldTestIndicator', '11') +VALUES ('001917', 'OrganizationCalendarEvent', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001537', 'AssessmentItemResponse', 'AssessmentItemResponseDescriptiveFeedbackDate', '11') +VALUES ('001917', 'OrganizationCalendarSession', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001538', 'AssessmentItemResponse', 'RefAssessmentItemResponseScoreStatusId', '11') +VALUES ('001917', 'OrganizationDetail', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001539', 'AssessmentParticipantSession', 'AssessmentParticipantSessionDatabaseName', '11') +VALUES ('001917', 'OrganizationEmail', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001540', 'AssessmentParticipantSession', 'AssessmentParticipantSessionGUID', '11') +VALUES ('001917', 'OrganizationEmployeeBenefit', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001541', 'AssessmentRegistration', 'RefAssessmentRegistrationCompletionStatusId', '11') +VALUES ('001917', 'OrganizationEnrollmentCapacity', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001542', 'AssessmentRegistration', 'AssessmentRegistrationCompletionStatusDateTime', '11') +VALUES ('001917', 'OrganizationFederalAccountability', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001543', 'AssessmentResult', 'RefAssessmentResultDataTypeId', '11') +VALUES ('001917', 'OrganizationFinancial', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001544', 'Assessment', 'AssessmentRevisionDate', '11') +VALUES ('001917', 'OrganizationFinancialFinancialAccountLocal', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001545', 'AssessmentResult', 'AssessmentResultDescriptiveFeedbackDateTime', '11') +VALUES ('001917', 'OrganizationIdentifier', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001546', 'AssessmentResult', 'AssessmentResultScoreStandardError', '11') +VALUES ('001917', 'OrganizationImage', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001547', 'AssessmentResult', 'RefAssessmentResultScoreTypeId', '11') +VALUES ('001917', 'OrganizationIndicator', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001548', 'K12School', 'CharterSchoolOpenEnrollmentIndicator', '11') +VALUES ('001917', 'OrganizationLocation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001549', 'CteCourse', 'CourseDepartmentName', '11') +VALUES ('001917', 'OrganizationOperationalStatus', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001549', 'K12Course', 'CourseDepartmentName', '11') +VALUES ('001917', 'OrganizationPersonRole', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001550', 'OrganizationCalendarCrisis', 'CrisisDescription', '11') +VALUES ('001917', 'OrganizationPersonRoleApplication', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001552', 'OrganizationCalendarCrisis', 'CrisisEndDate', '11') +VALUES ('001917', 'OrganizationPersonRoleFTE', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001552', 'OrganizationCalendarCrisis', 'EndDate', '11') +VALUES ('001917', 'OrganizationPolicy', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001553', 'ELChildService', 'RefEarlyChildhoodServicesOfferedId', '11') +VALUES ('001917', 'OrganizationPopulationServed', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001554', 'FinancialAccount', 'AccountNumber', '11') +VALUES ('001917', 'OrganizationProgramType', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001554', 'FinancialAccount', 'FinancialAccountNumber', '11') +VALUES ('001917', 'OrganizationProjectBasedLearning', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001555', 'FinancialAccount', 'RefFinancialExpenditureLevelOfInstructionCodeId', '11') +VALUES ('001917', 'OrganizationRelationship', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001556', 'FinancialAccount', 'FinancialExpenditureProjectReportingCode', '11') +VALUES ('001917', 'OrganizationService', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001557', 'LearnerAction', 'LearnerActionActorIdentifier', '11') +VALUES ('001917', 'OrganizationTechnicalAssistance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001558', 'LearnerAction', 'LearnerActionObjectDescription', '11') +VALUES ('001917', 'OrganizationTelephone', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001559', 'LearnerAction', 'LearnerActionObjectIdentifier', '11') +VALUES ('001917', 'OrganizationWebsite', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001560', 'LearnerAction', 'LearnerActionObjectType', '11') +VALUES ('001917', 'PDActivityEducationLevel', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001561', 'LearningResource', 'RefLearningResourceAccessRightsUrlId', '11') +VALUES ('001917', 'PeerRatingSystem', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001562', 'LearningResource', 'RefLearningResourceAuthorTypeId', '11') +VALUES ('001917', 'Person', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001563', 'LearningResource', 'LearningResourceAuthorURL', '11') +VALUES ('001917', 'Person_AssessmentPersonalNeedsProfile', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001564', 'LearningResource', 'LearningResourceDateModified', '11') +VALUES ('001917', 'PersonAddress', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001565', 'LearningResource', 'RefLearningResourceInteractionModeId', '11') +VALUES ('001917', 'PersonAddressNcesSide', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001566', 'LearningResource', 'LearningResourceAuthorEmail', '11') +VALUES ('001917', 'PersonAllergy', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001567', 'LearningResource', 'LearningResourcePublisherEmail', '11') +VALUES ('001917', 'PersonBirthplace', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001568', 'LearningResource', 'LearningResourcePublisherURL', '11') +VALUES ('001917', 'PersonCareerEducationPlan', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001569', 'CompetencyFramework', 'CompetencyFrameworkPublicationDate', '11') +VALUES ('001917', 'PersonCredential', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001570', 'CompetencyDefinition', 'CompetencyDefSequence', '11') +VALUES ('001917', 'PersonDegreeOrCertificate', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001573', 'K12StudentCourseSectionMark', 'StudentCourseSectionGradeNarrative', '11') +VALUES ('001917', 'PersonDemographicRace', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001573', 'PsStudentCourseSectionMark', 'StudentCourseSectionGradeNarrative', '11') +VALUES ('001917', 'PersonDetail', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001574', 'K12StudentGraduationPlan', 'CreditsRequired', '11') +VALUES ('001917', 'PersonDigitalAccess', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001574', 'Program', 'CreditsRequired', '11') +VALUES ('001917', 'PersonDigitalAccessSpeed', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001575', 'K12StudentCourseSection', 'TuitionFunded', '11') +VALUES ('001917', 'PersonDisability', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001575', 'PersonCareerEducationPlan', 'TuitionFunded', '11') +VALUES ('001917', 'PersonEmailAddress', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001576', 'PersonMilitary', 'RefMilitaryConnectedStudentIndicatorId', '11') +VALUES ('001917', 'PersonFamily', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001577', 'PersonMilitary', 'RefMilitaryActiveStudentIndicatorId', '11') +VALUES ('001917', 'PersonHealth', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001578', 'PersonMilitary', 'RefMilitaryVeteranStudentIndicatorId', '11') +VALUES ('001917', 'PersonHealthBirth', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001579', 'PsInstitution', 'RefAdmissionConsiderationLevelId', '11') +VALUES ('001917', 'PersonHomelessness', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001580', 'PsInstitution', 'RefAdmissionConsiderationTypeId', '11') +VALUES ('001917', 'PersonIdentifier', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001581', 'ELStaffEmployment', 'StaffApprovalIndicator', '11') +VALUES ('001917', 'PersonImmunization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001582', 'ELOrganizationFunds', 'RefBillableBasisTypeId', '11') +VALUES ('001917', 'PersonLanguage', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001583', 'ProgramParticipationCte', 'CareerPathwaysProgramParticipationExitDate', '11') +VALUES ('001917', 'PersonLearningDevice', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001584', 'ProgramParticipationCte', 'CareerPathwaysProgramParticipationStartDate', '11') +VALUES ('001917', 'PersonMaster', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001587', 'PersonCredential', 'CredentialOrLicenseAwardEntity', '11') +VALUES ('001917', 'PersonMilitary', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001588', 'PsStudentEnrollment', 'RefDevelopmentalEducationReferralStatusId', '11') +VALUES ('001917', 'PersonOtherName', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001589', 'PsSection', 'RefDevelopmentalEducationTypeId', '11') +VALUES ('001917', 'PersonPersonalInformationVerification', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001589', 'PsStudentEnrollment', 'RefDevelopmentalEducationTypeId', '11') +VALUES ('001917', 'PersonProgramParticipation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001590', 'K12StudentEnrollment', 'RefDirectoryInformationBlockStatusId', '11') +VALUES ('001917', 'PersonReferral', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001591', 'ELChildService', 'ECEAPEligibility', '11') +VALUES ('001917', 'PersonRelationship', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001592', 'ELChildServicesApplication', 'ELEnrollmentApplicationVerificationDate', '11') +VALUES ('001917', 'PersonStatus', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001593', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentIdentifier', '11') +VALUES ('001917', 'PersonTelephone', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001594', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentName', '11') +VALUES ('001917', 'ProfessionalDevelopmentActivity', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001595', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentType', '11') +VALUES ('001917', 'ProfessionalDevelopmentRequirement', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001597', 'ELChildServicesApplication', 'ELApplicationIdentifier', '11') +VALUES ('001917', 'ProfessionalDevelopmentSession', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001599', 'ELChildServicesApplication', 'ELApplicationRequiredDocument', '11') +VALUES ('001917', 'ProfessionalDevelopmentSessionInstructor', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001600', 'ELChildServicesApplication', 'ELEnrollmentApplicationVerificationReasonType', '11') +VALUES ('001917', 'Program', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001602', 'ELStaffEmployment', 'RefELEducationStaffClassificationId', '11') +VALUES ('001917', 'ProgramParticipationAE', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001603', 'ELOrganizationFunds', 'RefELLocalRevenueSourceId', '11') +VALUES ('001917', 'ProgramParticipationAttainment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001604', 'ELChildService', 'RefELServiceTypeId', '11') +VALUES ('001917', 'ProgramParticipationCte', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001605', 'ELOrganizationFunds', 'RefELStateRevenueSourceId', '11') +VALUES ('001917', 'ProgramParticipationFoodService', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001606', 'ProfessionalDevelopmentSession', 'RefELTrainerCoreKnowledgeAreaId', '11') +VALUES ('001917', 'ProgramParticipationMigrant', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001607', 'PersonDegreeOrCertificate', 'RefEducationVerificationMethodId', '11') +VALUES ('001917', 'ProgramParticipationNeglected', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001609', 'PsStudentFinancialAid', 'RefFinancialAidVeteransBenefitStatusId', '11') +VALUES ('001917', 'ProgramParticipationSpecialEducation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001610', 'PsStudentFinancialAid', 'RefFinancialAidVeteransBenefitTypeId', '11') +VALUES ('001917', 'ProgramParticipationTeacherPrep', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001611', 'FinancialAidApplication', 'FinancialAidYearDesignator', '11') +VALUES ('001917', 'ProgramParticipationTitleI', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001611', 'FinancialAidAward', 'FinancialAidYearDesignator', '11') +VALUES ('001917', 'ProgramParticipationTitleIIILep', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001612', 'PersonFamily', 'IncludedInCountedFamilySize', '11') +VALUES ('001917', 'ProgramParticipationWIOA', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001613', 'PsPriceOfAttendance', 'IPEDSCollectionYearDesignator', '11') +VALUES ('001917', 'ProgramParticipationWIOABarriers', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001614', 'ELServicePartner', 'MemorandumOfUnderstandingEndDate', '11') +VALUES ('001917', 'PsCourse', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001615', 'ELServicePartner', 'MemorandumOfUnderstandingStartDate', '11') +VALUES ('001917', 'PsInstitution', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001616', 'PsProgram', 'RefPSProgramLevelId', '11') +VALUES ('001917', 'PsPriceOfAttendance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001617', 'PsStudentEnrollment', 'RefPSExitOrWithdrawalTypeId', '11') +VALUES ('001917', 'PsProgram', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001618', 'ELChildService', 'EligibilityPriorityPoints', '11') +VALUES ('001917', 'PsSection', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001619', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityStateApprovedStatus', '11') +VALUES ('001917', 'PsSectionLocation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001620', 'PersonCareerEducationPlan', 'ProfessionalDevelopmentPlanApprovedBySupervisor', '11') +VALUES ('001917', 'PsStaffEmployment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001621', 'PersonCareerEducationPlan', 'ProfessionalDevelopmentPlanCompletion', '11') +VALUES ('001917', 'PsStudentAcademicAward', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001622', 'ELOrganizationFunds', 'RefReimbursementTypeId', '11') +VALUES ('001917', 'PsStudentAcademicRecord', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001623', 'ELChildHealth', 'RefScheduledWellChildScreeningId', '11') +VALUES ('001917', 'PsStudentAdmissionTest', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001624', 'ELServicePartner', 'ServicePartnerDescription', '11') +VALUES ('001917', 'PsStudentApplication', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001625', 'ELServicePartner', 'ServicePartnerName', '11') +VALUES ('001917', 'PsStudentCohort', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001627', 'ELChildServicesApplication', 'SitePreferenceRank', '11') +VALUES ('001917', 'PsStudentCourseSectionMark', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001628', 'ProfessionalDevelopmentSession', 'TrainingAndTechnicalAssistanceLevel', '11') +VALUES ('001917', 'PsStudentDemographic', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001629', 'PSStudentProgram', 'RefTransferOutIndicatorId', '11') +VALUES ('001917', 'PsStudentEmployment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001630', 'PersonHealthBirth', 'RefTrimesterWhenPrenatalCareBeganId', '11') +VALUES ('001917', 'PsStudentEnrollment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001631', 'ELChildHealth', 'WellChildScreeningReceivedDate', '11') +VALUES ('001917', 'PsStudentFinancialAid', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001632', 'ELStaffEmployment', 'RefELEmploymentSeparationReasonId', '11') +VALUES ('001917', 'PSStudentProgram', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001633', 'EarlyChildhoodProgramTypeOffered', 'RefCommunityBasedTypeId', '11') +VALUES ('001917', 'PsStudentSection', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001634', 'EarlyChildhoodProgramTypeOffered', 'InclusiveSettingIndicator', '11') +VALUES ('001917', 'QuarterlyEmploymentRecord', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001634', 'IndividualizedProgram', 'InclusiveSettingIndicator', '11') +VALUES ('000041', 'PsStudentApplication', 'HighSchoolStudentClassRank', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001634', 'ServicePlan', 'InclusiveSettingIndicator', '11') +VALUES ('000042', 'K12StudentAcademicRecord', 'ClassRankingDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001635', 'ELChildService', 'ServiceDate', '11') +VALUES ('000043', 'CredentialDefinition', 'RefCipCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001636', 'ELStaffEmployment', 'RefELServiceProfessionalStaffClassificationId', '11') +VALUES ('000043', 'PsCourse', 'RefCipCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001639', 'OrganizationFinancial', 'FiscalYear', '11') +VALUES ('000043', 'PsProgram', 'RefCipCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001640', 'PersonMilitary', 'RefMilitaryBranchId', '11') +VALUES ('000043', 'PsSection', 'RefCipCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001641', 'PsProgram', 'RefDQPCategoriesOfLearningId', '11') +VALUES ('000044', 'PSStudentProgram', 'RefCipUseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001642', 'OrganizationFinancial', 'FiscalPeriodBeginDate', '11') +VALUES ('000045', 'PsProgram', 'RefCipVersionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001643', 'OrganizationFinancial', 'FiscalPeriodEndDate', '11') +VALUES ('000046', 'K12StudentCohort', 'CohortYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001644', 'OrganizationFinancial', 'EncumberedValue', '11') +VALUES ('000047', 'ELStaffEmployment', 'ContractDaysOfServicePerYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001645', 'FinancialAccountProgram', 'Name', '11') +VALUES ('000047', 'K12StaffEmployment', 'ContractDaysOfServicePerYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001646', 'FinancialAccountProgram', 'ProgramNumber', '11') +VALUES ('000048', 'ELOrganization', 'RefControlOfInstitutionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001647', 'OrganizationFinancial', 'Value', '11') +VALUES ('000048', 'PsInstitution', 'RefControlOfInstitutionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001648', 'OrganizationFinancial', 'Date', '11') +VALUES ('000049', 'K12SchoolCorrectiveAction', 'RefCorrectiveActionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001649', 'RoleAttendanceEvent', 'Date', '11') +VALUES ('000050', 'PersonAddress', 'RefCountryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001650', 'K12School', 'K12CharterSchoolManagementOrganizationId', '11') +VALUES ('000051', 'PersonBirthplace', 'RefCountryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001651', 'K12School', 'CharterSchoolContractIdNumber', '11') +VALUES ('000053', 'PsStudentSection', 'AcademicGrade', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001652', 'K12School', 'CharterSchoolContractApprovalDate', '11') +VALUES ('000054', 'CourseSection', 'OrganizationCalendarSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001653', 'K12School', 'CharterSchoolContractRenewalDate', '11') +VALUES ('000054', 'OrganizationCalendarSession', 'BeginDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001654', 'K12StudentEnrollment', 'NSLPDirectCertificationIndicator', '11') +VALUES ('000055', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001655', 'CourseSection', 'MaximumCapacity', '11') +VALUES ('000056', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001656', 'ELChildIndividualizedProgram', 'RefIDEAPartCEligibilityCategoryId', '11') +VALUES ('000057', 'Course', 'RefCourseCreditUnitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001657', 'PersonDetail', 'RefTribalAffiliationId', '11') +VALUES ('000057', 'ProfessionalDevelopmentActivity', 'RefCourseCreditUnitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001658', 'CredentialDefIdentifier', 'Identifier', '11') +VALUES ('000057', 'StaffProfessionalDevelopmentActivity', 'RefCourseCreditUnitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001659', 'IPEDSFinance', 'RefIPEDSFASBFunctionalExpenseId', '11') +VALUES ('000058', 'Course', 'CreditValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001660', 'CredentialAward', 'RevokedDate', '11') +VALUES ('000059', 'OrganizationCalendarSession', 'EndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001661', 'CredentialAward', 'RevokedReason', '11') +VALUES ('000060', 'CteCourse', 'RefCourseGPAApplicabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001662', 'CredentialIssuer', 'RevocationListURL', '11') +VALUES ('000060', 'K12Course', 'RefCourseGPAApplicabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001663', 'OrganizationImage', 'URL', '11') +VALUES ('000060', 'K12StudentCourseSection', 'RefCourseGPAApplicabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001664', 'CredentialAward', 'CompletionDate', '11') +VALUES ('000060', 'PsSection', 'RefCourseGPAApplicabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001665', 'PsStudentAcademicAward', 'RequirementsURL', '11') +VALUES ('000061', 'Course', 'RefCourseLevelCharacteristicsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001666', 'PsStudentAcademicAward', 'RefAcademicAwardPrerequisiteTypeId', '11') +VALUES ('000063', 'PsStudentSection', 'CourseOverrideSchool', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001667', 'Course', 'RepeatabilityMaximumNumber', '11') +VALUES ('000064', 'PsStudentSection', 'QualityPointsEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001668', 'PsStudentAcademicAward', 'RefPESCAwardLevelTypeId', '11') +VALUES ('000065', 'K12StudentCourseSection', 'RefCourseRepeatCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001669', 'CredentialAward', 'EvidenceURL', '11') +VALUES ('000065', 'PsStudentSection', 'RefCourseRepeatCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001670', 'IPEDSFinance', 'RefIPEDSGASBFinancialPositionId', '11') +VALUES ('000066', 'Course', 'SubjectAbbreviation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001671', 'IPEDSFinance', 'RefIPEDSFASBFinancialPositionId', '11') +VALUES ('000069', 'PersonCredential', 'ExpirationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001672', 'IPEDSFinance', 'RefIPEDSGASBRevenueId', '11') +VALUES ('000070', 'PersonCredential', 'IssuanceDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001673', 'IPEDSFinance', 'RefIPEDSFASBRevenueId', '11') +VALUES ('000071', 'PersonCredential', 'RefCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001674', 'IPEDSFinance', 'RefIPEDSFASBRevenueRestrictionId', '11') +VALUES ('000072', 'CteCourse', 'RefCreditTypeEarnedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001675', 'IPEDSFinance', 'RefIPEDSGASBFunctionalExpenseId', '11') +VALUES ('000072', 'K12StudentCourseSection', 'RefCreditTypeEarnedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001676', 'IPEDSFinance', 'RefIPEDSNaturalExpenseId', '11') +VALUES ('000073', 'CteStudentAcademicRecord', 'CreditsAttemptedCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001677', 'IPEDSFinance', 'RefIPEDSGASBScholarshipsandFellowshipsRevenueId', '11') +VALUES ('000073', 'K12StudentAcademicRecord', 'CreditsAttemptedCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001678', 'IPEDSFinance', 'RefIPEDSFASBScholarshipsandFellowshipsRevenueId', '11') +VALUES ('000073', 'PsStudentAcademicRecord', 'CreditsAttemptedCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001679', 'IPEDSFinance', 'RefIPEDSIntercollegiateAthleticsExpensesId', '11') +VALUES ('000074', 'CteStudentAcademicRecord', 'CreditsEarnedCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001680', 'IPEDSFinance', 'RefIPEDSFASBPellGrantTransactionsId', '11') +VALUES ('000074', 'K12StudentAcademicRecord', 'CreditsEarnedCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001681', 'IndividualizedProgramProgressReportPlan', 'RefIPSPProgressReportScheduleId', '11') +VALUES ('000074', 'PsStudentAcademicRecord', 'CreditsEarnedCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001682', 'IndividualizedProgram', 'TransferOfRightsStatement', '11') +VALUES ('000075', 'OrganizationFederalAccountability', 'RefCteGraduationRateInclusionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001683', 'IndividualizedProgram', 'ServicePlanEndDate', '11') +VALUES ('000076', 'RoleAttendanceEvent', 'RefAttendanceStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001684', 'IndividualizedProgramMeeting', 'MeetingDate', '11') +VALUES ('000077', 'PsStudentSection', 'DegreeApplicability', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001685', 'IndividualizedProgramAccommodation', 'Description', '11') +VALUES ('000078', 'PsStudentEnrollment', 'DegreeOrCertificateSeekingStudent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001686', 'IndividualizedProgramAccommodation', 'Applicability', '11') +VALUES ('000079', 'PsStudentDemographic', 'RefDependencyStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001687', 'IndividualizedProgramAssessment', 'IEPAlternativeAssessmentRationale', '11') +VALUES ('000080', 'K12LeaFederalReporting', 'DesegregationOrderOrPlan', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001688', 'IndividualizedProgramAmendment', 'ReasonDescription', '11') +VALUES ('000081', 'AeStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001689', 'IndividualizedProgramAmendment', 'Description', '11') +VALUES ('000081', 'CteStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001690', 'GoalPerformance', 'CurrentPerformanceDescription', '11') +VALUES ('000081', 'K12StudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001691', 'GoalMeasurementCriterion', 'AccuracyPercent', '11') +VALUES ('000081', 'PsStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001692', 'GoalMeasurementCriterion', 'AttemptsCount', '11') +VALUES ('000081', 'StaffCredential', 'DiplomaOrCredentialAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001693', 'GoalMeasurementCriterion', 'Metric', '11') +VALUES ('000081', 'WorkforceProgramParticipation', 'DiplomaOrCredentialAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001694', 'GoalMeasurementCriterion', 'SuccessCount', '11') +VALUES ('000081', 'PersonDegreeOrCertificate', 'AwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001695', 'GoalMeasurement', 'Description', '11') +VALUES ('000082', 'K12StudentDiscipline', 'DisciplinaryActionEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001696', 'GoalMeasurement', 'Schedule', '11') +VALUES ('000083', 'K12StudentDiscipline', 'DisciplinaryActionStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001697', 'GoalMeasurement', 'RefGoalMeasurementTypeId', '11') +VALUES ('000084', 'ProgramParticipationAE', 'DisplacedHomemakerIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001698', 'IndividualizedProgramGoal', 'RefIEPGoalTypeId', '11') +VALUES ('000084', 'ProgramParticipationCte', 'DisplacedHomemakerIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001699', 'IndividualizedProgramProgressReport', 'ProgressReportDate', '11') +VALUES ('000085', 'PsStudentAcademicRecord', 'DualCreditDualEnrollmentCredits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001700', 'IndividualizedProgramProgressReport', 'ProgressDescription', '11') +VALUES ('000086', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001701', 'IndividualizedProgramProgressReport', 'RefIPSPProgressReportTypeId', '11') +VALUES ('000087', 'ELStaffAssignment', 'RefK12StaffClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001701', 'IndividualizedProgramProgressReportPlan', 'RefIPSPProgressReportTypeId', '11') +VALUES ('000087', 'K12StaffAssignment', 'RefK12StaffClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001702', 'GoalPerformance', 'RefGoalStatusTypeId', '11') +VALUES ('000087', 'K12StaffEmployment', 'RefK12StaffClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001703', 'GoalPerformance', 'Status', '11') +VALUES ('000088', 'OrganizationEmail', 'ElectronicMailAddress', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001704', 'ProgramParticipationSpecialEducation', 'IDEAPlacementRationale', '11') +VALUES ('000088', 'PersonEmailAddress', 'EmailAddress', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001705', 'IEPPresentLevel', 'AcademicDescription', '11') +VALUES ('000089', 'OrganizationEmail', 'RefEmailTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001706', 'IEPPresentLevel', 'FunctionalDescription', '11') +VALUES ('000089', 'PersonEmailAddress', 'RefEmailTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001707', 'IEPPresentLevel', 'GeneralEducationDescription', '11') +VALUES ('000091', 'OrganizationFederalAccountability', 'RefElementaryMiddleAdditionalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001708', 'IEPPresentLevel', 'PreschoolDescription', '11') +VALUES ('000092', 'K12StudentEnrollment', 'RefFoodServiceEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001709', 'IEPPresentLevel', 'StudentStrengthsDescription', '11') +VALUES ('000093', 'K12StudentEnrollment', 'RefEndOfTermStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001710', 'IEPPresentLevel', 'ParentConcernDescription', '11') +VALUES ('000094', 'K12StudentEnrollment', 'RefEnrollmentStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001711', 'IEPPresentLevel', 'StudentConcernDescription', '11') +VALUES ('000094', 'RoleStatus', 'RefRoleStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001712', 'ServicePlan', 'DeclinedServicesDate', '11') +VALUES ('000095', 'PsStudentEnrollment', 'RefPsEnrollmentTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001713', 'ServiceFrequency', 'RefFrequencyUnitId', '11') +VALUES ('000096', 'PsStudentEnrollment', 'RefPsEnrollmentStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001714', 'ServiceFrequency', 'InstancesPerCycle', '11') +VALUES ('000098', 'PsStudentEnrollment', 'EntryDateIntoPostsecondary', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001715', 'ServiceFrequency', 'FrequencyLength', '11') +VALUES ('000099', 'K12StudentEnrollment', 'RefEntryType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001716', 'ServiceFrequency', 'DurationInMinutes', '11') +VALUES ('000100', 'K12StudentEnrollment', 'RefEntryGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001717', 'ServicePlan', 'ExtendsOutsideSchoolYear', '11') +VALUES ('000101', 'CourseSection', 'TimeRequiredForCompletion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001718', 'ServicePlan', 'SettingDescription', '11') +VALUES ('000102', 'StaffEvaluation', 'Outcome', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001719', 'IEPAuthorization', 'RefIEPAuthorizationDocumentTypeId', '11') +VALUES ('000103', 'StaffEvaluation', 'Scale', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001720', 'AuthorizationDocument', 'RefAuthorizerTypeId', '11') +VALUES ('000104', 'StaffEvaluation', 'ScoreOrRating', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001721', 'AuthorizationDocument', 'AcceptanceIndicator', '11') +VALUES ('000105', 'StaffEvaluation', 'System', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001722', 'AuthorizationDocument', 'DecisionExplanation', '11') +VALUES ('000106', 'PsStudentDemographic', 'RefCohortExclusionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001723', 'IEPAuthorizationRejected', 'PortionDescription', '11') +VALUES ('000108', 'ELEnrollment', 'RefExitOrWithdrawalStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001724', 'IEPAuthorizationRejected', 'PortionExplanation', '11') +VALUES ('000108', 'K12StudentCourseSection', 'RefExitOrWithdrawalStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001725', 'AuthorizationDocument', 'AuthorizationDate', '11') +VALUES ('000108', 'K12StudentEnrollment', 'RefExitOrWithdrawalStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001726', 'IndividualizedProgramEligibility', 'ConsentToEvaluateIndicator', '11') +VALUES ('000110', 'K12StudentEnrollment', 'RefExitOrWithdrawalTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001727', 'IndividualizedProgramEligibility', 'ConsentToEvaluateDate', '11') +VALUES ('000112', 'FinancialAidAward', 'FinancialAidAwardAmount', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001728', 'IndividualizedProgramEligibilityEvaluation', 'RefIEPEligibilityEvaluationTypeId', '11') +VALUES ('000113', 'FinancialAidAward', 'RefFinancialAidAwardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001729', 'IDEAEligibilityEvaluationCategory', 'RefIDEAEligibilityEvaluationCategoryId', '11') +VALUES ('000115', 'PersonDetail', 'FirstName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001730', 'EligibilityEvaluation', 'Description', '11') +VALUES ('000117', 'PsStudentEnrollment', 'FirstTimePostsecondaryStudent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001731', 'EligibilityEvaluation', 'EvaluationDate', '11') +VALUES ('000118', 'ELStaffAssignment', 'FullTimeEquivalency', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001732', 'IndividualizedProgramEligibility', 'ParentObservations', '11') +VALUES ('000118', 'K12StaffAssignment', 'FullTimeEquivalency', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001733', 'PersonDisability', 'RefIDEADisabilityTypeId', '11') +VALUES ('000118', 'StaffEmployment', 'FullTimeEquivalency', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001734', 'CredentialAward', 'AdvancedStandingDescription', '11') +VALUES ('000120', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001735', 'CredentialAward', 'AdvancedStandingURL', '11') +VALUES ('000121', 'PersonDetail', 'GenerationCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001736', 'CredentialDefinition', 'AlternateName', '11') +VALUES ('000122', 'PersonProgramParticipation', 'ParticipationStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001737', 'CredentialAward', 'ApproverName', '11') +VALUES ('000123', 'K12StudentAcademicRecord', 'RefGpaWeightedIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001738', 'CredentialDefCriteria', 'RefCredentialDefAssessMethodTypeId', '11') +VALUES ('000123', 'PsStudentApplication', 'RefGpaWeightedIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001739', 'CredentialDefIdentifier', 'RefCredentialIdentifierSystemId', '11') +VALUES ('000124', 'K12StudentCourseSection', 'GradeEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001740', 'CredentialDefinition', 'RefCredentialDefStatusTypeId', '11') +VALUES ('000124', 'K12StudentCourseSectionMark', 'GradeEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001741', 'CredentialDefCriteria', 'EstimatedDuration', '11') +VALUES ('000125', 'K12StudentCourseSection', 'RefGradeLevelWhenCourseTakenId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001742', 'CredentialDefinition', 'CredentialNAICSIndustryType', '11') +VALUES ('000125', 'K12StudentGraduationPlan', 'RefGradeLevelWhenCourseTakenId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001743', 'CredentialDefinition', 'JurisdictionRegion', '11') +VALUES ('000126', 'AssessmentRegistration', 'RefGradeLevelToBeAssessedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001744', 'CredentialDefinition', 'JurisdictionRegionException', '11') +VALUES ('000126', 'AssessmentRegistration', 'RefGradeLevelWhenAssessedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001745', 'CredentialDefinition', 'Keywords', '11') +VALUES ('000127', 'PsStudentAcademicRecord', 'GradePointAverage', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001746', 'CredentialDefCriteria', 'MaximumDuration', '11') +VALUES ('000128', 'K12StudentAcademicRecord', 'GradePointAverageCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001747', 'CredentialDefCriteria', 'MinimumAge', '11') +VALUES ('000128', 'PsStudentAcademicRecord', 'GradePointAverageCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001748', 'CredentialDefCriteria', 'MinimumDuration', '11') +VALUES ('000288', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001749', 'CredentialDefinition', 'RefCredentialDefIntendedPurposeTypeId', '11') +VALUES ('000714', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001750', 'OrganizationDetail', 'RegionGeoJSON', '11') +VALUES ('000781', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001751', 'CredentialAward', 'RevokedIndicator', '11') +VALUES ('000826', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'AltName', '11') +VALUES ('000128', 'PsStudentApplication', 'GradePointAverageCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'ChangedInThisVersionInd', '11') +VALUES ('000129', 'K12StudentSession', 'GradePointAverageGivenSession', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'ChangeNotes', '11') +VALUES ('000130', 'K12StudentAcademicRecord', 'GradePointsEarnedCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'Definition', '11') +VALUES ('000131', 'K12LeaGradeOffered', 'RefGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'ElementName', '11') +VALUES ('000131', 'K12SchoolGradeOffered', 'RefGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'Format', '11') +VALUES ('000132', 'K12StudentCohort', 'GraduationRateSurveyCohortYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'GlobalID', '11') +VALUES ('000133', 'K12StudentCohort', 'GraduationRateSurveyIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'HasOptionSet', '11') +VALUES ('000134', 'OrganizationFederalAccountability', 'RefGunFreeSchoolsActReportingStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'TermID', '11') +VALUES ('000135', 'K12LeaFederalReporting', 'HarassmentOrBullyingPolicy', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'URL', '11') +VALUES ('000136', 'StaffCompensation', 'StaffCompensationHealthBenefits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'UsageNotes', '11') +VALUES ('000137', 'CteCourse', 'HighSchoolCourseRequirement', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'Version', '11') +VALUES ('000137', 'K12Course', 'HighSchoolCourseRequirement', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDStoNDSMapping', 'ColumnName', '11') +VALUES ('000138', 'AeStudentAcademicRecord', 'RefHighSchoolDiplomaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDStoNDSMapping', 'GlobalID', '11') +VALUES ('000138', 'K12StudentAcademicRecord', 'RefHighSchoolDiplomaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDStoNDSMapping', 'TableName', '11') +VALUES ('000140', 'OrganizationFederalAccountability', 'RefHighSchoolGraduationRateIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDStoNDSMapping', 'Version', '11') +VALUES ('000141', 'PersonDetail', 'RefHighestEducationLevelCompletedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Activity', 'ActivityId', '11') +VALUES ('000141', 'PersonFamily', 'RefHighestEducationLevelCompletedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Activity', 'DataCollectionId', '11') +VALUES ('000142', 'K12StaffAssignment', 'HighlyQualifiedTeacherIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Activity', 'OrganizationId', '11') +VALUES ('000143', 'StaffEmployment', 'HireDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Activity', 'RecordStatusId', '11') +VALUES ('000144', 'PersonDetail', 'HispanicLatinoEthnicity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ActivityRecognition', 'ActivityRecognitionId', '11') +VALUES ('000146', 'PersonHomelessness', 'RefHomelessNighttimeResidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ActivityRecognition', 'DataCollectionId', '11') +VALUES ('000149', 'PersonHomelessness', 'HomelessnessStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ActivityRecognition', 'OrganizationPersonRoleId', '11') +VALUES ('000150', 'K12StudentAcademicHonor', 'HonorDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ActivityRecognition', 'RecordStatusId', '11') +VALUES ('000164', 'K12School', 'RefIncreasedLearningTimeTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeCourse', 'AeCourseId', '11') +VALUES ('000164', 'PsInstitution', 'RefIncreasedLearningTimeTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeCourse', 'DataCollectionId', '11') +VALUES ('000165', 'PsStudentEnrollment', 'InitialEnrollmentTerm', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeCourse', 'OrganizationId', '11') +VALUES ('000167', 'OrganizationTelephone', 'RefInstitutionTelephoneTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeCourse', 'RecordStatusId', '11') +VALUES ('000168', 'PsStudentEnrollment', 'InstructionalActivityHoursAttempted', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeProvider', 'AeProviderId', '11') +VALUES ('000169', 'PsStudentEnrollment', 'RefInstructionalActivityHoursId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeProvider', 'DataCollectionId', '11') +VALUES ('000170', 'K12LeaFederalReporting', 'RefIntegratedTechnologyStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeProvider', 'OrganizationId', '11') +VALUES ('000171', 'ProgramParticipationMigrant', 'LastQualifyingMoveDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeProvider', 'RecordStatusId', '11') +VALUES ('000172', 'PersonDetail', 'LastName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStaff', 'AeStaffId', '11') +VALUES ('000173', 'K12Lea', 'RefLeaImprovementStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStaff', 'DataCollectionId', '11') +VALUES ('000174', 'OrganizationOperationalStatus', 'RefOperationalStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStaff', 'OrganizationPersonRoleId', '11') +VALUES ('000175', 'K12Lea', 'SupervisoryUnionIdentificationNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStaff', 'RecordStatusId', '11') +VALUES ('000178', 'AeProvider', 'RefLevelOfInstitutionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentAcademicRecord', 'AeStudentAcademicRecordId', '11') +VALUES ('000178', 'PsInstitution', 'RefLevelOfInstitutionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentAcademicRecord', 'DataCollectionId', '11') +VALUES ('000181', 'K12SchoolStatus', 'RefMagnetSpecialProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentAcademicRecord', 'OrganizationPersonRoleId', '11') +VALUES ('000182', 'K12StudentCourseSectionMark', 'MarkingPeriodName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentAcademicRecord', 'RecordStatusId', '11') +VALUES ('000183', 'K12StudentCourseSectionMark', 'MidTermMark', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentEmployment', 'AeStudentEmploymentId', '11') +VALUES ('000184', 'PersonDetail', 'MiddleName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentEmployment', 'DataCollectionId', '11') +VALUES ('000186', 'ProgramParticipationMigrant', 'RefMepServiceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentEmployment', 'OrganizationPersonRoleId', '11') +VALUES ('000187', 'K12ProgramOrService', 'RefMepSessionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentEmployment', 'RecordStatusId', '11') +VALUES ('000188', 'K12StaffAssignment', 'RefMepStaffCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'ApipInteractionId', '11') +VALUES ('000190', 'LocationAddress', 'CountyName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'AssessmentItemApipId', '11') +VALUES ('000190', 'PersonAddress', 'AddressCountyName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'DataCollectionId', '11') +VALUES ('000191', 'PersonDegreeOrCertificate', 'NameOfInstitution', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'RecordStatusId', '11') +VALUES ('000194', 'ProgramParticipationNeglected', 'RefNeglectedOrDelinquentProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'SequenceNumber', '11') +VALUES ('000196', 'PersonDetail', 'RefVisaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Application', 'ApplicationId', '11') +VALUES ('000197', 'PsProgram', 'NormalLengthTimeForCompletion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Application', 'DataCollectionId', '11') +VALUES ('000198', 'PsProgram', 'RefTimeForCompletionUnitsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Application', 'RecordStatusId', '11') +VALUES ('000199', 'K12StudentCourseSection', 'NumberOfCreditsAttempted', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment', 'AssessmentId', '11') +VALUES ('000199', 'PsStudentAcademicRecord', 'NumberOfCreditsAttempted', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment', 'DataCollectionId', '11') +VALUES ('000199', 'PsStudentSection', 'NumberOfCreditsAttempted', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment', 'RecordStatusId', '11') +VALUES ('000200', 'K12StudentCourseSection', 'NumberOfCreditsEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'Assessment_AssessmentAdministrationId', '11') +VALUES ('000200', 'PsStudentSection', 'NumberOfCreditsEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'AssessmentAdministrationId', '11') +VALUES ('000200', 'StaffProfessionalDevelopmentActivity', 'NumberOfCreditsEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'AssessmentId', '11') +VALUES ('000201', 'RoleAttendance', 'NumberOfDaysAbsent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'DataCollectionId', '11') +VALUES ('000202', 'ELEnrollment', 'NumberOfDaysInAttendance', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'RecordStatusId', '11') +VALUES ('000202', 'RoleAttendance', 'NumberOfDaysInAttendance', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAccommodation', 'AssessmentAccommodationId', '11') +VALUES ('000205', 'StaffCompensation', 'StaffCompensationOtherBenefits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAccommodation', 'DataCollectionId', '11') +VALUES ('000206', 'PersonOtherName', 'OtherName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAccommodation', 'RecordStatusId', '11') +VALUES ('000207', 'StaffCredential', 'RefParaprofessionalQualificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'AssessmentAdministrationId', '11') +VALUES ('000208', 'OrganizationFederalAccountability', 'RefParticipationStatusMathId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'AssessmentId', '11') +VALUES ('000209', 'OrganizationFederalAccountability', 'RefParticipationStatusRlaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'DataCollectionId', '11') +VALUES ('000210', 'OrganizationFederalAccountability', 'PersistentlyDangerousStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'RecordStatusId', '11') +VALUES ('000211', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'RefAssessmentReportingMethodId', '11') +VALUES ('000212', 'PersonDetail', 'Prefix', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'AssessmentAdministration_OrganizationId', '11') +VALUES ('000213', 'StaffEmployment', 'PositionTitle', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'AssessmentAdministrationId', '11') +VALUES ('000214', 'LocationAddress', 'PostalCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'DataCollectionId', '11') +VALUES ('000214', 'PersonAddress', 'PostalCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'OrganizationId', '11') +VALUES ('000216', 'K12LeaPreKEligibility', 'RefPrekindergartenEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'RecordStatusId', '11') +VALUES ('000217', 'K12LeaPreKEligibleAgesIDEA', 'RefPreKEligibleAgesNonIDEAId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAsset', 'AssessmentAssetId', '11') +VALUES ('000218', 'PersonDisability', 'PrimaryDisabilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAsset', 'DataCollectionId', '11') +VALUES ('000219', 'OrganizationTelephone', 'PrimaryTelephoneNumberIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAsset', 'LearningResourceId', '11') +VALUES ('000219', 'PersonTelephone', 'PrimaryTelephoneNumberIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAsset', 'RecordStatusId', '11') +VALUES ('000220', 'ELStaffAssignment', 'RefProfessionalEducationJobClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'AssessmentELDevelopmentalDomainId', '11') +VALUES ('000220', 'K12StaffAssignment', 'RefProfessionalEducationJobClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'AssessmentId', '11') +VALUES ('000221', 'OrganizationFederalAccountability', 'RefProficiencyTargetStatusMathId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'DataCollectionId', '11') +VALUES ('000222', 'PersonProgramParticipation', 'RefProgramExitReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'RecordStatusId', '11') +VALUES ('000223', 'PsProgram', 'ProgramLengthHours', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'RefAssessmentELDevelopmentalDomainId', '11') +VALUES ('000224', 'PsProgram', 'RefProgramLengthHoursTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'AssessmentFormId', '11') +VALUES ('000225', 'OrganizationProgramType', 'RefProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'AssessmentId', '11') +VALUES ('000226', 'K12StudentAcademicRecord', 'ProjectedGraduationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'DataCollectionId', '11') +VALUES ('000227', 'K12Lea', 'RefPublicSchoolChoiceStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'LearningResourceId', '11') +VALUES ('000228', 'AssessmentRegistration', 'RefAssessmentReasonNotTestedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'RecordStatusId', '11') +VALUES ('000229', 'ActivityRecognition', 'RefActivityRecognitionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentAssetId', '11') +VALUES ('000230', 'OrganizationFederalAccountability', 'RefReconstitutedStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentForm_AssessmentAssetId', '11') +VALUES ('000231', 'CourseSection', 'RelatedCompetencyDefinitions', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentFormId', '11') +VALUES ('000232', 'K12SchoolStatus', 'RefRestructuringActionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'DataCollectionId', '11') +VALUES ('000233', 'StaffCompensation', 'StaffCompensationRetirementBenefits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'RecordStatusId', '11') +VALUES ('000234', 'K12StaffEmployment', 'SalaryForTeachingAssignmentOnlyIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentForm_AssessmentFormSectionId', '11') +VALUES ('000238', 'K12SchoolImprovement', 'RefSchoolImprovementFundsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentFormId', '11') +VALUES ('000239', 'K12SchoolImprovement', 'RefSigInterventionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentFormSectionId', '11') +VALUES ('000240', 'K12SchoolImprovement', 'RefSchoolImprovementStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'DataCollectionId', '11') +VALUES ('000241', 'ELOrganization', 'RefSchoolLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'RecordStatusId', '11') +VALUES ('000241', 'K12School', 'RefSchoolLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'AssessmentFormSectionId', '11') +VALUES ('000242', 'K12School', 'RefSchoolTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'ChildOf_FormSectionId', '11') +VALUES ('000243', 'OrganizationCalendar', 'CalendarYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'DataCollectionId', '11') +VALUES ('000244', 'OrganizationCalendarSession', 'InstructionalMinutes', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'LearningResourceId', '11') +VALUES ('000245', 'AssessmentResult', 'ScoreValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'RecordStatusId', '11') +VALUES ('000250', 'Course', 'SCEDSequenceOfCourse', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentAssetId', '11') +VALUES ('000252', 'OrganizationCalendarSession', 'Designator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentFormSection_AssessmentAssetId', '11') +VALUES ('000252', 'PsPriceOfAttendance', 'SessionDesignator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentFormSectionId', '11') +VALUES ('000254', 'OrganizationCalendarSession', 'RefSessionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'DataCollectionId', '11') +VALUES ('000255', 'PersonDetail', 'RefSexId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'RecordStatusId', '11') +VALUES ('000258', 'CourseSection', 'RefSingleSexClassStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentFormSectionId', '11') +VALUES ('000260', 'ProgramParticipationSpecialEducation', 'RefSpecialEducationExitReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentFormSectionItemId', '11') +VALUES ('000261', 'ELStaffAssignment', 'SpecialEducationParaprofessional', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentItemId', '11') +VALUES ('000261', 'K12StaffAssignment', 'SpecialEducationParaprofessional', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'DataCollectionId', '11') +VALUES ('000262', 'ELStaffAssignment', 'SpecialEducationRelatedServicesPersonnel', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'RecordStatusId', '11') +VALUES ('000262', 'K12StaffAssignment', 'SpecialEducationRelatedServicesPersonnel', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'AssessmentItemId', '11') +VALUES ('000263', 'ProgramParticipationSpecialEducation', 'SpecialEducationServicesExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'DataCollectionId', '11') +VALUES ('000264', 'ELStaffAssignment', 'SpecialEducationTeacher', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'LearningResourceId', '11') +VALUES ('000264', 'K12StaffAssignment', 'SpecialEducationTeacher', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'RecordStatusId', '11') +VALUES ('000265', 'PsStudentAdmissionTest', 'StandardizedAdmissionTestScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'RubricId', '11') +VALUES ('000266', 'PsStudentAdmissionTest', 'RefStandardizedAdmissionTestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApip', 'AssessmentItemApipId', '11') +VALUES ('000267', 'PersonAddress', 'RefStateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApip', 'AssessmentItemId', '11') +VALUES ('000268', 'PersonDetail', 'RefStateOfResidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApip', 'DataCollectionId', '11') +VALUES ('000269', 'LocationAddress', 'StreetNumberAndName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApip', 'RecordStatusId', '11') +VALUES ('000269', 'PersonAddress', 'StreetNumberAndName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'AslIndicator', '11') +VALUES ('000271', 'RoleAttendance', 'AttendanceRate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'AslOnDemandIndicator', '11') +VALUES ('000272', 'PsStudentEnrollment', 'RefPsStudentLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'AssessmentItemApipDescriptionId', '11') +VALUES ('000273', 'IndividualizedProgram', 'RefStudentSupportServiceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'AssessmentItemApipId', '11') +VALUES ('000273', 'OrganizationService', 'RefStudentSupportServiceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'BrailleIndicator', '11') +VALUES ('000273', 'ServiceProvided', 'RefStudentSupportServiceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ChunkingActivateByDefaultIndicator', '11') +VALUES ('000274', 'AssessmentSubtest', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ChunkingAssignedSupportIndicator', '11') +VALUES ('000275', 'AssessmentSubtest', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'CognitiveGuidanceActivateByDefaultIndicator', '11') +VALUES ('000277', 'ProgramParticipationTeacherPrep', 'RefTeachingCredentialBasisId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'CognitiveGuidanceAssignedSupportIndicator', '11') +VALUES ('000277', 'StaffCredential', 'RefTeachingCredentialBasisId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'DataCollectionId', '11') +VALUES ('000278', 'ProgramParticipationTeacherPrep', 'RefTeachingCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'GraphicsOnlyIndicator', '11') +VALUES ('000278', 'StaffCredential', 'RefTeachingCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'KeywordEmphasisActivateByDefaultIndicator', '11') +VALUES ('000279', 'OrganizationTelephone', 'TelephoneNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'KeywordEmphasisAssignedSupportIndicator', '11') +VALUES ('000279', 'PersonTelephone', 'TelephoneNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'KeywordTranslationsActivateByDefaultIndicator', '11') +VALUES ('000280', 'PersonTelephone', 'RefPersonTelephoneNumberTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'KeywordTranslationsAssignedSupportIndicator', '11') +VALUES ('000281', 'ProgramParticipationTitleI', 'RefTitleIIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'NegativesRemovedActivateByDefaultIndicator', '11') +VALUES ('000282', 'K12ProgramOrService', 'RefTitleIInstructionalServicesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'NegativesRemovedAssignedSupportIndicator', '11') +VALUES ('000283', 'ELStaffAssignment', 'RefTitleIProgramStaffCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'NonVisualIndicator', '11') +VALUES ('000283', 'K12StaffAssignment', 'RefTitleIProgramStaffCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'RecordStatusId', '11') +VALUES ('000284', 'K12ProgramOrService', 'RefTitleIProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ReducedAnswersActivateByDefaultIndicator', '11') +VALUES ('000285', 'K12SchoolStatus', 'RefTitleISchoolStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ReducedAnswersAssignedSupportIndicator', '11') +VALUES ('000289', 'K12LeaTitleISupportService', 'RefK12LeaTitleISupportServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'RefHazardTypeId', '11') +VALUES ('000292', 'PsStudentFinancialAid', 'TitleIVParticipantAndRecipient', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'RefKeywordTranslationLanguageId', '11') +VALUES ('000293', 'StaffCompensation', 'StaffCompensationTotalBenefits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'RefSupportToolTypeId', '11') +VALUES ('000294', 'K12StudentAcademicRecord', 'TotalNumberInClass', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ScaffoldingActivateByDefaultIndicator', '11') +VALUES ('000294', 'PsStudentApplication', 'HighSchoolGraduatingClassSize', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ScaffoldingAssignedSupportIndicator', '11') +VALUES ('000295', 'StaffCompensation', 'StaffCompensationTotalSalary', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'SignedEnglishIndicator', '11') +VALUES ('000296', 'PsStudentEnrollment', 'RefTransferReadyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'SignedEnglishOnDemandIndicator', '11') +VALUES ('000297', 'PsStudentDemographic', 'RefTuitionResidencyTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'TextGraphicsIndicator', '11') +VALUES ('000299', 'PersonDetail', 'RefUSCitizenshipStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'TextOnlyIndicator', '11') +VALUES ('000302', 'StaffExperience', 'YearsOfPriorTeachingExperience', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'TextOnlyOnDemandIndicator', '11') +VALUES ('000304', 'PersonFamily', 'RefELProgramEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemCharacteristic', 'AssessmentItemCharacteristicId', '11') +VALUES ('000305', 'PersonDetail', 'RefProofOfResidencyTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemCharacteristic', 'AssessmentItemId', '11') +VALUES ('000305', 'PersonFamily', 'RefProofOfResidencyTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemCharacteristic', 'DataCollectionId', '11') +VALUES ('000306', 'PersonImmunization', 'ImmunizationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemCharacteristic', 'RecordStatusId', '11') +VALUES ('000307', 'RequiredImmunization', 'RefImmunizationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemPossibleResponse', 'AssessmentItemId', '11') +VALUES ('000308', 'PersonHealth', 'RefVisionScreeningStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemPossibleResponse', 'AssessmentItemPossibleResponseId', '11') +VALUES ('000309', 'PersonHealth', 'RefHearingScreeningStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemPossibleResponse', 'DataCollectionId', '11') +VALUES ('000310', 'PersonHealth', 'RefDentalScreeningStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemPossibleResponse', 'RecordStatusId', '11') +VALUES ('000312', 'PersonHealthBirth', 'WeightAtBirth', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'AssessmentItemId', '11') +VALUES ('000313', 'PersonHealthBirth', 'WeeksOfGestation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'AssessmentItemResponseId', '11') +VALUES ('000314', 'ELChildDevelopmentalAssessment', 'RefChildDevelopmentalScreeningStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'AssessmentParticipantSessionId', '11') +VALUES ('000315', 'ELChildDevelopmentalAssessment', 'RefDevelopmentalEvaluationFindingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'DataCollectionId', '11') +VALUES ('000316', 'PersonLanguage', 'RefLanguageUseTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'RecordStatusId', '11') +VALUES ('000317', 'PersonLanguage', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponseTheory', 'AssessmentItemId', '11') +VALUES ('000320', 'IndividualizedProgram', 'RefIndividualizedProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponseTheory', 'AssessmentItemResponseTheoryId', '11') +VALUES ('000321', 'ELChildService', 'RefEarlyChildhoodServicesReceivedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponseTheory', 'DataCollectionId', '11') +VALUES ('000321', 'ServiceProvided', 'RefServicesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponseTheory', 'RecordStatusId', '11') +VALUES ('000323', 'ELChildServicesApplication', 'ApplicationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemRubricCriterionResult', 'AssessmentItemResponseId', '11') +VALUES ('000323', 'OrganizationPersonRoleApplication', 'ApplicationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemRubricCriterionResult', 'DataCollectionId', '11') +VALUES ('000324', 'ELEnrollment', 'EnrollmentDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemRubricCriterionResult', 'RecordStatusId', '11') +VALUES ('000325', 'ELEnrollment', 'RefFoodServiceParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemRubricCriterionResult', 'RubricCriterionLevelId', '11') +VALUES ('000325', 'ProgramParticipationFoodService', 'RefSchoolFoodServiceProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'AssessmentId', '11') +VALUES ('000329', 'PersonRelationship', 'CustodialRelationshipIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'AssessmentLanguageId', '11') +VALUES ('000330', 'PersonFamily', 'NumberOfPeopleInFamily', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'DataCollectionId', '11') +VALUES ('000331', 'PersonFamily', 'NumberOfPeopleInHousehold', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'RecordStatusId', '11') +VALUES ('000332', 'PersonFamily', 'FamilyIncome', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'RefLanguageId', '11') +VALUES ('000333', 'PersonFamily', 'RefFamilyIncomeSourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'AssessmentId', '11') +VALUES ('000334', 'PersonFamily', 'RefIncomeCalculationMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'AssessmentLevelsForWhichDesignedId', '11') +VALUES ('000335', 'PersonHealth', 'RefHealthInsuranceCoverageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'DataCollectionId', '11') +VALUES ('000336', 'PersonHealth', 'RefDentalInsuranceCoverageTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'RecordStatusId', '11') +VALUES ('000341', 'ELStaffEducation', 'RefELLevelOfSpecializationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'RefGradeLevelId', '11') +VALUES ('000342', 'PersonDegreeOrCertificate', 'DegreeOrCertificateTitleOrSubject', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipContent', 'AssessmentNeedApipContentId', '11') +VALUES ('000343', 'PersonDegreeOrCertificate', 'RefDegreeOrCertificateTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipContent', 'AssessmentPersonalNeedsProfileContentId', '11') +VALUES ('000345', 'EarlyChildhoodCredential', 'RefEarlyChildhoodCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipContent', 'DataCollectionId', '11') +VALUES ('000346', 'RoleStatus', 'StatusStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipContent', 'RecordStatusId', '11') +VALUES ('000347', 'ELStaffEmployment', 'RefEmploymentStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipControl', 'AssessmentNeedApipControlId', '11') +VALUES ('000347', 'K12StaffEmployment', 'RefEmploymentStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipControl', 'AssessmentPersonalNeedsProfileControlId', '11') +VALUES ('000348', 'ELFacilityLicensing', 'InitialLicensingDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipControl', 'DataCollectionId', '11') +VALUES ('000348', 'ELProgramLicensing', 'InitialLicenseDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipControl', 'RecordStatusId', '11') +VALUES ('000349', 'ELFacilityLicensing', 'ContinuingLicenseDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipDisplay', 'AssessmentNeedApipDisplayId', '11') +VALUES ('000349', 'ELProgramLicensing', 'ContinuingLicenseDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipDisplay', 'AssessmentPersonalNeedsProfileDisplayId', '11') +VALUES ('000350', 'ELFacilityLicensing', 'RefLicenseExemptId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipDisplay', 'DataCollectionId', '11') +VALUES ('000350', 'ELProgramLicensing', 'RefLicenseExemptId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipDisplay', 'RecordStatusId', '11') +VALUES ('000351', 'OrganizationOperationalStatus', 'OperationalStatusEffectiveDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedBraille', 'AssessmentNeedBrailleId', '11') +VALUES ('000353', 'ELClassSection', 'RefServiceOptionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedBraille', 'AssessmentPersonalNeedsProfileDisplayId', '11') +VALUES ('000353', 'ELEnrollment', 'RefServiceOptionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedBraille', 'DataCollectionId', '11') +VALUES ('000353', 'ELOrganizationAvailability', 'RefServiceOptionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedBraille', 'RecordStatusId', '11') +VALUES ('000354', 'ELClassSection', 'HoursAvailablePerDay', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentNeedScreenEnhancementId', '11') +VALUES ('000354', 'ELOrganizationAvailability', 'HoursAvailablePerDay', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentPersonalNeedsProfileDisplayId', '11') +VALUES ('000355', 'ELClassSection', 'DaysAvailablePerWeek', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentPersonalNeedsProfileScreenEnhancementId', '11') +VALUES ('000355', 'ELOrganizationAvailability', 'DaysAvailablePerWeek', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'DataCollectionId', '11') +VALUES ('000356', 'ELClassSection', 'RefEnvironmentSettingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'RecordStatusId', '11') +VALUES ('000356', 'ELOrganizationAvailability', 'RefEnvironmentSettingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'AssessmentFormSectionId', '11') +VALUES ('000357', 'ELQualityRatingImprovement', 'RefQrisParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'AssessmentParticipantSessionId', '11') +VALUES ('000358', 'ELQualityRatingImprovement', 'QrisScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'AssessmentRegistrationId', '11') +VALUES ('000361', 'PsStudentEnrollment', 'RefPsEnrollmentAwardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'AssessmentSessionId', '11') +VALUES ('000362', 'ProgramParticipationAE', 'InstructionalActivityHoursCompleted', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'DataCollectionId', '11') +VALUES ('000362', 'PsStudentEnrollment', 'InstructionalActivityHoursCompleted', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'RecordStatusId', '11') +VALUES ('000363', 'FinancialAidAward', 'RefFinancialAidStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentAccommodationId', '11') +VALUES ('000364', 'Classroom', 'ClassroomIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentParticipantSession_AccommodationId', '11') +VALUES ('000364', 'CourseSectionLocation', 'ClassroomId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentParticipantSessionId', '11') +VALUES ('000365', 'Assessment', 'IdentificationSystem', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'DataCollectionId', '11') +VALUES ('000366', 'AssessmentForm', 'FormNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'RecordStatusId', '11') +VALUES ('000367', 'AssessmentSubtest', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPerformanceLevel', 'AssessmentPerformanceLevelId', '11') +VALUES ('000368', 'AssessmentSubtest', 'Abbreviation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPerformanceLevel', 'AssessmentSubtestId', '11') +VALUES ('000369', 'AssessmentResult', 'RefScoreMetricTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPerformanceLevel', 'DataCollectionId', '11') +VALUES ('000369', 'AssessmentSubtest', 'RefScoreMetricTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPerformanceLevel', 'RecordStatusId', '11') +VALUES ('000370', 'AssessmentResult', 'InstructionalRecommendation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'AssessmentNeedsProfileContentId', '11') +VALUES ('000371', 'AssessmentParticipantSession', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'AssessmentPersonalNeedLanguageLearnerId', '11') +VALUES ('000382', 'Assessment', 'Objective', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'DataCollectionId', '11') +VALUES ('000383', 'AssessmentAccommodation', 'RefAssessmentAccommodationCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'RecordStatusId', '11') +VALUES ('000384', 'AssessmentAdministration', 'AssessmentSecureIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedScreenReader', 'AssessmentPersonalNeedScreenReaderId', '11') +VALUES ('000384', 'AssessmentForm', 'AssessmentSecureIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedScreenReader', 'AssessmentPersonalNeedsProfileDisplayId', '11') +VALUES ('000385', 'AssessmentAccommodation', 'RefAccommodationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedScreenReader', 'DataCollectionId', '11') +VALUES ('000385', 'IndividualizedProgramAccommodation', 'RefAccommodationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedScreenReader', 'RecordStatusId', '11') +VALUES ('000386', 'AssessmentParticipantSession', 'RefAssessmentPlatformTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfile', 'AssessmentPersonalNeedsProfileId', '11') +VALUES ('000388', 'AssessmentSubtest', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfile', 'DataCollectionId', '11') +VALUES ('000389', 'AssessmentParticipantSession', 'RefAssessmentSessionSpecialCircumstanceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfile', 'RecordStatusId', '11') +VALUES ('000389', 'AssessmentSession', 'RefAssessmentSessionSpecialCircumstanceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'AssessmentPersonalNeedsProfileContentId', '11') +VALUES ('000390', 'AssessmentItem', 'RefAssessmentItemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'AssessmentPersonalNeedsProfileId', '11') +VALUES ('000391', 'AssessmentItem', 'Difficulty', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ChunkingActivateByDefaultIndicator', '11') +VALUES ('000392', 'AssessmentItemCharacteristic', 'RefAssessmentItemCharacteristicTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ChunkingAssignedSupportIndicator', '11') +VALUES ('000393', 'AssessmentItemCharacteristic', 'ResponseChoicePattern', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'CognitiveGuidanceActivateByDefaultIndicator', '11') +VALUES ('000395', 'AssessmentSubtest', 'MaximumValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'CognitiveGuidanceAssignedSupportIndicator', '11') +VALUES ('000396', 'AssessmentSubtest', 'MinimumValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'DataCollectionId', '11') +VALUES ('000397', 'AssessmentSubtest', 'OptimalValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordEmphasisActivateByDefaultIndicator', '11') +VALUES ('000398', 'AssessmentItem', 'DistractorAnalysis', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordEmphasisAssignedSupportIndicator', '11') +VALUES ('000400', 'AssessmentItem', 'Stem', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordTranslationsActivateByDefaultIndicator', '11') +VALUES ('000402', 'AssessmentItemResponse', 'Duration', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordTranslationsAssignedSupportIndicator', '11') +VALUES ('000403', 'AssessmentItem', 'AllottedTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'NegativesRemovedActivateByDefaultIndicator', '11') +VALUES ('000405', 'AssessmentItemResponse', 'RefAssessItemResponseStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'NegativesRemovedAssignedSupportIndicator', '11') +VALUES ('000406', 'AssessmentItemResponse', 'AidSetUsed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'RecordStatusId', '11') +VALUES ('000407', 'AssessmentParticipantSession', 'TimeAssessed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ReducedAnswersActivateByDefaultIndicator', '11') +VALUES ('000408', 'AssessmentSession', 'AllottedTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ReducedAnswersAssignedSupportIndicator', '11') +VALUES ('000415', 'Assessment', 'RefAssessmentTypeAdministeredId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ScaffoldingActivateByDefaultIndicator', '11') +VALUES ('000417', 'AssessmentPerformanceLevel', 'ScoreMetric', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ScaffoldingAssignedSupportIndicator', '11') +VALUES ('000418', 'AssessmentPerformanceLevel', 'LowerCutScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'AssessmentPersonalNeedsProfileControlId', '11') +VALUES ('000419', 'AssessmentPerformanceLevel', 'UpperCutScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'AssessmentPersonalNeedsProfileId', '11') +VALUES ('000421', 'Rubric', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'DataCollectionId', '11') +VALUES ('000422', 'Rubric', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'RecordStatusId', '11') +VALUES ('000423', 'Rubric', 'UrlReference', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'AssessmentPersonalNeedsProfileDisplayId', '11') +VALUES ('000424', 'K12Sea', 'RefStateANSICodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'AssessmentPersonalNeedsProfileId', '11') +VALUES ('000425', 'PersonRelationship', 'RefPersonRelationshipTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'DataCollectionId', '11') +VALUES ('000426', 'PersonBirthplace', 'City', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'RecordStatusId', '11') +VALUES ('000427', 'PersonBirthplace', 'RefStateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'AssessmentPersonalNeedsProfileId', '11') +VALUES ('000428', 'PersonDetail', 'BirthdateVerification', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'AssessmentPersonalNeedsProfileScreenEnhancementId', '11') +VALUES ('000428', 'ProgramParticipationMigrant', 'BirthdateVerification', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'DataCollectionId', '11') +VALUES ('000429', 'ProgramParticipationMigrant', 'RefContinuationOfServicesReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordStatusId', '11') +VALUES ('000430', 'ProgramParticipationMigrant', 'MepEligibilityExpirationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'AssessmentAdministrationId', '11') +VALUES ('000431', 'PersonHealthBirth', 'MultipleBirthIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'AssessmentFormId', '11') +VALUES ('000432', 'ProgramParticipationMigrant', 'MigrantStudentQualifyingArrivalDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'AssessmentRegistrationId', '11') +VALUES ('000433', 'ProgramParticipationMigrant', 'QualifyingMoveFromCity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'CourseSectionId', '11') +VALUES ('000434', 'ProgramParticipationMigrant', 'RefQualifyingMoveFromCountryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'DataCollectionId', '11') +VALUES ('000435', 'ProgramParticipationMigrant', 'RefQualifyingMoveFromStateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'LeaOrganizationId', '11') +VALUES ('000436', 'ProgramParticipationMigrant', 'DesignatedGraduationSchoolId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'OrganizationId', '11') +VALUES ('000437', 'ProgramParticipationMigrant', 'RefMepEnrollmentTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'PersonId', '11') +VALUES ('000438', 'ProgramParticipationMigrant', 'ImmunizationRecordFlag', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'RecordStatusId', '11') +VALUES ('000439', 'PersonHealth', 'RefMedicalAlertIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'SchoolOrganizationId', '11') +VALUES ('000440', 'ProgramParticipationMigrant', 'RefMepProjectBasedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentAccommodationId', '11') +VALUES ('000442', 'OrganizationFederalAccountability', 'AypAppealProcessDesignation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentRegistration_AccommodationId', '11') +VALUES ('000443', 'OrganizationFederalAccountability', 'AypAppealChangedDesignation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentRegistrationId', '11') +VALUES ('000444', 'OrganizationFederalAccountability', 'AypAppealProcessDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'DataCollectionId', '11') +VALUES ('000445', 'K12SeaFederalFunds', 'StateTransferabilityOfFunds', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'RecordStatusId', '11') +VALUES ('000447', 'K12TitleIIILanguageInstruction', 'RefTitleIIILanguageInstructionProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'AssessmentRegistrationId', '11') +VALUES ('000447', 'ProgramParticipationTitleIIILep', 'RefTitleIIILanguageInstructionProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'AssessmentResultId', '11') +VALUES ('000448', 'Course', 'RefInstructionLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'AssessmentSubtestId', '11') +VALUES ('000448', 'CourseSection', 'RefInstructionLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'DataCollectionId', '11') +VALUES ('000449', 'K12LeaFederalReporting', 'RefBarrierToEducatingHomelessId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'RecordStatusId', '11') +VALUES ('000453', 'K12LeaFederalReporting', 'StateAssessStandardsFunding', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentPerformanceLevelId', '11') +VALUES ('000454', 'K12LeaFederalReporting', 'StateAssessmentAdminFunding', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentResult_PerformanceLevelId', '11') +VALUES ('000455', 'K12SeaFederalFunds', 'DateStateReceivedTitleIIIAllocation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentResultId', '11') +VALUES ('000456', 'K12SeaFederalFunds', 'DateTitleIIIFundsAvailableToSubgrantees', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'DataCollectionId', '11') +VALUES ('000457', 'K12SeaFederalFunds', 'NumberOfDaysForTitleIIISubgrants', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'RecordStatusId', '11') +VALUES ('000461', 'K12LeaFederalFunds', 'InnovativeDollarsSpent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'AssessmentResultId', '11') +VALUES ('000462', 'K12LeaFederalFunds', 'InnovativeDollarsSpentOnStrategicPriorities', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'AssessmentResultRubricCriterionResultId', '11') +VALUES ('000463', 'K12ProgramOrService', 'RefMepProjectTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'DataCollectionId', '11') +VALUES ('000464', 'K12LeaFederalFunds', 'InnovativeProgramsFundsReceived', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'RecordStatusId', '11') +VALUES ('000466', 'K12StudentLiteracyAssessment', 'RefLiteracyAssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'RubricCriterionLevelId', '11') +VALUES ('000467', 'K12StudentLiteracyAssessment', 'LiteracyGoalMetStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'AssessmentAdministrationId', '11') +VALUES ('000468', 'K12StudentLiteracyAssessment', 'LiteracyPostTestStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'AssessmentSessionId', '11') +VALUES ('000469', 'K12StudentLiteracyAssessment', 'LiteracyPreTestStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'DataCollectionId', '11') +VALUES ('000471', 'K12LeaSafeDrugFree', 'IndicatorName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'Lea_OrganizationId', '11') +VALUES ('000472', 'K12LeaSafeDrugFree', 'Instrument', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'OrganizationId', '11') +VALUES ('000473', 'K12LeaSafeDrugFree', 'CollectionFrequency', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'RecordStatusId', '11') +VALUES ('000474', 'K12LeaSafeDrugFree', 'MostRecentCollection', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'School_OrganizationId', '11') +VALUES ('000475', 'K12LeaSafeDrugFree', 'Target', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentParticipantSessionId', '11') +VALUES ('000476', 'K12LeaSafeDrugFree', 'Performance', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentSessionId', '11') +VALUES ('000477', 'K12LeaSafeDrugFree', 'Baseline', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentSessionStaffRoleId', '11') +VALUES ('000478', 'K12LeaSafeDrugFree', 'BaselineYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'DataCollectionId', '11') +VALUES ('000481', 'K12SchoolImprovement', 'SchoolImprovementExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'PersonId', '11') +VALUES ('000482', 'K12LeaFederalReporting', 'TerminatedTitleIIIProgramFailure', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'RecordStatusId', '11') +VALUES ('000484', 'ProgramParticipationNeglected', 'ObtainedEmployment', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'AssessmentFormId', '11') +VALUES ('000485', 'K12ProgramOrService', 'ProgramInMultiplePurposeFacility', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'AssessmentSubtestId', '11') +VALUES ('000486', 'K12LeaFederalFunds', 'RefRlisProgramUseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'ChildOf_AssessmentSubtestId', '11') +VALUES ('000487', 'K12LeaTitleIIIProfessionalDevelopment', 'RefTitleIIIProfessionalDevelopmentTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'DataCollectionId', '11') +VALUES ('000488', 'K12StudentDiscipline', 'RefDisciplinaryActionTakenId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'RecordStatusId', '11') +VALUES ('000490', 'K12ProgramOrService', 'RefPrekindergartenDailyLengthId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentItemId', '11') +VALUES ('000491', 'K12ProgramOrService', 'RefKindergartenDailyLengthId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentSubtestId', '11') +VALUES ('000494', 'OrganizationCalendar', 'CalendarCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentSubtestItemId', '11') +VALUES ('000495', 'OrganizationCalendar', 'CalendarDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'DataCollectionId', '11') +VALUES ('000496', 'OrganizationCalendarSession', 'DaysInSession', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'RecordStatusId', '11') +VALUES ('000497', 'OrganizationCalendarSession', 'FirstInstructionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'AssessmentSubtest_CompetencyDefinitionId', '11') +VALUES ('000498', 'OrganizationCalendarSession', 'LastInstructionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'AssessmentSubtestId', '11') +VALUES ('000499', 'Course', 'InstructionalMinutes', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'CompetencyDefinitionId', '11') +VALUES ('000500', 'OrganizationCalendarSession', 'MinutesPerDay', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'DataCollectionId', '11') +VALUES ('000501', 'Incident', 'IncidentIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'RecordStatusId', '11') +VALUES ('000502', 'Incident', 'IncidentDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'AssessmentSubtestELDevelopmentalDomainId', '11') +VALUES ('000503', 'Incident', 'IncidentTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'AssessmentSubtestId', '11') +VALUES ('000504', 'Facility', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'DataCollectionId', '11') +VALUES ('000505', 'Incident', 'IncidentCost', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'RecordStatusId', '11') +VALUES ('000506', 'Incident', 'RefIncidentReporterTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'RefAssessmentELDevelopmentalDomainId', '11') +VALUES ('000507', 'Incident', 'IncidentReporterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'AssessmentSubTestId', '11') +VALUES ('000508', 'Incident', 'IncidentDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'AssessmentSubtestLevelsForWhichDesignedId', '11') +VALUES ('000509', 'Incident', 'RefIncidentBehaviorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'DataCollectionId', '11') +VALUES ('000510', 'Incident', 'RefIncidentInjuryTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordStatusId', '11') +VALUES ('000511', 'K12StudentDiscipline', 'DurationOfDisciplinaryAction', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'RefGradeId', '11') +VALUES ('000512', 'K12StudentDiscipline', 'RelatedToZeroTolerancePolicy', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authentication', 'AuthenticationId', '11') +VALUES ('000513', 'K12StudentDiscipline', 'FullYearExpulsion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authentication', 'DataCollectionId', '11') +VALUES ('000514', 'K12StudentDiscipline', 'ShortenedExpulsion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authentication', 'OrganizationPersonRoleId', '11') +VALUES ('000515', 'Incident', 'RefIncidentTimeDescriptionCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authentication', 'RecordStatusId', '11') +VALUES ('000517', 'Course', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'ApplicationId', '11') +VALUES ('000518', 'CteCourse', 'CoreAcademicCourse', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'AuthorizationId', '11') +VALUES ('000518', 'K12Course', 'CoreAcademicCourse', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'DataCollectionId', '11') +VALUES ('000519', 'CourseSectionSchedule', 'ClassBeginningTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'OrganizationPersonRoleId', '11') +VALUES ('000520', 'CourseSectionSchedule', 'ClassEndingTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'RecordStatusId', '11') +VALUES ('000521', 'CourseSectionSchedule', 'ClassMeetingDays', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AuthorizationDocument', 'AuthorizationDocumentId', '11') +VALUES ('000522', 'CourseSectionSchedule', 'ClassPeriod', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AuthorizationDocument', 'DataCollectionId', '11') +VALUES ('000523', 'CourseSectionSchedule', 'TimeDayIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AuthorizationDocument', 'OrganizationPersonRoleId', '11') +VALUES ('000524', 'CourseSectionLocation', 'RefInstructionLocationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AuthorizationDocument', 'RecordStatusId', '11') +VALUES ('000525', 'K12StaffAssignment', 'PrimaryAssignment', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpace', 'BuildingSpaceId', '11') +VALUES ('000528', 'ELStaffAssignment', 'ItinerantTeacher', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpace', 'DataCollectionId', '11') +VALUES ('000528', 'K12StaffAssignment', 'ItinerantTeacher', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpace', 'FacilityId', '11') +VALUES ('000529', 'K12StudentEnrollment', 'FirstEntryDateIntoUSSchool', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpace', 'RecordStatusId', '11') +VALUES ('000530', 'K12StudentEnrollment', 'RefPromotionReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpaceUtilization', 'BuildingSpaceId', '11') +VALUES ('000531', 'K12StudentEnrollment', 'RefNonPromotionReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpaceUtilization', 'BuildingSpaceUtilizationId', '11') +VALUES ('000532', 'ELEnrollment', 'RefPublicSchoolResidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpaceUtilization', 'DataCollectionId', '11') +VALUES ('000532', 'K12StudentEnrollment', 'RefPublicSchoolResidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpaceUtilization', 'RecordStatusId', '11') +VALUES ('000535', 'ProgramParticipationSpecialEducation', 'RefIDEAEducationalEnvironmentSchoolAgeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemCategory', 'BuildingSystemCategoryId', '11') +VALUES ('000536', 'ProgramParticipationTitleIIILep', 'RefTitleIIIAccountabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemCategory', 'BuildingSystemComponentId', '11') +VALUES ('000537', 'ELOrganization', 'RefLeaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemCategory', 'DataCollectionId', '11') +VALUES ('000537', 'K12Lea', 'RefLeaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemCategory', 'RecordStatusId', '11') +VALUES ('000538', 'K12StudentDiscipline', 'RefDisciplineMethodOfCwdId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'BuildingSystemComponentId', '11') +VALUES ('000539', 'K12StudentDiscipline', 'RefIdeaInterimRemovalReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'DataCollectionId', '11') +VALUES ('000540', 'AssessmentRegistration', 'RefAssessmentReasonNotCompletingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'Description', '11') +VALUES ('000541', 'K12StudentDiscipline', 'RefIdeaInterimRemovalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'FacilityId', '11') +VALUES ('000542', 'K12SchoolStatus', 'ConsolidatedMepFundsStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'RecordStatusId', '11') +VALUES ('000543', 'ELStaffEmployment', 'MepPersonnelIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponentService', 'BuildingSystemComponentId', '11') +VALUES ('000543', 'K12StaffEmployment', 'MepPersonnelIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponentService', 'BuildingSystemComponentServiceId', '11') +VALUES ('000545', 'K12StudentDiscipline', 'RefDisciplineReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponentService', 'DataCollectionId', '11') +VALUES ('000546', 'StaffCredential', 'TechnologySkillsStandardsMet', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponentService', 'RecordStatusId', '11') +VALUES ('000547', 'FinancialAccount', 'RefFederalProgramCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Classroom', 'ClassroomId', '11') +VALUES ('000552', 'ELStaffEmployment', 'TitleITargetedAssistanceStaffFunded', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Classroom', 'DataCollectionId', '11') +VALUES ('000552', 'K12StaffEmployment', 'TitleITargetedAssistanceStaffFunded', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Classroom', 'LocationId', '11') +VALUES ('000553', 'OrganizationFederalAccountability', 'RefProficiencyTargetStatusRLAId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Classroom', 'RecordStatusId', '11') +VALUES ('000555', 'K12StudentDiscipline', 'RefDisciplineMethodFirearmsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'CompetencyDefAssociationId', '11') +VALUES ('000556', 'K12StudentDiscipline', 'RefIDEADisciplineMethodFirearmId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'CompetencyDefinitionId', '11') +VALUES ('000557', 'Incident', 'RefFirearmTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'DataCollectionId', '11') +VALUES ('000558', 'ELStaffAssignment', 'RefSpecialEducationStaffCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'RecordStatusId', '11') +VALUES ('000558', 'K12StaffAssignment', 'RefSpecialEducationStaffCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'RefEntityTypeId', '11') +VALUES ('000558', 'ServiceStaff', 'RefSpecialEducationStaffCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefEducationLevel', 'CompetencyDefEducationLevelId', '11') +VALUES ('000559', 'ELEnrollment', 'RefIDEAEnvironmentELId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefEducationLevel', 'CompetencyDefinitionId', '11') +VALUES ('000559', 'ProgramParticipationSpecialEducation', 'RefIDEAEducationalEnvironmentECId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefEducationLevel', 'DataCollectionId', '11') +VALUES ('000561', 'K12StudentAcademicRecord', 'RefProgressLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefEducationLevel', 'RecordStatusId', '11') +VALUES ('000561', 'K12StudentCourseSection', 'RefProgressLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'ChildOf_CompetencyDefinitionId', '11') +VALUES ('000562', 'ProgramParticipationMigrant', 'PrioritizedForServices', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'CompetencyDefinitionId', '11') +VALUES ('000563', 'ProgramParticipationMigrant', 'ContinuationOfServicesStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'CompetencyFrameworkId', '11') +VALUES ('000564', 'ELStaffAssignment', 'RefSpecialEducationAgeGroupTaughtId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'DataCollectionId', '11') +VALUES ('000564', 'K12StaffAssignment', 'RefSpecialEducationAgeGroupTaughtId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'RecordStatusId', '11') +VALUES ('000566', 'K12StudentAcademicRecord', 'RefTechnologyLiteracyStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencyDefinition_CompetencySetId', '11') +VALUES ('000567', 'K12LeaFederalFunds', 'SesFundsSpent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencyDefinitionId', '11') +VALUES ('000568', 'K12LeaFederalFunds', 'PublicSchoolChoiceFundsSpent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencySetId', '11') +VALUES ('000571', 'K12StudentAcademicRecord', 'RefPreAndPostTestIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'DataCollectionId', '11') +VALUES ('000571', 'K12StudentCourseSection', 'RefPreAndPostTestIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'RecordStatusId', '11') +VALUES ('000572', 'AssessmentResult', 'RefAssessmentPretestOutcomeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyFramework', 'CompetencyFrameworkId', '11') +VALUES ('000573', 'AssessmentItemResponse', 'RefProficiencyStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyFramework', 'DataCollectionId', '11') +VALUES ('000574', 'K12LeaFederalFunds', 'SesSchoolChoice20PercentObligation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyFramework', 'RecordStatusId', '11') +VALUES ('000576', 'AssessmentResult', 'IncludedInAypCalculation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet', 'ChildOf_CompetencySet', '11') +VALUES ('000577', 'PersonDisability', 'DisabilityStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet', 'CompetencySetId', '11') +VALUES ('000578', 'K12StudentDiscipline', 'EducationalServicesAfterRemoval', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet', 'DataCollectionId', '11') +VALUES ('000580', 'ProgramParticipationCte', 'SingleParentOrSinglePregnantWoman', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet', 'RecordStatusId', '11') +VALUES ('000584', 'K12StudentCohort', 'CohortGraduationYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'CompetencySet_RubricId', '11') +VALUES ('000584', 'PsStudentCohort', 'CohortGraduationYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'CompetencySetId', '11') +VALUES ('000585', 'ELOrganization', 'RefStatePovertyDesignationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'DataCollectionId', '11') +VALUES ('000585', 'K12School', 'RefStatePovertyDesignationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'RecordStatusId', '11') +VALUES ('000586', 'K12StudentAcademicRecord', 'RefPsEnrollmentActionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'RubricId', '11') +VALUES ('000587', 'ELOrganization', 'RefInternetAccessId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'CompetencySet_RubricCriterionId', '11') +VALUES ('000587', 'K12SchoolStatus', 'RefInternetAccessId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'CompetencySetId', '11') +VALUES ('000588', 'ProgramParticipationCte', 'RefNonTraditionalGenderStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'DataCollectionId', '11') +VALUES ('000589', 'StaffEvaluation', 'RefStaffPerformanceLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'RecordStatusId', '11') +VALUES ('000592', 'ProgramParticipationCte', 'CteParticipant', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'RubricCriterionId', '11') +VALUES ('000593', 'ProgramParticipationCte', 'CteNonTraditionalCompletion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CoreKnowledgeArea', 'CoreKnowledgeAreaId', '11') +VALUES ('000594', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CoreKnowledgeArea', 'DataCollectionId', '11') +VALUES ('000595', 'ELOrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CoreKnowledgeArea', 'ProfessionalDevelopmentActivityId', '11') +VALUES ('000596', 'CourseSection', 'RefAdditionalCreditTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CoreKnowledgeArea', 'RecordStatusId', '11') +VALUES ('000596', 'CteCourse', 'RefAdditionalCreditTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Course', 'CourseId', '11') +VALUES ('000596', 'K12Course', 'RefAdditionalCreditTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Course', 'DataCollectionId', '11') +VALUES ('000596', 'K12StudentCourseSection', 'RefAdditionalCreditTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Course', 'OrganizationId', '11') +VALUES ('000597', 'AssessmentParticipantSession', 'LocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Course', 'RecordStatusId', '11') +VALUES ('000597', 'AssessmentSession', 'Location', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'CourseId', '11') +VALUES ('000598', 'OrganizationCalendarDay', 'AlternateDayName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'CourseSectionId', '11') +VALUES ('000599', 'RoleAttendanceEvent', 'RefAbsentAttendanceCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'DataCollectionId', '11') +VALUES ('000600', 'RoleAttendanceEvent', 'RefPresentAttendanceCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'OrganizationId', '11') +VALUES ('000601', 'RoleAttendanceEvent', 'RefAttendanceEventTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'RecordStatusId', '11') +VALUES ('000602', 'Facility', 'BuildingSiteNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'RefCreditTypeEarnedId', '11') +VALUES ('000602', 'LocationAddress', 'BuildingSiteNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionAssessmentReporting', 'CourseSectionAssessmentReportingId', '11') +VALUES ('000603', 'OrganizationCalendarEvent', 'RefCalendarEventType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionAssessmentReporting', 'CourseSectionId', '11') +VALUES ('000605', 'AssessmentSubtest', 'RefContentStandardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionAssessmentReporting', 'DataCollectionId', '11') +VALUES ('000606', 'LocationAddress', 'Latitude', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionAssessmentReporting', 'RecordStatusId', '11') +VALUES ('000606', 'PersonAddress', 'Latitude', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLevel', 'CourseSectionId', '11') +VALUES ('000607', 'LocationAddress', 'Longitude', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLevel', 'CourseSectionLevelId', '11') +VALUES ('000607', 'PersonAddress', 'Longitude', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLevel', 'DataCollectionId', '11') +VALUES ('000609', 'K12StudentDiscipline', 'RefDisciplineLengthDifferenceReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLevel', 'RecordStatusId', '11') +VALUES ('000610', 'K12StudentEnrollment', 'DisplacedStudentStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLocation', 'CourseSectionId', '11') +VALUES ('000610', 'PsStudentEnrollment', 'DisplacedStudentStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLocation', 'CourseSectionLocationId', '11') +VALUES ('000611', 'OrganizationCalendarCrisis', 'Code', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLocation', 'DataCollectionId', '11') +VALUES ('000612', 'OrganizationCalendarCrisis', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLocation', 'RecordStatusId', '11') +VALUES ('000613', 'OrganizationCalendarCrisis', 'Type', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionSchedule', 'CourseSectionId', '11') +VALUES ('000614', 'OrganizationCalendarCrisis', 'StartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionSchedule', 'CourseSectionScheduleId', '11') +VALUES ('000616', 'K12StudentCourseSection', 'GradeValueQualifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionSchedule', 'DataCollectionId', '11') +VALUES ('000616', 'K12StudentCourseSectionMark', 'GradeValueQualifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionSchedule', 'RecordStatusId', '11') +VALUES ('000617', 'Incident', 'RefIncidentLocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'CredentialAwardId', '11') +VALUES ('000618', 'PersonAddress', 'RefPersonalInformationVerificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'CredentialDefinitionId', '11') +VALUES ('000618', 'PersonIdentifier', 'RefPersonalInformationVerificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'CredentialIssuerId', '11') +VALUES ('000618', 'PersonPersonalInformationVerification', 'RefPersonalInformationVerificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'DataCollectionId', '11') +VALUES ('000620', 'StaffEmployment', 'RefEmploymentSeparationReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'OrganizationId', '11') +VALUES ('000621', 'StaffEmployment', 'RefEmploymentSeparationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'PersonId', '11') +VALUES ('000622', 'ELStaffAssignment', 'RefClassroomPositionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'RecordStatusId', '11') +VALUES ('000622', 'K12StaffAssignment', 'RefClassroomPositionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'CredentialAwardCreditId', '11') +VALUES ('000624', 'RoleAttendanceEvent', 'RefLeaveEventTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'CredentialAwardId', '11') +VALUES ('000627', 'Incident', 'RefIncidentBehaviorSecondaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'CredentialCriteriaCourseId', '11') +VALUES ('000630', 'AssessmentItem', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'DataCollectionId', '11') +VALUES ('000632', 'Facility', 'BuildingName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'OrganizationPersonRoleId', '11') +VALUES ('000633', 'ELClassSectionService', 'YoungestAgeServed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'RecordStatusId', '11') +VALUES ('000633', 'OrganizationPopulationServed', 'YoungestAgeServed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'AssessmentResultId', '11') +VALUES ('000634', 'PersonOtherName', 'RefOtherNameTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'CredentialAwardEvidenceId', '11') +VALUES ('000635', 'ProgramParticipationNeglected', 'AchievementIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'CredentialAwardId', '11') +VALUES ('000636', 'ProgramParticipationNeglected', 'OutcomeIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'DataCollectionId', '11') +VALUES ('000647', 'K12StaffAssignment', 'TeacherOfRecord', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'RecordStatusId', '11') +VALUES ('000648', 'ELStaffAssignment', 'RefTeachingAssignmentRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'CourseId', '11') +VALUES ('000648', 'K12StaffAssignment', 'RefTeachingAssignmentRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'CredentialCriteriaCourseId', '11') +VALUES ('000649', 'ELStaffAssignment', 'ContributionPercentage', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'CredentialDefCriteriaId', '11') +VALUES ('000649', 'K12StaffAssignment', 'ContributionPercentage', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'DataCollectionId', '11') +VALUES ('000650', 'K12StudentCourseSection', 'RefCourseSectionEntryTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'RecordStatusId', '11') +VALUES ('000651', 'K12StudentCourseSection', 'ExitWithdrawalDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'CredentialDefAgentId', '11') +VALUES ('000652', 'K12StudentCourseSection', 'RefCourseSectionExitTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'DataCollectionId', '11') +VALUES ('000653', 'K12LeaFederalReporting', 'InterscholasticSportsMaleOnly', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'OrganizationId', '11') +VALUES ('000654', 'K12LeaFederalReporting', 'InterscholasticSportsFemaleOnly', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'PersonId', '11') +VALUES ('000655', 'K12LeaFederalReporting', 'InterscholasticTeamsMaleOnly', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'RecordStatusId', '11') +VALUES ('000656', 'K12LeaFederalReporting', 'InterscholasticTeamsFemaleOnly', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefAgentCredentialId', '11') +VALUES ('000657', 'K12LeaFederalReporting', 'InterscholasticSportParticipantsMale', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefAgentId', '11') +VALUES ('000658', 'K12LeaFederalReporting', 'InterscholasticSportParticipantsFemale', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefinitionId', '11') +VALUES ('000689', 'CompetencyDefinition', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'DataCollectionId', '11') +VALUES ('000690', 'CompetencyDefinition', 'Statement', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'RecordStatusId', '11') +VALUES ('000691', 'CompetencyDefinition', 'Type', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCategory', 'CredentialDefCategoryId', '11') +VALUES ('000692', 'CompetencyDefinition', 'Code', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCategory', 'CredentialDefinitionId', '11') +VALUES ('000693', 'CompetencyFramework', 'URI', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCategory', 'DataCollectionId', '11') +VALUES ('000694', 'CompetencyFramework', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCategory', 'RecordStatusId', '11') +VALUES ('000695', 'CompetencyFramework', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'CompetencySetId', '11') +VALUES ('000696', 'CompetencyFramework', 'Creator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'CredentialDefCriteriaId', '11') +VALUES ('000697', 'CompetencyFramework', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'CredentialDefinitionId', '11') +VALUES ('000698', 'CompetencyFramework', 'RefCompetencyFrameworkPublicationStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'DataCollectionId', '11') +VALUES ('000699', 'CompetencyFramework', 'Jurisdiction', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'RecordStatusId', '11') +VALUES ('000700', 'CompetencyFramework', 'ValidStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefIdentifier', 'CredentialDefIdentifierId', '11') +VALUES ('000701', 'CompetencyFramework', 'ValidEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefIdentifier', 'CredentialDefinitionId', '11') +VALUES ('000702', 'CompetencyFramework', 'Subject', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefIdentifier', 'DataCollectionId', '11') +VALUES ('000703', 'PersonHealth', 'VisionScreeningDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefIdentifier', 'RecordStatusId', '11') +VALUES ('000704', 'OrganizationWebsite', 'Website', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefinition', 'CredentialDefinitionId', '11') +VALUES ('000705', 'PersonHealth', 'HearingScreeningDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefinition', 'DataCollectionId', '11') +VALUES ('000706', 'PersonHealth', 'DentalScreeningDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefinition', 'RecordStatusId', '11') +VALUES ('000707', 'AssessmentItem', 'MaximumScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialIssuer', 'CredentialIssuerId', '11') +VALUES ('000708', 'AssessmentItem', 'MinimumScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialIssuer', 'DataCollectionId', '11') +VALUES ('000709', 'AssessmentItemCharacteristic', 'Value', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialIssuer', 'OrganizationId', '11') +VALUES ('000710', 'K12School', 'RefCharterSchoolTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialIssuer', 'RecordStatusId', '11') +VALUES ('000711', 'K12StudentCohort', 'CohortDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'CredentialDefinitionId', '11') +VALUES ('000712', 'CteCourse', 'RefCurriculumFrameworkTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'CredentialIssuerId', '11') +VALUES ('000712', 'K12Course', 'RefCurriculumFrameworkTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'CredentialOfferedId', '11') +VALUES ('000713', 'K12StudentAcademicRecord', 'RefHighSchoolDiplomaDistinctionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'DataCollectionId', '11') +VALUES ('000715', 'CompetencyDefAssociation', 'AssociatedEntityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'RecordStatusId', '11') +VALUES ('000716', 'StaffCredential', 'RefProgramSponsorTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteCourse', 'CourseId', '11') +VALUES ('000717', 'AssessmentPerformanceLevel', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteCourse', 'CteCourseId', '11') +VALUES ('000718', 'AssessmentPerformanceLevel', 'Label', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteCourse', 'DataCollectionId', '11') +VALUES ('000719', 'AssessmentSubtest', 'Rules', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteCourse', 'RecordStatusId', '11') +VALUES ('000724', 'AssessmentItemResponse', 'ScoreValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteStudentAcademicRecord', 'CteStudentAcademicRecordId', '11') +VALUES ('000725', 'CompetencyDefEducationLevel', 'RefEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteStudentAcademicRecord', 'DataCollectionId', '11') +VALUES ('000726', 'PsStudentAcademicRecord', 'AcademicYearDesignator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteStudentAcademicRecord', 'OrganizationPersonRoleId', '11') +VALUES ('000727', 'OrganizationCalendarSession', 'RefAcademicTermDesignatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteStudentAcademicRecord', 'RecordStatusId', '11') +VALUES ('000727', 'PsStudentAcademicRecord', 'RefAcademicTermDesignatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'DataCollection', 'DataCollectionId', '11') +VALUES ('000728', 'PsStudentEnrollment', 'RefDistanceEducationCourseEnrollmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodCredential', 'DataCollectionId', '11') +VALUES ('000729', 'ELOrganization', 'RefPredominantCalendarSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodCredential', 'EarlyChildhoodCredentialId', '11') +VALUES ('000729', 'PsInstitution', 'RefPredominantCalendarSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodCredential', 'PersonCredentialId', '11') +VALUES ('000730', 'StaffEmployment', 'StandardOccupationalClassification', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodCredential', 'RecordStatusId', '11') +VALUES ('000731', 'ELStaffEmployment', 'RefIpedsOccupationalCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'DataCollectionId', '11') +VALUES ('000731', 'PsStaffEmployment', 'RefIpedsOccupationalCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'EarlyChildhoodProgramTypeOfferedId', '11') +VALUES ('000732', 'PsStaffEmployment', 'InstructionalStaffStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'OrganizationId', '11') +VALUES ('000733', 'PsStaffEmployment', 'MedicalSchoolStaffStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'RecordStatusId', '11') +VALUES ('000734', 'PsStaffEmployment', 'FacultyStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'DataCollectionId', '11') +VALUES ('000735', 'ELStaffEmployment', 'RefInstructionalStaffContractLengthId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'ELChildDemographicId', '11') +VALUES ('000735', 'PsStaffEmployment', 'RefInstructionalStaffContractLengthId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'FosterCareEndDate', '11') +VALUES ('000736', 'ELStaffEmployment', 'RefFullTimeStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'FosterCareStartDate', '11') +VALUES ('000736', 'PsStaffEmployment', 'RefFullTimeStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'PersonId', '11') +VALUES ('000737', 'ELStaffEmployment', 'RefEmploymentContractTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'RecordStatusId', '11') +VALUES ('000737', 'PsStaffEmployment', 'RefEmploymentContractTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDevelopmentalAssessment', 'DataCollectionId', '11') +VALUES ('000738', 'PsInstitution', 'RefTenureSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDevelopmentalAssessment', 'ELChildDevelopmentalAssessmentId', '11') +VALUES ('000739', 'PsStaffEmployment', 'RefInstructionalStaffFacultyTenureId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDevelopmentalAssessment', 'PersonId', '11') +VALUES ('000740', 'PsStaffEmployment', 'RefAcademicRankId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDevelopmentalAssessment', 'RecordStatusId', '11') +VALUES ('000741', 'PsStaffEmployment', 'RefInstructionCreditTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildHealth', 'DataCollectionId', '11') +VALUES ('000742', 'PsStaffEmployment', 'GraduateAssistantStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildHealth', 'ELChildHealthId', '11') +VALUES ('000743', 'PsStaffEmployment', 'RefGraduateAssistantIpedsCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildHealth', 'PersonId', '11') +VALUES ('000744', 'ELStaffEmployment', 'AnnualBaseContractualSalary', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildHealth', 'RecordStatusId', '11') +VALUES ('000744', 'PsStaffEmployment', 'AnnualBaseContractualSalary', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'DataCollectionId', '11') +VALUES ('000745', 'PsPriceOfAttendance', 'TuitionPublished', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'ELChildIndividualizedProgramId', '11') +VALUES ('000746', 'PsPriceOfAttendance', 'RefTuitionUnitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'IndividualizedProgramId', '11') +VALUES ('000747', 'PsPriceOfAttendance', 'RequiredStudentFees', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'PersonId', '11') +VALUES ('000748', 'PsInstitution', 'InstitutionallyControlledHousingStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'RecordStatusId', '11') +VALUES ('000749', 'PsPriceOfAttendance', 'RoomCharges', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildOutcomeSummary', 'DataCollectionId', '11') +VALUES ('000750', 'PsPriceOfAttendance', 'BoardCharges', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildOutcomeSummary', 'ELChildOutcomeSummaryId', '11') +VALUES ('000751', 'PsPriceOfAttendance', 'BooksAndSuppliesCosts', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildOutcomeSummary', 'PersonId', '11') +VALUES ('000752', 'PsPriceOfAttendance', 'OtherStudentExpenses', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildOutcomeSummary', 'RecordStatusId', '11') +VALUES ('000753', 'PsPriceOfAttendance', 'PriceOfAttendance', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildProgramEligibility', 'DataCollectionId', '11') +VALUES ('000754', 'PsPriceOfAttendance', 'ComprehensiveFee', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildProgramEligibility', 'ELChildProgramEligibilityId', '11') +VALUES ('000755', 'PsStudentApplication', 'PostsecondaryApplicant', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildProgramEligibility', 'OrganizationPersonRoleId', '11') +VALUES ('000756', 'PsStudentApplication', 'RefAdmittedStudentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildProgramEligibility', 'RecordStatusId', '11') +VALUES ('000757', 'PsStudentApplication', 'WaitListedStudent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildService', 'DataCollectionId', '11') +VALUES ('000758', 'PsStudentApplication', 'RefGradePointAverageDomainId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildService', 'ELChildServiceId', '11') +VALUES ('000759', 'PsStudentApplication', 'HighSchoolPercentile', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildService', 'OrganizationPersonRoleId', '11') +VALUES ('000760', 'PsStudentEnrollment', 'HousingOnCampus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildService', 'RecordStatusId', '11') +VALUES ('000761', 'PsStudentEnrollment', 'FraternityParticipationStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildServicesApplication', 'DataCollectionId', '11') +VALUES ('000762', 'PsStudentEnrollment', 'SororityParticipationStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildServicesApplication', 'ELChildServicesApplicationId', '11') +VALUES ('000763', 'PsStudentFinancialAid', 'FinancialAidApplicant', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildServicesApplication', 'OrganizationPersonRoleId', '11') +VALUES ('000765', 'PsStudentFinancialAid', 'FinancialNeed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildServicesApplication', 'RecordStatusId', '11') +VALUES ('000766', 'TeacherEducationCredentialExam', 'RefTeacherEducationTestCompanyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'DataCollectionId', '11') +VALUES ('000767', 'ProgramParticipationTeacherPrep', 'RefTeacherPrepEnrollmentStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'ELChildTransitionPlanId', '11') +VALUES ('000768', 'ProgramParticipationTeacherPrep', 'RefTeacherPrepCompleterStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'IndividualizedProgramId', '11') +VALUES ('000769', 'ProgramParticipationTeacherPrep', 'RefAltRouteToCertificationOrLicensureId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'PersonId', '11') +VALUES ('000770', 'ProgramParticipationTeacherPrep', 'RefCriticalTeacherShortageCandidateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'RecordStatusId', '11') +VALUES ('000771', 'ProgramParticipationTeacherPrep', 'RefSupervisedClinicalExperienceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSection', 'DataCollectionId', '11') +VALUES ('000772', 'ProgramParticipationTeacherPrep', 'ClinicalExperienceClockHours', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSection', 'ELClassSectionId', '11') +VALUES ('000773', 'TeacherEducationCredentialExam', 'RefTeacherEducationCredentialExamId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSection', 'OrganizationId', '11') +VALUES ('000774', 'TeacherEducationCredentialExam', 'RefTeacherEducationExamScoreTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSection', 'RecordStatusId', '11') +VALUES ('000779', 'ProgramParticipationAE', 'RefAeFunctioningLevelAtIntakeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSectionService', 'DataCollectionId', '11') +VALUES ('000780', 'ProgramParticipationAE', 'RefAeFunctioningLevelAtPosttestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSectionService', 'ELClassSectionId', '11') +VALUES ('000782', 'ProgramParticipationAE', 'RefAeSpecialProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSectionService', 'ELClassSectionServiceId', '11') +VALUES ('000783', 'AeStudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSectionService', 'RecordStatusId', '11') +VALUES ('000783', 'CteStudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELCourse', 'CourseId', '11') +VALUES ('000783', 'K12StudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELCourse', 'DataCollectionId', '11') +VALUES ('000783', 'PsStudentAcademicRecord', 'RefProfessionalTechCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELCourse', 'ELCourseId', '11') +VALUES ('000783', 'WorkforceProgramParticipation', 'RefProfessionalTechnicalCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELCourse', 'RecordStatusId', '11') +VALUES ('000784', 'ProgramParticipationAE', 'RefAePostsecondaryTransitionActionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'DataCollectionId', '11') +VALUES ('000786', 'AeStaff', 'RefAeStaffClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'ELClassSectionId', '11') +VALUES ('000787', 'PersonFamily', 'FamilyIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'ELEnrollmentId', '11') +VALUES ('000788', 'AeStaff', 'YearsOfPriorAeTeachingExperience', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'OrganizationPersonRoleId', '11') +VALUES ('000788', 'StaffExperience', 'YearsOfPriorAETeachingExperience', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'RecordStatusId', '11') +VALUES ('000789', 'ELStaffEducation', 'ECDegreeOrCertificateHolder', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollmentOtherFunding', 'DataCollectionId', '11') +VALUES ('000790', 'ProgramParticipationAE', 'ProxyContactHours', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollmentOtherFunding', 'ELEnrollmentOtherFundingId', '11') +VALUES ('000792', 'ELStaffEducation', 'TotalCollegeCreditsEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollmentOtherFunding', 'PersonId', '11') +VALUES ('000795', 'RoleStatus', 'StatusEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollmentOtherFunding', 'RecordStatusId', '11') +VALUES ('000796', 'ELStaffEmployment', 'HoursWorkedPerWeek', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELFacilityLicensing', 'DataCollectionId', '11') +VALUES ('000797', 'ELStaffEmployment', 'HourlyWage', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELFacilityLicensing', 'ELFacilityLicensingId', '11') +VALUES ('000798', 'ELStaffEmployment', 'RefWageCollectionMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELFacilityLicensing', 'OrganizationId', '11') +VALUES ('000799', 'ELStaffEmployment', 'UnionMembershipStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELFacilityLicensing', 'RecordStatusId', '11') +VALUES ('000804', 'ProfessionalDevelopmentRequirement', 'RequiredTrainingClockHours', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EligibilityEvaluation', 'DataCollectionId', '11') +VALUES ('000805', 'PersonCredential', 'RefIssuingStateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EligibilityEvaluation', 'EligibilityEvaluationId', '11') +VALUES ('000806', 'ELStaff', 'RefChildDevelopmentAssociateTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EligibilityEvaluation', 'RecordStatusId', '11') +VALUES ('000806', 'StaffCredential', 'RefChildDevAssociateTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganization', 'DataCollectionId', '11') +VALUES ('000809', 'ProfessionalDevelopmentActivity', 'ActivityIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganization', 'ELOrganizationId', '11') +VALUES ('000809', 'StaffProfessionalDevelopmentActivity', 'ActivityIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganization', 'OrganizationId', '11') +VALUES ('000810', 'ProfessionalDevelopmentActivity', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganization', 'RecordStatusId', '11') +VALUES ('000810', 'StaffProfessionalDevelopmentActivity', 'ActivityTitle', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationAvailability', 'DataCollectionId', '11') +VALUES ('000811', 'ProfessionalDevelopmentActivity', 'ScholarshipStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationAvailability', 'ELOrganizationAvailabilityId', '11') +VALUES ('000811', 'StaffProfessionalDevelopmentActivity', 'ScholarshipStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationAvailability', 'OrganizationId', '11') +VALUES ('000812', 'ProfessionalDevelopmentActivity', 'RefProfessionalDevelopmentFinancialSupportId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationAvailability', 'RecordStatusId', '11') +VALUES ('000812', 'StaffProfessionalDevelopmentActivity', 'RefProfessionalDevelopmentFinancialSupportId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationFunds', 'DataCollectionId', '11') +VALUES ('000813', 'CoreKnowledgeArea', 'RefCoreKnowledgeAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationFunds', 'ELOrganizationFundsId', '11') +VALUES ('000816', 'ELStaffEducation', 'SchoolAgeEducationPSCredits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationFunds', 'OrganizationId', '11') +VALUES ('000816', 'ProgramParticipationTeacherPrep', 'SchoolAgeEducationPSCredits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationFunds', 'RecordStatusId', '11') +VALUES ('000818', 'OrganizationAccreditation', 'RefHigherEducationInstitutionAccreditationStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationMonitoring', 'DataCollectionId', '11') +VALUES ('000818', 'PersonDegreeOrCertificate', 'RefHigherEducationInstitutionAccreditationStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationMonitoring', 'ELOrganizationMonitoringId', '11') +VALUES ('000819', 'ELStaffEmployment', 'RefWageVerificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationMonitoring', 'OrganizationId', '11') +VALUES ('000822', 'ELClassSectionService', 'ServesChildrenWithSpecialNeeds', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationMonitoring', 'RecordStatusId', '11') +VALUES ('000823', 'ELClassSectionService', 'ELClassGroupCurriculumType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'DataCollectionId', '11') +VALUES ('000824', 'ELClassSectionService', 'RefELGroupSizeStandardMetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'ELOrganizationStudentResponsibilityId', '11') +VALUES ('000825', 'ELClassSection', 'ELProgramAnnualOperatingWeeks', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'OrganizationPersonRoleId', '11') +VALUES ('000825', 'ELOrganizationAvailability', 'AnnualOperatingWeeks', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'RecordStartDateTime', '11') +VALUES ('000828', 'ELProgramLicensing', 'RefELProgramLicenseStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'RecordStatusId', '11') +VALUES ('000829', 'EarlyChildhoodProgramTypeOffered', 'RefEarlyChildhoodProgramEnrollmentTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELProgramLicensing', 'DataCollectionId', '11') +VALUES ('000830', 'ELQualityRatingImprovement', 'QrisAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELProgramLicensing', 'ELProgramLicensingId', '11') +VALUES ('000831', 'ELQualityRatingImprovement', 'QRISExpirationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELProgramLicensing', 'OrganizationId', '11') +VALUES ('000834', 'ELOrganization', 'RefProfitStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELProgramLicensing', 'RecordStatusId', '11') +VALUES ('000835', 'ELProgramLicensing', 'NumberOfFatalities', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityInitiative', 'DataCollectionId', '11') +VALUES ('000836', 'ELProgramLicensing', 'NumberOfInjuries', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityInitiative', 'ELQualityInitiativeId', '11') +VALUES ('000837', 'ELProgramLicensing', 'LicenseSuspensionStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityInitiative', 'OrganizationId', '11') +VALUES ('000838', 'ELProgramLicensing', 'LicenseRevocationStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityInitiative', 'RecordStatusId', '11') +VALUES ('000840', 'OrganizationAccreditation', 'AccreditationAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityRatingImprovement', 'DataCollectionId', '11') +VALUES ('000841', 'OrganizationAccreditation', 'AccreditationExpirationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityRatingImprovement', 'ELQualityRatingImprovementId', '11') +VALUES ('000842', 'OrganizationPolicy', 'PolicyType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityRatingImprovement', 'OrganizationId', '11') +VALUES ('000843', 'ELQualityRatingImprovement', 'NumberQrisLevels', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityRatingImprovement', 'RecordStatusId', '11') +VALUES ('000844', 'ELOrganizationAvailability', 'NumberOfClassrooms', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELServicePartner', 'DataCollectionId', '11') +VALUES ('000851', 'ELQualityInitiative', 'ProgramHeathSafetyChecklistUseStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELServicePartner', 'ELServicePartnerId', '11') +VALUES ('000852', 'OrganizationPopulationServed', 'RefPopulationServedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELServicePartner', 'OrganizationId', '11') +VALUES ('000857', 'PersonFamily', 'RefCommunicationMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELServicePartner', 'RecordStatusId', '11') +VALUES ('000862', 'LocationAddress', 'RefERSRuralUrbanContinuumCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaff', 'DataCollectionId', '11') +VALUES ('000865', 'ELFacilityLicensing', 'StateLicensedFacilityCapacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaff', 'ELStaffId', '11') +VALUES ('000866', 'OrganizationEmployeeBenefit', 'FullTimeBenefitIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaff', 'OrganizationPersonRoleId', '11') +VALUES ('000866', 'OrganizationEmployeeBenefit', 'RefEmployeeBenefitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaff', 'RecordStatusId', '11') +VALUES ('000867', 'OrganizationEmployeeBenefit', 'PartTimeBenefitIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffAssignment', 'DataCollectionId', '11') +VALUES ('000869', 'CompetencyDefAssociation', 'RefCompetencyDefAssociationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffAssignment', 'ELStaffAssignmentId', '11') +VALUES ('000870', 'CompetencyDefinition', 'TypicalAgeRange', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffAssignment', 'OrganizationPersonRoleId', '11') +VALUES ('000871', 'CompetencyDefAssociation', 'CompetencyDefAssociationIdentifierURI', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffAssignment', 'RecordStatusId', '11') +VALUES ('000872', 'CompetencyDefinition', 'CompetencyDefParentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEducation', 'DataCollectionId', '11') +VALUES ('000873', 'CompetencyDefinition', 'CompetencyDefParentCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEducation', 'ELStaffEducationId', '11') +VALUES ('000874', 'CompetencyDefinition', 'URL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEducation', 'ELStaffId', '11') +VALUES ('000875', 'CompetencyDefinition', 'RefBloomsTaxonomyDomainId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEducation', 'RecordStatusId', '11') +VALUES ('000876', 'CompetencyDefinition', 'RefMultipleIntelligenceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEmployment', 'DataCollectionId', '11') +VALUES ('000877', 'CompetencySet', 'RefCompletionCriteriaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEmployment', 'ELStaffEmploymentId', '11') +VALUES ('000878', 'CompetencySet', 'CompletionCriteriaThreshold', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEmployment', 'RecordStatusId', '11') +VALUES ('000879', 'CompetencyDefAssociation', 'RefLearningResourceCompetencyAlignmentTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEmployment', 'StaffEmploymentId', '11') +VALUES ('000880', 'CompetencyFramework', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Facility', 'DataCollectionId', '11') +VALUES ('000881', 'CompetencyDefinition', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Facility', 'FacilityId', '11') +VALUES ('000882', 'CompetencyFramework', 'License', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Facility', 'OrganizationId', '11') +VALUES ('000883', 'CompetencyDefinition', 'License', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Facility', 'RecordStatusId', '11') +VALUES ('000884', 'CompetencyFramework', 'Publisher', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityAudit', 'DataCollectionId', '11') +VALUES ('000885', 'CompetencyFramework', 'Rights', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityAudit', 'FacilityAuditId', '11') +VALUES ('000886', 'CompetencyFramework', 'RightsHolder', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityAudit', 'FacilityId', '11') +VALUES ('000887', 'CompetencyDefinition', 'ConceptKeyword', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityAudit', 'RecordStatusId', '11') +VALUES ('000888', 'CompetencyDefinition', 'ConceptTerm', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'BuildingSystemComponentId', '11') +VALUES ('000889', 'AssessmentRegistration', 'AssignedByPersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'DataCollectionId', '11') +VALUES ('000890', 'AssessmentResult', 'DescriptiveFeedback', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'FacilityComplianceId', '11') +VALUES ('000891', 'AssessmentItemResponse', 'DescriptiveFeedback', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'FacilityMandateId', '11') +VALUES ('000892', 'CredentialDefCategory', 'Category', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'RecordStatusId', '11') +VALUES ('000893', 'CredentialDefinition', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesign', 'DataCollectionId', '11') +VALUES ('000894', 'CredentialDefinition', 'ImageUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesign', 'FacilityDesignId', '11') +VALUES ('000895', 'CredentialDefinition', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesign', 'FacilityId', '11') +VALUES ('000896', 'CredentialDefCriteria', 'Criteria', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesign', 'RecordStatusId', '11') +VALUES ('000900', 'CredentialIssuer', 'AwardIssuerOriginURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesignConstruction', 'DataCollectionId', '11') +VALUES ('000901', 'CredentialAwardEvidence', 'Statement', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesignConstruction', 'FacilityDesignConstructionId', '11') +VALUES ('000902', 'GoalMeasurement', 'SuccessCriteria', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesignConstruction', 'FacilityDesignId', '11') +VALUES ('000903', 'Goal', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesignConstruction', 'RecordStatusId', '11') +VALUES ('000904', 'AssessmentItemPossibleResponse', 'FeedbackMessage', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityEnergy', 'DataCollectionId', '11') +VALUES ('000905', 'AssessmentItemPossibleResponse', 'SequenceNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityEnergy', 'FacilityEnergyId', '11') +VALUES ('000906', 'AssessmentItem', 'TextComplexityValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityEnergy', 'FacilityId', '11') +VALUES ('000907', 'AssessmentItem', 'RefTextComplexitySystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityEnergy', 'RecordStatusId', '11') +VALUES ('000908', 'AssessmentItemPossibleResponse', 'Value', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinance', 'DataCollectionId', '11') +VALUES ('000910', 'CompetencyDefinition', 'TextComplexitySystem', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinance', 'FacilityFinanceId', '11') +VALUES ('000911', 'LearningResource', 'Url', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinance', 'FacilityId', '11') +VALUES ('000912', 'LearningResource', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinance', 'RecordStatusId', '11') +VALUES ('000913', 'LearningResource', 'SubjectName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'DataCollectionId', '11') +VALUES ('000914', 'LearningResource', 'SubjectCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'FacilityFinancialId', '11') +VALUES ('000915', 'LearningResource', 'SubjectCodeSystem', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'FacilityLeaseId', '11') +VALUES ('000916', 'LearningResource', 'DateCreated', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'FacilityMortgageFeeId', '11') +VALUES ('000917', 'LearningResource', 'Creator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'FacilityMortgageId', '11') +VALUES ('000918', 'LearningResource', 'PublisherName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'OrganizationFinancialId', '11') +VALUES ('000919', 'LearningResource', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'RecordStatusId', '11') +VALUES ('000921', 'LearningResource', 'LearningResourceLicenseURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityHazard', 'DataCollectionId', '11') +VALUES ('000922', 'LearningResource', 'BasedOnUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityHazard', 'FacilityHazardId', '11') +VALUES ('000923', 'LearningResource', 'RefLearningResourceIntendedEndUserRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityHazard', 'FacilityId', '11') +VALUES ('000924', 'LearningResource', 'TimeRequired', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityHazard', 'RecordStatusId', '11') +VALUES ('000925', 'LearningResource', 'TypicalAgeRangeMinimum', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityJointUse', 'DataCollectionId', '11') +VALUES ('000926', 'LearningResource', 'TypicalAgeRangeMaximum', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityJointUse', 'FacilityId', '11') +VALUES ('000927', 'LearningResource', 'RefLearningResourceInteractivityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityJointUse', 'FacilityJointUseId', '11') +VALUES ('000928', 'LearningResource', 'RefLearningResourceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityJointUse', 'RecordStatusId', '11') +VALUES ('000929', 'LearningResource', 'TextComplexityValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLease', 'DataCollectionId', '11') +VALUES ('000930', 'LearningResource', 'TextComplexitySystem', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLease', 'FacilityId', '11') +VALUES ('000931', 'Assessment', 'ShortName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLease', 'FacilityLeaseId', '11') +VALUES ('000932', 'Assessment', 'AssessmentFamilyTitle', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLease', 'RecordStatusId', '11') +VALUES ('000933', 'Assessment', 'AssessmentFamilyShortName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'DataCollectionId', '11') +VALUES ('000934', 'LearnerAction', 'RefLearnerActionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'FacilityId', '11') +VALUES ('000935', 'LearnerAction', 'Value', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'FacilityLocationId', '11') +VALUES ('000937', 'LearnerAction', 'LearnerActionDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'LocationId', '11') +VALUES ('000938', 'LearnerActivity', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'RecordStatusId', '11') +VALUES ('000939', 'LearnerActivity', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagement', 'DataCollectionId', '11') +VALUES ('000940', 'LearnerActivity', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagement', 'FacilityId', '11') +VALUES ('000941', 'LearnerActivity', 'Prerequisite', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagement', 'FacilityManagementId', '11') +VALUES ('000942', 'LearnerActivity', 'RefLearnerActivityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagement', 'RecordStatusId', '11') +VALUES ('000943', 'LearnerActivity', 'CreationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagementPlan', 'DataCollectionId', '11') +VALUES ('000944', 'LearnerActivity', 'MaximumTimeAllowed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagementPlan', 'FacilityManagementId', '11') +VALUES ('000945', 'LearnerActivity', 'RefLearnerActivityMaximumTimeAllowedUnitsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagementPlan', 'FacilityManagementPlanId', '11') +VALUES ('000946', 'LearnerActivity', 'DueDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagementPlan', 'RecordStatusId', '11') +VALUES ('000947', 'LearnerActivity', 'DueTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMandate', 'DataCollectionId', '11') +VALUES ('000948', 'LearnerActivity', 'MaximumAttemptsAllowed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMandate', 'FacilityId', '11') +VALUES ('000949', 'LearnerActivity', 'RefLearnerActivityAddToGradeBookFlagId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMandate', 'FacilityMandateId', '11') +VALUES ('000950', 'LearnerActivity', 'ReleaseDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMandate', 'RecordStatusId', '11') +VALUES ('000951', 'LearnerActivity', 'Weight', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgage', 'DataCollectionId', '11') +VALUES ('000952', 'LearnerActivity', 'PossiblePoints', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgage', 'FacilityId', '11') +VALUES ('000953', 'LearnerActivity', 'RubricUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgage', 'FacilityMortgageId', '11') +VALUES ('000954', 'AssessmentItemResponse', 'ScaffoldingItemFlag', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgage', 'RecordStatusId', '11') +VALUES ('000955', 'AssessmentItemResponse', 'HintCount', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgageFee', 'DataCollectionId', '11') +VALUES ('000956', 'AssessmentItemResponse', 'HintIncludedAnswer', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgageFee', 'FacilityMortgageFeeId', '11') +VALUES ('000957', 'AssessmentItemResponse', 'FirstAttemptDuration', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgageFee', 'FacilityMortgageId', '11') +VALUES ('000958', 'AssessmentItemResponse', 'StartTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgageFee', 'RecordStatusId', '11') +VALUES ('000959', 'AssessmentItemResponse', 'StartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'DataCollectionId', '11') +VALUES ('000961', 'AssessmentAdministration', 'Code', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'FacilityId', '11') +VALUES ('000962', 'AssessmentAdministration', 'StartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'FacilityRelationshipId', '11') +VALUES ('000963', 'AssessmentAdministration', 'StartTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'Parent_FacilityId', '11') +VALUES ('000964', 'AssessmentAdministration', 'FinishDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'RecordStatusId', '11') +VALUES ('000965', 'AssessmentAdministration', 'FinishTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySchoolDesign', 'DataCollectionId', '11') +VALUES ('000968', 'AssessmentSession', 'SecurityIssue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySchoolDesign', 'FacilityDesignId', '11') +VALUES ('000969', 'AssessmentItemResponse', 'SecurityIssue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySchoolDesign', 'FacilitySchoolDesignId', '11') +VALUES ('000970', 'AssessmentResult', 'DateUpdated', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySchoolDesign', 'RecordStatusId', '11') +VALUES ('000971', 'AssessmentResult', 'DateCreated', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySite', 'DataCollectionId', '11') +VALUES ('000976', 'K12StudentCourseSection', 'RefCourseSectionEnrollmentStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySite', 'FacilityId', '11') +VALUES ('000977', 'AssessmentAdministration', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySite', 'FacilitySiteId', '11') +VALUES ('000979', 'AssessmentForm_AssessmentFormSection', 'SequenceNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySite', 'RecordStatusId', '11') +VALUES ('000979', 'AssessmentFormSection_AssessmentItem', 'SequenceNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityUtilization', 'DataCollectionId', '11') +VALUES ('000980', 'AssessmentFormSection', 'GUID', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityUtilization', 'FacilityId', '11') +VALUES ('000981', 'Assessment', 'GUID', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityUtilization', 'FacilityUtilizationId', '11') +VALUES ('000982', 'OrganizationAccreditation', 'RefAccreditationAgencyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityUtilization', 'RecordStatusId', '11') +VALUES ('000984', 'ELFacilityLicensing', 'RefELFacilityLicensingStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccount', 'DataCollectionId', '11') +VALUES ('000985', 'OrganizationCalendarSession', 'SessionStartTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccount', 'FederalProgramCode', '11') +VALUES ('000986', 'OrganizationCalendarSession', 'SessionEndTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccount', 'FinancialAccountId', '11') +VALUES ('000987', 'AeStudentEmployment', 'RefEmployedWhileEnrolledId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccount', 'RecordStatusId', '11') +VALUES ('000987', 'K12StudentEmployment', 'RefEmployedWhileEnrolledId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'AccountNumber', '11') +VALUES ('000987', 'PsStudentEmployment', 'RefEmployedWhileEnrolledId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'DataCollectionId', '11') +VALUES ('000987', 'WorkforceEmploymentQuarterlyData', 'RefEmployedWhileEnrolledId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'Description', '11') +VALUES ('000988', 'AeStudentEmployment', 'RefEmployedAfterExitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'FinancialAccountLocalId', '11') +VALUES ('000988', 'K12StudentEmployment', 'RefEmployedAfterExitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'Name', '11') +VALUES ('000988', 'PsStudentEmployment', 'RefEmployedAfterExitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'RecordStartDateTime', '11') +VALUES ('000988', 'WorkforceEmploymentQuarterlyData', 'RefEmployedAfterExitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'RecordStatusId', '11') +VALUES ('000989', 'QuarterlyEmploymentRecord', 'Earnings', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountProgram', 'DataCollectionId', '11') +VALUES ('000990', 'QuarterlyEmploymentRecord', 'RefEmploymentLocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountProgram', 'FinancialAccountProgramId', '11') +VALUES ('000991', 'WorkforceEmploymentQuarterlyData', 'EmployedInMultipleJobsCount', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountProgram', 'RecordStatusId', '11') +VALUES ('000992', 'QuarterlyEmploymentRecord', 'ReferencePeriodStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidApplication', 'DataCollectionId', '11') +VALUES ('000993', 'QuarterlyEmploymentRecord', 'ReferencePeriodEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidApplication', 'FinancialAidApplicationId', '11') +VALUES ('000994', 'QuarterlyEmploymentRecord', 'RefERAdministrativeDataSourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidApplication', 'OrganizationPersonRoleId', '11') +VALUES ('000997', 'WorkforceProgramParticipation', 'RefWfProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidApplication', 'RecordStatusId', '11') +VALUES ('001002', 'LearningResource', 'RefLearningResourceEducationalUseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidAward', 'DataCollectionId', '11') +VALUES ('001003', 'AssessmentParticipantSession', 'DeliveryDeviceDetails', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidAward', 'FinancialAidAwardId', '11') +VALUES ('001004', 'AssessmentNeedApipDisplay', 'EncouragementAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidAward', 'OrganizationPersonRoleId', '11') +VALUES ('001004', 'AssessmentNeedApipDisplay', 'MaskingAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidAward', 'RecordStatusId', '11') +VALUES ('001004', 'AssessmentPersonalNeedLanguageLearner', 'AssignedSupport', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'CompetencySetId', '11') +VALUES ('001004', 'AssessmentPersonalNeedsProfile', 'AssignedSupportFlag', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'DataCollectionId', '11') +VALUES ('001005', 'AssessmentNeedApipDisplay', 'EncouragementActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'GoalId', '11') +VALUES ('001005', 'AssessmentNeedApipDisplay', 'MaskingActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'OrganizationPersonRoleId', '11') +VALUES ('001005', 'AssessmentPersonalNeedLanguageLearner', 'ActivateByDefault', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'RecordStatusId', '11') +VALUES ('001005', 'AssessmentPersonalNeedsProfile', 'ActivateByDefault', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurement', 'DataCollectionId', '11') +VALUES ('001006', 'Assessment', 'Provider', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurement', 'GoalId', '11') +VALUES ('001007', 'AssessmentResult', 'PreliminaryIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurement', 'GoalMeasurementId', '11') +VALUES ('001008', 'AssessmentResult', 'DiagnosticStatementSource', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurement', 'RecordStatusId', '11') +VALUES ('001009', 'AssessmentResult', 'NumberOfResponses', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurementCriterion', 'DataCollectionId', '11') +VALUES ('001010', 'AssessmentSubtest_AssessmentItem', 'ItemWeightCorrect', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurementCriterion', 'GoalMeasurementCriterionId', '11') +VALUES ('001012', 'AssessmentSubtest_AssessmentItem', 'ItemWeightIncorrect', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurementCriterion', 'GoalMeasurementId', '11') +VALUES ('001013', 'AssessmentSubtest_AssessmentItem', 'ItemWeightNotAttempted', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurementCriterion', 'RecordStatusId', '11') +VALUES ('001014', 'AssessmentSubtest', 'RefAssessmentSubtestIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'DataCollectionId', '11') +VALUES ('001015', 'AssessmentRegistration', 'DaysOfInstructionPriorToAssessment', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'Date', '11') +VALUES ('001016', 'AssessmentRegistration', 'RetestIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'GoalId', '11') +VALUES ('001017', 'AssessmentRegistration', 'CreationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'GoalPerformanceId', '11') +VALUES ('001018', 'AssessmentSession', 'RefAssessmentSessionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'RecordStatusId', '11') +VALUES ('001019', 'AssessmentSession', 'ScheduledStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDEAEligibilityEvaluationCategory', 'DataCollectionId', '11') +VALUES ('001020', 'AssessmentSession', 'ScheduledEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDEAEligibilityEvaluationCategory', 'EligibilityEvaluationId', '11') +VALUES ('001021', 'AssessmentParticipantSession', 'ActualStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDEAEligibilityEvaluationCategory', 'IDEAEligibilityEvaluationCategoryId', '11') +VALUES ('001021', 'AssessmentSession', 'ActualStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDEAEligibilityEvaluationCategory', 'RecordStatusId', '11') +VALUES ('001022', 'AssessmentParticipantSession', 'ActualEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDSVersion', 'CurrentVersion', '11') +VALUES ('001022', 'AssessmentSession', 'ActualEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDSVersion', 'IDSVersionDate', '11') +VALUES ('001023', 'AssessmentPersonalNeedLanguageLearner', 'RefAssessmentNeedsProfileContentLanguageLearnerTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDSVersion', 'IDSVersionId', '11') +VALUES ('001024', 'AssessmentPersonalNeedsProfileContent', 'RefAssessmentNeedHazardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDSVersion', 'IDSVersionNumber', '11') +VALUES ('001025', 'AssessmentPersonalNeedsProfileContent', 'RefAssessmentNeedSupportToolId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'AuthorizationDocumentId', '11') +VALUES ('001026', 'AssessmentNeedBraille', 'RefAssessmentNeedUsageTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'DataCollectionId', '11') +VALUES ('001026', 'AssessmentPersonalNeedScreenReader', 'RefAssessmentNeedUsageTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'IEPAuthorizationId', '11') +VALUES ('001027', 'AssessmentPersonalNeedScreenReader', 'RefAssessmentNeedLinkIndicationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'IndividualizedProgramId', '11') +VALUES ('001028', 'AssessmentPersonalNeedScreenReader', 'SpeechRate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'RecordStatusId', '11') +VALUES ('001029', 'AssessmentPersonalNeedScreenReader', 'Volume', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorizationRejected', 'DataCollectionId', '11') +VALUES ('001030', 'AssessmentNeedScreenEnhancement', 'InvertColorChoice', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorizationRejected', 'IEPAuthorizationId', '11') +VALUES ('001031', 'AssessmentNeedScreenEnhancement', 'Magnification', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorizationRejected', 'IEPAuthorizationRejectedId', '11') +VALUES ('001032', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleGradeTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorizationRejected', 'RecordStatusId', '11') +VALUES ('001033', 'AssessmentNeedBraille', 'RefAssessmentNeedNumberOfBrailleDotsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPPresentLevel', 'DataCollectionId', '11') +VALUES ('001034', 'AssessmentNeedBraille', 'NumberOfBrailleCells', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPPresentLevel', 'IEPPresentLevelId', '11') +VALUES ('001035', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleMarkTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPPresentLevel', 'IndividualizedProgramId', '11') +VALUES ('001036', 'AssessmentNeedBraille', 'BrailleDotPressure', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPPresentLevel', 'RecordStatusId', '11') +VALUES ('001037', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleStatusCellTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Incident', 'DataCollectionId', '11') +VALUES ('001038', 'AssessmentNeedApipContent', 'ItemTranslationDisplayLanguageTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Incident', 'IncidentId', '11') +VALUES ('001039', 'AssessmentNeedApipContent', 'KeywordTranslationLanguageTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Incident', 'OrganizationPersonRoleId', '11') +VALUES ('001039', 'AssessmentPersonalNeedsProfileContent', 'RefKeywordTranslationsLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Incident', 'RecordStatusId', '11') +VALUES ('001040', 'AssessmentNeedApipContent', 'RefAssessmentNeedSigningTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'DataCollectionId', '11') +VALUES ('001041', 'AssessmentNeedApipContent', 'RefAssessmentNeedAlternativeRepresentationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'IncidentId', '11') +VALUES ('001042', 'AssessmentNeedApipContent', 'RefAssessmentNeedSpokenSourcePreferenceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'IncidentPersonId', '11') +VALUES ('001043', 'AssessmentNeedApipContent', 'ReadAtStartPreferenceIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'PersonId', '11') +VALUES ('001044', 'AssessmentNeedApipContent', 'RefAssessmentNeedUserSpokenPreferenceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'RecordStatusId', '11') +VALUES ('001045', 'AssessmentNeedApipContent', 'AssessmentNeedDirectionsOnlyIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgram', 'DataCollectionId', '11') +VALUES ('001046', 'AssessmentNeedApipDisplay', 'RefAssessmentNeedMaskingTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgram', 'IndividualizedProgramId', '11') +VALUES ('001047', 'AssessmentNeedApipDisplay', 'EncouragementTextMessagingString', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgram', 'OrganizationPersonRoleId', '11') +VALUES ('001048', 'AssessmentNeedApipDisplay', 'EncouragementSoundFileUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgram', 'RecordStatusId', '11') +VALUES ('001049', 'AssessmentNeedApipControl', 'AssessmentNeedTimeMultiplier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodation', 'DataCollectionId', '11') +VALUES ('001050', 'AssessmentNeedApipControl', 'LineReaderHighlightColor', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodation', 'IndividualizedProgramAccommodationId', '11') +VALUES ('001051', 'AssessmentNeedApipControl', 'OverlayColor', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodation', 'IndividualizedProgramId', '11') +VALUES ('001052', 'AssessmentNeedScreenEnhancement', 'ForegroundColor', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodation', 'RecordStatusId', '11') +VALUES ('001053', 'AssessmentNeedApipControl', 'BackgroundColor', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodationSubject', 'DataCollectionId', '11') +VALUES ('001054', 'AssessmentNeedApipControl', 'RefAssessmentNeedIncreasedWhitespacingTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodationSubject', 'IndividualizedProgramAccommodationId', '11') +VALUES ('001055', 'AssessmentRegistration', 'TestingIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodationSubject', 'IndividualizedProgramAccommodationSubjectId', '11') +VALUES ('001056', 'AssessmentRegistration', 'ScorePublishDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodationSubject', 'RecordStatusId', '11') +VALUES ('001058', 'PersonCredential', 'CredentialName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAmendment', 'DataCollectionId', '11') +VALUES ('001059', 'StaffCredential', 'CardiopulmonaryResuscitationCertification', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAmendment', 'IndividualizedProgramAmendmentId', '11') +VALUES ('001060', 'StaffCredential', 'FirstAidCertification', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAmendment', 'IndividualizedProgramId', '11') +VALUES ('001061', 'StaffProfessionalDevelopmentActivity', 'ActivityStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAmendment', 'RecordStatusId', '11') +VALUES ('001062', 'StaffProfessionalDevelopmentActivity', 'ActivityCompletionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'AssessmentId', '11') +VALUES ('001917', 'RequiredImmunization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'DataCollectionId', '11') +VALUES ('001917', 'Role', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'IndividualizedProgramAssessmentId', '11') +VALUES ('001917', 'RoleAttendance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'IndividualizedProgramId', '11') +VALUES ('001917', 'RoleAttendanceEvent', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'RecordStatusId', '11') +VALUES ('001917', 'RoleStatus', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'AssessmentAccommodationId', '11') +VALUES ('001917', 'Rubric', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'DataCollectionId', '11') +VALUES ('001917', 'RubricCriterion', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'IndividualizedProgramAssessmentAccommodationId', '11') +VALUES ('001917', 'RubricCriterionLevel', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'IndividualizedProgramAssessmentId', '11') +VALUES ('001917', 'ServiceFrequency', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'RecordStatusId', '11') +VALUES ('001917', 'ServicePlan', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibility', 'DataCollectionId', '11') +VALUES ('001917', 'ServiceProvided', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibility', 'IndividualizedProgramEligibilityId', '11') +VALUES ('001917', 'ServiceProvider', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibility', 'IndividualizedProgramId', '11') +VALUES ('001917', 'ServicesReceived', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibility', 'RecordStatusId', '11') +VALUES ('001917', 'ServiceStaff', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'DataCollectionId', '11') +VALUES ('001917', 'StaffCompensation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'EligibilityEvaluationId', '11') +VALUES ('001917', 'StaffCredential', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'IndividualizedProgramEligibilityEvaluationId', '11') +VALUES ('001917', 'StaffEmployment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'IndividualizedProgramEligibilityId', '11') +VALUES ('001917', 'StaffEvaluation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'RecordStatusId', '11') +VALUES ('001917', 'StaffEvaluationPart', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'DataCollectionId', '11') +VALUES ('001917', 'StaffExperience', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'GoalId', '11') +VALUES ('001917', 'StaffProfessionalDevelopmentActivity', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'IndividualizedProgramGoalId', '11') +VALUES ('001917', 'StaffTechnicalAssistance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'IndividualizedProgramId', '11') +VALUES ('001917', 'TeacherEducationCredentialExam', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'RecordStatusId', '11') +VALUES ('001917', 'TeacherStudentDataLinkExclusion', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeeting', 'DataCollectionId', '11') +VALUES ('001917', 'WorkforceEmploymentQuarterlyData', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeeting', 'IndividualizedProgramId', '11') +VALUES ('001917', 'WorkforceProgramParticipantCohort', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeeting', 'IndividualizedProgramMeetingId', '11') +VALUES ('001917', 'WorkforceProgramParticipation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeeting', 'RecordStatusId', '11') +VALUES ('001918', 'Activity', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'DataCollectionId', '11') +VALUES ('001918', 'ActivityRecognition', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'IndividualizedProgramMeetingAttendeeId', '11') +VALUES ('001918', 'AeCourse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'IndividualizedProgramMeetingId', '11') +VALUES ('001918', 'AeProvider', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'AeStaff', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'RecordStatusId', '11') +VALUES ('001918', 'AeStudentAcademicRecord', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'DataCollectionId', '11') +VALUES ('001918', 'AeStudentEmployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'GoalPerformanceId', '11') +VALUES ('001918', 'ApipInteraction', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'IndividualizedProgramProgressGoalId', '11') +VALUES ('001918', 'Application', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'IndividualizedProgramProgressReportId', '11') +VALUES ('001918', 'Assessment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'RecordStatusId', '11') +VALUES ('001918', 'Assessment_AssessmentAdministration', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentAccommodation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramId', '11') +VALUES ('001918', 'AssessmentAdministration', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramProgressReportId', '11') +VALUES ('001918', 'AssessmentAdministration_Organization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramProgressReportPlanId', '11') +VALUES ('001918', 'AssessmentAsset', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentELDevelopmentalDomain', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReportPlan', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentForm', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReportPlan', 'IndividualizedProgramId', '11') +VALUES ('001918', 'AssessmentForm_AssessmentAsset', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReportPlan', 'IndividualizedProgramProgressReportPlanId', '11') +VALUES ('001918', 'AssessmentForm_AssessmentFormSection', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReportPlan', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentFormSection', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramService', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentFormSection_AssessmentAsset', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramService', 'IndividualizedProgramServiceId', '11') +VALUES ('001918', 'AssessmentFormSection_AssessmentItem', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramService', 'PersonId', '11') +VALUES ('001918', 'AssessmentItem', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramService', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentItemApip', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentItemApipDescription', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'IndividualizedProgramId', '11') +VALUES ('001918', 'AssessmentItemCharacteristic', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'IndividualizedProgramServicesReceivedId', '11') +VALUES ('001918', 'AssessmentItemPossibleResponse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentItemResponse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'ServicesReceivedId', '11') +VALUES ('001918', 'AssessmentItemResponseTheory', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IPEDSFinance', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentItemRubricCriterionResult', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IPEDSFinance', 'IPEDSFinanceId', '11') +VALUES ('001918', 'AssessmentLanguage', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IPEDSFinance', 'OrganizationFinancialId', '11') +VALUES ('001918', 'AssessmentLevelsForWhichDesigned', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IPEDSFinance', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentNeedApipContent', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentNeedApipControl', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'OrganizationId', '11') +VALUES ('001918', 'AssessmentNeedApipDisplay', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentNeedBraille', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentNeedScreenEnhancement', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'K12CharterSchoolManagementOrganizationId', '11') +VALUES ('001918', 'AssessmentParticipantSession', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'OrganizationId', '11') +VALUES ('001918', 'AssessmentParticipantSession_Accommodation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentPerformanceLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'RefCharterSchoolManagementOrganizationTypeId', '11') +VALUES ('001918', 'AssessmentPersonalNeedLanguageLearner', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'CourseId', '11') +VALUES ('001918', 'AssessmentPersonalNeedScreenReader', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentPersonalNeedsProfile', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'K12CourseId', '11') +VALUES ('001918', 'AssessmentPersonalNeedsProfileContent', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentPersonalNeedsProfileControl', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'RefCreditTypeEarnedId', '11') +VALUES ('001918', 'AssessmentPersonalNeedsProfileDisplay', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'FederalProgramCode', '11') +VALUES ('001918', 'AssessmentRegistration', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'FederalProgramsFundingAllocation', '11') +VALUES ('001918', 'AssessmentRegistration_Accommodation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'FundsTransferAmount', '11') +VALUES ('001918', 'AssessmentResult', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'K12FederalFundAllocationId', '11') +VALUES ('001918', 'AssessmentResult_PerformanceLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'LeaTransferabilityOfFunds', '11') +VALUES ('001918', 'AssessmentResultRubricCriterionResult', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'NumberOfImmigrantProgramSubgrants', '11') +VALUES ('001918', 'AssessmentSession', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'OrganizationCalendarSessionId', '11') +VALUES ('001918', 'AssessmentSessionStaffRole', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentSubtest', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'RefFederalProgramFundingAllocationTypeId', '11') +VALUES ('001918', 'AssessmentSubtest_AssessmentItem', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'RefLeaFundsTransferTypeId', '11') +VALUES ('001918', 'AssessmentSubtest_CompetencyDefinition', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'RefReapAlternativeFundingStatusId', '11') +VALUES ('001918', 'AssessmentSubtestELDevelopmentalDomain', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'SchoolImprovementAllocation', '11') +VALUES ('001918', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'SchoolImprovementReservedPercent', '11') +VALUES ('001918', 'Authentication', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'SesPerPupilExpenditure', '11') +VALUES ('001918', 'Authorization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'DataCollectionId', '11') +VALUES ('001918', 'AuthorizationDocument', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'K12LeaId', '11') +VALUES ('001918', 'BuildingSpace', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'OrganizationId', '11') +VALUES ('001918', 'BuildingSpaceUtilization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'RecordStatusId', '11') +VALUES ('001918', 'BuildingSystemCategory', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'RefCharterLeaStatusId', '11') +VALUES ('001918', 'BuildingSystemComponent', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'DataCollectionId', '11') +VALUES ('001918', 'BuildingSystemComponentService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'K12LeaFederalFundsId', '11') +VALUES ('001918', 'Classroom', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'OrganizationCalendarSessionId', '11') +VALUES ('001918', 'CompetencyDefAssociation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'ParentalInvolvementReservationFunds', '11') +VALUES ('001918', 'CompetencyDefEducationLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'RecordStatusId', '11') +VALUES ('001918', 'CompetencyDefinition', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalReporting', 'DataCollectionId', '11') +VALUES ('001918', 'CompetencyDefinition_CompetencySet', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalReporting', 'K12LeaFederalReportingId', '11') +VALUES ('001918', 'CompetencyFramework', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalReporting', 'K12LeaId', '11') +VALUES ('001918', 'CompetencySet', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalReporting', 'RecordStatusId', '11') +VALUES ('001918', 'CompetencySet_Rubric', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeLevelsApproved', 'DataCollectionId', '11') +VALUES ('001918', 'CompetencySet_RubricCriterion', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeLevelsApproved', 'K12LeaGradeLevelsApprovedId', '11') +VALUES ('001918', 'CoreKnowledgeArea', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeLevelsApproved', 'K12LeaId', '11') +VALUES ('001918', 'Course', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeLevelsApproved', 'RecordStatusId', '11') +VALUES ('001918', 'CourseSection', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeOffered', 'DataCollectionId', '11') +VALUES ('001918', 'CourseSectionAssessmentReporting', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeOffered', 'K12LeaGradeOfferedId', '11') +VALUES ('001918', 'CourseSectionLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeOffered', 'K12LeaId', '11') +VALUES ('001918', 'CourseSectionLocation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeOffered', 'RecordStatusId', '11') +VALUES ('001918', 'CourseSectionSchedule', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibility', 'DataCollectionId', '11') +VALUES ('001918', 'CredentialAward', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibility', 'K12LeaId', '11') +VALUES ('001918', 'CredentialAwardCredit', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibility', 'K12LEAPreKEligibilityId', '11') +VALUES ('001918', 'CredentialAwardEvidence', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibility', 'RecordStatusId', '11') +VALUES ('001918', 'CredentialCriteriaCourse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'DataCollectionId', '11') +VALUES ('001918', 'CredentialDefAgent', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'K12LeaId', '11') +VALUES ('001918', 'CredentialDefAgentCredential', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'K12LEAPreKEligibleAgesIDEAId', '11') +VALUES ('001918', 'CredentialDefCategory', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'RecordStatusId', '11') +VALUES ('001918', 'CredentialDefCriteria', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaSafeDrugFree', 'DataCollectionId', '11') +VALUES ('001918', 'CredentialDefIdentifier', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaSafeDrugFree', 'K12LeaId', '11') +VALUES ('001918', 'CredentialDefinition', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaSafeDrugFree', 'K12LeaSafeDrugFreeId', '11') +VALUES ('001918', 'CredentialIssuer', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaSafeDrugFree', 'RecordStatusId', '11') +VALUES ('001918', 'CredentialOffered', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'DataCollectionId', '11') +VALUES ('001918', 'CteCourse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'K12LeaId', '11') +VALUES ('001918', 'CteStudentAcademicRecord', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'K12LEATitleIIIProfessionalDevelopmentId', '11') +VALUES ('001918', 'EarlyChildhoodCredential', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordStatusId', '11') +VALUES ('001918', 'EarlyChildhoodProgramTypeOffered', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleISupportService', 'DataCollectionId', '11') +VALUES ('001918', 'ELChildDemographic', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleISupportService', 'K12LeaId', '11') +VALUES ('001918', 'ELChildDevelopmentalAssessment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleISupportService', 'K12LeaTitleISupportServiceId', '11') +VALUES ('001918', 'ELChildHealth', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleISupportService', 'RecordStatusId', '11') +VALUES ('001918', 'ELChildIndividualizedProgram', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12OrganizationStudentResponsibility', 'DataCollectionId', '11') +VALUES ('001918', 'ELChildOutcomeSummary', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12OrganizationStudentResponsibility', 'K12OrganizationStudentResponsibilityId', '11') +VALUES ('001918', 'ELChildProgramEligibility', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12OrganizationStudentResponsibility', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'ELChildService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12OrganizationStudentResponsibility', 'RecordStatusId', '11') +VALUES ('001918', 'ELChildServicesApplication', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12ProgramOrService', 'DataCollectionId', '11') +VALUES ('001918', 'ELChildTransitionPlan', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12ProgramOrService', 'K12ProgramOrServiceId', '11') +VALUES ('001918', 'ELClassSection', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12ProgramOrService', 'OrganizationId', '11') +VALUES ('001918', 'ELClassSectionService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12ProgramOrService', 'RecordStatusId', '11') +VALUES ('001918', 'ELCourse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'DataCollectionId', '11') +VALUES ('001918', 'ELEnrollment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'K12CharterSchoolAuthorizerAgencyId', '11') +VALUES ('001918', 'ELEnrollmentOtherFunding', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'K12SchoolId', '11') +VALUES ('001918', 'ELFacilityLicensing', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'OrganizationId', '11') +VALUES ('001918', 'EligibilityEvaluation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'RecordStatusId', '11') +VALUES ('001918', 'ELOrganization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolCorrectiveAction', 'DataCollectionId', '11') +VALUES ('001918', 'ELOrganizationAvailability', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolCorrectiveAction', 'K12SchoolCorrectiveActionId', '11') +VALUES ('001918', 'ELOrganizationFunds', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolCorrectiveAction', 'K12SchoolId', '11') +VALUES ('001918', 'ELOrganizationMonitoring', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolCorrectiveAction', 'RecordStatusId', '11') +VALUES ('001918', 'ELProgramLicensing', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeLevelsApproved', 'DataCollectionId', '11') +VALUES ('001918', 'ELQualityInitiative', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeLevelsApproved', 'K12SchoolGradeLevelsApprovedId', '11') +VALUES ('001918', 'ELQualityRatingImprovement', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeLevelsApproved', 'K12SchoolId', '11') +VALUES ('001918', 'ELServicePartner', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeLevelsApproved', 'RecordStatusId', '11') +VALUES ('001918', 'ELStaff', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeOffered', 'DataCollectionId', '11') +VALUES ('001918', 'ELStaffAssignment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeOffered', 'K12SchoolGradeOfferedId', '11') +VALUES ('001918', 'ELStaffEducation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeOffered', 'K12SchoolId', '11') +VALUES ('001918', 'ELStaffEmployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeOffered', 'RecordStatusId', '11') +VALUES ('001918', 'Facility', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolImprovement', 'DataCollectionId', '11') +VALUES ('001918', 'FacilityAudit', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolImprovement', 'K12SchoolId', '11') +VALUES ('001918', 'FacilityCompliance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolImprovement', 'K12SchoolImprovementId', '11') +VALUES ('001918', 'FacilityDesign', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolImprovement', 'RecordStatusId', '11') +VALUES ('001918', 'FacilityDesignConstruction', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'DataCollectionId', '11') +VALUES ('001918', 'FacilityEnergy', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'IndicatorStatus', '11') +VALUES ('001918', 'FacilityFinance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'IndicatorStatusSubgroup', '11') +VALUES ('001918', 'FacilityFinancial', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'K12SchoolId', '11') +VALUES ('001918', 'FacilityHazard', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'K12SchoolIndicatorStatusId', '11') +VALUES ('001918', 'FacilityJointUse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RecordStatusId', '11') +VALUES ('001918', 'FacilityLease', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStateDefinedStatusId', '11') +VALUES ('001918', 'FacilityLocation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusCustomTypeId', '11') +VALUES ('001918', 'FacilityManagement', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusSubgroupTypeId', '11') +VALUES ('001918', 'FacilityManagementPlan', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusTypeId', '11') +VALUES ('001918', 'FacilityMandate', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'DataCollectionId', '11') +VALUES ('001918', 'FacilityMortgage', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'K12SchoolId', '11') +VALUES ('001918', 'FacilityMortgageFee', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'K12SchoolStatusId', '11') +VALUES ('001918', 'FacilityRelationship', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RecordStatusId', '11') +VALUES ('001918', 'FacilitySchoolDesign', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefComprehensiveAndTargetedSupportId', '11') +VALUES ('001918', 'FacilitySite', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefComprehensiveSupportId', '11') +VALUES ('001918', 'FacilityUtilization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefNSLPStatusId', '11') +VALUES ('001918', 'FinancialAccount', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefSchoolDangerousStatusId', '11') +VALUES ('001918', 'FinancialAccountProgram', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefSchoolImprovementStatusId', '11') +VALUES ('001918', 'FinancialAidApplication', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefTargetedSupportId', '11') +VALUES ('001918', 'FinancialAidAward', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Sea', 'DataCollectionId', '11') +VALUES ('001918', 'Goal', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Sea', 'K12SeaId', '11') +VALUES ('001918', 'GoalMeasurement', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Sea', 'OrganizationId', '11') +VALUES ('001918', 'GoalMeasurementCriterion', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Sea', 'RecordStatusId', '11') +VALUES ('001918', 'GoalPerformance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'DataCollectionId', '11') +VALUES ('001918', 'IDEAEligibilityEvaluationCategory', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'K12SeaAlternateFundUseId', '11') +VALUES ('001918', 'IEPAuthorization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'K12SeaFederalFundsId', '11') +VALUES ('001918', 'IEPAuthorizationRejected', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'RecordStatusId', '11') +VALUES ('001918', 'IEPPresentLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'RefAlternateFundUsesId', '11') +VALUES ('001918', 'Incident', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaFederalFunds', 'DataCollectionId', '11') +VALUES ('001918', 'IncidentPerson', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaFederalFunds', 'K12SeaFederalFundsId', '11') +VALUES ('001918', 'IndividualizedProgram', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaFederalFunds', 'K12SeaId', '11') +VALUES ('001918', 'IndividualizedProgramAccommodation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaFederalFunds', 'RecordStatusId', '11') +VALUES ('001918', 'IndividualizedProgramAccommodationSubject', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'DataCollectionId', '11') +VALUES ('001918', 'IndividualizedProgramAmendment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'K12StaffAssignmentId', '11') +VALUES ('001918', 'IndividualizedProgramAssessment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'IndividualizedProgramAssessmentAccommodation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'RecordStatusId', '11') +VALUES ('001918', 'IndividualizedProgramEligibility', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'RefEmergencyOrProvisionalCredentialStatusId', '11') +VALUES ('001918', 'IndividualizedProgramEligibilityEvaluation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffEmployment', 'DataCollectionId', '11') +VALUES ('001918', 'IndividualizedProgramGoal', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffEmployment', 'K12StaffEmploymentId', '11') +VALUES ('001918', 'IndividualizedProgramMeeting', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffEmployment', 'RecordStatusId', '11') +VALUES ('001918', 'IndividualizedProgramMeetingAttendee', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffEmployment', 'StaffEmploymentId', '11') +VALUES ('001918', 'IndividualizedProgramProgressGoal', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicHonor', 'DataCollectionId', '11') +VALUES ('001918', 'IndividualizedProgramProgressReport', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicHonor', 'K12StudentAcademicHonorId', '11') +VALUES ('001918', 'IndividualizedProgramProgressReportPlan', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicHonor', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'IndividualizedProgramService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicHonor', 'RecordStatusId', '11') +VALUES ('001918', 'IndividualizedProgramServicesReceived', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicRecord', 'DataCollectionId', '11') +VALUES ('001918', 'IPEDSFinance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicRecord', 'K12StudentAcademicRecordId', '11') +VALUES ('001918', 'K12CharterSchoolAuthorizerAgency', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicRecord', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'K12CharterSchoolManagementOrganization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001752', 'CredentialDefinition', 'ValidationMethodDescription', '11') +VALUES ('001918', 'K12Course', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001753', 'CredentialDefinition', 'RefCredentialDefVerificationTypeId', '11') +VALUES ('001918', 'K12FederalFundAllocation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001754', 'CredentialDefinition', 'Version', '11') +VALUES ('001918', 'K12Lea', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001755', 'CredentialDefAgent', 'RefCTDLOrganizationTypeId', '11') +VALUES ('001918', 'K12LeaFederalFunds', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001755', 'CredentialIssuer', 'RefCTDLOrganizationTypeId', '11') +VALUES ('001918', 'K12LeaFederalReporting', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001756', 'CredentialDefinition', 'RefONETSOCOccupationTypeId', '11') +VALUES ('001918', 'K12LeaGradeLevelsApproved', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001757', 'CompetencyDefinition', 'TypeURL', '11') +VALUES ('001918', 'K12LeaGradeOffered', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001761', 'AssessmentRegistration', 'StateFullAcademicYear', '11') +VALUES ('001918', 'K12LeaPreKEligibility', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001762', 'AssessmentRegistration', 'LEAFullAcademicYear', '11') +VALUES ('001918', 'K12LeaPreKEligibleAgesIDEA', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001763', 'AssessmentRegistration', 'SchoolFullAcademicYear', '11') +VALUES ('001918', 'K12LeaSafeDrugFree', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001764', 'Facility', 'BuildingArea', '11') +VALUES ('001918', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001765', 'PersonDisability', 'SignificantCognitiveDisabilityIndicator', '11') +VALUES ('001918', 'K12LeaTitleISupportService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001766', 'ELOrganization', 'RefVirtualSchoolStatusId', '11') +VALUES ('001918', 'K12OrganizationStudentResponsibility', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001766', 'K12SchoolStatus', 'RefVirtualSchoolStatusId', '11') +VALUES ('001918', 'K12ProgramOrService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001767', 'ELOrganization', 'RefNationalSchoolLunchProgramStatusId', '11') +VALUES ('001918', 'K12School', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001767', 'K12SchoolStatus', 'RefNationalSchoolLunchProgramStatusId', '11') +VALUES ('001918', 'K12SchoolCorrectiveAction', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001768', 'Facility', 'FacilityAcquisitionDate', '11') +VALUES ('001918', 'K12SchoolGradeLevelsApproved', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001769', 'FacilityDesignConstruction', 'FacilityAdditionYear', '11') +VALUES ('001918', 'K12SchoolGradeOffered', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001770', 'Facility', 'FacilityBuildingPermanency', '11') +VALUES ('001918', 'K12SchoolImprovement', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001771', 'FacilityDesignConstruction', 'FacilityConstructionYear', '11') +VALUES ('001918', 'K12SchoolIndicatorStatus', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001772', 'Facility', 'RefBuildingHistoricStatusId', '11') +VALUES ('001918', 'K12SchoolStatus', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001773', 'FacilitySite', 'FacilitySiteArea', '11') +VALUES ('001918', 'K12Sea', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001774', 'LocationAddress', 'FacilityBlockNumberArea', '11') +VALUES ('001918', 'K12SeaAlternateFundUse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001775', 'FacilityDesignConstruction', 'BuildingAdditionDescription', '11') +VALUES ('001918', 'K12SeaFederalFunds', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001776', 'FacilityDesignConstruction', 'BuildingAdditionCode', '11') +VALUES ('001918', 'K12StaffAssignment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001777', 'Facility', 'RefBuildingPrimaryUseTypeId', '11') +VALUES ('001918', 'K12StaffEmployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001778', 'Facility', 'RefCampusStatusId', '11') +VALUES ('001918', 'K12StudentAcademicHonor', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001779', 'LocationAddress', 'FacilityCensusTract', '11') +VALUES ('001918', 'K12StudentAcademicRecord', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001780', 'FacilityDesignConstruction', 'FacilityConstructionDate', '11') +VALUES ('001918', 'K12StudentActivity', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001781', 'FacilityDesignConstruction', 'RefFacilityConstructionDateTypeId', '11') +VALUES ('001918', 'K12StudentCohort', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001782', 'FacilityDesignConstruction', 'RefFacilityConstructionMaterialTypeId', '11') +VALUES ('001918', 'K12StudentCourseSection', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001783', 'Facility', 'FacilityExpectedLife', '11') +VALUES ('001918', 'K12StudentCourseSectionMark', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001784', 'FacilityFinance', 'FacilityReplacementValue', '11') +VALUES ('001918', 'K12StudentDiscipline', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001785', 'Facility', 'BuildingNumberOfStories', '11') +VALUES ('001918', 'K12StudentEmployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001786', 'FacilitySite', 'FacilitySiteIdentifier', '11') +VALUES ('001918', 'K12StudentEnrollment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001787', 'FacilityDesignConstruction', 'RefFacilitySiteImprovementLocationTypeId', '11') +VALUES ('001918', 'K12StudentGraduationPlan', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001788', 'Facility', 'BuildingYearBuilt', '11') +VALUES ('001918', 'K12StudentHomeLanguageSurvey', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001789', 'Facility', 'BuildingYearOfLastModernization', '11') +VALUES ('001918', 'K12StudentLiteracyAssessment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001790', 'BuildingSystemCategory', 'RefBuildingAirDistributionSystemTypeId', '11') +VALUES ('001918', 'K12StudentSession', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001791', 'BuildingSystemCategory', 'RefBuildingCommMgmtComponentSystemTypeId', '11') +VALUES ('001918', 'K12TitleIIILanguageInstruction', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001792', 'FacilityCompliance', 'RefFacilityComplianceStatusId', '11') +VALUES ('001918', 'LearnerAction', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001793', 'BuildingSystemComponent', 'RefFacilitySystemOrComponentConditionId', '11') +VALUES ('001918', 'LearnerActivity', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001794', 'BuildingSystemCategory', 'RefBuildingCoolingGenerationSystemTypeId', '11') +VALUES ('001918', 'LearnerActivity_LearningResource', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001795', 'BuildingSystemCategory', 'RefBuildingElectricalSystemTypeId', '11') +VALUES ('001918', 'LearningResource', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001796', 'FacilityMandate', 'RefFacilityApplicableFederalMandateTypeId', '11') +VALUES ('001918', 'LearningResourceAdaptation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001797', 'FacilityMandate', 'RefFacilityFederalMandateInterestTypeId', '11') +VALUES ('001918', 'LearningResourceEducationLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001798', 'BuildingSystemCategory', 'RefBuildingFireProtectionSystemTypeId', '11') +VALUES ('001918', 'LearningResourceMediaFeature', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001799', 'BuildingSystemCategory', 'RefBuildingHeatingGenerationSystemTypeId', '11') +VALUES ('001918', 'LearningResourcePeerRating', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001800', 'BuildingSystemCategory', 'RefBuildingHVACSystemTypeId', '11') +VALUES ('001918', 'LearningResourcePhysicalMedia', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001801', 'BuildingSystemComponent', 'BuildingInstitutionalEquipmentDescription', '11') +VALUES ('001918', 'Location', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001802', 'BuildingSystemCategory', 'RefBuildingMechanicalConveyingSystemTypeId', '11') +VALUES ('001918', 'LocationAddress', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001803', 'BuildingSystemCategory', 'RefBuildingPlumbingSystemTypeId', '11') +VALUES ('001918', 'Organization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001804', 'BuildingSystemCategory', 'RefBuildingSecuritySystemTypeId', '11') +VALUES ('001918', 'OrganizationAccreditation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001805', 'FacilityMandate', 'RefFacilityStateOrLocalMandateInterestTypeId', '11') +VALUES ('001918', 'OrganizationCalendar', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001806', 'FacilityMandate', 'FacilityStateOrLocalMandateName', '11') +VALUES ('001918', 'OrganizationCalendarCrisis', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001807', 'BuildingSystemCategory', 'RefBuildingTechnologyWiringSystemTypeId', '11') +VALUES ('001918', 'OrganizationCalendarDay', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001808', 'FacilityHazard', 'FacilityLocationOfHazardousMaterials', '11') +VALUES ('001918', 'OrganizationCalendarEvent', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001809', 'BuildingSystemCategory', 'RefBuildingMechanicalSystemTypeId', '11') +VALUES ('001918', 'OrganizationCalendarSession', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001810', 'FacilityHazard', 'FacilityNearbyEnvHazardDescription', '11') +VALUES ('001918', 'OrganizationDetail', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001811', 'BuildingSystemCategory', 'RefBuildingSystemTypeId', '11') +VALUES ('001918', 'OrganizationEmail', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001812', 'BuildingSystemCategory', 'RefBuildingVerticalTransportationSystemTypeId', '11') +VALUES ('001918', 'OrganizationEmployeeBenefit', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001813', 'BuildingSpace', 'RefBuildingAdministrativeSpaceTypeId', '11') +VALUES ('001918', 'OrganizationEnrollmentCapacity', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001814', 'BuildingSpace', 'RefBuildingArtSpecialtySpaceTypeId', '11') +VALUES ('001918', 'OrganizationFederalAccountability', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001815', 'BuildingSpace', 'RefBuildingBasicClassroomDesignTypeId', '11') +VALUES ('001918', 'OrganizationFinancial', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001816', 'FacilityDesign', 'RefBuildingDesignTypeId', '11') +VALUES ('001918', 'OrganizationFinancialFinancialAccountLocal', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001817', 'BuildingSpace', 'RefBuildingCareerTechEducationSpaceTypeId', '11') +VALUES ('001918', 'OrganizationIdentifier', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001818', 'BuildingSpace', 'RefBuildingCirculationSpaceTypeId', '11') +VALUES ('001918', 'OrganizationImage', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001819', 'FacilityDesign', 'RefBuildingEnvOrEnergyPerformanceRatingCatId', '11') +VALUES ('001918', 'OrganizationIndicator', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001820', 'BuildingSystemComponent', 'RefFacilityFurnishingsTypeId', '11') +VALUES ('001918', 'OrganizationLocation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001821', 'BuildingSpace', 'RefBuildingFoodServiceSpaceTypeId', '11') +VALUES ('001918', 'OrganizationOperationalStatus', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001822', 'BuildingSpace', 'RefBuildingIndoorAthleticOrPhysEdSpaceTypeId', '11') +VALUES ('001918', 'OrganizationPersonRole', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001823', 'BuildingSpace', 'RefBuildingLibMediaCenterSpecialtySpaceTypeId', '11') +VALUES ('001918', 'OrganizationPersonRoleApplication', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001824', 'BuildingSpace', 'RefBuildingOperationsOrMaintSpaceTypeId', '11') +VALUES ('001918', 'OrganizationPersonRoleFTE', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001825', 'BuildingSpace', 'RefBuildingOutdoorAthleticOrPhysEdSpaceTypeId', '11') +VALUES ('001918', 'OrganizationPolicy', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001826', 'BuildingSpace', 'RefBuildingOutdoorOrNonathleticSpaceTypeId', '11') +VALUES ('001918', 'OrganizationPopulationServed', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001827', 'BuildingSpace', 'RefBuildingPerformingArtsSpecialtySpaceTypeId', '11') +VALUES ('001918', 'OrganizationProgramType', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001828', 'FacilitySchoolDesign', 'RefBuildingSchoolDesignTypeId', '11') +VALUES ('001918', 'OrganizationProjectBasedLearning', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001829', 'BuildingSpace', 'RefBuildingScienceSpecialtySpaceTypeId', '11') +VALUES ('001918', 'OrganizationRelationship', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001830', 'FacilitySite', 'RefFacilitySiteOutdoorAreaTypeId', '11') +VALUES ('001918', 'OrganizationService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001831', 'BuildingSpace', 'RefBuildingSpaceDesignTypeId', '11') +VALUES ('001918', 'OrganizationTechnicalAssistance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001832', 'BuildingSpace', 'RefBuildingSpecEdSpecialtySpaceTypeId', '11') +VALUES ('001918', 'OrganizationTelephone', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001833', 'BuildingSpace', 'RefBuildingStudentSupportSpaceTypeId', '11') +VALUES ('001918', 'OrganizationWebsite', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001834', 'FacilityDesign', 'BuildingArchitectName', '11') +VALUES ('001918', 'PDActivityEducationLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001835', 'FacilityDesign', 'BuildingArchitecturalFirmName', '11') +VALUES ('001918', 'PeerRatingSystem', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001836', 'BuildingSpace', 'RefBuildingAssemblySpaceTypeId', '11') +VALUES ('001918', 'Person', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001837', 'FacilityCompliance', 'FacilityComplianceDeterminationDate', '11') +VALUES ('001918', 'Person_AssessmentPersonalNeedsProfile', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001838', 'FacilityCompliance', 'FacilityComplianceName', '11') +VALUES ('001918', 'PersonAddress', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001839', 'FacilityCompliance', 'FacilityComponentDeficiencyDescription', '11') +VALUES ('001918', 'PersonAddressNcesSide', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001840', 'BuildingSystemComponent', 'Identifier', '11') +VALUES ('001918', 'PersonAllergy', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001841', 'FacilityCompliance', 'FacilityEstimatedCostToEliminateDeferredMaint', '11') +VALUES ('001918', 'PersonBirthplace', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001842', 'FacilityHazard', 'FacilityHazardousCondExpectedRemediationDate', '11') +VALUES ('001918', 'PersonCareerEducationPlan', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001843', 'BuildingSpace', 'RefBuildingFullServiceKitchenTypeId', '11') +VALUES ('001918', 'PersonCredential', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001844', 'FacilityHazard', 'HazardousMaterialOrConditionDescription', '11') +VALUES ('001918', 'PersonDegreeOrCertificate', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001845', 'FacilityHazard', 'HazardousMaterialOrConditionTestingDate', '11') +VALUES ('001918', 'PersonDemographicRace', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001846', 'FacilityCompliance', 'FacilityInspectionScoreResultDescription', '11') +VALUES ('001918', 'PersonDetail', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001847', 'FacilityCompliance', 'FacilityInspectionViolationDescription', '11') +VALUES ('001918', 'PersonDigitalAccess', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001848', 'BuildingSystemComponent', 'InstallationDate', '11') +VALUES ('001918', 'PersonDigitalAccessSpeed', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001849', 'BuildingSystemComponent', 'LifecycleCost', '11') +VALUES ('001918', 'PersonDisability', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001850', 'FacilityDesignConstruction', 'BuildingSiteImprovementDescription', '11') +VALUES ('001918', 'PersonEmailAddress', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001851', 'BuildingSpaceUtilization', 'RefBuildingInstructionalSpaceFactorTypeId', '11') +VALUES ('001918', 'PersonFamily', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001852', 'FacilityJointUse', 'RefBuildingJointUseRationaleTypeId', '11') +VALUES ('001918', 'PersonHealth', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001853', 'FacilityJointUse', 'RefBuildingJointUseSchedulingTypeId', '11') +VALUES ('001918', 'PersonHealthBirth', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001854', 'FacilityJointUse', 'RefBuildingJointUserTypeId', '11') +VALUES ('001918', 'PersonHomelessness', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001855', 'BuildingSpaceUtilization', 'RefBuildingCommunityUseSpaceTypeId', '11') +VALUES ('001918', 'PersonIdentifier', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001856', 'FacilityUtilization', 'BuildingHoursOfPublicUsePerWeek', '11') +VALUES ('001918', 'PersonImmunization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001857', 'FacilityUtilization', 'BuildingNetAreaOfInstructionalSpace', '11') +VALUES ('001918', 'PersonLanguage', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001858', 'FacilityUtilization', 'BuildingNumberOfTeachingStations', '11') +VALUES ('001918', 'PersonLearningDevice', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001859', 'FacilityUtilization', 'BuildingPublicUsePolicyDescription', '11') +VALUES ('001918', 'PersonMaster', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001860', 'FacilitySite', 'RefBuildingSiteUseRestrictionsTypeId', '11') +VALUES ('001918', 'PersonMilitary', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001861', 'BuildingSpaceUtilization', 'BuildingSpaceUtilizationArea', '11') +VALUES ('001918', 'PersonOtherName', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001862', 'K12StudentEnrollment', 'RefStudentEnrollmentAccessTypeId', '11') +VALUES ('001918', 'PersonPersonalInformationVerification', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001863', 'BuildingSpaceUtilization', 'BuildingUnassignedSpaceIndicator', '11') +VALUES ('001918', 'PersonProgramParticipation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001864', 'FacilityAudit', 'RefFacilityAuditTypeId', '11') +VALUES ('001918', 'PersonReferral', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001865', 'FacilityManagement', 'RefBuildingCharterSchoolRealtyAccessTypeId', '11') +VALUES ('001918', 'PersonRelationship', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001866', 'FacilityManagement', 'RefBuildingCleaningStandardTypeId', '11') +VALUES ('001918', 'PersonStatus', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001867', 'FacilityManagement', 'RefFacilityComplianceAgencyTypeId', '11') +VALUES ('001918', 'PersonTelephone', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001868', 'FacilityDesignConstruction', 'RefBuildingEnergyConservationMeasureTypeId', '11') +VALUES ('001918', 'ProfessionalDevelopmentActivity', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001869', 'FacilityEnergy', 'BuildingEnergyServiceCompanyName', '11') +VALUES ('001918', 'ProfessionalDevelopmentRequirement', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001870', 'FacilityEnergy', 'RefBuildingEnergySourceTypeId', '11') +VALUES ('001918', 'ProfessionalDevelopmentSession', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001871', 'FacilityManagementPlan', 'RefFacilitiesMgmtEmergencyTypeId', '11') +VALUES ('001918', 'ProfessionalDevelopmentSessionInstructor', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001872', 'FacilityManagement', 'RefFacilityCapitalProgramMgmtTypeId', '11') +VALUES ('001918', 'Program', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001873', 'FacilityManagement', 'RefFacilityOperationsMgmtTypeId', '11') +VALUES ('001918', 'ProgramParticipationAE', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001874', 'FacilityHazard', 'RefFacilityHazardousMaterialsOrCondTypeId', '11') +VALUES ('001918', 'ProgramParticipationAttainment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001875', 'FacilityDesignConstruction', 'RefFacilityJointDevelopmentTypeId', '11') +VALUES ('001918', 'ProgramParticipationCte', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001876', 'FacilityCompliance', 'RefFacilityMaintStandardTypeId', '11') +VALUES ('001918', 'ProgramParticipationFoodService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001877', 'FacilityHazard', 'RefFacilityNaturallyOccurringHazardTypeId', '11') +VALUES ('001918', 'ProgramParticipationMigrant', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001878', 'FacilityEnergy', 'RefFacilityUtilityProviderTypeId', '11') +VALUES ('001918', 'ProgramParticipationNeglected', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001879', 'FacilityEnergy', 'RefFacilityUtilityTypeId', '11') +VALUES ('001918', 'ProgramParticipationSpecialEducation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001880', 'FacilityDesign', 'BuildingDateOfCertificateOfOccupancy', '11') +VALUES ('001918', 'ProgramParticipationTeacherPrep', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001881', 'FacilityAudit', 'FacilityAuditDate', '11') +VALUES ('001918', 'ProgramParticipationTitleI', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001882', 'FacilityManagementPlan', 'FacilitiesPlanDescription', '11') +VALUES ('001918', 'ProgramParticipationTitleIIILep', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001883', 'FacilityManagementPlan', 'RefFacilitiesPlanTypeId', '11') +VALUES ('001918', 'ProgramParticipationWIOA', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001884', 'FacilityDesignConstruction', 'RefFacilityStandardTypeId', '11') +VALUES ('001918', 'ProgramParticipationWIOABarriers', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001885', 'FacilityMandate', 'RefFacilitiesMandateAuthorityTypeId', '11') +VALUES ('001918', 'PsCourse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001886', 'FacilityMortgageFee', 'RefFacilityFinancingFeeTypeId', '11') +VALUES ('001918', 'PsInstitution', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001887', 'FacilityLease', 'FacilityLeaseAmount', '11') +VALUES ('001918', 'PsPriceOfAttendance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001888', 'FacilityLease', 'RefFacilityLeaseAmountCategoryId', '11') +VALUES ('001918', 'PsProgram', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001889', 'FacilityLease', 'RefFacilityLeaseTypeId', '11') +VALUES ('001918', 'PsSection', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001890', 'FacilityMortgage', 'FacilityMortgageInterestAmount', '11') +VALUES ('001918', 'PsSectionLocation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001891', 'FacilityMortgage', 'RefFacilityMortgageInterestTypeId', '11') +VALUES ('001918', 'PsStaffEmployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001892', 'FacilityMortgage', 'RefFacilityMortgageTypeId', '11') +VALUES ('001918', 'PsStudentAcademicAward', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001893', 'FacilityFinance', 'IndebtednessAmountAllowed', '11') +VALUES ('001918', 'PsStudentAcademicRecord', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001894', 'FacilityFinance', 'InsuranceDeductible', '11') +VALUES ('001918', 'PsStudentAdmissionTest', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001895', 'FacilityFinance', 'PublicEducationMillRate', '11') +VALUES ('001918', 'PsStudentApplication', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001896', 'FacilityMortgage', 'FacilityTotalAssessedValue', '11') +VALUES ('001918', 'PsStudentCohort', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001897', 'Facility', 'RefCampusTypeId', '11') +VALUES ('001918', 'PsStudentCourseSectionMark', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001898', 'FacilityCompliance', 'ComponentOrFixtureCheckDate', '11') +VALUES ('001918', 'PsStudentDemographic', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001899', 'BuildingSystemComponentService', 'ComponentOrFixtureServicedDate', '11') +VALUES ('001918', 'PsStudentEmployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001900', 'BuildingSystemComponentService', 'ComponentOrFixtureScheduledServicedDate', '11') +VALUES ('001918', 'PsStudentEnrollment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001901', 'BuildingSystemComponent', 'ComponentOrFixtureUsefulLife', '11') +VALUES ('001918', 'PsStudentFinancialAid', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001902', 'BuildingSpaceUtilization', 'AvailableUtilizedInstructionalSpace', '11') +VALUES ('001918', 'PSStudentProgram', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001903', 'BuildingSpaceUtilization', 'BuildingCapacityFactorIndicator', '11') +VALUES ('001918', 'PsStudentSection', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001904', 'FacilityUtilization', 'FacilityEnrollmentCapacity', '11') +VALUES ('001918', 'QuarterlyEmploymentRecord', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001905', 'OrganizationRelationship', 'RefOrganizationRelationshipId', '11') +VALUES ('001918', 'RequiredImmunization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001906', 'Facility', 'FacilityOwnershipIndicator', '11') +VALUES ('001918', 'Role', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001907', 'CompetencyFramework', 'CompetencyFrameworkSourceUrl', '11') +VALUES ('001918', 'RoleAttendance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001908', 'CompetencyDefinition', 'TypicalAgeRangeMinimum', '11') +VALUES ('001918', 'RoleAttendanceEvent', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001909', 'CompetencyDefinition', 'TypicalAgeRangeMaximum', '11') +VALUES ('001918', 'RoleStatus', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001910', 'CredentialDefinition', 'CredentialDefDateEffective', '11') +VALUES ('001918', 'Rubric', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001911', 'CredentialOffered', 'CredentialOfferedStartDate', '11') +VALUES ('001918', 'RubricCriterion', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001912', 'CredentialOffered', 'CredentialOfferedEndDate', '11') +VALUES ('001918', 'RubricCriterionLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001913', 'CredentialDefinition', 'RefCTDLAudienceLevelTypeId', '11') +VALUES ('001918', 'ServiceFrequency', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001914', 'CredentialDefAgent', 'RefCredentialDefAgentRoleTypeId', '11') +VALUES ('001918', 'ServicePlan', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001915', 'K12SchoolStatus', 'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatusId', '11') +VALUES ('001918', 'ServiceProvided', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001916', 'K12SchoolStatus', 'ProgressAcheivingEnglishLearnerProficiencyStateDefinedStatus', '11') +VALUES ('001918', 'ServiceProvider', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Activity', 'RecordStartDateTime', '11') +VALUES ('001918', 'ServicesReceived', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ActivityRecognition', 'RecordStartDateTime', '11') +VALUES ('001918', 'ServiceStaff', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeCourse', 'RecordStartDateTime', '11') +VALUES ('001918', 'StaffCompensation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeProvider', 'RecordStartDateTime', '11') +VALUES ('001918', 'StaffCredential', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeStaff', 'RecordStartDateTime', '11') +VALUES ('001918', 'StaffEmployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeStudentAcademicRecord', 'RecordStartDateTime', '11') +VALUES ('001918', 'StaffEvaluation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeStudentEmployment', 'RecordStartDateTime', '11') +VALUES ('001918', 'StaffEvaluationPart', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ApipInteraction', 'RecordStartDateTime', '11') +VALUES ('001918', 'StaffExperience', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Application', 'RecordStartDateTime', '11') +VALUES ('001918', 'StaffProfessionalDevelopmentActivity', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Assessment', 'RecordStartDateTime', '11') +VALUES ('001918', 'StaffTechnicalAssistance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Assessment_AssessmentAdministration', 'RecordStartDateTime', '11') +VALUES ('001918', 'TeacherEducationCredentialExam', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentAccommodation', 'RecordStartDateTime', '11') +VALUES ('001918', 'TeacherStudentDataLinkExclusion', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentAdministration', 'RecordStartDateTime', '11') +VALUES ('001918', 'WorkforceEmploymentQuarterlyData', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentAdministration_Organization', 'RecordStartDateTime', '11') +VALUES ('001918', 'WorkforceProgramParticipantCohort', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentAsset', 'RecordStartDateTime', '11') +VALUES ('001918', 'WorkforceProgramParticipation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentELDevelopmentalDomain', 'RecordStartDateTime', '11') +VALUES ('001919', 'OrganizationCalendarEvent', 'StartTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentForm', 'RecordStartDateTime', '11') +VALUES ('001919', 'RoleAttendanceEvent', 'StartTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentForm_AssessmentAsset', 'RecordStartDateTime', '11') +VALUES ('001920', 'OrganizationCalendarEvent', 'EndTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentForm_AssessmentFormSection', 'RecordStartDateTime', '11') +VALUES ('001920', 'RoleAttendanceEvent', 'EndTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentFormSection', 'RecordStartDateTime', '11') +VALUES ('001921', 'OrganizationPersonRoleFTE', 'FullTimeEquivalency', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentFormSection_AssessmentAsset', 'RecordStartDateTime', '11') +VALUES ('001922', 'PersonProgramParticipation', 'RefProgramEntryReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentFormSection_AssessmentItem', 'RecordStartDateTime', '11') +VALUES ('001923', 'OrganizationFederalAccountability', 'RefComprehensiveSupportAndImprovementStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItem', 'RecordStartDateTime', '11') +VALUES ('001924', 'OrganizationFederalAccountability', 'RefTargetedSupportAndImprovementStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemApip', 'RecordStartDateTime', '11') +VALUES ('001925', 'OrganizationFederalAccountability', 'RefAdditionalTargetedSupportAndImprovementStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemApipDescription', 'RecordStartDateTime', '11') +VALUES ('001926', 'K12LeaGradeLevelsApproved', 'RefGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemCharacteristic', 'RecordStartDateTime', '11') +VALUES ('001926', 'K12SchoolGradeLevelsApproved', 'RefGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemPossibleResponse', 'RecordStartDateTime', '11') +VALUES ('001927', 'OrganizationTelephone', 'RefTelephoneNumberListedStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemResponse', 'RecordStartDateTime', '11') +VALUES ('001927', 'PersonTelephone', 'RefTelephoneNumberListedStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemResponseTheory', 'RecordStartDateTime', '11') +VALUES ('001928', 'LocationAddress', 'DoNotPublishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemRubricCriterionResult', 'RecordStartDateTime', '11') +VALUES ('001928', 'OrganizationEmail', 'DoNotPublishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentLanguage', 'RecordStartDateTime', '11') +VALUES ('001928', 'OrganizationTelephone', 'DoNotPublishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentLevelsForWhichDesigned', 'RecordStartDateTime', '11') +VALUES ('001928', 'PersonAddress', 'DoNotPublishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedApipContent', 'RecordStartDateTime', '11') +VALUES ('001928', 'PersonEmailAddress', 'DoNotPublishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedApipControl', 'RecordStartDateTime', '11') +VALUES ('001928', 'PersonTelephone', 'DoNotPublishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedApipDisplay', 'RecordStartDateTime', '11') +VALUES ('001930', 'ProgramParticipationAE', 'OutOfWorkforceIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedBraille', 'RecordStartDateTime', '11') +VALUES ('001930', 'ProgramParticipationCte', 'OutOfWorkforceIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedScreenEnhancement', 'RecordStartDateTime', '11') +VALUES ('001931', 'PersonLearningDevice', 'RefPrimaryLearningDeviceAwayFromSchoolId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentParticipantSession', 'RecordStartDateTime', '11') +VALUES ('001932', 'PersonLearningDevice', 'RefPrimaryLearningDeviceAccessId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentParticipantSession_Accommodation', 'RecordStartDateTime', '11') +VALUES ('001933', 'PersonLearningDevice', 'RefPrimaryLearningDeviceProviderId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPerformanceLevel', 'RecordStartDateTime', '11') +VALUES ('001934', 'PersonDigitalAccess', 'InternetAccessInResidence', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedLanguageLearner', 'RecordStartDateTime', '11') +VALUES ('001935', 'PersonDigitalAccess', 'RefBarrierToInternetAccessInResidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedScreenReader', 'RecordStartDateTime', '11') +VALUES ('001936', 'PersonDigitalAccess', 'RefInternetAccessTypeInResidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfile', 'RecordStartDateTime', '11') +VALUES ('001937', 'PersonDigitalAccess', 'RefInternetPerformanceInResidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfileContent', 'RecordStartDateTime', '11') +VALUES ('001938', 'WorkforceProgramParticipantCohort', 'CohortMedianEarnings', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfileControl', 'RecordStartDateTime', '11') +VALUES ('001939', 'ProgramParticipationAE', 'RefAdultEducationProgramExitReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfileDisplay', 'RecordStartDateTime', '11') +VALUES ('001940', 'ProgramParticipationWIOABarriers', 'RefWIOABarrierstoEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordStartDateTime', '11') +VALUES ('001941', 'ProgramParticipationWIOA', 'WIOACareerServices', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentRegistration', 'RecordStartDateTime', '11') +VALUES ('001942', 'ProgramParticipationWIOA', 'WIOATrainingServices', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentRegistration_Accommodation', 'RecordStartDateTime', '11') +VALUES ('001943', 'PersonDemographicRace', 'RefRaceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentResult', 'RecordStartDateTime', '11') +VALUES ('001944', 'PersonDemographicRace', 'FederalRaceAndEthnicityDeclined', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentResult_PerformanceLevel', 'RecordStartDateTime', '11') +VALUES ('001945', 'PersonPersonalInformationVerification', 'RefPersonalInformationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentResultRubricCriterionResult', 'RecordStartDateTime', '11') +VALUES ('001946', 'Role', 'RefRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSession', 'RecordStartDateTime', '11') +VALUES ('001947', 'PsStudentDemographic', 'FirstGenerationCollegeStudent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSessionStaffRole', 'RecordStartDateTime', '11') +VALUES ('001948', 'PersonAddressNcesSide', 'NcesSideEstimate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtest', 'RecordStartDateTime', '11') +VALUES ('001949', 'PersonAddressNcesSide', 'NcesSideStandardError', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtest_AssessmentItem', 'RecordStartDateTime', '11') +VALUES ('001950', 'PersonAddressNcesSide', 'NcesSideDateProcessed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtest_CompetencyDefinition', 'RecordStartDateTime', '11') +VALUES ('001951', 'PersonAddressNcesSide', 'NcesSideVintageBeginYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtestELDevelopmentalDomain', 'RecordStartDateTime', '11') +VALUES ('001952', 'PersonAddressNcesSide', 'NcesSideVintageEndYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordStartDateTime', '11') +VALUES ('001953', 'CredentialDefinition', 'CredentialDefinitionTerminalDegreeIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Authentication', 'RecordStartDateTime', '11') +VALUES ('001954', 'ProgramParticipationAttainment', 'AECredentialAttainmentPSEnrollmentIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Authorization', 'RecordStartDateTime', '11') +VALUES ('001955', 'ProgramParticipationAttainment', 'AECredentialAttainmentEmployedIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AuthorizationDocument', 'RecordStartDateTime', '11') +VALUES ('001956', 'ProgramParticipationAttainment', 'AECredentialAttainmentPSCredentialIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSpace', 'RecordStartDateTime', '11') +VALUES ('001957', 'RoleAttendance', 'NumberOfDaysTardy', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSpaceUtilization', 'RecordStartDateTime', '11') +VALUES ('001958', 'StaffCompensation', 'RefStaffCompensationSourceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSystemCategory', 'RecordStartDateTime', '11') +VALUES ('001959', 'StaffCompensation', 'StaffCompensationAnnualSupplement', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSystemComponent', 'RecordStartDateTime', '11') +VALUES ('001960', 'StaffCompensation', 'StaffCompensationLongevity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSystemComponentService', 'RecordStartDateTime', '11') +VALUES ('001961', 'K12StaffAssignment', 'RefEDFactsTeacherInexperiencedStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Classroom', 'RecordStartDateTime', '11') +VALUES ('001962', 'K12StaffAssignment', 'RefOutOfFieldStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyDefAssociation', 'RecordStartDateTime', '11') +VALUES ('001963', 'K12OrganizationStudentResponsibility', 'RefStudentSchoolAffiliationStateDefinedStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyDefEducationLevel', 'RecordStartDateTime', '11') +VALUES ('001964', 'DataCollection', 'SourceSystemDataCollectionIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyDefinition', 'RecordStartDateTime', '11') +VALUES ('001965', 'DataCollection', 'SourceSystemName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyDefinition_CompetencySet', 'RecordStartDateTime', '11') +VALUES ('001966', 'DataCollection', 'DataCollectionName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyFramework', 'RecordStartDateTime', '11') +VALUES ('001967', 'DataCollection', 'DataCollectionDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencySet', 'RecordStartDateTime', '11') +VALUES ('001968', 'DataCollection', 'DataCollectionOpenDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencySet_Rubric', 'RecordStartDateTime', '11') +VALUES ('001969', 'DataCollection', 'DataCollectionCloseDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencySet_RubricCriterion', 'RecordStartDateTime', '11') +VALUES ('001970', 'DataCollection', 'DataCollectionAcademicSchoolYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CoreKnowledgeArea', 'RecordStartDateTime', '11') +VALUES ('001971', 'DataCollection', 'DataCollectionSchoolYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Course', 'RecordStartDateTime', '11') +VALUES ('001972', 'RecordStatus', 'RefRecordStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSection', 'RecordStartDateTime', '11') +VALUES ('001972', 'RecordStatusHistory', 'RefRecordStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSectionAssessmentReporting', 'RecordStartDateTime', '11') +VALUES ('001973', 'RecordStatus', 'RecordStatusDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSectionLevel', 'RecordStartDateTime', '11') +VALUES ('001973', 'RecordStatusHistory', 'RecordStatusDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSectionLocation', 'RecordStartDateTime', '11') +VALUES ('001974', 'RecordStatus', 'RefRecordStatusCreatorEntityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSectionSchedule', 'RecordStartDateTime', '11') +VALUES ('001974', 'RecordStatusHistory', 'RefRecordStatusCreatorEntityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialAward', 'RecordStartDateTime', '11') +VALUES ('001975', 'PersonDigitalAccessSpeed', 'InternetUploadSpeed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialAwardCredit', 'RecordStartDateTime', '11') +VALUES ('001976', 'PersonDigitalAccessSpeed', 'InternetDownloadSpeed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialAwardEvidence', 'RecordStartDateTime', '11') +VALUES ('001977', 'PersonDigitalAccessSpeed', 'InternetSpeedTestDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialCriteriaCourse', 'RecordStartDateTime', '11') +VALUES ('001978', 'ProgramParticipationAttainment', 'RefEdFactsAcademicOrCareerAndTechnicalOutcomeTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefAgent', 'RecordStartDateTime', '11') +VALUES ('001979', 'ProgramParticipationAttainment', 'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefAgentCredential', 'RecordStartDateTime', '11') +VALUES ('001981', 'PsStudentDemographic', 'EmancipatedMinor', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefCategory', 'RecordStartDateTime', '11') +VALUES ('001982', 'PersonFamily', 'NumberOfHouseholdCollegeStudents', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefCriteria', 'RecordStartDateTime', '11') +VALUES ('001983', 'PsStudentDemographic', 'RefNumberOfDependentsTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefIdentifier', 'RecordStartDateTime', '11') +VALUES ('001984', 'PsStudentDemographic', 'ChildrenOfFallenHeroesIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefinition', 'RecordStartDateTime', '11') +VALUES ('001985', 'StaffEvaluationPart', 'PartName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialIssuer', 'RecordStartDateTime', '11') +VALUES ('001986', 'StaffEvaluationPart', 'ScoreOrRating', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialOffered', 'RecordStartDateTime', '11') +VALUES ('001987', 'StaffEvaluationPart', 'Scale', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CteCourse', 'RecordStartDateTime', '11') +VALUES ('001988', 'K12StudentHomeLanguageSurvey', 'HomeLanguageSurveyAdministrationIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CteStudentAcademicRecord', 'RecordStartDateTime', '11') +VALUES ('001989', 'K12StudentHomeLanguageSurvey', 'HomeLanguageSurveyAdministrationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'EarlyChildhoodCredential', 'RecordStartDateTime', '11') +VALUES ('001990', 'DataCollection', 'RefDataCollectionStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'EarlyChildhoodProgramTypeOffered', 'RecordStartDateTime', '11') +VALUES ('001991', 'OrganizationProjectBasedLearning', 'ProjectBasedLearningIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildDemographic', 'RecordStartDateTime', '11') +VALUES ('001992', 'OrganizationProjectBasedLearning', 'OrganizationProjectBasedLearningId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildDevelopmentalAssessment', 'RecordStartDateTime', '11') +VALUES ('001992', 'OrganizationProjectBasedLearning', 'RefProjectBasedLearningTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildHealth', 'RecordStartDateTime', '11') +VALUES ('001994', 'Course', 'CourseLevelApprovalIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildIndividualizedProgram', 'RecordStartDateTime', '11') +VALUES ('001995', 'Assessment', 'RefAssessmentTypeAdministeredToEnglishLearnersId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildOutcomeSummary', 'RecordStartDateTime', '11') +VALUES ('001996', 'K12StaffAssignment', 'RefSpecialEducationTeacherQualificationStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildProgramEligibility', 'RecordStartDateTime', '11') +VALUES ('001997', 'K12StaffAssignment', 'RefEdFactsCertificationStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildService', 'RecordStartDateTime', '11') +VALUES ('001998', 'OrganizationPopulationServed', 'RefStudentSupportServiceAvailabilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildServicesApplication', 'RecordStartDateTime', '11') +VALUES ('001999', 'OrganizationEnrollmentCapacity', 'AdjustedCapacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildTransitionPlan', 'RecordStartDateTime', '11') +VALUES ('002000', 'OrganizationEnrollmentCapacity', 'RefAdjustedCapacityReasonTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELClassSection', 'RecordStartDateTime', '11') +VALUES ('002001', 'OrganizationEnrollmentCapacity', 'EarlyLearningAge2AndOlderCapacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELClassSectionService', 'RecordStartDateTime', '11') +VALUES ('002002', 'OrganizationEnrollmentCapacity', 'EarlyLearningAgeUnder2Capacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELCourse', 'RecordStartDateTime', '11') +VALUES ('002003', 'FinancialAccountLocal', 'RefFinancialAccountLocalRevenueCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELEnrollment', 'RecordStartDateTime', '11') +VALUES ('002004', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalFunctionCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELEnrollmentOtherFunding', 'RecordStartDateTime', '11') +VALUES ('002005', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalObjectCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELFacilityLicensing', 'RecordStartDateTime', '11') +VALUES ('002006', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalLevelOfInstructionCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'EligibilityEvaluation', 'RecordStartDateTime', '11') +VALUES ('002007', 'FinancialAccountLocal', 'RefFinancialAccountLocalBalanceSheetCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELOrganization', 'RecordStartDateTime', '11') +VALUES ('002008', 'FinancialAccountLocal', 'RefFinancialAccountLocalFundClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELOrganizationAvailability', 'RecordStartDateTime', '11') +VALUES ('002009', 'FinancialAccountLocal', 'RefFinancialAccountLocalProgramCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELOrganizationFunds', 'RecordStartDateTime', '11') +VALUES ('002010', 'FinancialAccount', 'RefFederalProgramSubgrantCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELOrganizationMonitoring', 'RecordStartDateTime', '11') +VALUES ('002012', 'FacilityUtilization', 'EnrollmentCapacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELProgramLicensing', 'RecordStartDateTime', '11') +VALUES ('002012', 'OrganizationEnrollmentCapacity', 'EnrollmentCapacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELQualityInitiative', 'RecordStartDateTime', '11') +VALUES ('002012', 'OrganizationEnrollmentCapacity', 'OrganizationCalendarSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELQualityRatingImprovement', 'RecordStartDateTime', '11') +VALUES ('002012', 'OrganizationEnrollmentCapacity', 'OrganizationEnrollmentCapacityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELServicePartner', 'RecordStartDateTime', '11') +VALUES ('002013', 'OrganizationProgramType', 'PrimaryProgramIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELStaff', 'RecordStartDateTime', '11') +VALUES ('002014', 'RoleAttendanceEvent', 'AttendanceEventDurationMinutes', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELStaffAssignment', 'RecordStartDateTime', '11') +VALUES ('002015', 'RoleAttendanceEvent', 'AttendanceEventDurationHours', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELStaffEducation', 'RecordStartDateTime', '11') +VALUES ('002016', 'OrganizationPolicy', 'RefDEIPolicyIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELStaffEmployment', 'RecordStartDateTime', '11') +VALUES ('002017', 'K12StudentEnrollment', 'RefAdjustedExitOrWithdrawalTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Facility', 'RecordStartDateTime', '11') +VALUES ('002018', 'PersonTransportationEligibility', 'RefTransportationPublicExpenseEligibilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityAudit', 'RecordStartDateTime', '11') +VALUES ('002019', 'PersonTransportationEligibility', 'RefTransportationStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityCompliance', 'RecordStartDateTime', '11') +VALUES ('002020', 'PersonTransportationEligibility', 'RefTransportationStateAidQualificationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityDesign', 'RecordStartDateTime', '11') +VALUES ('002021', 'OrganizationCalendarSession', 'SessionSequenceNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityDesignConstruction', 'RecordStartDateTime', '11') +VALUES ('002022', 'RoleAttendance', 'RefChronicStudentAbsenteeismIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityEnergy', 'RecordStartDateTime', '11') +VALUES ('002023', 'Course', 'SequenceOfCourse', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityFinance', 'RecordStartDateTime', '11') +VALUES ('002024', 'Facility', 'TemperatureControlledBuildingArea', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityFinancial', 'RecordStartDateTime', '11') +VALUES ('002025', 'PsInstitution', 'RefMostPrevalentLevelOfInstitutionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityHazard', 'RecordStartDateTime', '11') +VALUES ('002026', 'K12StudentAcademicRecord', 'RefProjectedHighSchoolDiplomaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityJointUse', 'RecordStartDateTime', '11') +VALUES ('002027', 'LearningResourceIdentifier', 'LearningResourceIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityLease', 'RecordStartDateTime', '11') +VALUES ('002028', 'LearningResourceIdentifier', 'RefLearningResourceIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityLocation', 'RecordStartDateTime', '11') +VALUES ('002031', 'LearningResourceStatus', 'RefLearningResourceStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityManagement', 'RecordStartDateTime', '11') +VALUES ('002032', 'LearningResource', 'RefHighQualityInstructionalMaterialIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityManagementPlan', 'RecordStartDateTime', '11') +VALUES ('002033', 'LearningResourceStatus', 'LearningResourceStatusQuantity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityMandate', 'RecordStartDateTime', '11') +VALUES ('002033', 'PersonMilitary', 'MilitaryServiceNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityMortgage', 'RecordStartDateTime', '11') +VALUES ('002035', 'PersonMilitaryOccupationalSpecialties', 'MilitaryOccupationalSpecialties', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityMortgageFee', 'RecordStartDateTime', '11') +VALUES ('002036', 'PersonMilitaryExpertise', 'RefMilitaryExpertiseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityRelationship', 'RecordStartDateTime', '11') +VALUES ('002037', 'PersonMilitaryDuties', 'RefMilitaryDutiesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilitySchoolDesign', 'RecordStartDateTime', '11') +VALUES ('002038', 'PersonMilitaryServiceLocations', 'MilitaryServiceLocations', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilitySite', 'RecordStartDateTime', '11') +VALUES ('002039', 'PersonMilitary', 'MilitaryInductionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityUtilization', 'RecordStartDateTime', '11') +VALUES ('002040', 'PersonMilitary', 'MilitaryDischargeDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FinancialAccount', 'RecordStartDateTime', '11') +VALUES ('002041', 'PersonMilitary', 'MilitaryReleaseDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FinancialAccountProgram', 'RecordStartDateTime', '11') +VALUES ('002042', 'PersonMilitaryDeployment', 'MilitaryDeploymentStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FinancialAidApplication', 'RecordStartDateTime', '11') +VALUES ('002043', 'PersonMilitaryDeployment', 'MilitaryDeploymentEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FinancialAidAward', 'RecordStartDateTime', '11') +VALUES ('002044', 'PersonMilitary', 'RefMilitaryDischargeCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Goal', 'RecordStartDateTime', '11') +VALUES ('002045', 'PersonMilitary', 'MilitaryInductionRank', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'GoalMeasurement', 'RecordStartDateTime', '11') +VALUES ('002046', 'PersonMilitary', 'MilitaryDischargeRank', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'GoalMeasurementCriterion', 'RecordStartDateTime', '11') +VALUES ('002047', 'PersonMilitary', 'MilitaryHighestRank', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'GoalPerformance', 'RecordStartDateTime', '11') +VALUES ('002048', 'PersonMilitary', 'MilitaryCurrentRank', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IDEAEligibilityEvaluationCategory', 'RecordStartDateTime', '11') +VALUES ('002049', 'PersonMilitaryHonors', 'MilitaryHonors', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IEPAuthorization', 'RecordStartDateTime', '11') +VALUES ('002050', 'PersonMilitaryCampaigns', 'RefMilitaryCampaignsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IEPAuthorizationRejected', 'RecordStartDateTime', '11') +VALUES ('002051', 'PersonMilitaryDeployment', 'RefMilitaryDeploymentStatusCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IEPPresentLevel', 'RecordStartDateTime', '11') +VALUES ('002052', 'PersonMilitaryDeployment', 'MilitaryDeploymentDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Incident', 'RecordStartDateTime', '11') +VALUES ('002053', 'PersonMilitaryDeployment', 'MilitaryDeploymentOrderDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IncidentPerson', 'RecordStartDateTime', '11') +VALUES ('002054', 'PersonMilitaryDeployment', 'MilitaryDeploymentRequestedBy', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgram', 'RecordStartDateTime', '11') +VALUES ('002055', 'PersonMilitaryDeployment', 'MilitaryDeploymentActivityCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAccommodation', 'RecordStartDateTime', '11') +VALUES ('002056', 'PersonMilitaryDeployment', 'MilitaryDeploymentActivityName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAccommodationSubject', 'RecordStartDateTime', '11') +VALUES ('002057', 'PersonMilitary', 'RefNationalGuardIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAmendment', 'RecordStartDateTime', '11') +VALUES ('002058', 'StaffCompensationFundingSource', 'StaffCompensationFundingSourcePercentage', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAssessment', 'RecordStartDateTime', '11') +VALUES ('002059', 'StaffCompensationFundingSource', 'StaffCompensationFundingSourceAmount', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAssessmentAccommodation', 'RecordStartDateTime', '11') +VALUES ('002060', 'StaffExperience', 'YearsOfTotalExperience', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramEligibility', 'RecordStartDateTime', '11') +VALUES ('002061', 'StaffExperience', 'YearsOfPriorProfessionalExperience', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramEligibilityEvaluation', 'RecordStartDateTime', '11') +VALUES ('002062', 'PersonFamily', 'RefTeenParentIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramGoal', 'RecordStartDateTime', '11') +VALUES ('002063', 'OrganizationJurisdiction', 'OrganizationJurisdictionSquareMiles', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramMeeting', 'RecordStartDateTime', '11') +VALUES ('002064', 'StaffCompensation', 'StaffCompensationAnnualSupplementDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramMeetingAttendee', 'RecordStartDateTime', '11') +VALUES ('002065', 'CourseFundingSource', 'RefCourseFundingProgramAllowedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramProgressGoal', 'RecordStartDateTime', '11') +VALUES ('002066', 'FinancialAccount', 'RefFinancialAccountGASBRevenueClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramProgressReport', 'RecordStartDateTime', '11') +VALUES ('002067', 'FinancialAccountLocal', 'RefFinancialAccountLocalGASBRevenueClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramProgressReportPlan', 'RecordStartDateTime', '11') +VALUES ('002068', 'K12StudentDropout', 'RefStudentDropoutStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramService', 'RecordStartDateTime', '11') +VALUES ('002069', 'JobIdentifier', 'JobIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramServicesReceived', 'RecordStartDateTime', '11') +VALUES ('002070', 'JobIdentifier', 'RefJobIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IPEDSFinance', 'RecordStartDateTime', '11') +VALUES ('002071', 'JobDetail', 'RefLocalJobCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12CharterSchoolAuthorizerAgency', 'RecordStartDateTime', '11') +VALUES ('002072', 'JobDetail', 'RefLocalJobFunctionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12CharterSchoolManagementOrganization', 'RecordStartDateTime', '11') +VALUES ('002073', 'JobDetail', 'RefCodingSystemOrganizationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12Course', 'RecordStartDateTime', '11') +VALUES ('002074', 'JobDetail', 'RefEducationJobTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12FederalFundAllocation', 'RecordStartDateTime', '11') +VALUES ('002075', 'JobPositionIdentifier', 'JobPositionIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12Lea', 'RecordStartDateTime', '11') +VALUES ('002076', 'JobPositionIdentifier', 'RefJobPositionIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaFederalFunds', 'RecordStartDateTime', '11') +VALUES ('002077', 'JobPositionDetail', 'JobPositionExpectedStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaFederalReporting', 'RecordStartDateTime', '11') +VALUES ('002078', 'JobPositionStatus', 'RefJobPositionStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaGradeLevelsApproved', 'RecordStartDateTime', '11') +VALUES ('002079', 'JobPositionStatus', 'JobPositionStatusDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaGradeOffered', 'RecordStartDateTime', '11') +VALUES ('002080', 'JobPositionStatus', 'RefJobPositionStatusCancelledReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaPreKEligibility', 'RecordStartDateTime', '11') +VALUES ('002081', 'CredentialAwardRelationship', 'CredentialAwardRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaPreKEligibleAgesIDEA', 'RecordStartDateTime', '11') +VALUES ('002082', 'CredentialDefGradeLevel', 'RefLowGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaSafeDrugFree', 'RecordStartDateTime', '11') +VALUES ('002083', 'CredentialDefGradeLevel', 'RefHighGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordStartDateTime', '11') +VALUES ('002084', 'ProgramParticipationNeglected', 'RefNeglectedProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaTitleISupportService', 'RecordStartDateTime', '11') +VALUES ('002085', 'ProgramParticipationNeglected', 'RefDelinquentProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12OrganizationStudentResponsibility', 'RecordStartDateTime', '11') +VALUES ('002086', 'ProgramParticipationSpecialEducation', 'RefPartBPostsecondaryOutcomesIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12ProgramOrService', 'RecordStartDateTime', '11') +VALUES ('002087', 'ProgramParticipationCte', 'RefPerkinsPostProgramPlacementIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12School', 'RecordStartDateTime', '11') +VALUES ('002088', 'IndividualizedProgramAccessibleFormat', 'RefAccessibleFormatIssuedIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolCorrectiveAction', 'RecordStartDateTime', '11') +VALUES ('002089', 'IndividualizedProgramAccessibleFormat', 'RefAccessibleFormatTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolGradeLevelsApproved', 'RecordStartDateTime', '11') +VALUES ('002090', 'IndividualizedProgramAccessibleFormat', 'AccessibleFormatIssuedBeginDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolGradeOffered', 'RecordStartDateTime', '11') +VALUES ('002091', 'IndividualizedProgramAccessibleFormat', 'AccessibleFormatIssuedEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolImprovement', 'RecordStartDateTime', '11') +VALUES ('002092', 'IndividualizedProgramAccessibleFormat', 'RefAccessibleFormatRequiredIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolIndicatorStatus', 'RecordStartDateTime', '11') +VALUES ('002093', 'LearningResourceIssued', 'LearningResourceIssuedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolStatus', 'RecordStartDateTime', '11') +VALUES ('002094', 'LearningResourceOrder', 'LearningResourceReceivedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12Sea', 'RecordStartDateTime', '11') +VALUES ('002095', 'LearningResourceOrder', 'LearningResourceOrderedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SeaAlternateFundUse', 'RecordStartDateTime', '11') +VALUES ('002096', 'K12LeaPolicy', 'RefLEAGFSAAssuranceofComplianceIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SeaFederalFunds', 'RecordStartDateTime', '11') +VALUES ('002097', 'K12LeaPolicy', 'RefLEAGFSAPolicyAssuranceIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StaffAssignment', 'RecordStartDateTime', '11') +VALUES ('002098', 'RoleAttendanceEvent', 'AttendanceEventDurationDay', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StaffEmployment', 'RecordStartDateTime', '11') +VALUES ('002099', 'OrganizationCalendarSession', 'InstructionalMinutesPerDay', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentAcademicHonor', 'RecordStartDateTime', '11') +VALUES ('002100', 'OrganizationCalendarSession', 'LunchMinutesPerDay', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentAcademicRecord', 'RecordStartDateTime', '11') +VALUES ('002101', 'OrganizationCalendarSession', 'RecessMinutesPerDay', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentActivity', 'RecordStartDateTime', '11') +VALUES ('002102', 'BoardMembership', 'BoardMemberTermStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentCohort', 'RecordStartDateTime', '11') +VALUES ('002103', 'BoardMembership', 'BoardMemberTermEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentCourseSection', 'RecordStartDateTime', '11') +VALUES ('002104', 'BoardMembership', 'RefBoardMemberPositionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentCourseSectionMark', 'RecordStartDateTime', '11') +VALUES ('002105', 'BoardMembership', 'RefBoardMembershipTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentDiscipline', 'RecordStartDateTime', '11') +VALUES ('002106', 'OrganizationSalaryScheduleCriteria', 'SalaryScheduleCriterionName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentEmployment', 'RecordStartDateTime', '11') +VALUES ('002107', 'OrganizationSalaryScheduleCriteria', 'SalaryScheduleCriterionDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentEnrollment', 'RecordStartDateTime', '11') +VALUES ('002108', 'OrganizationSalaryScheduleCriteriaValue', 'SalaryScheduleCriterionValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentGraduationPlan', 'RecordStartDateTime', '11') +VALUES ('002109', 'OrganizationSalaryScheduleSalary', 'SalaryScheduleSalaryValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentHomeLanguageSurvey', 'RecordStartDateTime', '11') +VALUES ('002110', 'IncidentActivity', 'RefIncidentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentLiteracyAssessment', 'RecordStartDateTime', '11') +VALUES ('002111', 'FacilityJointUse', 'RefFacilityJointUseIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentSession', 'RecordStartDateTime', '11') +VALUES ('', 'RequiredImmunization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12TitleIIILanguageInstruction', 'RecordStartDateTime', '11') +VALUES ('', 'RequiredImmunization', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearnerAction', 'RecordStartDateTime', '11') +VALUES ('', 'RequiredImmunization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearnerActivity', 'RecordStartDateTime', '11') +VALUES ('', 'RequiredImmunization', 'RequiredImmunizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearnerActivity_LearningResource', 'RecordStartDateTime', '11') +VALUES ('', 'Role', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResource', 'RecordStartDateTime', '11') +VALUES ('', 'Role', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourceAdaptation', 'RecordStartDateTime', '11') +VALUES ('', 'Role', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourceEducationLevel', 'RecordStartDateTime', '11') +VALUES ('', 'Role', 'RefJurisdictionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourceMediaFeature', 'RecordStartDateTime', '11') +VALUES ('', 'Role', 'RoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourcePeerRating', 'RecordStartDateTime', '11') +VALUES ('', 'RoleAttendance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourcePhysicalMedia', 'RecordStartDateTime', '11') +VALUES ('', 'RoleAttendance', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Location', 'RecordStartDateTime', '11') +VALUES ('', 'RoleAttendance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LocationAddress', 'RecordStartDateTime', '11') +VALUES ('', 'RoleAttendance', 'RoleAttendanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Organization', 'RecordStartDateTime', '11') +VALUES ('', 'RoleAttendanceEvent', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationAccreditation', 'RecordStartDateTime', '11') +VALUES ('', 'RoleAttendanceEvent', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendar', 'RecordStartDateTime', '11') +VALUES ('', 'RoleAttendanceEvent', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendarCrisis', 'RecordStartDateTime', '11') +VALUES ('', 'RoleAttendanceEvent', 'RoleAttendanceEventId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendarDay', 'RecordStartDateTime', '11') +VALUES ('', 'RoleStatus', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendarEvent', 'RecordStartDateTime', '11') +VALUES ('', 'RoleStatus', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendarSession', 'RecordStartDateTime', '11') +VALUES ('', 'RoleStatus', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationDetail', 'RecordStartDateTime', '11') +VALUES ('', 'RoleStatus', 'RoleStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationEmail', 'RecordStartDateTime', '11') +VALUES ('', 'Rubric', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationEmployeeBenefit', 'RecordStartDateTime', '11') +VALUES ('', 'Rubric', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationFederalAccountability', 'RecordStartDateTime', '11') +VALUES ('', 'Rubric', 'RubricId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationFinancial', 'RecordStartDateTime', '11') +VALUES ('', 'RubricCriterion', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationIdentifier', 'RecordStartDateTime', '11') +VALUES ('', 'RubricCriterion', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationImage', 'RecordStartDateTime', '11') +VALUES ('', 'RubricCriterion', 'RubricCriterionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationIndicator', 'RecordStartDateTime', '11') +VALUES ('', 'RubricCriterion', 'RubricId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationLocation', 'RecordStartDateTime', '11') +VALUES ('', 'RubricCriterionLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationOperationalStatus', 'RecordStartDateTime', '11') +VALUES ('', 'RubricCriterionLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPersonRole', 'RecordStartDateTime', '11') +VALUES ('', 'RubricCriterionLevel', 'RubricCriterionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPersonRoleApplication', 'RecordStartDateTime', '11') +VALUES ('', 'RubricCriterionLevel', 'RubricCriterionLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPersonRoleFTE', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceFrequency', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPolicy', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceFrequency', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPopulationServed', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceFrequency', 'ServiceFrequencyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationProgramType', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceFrequency', 'ServicePlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationRelationship', 'RecordStartDateTime', '11') +VALUES ('', 'ServicePlan', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationService', 'RecordStartDateTime', '11') +VALUES ('', 'ServicePlan', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationTechnicalAssistance', 'RecordStartDateTime', '11') +VALUES ('', 'ServicePlan', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationTelephone', 'RecordStartDateTime', '11') +VALUES ('', 'ServicePlan', 'ServicePlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationWebsite', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceProvided', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PDActivityEducationLevel', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceProvided', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PeerRatingSystem', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceProvided', 'ServiceProvidedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Person', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceProvided', 'ServicesReceivedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Person_AssessmentPersonalNeedsProfile', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceProvider', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonAddress', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceProvider', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonAddressNcesSide', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceProvider', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonAllergy', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceProvider', 'ServiceProvidedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonBirthplace', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceProvider', 'ServiceProviderId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonCareerEducationPlan', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceProvider', 'ServiceStaffId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonCredential', 'RecordStartDateTime', '11') +VALUES ('', 'ServicesReceived', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDegreeOrCertificate', 'RecordStartDateTime', '11') +VALUES ('', 'ServicesReceived', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDemographicRace', 'RecordStartDateTime', '11') +VALUES ('', 'ServicesReceived', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDetail', 'RecordStartDateTime', '11') +VALUES ('', 'ServicesReceived', 'ServicePlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDigitalAccess', 'RecordStartDateTime', '11') +VALUES ('', 'ServicesReceived', 'ServicesReceivedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDigitalAccessSpeed', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceStaff', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDisability', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceStaff', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonEmailAddress', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceStaff', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonFamily', 'RecordStartDateTime', '11') +VALUES ('', 'ServiceStaff', 'ServiceStaffId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonHealth', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCompensation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonHealthBirth', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCompensation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonHomelessness', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCompensation', 'StaffCompensationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonIdentifier', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCompensation', 'StaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonImmunization', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCompensationFundingSource', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonLanguage', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCompensationFundingSource', 'FinancialAccountId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonLearningDevice', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCompensationFundingSource', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonMaster', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCompensationFundingSource', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonMilitary', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCompensationFundingSource', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonOtherName', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCompensationFundingSource', 'StaffCompensationFundingSourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonPersonalInformationVerification', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCompensationFundingSource', 'StaffCompensationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonProgramParticipation', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCredential', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonReferral', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCredential', 'PersonCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonRelationship', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCredential', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonStatus', 'RecordStartDateTime', '11') +VALUES ('', 'StaffCredential', 'StaffCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonTelephone', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEmployment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProfessionalDevelopmentActivity', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEmployment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProfessionalDevelopmentRequirement', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEmployment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProfessionalDevelopmentSession', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEmployment', 'RefStandardOccupationalClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProfessionalDevelopmentSessionInstructor', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEmployment', 'StaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Program', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEmploymentJobPosition', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationAE', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEmploymentJobPosition', 'JobPositionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationAttainment', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEmploymentJobPosition', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationCte', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEmploymentJobPosition', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationFoodService', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEmploymentJobPosition', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationMigrant', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEmploymentJobPosition', 'StaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationNeglected', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEmploymentJobPosition', 'StaffEmploymentJobPositionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationSpecialEducation', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEvaluation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationTeacherPrep', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEvaluation', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationTitleI', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEvaluation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationTitleIIILep', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEvaluation', 'StaffEvaluationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationWIOA', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEvaluationPart', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationWIOABarriers', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEvaluationPart', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsCourse', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEvaluationPart', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsInstitution', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEvaluationPart', 'StaffEvaluationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsPriceOfAttendance', 'RecordStartDateTime', '11') +VALUES ('', 'StaffEvaluationPart', 'StaffEvaluationPartId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsProgram', 'RecordStartDateTime', '11') +VALUES ('', 'StaffExperience', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsSection', 'RecordStartDateTime', '11') +VALUES ('', 'StaffExperience', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsSectionLocation', 'RecordStartDateTime', '11') +VALUES ('', 'StaffExperience', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStaffEmployment', 'RecordStartDateTime', '11') +VALUES ('', 'StaffExperience', 'StaffExperienceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentAcademicAward', 'RecordStartDateTime', '11') +VALUES ('', 'StaffProfessionalDevelopmentActivity', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentAcademicRecord', 'RecordStartDateTime', '11') +VALUES ('', 'StaffProfessionalDevelopmentActivity', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentAdmissionTest', 'RecordStartDateTime', '11') +VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentApplication', 'RecordStartDateTime', '11') +VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentRequirementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentCohort', 'RecordStartDateTime', '11') +VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentCourseSectionMark', 'RecordStartDateTime', '11') +VALUES ('', 'StaffProfessionalDevelopmentActivity', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentDemographic', 'RecordStartDateTime', '11') +VALUES ('', 'StaffProfessionalDevelopmentActivity', 'StaffProfessionalDevelopmentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentEmployment', 'RecordStartDateTime', '11') +VALUES ('', 'StaffTechnicalAssistance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentEnrollment', 'RecordStartDateTime', '11') +VALUES ('', 'StaffTechnicalAssistance', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentFinancialAid', 'RecordStartDateTime', '11') +VALUES ('', 'StaffTechnicalAssistance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PSStudentProgram', 'RecordStartDateTime', '11') +VALUES ('', 'StaffTechnicalAssistance', 'StaffTechnicalAssistanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentSection', 'RecordStartDateTime', '11') +VALUES ('', 'TeacherEducationCredentialExam', 'AssessmentResultId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'QuarterlyEmploymentRecord', 'RecordStartDateTime', '11') +VALUES ('', 'TeacherEducationCredentialExam', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RequiredImmunization', 'RecordStartDateTime', '11') +VALUES ('', 'TeacherEducationCredentialExam', 'ProgramParticipationTeacherPrepId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Role', 'RecordStartDateTime', '11') +VALUES ('', 'TeacherEducationCredentialExam', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RoleAttendance', 'RecordStartDateTime', '11') +VALUES ('', 'TeacherEducationCredentialExam', 'TeacherEducationCredentialExamId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RoleAttendanceEvent', 'RecordStartDateTime', '11') +VALUES ('', 'TeacherStudentDataLinkExclusion', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RoleStatus', 'RecordStartDateTime', '11') +VALUES ('', 'TeacherStudentDataLinkExclusion', 'K12StaffAssignmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Rubric', 'RecordStartDateTime', '11') +VALUES ('', 'TeacherStudentDataLinkExclusion', 'K12StudentCourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RubricCriterion', 'RecordStartDateTime', '11') +VALUES ('', 'TeacherStudentDataLinkExclusion', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RubricCriterionLevel', 'RecordStartDateTime', '11') +VALUES ('', 'TeacherStudentDataLinkExclusion', 'TeacherStudentDataLinkExclusionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServiceFrequency', 'RecordStartDateTime', '11') +VALUES ('', 'WorkforceEmploymentQuarterlyData', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServicePlan', 'RecordStartDateTime', '11') +VALUES ('', 'WorkforceEmploymentQuarterlyData', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServiceProvided', 'RecordStartDateTime', '11') +VALUES ('', 'WorkforceEmploymentQuarterlyData', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServiceProvider', 'RecordStartDateTime', '11') +VALUES ('', 'WorkforceEmploymentQuarterlyData', 'WorkforceEmploymentQuarterlyDataId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServicesReceived', 'RecordStartDateTime', '11') +VALUES ('', 'WorkforceProgramParticipantCohort', 'CohortDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServiceStaff', 'RecordStartDateTime', '11') +VALUES ('', 'WorkforceProgramParticipantCohort', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffCompensation', 'RecordStartDateTime', '11') +VALUES ('', 'WorkforceProgramParticipantCohort', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffCredential', 'RecordStartDateTime', '11') +VALUES ('', 'WorkforceProgramParticipantCohort', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffEmployment', 'RecordStartDateTime', '11') +VALUES ('', 'WorkforceProgramParticipantCohort', 'WorkforceProgramParticipantCohortId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffEvaluation', 'RecordStartDateTime', '11') +VALUES ('', 'WorkforceProgramParticipation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffEvaluationPart', 'RecordStartDateTime', '11') +VALUES ('', 'WorkforceProgramParticipation', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffExperience', 'RecordStartDateTime', '11') +VALUES ('', 'WorkforceProgramParticipation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffProfessionalDevelopmentActivity', 'RecordStartDateTime', '11') +VALUES ('', 'WorkforceProgramParticipation', 'WorkforceProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffTechnicalAssistance', 'RecordStartDateTime', '11') +VALUES ('000001', 'PsStudentAcademicAward', 'AcademicAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'TeacherEducationCredentialExam', 'RecordStartDateTime', '11') +VALUES ('000002', 'PsStudentAcademicAward', 'RefAcademicAwardLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'TeacherStudentDataLinkExclusion', 'RecordStartDateTime', '11') +VALUES ('000003', 'PsStudentAcademicAward', 'AcademicAwardTitle', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'WorkforceEmploymentQuarterlyData', 'RecordStartDateTime', '11') +VALUES ('000004', 'K12StudentAcademicHonor', 'RefAcademicHonorTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'WorkforceProgramParticipantCohort', 'RecordStartDateTime', '11') +VALUES ('000005', 'OrganizationFederalAccountability', 'AccountabilityReportTitle', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'WorkforceProgramParticipation', 'RecordStartDateTime', '11') +VALUES ('000006', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Activity', 'RecordEndDateTime', '11') +VALUES ('000007', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ActivityRecognition', 'RecordEndDateTime', '11') +VALUES ('000008', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeCourse', 'RecordEndDateTime', '11') +VALUES ('000009', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeProvider', 'RecordEndDateTime', '11') +VALUES ('000010', 'PersonAddress', 'RefPersonLocationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeStaff', 'RecordEndDateTime', '11') +VALUES ('000011', 'OrganizationFederalAccountability', 'RefAypStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeStudentAcademicRecord', 'RecordEndDateTime', '11') +VALUES ('000012', 'ELOrganizationFunds', 'RefAdministrativeFundingControlId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeStudentEmployment', 'RecordEndDateTime', '11') +VALUES ('000012', 'K12School', 'RefAdministrativeFundingControlId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ApipInteraction', 'RecordEndDateTime', '11') +VALUES ('000012', 'PsInstitution', 'RefAdministrativeFundingControlId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Application', 'RecordEndDateTime', '11') +VALUES ('000013', 'CteCourse', 'CourseAlignedWithStandards', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Assessment', 'RecordEndDateTime', '11') +VALUES ('000013', 'K12Course', 'CourseAlignedWithStandards', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Assessment_AssessmentAdministration', 'RecordEndDateTime', '11') +VALUES ('000014', 'OrganizationFederalAccountability', 'AlternateAypApproachIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentAccommodation', 'RecordEndDateTime', '11') +VALUES ('000015', 'K12SchoolStatus', 'RefAlternativeSchoolFocusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentAdministration', 'RecordEndDateTime', '11') +VALUES ('000018', 'PsStudentAcademicRecord', 'AdvancedPlacementCreditsAwarded', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentAdministration_Organization', 'RecordEndDateTime', '11') +VALUES ('000019', 'LocationAddress', 'ApartmentRoomOrSuiteNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentAsset', 'RecordEndDateTime', '11') +VALUES ('000019', 'PersonAddress', 'ApartmentRoomOrSuiteNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentELDevelopmentalDomain', 'RecordEndDateTime', '11') +VALUES ('000021', 'Assessment', 'RefAcademicSubjectId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentForm', 'RecordEndDateTime', '11') +VALUES ('000021', 'AssessmentSubtest', 'RefAcademicSubjectId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentForm_AssessmentAsset', 'RecordEndDateTime', '11') +VALUES ('000024', 'AssessmentForm', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentForm_AssessmentFormSection', 'RecordEndDateTime', '11') +VALUES ('000025', 'AssessmentRegistration', 'RefAssessmentParticipationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentFormSection', 'RecordEndDateTime', '11') +VALUES ('000026', 'Assessment', 'RefAssessmentPurposeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentFormSection_AssessmentAsset', 'RecordEndDateTime', '11') +VALUES ('000026', 'AssessmentRegistration', 'RefAssessmentPurposeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentFormSection_AssessmentItem', 'RecordEndDateTime', '11') +VALUES ('000026', 'AssessmentSubtest', 'RefAssessmentPurposeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItem', 'RecordEndDateTime', '11') +VALUES ('000027', 'CourseSectionAssessmentReporting', 'RefCourseSectionAssessmentReportingMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemApip', 'RecordEndDateTime', '11') +VALUES ('000028', 'Assessment', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemApipDescription', 'RecordEndDateTime', '11') +VALUES ('000029', 'Assessment', 'RefAssessmentTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemCharacteristic', 'RecordEndDateTime', '11') +VALUES ('000030', 'CourseSection', 'AvailableCarnegieUnitCredit', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemPossibleResponse', 'RecordEndDateTime', '11') +VALUES ('000030', 'CteCourse', 'AvailableCarnegieUnitCredit', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemResponse', 'RecordEndDateTime', '11') +VALUES ('000030', 'K12Course', 'AvailableCarnegieUnitCredit', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemResponseTheory', 'RecordEndDateTime', '11') +VALUES ('000031', 'ProgramParticipationSpecialEducation', 'AwaitingInitialIDEAEvaluationStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemRubricCriterionResult', 'RecordEndDateTime', '11') +VALUES ('000032', 'StaffCompensation', 'StaffCompensationBaseSalary', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentLanguage', 'RecordEndDateTime', '11') +VALUES ('000033', 'PersonDetail', 'Birthdate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentLevelsForWhichDesigned', 'RecordEndDateTime', '11') +VALUES ('000035', 'PsStudentDemographic', 'RefCampusResidencyTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedApipContent', 'RecordEndDateTime', '11') +VALUES ('000036', 'ProgramParticipationCte', 'CteCompleter', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedApipControl', 'RecordEndDateTime', '11') +VALUES ('000037', 'ProgramParticipationCte', 'CteConcentrator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedApipDisplay', 'RecordEndDateTime', '11') +VALUES ('000038', 'PsInstitution', 'RefCarnegieBasicClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedBraille', 'RecordEndDateTime', '11') +VALUES ('000039', 'K12Lea', 'CharterSchoolIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedScreenEnhancement', 'RecordEndDateTime', '11') +VALUES ('000039', 'K12School', 'CharterSchoolIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentParticipantSession', 'RecordEndDateTime', '11') +VALUES ('000040', 'LocationAddress', 'City', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentParticipantSession_Accommodation', 'RecordEndDateTime', '11') +VALUES ('000040', 'PersonAddress', 'City', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPerformanceLevel', 'RecordEndDateTime', '11') +VALUES ('000041', 'K12StudentAcademicRecord', 'HighSchoolStudentClassRank', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedLanguageLearner', 'RecordEndDateTime', '11') +VALUES ('002112', 'FacilityJointUse', 'FacilityJointUseDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedScreenReader', 'RecordEndDateTime', '11') +VALUES ('002113', 'K12StudentDropoutReason', 'RefDropoutReasonTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfile', 'RecordEndDateTime', '11') +VALUES ('001110', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfileContent', 'RecordEndDateTime', '11') +VALUES ('001111', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfileControl', 'RecordEndDateTime', '11') +VALUES ('001111', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfileDisplay', 'RecordEndDateTime', '11') +VALUES ('001112', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordEndDateTime', '11') +VALUES ('000055', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentRegistration', 'RecordEndDateTime', '11') +VALUES ('000067', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentRegistration_Accommodation', 'RecordEndDateTime', '11') +VALUES ('000096', 'RoleStatus', 'RefRoleStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentResult', 'RecordEndDateTime', '11') +VALUES ('000097', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentResult_PerformanceLevel', 'RecordEndDateTime', '11') +VALUES ('000107', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentResultRubricCriterionResult', 'RecordEndDateTime', '11') +VALUES ('000111', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSession', 'RecordEndDateTime', '11') +VALUES ('000122', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSessionStaffRole', 'RecordEndDateTime', '11') +VALUES ('000148', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtest', 'RecordEndDateTime', '11') +VALUES ('000251', 'OrganizationCalendarSession', 'BeginDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtest_AssessmentItem', 'RecordEndDateTime', '11') +VALUES ('000533', 'OrganizationOperationalStatus', 'RefOperationalStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtest_CompetencyDefinition', 'RecordEndDateTime', '11') +VALUES ('000595', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtestELDevelopmentalDomain', 'RecordEndDateTime', '11') +VALUES ('000845', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordEndDateTime', '11') +VALUES ('000847', 'OrganizationPolicy', 'PolicyType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Authentication', 'RecordEndDateTime', '11') +VALUES ('000974', 'RoleStatus', 'StatusStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Authorization', 'RecordEndDateTime', '11') +VALUES ('000975', 'RoleStatus', 'StatusEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AuthorizationDocument', 'RecordEndDateTime', '11') +VALUES ('001059', 'PersonCredential', 'ExpirationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSpace', 'RecordEndDateTime', '11') +VALUES ('001071', 'PersonIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSpaceUtilization', 'RecordEndDateTime', '11') +VALUES ('001072', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSystemCategory', 'RecordEndDateTime', '11') +VALUES ('001075', 'PersonIdentifier', 'RefPersonIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSystemComponent', 'RecordEndDateTime', '11') +VALUES ('001103', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSystemComponentService', 'RecordEndDateTime', '11') +VALUES ('001104', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Classroom', 'RecordEndDateTime', '11') +VALUES ('001377', 'IncidentPerson', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyDefAssociation', 'RecordEndDateTime', '11') +VALUES ('001378', 'IncidentPerson', 'RefIncidentPersonTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyDefEducationLevel', 'RecordEndDateTime', '11') +VALUES ('000056', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyDefinition', 'RecordEndDateTime', '11') +VALUES ('000068', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyDefinition_CompetencySet', 'RecordEndDateTime', '11') +VALUES ('000147', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyFramework', 'RecordEndDateTime', '11') +VALUES ('000151', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencySet', 'RecordEndDateTime', '11') +VALUES ('000326', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencySet_Rubric', 'RecordEndDateTime', '11') +VALUES ('000327', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencySet_RubricCriterion', 'RecordEndDateTime', '11') +VALUES ('000347', 'RoleStatus', 'RefRoleStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CoreKnowledgeArea', 'RecordEndDateTime', '11') +VALUES ('000410', 'PersonIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Course', 'RecordEndDateTime', '11') +VALUES ('000637', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSection', 'RecordEndDateTime', '11') +VALUES ('000848', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSectionAssessmentReporting', 'RecordEndDateTime', '11') +VALUES ('000849', 'OrganizationPolicy', 'PolicyType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSectionLevel', 'RecordEndDateTime', '11') +VALUES ('001068', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSectionLocation', 'RecordEndDateTime', '11') +VALUES ('001073', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSectionSchedule', 'RecordEndDateTime', '11') +VALUES ('001104', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialAward', 'RecordEndDateTime', '11') +VALUES ('001105', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialAwardCredit', 'RecordEndDateTime', '11') +VALUES ('000111', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialAwardEvidence', 'RecordEndDateTime', '11') +VALUES ('000180', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialCriteriaCourse', 'RecordEndDateTime', '11') +VALUES ('000185', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefAgent', 'RecordEndDateTime', '11') +VALUES ('000191', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefAgentCredential', 'RecordEndDateTime', '11') +VALUES ('000346', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefCategory', 'RecordEndDateTime', '11') +VALUES ('000411', 'PersonIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefCriteria', 'RecordEndDateTime', '11') +VALUES ('000527', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefIdentifier', 'RecordEndDateTime', '11') +VALUES ('000638', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefinition', 'RecordEndDateTime', '11') +VALUES ('000767', 'RoleStatus', 'RefRoleStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialIssuer', 'RecordEndDateTime', '11') +VALUES ('000781', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialOffered', 'RecordEndDateTime', '11') +VALUES ('000850', 'OrganizationPolicy', 'PolicyType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CteCourse', 'RecordEndDateTime', '11') +VALUES ('000853', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CteStudentAcademicRecord', 'RecordEndDateTime', '11') +VALUES ('001069', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'EarlyChildhoodCredential', 'RecordEndDateTime', '11') +VALUES ('001105', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'EarlyChildhoodProgramTypeOffered', 'RecordEndDateTime', '11') +VALUES ('001106', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildDemographic', 'RecordEndDateTime', '11') +VALUES ('000166', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildDevelopmentalAssessment', 'RecordEndDateTime', '11') +VALUES ('000189', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildHealth', 'RecordEndDateTime', '11') +VALUES ('000193', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildIndividualizedProgram', 'RecordEndDateTime', '11') +VALUES ('000204', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildOutcomeSummary', 'RecordEndDateTime', '11') +VALUES ('000526', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildProgramEligibility', 'RecordEndDateTime', '11') +VALUES ('000591', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildService', 'RecordEndDateTime', '11') +VALUES ('000827', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildServicesApplication', 'RecordEndDateTime', '11') +VALUES ('000854', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildTransitionPlan', 'RecordEndDateTime', '11') +VALUES ('000859', 'OrganizationPolicy', 'PolicyType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELClassSection', 'RecordEndDateTime', '11') +VALUES ('001072', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELClassSectionService', 'RecordEndDateTime', '11') +VALUES ('001080', 'PersonIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELCourse', 'RecordEndDateTime', '11') +VALUES ('001106', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELEnrollment', 'RecordEndDateTime', '11') +VALUES ('001107', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELEnrollmentOtherFunding', 'RecordEndDateTime', '11') +VALUES ('000175', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELFacilityLicensing', 'RecordEndDateTime', '11') +VALUES ('000235', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'EligibilityEvaluation', 'RecordEndDateTime', '11') +VALUES ('000249', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganization', 'RecordEndDateTime', '11') +VALUES ('000590', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganizationAvailability', 'RecordEndDateTime', '11') +VALUES ('000626', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganizationFunds', 'RecordEndDateTime', '11') +VALUES ('000646', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganizationMonitoring', 'RecordEndDateTime', '11') +VALUES ('000855', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganizationStudentResponsibility', 'RecordEndDateTime', '11') +VALUES ('000983', 'OrganizationPolicy', 'PolicyType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELProgramLicensing', 'RecordEndDateTime', '11') +VALUES ('001073', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELQualityInitiative', 'RecordEndDateTime', '11') +VALUES ('001107', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELQualityRatingImprovement', 'RecordEndDateTime', '11') +VALUES ('001108', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELServicePartner', 'RecordEndDateTime', '11') +VALUES ('001444', 'PersonIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELStaff', 'RecordEndDateTime', '11') +VALUES ('000166', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELStaffAssignment', 'RecordEndDateTime', '11') +VALUES ('000236', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELStaffEducation', 'RecordEndDateTime', '11') +VALUES ('000290', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELStaffEmployment', 'RecordEndDateTime', '11') +VALUES ('000364', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Facility', 'RecordEndDateTime', '11') +VALUES ('000645', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityAudit', 'RecordEndDateTime', '11') +VALUES ('000794', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityCompliance', 'RecordEndDateTime', '11') +VALUES ('000808', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityDesign', 'RecordEndDateTime', '11') +VALUES ('000856', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityDesignConstruction', 'RecordEndDateTime', '11') +VALUES ('001108', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityEnergy', 'RecordEndDateTime', '11') +VALUES ('001109', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityFinance', 'RecordEndDateTime', '11') +VALUES ('000175', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityFinancial', 'RecordEndDateTime', '11') +VALUES ('000237', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityHazard', 'RecordEndDateTime', '11') +VALUES ('000550', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityJointUse', 'RecordEndDateTime', '11') +VALUES ('000625', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityLease', 'RecordEndDateTime', '11') +VALUES ('000793', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityLocation', 'RecordEndDateTime', '11') +VALUES ('000795', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityManagement', 'RecordEndDateTime', '11') +VALUES ('000821', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityManagementPlan', 'RecordEndDateTime', '11') +VALUES ('000858', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityMandate', 'RecordEndDateTime', '11') +VALUES ('001109', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityMortgage', 'RecordEndDateTime', '11') +VALUES ('001110', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityMortgageFee', 'RecordEndDateTime', '11') +VALUES ('000203', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityRelationship', 'RecordEndDateTime', '11') +VALUES ('000286', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilitySchoolDesign', 'RecordEndDateTime', '11') +VALUES ('000551', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilitySite', 'RecordEndDateTime', '11') +VALUES ('000863', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityUtilization', 'RecordEndDateTime', '11') +VALUES ('000898', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAccount', 'RecordEndDateTime', '11') +VALUES ('000974', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAccountLocal', 'RecordEndDateTime', '11') +VALUES ('000999', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAccountProgram', 'RecordEndDateTime', '11') +VALUES ('001076', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAidApplication', 'RecordEndDateTime', '11') +VALUES ('000287', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAidAward', 'RecordEndDateTime', '11') +VALUES ('000565', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Goal', 'RecordEndDateTime', '11') +VALUES ('000625', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'GoalMeasurement', 'RecordEndDateTime', '11') +VALUES ('000820', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'GoalMeasurementCriterion', 'RecordEndDateTime', '11') +VALUES ('000966', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'GoalPerformance', 'RecordEndDateTime', '11') +VALUES ('000998', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IDEAEligibilityEvaluationCategory', 'RecordEndDateTime', '11') +VALUES ('001112', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IEPAuthorization', 'RecordEndDateTime', '11') +VALUES ('001114', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IEPAuthorizationRejected', 'RecordEndDateTime', '11') +VALUES ('001243', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IEPPresentLevel', 'RecordEndDateTime', '11') +VALUES ('000291', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Incident', 'RecordEndDateTime', '11') +VALUES ('000827', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IncidentPerson', 'RecordEndDateTime', '11') +VALUES ('000978', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgram', 'RecordEndDateTime', '11') +VALUES ('001114', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAccommodation', 'RecordEndDateTime', '11') +VALUES ('001115', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAccommodationSubject', 'RecordEndDateTime', '11') +VALUES ('001291', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAmendment', 'RecordEndDateTime', '11') +VALUES ('000569', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAssessment', 'RecordEndDateTime', '11') +VALUES ('000978', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAssessmentAccommodation', 'RecordEndDateTime', '11') +VALUES ('001115', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramEligibility', 'RecordEndDateTime', '11') +VALUES ('001116', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramEligibilityEvaluation', 'RecordEndDateTime', '11') +VALUES ('001315', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramGoal', 'RecordEndDateTime', '11') +VALUES ('000580', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramMeeting', 'RecordEndDateTime', '11') +VALUES ('001116', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramMeetingAttendee', 'RecordEndDateTime', '11') +VALUES ('001117', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramProgressGoal', 'RecordEndDateTime', '11') +VALUES ('001280', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramProgressReport', 'RecordEndDateTime', '11') +VALUES ('001466', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramProgressReportPlan', 'RecordEndDateTime', '11') +VALUES ('000581', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramService', 'RecordEndDateTime', '11') +VALUES ('001117', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramServicesReceived', 'RecordEndDateTime', '11') +VALUES ('001118', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IPEDSFinance', 'RecordEndDateTime', '11') +VALUES ('001315', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12CharterSchoolAuthorizerAgency', 'RecordEndDateTime', '11') +VALUES ('000775', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12CharterSchoolManagementOrganization', 'RecordEndDateTime', '11') +VALUES ('001118', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12Course', 'RecordEndDateTime', '11') +VALUES ('001119', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12FederalFundAllocation', 'RecordEndDateTime', '11') +VALUES ('000776', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12Lea', 'RecordEndDateTime', '11') +VALUES ('001119', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaFederalFunds', 'RecordEndDateTime', '11') +VALUES ('001120', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaFederalReporting', 'RecordEndDateTime', '11') +VALUES ('000777', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaGradeLevelsApproved', 'RecordEndDateTime', '11') +VALUES ('001120', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaGradeOffered', 'RecordEndDateTime', '11') +VALUES ('001121', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaPreKEligibility', 'RecordEndDateTime', '11') +VALUES ('000778', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaPreKEligibleAgesIDEA', 'RecordEndDateTime', '11') +VALUES ('001121', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaSafeDrugFree', 'RecordEndDateTime', '11') +VALUES ('001222', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordEndDateTime', '11') +VALUES ('000807', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaTitleISupportService', 'RecordEndDateTime', '11') +VALUES ('001222', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12OrganizationStudentResponsibility', 'RecordEndDateTime', '11') +VALUES ('000814', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12ProgramOrService', 'RecordEndDateTime', '11') +VALUES ('000815', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12School', 'RecordEndDateTime', '11') +VALUES ('001929', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolCorrectiveAction', 'RecordEndDateTime', '11') +VALUES ('001063', 'AssessmentItemResponse', 'Value', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolGradeLevelsApproved', 'RecordEndDateTime', '11') +VALUES ('001064', 'AeStudentEmployment', 'EmploymentNaicsCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolGradeOffered', 'RecordEndDateTime', '11') +VALUES ('001064', 'CredentialDefinition', 'EmploymentNAICSCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolImprovement', 'RecordEndDateTime', '11') +VALUES ('001064', 'K12StudentEmployment', 'EmploymentNaicsCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolIndicatorStatus', 'RecordEndDateTime', '11') +VALUES ('001064', 'PsStudentEmployment', 'EmploymentNaicsCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolStatus', 'RecordEndDateTime', '11') +VALUES ('001064', 'QuarterlyEmploymentRecord', 'EmploymentNAICSCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12Sea', 'RecordEndDateTime', '11') +VALUES ('001066', 'OrganizationLocation', 'RefOrganizationLocationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SeaAlternateFundUse', 'RecordEndDateTime', '11') +VALUES ('001067', 'Assessment', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SeaFederalFunds', 'RecordEndDateTime', '11') +VALUES ('001070', 'PersonIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StaffAssignment', 'RecordEndDateTime', '11') +VALUES ('001074', 'PersonIdentifier', 'RefPersonIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StaffEmployment', 'RecordEndDateTime', '11') +VALUES ('001077', 'ProgramParticipationAE', 'RefAeInstructionalProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentAcademicHonor', 'RecordEndDateTime', '11') +VALUES ('001079', 'ProgramParticipationAE', 'RefGoalsForAttendingAdultEducationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentAcademicRecord', 'RecordEndDateTime', '11') +VALUES ('', '_CEDSElements', 'AltName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentActivity', 'RecordEndDateTime', '11') +VALUES ('', '_CEDSElements', 'ChangedInThisVersionInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentCohort', 'RecordEndDateTime', '11') +VALUES ('', '_CEDSElements', 'ChangeNotes', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentCourseSection', 'RecordEndDateTime', '11') +VALUES ('', '_CEDSElements', 'Definition', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentCourseSectionMark', 'RecordEndDateTime', '11') +VALUES ('', '_CEDSElements', 'ElementName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentDiscipline', 'RecordEndDateTime', '11') +VALUES ('', '_CEDSElements', 'Format', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentEmployment', 'RecordEndDateTime', '11') +VALUES ('', '_CEDSElements', 'GlobalID', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentEnrollment', 'RecordEndDateTime', '11') +VALUES ('', '_CEDSElements', 'HasOptionSet', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentGraduationPlan', 'RecordEndDateTime', '11') +VALUES ('', '_CEDSElements', 'TermID', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentHomeLanguageSurvey', 'RecordEndDateTime', '11') +VALUES ('', '_CEDSElements', 'URL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentLiteracyAssessment', 'RecordEndDateTime', '11') +VALUES ('', '_CEDSElements', 'UsageNotes', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentSession', 'RecordEndDateTime', '11') +VALUES ('', '_CEDSElements', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12TitleIIILanguageInstruction', 'RecordEndDateTime', '11') +VALUES ('', '_CEDStoNDSMapping', 'ColumnName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearnerAction', 'RecordEndDateTime', '11') +VALUES ('', '_CEDStoNDSMapping', 'GlobalID', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearnerActivity', 'RecordEndDateTime', '11') +VALUES ('', '_CEDStoNDSMapping', 'TableName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearnerActivity_LearningResource', 'RecordEndDateTime', '11') +VALUES ('', '_CEDStoNDSMapping', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResource', 'RecordEndDateTime', '11') +VALUES ('', 'Activity', 'ActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourceAdaptation', 'RecordEndDateTime', '11') +VALUES ('', 'Activity', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourceEducationLevel', 'RecordEndDateTime', '11') +VALUES ('', 'Activity', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourceMediaFeature', 'RecordEndDateTime', '11') +VALUES ('', 'Activity', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourcePeerRating', 'RecordEndDateTime', '11') +VALUES ('', 'ActivityRecognition', 'ActivityRecognitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourcePhysicalMedia', 'RecordEndDateTime', '11') +VALUES ('', 'ActivityRecognition', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Location', 'RecordEndDateTime', '11') +VALUES ('', 'ActivityRecognition', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LocationAddress', 'RecordEndDateTime', '11') +VALUES ('', 'ActivityRecognition', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Organization', 'RecordEndDateTime', '11') +VALUES ('', 'AeCourse', 'AeCourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationAccreditation', 'RecordEndDateTime', '11') +VALUES ('', 'AeCourse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendar', 'RecordEndDateTime', '11') +VALUES ('', 'AeCourse', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendarCrisis', 'RecordEndDateTime', '11') +VALUES ('', 'AeCourse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendarDay', 'RecordEndDateTime', '11') +VALUES ('', 'AeProvider', 'AeProviderId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendarEvent', 'RecordEndDateTime', '11') +VALUES ('', 'AeProvider', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendarSession', 'RecordEndDateTime', '11') +VALUES ('', 'AeProvider', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationDetail', 'RecordEndDateTime', '11') +VALUES ('', 'AeProvider', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationEmail', 'RecordEndDateTime', '11') +VALUES ('', 'AeStaff', 'AeStaffId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationEmployeeBenefit', 'RecordEndDateTime', '11') +VALUES ('', 'AeStaff', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationFederalAccountability', 'RecordEndDateTime', '11') +VALUES ('', 'AeStaff', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationFinancial', 'RecordEndDateTime', '11') +VALUES ('', 'AeStaff', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationIdentifier', 'RecordEndDateTime', '11') +VALUES ('', 'AeStudentAcademicRecord', 'AeStudentAcademicRecordId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationImage', 'RecordEndDateTime', '11') +VALUES ('', 'AeStudentAcademicRecord', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationIndicator', 'RecordEndDateTime', '11') +VALUES ('', 'AeStudentAcademicRecord', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationLocation', 'RecordEndDateTime', '11') +VALUES ('', 'AeStudentAcademicRecord', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationOperationalStatus', 'RecordEndDateTime', '11') +VALUES ('', 'AeStudentEmployment', 'AeStudentEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPersonRole', 'RecordEndDateTime', '11') +VALUES ('', 'AeStudentEmployment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPersonRoleApplication', 'RecordEndDateTime', '11') +VALUES ('', 'AeStudentEmployment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPersonRoleFTE', 'RecordEndDateTime', '11') +VALUES ('', 'AeStudentEmployment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPersonRoleRelationship', 'RecordEndDateTime', '11') +VALUES ('', 'ApipInteraction', 'ApipInteractionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPolicy', 'RecordEndDateTime', '11') +VALUES ('', 'ApipInteraction', 'AssessmentItemApipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPopulationServed', 'RecordEndDateTime', '11') +VALUES ('', 'ApipInteraction', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationProgramType', 'RecordEndDateTime', '11') +VALUES ('', 'ApipInteraction', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationRelationship', 'RecordEndDateTime', '11') +VALUES ('', 'ApipInteraction', 'SequenceNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationService', 'RecordEndDateTime', '11') +VALUES ('', 'Application', 'ApplicationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationTechnicalAssistance', 'RecordEndDateTime', '11') +VALUES ('', 'Application', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationTelephone', 'RecordEndDateTime', '11') +VALUES ('', 'Application', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationWebsite', 'RecordEndDateTime', '11') +VALUES ('', 'Assessment', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PDActivityEducationLevel', 'RecordEndDateTime', '11') +VALUES ('', 'Assessment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PeerRatingSystem', 'RecordEndDateTime', '11') +VALUES ('', 'Assessment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Person', 'RecordEndDateTime', '11') +VALUES ('', 'Assessment_AssessmentAdministration', 'Assessment_AssessmentAdministrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Person_AssessmentPersonalNeedsProfile', 'RecordEndDateTime', '11') +VALUES ('', 'Assessment_AssessmentAdministration', 'AssessmentAdministrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonAddress', 'RecordEndDateTime', '11') +VALUES ('', 'Assessment_AssessmentAdministration', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonAddressNcesSide', 'RecordEndDateTime', '11') +VALUES ('', 'Assessment_AssessmentAdministration', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonAllergy', 'RecordEndDateTime', '11') +VALUES ('', 'Assessment_AssessmentAdministration', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonBirthplace', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAccommodation', 'AssessmentAccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonCareerEducationPlan', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAccommodation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonCredential', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAccommodation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDegreeOrCertificate', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAdministration', 'AssessmentAdministrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDemographicRace', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAdministration', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDetail', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAdministration', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDigitalAccess', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAdministration', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDigitalAccessSpeed', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAdministration', 'RefAssessmentReportingMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDisability', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAdministration_Organization', 'AssessmentAdministration_OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonEmailAddress', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAdministration_Organization', 'AssessmentAdministrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonFamily', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAdministration_Organization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonHealth', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAdministration_Organization', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonHealthBirth', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAdministration_Organization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonHomelessness', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAsset', 'AssessmentAssetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonIdentifier', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAsset', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonImmunization', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAsset', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonLanguage', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentAsset', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonLearningDevice', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentELDevelopmentalDomain', 'AssessmentELDevelopmentalDomainId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonMaster', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentELDevelopmentalDomain', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonMilitary', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentELDevelopmentalDomain', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonOtherName', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentELDevelopmentalDomain', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonPersonalInformationVerification', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentELDevelopmentalDomain', 'RefAssessmentELDevelopmentalDomainId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonProgramParticipation', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm', 'AssessmentFormId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonReferral', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonRelationship', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonStatus', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonTelephone', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProfessionalDevelopmentActivity', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentAssetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProfessionalDevelopmentRequirement', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentForm_AssessmentAssetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProfessionalDevelopmentSession', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentFormId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProfessionalDevelopmentSessionInstructor', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm_AssessmentAsset', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Program', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm_AssessmentAsset', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationAE', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentForm_AssessmentFormSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationAttainment', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentFormId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationCte', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentFormSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationFoodService', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm_AssessmentFormSection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationMigrant', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentForm_AssessmentFormSection', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationNeglected', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection', 'AssessmentFormSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationSpecialEducation', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection', 'ChildOf_FormSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationTeacherPrep', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationTitleI', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationTitleIIILep', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationWIOA', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentAssetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationWIOABarriers', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentFormSection_AssessmentAssetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsCourse', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentFormSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsInstitution', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsPriceOfAttendance', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsProgram', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentFormSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsSection', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentFormSectionItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsSectionLocation', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStaffEmployment', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection_AssessmentItem', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentAcademicAward', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentFormSection_AssessmentItem', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentAcademicRecord', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentItem', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentAdmissionTest', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentItem', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentApplication', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentItem', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentCohort', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentItem', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentCourseSectionMark', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentItem', 'RubricId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicRecord', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApip', 'AssessmentItemApipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentActivity', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApip', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentActivity', 'K12StudentActivityId', '11') +VALUES ('', 'AssessmentItemApip', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentActivity', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentItemApip', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentActivity', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'AslIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCohort', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'AslOnDemandIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCohort', 'K12StudentCohortId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'AssessmentItemApipDescriptionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCohort', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'AssessmentItemApipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCohort', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'BrailleIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSection', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'ChunkingActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSection', 'K12StudentCourseSectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'ChunkingAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSection', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'CognitiveGuidanceActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSection', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'CognitiveGuidanceAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSectionMark', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSectionMark', 'K12StudentCourseSectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'GraphicsOnlyIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSectionMark', 'K12StudentCourseSectionMarkId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'KeywordEmphasisActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSectionMark', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'KeywordEmphasisAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'KeywordTranslationsActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'IncidentId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'KeywordTranslationsAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'K12StudentDisciplineId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'NegativesRemovedActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'NegativesRemovedAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'NonVisualIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEmployment', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEmployment', 'K12StudentEmploymentId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'ReducedAnswersActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEmployment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'ReducedAnswersAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEmployment', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'RefHazardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEnrollment', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'RefKeywordTranslationLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEnrollment', 'K12StudentEnrollmentId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'RefSupportToolTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEnrollment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'ScaffoldingActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEnrollment', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'ScaffoldingAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'SignedEnglishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'K12CourseId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'SignedEnglishOnDemandIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'K12StudentGraduationPlanId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'TextGraphicsIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'TextOnlyIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'TextOnlyOnDemandIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentHomeLanguageSurvey', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemCharacteristic', 'AssessmentItemCharacteristicId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentHomeLanguageSurvey', 'K12StudentHomeLanguageSurveyId', '11') +VALUES ('', 'AssessmentItemCharacteristic', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentHomeLanguageSurvey', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentItemCharacteristic', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentHomeLanguageSurvey', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemCharacteristic', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentLiteracyAssessment', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemPossibleResponse', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentLiteracyAssessment', 'K12StudentLiteracyAssessmentId', '11') +VALUES ('', 'AssessmentItemPossibleResponse', 'AssessmentItemPossibleResponseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentLiteracyAssessment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentItemPossibleResponse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentLiteracyAssessment', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemPossibleResponse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemResponse', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'K12StudentSessionId', '11') +VALUES ('', 'AssessmentItemResponse', 'AssessmentItemResponseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'OrganizationCalendarSessionId', '11') +VALUES ('', 'AssessmentItemResponse', 'AssessmentParticipantSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentItemResponse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemResponse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12TitleIIILanguageInstruction', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemResponseTheory', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12TitleIIILanguageInstruction', 'K12TitleIIILanguageInstructionId', '11') +VALUES ('', 'AssessmentItemResponseTheory', 'AssessmentItemResponseTheoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12TitleIIILanguageInstruction', 'OrganizationId', '11') +VALUES ('', 'AssessmentItemResponseTheory', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12TitleIIILanguageInstruction', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemResponseTheory', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerAction', 'AssessmentItemResponseId', '11') +VALUES ('', 'AssessmentItemRubricCriterionResult', 'AssessmentItemResponseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerAction', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemRubricCriterionResult', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerAction', 'LearnerActionId', '11') +VALUES ('', 'AssessmentItemRubricCriterionResult', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerAction', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemRubricCriterionResult', 'RubricCriterionLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'AssessmentRegistrationId', '11') +VALUES ('', 'AssessmentLanguage', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'AssignedByPersonId', '11') +VALUES ('', 'AssessmentLanguage', 'AssessmentLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'CourseSectionId', '11') +VALUES ('', 'AssessmentLanguage', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'DataCollectionId', '11') +VALUES ('', 'AssessmentLanguage', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'LeaOrganizationId', '11') +VALUES ('', 'AssessmentLanguage', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'LearnerActivityId', '11') +VALUES ('', 'AssessmentLevelsForWhichDesigned', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'OrganizationCalendarSessionId', '11') +VALUES ('', 'AssessmentLevelsForWhichDesigned', 'AssessmentLevelsForWhichDesignedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'PersonId', '11') +VALUES ('', 'AssessmentLevelsForWhichDesigned', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'RecordStatusId', '11') +VALUES ('', 'AssessmentLevelsForWhichDesigned', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'SchoolOrganizationId', '11') +VALUES ('', 'AssessmentLevelsForWhichDesigned', 'RefGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'DataCollectionId', '11') +VALUES ('', 'AssessmentNeedApipContent', 'AssessmentNeedApipContentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'LearnerActivity_LearningResourceId', '11') +VALUES ('', 'AssessmentNeedApipContent', 'AssessmentPersonalNeedsProfileContentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'LearnerActivityId', '11') +VALUES ('', 'AssessmentNeedApipContent', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'LearningResourceId', '11') +VALUES ('', 'AssessmentNeedApipContent', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'RecordStatusId', '11') +VALUES ('', 'AssessmentNeedApipControl', 'AssessmentNeedApipControlId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResource', 'DataCollectionId', '11') +VALUES ('', 'AssessmentNeedApipControl', 'AssessmentPersonalNeedsProfileControlId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResource', 'LearningResourceId', '11') +VALUES ('', 'AssessmentNeedApipControl', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResource', 'RecordStatusId', '11') +VALUES ('', 'AssessmentNeedApipControl', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceAdaptation', 'DataCollectionId', '11') +VALUES ('', 'AssessmentNeedApipDisplay', 'AssessmentNeedApipDisplayId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceAdaptation', 'LearningResourceAdaptationId', '11') +VALUES ('', 'AssessmentNeedApipDisplay', 'AssessmentPersonalNeedsProfileDisplayId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceAdaptation', 'LearningResourceId', '11') +VALUES ('', 'AssessmentNeedApipDisplay', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceAdaptation', 'RecordStatusId', '11') +VALUES ('', 'AssessmentNeedApipDisplay', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceEducationLevel', 'DataCollectionId', '11') +VALUES ('', 'AssessmentNeedBraille', 'AssessmentNeedBrailleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceEducationLevel', 'LearningResourceEducationLevelId', '11') +VALUES ('', 'AssessmentNeedBraille', 'AssessmentPersonalNeedsProfileDisplayId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceEducationLevel', 'LearningResourceId', '11') +VALUES ('', 'AssessmentNeedBraille', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceEducationLevel', 'RecordStatusId', '11') +VALUES ('', 'AssessmentNeedBraille', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceMediaFeature', 'DataCollectionId', '11') +VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentNeedScreenEnhancementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceMediaFeature', 'LearningResourceId', '11') +VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentPersonalNeedsProfileDisplayId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceMediaFeature', 'LearningResourceMediaFeatureId', '11') +VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentPersonalNeedsProfileScreenEnhancementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceMediaFeature', 'RecordStatusId', '11') +VALUES ('', 'AssessmentNeedScreenEnhancement', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'DataCollectionId', '11') +VALUES ('', 'AssessmentNeedScreenEnhancement', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'LearningResourceId', '11') +VALUES ('', 'AssessmentParticipantSession', 'AssessmentFormSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'LearningResourcePeerRatingId', '11') +VALUES ('', 'AssessmentParticipantSession', 'AssessmentParticipantSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'PeerRatingSystemId', '11') +VALUES ('', 'AssessmentParticipantSession', 'AssessmentRegistrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'PersonId', '11') +VALUES ('', 'AssessmentParticipantSession', 'AssessmentSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'RecordStatusId', '11') +VALUES ('', 'AssessmentParticipantSession', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePhysicalMedia', 'DataCollectionId', '11') +VALUES ('', 'AssessmentParticipantSession', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePhysicalMedia', 'LearningResourceId', '11') +VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentAccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePhysicalMedia', 'LearningResourcePhysicalMediaId', '11') +VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentParticipantSession_AccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePhysicalMedia', 'RecordStatusId', '11') +VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentParticipantSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Location', 'DataCollectionId', '11') +VALUES ('', 'AssessmentParticipantSession_Accommodation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Location', 'LocationId', '11') +VALUES ('', 'AssessmentParticipantSession_Accommodation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Location', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPerformanceLevel', 'AssessmentPerformanceLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPerformanceLevel', 'AssessmentSubtestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'LocationAddressId', '11') +VALUES ('', 'AssessmentPerformanceLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'LocationId', '11') +VALUES ('', 'AssessmentPerformanceLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'AssessmentNeedsProfileContentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'RefCountryId', '11') +VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'AssessmentPersonalNeedLanguageLearnerId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'RefCountyId', '11') +VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'RefStateId', '11') +VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Organization', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedScreenReader', 'AssessmentPersonalNeedScreenReaderId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Organization', 'OrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedScreenReader', 'AssessmentPersonalNeedsProfileDisplayId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Organization', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedScreenReader', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'AccreditationStatus', '11') +VALUES ('', 'AssessmentPersonalNeedScreenReader', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfile', 'AssessmentPersonalNeedsProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'OrganizationAccreditationId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfile', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'OrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfile', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'AssessmentPersonalNeedsProfileContentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendar', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'AssessmentPersonalNeedsProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendar', 'OrganizationCalendarId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ChunkingActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendar', 'OrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ChunkingAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendar', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'CognitiveGuidanceActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarCrisis', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'CognitiveGuidanceAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarCrisis', 'OrganizationCalendarCrisisId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarCrisis', 'OrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordEmphasisActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarCrisis', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordEmphasisAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordTranslationsActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'DayName', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordTranslationsAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'OrganizationCalendarDayId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'NegativesRemovedActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'OrganizationCalendarId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'NegativesRemovedAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarEvent', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ReducedAnswersActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarEvent', 'OrganizationCalendarEventId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ReducedAnswersAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarEvent', 'OrganizationCalendarId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ScaffoldingActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarEvent', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ScaffoldingAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarSession', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'AssessmentPersonalNeedsProfileControlId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarSession', 'OrganizationCalendarId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'AssessmentPersonalNeedsProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarSession', 'OrganizationCalendarSessionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarSession', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'AssessmentPersonalNeedsProfileDisplayId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'OrganizationDetailId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'AssessmentPersonalNeedsProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'OrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'RefOrganizationTypeId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'AssessmentPersonalNeedsProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmail', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'AssessmentPersonalNeedsProfileScreenEnhancementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmail', 'OrganizationEmailId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmail', 'OrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmail', 'RecordStatusId', '11') +VALUES ('', 'AssessmentRegistration', 'AssessmentAdministrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmployeeBenefit', 'DataCollectionId', '11') +VALUES ('', 'AssessmentRegistration', 'AssessmentFormId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmployeeBenefit', 'OrganizationEmployeeBenefitId', '11') +VALUES ('', 'AssessmentRegistration', 'AssessmentRegistrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmployeeBenefit', 'OrganizationId', '11') +VALUES ('', 'AssessmentRegistration', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmployeeBenefit', 'RecordStatusId', '11') +VALUES ('', 'AssessmentRegistration', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFederalAccountability', 'DataCollectionId', '11') +VALUES ('', 'AssessmentRegistration', 'LeaOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFederalAccountability', 'OrganizationFederalAccountabilityId', '11') +VALUES ('', 'AssessmentRegistration', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFederalAccountability', 'OrganizationId', '11') +VALUES ('', 'AssessmentRegistration', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFederalAccountability', 'RecordStatusId', '11') +VALUES ('', 'AssessmentRegistration', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'DataCollectionId', '11') +VALUES ('', 'AssessmentRegistration', 'SchoolOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'FinancialAccountId', '11') +VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentAccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'FinancialAccountProgramId', '11') +VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentRegistration_AccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'OrganizationCalendarSessionId', '11') +VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentRegistrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'OrganizationFinancialId', '11') +VALUES ('', 'AssessmentRegistration_Accommodation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'RecordStatusId', '11') +VALUES ('', 'AssessmentRegistration_Accommodation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'FinancialAccountLocalId', '11') +VALUES ('', 'AssessmentResult', 'AssessmentRegistrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'OrganizationFinancialFinancialAccountLocalId', '11') +VALUES ('', 'AssessmentResult', 'AssessmentResultId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'OrganizationFinancialId', '11') +VALUES ('', 'AssessmentResult', 'AssessmentSubtestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIdentifier', 'DataCollectionId', '11') +VALUES ('', 'AssessmentResult', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIdentifier', 'OrganizationId', '11') +VALUES ('', 'AssessmentResult', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIdentifier', 'OrganizationIdentifierId', '11') +VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentPerformanceLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIdentifier', 'RecordStatusId', '11') +VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentResult_PerformanceLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationImage', 'DataCollectionId', '11') +VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentResultId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationImage', 'OrganizationId', '11') +VALUES ('', 'AssessmentResult_PerformanceLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationImage', 'OrganizationImageId', '11') +VALUES ('', 'AssessmentResult_PerformanceLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationImage', 'RecordStatusId', '11') +VALUES ('', 'AssessmentResultRubricCriterionResult', 'AssessmentResultId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'DataCollectionId', '11') +VALUES ('', 'AssessmentResultRubricCriterionResult', 'AssessmentResultRubricCriterionResultId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'IndicatorValue', '11') +VALUES ('', 'AssessmentResultRubricCriterionResult', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'OrganizationId', '11') +VALUES ('', 'AssessmentResultRubricCriterionResult', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'OrganizationIndicatorId', '11') +VALUES ('', 'AssessmentResultRubricCriterionResult', 'RubricCriterionLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSession', 'AssessmentAdministrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSession', 'AssessmentSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'LocationId', '11') +VALUES ('', 'AssessmentSession', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'OrganizationId', '11') +VALUES ('', 'AssessmentSession', 'Lea_OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'OrganizationLocationId', '11') +VALUES ('', 'AssessmentSession', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSession', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationOperationalStatus', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSession', 'School_OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationOperationalStatus', 'OrganizationId', '11') +VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentParticipantSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationOperationalStatus', 'OrganizationOperationalStatusId', '11') +VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationOperationalStatus', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentSessionStaffRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSessionStaffRole', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'OrganizationId', '11') +VALUES ('', 'AssessmentSessionStaffRole', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentSessionStaffRole', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'PersonId', '11') +VALUES ('', 'AssessmentSubtest', 'AssessmentFormId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSubtest', 'AssessmentSubtestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'RoleId', '11') +VALUES ('', 'AssessmentSubtest', 'ChildOf_AssessmentSubtestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleApplication', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSubtest', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleApplication', 'OrganizationPersonRoleApplicationId', '11') +VALUES ('', 'AssessmentSubtest', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleApplication', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleApplication', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentSubtestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleFTE', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentSubtestItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleFTE', 'OrganizationPersonRoleFTEId', '11') +VALUES ('', 'AssessmentSubtest_AssessmentItem', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleFTE', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentSubtest_AssessmentItem', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleFTE', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'AssessmentSubtest_CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'AssessmentSubtestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleId_Parent', '11') +VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleRelationshipId', '11') +VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'RecordStartDateTime', '11') +VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'AssessmentSubtestELDevelopmentalDomainId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'AssessmentSubtestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'OrganizationId', '11') +VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'OrganizationPolicyId', '11') +VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'RefAssessmentELDevelopmentalDomainId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'Value', '11') +VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'AssessmentSubTestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'AgeUnit', '11') +VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'AssessmentSubtestLevelsForWhichDesignedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'OrganizationId', '11') +VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'OrganizationPopulationServedId', '11') +VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'RefGradeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'RecordStatusId', '11') +VALUES ('', 'Authentication', 'AuthenticationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProgramType', 'DataCollectionId', '11') +VALUES ('', 'Authentication', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProgramType', 'OrganizationId', '11') +VALUES ('', 'Authentication', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProgramType', 'OrganizationProgramTypeId', '11') +VALUES ('', 'Authentication', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProgramType', 'RecordStatusId', '11') +VALUES ('', 'Authorization', 'ApplicationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProjectBasedLearning', 'OrganizationId', '11') +VALUES ('', 'Authorization', 'AuthorizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'DataCollectionId', '11') +VALUES ('', 'Authorization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'OrganizationId', '11') +VALUES ('', 'Authorization', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'OrganizationRelationshipId', '11') +VALUES ('', 'Authorization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'Parent_OrganizationId', '11') +VALUES ('', 'AuthorizationDocument', 'AuthorizationDocumentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'RecordStatusId', '11') +VALUES ('', 'AuthorizationDocument', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationService', 'DataCollectionId', '11') +VALUES ('', 'AuthorizationDocument', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationService', 'OrganizationId', '11') +VALUES ('', 'AuthorizationDocument', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationService', 'OrganizationServiceId', '11') +VALUES ('', 'BoardMembership', 'BoardMembershipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationService', 'RecordStatusId', '11') +VALUES ('', 'BoardMembership', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTechnicalAssistance', 'DataCollectionId', '11') +VALUES ('', 'BoardMembership', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTechnicalAssistance', 'OrganizationId', '11') +VALUES ('', 'BoardMembership', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTechnicalAssistance', 'OrganizationTechnicalAssistanceId', '11') +VALUES ('', 'BoardMembership', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTechnicalAssistance', 'RecordStatusId', '11') +VALUES ('', 'BoardMembership', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTelephone', 'DataCollectionId', '11') +VALUES ('', 'BuildingSpace', 'BuildingSpaceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTelephone', 'OrganizationId', '11') +VALUES ('', 'BuildingSpace', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTelephone', 'OrganizationTelephoneId', '11') +VALUES ('', 'BuildingSpace', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTelephone', 'RecordStatusId', '11') +VALUES ('', 'BuildingSpace', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationWebsite', 'DataCollectionId', '11') +VALUES ('', 'BuildingSpaceUtilization', 'BuildingSpaceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationWebsite', 'OrganizationId', '11') +VALUES ('', 'BuildingSpaceUtilization', 'BuildingSpaceUtilizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationWebsite', 'OrganizationWebsiteId', '11') +VALUES ('', 'BuildingSpaceUtilization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationWebsite', 'RecordStatusId', '11') +VALUES ('', 'BuildingSpaceUtilization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PDActivityEducationLevel', 'DataCollectionId', '11') +VALUES ('', 'BuildingSystemCategory', 'BuildingSystemCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PDActivityEducationLevel', 'PDActivityEducationLevelId', '11') +VALUES ('', 'BuildingSystemCategory', 'BuildingSystemComponentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PDActivityEducationLevel', 'ProfessionalDevelopmentActivityId', '11') +VALUES ('', 'BuildingSystemCategory', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PDActivityEducationLevel', 'RecordStatusId', '11') +VALUES ('', 'BuildingSystemCategory', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PeerRatingSystem', 'DataCollectionId', '11') +VALUES ('', 'BuildingSystemComponent', 'BuildingSystemComponentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PeerRatingSystem', 'PeerRatingSystemId', '11') +VALUES ('', 'BuildingSystemComponent', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PeerRatingSystem', 'RecordStatusId', '11') +VALUES ('', 'BuildingSystemComponent', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person', 'DataCollectionId', '11') +VALUES ('', 'BuildingSystemComponent', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person', 'PersonId', '11') +VALUES ('', 'BuildingSystemComponent', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person', 'PersonMasterId', '11') +VALUES ('', 'BuildingSystemComponentService', 'BuildingSystemComponentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person', 'RecordStatusId', '11') +VALUES ('', 'BuildingSystemComponentService', 'BuildingSystemComponentServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'AssessmentPersonalNeedsProfileId', '11') +VALUES ('', 'BuildingSystemComponentService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'DataCollectionId', '11') +VALUES ('', 'BuildingSystemComponentService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'Person_AssessmentPersonalNeedsProfileId', '11') +VALUES ('', 'Classroom', 'ClassroomId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'PersonId', '11') +VALUES ('', 'Classroom', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'RecordStatusId', '11') +VALUES ('', 'Classroom', 'LocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'DataCollectionId', '11') +VALUES ('', 'Classroom', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'PersonAddressId', '11') +VALUES ('', 'CompetencyDefAssociation', 'CompetencyDefAssociationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'PersonId', '11') +VALUES ('', 'CompetencyDefAssociation', 'CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'RecordStatusId', '11') +VALUES ('', 'CompetencyDefAssociation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'RefCountyId', '11') +VALUES ('', 'CompetencyDefAssociation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddressNcesSide', 'DataCollectionId', '11') +VALUES ('', 'CompetencyDefAssociation', 'RefEntityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddressNcesSide', 'PersonAddressId', '11') +VALUES ('', 'CompetencyDefEducationLevel', 'CompetencyDefEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddressNcesSide', 'PersonAddressNcesSideId', '11') +VALUES ('', 'CompetencyDefEducationLevel', 'CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddressNcesSide', 'RecordStatusId', '11') +VALUES ('', 'CompetencyDefEducationLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAllergy', 'DataCollectionId', '11') +VALUES ('', 'CompetencyDefEducationLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAllergy', 'PersonAllergyId', '11') +VALUES ('', 'CompetencyDefinition', 'ChildOf_CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAllergy', 'PersonId', '11') +VALUES ('', 'CompetencyDefinition', 'CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAllergy', 'RecordStatusId', '11') +VALUES ('', 'CompetencyDefinition', 'CompetencyFrameworkId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonBirthplace', 'DataCollectionId', '11') +VALUES ('', 'CompetencyDefinition', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonBirthplace', 'PersonBirthplaceId', '11') +VALUES ('', 'CompetencyDefinition', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonBirthplace', 'PersonId', '11') +VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencyDefinition_CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonBirthplace', 'RecordStatusId', '11') +VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCareerEducationPlan', 'DataCollectionId', '11') +VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCareerEducationPlan', 'PersonCareerEducationPlanId', '11') +VALUES ('', 'CompetencyDefinition_CompetencySet', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCareerEducationPlan', 'PersonId', '11') +VALUES ('', 'CompetencyDefinition_CompetencySet', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCareerEducationPlan', 'RecordStatusId', '11') +VALUES ('', 'CompetencyFramework', 'CompetencyFrameworkId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCredential', 'DataCollectionId', '11') +VALUES ('', 'CompetencyFramework', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCredential', 'PersonCredentialId', '11') +VALUES ('', 'CompetencyFramework', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCredential', 'PersonId', '11') +VALUES ('', 'CompetencySet', 'ChildOf_CompetencySet', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCredential', 'RecordStatusId', '11') +VALUES ('', 'CompetencySet', 'CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDegreeOrCertificate', 'DataCollectionId', '11') +VALUES ('', 'CompetencySet', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDegreeOrCertificate', 'PersonDegreeOrCertificateId', '11') +VALUES ('', 'CompetencySet', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDegreeOrCertificate', 'PersonId', '11') +VALUES ('', 'CompetencySet_Rubric', 'CompetencySet_RubricId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDegreeOrCertificate', 'RecordStatusId', '11') +VALUES ('', 'CompetencySet_Rubric', 'CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDemographicRace', 'DataCollectionId', '11') +VALUES ('', 'CompetencySet_Rubric', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDemographicRace', 'PersonDemographicRaceId', '11') +VALUES ('', 'CompetencySet_Rubric', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDemographicRace', 'PersonId', '11') +VALUES ('', 'CompetencySet_Rubric', 'RubricId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDemographicRace', 'RecordStatusId', '11') +VALUES ('', 'CompetencySet_RubricCriterion', 'CompetencySet_RubricCriterionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDetail', 'DataCollectionId', '11') +VALUES ('', 'CompetencySet_RubricCriterion', 'CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDetail', 'PersonDetailId', '11') +VALUES ('', 'CompetencySet_RubricCriterion', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDetail', 'PersonId', '11') +VALUES ('', 'CompetencySet_RubricCriterion', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDetail', 'RecordStatusId', '11') +VALUES ('', 'CompetencySet_RubricCriterion', 'RubricCriterionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'DataCollectionId', '11') +VALUES ('', 'CoreKnowledgeArea', 'CoreKnowledgeAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'PersonAddressId', '11') +VALUES ('', 'CoreKnowledgeArea', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'PersonDigitalAccessId', '11') +VALUES ('', 'CoreKnowledgeArea', 'ProfessionalDevelopmentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'PersonId', '11') +VALUES ('', 'CoreKnowledgeArea', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'RecordStatusId', '11') +VALUES ('', 'Course', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'DataCollectionId', '11') +VALUES ('', 'Course', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'PersonDigitalAccessId', '11') +VALUES ('', 'Course', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'PersonDigitalAccessSpeedId', '11') +VALUES ('', 'Course', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'PersonLearningDeviceId', '11') +VALUES ('', 'CourseFundingSource', 'CourseFundingSourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'RecordStatusId', '11') +VALUES ('', 'CourseFundingSource', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDisability', 'DataCollectionId', '11') +VALUES ('', 'CourseFundingSource', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDisability', 'PersonDisabilityId', '11') +VALUES ('', 'CourseFundingSource', 'FinancialAccountId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDisability', 'PersonId', '11') +VALUES ('', 'CourseFundingSource', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDisability', 'RecordStatusId', '11') +VALUES ('', 'CourseFundingSource', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonEmailAddress', 'DataCollectionId', '11') +VALUES ('', 'CourseFundingSource', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonEmailAddress', 'PersonEmailAddressId', '11') +VALUES ('', 'CourseRelationship', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonEmailAddress', 'PersonId', '11') +VALUES ('', 'CourseRelationship', 'CourseRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonEmailAddress', 'RecordStatusId', '11') +VALUES ('', 'CourseRelationship', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonFamily', 'DataCollectionId', '11') +VALUES ('', 'CourseRelationship', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonFamily', 'PersonFamilyId', '11') +VALUES ('', 'CourseRelationship', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonFamily', 'PersonId', '11') +VALUES ('', 'CourseRelationship', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonFamily', 'RecordStatusId', '11') +VALUES ('', 'CourseRelationship', 'RelatedCourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealth', 'DataCollectionId', '11') +VALUES ('', 'CourseSection', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealth', 'PersonHealthId', '11') +VALUES ('', 'CourseSection', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealth', 'PersonId', '11') +VALUES ('', 'CourseSection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealth', 'RecordStatusId', '11') +VALUES ('', 'CourseSection', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealthBirth', 'DataCollectionId', '11') +VALUES ('', 'CourseSection', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealthBirth', 'PersonHealthBirthId', '11') +VALUES ('', 'CourseSection', 'RefCreditTypeEarnedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealthBirth', 'PersonId', '11') +VALUES ('', 'CourseSectionAssessmentReporting', 'CourseSectionAssessmentReportingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealthBirth', 'RecordStatusId', '11') +VALUES ('', 'CourseSectionAssessmentReporting', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHomelessness', 'DataCollectionId', '11') +VALUES ('', 'CourseSectionAssessmentReporting', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHomelessness', 'PersonHomelessnessId', '11') +VALUES ('', 'CourseSectionAssessmentReporting', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHomelessness', 'PersonId', '11') +VALUES ('', 'CourseSectionLevel', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHomelessness', 'RecordStatusId', '11') +VALUES ('', 'CourseSectionLevel', 'CourseSectionLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonIdentifier', 'DataCollectionId', '11') +VALUES ('', 'CourseSectionLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonIdentifier', 'PersonId', '11') +VALUES ('', 'CourseSectionLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonIdentifier', 'PersonIdentifierId', '11') +VALUES ('', 'CourseSectionLocation', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonIdentifier', 'RecordStatusId', '11') +VALUES ('', 'CourseSectionLocation', 'CourseSectionLocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonImmunization', 'DataCollectionId', '11') +VALUES ('', 'CourseSectionLocation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonImmunization', 'PersonId', '11') +VALUES ('', 'CourseSectionLocation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonImmunization', 'PersonImmunizationId', '11') +VALUES ('', 'CourseSectionSchedule', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonImmunization', 'RecordStatusId', '11') +VALUES ('', 'CourseSectionSchedule', 'CourseSectionScheduleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLanguage', 'DataCollectionId', '11') +VALUES ('', 'CourseSectionSchedule', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLanguage', 'PersonId', '11') +VALUES ('', 'CourseSectionSchedule', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLanguage', 'PersonLanguageId', '11') +VALUES ('', 'CredentialAward', 'CredentialAwardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLanguage', 'RecordStatusId', '11') +VALUES ('', 'CredentialAward', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLearningDevice', 'DataCollectionId', '11') +VALUES ('', 'CredentialAward', 'CredentialIssuerId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLearningDevice', 'OrganizationPersonRoleId', '11') +VALUES ('', 'CredentialAward', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLearningDevice', 'PersonLearningDeviceId', '11') +VALUES ('', 'CredentialAward', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLearningDevice', 'RecordStatusId', '11') +VALUES ('', 'CredentialAward', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMaster', 'DataCollectionId', '11') +VALUES ('', 'CredentialAward', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMaster', 'PersonMasterId', '11') +VALUES ('', 'CredentialAwardCredit', 'CredentialAwardCreditId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMaster', 'RecordStatusId', '11') +VALUES ('', 'CredentialAwardCredit', 'CredentialAwardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMilitary', 'DataCollectionId', '11') +VALUES ('', 'CredentialAwardCredit', 'CredentialCriteriaCourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMilitary', 'PersonId', '11') +VALUES ('', 'CredentialAwardCredit', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMilitary', 'PersonMilitaryId', '11') +VALUES ('', 'CredentialAwardCredit', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMilitary', 'RecordStatusId', '11') +VALUES ('', 'CredentialAwardCredit', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonOtherName', 'DataCollectionId', '11') +VALUES ('', 'CredentialAwardEvidence', 'AssessmentResultId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonOtherName', 'PersonId', '11') +VALUES ('', 'CredentialAwardEvidence', 'CredentialAwardEvidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonOtherName', 'PersonOtherNameId', '11') +VALUES ('', 'CredentialAwardEvidence', 'CredentialAwardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonOtherName', 'RecordStatusId', '11') +VALUES ('', 'CredentialAwardEvidence', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'DataCollectionId', '11') +VALUES ('', 'CredentialAwardEvidence', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonAddressId', '11') +VALUES ('', 'CredentialAwardRelationship', 'CredentialAwardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonDetailId', '11') +VALUES ('', 'CredentialAwardRelationship', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonId', '11') +VALUES ('', 'CredentialAwardRelationship', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonPersonalInformationVerificationId', '11') +VALUES ('', 'CredentialAwardRelationship', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonTelephoneId', '11') +VALUES ('', 'CredentialAwardRelationship', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'RecordStatusId', '11') +VALUES ('', 'CredentialAwardRelationship', 'RefCredentialAwardRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonProgramParticipation', 'DataCollectionId', '11') +VALUES ('', 'CredentialAwardRelationship', 'RelatedCredentialAwardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonProgramParticipation', 'OrganizationPersonRoleId', '11') +VALUES ('', 'CredentialCriteriaCourse', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonProgramParticipation', 'PersonProgramParticipationId', '11') +VALUES ('', 'CredentialCriteriaCourse', 'CredentialCriteriaCourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonProgramParticipation', 'RecordStatusId', '11') +VALUES ('', 'CredentialCriteriaCourse', 'CredentialDefCriteriaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonReferral', 'DataCollectionId', '11') +VALUES ('', 'CredentialCriteriaCourse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonReferral', 'PersonId', '11') +VALUES ('', 'CredentialCriteriaCourse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonReferral', 'PersonReferralId', '11') +VALUES ('', 'CredentialDefAgent', 'CredentialDefAgentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonReferral', 'RecordStatusId', '11') +VALUES ('', 'CredentialDefAgent', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'DataCollectionId', '11') +VALUES ('', 'CredentialDefAgent', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'PersonId', '11') +VALUES ('', 'CredentialDefAgent', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'PersonRelationshipId', '11') +VALUES ('', 'CredentialDefAgent', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'RecordStatusId', '11') +VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefAgentCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'RelatedPersonId', '11') +VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefAgentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'DataCollectionId', '11') +VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'PersonId', '11') +VALUES ('', 'CredentialDefAgentCredential', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'PersonStatusId', '11') +VALUES ('', 'CredentialDefAgentCredential', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'RecordStatusId', '11') +VALUES ('', 'CredentialDefCategory', 'CredentialDefCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'StatusValue', '11') +VALUES ('', 'CredentialDefCategory', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonTelephone', 'DataCollectionId', '11') +VALUES ('', 'CredentialDefCategory', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonTelephone', 'PersonId', '11') +VALUES ('', 'CredentialDefCategory', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonTelephone', 'PersonTelephoneId', '11') +VALUES ('', 'CredentialDefCriteria', 'CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonTelephone', 'RecordStatusId', '11') +VALUES ('', 'CredentialDefCriteria', 'CredentialDefCriteriaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'CourseId', '11') +VALUES ('', 'CredentialDefCriteria', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'DataCollectionId', '11') +VALUES ('', 'CredentialDefCriteria', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityId', '11') +VALUES ('', 'CredentialDefCriteria', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentRequirementId', '11') +VALUES ('', 'CredentialDefGradeLevel', 'CredentialDefGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'RecordStatusId', '11') +VALUES ('', 'CredentialDefGradeLevel', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'CompetencySetId', '11') +VALUES ('', 'CredentialDefGradeLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'DataCollectionId', '11') +VALUES ('', 'CredentialDefGradeLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'OrganizationPersonRoleId', '11') +VALUES ('', 'CredentialDefGradeLevel', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'ProfessionalDevelopmentRequirementId', '11') +VALUES ('', 'CredentialDefGradeLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'RecordStatusId', '11') +VALUES ('', 'CredentialDefGradeLevel', 'RefGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSession', 'DataCollectionId', '11') +VALUES ('', 'CredentialDefIdentifier', 'CredentialDefIdentifierId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSession', 'ProfessionalDevelopmentActivityId', '11') +VALUES ('', 'CredentialDefIdentifier', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSession', 'ProfessionalDevelopmentSessionId', '11') +VALUES ('', 'CredentialDefIdentifier', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSession', 'RecordStatusId', '11') +VALUES ('', 'CredentialDefIdentifier', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'DataCollectionId', '11') +VALUES ('', 'CredentialDefinition', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'OrganizationPersonRoleId', '11') +VALUES ('', 'CredentialDefinition', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'ProfessionalDevelopmentSessionId', '11') +VALUES ('', 'CredentialDefinition', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'ProfessionalDevelopmentSessionInstructorId', '11') +VALUES ('', 'CredentialIssuer', 'CredentialIssuerId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'RecordStatusId', '11') +VALUES ('', 'CredentialIssuer', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Program', 'DataCollectionId', '11') +VALUES ('', 'CredentialIssuer', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Program', 'OrganizationId', '11') +VALUES ('', 'CredentialIssuer', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Program', 'ProgramId', '11') +VALUES ('', 'CredentialOffered', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Program', 'RecordStatusId', '11') +VALUES ('', 'CredentialOffered', 'CredentialIssuerId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAE', 'DataCollectionId', '11') +VALUES ('', 'CredentialOffered', 'CredentialOfferedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAE', 'PersonProgramParticipationId', '11') +VALUES ('', 'CredentialOffered', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAE', 'ProgramParticipationAEId', '11') +VALUES ('', 'CredentialOffered', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAE', 'RecordStatusId', '11') +VALUES ('', 'CteCourse', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAttainment', 'DataCollectionId', '11') +VALUES ('', 'CteCourse', 'CteCourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAttainment', 'PersonProgramParticipationId', '11') +VALUES ('', 'CteCourse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAttainment', 'ProgramParticipationAttainmentId', '11') +VALUES ('', 'CteCourse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAttainment', 'RecordStatusId', '11') +VALUES ('', 'CteStudentAcademicRecord', 'CteStudentAcademicRecordId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationCte', 'DataCollectionId', '11') +VALUES ('', 'CteStudentAcademicRecord', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationCte', 'PersonProgramParticipationId', '11') +VALUES ('', 'CteStudentAcademicRecord', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationCte', 'ProgramParticipationCteId', '11') +VALUES ('', 'CteStudentAcademicRecord', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationCte', 'RecordStatusId', '11') +VALUES ('', 'DataCollection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationFoodService', 'DataCollectionId', '11') +VALUES ('', 'EarlyChildhoodCredential', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationFoodService', 'PersonProgramParticipationId', '11') +VALUES ('', 'EarlyChildhoodCredential', 'EarlyChildhoodCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationFoodService', 'ProgramParticipationFoodServiceId', '11') +VALUES ('', 'EarlyChildhoodCredential', 'PersonCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationFoodService', 'RecordStatusId', '11') +VALUES ('', 'EarlyChildhoodCredential', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationMigrant', 'DataCollectionId', '11') +VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationMigrant', 'PersonProgramParticipationId', '11') +VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'EarlyChildhoodProgramTypeOfferedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationMigrant', 'ProgramParticipationMigrantId', '11') +VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationMigrant', 'RecordStatusId', '11') +VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationNeglected', 'DataCollectionId', '11') +VALUES ('', 'ELChildDemographic', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationNeglected', 'PersonProgramParticipationId', '11') +VALUES ('', 'ELChildDemographic', 'ELChildDemographicId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationNeglected', 'ProgramParticipationNeglectedId', '11') +VALUES ('', 'ELChildDemographic', 'FosterCareEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationNeglected', 'RecordStatusId', '11') +VALUES ('', 'ELChildDemographic', 'FosterCareStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationSpecialEducation', 'DataCollectionId', '11') +VALUES ('', 'ELChildDemographic', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationSpecialEducation', 'PersonProgramParticipationId', '11') +VALUES ('', 'ELChildDemographic', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationSpecialEducation', 'ProgramParticipationSpecialEducationId', '11') +VALUES ('', 'ELChildDevelopmentalAssessment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationSpecialEducation', 'RecordStatusId', '11') +VALUES ('', 'ELChildDevelopmentalAssessment', 'ELChildDevelopmentalAssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTeacherPrep', 'DataCollectionId', '11') +VALUES ('', 'ELChildDevelopmentalAssessment', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTeacherPrep', 'PersonProgramParticipationId', '11') +VALUES ('', 'ELChildDevelopmentalAssessment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTeacherPrep', 'ProgramParticipationTeacherPrepId', '11') +VALUES ('', 'ELChildHealth', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTeacherPrep', 'RecordStatusId', '11') +VALUES ('', 'ELChildHealth', 'ELChildHealthId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleI', 'DataCollectionId', '11') +VALUES ('', 'ELChildHealth', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleI', 'PersonProgramParticipationId', '11') +VALUES ('', 'ELChildHealth', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleI', 'ProgramParticipationTitleIId', '11') +VALUES ('', 'ELChildIndividualizedProgram', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleI', 'RecordStatusId', '11') +VALUES ('', 'ELChildIndividualizedProgram', 'ELChildIndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleIIILep', 'DataCollectionId', '11') +VALUES ('', 'ELChildIndividualizedProgram', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleIIILep', 'PersonProgramParticipationId', '11') +VALUES ('', 'ELChildIndividualizedProgram', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleIIILep', 'ProgramParticipationTitleIiiLepId', '11') +VALUES ('', 'ELChildIndividualizedProgram', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleIIILep', 'RecordStatusId', '11') +VALUES ('', 'ELChildOutcomeSummary', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOA', 'DataCollectionId', '11') +VALUES ('', 'ELChildOutcomeSummary', 'ELChildOutcomeSummaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOA', 'PersonProgramParticipationId', '11') +VALUES ('', 'ELChildOutcomeSummary', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOA', 'ProgramParticipationWIOAId', '11') +VALUES ('', 'ELChildOutcomeSummary', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOA', 'RecordStatusId', '11') +VALUES ('', 'ELChildProgramEligibility', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOABarriers', 'DataCollectionId', '11') +VALUES ('', 'ELChildProgramEligibility', 'ELChildProgramEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOABarriers', 'ProgramParticipationWIOABarriersId', '11') +VALUES ('', 'ELChildProgramEligibility', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOABarriers', 'ProgramParticipationWIOAId', '11') +VALUES ('', 'ELChildProgramEligibility', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOABarriers', 'RecordStatusId', '11') +VALUES ('', 'ELChildService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsCourse', 'CourseId', '11') +VALUES ('', 'ELChildService', 'ELChildServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsCourse', 'DataCollectionId', '11') +VALUES ('', 'ELChildService', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsCourse', 'PsCourseId', '11') +VALUES ('', 'ELChildService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsCourse', 'RecordStatusId', '11') +VALUES ('', 'ELChildServicesApplication', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsInstitution', 'DataCollectionId', '11') +VALUES ('', 'ELChildServicesApplication', 'ELChildServicesApplicationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsInstitution', 'OrganizationId', '11') +VALUES ('', 'ELChildServicesApplication', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsInstitution', 'PsInstitutionId', '11') +VALUES ('', 'ELChildServicesApplication', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsInstitution', 'RecordStatusId', '11') +VALUES ('', 'ELChildTransitionPlan', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsPriceOfAttendance', 'DataCollectionId', '11') +VALUES ('', 'ELChildTransitionPlan', 'ELChildTransitionPlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsPriceOfAttendance', 'PsInstitutionId', '11') +VALUES ('', 'ELChildTransitionPlan', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsPriceOfAttendance', 'PSPriceOfAttendanceId', '11') +VALUES ('', 'ELChildTransitionPlan', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsPriceOfAttendance', 'RecordStatusId', '11') +VALUES ('', 'ELChildTransitionPlan', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsProgram', 'DataCollectionId', '11') +VALUES ('', 'ELClassSection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsProgram', 'OrganizationId', '11') +VALUES ('', 'ELClassSection', 'ELClassSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsProgram', 'PsProgramId', '11') +VALUES ('', 'ELClassSection', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsProgram', 'RecordStatusId', '11') +VALUES ('', 'ELClassSection', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSection', 'CourseSectionId', '11') +VALUES ('', 'ELClassSectionService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSection', 'DataCollectionId', '11') +VALUES ('', 'ELClassSectionService', 'ELClassSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSection', 'PsSectionId', '11') +VALUES ('', 'ELClassSectionService', 'ELClassSectionServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSection', 'RecordStatusId', '11') +VALUES ('', 'ELClassSectionService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSectionLocation', 'DataCollectionId', '11') +VALUES ('', 'ELCourse', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSectionLocation', 'PsSectionId', '11') +VALUES ('', 'ELCourse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSectionLocation', 'PsSectionLocationId', '11') +VALUES ('', 'ELCourse', 'ELCourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSectionLocation', 'RecordStatusId', '11') +VALUES ('', 'ELCourse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStaffEmployment', 'DataCollectionId', '11') +VALUES ('', 'ELEnrollment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStaffEmployment', 'PsStaffEmploymentId', '11') +VALUES ('', 'ELEnrollment', 'ELClassSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStaffEmployment', 'RecordStatusId', '11') +VALUES ('', 'ELEnrollment', 'ELEnrollmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStaffEmployment', 'StaffEmploymentId', '11') +VALUES ('', 'ELEnrollment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicAward', 'DataCollectionId', '11') +VALUES ('', 'ELEnrollment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicAward', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ELEnrollmentOtherFunding', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicAward', 'PsStudentAcademicAwardId', '11') +VALUES ('', 'ELEnrollmentOtherFunding', 'ELEnrollmentOtherFundingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicAward', 'RecordStatusId', '11') +VALUES ('', 'ELEnrollmentOtherFunding', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicRecord', 'DataCollectionId', '11') +VALUES ('', 'ELEnrollmentOtherFunding', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicRecord', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ELFacilityLicensing', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicRecord', 'PsStudentAcademicRecordId', '11') +VALUES ('', 'ELFacilityLicensing', 'ELFacilityLicensingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicRecord', 'RecordStatusId', '11') +VALUES ('', 'ELFacilityLicensing', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAdmissionTest', 'DataCollectionId', '11') +VALUES ('', 'ELFacilityLicensing', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAdmissionTest', 'OrganizationPersonRoleId', '11') +VALUES ('', 'EligibilityEvaluation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAdmissionTest', 'PsStudentAdmissionTestId', '11') +VALUES ('', 'EligibilityEvaluation', 'EligibilityEvaluationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAdmissionTest', 'RecordStatusId', '11') +VALUES ('', 'EligibilityEvaluation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentApplication', 'DataCollectionId', '11') +VALUES ('', 'ELOrganization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentApplication', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ELOrganization', 'ELOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentApplication', 'PsStudentApplicationId', '11') +VALUES ('', 'ELOrganization', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentApplication', 'RecordStatusId', '11') +VALUES ('', 'ELOrganization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCohort', 'DataCollectionId', '11') +VALUES ('', 'ELOrganizationAvailability', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCohort', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ELOrganizationAvailability', 'ELOrganizationAvailabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCohort', 'PsStudentCohortId', '11') +VALUES ('', 'ELOrganizationAvailability', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCohort', 'RecordStatusId', '11') +VALUES ('', 'ELOrganizationAvailability', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCourseSectionMark', 'DataCollectionId', '11') +VALUES ('', 'ELOrganizationFunds', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCourseSectionMark', 'PsStudentCourseSectionMarkId', '11') +VALUES ('', 'ELOrganizationFunds', 'ELOrganizationFundsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCourseSectionMark', 'PsStudentSectionId', '11') +VALUES ('', 'ELOrganizationFunds', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCourseSectionMark', 'RecordStatusId', '11') +VALUES ('', 'ELOrganizationFunds', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentDemographic', 'DataCollectionId', '11') +VALUES ('', 'ELOrganizationMonitoring', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentDemographic', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ELOrganizationMonitoring', 'ELOrganizationMonitoringId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentDemographic', 'PsStudentDemographicId', '11') +VALUES ('', 'ELOrganizationMonitoring', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentDemographic', 'RecordStatusId', '11') +VALUES ('', 'ELOrganizationMonitoring', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEmployment', 'DataCollectionId', '11') +VALUES ('', 'ELOrganizationStudentResponsibility', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEmployment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ELOrganizationStudentResponsibility', 'ELOrganizationStudentResponsibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEmployment', 'PsStudentEmploymentId', '11') +VALUES ('', 'ELOrganizationStudentResponsibility', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEmployment', 'RecordStatusId', '11') +VALUES ('', 'ELOrganizationStudentResponsibility', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEnrollment', 'DataCollectionId', '11') +VALUES ('', 'ELOrganizationStudentResponsibility', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEnrollment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ELOrganizationStudentResponsibility', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEnrollment', 'PSStudentEnrollmentId', '11') +VALUES ('', 'ELProgramLicensing', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEnrollment', 'RecordStatusId', '11') +VALUES ('', 'ELProgramLicensing', 'ELProgramLicensingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentFinancialAid', 'DataCollectionId', '11') +VALUES ('', 'ELProgramLicensing', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentFinancialAid', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ELProgramLicensing', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentFinancialAid', 'PsStudentFinancialAidId', '11') +VALUES ('', 'ELQualityInitiative', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentFinancialAid', 'RecordStatusId', '11') +VALUES ('', 'ELQualityInitiative', 'ELQualityInitiativeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'DataCollectionId', '11') +VALUES ('', 'ELQualityInitiative', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ELQualityInitiative', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'PsProgramId', '11') +VALUES ('', 'ELQualityRatingImprovement', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'PSStudentProgramId', '11') +VALUES ('', 'ELQualityRatingImprovement', 'ELQualityRatingImprovementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'RecordStatusId', '11') +VALUES ('', 'ELQualityRatingImprovement', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentSection', 'DataCollectionId', '11') +VALUES ('', 'ELQualityRatingImprovement', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentSection', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ELServicePartner', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentSection', 'PsStudentSectionId', '11') +VALUES ('', 'ELServicePartner', 'ELServicePartnerId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentSection', 'RecordStatusId', '11') +VALUES ('', 'ELServicePartner', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'QuarterlyEmploymentRecord', 'DataCollectionId', '11') +VALUES ('', 'ELServicePartner', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'QuarterlyEmploymentRecord', 'PersonId', '11') +VALUES ('', 'ELStaff', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'QuarterlyEmploymentRecord', 'QuarterlyEmploymentRecordId', '11') +VALUES ('', 'ELStaff', 'ELStaffId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'QuarterlyEmploymentRecord', 'RecordStatusId', '11') +VALUES ('', 'ELStaff', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatus', 'RecordStatusCreatorOrganizationId', '11') +VALUES ('', 'ELStaff', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatus', 'RecordStatusCreatorPersonId', '11') +VALUES ('', 'ELStaffAssignment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatus', 'RecordStatusId', '11') +VALUES ('', 'ELStaffAssignment', 'ELStaffAssignmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordId', '11') +VALUES ('', 'ELStaffAssignment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordPKColumn', '11') +VALUES ('', 'ELStaffAssignment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordStatusCreatorOrganizationId', '11') +VALUES ('', 'ELStaffEducation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordStatusCreatorPersonId', '11') +VALUES ('', 'ELStaffEducation', 'ELStaffEducationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordStatusHistoryId', '11') +VALUES ('', 'ELStaffEducation', 'ELStaffId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordStatusId', '11') +VALUES ('', 'ELStaffEducation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordTable', '11') +VALUES ('', 'ELStaffEmployment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RequiredImmunization', 'DataCollectionId', '11') +VALUES ('', 'ELStaffEmployment', 'ELStaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RequiredImmunization', 'OrganizationId', '11') +VALUES ('', 'ELStaffEmployment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RequiredImmunization', 'RecordStatusId', '11') +VALUES ('', 'ELStaffEmployment', 'StaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RequiredImmunization', 'RequiredImmunizationId', '11') +VALUES ('', 'Facility', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'DataCollectionId', '11') +VALUES ('', 'Facility', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'Name', '11') +VALUES ('', 'Facility', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'RecordStatusId', '11') +VALUES ('', 'Facility', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'RefJurisdictionId', '11') +VALUES ('', 'FacilityAudit', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'RoleId', '11') +VALUES ('', 'FacilityAudit', 'FacilityAuditId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendance', 'DataCollectionId', '11') +VALUES ('', 'FacilityAudit', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendance', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityAudit', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendance', 'RecordStatusId', '11') +VALUES ('', 'FacilityCompliance', 'BuildingSystemComponentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendance', 'RoleAttendanceId', '11') +VALUES ('', 'FacilityCompliance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendanceEvent', 'DataCollectionId', '11') +VALUES ('', 'FacilityCompliance', 'FacilityComplianceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendanceEvent', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityCompliance', 'FacilityMandateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendanceEvent', 'RecordStatusId', '11') +VALUES ('', 'FacilityCompliance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendanceEvent', 'RoleAttendanceEventId', '11') +VALUES ('', 'FacilityDesign', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleStatus', 'DataCollectionId', '11') +VALUES ('', 'FacilityDesign', 'FacilityDesignId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleStatus', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityDesign', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleStatus', 'RecordStatusId', '11') +VALUES ('', 'FacilityDesign', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleStatus', 'RoleStatusId', '11') +VALUES ('', 'FacilityDesignConstruction', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Rubric', 'DataCollectionId', '11') +VALUES ('', 'FacilityDesignConstruction', 'FacilityDesignConstructionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Rubric', 'RecordStatusId', '11') +VALUES ('', 'FacilityDesignConstruction', 'FacilityDesignId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Rubric', 'RubricId', '11') +VALUES ('', 'FacilityDesignConstruction', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterion', 'DataCollectionId', '11') +VALUES ('', 'FacilityEnergy', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterion', 'RecordStatusId', '11') +VALUES ('', 'FacilityEnergy', 'FacilityEnergyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterion', 'RubricCriterionId', '11') +VALUES ('', 'FacilityEnergy', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterion', 'RubricId', '11') +VALUES ('', 'FacilityEnergy', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterionLevel', 'DataCollectionId', '11') +VALUES ('', 'FacilityFinance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterionLevel', 'RecordStatusId', '11') +VALUES ('', 'FacilityFinance', 'FacilityFinanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterionLevel', 'RubricCriterionId', '11') +VALUES ('', 'FacilityFinance', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterionLevel', 'RubricCriterionLevelId', '11') +VALUES ('', 'FacilityFinance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceFrequency', 'DataCollectionId', '11') +VALUES ('', 'FacilityFinancial', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceFrequency', 'RecordStatusId', '11') +VALUES ('', 'FacilityFinancial', 'FacilityFinancialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceFrequency', 'ServiceFrequencyId', '11') +VALUES ('', 'FacilityFinancial', 'FacilityLeaseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceFrequency', 'ServicePlanId', '11') +VALUES ('', 'FacilityFinancial', 'FacilityMortgageFeeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicePlan', 'DataCollectionId', '11') +VALUES ('', 'FacilityFinancial', 'FacilityMortgageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicePlan', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityFinancial', 'OrganizationFinancialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicePlan', 'RecordStatusId', '11') +VALUES ('', 'FacilityFinancial', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicePlan', 'ServicePlanId', '11') +VALUES ('', 'FacilityHazard', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvided', 'DataCollectionId', '11') +VALUES ('', 'FacilityHazard', 'FacilityHazardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvided', 'RecordStatusId', '11') +VALUES ('', 'FacilityHazard', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvided', 'ServiceProvidedId', '11') +VALUES ('', 'FacilityHazard', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvided', 'ServicesReceivedId', '11') +VALUES ('', 'FacilityJointUse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'DataCollectionId', '11') +VALUES ('', 'FacilityJointUse', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'OrganizationId', '11') +VALUES ('', 'FacilityJointUse', 'FacilityJointUseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'RecordStatusId', '11') +VALUES ('', 'FacilityJointUse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'ServiceProvidedId', '11') +VALUES ('', 'FacilityLease', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'ServiceProviderId', '11') +VALUES ('', 'FacilityLease', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'ServiceStaffId', '11') +VALUES ('', 'FacilityLease', 'FacilityLeaseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'DataCollectionId', '11') +VALUES ('', 'FacilityLease', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityLocation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'RecordStatusId', '11') +VALUES ('', 'FacilityLocation', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'ServicePlanId', '11') +VALUES ('', 'FacilityLocation', 'FacilityLocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'ServicesReceivedId', '11') +VALUES ('', 'FacilityLocation', 'LocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceStaff', 'DataCollectionId', '11') +VALUES ('', 'FacilityLocation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceStaff', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityManagement', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceStaff', 'RecordStatusId', '11') +VALUES ('', 'FacilityManagement', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceStaff', 'ServiceStaffId', '11') +VALUES ('', 'FacilityManagement', 'FacilityManagementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCompensation', 'DataCollectionId', '11') +VALUES ('', 'FacilityManagement', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCompensation', 'RecordStatusId', '11') +VALUES ('', 'FacilityManagementPlan', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCompensation', 'StaffCompensationId', '11') +VALUES ('', 'FacilityManagementPlan', 'FacilityManagementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCompensation', 'StaffEmploymentId', '11') +VALUES ('', 'FacilityManagementPlan', 'FacilityManagementPlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCredential', 'DataCollectionId', '11') +VALUES ('', 'FacilityManagementPlan', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCredential', 'PersonCredentialId', '11') +VALUES ('', 'FacilityMandate', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCredential', 'RecordStatusId', '11') +VALUES ('', 'FacilityMandate', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCredential', 'StaffCredentialId', '11') +VALUES ('', 'FacilityMandate', 'FacilityMandateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEmployment', 'DataCollectionId', '11') +VALUES ('', 'FacilityMandate', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEmployment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityMortgage', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEmployment', 'RecordStatusId', '11') +VALUES ('', 'FacilityMortgage', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEmployment', 'StaffEmploymentId', '11') +VALUES ('', 'FacilityMortgage', 'FacilityMortgageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluation', 'DataCollectionId', '11') +VALUES ('', 'FacilityMortgage', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluation', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityMortgageFee', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluation', 'RecordStatusId', '11') +VALUES ('', 'FacilityMortgageFee', 'FacilityMortgageFeeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluation', 'StaffEvaluationId', '11') +VALUES ('', 'FacilityMortgageFee', 'FacilityMortgageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'DataCollectionId', '11') +VALUES ('', 'FacilityMortgageFee', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityRelationship', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'RecordStatusId', '11') +VALUES ('', 'FacilityRelationship', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'StaffEvaluationId', '11') +VALUES ('', 'FacilityRelationship', 'FacilityRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'StaffEvaluationPartId', '11') +VALUES ('', 'FacilityRelationship', 'Parent_FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffExperience', 'DataCollectionId', '11') +VALUES ('', 'FacilityRelationship', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffExperience', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilitySchoolDesign', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffExperience', 'RecordStatusId', '11') +VALUES ('', 'FacilitySchoolDesign', 'FacilityDesignId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffExperience', 'StaffExperienceId', '11') +VALUES ('', 'FacilitySchoolDesign', 'FacilitySchoolDesignId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'DataCollectionId', '11') +VALUES ('', 'FacilitySchoolDesign', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilitySite', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityId', '11') +VALUES ('', 'FacilitySite', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentRequirementId', '11') +VALUES ('', 'FacilitySite', 'FacilitySiteId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentSessionId', '11') +VALUES ('', 'FacilitySite', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'RecordStatusId', '11') +VALUES ('', 'FacilityUtilization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'StaffProfessionalDevelopmentActivityId', '11') +VALUES ('', 'FacilityUtilization', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffTechnicalAssistance', 'DataCollectionId', '11') +VALUES ('', 'FacilityUtilization', 'FacilityUtilizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffTechnicalAssistance', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityUtilization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffTechnicalAssistance', 'RecordStatusId', '11') +VALUES ('', 'FinancialAccount', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffTechnicalAssistance', 'StaffTechnicalAssistanceId', '11') +VALUES ('', 'FinancialAccount', 'FederalProgramCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'AssessmentResultId', '11') +VALUES ('', 'FinancialAccount', 'FinancialAccountId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'DataCollectionId', '11') +VALUES ('', 'FinancialAccount', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'ProgramParticipationTeacherPrepId', '11') +VALUES ('', 'FinancialAccountLocal', 'AccountNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'RecordStatusId', '11') +VALUES ('', 'FinancialAccountLocal', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'TeacherEducationCredentialExamId', '11') +VALUES ('', 'FinancialAccountLocal', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'DataCollectionId', '11') +VALUES ('', 'FinancialAccountLocal', 'FinancialAccountLocalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'K12StaffAssignmentId', '11') +VALUES ('', 'FinancialAccountLocal', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'K12StudentCourseSectionId', '11') +VALUES ('', 'FinancialAccountLocal', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'RecordStatusId', '11') +VALUES ('', 'FinancialAccountLocal', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'TeacherStudentDataLinkExclusionId', '11') +VALUES ('', 'FinancialAccountLocal', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceEmploymentQuarterlyData', 'DataCollectionId', '11') +VALUES ('', 'FinancialAccountProgram', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceEmploymentQuarterlyData', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FinancialAccountProgram', 'FinancialAccountProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceEmploymentQuarterlyData', 'RecordStatusId', '11') +VALUES ('', 'FinancialAccountProgram', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceEmploymentQuarterlyData', 'WorkforceEmploymentQuarterlyDataId', '11') +VALUES ('', 'FinancialAidApplication', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'CohortDescription', '11') +VALUES ('', 'FinancialAidApplication', 'FinancialAidApplicationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'DataCollectionId', '11') +VALUES ('', 'FinancialAidApplication', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FinancialAidApplication', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'RecordStatusId', '11') +VALUES ('', 'FinancialAidAward', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'WorkforceProgramParticipantCohortId', '11') +VALUES ('', 'FinancialAidAward', 'FinancialAidAwardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipation', 'DataCollectionId', '11') +VALUES ('', 'FinancialAidAward', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipation', 'PersonProgramParticipationId', '11') +VALUES ('', 'FinancialAidAward', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipation', 'RecordStatusId', '11') +VALUES ('', 'Goal', 'CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipation', 'WorkforceProgramParticipationId', '11') +VALUES ('', 'Goal', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000001', 'PsStudentAcademicAward', 'AcademicAwardDate', '11') +VALUES ('', 'Goal', 'GoalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000002', 'PsStudentAcademicAward', 'RefAcademicAwardLevelId', '11') +VALUES ('', 'Goal', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000003', 'PsStudentAcademicAward', 'AcademicAwardTitle', '11') +VALUES ('', 'Goal', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000004', 'K12StudentAcademicHonor', 'RefAcademicHonorTypeId', '11') +VALUES ('', 'GoalMeasurement', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000005', 'OrganizationFederalAccountability', 'AccountabilityReportTitle', '11') +VALUES ('', 'GoalMeasurement', 'GoalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000006', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('', 'GoalMeasurement', 'GoalMeasurementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000007', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('', 'GoalMeasurement', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000008', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('', 'GoalMeasurementCriterion', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000009', 'OrganizationDetail', 'Name', '11') +VALUES ('', 'GoalMeasurementCriterion', 'GoalMeasurementCriterionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000010', 'PersonAddress', 'RefPersonLocationTypeId', '11') +VALUES ('', 'GoalMeasurementCriterion', 'GoalMeasurementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000011', 'OrganizationFederalAccountability', 'RefAypStatusId', '11') +VALUES ('', 'GoalMeasurementCriterion', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000012', 'ELOrganizationFunds', 'RefAdministrativeFundingControlId', '11') +VALUES ('', 'GoalPerformance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000012', 'K12School', 'RefAdministrativeFundingControlId', '11') +VALUES ('', 'GoalPerformance', 'Date', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000012', 'PsInstitution', 'RefAdministrativeFundingControlId', '11') +VALUES ('', 'GoalPerformance', 'GoalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000013', 'CteCourse', 'CourseAlignedWithStandards', '11') +VALUES ('', 'GoalPerformance', 'GoalPerformanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000013', 'K12Course', 'CourseAlignedWithStandards', '11') +VALUES ('', 'GoalPerformance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000014', 'OrganizationFederalAccountability', 'AlternateAypApproachIndicator', '11') +VALUES ('', 'IDEAEligibilityEvaluationCategory', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000015', 'K12SchoolStatus', 'RefAlternativeSchoolFocusId', '11') +VALUES ('', 'IDEAEligibilityEvaluationCategory', 'EligibilityEvaluationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000018', 'PsStudentAcademicRecord', 'AdvancedPlacementCreditsAwarded', '11') +VALUES ('', 'IDEAEligibilityEvaluationCategory', 'IDEAEligibilityEvaluationCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000019', 'LocationAddress', 'ApartmentRoomOrSuiteNumber', '11') +VALUES ('', 'IDEAEligibilityEvaluationCategory', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000019', 'PersonAddress', 'ApartmentRoomOrSuiteNumber', '11') +VALUES ('', 'IDSVersion', 'CurrentVersion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000021', 'Assessment', 'RefAcademicSubjectId', '11') +VALUES ('', 'IDSVersion', 'IDSVersionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000021', 'AssessmentSubtest', 'RefAcademicSubjectId', '11') +VALUES ('', 'IDSVersion', 'IDSVersionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000024', 'AssessmentForm', 'Name', '11') +VALUES ('', 'IDSVersion', 'IDSVersionNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000025', 'AssessmentRegistration', 'RefAssessmentParticipationIndicatorId', '11') +VALUES ('', 'IEPAuthorization', 'AuthorizationDocumentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000026', 'Assessment', 'RefAssessmentPurposeId', '11') +VALUES ('', 'IEPAuthorization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000026', 'AssessmentRegistration', 'RefAssessmentPurposeId', '11') +VALUES ('', 'IEPAuthorization', 'IEPAuthorizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000026', 'AssessmentSubtest', 'RefAssessmentPurposeId', '11') +VALUES ('', 'IEPAuthorization', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000027', 'CourseSectionAssessmentReporting', 'RefCourseSectionAssessmentReportingMethodId', '11') +VALUES ('', 'IEPAuthorization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000028', 'Assessment', 'Title', '11') +VALUES ('', 'IEPAuthorizationRejected', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000029', 'Assessment', 'RefAssessmentTypeId', '11') +VALUES ('', 'IEPAuthorizationRejected', 'IEPAuthorizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000030', 'CourseSection', 'AvailableCarnegieUnitCredit', '11') +VALUES ('', 'IEPAuthorizationRejected', 'IEPAuthorizationRejectedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000030', 'CteCourse', 'AvailableCarnegieUnitCredit', '11') +VALUES ('', 'IEPAuthorizationRejected', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000030', 'K12Course', 'AvailableCarnegieUnitCredit', '11') +VALUES ('', 'IEPPresentLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000031', 'ProgramParticipationSpecialEducation', 'AwaitingInitialIDEAEvaluationStatus', '11') +VALUES ('', 'IEPPresentLevel', 'IEPPresentLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000032', 'StaffCompensation', 'StaffCompensationBaseSalary', '11') +VALUES ('', 'IEPPresentLevel', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000033', 'PersonDetail', 'Birthdate', '11') +VALUES ('', 'IEPPresentLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000035', 'PsStudentDemographic', 'RefCampusResidencyTypeId', '11') +VALUES ('', 'Incident', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000036', 'ProgramParticipationCte', 'CteCompleter', '11') +VALUES ('', 'Incident', 'IncidentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000037', 'ProgramParticipationCte', 'CteConcentrator', '11') +VALUES ('', 'Incident', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000038', 'PsInstitution', 'RefCarnegieBasicClassificationId', '11') +VALUES ('', 'Incident', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000039', 'K12Lea', 'CharterSchoolIndicator', '11') +VALUES ('', 'IncidentActivity', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000039', 'K12School', 'CharterSchoolIndicator', '11') +VALUES ('', 'IncidentActivity', 'IncidentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000040', 'LocationAddress', 'City', '11') +VALUES ('', 'IncidentActivity', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000040', 'PersonAddress', 'City', '11') +VALUES ('', 'IncidentActivity', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000041', 'K12StudentAcademicRecord', 'HighSchoolStudentClassRank', '11') +VALUES ('', 'IncidentActivity', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000041', 'PsStudentApplication', 'HighSchoolStudentClassRank', '11') +VALUES ('', 'IncidentPerson', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000042', 'K12StudentAcademicRecord', 'ClassRankingDate', '11') +VALUES ('', 'IncidentPerson', 'IncidentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000043', 'CredentialDefinition', 'RefCipCodeId', '11') +VALUES ('', 'IncidentPerson', 'IncidentPersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000043', 'PsCourse', 'RefCipCodeId', '11') +VALUES ('', 'IncidentPerson', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000043', 'PsProgram', 'RefCipCodeId', '11') +VALUES ('', 'IncidentPerson', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000043', 'PsSection', 'RefCipCodeId', '11') +VALUES ('', 'IndividualizedProgram', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000044', 'PSStudentProgram', 'RefCipUseId', '11') +VALUES ('', 'IndividualizedProgram', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000045', 'PsProgram', 'RefCipVersionId', '11') +VALUES ('', 'IndividualizedProgram', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000046', 'K12StudentCohort', 'CohortYear', '11') +VALUES ('', 'IndividualizedProgram', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000047', 'ELStaffEmployment', 'ContractDaysOfServicePerYear', '11') +VALUES ('', 'IndividualizedProgramAccessibleFormat', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000047', 'K12StaffEmployment', 'ContractDaysOfServicePerYear', '11') +VALUES ('', 'IndividualizedProgramAccessibleFormat', 'IndividualizedProgramAccessibleFormatId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000048', 'ELOrganization', 'RefControlOfInstitutionId', '11') +VALUES ('', 'IndividualizedProgramAccessibleFormat', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000048', 'PsInstitution', 'RefControlOfInstitutionId', '11') +VALUES ('', 'IndividualizedProgramAccessibleFormat', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000049', 'K12SchoolCorrectiveAction', 'RefCorrectiveActionTypeId', '11') +VALUES ('', 'IndividualizedProgramAccessibleFormat', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000050', 'PersonAddress', 'RefCountryId', '11') +VALUES ('', 'IndividualizedProgramAccommodation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000051', 'PersonBirthplace', 'RefCountryId', '11') +VALUES ('', 'IndividualizedProgramAccommodation', 'IndividualizedProgramAccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000053', 'PsStudentSection', 'AcademicGrade', '11') +VALUES ('', 'IndividualizedProgramAccommodation', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000054', 'CourseSection', 'OrganizationCalendarSessionId', '11') +VALUES ('', 'IndividualizedProgramAccommodation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000054', 'OrganizationCalendarSession', 'BeginDate', '11') +VALUES ('', 'IndividualizedProgramAccommodationSubject', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000055', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('', 'IndividualizedProgramAccommodationSubject', 'IndividualizedProgramAccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000055', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('', 'IndividualizedProgramAccommodationSubject', 'IndividualizedProgramAccommodationSubjectId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000056', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') +VALUES ('', 'IndividualizedProgramAccommodationSubject', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000056', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('', 'IndividualizedProgramAmendment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000057', 'Course', 'RefCourseCreditUnitId', '11') +VALUES ('', 'IndividualizedProgramAmendment', 'IndividualizedProgramAmendmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000057', 'ProfessionalDevelopmentActivity', 'RefCourseCreditUnitId', '11') +VALUES ('', 'IndividualizedProgramAmendment', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000057', 'StaffProfessionalDevelopmentActivity', 'RefCourseCreditUnitId', '11') +VALUES ('', 'IndividualizedProgramAmendment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000058', 'Course', 'CreditValue', '11') +VALUES ('', 'IndividualizedProgramAssessment', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000059', 'OrganizationCalendarSession', 'EndDate', '11') +VALUES ('', 'IndividualizedProgramAssessment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000060', 'CteCourse', 'RefCourseGPAApplicabilityId', '11') +VALUES ('', 'IndividualizedProgramAssessment', 'IndividualizedProgramAssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000060', 'K12Course', 'RefCourseGPAApplicabilityId', '11') +VALUES ('', 'IndividualizedProgramAssessment', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000060', 'K12StudentCourseSection', 'RefCourseGPAApplicabilityId', '11') +VALUES ('', 'IndividualizedProgramAssessment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000060', 'PsSection', 'RefCourseGPAApplicabilityId', '11') +VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'AssessmentAccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000061', 'Course', 'RefCourseLevelCharacteristicsId', '11') +VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000063', 'PsStudentSection', 'CourseOverrideSchool', '11') +VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'IndividualizedProgramAssessmentAccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000064', 'PsStudentSection', 'QualityPointsEarned', '11') +VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'IndividualizedProgramAssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000065', 'K12StudentCourseSection', 'RefCourseRepeatCodeId', '11') +VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000065', 'PsStudentSection', 'RefCourseRepeatCodeId', '11') +VALUES ('', 'IndividualizedProgramEligibility', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000066', 'Course', 'SubjectAbbreviation', '11') +VALUES ('', 'IndividualizedProgramEligibility', 'IndividualizedProgramEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000067', 'OrganizationDetail', 'Name', '11') +VALUES ('', 'IndividualizedProgramEligibility', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000068', 'OrganizationDetail', 'Name', '11') +VALUES ('', 'IndividualizedProgramEligibility', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000069', 'PersonCredential', 'ExpirationDate', '11') +VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000070', 'PersonCredential', 'IssuanceDate', '11') +VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'EligibilityEvaluationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000071', 'PersonCredential', 'RefCredentialTypeId', '11') +VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'IndividualizedProgramEligibilityEvaluationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000072', 'CteCourse', 'RefCreditTypeEarnedId', '11') +VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'IndividualizedProgramEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000072', 'K12StudentCourseSection', 'RefCreditTypeEarnedId', '11') +VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000073', 'CteStudentAcademicRecord', 'CreditsAttemptedCumulative', '11') +VALUES ('', 'IndividualizedProgramGoal', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000073', 'K12StudentAcademicRecord', 'CreditsAttemptedCumulative', '11') +VALUES ('', 'IndividualizedProgramGoal', 'GoalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000073', 'PsStudentAcademicRecord', 'CreditsAttemptedCumulative', '11') +VALUES ('', 'IndividualizedProgramGoal', 'IndividualizedProgramGoalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000074', 'CteStudentAcademicRecord', 'CreditsEarnedCumulative', '11') +VALUES ('', 'IndividualizedProgramGoal', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000074', 'K12StudentAcademicRecord', 'CreditsEarnedCumulative', '11') +VALUES ('', 'IndividualizedProgramGoal', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000074', 'PsStudentAcademicRecord', 'CreditsEarnedCumulative', '11') +VALUES ('', 'IndividualizedProgramMeeting', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000075', 'OrganizationFederalAccountability', 'RefCteGraduationRateInclusionId', '11') +VALUES ('', 'IndividualizedProgramMeeting', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000076', 'RoleAttendanceEvent', 'RefAttendanceStatusId', '11') +VALUES ('', 'IndividualizedProgramMeeting', 'IndividualizedProgramMeetingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000077', 'PsStudentSection', 'DegreeApplicability', '11') +VALUES ('', 'IndividualizedProgramMeeting', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000078', 'PsStudentEnrollment', 'DegreeOrCertificateSeekingStudent', '11') +VALUES ('', 'IndividualizedProgramMeetingAttendee', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000079', 'PsStudentDemographic', 'RefDependencyStatusId', '11') +VALUES ('', 'IndividualizedProgramMeetingAttendee', 'IndividualizedProgramMeetingAttendeeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000080', 'K12LeaFederalReporting', 'DesegregationOrderOrPlan', '11') +VALUES ('', 'IndividualizedProgramMeetingAttendee', 'IndividualizedProgramMeetingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'AeStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '11') +VALUES ('', 'IndividualizedProgramMeetingAttendee', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'CteStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '11') +VALUES ('', 'IndividualizedProgramMeetingAttendee', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'K12StudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '11') +VALUES ('', 'IndividualizedProgramProgressGoal', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'PersonDegreeOrCertificate', 'AwardDate', '11') +VALUES ('', 'IndividualizedProgramProgressGoal', 'GoalPerformanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'PsStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '11') +VALUES ('', 'IndividualizedProgramProgressGoal', 'IndividualizedProgramProgressGoalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'StaffCredential', 'DiplomaOrCredentialAwardDate', '11') +VALUES ('', 'IndividualizedProgramProgressGoal', 'IndividualizedProgramProgressReportId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'WorkforceProgramParticipation', 'DiplomaOrCredentialAwardDate', '11') +VALUES ('', 'IndividualizedProgramProgressGoal', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000082', 'K12StudentDiscipline', 'DisciplinaryActionEndDate', '11') +VALUES ('', 'IndividualizedProgramProgressReport', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000083', 'K12StudentDiscipline', 'DisciplinaryActionStartDate', '11') +VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000084', 'ProgramParticipationAE', 'DisplacedHomemakerIndicator', '11') +VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramProgressReportId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000084', 'ProgramParticipationCte', 'DisplacedHomemakerIndicator', '11') +VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramProgressReportPlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000085', 'PsStudentAcademicRecord', 'DualCreditDualEnrollmentCredits', '11') +VALUES ('', 'IndividualizedProgramProgressReport', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000086', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('', 'IndividualizedProgramProgressReportPlan', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000087', 'ELStaffAssignment', 'RefK12StaffClassificationId', '11') +VALUES ('', 'IndividualizedProgramProgressReportPlan', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000087', 'K12StaffAssignment', 'RefK12StaffClassificationId', '11') +VALUES ('', 'IndividualizedProgramProgressReportPlan', 'IndividualizedProgramProgressReportPlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000087', 'K12StaffEmployment', 'RefK12StaffClassificationId', '11') +VALUES ('', 'IndividualizedProgramProgressReportPlan', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000088', 'OrganizationEmail', 'ElectronicMailAddress', '11') +VALUES ('', 'IndividualizedProgramService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000088', 'PersonEmailAddress', 'EmailAddress', '11') +VALUES ('', 'IndividualizedProgramService', 'IndividualizedProgramServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000089', 'OrganizationEmail', 'RefEmailTypeId', '11') +VALUES ('', 'IndividualizedProgramService', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000089', 'PersonEmailAddress', 'RefEmailTypeId', '11') +VALUES ('', 'IndividualizedProgramService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000091', 'OrganizationFederalAccountability', 'RefElementaryMiddleAdditionalId', '11') +VALUES ('', 'IndividualizedProgramServicesReceived', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000092', 'K12StudentEnrollment', 'RefFoodServiceEligibilityId', '11') +VALUES ('', 'IndividualizedProgramServicesReceived', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000093', 'K12StudentEnrollment', 'RefEndOfTermStatusId', '11') +VALUES ('', 'IndividualizedProgramServicesReceived', 'IndividualizedProgramServicesReceivedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000094', 'K12StudentEnrollment', 'RefEnrollmentStatusId', '11') +VALUES ('', 'IndividualizedProgramServicesReceived', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000094', 'RoleStatus', 'RefRoleStatusId', '11') +VALUES ('', 'IndividualizedProgramServicesReceived', 'ServicesReceivedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000095', 'PsStudentEnrollment', 'RefPsEnrollmentTypeId', '11') +VALUES ('', 'IPEDSFinance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000096', 'PsStudentEnrollment', 'RefPsEnrollmentStatusId', '11') +VALUES ('', 'IPEDSFinance', 'IPEDSFinanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000096', 'RoleStatus', 'RefRoleStatusId', '11') +VALUES ('', 'IPEDSFinance', 'OrganizationFinancialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000097', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('', 'IPEDSFinance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000098', 'PsStudentEnrollment', 'EntryDateIntoPostsecondary', '11') +VALUES ('', 'Job', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000099', 'K12StudentEnrollment', 'RefEntryType', '11') +VALUES ('', 'JobCompetency', 'CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000100', 'K12StudentEnrollment', 'RefEntryGradeLevelId', '11') +VALUES ('', 'JobCompetency', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000101', 'CourseSection', 'TimeRequiredForCompletion', '11') +VALUES ('', 'JobCompetency', 'JobCompetencyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000102', 'StaffEvaluation', 'Outcome', '11') +VALUES ('', 'JobCompetency', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000103', 'StaffEvaluation', 'Scale', '11') +VALUES ('', 'JobCompetency', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000104', 'StaffEvaluation', 'ScoreOrRating', '11') +VALUES ('', 'JobCompetency', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000105', 'StaffEvaluation', 'System', '11') +VALUES ('', 'JobCompetency', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000106', 'PsStudentDemographic', 'RefCohortExclusionId', '11') +VALUES ('', 'JobCredential', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000107', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('', 'JobCredential', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000108', 'ELEnrollment', 'RefExitOrWithdrawalStatusId', '11') +VALUES ('', 'JobCredential', 'JobCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000108', 'K12StudentCourseSection', 'RefExitOrWithdrawalStatusId', '11') +VALUES ('', 'JobCredential', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000108', 'K12StudentEnrollment', 'RefExitOrWithdrawalStatusId', '11') +VALUES ('', 'JobCredential', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000110', 'K12StudentEnrollment', 'RefExitOrWithdrawalTypeId', '11') +VALUES ('', 'JobCredential', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000111', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('', 'JobCredential', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000111', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('', 'JobDetail', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000112', 'FinancialAidAward', 'FinancialAidAwardAmount', '11') +VALUES ('', 'JobDetail', 'JobDetailId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000113', 'FinancialAidAward', 'RefFinancialAidAwardTypeId', '11') +VALUES ('', 'JobDetail', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000115', 'PersonDetail', 'FirstName', '11') +VALUES ('', 'JobDetail', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000117', 'PsStudentEnrollment', 'FirstTimePostsecondaryStudent', '11') +VALUES ('', 'JobDetail', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000118', 'ELStaffAssignment', 'FullTimeEquivalency', '11') +VALUES ('', 'JobDetail', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000118', 'K12StaffAssignment', 'FullTimeEquivalency', '11') +VALUES ('', 'JobDetail', 'RefK12StaffClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000118', 'StaffEmployment', 'FullTimeEquivalency', '11') +VALUES ('', 'JobDetail', 'RefStandardOccupationalClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000120', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('', 'JobIdentifier', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000121', 'PersonDetail', 'GenerationCode', '11') +VALUES ('', 'JobIdentifier', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000122', 'PersonProgramParticipation', 'ParticipationStatus', '11') +VALUES ('', 'JobIdentifier', 'JobIdentifierId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000122', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('', 'JobIdentifier', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000123', 'K12StudentAcademicRecord', 'RefGpaWeightedIndicatorId', '11') +VALUES ('', 'JobIdentifier', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000123', 'PsStudentApplication', 'RefGpaWeightedIndicatorId', '11') +VALUES ('', 'JobIdentifier', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000124', 'K12StudentCourseSection', 'GradeEarned', '11') +VALUES ('', 'JobK12StaffAssignment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000124', 'K12StudentCourseSectionMark', 'GradeEarned', '11') +VALUES ('', 'JobK12StaffAssignment', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000125', 'K12StudentCourseSection', 'RefGradeLevelWhenCourseTakenId', '11') +VALUES ('', 'JobK12StaffAssignment', 'JobK12StaffAssignmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000125', 'K12StudentGraduationPlan', 'RefGradeLevelWhenCourseTakenId', '11') +VALUES ('', 'JobK12StaffAssignment', 'K12StaffAssignmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000126', 'AssessmentRegistration', 'RefGradeLevelToBeAssessedId', '11') +VALUES ('', 'JobK12StaffAssignment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000126', 'AssessmentRegistration', 'RefGradeLevelWhenAssessedId', '11') +VALUES ('', 'JobK12StaffAssignment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000127', 'PsStudentAcademicRecord', 'GradePointAverage', '11') +VALUES ('', 'JobK12StaffAssignment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000128', 'K12StudentAcademicRecord', 'GradePointAverageCumulative', '11') +VALUES ('', 'JobPosition', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000128', 'PsStudentAcademicRecord', 'GradePointAverageCumulative', '11') +VALUES ('', 'JobPosition', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000128', 'PsStudentApplication', 'GradePointAverageCumulative', '11') +VALUES ('', 'JobPosition', 'JobPositionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000129', 'K12StudentSession', 'GradePointAverageGivenSession', '11') +VALUES ('', 'JobPosition', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000130', 'K12StudentAcademicRecord', 'GradePointsEarnedCumulative', '11') +VALUES ('', 'JobPosition', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000131', 'K12LeaGradeOffered', 'RefGradeLevelId', '11') +VALUES ('', 'JobPosition', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000131', 'K12SchoolGradeOffered', 'RefGradeLevelId', '11') +VALUES ('', 'JobPositionDetail', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000132', 'K12StudentCohort', 'GraduationRateSurveyCohortYear', '11') +VALUES ('', 'JobPositionDetail', 'JobPositionDetailId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000133', 'K12StudentCohort', 'GraduationRateSurveyIndicator', '11') +VALUES ('', 'JobPositionDetail', 'JobPositionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000134', 'OrganizationFederalAccountability', 'RefGunFreeSchoolsActReportingStatusId', '11') +VALUES ('', 'JobPositionDetail', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000135', 'K12LeaFederalReporting', 'HarassmentOrBullyingPolicy', '11') +VALUES ('', 'JobPositionDetail', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000136', 'StaffCompensation', 'StaffCompensationHealthBenefits', '11') +VALUES ('', 'JobPositionDetail', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000137', 'CteCourse', 'HighSchoolCourseRequirement', '11') +VALUES ('', 'JobPositionIdentifier', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000137', 'K12Course', 'HighSchoolCourseRequirement', '11') +VALUES ('', 'JobPositionIdentifier', 'JobPositionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000138', 'AeStudentAcademicRecord', 'RefHighSchoolDiplomaTypeId', '11') +VALUES ('', 'JobPositionIdentifier', 'JobPositionIdentifierId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000138', 'K12StudentAcademicRecord', 'RefHighSchoolDiplomaTypeId', '11') +VALUES ('', 'JobPositionIdentifier', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000140', 'OrganizationFederalAccountability', 'RefHighSchoolGraduationRateIndicatorId', '11') +VALUES ('', 'JobPositionIdentifier', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000141', 'PersonDetail', 'RefHighestEducationLevelCompletedId', '11') +VALUES ('', 'JobPositionIdentifier', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000141', 'PersonFamily', 'RefHighestEducationLevelCompletedId', '11') +VALUES ('', 'JobPositionStatus', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000142', 'K12StaffAssignment', 'HighlyQualifiedTeacherIndicator', '11') +VALUES ('', 'JobPositionStatus', 'JobPositionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000143', 'StaffEmployment', 'HireDate', '11') +VALUES ('', 'JobPositionStatus', 'JobPositionStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000144', 'PersonDetail', 'HispanicLatinoEthnicity', '11') +VALUES ('', 'JobPositionStatus', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000146', 'PersonHomelessness', 'RefHomelessNighttimeResidenceId', '11') +VALUES ('', 'JobPositionStatus', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000147', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('', 'JobPositionStatus', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000148', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000149', 'PersonHomelessness', 'HomelessnessStatus', '11') +VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000150', 'K12StudentAcademicHonor', 'HonorDescription', '11') +VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000151', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('', 'K12CharterSchoolManagementOrganization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000164', 'K12School', 'RefIncreasedLearningTimeTypeId', '11') +VALUES ('', 'K12CharterSchoolManagementOrganization', 'K12CharterSchoolManagementOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000164', 'PsInstitution', 'RefIncreasedLearningTimeTypeId', '11') +VALUES ('', 'K12CharterSchoolManagementOrganization', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000165', 'PsStudentEnrollment', 'InitialEnrollmentTerm', '11') +VALUES ('', 'K12CharterSchoolManagementOrganization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000166', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('', 'K12CharterSchoolManagementOrganization', 'RefCharterSchoolManagementOrganizationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000166', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('', 'K12Course', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000167', 'OrganizationTelephone', 'RefInstitutionTelephoneTypeId', '11') +VALUES ('', 'K12Course', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000168', 'PsStudentEnrollment', 'InstructionalActivityHoursAttempted', '11') +VALUES ('', 'K12Course', 'K12CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000169', 'PsStudentEnrollment', 'RefInstructionalActivityHoursId', '11') +VALUES ('', 'K12Course', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000170', 'K12LeaFederalReporting', 'RefIntegratedTechnologyStatusId', '11') +VALUES ('', 'K12Course', 'RefCreditTypeEarnedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000171', 'ProgramParticipationMigrant', 'LastQualifyingMoveDate', '11') +VALUES ('', 'K12FederalFundAllocation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000172', 'PersonDetail', 'LastName', '11') +VALUES ('', 'K12FederalFundAllocation', 'FederalProgramCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000173', 'K12Lea', 'RefLeaImprovementStatusId', '11') +VALUES ('', 'K12FederalFundAllocation', 'FederalProgramsFundingAllocation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000174', 'OrganizationOperationalStatus', 'RefOperationalStatusId', '11') +VALUES ('', 'K12FederalFundAllocation', 'FundsTransferAmount', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000175', 'K12Lea', 'SupervisoryUnionIdentificationNumber', '11') +VALUES ('', 'K12FederalFundAllocation', 'K12FederalFundAllocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000175', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('', 'K12FederalFundAllocation', 'LeaTransferabilityOfFunds', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000175', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('', 'K12FederalFundAllocation', 'NumberOfImmigrantProgramSubgrants', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000178', 'AeProvider', 'RefLevelOfInstitutionId', '11') +VALUES ('', 'K12FederalFundAllocation', 'OrganizationCalendarSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000178', 'PsInstitution', 'RefLevelOfInstitutionId', '11') +VALUES ('', 'K12FederalFundAllocation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000180', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('', 'K12FederalFundAllocation', 'RefFederalProgramFundingAllocationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000181', 'K12SchoolStatus', 'RefMagnetSpecialProgramId', '11') +VALUES ('', 'K12FederalFundAllocation', 'RefLeaFundsTransferTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000182', 'K12StudentCourseSectionMark', 'MarkingPeriodName', '11') +VALUES ('', 'K12FederalFundAllocation', 'RefReapAlternativeFundingStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000183', 'K12StudentCourseSectionMark', 'MidTermMark', '11') +VALUES ('', 'K12FederalFundAllocation', 'SchoolImprovementAllocation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000184', 'PersonDetail', 'MiddleName', '11') +VALUES ('', 'K12FederalFundAllocation', 'SchoolImprovementReservedPercent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000185', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('', 'K12FederalFundAllocation', 'SesPerPupilExpenditure', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000186', 'ProgramParticipationMigrant', 'RefMepServiceTypeId', '11') +VALUES ('', 'K12Lea', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000187', 'K12ProgramOrService', 'RefMepSessionTypeId', '11') +VALUES ('', 'K12Lea', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000188', 'K12StaffAssignment', 'RefMepStaffCategoryId', '11') +VALUES ('', 'K12Lea', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000189', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('', 'K12Lea', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000190', 'LocationAddress', 'CountyName', '11') +VALUES ('', 'K12Lea', 'RefCharterLeaStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000190', 'PersonAddress', 'AddressCountyName', '11') +VALUES ('', 'K12LeaFederalFunds', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000191', 'OrganizationDetail', 'Name', '11') +VALUES ('', 'K12LeaFederalFunds', 'K12LeaFederalFundsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000191', 'PersonDegreeOrCertificate', 'NameOfInstitution', '11') +VALUES ('', 'K12LeaFederalFunds', 'OrganizationCalendarSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000193', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('', 'K12LeaFederalFunds', 'ParentalInvolvementReservationFunds', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000194', 'ProgramParticipationNeglected', 'RefNeglectedProgramTypeId', '11') +VALUES ('', 'K12LeaFederalFunds', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000196', 'PersonDetail', 'RefVisaTypeId', '11') +VALUES ('', 'K12LeaFederalReporting', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000197', 'PsProgram', 'NormalLengthTimeForCompletion', '11') +VALUES ('', 'K12LeaFederalReporting', 'K12LeaFederalReportingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000198', 'PsProgram', 'RefTimeForCompletionUnitsId', '11') +VALUES ('', 'K12LeaFederalReporting', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000199', 'K12StudentCourseSection', 'NumberOfCreditsAttempted', '11') +VALUES ('', 'K12LeaFederalReporting', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000199', 'PsStudentAcademicRecord', 'NumberOfCreditsAttempted', '11') +VALUES ('', 'K12LeaGradeLevelsApproved', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000199', 'PsStudentSection', 'NumberOfCreditsAttempted', '11') +VALUES ('', 'K12LeaGradeLevelsApproved', 'K12LeaGradeLevelsApprovedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000200', 'K12StudentCourseSection', 'NumberOfCreditsEarned', '11') +VALUES ('', 'K12LeaGradeLevelsApproved', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000200', 'PsStudentSection', 'NumberOfCreditsEarned', '11') +VALUES ('', 'K12LeaGradeLevelsApproved', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000200', 'StaffProfessionalDevelopmentActivity', 'NumberOfCreditsEarned', '11') +VALUES ('', 'K12LeaGradeOffered', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000201', 'RoleAttendance', 'NumberOfDaysAbsent', '11') +VALUES ('', 'K12LeaGradeOffered', 'K12LeaGradeOfferedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000202', 'ELEnrollment', 'NumberOfDaysInAttendance', '11') +VALUES ('', 'K12LeaGradeOffered', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000202', 'RoleAttendance', 'NumberOfDaysInAttendance', '11') +VALUES ('', 'K12LeaGradeOffered', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000203', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('', 'K12LeaPolicy', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000204', 'OrganizationDetail', 'Name', '11') +VALUES ('', 'K12LeaPolicy', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000205', 'StaffCompensation', 'StaffCompensationOtherBenefits', '11') +VALUES ('', 'K12LeaPolicy', 'K12LeaPolicyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000206', 'PersonOtherName', 'OtherName', '11') +VALUES ('', 'K12LeaPolicy', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000207', 'StaffCredential', 'RefParaprofessionalQualificationId', '11') +VALUES ('', 'K12LeaPolicy', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000208', 'OrganizationFederalAccountability', 'RefParticipationStatusMathId', '11') +VALUES ('', 'K12LeaPolicy', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000209', 'OrganizationFederalAccountability', 'RefParticipationStatusRlaId', '11') +VALUES ('', 'K12LeaPreKEligibility', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000210', 'OrganizationFederalAccountability', 'PersistentlyDangerousStatus', '11') +VALUES ('', 'K12LeaPreKEligibility', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000211', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('', 'K12LeaPreKEligibility', 'K12LEAPreKEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000212', 'PersonDetail', 'Prefix', '11') +VALUES ('', 'K12LeaPreKEligibility', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000213', 'StaffEmployment', 'PositionTitle', '11') +VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000214', 'LocationAddress', 'PostalCode', '11') +VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000214', 'PersonAddress', 'PostalCode', '11') +VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'K12LEAPreKEligibleAgesIDEAId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000216', 'K12LeaPreKEligibility', 'RefPrekindergartenEligibilityId', '11') +VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000217', 'K12LeaPreKEligibleAgesIDEA', 'RefPreKEligibleAgesNonIDEAId', '11') +VALUES ('', 'K12LeaSafeDrugFree', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000218', 'PersonDisability', 'PrimaryDisabilityTypeId', '11') +VALUES ('', 'K12LeaSafeDrugFree', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000219', 'OrganizationTelephone', 'PrimaryTelephoneNumberIndicator', '11') +VALUES ('', 'K12LeaSafeDrugFree', 'K12LeaSafeDrugFreeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000219', 'PersonTelephone', 'PrimaryTelephoneNumberIndicator', '11') +VALUES ('', 'K12LeaSafeDrugFree', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000220', 'ELStaffAssignment', 'RefProfessionalEducationJobClassificationId', '11') +VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000220', 'K12StaffAssignment', 'RefProfessionalEducationJobClassificationId', '11') +VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000221', 'OrganizationFederalAccountability', 'RefProficiencyTargetStatusMathId', '11') +VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'K12LEATitleIIIProfessionalDevelopmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000222', 'PersonProgramParticipation', 'RefProgramExitReasonId', '11') +VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000223', 'PsProgram', 'ProgramLengthHours', '11') +VALUES ('', 'K12LeaTitleISupportService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentDemographic', 'RecordEndDateTime', '11') +VALUES ('', 'K12LeaTitleISupportService', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentEmployment', 'RecordEndDateTime', '11') +VALUES ('', 'K12LeaTitleISupportService', 'K12LeaTitleISupportServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentEnrollment', 'RecordEndDateTime', '11') +VALUES ('', 'K12LeaTitleISupportService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentFinancialAid', 'RecordEndDateTime', '11') +VALUES ('', 'K12OrganizationStudentResponsibility', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PSStudentProgram', 'RecordEndDateTime', '11') +VALUES ('', 'K12OrganizationStudentResponsibility', 'K12OrganizationStudentResponsibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentSection', 'RecordEndDateTime', '11') +VALUES ('', 'K12OrganizationStudentResponsibility', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'QuarterlyEmploymentRecord', 'RecordEndDateTime', '11') +VALUES ('', 'K12OrganizationStudentResponsibility', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RequiredImmunization', 'RecordEndDateTime', '11') +VALUES ('', 'K12ProgramOrService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Role', 'RecordEndDateTime', '11') +VALUES ('', 'K12ProgramOrService', 'K12ProgramOrServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RoleAttendance', 'RecordEndDateTime', '11') +VALUES ('', 'K12ProgramOrService', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RoleAttendanceEvent', 'RecordEndDateTime', '11') +VALUES ('', 'K12ProgramOrService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RoleStatus', 'RecordEndDateTime', '11') +VALUES ('', 'K12School', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Rubric', 'RecordEndDateTime', '11') +VALUES ('001081', 'ProgramParticipationAE', 'PostsecondaryTransitionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RubricCriterion', 'RecordEndDateTime', '11') +VALUES ('001083', 'AeStaff', 'RefAeStaffEmploymentStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RubricCriterionLevel', 'RecordEndDateTime', '11') +VALUES ('001085', 'StaffCredential', 'RefAeCertificationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServiceFrequency', 'RecordEndDateTime', '11') +VALUES ('001086', 'ELStaffEducation', 'TotalApprovedECCreditsEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServicePlan', 'RecordEndDateTime', '11') +VALUES ('001087', 'AssessmentPersonalNeedScreenReader', 'Pitch', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServiceProvided', 'RecordEndDateTime', '11') +VALUES ('001088', 'AssessmentItem', 'RefNaepMathComplexityLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServiceProvider', 'RecordEndDateTime', '11') +VALUES ('001089', 'AssessmentAsset', 'RefAssessmentLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServicesReceived', 'RecordEndDateTime', '11') +VALUES ('001089', 'AssessmentForm', 'RefAssessmentLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServiceStaff', 'RecordEndDateTime', '11') +VALUES ('001091', 'AssessmentSubtest', 'PublishedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffCompensation', 'RecordEndDateTime', '11') +VALUES ('001092', 'AssessmentResult', 'DescriptiveFeedbackSource', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffCredential', 'RecordEndDateTime', '11') +VALUES ('001093', 'AssessmentParticipantSession', 'SpecialEventDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffEmployment', 'RecordEndDateTime', '11') +VALUES ('001093', 'AssessmentSession', 'SpecialEventDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffEvaluation', 'RecordEndDateTime', '11') +VALUES ('001094', 'CompetencyDefinition', 'CompetencyDefParentUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffEvaluationPart', 'RecordEndDateTime', '11') +VALUES ('001102', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffExperience', 'RecordEndDateTime', '11') +VALUES ('001103', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffProfessionalDevelopmentActivity', 'RecordEndDateTime', '11') +VALUES ('001122', 'AssessmentItem', 'RefNaepAspectsOfReadingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffTechnicalAssistance', 'RecordEndDateTime', '11') +VALUES ('001127', 'AssessmentPersonalNeedsProfile', 'AssessmentNeedType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'TeacherEducationCredentialExam', 'RecordEndDateTime', '11') +VALUES ('001130', 'AssessmentParticipantSession', 'SecurityIssue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'TeacherStudentDataLinkExclusion', 'RecordEndDateTime', '11') +VALUES ('001131', 'AssessmentItemApip', 'ResponseProcessingTemplateUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'WorkforceEmploymentQuarterlyData', 'RecordEndDateTime', '11') +VALUES ('001132', 'AssessmentItemApip', 'ResponseProcessingXml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'WorkforceProgramParticipantCohort', 'RecordEndDateTime', '11') +VALUES ('001133', 'AssessmentItemApip', 'ResponseDeclarationXml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'WorkforceProgramParticipation', 'RecordEndDateTime', '11') +VALUES ('001134', 'AssessmentItemApip', 'OutcomeDeclarationXml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001919', 'OrganizationCalendarEvent', 'StartTime', '11') +VALUES ('001135', 'AssessmentItemApip', 'TemplateDeclarationXml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001919', 'RoleAttendanceEvent', 'StartTime', '11') +VALUES ('001136', 'AssessmentItemApip', 'TemplateProcessingXml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001920', 'OrganizationCalendarEvent', 'EndTime', '11') +VALUES ('001137', 'AssessmentItemApip', 'ModalFeedbackXml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001920', 'RoleAttendanceEvent', 'EndTime', '11') +VALUES ('001138', 'AssessmentItemApip', 'ItemBodyXml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001921', 'OrganizationPersonRoleFTE', 'FullTimeEquivalency', '11') +VALUES ('001139', 'AssessmentItem', 'AdaptiveIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001922', 'PersonProgramParticipation', 'RefProgramEntryReasonId', '11') +VALUES ('001139', 'AssessmentItemApip', 'AdaptiveIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001923', 'OrganizationFederalAccountability', 'RefComprehensiveSupportAndImprovementStatusId', '11') +VALUES ('001142', 'K12StudentCourseSectionMark', 'FinalIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001924', 'OrganizationFederalAccountability', 'RefTargetedSupportAndImprovementStatusId', '11') +VALUES ('001143', 'LearningResource', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001925', 'OrganizationFederalAccountability', 'RefAdditionalTargetedSupportAndImprovementStatusId', '11') +VALUES ('001144', 'LearningResource', 'CopyrightHolderName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001926', 'K12LeaGradeLevelsApproved', 'RefGradeLevelId', '11') +VALUES ('001145', 'LearningResource', 'CopyrightYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001926', 'K12SchoolGradeLevelsApproved', 'RefGradeLevelId', '11') +VALUES ('001146', 'LearningResource', 'ConceptKeyword', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001927', 'OrganizationTelephone', 'RefTelephoneNumberListedStatusId', '11') +VALUES ('001147', 'PeerRatingSystem', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001927', 'PersonTelephone', 'RefTelephoneNumberListedStatusId', '11') +VALUES ('001148', 'LearningResourcePeerRating', 'Value', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'LocationAddress', 'DoNotPublishIndicator', '11') +VALUES ('001149', 'PeerRatingSystem', 'MaximumValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'OrganizationEmail', 'DoNotPublishIndicator', '11') +VALUES ('001150', 'PeerRatingSystem', 'MinimumValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'OrganizationTelephone', 'DoNotPublishIndicator', '11') +VALUES ('001151', 'PeerRatingSystem', 'OptimumValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'PersonAddress', 'DoNotPublishIndicator', '11') +VALUES ('001152', 'AssessmentParticipantSession', 'PlatformUserAgent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'PersonEmailAddress', 'DoNotPublishIndicator', '11') +VALUES ('001153', 'CredentialDefCriteria', 'CriteriaUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'PersonTelephone', 'DoNotPublishIndicator', '11') +VALUES ('001154', 'CompetencyDefinition', 'TextComplexityMinimumValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001929', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001155', 'CompetencyDefinition', 'TextComplexityMaximumValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001930', 'ProgramParticipationAE', 'OutOfWorkforceIndicator', '11') +VALUES ('001157', 'AssessmentAccommodation', 'OtherDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001930', 'ProgramParticipationCte', 'OutOfWorkforceIndicator', '11') +VALUES ('001160', 'CourseSection', 'VirtualIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001931', 'PersonLearningDevice', 'RefPrimaryLearningDeviceAwayFromSchoolId', '11') +VALUES ('001160', 'PsInstitution', 'VirtualIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001932', 'PersonLearningDevice', 'RefPrimaryLearningDeviceAccessId', '11') +VALUES ('001161', 'CourseSection', 'RefCourseSectionDeliveryModeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001933', 'PersonLearningDevice', 'RefPrimaryLearningDeviceProviderId', '11') +VALUES ('001162', 'AssessmentRegistration', 'TestAttemptIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001934', 'PersonDigitalAccess', 'InternetAccessInResidence', '11') +VALUES ('001163', 'CredentialAward', 'CredentialAwardStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001935', 'PersonDigitalAccess', 'RefBarrierToInternetAccessInResidenceId', '11') +VALUES ('001164', 'CredentialAward', 'CredentialAwardEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001936', 'PersonDigitalAccess', 'RefInternetAccessTypeInResidenceId', '11') +VALUES ('001165', 'Goal', 'StartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001937', 'PersonDigitalAccess', 'RefInternetPerformanceInResidenceId', '11') +VALUES ('001166', 'Goal', 'EndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001938', 'WorkforceProgramParticipantCohort', 'CohortMedianEarnings', '11') +VALUES ('001167', 'LearningResourcePeerRating', 'Date', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001939', 'ProgramParticipationAE', 'RefAdultEducationProgramExitReasonId', '11') +VALUES ('001168', 'Authentication', 'IdentityProviderName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001940', 'ProgramParticipationWIOABarriers', 'RefWIOABarrierstoEmploymentId', '11') +VALUES ('001169', 'Authentication', 'IdentityProviderUri', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001941', 'ProgramParticipationWIOA', 'WIOACareerServices', '11') +VALUES ('001170', 'Authentication', 'LoginIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001942', 'ProgramParticipationWIOA', 'WIOATrainingServices', '11') +VALUES ('001171', 'Authentication', 'StartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001943', 'PersonDemographicRace', 'RefRaceId', '11') +VALUES ('001172', 'Authentication', 'EndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001944', 'PersonDemographicRace', 'FederalRaceAndEthnicityDeclined', '11') +VALUES ('001173', 'Application', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001945', 'PersonPersonalInformationVerification', 'RefPersonalInformationTypeId', '11') +VALUES ('001174', 'Application', 'Uri', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001946', 'Role', 'RefRoleId', '11') +VALUES ('001175', 'Authorization', 'ApplicationRoleName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001947', 'PsStudentDemographic', 'FirstGenerationCollegeStudent', '11') +VALUES ('001176', 'Authorization', 'StartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001948', 'PersonAddressNcesSide', 'NcesSideEstimate', '11') +VALUES ('001177', 'Authorization', 'EndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001949', 'PersonAddressNcesSide', 'NcesSideStandardError', '11') +VALUES ('001181', 'AssessmentForm', 'AssessmentItemBankIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001950', 'PersonAddressNcesSide', 'NcesSideDateProcessed', '11') +VALUES ('001181', 'AssessmentFormSection', 'AssessmentItemBankIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001951', 'PersonAddressNcesSide', 'NcesSideVintageBeginYear', '11') +VALUES ('001181', 'AssessmentItem', 'AssessmentItemBankIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001952', 'PersonAddressNcesSide', 'NcesSideVintageEndYear', '11') +VALUES ('001182', 'AssessmentForm', 'AssessmentItemBankName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001953', 'CredentialDefinition', 'CredentialDefinitionTerminalDegreeIndicator', '11') +VALUES ('001182', 'AssessmentFormSection', 'AssessmentItemBankName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001954', 'ProgramParticipationAttainment', 'AECredentialAttainmentPSEnrollmentIndicator', '11') +VALUES ('001182', 'AssessmentItem', 'AssessmentItemBankName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001955', 'ProgramParticipationAttainment', 'AECredentialAttainmentEmployedIndicator', '11') +VALUES ('001183', 'AssessmentForm', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001956', 'ProgramParticipationAttainment', 'AECredentialAttainmentPSCredentialIndicator', '11') +VALUES ('001184', 'AssessmentForm', 'PublishedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001957', 'RoleAttendance', 'NumberOfDaysTardy', '11') +VALUES ('001184', 'AssessmentFormSection', 'PublishedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001958', 'StaffCompensation', 'RefStaffCompensationSourceTypeId', '11') +VALUES ('001184', 'LearningResource', 'PublishedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001959', 'StaffCompensation', 'StaffCompensationAnnualSupplement', '11') +VALUES ('001185', 'AssessmentForm', 'AccommodationList', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001960', 'StaffCompensation', 'StaffCompensationLongevity', '11') +VALUES ('001186', 'AssessmentForm', 'IntendedAdministrationStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001961', 'K12StaffAssignment', 'RefEDFactsTeacherInexperiencedStatusId', '11') +VALUES ('001187', 'AssessmentForm', 'IntendedAdministrationEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001962', 'K12StaffAssignment', 'RefOutOfFieldStatusId', '11') +VALUES ('001188', 'AssessmentForm', 'PlatformsSupported', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001963', 'K12OrganizationStudentResponsibility', 'RefStudentSchoolAffiliationStateDefinedStatusId', '11') +VALUES ('001189', 'AssessmentFormSection', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001964', 'DataCollection', 'SourceSystemDataCollectionIdentifier', '11') +VALUES ('001190', 'AssessmentFormSection', 'RefAssessmentFormSectionIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001965', 'DataCollection', 'SourceSystemName', '11') +VALUES ('001191', 'AssessmentFormSection', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001966', 'DataCollection', 'DataCollectionName', '11') +VALUES ('001192', 'AssessmentFormSection', 'SectionTimeLimit', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001967', 'DataCollection', 'DataCollectionDescription', '11') +VALUES ('001193', 'AssessmentFormSection', 'SectionSealed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001968', 'DataCollection', 'DataCollectionOpenDate', '11') +VALUES ('001194', 'AssessmentFormSection', 'SectionReentry', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001969', 'DataCollection', 'DataCollectionCloseDate', '11') +VALUES ('001195', 'AssessmentAsset', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001970', 'DataCollection', 'DataCollectionAcademicSchoolYear', '11') +VALUES ('001196', 'AssessmentAsset', 'RefAssessmentAssetTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001971', 'DataCollection', 'DataCollectionSchoolYear', '11') +VALUES ('001197', 'AssessmentAsset', 'PublishedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001972', 'RecordStatus', 'RefRecordStatusTypeId', '11') +VALUES ('001198', 'AssessmentAsset', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001972', 'RecordStatusHistory', 'RefRecordStatusTypeId', '11') +VALUES ('001199', 'AssessmentAsset', 'RefAssessmentAssestIdentifierType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001973', 'RecordStatus', 'RecordStatusDate', '11') +VALUES ('001200', 'AssessmentAsset', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001973', 'RecordStatusHistory', 'RecordStatusDate', '11') +VALUES ('001201', 'AssessmentAsset', 'Owner', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001974', 'RecordStatus', 'RefRecordStatusCreatorEntityId', '11') +VALUES ('001202', 'AssessmentAsset', 'ContentXML', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001974', 'RecordStatusHistory', 'RefRecordStatusCreatorEntityId', '11') +VALUES ('001203', 'AssessmentAsset', 'ContentMimeType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001975', 'PersonDigitalAccessSpeed', 'InternetUploadSpeed', '11') +VALUES ('001204', 'AssessmentAsset', 'ContentUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001976', 'PersonDigitalAccessSpeed', 'InternetDownloadSpeed', '11') +VALUES ('001206', 'Facility', 'RefBuildingUseTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001977', 'PersonDigitalAccessSpeed', 'InternetSpeedTestDateTime', '11') +VALUES ('001207', 'BuildingSpace', 'SpaceDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001978', 'ProgramParticipationAttainment', 'RefEdFactsAcademicOrCareerAndTechnicalOutcomeTypeId', '11') +VALUES ('001208', 'BuildingSpace', 'RefSpaceUseTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001979', 'ProgramParticipationAttainment', 'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitTypeId', '11') +VALUES ('001210', 'K12StudentEnrollment', 'RefExitGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001981', 'PsStudentDemographic', 'EmancipatedMinor', '11') +VALUES ('001211', 'Incident', 'RefWeaponTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001982', 'PersonFamily', 'NumberOfHouseholdCollegeStudents', '11') +VALUES ('001212', 'AssessmentSessionStaffRole', 'RefAssessmentSessionStaffRoleTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001983', 'PsStudentDemographic', 'RefNumberOfDependentsTypeId', '11') +VALUES ('001214', 'AssessmentSubtest', 'Tier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001984', 'PsStudentDemographic', 'ChildrenOfFallenHeroesIndicator', '11') +VALUES ('001215', 'AssessmentSubtest', 'ContainerOnly', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001985', 'StaffEvaluationPart', 'PartName', '11') +VALUES ('001216', 'LearningResource', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001986', 'StaffEvaluationPart', 'ScoreOrRating', '11') +VALUES ('001217', 'AssessmentItemPossibleResponse', 'CorrectIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001987', 'StaffEvaluationPart', 'Scale', '11') +VALUES ('001218', 'AssessmentPerformanceLevel', 'DescriptiveFeedback', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001988', 'K12StudentHomeLanguageSurvey', 'HomeLanguageSurveyAdministrationIndicator', '11') +VALUES ('001219', 'AssessmentResult', 'DiagnosticStatement', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001989', 'K12StudentHomeLanguageSurvey', 'HomeLanguageSurveyAdministrationDate', '11') +VALUES ('001223', 'FinancialAidApplication', 'RefFinancialAidApplicationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001990', 'DataCollection', 'RefDataCollectionStatusId', '11') +VALUES ('001224', 'PsStudentFinancialAid', 'RefNeedDeterminationMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001991', 'OrganizationProjectBasedLearning', 'ProjectBasedLearningIndicator', '11') +VALUES ('001225', 'ELClassSectionService', 'OldestAgeServed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001992', 'OrganizationProjectBasedLearning', 'OrganizationProjectBasedLearningId', '11') +VALUES ('001225', 'OrganizationPopulationServed', 'OldestAgeServed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001992', 'OrganizationProjectBasedLearning', 'RefProjectBasedLearningTypeId', '11') +VALUES ('001226', 'ELClassSection', 'LanguageTranslationPolicy', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001994', 'Course', 'CourseLevelApprovalIndicator', '11') +VALUES ('001227', 'LearningResourceStatus', 'StatusStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001995', 'Assessment', 'RefAssessmentTypeAdministeredToEnglishLearnersId', '11') +VALUES ('001227', 'PersonStatus', 'StatusStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001996', 'K12StaffAssignment', 'RefSpecialEducationTeacherQualificationStatusId', '11') +VALUES ('001228', 'LearningResourceStatus', 'StatusEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001997', 'K12StaffAssignment', 'RefEdFactsCertificationStatusId', '11') +VALUES ('001228', 'PersonStatus', 'StatusEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001998', 'OrganizationPopulationServed', 'RefStudentSupportServiceAvailabilityTypeId', '11') +VALUES ('001229', 'PsStudentDemographic', 'RefMaternalEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001999', 'OrganizationEnrollmentCapacity', 'AdjustedCapacity', '11') +VALUES ('001230', 'PsStudentDemographic', 'RefPaternalEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002000', 'OrganizationEnrollmentCapacity', 'RefAdjustedCapacityReasonTypeId', '11') +VALUES ('001231', 'IndividualizedProgram', 'RefIndividualizedProgramDateType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002001', 'OrganizationEnrollmentCapacity', 'EarlyLearningAge2AndOlderCapacity', '11') +VALUES ('001232', 'IndividualizedProgram', 'IndividualizedProgramDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002002', 'OrganizationEnrollmentCapacity', 'EarlyLearningAgeUnder2Capacity', '11') +VALUES ('001233', 'IndividualizedProgram', 'NonInclusionMinutesPerWeek', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002003', 'FinancialAccountLocal', 'RefFinancialAccountLocalRevenueCodeId', '11') +VALUES ('001234', 'IndividualizedProgram', 'InclusionMinutesPerWeek', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002004', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalFunctionCodeId', '11') +VALUES ('001235', 'IndividualizedProgram', 'RefIndividualizedProgramTransitionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002005', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalObjectCodeId', '11') +VALUES ('001236', 'IndividualizedProgram', 'ServicePlanDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002006', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalLevelOfInstructionCodeId', '11') +VALUES ('001237', 'IndividualizedProgram', 'RefIndividualizedProgramLocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002007', 'FinancialAccountLocal', 'RefFinancialAccountLocalBalanceSheetCodeId', '11') +VALUES ('001238', 'IndividualizedProgram', 'ServicePlanMeetingParticipants', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002008', 'FinancialAccountLocal', 'RefFinancialAccountLocalFundClassificationId', '11') +VALUES ('001239', 'IndividualizedProgram', 'ServicePlanSignedBy', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002009', 'FinancialAccountLocal', 'RefFinancialAccountLocalProgramCodeId', '11') +VALUES ('001240', 'IndividualizedProgram', 'ServicePlanSignatureDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002010', 'FinancialAccount', 'RefFederalProgramSubgrantCodeId', '11') +VALUES ('001241', 'IndividualizedProgram', 'ServicePlanReevaluationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002012', 'FacilityUtilization', 'EnrollmentCapacity', '11') +VALUES ('001242', 'ProgramParticipationSpecialEducation', 'SpecialEducationFTE', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002012', 'OrganizationEnrollmentCapacity', 'EnrollmentCapacity', '11') +VALUES ('001242', 'ServicesReceived', 'FullTimeEquivalency', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002012', 'OrganizationEnrollmentCapacity', 'OrganizationCalendarSessionId', '11') +VALUES ('001244', 'K12ProgramOrService', 'RefProgramGiftedEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002012', 'OrganizationEnrollmentCapacity', 'OrganizationEnrollmentCapacityId', '11') +VALUES ('001245', 'CredentialDefCategory', 'CategorySystem', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002013', 'OrganizationProgramType', 'PrimaryProgramIndicator', '11') +VALUES ('001246', 'LearningResourceEducationLevel', 'RefEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000224', 'PsProgram', 'RefProgramLengthHoursTypeId', '11') +VALUES ('001248', 'PersonImmunization', 'RefImmunizationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000225', 'OrganizationProgramType', 'RefProgramTypeId', '11') +VALUES ('001249', 'CompetencyDefinition', 'Notes', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000226', 'K12StudentAcademicRecord', 'ProjectedGraduationDate', '11') +VALUES ('001250', 'CompetencyDefinition', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000227', 'K12Lea', 'RefPublicSchoolChoiceStatusId', '11') +VALUES ('001251', 'AssessmentItemResponseTheory', 'ParameterA', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000228', 'AssessmentRegistration', 'RefAssessmentReasonNotTestedId', '11') +VALUES ('001252', 'AssessmentItemResponseTheory', 'ParameterB', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000229', 'ActivityRecognition', 'RefActivityRecognitionTypeId', '11') +VALUES ('001253', 'AssessmentItemResponseTheory', 'RefItemResponseTheoryDifficultyCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000230', 'OrganizationFederalAccountability', 'RefReconstitutedStatusId', '11') +VALUES ('001254', 'AssessmentItemResponseTheory', 'ParameterC', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000231', 'CourseSection', 'RelatedCompetencyDefinitions', '11') +VALUES ('001255', 'AssessmentItemResponseTheory', 'ParameterD1', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000232', 'K12SchoolStatus', 'RefRestructuringActionId', '11') +VALUES ('001256', 'AssessmentItemResponseTheory', 'ParameterD2', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000233', 'StaffCompensation', 'StaffCompensationRetirementBenefits', '11') +VALUES ('001257', 'AssessmentItemResponseTheory', 'ParameterD3', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000234', 'K12StaffEmployment', 'SalaryForTeachingAssignmentOnlyIndicator', '11') +VALUES ('001258', 'AssessmentItemResponseTheory', 'ParameterD4', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000235', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001259', 'AssessmentItemResponseTheory', 'ParameterD5', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000236', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001260', 'AssessmentItemResponseTheory', 'ParameterD6', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000237', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001261', 'AssessmentItem', 'LinkingItemIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000238', 'K12SchoolImprovement', 'RefSchoolImprovementFundsId', '11') +VALUES ('001262', 'AssessmentItemResponseTheory', 'PointBiserialCorrelationValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000239', 'K12SchoolImprovement', 'RefSigInterventionTypeId', '11') +VALUES ('001263', 'AssessmentItem', 'ReleaseStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000240', 'K12SchoolImprovement', 'RefSchoolImprovementStatusId', '11') +VALUES ('001264', 'AssessmentItemResponseTheory', 'DIFValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000241', 'ELOrganization', 'RefSchoolLevelId', '11') +VALUES ('001265', 'AssessmentItemResponseTheory', 'KappaValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000241', 'K12School', 'RefSchoolLevelId', '11') +VALUES ('001266', 'AssessmentItemResponseTheory', 'RefItemResponseTheoryKappaAlgorithmId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000242', 'K12School', 'RefSchoolTypeId', '11') +VALUES ('001267', 'AssessmentItem', 'BodyText', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000243', 'OrganizationCalendar', 'CalendarYear', '11') +VALUES ('001268', 'AssessmentItem', 'Stimulus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000244', 'OrganizationCalendarSession', 'InstructionalMinutes', '11') +VALUES ('001269', 'AssessmentItemPossibleResponse', 'PossibleResponseOption', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000245', 'AssessmentResult', 'ScoreValue', '11') +VALUES ('001270', 'OrganizationCalendarSession', 'Code', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000249', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001271', 'OrganizationCalendarSession', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000250', 'Course', 'SCEDSequenceOfCourse', '11') +VALUES ('001272', 'OrganizationCalendarSession', 'MarkingTermIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000251', 'OrganizationCalendarSession', 'BeginDate', '11') +VALUES ('001273', 'OrganizationCalendarSession', 'SchedulingTermIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000252', 'OrganizationCalendarSession', 'Designator', '11') +VALUES ('001274', 'OrganizationCalendarSession', 'AttendanceTermIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000252', 'PsPriceOfAttendance', 'SessionDesignator', '11') +VALUES ('001275', 'OrganizationCalendarEvent', 'EventDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000254', 'OrganizationCalendarSession', 'RefSessionTypeId', '11') +VALUES ('001276', 'OrganizationCalendarEvent', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000255', 'PersonDetail', 'RefSexId', '11') +VALUES ('001277', 'PersonDisability', 'RefAccommodationsNeededTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000258', 'CourseSection', 'RefSingleSexClassStatusId', '11') +VALUES ('001278', 'CourseSection', 'RefAdvancedPlacementCourseCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000260', 'ProgramParticipationSpecialEducation', 'RefSpecialEducationExitReasonId', '11') +VALUES ('001279', 'PDActivityEducationLevel', 'RefPDActivityEducationLevelsAddressedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000261', 'ELStaffAssignment', 'SpecialEducationParaprofessional', '11') +VALUES ('001281', 'PersonAllergy', 'ReactionDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000261', 'K12StaffAssignment', 'SpecialEducationParaprofessional', '11') +VALUES ('001282', 'PersonAllergy', 'RefAllergySeverityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000262', 'ELStaffAssignment', 'SpecialEducationRelatedServicesPersonnel', '11') +VALUES ('001283', 'PersonAllergy', 'RefAllergyTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000262', 'K12StaffAssignment', 'SpecialEducationRelatedServicesPersonnel', '11') +VALUES ('001284', 'AssessmentItemResponse', 'ResultXML', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000263', 'ProgramParticipationSpecialEducation', 'SpecialEducationServicesExitDate', '11') +VALUES ('001287', 'ELCourse', 'RefBlendedLearningModelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000264', 'ELStaffAssignment', 'SpecialEducationTeacher', '11') +VALUES ('001287', 'K12Course', 'RefBlendedLearningModelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000264', 'K12StaffAssignment', 'SpecialEducationTeacher', '11') +VALUES ('001287', 'K12SchoolStatus', 'RefBlendedLearningModelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000265', 'PsStudentAdmissionTest', 'StandardizedAdmissionTestScore', '11') +VALUES ('001288', 'AeCourse', 'RefCareerClusterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000266', 'PsStudentAdmissionTest', 'RefStandardizedAdmissionTestId', '11') +VALUES ('001288', 'CredentialDefinition', 'RefCareerClusterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000267', 'PersonAddress', 'RefStateId', '11') +VALUES ('001288', 'CteCourse', 'RefCareerClusterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000268', 'PersonDetail', 'RefStateOfResidenceId', '11') +VALUES ('001288', 'K12Course', 'RefCareerClusterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000269', 'LocationAddress', 'StreetNumberAndName', '11') +VALUES ('001288', 'PSStudentProgram', 'RefCareerClusterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000269', 'PersonAddress', 'StreetNumberAndName', '11') +VALUES ('001289', 'PersonCareerEducationPlan', 'LastUpdated', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000271', 'RoleAttendance', 'AttendanceRate', '11') +VALUES ('001290', 'PersonCareerEducationPlan', 'RefCareerEducationPlanTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000272', 'PsStudentEnrollment', 'RefPsStudentLevelId', '11') +VALUES ('001292', 'K12CharterSchoolAuthorizerAgency', 'K12CharterSchoolAuthorizerAgencyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000273', 'IndividualizedProgram', 'RefStudentSupportServiceTypeId', '11') +VALUES ('001292', 'K12CharterSchoolAuthorizerAgency', 'RefCharterSchoolAuthorizerTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000273', 'OrganizationService', 'RefStudentSupportServiceTypeId', '11') +VALUES ('001293', 'K12School', 'CharterSchoolApprovalYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000273', 'ServiceProvided', 'RefStudentSupportServiceTypeId', '11') +VALUES ('001296', 'ProgramParticipationAE', 'RefCorrectionalEducationFacilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000274', 'AssessmentSubtest', 'Description', '11') +VALUES ('001298', 'PsSection', 'GradeValueQualifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000275', 'AssessmentSubtest', 'Title', '11') +VALUES ('001299', 'PsStudentCourseSectionMark', 'RefCourseAcademicGradeStatusCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000277', 'ProgramParticipationTeacherPrep', 'RefTeachingCredentialBasisId', '11') +VALUES ('001299', 'PsStudentSection', 'RefCourseAcademicGradeStatusCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000277', 'StaffCredential', 'RefTeachingCredentialBasisId', '11') +VALUES ('001301', 'Course', 'RefCourseApplicableEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000278', 'ProgramParticipationTeacherPrep', 'RefTeachingCredentialTypeId', '11') +VALUES ('001302', 'Course', 'CertificationDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000278', 'StaffCredential', 'RefTeachingCredentialTypeId', '11') +VALUES ('001303', 'PsCourse', 'RefCourseCreditBasisTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000279', 'OrganizationTelephone', 'TelephoneNumber', '11') +VALUES ('001304', 'PsCourse', 'RefCourseCreditLevelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000279', 'PersonTelephone', 'TelephoneNumber', '11') +VALUES ('001306', 'K12Course', 'FundingProgram', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000280', 'PersonTelephone', 'RefPersonTelephoneNumberTypeId', '11') +VALUES ('001307', 'PsSection', 'RefCourseHonorsTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000281', 'ProgramParticipationTitleI', 'RefTitleIIndicatorId', '11') +VALUES ('001308', 'PsSection', 'RefCourseInstructionMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000282', 'K12ProgramOrService', 'RefTitleIInstructionalServicesId', '11') +VALUES ('001309', 'PsSectionLocation', 'CourseInstructionSiteName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000283', 'ELStaffAssignment', 'RefTitleIProgramStaffCategoryId', '11') +VALUES ('001310', 'PsSectionLocation', 'RefCourseInstructionSiteTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000283', 'K12StaffAssignment', 'RefTitleIProgramStaffCategoryId', '11') +VALUES ('001311', 'K12Course', 'RefCourseInteractionModeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000284', 'K12ProgramOrService', 'RefTitleIProgramTypeId', '11') +VALUES ('001312', 'AeCourse', 'RefCourseLevelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000285', 'K12SchoolStatus', 'RefTitleISchoolStatusId', '11') +VALUES ('001312', 'Course', 'RefCourseLevelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000286', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001312', 'CourseSectionLevel', 'RefCourseLevelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000287', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001312', 'PsSection', 'RefCourseLevelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000288', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001313', 'PsStudentCourseSectionMark', 'CourseNarrativeExplanationGrade', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000289', 'K12LeaTitleISupportService', 'RefK12LeaTitleISupportServiceId', '11') +VALUES ('001314', 'PsCourse', 'CourseNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000290', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001316', 'PsStudentAcademicRecord', 'CourseTotal', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000291', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001317', 'PsStudentAcademicRecord', 'RefCreditHoursAppliedOtherProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000292', 'PsStudentFinancialAid', 'TitleIVParticipantAndRecipient', '11') +VALUES ('001318', 'StaffCredential', 'CTEInstructorIndustryCertification', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000293', 'StaffCompensation', 'StaffCompensationTotalBenefits', '11') +VALUES ('001319', 'PersonDisability', 'RefDisabilityConditionStatusCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000294', 'K12StudentAcademicRecord', 'TotalNumberInClass', '11') +VALUES ('001320', 'PersonDisability', 'RefDisabilityConditionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000294', 'PsStudentApplication', 'HighSchoolGraduatingClassSize', '11') +VALUES ('001321', 'PersonDisability', 'RefDisabilityDeterminationSourceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000295', 'StaffCompensation', 'StaffCompensationTotalSalary', '11') +VALUES ('001322', 'K12StudentDiscipline', 'IEPPlacementMeetingIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000296', 'PsStudentEnrollment', 'RefTransferReadyId', '11') +VALUES ('001323', 'PsStudentEnrollment', 'DistanceEducationProgramEnrollmentInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000297', 'PsStudentDemographic', 'RefTuitionResidencyTypeId', '11') +VALUES ('001324', 'PsStudentEnrollment', 'DoctoralCandidacyAdmitInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000299', 'PersonDetail', 'RefUSCitizenshipStatusId', '11') +VALUES ('001325', 'PsStudentEnrollment', 'DoctoralCandidacyDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000302', 'StaffExperience', 'YearsOfPriorTeachingExperience', '11') +VALUES ('001326', 'PsStudentEnrollment', 'DoctoralExamTakenDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000304', 'PersonFamily', 'RefELProgramEligibilityId', '11') +VALUES ('001327', 'PsStudentEnrollment', 'RefDoctoralExamsRequiredCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000305', 'PersonDetail', 'RefProofOfResidencyTypeId', '11') +VALUES ('001328', 'ELEnrollment', 'RefELFederalFundingTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000305', 'PersonFamily', 'RefProofOfResidencyTypeId', '11') +VALUES ('001328', 'ELOrganizationFunds', 'RefELFederalFundingTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000306', 'PersonImmunization', 'ImmunizationDate', '11') +VALUES ('001329', 'ELClassSection', 'GroupSize', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000307', 'RequiredImmunization', 'RefImmunizationTypeId', '11') +VALUES ('001330', 'ELOrganizationMonitoring', 'RefOrganizationMonitoringNotificationsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000308', 'PersonHealth', 'RefVisionScreeningStatusId', '11') +VALUES ('001331', 'ELOrganizationMonitoring', 'VisitStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000309', 'PersonHealth', 'RefHearingScreeningStatusId', '11') +VALUES ('001332', 'ELOrganizationMonitoring', 'VisitEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000310', 'PersonHealth', 'RefDentalScreeningStatusId', '11') +VALUES ('001333', 'ELOrganizationMonitoring', 'RefPurposeOfMonitoringVisitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000312', 'PersonHealthBirth', 'WeightAtBirth', '11') +VALUES ('001334', 'ELOrganizationMonitoring', 'TypeOfMonitoring', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000313', 'PersonHealthBirth', 'WeeksOfGestation', '11') +VALUES ('001335', 'ELEnrollmentOtherFunding', 'RefELOtherFederalFundingSourcesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000314', 'ELChildDevelopmentalAssessment', 'RefChildDevelopmentalScreeningStatusId', '11') +VALUES ('001335', 'ELOrganizationFunds', 'RefELOtherFederalFundingSourcesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000315', 'ELChildDevelopmentalAssessment', 'RefDevelopmentalEvaluationFindingId', '11') +VALUES ('001336', 'AssessmentResult', 'RefELOutcomeMeasurementLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000316', 'PersonLanguage', 'RefLanguageUseTypeId', '11') +VALUES ('001337', 'ELStaffEducation', 'RefELProfessionalDevelopmentTopicAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000317', 'PersonLanguage', 'RefLanguageId', '11') +VALUES ('001338', 'ELChildProgramEligibility', 'ExpirationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000320', 'IndividualizedProgram', 'RefIndividualizedProgramTypeId', '11') +VALUES ('001339', 'ELChildProgramEligibility', 'RefELProgramEligibilityStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000321', 'ELChildService', 'RefEarlyChildhoodServicesReceivedId', '11') +VALUES ('001340', 'ELChildProgramEligibility', 'StatusDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000321', 'ServiceProvided', 'RefServicesId', '11') +VALUES ('001341', 'PersonRelationship', 'EmergencyContactInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000323', 'ELChildServicesApplication', 'ApplicationDate', '11') +VALUES ('001342', 'QuarterlyEmploymentRecord', 'RefEmployedPriorToEnrollmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000323', 'OrganizationPersonRoleApplication', 'ApplicationDate', '11') +VALUES ('001343', 'PsStudentEmployment', 'RefEmploymentStatusWhileEnrolledId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000324', 'ELEnrollment', 'EnrollmentDate', '11') +VALUES ('001344', 'K12Course', 'FamilyConsumerSciencesCourseInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000325', 'ELEnrollment', 'RefFoodServiceParticipationId', '11') +VALUES ('001345', 'FinancialAccount', 'RefFinancialAccountCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000325', 'ProgramParticipationFoodService', 'RefSchoolFoodServiceProgramId', '11') +VALUES ('001346', 'FinancialAccount', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000326', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001347', 'FinancialAccount', 'RefFinancialAccountFundClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000327', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001348', 'FinancialAccount', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000329', 'PersonRelationship', 'CustodialRelationshipIndicator', '11') +VALUES ('001349', 'FinancialAccount', 'RefFinancialAccountProgramCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000330', 'PersonFamily', 'NumberOfPeopleInFamily', '11') +VALUES ('001350', 'OrganizationFinancial', 'ActualValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000331', 'PersonFamily', 'NumberOfPeopleInHousehold', '11') +VALUES ('001351', 'OrganizationFinancial', 'BudgetedValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000332', 'PersonFamily', 'FamilyIncome', '11') +VALUES ('001352', 'PsStudentFinancialAid', 'FinancialAidIncomeLevel', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000333', 'PersonFamily', 'RefFamilyIncomeSourceId', '11') +VALUES ('001353', 'FinancialAccount', 'RefFinancialAccountBalanceSheetCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000334', 'PersonFamily', 'RefIncomeCalculationMethodId', '11') +VALUES ('001354', 'FinancialAccount', 'RefFinancialExpenditureFunctionCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000335', 'PersonHealth', 'RefHealthInsuranceCoverageId', '11') +VALUES ('001355', 'FinancialAccount', 'RefFinancialExpenditureObjectCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000336', 'PersonHealth', 'RefDentalInsuranceCoverageTypeId', '11') +VALUES ('001356', 'ELClassSectionService', 'RefFrequencyOfServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000341', 'ELStaffEducation', 'RefELLevelOfSpecializationId', '11') +VALUES ('001357', 'PsStudentEnrollment', 'RefGraduateOrDoctoralExamResultsStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000342', 'PersonDegreeOrCertificate', 'DegreeOrCertificateTitleOrSubject', '11') +VALUES ('001358', 'PersonHealth', 'HealthScreeningEquipmentUsed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000343', 'PersonDegreeOrCertificate', 'RefDegreeOrCertificateTypeId', '11') +VALUES ('001359', 'PersonHealth', 'HealthScreeningFollowUpRecommendation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000345', 'EarlyChildhoodCredential', 'RefEarlyChildhoodCredentialId', '11') +VALUES ('001360', 'ELChildTransitionPlan', 'PartB619PotentialEligibilityInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000346', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001363', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationOptOutIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000346', 'RoleStatus', 'StatusStartDate', '11') +VALUES ('001364', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationOptOutDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000347', 'ELStaffEmployment', 'RefEmploymentStatusId', '11') +VALUES ('001365', 'ELChildTransitionPlan', 'TransitionConferenceDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000347', 'K12StaffEmployment', 'RefEmploymentStatusId', '11') +VALUES ('001366', 'ELChildTransitionPlan', 'TransitionConferenceDeclineDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000347', 'RoleStatus', 'RefRoleStatusId', '11') +VALUES ('001367', 'ELChildTransitionPlan', 'DateOfTransitionPlan', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000348', 'ELFacilityLicensing', 'InitialLicensingDate', '11') +VALUES ('001369', 'Incident', 'RefIncidentMultipleOffenseTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000348', 'ELProgramLicensing', 'InitialLicenseDate', '11') +VALUES ('001370', 'IncidentPerson', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000349', 'ELFacilityLicensing', 'ContinuingLicenseDate', '11') +VALUES ('001371', 'Incident', 'RefIncidentPerpetratorInjuryTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000349', 'ELProgramLicensing', 'ContinuingLicenseDate', '11') +VALUES ('001372', 'IncidentPerson', 'RefIncidentPersonTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000350', 'ELFacilityLicensing', 'RefLicenseExemptId', '11') +VALUES ('001373', 'IncidentPerson', 'RefIncidentPersonRoleTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000350', 'ELProgramLicensing', 'RefLicenseExemptId', '11') +VALUES ('001374', 'Incident', 'RegulationViolatedDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000351', 'OrganizationOperationalStatus', 'OperationalStatusEffectiveDate', '11') +VALUES ('001375', 'Incident', 'RelatedToDisabilityManifestationInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000353', 'ELClassSection', 'RefServiceOptionId', '11') +VALUES ('001376', 'Incident', 'ReportedToLawEnforcementInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000353', 'ELEnrollment', 'RefServiceOptionId', '11') +VALUES ('001381', 'IndividualizedProgramService', 'PlannedServiceStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000353', 'ELOrganizationAvailability', 'RefServiceOptionId', '11') +VALUES ('001383', 'IndividualizedProgramService', 'RefIndividualizedProgramPlannedServiceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000354', 'ELClassSection', 'HoursAvailablePerDay', '11') +VALUES ('001384', 'ELStaffAssignment', 'ItinerantProvider', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000354', 'ELOrganizationAvailability', 'HoursAvailablePerDay', '11') +VALUES ('001386', 'K12Course', 'RefK12EndOfCourseRequirementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000355', 'ELClassSection', 'DaysAvailablePerWeek', '11') +VALUES ('001388', 'ProfessionalDevelopmentSession', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000355', 'ELOrganizationAvailability', 'DaysAvailablePerWeek', '11') +VALUES ('001389', 'LearningResource', 'RefLearningResourceAccessAPITypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000356', 'ELClassSection', 'RefEnvironmentSettingId', '11') +VALUES ('001390', 'LearningResource', 'RefLearningResourceAccessHazardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000356', 'ELOrganizationAvailability', 'RefEnvironmentSettingId', '11') +VALUES ('001391', 'LearningResource', 'RefLearningResourceAccessModeTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000357', 'ELQualityRatingImprovement', 'RefQrisParticipationId', '11') +VALUES ('001392', 'LearningResourceAdaptation', 'AdaptationURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000358', 'ELQualityRatingImprovement', 'QrisScore', '11') +VALUES ('001393', 'LearningResource', 'AssistiveTechnologiesCompatibleInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000361', 'PsStudentEnrollment', 'RefPsEnrollmentAwardTypeId', '11') +VALUES ('001394', 'LearningResource', 'RefLearningResourceBookFormatTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000362', 'ProgramParticipationAE', 'InstructionalActivityHoursCompleted', '11') +VALUES ('001395', 'LearningResource', 'RefLearningResourceControlFlexibilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000362', 'PsStudentEnrollment', 'InstructionalActivityHoursCompleted', '11') +VALUES ('001396', 'LearningResource', 'RefLearningResourceDigitalMediaSubTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000363', 'FinancialAidAward', 'RefFinancialAidStatusId', '11') +VALUES ('001397', 'LearningResource', 'RefLearningResourceDigitalMediaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000364', 'Classroom', 'ClassroomIdentifier', '11') +VALUES ('001398', 'LearningResource', 'AdaptedFromURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000364', 'CourseSectionLocation', 'ClassroomId', '11') +VALUES ('001399', 'LearningResourceMediaFeature', 'RefLearningResourceMediaFeatureTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000364', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001400', 'LearningResource', 'PeerRatingSampleSize', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000365', 'Assessment', 'IdentificationSystem', '11') +VALUES ('001401', 'LearningResourcePhysicalMedia', 'RefLearningResourcePhysicalMediaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000366', 'AssessmentForm', 'FormNumber', '11') +VALUES ('001402', 'CompetencyDefAssociation', 'ConnectionCitation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000367', 'AssessmentSubtest', 'Identifier', '11') +VALUES ('001403', 'CompetencyDefAssociation', 'DestinationNodeName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000368', 'AssessmentSubtest', 'Abbreviation', '11') +VALUES ('001404', 'CompetencyDefAssociation', 'DestinationNodeURI', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000369', 'AssessmentResult', 'RefScoreMetricTypeId', '11') +VALUES ('001405', 'CompetencyDefAssociation', 'OriginNodeName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000369', 'AssessmentSubtest', 'RefScoreMetricTypeId', '11') +VALUES ('001406', 'CompetencyDefAssociation', 'OriginNodeURI', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000370', 'AssessmentResult', 'InstructionalRecommendation', '11') +VALUES ('001407', 'CompetencyDefAssociation', 'Weight', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000371', 'AssessmentParticipantSession', 'RefLanguageId', '11') +VALUES ('001408', 'CompetencyDefinition', 'RefCompetencyDefNodeAccessibilityProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000382', 'Assessment', 'Objective', '11') +VALUES ('001409', 'CompetencyDefinition', 'ShortName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000383', 'AssessmentAccommodation', 'RefAssessmentAccommodationCategoryId', '11') +VALUES ('001411', 'CompetencyDefinition', 'RefCompetencyDefTestabilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000384', 'AssessmentAdministration', 'AssessmentSecureIndicator', '11') +VALUES ('001412', 'WorkforceEmploymentQuarterlyData', 'MilitaryEnlistmentAfterExit', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000384', 'AssessmentForm', 'AssessmentSecureIndicator', '11') +VALUES ('001413', 'PsCourse', 'NCAAEligibilityInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000385', 'AssessmentAccommodation', 'RefAccommodationTypeId', '11') +VALUES ('001414', 'PsCourse', 'RefNCESCollegeCourseMapCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000385', 'IndividualizedProgramAccommodation', 'RefAccommodationTypeId', '11') +VALUES ('001415', 'PsStudentDemographic', 'NumberOfDependents', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000386', 'AssessmentParticipantSession', 'RefAssessmentPlatformTypeId', '11') +VALUES ('001416', 'PsStudentEnrollment', 'OralDefenseCompletedIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000388', 'AssessmentSubtest', 'Version', '11') +VALUES ('001417', 'PsStudentEnrollment', 'OralDefenseDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000389', 'AssessmentParticipantSession', 'RefAssessmentSessionSpecialCircumstanceTypeId', '11') +VALUES ('001419', 'OrganizationAccreditation', 'SeekingAccreditationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000389', 'AssessmentSession', 'RefAssessmentSessionSpecialCircumstanceTypeId', '11') +VALUES ('001420', 'PsCourse', 'OriginalCourseIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000390', 'AssessmentItem', 'RefAssessmentItemTypeId', '11') +VALUES ('001421', 'ELChildDemographic', 'OtherRaceIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000391', 'AssessmentItem', 'Difficulty', '11') +VALUES ('001422', 'PsCourse', 'OverrideSchoolCourseNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000392', 'AssessmentItemCharacteristic', 'RefAssessmentItemCharacteristicTypeId', '11') +VALUES ('001423', 'PersonRelationship', 'ContactPriorityNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000393', 'AssessmentItemCharacteristic', 'ResponseChoicePattern', '11') +VALUES ('001424', 'PersonRelationship', 'ContactRestrictions', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000395', 'AssessmentSubtest', 'MaximumValue', '11') +VALUES ('001425', 'PersonRelationship', 'LivesWithIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000396', 'AssessmentSubtest', 'MinimumValue', '11') +VALUES ('001426', 'PsStudentEnrollment', 'PostsecondaryEnteringStudentInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000397', 'AssessmentSubtest', 'OptimalValue', '11') +VALUES ('001427', 'PsStudentAcademicRecord', 'EnteringTerm', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000398', 'AssessmentItem', 'DistractorAnalysis', '11') +VALUES ('001428', 'PersonRelationship', 'PrimaryContactIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000400', 'AssessmentItem', 'Stem', '11') +VALUES ('001429', 'PersonCredential', 'ProfessionalCertificateOrLicenseNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000402', 'AssessmentItemResponse', 'Duration', '11') +VALUES ('001430', 'ProfessionalDevelopmentActivity', 'RefPDAudienceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000403', 'AssessmentItem', 'AllottedTime', '11') +VALUES ('001431', 'ProfessionalDevelopmentSession', 'RefPDDeliveryMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000405', 'AssessmentItemResponse', 'RefAssessItemResponseStatusId', '11') +VALUES ('001432', 'ProfessionalDevelopmentActivity', 'ApprovalCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000406', 'AssessmentItemResponse', 'AidSetUsed', '11') +VALUES ('001433', 'ProfessionalDevelopmentActivity', 'RefPDActivityApprovedPurposeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000407', 'AssessmentParticipantSession', 'TimeAssessed', '11') +VALUES ('001434', 'ProfessionalDevelopmentActivity', 'ActivityCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000408', 'AssessmentSession', 'AllottedTime', '11') +VALUES ('001435', 'ProfessionalDevelopmentActivity', 'Cost', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000410', 'PersonIdentifier', 'Identifier', '11') +VALUES ('001436', 'ProfessionalDevelopmentActivity', 'RefPDActivityCreditTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000411', 'PersonIdentifier', 'Identifier', '11') +VALUES ('001437', 'ProfessionalDevelopmentActivity', 'Credits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000415', 'Assessment', 'RefAssessmentTypeAdministeredId', '11') +VALUES ('001438', 'ProfessionalDevelopmentActivity', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000417', 'AssessmentPerformanceLevel', 'ScoreMetric', '11') +VALUES ('001439', 'ProfessionalDevelopmentActivity', 'RefPDActivityLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000418', 'AssessmentPerformanceLevel', 'LowerCutScore', '11') +VALUES ('001440', 'ProfessionalDevelopmentActivity', 'Objective', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000419', 'AssessmentPerformanceLevel', 'UpperCutScore', '11') +VALUES ('001442', 'ProfessionalDevelopmentActivity', 'RefPDActivityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000421', 'Rubric', 'Title', '11') +VALUES ('001443', 'ProfessionalDevelopmentSession', 'FundingSource', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000422', 'Rubric', 'Identifier', '11') +VALUES ('001445', 'ProfessionalDevelopmentActivity', 'PublishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000423', 'Rubric', 'UrlReference', '11') +VALUES ('001446', 'ProfessionalDevelopmentSession', 'Capacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000424', 'K12Sea', 'RefStateANSICodeId', '11') +VALUES ('001447', 'ProfessionalDevelopmentSession', 'EndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000425', 'PersonRelationship', 'RefPersonRelationshipTypeId', '11') +VALUES ('001448', 'ProfessionalDevelopmentSession', 'EndTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000426', 'PersonBirthplace', 'City', '11') +VALUES ('001449', 'ProfessionalDevelopmentSession', 'EvaluationMethod', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000427', 'PersonBirthplace', 'RefStateId', '11') +VALUES ('001450', 'ProfessionalDevelopmentSession', 'EvaluationScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000428', 'PersonDetail', 'BirthdateVerification', '11') +VALUES ('001451', 'ProfessionalDevelopmentSession', 'ExpirationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000428', 'ProgramParticipationMigrant', 'BirthdateVerification', '11') +VALUES ('001452', 'ProfessionalDevelopmentSession', 'SessionIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000429', 'ProgramParticipationMigrant', 'RefContinuationOfServicesReasonId', '11') +VALUES ('001454', 'ProfessionalDevelopmentSession', 'LocationName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000430', 'ProgramParticipationMigrant', 'MepEligibilityExpirationDate', '11') +VALUES ('001455', 'ProfessionalDevelopmentSession', 'StartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000431', 'PersonHealthBirth', 'MultipleBirthIndicator', '11') +VALUES ('001456', 'ProfessionalDevelopmentSession', 'StartTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000432', 'ProgramParticipationMigrant', 'MigrantStudentQualifyingArrivalDate', '11') +VALUES ('001457', 'ProfessionalDevelopmentSession', 'RefPDSessionStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000433', 'ProgramParticipationMigrant', 'QualifyingMoveFromCity', '11') +VALUES ('001458', 'ProfessionalDevelopmentSession', 'RefPDInstructionalDeliveryModeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000434', 'ProgramParticipationMigrant', 'RefQualifyingMoveFromCountryId', '11') +VALUES ('001460', 'ELQualityInitiative', 'MaximumScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000435', 'ProgramParticipationMigrant', 'RefQualifyingMoveFromStateId', '11') +VALUES ('001461', 'ELQualityInitiative', 'MinimumScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000436', 'ProgramParticipationMigrant', 'DesignatedGraduationSchoolId', '11') +VALUES ('001462', 'ELQualityInitiative', 'ScoreLevel', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000437', 'ProgramParticipationMigrant', 'RefMepEnrollmentTypeId', '11') +VALUES ('001463', 'ELQualityInitiative', 'ParticipationIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000438', 'ProgramParticipationMigrant', 'ImmunizationRecordFlag', '11') +VALUES ('001464', 'ELQualityInitiative', 'ParticipationEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000439', 'PersonHealth', 'RefMedicalAlertIndicatorId', '11') +VALUES ('001465', 'ELQualityInitiative', 'ParticipationStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000440', 'ProgramParticipationMigrant', 'RefMepProjectBasedId', '11') +VALUES ('001468', 'FinancialAccount', 'RefFinancialAccountRevenueCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000442', 'OrganizationFederalAccountability', 'AypAppealProcessDesignation', '11') +VALUES ('001469', 'RubricCriterion', 'Category', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000443', 'OrganizationFederalAccountability', 'AypAppealChangedDesignation', '11') +VALUES ('001470', 'RubricCriterion', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000444', 'OrganizationFederalAccountability', 'AypAppealProcessDate', '11') +VALUES ('001471', 'RubricCriterionLevel', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000445', 'K12SeaFederalFunds', 'StateTransferabilityOfFunds', '11') +VALUES ('001472', 'RubricCriterionLevel', 'Feedback', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000447', 'K12TitleIIILanguageInstruction', 'RefTitleIIILanguageInstructionProgramTypeId', '11') +VALUES ('001473', 'RubricCriterionLevel', 'Position', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000447', 'ProgramParticipationTitleIIILep', 'RefTitleIIILanguageInstructionProgramTypeId', '11') +VALUES ('001474', 'RubricCriterionLevel', 'Quality', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000448', 'Course', 'RefInstructionLanguageId', '11') +VALUES ('001475', 'RubricCriterionLevel', 'Score', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000448', 'CourseSection', 'RefInstructionLanguageId', '11') +VALUES ('001476', 'RubricCriterion', 'Position', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000449', 'K12LeaFederalReporting', 'RefBarrierToEducatingHomelessId', '11') +VALUES ('001477', 'RubricCriterion', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000453', 'K12LeaFederalReporting', 'StateAssessStandardsFunding', '11') +VALUES ('001478', 'RubricCriterion', 'Weight', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000454', 'K12LeaFederalReporting', 'StateAssessmentAdminFunding', '11') +VALUES ('001479', 'Rubric', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000455', 'K12SeaFederalFunds', 'DateStateReceivedTitleIIIAllocation', '11') +VALUES ('001480', 'K12Course', 'SCEDGradeSpan', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000456', 'K12SeaFederalFunds', 'DateTitleIIIFundsAvailableToSubgrantees', '11') +VALUES ('001481', 'PersonReferral', 'ReferralDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000457', 'K12SeaFederalFunds', 'NumberOfDaysForTitleIIISubgrants', '11') +VALUES ('001482', 'PersonReferral', 'RefReferralOutcomeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000461', 'K12LeaFederalFunds', 'InnovativeDollarsSpent', '11') +VALUES ('001483', 'PersonReferral', 'Reason', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000462', 'K12LeaFederalFunds', 'InnovativeDollarsSpentOnStrategicPriorities', '11') +VALUES ('001484', 'PersonReferral', 'Source', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000463', 'K12ProgramOrService', 'RefMepProjectTypeId', '11') +VALUES ('001485', 'PersonReferral', 'ReferralTypeReceived', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000464', 'K12LeaFederalFunds', 'InnovativeProgramsFundsReceived', '11') +VALUES ('001486', 'PersonReferral', 'ReferredTo', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000466', 'K12StudentLiteracyAssessment', 'RefLiteracyAssessmentId', '11') +VALUES ('001487', 'OrganizationDetail', 'ShortName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000467', 'K12StudentLiteracyAssessment', 'LiteracyGoalMetStatus', '11') +VALUES ('001488', 'ServicePlan', 'ReasonForDeclinedServices', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000468', 'K12StudentLiteracyAssessment', 'LiteracyPostTestStatus', '11') +VALUES ('001489', 'ProfessionalDevelopmentSession', 'SponsoringAgencyName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000469', 'K12StudentLiteracyAssessment', 'LiteracyPreTestStatus', '11') +VALUES ('001493', 'OrganizationTechnicalAssistance', 'TechnicalAssistanceApprovedInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000471', 'K12LeaSafeDrugFree', 'IndicatorName', '11') +VALUES ('001493', 'StaffTechnicalAssistance', 'TechnicalAssistanceApprovedInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000472', 'K12LeaSafeDrugFree', 'Instrument', '11') +VALUES ('001494', 'OrganizationTechnicalAssistance', 'RefTechnicalAssistanceDeliveryTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000473', 'K12LeaSafeDrugFree', 'CollectionFrequency', '11') +VALUES ('001494', 'StaffTechnicalAssistance', 'RefTechnicalAssistanceDeliveryTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000474', 'K12LeaSafeDrugFree', 'MostRecentCollection', '11') +VALUES ('001495', 'OrganizationTechnicalAssistance', 'RefTechnicalAssistanceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000475', 'K12LeaSafeDrugFree', 'Target', '11') +VALUES ('001495', 'StaffTechnicalAssistance', 'RefTechnicalAssistanceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000476', 'K12LeaSafeDrugFree', 'Performance', '11') +VALUES ('001496', 'PsStudentEnrollment', 'ThesisOrDissertationTitle', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000477', 'K12LeaSafeDrugFree', 'Baseline', '11') +VALUES ('001497', 'StaffEmployment', 'UnionMembershipName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000478', 'K12LeaSafeDrugFree', 'BaselineYear', '11') +VALUES ('001498', 'StaffEmployment', 'WeeksEmployedPerYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000481', 'K12SchoolImprovement', 'SchoolImprovementExitDate', '11') +VALUES ('001499', 'K12Course', 'RefWorkbasedLearningOpportunityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000482', 'K12LeaFederalReporting', 'TerminatedTitleIIIProgramFailure', '11') +VALUES ('001499', 'ProgramParticipationAE', 'RefWorkbasedLearningOpportunityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000484', 'ProgramParticipationNeglected', 'ObtainedEmployment', '11') +VALUES ('001499', 'ProgramParticipationCte', 'RefWorkbasedLearningOpportunityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000485', 'K12ProgramOrService', 'ProgramInMultiplePurposeFacility', '11') +VALUES ('001499', 'PsSection', 'RefWorkbasedLearningOpportunityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000486', 'K12LeaFederalFunds', 'RefRlisProgramUseId', '11') +VALUES ('001499', 'PSStudentProgram', 'RefWorkbasedLearningOpportunityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000487', 'K12LeaTitleIIIProfessionalDevelopment', 'RefTitleIIIProfessionalDevelopmentTypeId', '11') +VALUES ('001500', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000488', 'K12StudentDiscipline', 'RefDisciplinaryActionTakenId', '11') +VALUES ('001501', 'ELChildIndividualizedProgram', 'RefIDEAIEPStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000490', 'K12ProgramOrService', 'RefPrekindergartenDailyLengthId', '11') +VALUES ('001503', 'AssessmentResult', 'RefOutcomeTimePointId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000491', 'K12ProgramOrService', 'RefKindergartenDailyLengthId', '11') +VALUES ('001504', 'ELChildOutcomeSummary', 'COSProgressAIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000494', 'OrganizationCalendar', 'CalendarCode', '11') +VALUES ('001505', 'ELChildOutcomeSummary', 'COSProgressBIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000495', 'OrganizationCalendar', 'CalendarDescription', '11') +VALUES ('001506', 'ELChildOutcomeSummary', 'COSProgressCIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000496', 'OrganizationCalendarSession', 'DaysInSession', '11') +VALUES ('001507', 'ELChildOutcomeSummary', 'COSRatingAId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000497', 'OrganizationCalendarSession', 'FirstInstructionDate', '11') +VALUES ('001508', 'ELChildOutcomeSummary', 'COSRatingBId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000498', 'OrganizationCalendarSession', 'LastInstructionDate', '11') +VALUES ('001509', 'ELChildOutcomeSummary', 'COSRatingCId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000499', 'Course', 'InstructionalMinutes', '11') +VALUES ('001510', 'IndividualizedProgramService', 'RefMethodOfServiceDeliveryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000500', 'OrganizationCalendarSession', 'MinutesPerDay', '11') +VALUES ('001511', 'CompetencyDefinition', 'ValidEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000501', 'Incident', 'IncidentIdentifier', '11') +VALUES ('001512', 'CompetencyDefinition', 'ValidStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000502', 'Incident', 'IncidentDate', '11') +VALUES ('001513', 'PersonOtherName', 'LastName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000503', 'Incident', 'IncidentTime', '11') +VALUES ('001514', 'PersonOtherName', 'FirstName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000504', 'Facility', 'Identifier', '11') +VALUES ('001515', 'PersonOtherName', 'MiddleName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000505', 'Incident', 'IncidentCost', '11') +VALUES ('001516', 'CteCourse', 'RefSCEDCourseLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000506', 'Incident', 'RefIncidentReporterTypeId', '11') +VALUES ('001516', 'ELCourse', 'RefSCEDCourseLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000507', 'Incident', 'IncidentReporterId', '11') +VALUES ('001516', 'K12Course', 'RefSCEDCourseLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000508', 'Incident', 'IncidentDescription', '11') +VALUES ('001517', 'CteCourse', 'RefSCEDCourseCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000509', 'Incident', 'RefIncidentBehaviorId', '11') +VALUES ('001517', 'CteCourse', 'SCEDCourseCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000510', 'Incident', 'RefIncidentInjuryTypeId', '11') +VALUES ('001517', 'ELCourse', 'RefSCEDCourseCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000511', 'K12StudentDiscipline', 'DurationOfDisciplinaryAction', '11') +VALUES ('001517', 'K12Course', 'RefSCEDCourseCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000512', 'K12StudentDiscipline', 'RelatedToZeroTolerancePolicy', '11') +VALUES ('001517', 'K12Course', 'SCEDCourseCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000513', 'K12StudentDiscipline', 'FullYearExpulsion', '11') +VALUES ('001518', 'CteCourse', 'RefSCEDCourseSubjectAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000514', 'K12StudentDiscipline', 'ShortenedExpulsion', '11') +VALUES ('001518', 'ELCourse', 'RefSCEDCourseSubjectAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000515', 'Incident', 'RefIncidentTimeDescriptionCodeId', '11') +VALUES ('001518', 'IndividualizedProgramAccommodationSubject', 'RefSCEDCourseSubjectAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000517', 'Course', 'Description', '11') +VALUES ('001518', 'K12Course', 'RefSCEDCourseSubjectAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000518', 'CteCourse', 'CoreAcademicCourse', '11') +VALUES ('001518', 'K12StudentGraduationPlan', 'RefSCEDCourseSubjectAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000518', 'K12Course', 'CoreAcademicCourse', '11') +VALUES ('001519', 'IndividualizedProgramService', 'RefServiceFrequencyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000519', 'CourseSectionSchedule', 'ClassBeginningTime', '11') +VALUES ('001520', 'IndividualizedProgramService', 'PlannedServiceDuration', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000520', 'CourseSectionSchedule', 'ClassEndingTime', '11') +VALUES ('001521', 'ELChildTransitionPlan', 'RefReasonDelayTransitionConfId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000521', 'CourseSectionSchedule', 'ClassMeetingDays', '11') +VALUES ('001524', 'CompetencyDefinition', 'PreviousVersionIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000522', 'CourseSectionSchedule', 'ClassPeriod', '11') +VALUES ('001525', 'CompetencyDefinition', 'CurrentVersionIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000523', 'CourseSectionSchedule', 'TimeDayIdentifier', '11') +VALUES ('001526', 'K12School', 'AccreditationAgencyName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000524', 'CourseSectionLocation', 'RefInstructionLocationTypeId', '11') +VALUES ('001526', 'OrganizationAccreditation', 'AccreditationAgencyName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000525', 'K12StaffAssignment', 'PrimaryAssignment', '11') +VALUES ('001527', 'K12StudentActivity', 'ActivityTimeInvolved', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000526', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001528', 'K12StudentActivity', 'RefActivityTimeMeasurementTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000527', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001529', 'ApipInteraction', 'APIPInteractionSequenceNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000528', 'ELStaffAssignment', 'ItinerantTeacher', '11') +VALUES ('001530', 'Activity', 'ActivityDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000528', 'K12StaffAssignment', 'ItinerantTeacher', '11') +VALUES ('001531', 'AssessmentAdministration', 'AssessmentAdministrationPeriodDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000529', 'K12StudentEnrollment', 'FirstEntryDateIntoUSSchool', '11') +VALUES ('001532', 'AssessmentForm', 'AssessmentFormAdaptiveIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000530', 'K12StudentEnrollment', 'RefPromotionReasonId', '11') +VALUES ('001533', 'AssessmentForm', 'AssessmentFormAlgorithmIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000531', 'K12StudentEnrollment', 'RefNonPromotionReasonId', '11') +VALUES ('001534', 'AssessmentForm', 'AssessmentFormAlgorithmVersion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000532', 'ELEnrollment', 'RefPublicSchoolResidenceId', '11') +VALUES ('001535', 'AssessmentForm', 'AssessmentFormGUID', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000532', 'K12StudentEnrollment', 'RefPublicSchoolResidenceId', '11') +VALUES ('001536', 'AssessmentItem', 'AssessmentFormSectionItemFieldTestIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000533', 'OrganizationOperationalStatus', 'RefOperationalStatusId', '11') +VALUES ('001537', 'AssessmentItemResponse', 'AssessmentItemResponseDescriptiveFeedbackDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000535', 'ProgramParticipationSpecialEducation', 'RefIDEAEducationalEnvironmentSchoolAgeId', '11') +VALUES ('001538', 'AssessmentItemResponse', 'RefAssessmentItemResponseScoreStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000536', 'ProgramParticipationTitleIIILep', 'RefTitleIIIAccountabilityId', '11') +VALUES ('001539', 'AssessmentParticipantSession', 'AssessmentParticipantSessionDatabaseName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000537', 'ELOrganization', 'RefLeaTypeId', '11') +VALUES ('001540', 'AssessmentParticipantSession', 'AssessmentParticipantSessionGUID', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000537', 'K12Lea', 'RefLeaTypeId', '11') +VALUES ('001541', 'AssessmentRegistration', 'RefAssessmentRegistrationCompletionStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000538', 'K12StudentDiscipline', 'RefDisciplineMethodOfCwdId', '11') +VALUES ('001542', 'AssessmentRegistration', 'AssessmentRegistrationCompletionStatusDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000539', 'K12StudentDiscipline', 'RefIdeaInterimRemovalReasonId', '11') +VALUES ('001543', 'AssessmentResult', 'RefAssessmentResultDataTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000540', 'AssessmentRegistration', 'RefAssessmentReasonNotCompletingId', '11') +VALUES ('001544', 'Assessment', 'AssessmentRevisionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000541', 'K12StudentDiscipline', 'RefIdeaInterimRemovalId', '11') +VALUES ('001545', 'AssessmentResult', 'AssessmentResultDescriptiveFeedbackDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000542', 'K12SchoolStatus', 'ConsolidatedMepFundsStatus', '11') +VALUES ('001546', 'AssessmentResult', 'AssessmentResultScoreStandardError', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000543', 'ELStaffEmployment', 'MepPersonnelIndicator', '11') +VALUES ('001547', 'AssessmentResult', 'RefAssessmentResultScoreTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000543', 'K12StaffEmployment', 'MepPersonnelIndicator', '11') +VALUES ('001548', 'K12School', 'CharterSchoolOpenEnrollmentIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000545', 'K12StudentDiscipline', 'RefDisciplineReasonId', '11') +VALUES ('001549', 'CteCourse', 'CourseDepartmentName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000546', 'StaffCredential', 'TechnologySkillsStandardsMet', '11') +VALUES ('001549', 'K12Course', 'CourseDepartmentName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000547', 'FinancialAccount', 'RefFederalProgramCodeId', '11') +VALUES ('001550', 'OrganizationCalendarCrisis', 'CrisisDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000550', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001552', 'OrganizationCalendarCrisis', 'CrisisEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000551', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001552', 'OrganizationCalendarCrisis', 'EndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000552', 'ELStaffEmployment', 'TitleITargetedAssistanceStaffFunded', '11') +VALUES ('001553', 'ELChildService', 'RefEarlyChildhoodServicesOfferedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000552', 'K12StaffEmployment', 'TitleITargetedAssistanceStaffFunded', '11') +VALUES ('001554', 'FinancialAccount', 'AccountNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000553', 'OrganizationFederalAccountability', 'RefProficiencyTargetStatusRLAId', '11') +VALUES ('001554', 'FinancialAccount', 'FinancialAccountNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000555', 'K12StudentDiscipline', 'RefDisciplineMethodFirearmsId', '11') +VALUES ('001555', 'FinancialAccount', 'RefFinancialExpenditureLevelOfInstructionCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000556', 'K12StudentDiscipline', 'RefIDEADisciplineMethodFirearmId', '11') +VALUES ('001556', 'FinancialAccount', 'FinancialExpenditureProjectReportingCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000557', 'Incident', 'RefFirearmTypeId', '11') +VALUES ('001557', 'LearnerAction', 'LearnerActionActorIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000558', 'ELStaffAssignment', 'RefSpecialEducationStaffCategoryId', '11') +VALUES ('001558', 'LearnerAction', 'LearnerActionObjectDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000558', 'K12StaffAssignment', 'RefSpecialEducationStaffCategoryId', '11') +VALUES ('001559', 'LearnerAction', 'LearnerActionObjectIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000558', 'ServiceStaff', 'RefSpecialEducationStaffCategoryId', '11') +VALUES ('001560', 'LearnerAction', 'LearnerActionObjectType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000559', 'ELEnrollment', 'RefIDEAEnvironmentELId', '11') +VALUES ('001561', 'LearningResource', 'RefLearningResourceAccessRightsUrlId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000559', 'ProgramParticipationSpecialEducation', 'RefIDEAEducationalEnvironmentECId', '11') +VALUES ('001562', 'LearningResource', 'RefLearningResourceAuthorTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000561', 'K12StudentAcademicRecord', 'RefProgressLevelId', '11') +VALUES ('001563', 'LearningResource', 'LearningResourceAuthorURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000561', 'K12StudentCourseSection', 'RefProgressLevelId', '11') +VALUES ('001564', 'LearningResource', 'LearningResourceDateModified', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000562', 'ProgramParticipationMigrant', 'PrioritizedForServices', '11') +VALUES ('001565', 'LearningResource', 'RefLearningResourceInteractionModeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000563', 'ProgramParticipationMigrant', 'ContinuationOfServicesStatus', '11') +VALUES ('001566', 'LearningResource', 'LearningResourceAuthorEmail', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000564', 'ELStaffAssignment', 'RefSpecialEducationAgeGroupTaughtId', '11') +VALUES ('001567', 'LearningResource', 'LearningResourcePublisherEmail', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000564', 'K12StaffAssignment', 'RefSpecialEducationAgeGroupTaughtId', '11') +VALUES ('001568', 'LearningResource', 'LearningResourcePublisherURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000565', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001569', 'CompetencyFramework', 'CompetencyFrameworkPublicationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000566', 'K12StudentAcademicRecord', 'RefTechnologyLiteracyStatusId', '11') +VALUES ('001570', 'CompetencyDefinition', 'CompetencyDefSequence', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000567', 'K12LeaFederalFunds', 'SesFundsSpent', '11') +VALUES ('001573', 'K12StudentCourseSectionMark', 'StudentCourseSectionGradeNarrative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000568', 'K12LeaFederalFunds', 'PublicSchoolChoiceFundsSpent', '11') +VALUES ('001573', 'PsStudentCourseSectionMark', 'StudentCourseSectionGradeNarrative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000569', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001574', 'K12StudentGraduationPlan', 'CreditsRequired', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000571', 'K12StudentAcademicRecord', 'RefPreAndPostTestIndicatorId', '11') +VALUES ('001574', 'Program', 'CreditsRequired', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000571', 'K12StudentCourseSection', 'RefPreAndPostTestIndicatorId', '11') +VALUES ('001575', 'K12StudentCourseSection', 'TuitionFunded', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000572', 'AssessmentResult', 'RefAssessmentPretestOutcomeId', '11') +VALUES ('001575', 'PersonCareerEducationPlan', 'TuitionFunded', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000573', 'AssessmentItemResponse', 'RefProficiencyStatusId', '11') +VALUES ('001576', 'PersonMilitary', 'RefMilitaryConnectedStudentIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000574', 'K12LeaFederalFunds', 'SesSchoolChoice20PercentObligation', '11') +VALUES ('001577', 'PersonMilitary', 'RefActiveMilitaryStatusIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000576', 'AssessmentResult', 'IncludedInAypCalculation', '11') +VALUES ('001578', 'PersonMilitary', 'RefMilitaryVeteranStatusIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000577', 'PersonDisability', 'DisabilityStatus', '11') +VALUES ('001579', 'PsInstitution', 'RefAdmissionConsiderationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000578', 'K12StudentDiscipline', 'EducationalServicesAfterRemoval', '11') +VALUES ('001580', 'PsInstitution', 'RefAdmissionConsiderationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000580', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001581', 'ELStaffEmployment', 'StaffApprovalIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000580', 'ProgramParticipationCte', 'SingleParentOrSinglePregnantWoman', '11') +VALUES ('001582', 'ELOrganizationFunds', 'RefBillableBasisTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000581', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001583', 'ProgramParticipationCte', 'CareerPathwaysProgramParticipationExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000584', 'K12StudentCohort', 'CohortGraduationYear', '11') +VALUES ('001584', 'ProgramParticipationCte', 'CareerPathwaysProgramParticipationStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000584', 'PsStudentCohort', 'CohortGraduationYear', '11') +VALUES ('001587', 'PersonCredential', 'CredentialOrLicenseAwardEntity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000585', 'ELOrganization', 'RefStatePovertyDesignationId', '11') +VALUES ('001588', 'PsStudentEnrollment', 'RefDevelopmentalEducationReferralStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000585', 'K12School', 'RefStatePovertyDesignationId', '11') +VALUES ('001589', 'PsSection', 'RefDevelopmentalEducationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000586', 'K12StudentAcademicRecord', 'RefPsEnrollmentActionId', '11') +VALUES ('001589', 'PsStudentEnrollment', 'RefDevelopmentalEducationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000587', 'ELOrganization', 'RefInternetAccessId', '11') +VALUES ('001590', 'K12StudentEnrollment', 'RefDirectoryInformationBlockStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000587', 'K12SchoolStatus', 'RefInternetAccessId', '11') +VALUES ('001591', 'ELChildService', 'ECEAPEligibility', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000588', 'ProgramParticipationCte', 'RefNonTraditionalGenderStatusId', '11') +VALUES ('001592', 'ELChildServicesApplication', 'ELEnrollmentApplicationVerificationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000589', 'StaffEvaluation', 'RefStaffPerformanceLevelId', '11') +VALUES ('001593', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000590', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001594', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000591', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001595', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000592', 'ProgramParticipationCte', 'CteParticipant', '11') +VALUES ('001597', 'ELChildServicesApplication', 'ELApplicationIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000593', 'ProgramParticipationCte', 'CteNonTraditionalCompletion', '11') +VALUES ('001599', 'ELChildServicesApplication', 'ELApplicationRequiredDocument', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000594', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') +VALUES ('001600', 'ELChildServicesApplication', 'ELEnrollmentApplicationVerificationReasonType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000595', 'ELOrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') +VALUES ('001602', 'ELStaffEmployment', 'RefELEducationStaffClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000595', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') +VALUES ('001603', 'ELOrganizationFunds', 'RefELLocalRevenueSourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000596', 'CourseSection', 'RefAdditionalCreditTypeId', '11') +VALUES ('001604', 'ELChildService', 'RefELServiceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000596', 'CteCourse', 'RefAdditionalCreditTypeId', '11') +VALUES ('001605', 'ELOrganizationFunds', 'RefELStateRevenueSourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000596', 'K12Course', 'RefAdditionalCreditTypeId', '11') +VALUES ('001606', 'ProfessionalDevelopmentSession', 'RefELTrainerCoreKnowledgeAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000596', 'K12StudentCourseSection', 'RefAdditionalCreditTypeId', '11') +VALUES ('001607', 'PersonDegreeOrCertificate', 'RefEducationVerificationMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000597', 'AssessmentParticipantSession', 'LocationId', '11') +VALUES ('001609', 'PsStudentFinancialAid', 'RefFinancialAidVeteransBenefitStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000597', 'AssessmentSession', 'Location', '11') +VALUES ('001610', 'PsStudentFinancialAid', 'RefFinancialAidVeteransBenefitTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000598', 'OrganizationCalendarDay', 'AlternateDayName', '11') +VALUES ('001611', 'FinancialAidApplication', 'FinancialAidYearDesignator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000599', 'RoleAttendanceEvent', 'RefAbsentAttendanceCategoryId', '11') +VALUES ('001611', 'FinancialAidAward', 'FinancialAidYearDesignator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000600', 'RoleAttendanceEvent', 'RefPresentAttendanceCategoryId', '11') +VALUES ('001612', 'PersonFamily', 'IncludedInCountedFamilySize', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000601', 'RoleAttendanceEvent', 'RefAttendanceEventTypeId', '11') +VALUES ('001613', 'PsPriceOfAttendance', 'IPEDSCollectionYearDesignator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000602', 'Facility', 'BuildingSiteNumber', '11') +VALUES ('001614', 'ELServicePartner', 'MemorandumOfUnderstandingEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000602', 'LocationAddress', 'BuildingSiteNumber', '11') +VALUES ('001615', 'ELServicePartner', 'MemorandumOfUnderstandingStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000603', 'OrganizationCalendarEvent', 'RefCalendarEventType', '11') +VALUES ('001616', 'PsProgram', 'RefPSProgramLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000605', 'AssessmentSubtest', 'RefContentStandardTypeId', '11') +VALUES ('001617', 'PsStudentEnrollment', 'RefPSExitOrWithdrawalTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000606', 'LocationAddress', 'Latitude', '11') +VALUES ('001618', 'ELChildService', 'EligibilityPriorityPoints', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000606', 'PersonAddress', 'Latitude', '11') +VALUES ('001619', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityStateApprovedStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000607', 'LocationAddress', 'Longitude', '11') +VALUES ('001620', 'PersonCareerEducationPlan', 'ProfessionalDevelopmentPlanApprovedBySupervisor', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000607', 'PersonAddress', 'Longitude', '11') +VALUES ('001621', 'PersonCareerEducationPlan', 'ProfessionalDevelopmentPlanCompletion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000609', 'K12StudentDiscipline', 'RefDisciplineLengthDifferenceReasonId', '11') +VALUES ('001622', 'ELOrganizationFunds', 'RefReimbursementTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000610', 'K12StudentEnrollment', 'DisplacedStudentStatus', '11') +VALUES ('001623', 'ELChildHealth', 'RefScheduledWellChildScreeningId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000610', 'PsStudentEnrollment', 'DisplacedStudentStatus', '11') +VALUES ('001624', 'ELServicePartner', 'ServicePartnerDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000611', 'OrganizationCalendarCrisis', 'Code', '11') +VALUES ('001625', 'ELServicePartner', 'ServicePartnerName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000612', 'OrganizationCalendarCrisis', 'Name', '11') +VALUES ('001627', 'ELChildServicesApplication', 'SitePreferenceRank', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000613', 'OrganizationCalendarCrisis', 'Type', '11') +VALUES ('001628', 'ProfessionalDevelopmentSession', 'TrainingAndTechnicalAssistanceLevel', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000614', 'OrganizationCalendarCrisis', 'StartDate', '11') +VALUES ('001629', 'PSStudentProgram', 'RefTransferOutIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000616', 'K12StudentCourseSection', 'GradeValueQualifier', '11') +VALUES ('001630', 'PersonHealthBirth', 'RefTrimesterWhenPrenatalCareBeganId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000616', 'K12StudentCourseSectionMark', 'GradeValueQualifier', '11') +VALUES ('001631', 'ELChildHealth', 'WellChildScreeningReceivedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000617', 'Incident', 'RefIncidentLocationId', '11') +VALUES ('001632', 'ELStaffEmployment', 'RefELEmploymentSeparationReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000618', 'PersonAddress', 'RefPersonalInformationVerificationId', '11') +VALUES ('001633', 'EarlyChildhoodProgramTypeOffered', 'RefCommunityBasedTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000618', 'PersonIdentifier', 'RefPersonalInformationVerificationId', '11') +VALUES ('001634', 'EarlyChildhoodProgramTypeOffered', 'InclusiveSettingIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000618', 'PersonPersonalInformationVerification', 'RefPersonalInformationVerificationId', '11') +VALUES ('001634', 'IndividualizedProgram', 'InclusiveSettingIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000620', 'StaffEmployment', 'RefEmploymentSeparationReasonId', '11') +VALUES ('001634', 'ServicePlan', 'InclusiveSettingIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000621', 'StaffEmployment', 'RefEmploymentSeparationTypeId', '11') +VALUES ('001635', 'ELChildService', 'ServiceDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000622', 'ELStaffAssignment', 'RefClassroomPositionTypeId', '11') +VALUES ('001636', 'ELStaffEmployment', 'RefELServiceProfessionalStaffClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000622', 'K12StaffAssignment', 'RefClassroomPositionTypeId', '11') +VALUES ('001639', 'OrganizationFinancial', 'FiscalYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000624', 'RoleAttendanceEvent', 'RefLeaveEventTypeId', '11') +VALUES ('001640', 'PersonMilitary', 'RefMilitaryBranchId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000625', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001641', 'PsProgram', 'RefDQPCategoriesOfLearningId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000625', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001642', 'OrganizationFinancial', 'FiscalPeriodBeginDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000626', 'OrganizationDetail', 'Name', '11') +VALUES ('001643', 'OrganizationFinancial', 'FiscalPeriodEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000627', 'Incident', 'RefIncidentBehaviorSecondaryId', '11') +VALUES ('001644', 'OrganizationFinancial', 'EncumberedValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000630', 'AssessmentItem', 'Identifier', '11') +VALUES ('001645', 'FinancialAccountProgram', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000632', 'Facility', 'BuildingName', '11') +VALUES ('001646', 'FinancialAccountProgram', 'ProgramNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000633', 'ELClassSectionService', 'YoungestAgeServed', '11') +VALUES ('001647', 'OrganizationFinancial', 'Value', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000633', 'OrganizationPopulationServed', 'YoungestAgeServed', '11') +VALUES ('001648', 'OrganizationFinancial', 'Date', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000634', 'PersonOtherName', 'RefOtherNameTypeId', '11') +VALUES ('001649', 'RoleAttendanceEvent', 'Date', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000635', 'ProgramParticipationNeglected', 'AchievementIndicator', '11') +VALUES ('001650', 'K12School', 'K12CharterSchoolManagementOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000636', 'ProgramParticipationNeglected', 'OutcomeIndicator', '11') +VALUES ('001651', 'K12School', 'CharterSchoolContractIdNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000637', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') +VALUES ('001652', 'K12School', 'CharterSchoolContractApprovalDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000638', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') +VALUES ('001653', 'K12School', 'CharterSchoolContractRenewalDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000645', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001654', 'K12StudentEnrollment', 'NSLPDirectCertificationIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000646', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001655', 'CourseSection', 'MaximumCapacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000647', 'K12StaffAssignment', 'TeacherOfRecord', '11') +VALUES ('001656', 'ELChildIndividualizedProgram', 'RefIDEAPartCEligibilityCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000648', 'ELStaffAssignment', 'RefTeachingAssignmentRoleId', '11') +VALUES ('001657', 'PersonDetail', 'RefTribalAffiliationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000648', 'K12StaffAssignment', 'RefTeachingAssignmentRoleId', '11') +VALUES ('001658', 'CredentialDefIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000649', 'ELStaffAssignment', 'ContributionPercentage', '11') +VALUES ('001659', 'IPEDSFinance', 'RefIPEDSFASBFunctionalExpenseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000649', 'K12StaffAssignment', 'ContributionPercentage', '11') +VALUES ('001660', 'CredentialAward', 'RevokedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000650', 'K12StudentCourseSection', 'RefCourseSectionEntryTypeId', '11') +VALUES ('001661', 'CredentialAward', 'RevokedReason', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000651', 'K12StudentCourseSection', 'ExitWithdrawalDate', '11') +VALUES ('001662', 'CredentialIssuer', 'RevocationListURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000652', 'K12StudentCourseSection', 'RefCourseSectionExitTypeId', '11') +VALUES ('001663', 'OrganizationImage', 'URL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000653', 'K12LeaFederalReporting', 'InterscholasticSportsMaleOnly', '11') +VALUES ('001664', 'CredentialAward', 'CompletionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000654', 'K12LeaFederalReporting', 'InterscholasticSportsFemaleOnly', '11') +VALUES ('001665', 'PsStudentAcademicAward', 'RequirementsURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000655', 'K12LeaFederalReporting', 'InterscholasticTeamsMaleOnly', '11') +VALUES ('001666', 'PsStudentAcademicAward', 'RefAcademicAwardPrerequisiteTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000656', 'K12LeaFederalReporting', 'InterscholasticTeamsFemaleOnly', '11') +VALUES ('001667', 'Course', 'RepeatabilityMaximumNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000657', 'K12LeaFederalReporting', 'InterscholasticSportParticipantsMale', '11') +VALUES ('001668', 'PsStudentAcademicAward', 'RefPESCAwardLevelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000658', 'K12LeaFederalReporting', 'InterscholasticSportParticipantsFemale', '11') +VALUES ('001669', 'CredentialAward', 'EvidenceURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000689', 'CompetencyDefinition', 'Identifier', '11') +VALUES ('001670', 'IPEDSFinance', 'RefIPEDSGASBFinancialPositionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000690', 'CompetencyDefinition', 'Statement', '11') +VALUES ('001671', 'IPEDSFinance', 'RefIPEDSFASBFinancialPositionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000691', 'CompetencyDefinition', 'Type', '11') +VALUES ('001672', 'IPEDSFinance', 'RefIPEDSGASBRevenueId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000692', 'CompetencyDefinition', 'Code', '11') +VALUES ('001673', 'IPEDSFinance', 'RefIPEDSFASBRevenueId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000693', 'CompetencyFramework', 'URI', '11') +VALUES ('001674', 'IPEDSFinance', 'RefIPEDSFASBRevenueRestrictionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000694', 'CompetencyFramework', 'Title', '11') +VALUES ('001675', 'IPEDSFinance', 'RefIPEDSGASBFunctionalExpenseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000695', 'CompetencyFramework', 'Version', '11') +VALUES ('001676', 'IPEDSFinance', 'RefIPEDSNaturalExpenseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000696', 'CompetencyFramework', 'Creator', '11') +VALUES ('001677', 'IPEDSFinance', 'RefIPEDSGASBScholarshipsandFellowshipsRevenueId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000697', 'CompetencyFramework', 'Description', '11') +VALUES ('001678', 'IPEDSFinance', 'RefIPEDSFASBScholarshipsandFellowshipsRevenueId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000698', 'CompetencyFramework', 'RefCompetencyFrameworkPublicationStatusId', '11') +VALUES ('001679', 'IPEDSFinance', 'RefIPEDSIntercollegiateAthleticsExpensesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000699', 'CompetencyFramework', 'Jurisdiction', '11') +VALUES ('001680', 'IPEDSFinance', 'RefIPEDSFASBPellGrantTransactionsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000700', 'CompetencyFramework', 'ValidStartDate', '11') +VALUES ('001681', 'IndividualizedProgramProgressReportPlan', 'RefIPSPProgressReportScheduleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000701', 'CompetencyFramework', 'ValidEndDate', '11') +VALUES ('001682', 'IndividualizedProgram', 'TransferOfRightsStatement', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000702', 'CompetencyFramework', 'Subject', '11') +VALUES ('001683', 'IndividualizedProgram', 'ServicePlanEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000703', 'PersonHealth', 'VisionScreeningDate', '11') +VALUES ('001684', 'IndividualizedProgramMeeting', 'MeetingDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000704', 'OrganizationWebsite', 'Website', '11') +VALUES ('001685', 'IndividualizedProgramAccommodation', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000705', 'PersonHealth', 'HearingScreeningDate', '11') +VALUES ('001686', 'IndividualizedProgramAccommodation', 'Applicability', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000706', 'PersonHealth', 'DentalScreeningDate', '11') +VALUES ('001687', 'IndividualizedProgramAssessment', 'IEPAlternativeAssessmentRationale', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000707', 'AssessmentItem', 'MaximumScore', '11') +VALUES ('001688', 'IndividualizedProgramAmendment', 'ReasonDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000708', 'AssessmentItem', 'MinimumScore', '11') +VALUES ('001689', 'IndividualizedProgramAmendment', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000709', 'AssessmentItemCharacteristic', 'Value', '11') +VALUES ('001690', 'GoalPerformance', 'CurrentPerformanceDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000710', 'K12School', 'RefCharterSchoolTypeId', '11') +VALUES ('001691', 'GoalMeasurementCriterion', 'AccuracyPercent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000711', 'K12StudentCohort', 'CohortDescription', '11') +VALUES ('001692', 'GoalMeasurementCriterion', 'AttemptsCount', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000712', 'CteCourse', 'RefCurriculumFrameworkTypeId', '11') +VALUES ('001693', 'GoalMeasurementCriterion', 'Metric', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000712', 'K12Course', 'RefCurriculumFrameworkTypeId', '11') +VALUES ('001694', 'GoalMeasurementCriterion', 'SuccessCount', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000713', 'K12StudentAcademicRecord', 'RefHighSchoolDiplomaDistinctionTypeId', '11') +VALUES ('001695', 'GoalMeasurement', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000714', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001696', 'GoalMeasurement', 'Schedule', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000715', 'CompetencyDefAssociation', 'AssociatedEntityId', '11') +VALUES ('001697', 'GoalMeasurement', 'RefGoalMeasurementTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000716', 'StaffCredential', 'RefProgramSponsorTypeId', '11') +VALUES ('001698', 'IndividualizedProgramGoal', 'RefIEPGoalTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000717', 'AssessmentPerformanceLevel', 'Identifier', '11') +VALUES ('001699', 'IndividualizedProgramProgressReport', 'ProgressReportDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000718', 'AssessmentPerformanceLevel', 'Label', '11') +VALUES ('001700', 'IndividualizedProgramProgressReport', 'ProgressDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000719', 'AssessmentSubtest', 'Rules', '11') +VALUES ('001701', 'IndividualizedProgramProgressReport', 'RefIPSPProgressReportTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000724', 'AssessmentItemResponse', 'ScoreValue', '11') +VALUES ('001701', 'IndividualizedProgramProgressReportPlan', 'RefIPSPProgressReportTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000725', 'CompetencyDefEducationLevel', 'RefEducationLevelId', '11') +VALUES ('001702', 'GoalPerformance', 'RefGoalStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000726', 'PsStudentAcademicRecord', 'AcademicYearDesignator', '11') +VALUES ('001703', 'GoalPerformance', 'Status', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000727', 'OrganizationCalendarSession', 'RefAcademicTermDesignatorId', '11') +VALUES ('001704', 'ProgramParticipationSpecialEducation', 'IDEAPlacementRationale', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000727', 'PsStudentAcademicRecord', 'RefAcademicTermDesignatorId', '11') +VALUES ('001705', 'IEPPresentLevel', 'AcademicDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000728', 'PsStudentEnrollment', 'RefDistanceEducationCourseEnrollmentId', '11') +VALUES ('001706', 'IEPPresentLevel', 'FunctionalDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000729', 'ELOrganization', 'RefPredominantCalendarSystemId', '11') +VALUES ('001707', 'IEPPresentLevel', 'GeneralEducationDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000729', 'PsInstitution', 'RefPredominantCalendarSystemId', '11') +VALUES ('001708', 'IEPPresentLevel', 'PreschoolDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000730', 'StaffEmployment', 'StandardOccupationalClassification', '11') +VALUES ('001709', 'IEPPresentLevel', 'StudentStrengthsDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000731', 'ELStaffEmployment', 'RefIpedsOccupationalCategoryId', '11') +VALUES ('001710', 'IEPPresentLevel', 'ParentConcernDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000731', 'PsStaffEmployment', 'RefIpedsOccupationalCategoryId', '11') +VALUES ('001711', 'IEPPresentLevel', 'StudentConcernDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000732', 'PsStaffEmployment', 'InstructionalStaffStatus', '11') +VALUES ('001712', 'ServicePlan', 'DeclinedServicesDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000733', 'PsStaffEmployment', 'MedicalSchoolStaffStatus', '11') +VALUES ('001713', 'ServiceFrequency', 'RefFrequencyUnitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000734', 'PsStaffEmployment', 'FacultyStatus', '11') +VALUES ('001714', 'ServiceFrequency', 'InstancesPerCycle', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000735', 'ELStaffEmployment', 'RefInstructionalStaffContractLengthId', '11') +VALUES ('001715', 'ServiceFrequency', 'FrequencyLength', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000735', 'PsStaffEmployment', 'RefInstructionalStaffContractLengthId', '11') +VALUES ('001716', 'ServiceFrequency', 'DurationInMinutes', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000736', 'ELStaffEmployment', 'RefFullTimeStatusId', '11') +VALUES ('001717', 'ServicePlan', 'ExtendsOutsideSchoolYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000736', 'PsStaffEmployment', 'RefFullTimeStatusId', '11') +VALUES ('001718', 'ServicePlan', 'SettingDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000737', 'ELStaffEmployment', 'RefEmploymentContractTypeId', '11') +VALUES ('001719', 'IEPAuthorization', 'RefIEPAuthorizationDocumentTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000737', 'PsStaffEmployment', 'RefEmploymentContractTypeId', '11') +VALUES ('001720', 'AuthorizationDocument', 'RefAuthorizerTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000738', 'PsInstitution', 'RefTenureSystemId', '11') +VALUES ('001721', 'AuthorizationDocument', 'AcceptanceIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000739', 'PsStaffEmployment', 'RefInstructionalStaffFacultyTenureId', '11') +VALUES ('001722', 'AuthorizationDocument', 'DecisionExplanation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000740', 'PsStaffEmployment', 'RefAcademicRankId', '11') +VALUES ('001723', 'IEPAuthorizationRejected', 'PortionDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000741', 'PsStaffEmployment', 'RefInstructionCreditTypeId', '11') +VALUES ('001724', 'IEPAuthorizationRejected', 'PortionExplanation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000742', 'PsStaffEmployment', 'GraduateAssistantStatus', '11') +VALUES ('001725', 'AuthorizationDocument', 'AuthorizationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000743', 'PsStaffEmployment', 'RefGraduateAssistantIpedsCategoryId', '11') +VALUES ('001726', 'IndividualizedProgramEligibility', 'ConsentToEvaluateIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000744', 'ELStaffEmployment', 'AnnualBaseContractualSalary', '11') +VALUES ('001727', 'IndividualizedProgramEligibility', 'ConsentToEvaluateDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000744', 'PsStaffEmployment', 'AnnualBaseContractualSalary', '11') +VALUES ('001728', 'IndividualizedProgramEligibilityEvaluation', 'RefIEPEligibilityEvaluationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000745', 'PsPriceOfAttendance', 'TuitionPublished', '11') +VALUES ('001729', 'IDEAEligibilityEvaluationCategory', 'RefIDEAEligibilityEvaluationCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000746', 'PsPriceOfAttendance', 'RefTuitionUnitId', '11') +VALUES ('001730', 'EligibilityEvaluation', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000747', 'PsPriceOfAttendance', 'RequiredStudentFees', '11') +VALUES ('001731', 'EligibilityEvaluation', 'EvaluationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000748', 'PsInstitution', 'InstitutionallyControlledHousingStatus', '11') +VALUES ('001732', 'IndividualizedProgramEligibility', 'ParentObservations', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000749', 'PsPriceOfAttendance', 'RoomCharges', '11') +VALUES ('001733', 'PersonDisability', 'RefIDEADisabilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000750', 'PsPriceOfAttendance', 'BoardCharges', '11') +VALUES ('001734', 'CredentialAward', 'AdvancedStandingDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000751', 'PsPriceOfAttendance', 'BooksAndSuppliesCosts', '11') +VALUES ('001735', 'CredentialAward', 'AdvancedStandingURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000752', 'PsPriceOfAttendance', 'OtherStudentExpenses', '11') +VALUES ('001736', 'CredentialDefinition', 'AlternateName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000753', 'PsPriceOfAttendance', 'PriceOfAttendance', '11') +VALUES ('001737', 'CredentialAward', 'ApproverName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000754', 'PsPriceOfAttendance', 'ComprehensiveFee', '11') +VALUES ('001738', 'CredentialDefCriteria', 'RefCredentialDefAssessMethodTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000755', 'PsStudentApplication', 'PostsecondaryApplicant', '11') +VALUES ('001739', 'CredentialDefIdentifier', 'RefCredentialIdentifierSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000756', 'PsStudentApplication', 'RefAdmittedStudentId', '11') +VALUES ('001740', 'CredentialDefinition', 'RefCredentialDefStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000757', 'PsStudentApplication', 'WaitListedStudent', '11') +VALUES ('001741', 'CredentialDefCriteria', 'EstimatedDuration', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000758', 'PsStudentApplication', 'RefGradePointAverageDomainId', '11') +VALUES ('001742', 'CredentialDefinition', 'CredentialNAICSIndustryType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000759', 'PsStudentApplication', 'HighSchoolPercentile', '11') +VALUES ('001743', 'CredentialDefinition', 'JurisdictionRegion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000760', 'PsStudentEnrollment', 'HousingOnCampus', '11') +VALUES ('001744', 'CredentialDefinition', 'JurisdictionRegionException', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000761', 'PsStudentEnrollment', 'FraternityParticipationStatus', '11') +VALUES ('001745', 'CredentialDefinition', 'Keywords', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000762', 'PsStudentEnrollment', 'SororityParticipationStatus', '11') +VALUES ('001746', 'CredentialDefCriteria', 'MaximumDuration', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000763', 'PsStudentFinancialAid', 'FinancialAidApplicant', '11') +VALUES ('001747', 'CredentialDefCriteria', 'MinimumAge', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000765', 'PsStudentFinancialAid', 'FinancialNeed', '11') +VALUES ('001748', 'CredentialDefCriteria', 'MinimumDuration', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000766', 'TeacherEducationCredentialExam', 'RefTeacherEducationTestCompanyId', '11') +VALUES ('001749', 'CredentialDefinition', 'RefCredentialDefIntendedPurposeTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000767', 'ProgramParticipationTeacherPrep', 'RefTeacherPrepEnrollmentStatusId', '11') +VALUES ('001750', 'OrganizationDetail', 'RegionGeoJSON', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000767', 'RoleStatus', 'RefRoleStatusId', '11') +VALUES ('001751', 'CredentialAward', 'RevokedIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000768', 'ProgramParticipationTeacherPrep', 'RefTeacherPrepCompleterStatusId', '11') +VALUES ('001752', 'CredentialDefinition', 'ValidationMethodDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000769', 'ProgramParticipationTeacherPrep', 'RefAltRouteToCertificationOrLicensureId', '11') +VALUES ('001753', 'CredentialDefinition', 'RefCredentialDefVerificationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000770', 'ProgramParticipationTeacherPrep', 'RefCriticalTeacherShortageCandidateId', '11') +VALUES ('001754', 'CredentialDefinition', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000771', 'ProgramParticipationTeacherPrep', 'RefSupervisedClinicalExperienceId', '11') +VALUES ('001755', 'CredentialDefAgent', 'RefCTDLOrganizationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000772', 'ProgramParticipationTeacherPrep', 'ClinicalExperienceClockHours', '11') +VALUES ('001755', 'CredentialIssuer', 'RefCTDLOrganizationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000773', 'TeacherEducationCredentialExam', 'RefTeacherEducationCredentialExamId', '11') +VALUES ('001756', 'CredentialDefinition', 'RefONETSOCOccupationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000774', 'TeacherEducationCredentialExam', 'RefTeacherEducationExamScoreTypeId', '11') +VALUES ('001757', 'CompetencyDefinition', 'TypeURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000775', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001761', 'AssessmentRegistration', 'StateFullAcademicYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000776', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001762', 'AssessmentRegistration', 'LEAFullAcademicYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000777', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001763', 'AssessmentRegistration', 'SchoolFullAcademicYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000778', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001764', 'Facility', 'BuildingArea', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000779', 'ProgramParticipationAE', 'RefAeFunctioningLevelAtIntakeId', '11') +VALUES ('001765', 'PersonDisability', 'SignificantCognitiveDisabilityIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000780', 'ProgramParticipationAE', 'RefAeFunctioningLevelAtPosttestId', '11') +VALUES ('001766', 'ELOrganization', 'RefVirtualSchoolStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000781', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') +VALUES ('001766', 'K12SchoolStatus', 'RefVirtualSchoolStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000781', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001767', 'ELOrganization', 'RefNationalSchoolLunchProgramStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000782', 'ProgramParticipationAE', 'RefAeSpecialProgramTypeId', '11') +VALUES ('001767', 'K12SchoolStatus', 'RefNationalSchoolLunchProgramStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'AeStudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '11') +VALUES ('001768', 'Facility', 'FacilityAcquisitionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'CteStudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '11') +VALUES ('001769', 'FacilityDesignConstruction', 'FacilityAdditionYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'K12StudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '11') +VALUES ('001770', 'Facility', 'FacilityBuildingPermanency', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'PsStudentAcademicRecord', 'RefProfessionalTechCredentialTypeId', '11') +VALUES ('001771', 'FacilityDesignConstruction', 'FacilityConstructionYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'WorkforceProgramParticipation', 'RefProfessionalTechnicalCredentialTypeId', '11') +VALUES ('001772', 'Facility', 'RefBuildingHistoricStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000784', 'ProgramParticipationAE', 'RefAePostsecondaryTransitionActionId', '11') +VALUES ('001773', 'FacilitySite', 'FacilitySiteArea', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000786', 'AeStaff', 'RefAeStaffClassificationId', '11') +VALUES ('001774', 'LocationAddress', 'FacilityBlockNumberArea', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000787', 'PersonFamily', 'FamilyIdentifier', '11') +VALUES ('001775', 'FacilityDesignConstruction', 'BuildingAdditionDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000788', 'AeStaff', 'YearsOfPriorAeTeachingExperience', '11') +VALUES ('001776', 'FacilityDesignConstruction', 'BuildingAdditionCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000788', 'StaffExperience', 'YearsOfPriorAETeachingExperience', '11') +VALUES ('001777', 'Facility', 'RefBuildingPrimaryUseTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000789', 'ELStaffEducation', 'ECDegreeOrCertificateHolder', '11') +VALUES ('001778', 'Facility', 'RefCampusStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000790', 'ProgramParticipationAE', 'ProxyContactHours', '11') +VALUES ('001779', 'LocationAddress', 'FacilityCensusTract', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000792', 'ELStaffEducation', 'TotalCollegeCreditsEarned', '11') +VALUES ('001780', 'FacilityDesignConstruction', 'FacilityConstructionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000793', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001781', 'FacilityDesignConstruction', 'RefFacilityConstructionDateTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000794', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001782', 'FacilityDesignConstruction', 'RefFacilityConstructionMaterialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000795', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001783', 'Facility', 'FacilityExpectedLife', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000795', 'RoleStatus', 'StatusEndDate', '11') +VALUES ('001784', 'FacilityFinance', 'FacilityReplacementValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000796', 'ELStaffEmployment', 'HoursWorkedPerWeek', '11') +VALUES ('001785', 'Facility', 'BuildingNumberOfStories', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000797', 'ELStaffEmployment', 'HourlyWage', '11') +VALUES ('001786', 'FacilitySite', 'FacilitySiteIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000798', 'ELStaffEmployment', 'RefWageCollectionMethodId', '11') +VALUES ('001787', 'FacilityDesignConstruction', 'RefFacilitySiteImprovementLocationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000799', 'ELStaffEmployment', 'UnionMembershipStatus', '11') +VALUES ('001788', 'Facility', 'BuildingYearBuilt', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000804', 'ProfessionalDevelopmentRequirement', 'RequiredTrainingClockHours', '11') +VALUES ('001789', 'Facility', 'BuildingYearOfLastModernization', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000805', 'PersonCredential', 'RefIssuingStateId', '11') +VALUES ('001790', 'BuildingSystemCategory', 'RefBuildingAirDistributionSystemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000806', 'ELStaff', 'RefChildDevelopmentAssociateTypeId', '11') +VALUES ('001791', 'BuildingSystemCategory', 'RefBuildingCommMgmtComponentSystemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000806', 'StaffCredential', 'RefChildDevAssociateTypeId', '11') +VALUES ('001792', 'FacilityCompliance', 'RefFacilityComplianceStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000807', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001793', 'BuildingSystemComponent', 'RefFacilitySystemOrComponentConditionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000808', 'OrganizationDetail', 'Name', '11') +VALUES ('001794', 'BuildingSystemCategory', 'RefBuildingCoolingGenerationSystemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000809', 'ProfessionalDevelopmentActivity', 'ActivityIdentifier', '11') +VALUES ('001795', 'BuildingSystemCategory', 'RefBuildingElectricalSystemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000809', 'StaffProfessionalDevelopmentActivity', 'ActivityIdentifier', '11') +VALUES ('001796', 'FacilityMandate', 'RefFacilityApplicableFederalMandateTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000810', 'ProfessionalDevelopmentActivity', 'Title', '11') +VALUES ('001797', 'FacilityMandate', 'RefFacilityFederalMandateInterestTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000810', 'StaffProfessionalDevelopmentActivity', 'ActivityTitle', '11') +VALUES ('001798', 'BuildingSystemCategory', 'RefBuildingFireProtectionSystemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000811', 'ProfessionalDevelopmentActivity', 'ScholarshipStatus', '11') +VALUES ('001799', 'BuildingSystemCategory', 'RefBuildingHeatingGenerationSystemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000811', 'StaffProfessionalDevelopmentActivity', 'ScholarshipStatus', '11') +VALUES ('001800', 'BuildingSystemCategory', 'RefBuildingHVACSystemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000812', 'ProfessionalDevelopmentActivity', 'RefProfessionalDevelopmentFinancialSupportId', '11') +VALUES ('001801', 'BuildingSystemComponent', 'BuildingInstitutionalEquipmentDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000812', 'StaffProfessionalDevelopmentActivity', 'RefProfessionalDevelopmentFinancialSupportId', '11') +VALUES ('001802', 'BuildingSystemCategory', 'RefBuildingMechanicalConveyingSystemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000813', 'CoreKnowledgeArea', 'RefCoreKnowledgeAreaId', '11') +VALUES ('001803', 'BuildingSystemCategory', 'RefBuildingPlumbingSystemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000814', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001804', 'BuildingSystemCategory', 'RefBuildingSecuritySystemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000815', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001805', 'FacilityMandate', 'RefFacilityStateOrLocalMandateInterestTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000816', 'ELStaffEducation', 'SchoolAgeEducationPSCredits', '11') +VALUES ('001806', 'FacilityMandate', 'FacilityStateOrLocalMandateName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000816', 'ProgramParticipationTeacherPrep', 'SchoolAgeEducationPSCredits', '11') +VALUES ('001807', 'BuildingSystemCategory', 'RefBuildingTechnologyWiringSystemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000818', 'OrganizationAccreditation', 'RefHigherEducationInstitutionAccreditationStatusId', '11') +VALUES ('001808', 'FacilityHazard', 'FacilityLocationOfHazardousMaterials', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000818', 'PersonDegreeOrCertificate', 'RefHigherEducationInstitutionAccreditationStatusId', '11') +VALUES ('001809', 'BuildingSystemCategory', 'RefBuildingMechanicalSystemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000819', 'ELStaffEmployment', 'RefWageVerificationId', '11') +VALUES ('001810', 'FacilityHazard', 'FacilityNearbyEnvHazardDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000820', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001811', 'BuildingSystemCategory', 'RefBuildingSystemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000821', 'OrganizationDetail', 'Name', '11') +VALUES ('001812', 'BuildingSystemCategory', 'RefBuildingVerticalTransportationSystemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000822', 'ELClassSectionService', 'ServesChildrenWithSpecialNeeds', '11') +VALUES ('001813', 'BuildingSpace', 'RefBuildingAdministrativeSpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000823', 'ELClassSectionService', 'ELClassGroupCurriculumType', '11') +VALUES ('001814', 'BuildingSpace', 'RefBuildingArtSpecialtySpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000824', 'ELClassSectionService', 'RefELGroupSizeStandardMetId', '11') +VALUES ('001815', 'BuildingSpace', 'RefBuildingBasicClassroomDesignTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000825', 'ELClassSection', 'ELProgramAnnualOperatingWeeks', '11') +VALUES ('001816', 'FacilityDesign', 'RefBuildingDesignTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000825', 'ELOrganizationAvailability', 'AnnualOperatingWeeks', '11') +VALUES ('001817', 'BuildingSpace', 'RefBuildingCareerTechEducationSpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000826', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001818', 'BuildingSpace', 'RefBuildingCirculationSpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000827', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') +VALUES ('001819', 'FacilityDesign', 'RefBuildingEnvOrEnergyPerformanceRatingCatId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000827', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001820', 'BuildingSystemComponent', 'RefFacilityFurnishingsTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000828', 'ELProgramLicensing', 'RefELProgramLicenseStatusId', '11') +VALUES ('001821', 'BuildingSpace', 'RefBuildingFoodServiceSpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000829', 'EarlyChildhoodProgramTypeOffered', 'RefEarlyChildhoodProgramEnrollmentTypeId', '11') +VALUES ('001822', 'BuildingSpace', 'RefBuildingIndoorAthleticOrPhysEdSpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000830', 'ELQualityRatingImprovement', 'QrisAwardDate', '11') +VALUES ('001823', 'BuildingSpace', 'RefBuildingLibMediaCenterSpecialtySpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000831', 'ELQualityRatingImprovement', 'QRISExpirationDate', '11') +VALUES ('001824', 'BuildingSpace', 'RefBuildingOperationsOrMaintSpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000834', 'ELOrganization', 'RefProfitStatusId', '11') +VALUES ('001825', 'BuildingSpace', 'RefBuildingOutdoorAthleticOrPhysEdSpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000835', 'ELProgramLicensing', 'NumberOfFatalities', '11') +VALUES ('001826', 'BuildingSpace', 'RefBuildingOutdoorOrNonathleticSpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000836', 'ELProgramLicensing', 'NumberOfInjuries', '11') +VALUES ('001827', 'BuildingSpace', 'RefBuildingPerformingArtsSpecialtySpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000837', 'ELProgramLicensing', 'LicenseSuspensionStatus', '11') +VALUES ('001828', 'FacilitySchoolDesign', 'RefBuildingSchoolDesignTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000838', 'ELProgramLicensing', 'LicenseRevocationStatus', '11') +VALUES ('001829', 'BuildingSpace', 'RefBuildingScienceSpecialtySpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000840', 'OrganizationAccreditation', 'AccreditationAwardDate', '11') +VALUES ('001830', 'FacilitySite', 'RefFacilitySiteOutdoorAreaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000841', 'OrganizationAccreditation', 'AccreditationExpirationDate', '11') +VALUES ('001831', 'BuildingSpace', 'RefBuildingSpaceDesignTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000842', 'OrganizationPolicy', 'PolicyType', '11') +VALUES ('001832', 'BuildingSpace', 'RefBuildingSpecEdSpecialtySpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000843', 'ELQualityRatingImprovement', 'NumberQrisLevels', '11') +VALUES ('001833', 'BuildingSpace', 'RefBuildingStudentSupportSpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000844', 'ELOrganizationAvailability', 'NumberOfClassrooms', '11') +VALUES ('001834', 'FacilityDesign', 'BuildingArchitectName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000845', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001835', 'FacilityDesign', 'BuildingArchitecturalFirmName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000847', 'OrganizationPolicy', 'PolicyType', '11') +VALUES ('001836', 'BuildingSpace', 'RefBuildingAssemblySpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000848', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001837', 'FacilityCompliance', 'FacilityComplianceDeterminationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000849', 'OrganizationPolicy', 'PolicyType', '11') +VALUES ('001838', 'FacilityCompliance', 'FacilityComplianceName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000850', 'OrganizationPolicy', 'PolicyType', '11') +VALUES ('001839', 'FacilityCompliance', 'FacilityComponentDeficiencyDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000851', 'ELQualityInitiative', 'ProgramHeathSafetyChecklistUseStatus', '11') +VALUES ('001840', 'BuildingSystemComponent', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000852', 'OrganizationPopulationServed', 'RefPopulationServedId', '11') +VALUES ('001841', 'FacilityCompliance', 'FacilityEstimatedCostToEliminateDeferredMaint', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000853', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001842', 'FacilityHazard', 'FacilityHazardousCondExpectedRemediationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000854', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001843', 'BuildingSpace', 'RefBuildingFullServiceKitchenTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000855', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001844', 'FacilityHazard', 'HazardousMaterialOrConditionDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000856', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001845', 'FacilityHazard', 'HazardousMaterialOrConditionTestingDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000857', 'PersonFamily', 'RefCommunicationMethodId', '11') +VALUES ('001846', 'FacilityCompliance', 'FacilityInspectionScoreResultDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000858', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001847', 'FacilityCompliance', 'FacilityInspectionViolationDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000859', 'OrganizationPolicy', 'PolicyType', '11') +VALUES ('001848', 'BuildingSystemComponent', 'InstallationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000862', 'LocationAddress', 'RefERSRuralUrbanContinuumCodeId', '11') +VALUES ('001849', 'BuildingSystemComponent', 'LifecycleCost', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000863', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001850', 'FacilityDesignConstruction', 'BuildingSiteImprovementDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000865', 'ELFacilityLicensing', 'StateLicensedFacilityCapacity', '11') +VALUES ('001851', 'BuildingSpaceUtilization', 'RefBuildingInstructionalSpaceFactorTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000866', 'OrganizationEmployeeBenefit', 'FullTimeBenefitIndicator', '11') +VALUES ('001852', 'FacilityJointUse', 'RefBuildingJointUseRationaleTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000866', 'OrganizationEmployeeBenefit', 'RefEmployeeBenefitId', '11') +VALUES ('001853', 'FacilityJointUse', 'RefBuildingJointUseSchedulingTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000867', 'OrganizationEmployeeBenefit', 'PartTimeBenefitIndicator', '11') +VALUES ('001854', 'FacilityJointUse', 'RefBuildingJointUserTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000869', 'CompetencyDefAssociation', 'RefCompetencyDefAssociationTypeId', '11') +VALUES ('001855', 'BuildingSpaceUtilization', 'RefBuildingCommunityUseSpaceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000870', 'CompetencyDefinition', 'TypicalAgeRange', '11') +VALUES ('001856', 'FacilityUtilization', 'BuildingHoursOfPublicUsePerWeek', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000871', 'CompetencyDefAssociation', 'CompetencyDefAssociationIdentifierURI', '11') +VALUES ('001857', 'FacilityUtilization', 'BuildingNetAreaOfInstructionalSpace', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000872', 'CompetencyDefinition', 'CompetencyDefParentId', '11') +VALUES ('001858', 'FacilityUtilization', 'BuildingNumberOfTeachingStations', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000873', 'CompetencyDefinition', 'CompetencyDefParentCode', '11') +VALUES ('001859', 'FacilityUtilization', 'BuildingPublicUsePolicyDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000874', 'CompetencyDefinition', 'URL', '11') +VALUES ('001860', 'FacilitySite', 'RefBuildingSiteUseRestrictionsTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000875', 'CompetencyDefinition', 'RefBloomsTaxonomyDomainId', '11') +VALUES ('001861', 'BuildingSpaceUtilization', 'BuildingSpaceUtilizationArea', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000876', 'CompetencyDefinition', 'RefMultipleIntelligenceTypeId', '11') +VALUES ('001862', 'K12StudentEnrollment', 'RefStudentEnrollmentAccessTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000877', 'CompetencySet', 'RefCompletionCriteriaId', '11') +VALUES ('001863', 'BuildingSpaceUtilization', 'BuildingUnassignedSpaceIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000878', 'CompetencySet', 'CompletionCriteriaThreshold', '11') +VALUES ('001864', 'FacilityAudit', 'RefFacilityAuditTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000879', 'CompetencyDefAssociation', 'RefLearningResourceCompetencyAlignmentTypeId', '11') +VALUES ('001865', 'FacilityManagement', 'RefBuildingCharterSchoolRealtyAccessTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000880', 'CompetencyFramework', 'RefLanguageId', '11') +VALUES ('001866', 'FacilityManagement', 'RefBuildingCleaningStandardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000881', 'CompetencyDefinition', 'RefLanguageId', '11') +VALUES ('001867', 'FacilityManagement', 'RefFacilityComplianceAgencyTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000882', 'CompetencyFramework', 'License', '11') +VALUES ('001868', 'FacilityDesignConstruction', 'RefBuildingEnergyConservationMeasureTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000883', 'CompetencyDefinition', 'License', '11') +VALUES ('001869', 'FacilityEnergy', 'BuildingEnergyServiceCompanyName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000884', 'CompetencyFramework', 'Publisher', '11') +VALUES ('001870', 'FacilityEnergy', 'RefBuildingEnergySourceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000885', 'CompetencyFramework', 'Rights', '11') +VALUES ('001871', 'FacilityManagementPlan', 'RefFacilitiesMgmtEmergencyTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000886', 'CompetencyFramework', 'RightsHolder', '11') +VALUES ('001872', 'FacilityManagement', 'RefFacilityCapitalProgramMgmtTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000887', 'CompetencyDefinition', 'ConceptKeyword', '11') +VALUES ('001873', 'FacilityManagement', 'RefFacilityOperationsMgmtTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000888', 'CompetencyDefinition', 'ConceptTerm', '11') +VALUES ('001874', 'FacilityHazard', 'RefFacilityHazardousMaterialsOrCondTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000889', 'AssessmentRegistration', 'AssignedByPersonId', '11') +VALUES ('001875', 'FacilityDesignConstruction', 'RefFacilityJointDevelopmentTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000890', 'AssessmentResult', 'DescriptiveFeedback', '11') +VALUES ('001876', 'FacilityCompliance', 'RefFacilityMaintStandardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000891', 'AssessmentItemResponse', 'DescriptiveFeedback', '11') +VALUES ('001877', 'FacilityHazard', 'RefFacilityNaturallyOccurringHazardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000892', 'CredentialDefCategory', 'Category', '11') +VALUES ('001878', 'FacilityEnergy', 'RefFacilityUtilityProviderTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000893', 'CredentialDefinition', 'Title', '11') +VALUES ('001879', 'FacilityEnergy', 'RefFacilityUtilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000894', 'CredentialDefinition', 'ImageUrl', '11') +VALUES ('001880', 'FacilityDesign', 'BuildingDateOfCertificateOfOccupancy', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000895', 'CredentialDefinition', 'Description', '11') +VALUES ('001881', 'FacilityAudit', 'FacilityAuditDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000896', 'CredentialDefCriteria', 'Criteria', '11') +VALUES ('001882', 'FacilityManagementPlan', 'FacilitiesPlanDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000898', 'OrganizationDetail', 'Name', '11') +VALUES ('001883', 'FacilityManagementPlan', 'RefFacilitiesPlanTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000900', 'CredentialIssuer', 'AwardIssuerOriginURL', '11') +VALUES ('001884', 'FacilityDesignConstruction', 'RefFacilityStandardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000901', 'CredentialAwardEvidence', 'Statement', '11') +VALUES ('001885', 'FacilityMandate', 'RefFacilitiesMandateAuthorityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000902', 'GoalMeasurement', 'SuccessCriteria', '11') +VALUES ('001886', 'FacilityMortgageFee', 'RefFacilityFinancingFeeTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000903', 'Goal', 'Description', '11') +VALUES ('001887', 'FacilityLease', 'FacilityLeaseAmount', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000904', 'AssessmentItemPossibleResponse', 'FeedbackMessage', '11') +VALUES ('001888', 'FacilityLease', 'RefFacilityLeaseAmountCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000905', 'AssessmentItemPossibleResponse', 'SequenceNumber', '11') +VALUES ('001889', 'FacilityLease', 'RefFacilityLeaseTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000906', 'AssessmentItem', 'TextComplexityValue', '11') +VALUES ('001890', 'FacilityMortgage', 'FacilityMortgageInterestAmount', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000907', 'AssessmentItem', 'RefTextComplexitySystemId', '11') +VALUES ('001891', 'FacilityMortgage', 'RefFacilityMortgageInterestTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000908', 'AssessmentItemPossibleResponse', 'Value', '11') +VALUES ('001892', 'FacilityMortgage', 'RefFacilityMortgageTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000910', 'CompetencyDefinition', 'TextComplexitySystem', '11') +VALUES ('001893', 'FacilityFinance', 'IndebtednessAmountAllowed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000911', 'LearningResource', 'Url', '11') +VALUES ('001894', 'FacilityFinance', 'InsuranceDeductible', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000912', 'LearningResource', 'Title', '11') +VALUES ('001895', 'FacilityFinance', 'PublicEducationMillRate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000913', 'LearningResource', 'SubjectName', '11') +VALUES ('001896', 'FacilityMortgage', 'FacilityTotalAssessedValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000914', 'LearningResource', 'SubjectCode', '11') +VALUES ('001897', 'Facility', 'RefCampusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000915', 'LearningResource', 'SubjectCodeSystem', '11') +VALUES ('001898', 'FacilityCompliance', 'ComponentOrFixtureCheckDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000916', 'LearningResource', 'DateCreated', '11') +VALUES ('001899', 'BuildingSystemComponentService', 'ComponentOrFixtureServicedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000917', 'LearningResource', 'Creator', '11') +VALUES ('001900', 'BuildingSystemComponentService', 'ComponentOrFixtureScheduledServicedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000918', 'LearningResource', 'PublisherName', '11') +VALUES ('001901', 'BuildingSystemComponent', 'ComponentOrFixtureUsefulLife', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000919', 'LearningResource', 'RefLanguageId', '11') +VALUES ('001902', 'BuildingSpaceUtilization', 'AvailableUtilizedInstructionalSpace', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000921', 'LearningResource', 'LearningResourceLicenseURL', '11') +VALUES ('001903', 'BuildingSpaceUtilization', 'BuildingCapacityFactorIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000922', 'LearningResource', 'BasedOnUrl', '11') +VALUES ('001904', 'FacilityUtilization', 'FacilityEnrollmentCapacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000923', 'LearningResource', 'RefLearningResourceIntendedEndUserRoleId', '11') +VALUES ('001905', 'OrganizationRelationship', 'RefOrganizationRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000924', 'LearningResource', 'TimeRequired', '11') +VALUES ('001906', 'Facility', 'FacilityOwnershipIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000925', 'LearningResource', 'TypicalAgeRangeMinimum', '11') +VALUES ('001907', 'CompetencyFramework', 'CompetencyFrameworkSourceUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000926', 'LearningResource', 'TypicalAgeRangeMaximum', '11') +VALUES ('001908', 'CompetencyDefinition', 'TypicalAgeRangeMinimum', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000927', 'LearningResource', 'RefLearningResourceInteractivityTypeId', '11') +VALUES ('001909', 'CompetencyDefinition', 'TypicalAgeRangeMaximum', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000928', 'LearningResource', 'RefLearningResourceTypeId', '11') +VALUES ('001910', 'CredentialDefinition', 'CredentialDefDateEffective', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000929', 'LearningResource', 'TextComplexityValue', '11') +VALUES ('001911', 'CredentialOffered', 'CredentialOfferedStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000930', 'LearningResource', 'TextComplexitySystem', '11') +VALUES ('001912', 'CredentialOffered', 'CredentialOfferedEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000931', 'Assessment', 'ShortName', '11') +VALUES ('001913', 'CredentialDefinition', 'RefCTDLAudienceLevelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000932', 'Assessment', 'AssessmentFamilyTitle', '11') +VALUES ('001914', 'CredentialDefAgent', 'RefCredentialDefAgentRoleTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000933', 'Assessment', 'AssessmentFamilyShortName', '11') +VALUES ('001915', 'K12SchoolStatus', 'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000934', 'LearnerAction', 'RefLearnerActionTypeId', '11') +VALUES ('001916', 'K12SchoolStatus', 'ProgressAcheivingEnglishLearnerProficiencyStateDefinedStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000935', 'LearnerAction', 'Value', '11') +VALUES ('001917', 'Activity', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000937', 'LearnerAction', 'LearnerActionDateTime', '11') +VALUES ('001917', 'ActivityRecognition', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000938', 'LearnerActivity', 'RefLanguageId', '11') +VALUES ('001917', 'AeCourse', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000939', 'LearnerActivity', 'Title', '11') +VALUES ('001917', 'AeProvider', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000940', 'LearnerActivity', 'Description', '11') +VALUES ('001917', 'AeStaff', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000941', 'LearnerActivity', 'Prerequisite', '11') +VALUES ('001917', 'AeStudentAcademicRecord', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000942', 'LearnerActivity', 'RefLearnerActivityTypeId', '11') +VALUES ('001917', 'AeStudentEmployment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000943', 'LearnerActivity', 'CreationDate', '11') +VALUES ('001917', 'ApipInteraction', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000944', 'LearnerActivity', 'MaximumTimeAllowed', '11') +VALUES ('001917', 'Application', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000945', 'LearnerActivity', 'RefLearnerActivityMaximumTimeAllowedUnitsId', '11') +VALUES ('001917', 'Assessment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000946', 'LearnerActivity', 'DueDate', '11') +VALUES ('001917', 'Assessment_AssessmentAdministration', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000947', 'LearnerActivity', 'DueTime', '11') +VALUES ('001917', 'AssessmentAccommodation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000948', 'LearnerActivity', 'MaximumAttemptsAllowed', '11') +VALUES ('001917', 'AssessmentAdministration', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000949', 'LearnerActivity', 'RefLearnerActivityAddToGradeBookFlagId', '11') +VALUES ('001917', 'AssessmentAdministration_Organization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000950', 'LearnerActivity', 'ReleaseDate', '11') +VALUES ('001917', 'AssessmentAsset', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000951', 'LearnerActivity', 'Weight', '11') +VALUES ('001917', 'AssessmentELDevelopmentalDomain', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000952', 'LearnerActivity', 'PossiblePoints', '11') +VALUES ('001917', 'AssessmentForm', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000953', 'LearnerActivity', 'RubricUrl', '11') +VALUES ('001917', 'AssessmentForm_AssessmentAsset', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000954', 'AssessmentItemResponse', 'ScaffoldingItemFlag', '11') +VALUES ('001917', 'AssessmentForm_AssessmentFormSection', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000955', 'AssessmentItemResponse', 'HintCount', '11') +VALUES ('001917', 'AssessmentFormSection', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000956', 'AssessmentItemResponse', 'HintIncludedAnswer', '11') +VALUES ('001917', 'AssessmentFormSection_AssessmentAsset', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000957', 'AssessmentItemResponse', 'FirstAttemptDuration', '11') +VALUES ('001917', 'AssessmentFormSection_AssessmentItem', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000958', 'AssessmentItemResponse', 'StartTime', '11') +VALUES ('001917', 'AssessmentItem', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000959', 'AssessmentItemResponse', 'StartDate', '11') +VALUES ('001917', 'AssessmentItemApip', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000961', 'AssessmentAdministration', 'Code', '11') +VALUES ('001917', 'AssessmentItemApipDescription', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000962', 'AssessmentAdministration', 'StartDate', '11') +VALUES ('001917', 'AssessmentItemCharacteristic', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000963', 'AssessmentAdministration', 'StartTime', '11') +VALUES ('001917', 'AssessmentItemPossibleResponse', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000964', 'AssessmentAdministration', 'FinishDate', '11') +VALUES ('001917', 'AssessmentItemResponse', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000965', 'AssessmentAdministration', 'FinishTime', '11') +VALUES ('001917', 'AssessmentItemResponseTheory', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000966', 'OrganizationDetail', 'Name', '11') +VALUES ('001917', 'AssessmentItemRubricCriterionResult', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000968', 'AssessmentSession', 'SecurityIssue', '11') +VALUES ('001917', 'AssessmentLanguage', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000969', 'AssessmentItemResponse', 'SecurityIssue', '11') +VALUES ('001917', 'AssessmentLevelsForWhichDesigned', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000970', 'AssessmentResult', 'DateUpdated', '11') +VALUES ('001917', 'AssessmentNeedApipContent', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000971', 'AssessmentResult', 'DateCreated', '11') +VALUES ('001917', 'AssessmentNeedApipControl', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000974', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001917', 'AssessmentNeedApipDisplay', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000974', 'RoleStatus', 'StatusStartDate', '11') +VALUES ('001917', 'AssessmentNeedBraille', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000975', 'RoleStatus', 'StatusEndDate', '11') +VALUES ('001917', 'AssessmentNeedScreenEnhancement', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000976', 'K12StudentCourseSection', 'RefCourseSectionEnrollmentStatusTypeId', '11') +VALUES ('001917', 'AssessmentParticipantSession', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000977', 'AssessmentAdministration', 'Name', '11') +VALUES ('001917', 'AssessmentParticipantSession_Accommodation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000978', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'AssessmentPerformanceLevel', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000978', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'AssessmentPersonalNeedLanguageLearner', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000979', 'AssessmentForm_AssessmentFormSection', 'SequenceNumber', '11') +VALUES ('001917', 'AssessmentPersonalNeedScreenReader', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000979', 'AssessmentFormSection_AssessmentItem', 'SequenceNumber', '11') +VALUES ('001917', 'AssessmentPersonalNeedsProfile', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000980', 'AssessmentFormSection', 'GUID', '11') +VALUES ('001917', 'AssessmentPersonalNeedsProfileContent', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000981', 'Assessment', 'GUID', '11') +VALUES ('001917', 'AssessmentPersonalNeedsProfileControl', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000982', 'OrganizationAccreditation', 'RefAccreditationAgencyId', '11') +VALUES ('001917', 'AssessmentPersonalNeedsProfileDisplay', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000983', 'OrganizationPolicy', 'PolicyType', '11') +VALUES ('001917', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000984', 'ELFacilityLicensing', 'RefELFacilityLicensingStatusId', '11') +VALUES ('001917', 'AssessmentRegistration', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000985', 'OrganizationCalendarSession', 'SessionStartTime', '11') +VALUES ('001917', 'AssessmentRegistration_Accommodation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000986', 'OrganizationCalendarSession', 'SessionEndTime', '11') +VALUES ('001917', 'AssessmentResult', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000987', 'AeStudentEmployment', 'RefEmployedWhileEnrolledId', '11') +VALUES ('001917', 'AssessmentResult_PerformanceLevel', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000987', 'K12StudentEmployment', 'RefEmployedWhileEnrolledId', '11') +VALUES ('001917', 'AssessmentResultRubricCriterionResult', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000987', 'PsStudentEmployment', 'RefEmployedWhileEnrolledId', '11') +VALUES ('001917', 'AssessmentSession', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000987', 'WorkforceEmploymentQuarterlyData', 'RefEmployedWhileEnrolledId', '11') +VALUES ('001917', 'AssessmentSessionStaffRole', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000988', 'AeStudentEmployment', 'RefEmployedAfterExitId', '11') +VALUES ('001917', 'AssessmentSubtest', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000988', 'K12StudentEmployment', 'RefEmployedAfterExitId', '11') +VALUES ('001917', 'AssessmentSubtest_AssessmentItem', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000988', 'PsStudentEmployment', 'RefEmployedAfterExitId', '11') +VALUES ('001917', 'AssessmentSubtest_CompetencyDefinition', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000988', 'WorkforceEmploymentQuarterlyData', 'RefEmployedAfterExitId', '11') +VALUES ('001917', 'AssessmentSubtestELDevelopmentalDomain', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000989', 'QuarterlyEmploymentRecord', 'Earnings', '11') +VALUES ('001917', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000990', 'QuarterlyEmploymentRecord', 'RefEmploymentLocationId', '11') +VALUES ('001917', 'Authentication', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000991', 'WorkforceEmploymentQuarterlyData', 'EmployedInMultipleJobsCount', '11') +VALUES ('001917', 'Authorization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000992', 'QuarterlyEmploymentRecord', 'ReferencePeriodStartDate', '11') +VALUES ('001917', 'AuthorizationDocument', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000993', 'QuarterlyEmploymentRecord', 'ReferencePeriodEndDate', '11') +VALUES ('001917', 'BuildingSpace', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000994', 'QuarterlyEmploymentRecord', 'RefERAdministrativeDataSourceId', '11') +VALUES ('001917', 'BuildingSpaceUtilization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000997', 'WorkforceProgramParticipation', 'RefWfProgramParticipationId', '11') +VALUES ('001917', 'BuildingSystemCategory', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000998', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001917', 'BuildingSystemComponent', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000999', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001917', 'BuildingSystemComponentService', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001002', 'LearningResource', 'RefLearningResourceEducationalUseId', '11') +VALUES ('001917', 'Classroom', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001003', 'AssessmentParticipantSession', 'DeliveryDeviceDetails', '11') +VALUES ('001917', 'CompetencyDefAssociation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001004', 'AssessmentNeedApipDisplay', 'EncouragementAssignedSupportIndicator', '11') +VALUES ('001917', 'CompetencyDefEducationLevel', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001004', 'AssessmentNeedApipDisplay', 'MaskingAssignedSupportIndicator', '11') +VALUES ('001917', 'CompetencyDefinition', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001004', 'AssessmentPersonalNeedLanguageLearner', 'AssignedSupport', '11') +VALUES ('001917', 'CompetencyDefinition_CompetencySet', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001004', 'AssessmentPersonalNeedsProfile', 'AssignedSupportFlag', '11') +VALUES ('001917', 'CompetencyFramework', 'RecordStartDateTime', '12') END diff --git a/src/reference-data/Populate-CEDS-Ref-Tables.sql b/src/reference-data/Populate-CEDS-Ref-Tables.sql index d2f4b48..f1cd508 100644 --- a/src/reference-data/Populate-CEDS-Ref-Tables.sql +++ b/src/reference-data/Populate-CEDS-Ref-Tables.sql @@ -1,6 +1,6 @@ /* - Copyright 2023 Common Education Data Standards + Copyright 2024 Common Education Data Standards Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -16,12 +16,12 @@ Common Education Data Standards (CEDS) - Version 11.0.0.0 + Version 12.0.0.0 Integration Data Store (IDS) Model database ref table population script - This script populates the reference tables in a IDS version 11.0.0.0 model database. + This script populates the reference tables in a IDS version 12.0.0.0 model database. WARNING!!!! This script is intended for use on a model database and should not @@ -38,11 +38,12 @@ */ --- Uncomment next two lines to update a database named CEDS-IDS-V11_0_0_0 or specify appropriate DB name for your server. ---USE [CEDS-IDS-V11_0_0_0]; +-- Uncomment next two lines to update a database named CEDS-IDS-V12_0_0_0 or specify appropriate DB name for your server. +--USE [CEDS-IDS-V12_0_0_0]; --GO -- change @updateExisting to 1 to update all existing Ref table values matching Codes and for Ref tables that include a FK to other Ref tables (not RefJurisdictionId) matching Code and Description + DECLARE @updateExisting bit = 0 PRINT N'Populate RefAbsentAttendanceCategory table' @@ -941,6 +942,28 @@ ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccreditationAgency] SET [Description] = 'Other Accreditation Agency', [Definition] = 'Other Accreditation Agency', [SortOrder] = 10.00 WHERE [Code] = 'Other' END END +PRINT N'Populate RefActiveMilitaryStatusIndicator table' + +IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefActiveMilitaryStatusIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) +BEGIN +IF NOT EXISTS (SELECT 1 FROM dbo.[RefActiveMilitaryStatusIndicator] WHERE [Code] = 'NotActive') BEGIN INSERT INTO dbo.[RefActiveMilitaryStatusIndicator]([Code], [Description], [Definition], [SortOrder]) +VALUES ('NotActive', 'Not Active', 'Person is not active in the military.', 1.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActiveMilitaryStatusIndicator] +SET [Description] = 'Not Active', [Definition] = 'Person is not active in the military.', [SortOrder] = 1.00 WHERE [Code] = 'NotActive' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefActiveMilitaryStatusIndicator] WHERE [Code] = 'Active') BEGIN INSERT INTO dbo.[RefActiveMilitaryStatusIndicator]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Active', 'Active', 'Student is an Active member of the Active Duty Forces, National Guard, or Reserve Forces.', 3.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActiveMilitaryStatusIndicator] +SET [Description] = 'Active', [Definition] = 'Student is an Active member of the Active Duty Forces, National Guard, or Reserve Forces.', [SortOrder] = 3.00 WHERE [Code] = 'Active' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefActiveMilitaryStatusIndicator] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefActiveMilitaryStatusIndicator]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Unknown', 'Unknown', 'It is unknown whether the person is active in the military.', 5.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActiveMilitaryStatusIndicator] +SET [Description] = 'Unknown', [Definition] = 'It is unknown whether the person is active in the military.', [SortOrder] = 5.00 WHERE [Code] = 'Unknown' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefActiveMilitaryStatusIndicator] WHERE [Code] = 'NationalGuardOrReserve') BEGIN INSERT INTO dbo.[RefActiveMilitaryStatusIndicator]([Code], [Description], [Definition], [SortOrder]) +VALUES ('NationalGuardOrReserve', 'National Guard Or Reserve', 'Person is a dependent of a member of the National Guard (not full-time duty) or Reserve Forces (Army, Navy, Air Force, Marine Corps, or Coast Guard).', 6.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActiveMilitaryStatusIndicator] +SET [Description] = 'National Guard Or Reserve', [Definition] = 'Person is a dependent of a member of the National Guard (not full-time duty) or Reserve Forces (Army, Navy, Air Force, Marine Corps, or Coast Guard).', [SortOrder] = 6.00 WHERE [Code] = 'NationalGuardOrReserve' END +END + PRINT N'Populate RefActivityRecognitionType table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefActivityRecognitionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) @@ -5571,10 +5594,18 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'TeacherRepo VALUES ('TeacherReport', 'Teacher Report', 'Teacher Report is specified as the category of an assessment based on format and content.', 46.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] SET [Description] = 'Teacher Report', [Definition] = 'Teacher Report is specified as the category of an assessment based on format and content.', [SortOrder] = 46.00 WHERE [Code] = 'TeacherReport' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'AlternateAssessmentAlternateStandards') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('AlternateAssessmentAlternateStandards', 'Alternate assessment/alternate standards', 'Alternate assessment/alternate standards is specified as the category of as assessment based on format and content.', 47.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] +SET [Description] = 'Alternate assessment/alternate standards', [Definition] = 'Alternate assessment/alternate standards is specified as the category of as assessment based on format and content.', [SortOrder] = 47.00 WHERE [Code] = 'AlternateAssessmentAlternateStandards' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) VALUES ('Other', 'Other', 'Other is specified as the category of an assessment based on format and content.', 48.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] SET [Description] = 'Other', [Definition] = 'Other is specified as the category of an assessment based on format and content.', [SortOrder] = 48.00 WHERE [Code] = 'Other' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'WorkplaceSkills') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('WorkplaceSkills', 'Workplace skills', 'Workplace skills is specified as the category of an assessment based on format and content to measure career-relevant skills.', 48.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] +SET [Description] = 'Workplace skills', [Definition] = 'Workplace skills is specified as the category of an assessment based on format and content to measure career-relevant skills.', [SortOrder] = 48.00 WHERE [Code] = 'WorkplaceSkills' END END PRINT N'Populate RefAssessmentTypeAdministered table' @@ -8551,6 +8582,10 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefCipVersion] WHERE [Code] = 'CIP2010') BEGIN VALUES ('CIP2010', 'CIP 2010', 'CIP 2010 is the version of CIP being reported.', 5.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCipVersion] SET [Description] = 'CIP 2010', [Definition] = 'CIP 2010 is the version of CIP being reported.', [SortOrder] = 5.00 WHERE [Code] = 'CIP2010' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefCipVersion] WHERE [Code] = 'CIP2020') BEGIN INSERT INTO dbo.[RefCipVersion]([Code], [Description], [Definition], [SortOrder]) +VALUES ('CIP2020', 'CIP 2020', 'CIP 2020 is the version of CIP being reported.', 6.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCipVersion] +SET [Description] = 'CIP 2020', [Definition] = 'CIP 2020 is the version of CIP being reported.', [SortOrder] = 6.00 WHERE [Code] = 'CIP2020' END END PRINT N'Populate RefClassroomPositionType table' @@ -11275,6 +11310,14 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialType] WHERE [Code] = 'Registratio VALUES ('Registration', 'Registration', 'Registration is specified as the category of credential a person holds.', 5.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialType] SET [Description] = 'Registration', [Definition] = 'Registration is specified as the category of credential a person holds.', [SortOrder] = 5.00 WHERE [Code] = 'Registration' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialType] WHERE [Code] = 'HighSchoolDiploma') BEGIN INSERT INTO dbo.[RefCredentialType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('HighSchoolDiploma', 'High School Diploma', 'High School Diploma is specified as the category of credential a person holds.', 6.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialType] +SET [Description] = 'High School Diploma', [Definition] = 'High School Diploma is specified as the category of credential a person holds.', [SortOrder] = 6.00 WHERE [Code] = 'HighSchoolDiploma' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialType] WHERE [Code] = 'HighSchoolDiplomaDistinction') BEGIN INSERT INTO dbo.[RefCredentialType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('HighSchoolDiplomaDistinction', 'High School Diploma Distinction', 'High School Diploma Distinction is specified as the category of credential a person holds.', 7.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialType] +SET [Description] = 'High School Diploma Distinction', [Definition] = 'High School Diploma Distinction is specified as the category of credential a person holds.', [SortOrder] = 7.00 WHERE [Code] = 'HighSchoolDiplomaDistinction' END END PRINT N'Populate RefCreditHoursAppliedOtherProgram table' @@ -12199,122 +12242,134 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03 VALUES ('03087', 'Expulsion without services', 'Expulsion without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 17.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] SET [Description] = 'Expulsion without services', [Definition] = 'Expulsion without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 17.00 WHERE [Code] = '03087' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03120') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) +VALUES ('03120', 'Interim removal to alternative educational setting', 'Interim removal to an alternative educational setting is a consequence of an incident for the student(s) involved in an incident as the perpetrator(s).', 18.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] +SET [Description] = 'Interim removal to alternative educational setting', [Definition] = 'Interim removal to an alternative educational setting is a consequence of an incident for the student(s) involved in an incident as the perpetrator(s).', [SortOrder] = 18.00 WHERE [Code] = '03120' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03088') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03088', 'Juvenile justice referral', 'Juvenile justice referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 18.00) END +VALUES ('03088', 'Juvenile justice referral', 'Juvenile justice referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 19.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Juvenile justice referral', [Definition] = 'Juvenile justice referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 18.00 WHERE [Code] = '03088' END +SET [Description] = 'Juvenile justice referral', [Definition] = 'Juvenile justice referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 19.00 WHERE [Code] = '03088' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03089') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03089', 'Law enforcement referral', 'Law enforcement referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 19.00) END +VALUES ('03089', 'Law enforcement referral', 'Law enforcement referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 20.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Law enforcement referral', [Definition] = 'Law enforcement referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 19.00 WHERE [Code] = '03089' END +SET [Description] = 'Law enforcement referral', [Definition] = 'Law enforcement referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 20.00 WHERE [Code] = '03089' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03090') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03090', 'Letter of apology', 'Letter of apology is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 20.00) END +VALUES ('03090', 'Letter of apology', 'Letter of apology is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 21.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Letter of apology', [Definition] = 'Letter of apology is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 20.00 WHERE [Code] = '03090' END +SET [Description] = 'Letter of apology', [Definition] = 'Letter of apology is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 21.00 WHERE [Code] = '03090' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03091') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03091', 'Loss of privileges', 'Loss of privileges is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 21.00) END +VALUES ('03091', 'Loss of privileges', 'Loss of privileges is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 22.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Loss of privileges', [Definition] = 'Loss of privileges is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 21.00 WHERE [Code] = '03091' END +SET [Description] = 'Loss of privileges', [Definition] = 'Loss of privileges is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 22.00 WHERE [Code] = '03091' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '13357') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13357', 'Mechanical Restraint', 'Mechanical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 22.00) END +VALUES ('13357', 'Mechanical Restraint', 'Mechanical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 23.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Mechanical Restraint', [Definition] = 'Mechanical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 22.00 WHERE [Code] = '13357' END +SET [Description] = 'Mechanical Restraint', [Definition] = 'Mechanical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 23.00 WHERE [Code] = '13357' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03105') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03105', 'No action', 'No action is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 23.00) END +VALUES ('03105', 'No action', 'No action is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 24.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'No action', [Definition] = 'No action is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 23.00 WHERE [Code] = '03105' END +SET [Description] = 'No action', [Definition] = 'No action is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 24.00 WHERE [Code] = '03105' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '09998') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09998', 'None', 'None is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 24.00) END +VALUES ('09998', 'None', 'None is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 25.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'None', [Definition] = 'None is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 24.00 WHERE [Code] = '09998' END +SET [Description] = 'None', [Definition] = 'None is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 25.00 WHERE [Code] = '09998' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 25.00) END +VALUES ('09999', 'Other', 'Other is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 26.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Other', [Definition] = 'Other is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 25.00 WHERE [Code] = '09999' END +SET [Description] = 'Other', [Definition] = 'Other is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 26.00 WHERE [Code] = '09999' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03092') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03092', 'Physical activity', 'Physical activity is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 26.00) END +VALUES ('03092', 'Physical activity', 'Physical activity is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 27.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Physical activity', [Definition] = 'Physical activity is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 26.00 WHERE [Code] = '03092' END +SET [Description] = 'Physical activity', [Definition] = 'Physical activity is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 27.00 WHERE [Code] = '03092' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '13358') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13358', 'Physical Restraint', 'Physical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 27.00) END +VALUES ('13358', 'Physical Restraint', 'Physical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 28.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] +SET [Description] = 'Physical Restraint', [Definition] = 'Physical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 28.00 WHERE [Code] = '13358' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '75000') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75000', 'Placed in juvenile detention center', 'Placed in a juvenile detention center is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 29.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Physical Restraint', [Definition] = 'Physical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 27.00 WHERE [Code] = '13358' END +SET [Description] = 'Placed in juvenile detention center', [Definition] = 'Placed in a juvenile detention center is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 29.00 WHERE [Code] = '75000' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03158') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03158', 'Removal by a hearing officer', 'Removal by a hearing officer is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 28.00) END +VALUES ('03158', 'Removal by a hearing officer', 'Removal by a hearing officer is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 30.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Removal by a hearing officer', [Definition] = 'Removal by a hearing officer is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 28.00 WHERE [Code] = '03158' END +SET [Description] = 'Removal by a hearing officer', [Definition] = 'Removal by a hearing officer is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 30.00 WHERE [Code] = '03158' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03093') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03093', 'Reprimand', 'Reprimand is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 29.00) END +VALUES ('03093', 'Reprimand', 'Reprimand is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 31.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Reprimand', [Definition] = 'Reprimand is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 29.00 WHERE [Code] = '03093' END +SET [Description] = 'Reprimand', [Definition] = 'Reprimand is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 31.00 WHERE [Code] = '03093' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03094') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03094', 'Restitution', 'Restitution is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 30.00) END +VALUES ('03094', 'Restitution', 'Restitution is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 32.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Restitution', [Definition] = 'Restitution is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 30.00 WHERE [Code] = '03094' END +SET [Description] = 'Restitution', [Definition] = 'Restitution is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 32.00 WHERE [Code] = '03094' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03095') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03095', 'Saturday school', 'Saturday school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 31.00) END +VALUES ('03095', 'Saturday school', 'Saturday school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 33.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Saturday school', [Definition] = 'Saturday school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 31.00 WHERE [Code] = '03095' END +SET [Description] = 'Saturday school', [Definition] = 'Saturday school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 33.00 WHERE [Code] = '03095' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03096') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03096', 'School probation', 'School probation is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 32.00) END +VALUES ('03096', 'School probation', 'School probation is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 34.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'School probation', [Definition] = 'School probation is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 32.00 WHERE [Code] = '03096' END +SET [Description] = 'School probation', [Definition] = 'School probation is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 34.00 WHERE [Code] = '03096' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '75001') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75001', 'School-related arrest', 'School-related arrest, which is an arrest of a student for any activity conducted on school grounds, during off-campus school activities (including while taking school transportation), or due to a referral by any school official, is a consequence of an incident for the student(s) involved in an incident as perpetrator(s). All school-related arrests are also considered Law Enforcement Referrals, but not all Law Enforcement Referrals are School-Related arrests.', 35.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] +SET [Description] = 'School-related arrest', [Definition] = 'School-related arrest, which is an arrest of a student for any activity conducted on school grounds, during off-campus school activities (including while taking school transportation), or due to a referral by any school official, is a consequence of an incident for the student(s) involved in an incident as perpetrator(s). All school-related arrests are also considered Law Enforcement Referrals, but not all Law Enforcement Referrals are School-Related arrests.', [SortOrder] = 35.00 WHERE [Code] = '75001' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '13359') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13359', 'Seclusion', 'Seclusion is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 33.00) END +VALUES ('13359', 'Seclusion', 'Seclusion is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 36.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Seclusion', [Definition] = 'Seclusion is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 33.00 WHERE [Code] = '13359' END +SET [Description] = 'Seclusion', [Definition] = 'Seclusion is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 36.00 WHERE [Code] = '13359' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03097') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03097', 'Substance abuse counseling mandated', 'Substance abuse counseling mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 34.00) END +VALUES ('03097', 'Substance abuse counseling mandated', 'Substance abuse counseling mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 37.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Substance abuse counseling mandated', [Definition] = 'Substance abuse counseling mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 34.00 WHERE [Code] = '03097' END +SET [Description] = 'Substance abuse counseling mandated', [Definition] = 'Substance abuse counseling mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 37.00 WHERE [Code] = '03097' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03098') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03098', 'Substance abuse treatment mandated', 'Substance abuse treatment mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 35.00) END +VALUES ('03098', 'Substance abuse treatment mandated', 'Substance abuse treatment mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 38.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Substance abuse treatment mandated', [Definition] = 'Substance abuse treatment mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 35.00 WHERE [Code] = '03098' END +SET [Description] = 'Substance abuse treatment mandated', [Definition] = 'Substance abuse treatment mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 38.00 WHERE [Code] = '03098' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03099') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03099', 'Suspension after school', 'Suspension after school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 36.00) END +VALUES ('03099', 'Suspension after school', 'Suspension after school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 39.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension after school', [Definition] = 'Suspension after school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 36.00 WHERE [Code] = '03099' END +SET [Description] = 'Suspension after school', [Definition] = 'Suspension after school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 39.00 WHERE [Code] = '03099' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03100') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03100', 'Suspension, in-school', 'Suspension, in-school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 37.00) END +VALUES ('03100', 'Suspension, in-school', 'Suspension, in-school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 40.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, in-school', [Definition] = 'Suspension, in-school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 37.00 WHERE [Code] = '03100' END +SET [Description] = 'Suspension, in-school', [Definition] = 'Suspension, in-school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 40.00 WHERE [Code] = '03100' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03154') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03154', 'Suspension, out of school, greater than 10 consecutive school days', 'Suspension, out of school, greater than 10 consecutive school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 38.00) END +VALUES ('03154', 'Suspension, out of school, greater than 10 consecutive school days', 'Suspension, out of school, greater than 10 consecutive school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 41.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, out of school, greater than 10 consecutive school days', [Definition] = 'Suspension, out of school, greater than 10 consecutive school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 38.00 WHERE [Code] = '03154' END +SET [Description] = 'Suspension, out of school, greater than 10 consecutive school days', [Definition] = 'Suspension, out of school, greater than 10 consecutive school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 41.00 WHERE [Code] = '03154' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03155') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03155', 'Suspension, out of school, separate days cumulating to more than 10 school days', 'Suspension, out of school, separate days cumulating to more than 10 school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 39.00) END +VALUES ('03155', 'Suspension, out of school, separate days cumulating to more than 10 school days', 'Suspension, out of school, separate days cumulating to more than 10 school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 42.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, out of school, separate days cumulating to more than 10 school days', [Definition] = 'Suspension, out of school, separate days cumulating to more than 10 school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 39.00 WHERE [Code] = '03155' END +SET [Description] = 'Suspension, out of school, separate days cumulating to more than 10 school days', [Definition] = 'Suspension, out of school, separate days cumulating to more than 10 school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 42.00 WHERE [Code] = '03155' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03101') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03101', 'Suspension, out-of-school, with services', 'Suspension, out-of-school, with services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 40.00) END +VALUES ('03101', 'Suspension, out-of-school, with services', 'Suspension, out-of-school, with services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 43.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, out-of-school, with services', [Definition] = 'Suspension, out-of-school, with services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 40.00 WHERE [Code] = '03101' END +SET [Description] = 'Suspension, out-of-school, with services', [Definition] = 'Suspension, out-of-school, with services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 43.00 WHERE [Code] = '03101' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03102') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03102', 'Suspension, out-of-school, without services', 'Suspension, out-of-school, without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 41.00) END +VALUES ('03102', 'Suspension, out-of-school, without services', 'Suspension, out-of-school, without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 44.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, out-of-school, without services', [Definition] = 'Suspension, out-of-school, without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 41.00 WHERE [Code] = '03102' END +SET [Description] = 'Suspension, out-of-school, without services', [Definition] = 'Suspension, out-of-school, without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 44.00 WHERE [Code] = '03102' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03157') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03157', 'Unilateral removal - drug incident', 'Unilateral removal - drug incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 42.00) END +VALUES ('03157', 'Unilateral removal - drug incident', 'Unilateral removal - drug incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 45.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Unilateral removal - drug incident', [Definition] = 'Unilateral removal - drug incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 42.00 WHERE [Code] = '03157' END +SET [Description] = 'Unilateral removal - drug incident', [Definition] = 'Unilateral removal - drug incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 45.00 WHERE [Code] = '03157' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03156') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03156', 'Unilateral removal - weapon incident', 'Unilateral removal - weapon incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 43.00) END +VALUES ('03156', 'Unilateral removal - weapon incident', 'Unilateral removal - weapon incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 46.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Unilateral removal - weapon incident', [Definition] = 'Unilateral removal - weapon incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 43.00 WHERE [Code] = '03156' END +SET [Description] = 'Unilateral removal - weapon incident', [Definition] = 'Unilateral removal - weapon incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 46.00 WHERE [Code] = '03156' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '09997') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09997', 'Unknown', 'Unknown is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 44.00) END +VALUES ('09997', 'Unknown', 'Unknown is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 47.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Unknown', [Definition] = 'Unknown is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 44.00 WHERE [Code] = '09997' END +SET [Description] = 'Unknown', [Definition] = 'Unknown is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 47.00 WHERE [Code] = '09997' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03103') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03103', 'Unsatisfactory behavior grade', 'Unsatisfactory behavior grade is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 45.00) END +VALUES ('03103', 'Unsatisfactory behavior grade', 'Unsatisfactory behavior grade is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 48.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Unsatisfactory behavior grade', [Definition] = 'Unsatisfactory behavior grade is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 45.00 WHERE [Code] = '03103' END +SET [Description] = 'Unsatisfactory behavior grade', [Definition] = 'Unsatisfactory behavior grade is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 48.00 WHERE [Code] = '03103' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03104') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03104', 'Work detail', 'Work detail is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 46.00) END +VALUES ('03104', 'Work detail', 'Work detail is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 49.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Work detail', [Definition] = 'Work detail is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 46.00 WHERE [Code] = '03104' END +SET [Description] = 'Work detail', [Definition] = 'Work detail is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 49.00 WHERE [Code] = '03104' END END PRINT N'Populate RefDisciplineLengthDifferenceReason table' @@ -12597,6 +12652,26 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE VALUES ('None', 'None', 'The child is not enrolled in an early childhood program.', 21.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] SET [Description] = 'None', [Definition] = 'The child is not enrolled in an early childhood program.', [SortOrder] = 21.00 WHERE [Code] = 'None' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'FamilyChildCare') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('FamilyChildCare', 'Family Child Care', 'Child care provided within a caregiver''s home.', 22.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] +SET [Description] = 'Family Child Care', [Definition] = 'Child care provided within a caregiver''s home.', [SortOrder] = 22.00 WHERE [Code] = 'FamilyChildCare' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'HomeBasedInformalCare') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('HomeBasedInformalCare', 'Home-Based Informal Care', 'Child care provided within the child''s home.', 23.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] +SET [Description] = 'Home-Based Informal Care', [Definition] = 'Child care provided within the child''s home.', [SortOrder] = 23.00 WHERE [Code] = 'HomeBasedInformalCare' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'MigrantHeadStart') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('MigrantHeadStart', 'Migrant Head Start', 'Migrant Head Start is a system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 24.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] +SET [Description] = 'Migrant Head Start', [Definition] = 'Migrant Head Start is a system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 24.00 WHERE [Code] = 'MigrantHeadStart' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'PrivatePreKindergarten') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('PrivatePreKindergarten', 'Private Pre-Kindergarten', 'Private Pre-Kindergarten is a system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 25.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] +SET [Description] = 'Private Pre-Kindergarten', [Definition] = 'Private Pre-Kindergarten is a system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 25.00 WHERE [Code] = 'PrivatePreKindergarten' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'PublicPreKindergarten') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('PublicPreKindergarten', 'Public Pre-Kindergarten', 'Public Pre- Kindergarten is a system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 26.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] +SET [Description] = 'Public Pre-Kindergarten', [Definition] = 'Public Pre- Kindergarten is a system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 26.00 WHERE [Code] = 'PublicPreKindergarten' END END PRINT N'Populate RefEarlyChildhoodServices table' @@ -13748,9 +13823,9 @@ VALUES ('Work', 'Work', 'Work is the type of electronic mail (e-mail) address li ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmailType] SET [Description] = 'Work', [Definition] = 'Work is the type of electronic mail (e-mail) address listed for a person or organization.', [SortOrder] = 2.00 WHERE [Code] = 'Work' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmailType] WHERE [Code] = 'Organizational') BEGIN INSERT INTO dbo.[RefEmailType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Organizational', 'Organizational (school) address', 'Organizational (school) address is the type of electronic mail (e-mail) address listed for a person or organization.', 3.00) END +VALUES ('Organizational', 'Organizational address', 'Organizational address is the type of electronic mail (e-mail) address listed for a person or organization.', 3.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmailType] -SET [Description] = 'Organizational (school) address', [Definition] = 'Organizational (school) address is the type of electronic mail (e-mail) address listed for a person or organization.', [SortOrder] = 3.00 WHERE [Code] = 'Organizational' END +SET [Description] = 'Organizational address', [Definition] = 'Organizational address is the type of electronic mail (e-mail) address listed for a person or organization.', [SortOrder] = 3.00 WHERE [Code] = 'Organizational' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmailType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefEmailType]([Code], [Description], [Definition], [SortOrder]) VALUES ('Other', 'Other', 'Other is the type of electronic mail (e-mail) address listed for a person or organization.', 4.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmailType] @@ -14411,6 +14486,18 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '09999') BEGIN IN VALUES ('09999', 'Other', 'The process by which the student entered a school during a given academic session is in a category not yet defined in CEDS.', 20.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] SET [Description] = 'Other', [Definition] = 'The process by which the student entered a school during a given academic session is in a category not yet defined in CEDS.', [SortOrder] = 20.00 WHERE [Code] = '09999' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '74001') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('74001', 'Initial Enrollment for the School Year', 'Initial enrollment for the School Year is the process by which the student entered a school during a given academic session.', 20.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] +SET [Description] = 'Initial Enrollment for the School Year', [Definition] = 'Initial enrollment for the School Year is the process by which the student entered a school during a given academic session.', [SortOrder] = 20.00 WHERE [Code] = '74001' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '74002') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('74002', 'Transfer from a private school in the state', 'Transfer from a private school in the same state is the process by which the student entered a school during a given academic session.', 21.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] +SET [Description] = 'Transfer from a private school in the state', [Definition] = 'Transfer from a private school in the same state is the process by which the student entered a school during a given academic session.', [SortOrder] = 21.00 WHERE [Code] = '74002' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '74003') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('74003', 'Transfer from a school outside of state', 'Transfer from a school (private or public) outside of state is the process by which the student entered a school during a given academic session.', 22.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] +SET [Description] = 'Transfer from a school outside of state', [Definition] = 'Transfer from a school (private or public) outside of state is the process by which the student entered a school during a given academic session.', [SortOrder] = 22.00 WHERE [Code] = '74003' END END PRINT N'Populate RefEnvironmentSetting table' @@ -14669,6 +14756,18 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '73063 VALUES ('73063', 'Transferred to a charter school in a different state', 'The student exited from membership in the educational institution and transferred to a charter school in a different state.', 37.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] SET [Description] = 'Transferred to a charter school in a different state', [Definition] = 'The student exited from membership in the educational institution and transferred to a charter school in a different state.', [SortOrder] = 37.00 WHERE [Code] = '73063' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '73066') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('73066', 'Matriculation to another school in the same local education agency', 'The student exited from membership in the educational institution after successful completion of the highest instructional level offered at the school with the exception of graduation and is expected to enroll in another school in the same local education agency offering the next instructional level.', 38.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] +SET [Description] = 'Matriculation to another school in the same local education agency', [Definition] = 'The student exited from membership in the educational institution after successful completion of the highest instructional level offered at the school with the exception of graduation and is expected to enroll in another school in the same local education agency offering the next instructional level.', [SortOrder] = 38.00 WHERE [Code] = '73066' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '73068') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('73068', 'Transfer to a private school in the state', 'The student exited from membership in the education institution and transferred to a private school in the state.', 39.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] +SET [Description] = 'Transfer to a private school in the state', [Definition] = 'The student exited from membership in the education institution and transferred to a private school in the state.', [SortOrder] = 39.00 WHERE [Code] = '73068' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '73067') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('73067', 'Transferred to a school outside of the state', 'The student exited from membership in the education institution and transferred to a public or private school outside of the state.', 40.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] +SET [Description] = 'Transferred to a school outside of the state', [Definition] = 'The student exited from membership in the education institution and transferred to a public or private school outside of the state.', [SortOrder] = 40.00 WHERE [Code] = '73067' END END PRINT N'Populate RefFacilitiesMandateAuthorityType table' @@ -18431,6 +18530,18 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaDistinctionType] WHERE [Co VALUES ('SummaCumLaude', 'Summa cum laude', 'Summa cum laude is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', 6.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaDistinctionType] SET [Description] = 'Summa cum laude', [Definition] = 'Summa cum laude is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', [SortOrder] = 6.00 WHERE [Code] = 'SummaCumLaude' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaDistinctionType] WHERE [Code] = 'CareerandTechnical') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaDistinctionType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('CareerandTechnical', 'Career and Technical', 'Career and Technical is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', 7.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaDistinctionType] +SET [Description] = 'Career and Technical', [Definition] = 'Career and Technical is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', [SortOrder] = 7.00 WHERE [Code] = 'CareerandTechnical' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaDistinctionType] WHERE [Code] = 'SealofBiliteracy') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaDistinctionType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('SealofBiliteracy', 'Seal of Biliteracy', 'Seal of Biliteracy is the distinction of the diploma or credential awarded to a student in recognition of their completion of proficiency in two or more languages.', 8.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaDistinctionType] +SET [Description] = 'Seal of Biliteracy', [Definition] = 'Seal of Biliteracy is the distinction of the diploma or credential awarded to a student in recognition of their completion of proficiency in two or more languages.', [SortOrder] = 8.00 WHERE [Code] = 'SealofBiliteracy' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaDistinctionType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaDistinctionType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Other', 'Other', 'The distinction of the diploma or credential that is awarded to the student in recognition of their completion of the curricular requirements is an option that is not yet defined in CEDS.', 99.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaDistinctionType] +SET [Description] = 'Other', [Definition] = 'The distinction of the diploma or credential that is awarded to the student in recognition of their completion of the curricular requirements is an option that is not yet defined in CEDS.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END END PRINT N'Populate RefHighSchoolDiplomaType table' @@ -18438,9 +18549,9 @@ PRINT N'Populate RefHighSchoolDiplomaType table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefHighSchoolDiplomaType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00806') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00806', 'Regular diploma', 'Regular diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', 1.00) END +VALUES ('00806', 'Regular High School Diploma', 'The standard high school diploma awarded to the preponderance of students in the state that is fully aligned with state standards, or a higher diploma, except that a regular high school diploma shall not be aligned to the alternate academic achievement standards described in section 1111(b)(1)(E) of the Every Student Succeeds Act; and does not include a recognized equivalent of a diploma, such as a general equivalency diploma, certificate of completion, certificate of attendance, or similar lesser credential.', 1.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'Regular diploma', [Definition] = 'Regular diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 1.00 WHERE [Code] = '00806' END +SET [Description] = 'Regular High School Diploma', [Definition] = 'The standard high school diploma awarded to the preponderance of students in the state that is fully aligned with state standards, or a higher diploma, except that a regular high school diploma shall not be aligned to the alternate academic achievement standards described in section 1111(b)(1)(E) of the Every Student Succeeds Act; and does not include a recognized equivalent of a diploma, such as a general equivalency diploma, certificate of completion, certificate of attendance, or similar lesser credential.', [SortOrder] = 1.00 WHERE [Code] = '00806' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00807') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) VALUES ('00807', 'Endorsed/advanced diploma', 'Endorsed/advanced diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', 2.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] @@ -18489,6 +18600,10 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '0081 VALUES ('00819', 'Career and Technical Education certificate', 'Career and Technical Education certificate was awarded to the person in recognition of his/her completion of the curricular requirements.', 13.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] SET [Description] = 'Career and Technical Education certificate', [Definition] = 'Career and Technical Education certificate was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 13.00 WHERE [Code] = '00819' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '75000') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75000', 'State Defined Alternate Diploma', 'An alternate diploma that is state defined, standards-based, aligned with the state requirements for the regular high school diploma, and obtained within the time period for which the state ensures the availability of a free and appropriate public education under section 612(a)(1) of the Individuals with Disabilities Education Act (20 U.S.C. 1412(a)(1)).', 14.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] +SET [Description] = 'State Defined Alternate Diploma', [Definition] = 'An alternate diploma that is state defined, standards-based, aligned with the state requirements for the regular high school diploma, and obtained within the time period for which the state ensures the availability of a free and appropriate public education under section 612(a)(1) of the Individuals with Disabilities Education Act (20 U.S.C. 1412(a)(1)).', [SortOrder] = 14.00 WHERE [Code] = '75000' END END PRINT N'Populate RefHighSchoolGraduationRateIndicator table' @@ -19059,118 +19174,150 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04625') B VALUES ('04625', 'Arson', 'Arson is a behavior associated with the incident.', 2.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] SET [Description] = 'Arson', [Definition] = 'Arson is a behavior associated with the incident.', [SortOrder] = 2.00 WHERE [Code] = '04625' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75004') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75004', 'Assault', 'Assault, including aggravated assault and other assault, is a behavior associated with the incident.', 3.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Assault', [Definition] = 'Assault, including aggravated assault and other assault, is a behavior associated with the incident.', [SortOrder] = 3.00 WHERE [Code] = '75004' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04626') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04626', 'Attendance Policy Violation', 'Attendance Policy Violation is a behavior associated with the incident.', 3.00) END +VALUES ('04626', 'Attendance Policy Violation', 'Attendance Policy Violation is a behavior associated with the incident.', 4.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Attendance Policy Violation', [Definition] = 'Attendance Policy Violation is a behavior associated with the incident.', [SortOrder] = 3.00 WHERE [Code] = '04626' END +SET [Description] = 'Attendance Policy Violation', [Definition] = 'Attendance Policy Violation is a behavior associated with the incident.', [SortOrder] = 4.00 WHERE [Code] = '04626' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04632') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04632', 'Battery', 'Battery is a behavior associated with the incident.', 4.00) END +VALUES ('04632', 'Battery', 'Battery is a behavior associated with the incident.', 5.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Battery', [Definition] = 'Battery is a behavior associated with the incident.', [SortOrder] = 5.00 WHERE [Code] = '04632' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75005') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75005', 'Bullying', 'Bullying is a behavior associated with the incident.', 6.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Battery', [Definition] = 'Battery is a behavior associated with the incident.', [SortOrder] = 4.00 WHERE [Code] = '04632' END +SET [Description] = 'Bullying', [Definition] = 'Bullying is a behavior associated with the incident.', [SortOrder] = 6.00 WHERE [Code] = '75005' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04633') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04633', 'Burglary/Breaking and Entering', 'Burglary/Breaking and Entering is a behavior associated with the incident.', 5.00) END +VALUES ('04633', 'Burglary/Breaking and Entering', 'Burglary/Breaking and Entering is a behavior associated with the incident.', 7.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Burglary/Breaking and Entering', [Definition] = 'Burglary/Breaking and Entering is a behavior associated with the incident.', [SortOrder] = 5.00 WHERE [Code] = '04633' END +SET [Description] = 'Burglary/Breaking and Entering', [Definition] = 'Burglary/Breaking and Entering is a behavior associated with the incident.', [SortOrder] = 7.00 WHERE [Code] = '04633' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04634') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04634', 'Disorderly Conduct', 'Disorderly Conduct is a behavior associated with the incident.', 6.00) END +VALUES ('04634', 'Disorderly Conduct', 'Disorderly Conduct is a behavior associated with the incident.', 8.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Disorderly Conduct', [Definition] = 'Disorderly Conduct is a behavior associated with the incident.', [SortOrder] = 6.00 WHERE [Code] = '04634' END +SET [Description] = 'Disorderly Conduct', [Definition] = 'Disorderly Conduct is a behavior associated with the incident.', [SortOrder] = 8.00 WHERE [Code] = '04634' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75000') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75000', 'Domestic Assault', 'Domestic Assault is any attempt to cause or willfully or recklessly cause bodily injury to a family or household member or willfully causes a family or household member to fear imminent serious bodily injury.', 9.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Domestic Assault', [Definition] = 'Domestic Assault is any attempt to cause or willfully or recklessly cause bodily injury to a family or household member or willfully causes a family or household member to fear imminent serious bodily injury.', [SortOrder] = 9.00 WHERE [Code] = '75000' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04635') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04635', 'Drugs Excluding Alcohol and Tobacco', 'Drugs Excluding Alcohol and Tobacco is a behavior associated with the incident.', 7.00) END +VALUES ('04635', 'Drugs Excluding Alcohol and Tobacco', 'Drugs Excluding Alcohol and Tobacco is a behavior associated with the incident.', 10.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Drugs Excluding Alcohol and Tobacco', [Definition] = 'Drugs Excluding Alcohol and Tobacco is a behavior associated with the incident.', [SortOrder] = 10.00 WHERE [Code] = '04635' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75006') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75006', 'Electronic Bullying', 'Electronic bullying, which is bullying behaviors that occur using technology including, but not limited to, phones, email, chat rooms, instant messaging, and online posts, is a behavior associated with the incident.', 11.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Drugs Excluding Alcohol and Tobacco', [Definition] = 'Drugs Excluding Alcohol and Tobacco is a behavior associated with the incident.', [SortOrder] = 7.00 WHERE [Code] = '04635' END +SET [Description] = 'Electronic Bullying', [Definition] = 'Electronic bullying, which is bullying behaviors that occur using technology including, but not limited to, phones, email, chat rooms, instant messaging, and online posts, is a behavior associated with the incident.', [SortOrder] = 11.00 WHERE [Code] = '75006' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04645') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04645', 'Fighting', 'Fighting is a behavior associated with the incident.', 8.00) END +VALUES ('04645', 'Fighting', 'Fighting is a behavior associated with the incident.', 12.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Fighting', [Definition] = 'Fighting is a behavior associated with the incident.', [SortOrder] = 8.00 WHERE [Code] = '04645' END +SET [Description] = 'Fighting', [Definition] = 'Fighting is a behavior associated with the incident.', [SortOrder] = 12.00 WHERE [Code] = '04645' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '13354') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13354', 'Harassment or bullying on the basis of disability', 'Harassment or bullying on the basis of disability is a behavior associated with the incident.', 9.00) END +VALUES ('13354', 'Harassment or bullying on the basis of disability', 'Harassment or bullying on the basis of disability is a behavior associated with the incident.', 13.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment or bullying on the basis of disability', [Definition] = 'Harassment or bullying on the basis of disability is a behavior associated with the incident.', [SortOrder] = 9.00 WHERE [Code] = '13354' END +SET [Description] = 'Harassment or bullying on the basis of disability', [Definition] = 'Harassment or bullying on the basis of disability is a behavior associated with the incident.', [SortOrder] = 13.00 WHERE [Code] = '13354' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '13355') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13355', 'Harassment or bullying on the basis of race, color, or national origin', 'Harassment or bullying on the basis of race, color, or national origin is a behavior associated with the incident.', 10.00) END +VALUES ('13355', 'Harassment or bullying on the basis of race, color, or national origin', 'Harassment or bullying on the basis of race, color, or national origin is a behavior associated with the incident.', 14.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment or bullying on the basis of race, color, or national origin', [Definition] = 'Harassment or bullying on the basis of race, color, or national origin is a behavior associated with the incident.', [SortOrder] = 10.00 WHERE [Code] = '13355' END +SET [Description] = 'Harassment or bullying on the basis of race, color, or national origin', [Definition] = 'Harassment or bullying on the basis of race, color, or national origin is a behavior associated with the incident.', [SortOrder] = 14.00 WHERE [Code] = '13355' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '13356') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13356', 'Harassment or bullying on the basis of sex', 'Harassment or bullying on the basis of sex is a behavior associated with the incident.', 11.00) END +VALUES ('13356', 'Harassment or bullying on the basis of sex', 'Harassment or bullying on the basis of sex is a behavior associated with the incident.', 15.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment or bullying on the basis of sex', [Definition] = 'Harassment or bullying on the basis of sex is a behavior associated with the incident.', [SortOrder] = 11.00 WHERE [Code] = '13356' END +SET [Description] = 'Harassment or bullying on the basis of sex', [Definition] = 'Harassment or bullying on the basis of sex is a behavior associated with the incident.', [SortOrder] = 15.00 WHERE [Code] = '13356' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04646') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04646', 'Harassment, Nonsexual', 'Harassment, Nonsexual is a behavior associated with the incident.', 12.00) END +VALUES ('04646', 'Harassment, Nonsexual', 'Harassment, Nonsexual is a behavior associated with the incident.', 16.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment, Nonsexual', [Definition] = 'Harassment, Nonsexual is a behavior associated with the incident.', [SortOrder] = 12.00 WHERE [Code] = '04646' END +SET [Description] = 'Harassment, Nonsexual', [Definition] = 'Harassment, Nonsexual is a behavior associated with the incident.', [SortOrder] = 16.00 WHERE [Code] = '04646' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04650') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04650', 'Harassment, Sexual', 'Harassment, Sexual is a behavior associated with the incident.', 13.00) END +VALUES ('04650', 'Harassment, Sexual', 'Harassment, Sexual is a behavior associated with the incident.', 17.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment, Sexual', [Definition] = 'Harassment, Sexual is a behavior associated with the incident.', [SortOrder] = 13.00 WHERE [Code] = '04650' END +SET [Description] = 'Harassment, Sexual', [Definition] = 'Harassment, Sexual is a behavior associated with the incident.', [SortOrder] = 17.00 WHERE [Code] = '04650' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75003') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75003', 'Hazing', 'Hazing is any act committed by a person, whether individually or in concert with others, against a student in connection with pledging, being initiated into, affiliating with, holding office in, or maintaining membership in any organization which is affiliated with an educational institution; and which is intended to have the effect of, or should reasonably be expected to have the effect of, humiliating, intimidating or demeaning the student or endangering the mental or physical health of a student.', 18.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Hazing', [Definition] = 'Hazing is any act committed by a person, whether individually or in concert with others, against a student in connection with pledging, being initiated into, affiliating with, holding office in, or maintaining membership in any organization which is affiliated with an educational institution; and which is intended to have the effect of, or should reasonably be expected to have the effect of, humiliating, intimidating or demeaning the student or endangering the mental or physical health of a student.', [SortOrder] = 18.00 WHERE [Code] = '75003' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04651') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04651', 'Homicide', 'Homicide is a behavior associated with the incident.', 14.00) END +VALUES ('04651', 'Homicide', 'Homicide is a behavior associated with the incident.', 19.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Homicide', [Definition] = 'Homicide is a behavior associated with the incident.', [SortOrder] = 14.00 WHERE [Code] = '04651' END +SET [Description] = 'Homicide', [Definition] = 'Homicide is a behavior associated with the incident.', [SortOrder] = 19.00 WHERE [Code] = '04651' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04652') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04652', 'Inappropriate Use of Medication', 'Inappropriate Use of Medication is a behavior associated with the incident.', 15.00) END +VALUES ('04652', 'Inappropriate Use of Medication', 'Inappropriate Use of Medication is a behavior associated with the incident.', 20.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Inappropriate Use of Medication', [Definition] = 'Inappropriate Use of Medication is a behavior associated with the incident.', [SortOrder] = 15.00 WHERE [Code] = '04652' END +SET [Description] = 'Inappropriate Use of Medication', [Definition] = 'Inappropriate Use of Medication is a behavior associated with the incident.', [SortOrder] = 20.00 WHERE [Code] = '04652' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04659') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04659', 'Insubordination', 'Insubordination is a behavior associated with the incident.', 16.00) END +VALUES ('04659', 'Insubordination', 'Insubordination is a behavior associated with the incident.', 21.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Insubordination', [Definition] = 'Insubordination is a behavior associated with the incident.', [SortOrder] = 16.00 WHERE [Code] = '04659' END +SET [Description] = 'Insubordination', [Definition] = 'Insubordination is a behavior associated with the incident.', [SortOrder] = 21.00 WHERE [Code] = '04659' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04660') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04660', 'Kidnapping', 'Kidnapping is a behavior associated with the incident.', 17.00) END +VALUES ('04660', 'Kidnapping', 'Kidnapping is a behavior associated with the incident.', 22.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Kidnapping', [Definition] = 'Kidnapping is a behavior associated with the incident.', [SortOrder] = 17.00 WHERE [Code] = '04660' END +SET [Description] = 'Kidnapping', [Definition] = 'Kidnapping is a behavior associated with the incident.', [SortOrder] = 22.00 WHERE [Code] = '04660' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04661') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04661', 'Obscene Behavior', 'Obscene Behavior is a behavior associated with the incident.', 18.00) END +VALUES ('04661', 'Obscene Behavior', 'Obscene Behavior is a behavior associated with the incident.', 23.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Obscene Behavior', [Definition] = 'Obscene Behavior is a behavior associated with the incident.', [SortOrder] = 18.00 WHERE [Code] = '04661' END +SET [Description] = 'Obscene Behavior', [Definition] = 'Obscene Behavior is a behavior associated with the incident.', [SortOrder] = 23.00 WHERE [Code] = '04661' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04669') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04669', 'Physical Altercation, Minor', 'Physical Altercation, Minor is a behavior associated with the incident.', 19.00) END +VALUES ('04669', 'Physical Altercation, Minor', 'Physical Altercation, Minor is a behavior associated with the incident.', 24.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Physical Altercation, Minor', [Definition] = 'Physical Altercation, Minor is a behavior associated with the incident.', [SortOrder] = 24.00 WHERE [Code] = '04669' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75007') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75007', 'Rape or Attempted Rape', 'Rape or attempted rape, which is forced sexual intercourse (vaginal, anal, or oral penetration) including sodomy and penetration with a foreign object, is a behavior associated with the incident.', 25.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Physical Altercation, Minor', [Definition] = 'Physical Altercation, Minor is a behavior associated with the incident.', [SortOrder] = 19.00 WHERE [Code] = '04669' END +SET [Description] = 'Rape or Attempted Rape', [Definition] = 'Rape or attempted rape, which is forced sexual intercourse (vaginal, anal, or oral penetration) including sodomy and penetration with a foreign object, is a behavior associated with the incident.', [SortOrder] = 25.00 WHERE [Code] = '75007' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04670') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04670', 'Robbery', 'Robbery is a behavior associated with the incident.', 20.00) END +VALUES ('04670', 'Robbery', 'Robbery is a behavior associated with the incident.', 26.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Robbery', [Definition] = 'Robbery is a behavior associated with the incident.', [SortOrder] = 20.00 WHERE [Code] = '04670' END +SET [Description] = 'Robbery', [Definition] = 'Robbery is a behavior associated with the incident.', [SortOrder] = 26.00 WHERE [Code] = '04670' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04671') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04671', 'School Threat', 'School Threat is a behavior associated with the incident.', 21.00) END +VALUES ('04671', 'School Threat', 'School Threat is a behavior associated with the incident.', 27.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'School Threat', [Definition] = 'School Threat is a behavior associated with the incident.', [SortOrder] = 21.00 WHERE [Code] = '04671' END +SET [Description] = 'School Threat', [Definition] = 'School Threat is a behavior associated with the incident.', [SortOrder] = 27.00 WHERE [Code] = '04671' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04677') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04677', 'Sexual Battery (sexual assault)', 'Sexual Battery (sexual assault) is a behavior associated with the incident.', 22.00) END +VALUES ('04677', 'Sexual Battery (sexual assault)', 'Sexual Battery (sexual assault) is a behavior associated with the incident.', 28.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Sexual Battery (sexual assault)', [Definition] = 'Sexual Battery (sexual assault) is a behavior associated with the incident.', [SortOrder] = 22.00 WHERE [Code] = '04677' END +SET [Description] = 'Sexual Battery (sexual assault)', [Definition] = 'Sexual Battery (sexual assault) is a behavior associated with the incident.', [SortOrder] = 28.00 WHERE [Code] = '04677' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04678') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04678', 'Sexual Offenses, Other (lewd behavior, indecent exposure)', 'Sexual Offenses, Other (lewd behavior, indecent exposure) is a behavior associated with the incident.', 23.00) END +VALUES ('04678', 'Sexual Offenses, Other (lewd behavior, indecent exposure)', 'Sexual Offenses, Other (lewd behavior, indecent exposure) is a behavior associated with the incident.', 29.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Sexual Offenses, Other (lewd behavior, indecent exposure)', [Definition] = 'Sexual Offenses, Other (lewd behavior, indecent exposure) is a behavior associated with the incident.', [SortOrder] = 23.00 WHERE [Code] = '04678' END +SET [Description] = 'Sexual Offenses, Other (lewd behavior, indecent exposure)', [Definition] = 'Sexual Offenses, Other (lewd behavior, indecent exposure) is a behavior associated with the incident.', [SortOrder] = 29.00 WHERE [Code] = '04678' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75001') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75001', 'Stalking', 'Stalking is to engage in the course of conduct that consists of following or lying-in-wait or harassing and serves no legitimate purpose and causes the person to fear for his or her physical safety or causes the person substantial emotional distress.', 30.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Stalking', [Definition] = 'Stalking is to engage in the course of conduct that consists of following or lying-in-wait or harassing and serves no legitimate purpose and causes the person to fear for his or her physical safety or causes the person substantial emotional distress.', [SortOrder] = 30.00 WHERE [Code] = '75001' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04682') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04682', 'Theft', 'Theft is a behavior associated with the incident.', 24.00) END +VALUES ('04682', 'Theft', 'Theft is a behavior associated with the incident.', 31.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Theft', [Definition] = 'Theft is a behavior associated with the incident.', [SortOrder] = 24.00 WHERE [Code] = '04682' END +SET [Description] = 'Theft', [Definition] = 'Theft is a behavior associated with the incident.', [SortOrder] = 31.00 WHERE [Code] = '04682' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04686') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04686', 'Threat/Intimidation', 'Threat/Intimidation is a behavior associated with the incident.', 25.00) END +VALUES ('04686', 'Threat/Intimidation', 'Threat/Intimidation is a behavior associated with the incident.', 32.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Threat/Intimidation', [Definition] = 'Threat/Intimidation is a behavior associated with the incident.', [SortOrder] = 25.00 WHERE [Code] = '04686' END +SET [Description] = 'Threat/Intimidation', [Definition] = 'Threat/Intimidation is a behavior associated with the incident.', [SortOrder] = 32.00 WHERE [Code] = '04686' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04692') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04692', 'Tobacco Possession or Use', 'Tobacco Possession or Use is a behavior associated with the incident.', 26.00) END +VALUES ('04692', 'Tobacco Possession or Use', 'Tobacco Possession or Use is a behavior associated with the incident.', 33.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Tobacco Possession or Use', [Definition] = 'Tobacco Possession or Use is a behavior associated with the incident.', [SortOrder] = 26.00 WHERE [Code] = '04692' END +SET [Description] = 'Tobacco Possession or Use', [Definition] = 'Tobacco Possession or Use is a behavior associated with the incident.', [SortOrder] = 33.00 WHERE [Code] = '04692' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04699') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04699', 'Trespassing', 'Trespassing is a behavior associated with the incident.', 27.00) END +VALUES ('04699', 'Trespassing', 'Trespassing is a behavior associated with the incident.', 34.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Trespassing', [Definition] = 'Trespassing is a behavior associated with the incident.', [SortOrder] = 34.00 WHERE [Code] = '04699' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75002') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75002', 'Unlawful Restraint', 'Unlawful restraint is a behavior associated with the incident.', 35.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Trespassing', [Definition] = 'Trespassing is a behavior associated with the incident.', [SortOrder] = 27.00 WHERE [Code] = '04699' END +SET [Description] = 'Unlawful Restraint', [Definition] = 'Unlawful restraint is a behavior associated with the incident.', [SortOrder] = 35.00 WHERE [Code] = '75002' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04700') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04700', 'Vandalism', 'Vandalism is a behavior associated with the incident.', 28.00) END +VALUES ('04700', 'Vandalism', 'Vandalism is a behavior associated with the incident.', 36.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Vandalism', [Definition] = 'Vandalism is a behavior associated with the incident.', [SortOrder] = 28.00 WHERE [Code] = '04700' END +SET [Description] = 'Vandalism', [Definition] = 'Vandalism is a behavior associated with the incident.', [SortOrder] = 36.00 WHERE [Code] = '04700' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04704') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04704', 'Violation of School Rules', 'Violation of School Rules is a behavior associated with the incident.', 29.00) END +VALUES ('04704', 'Violation of School Rules', 'Violation of School Rules is a behavior associated with the incident.', 37.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Violation of School Rules', [Definition] = 'Violation of School Rules is a behavior associated with the incident.', [SortOrder] = 29.00 WHERE [Code] = '04704' END +SET [Description] = 'Violation of School Rules', [Definition] = 'Violation of School Rules is a behavior associated with the incident.', [SortOrder] = 37.00 WHERE [Code] = '04704' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04705') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04705', 'Weapons Possession', 'Weapons Possession is a behavior associated with the incident.', 30.00) END +VALUES ('04705', 'Weapons Possession', 'Weapons Possession is a behavior associated with the incident.', 38.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Weapons Possession', [Definition] = 'Weapons Possession is a behavior associated with the incident.', [SortOrder] = 30.00 WHERE [Code] = '04705' END +SET [Description] = 'Weapons Possession', [Definition] = 'Weapons Possession is a behavior associated with the incident.', [SortOrder] = 38.00 WHERE [Code] = '04705' END END PRINT N'Populate RefIncidentBehaviorSecondary table' @@ -23072,31641 +23219,31669 @@ PRINT N'Populate RefISO6393Language table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefISO6393Language]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmn', '!Xóõ', NULL, 0.10) END +VALUES ('nmn', '!Xóõ', NULL, 1.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '!Xóõ', [Definition] = NULL, [SortOrder] = 0.10 WHERE [Code] = 'nmn' END +SET [Description] = '!Xóõ', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'nmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alu', '''Are''are', NULL, 0.20) END +VALUES ('alu', '''Are''are', NULL, 2.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '''Are''are', [Definition] = NULL, [SortOrder] = 0.20 WHERE [Code] = 'alu' END +SET [Description] = '''Are''are', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'alu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kud', '''Auhelawa', NULL, 0.30) END +VALUES ('kud', '''Auhelawa', NULL, 3.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '''Auhelawa', [Definition] = NULL, [SortOrder] = 0.30 WHERE [Code] = 'kud' END +SET [Description] = '''Auhelawa', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'kud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnh', '//Ani', NULL, 0.40) END +VALUES ('hnh', '//Ani', NULL, 4.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '//Ani', [Definition] = NULL, [SortOrder] = 0.40 WHERE [Code] = 'hnh' END +SET [Description] = '//Ani', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'hnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xeg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xeg', '//Xegwi', NULL, 0.50) END +VALUES ('xeg', '//Xegwi', NULL, 5.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '//Xegwi', [Definition] = NULL, [SortOrder] = 0.50 WHERE [Code] = 'xeg' END +SET [Description] = '//Xegwi', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = 'xeg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwj', '/Gwi', NULL, 0.60) END +VALUES ('gwj', '/Gwi', NULL, 6.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '/Gwi', [Definition] = NULL, [SortOrder] = 0.60 WHERE [Code] = 'gwj' END +SET [Description] = '/Gwi', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = 'gwj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xam', '/Xam', NULL, 0.70) END +VALUES ('xam', '/Xam', NULL, 7.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '/Xam', [Definition] = NULL, [SortOrder] = 0.70 WHERE [Code] = 'xam' END +SET [Description] = '/Xam', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = 'xam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huc', '=/Hua', NULL, 0.80) END +VALUES ('huc', '=/Hua', NULL, 8.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '=/Hua', [Definition] = NULL, [SortOrder] = 0.80 WHERE [Code] = 'huc' END +SET [Description] = '=/Hua', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = 'huc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnk', '||Gana', NULL, 0.90) END +VALUES ('gnk', '||Gana', NULL, 9.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '||Gana', [Definition] = NULL, [SortOrder] = 0.90 WHERE [Code] = 'gnk' END +SET [Description] = '||Gana', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = 'gnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aou', 'A''ou', NULL, 1.00) END +VALUES ('aou', 'A''ou', NULL, 10.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'A''ou', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'aou' END +SET [Description] = 'A''ou', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = 'aou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apq', 'A-Pucikwar', NULL, 1.10) END +VALUES ('apq', 'A-Pucikwar', NULL, 11.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'A-Pucikwar', [Definition] = NULL, [SortOrder] = 1.10 WHERE [Code] = 'apq' END +SET [Description] = 'A-Pucikwar', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = 'apq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aiw', 'Aari', NULL, 1.20) END +VALUES ('aiw', 'Aari', NULL, 12.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aari', [Definition] = NULL, [SortOrder] = 1.20 WHERE [Code] = 'aiw' END +SET [Description] = 'Aari', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = 'aiw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aas', 'Aasáx', NULL, 1.30) END +VALUES ('aas', 'Aasáx', NULL, 13.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aasáx', [Definition] = NULL, [SortOrder] = 1.30 WHERE [Code] = 'aas' END +SET [Description] = 'Aasáx', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = 'aas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbt', 'Abadi', NULL, 1.40) END +VALUES ('kbt', 'Abadi', NULL, 14.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abadi', [Definition] = NULL, [SortOrder] = 1.40 WHERE [Code] = 'kbt' END +SET [Description] = 'Abadi', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = 'kbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abg', 'Abaga', NULL, 1.50) END +VALUES ('abg', 'Abaga', NULL, 15.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abaga', [Definition] = NULL, [SortOrder] = 1.50 WHERE [Code] = 'abg' END +SET [Description] = 'Abaga', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = 'abg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abf', 'Abai Sungai', NULL, 1.60) END +VALUES ('abf', 'Abai Sungai', NULL, 16.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abai Sungai', [Definition] = NULL, [SortOrder] = 1.60 WHERE [Code] = 'abf' END +SET [Description] = 'Abai Sungai', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = 'abf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abm', 'Abanyom', NULL, 1.70) END +VALUES ('abm', 'Abanyom', NULL, 17.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abanyom', [Definition] = NULL, [SortOrder] = 1.70 WHERE [Code] = 'abm' END +SET [Description] = 'Abanyom', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = 'abm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mij', 'Abar', NULL, 1.80) END +VALUES ('mij', 'Abar', NULL, 18.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abar', [Definition] = NULL, [SortOrder] = 1.80 WHERE [Code] = 'mij' END +SET [Description] = 'Abar', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = 'mij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aau', 'Abau', NULL, 1.90) END +VALUES ('aau', 'Abau', NULL, 19.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abau', [Definition] = NULL, [SortOrder] = 1.90 WHERE [Code] = 'aau' END +SET [Description] = 'Abau', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = 'aau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abq', 'Abaza', NULL, 2.00) END +VALUES ('abq', 'Abaza', NULL, 20.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abaza', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'abq' END +SET [Description] = 'Abaza', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = 'abq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aba', 'Abé', NULL, 2.10) END +VALUES ('aba', 'Abé', NULL, 21.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abé', [Definition] = NULL, [SortOrder] = 2.10 WHERE [Code] = 'aba' END +SET [Description] = 'Abé', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = 'aba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abp', 'Abellen Ayta', NULL, 2.20) END +VALUES ('abp', 'Abellen Ayta', NULL, 22.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abellen Ayta', [Definition] = NULL, [SortOrder] = 2.20 WHERE [Code] = 'abp' END +SET [Description] = 'Abellen Ayta', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = 'abp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abi', 'Abidji', NULL, 2.30) END +VALUES ('abi', 'Abidji', NULL, 23.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abidji', [Definition] = NULL, [SortOrder] = 2.30 WHERE [Code] = 'abi' END +SET [Description] = 'Abidji', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = 'abi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsa', 'Abinomn', NULL, 2.40) END +VALUES ('bsa', 'Abinomn', NULL, 24.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abinomn', [Definition] = NULL, [SortOrder] = 2.40 WHERE [Code] = 'bsa' END +SET [Description] = 'Abinomn', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = 'bsa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axb', 'Abipon', NULL, 2.50) END +VALUES ('axb', 'Abipon', NULL, 25.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abipon', [Definition] = NULL, [SortOrder] = 2.50 WHERE [Code] = 'axb' END +SET [Description] = 'Abipon', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = 'axb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ash') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ash', 'Abishira', NULL, 2.60) END +VALUES ('ash', 'Abishira', NULL, 26.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abishira', [Definition] = NULL, [SortOrder] = 2.60 WHERE [Code] = 'ash' END +SET [Description] = 'Abishira', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = 'ash' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abk', 'Abkhazian', NULL, 2.70) END +VALUES ('abk', 'Abkhazian', NULL, 27.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abkhazian', [Definition] = NULL, [SortOrder] = 2.70 WHERE [Code] = 'abk' END +SET [Description] = 'Abkhazian', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = 'abk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aob', 'Abom', NULL, 2.80) END +VALUES ('aob', 'Abom', NULL, 28.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abom', [Definition] = NULL, [SortOrder] = 2.80 WHERE [Code] = 'aob' END +SET [Description] = 'Abom', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = 'aob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abo', 'Abon', NULL, 2.90) END +VALUES ('abo', 'Abon', NULL, 29.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abon', [Definition] = NULL, [SortOrder] = 2.90 WHERE [Code] = 'abo' END +SET [Description] = 'Abon', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = 'abo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abr', 'Abron', NULL, 3.00) END +VALUES ('abr', 'Abron', NULL, 30.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abron', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'abr' END +SET [Description] = 'Abron', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = 'abr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ado') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ado', 'Abu', NULL, 3.10) END +VALUES ('ado', 'Abu', NULL, 31.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abu', [Definition] = NULL, [SortOrder] = 3.10 WHERE [Code] = 'ado' END +SET [Description] = 'Abu', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = 'ado' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aah', 'Abu'' Arapesh', NULL, 3.20) END +VALUES ('aah', 'Abu'' Arapesh', NULL, 32.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abu'' Arapesh', [Definition] = NULL, [SortOrder] = 3.20 WHERE [Code] = 'aah' END +SET [Description] = 'Abu'' Arapesh', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = 'aah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abn', 'Abua', NULL, 3.30) END +VALUES ('abn', 'Abua', NULL, 33.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abua', [Definition] = NULL, [SortOrder] = 3.30 WHERE [Code] = 'abn' END +SET [Description] = 'Abua', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = 'abn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abz', 'Abui', NULL, 3.40) END +VALUES ('abz', 'Abui', NULL, 34.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abui', [Definition] = NULL, [SortOrder] = 3.40 WHERE [Code] = 'abz' END +SET [Description] = 'Abui', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = 'abz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgr', 'Abun', NULL, 3.50) END +VALUES ('kgr', 'Abun', NULL, 35.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abun', [Definition] = NULL, [SortOrder] = 3.50 WHERE [Code] = 'kgr' END +SET [Description] = 'Abun', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = 'kgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abu', 'Abure', NULL, 3.60) END +VALUES ('abu', 'Abure', NULL, 36.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abure', [Definition] = NULL, [SortOrder] = 3.60 WHERE [Code] = 'abu' END +SET [Description] = 'Abure', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = 'abu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgj', 'Abureni', NULL, 3.70) END +VALUES ('mgj', 'Abureni', NULL, 37.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abureni', [Definition] = NULL, [SortOrder] = 3.70 WHERE [Code] = 'mgj' END +SET [Description] = 'Abureni', [Definition] = NULL, [SortOrder] = 37.00 WHERE [Code] = 'mgj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpx', 'Acatepec Me''phaa', NULL, 3.80) END +VALUES ('tpx', 'Acatepec Me''phaa', NULL, 38.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Acatepec Me''phaa', [Definition] = NULL, [SortOrder] = 3.80 WHERE [Code] = 'tpx' END +SET [Description] = 'Acatepec Me''phaa', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = 'tpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aca', 'Achagua', NULL, 3.90) END +VALUES ('aca', 'Achagua', NULL, 39.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achagua', [Definition] = NULL, [SortOrder] = 3.90 WHERE [Code] = 'aca' END +SET [Description] = 'Achagua', [Definition] = NULL, [SortOrder] = 39.00 WHERE [Code] = 'aca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acn', 'Achang', NULL, 4.00) END +VALUES ('acn', 'Achang', NULL, 40.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achang', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'acn' END +SET [Description] = 'Achang', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = 'acn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yif', 'Ache', NULL, 4.10) END +VALUES ('yif', 'Ache', NULL, 41.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ache', [Definition] = NULL, [SortOrder] = 4.10 WHERE [Code] = 'yif' END +SET [Description] = 'Ache', [Definition] = NULL, [SortOrder] = 41.00 WHERE [Code] = 'yif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guq', 'Aché', NULL, 4.20) END +VALUES ('guq', 'Aché', NULL, 42.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aché', [Definition] = NULL, [SortOrder] = 4.20 WHERE [Code] = 'guq' END +SET [Description] = 'Aché', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = 'guq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acz', 'Acheron', NULL, 4.30) END +VALUES ('acz', 'Acheron', NULL, 43.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Acheron', [Definition] = NULL, [SortOrder] = 4.30 WHERE [Code] = 'acz' END +SET [Description] = 'Acheron', [Definition] = NULL, [SortOrder] = 43.00 WHERE [Code] = 'acz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acr', 'Achi', NULL, 4.40) END +VALUES ('acr', 'Achi', NULL, 44.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achi', [Definition] = NULL, [SortOrder] = 4.40 WHERE [Code] = 'acr' END +SET [Description] = 'Achi', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = 'acr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ace') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ace', 'Achinese', NULL, 4.50) END +VALUES ('ace', 'Achinese', NULL, 45.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achinese', [Definition] = NULL, [SortOrder] = 4.50 WHERE [Code] = 'ace' END +SET [Description] = 'Achinese', [Definition] = NULL, [SortOrder] = 45.00 WHERE [Code] = 'ace' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'act') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('act', 'Achterhoeks', NULL, 4.60) END +VALUES ('act', 'Achterhoeks', NULL, 46.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achterhoeks', [Definition] = NULL, [SortOrder] = 4.60 WHERE [Code] = 'act' END +SET [Description] = 'Achterhoeks', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = 'act' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acu', 'Achuar-Shiwiar', NULL, 4.70) END +VALUES ('acu', 'Achuar-Shiwiar', NULL, 47.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achuar-Shiwiar', [Definition] = NULL, [SortOrder] = 4.70 WHERE [Code] = 'acu' END +SET [Description] = 'Achuar-Shiwiar', [Definition] = NULL, [SortOrder] = 47.00 WHERE [Code] = 'acu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acv', 'Achumawi', NULL, 4.80) END +VALUES ('acv', 'Achumawi', NULL, 48.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achumawi', [Definition] = NULL, [SortOrder] = 4.80 WHERE [Code] = 'acv' END +SET [Description] = 'Achumawi', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = 'acv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ach') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ach', 'Acoli', NULL, 4.90) END +VALUES ('ach', 'Acoli', NULL, 49.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Acoli', [Definition] = NULL, [SortOrder] = 4.90 WHERE [Code] = 'ach' END +SET [Description] = 'Acoli', [Definition] = NULL, [SortOrder] = 49.00 WHERE [Code] = 'ach' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acs', 'Acroá', NULL, 5.00) END +VALUES ('acs', 'Acroá', NULL, 50.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Acroá', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = 'acs' END +SET [Description] = 'Acroá', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = 'acs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xad', 'Adai', NULL, 5.10) END +VALUES ('xad', 'Adai', NULL, 51.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adai', [Definition] = NULL, [SortOrder] = 5.10 WHERE [Code] = 'xad' END +SET [Description] = 'Adai', [Definition] = NULL, [SortOrder] = 51.00 WHERE [Code] = 'xad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fub', 'Adamawa Fulfulde', NULL, 5.20) END +VALUES ('fub', 'Adamawa Fulfulde', NULL, 52.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adamawa Fulfulde', [Definition] = NULL, [SortOrder] = 5.20 WHERE [Code] = 'fub' END +SET [Description] = 'Adamawa Fulfulde', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = 'fub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ads') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ads', 'Adamorobe Sign Language', NULL, 5.30) END +VALUES ('ads', 'Adamorobe Sign Language', NULL, 53.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adamorobe Sign Language', [Definition] = NULL, [SortOrder] = 5.30 WHERE [Code] = 'ads' END +SET [Description] = 'Adamorobe Sign Language', [Definition] = NULL, [SortOrder] = 53.00 WHERE [Code] = 'ads' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adn', 'Adang', NULL, 5.40) END +VALUES ('adn', 'Adang', NULL, 54.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adang', [Definition] = NULL, [SortOrder] = 5.40 WHERE [Code] = 'adn' END +SET [Description] = 'Adang', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = 'adn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adq', 'Adangbe', NULL, 5.50) END +VALUES ('adq', 'Adangbe', NULL, 55.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adangbe', [Definition] = NULL, [SortOrder] = 5.50 WHERE [Code] = 'adq' END +SET [Description] = 'Adangbe', [Definition] = NULL, [SortOrder] = 55.00 WHERE [Code] = 'adq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ada') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ada', 'Adangme', NULL, 5.60) END +VALUES ('ada', 'Adangme', NULL, 56.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adangme', [Definition] = NULL, [SortOrder] = 5.60 WHERE [Code] = 'ada' END +SET [Description] = 'Adangme', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = 'ada' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kad', 'Adara', NULL, 5.70) END +VALUES ('kad', 'Adara', NULL, 57.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adara', [Definition] = NULL, [SortOrder] = 5.70 WHERE [Code] = 'kad' END +SET [Description] = 'Adara', [Definition] = NULL, [SortOrder] = 57.00 WHERE [Code] = 'kad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiu', 'Adasen', NULL, 5.80) END +VALUES ('tiu', 'Adasen', NULL, 58.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adasen', [Definition] = NULL, [SortOrder] = 5.80 WHERE [Code] = 'tiu' END +SET [Description] = 'Adasen', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = 'tiu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ade') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ade', 'Adele', NULL, 5.90) END +VALUES ('ade', 'Adele', NULL, 59.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adele', [Definition] = NULL, [SortOrder] = 5.90 WHERE [Code] = 'ade' END +SET [Description] = 'Adele', [Definition] = NULL, [SortOrder] = 59.00 WHERE [Code] = 'ade' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adh', 'Adhola', NULL, 6.00) END +VALUES ('adh', 'Adhola', NULL, 60.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adhola', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = 'adh' END +SET [Description] = 'Adhola', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = 'adh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adi', 'Adi', NULL, 6.10) END +VALUES ('adi', 'Adi', NULL, 61.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adi', [Definition] = NULL, [SortOrder] = 6.10 WHERE [Code] = 'adi' END +SET [Description] = 'Adi', [Definition] = NULL, [SortOrder] = 61.00 WHERE [Code] = 'adi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsg', 'Adilabad Gondi', NULL, 6.20) END +VALUES ('wsg', 'Adilabad Gondi', NULL, 62.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adilabad Gondi', [Definition] = NULL, [SortOrder] = 6.20 WHERE [Code] = 'wsg' END +SET [Description] = 'Adilabad Gondi', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = 'wsg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adj', 'Adioukrou', NULL, 6.30) END +VALUES ('adj', 'Adioukrou', NULL, 63.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adioukrou', [Definition] = NULL, [SortOrder] = 6.30 WHERE [Code] = 'adj' END +SET [Description] = 'Adioukrou', [Definition] = NULL, [SortOrder] = 63.00 WHERE [Code] = 'adj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dth', 'Adithinngithigh', NULL, 6.40) END +VALUES ('dth', 'Adithinngithigh', NULL, 64.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adithinngithigh', [Definition] = NULL, [SortOrder] = 6.40 WHERE [Code] = 'dth' END +SET [Description] = 'Adithinngithigh', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = 'dth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ort') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ort', 'Adivasi Oriya', NULL, 6.50) END +VALUES ('ort', 'Adivasi Oriya', NULL, 65.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adivasi Oriya', [Definition] = NULL, [SortOrder] = 6.50 WHERE [Code] = 'ort' END +SET [Description] = 'Adivasi Oriya', [Definition] = NULL, [SortOrder] = 65.00 WHERE [Code] = 'ort' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gas', 'Adiwasi Garasia', NULL, 6.60) END +VALUES ('gas', 'Adiwasi Garasia', NULL, 66.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adiwasi Garasia', [Definition] = NULL, [SortOrder] = 6.60 WHERE [Code] = 'gas' END +SET [Description] = 'Adiwasi Garasia', [Definition] = NULL, [SortOrder] = 66.00 WHERE [Code] = 'gas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adt', 'Adnyamathanha', NULL, 6.70) END +VALUES ('adt', 'Adnyamathanha', NULL, 67.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adnyamathanha', [Definition] = NULL, [SortOrder] = 6.70 WHERE [Code] = 'adt' END +SET [Description] = 'Adnyamathanha', [Definition] = NULL, [SortOrder] = 67.00 WHERE [Code] = 'adt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adr', 'Adonara', NULL, 6.80) END +VALUES ('adr', 'Adonara', NULL, 68.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adonara', [Definition] = NULL, [SortOrder] = 6.80 WHERE [Code] = 'adr' END +SET [Description] = 'Adonara', [Definition] = NULL, [SortOrder] = 68.00 WHERE [Code] = 'adr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adu', 'Aduge', NULL, 6.90) END +VALUES ('adu', 'Aduge', NULL, 69.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aduge', [Definition] = NULL, [SortOrder] = 6.90 WHERE [Code] = 'adu' END +SET [Description] = 'Aduge', [Definition] = NULL, [SortOrder] = 69.00 WHERE [Code] = 'adu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ady') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ady', 'Adyghe', NULL, 7.00) END +VALUES ('ady', 'Adyghe', NULL, 70.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adyghe', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = 'ady' END +SET [Description] = 'Adyghe', [Definition] = NULL, [SortOrder] = 70.00 WHERE [Code] = 'ady' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adz', 'Adzera', NULL, 7.10) END +VALUES ('adz', 'Adzera', NULL, 71.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adzera', [Definition] = NULL, [SortOrder] = 7.10 WHERE [Code] = 'adz' END +SET [Description] = 'Adzera', [Definition] = NULL, [SortOrder] = 71.00 WHERE [Code] = 'adz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aez', 'Aeka', NULL, 7.20) END +VALUES ('aez', 'Aeka', NULL, 72.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aeka', [Definition] = NULL, [SortOrder] = 7.20 WHERE [Code] = 'aez' END +SET [Description] = 'Aeka', [Definition] = NULL, [SortOrder] = 72.00 WHERE [Code] = 'aez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awi', 'Aekyom', NULL, 7.30) END +VALUES ('awi', 'Aekyom', NULL, 73.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aekyom', [Definition] = NULL, [SortOrder] = 7.30 WHERE [Code] = 'awi' END +SET [Description] = 'Aekyom', [Definition] = NULL, [SortOrder] = 73.00 WHERE [Code] = 'awi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xae', 'Aequian', NULL, 7.40) END +VALUES ('xae', 'Aequian', NULL, 74.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aequian', [Definition] = NULL, [SortOrder] = 7.40 WHERE [Code] = 'xae' END +SET [Description] = 'Aequian', [Definition] = NULL, [SortOrder] = 74.00 WHERE [Code] = 'xae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aeq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aeq', 'Aer', NULL, 7.50) END +VALUES ('aeq', 'Aer', NULL, 75.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aer', [Definition] = NULL, [SortOrder] = 7.50 WHERE [Code] = 'aeq' END +SET [Description] = 'Aer', [Definition] = NULL, [SortOrder] = 75.00 WHERE [Code] = 'aeq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aal', 'Afade', NULL, 7.60) END +VALUES ('aal', 'Afade', NULL, 76.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afade', [Definition] = NULL, [SortOrder] = 7.60 WHERE [Code] = 'aal' END +SET [Description] = 'Afade', [Definition] = NULL, [SortOrder] = 76.00 WHERE [Code] = 'aal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aar', 'Afar', NULL, 7.70) END +VALUES ('aar', 'Afar', NULL, 77.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afar', [Definition] = NULL, [SortOrder] = 7.70 WHERE [Code] = 'aar' END +SET [Description] = 'Afar', [Definition] = NULL, [SortOrder] = 77.00 WHERE [Code] = 'aar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afg', 'Afghan Sign Language', NULL, 7.80) END +VALUES ('afg', 'Afghan Sign Language', NULL, 78.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afghan Sign Language', [Definition] = NULL, [SortOrder] = 7.80 WHERE [Code] = 'afg' END +SET [Description] = 'Afghan Sign Language', [Definition] = NULL, [SortOrder] = 78.00 WHERE [Code] = 'afg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aft', 'Afitti', NULL, 7.90) END +VALUES ('aft', 'Afitti', NULL, 79.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afitti', [Definition] = NULL, [SortOrder] = 7.90 WHERE [Code] = 'aft' END +SET [Description] = 'Afitti', [Definition] = NULL, [SortOrder] = 79.00 WHERE [Code] = 'aft' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afh', 'Afrihili', NULL, 8.00) END +VALUES ('afh', 'Afrihili', NULL, 80.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afrihili', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = 'afh' END +SET [Description] = 'Afrihili', [Definition] = NULL, [SortOrder] = 80.00 WHERE [Code] = 'afh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afr', 'Afrikaans', NULL, 8.10) END +VALUES ('afr', 'Afrikaans', NULL, 81.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afrikaans', [Definition] = NULL, [SortOrder] = 8.10 WHERE [Code] = 'afr' END +SET [Description] = 'Afrikaans', [Definition] = NULL, [SortOrder] = 81.00 WHERE [Code] = 'afr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afs', 'Afro-Seminole Creole', NULL, 8.20) END +VALUES ('afs', 'Afro-Seminole Creole', NULL, 82.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afro-Seminole Creole', [Definition] = NULL, [SortOrder] = 8.20 WHERE [Code] = 'afs' END +SET [Description] = 'Afro-Seminole Creole', [Definition] = NULL, [SortOrder] = 82.00 WHERE [Code] = 'afs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agd', 'Agarabi', NULL, 8.30) END +VALUES ('agd', 'Agarabi', NULL, 83.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agarabi', [Definition] = NULL, [SortOrder] = 8.30 WHERE [Code] = 'agd' END +SET [Description] = 'Agarabi', [Definition] = NULL, [SortOrder] = 83.00 WHERE [Code] = 'agd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agi', 'Agariya', NULL, 8.40) END +VALUES ('agi', 'Agariya', NULL, 84.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agariya', [Definition] = NULL, [SortOrder] = 8.40 WHERE [Code] = 'agi' END +SET [Description] = 'Agariya', [Definition] = NULL, [SortOrder] = 84.00 WHERE [Code] = 'agi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agc', 'Agatu', NULL, 8.50) END +VALUES ('agc', 'Agatu', NULL, 85.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agatu', [Definition] = NULL, [SortOrder] = 8.50 WHERE [Code] = 'agc' END +SET [Description] = 'Agatu', [Definition] = NULL, [SortOrder] = 85.00 WHERE [Code] = 'agc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avo', 'Agavotaguerra', NULL, 8.60) END +VALUES ('avo', 'Agavotaguerra', NULL, 86.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agavotaguerra', [Definition] = NULL, [SortOrder] = 8.60 WHERE [Code] = 'avo' END +SET [Description] = 'Agavotaguerra', [Definition] = NULL, [SortOrder] = 86.00 WHERE [Code] = 'avo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agq', 'Aghem', NULL, 8.70) END +VALUES ('agq', 'Aghem', NULL, 87.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghem', [Definition] = NULL, [SortOrder] = 8.70 WHERE [Code] = 'agq' END +SET [Description] = 'Aghem', [Definition] = NULL, [SortOrder] = 87.00 WHERE [Code] = 'agq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahh', 'Aghu', NULL, 8.80) END +VALUES ('ahh', 'Aghu', NULL, 88.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghu', [Definition] = NULL, [SortOrder] = 8.80 WHERE [Code] = 'ahh' END +SET [Description] = 'Aghu', [Definition] = NULL, [SortOrder] = 88.00 WHERE [Code] = 'ahh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gtu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gtu', 'Aghu-Tharnggala', NULL, 8.90) END +VALUES ('gtu', 'Aghu-Tharnggala', NULL, 89.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghu-Tharnggala', [Definition] = NULL, [SortOrder] = 8.90 WHERE [Code] = 'gtu' END +SET [Description] = 'Aghu-Tharnggala', [Definition] = NULL, [SortOrder] = 89.00 WHERE [Code] = 'gtu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agx', 'Aghul', NULL, 9.00) END +VALUES ('agx', 'Aghul', NULL, 90.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghul', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = 'agx' END +SET [Description] = 'Aghul', [Definition] = NULL, [SortOrder] = 90.00 WHERE [Code] = 'agx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xag', 'Aghwan', NULL, 9.10) END +VALUES ('xag', 'Aghwan', NULL, 91.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghwan', [Definition] = NULL, [SortOrder] = 9.10 WHERE [Code] = 'xag' END +SET [Description] = 'Aghwan', [Definition] = NULL, [SortOrder] = 91.00 WHERE [Code] = 'xag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aif', 'Agi', NULL, 9.20) END +VALUES ('aif', 'Agi', NULL, 92.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agi', [Definition] = NULL, [SortOrder] = 9.20 WHERE [Code] = 'aif' END +SET [Description] = 'Agi', [Definition] = NULL, [SortOrder] = 92.00 WHERE [Code] = 'aif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kit', 'Agob', NULL, 9.30) END +VALUES ('kit', 'Agob', NULL, 93.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agob', [Definition] = NULL, [SortOrder] = 9.30 WHERE [Code] = 'kit' END +SET [Description] = 'Agob', [Definition] = NULL, [SortOrder] = 93.00 WHERE [Code] = 'kit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibm', 'Agoi', NULL, 9.40) END +VALUES ('ibm', 'Agoi', NULL, 94.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agoi', [Definition] = NULL, [SortOrder] = 9.40 WHERE [Code] = 'ibm' END +SET [Description] = 'Agoi', [Definition] = NULL, [SortOrder] = 94.00 WHERE [Code] = 'ibm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agu', 'Aguacateco', NULL, 9.50) END +VALUES ('agu', 'Aguacateco', NULL, 95.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aguacateco', [Definition] = NULL, [SortOrder] = 9.50 WHERE [Code] = 'agu' END +SET [Description] = 'Aguacateco', [Definition] = NULL, [SortOrder] = 95.00 WHERE [Code] = 'agu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aga', 'Aguano', NULL, 9.60) END +VALUES ('aga', 'Aguano', NULL, 96.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aguano', [Definition] = NULL, [SortOrder] = 9.60 WHERE [Code] = 'aga' END +SET [Description] = 'Aguano', [Definition] = NULL, [SortOrder] = 96.00 WHERE [Code] = 'aga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agr', 'Aguaruna', NULL, 9.70) END +VALUES ('agr', 'Aguaruna', NULL, 97.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aguaruna', [Definition] = NULL, [SortOrder] = 9.70 WHERE [Code] = 'agr' END +SET [Description] = 'Aguaruna', [Definition] = NULL, [SortOrder] = 97.00 WHERE [Code] = 'agr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aug', 'Aguna', NULL, 9.80) END +VALUES ('aug', 'Aguna', NULL, 98.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aguna', [Definition] = NULL, [SortOrder] = 9.80 WHERE [Code] = 'aug' END +SET [Description] = 'Aguna', [Definition] = NULL, [SortOrder] = 98.00 WHERE [Code] = 'aug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msm', 'Agusan Manobo', NULL, 9.90) END +VALUES ('msm', 'Agusan Manobo', NULL, 99.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agusan Manobo', [Definition] = NULL, [SortOrder] = 9.90 WHERE [Code] = 'msm' END +SET [Description] = 'Agusan Manobo', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = 'msm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agn', 'Agutaynen', NULL, 10.00) END +VALUES ('agn', 'Agutaynen', NULL, 100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agutaynen', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = 'agn' END +SET [Description] = 'Agutaynen', [Definition] = NULL, [SortOrder] = 100.00 WHERE [Code] = 'agn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yay', 'Agwagwune', NULL, 10.10) END +VALUES ('yay', 'Agwagwune', NULL, 101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agwagwune', [Definition] = NULL, [SortOrder] = 10.10 WHERE [Code] = 'yay' END +SET [Description] = 'Agwagwune', [Definition] = NULL, [SortOrder] = 101.00 WHERE [Code] = 'yay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahn', 'Àhàn', NULL, 10.20) END +VALUES ('ahn', 'Àhàn', NULL, 102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Àhàn', [Definition] = NULL, [SortOrder] = 10.20 WHERE [Code] = 'ahn' END +SET [Description] = 'Àhàn', [Definition] = NULL, [SortOrder] = 102.00 WHERE [Code] = 'ahn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aha', 'Ahanta', NULL, 10.30) END +VALUES ('aha', 'Ahanta', NULL, 103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahanta', [Definition] = NULL, [SortOrder] = 10.30 WHERE [Code] = 'aha' END +SET [Description] = 'Ahanta', [Definition] = NULL, [SortOrder] = 103.00 WHERE [Code] = 'aha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esg', 'Aheri Gondi', NULL, 10.40) END +VALUES ('esg', 'Aheri Gondi', NULL, 104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aheri Gondi', [Definition] = NULL, [SortOrder] = 10.40 WHERE [Code] = 'esg' END +SET [Description] = 'Aheri Gondi', [Definition] = NULL, [SortOrder] = 104.00 WHERE [Code] = 'esg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thm', 'Aheu', NULL, 10.50) END +VALUES ('thm', 'Aheu', NULL, 105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aheu', [Definition] = NULL, [SortOrder] = 10.50 WHERE [Code] = 'thm' END +SET [Description] = 'Aheu', [Definition] = NULL, [SortOrder] = 105.00 WHERE [Code] = 'thm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahr', 'Ahirani', NULL, 10.60) END +VALUES ('ahr', 'Ahirani', NULL, 106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahirani', [Definition] = NULL, [SortOrder] = 10.60 WHERE [Code] = 'ahr' END +SET [Description] = 'Ahirani', [Definition] = NULL, [SortOrder] = 106.00 WHERE [Code] = 'ahr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aho', 'Ahom', NULL, 10.70) END +VALUES ('aho', 'Ahom', NULL, 107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahom', [Definition] = NULL, [SortOrder] = 10.70 WHERE [Code] = 'aho' END +SET [Description] = 'Ahom', [Definition] = NULL, [SortOrder] = 107.00 WHERE [Code] = 'aho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aht', 'Ahtena', NULL, 10.80) END +VALUES ('aht', 'Ahtena', NULL, 108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahtena', [Definition] = NULL, [SortOrder] = 10.80 WHERE [Code] = 'aht' END +SET [Description] = 'Ahtena', [Definition] = NULL, [SortOrder] = 108.00 WHERE [Code] = 'aht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfd', 'Ahwai', NULL, 10.90) END +VALUES ('nfd', 'Ahwai', NULL, 109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahwai', [Definition] = NULL, [SortOrder] = 10.90 WHERE [Code] = 'nfd' END +SET [Description] = 'Ahwai', [Definition] = NULL, [SortOrder] = 109.00 WHERE [Code] = 'nfd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aih', 'Ai-Cham', NULL, 11.00) END +VALUES ('aih', 'Ai-Cham', NULL, 110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ai-Cham', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = 'aih' END +SET [Description] = 'Ai-Cham', [Definition] = NULL, [SortOrder] = 110.00 WHERE [Code] = 'aih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aix', 'Aighon', NULL, 11.10) END +VALUES ('aix', 'Aighon', NULL, 111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aighon', [Definition] = NULL, [SortOrder] = 11.10 WHERE [Code] = 'aix' END +SET [Description] = 'Aighon', [Definition] = NULL, [SortOrder] = 111.00 WHERE [Code] = 'aix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tba', 'Aikanã', NULL, 11.20) END +VALUES ('tba', 'Aikanã', NULL, 112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aikanã', [Definition] = NULL, [SortOrder] = 11.20 WHERE [Code] = 'tba' END +SET [Description] = 'Aikanã', [Definition] = NULL, [SortOrder] = 112.00 WHERE [Code] = 'tba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwg', 'Aiklep', NULL, 11.30) END +VALUES ('mwg', 'Aiklep', NULL, 113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aiklep', [Definition] = NULL, [SortOrder] = 11.30 WHERE [Code] = 'mwg' END +SET [Description] = 'Aiklep', [Definition] = NULL, [SortOrder] = 113.00 WHERE [Code] = 'mwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aiq', 'Aimaq', NULL, 11.40) END +VALUES ('aiq', 'Aimaq', NULL, 114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aimaq', [Definition] = NULL, [SortOrder] = 11.40 WHERE [Code] = 'aiq' END +SET [Description] = 'Aimaq', [Definition] = NULL, [SortOrder] = 114.00 WHERE [Code] = 'aiq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ail') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ail', 'Aimele', NULL, 11.50) END +VALUES ('ail', 'Aimele', NULL, 115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aimele', [Definition] = NULL, [SortOrder] = 11.50 WHERE [Code] = 'ail' END +SET [Description] = 'Aimele', [Definition] = NULL, [SortOrder] = 115.00 WHERE [Code] = 'ail' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aim', 'Aimol', NULL, 11.60) END +VALUES ('aim', 'Aimol', NULL, 116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aimol', [Definition] = NULL, [SortOrder] = 11.60 WHERE [Code] = 'aim' END +SET [Description] = 'Aimol', [Definition] = NULL, [SortOrder] = 116.00 WHERE [Code] = 'aim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aic', 'Ainbai', NULL, 11.70) END +VALUES ('aic', 'Ainbai', NULL, 117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ainbai', [Definition] = NULL, [SortOrder] = 11.70 WHERE [Code] = 'aic' END +SET [Description] = 'Ainbai', [Definition] = NULL, [SortOrder] = 117.00 WHERE [Code] = 'aic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aib', 'Ainu (China)', NULL, 11.80) END +VALUES ('aib', 'Ainu (China)', NULL, 118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ainu (China)', [Definition] = NULL, [SortOrder] = 11.80 WHERE [Code] = 'aib' END +SET [Description] = 'Ainu (China)', [Definition] = NULL, [SortOrder] = 118.00 WHERE [Code] = 'aib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ain') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ain', 'Ainu (Japan)', NULL, 11.90) END +VALUES ('ain', 'Ainu (Japan)', NULL, 119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ainu (Japan)', [Definition] = NULL, [SortOrder] = 11.90 WHERE [Code] = 'ain' END +SET [Description] = 'Ainu (Japan)', [Definition] = NULL, [SortOrder] = 119.00 WHERE [Code] = 'ain' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aki', 'Aiome', NULL, 12.00) END +VALUES ('aki', 'Aiome', NULL, 120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aiome', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = 'aki' END +SET [Description] = 'Aiome', [Definition] = NULL, [SortOrder] = 120.00 WHERE [Code] = 'aki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'air') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('air', 'Airoran', NULL, 12.10) END +VALUES ('air', 'Airoran', NULL, 121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Airoran', [Definition] = NULL, [SortOrder] = 12.10 WHERE [Code] = 'air' END +SET [Description] = 'Airoran', [Definition] = NULL, [SortOrder] = 121.00 WHERE [Code] = 'air' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aio', 'Aiton', NULL, 12.20) END +VALUES ('aio', 'Aiton', NULL, 122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aiton', [Definition] = NULL, [SortOrder] = 12.20 WHERE [Code] = 'aio' END +SET [Description] = 'Aiton', [Definition] = NULL, [SortOrder] = 122.00 WHERE [Code] = 'aio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajg', 'Aja (Benin)', NULL, 12.30) END +VALUES ('ajg', 'Aja (Benin)', NULL, 123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aja (Benin)', [Definition] = NULL, [SortOrder] = 12.30 WHERE [Code] = 'ajg' END +SET [Description] = 'Aja (Benin)', [Definition] = NULL, [SortOrder] = 123.00 WHERE [Code] = 'ajg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aja', 'Aja (South Sudan)', NULL, 12.40) END +VALUES ('aja', 'Aja (South Sudan)', NULL, 124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aja (South Sudan)', [Definition] = NULL, [SortOrder] = 12.40 WHERE [Code] = 'aja' END +SET [Description] = 'Aja (South Sudan)', [Definition] = NULL, [SortOrder] = 124.00 WHERE [Code] = 'aja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajw', 'Ajawa', NULL, 12.50) END +VALUES ('ajw', 'Ajawa', NULL, 125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ajawa', [Definition] = NULL, [SortOrder] = 12.50 WHERE [Code] = 'ajw' END +SET [Description] = 'Ajawa', [Definition] = NULL, [SortOrder] = 125.00 WHERE [Code] = 'ajw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aji', 'Ajië', NULL, 12.60) END +VALUES ('aji', 'Ajië', NULL, 126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ajië', [Definition] = NULL, [SortOrder] = 12.60 WHERE [Code] = 'aji' END +SET [Description] = 'Ajië', [Definition] = NULL, [SortOrder] = 126.00 WHERE [Code] = 'aji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muc', 'Ajumbu', NULL, 12.70) END +VALUES ('muc', 'Ajumbu', NULL, 127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ajumbu', [Definition] = NULL, [SortOrder] = 12.70 WHERE [Code] = 'muc' END +SET [Description] = 'Ajumbu', [Definition] = NULL, [SortOrder] = 127.00 WHERE [Code] = 'muc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpc', 'Ajyíninka Apurucayali', NULL, 12.80) END +VALUES ('cpc', 'Ajyíninka Apurucayali', NULL, 128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ajyíninka Apurucayali', [Definition] = NULL, [SortOrder] = 12.80 WHERE [Code] = 'cpc' END +SET [Description] = 'Ajyíninka Apurucayali', [Definition] = NULL, [SortOrder] = 128.00 WHERE [Code] = 'cpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akq', 'Ak', NULL, 12.90) END +VALUES ('akq', 'Ak', NULL, 129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ak', [Definition] = NULL, [SortOrder] = 12.90 WHERE [Code] = 'akq' END +SET [Description] = 'Ak', [Definition] = NULL, [SortOrder] = 129.00 WHERE [Code] = 'akq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soh', 'Aka', NULL, 13.00) END +VALUES ('soh', 'Aka', NULL, 130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = 'soh' END +SET [Description] = 'Aka', [Definition] = NULL, [SortOrder] = 130.00 WHERE [Code] = 'soh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abj', 'Aka-Bea', NULL, 13.10) END +VALUES ('abj', 'Aka-Bea', NULL, 131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Bea', [Definition] = NULL, [SortOrder] = 13.10 WHERE [Code] = 'abj' END +SET [Description] = 'Aka-Bea', [Definition] = NULL, [SortOrder] = 131.00 WHERE [Code] = 'abj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akm', 'Aka-Bo', NULL, 13.20) END +VALUES ('akm', 'Aka-Bo', NULL, 132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Bo', [Definition] = NULL, [SortOrder] = 13.20 WHERE [Code] = 'akm' END +SET [Description] = 'Aka-Bo', [Definition] = NULL, [SortOrder] = 132.00 WHERE [Code] = 'akm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aci', 'Aka-Cari', NULL, 13.30) END +VALUES ('aci', 'Aka-Cari', NULL, 133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Cari', [Definition] = NULL, [SortOrder] = 13.30 WHERE [Code] = 'aci' END +SET [Description] = 'Aka-Cari', [Definition] = NULL, [SortOrder] = 133.00 WHERE [Code] = 'aci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akj', 'Aka-Jeru', NULL, 13.40) END +VALUES ('akj', 'Aka-Jeru', NULL, 134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Jeru', [Definition] = NULL, [SortOrder] = 13.40 WHERE [Code] = 'akj' END +SET [Description] = 'Aka-Jeru', [Definition] = NULL, [SortOrder] = 134.00 WHERE [Code] = 'akj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akx', 'Aka-Kede', NULL, 13.50) END +VALUES ('akx', 'Aka-Kede', NULL, 135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Kede', [Definition] = NULL, [SortOrder] = 13.50 WHERE [Code] = 'akx' END +SET [Description] = 'Aka-Kede', [Definition] = NULL, [SortOrder] = 135.00 WHERE [Code] = 'akx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aky', 'Aka-Kol', NULL, 13.60) END +VALUES ('aky', 'Aka-Kol', NULL, 136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Kol', [Definition] = NULL, [SortOrder] = 13.60 WHERE [Code] = 'aky' END +SET [Description] = 'Aka-Kol', [Definition] = NULL, [SortOrder] = 136.00 WHERE [Code] = 'aky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ack') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ack', 'Aka-Kora', NULL, 13.70) END +VALUES ('ack', 'Aka-Kora', NULL, 137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Kora', [Definition] = NULL, [SortOrder] = 13.70 WHERE [Code] = 'ack' END +SET [Description] = 'Aka-Kora', [Definition] = NULL, [SortOrder] = 137.00 WHERE [Code] = 'ack' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aka', 'Akan', NULL, 13.80) END +VALUES ('aka', 'Akan', NULL, 138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akan', [Definition] = NULL, [SortOrder] = 13.80 WHERE [Code] = 'aka' END +SET [Description] = 'Akan', [Definition] = NULL, [SortOrder] = 138.00 WHERE [Code] = 'aka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acl', 'Akar-Bale', NULL, 13.90) END +VALUES ('acl', 'Akar-Bale', NULL, 139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akar-Bale', [Definition] = NULL, [SortOrder] = 13.90 WHERE [Code] = 'acl' END +SET [Description] = 'Akar-Bale', [Definition] = NULL, [SortOrder] = 139.00 WHERE [Code] = 'acl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aks', 'Akaselem', NULL, 14.00) END +VALUES ('aks', 'Akaselem', NULL, 140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akaselem', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = 'aks' END +SET [Description] = 'Akaselem', [Definition] = NULL, [SortOrder] = 140.00 WHERE [Code] = 'aks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ake') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ake', 'Akawaio', NULL, 14.10) END +VALUES ('ake', 'Akawaio', NULL, 141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akawaio', [Definition] = NULL, [SortOrder] = 14.10 WHERE [Code] = 'ake' END +SET [Description] = 'Akawaio', [Definition] = NULL, [SortOrder] = 141.00 WHERE [Code] = 'ake' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aik', 'Ake', NULL, 14.20) END +VALUES ('aik', 'Ake', NULL, 142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ake', [Definition] = NULL, [SortOrder] = 14.20 WHERE [Code] = 'aik' END +SET [Description] = 'Ake', [Definition] = NULL, [SortOrder] = 142.00 WHERE [Code] = 'aik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keu', 'Akebu', NULL, 14.30) END +VALUES ('keu', 'Akebu', NULL, 143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akebu', [Definition] = NULL, [SortOrder] = 14.30 WHERE [Code] = 'keu' END +SET [Description] = 'Akebu', [Definition] = NULL, [SortOrder] = 143.00 WHERE [Code] = 'keu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsr', 'Akei', NULL, 14.40) END +VALUES ('tsr', 'Akei', NULL, 144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akei', [Definition] = NULL, [SortOrder] = 14.40 WHERE [Code] = 'tsr' END +SET [Description] = 'Akei', [Definition] = NULL, [SortOrder] = 144.00 WHERE [Code] = 'tsr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aeu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aeu', 'Akeu', NULL, 14.50) END +VALUES ('aeu', 'Akeu', NULL, 145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akeu', [Definition] = NULL, [SortOrder] = 14.50 WHERE [Code] = 'aeu' END +SET [Description] = 'Akeu', [Definition] = NULL, [SortOrder] = 145.00 WHERE [Code] = 'aeu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahk', 'Akha', NULL, 14.60) END +VALUES ('ahk', 'Akha', NULL, 146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akha', [Definition] = NULL, [SortOrder] = 14.60 WHERE [Code] = 'ahk' END +SET [Description] = 'Akha', [Definition] = NULL, [SortOrder] = 146.00 WHERE [Code] = 'ahk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akv', 'Akhvakh', NULL, 14.70) END +VALUES ('akv', 'Akhvakh', NULL, 147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akhvakh', [Definition] = NULL, [SortOrder] = 14.70 WHERE [Code] = 'akv' END +SET [Description] = 'Akhvakh', [Definition] = NULL, [SortOrder] = 147.00 WHERE [Code] = 'akv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akk', 'Akkadian', NULL, 14.80) END +VALUES ('akk', 'Akkadian', NULL, 148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akkadian', [Definition] = NULL, [SortOrder] = 14.80 WHERE [Code] = 'akk' END +SET [Description] = 'Akkadian', [Definition] = NULL, [SortOrder] = 148.00 WHERE [Code] = 'akk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sia', 'Akkala Sami', NULL, 14.90) END +VALUES ('sia', 'Akkala Sami', NULL, 149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akkala Sami', [Definition] = NULL, [SortOrder] = 14.90 WHERE [Code] = 'sia' END +SET [Description] = 'Akkala Sami', [Definition] = NULL, [SortOrder] = 149.00 WHERE [Code] = 'sia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akl', 'Aklanon', NULL, 15.00) END +VALUES ('akl', 'Aklanon', NULL, 150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aklanon', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = 'akl' END +SET [Description] = 'Aklanon', [Definition] = NULL, [SortOrder] = 150.00 WHERE [Code] = 'akl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akt', 'Akolet', NULL, 15.10) END +VALUES ('akt', 'Akolet', NULL, 151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akolet', [Definition] = NULL, [SortOrder] = 15.10 WHERE [Code] = 'akt' END +SET [Description] = 'Akolet', [Definition] = NULL, [SortOrder] = 151.00 WHERE [Code] = 'akt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bss', 'Akoose', NULL, 15.20) END +VALUES ('bss', 'Akoose', NULL, 152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akoose', [Definition] = NULL, [SortOrder] = 15.20 WHERE [Code] = 'bss' END +SET [Description] = 'Akoose', [Definition] = NULL, [SortOrder] = 152.00 WHERE [Code] = 'bss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miw', 'Akoye', NULL, 15.30) END +VALUES ('miw', 'Akoye', NULL, 153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akoye', [Definition] = NULL, [SortOrder] = 15.30 WHERE [Code] = 'miw' END +SET [Description] = 'Akoye', [Definition] = NULL, [SortOrder] = 153.00 WHERE [Code] = 'miw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akf', 'Akpa', NULL, 15.40) END +VALUES ('akf', 'Akpa', NULL, 154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akpa', [Definition] = NULL, [SortOrder] = 15.40 WHERE [Code] = 'akf' END +SET [Description] = 'Akpa', [Definition] = NULL, [SortOrder] = 154.00 WHERE [Code] = 'akf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibe', 'Akpes', NULL, 15.50) END +VALUES ('ibe', 'Akpes', NULL, 155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akpes', [Definition] = NULL, [SortOrder] = 15.50 WHERE [Code] = 'ibe' END +SET [Description] = 'Akpes', [Definition] = NULL, [SortOrder] = 155.00 WHERE [Code] = 'ibe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afi', 'Akrukay', NULL, 15.60) END +VALUES ('afi', 'Akrukay', NULL, 156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akrukay', [Definition] = NULL, [SortOrder] = 15.60 WHERE [Code] = 'afi' END +SET [Description] = 'Akrukay', [Definition] = NULL, [SortOrder] = 156.00 WHERE [Code] = 'afi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spm', 'Akukem', NULL, 15.70) END +VALUES ('spm', 'Akukem', NULL, 157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akukem', [Definition] = NULL, [SortOrder] = 15.70 WHERE [Code] = 'spm' END +SET [Description] = 'Akukem', [Definition] = NULL, [SortOrder] = 157.00 WHERE [Code] = 'spm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayk', 'Akuku', NULL, 15.80) END +VALUES ('ayk', 'Akuku', NULL, 158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akuku', [Definition] = NULL, [SortOrder] = 15.80 WHERE [Code] = 'ayk' END +SET [Description] = 'Akuku', [Definition] = NULL, [SortOrder] = 158.00 WHERE [Code] = 'ayk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aku', 'Akum', NULL, 15.90) END +VALUES ('aku', 'Akum', NULL, 159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akum', [Definition] = NULL, [SortOrder] = 15.90 WHERE [Code] = 'aku' END +SET [Description] = 'Akum', [Definition] = NULL, [SortOrder] = 159.00 WHERE [Code] = 'aku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqz', 'Akuntsu', NULL, 16.00) END +VALUES ('aqz', 'Akuntsu', NULL, 160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akuntsu', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = 'aqz' END +SET [Description] = 'Akuntsu', [Definition] = NULL, [SortOrder] = 160.00 WHERE [Code] = 'aqz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ako') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ako', 'Akurio', NULL, 16.10) END +VALUES ('ako', 'Akurio', NULL, 161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akurio', [Definition] = NULL, [SortOrder] = 16.10 WHERE [Code] = 'ako' END +SET [Description] = 'Akurio', [Definition] = NULL, [SortOrder] = 161.00 WHERE [Code] = 'ako' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akw', 'Akwa', NULL, 16.20) END +VALUES ('akw', 'Akwa', NULL, 162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akwa', [Definition] = NULL, [SortOrder] = 16.20 WHERE [Code] = 'akw' END +SET [Description] = 'Akwa', [Definition] = NULL, [SortOrder] = 162.00 WHERE [Code] = 'akw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqy', 'Akyaung Ari Naga', NULL, 16.30) END +VALUES ('nqy', 'Akyaung Ari Naga', NULL, 163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akyaung Ari Naga', [Definition] = NULL, [SortOrder] = 16.30 WHERE [Code] = 'nqy' END +SET [Description] = 'Akyaung Ari Naga', [Definition] = NULL, [SortOrder] = 163.00 WHERE [Code] = 'nqy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syy', 'Al-Sayyid Bedouin Sign Language', NULL, 16.40) END +VALUES ('syy', 'Al-Sayyid Bedouin Sign Language', NULL, 164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Al-Sayyid Bedouin Sign Language', [Definition] = NULL, [SortOrder] = 16.40 WHERE [Code] = 'syy' END +SET [Description] = 'Al-Sayyid Bedouin Sign Language', [Definition] = NULL, [SortOrder] = 164.00 WHERE [Code] = 'syy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alw', 'Alaba-K''abeena', NULL, 16.50) END +VALUES ('alw', 'Alaba-K''abeena', NULL, 165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alaba-K''abeena', [Definition] = NULL, [SortOrder] = 16.50 WHERE [Code] = 'alw' END +SET [Description] = 'Alaba-K''abeena', [Definition] = NULL, [SortOrder] = 165.00 WHERE [Code] = 'alw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akz', 'Alabama', NULL, 16.60) END +VALUES ('akz', 'Alabama', NULL, 166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alabama', [Definition] = NULL, [SortOrder] = 16.60 WHERE [Code] = 'akz' END +SET [Description] = 'Alabama', [Definition] = NULL, [SortOrder] = 166.00 WHERE [Code] = 'akz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dul', 'Alabat Island Agta', NULL, 16.70) END +VALUES ('dul', 'Alabat Island Agta', NULL, 167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alabat Island Agta', [Definition] = NULL, [SortOrder] = 16.70 WHERE [Code] = 'dul' END +SET [Description] = 'Alabat Island Agta', [Definition] = NULL, [SortOrder] = 167.00 WHERE [Code] = 'dul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mim', 'Alacatlatzala Mixtec', NULL, 16.80) END +VALUES ('mim', 'Alacatlatzala Mixtec', NULL, 168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alacatlatzala Mixtec', [Definition] = NULL, [SortOrder] = 16.80 WHERE [Code] = 'mim' END +SET [Description] = 'Alacatlatzala Mixtec', [Definition] = NULL, [SortOrder] = 168.00 WHERE [Code] = 'mim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ala') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ala', 'Alago', NULL, 16.90) END +VALUES ('ala', 'Alago', NULL, 169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alago', [Definition] = NULL, [SortOrder] = 16.90 WHERE [Code] = 'ala' END +SET [Description] = 'Alago', [Definition] = NULL, [SortOrder] = 169.00 WHERE [Code] = 'ala' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbj', 'Alagwa', NULL, 17.00) END +VALUES ('wbj', 'Alagwa', NULL, 170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alagwa', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = 'wbj' END +SET [Description] = 'Alagwa', [Definition] = NULL, [SortOrder] = 170.00 WHERE [Code] = 'wbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alk', 'Alak', NULL, 17.10) END +VALUES ('alk', 'Alak', NULL, 171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alak', [Definition] = NULL, [SortOrder] = 17.10 WHERE [Code] = 'alk' END +SET [Description] = 'Alak', [Definition] = NULL, [SortOrder] = 171.00 WHERE [Code] = 'alk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amp', 'Alamblak', NULL, 17.20) END +VALUES ('amp', 'Alamblak', NULL, 172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alamblak', [Definition] = NULL, [SortOrder] = 17.20 WHERE [Code] = 'amp' END +SET [Description] = 'Alamblak', [Definition] = NULL, [SortOrder] = 172.00 WHERE [Code] = 'amp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alj', 'Alangan', NULL, 17.30) END +VALUES ('alj', 'Alangan', NULL, 173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alangan', [Definition] = NULL, [SortOrder] = 17.30 WHERE [Code] = 'alj' END +SET [Description] = 'Alangan', [Definition] = NULL, [SortOrder] = 173.00 WHERE [Code] = 'alj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xln', 'Alanic', NULL, 17.40) END +VALUES ('xln', 'Alanic', NULL, 174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alanic', [Definition] = NULL, [SortOrder] = 17.40 WHERE [Code] = 'xln' END +SET [Description] = 'Alanic', [Definition] = NULL, [SortOrder] = 174.00 WHERE [Code] = 'xln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apv', 'Alapmunte', NULL, 17.50) END +VALUES ('apv', 'Alapmunte', NULL, 175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alapmunte', [Definition] = NULL, [SortOrder] = 17.50 WHERE [Code] = 'apv' END +SET [Description] = 'Alapmunte', [Definition] = NULL, [SortOrder] = 175.00 WHERE [Code] = 'apv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alh', 'Alawa', NULL, 17.60) END +VALUES ('alh', 'Alawa', NULL, 176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alawa', [Definition] = NULL, [SortOrder] = 17.60 WHERE [Code] = 'alh' END +SET [Description] = 'Alawa', [Definition] = NULL, [SortOrder] = 176.00 WHERE [Code] = 'alh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqi', 'Albanian', NULL, 17.70) END +VALUES ('sqi', 'Albanian', NULL, 177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Albanian', [Definition] = NULL, [SortOrder] = 17.70 WHERE [Code] = 'sqi' END +SET [Description] = 'Albanian', [Definition] = NULL, [SortOrder] = 177.00 WHERE [Code] = 'sqi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqk', 'Albanian Sign Language', NULL, 17.80) END +VALUES ('sqk', 'Albanian Sign Language', NULL, 178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Albanian Sign Language', [Definition] = NULL, [SortOrder] = 17.80 WHERE [Code] = 'sqk' END +SET [Description] = 'Albanian Sign Language', [Definition] = NULL, [SortOrder] = 178.00 WHERE [Code] = 'sqk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsc', 'Albarradas Sign Language', NULL, 17.90) END +VALUES ('lsc', 'Albarradas Sign Language', NULL, 179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Albarradas Sign Language', [Definition] = NULL, [SortOrder] = 17.90 WHERE [Code] = 'lsc' END +SET [Description] = 'Albarradas Sign Language', [Definition] = NULL, [SortOrder] = 179.00 WHERE [Code] = 'lsc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xta', 'Alcozauca Mixtec', NULL, 18.00) END +VALUES ('xta', 'Alcozauca Mixtec', NULL, 180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alcozauca Mixtec', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = 'xta' END +SET [Description] = 'Alcozauca Mixtec', [Definition] = NULL, [SortOrder] = 180.00 WHERE [Code] = 'xta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alf', 'Alege', NULL, 18.10) END +VALUES ('alf', 'Alege', NULL, 181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alege', [Definition] = NULL, [SortOrder] = 18.10 WHERE [Code] = 'alf' END +SET [Description] = 'Alege', [Definition] = NULL, [SortOrder] = 181.00 WHERE [Code] = 'alf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gah', 'Alekano', NULL, 18.20) END +VALUES ('gah', 'Alekano', NULL, 182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alekano', [Definition] = NULL, [SortOrder] = 18.20 WHERE [Code] = 'gah' END +SET [Description] = 'Alekano', [Definition] = NULL, [SortOrder] = 182.00 WHERE [Code] = 'gah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ale') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ale', 'Aleut', NULL, 18.30) END +VALUES ('ale', 'Aleut', NULL, 183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aleut', [Definition] = NULL, [SortOrder] = 18.30 WHERE [Code] = 'ale' END +SET [Description] = 'Aleut', [Definition] = NULL, [SortOrder] = 183.00 WHERE [Code] = 'ale' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arq', 'Algerian Arabic', NULL, 18.40) END +VALUES ('arq', 'Algerian Arabic', NULL, 184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algerian Arabic', [Definition] = NULL, [SortOrder] = 18.40 WHERE [Code] = 'arq' END +SET [Description] = 'Algerian Arabic', [Definition] = NULL, [SortOrder] = 184.00 WHERE [Code] = 'arq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajs', 'Algerian Jewish Sign Language', NULL, 18.50) END +VALUES ('ajs', 'Algerian Jewish Sign Language', NULL, 185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algerian Jewish Sign Language', [Definition] = NULL, [SortOrder] = 18.50 WHERE [Code] = 'ajs' END +SET [Description] = 'Algerian Jewish Sign Language', [Definition] = NULL, [SortOrder] = 185.00 WHERE [Code] = 'ajs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aao', 'Algerian Saharan Arabic', NULL, 18.60) END +VALUES ('aao', 'Algerian Saharan Arabic', NULL, 186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algerian Saharan Arabic', [Definition] = NULL, [SortOrder] = 18.60 WHERE [Code] = 'aao' END +SET [Description] = 'Algerian Saharan Arabic', [Definition] = NULL, [SortOrder] = 186.00 WHERE [Code] = 'aao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asp', 'Algerian Sign Language', NULL, 18.70) END +VALUES ('asp', 'Algerian Sign Language', NULL, 187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algerian Sign Language', [Definition] = NULL, [SortOrder] = 18.70 WHERE [Code] = 'asp' END +SET [Description] = 'Algerian Sign Language', [Definition] = NULL, [SortOrder] = 187.00 WHERE [Code] = 'asp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alq', 'Algonquin', NULL, 18.80) END +VALUES ('alq', 'Algonquin', NULL, 188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algonquin', [Definition] = NULL, [SortOrder] = 18.80 WHERE [Code] = 'alq' END +SET [Description] = 'Algonquin', [Definition] = NULL, [SortOrder] = 188.00 WHERE [Code] = 'alq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aiy', 'Ali', NULL, 18.90) END +VALUES ('aiy', 'Ali', NULL, 189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ali', [Definition] = NULL, [SortOrder] = 18.90 WHERE [Code] = 'aiy' END +SET [Description] = 'Ali', [Definition] = NULL, [SortOrder] = 189.00 WHERE [Code] = 'aiy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ald') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ald', 'Alladian', NULL, 19.00) END +VALUES ('ald', 'Alladian', NULL, 190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alladian', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = 'ald' END +SET [Description] = 'Alladian', [Definition] = NULL, [SortOrder] = 190.00 WHERE [Code] = 'ald' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'all') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('all', 'Allar', NULL, 19.10) END +VALUES ('all', 'Allar', NULL, 191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Allar', [Definition] = NULL, [SortOrder] = 19.10 WHERE [Code] = 'all' END +SET [Description] = 'Allar', [Definition] = NULL, [SortOrder] = 191.00 WHERE [Code] = 'all' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aid', 'Alngith', NULL, 19.20) END +VALUES ('aid', 'Alngith', NULL, 192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alngith', [Definition] = NULL, [SortOrder] = 19.20 WHERE [Code] = 'aid' END +SET [Description] = 'Alngith', [Definition] = NULL, [SortOrder] = 192.00 WHERE [Code] = 'aid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypo', 'Alo Phola', NULL, 19.30) END +VALUES ('ypo', 'Alo Phola', NULL, 193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alo Phola', [Definition] = NULL, [SortOrder] = 19.30 WHERE [Code] = 'ypo' END +SET [Description] = 'Alo Phola', [Definition] = NULL, [SortOrder] = 193.00 WHERE [Code] = 'ypo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaq', 'Aloápam Zapotec', NULL, 19.40) END +VALUES ('zaq', 'Aloápam Zapotec', NULL, 194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aloápam Zapotec', [Definition] = NULL, [SortOrder] = 19.40 WHERE [Code] = 'zaq' END +SET [Description] = 'Aloápam Zapotec', [Definition] = NULL, [SortOrder] = 194.00 WHERE [Code] = 'zaq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aol', 'Alor', NULL, 19.50) END +VALUES ('aol', 'Alor', NULL, 195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alor', [Definition] = NULL, [SortOrder] = 19.50 WHERE [Code] = 'aol' END +SET [Description] = 'Alor', [Definition] = NULL, [SortOrder] = 195.00 WHERE [Code] = 'aol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aes', 'Alsea', NULL, 19.60) END +VALUES ('aes', 'Alsea', NULL, 196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alsea', [Definition] = NULL, [SortOrder] = 19.60 WHERE [Code] = 'aes' END +SET [Description] = 'Alsea', [Definition] = NULL, [SortOrder] = 196.00 WHERE [Code] = 'aes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xua', 'Alu Kurumba', NULL, 19.70) END +VALUES ('xua', 'Alu Kurumba', NULL, 197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alu Kurumba', [Definition] = NULL, [SortOrder] = 19.70 WHERE [Code] = 'xua' END +SET [Description] = 'Alu Kurumba', [Definition] = NULL, [SortOrder] = 197.00 WHERE [Code] = 'xua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aub', 'Alugu', NULL, 19.80) END +VALUES ('aub', 'Alugu', NULL, 198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alugu', [Definition] = NULL, [SortOrder] = 19.80 WHERE [Code] = 'aub' END +SET [Description] = 'Alugu', [Definition] = NULL, [SortOrder] = 198.00 WHERE [Code] = 'aub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aab', 'Alumu-Tesu', NULL, 19.90) END +VALUES ('aab', 'Alumu-Tesu', NULL, 199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alumu-Tesu', [Definition] = NULL, [SortOrder] = 19.90 WHERE [Code] = 'aab' END +SET [Description] = 'Alumu-Tesu', [Definition] = NULL, [SortOrder] = 199.00 WHERE [Code] = 'aab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alp', 'Alune', NULL, 20.00) END +VALUES ('alp', 'Alune', NULL, 200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alune', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = 'alp' END +SET [Description] = 'Alune', [Definition] = NULL, [SortOrder] = 200.00 WHERE [Code] = 'alp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yna', 'Aluo', NULL, 20.10) END +VALUES ('yna', 'Aluo', NULL, 201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aluo', [Definition] = NULL, [SortOrder] = 20.10 WHERE [Code] = 'yna' END +SET [Description] = 'Aluo', [Definition] = NULL, [SortOrder] = 201.00 WHERE [Code] = 'yna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alz', 'Alur', NULL, 20.20) END +VALUES ('alz', 'Alur', NULL, 202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alur', [Definition] = NULL, [SortOrder] = 20.20 WHERE [Code] = 'alz' END +SET [Description] = 'Alur', [Definition] = NULL, [SortOrder] = 202.00 WHERE [Code] = 'alz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alr', 'Alutor', NULL, 20.30) END +VALUES ('alr', 'Alutor', NULL, 203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alutor', [Definition] = NULL, [SortOrder] = 20.30 WHERE [Code] = 'alr' END +SET [Description] = 'Alutor', [Definition] = NULL, [SortOrder] = 203.00 WHERE [Code] = 'alr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avd', 'Alviri-Vidari', NULL, 20.40) END +VALUES ('avd', 'Alviri-Vidari', NULL, 204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alviri-Vidari', [Definition] = NULL, [SortOrder] = 20.40 WHERE [Code] = 'avd' END +SET [Description] = 'Alviri-Vidari', [Definition] = NULL, [SortOrder] = 204.00 WHERE [Code] = 'avd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aly', 'Alyawarr', NULL, 20.50) END +VALUES ('aly', 'Alyawarr', NULL, 205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alyawarr', [Definition] = NULL, [SortOrder] = 20.50 WHERE [Code] = 'aly' END +SET [Description] = 'Alyawarr', [Definition] = NULL, [SortOrder] = 205.00 WHERE [Code] = 'aly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amm', 'Ama (Papua New Guinea)', NULL, 20.60) END +VALUES ('amm', 'Ama (Papua New Guinea)', NULL, 206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ama (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 20.60 WHERE [Code] = 'amm' END +SET [Description] = 'Ama (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 206.00 WHERE [Code] = 'amm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyi', 'Ama (Sudan)', NULL, 20.70) END +VALUES ('nyi', 'Ama (Sudan)', NULL, 207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ama (Sudan)', [Definition] = NULL, [SortOrder] = 20.70 WHERE [Code] = 'nyi' END +SET [Description] = 'Ama (Sudan)', [Definition] = NULL, [SortOrder] = 207.00 WHERE [Code] = 'nyi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amq', 'Amahai', NULL, 20.80) END +VALUES ('amq', 'Amahai', NULL, 208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amahai', [Definition] = NULL, [SortOrder] = 20.80 WHERE [Code] = 'amq' END +SET [Description] = 'Amahai', [Definition] = NULL, [SortOrder] = 208.00 WHERE [Code] = 'amq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amc', 'Amahuaca', NULL, 20.90) END +VALUES ('amc', 'Amahuaca', NULL, 209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amahuaca', [Definition] = NULL, [SortOrder] = 20.90 WHERE [Code] = 'amc' END +SET [Description] = 'Amahuaca', [Definition] = NULL, [SortOrder] = 209.00 WHERE [Code] = 'amc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ali') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ali', 'Amaimon', NULL, 21.00) END +VALUES ('ali', 'Amaimon', NULL, 210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amaimon', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = 'ali' END +SET [Description] = 'Amaimon', [Definition] = NULL, [SortOrder] = 210.00 WHERE [Code] = 'ali' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aad', 'Amal', NULL, 21.10) END +VALUES ('aad', 'Amal', NULL, 211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amal', [Definition] = NULL, [SortOrder] = 21.10 WHERE [Code] = 'aad' END +SET [Description] = 'Amal', [Definition] = NULL, [SortOrder] = 211.00 WHERE [Code] = 'aad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jks', 'Amami Koniya Sign Language', NULL, 21.20) END +VALUES ('jks', 'Amami Koniya Sign Language', NULL, 212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amami Koniya Sign Language', [Definition] = NULL, [SortOrder] = 21.20 WHERE [Code] = 'jks' END +SET [Description] = 'Amami Koniya Sign Language', [Definition] = NULL, [SortOrder] = 212.00 WHERE [Code] = 'jks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amn', 'Amanab', NULL, 21.30) END +VALUES ('amn', 'Amanab', NULL, 213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amanab', [Definition] = NULL, [SortOrder] = 21.30 WHERE [Code] = 'amn' END +SET [Description] = 'Amanab', [Definition] = NULL, [SortOrder] = 213.00 WHERE [Code] = 'amn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ama') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ama', 'Amanayé', NULL, 21.40) END +VALUES ('ama', 'Amanayé', NULL, 214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amanayé', [Definition] = NULL, [SortOrder] = 21.40 WHERE [Code] = 'ama' END +SET [Description] = 'Amanayé', [Definition] = NULL, [SortOrder] = 214.00 WHERE [Code] = 'ama' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aie', 'Amara', NULL, 21.50) END +VALUES ('aie', 'Amara', NULL, 215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amara', [Definition] = NULL, [SortOrder] = 21.50 WHERE [Code] = 'aie' END +SET [Description] = 'Amara', [Definition] = NULL, [SortOrder] = 215.00 WHERE [Code] = 'aie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amr', 'Amarakaeri', NULL, 21.60) END +VALUES ('amr', 'Amarakaeri', NULL, 216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amarakaeri', [Definition] = NULL, [SortOrder] = 21.60 WHERE [Code] = 'amr' END +SET [Description] = 'Amarakaeri', [Definition] = NULL, [SortOrder] = 216.00 WHERE [Code] = 'amr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaz', 'Amarasi', NULL, 21.70) END +VALUES ('aaz', 'Amarasi', NULL, 217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amarasi', [Definition] = NULL, [SortOrder] = 21.70 WHERE [Code] = 'aaz' END +SET [Description] = 'Amarasi', [Definition] = NULL, [SortOrder] = 217.00 WHERE [Code] = 'aaz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpo', 'Amatlán Zapotec', NULL, 21.80) END +VALUES ('zpo', 'Amatlán Zapotec', NULL, 218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amatlán Zapotec', [Definition] = NULL, [SortOrder] = 21.80 WHERE [Code] = 'zpo' END +SET [Description] = 'Amatlán Zapotec', [Definition] = NULL, [SortOrder] = 218.00 WHERE [Code] = 'zpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'utp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('utp', 'Amba (Solomon Islands)', NULL, 21.90) END +VALUES ('utp', 'Amba (Solomon Islands)', NULL, 219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amba (Solomon Islands)', [Definition] = NULL, [SortOrder] = 21.90 WHERE [Code] = 'utp' END +SET [Description] = 'Amba (Solomon Islands)', [Definition] = NULL, [SortOrder] = 219.00 WHERE [Code] = 'utp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwm', 'Amba (Uganda)', NULL, 22.00) END +VALUES ('rwm', 'Amba (Uganda)', NULL, 220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amba (Uganda)', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = 'rwm' END +SET [Description] = 'Amba (Uganda)', [Definition] = NULL, [SortOrder] = 220.00 WHERE [Code] = 'rwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amk', 'Ambai', NULL, 22.10) END +VALUES ('amk', 'Ambai', NULL, 221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambai', [Definition] = NULL, [SortOrder] = 22.10 WHERE [Code] = 'amk' END +SET [Description] = 'Ambai', [Definition] = NULL, [SortOrder] = 221.00 WHERE [Code] = 'amk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aew', 'Ambakich', NULL, 22.20) END +VALUES ('aew', 'Ambakich', NULL, 222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambakich', [Definition] = NULL, [SortOrder] = 22.20 WHERE [Code] = 'aew' END +SET [Description] = 'Ambakich', [Definition] = NULL, [SortOrder] = 222.00 WHERE [Code] = 'aew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abc', 'Ambala Ayta', NULL, 22.30) END +VALUES ('abc', 'Ambala Ayta', NULL, 223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambala Ayta', [Definition] = NULL, [SortOrder] = 22.30 WHERE [Code] = 'abc' END +SET [Description] = 'Ambala Ayta', [Definition] = NULL, [SortOrder] = 223.00 WHERE [Code] = 'abc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amv', 'Ambelau', NULL, 22.40) END +VALUES ('amv', 'Ambelau', NULL, 224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambelau', [Definition] = NULL, [SortOrder] = 22.40 WHERE [Code] = 'amv' END +SET [Description] = 'Ambelau', [Definition] = NULL, [SortOrder] = 224.00 WHERE [Code] = 'amv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ael') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ael', 'Ambele', NULL, 22.50) END +VALUES ('ael', 'Ambele', NULL, 225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambele', [Definition] = NULL, [SortOrder] = 22.50 WHERE [Code] = 'ael' END +SET [Description] = 'Ambele', [Definition] = NULL, [SortOrder] = 225.00 WHERE [Code] = 'ael' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alm', 'Amblong', NULL, 22.60) END +VALUES ('alm', 'Amblong', NULL, 226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amblong', [Definition] = NULL, [SortOrder] = 22.60 WHERE [Code] = 'alm' END +SET [Description] = 'Amblong', [Definition] = NULL, [SortOrder] = 226.00 WHERE [Code] = 'alm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amb', 'Ambo', NULL, 22.70) END +VALUES ('amb', 'Ambo', NULL, 227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambo', [Definition] = NULL, [SortOrder] = 22.70 WHERE [Code] = 'amb' END +SET [Description] = 'Ambo', [Definition] = NULL, [SortOrder] = 227.00 WHERE [Code] = 'amb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qva', 'Ambo-Pasco Quechua', NULL, 22.80) END +VALUES ('qva', 'Ambo-Pasco Quechua', NULL, 228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambo-Pasco Quechua', [Definition] = NULL, [SortOrder] = 22.80 WHERE [Code] = 'qva' END +SET [Description] = 'Ambo-Pasco Quechua', [Definition] = NULL, [SortOrder] = 228.00 WHERE [Code] = 'qva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abs', 'Ambonese Malay', NULL, 22.90) END +VALUES ('abs', 'Ambonese Malay', NULL, 229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambonese Malay', [Definition] = NULL, [SortOrder] = 22.90 WHERE [Code] = 'abs' END +SET [Description] = 'Ambonese Malay', [Definition] = NULL, [SortOrder] = 229.00 WHERE [Code] = 'abs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aag', 'Ambrak', NULL, 23.00) END +VALUES ('aag', 'Ambrak', NULL, 230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambrak', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = 'aag' END +SET [Description] = 'Ambrak', [Definition] = NULL, [SortOrder] = 230.00 WHERE [Code] = 'aag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apo', 'Ambul', NULL, 23.10) END +VALUES ('apo', 'Ambul', NULL, 231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambul', [Definition] = NULL, [SortOrder] = 23.10 WHERE [Code] = 'apo' END +SET [Description] = 'Ambul', [Definition] = NULL, [SortOrder] = 231.00 WHERE [Code] = 'apo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abt', 'Ambulas', NULL, 23.20) END +VALUES ('abt', 'Ambulas', NULL, 232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambulas', [Definition] = NULL, [SortOrder] = 23.20 WHERE [Code] = 'abt' END +SET [Description] = 'Ambulas', [Definition] = NULL, [SortOrder] = 232.00 WHERE [Code] = 'abt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amj', 'Amdang', NULL, 23.30) END +VALUES ('amj', 'Amdang', NULL, 233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amdang', [Definition] = NULL, [SortOrder] = 23.30 WHERE [Code] = 'amj' END +SET [Description] = 'Amdang', [Definition] = NULL, [SortOrder] = 233.00 WHERE [Code] = 'amj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adx', 'Amdo Tibetan', NULL, 23.40) END +VALUES ('adx', 'Amdo Tibetan', NULL, 234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amdo Tibetan', [Definition] = NULL, [SortOrder] = 23.40 WHERE [Code] = 'adx' END +SET [Description] = 'Amdo Tibetan', [Definition] = NULL, [SortOrder] = 234.00 WHERE [Code] = 'adx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aey', 'Amele', NULL, 23.50) END +VALUES ('aey', 'Amele', NULL, 235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amele', [Definition] = NULL, [SortOrder] = 23.50 WHERE [Code] = 'aey' END +SET [Description] = 'Amele', [Definition] = NULL, [SortOrder] = 235.00 WHERE [Code] = 'aey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ase') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ase', 'American Sign Language', NULL, 23.60) END +VALUES ('ase', 'American Sign Language', NULL, 236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'American Sign Language', [Definition] = NULL, [SortOrder] = 23.60 WHERE [Code] = 'ase' END +SET [Description] = 'American Sign Language', [Definition] = NULL, [SortOrder] = 236.00 WHERE [Code] = 'ase' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifa', 'Amganad Ifugao', NULL, 23.70) END +VALUES ('ifa', 'Amganad Ifugao', NULL, 237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amganad Ifugao', [Definition] = NULL, [SortOrder] = 23.70 WHERE [Code] = 'ifa' END +SET [Description] = 'Amganad Ifugao', [Definition] = NULL, [SortOrder] = 237.00 WHERE [Code] = 'ifa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amh', 'Amharic', NULL, 23.80) END +VALUES ('amh', 'Amharic', NULL, 238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amharic', [Definition] = NULL, [SortOrder] = 23.80 WHERE [Code] = 'amh' END +SET [Description] = 'Amharic', [Definition] = NULL, [SortOrder] = 238.00 WHERE [Code] = 'amh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amy', 'Ami', NULL, 23.90) END +VALUES ('amy', 'Ami', NULL, 239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ami', [Definition] = NULL, [SortOrder] = 23.90 WHERE [Code] = 'amy' END +SET [Description] = 'Ami', [Definition] = NULL, [SortOrder] = 239.00 WHERE [Code] = 'amy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ami') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ami', 'Amis', NULL, 24.00) END +VALUES ('ami', 'Amis', NULL, 240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amis', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = 'ami' END +SET [Description] = 'Amis', [Definition] = NULL, [SortOrder] = 240.00 WHERE [Code] = 'ami' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amo', 'Amo', NULL, 24.10) END +VALUES ('amo', 'Amo', NULL, 241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amo', [Definition] = NULL, [SortOrder] = 24.10 WHERE [Code] = 'amo' END +SET [Description] = 'Amo', [Definition] = NULL, [SortOrder] = 241.00 WHERE [Code] = 'amo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alx', 'Amol', NULL, 24.20) END +VALUES ('alx', 'Amol', NULL, 242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amol', [Definition] = NULL, [SortOrder] = 24.20 WHERE [Code] = 'alx' END +SET [Description] = 'Amol', [Definition] = NULL, [SortOrder] = 242.00 WHERE [Code] = 'alx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbz', 'Amoltepec Mixtec', NULL, 24.30) END +VALUES ('mbz', 'Amoltepec Mixtec', NULL, 243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amoltepec Mixtec', [Definition] = NULL, [SortOrder] = 24.30 WHERE [Code] = 'mbz' END +SET [Description] = 'Amoltepec Mixtec', [Definition] = NULL, [SortOrder] = 243.00 WHERE [Code] = 'mbz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apg', 'Ampanang', NULL, 24.40) END +VALUES ('apg', 'Ampanang', NULL, 244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ampanang', [Definition] = NULL, [SortOrder] = 24.40 WHERE [Code] = 'apg' END +SET [Description] = 'Ampanang', [Definition] = NULL, [SortOrder] = 244.00 WHERE [Code] = 'apg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqd', 'Ampari Dogon', NULL, 24.50) END +VALUES ('aqd', 'Ampari Dogon', NULL, 245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ampari Dogon', [Definition] = NULL, [SortOrder] = 24.50 WHERE [Code] = 'aqd' END +SET [Description] = 'Ampari Dogon', [Definition] = NULL, [SortOrder] = 245.00 WHERE [Code] = 'aqd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajz', 'Amri Karbi', NULL, 24.60) END +VALUES ('ajz', 'Amri Karbi', NULL, 246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amri Karbi', [Definition] = NULL, [SortOrder] = 24.60 WHERE [Code] = 'ajz' END +SET [Description] = 'Amri Karbi', [Definition] = NULL, [SortOrder] = 246.00 WHERE [Code] = 'ajz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amt', 'Amto', NULL, 24.70) END +VALUES ('amt', 'Amto', NULL, 247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amto', [Definition] = NULL, [SortOrder] = 24.70 WHERE [Code] = 'amt' END +SET [Description] = 'Amto', [Definition] = NULL, [SortOrder] = 247.00 WHERE [Code] = 'amt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adw', 'Amundava', NULL, 24.80) END +VALUES ('adw', 'Amundava', NULL, 248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amundava', [Definition] = NULL, [SortOrder] = 24.80 WHERE [Code] = 'adw' END +SET [Description] = 'Amundava', [Definition] = NULL, [SortOrder] = 248.00 WHERE [Code] = 'adw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amg', 'Amurdak', NULL, 24.90) END +VALUES ('amg', 'Amurdak', NULL, 249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amurdak', [Definition] = NULL, [SortOrder] = 24.90 WHERE [Code] = 'amg' END +SET [Description] = 'Amurdak', [Definition] = NULL, [SortOrder] = 249.00 WHERE [Code] = 'amg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dti', 'Ana Tinga Dogon', NULL, 25.00) END +VALUES ('dti', 'Ana Tinga Dogon', NULL, 250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ana Tinga Dogon', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = 'dti' END +SET [Description] = 'Ana Tinga Dogon', [Definition] = NULL, [SortOrder] = 250.00 WHERE [Code] = 'dti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anw', 'Anaang', NULL, 25.10) END +VALUES ('anw', 'Anaang', NULL, 251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anaang', [Definition] = NULL, [SortOrder] = 25.10 WHERE [Code] = 'anw' END +SET [Description] = 'Anaang', [Definition] = NULL, [SortOrder] = 251.00 WHERE [Code] = 'anw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akg', 'Anakalangu', NULL, 25.20) END +VALUES ('akg', 'Anakalangu', NULL, 252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anakalangu', [Definition] = NULL, [SortOrder] = 25.20 WHERE [Code] = 'akg' END +SET [Description] = 'Anakalangu', [Definition] = NULL, [SortOrder] = 252.00 WHERE [Code] = 'akg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anm', 'Anal', NULL, 25.30) END +VALUES ('anm', 'Anal', NULL, 253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anal', [Definition] = NULL, [SortOrder] = 25.30 WHERE [Code] = 'anm' END +SET [Description] = 'Anal', [Definition] = NULL, [SortOrder] = 253.00 WHERE [Code] = 'anm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pda', 'Anam', NULL, 25.40) END +VALUES ('pda', 'Anam', NULL, 254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anam', [Definition] = NULL, [SortOrder] = 25.40 WHERE [Code] = 'pda' END +SET [Description] = 'Anam', [Definition] = NULL, [SortOrder] = 254.00 WHERE [Code] = 'pda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aan', 'Anambé', NULL, 25.50) END +VALUES ('aan', 'Anambé', NULL, 255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anambé', [Definition] = NULL, [SortOrder] = 25.50 WHERE [Code] = 'aan' END +SET [Description] = 'Anambé', [Definition] = NULL, [SortOrder] = 255.00 WHERE [Code] = 'aan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imi', 'Anamgura', NULL, 25.60) END +VALUES ('imi', 'Anamgura', NULL, 256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anamgura', [Definition] = NULL, [SortOrder] = 25.60 WHERE [Code] = 'imi' END +SET [Description] = 'Anamgura', [Definition] = NULL, [SortOrder] = 256.00 WHERE [Code] = 'imi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpo', 'Anasi', NULL, 25.70) END +VALUES ('bpo', 'Anasi', NULL, 257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anasi', [Definition] = NULL, [SortOrder] = 25.70 WHERE [Code] = 'bpo' END +SET [Description] = 'Anasi', [Definition] = NULL, [SortOrder] = 257.00 WHERE [Code] = 'bpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acb', 'Áncá', NULL, 25.80) END +VALUES ('acb', 'Áncá', NULL, 258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Áncá', [Definition] = NULL, [SortOrder] = 25.80 WHERE [Code] = 'acb' END +SET [Description] = 'Áncá', [Definition] = NULL, [SortOrder] = 258.00 WHERE [Code] = 'acb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grc', 'Ancient Greek (to 1453)', NULL, 25.90) END +VALUES ('grc', 'Ancient Greek (to 1453)', NULL, 259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient Greek (to 1453)', [Definition] = NULL, [SortOrder] = 25.90 WHERE [Code] = 'grc' END +SET [Description] = 'Ancient Greek (to 1453)', [Definition] = NULL, [SortOrder] = 259.00 WHERE [Code] = 'grc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbo', 'Ancient Hebrew', NULL, 26.00) END +VALUES ('hbo', 'Ancient Hebrew', NULL, 260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient Hebrew', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = 'hbo' END +SET [Description] = 'Ancient Hebrew', [Definition] = NULL, [SortOrder] = 260.00 WHERE [Code] = 'hbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmk', 'Ancient Macedonian', NULL, 26.10) END +VALUES ('xmk', 'Ancient Macedonian', NULL, 261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient Macedonian', [Definition] = NULL, [SortOrder] = 26.10 WHERE [Code] = 'xmk' END +SET [Description] = 'Ancient Macedonian', [Definition] = NULL, [SortOrder] = 261.00 WHERE [Code] = 'xmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xna', 'Ancient North Arabian', NULL, 26.20) END +VALUES ('xna', 'Ancient North Arabian', NULL, 262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient North Arabian', [Definition] = NULL, [SortOrder] = 26.20 WHERE [Code] = 'xna' END +SET [Description] = 'Ancient North Arabian', [Definition] = NULL, [SortOrder] = 262.00 WHERE [Code] = 'xna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xzp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xzp', 'Ancient Zapotec', NULL, 26.30) END +VALUES ('xzp', 'Ancient Zapotec', NULL, 263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient Zapotec', [Definition] = NULL, [SortOrder] = 26.30 WHERE [Code] = 'xzp' END +SET [Description] = 'Ancient Zapotec', [Definition] = NULL, [SortOrder] = 263.00 WHERE [Code] = 'xzp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgl', 'Andaandi', NULL, 26.40) END +VALUES ('dgl', 'Andaandi', NULL, 264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andaandi', [Definition] = NULL, [SortOrder] = 26.40 WHERE [Code] = 'dgl' END +SET [Description] = 'Andaandi', [Definition] = NULL, [SortOrder] = 264.00 WHERE [Code] = 'dgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afd', 'Andai', NULL, 26.50) END +VALUES ('afd', 'Andai', NULL, 265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andai', [Definition] = NULL, [SortOrder] = 26.50 WHERE [Code] = 'afd' END +SET [Description] = 'Andai', [Definition] = NULL, [SortOrder] = 265.00 WHERE [Code] = 'afd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajn', 'Andajin', NULL, 26.60) END +VALUES ('ajn', 'Andajin', NULL, 266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andajin', [Definition] = NULL, [SortOrder] = 26.60 WHERE [Code] = 'ajn' END +SET [Description] = 'Andajin', [Definition] = NULL, [SortOrder] = 266.00 WHERE [Code] = 'ajn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xaa', 'Andalusian Arabic', NULL, 26.70) END +VALUES ('xaa', 'Andalusian Arabic', NULL, 267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andalusian Arabic', [Definition] = NULL, [SortOrder] = 26.70 WHERE [Code] = 'xaa' END +SET [Description] = 'Andalusian Arabic', [Definition] = NULL, [SortOrder] = 267.00 WHERE [Code] = 'xaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hca', 'Andaman Creole Hindi', NULL, 26.80) END +VALUES ('hca', 'Andaman Creole Hindi', NULL, 268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andaman Creole Hindi', [Definition] = NULL, [SortOrder] = 26.80 WHERE [Code] = 'hca' END +SET [Description] = 'Andaman Creole Hindi', [Definition] = NULL, [SortOrder] = 268.00 WHERE [Code] = 'hca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ana') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ana', 'Andaqui', NULL, 26.90) END +VALUES ('ana', 'Andaqui', NULL, 269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andaqui', [Definition] = NULL, [SortOrder] = 26.90 WHERE [Code] = 'ana' END +SET [Description] = 'Andaqui', [Definition] = NULL, [SortOrder] = 269.00 WHERE [Code] = 'ana' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aod', 'Andarum', NULL, 27.00) END +VALUES ('aod', 'Andarum', NULL, 270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andarum', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = 'aod' END +SET [Description] = 'Andarum', [Definition] = NULL, [SortOrder] = 270.00 WHERE [Code] = 'aod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adg', 'Andegerebinha', NULL, 27.10) END +VALUES ('adg', 'Andegerebinha', NULL, 271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andegerebinha', [Definition] = NULL, [SortOrder] = 27.10 WHERE [Code] = 'adg' END +SET [Description] = 'Andegerebinha', [Definition] = NULL, [SortOrder] = 271.00 WHERE [Code] = 'adg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anr', 'Andh', NULL, 27.20) END +VALUES ('anr', 'Andh', NULL, 272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andh', [Definition] = NULL, [SortOrder] = 27.20 WHERE [Code] = 'anr' END +SET [Description] = 'Andh', [Definition] = NULL, [SortOrder] = 272.00 WHERE [Code] = 'anr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ani') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ani', 'Andi', NULL, 27.30) END +VALUES ('ani', 'Andi', NULL, 273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andi', [Definition] = NULL, [SortOrder] = 27.30 WHERE [Code] = 'ani' END +SET [Description] = 'Andi', [Definition] = NULL, [SortOrder] = 273.00 WHERE [Code] = 'ani' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzb', 'Andio', NULL, 27.40) END +VALUES ('bzb', 'Andio', NULL, 274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andio', [Definition] = NULL, [SortOrder] = 27.40 WHERE [Code] = 'bzb' END +SET [Description] = 'Andio', [Definition] = NULL, [SortOrder] = 274.00 WHERE [Code] = 'bzb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anb', 'Andoa', NULL, 27.50) END +VALUES ('anb', 'Andoa', NULL, 275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andoa', [Definition] = NULL, [SortOrder] = 27.50 WHERE [Code] = 'anb' END +SET [Description] = 'Andoa', [Definition] = NULL, [SortOrder] = 275.00 WHERE [Code] = 'anb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ano') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ano', 'Andoque', NULL, 27.60) END +VALUES ('ano', 'Andoque', NULL, 276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andoque', [Definition] = NULL, [SortOrder] = 27.60 WHERE [Code] = 'ano' END +SET [Description] = 'Andoque', [Definition] = NULL, [SortOrder] = 276.00 WHERE [Code] = 'ano' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anx', 'Andra-Hus', NULL, 27.70) END +VALUES ('anx', 'Andra-Hus', NULL, 277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andra-Hus', [Definition] = NULL, [SortOrder] = 27.70 WHERE [Code] = 'anx' END +SET [Description] = 'Andra-Hus', [Definition] = NULL, [SortOrder] = 277.00 WHERE [Code] = 'anx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aty', 'Aneityum', NULL, 27.80) END +VALUES ('aty', 'Aneityum', NULL, 278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aneityum', [Definition] = NULL, [SortOrder] = 27.80 WHERE [Code] = 'aty' END +SET [Description] = 'Aneityum', [Definition] = NULL, [SortOrder] = 278.00 WHERE [Code] = 'aty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anz', 'Anem', NULL, 27.90) END +VALUES ('anz', 'Anem', NULL, 279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anem', [Definition] = NULL, [SortOrder] = 27.90 WHERE [Code] = 'anz' END +SET [Description] = 'Anem', [Definition] = NULL, [SortOrder] = 279.00 WHERE [Code] = 'anz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aby', 'Aneme Wake', NULL, 28.00) END +VALUES ('aby', 'Aneme Wake', NULL, 280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aneme Wake', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = 'aby' END +SET [Description] = 'Aneme Wake', [Definition] = NULL, [SortOrder] = 280.00 WHERE [Code] = 'aby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myo', 'Anfillo', NULL, 28.10) END +VALUES ('myo', 'Anfillo', NULL, 281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anfillo', [Definition] = NULL, [SortOrder] = 28.10 WHERE [Code] = 'myo' END +SET [Description] = 'Anfillo', [Definition] = NULL, [SortOrder] = 281.00 WHERE [Code] = 'myo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agm', 'Angaataha', NULL, 28.20) END +VALUES ('agm', 'Angaataha', NULL, 282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angaataha', [Definition] = NULL, [SortOrder] = 28.20 WHERE [Code] = 'agm' END +SET [Description] = 'Angaataha', [Definition] = NULL, [SortOrder] = 282.00 WHERE [Code] = 'agm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqt', 'Angaité', NULL, 28.30) END +VALUES ('aqt', 'Angaité', NULL, 283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angaité', [Definition] = NULL, [SortOrder] = 28.30 WHERE [Code] = 'aqt' END +SET [Description] = 'Angaité', [Definition] = NULL, [SortOrder] = 283.00 WHERE [Code] = 'aqt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'age') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('age', 'Angal', NULL, 28.40) END +VALUES ('age', 'Angal', NULL, 284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angal', [Definition] = NULL, [SortOrder] = 28.40 WHERE [Code] = 'age' END +SET [Description] = 'Angal', [Definition] = NULL, [SortOrder] = 284.00 WHERE [Code] = 'age' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoe', 'Angal Enen', NULL, 28.50) END +VALUES ('aoe', 'Angal Enen', NULL, 285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angal Enen', [Definition] = NULL, [SortOrder] = 28.50 WHERE [Code] = 'aoe' END +SET [Description] = 'Angal Enen', [Definition] = NULL, [SortOrder] = 285.00 WHERE [Code] = 'aoe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akh', 'Angal Heneng', NULL, 28.60) END +VALUES ('akh', 'Angal Heneng', NULL, 286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angal Heneng', [Definition] = NULL, [SortOrder] = 28.60 WHERE [Code] = 'akh' END +SET [Description] = 'Angal Heneng', [Definition] = NULL, [SortOrder] = 286.00 WHERE [Code] = 'akh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njm', 'Angami Naga', NULL, 28.70) END +VALUES ('njm', 'Angami Naga', NULL, 287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angami Naga', [Definition] = NULL, [SortOrder] = 28.70 WHERE [Code] = 'njm' END +SET [Description] = 'Angami Naga', [Definition] = NULL, [SortOrder] = 287.00 WHERE [Code] = 'njm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yli', 'Angguruk Yali', NULL, 28.80) END +VALUES ('yli', 'Angguruk Yali', NULL, 288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angguruk Yali', [Definition] = NULL, [SortOrder] = 28.80 WHERE [Code] = 'yli' END +SET [Description] = 'Angguruk Yali', [Definition] = NULL, [SortOrder] = 288.00 WHERE [Code] = 'yli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anp', 'Angika', NULL, 28.90) END +VALUES ('anp', 'Angika', NULL, 289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angika', [Definition] = NULL, [SortOrder] = 28.90 WHERE [Code] = 'anp' END +SET [Description] = 'Angika', [Definition] = NULL, [SortOrder] = 289.00 WHERE [Code] = 'anp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avm', 'Angkamuthi', NULL, 29.00) END +VALUES ('avm', 'Angkamuthi', NULL, 290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angkamuthi', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = 'avm' END +SET [Description] = 'Angkamuthi', [Definition] = NULL, [SortOrder] = 290.00 WHERE [Code] = 'avm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xno', 'Anglo-Norman', NULL, 29.10) END +VALUES ('xno', 'Anglo-Norman', NULL, 291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anglo-Norman', [Definition] = NULL, [SortOrder] = 29.10 WHERE [Code] = 'xno' END +SET [Description] = 'Anglo-Norman', [Definition] = NULL, [SortOrder] = 291.00 WHERE [Code] = 'xno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rme', 'Angloromani', NULL, 29.20) END +VALUES ('rme', 'Angloromani', NULL, 292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angloromani', [Definition] = NULL, [SortOrder] = 29.20 WHERE [Code] = 'rme' END +SET [Description] = 'Angloromani', [Definition] = NULL, [SortOrder] = 292.00 WHERE [Code] = 'rme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoa', 'Angolar', NULL, 29.30) END +VALUES ('aoa', 'Angolar', NULL, 293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angolar', [Definition] = NULL, [SortOrder] = 29.30 WHERE [Code] = 'aoa' END +SET [Description] = 'Angolar', [Definition] = NULL, [SortOrder] = 293.00 WHERE [Code] = 'aoa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agg', 'Angor', NULL, 29.40) END +VALUES ('agg', 'Angor', NULL, 294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angor', [Definition] = NULL, [SortOrder] = 29.40 WHERE [Code] = 'agg' END +SET [Description] = 'Angor', [Definition] = NULL, [SortOrder] = 294.00 WHERE [Code] = 'agg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aog', 'Angoram', NULL, 29.50) END +VALUES ('aog', 'Angoram', NULL, 295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angoram', [Definition] = NULL, [SortOrder] = 29.50 WHERE [Code] = 'aog' END +SET [Description] = 'Angoram', [Definition] = NULL, [SortOrder] = 295.00 WHERE [Code] = 'aog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnd', 'Angosturas Tunebo', NULL, 29.60) END +VALUES ('tnd', 'Angosturas Tunebo', NULL, 296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angosturas Tunebo', [Definition] = NULL, [SortOrder] = 29.60 WHERE [Code] = 'tnd' END +SET [Description] = 'Angosturas Tunebo', [Definition] = NULL, [SortOrder] = 296.00 WHERE [Code] = 'tnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awg', 'Anguthimri', NULL, 29.70) END +VALUES ('awg', 'Anguthimri', NULL, 297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anguthimri', [Definition] = NULL, [SortOrder] = 29.70 WHERE [Code] = 'awg' END +SET [Description] = 'Anguthimri', [Definition] = NULL, [SortOrder] = 297.00 WHERE [Code] = 'awg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypn', 'Ani Phowa', NULL, 29.80) END +VALUES ('ypn', 'Ani Phowa', NULL, 298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ani Phowa', [Definition] = NULL, [SortOrder] = 29.80 WHERE [Code] = 'ypn' END +SET [Description] = 'Ani Phowa', [Definition] = NULL, [SortOrder] = 298.00 WHERE [Code] = 'ypn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blo', 'Anii', NULL, 29.90) END +VALUES ('blo', 'Anii', NULL, 299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anii', [Definition] = NULL, [SortOrder] = 29.90 WHERE [Code] = 'blo' END +SET [Description] = 'Anii', [Definition] = NULL, [SortOrder] = 299.00 WHERE [Code] = 'blo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anf', 'Animere', NULL, 30.00) END +VALUES ('anf', 'Animere', NULL, 300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Animere', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = 'anf' END +SET [Description] = 'Animere', [Definition] = NULL, [SortOrder] = 300.00 WHERE [Code] = 'anf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoi', 'Anindilyakwa', NULL, 30.10) END +VALUES ('aoi', 'Anindilyakwa', NULL, 301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anindilyakwa', [Definition] = NULL, [SortOrder] = 30.10 WHERE [Code] = 'aoi' END +SET [Description] = 'Anindilyakwa', [Definition] = NULL, [SortOrder] = 301.00 WHERE [Code] = 'aoi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqk', 'Aninka', NULL, 30.20) END +VALUES ('aqk', 'Aninka', NULL, 302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aninka', [Definition] = NULL, [SortOrder] = 30.20 WHERE [Code] = 'aqk' END +SET [Description] = 'Aninka', [Definition] = NULL, [SortOrder] = 302.00 WHERE [Code] = 'aqk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boj', 'Anjam', NULL, 30.30) END +VALUES ('boj', 'Anjam', NULL, 303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anjam', [Definition] = NULL, [SortOrder] = 30.30 WHERE [Code] = 'boj' END +SET [Description] = 'Anjam', [Definition] = NULL, [SortOrder] = 303.00 WHERE [Code] = 'boj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aak', 'Ankave', NULL, 30.40) END +VALUES ('aak', 'Ankave', NULL, 304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ankave', [Definition] = NULL, [SortOrder] = 30.40 WHERE [Code] = 'aak' END +SET [Description] = 'Ankave', [Definition] = NULL, [SortOrder] = 304.00 WHERE [Code] = 'aak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amx', 'Anmatyerre', NULL, 30.50) END +VALUES ('amx', 'Anmatyerre', NULL, 305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anmatyerre', [Definition] = NULL, [SortOrder] = 30.50 WHERE [Code] = 'amx' END +SET [Description] = 'Anmatyerre', [Definition] = NULL, [SortOrder] = 305.00 WHERE [Code] = 'amx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nun', 'Anong', NULL, 30.60) END +VALUES ('nun', 'Anong', NULL, 306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anong', [Definition] = NULL, [SortOrder] = 30.60 WHERE [Code] = 'nun' END +SET [Description] = 'Anong', [Definition] = NULL, [SortOrder] = 306.00 WHERE [Code] = 'nun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anj', 'Anor', NULL, 30.70) END +VALUES ('anj', 'Anor', NULL, 307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anor', [Definition] = NULL, [SortOrder] = 30.70 WHERE [Code] = 'anj' END +SET [Description] = 'Anor', [Definition] = NULL, [SortOrder] = 307.00 WHERE [Code] = 'anj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ans') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ans', 'Anserma', NULL, 30.80) END +VALUES ('ans', 'Anserma', NULL, 308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anserma', [Definition] = NULL, [SortOrder] = 30.80 WHERE [Code] = 'ans' END +SET [Description] = 'Anserma', [Definition] = NULL, [SortOrder] = 308.00 WHERE [Code] = 'ans' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'and') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('and', 'Ansus', NULL, 30.90) END +VALUES ('and', 'Ansus', NULL, 309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ansus', [Definition] = NULL, [SortOrder] = 30.90 WHERE [Code] = 'and' END +SET [Description] = 'Ansus', [Definition] = NULL, [SortOrder] = 309.00 WHERE [Code] = 'and' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ant') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ant', 'Antakarinya', NULL, 31.00) END +VALUES ('ant', 'Antakarinya', NULL, 310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Antakarinya', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = 'ant' END +SET [Description] = 'Antakarinya', [Definition] = NULL, [SortOrder] = 310.00 WHERE [Code] = 'ant' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmv', 'Antankarana Malagasy', NULL, 31.10) END +VALUES ('xmv', 'Antankarana Malagasy', NULL, 311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Antankarana Malagasy', [Definition] = NULL, [SortOrder] = 31.10 WHERE [Code] = 'xmv' END +SET [Description] = 'Antankarana Malagasy', [Definition] = NULL, [SortOrder] = 311.00 WHERE [Code] = 'xmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aig', 'Antigua and Barbuda Creole English', NULL, 31.20) END +VALUES ('aig', 'Antigua and Barbuda Creole English', NULL, 312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Antigua and Barbuda Creole English', [Definition] = NULL, [SortOrder] = 31.20 WHERE [Code] = 'aig' END +SET [Description] = 'Antigua and Barbuda Creole English', [Definition] = NULL, [SortOrder] = 312.00 WHERE [Code] = 'aig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anl', 'Anu-Hkongso Chin', NULL, 31.30) END +VALUES ('anl', 'Anu-Hkongso Chin', NULL, 313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anu-Hkongso Chin', [Definition] = NULL, [SortOrder] = 31.30 WHERE [Code] = 'anl' END +SET [Description] = 'Anu-Hkongso Chin', [Definition] = NULL, [SortOrder] = 313.00 WHERE [Code] = 'anl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anu', 'Anuak', NULL, 31.40) END +VALUES ('anu', 'Anuak', NULL, 314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anuak', [Definition] = NULL, [SortOrder] = 31.40 WHERE [Code] = 'anu' END +SET [Description] = 'Anuak', [Definition] = NULL, [SortOrder] = 314.00 WHERE [Code] = 'anu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cko', 'Anufo', NULL, 31.50) END +VALUES ('cko', 'Anufo', NULL, 315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anufo', [Definition] = NULL, [SortOrder] = 31.50 WHERE [Code] = 'cko' END +SET [Description] = 'Anufo', [Definition] = NULL, [SortOrder] = 315.00 WHERE [Code] = 'cko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aui', 'Anuki', NULL, 31.60) END +VALUES ('aui', 'Anuki', NULL, 316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anuki', [Definition] = NULL, [SortOrder] = 31.60 WHERE [Code] = 'aui' END +SET [Description] = 'Anuki', [Definition] = NULL, [SortOrder] = 316.00 WHERE [Code] = 'aui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auq', 'Anus', NULL, 31.70) END +VALUES ('auq', 'Anus', NULL, 317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anus', [Definition] = NULL, [SortOrder] = 31.70 WHERE [Code] = 'auq' END +SET [Description] = 'Anus', [Definition] = NULL, [SortOrder] = 317.00 WHERE [Code] = 'auq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aud', 'Anuta', NULL, 31.80) END +VALUES ('aud', 'Anuta', NULL, 318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anuta', [Definition] = NULL, [SortOrder] = 31.80 WHERE [Code] = 'aud' END +SET [Description] = 'Anuta', [Definition] = NULL, [SortOrder] = 318.00 WHERE [Code] = 'aud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'any') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('any', 'Anyin', NULL, 31.90) END +VALUES ('any', 'Anyin', NULL, 319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anyin', [Definition] = NULL, [SortOrder] = 31.90 WHERE [Code] = 'any' END +SET [Description] = 'Anyin', [Definition] = NULL, [SortOrder] = 319.00 WHERE [Code] = 'any' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtb', 'Anyin Morofo', NULL, 32.00) END +VALUES ('mtb', 'Anyin Morofo', NULL, 320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anyin Morofo', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = 'mtb' END +SET [Description] = 'Anyin Morofo', [Definition] = NULL, [SortOrder] = 320.00 WHERE [Code] = 'mtb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njo', 'Ao Naga', NULL, 32.10) END +VALUES ('njo', 'Ao Naga', NULL, 321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ao Naga', [Definition] = NULL, [SortOrder] = 32.10 WHERE [Code] = 'njo' END +SET [Description] = 'Ao Naga', [Definition] = NULL, [SortOrder] = 321.00 WHERE [Code] = 'njo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pni', 'Aoheng', NULL, 32.20) END +VALUES ('pni', 'Aoheng', NULL, 322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aoheng', [Definition] = NULL, [SortOrder] = 32.20 WHERE [Code] = 'pni' END +SET [Description] = 'Aoheng', [Definition] = NULL, [SortOrder] = 322.00 WHERE [Code] = 'pni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aor', 'Aore', NULL, 32.30) END +VALUES ('aor', 'Aore', NULL, 323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aore', [Definition] = NULL, [SortOrder] = 32.30 WHERE [Code] = 'aor' END +SET [Description] = 'Aore', [Definition] = NULL, [SortOrder] = 323.00 WHERE [Code] = 'aor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbx', 'Ap Ma', NULL, 32.40) END +VALUES ('kbx', 'Ap Ma', NULL, 324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ap Ma', [Definition] = NULL, [SortOrder] = 32.40 WHERE [Code] = 'kbx' END +SET [Description] = 'Ap Ma', [Definition] = NULL, [SortOrder] = 324.00 WHERE [Code] = 'kbx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xap', 'Apalachee', NULL, 32.50) END +VALUES ('xap', 'Apalachee', NULL, 325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apalachee', [Definition] = NULL, [SortOrder] = 32.50 WHERE [Code] = 'xap' END +SET [Description] = 'Apalachee', [Definition] = NULL, [SortOrder] = 325.00 WHERE [Code] = 'xap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apy', 'Apalaí', NULL, 32.60) END +VALUES ('apy', 'Apalaí', NULL, 326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apalaí', [Definition] = NULL, [SortOrder] = 32.60 WHERE [Code] = 'apy' END +SET [Description] = 'Apalaí', [Definition] = NULL, [SortOrder] = 326.00 WHERE [Code] = 'apy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ena') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ena', 'Apali', NULL, 32.70) END +VALUES ('ena', 'Apali', NULL, 327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apali', [Definition] = NULL, [SortOrder] = 32.70 WHERE [Code] = 'ena' END +SET [Description] = 'Apali', [Definition] = NULL, [SortOrder] = 327.00 WHERE [Code] = 'ena' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mip', 'Apasco-Apoala Mixtec', NULL, 32.80) END +VALUES ('mip', 'Apasco-Apoala Mixtec', NULL, 328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apasco-Apoala Mixtec', [Definition] = NULL, [SortOrder] = 32.80 WHERE [Code] = 'mip' END +SET [Description] = 'Apasco-Apoala Mixtec', [Definition] = NULL, [SortOrder] = 328.00 WHERE [Code] = 'mip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apt', 'Apatani', NULL, 32.90) END +VALUES ('apt', 'Apatani', NULL, 329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apatani', [Definition] = NULL, [SortOrder] = 32.90 WHERE [Code] = 'apt' END +SET [Description] = 'Apatani', [Definition] = NULL, [SortOrder] = 329.00 WHERE [Code] = 'apt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'api') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('api', 'Apiaká', NULL, 33.00) END +VALUES ('api', 'Apiaká', NULL, 330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apiaká', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = 'api' END +SET [Description] = 'Apiaká', [Definition] = NULL, [SortOrder] = 330.00 WHERE [Code] = 'api' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apn', 'Apinayé', NULL, 33.10) END +VALUES ('apn', 'Apinayé', NULL, 331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apinayé', [Definition] = NULL, [SortOrder] = 33.10 WHERE [Code] = 'apn' END +SET [Description] = 'Apinayé', [Definition] = NULL, [SortOrder] = 331.00 WHERE [Code] = 'apn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'app') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('app', 'Apma', NULL, 33.20) END +VALUES ('app', 'Apma', NULL, 332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apma', [Definition] = NULL, [SortOrder] = 33.20 WHERE [Code] = 'app' END +SET [Description] = 'Apma', [Definition] = NULL, [SortOrder] = 332.00 WHERE [Code] = 'app' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahp', 'Aproumu Aizi', NULL, 33.30) END +VALUES ('ahp', 'Aproumu Aizi', NULL, 333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aproumu Aizi', [Definition] = NULL, [SortOrder] = 33.30 WHERE [Code] = 'ahp' END +SET [Description] = 'Aproumu Aizi', [Definition] = NULL, [SortOrder] = 333.00 WHERE [Code] = 'ahp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apu', 'Apurinã', NULL, 33.40) END +VALUES ('apu', 'Apurinã', NULL, 334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apurinã', [Definition] = NULL, [SortOrder] = 33.40 WHERE [Code] = 'apu' END +SET [Description] = 'Apurinã', [Definition] = NULL, [SortOrder] = 334.00 WHERE [Code] = 'apu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apx', 'Aputai', NULL, 33.50) END +VALUES ('apx', 'Aputai', NULL, 335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aputai', [Definition] = NULL, [SortOrder] = 33.50 WHERE [Code] = 'apx' END +SET [Description] = 'Aputai', [Definition] = NULL, [SortOrder] = 335.00 WHERE [Code] = 'apx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xaq', 'Aquitanian', NULL, 33.60) END +VALUES ('xaq', 'Aquitanian', NULL, 336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aquitanian', [Definition] = NULL, [SortOrder] = 33.60 WHERE [Code] = 'xaq' END +SET [Description] = 'Aquitanian', [Definition] = NULL, [SortOrder] = 336.00 WHERE [Code] = 'xaq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ard') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ard', 'Arabana', NULL, 33.70) END +VALUES ('ard', 'Arabana', NULL, 337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arabana', [Definition] = NULL, [SortOrder] = 33.70 WHERE [Code] = 'ard' END +SET [Description] = 'Arabana', [Definition] = NULL, [SortOrder] = 337.00 WHERE [Code] = 'ard' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arl', 'Arabela', NULL, 33.80) END +VALUES ('arl', 'Arabela', NULL, 338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arabela', [Definition] = NULL, [SortOrder] = 33.80 WHERE [Code] = 'arl' END +SET [Description] = 'Arabela', [Definition] = NULL, [SortOrder] = 338.00 WHERE [Code] = 'arl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ara') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ara', 'Arabic', NULL, 33.90) END +VALUES ('ara', 'Arabic', NULL, 339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arabic', [Definition] = NULL, [SortOrder] = 33.90 WHERE [Code] = 'ara' END +SET [Description] = 'Arabic', [Definition] = NULL, [SortOrder] = 339.00 WHERE [Code] = 'ara' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arg', 'Aragonese', NULL, 34.00) END +VALUES ('arg', 'Aragonese', NULL, 340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aragonese', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = 'arg' END +SET [Description] = 'Aragonese', [Definition] = NULL, [SortOrder] = 340.00 WHERE [Code] = 'arg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akr', 'Araki', NULL, 34.10) END +VALUES ('akr', 'Araki', NULL, 341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Araki', [Definition] = NULL, [SortOrder] = 34.10 WHERE [Code] = 'akr' END +SET [Description] = 'Araki', [Definition] = NULL, [SortOrder] = 341.00 WHERE [Code] = 'akr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkw', 'Arakwal', NULL, 34.20) END +VALUES ('rkw', 'Arakwal', NULL, 342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arakwal', [Definition] = NULL, [SortOrder] = 34.20 WHERE [Code] = 'rkw' END +SET [Description] = 'Arakwal', [Definition] = NULL, [SortOrder] = 342.00 WHERE [Code] = 'rkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atq', 'Aralle-Tabulahan', NULL, 34.30) END +VALUES ('atq', 'Aralle-Tabulahan', NULL, 343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aralle-Tabulahan', [Definition] = NULL, [SortOrder] = 34.30 WHERE [Code] = 'atq' END +SET [Description] = 'Aralle-Tabulahan', [Definition] = NULL, [SortOrder] = 343.00 WHERE [Code] = 'atq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stk', 'Arammba', NULL, 34.40) END +VALUES ('stk', 'Arammba', NULL, 344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arammba', [Definition] = NULL, [SortOrder] = 34.40 WHERE [Code] = 'stk' END +SET [Description] = 'Arammba', [Definition] = NULL, [SortOrder] = 344.00 WHERE [Code] = 'stk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaf', 'Aranadan', NULL, 34.50) END +VALUES ('aaf', 'Aranadan', NULL, 345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aranadan', [Definition] = NULL, [SortOrder] = 34.50 WHERE [Code] = 'aaf' END +SET [Description] = 'Aranadan', [Definition] = NULL, [SortOrder] = 345.00 WHERE [Code] = 'aaf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrt', 'Aranama-Tamique', NULL, 34.60) END +VALUES ('xrt', 'Aranama-Tamique', NULL, 346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aranama-Tamique', [Definition] = NULL, [SortOrder] = 34.60 WHERE [Code] = 'xrt' END +SET [Description] = 'Aranama-Tamique', [Definition] = NULL, [SortOrder] = 346.00 WHERE [Code] = 'xrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbj', 'Arandai', NULL, 34.70) END +VALUES ('jbj', 'Arandai', NULL, 347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arandai', [Definition] = NULL, [SortOrder] = 34.70 WHERE [Code] = 'jbj' END +SET [Description] = 'Arandai', [Definition] = NULL, [SortOrder] = 347.00 WHERE [Code] = 'jbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aro', 'Araona', NULL, 34.80) END +VALUES ('aro', 'Araona', NULL, 348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Araona', [Definition] = NULL, [SortOrder] = 34.80 WHERE [Code] = 'aro' END +SET [Description] = 'Araona', [Definition] = NULL, [SortOrder] = 348.00 WHERE [Code] = 'aro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arp', 'Arapaho', NULL, 34.90) END +VALUES ('arp', 'Arapaho', NULL, 349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arapaho', [Definition] = NULL, [SortOrder] = 34.90 WHERE [Code] = 'arp' END +SET [Description] = 'Arapaho', [Definition] = NULL, [SortOrder] = 349.00 WHERE [Code] = 'arp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arj', 'Arapaso', NULL, 35.00) END +VALUES ('arj', 'Arapaso', NULL, 350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arapaso', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = 'arj' END +SET [Description] = 'Arapaso', [Definition] = NULL, [SortOrder] = 350.00 WHERE [Code] = 'arj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xaj', 'Ararandewára', NULL, 35.10) END +VALUES ('xaj', 'Ararandewára', NULL, 351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ararandewára', [Definition] = NULL, [SortOrder] = 35.10 WHERE [Code] = 'xaj' END +SET [Description] = 'Ararandewára', [Definition] = NULL, [SortOrder] = 351.00 WHERE [Code] = 'xaj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arw', 'Arawak', NULL, 35.20) END +VALUES ('arw', 'Arawak', NULL, 352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arawak', [Definition] = NULL, [SortOrder] = 35.20 WHERE [Code] = 'arw' END +SET [Description] = 'Arawak', [Definition] = NULL, [SortOrder] = 352.00 WHERE [Code] = 'arw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awt', 'Araweté', NULL, 35.30) END +VALUES ('awt', 'Araweté', NULL, 353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Araweté', [Definition] = NULL, [SortOrder] = 35.30 WHERE [Code] = 'awt' END +SET [Description] = 'Araweté', [Definition] = NULL, [SortOrder] = 353.00 WHERE [Code] = 'awt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awm', 'Arawum', NULL, 35.40) END +VALUES ('awm', 'Arawum', NULL, 354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arawum', [Definition] = NULL, [SortOrder] = 35.40 WHERE [Code] = 'awm' END +SET [Description] = 'Arawum', [Definition] = NULL, [SortOrder] = 354.00 WHERE [Code] = 'awm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aae', 'Arbëreshë Albanian', NULL, 35.50) END +VALUES ('aae', 'Arbëreshë Albanian', NULL, 355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arbëreshë Albanian', [Definition] = NULL, [SortOrder] = 35.50 WHERE [Code] = 'aae' END +SET [Description] = 'Arbëreshë Albanian', [Definition] = NULL, [SortOrder] = 355.00 WHERE [Code] = 'aae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arv', 'Arbore', NULL, 35.60) END +VALUES ('arv', 'Arbore', NULL, 356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arbore', [Definition] = NULL, [SortOrder] = 35.60 WHERE [Code] = 'arv' END +SET [Description] = 'Arbore', [Definition] = NULL, [SortOrder] = 356.00 WHERE [Code] = 'arv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqc', 'Archi', NULL, 35.70) END +VALUES ('aqc', 'Archi', NULL, 357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Archi', [Definition] = NULL, [SortOrder] = 35.70 WHERE [Code] = 'aqc' END +SET [Description] = 'Archi', [Definition] = NULL, [SortOrder] = 357.00 WHERE [Code] = 'aqc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pka', 'Ardhamagadhi Prakrit', NULL, 35.80) END +VALUES ('pka', 'Ardhamagadhi Prakrit', NULL, 358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ardhamagadhi Prakrit', [Definition] = NULL, [SortOrder] = 35.80 WHERE [Code] = 'pka' END +SET [Description] = 'Ardhamagadhi Prakrit', [Definition] = NULL, [SortOrder] = 358.00 WHERE [Code] = 'pka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwc', 'Are', NULL, 35.90) END +VALUES ('mwc', 'Are', NULL, 359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Are', [Definition] = NULL, [SortOrder] = 35.90 WHERE [Code] = 'mwc' END +SET [Description] = 'Are', [Definition] = NULL, [SortOrder] = 359.00 WHERE [Code] = 'mwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aea', 'Areba', NULL, 36.00) END +VALUES ('aea', 'Areba', NULL, 360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Areba', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = 'aea' END +SET [Description] = 'Areba', [Definition] = NULL, [SortOrder] = 360.00 WHERE [Code] = 'aea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aem', 'Arem', NULL, 36.10) END +VALUES ('aem', 'Arem', NULL, 361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arem', [Definition] = NULL, [SortOrder] = 36.10 WHERE [Code] = 'aem' END +SET [Description] = 'Arem', [Definition] = NULL, [SortOrder] = 361.00 WHERE [Code] = 'aem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxu', 'Arequipa-La Unión Quechua', NULL, 36.20) END +VALUES ('qxu', 'Arequipa-La Unión Quechua', NULL, 362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arequipa-La Unión Quechua', [Definition] = NULL, [SortOrder] = 36.20 WHERE [Code] = 'qxu' END +SET [Description] = 'Arequipa-La Unión Quechua', [Definition] = NULL, [SortOrder] = 362.00 WHERE [Code] = 'qxu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aed', 'Argentine Sign Language', NULL, 36.30) END +VALUES ('aed', 'Argentine Sign Language', NULL, 363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Argentine Sign Language', [Definition] = NULL, [SortOrder] = 36.30 WHERE [Code] = 'aed' END +SET [Description] = 'Argentine Sign Language', [Definition] = NULL, [SortOrder] = 363.00 WHERE [Code] = 'aed' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agj', 'Argobba', NULL, 36.40) END +VALUES ('agj', 'Argobba', NULL, 364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Argobba', [Definition] = NULL, [SortOrder] = 36.40 WHERE [Code] = 'agj' END +SET [Description] = 'Argobba', [Definition] = NULL, [SortOrder] = 364.00 WHERE [Code] = 'agj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agf', 'Arguni', NULL, 36.50) END +VALUES ('agf', 'Arguni', NULL, 365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arguni', [Definition] = NULL, [SortOrder] = 36.50 WHERE [Code] = 'agf' END +SET [Description] = 'Arguni', [Definition] = NULL, [SortOrder] = 365.00 WHERE [Code] = 'agf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqr', 'Arhâ', NULL, 36.60) END +VALUES ('aqr', 'Arhâ', NULL, 366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arhâ', [Definition] = NULL, [SortOrder] = 36.60 WHERE [Code] = 'aqr' END +SET [Description] = 'Arhâ', [Definition] = NULL, [SortOrder] = 366.00 WHERE [Code] = 'aqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aok', 'Arhö', NULL, 36.70) END +VALUES ('aok', 'Arhö', NULL, 367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arhö', [Definition] = NULL, [SortOrder] = 36.70 WHERE [Code] = 'aok' END +SET [Description] = 'Arhö', [Definition] = NULL, [SortOrder] = 367.00 WHERE [Code] = 'aok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arh', 'Arhuaco', NULL, 36.80) END +VALUES ('arh', 'Arhuaco', NULL, 368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arhuaco', [Definition] = NULL, [SortOrder] = 36.80 WHERE [Code] = 'arh' END +SET [Description] = 'Arhuaco', [Definition] = NULL, [SortOrder] = 368.00 WHERE [Code] = 'arh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aac', 'Ari', NULL, 36.90) END +VALUES ('aac', 'Ari', NULL, 369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ari', [Definition] = NULL, [SortOrder] = 36.90 WHERE [Code] = 'aac' END +SET [Description] = 'Ari', [Definition] = NULL, [SortOrder] = 369.00 WHERE [Code] = 'aac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laz', 'Aribwatsa', NULL, 37.00) END +VALUES ('laz', 'Aribwatsa', NULL, 370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aribwatsa', [Definition] = NULL, [SortOrder] = 37.00 WHERE [Code] = 'laz' END +SET [Description] = 'Aribwatsa', [Definition] = NULL, [SortOrder] = 370.00 WHERE [Code] = 'laz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylu', 'Aribwaung', NULL, 37.10) END +VALUES ('ylu', 'Aribwaung', NULL, 371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aribwaung', [Definition] = NULL, [SortOrder] = 37.10 WHERE [Code] = 'ylu' END +SET [Description] = 'Aribwaung', [Definition] = NULL, [SortOrder] = 371.00 WHERE [Code] = 'ylu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aai', 'Arifama-Miniafia', NULL, 37.20) END +VALUES ('aai', 'Arifama-Miniafia', NULL, 372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arifama-Miniafia', [Definition] = NULL, [SortOrder] = 37.20 WHERE [Code] = 'aai' END +SET [Description] = 'Arifama-Miniafia', [Definition] = NULL, [SortOrder] = 372.00 WHERE [Code] = 'aai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqg', 'Arigidi', NULL, 37.30) END +VALUES ('aqg', 'Arigidi', NULL, 373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arigidi', [Definition] = NULL, [SortOrder] = 37.30 WHERE [Code] = 'aqg' END +SET [Description] = 'Arigidi', [Definition] = NULL, [SortOrder] = 373.00 WHERE [Code] = 'aqg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ark') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ark', 'Arikapú', NULL, 37.40) END +VALUES ('ark', 'Arikapú', NULL, 374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arikapú', [Definition] = NULL, [SortOrder] = 37.40 WHERE [Code] = 'ark' END +SET [Description] = 'Arikapú', [Definition] = NULL, [SortOrder] = 374.00 WHERE [Code] = 'ark' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ari') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ari', 'Arikara', NULL, 37.50) END +VALUES ('ari', 'Arikara', NULL, 375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arikara', [Definition] = NULL, [SortOrder] = 37.50 WHERE [Code] = 'ari' END +SET [Description] = 'Arikara', [Definition] = NULL, [SortOrder] = 375.00 WHERE [Code] = 'ari' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ait') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ait', 'Arikem', NULL, 37.60) END +VALUES ('ait', 'Arikem', NULL, 376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arikem', [Definition] = NULL, [SortOrder] = 37.60 WHERE [Code] = 'ait' END +SET [Description] = 'Arikem', [Definition] = NULL, [SortOrder] = 376.00 WHERE [Code] = 'ait' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrn', 'Arin', NULL, 37.70) END +VALUES ('xrn', 'Arin', NULL, 377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arin', [Definition] = NULL, [SortOrder] = 37.70 WHERE [Code] = 'xrn' END +SET [Description] = 'Arin', [Definition] = NULL, [SortOrder] = 377.00 WHERE [Code] = 'xrn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luc', 'Aringa', NULL, 37.80) END +VALUES ('luc', 'Aringa', NULL, 378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aringa', [Definition] = NULL, [SortOrder] = 37.80 WHERE [Code] = 'luc' END +SET [Description] = 'Aringa', [Definition] = NULL, [SortOrder] = 378.00 WHERE [Code] = 'luc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrm', 'Armazic', NULL, 37.90) END +VALUES ('xrm', 'Armazic', NULL, 379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Armazic', [Definition] = NULL, [SortOrder] = 37.90 WHERE [Code] = 'xrm' END +SET [Description] = 'Armazic', [Definition] = NULL, [SortOrder] = 379.00 WHERE [Code] = 'xrm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hye', 'Armenian', NULL, 38.00) END +VALUES ('hye', 'Armenian', NULL, 380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Armenian', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = 'hye' END +SET [Description] = 'Armenian', [Definition] = NULL, [SortOrder] = 380.00 WHERE [Code] = 'hye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aen', 'Armenian Sign Language', NULL, 38.10) END +VALUES ('aen', 'Armenian Sign Language', NULL, 381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Armenian Sign Language', [Definition] = NULL, [SortOrder] = 38.10 WHERE [Code] = 'aen' END +SET [Description] = 'Armenian Sign Language', [Definition] = NULL, [SortOrder] = 381.00 WHERE [Code] = 'aen' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apr', 'Arop-Lokep', NULL, 38.20) END +VALUES ('apr', 'Arop-Lokep', NULL, 382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arop-Lokep', [Definition] = NULL, [SortOrder] = 38.20 WHERE [Code] = 'apr' END +SET [Description] = 'Arop-Lokep', [Definition] = NULL, [SortOrder] = 382.00 WHERE [Code] = 'apr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aps', 'Arop-Sissano', NULL, 38.30) END +VALUES ('aps', 'Arop-Sissano', NULL, 383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arop-Sissano', [Definition] = NULL, [SortOrder] = 38.30 WHERE [Code] = 'aps' END +SET [Description] = 'Arop-Sissano', [Definition] = NULL, [SortOrder] = 383.00 WHERE [Code] = 'aps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aia', 'Arosi', NULL, 38.40) END +VALUES ('aia', 'Arosi', NULL, 384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arosi', [Definition] = NULL, [SortOrder] = 38.40 WHERE [Code] = 'aia' END +SET [Description] = 'Arosi', [Definition] = NULL, [SortOrder] = 384.00 WHERE [Code] = 'aia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frp', 'Arpitan', NULL, 38.50) END +VALUES ('frp', 'Arpitan', NULL, 385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arpitan', [Definition] = NULL, [SortOrder] = 38.50 WHERE [Code] = 'frp' END +SET [Description] = 'Arpitan', [Definition] = NULL, [SortOrder] = 385.00 WHERE [Code] = 'frp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rrt', 'Arritinngithigh', NULL, 38.60) END +VALUES ('rrt', 'Arritinngithigh', NULL, 386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arritinngithigh', [Definition] = NULL, [SortOrder] = 38.60 WHERE [Code] = 'rrt' END +SET [Description] = 'Arritinngithigh', [Definition] = NULL, [SortOrder] = 386.00 WHERE [Code] = 'rrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atz', 'Arta', NULL, 38.70) END +VALUES ('atz', 'Arta', NULL, 387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arta', [Definition] = NULL, [SortOrder] = 38.70 WHERE [Code] = 'atz' END +SET [Description] = 'Arta', [Definition] = NULL, [SortOrder] = 387.00 WHERE [Code] = 'atz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aru', 'Aruá (Amazonas State)', NULL, 38.80) END +VALUES ('aru', 'Aruá (Amazonas State)', NULL, 388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruá (Amazonas State)', [Definition] = NULL, [SortOrder] = 38.80 WHERE [Code] = 'aru' END +SET [Description] = 'Aruá (Amazonas State)', [Definition] = NULL, [SortOrder] = 388.00 WHERE [Code] = 'aru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arx', 'Aruá (Rodonia State)', NULL, 38.90) END +VALUES ('arx', 'Aruá (Rodonia State)', NULL, 389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruá (Rodonia State)', [Definition] = NULL, [SortOrder] = 38.90 WHERE [Code] = 'arx' END +SET [Description] = 'Aruá (Rodonia State)', [Definition] = NULL, [SortOrder] = 389.00 WHERE [Code] = 'arx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msy', 'Aruamu', NULL, 39.00) END +VALUES ('msy', 'Aruamu', NULL, 390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruamu', [Definition] = NULL, [SortOrder] = 39.00 WHERE [Code] = 'msy' END +SET [Description] = 'Aruamu', [Definition] = NULL, [SortOrder] = 390.00 WHERE [Code] = 'msy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aur', 'Aruek', NULL, 39.10) END +VALUES ('aur', 'Aruek', NULL, 391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruek', [Definition] = NULL, [SortOrder] = 39.10 WHERE [Code] = 'aur' END +SET [Description] = 'Aruek', [Definition] = NULL, [SortOrder] = 391.00 WHERE [Code] = 'aur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsr', 'Aruop', NULL, 39.20) END +VALUES ('lsr', 'Aruop', NULL, 392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruop', [Definition] = NULL, [SortOrder] = 39.20 WHERE [Code] = 'lsr' END +SET [Description] = 'Aruop', [Definition] = NULL, [SortOrder] = 392.00 WHERE [Code] = 'lsr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atx', 'Arutani', NULL, 39.30) END +VALUES ('atx', 'Arutani', NULL, 393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arutani', [Definition] = NULL, [SortOrder] = 39.30 WHERE [Code] = 'atx' END +SET [Description] = 'Arutani', [Definition] = NULL, [SortOrder] = 393.00 WHERE [Code] = 'atx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aat', 'Arvanitika Albanian', NULL, 39.40) END +VALUES ('aat', 'Arvanitika Albanian', NULL, 394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arvanitika Albanian', [Definition] = NULL, [SortOrder] = 39.40 WHERE [Code] = 'aat' END +SET [Description] = 'Arvanitika Albanian', [Definition] = NULL, [SortOrder] = 394.00 WHERE [Code] = 'aat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asz', 'As', NULL, 39.50) END +VALUES ('asz', 'As', NULL, 395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'As', [Definition] = NULL, [SortOrder] = 39.50 WHERE [Code] = 'asz' END +SET [Description] = 'As', [Definition] = NULL, [SortOrder] = 395.00 WHERE [Code] = 'asz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtv', 'Asaro''o', NULL, 39.60) END +VALUES ('mtv', 'Asaro''o', NULL, 396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asaro''o', [Definition] = NULL, [SortOrder] = 39.60 WHERE [Code] = 'mtv' END +SET [Description] = 'Asaro''o', [Definition] = NULL, [SortOrder] = 396.00 WHERE [Code] = 'mtv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cni', 'Asháninka', NULL, 39.70) END +VALUES ('cni', 'Asháninka', NULL, 397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asháninka', [Definition] = NULL, [SortOrder] = 39.70 WHERE [Code] = 'cni' END +SET [Description] = 'Asháninka', [Definition] = NULL, [SortOrder] = 397.00 WHERE [Code] = 'cni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahs', 'Ashe', NULL, 39.80) END +VALUES ('ahs', 'Ashe', NULL, 398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashe', [Definition] = NULL, [SortOrder] = 39.80 WHERE [Code] = 'ahs' END +SET [Description] = 'Ashe', [Definition] = NULL, [SortOrder] = 398.00 WHERE [Code] = 'ahs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjo', 'Ashéninka Pajonal', NULL, 39.90) END +VALUES ('cjo', 'Ashéninka Pajonal', NULL, 399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashéninka Pajonal', [Definition] = NULL, [SortOrder] = 39.90 WHERE [Code] = 'cjo' END +SET [Description] = 'Ashéninka Pajonal', [Definition] = NULL, [SortOrder] = 399.00 WHERE [Code] = 'cjo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prq', 'Ashéninka Perené', NULL, 40.00) END +VALUES ('prq', 'Ashéninka Perené', NULL, 400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashéninka Perené', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = 'prq' END +SET [Description] = 'Ashéninka Perené', [Definition] = NULL, [SortOrder] = 400.00 WHERE [Code] = 'prq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ask') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ask', 'Ashkun', NULL, 40.10) END +VALUES ('ask', 'Ashkun', NULL, 401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashkun', [Definition] = NULL, [SortOrder] = 40.10 WHERE [Code] = 'ask' END +SET [Description] = 'Ashkun', [Definition] = NULL, [SortOrder] = 401.00 WHERE [Code] = 'ask' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csh', 'Asho Chin', NULL, 40.20) END +VALUES ('csh', 'Asho Chin', NULL, 402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asho Chin', [Definition] = NULL, [SortOrder] = 40.20 WHERE [Code] = 'csh' END +SET [Description] = 'Asho Chin', [Definition] = NULL, [SortOrder] = 402.00 WHERE [Code] = 'csh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atn', 'Ashtiani', NULL, 40.30) END +VALUES ('atn', 'Ashtiani', NULL, 403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashtiani', [Definition] = NULL, [SortOrder] = 40.30 WHERE [Code] = 'atn' END +SET [Description] = 'Ashtiani', [Definition] = NULL, [SortOrder] = 403.00 WHERE [Code] = 'atn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asl', 'Asilulu', NULL, 40.40) END +VALUES ('asl', 'Asilulu', NULL, 404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asilulu', [Definition] = NULL, [SortOrder] = 40.40 WHERE [Code] = 'asl' END +SET [Description] = 'Asilulu', [Definition] = NULL, [SortOrder] = 404.00 WHERE [Code] = 'asl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eiv', 'Askopan', NULL, 40.50) END +VALUES ('eiv', 'Askopan', NULL, 405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Askopan', [Definition] = NULL, [SortOrder] = 40.50 WHERE [Code] = 'eiv' END +SET [Description] = 'Askopan', [Definition] = NULL, [SortOrder] = 405.00 WHERE [Code] = 'eiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asv', 'Asoa', NULL, 40.60) END +VALUES ('asv', 'Asoa', NULL, 406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asoa', [Definition] = NULL, [SortOrder] = 40.60 WHERE [Code] = 'asv' END +SET [Description] = 'Asoa', [Definition] = NULL, [SortOrder] = 406.00 WHERE [Code] = 'asv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asm', 'Assamese', NULL, 40.70) END +VALUES ('asm', 'Assamese', NULL, 407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assamese', [Definition] = NULL, [SortOrder] = 40.70 WHERE [Code] = 'asm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xss', 'Assan', NULL, 40.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assan', [Definition] = NULL, [SortOrder] = 40.80 WHERE [Code] = 'xss' END +SET [Description] = 'Assamese', [Definition] = NULL, [SortOrder] = 407.00 WHERE [Code] = 'asm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjg', 'Assangori', NULL, 40.90) END +VALUES ('sjg', 'Assangori', NULL, 408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assangori', [Definition] = NULL, [SortOrder] = 40.90 WHERE [Code] = 'sjg' END +SET [Description] = 'Assangori', [Definition] = NULL, [SortOrder] = 408.00 WHERE [Code] = 'sjg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asb', 'Assiniboine', NULL, 41.00) END +VALUES ('asb', 'Assiniboine', NULL, 409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assiniboine', [Definition] = NULL, [SortOrder] = 41.00 WHERE [Code] = 'asb' END +SET [Description] = 'Assiniboine', [Definition] = NULL, [SortOrder] = 409.00 WHERE [Code] = 'asb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aii', 'Assyrian Neo-Aramaic', NULL, 41.10) END +VALUES ('aii', 'Assyrian Neo-Aramaic', NULL, 410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assyrian Neo-Aramaic', [Definition] = NULL, [SortOrder] = 41.10 WHERE [Code] = 'aii' END +SET [Description] = 'Assyrian Neo-Aramaic', [Definition] = NULL, [SortOrder] = 410.00 WHERE [Code] = 'aii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ast') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ast', 'Asturian', NULL, 41.20) END +VALUES ('ast', 'Asturian', NULL, 411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asturian', [Definition] = NULL, [SortOrder] = 41.20 WHERE [Code] = 'ast' END +SET [Description] = 'Asturian', [Definition] = NULL, [SortOrder] = 411.00 WHERE [Code] = 'ast' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aum', 'Asu (Nigeria)', NULL, 41.30) END +VALUES ('aum', 'Asu (Nigeria)', NULL, 412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asu (Nigeria)', [Definition] = NULL, [SortOrder] = 41.30 WHERE [Code] = 'aum' END +SET [Description] = 'Asu (Nigeria)', [Definition] = NULL, [SortOrder] = 412.00 WHERE [Code] = 'aum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asa', 'Asu (Tanzania)', NULL, 41.40) END +VALUES ('asa', 'Asu (Tanzania)', NULL, 413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asu (Tanzania)', [Definition] = NULL, [SortOrder] = 41.40 WHERE [Code] = 'asa' END +SET [Description] = 'Asu (Tanzania)', [Definition] = NULL, [SortOrder] = 413.00 WHERE [Code] = 'asa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psa', 'Asue Awyu', NULL, 41.50) END +VALUES ('psa', 'Asue Awyu', NULL, 414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asue Awyu', [Definition] = NULL, [SortOrder] = 41.50 WHERE [Code] = 'psa' END +SET [Description] = 'Asue Awyu', [Definition] = NULL, [SortOrder] = 414.00 WHERE [Code] = 'psa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aua', 'Asumboa', NULL, 41.60) END +VALUES ('aua', 'Asumboa', NULL, 415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asumboa', [Definition] = NULL, [SortOrder] = 41.60 WHERE [Code] = 'aua' END +SET [Description] = 'Asumboa', [Definition] = NULL, [SortOrder] = 415.00 WHERE [Code] = 'aua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zoo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zoo', 'Asunción Mixtepec Zapotec', NULL, 41.70) END +VALUES ('zoo', 'Asunción Mixtepec Zapotec', NULL, 416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asunción Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 41.70 WHERE [Code] = 'zoo' END +SET [Description] = 'Asunción Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 416.00 WHERE [Code] = 'zoo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asr', 'Asuri', NULL, 41.80) END +VALUES ('asr', 'Asuri', NULL, 417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asuri', [Definition] = NULL, [SortOrder] = 41.80 WHERE [Code] = 'asr' END +SET [Description] = 'Asuri', [Definition] = NULL, [SortOrder] = 417.00 WHERE [Code] = 'asr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atm', 'Ata', NULL, 41.90) END +VALUES ('atm', 'Ata', NULL, 418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ata', [Definition] = NULL, [SortOrder] = 41.90 WHERE [Code] = 'atm' END +SET [Description] = 'Ata', [Definition] = NULL, [SortOrder] = 418.00 WHERE [Code] = 'atm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atd', 'Ata Manobo', NULL, 42.00) END +VALUES ('atd', 'Ata Manobo', NULL, 419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ata Manobo', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = 'atd' END +SET [Description] = 'Ata Manobo', [Definition] = NULL, [SortOrder] = 419.00 WHERE [Code] = 'atd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqp', 'Atakapa', NULL, 42.10) END +VALUES ('aqp', 'Atakapa', NULL, 420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atakapa', [Definition] = NULL, [SortOrder] = 42.10 WHERE [Code] = 'aqp' END +SET [Description] = 'Atakapa', [Definition] = NULL, [SortOrder] = 420.00 WHERE [Code] = 'aqp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amz', 'Atampaya', NULL, 42.20) END +VALUES ('amz', 'Atampaya', NULL, 421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atampaya', [Definition] = NULL, [SortOrder] = 42.20 WHERE [Code] = 'amz' END +SET [Description] = 'Atampaya', [Definition] = NULL, [SortOrder] = 421.00 WHERE [Code] = 'amz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mib', 'Atatláhuca Mixtec', NULL, 42.30) END +VALUES ('mib', 'Atatláhuca Mixtec', NULL, 422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atatláhuca Mixtec', [Definition] = NULL, [SortOrder] = 42.30 WHERE [Code] = 'mib' END +SET [Description] = 'Atatláhuca Mixtec', [Definition] = NULL, [SortOrder] = 422.00 WHERE [Code] = 'mib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adb', 'Atauran', NULL, 42.40) END +VALUES ('adb', 'Atauran', NULL, 423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atauran', [Definition] = NULL, [SortOrder] = 42.40 WHERE [Code] = 'adb' END +SET [Description] = 'Atauran', [Definition] = NULL, [SortOrder] = 423.00 WHERE [Code] = 'adb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tay', 'Atayal', NULL, 42.50) END +VALUES ('tay', 'Atayal', NULL, 424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atayal', [Definition] = NULL, [SortOrder] = 42.50 WHERE [Code] = 'tay' END +SET [Description] = 'Atayal', [Definition] = NULL, [SortOrder] = 424.00 WHERE [Code] = 'tay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ate') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ate', 'Atemble', NULL, 42.60) END +VALUES ('ate', 'Atemble', NULL, 425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atemble', [Definition] = NULL, [SortOrder] = 42.60 WHERE [Code] = 'ate' END +SET [Description] = 'Atemble', [Definition] = NULL, [SortOrder] = 425.00 WHERE [Code] = 'ate' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aph', 'Athpariya', NULL, 42.70) END +VALUES ('aph', 'Athpariya', NULL, 426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Athpariya', [Definition] = NULL, [SortOrder] = 42.70 WHERE [Code] = 'aph' END +SET [Description] = 'Athpariya', [Definition] = NULL, [SortOrder] = 426.00 WHERE [Code] = 'aph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atk', 'Ati', NULL, 42.80) END +VALUES ('atk', 'Ati', NULL, 427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ati', [Definition] = NULL, [SortOrder] = 42.80 WHERE [Code] = 'atk' END +SET [Description] = 'Ati', [Definition] = NULL, [SortOrder] = 427.00 WHERE [Code] = 'atk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atj', 'Atikamekw', NULL, 42.90) END +VALUES ('atj', 'Atikamekw', NULL, 428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atikamekw', [Definition] = NULL, [SortOrder] = 42.90 WHERE [Code] = 'atj' END +SET [Description] = 'Atikamekw', [Definition] = NULL, [SortOrder] = 428.00 WHERE [Code] = 'atj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqm', 'Atohwaim', NULL, 43.00) END +VALUES ('aqm', 'Atohwaim', NULL, 429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atohwaim', [Definition] = NULL, [SortOrder] = 43.00 WHERE [Code] = 'aqm' END +SET [Description] = 'Atohwaim', [Definition] = NULL, [SortOrder] = 429.00 WHERE [Code] = 'aqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ato') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ato', 'Atong (Cameroon)', NULL, 43.10) END +VALUES ('ato', 'Atong (Cameroon)', NULL, 430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atong (Cameroon)', [Definition] = NULL, [SortOrder] = 43.10 WHERE [Code] = 'ato' END +SET [Description] = 'Atong (Cameroon)', [Definition] = NULL, [SortOrder] = 430.00 WHERE [Code] = 'ato' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aot', 'Atong (India)', NULL, 43.20) END +VALUES ('aot', 'Atong (India)', NULL, 431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atong (India)', [Definition] = NULL, [SortOrder] = 43.20 WHERE [Code] = 'aot' END +SET [Description] = 'Atong (India)', [Definition] = NULL, [SortOrder] = 431.00 WHERE [Code] = 'aot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aox', 'Atorada', NULL, 43.30) END +VALUES ('aox', 'Atorada', NULL, 432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atorada', [Definition] = NULL, [SortOrder] = 43.30 WHERE [Code] = 'aox' END +SET [Description] = 'Atorada', [Definition] = NULL, [SortOrder] = 432.00 WHERE [Code] = 'aox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atc', 'Atsahuaca', NULL, 43.40) END +VALUES ('atc', 'Atsahuaca', NULL, 433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atsahuaca', [Definition] = NULL, [SortOrder] = 43.40 WHERE [Code] = 'atc' END +SET [Description] = 'Atsahuaca', [Definition] = NULL, [SortOrder] = 433.00 WHERE [Code] = 'atc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cch', 'Atsam', NULL, 43.50) END +VALUES ('cch', 'Atsam', NULL, 434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atsam', [Definition] = NULL, [SortOrder] = 43.50 WHERE [Code] = 'cch' END +SET [Description] = 'Atsam', [Definition] = NULL, [SortOrder] = 434.00 WHERE [Code] = 'cch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atw', 'Atsugewi', NULL, 43.60) END +VALUES ('atw', 'Atsugewi', NULL, 435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atsugewi', [Definition] = NULL, [SortOrder] = 43.60 WHERE [Code] = 'atw' END +SET [Description] = 'Atsugewi', [Definition] = NULL, [SortOrder] = 435.00 WHERE [Code] = 'atw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkr', 'Attapady Kurumba', NULL, 43.70) END +VALUES ('pkr', 'Attapady Kurumba', NULL, 436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Attapady Kurumba', [Definition] = NULL, [SortOrder] = 43.70 WHERE [Code] = 'pkr' END +SET [Description] = 'Attapady Kurumba', [Definition] = NULL, [SortOrder] = 436.00 WHERE [Code] = 'pkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ati') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ati', 'Attié', NULL, 43.80) END +VALUES ('ati', 'Attié', NULL, 437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Attié', [Definition] = NULL, [SortOrder] = 43.80 WHERE [Code] = 'ati' END +SET [Description] = 'Attié', [Definition] = NULL, [SortOrder] = 437.00 WHERE [Code] = 'ati' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ocu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ocu', 'Atzingo Matlatzinca', NULL, 43.90) END +VALUES ('ocu', 'Atzingo Matlatzinca', NULL, 438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atzingo Matlatzinca', [Definition] = NULL, [SortOrder] = 43.90 WHERE [Code] = 'ocu' END +SET [Description] = 'Atzingo Matlatzinca', [Definition] = NULL, [SortOrder] = 438.00 WHERE [Code] = 'ocu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avt', 'Au', NULL, 44.00) END +VALUES ('avt', 'Au', NULL, 439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Au', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = 'avt' END +SET [Description] = 'Au', [Definition] = NULL, [SortOrder] = 439.00 WHERE [Code] = 'avt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aul', 'Aulua', NULL, 44.10) END +VALUES ('aul', 'Aulua', NULL, 440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aulua', [Definition] = NULL, [SortOrder] = 44.10 WHERE [Code] = 'aul' END +SET [Description] = 'Aulua', [Definition] = NULL, [SortOrder] = 440.00 WHERE [Code] = 'aul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aux', 'Aurá', NULL, 44.20) END +VALUES ('aux', 'Aurá', NULL, 441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aurá', [Definition] = NULL, [SortOrder] = 44.20 WHERE [Code] = 'aux' END +SET [Description] = 'Aurá', [Definition] = NULL, [SortOrder] = 441.00 WHERE [Code] = 'aux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auh', 'Aushi', NULL, 44.30) END +VALUES ('auh', 'Aushi', NULL, 442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aushi', [Definition] = NULL, [SortOrder] = 44.30 WHERE [Code] = 'auh' END +SET [Description] = 'Aushi', [Definition] = NULL, [SortOrder] = 442.00 WHERE [Code] = 'auh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avs', 'Aushiri', NULL, 44.40) END +VALUES ('avs', 'Aushiri', NULL, 443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aushiri', [Definition] = NULL, [SortOrder] = 44.40 WHERE [Code] = 'avs' END +SET [Description] = 'Aushiri', [Definition] = NULL, [SortOrder] = 443.00 WHERE [Code] = 'avs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asf', 'Auslan', NULL, 44.50) END +VALUES ('asf', 'Auslan', NULL, 444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Auslan', [Definition] = NULL, [SortOrder] = 44.50 WHERE [Code] = 'asf' END +SET [Description] = 'Auslan', [Definition] = NULL, [SortOrder] = 444.00 WHERE [Code] = 'asf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aut', 'Austral', NULL, 44.60) END +VALUES ('aut', 'Austral', NULL, 445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Austral', [Definition] = NULL, [SortOrder] = 44.60 WHERE [Code] = 'aut' END +SET [Description] = 'Austral', [Definition] = NULL, [SortOrder] = 445.00 WHERE [Code] = 'aut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asw', 'Australian Aborigines Sign Language', NULL, 44.70) END +VALUES ('asw', 'Australian Aborigines Sign Language', NULL, 446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Australian Aborigines Sign Language', [Definition] = NULL, [SortOrder] = 44.70 WHERE [Code] = 'asw' END +SET [Description] = 'Australian Aborigines Sign Language', [Definition] = NULL, [SortOrder] = 446.00 WHERE [Code] = 'asw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asq', 'Austrian Sign Language', NULL, 44.80) END +VALUES ('asq', 'Austrian Sign Language', NULL, 447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Austrian Sign Language', [Definition] = NULL, [SortOrder] = 44.80 WHERE [Code] = 'asq' END +SET [Description] = 'Austrian Sign Language', [Definition] = NULL, [SortOrder] = 447.00 WHERE [Code] = 'asq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smf', 'Auwe', NULL, 44.90) END +VALUES ('smf', 'Auwe', NULL, 448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Auwe', [Definition] = NULL, [SortOrder] = 44.90 WHERE [Code] = 'smf' END +SET [Description] = 'Auwe', [Definition] = NULL, [SortOrder] = 448.00 WHERE [Code] = 'smf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auu', 'Auye', NULL, 45.00) END +VALUES ('auu', 'Auye', NULL, 449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Auye', [Definition] = NULL, [SortOrder] = 45.00 WHERE [Code] = 'auu' END +SET [Description] = 'Auye', [Definition] = NULL, [SortOrder] = 449.00 WHERE [Code] = 'auu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auo', 'Auyokawa', NULL, 45.10) END +VALUES ('auo', 'Auyokawa', NULL, 450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Auyokawa', [Definition] = NULL, [SortOrder] = 45.10 WHERE [Code] = 'auo' END +SET [Description] = 'Auyokawa', [Definition] = NULL, [SortOrder] = 450.00 WHERE [Code] = 'auo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avv', 'Avá-Canoeiro', NULL, 45.20) END +VALUES ('avv', 'Avá-Canoeiro', NULL, 451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avá-Canoeiro', [Definition] = NULL, [SortOrder] = 45.20 WHERE [Code] = 'avv' END +SET [Description] = 'Avá-Canoeiro', [Definition] = NULL, [SortOrder] = 451.00 WHERE [Code] = 'avv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ava') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ava', 'Avaric', NULL, 45.30) END +VALUES ('ava', 'Avaric', NULL, 452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avaric', [Definition] = NULL, [SortOrder] = 45.30 WHERE [Code] = 'ava' END +SET [Description] = 'Avaric', [Definition] = NULL, [SortOrder] = 452.00 WHERE [Code] = 'ava' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avn', 'Avatime', NULL, 45.40) END +VALUES ('avn', 'Avatime', NULL, 453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avatime', [Definition] = NULL, [SortOrder] = 45.40 WHERE [Code] = 'avn' END +SET [Description] = 'Avatime', [Definition] = NULL, [SortOrder] = 453.00 WHERE [Code] = 'avn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avb', 'Avau', NULL, 45.50) END +VALUES ('avb', 'Avau', NULL, 454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avau', [Definition] = NULL, [SortOrder] = 45.50 WHERE [Code] = 'avb' END +SET [Description] = 'Avau', [Definition] = NULL, [SortOrder] = 454.00 WHERE [Code] = 'avb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ave') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ave', 'Avestan', NULL, 45.60) END +VALUES ('ave', 'Avestan', NULL, 455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avestan', [Definition] = NULL, [SortOrder] = 45.60 WHERE [Code] = 'ave' END +SET [Description] = 'Avestan', [Definition] = NULL, [SortOrder] = 455.00 WHERE [Code] = 'ave' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avi', 'Avikam', NULL, 45.70) END +VALUES ('avi', 'Avikam', NULL, 456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avikam', [Definition] = NULL, [SortOrder] = 45.70 WHERE [Code] = 'avi' END +SET [Description] = 'Avikam', [Definition] = NULL, [SortOrder] = 456.00 WHERE [Code] = 'avi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avu', 'Avokaya', NULL, 45.80) END +VALUES ('avu', 'Avokaya', NULL, 457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avokaya', [Definition] = NULL, [SortOrder] = 45.80 WHERE [Code] = 'avu' END +SET [Description] = 'Avokaya', [Definition] = NULL, [SortOrder] = 457.00 WHERE [Code] = 'avu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vwa', 'Awa (China)', NULL, 45.90) END +VALUES ('vwa', 'Awa (China)', NULL, 458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awa (China)', [Definition] = NULL, [SortOrder] = 45.90 WHERE [Code] = 'vwa' END +SET [Description] = 'Awa (China)', [Definition] = NULL, [SortOrder] = 458.00 WHERE [Code] = 'vwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awb', 'Awa (Papua New Guinea)', NULL, 46.00) END +VALUES ('awb', 'Awa (Papua New Guinea)', NULL, 459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = 'awb' END +SET [Description] = 'Awa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 459.00 WHERE [Code] = 'awb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwi', 'Awa-Cuaiquer', NULL, 46.10) END +VALUES ('kwi', 'Awa-Cuaiquer', NULL, 460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awa-Cuaiquer', [Definition] = NULL, [SortOrder] = 46.10 WHERE [Code] = 'kwi' END +SET [Description] = 'Awa-Cuaiquer', [Definition] = NULL, [SortOrder] = 460.00 WHERE [Code] = 'kwi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awk', 'Awabakal', NULL, 46.20) END +VALUES ('awk', 'Awabakal', NULL, 461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awabakal', [Definition] = NULL, [SortOrder] = 46.20 WHERE [Code] = 'awk' END +SET [Description] = 'Awabakal', [Definition] = NULL, [SortOrder] = 461.00 WHERE [Code] = 'awk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcu', 'Awad Bing', NULL, 46.30) END +VALUES ('bcu', 'Awad Bing', NULL, 462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awad Bing', [Definition] = NULL, [SortOrder] = 46.30 WHERE [Code] = 'bcu' END +SET [Description] = 'Awad Bing', [Definition] = NULL, [SortOrder] = 462.00 WHERE [Code] = 'bcu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awa', 'Awadhi', NULL, 46.40) END +VALUES ('awa', 'Awadhi', NULL, 463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awadhi', [Definition] = NULL, [SortOrder] = 46.40 WHERE [Code] = 'awa' END +SET [Description] = 'Awadhi', [Definition] = NULL, [SortOrder] = 463.00 WHERE [Code] = 'awa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awo', 'Awak', NULL, 46.50) END +VALUES ('awo', 'Awak', NULL, 464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awak', [Definition] = NULL, [SortOrder] = 46.50 WHERE [Code] = 'awo' END +SET [Description] = 'Awak', [Definition] = NULL, [SortOrder] = 464.00 WHERE [Code] = 'awo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aya', 'Awar', NULL, 46.60) END +VALUES ('aya', 'Awar', NULL, 465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awar', [Definition] = NULL, [SortOrder] = 46.60 WHERE [Code] = 'aya' END +SET [Description] = 'Awar', [Definition] = NULL, [SortOrder] = 465.00 WHERE [Code] = 'aya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awx', 'Awara', NULL, 46.70) END +VALUES ('awx', 'Awara', NULL, 466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awara', [Definition] = NULL, [SortOrder] = 46.70 WHERE [Code] = 'awx' END +SET [Description] = 'Awara', [Definition] = NULL, [SortOrder] = 466.00 WHERE [Code] = 'awx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awh', 'Awbono', NULL, 46.80) END +VALUES ('awh', 'Awbono', NULL, 467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awbono', [Definition] = NULL, [SortOrder] = 46.80 WHERE [Code] = 'awh' END +SET [Description] = 'Awbono', [Definition] = NULL, [SortOrder] = 467.00 WHERE [Code] = 'awh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bob', 'Aweer', NULL, 46.90) END +VALUES ('bob', 'Aweer', NULL, 468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aweer', [Definition] = NULL, [SortOrder] = 46.90 WHERE [Code] = 'bob' END +SET [Description] = 'Aweer', [Definition] = NULL, [SortOrder] = 468.00 WHERE [Code] = 'bob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awr', 'Awera', NULL, 47.00) END +VALUES ('awr', 'Awera', NULL, 469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awera', [Definition] = NULL, [SortOrder] = 47.00 WHERE [Code] = 'awr' END +SET [Description] = 'Awera', [Definition] = NULL, [SortOrder] = 469.00 WHERE [Code] = 'awr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awe', 'Awetí', NULL, 47.10) END +VALUES ('awe', 'Awetí', NULL, 470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awetí', [Definition] = NULL, [SortOrder] = 47.10 WHERE [Code] = 'awe' END +SET [Description] = 'Awetí', [Definition] = NULL, [SortOrder] = 470.00 WHERE [Code] = 'awe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azo', 'Awing', NULL, 47.20) END +VALUES ('azo', 'Awing', NULL, 471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awing', [Definition] = NULL, [SortOrder] = 47.20 WHERE [Code] = 'azo' END +SET [Description] = 'Awing', [Definition] = NULL, [SortOrder] = 471.00 WHERE [Code] = 'azo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auy', 'Awiyaana', NULL, 47.30) END +VALUES ('auy', 'Awiyaana', NULL, 472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awiyaana', [Definition] = NULL, [SortOrder] = 47.30 WHERE [Code] = 'auy' END +SET [Description] = 'Awiyaana', [Definition] = NULL, [SortOrder] = 472.00 WHERE [Code] = 'auy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auj', 'Awjilah', NULL, 47.40) END +VALUES ('auj', 'Awjilah', NULL, 473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awjilah', [Definition] = NULL, [SortOrder] = 47.40 WHERE [Code] = 'auj' END +SET [Description] = 'Awjilah', [Definition] = NULL, [SortOrder] = 473.00 WHERE [Code] = 'auj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awn', 'Awngi', NULL, 47.50) END +VALUES ('awn', 'Awngi', NULL, 474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awngi', [Definition] = NULL, [SortOrder] = 47.50 WHERE [Code] = 'awn' END +SET [Description] = 'Awngi', [Definition] = NULL, [SortOrder] = 474.00 WHERE [Code] = 'awn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwm', 'Awngthim', NULL, 47.60) END +VALUES ('gwm', 'Awngthim', NULL, 475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awngthim', [Definition] = NULL, [SortOrder] = 47.60 WHERE [Code] = 'gwm' END +SET [Description] = 'Awngthim', [Definition] = NULL, [SortOrder] = 475.00 WHERE [Code] = 'gwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmn', 'Awtuw', NULL, 47.70) END +VALUES ('kmn', 'Awtuw', NULL, 476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awtuw', [Definition] = NULL, [SortOrder] = 47.70 WHERE [Code] = 'kmn' END +SET [Description] = 'Awtuw', [Definition] = NULL, [SortOrder] = 476.00 WHERE [Code] = 'kmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yiu', 'Awu', NULL, 47.80) END +VALUES ('yiu', 'Awu', NULL, 477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awu', [Definition] = NULL, [SortOrder] = 47.80 WHERE [Code] = 'yiu' END +SET [Description] = 'Awu', [Definition] = NULL, [SortOrder] = 477.00 WHERE [Code] = 'yiu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aww', 'Awun', NULL, 47.90) END +VALUES ('aww', 'Awun', NULL, 478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awun', [Definition] = NULL, [SortOrder] = 47.90 WHERE [Code] = 'aww' END +SET [Description] = 'Awun', [Definition] = NULL, [SortOrder] = 478.00 WHERE [Code] = 'aww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afu', 'Awutu', NULL, 48.00) END +VALUES ('afu', 'Awutu', NULL, 479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awutu', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = 'afu' END +SET [Description] = 'Awutu', [Definition] = NULL, [SortOrder] = 479.00 WHERE [Code] = 'afu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auw', 'Awyi', NULL, 48.10) END +VALUES ('auw', 'Awyi', NULL, 480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awyi', [Definition] = NULL, [SortOrder] = 48.10 WHERE [Code] = 'auw' END +SET [Description] = 'Awyi', [Definition] = NULL, [SortOrder] = 480.00 WHERE [Code] = 'auw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahb', 'Axamb', NULL, 48.20) END +VALUES ('ahb', 'Axamb', NULL, 481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Axamb', [Definition] = NULL, [SortOrder] = 48.20 WHERE [Code] = 'ahb' END +SET [Description] = 'Axamb', [Definition] = NULL, [SortOrder] = 481.00 WHERE [Code] = 'ahb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yix', 'Axi Yi', NULL, 48.30) END +VALUES ('yix', 'Axi Yi', NULL, 482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Axi Yi', [Definition] = NULL, [SortOrder] = 48.30 WHERE [Code] = 'yix' END +SET [Description] = 'Axi Yi', [Definition] = NULL, [SortOrder] = 482.00 WHERE [Code] = 'yix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayd', 'Ayabadhu', NULL, 48.40) END +VALUES ('ayd', 'Ayabadhu', NULL, 483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayabadhu', [Definition] = NULL, [SortOrder] = 48.40 WHERE [Code] = 'ayd' END +SET [Description] = 'Ayabadhu', [Definition] = NULL, [SortOrder] = 483.00 WHERE [Code] = 'ayd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quy', 'Ayacucho Quechua', NULL, 48.50) END +VALUES ('quy', 'Ayacucho Quechua', NULL, 484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayacucho Quechua', [Definition] = NULL, [SortOrder] = 48.50 WHERE [Code] = 'quy' END +SET [Description] = 'Ayacucho Quechua', [Definition] = NULL, [SortOrder] = 484.00 WHERE [Code] = 'quy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmy', 'Ayautla Mazatec', NULL, 48.60) END +VALUES ('vmy', 'Ayautla Mazatec', NULL, 485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayautla Mazatec', [Definition] = NULL, [SortOrder] = 48.60 WHERE [Code] = 'vmy' END +SET [Description] = 'Ayautla Mazatec', [Definition] = NULL, [SortOrder] = 485.00 WHERE [Code] = 'vmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aye', 'Ayere', NULL, 48.70) END +VALUES ('aye', 'Ayere', NULL, 486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayere', [Definition] = NULL, [SortOrder] = 48.70 WHERE [Code] = 'aye' END +SET [Description] = 'Ayere', [Definition] = NULL, [SortOrder] = 486.00 WHERE [Code] = 'aye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axe', 'Ayerrerenge', NULL, 48.80) END +VALUES ('axe', 'Ayerrerenge', NULL, 487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayerrerenge', [Definition] = NULL, [SortOrder] = 48.80 WHERE [Code] = 'axe' END +SET [Description] = 'Ayerrerenge', [Definition] = NULL, [SortOrder] = 487.00 WHERE [Code] = 'axe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayq', 'Ayi (Papua New Guinea)', NULL, 48.90) END +VALUES ('ayq', 'Ayi (Papua New Guinea)', NULL, 488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayi (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 48.90 WHERE [Code] = 'ayq' END +SET [Description] = 'Ayi (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 488.00 WHERE [Code] = 'ayq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfl', 'Ayiwo', NULL, 49.00) END +VALUES ('nfl', 'Ayiwo', NULL, 489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayiwo', [Definition] = NULL, [SortOrder] = 49.00 WHERE [Code] = 'nfl' END +SET [Description] = 'Ayiwo', [Definition] = NULL, [SortOrder] = 489.00 WHERE [Code] = 'nfl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yyz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yyz', 'Ayizi', NULL, 49.10) END +VALUES ('yyz', 'Ayizi', NULL, 490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayizi', [Definition] = NULL, [SortOrder] = 49.10 WHERE [Code] = 'yyz' END +SET [Description] = 'Ayizi', [Definition] = NULL, [SortOrder] = 490.00 WHERE [Code] = 'yyz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayb', 'Ayizo Gbe', NULL, 49.20) END +VALUES ('ayb', 'Ayizo Gbe', NULL, 491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayizo Gbe', [Definition] = NULL, [SortOrder] = 49.20 WHERE [Code] = 'ayb' END +SET [Description] = 'Ayizo Gbe', [Definition] = NULL, [SortOrder] = 491.00 WHERE [Code] = 'ayb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aym', 'Aymara', NULL, 49.30) END +VALUES ('aym', 'Aymara', NULL, 492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aymara', [Definition] = NULL, [SortOrder] = 49.30 WHERE [Code] = 'aym' END +SET [Description] = 'Aymara', [Definition] = NULL, [SortOrder] = 492.00 WHERE [Code] = 'aym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaf', 'Ayoquesco Zapotec', NULL, 49.40) END +VALUES ('zaf', 'Ayoquesco Zapotec', NULL, 493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayoquesco Zapotec', [Definition] = NULL, [SortOrder] = 49.40 WHERE [Code] = 'zaf' END +SET [Description] = 'Ayoquesco Zapotec', [Definition] = NULL, [SortOrder] = 493.00 WHERE [Code] = 'zaf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayo', 'Ayoreo', NULL, 49.50) END +VALUES ('ayo', 'Ayoreo', NULL, 494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayoreo', [Definition] = NULL, [SortOrder] = 49.50 WHERE [Code] = 'ayo' END +SET [Description] = 'Ayoreo', [Definition] = NULL, [SortOrder] = 494.00 WHERE [Code] = 'ayo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayu', 'Ayu', NULL, 49.60) END +VALUES ('ayu', 'Ayu', NULL, 495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayu', [Definition] = NULL, [SortOrder] = 49.60 WHERE [Code] = 'ayu' END +SET [Description] = 'Ayu', [Definition] = NULL, [SortOrder] = 495.00 WHERE [Code] = 'ayu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miy', 'Ayutla Mixtec', NULL, 49.70) END +VALUES ('miy', 'Ayutla Mixtec', NULL, 496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayutla Mixtec', [Definition] = NULL, [SortOrder] = 49.70 WHERE [Code] = 'miy' END +SET [Description] = 'Ayutla Mixtec', [Definition] = NULL, [SortOrder] = 496.00 WHERE [Code] = 'miy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aze', 'Azerbaijani', NULL, 49.80) END +VALUES ('aze', 'Azerbaijani', NULL, 497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Azerbaijani', [Definition] = NULL, [SortOrder] = 49.80 WHERE [Code] = 'aze' END +SET [Description] = 'Azerbaijani', [Definition] = NULL, [SortOrder] = 497.00 WHERE [Code] = 'aze' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aza', 'Azha', NULL, 49.90) END +VALUES ('aza', 'Azha', NULL, 498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Azha', [Definition] = NULL, [SortOrder] = 49.90 WHERE [Code] = 'aza' END +SET [Description] = 'Azha', [Definition] = NULL, [SortOrder] = 498.00 WHERE [Code] = 'aza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yiz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yiz', 'Azhe', NULL, 50.00) END +VALUES ('yiz', 'Azhe', NULL, 499.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Azhe', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = 'yiz' END +SET [Description] = 'Azhe', [Definition] = NULL, [SortOrder] = 499.00 WHERE [Code] = 'yiz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpc', 'Azoyú Me''phaa', NULL, 50.10) END +VALUES ('tpc', 'Azoyú Me''phaa', NULL, 500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Azoyú Me''phaa', [Definition] = NULL, [SortOrder] = 50.10 WHERE [Code] = 'tpc' END +SET [Description] = 'Azoyú Me''phaa', [Definition] = NULL, [SortOrder] = 500.00 WHERE [Code] = 'tpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvj', 'Baan', NULL, 50.20) END +VALUES ('bvj', 'Baan', NULL, 501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baan', [Definition] = NULL, [SortOrder] = 50.20 WHERE [Code] = 'bvj' END +SET [Description] = 'Baan', [Definition] = NULL, [SortOrder] = 501.00 WHERE [Code] = 'bvj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqx', 'Baangi', NULL, 50.30) END +VALUES ('bqx', 'Baangi', NULL, 502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baangi', [Definition] = NULL, [SortOrder] = 50.30 WHERE [Code] = 'bqx' END +SET [Description] = 'Baangi', [Definition] = NULL, [SortOrder] = 502.00 WHERE [Code] = 'bqx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bba', 'Baatonum', NULL, 50.40) END +VALUES ('bba', 'Baatonum', NULL, 503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baatonum', [Definition] = NULL, [SortOrder] = 50.40 WHERE [Code] = 'bba' END +SET [Description] = 'Baatonum', [Definition] = NULL, [SortOrder] = 503.00 WHERE [Code] = 'bba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbw', 'Baba', NULL, 50.50) END +VALUES ('bbw', 'Baba', NULL, 504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baba', [Definition] = NULL, [SortOrder] = 50.50 WHERE [Code] = 'bbw' END +SET [Description] = 'Baba', [Definition] = NULL, [SortOrder] = 504.00 WHERE [Code] = 'bbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbf', 'Baba Malay', NULL, 50.60) END +VALUES ('mbf', 'Baba Malay', NULL, 505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baba Malay', [Definition] = NULL, [SortOrder] = 50.60 WHERE [Code] = 'mbf' END +SET [Description] = 'Baba Malay', [Definition] = NULL, [SortOrder] = 505.00 WHERE [Code] = 'mbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbm', 'Babango', NULL, 50.70) END +VALUES ('bbm', 'Babango', NULL, 506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babango', [Definition] = NULL, [SortOrder] = 50.70 WHERE [Code] = 'bbm' END +SET [Description] = 'Babango', [Definition] = NULL, [SortOrder] = 506.00 WHERE [Code] = 'bbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbk', 'Babanki', NULL, 50.80) END +VALUES ('bbk', 'Babanki', NULL, 507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babanki', [Definition] = NULL, [SortOrder] = 50.80 WHERE [Code] = 'bbk' END +SET [Description] = 'Babanki', [Definition] = NULL, [SortOrder] = 507.00 WHERE [Code] = 'bbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'baa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baa', 'Babatana', NULL, 50.90) END +VALUES ('baa', 'Babatana', NULL, 508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babatana', [Definition] = NULL, [SortOrder] = 50.90 WHERE [Code] = 'baa' END +SET [Description] = 'Babatana', [Definition] = NULL, [SortOrder] = 508.00 WHERE [Code] = 'baa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcr', 'Babine', NULL, 51.00) END +VALUES ('bcr', 'Babine', NULL, 509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babine', [Definition] = NULL, [SortOrder] = 51.00 WHERE [Code] = 'bcr' END +SET [Description] = 'Babine', [Definition] = NULL, [SortOrder] = 509.00 WHERE [Code] = 'bcr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzg', 'Babuza', NULL, 51.10) END +VALUES ('bzg', 'Babuza', NULL, 510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babuza', [Definition] = NULL, [SortOrder] = 51.10 WHERE [Code] = 'bzg' END +SET [Description] = 'Babuza', [Definition] = NULL, [SortOrder] = 510.00 WHERE [Code] = 'bzg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcy', 'Bacama', NULL, 51.20) END +VALUES ('bcy', 'Bacama', NULL, 511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bacama', [Definition] = NULL, [SortOrder] = 51.20 WHERE [Code] = 'bcy' END +SET [Description] = 'Bacama', [Definition] = NULL, [SortOrder] = 511.00 WHERE [Code] = 'bcy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btj', 'Bacanese Malay', NULL, 51.30) END +VALUES ('btj', 'Bacanese Malay', NULL, 512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bacanese Malay', [Definition] = NULL, [SortOrder] = 51.30 WHERE [Code] = 'btj' END +SET [Description] = 'Bacanese Malay', [Definition] = NULL, [SortOrder] = 512.00 WHERE [Code] = 'btj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbc', 'Bactrian', NULL, 51.40) END +VALUES ('xbc', 'Bactrian', NULL, 513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bactrian', [Definition] = NULL, [SortOrder] = 51.40 WHERE [Code] = 'xbc' END +SET [Description] = 'Bactrian', [Definition] = NULL, [SortOrder] = 513.00 WHERE [Code] = 'xbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhz', 'Bada (Indonesia)', NULL, 51.50) END +VALUES ('bhz', 'Bada (Indonesia)', NULL, 514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bada (Indonesia)', [Definition] = NULL, [SortOrder] = 51.50 WHERE [Code] = 'bhz' END +SET [Description] = 'Bada (Indonesia)', [Definition] = NULL, [SortOrder] = 514.00 WHERE [Code] = 'bhz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bau', 'Bada (Nigeria)', NULL, 51.60) END +VALUES ('bau', 'Bada (Nigeria)', NULL, 515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bada (Nigeria)', [Definition] = NULL, [SortOrder] = 51.60 WHERE [Code] = 'bau' END +SET [Description] = 'Bada (Nigeria)', [Definition] = NULL, [SortOrder] = 515.00 WHERE [Code] = 'bau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfq', 'Badaga', NULL, 51.70) END +VALUES ('bfq', 'Badaga', NULL, 516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badaga', [Definition] = NULL, [SortOrder] = 51.70 WHERE [Code] = 'bfq' END +SET [Description] = 'Badaga', [Definition] = NULL, [SortOrder] = 516.00 WHERE [Code] = 'bfq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bde', 'Bade', NULL, 51.80) END +VALUES ('bde', 'Bade', NULL, 517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bade', [Definition] = NULL, [SortOrder] = 51.80 WHERE [Code] = 'bde' END +SET [Description] = 'Bade', [Definition] = NULL, [SortOrder] = 517.00 WHERE [Code] = 'bde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdz', 'Badeshi', NULL, 51.90) END +VALUES ('bdz', 'Badeshi', NULL, 518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badeshi', [Definition] = NULL, [SortOrder] = 51.90 WHERE [Code] = 'bdz' END +SET [Description] = 'Badeshi', [Definition] = NULL, [SortOrder] = 518.00 WHERE [Code] = 'bdz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khd', 'Bädi Kanum', NULL, 52.00) END +VALUES ('khd', 'Bädi Kanum', NULL, 519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bädi Kanum', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = 'khd' END +SET [Description] = 'Bädi Kanum', [Definition] = NULL, [SortOrder] = 519.00 WHERE [Code] = 'khd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bia', 'Badimaya', NULL, 52.10) END +VALUES ('bia', 'Badimaya', NULL, 520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badimaya', [Definition] = NULL, [SortOrder] = 52.10 WHERE [Code] = 'bia' END +SET [Description] = 'Badimaya', [Definition] = NULL, [SortOrder] = 520.00 WHERE [Code] = 'bia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbi', 'Badjiri', NULL, 52.20) END +VALUES ('jbi', 'Badjiri', NULL, 521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badjiri', [Definition] = NULL, [SortOrder] = 52.20 WHERE [Code] = 'jbi' END +SET [Description] = 'Badjiri', [Definition] = NULL, [SortOrder] = 521.00 WHERE [Code] = 'jbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bac', 'Badui', NULL, 52.30) END +VALUES ('bac', 'Badui', NULL, 522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badui', [Definition] = NULL, [SortOrder] = 52.30 WHERE [Code] = 'bac' END +SET [Description] = 'Badui', [Definition] = NULL, [SortOrder] = 522.00 WHERE [Code] = 'bac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbp', 'Badyara', NULL, 52.40) END +VALUES ('pbp', 'Badyara', NULL, 523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badyara', [Definition] = NULL, [SortOrder] = 52.40 WHERE [Code] = 'pbp' END +SET [Description] = 'Badyara', [Definition] = NULL, [SortOrder] = 523.00 WHERE [Code] = 'pbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvd', 'Baeggu', NULL, 52.50) END +VALUES ('bvd', 'Baeggu', NULL, 524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baeggu', [Definition] = NULL, [SortOrder] = 52.50 WHERE [Code] = 'bvd' END +SET [Description] = 'Baeggu', [Definition] = NULL, [SortOrder] = 524.00 WHERE [Code] = 'bvd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvc', 'Baelelea', NULL, 52.60) END +VALUES ('bvc', 'Baelelea', NULL, 525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baelelea', [Definition] = NULL, [SortOrder] = 52.60 WHERE [Code] = 'bvc' END +SET [Description] = 'Baelelea', [Definition] = NULL, [SortOrder] = 525.00 WHERE [Code] = 'bvc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btr', 'Baetora', NULL, 52.70) END +VALUES ('btr', 'Baetora', NULL, 526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baetora', [Definition] = NULL, [SortOrder] = 52.70 WHERE [Code] = 'btr' END +SET [Description] = 'Baetora', [Definition] = NULL, [SortOrder] = 526.00 WHERE [Code] = 'btr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfj', 'Bafanji', NULL, 52.80) END +VALUES ('bfj', 'Bafanji', NULL, 527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bafanji', [Definition] = NULL, [SortOrder] = 52.80 WHERE [Code] = 'bfj' END +SET [Description] = 'Bafanji', [Definition] = NULL, [SortOrder] = 527.00 WHERE [Code] = 'bfj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwt', 'Bafaw-Balong', NULL, 52.90) END +VALUES ('bwt', 'Bafaw-Balong', NULL, 528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bafaw-Balong', [Definition] = NULL, [SortOrder] = 52.90 WHERE [Code] = 'bwt' END +SET [Description] = 'Bafaw-Balong', [Definition] = NULL, [SortOrder] = 528.00 WHERE [Code] = 'bwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksf', 'Bafia', NULL, 53.00) END +VALUES ('ksf', 'Bafia', NULL, 529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bafia', [Definition] = NULL, [SortOrder] = 53.00 WHERE [Code] = 'ksf' END +SET [Description] = 'Bafia', [Definition] = NULL, [SortOrder] = 529.00 WHERE [Code] = 'ksf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfd', 'Bafut', NULL, 53.10) END +VALUES ('bfd', 'Bafut', NULL, 530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bafut', [Definition] = NULL, [SortOrder] = 53.10 WHERE [Code] = 'bfd' END +SET [Description] = 'Bafut', [Definition] = NULL, [SortOrder] = 530.00 WHERE [Code] = 'bfd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqf', 'Baga Kaloum', NULL, 53.20) END +VALUES ('bqf', 'Baga Kaloum', NULL, 531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Kaloum', [Definition] = NULL, [SortOrder] = 53.20 WHERE [Code] = 'bqf' END +SET [Description] = 'Baga Kaloum', [Definition] = NULL, [SortOrder] = 531.00 WHERE [Code] = 'bqf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgo', 'Baga Koga', NULL, 53.30) END +VALUES ('bgo', 'Baga Koga', NULL, 532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Koga', [Definition] = NULL, [SortOrder] = 53.30 WHERE [Code] = 'bgo' END +SET [Description] = 'Baga Koga', [Definition] = NULL, [SortOrder] = 532.00 WHERE [Code] = 'bgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmd', 'Baga Manduri', NULL, 53.40) END +VALUES ('bmd', 'Baga Manduri', NULL, 533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Manduri', [Definition] = NULL, [SortOrder] = 53.40 WHERE [Code] = 'bmd' END +SET [Description] = 'Baga Manduri', [Definition] = NULL, [SortOrder] = 533.00 WHERE [Code] = 'bmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcg', 'Baga Pokur', NULL, 53.50) END +VALUES ('bcg', 'Baga Pokur', NULL, 534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Pokur', [Definition] = NULL, [SortOrder] = 53.50 WHERE [Code] = 'bcg' END +SET [Description] = 'Baga Pokur', [Definition] = NULL, [SortOrder] = 534.00 WHERE [Code] = 'bcg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsp', 'Baga Sitemu', NULL, 53.60) END +VALUES ('bsp', 'Baga Sitemu', NULL, 535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Sitemu', [Definition] = NULL, [SortOrder] = 53.60 WHERE [Code] = 'bsp' END +SET [Description] = 'Baga Sitemu', [Definition] = NULL, [SortOrder] = 535.00 WHERE [Code] = 'bsp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsv', 'Baga Sobané', NULL, 53.70) END +VALUES ('bsv', 'Baga Sobané', NULL, 536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Sobané', [Definition] = NULL, [SortOrder] = 53.70 WHERE [Code] = 'bsv' END +SET [Description] = 'Baga Sobané', [Definition] = NULL, [SortOrder] = 536.00 WHERE [Code] = 'bsv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfy', 'Bagheli', NULL, 53.80) END +VALUES ('bfy', 'Bagheli', NULL, 537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagheli', [Definition] = NULL, [SortOrder] = 53.80 WHERE [Code] = 'bfy' END +SET [Description] = 'Bagheli', [Definition] = NULL, [SortOrder] = 537.00 WHERE [Code] = 'bfy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmi', 'Bagirmi', NULL, 53.90) END +VALUES ('bmi', 'Bagirmi', NULL, 538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagirmi', [Definition] = NULL, [SortOrder] = 53.90 WHERE [Code] = 'bmi' END +SET [Description] = 'Bagirmi', [Definition] = NULL, [SortOrder] = 538.00 WHERE [Code] = 'bmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fui', 'Bagirmi Fulfulde', NULL, 54.00) END +VALUES ('fui', 'Bagirmi Fulfulde', NULL, 539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagirmi Fulfulde', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = 'fui' END +SET [Description] = 'Bagirmi Fulfulde', [Definition] = NULL, [SortOrder] = 539.00 WHERE [Code] = 'fui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqg', 'Bago-Kusuntu', NULL, 54.10) END +VALUES ('bqg', 'Bago-Kusuntu', NULL, 540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bago-Kusuntu', [Definition] = NULL, [SortOrder] = 54.10 WHERE [Code] = 'bqg' END +SET [Description] = 'Bago-Kusuntu', [Definition] = NULL, [SortOrder] = 540.00 WHERE [Code] = 'bqg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgq', 'Bagri', NULL, 54.20) END +VALUES ('bgq', 'Bagri', NULL, 541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagri', [Definition] = NULL, [SortOrder] = 54.20 WHERE [Code] = 'bgq' END +SET [Description] = 'Bagri', [Definition] = NULL, [SortOrder] = 541.00 WHERE [Code] = 'bgq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpi', 'Bagupi', NULL, 54.30) END +VALUES ('bpi', 'Bagupi', NULL, 542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagupi', [Definition] = NULL, [SortOrder] = 54.30 WHERE [Code] = 'bpi' END +SET [Description] = 'Bagupi', [Definition] = NULL, [SortOrder] = 542.00 WHERE [Code] = 'bpi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqb', 'Bagusa', NULL, 54.40) END +VALUES ('bqb', 'Bagusa', NULL, 543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagusa', [Definition] = NULL, [SortOrder] = 54.40 WHERE [Code] = 'bqb' END +SET [Description] = 'Bagusa', [Definition] = NULL, [SortOrder] = 543.00 WHERE [Code] = 'bqb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kva', 'Bagvalal', NULL, 54.50) END +VALUES ('kva', 'Bagvalal', NULL, 544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagvalal', [Definition] = NULL, [SortOrder] = 54.50 WHERE [Code] = 'kva' END +SET [Description] = 'Bagvalal', [Definition] = NULL, [SortOrder] = 544.00 WHERE [Code] = 'kva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yha', 'Baha Buyang', NULL, 54.60) END +VALUES ('yha', 'Baha Buyang', NULL, 545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baha Buyang', [Definition] = NULL, [SortOrder] = 54.60 WHERE [Code] = 'yha' END +SET [Description] = 'Baha Buyang', [Definition] = NULL, [SortOrder] = 545.00 WHERE [Code] = 'yha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdw', 'Baham', NULL, 54.70) END +VALUES ('bdw', 'Baham', NULL, 546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baham', [Definition] = NULL, [SortOrder] = 54.70 WHERE [Code] = 'bdw' END +SET [Description] = 'Baham', [Definition] = NULL, [SortOrder] = 546.00 WHERE [Code] = 'bdw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bah', 'Bahamas Creole English', NULL, 54.80) END +VALUES ('bah', 'Bahamas Creole English', NULL, 547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahamas Creole English', [Definition] = NULL, [SortOrder] = 54.80 WHERE [Code] = 'bah' END +SET [Description] = 'Bahamas Creole English', [Definition] = NULL, [SortOrder] = 547.00 WHERE [Code] = 'bah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abv', 'Baharna Arabic', NULL, 54.90) END +VALUES ('abv', 'Baharna Arabic', NULL, 548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baharna Arabic', [Definition] = NULL, [SortOrder] = 54.90 WHERE [Code] = 'abv' END +SET [Description] = 'Baharna Arabic', [Definition] = NULL, [SortOrder] = 548.00 WHERE [Code] = 'abv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhv', 'Bahau', NULL, 55.00) END +VALUES ('bhv', 'Bahau', NULL, 549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahau', [Definition] = NULL, [SortOrder] = 55.00 WHERE [Code] = 'bhv' END +SET [Description] = 'Bahau', [Definition] = NULL, [SortOrder] = 549.00 WHERE [Code] = 'bhv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjh', 'Bahinemo', NULL, 55.10) END +VALUES ('bjh', 'Bahinemo', NULL, 550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahinemo', [Definition] = NULL, [SortOrder] = 55.10 WHERE [Code] = 'bjh' END +SET [Description] = 'Bahinemo', [Definition] = NULL, [SortOrder] = 550.00 WHERE [Code] = 'bjh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhj', 'Bahing', NULL, 55.20) END +VALUES ('bhj', 'Bahing', NULL, 551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahing', [Definition] = NULL, [SortOrder] = 55.20 WHERE [Code] = 'bhj' END +SET [Description] = 'Bahing', [Definition] = NULL, [SortOrder] = 551.00 WHERE [Code] = 'bhj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdq', 'Bahnar', NULL, 55.30) END +VALUES ('bdq', 'Bahnar', NULL, 552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahnar', [Definition] = NULL, [SortOrder] = 55.30 WHERE [Code] = 'bdq' END +SET [Description] = 'Bahnar', [Definition] = NULL, [SortOrder] = 552.00 WHERE [Code] = 'bdq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsu', 'Bahonsuai', NULL, 55.40) END +VALUES ('bsu', 'Bahonsuai', NULL, 553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahonsuai', [Definition] = NULL, [SortOrder] = 55.40 WHERE [Code] = 'bsu' END +SET [Description] = 'Bahonsuai', [Definition] = NULL, [SortOrder] = 553.00 WHERE [Code] = 'bsu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdj', 'Bai (South Sudan)', NULL, 55.50) END +VALUES ('bdj', 'Bai (South Sudan)', NULL, 554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bai (South Sudan)', [Definition] = NULL, [SortOrder] = 55.50 WHERE [Code] = 'bdj' END +SET [Description] = 'Bai (South Sudan)', [Definition] = NULL, [SortOrder] = 554.00 WHERE [Code] = 'bdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbf', 'Baibai', NULL, 55.60) END +VALUES ('bbf', 'Baibai', NULL, 555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baibai', [Definition] = NULL, [SortOrder] = 55.60 WHERE [Code] = 'bbf' END +SET [Description] = 'Baibai', [Definition] = NULL, [SortOrder] = 555.00 WHERE [Code] = 'bbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkx', 'Baikeno', NULL, 55.70) END +VALUES ('bkx', 'Baikeno', NULL, 556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baikeno', [Definition] = NULL, [SortOrder] = 55.70 WHERE [Code] = 'bkx' END +SET [Description] = 'Baikeno', [Definition] = NULL, [SortOrder] = 556.00 WHERE [Code] = 'bkx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqh', 'Baima', NULL, 55.80) END +VALUES ('bqh', 'Baima', NULL, 557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baima', [Definition] = NULL, [SortOrder] = 55.80 WHERE [Code] = 'bqh' END +SET [Description] = 'Baima', [Definition] = NULL, [SortOrder] = 557.00 WHERE [Code] = 'bqh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmx', 'Baimak', NULL, 55.90) END +VALUES ('bmx', 'Baimak', NULL, 558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baimak', [Definition] = NULL, [SortOrder] = 55.90 WHERE [Code] = 'bmx' END +SET [Description] = 'Baimak', [Definition] = NULL, [SortOrder] = 558.00 WHERE [Code] = 'bmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcz', 'Bainouk-Gunyaamolo', NULL, 56.00) END +VALUES ('bcz', 'Bainouk-Gunyaamolo', NULL, 559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bainouk-Gunyaamolo', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = 'bcz' END +SET [Description] = 'Bainouk-Gunyaamolo', [Definition] = NULL, [SortOrder] = 559.00 WHERE [Code] = 'bcz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bab', 'Bainouk-Gunyuño', NULL, 56.10) END +VALUES ('bab', 'Bainouk-Gunyuño', NULL, 560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bainouk-Gunyuño', [Definition] = NULL, [SortOrder] = 56.10 WHERE [Code] = 'bab' END +SET [Description] = 'Bainouk-Gunyuño', [Definition] = NULL, [SortOrder] = 560.00 WHERE [Code] = 'bab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcb', 'Bainouk-Samik', NULL, 56.20) END +VALUES ('bcb', 'Bainouk-Samik', NULL, 561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bainouk-Samik', [Definition] = NULL, [SortOrder] = 56.20 WHERE [Code] = 'bcb' END +SET [Description] = 'Bainouk-Samik', [Definition] = NULL, [SortOrder] = 561.00 WHERE [Code] = 'bcb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsw', 'Baiso', NULL, 56.30) END +VALUES ('bsw', 'Baiso', NULL, 562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baiso', [Definition] = NULL, [SortOrder] = 56.30 WHERE [Code] = 'bsw' END +SET [Description] = 'Baiso', [Definition] = NULL, [SortOrder] = 562.00 WHERE [Code] = 'bsw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fah', 'Baissa Fali', NULL, 56.40) END +VALUES ('fah', 'Baissa Fali', NULL, 563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baissa Fali', [Definition] = NULL, [SortOrder] = 56.40 WHERE [Code] = 'fah' END +SET [Description] = 'Baissa Fali', [Definition] = NULL, [SortOrder] = 563.00 WHERE [Code] = 'fah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjs', 'Bajan', NULL, 56.50) END +VALUES ('bjs', 'Bajan', NULL, 564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bajan', [Definition] = NULL, [SortOrder] = 56.50 WHERE [Code] = 'bjs' END +SET [Description] = 'Bajan', [Definition] = NULL, [SortOrder] = 564.00 WHERE [Code] = 'bjs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjm', 'Bajelani', NULL, 56.60) END +VALUES ('bjm', 'Bajelani', NULL, 565.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Bajelani', [Definition] = NULL, [SortOrder] = 565.00 WHERE [Code] = 'bjm' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('vjk', 'Bajjika', NULL, 566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bajelani', [Definition] = NULL, [SortOrder] = 56.60 WHERE [Code] = 'bjm' END +SET [Description] = 'Bajjika', [Definition] = NULL, [SortOrder] = 566.00 WHERE [Code] = 'vjk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkc', 'Baka (Cameroon)', NULL, 56.70) END +VALUES ('bkc', 'Baka (Cameroon)', NULL, 567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baka (Cameroon)', [Definition] = NULL, [SortOrder] = 56.70 WHERE [Code] = 'bkc' END +SET [Description] = 'Baka (Cameroon)', [Definition] = NULL, [SortOrder] = 567.00 WHERE [Code] = 'bkc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdh', 'Baka (South Sudan)', NULL, 56.80) END +VALUES ('bdh', 'Baka (South Sudan)', NULL, 568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baka (South Sudan)', [Definition] = NULL, [SortOrder] = 56.80 WHERE [Code] = 'bdh' END +SET [Description] = 'Baka (South Sudan)', [Definition] = NULL, [SortOrder] = 568.00 WHERE [Code] = 'bdh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkq', 'Bakairí', NULL, 56.90) END +VALUES ('bkq', 'Bakairí', NULL, 569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakairí', [Definition] = NULL, [SortOrder] = 56.90 WHERE [Code] = 'bkq' END +SET [Description] = 'Bakairí', [Definition] = NULL, [SortOrder] = 569.00 WHERE [Code] = 'bkq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqz', 'Bakaka', NULL, 57.00) END +VALUES ('bqz', 'Bakaka', NULL, 570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakaka', [Definition] = NULL, [SortOrder] = 57.00 WHERE [Code] = 'bqz' END +SET [Description] = 'Bakaka', [Definition] = NULL, [SortOrder] = 570.00 WHERE [Code] = 'bqz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqi', 'Bakhtiari', NULL, 57.10) END +VALUES ('bqi', 'Bakhtiari', NULL, 571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakhtiari', [Definition] = NULL, [SortOrder] = 57.10 WHERE [Code] = 'bqi' END +SET [Description] = 'Bakhtiari', [Definition] = NULL, [SortOrder] = 571.00 WHERE [Code] = 'bqi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bki', 'Baki', NULL, 57.20) END +VALUES ('bki', 'Baki', NULL, 572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baki', [Definition] = NULL, [SortOrder] = 57.20 WHERE [Code] = 'bki' END +SET [Description] = 'Baki', [Definition] = NULL, [SortOrder] = 572.00 WHERE [Code] = 'bki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkh', 'Bakoko', NULL, 57.30) END +VALUES ('bkh', 'Bakoko', NULL, 573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakoko', [Definition] = NULL, [SortOrder] = 57.30 WHERE [Code] = 'bkh' END +SET [Description] = 'Bakoko', [Definition] = NULL, [SortOrder] = 573.00 WHERE [Code] = 'bkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kme', 'Bakole', NULL, 57.40) END +VALUES ('kme', 'Bakole', NULL, 574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakole', [Definition] = NULL, [SortOrder] = 57.40 WHERE [Code] = 'kme' END +SET [Description] = 'Bakole', [Definition] = NULL, [SortOrder] = 574.00 WHERE [Code] = 'kme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbs', 'Bakpinka', NULL, 57.50) END +VALUES ('bbs', 'Bakpinka', NULL, 575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakpinka', [Definition] = NULL, [SortOrder] = 57.50 WHERE [Code] = 'bbs' END +SET [Description] = 'Bakpinka', [Definition] = NULL, [SortOrder] = 575.00 WHERE [Code] = 'bbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkr', 'Bakumpai', NULL, 57.60) END +VALUES ('bkr', 'Bakumpai', NULL, 576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakumpai', [Definition] = NULL, [SortOrder] = 57.60 WHERE [Code] = 'bkr' END +SET [Description] = 'Bakumpai', [Definition] = NULL, [SortOrder] = 576.00 WHERE [Code] = 'bkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjw', 'Bakwé', NULL, 57.70) END +VALUES ('bjw', 'Bakwé', NULL, 577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakwé', [Definition] = NULL, [SortOrder] = 57.70 WHERE [Code] = 'bjw' END +SET [Description] = 'Bakwé', [Definition] = NULL, [SortOrder] = 577.00 WHERE [Code] = 'bjw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bls', 'Balaesang', NULL, 57.80) END +VALUES ('bls', 'Balaesang', NULL, 578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balaesang', [Definition] = NULL, [SortOrder] = 57.80 WHERE [Code] = 'bls' END +SET [Description] = 'Balaesang', [Definition] = NULL, [SortOrder] = 578.00 WHERE [Code] = 'bls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zba', 'Balaibalan', NULL, 57.90) END +VALUES ('zba', 'Balaibalan', NULL, 579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balaibalan', [Definition] = NULL, [SortOrder] = 57.90 WHERE [Code] = 'zba' END +SET [Description] = 'Balaibalan', [Definition] = NULL, [SortOrder] = 579.00 WHERE [Code] = 'zba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blw', 'Balangao', NULL, 58.00) END +VALUES ('blw', 'Balangao', NULL, 580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balangao', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = 'blw' END +SET [Description] = 'Balangao', [Definition] = NULL, [SortOrder] = 580.00 WHERE [Code] = 'blw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sse', 'Balangingi', NULL, 58.10) END +VALUES ('sse', 'Balangingi', NULL, 581.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balangingi', [Definition] = NULL, [SortOrder] = 58.10 WHERE [Code] = 'sse' END +SET [Description] = 'Balangingi', [Definition] = NULL, [SortOrder] = 581.00 WHERE [Code] = 'sse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjt', 'Balanta-Ganja', NULL, 58.20) END +VALUES ('bjt', 'Balanta-Ganja', NULL, 582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balanta-Ganja', [Definition] = NULL, [SortOrder] = 58.20 WHERE [Code] = 'bjt' END +SET [Description] = 'Balanta-Ganja', [Definition] = NULL, [SortOrder] = 582.00 WHERE [Code] = 'bjt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ble') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ble', 'Balanta-Kentohe', NULL, 58.30) END +VALUES ('ble', 'Balanta-Kentohe', NULL, 583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balanta-Kentohe', [Definition] = NULL, [SortOrder] = 58.30 WHERE [Code] = 'ble' END +SET [Description] = 'Balanta-Kentohe', [Definition] = NULL, [SortOrder] = 583.00 WHERE [Code] = 'ble' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blz', 'Balantak', NULL, 58.40) END +VALUES ('blz', 'Balantak', NULL, 584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balantak', [Definition] = NULL, [SortOrder] = 58.40 WHERE [Code] = 'blz' END +SET [Description] = 'Balantak', [Definition] = NULL, [SortOrder] = 584.00 WHERE [Code] = 'blz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdn', 'Baldemu', NULL, 58.50) END +VALUES ('bdn', 'Baldemu', NULL, 585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baldemu', [Definition] = NULL, [SortOrder] = 58.50 WHERE [Code] = 'bdn' END +SET [Description] = 'Baldemu', [Definition] = NULL, [SortOrder] = 585.00 WHERE [Code] = 'bdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcp', 'Bali (Democratic Republic of Congo)', NULL, 58.60) END +VALUES ('bcp', 'Bali (Democratic Republic of Congo)', NULL, 586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bali (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 58.60 WHERE [Code] = 'bcp' END +SET [Description] = 'Bali (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 586.00 WHERE [Code] = 'bcp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcn', 'Bali (Nigeria)', NULL, 58.70) END +VALUES ('bcn', 'Bali (Nigeria)', NULL, 587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bali (Nigeria)', [Definition] = NULL, [SortOrder] = 58.70 WHERE [Code] = 'bcn' END +SET [Description] = 'Bali (Nigeria)', [Definition] = NULL, [SortOrder] = 587.00 WHERE [Code] = 'bcn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ban') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ban', 'Balinese', NULL, 58.80) END +VALUES ('ban', 'Balinese', NULL, 588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balinese', [Definition] = NULL, [SortOrder] = 58.80 WHERE [Code] = 'ban' END +SET [Description] = 'Balinese', [Definition] = NULL, [SortOrder] = 588.00 WHERE [Code] = 'ban' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhp', 'Balinese Malay', NULL, 58.90) END +VALUES ('mhp', 'Balinese Malay', NULL, 589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balinese Malay', [Definition] = NULL, [SortOrder] = 58.90 WHERE [Code] = 'mhp' END +SET [Description] = 'Balinese Malay', [Definition] = NULL, [SortOrder] = 589.00 WHERE [Code] = 'mhp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgx', 'Balkan Gagauz Turkish', NULL, 59.00) END +VALUES ('bgx', 'Balkan Gagauz Turkish', NULL, 590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balkan Gagauz Turkish', [Definition] = NULL, [SortOrder] = 59.00 WHERE [Code] = 'bgx' END +SET [Description] = 'Balkan Gagauz Turkish', [Definition] = NULL, [SortOrder] = 590.00 WHERE [Code] = 'bgx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmn', 'Balkan Romani', NULL, 59.10) END +VALUES ('rmn', 'Balkan Romani', NULL, 591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balkan Romani', [Definition] = NULL, [SortOrder] = 59.10 WHERE [Code] = 'rmn' END +SET [Description] = 'Balkan Romani', [Definition] = NULL, [SortOrder] = 591.00 WHERE [Code] = 'rmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqo', 'Balo', NULL, 59.20) END +VALUES ('bqo', 'Balo', NULL, 592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balo', [Definition] = NULL, [SortOrder] = 59.20 WHERE [Code] = 'bqo' END +SET [Description] = 'Balo', [Definition] = NULL, [SortOrder] = 592.00 WHERE [Code] = 'bqo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biz', 'Baloi', NULL, 59.30) END +VALUES ('biz', 'Baloi', NULL, 593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baloi', [Definition] = NULL, [SortOrder] = 59.30 WHERE [Code] = 'biz' END +SET [Description] = 'Baloi', [Definition] = NULL, [SortOrder] = 593.00 WHERE [Code] = 'biz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bft', 'Balti', NULL, 59.40) END +VALUES ('bft', 'Balti', NULL, 594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balti', [Definition] = NULL, [SortOrder] = 59.40 WHERE [Code] = 'bft' END +SET [Description] = 'Balti', [Definition] = NULL, [SortOrder] = 594.00 WHERE [Code] = 'bft' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rml', 'Baltic Romani', NULL, 59.50) END +VALUES ('rml', 'Baltic Romani', NULL, 595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baltic Romani', [Definition] = NULL, [SortOrder] = 59.50 WHERE [Code] = 'rml' END +SET [Description] = 'Baltic Romani', [Definition] = NULL, [SortOrder] = 595.00 WHERE [Code] = 'rml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blq', 'Baluan-Pam', NULL, 59.60) END +VALUES ('blq', 'Baluan-Pam', NULL, 596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baluan-Pam', [Definition] = NULL, [SortOrder] = 59.60 WHERE [Code] = 'blq' END +SET [Description] = 'Baluan-Pam', [Definition] = NULL, [SortOrder] = 596.00 WHERE [Code] = 'blq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bal', 'Baluchi', NULL, 59.70) END +VALUES ('bal', 'Baluchi', NULL, 597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baluchi', [Definition] = NULL, [SortOrder] = 59.70 WHERE [Code] = 'bal' END +SET [Description] = 'Baluchi', [Definition] = NULL, [SortOrder] = 597.00 WHERE [Code] = 'bal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bog', 'Bamako Sign Language', NULL, 59.80) END +VALUES ('bog', 'Bamako Sign Language', NULL, 598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamako Sign Language', [Definition] = NULL, [SortOrder] = 59.80 WHERE [Code] = 'bog' END +SET [Description] = 'Bamako Sign Language', [Definition] = NULL, [SortOrder] = 598.00 WHERE [Code] = 'bog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbq', 'Bamali', NULL, 59.90) END +VALUES ('bbq', 'Bamali', NULL, 599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamali', [Definition] = NULL, [SortOrder] = 59.90 WHERE [Code] = 'bbq' END +SET [Description] = 'Bamali', [Definition] = NULL, [SortOrder] = 599.00 WHERE [Code] = 'bbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmo', 'Bambalang', NULL, 60.00) END +VALUES ('bmo', 'Bambalang', NULL, 600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambalang', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = 'bmo' END +SET [Description] = 'Bambalang', [Definition] = NULL, [SortOrder] = 600.00 WHERE [Code] = 'bmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptu', 'Bambam', NULL, 60.10) END +VALUES ('ptu', 'Bambam', NULL, 601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambam', [Definition] = NULL, [SortOrder] = 60.10 WHERE [Code] = 'ptu' END +SET [Description] = 'Bambam', [Definition] = NULL, [SortOrder] = 601.00 WHERE [Code] = 'ptu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bam', 'Bambara', NULL, 60.20) END +VALUES ('bam', 'Bambara', NULL, 602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambara', [Definition] = NULL, [SortOrder] = 60.20 WHERE [Code] = 'bam' END +SET [Description] = 'Bambara', [Definition] = NULL, [SortOrder] = 602.00 WHERE [Code] = 'bam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myf', 'Bambassi', NULL, 60.30) END +VALUES ('myf', 'Bambassi', NULL, 603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambassi', [Definition] = NULL, [SortOrder] = 60.30 WHERE [Code] = 'myf' END +SET [Description] = 'Bambassi', [Definition] = NULL, [SortOrder] = 603.00 WHERE [Code] = 'myf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'baw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baw', 'Bambili-Bambui', NULL, 60.40) END +VALUES ('baw', 'Bambili-Bambui', NULL, 604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambili-Bambui', [Definition] = NULL, [SortOrder] = 60.40 WHERE [Code] = 'baw' END +SET [Description] = 'Bambili-Bambui', [Definition] = NULL, [SortOrder] = 604.00 WHERE [Code] = 'baw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bce', 'Bamenyam', NULL, 60.50) END +VALUES ('bce', 'Bamenyam', NULL, 605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamenyam', [Definition] = NULL, [SortOrder] = 60.50 WHERE [Code] = 'bce' END +SET [Description] = 'Bamenyam', [Definition] = NULL, [SortOrder] = 605.00 WHERE [Code] = 'bce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcf', 'Bamu', NULL, 60.60) END +VALUES ('bcf', 'Bamu', NULL, 606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamu', [Definition] = NULL, [SortOrder] = 60.60 WHERE [Code] = 'bcf' END +SET [Description] = 'Bamu', [Definition] = NULL, [SortOrder] = 606.00 WHERE [Code] = 'bcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqt', 'Bamukumbit', NULL, 60.70) END +VALUES ('bqt', 'Bamukumbit', NULL, 607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamukumbit', [Definition] = NULL, [SortOrder] = 60.70 WHERE [Code] = 'bqt' END +SET [Description] = 'Bamukumbit', [Definition] = NULL, [SortOrder] = 607.00 WHERE [Code] = 'bqt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bax', 'Bamun', NULL, 60.80) END +VALUES ('bax', 'Bamun', NULL, 608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamun', [Definition] = NULL, [SortOrder] = 60.80 WHERE [Code] = 'bax' END +SET [Description] = 'Bamun', [Definition] = NULL, [SortOrder] = 608.00 WHERE [Code] = 'bax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvm', 'Bamunka', NULL, 60.90) END +VALUES ('bvm', 'Bamunka', NULL, 609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamunka', [Definition] = NULL, [SortOrder] = 60.90 WHERE [Code] = 'bvm' END +SET [Description] = 'Bamunka', [Definition] = NULL, [SortOrder] = 609.00 WHERE [Code] = 'bvm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmg', 'Bamwe', NULL, 61.00) END +VALUES ('bmg', 'Bamwe', NULL, 610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamwe', [Definition] = NULL, [SortOrder] = 61.00 WHERE [Code] = 'bmg' END +SET [Description] = 'Bamwe', [Definition] = NULL, [SortOrder] = 610.00 WHERE [Code] = 'bmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfk', 'Ban Khor Sign Language', NULL, 61.10) END +VALUES ('bfk', 'Ban Khor Sign Language', NULL, 611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ban Khor Sign Language', [Definition] = NULL, [SortOrder] = 61.10 WHERE [Code] = 'bfk' END +SET [Description] = 'Ban Khor Sign Language', [Definition] = NULL, [SortOrder] = 611.00 WHERE [Code] = 'bfk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcw', 'Bana', NULL, 61.20) END +VALUES ('bcw', 'Bana', NULL, 612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bana', [Definition] = NULL, [SortOrder] = 61.20 WHERE [Code] = 'bcw' END +SET [Description] = 'Bana', [Definition] = NULL, [SortOrder] = 612.00 WHERE [Code] = 'bcw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjx', 'Banao Itneg', NULL, 61.30) END +VALUES ('bjx', 'Banao Itneg', NULL, 613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banao Itneg', [Definition] = NULL, [SortOrder] = 61.30 WHERE [Code] = 'bjx' END +SET [Description] = 'Banao Itneg', [Definition] = NULL, [SortOrder] = 613.00 WHERE [Code] = 'bjx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byz', 'Banaro', NULL, 61.40) END +VALUES ('byz', 'Banaro', NULL, 614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banaro', [Definition] = NULL, [SortOrder] = 61.40 WHERE [Code] = 'byz' END +SET [Description] = 'Banaro', [Definition] = NULL, [SortOrder] = 614.00 WHERE [Code] = 'byz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnd', 'Banda (Indonesia)', NULL, 61.50) END +VALUES ('bnd', 'Banda (Indonesia)', NULL, 615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda (Indonesia)', [Definition] = NULL, [SortOrder] = 61.50 WHERE [Code] = 'bnd' END +SET [Description] = 'Banda (Indonesia)', [Definition] = NULL, [SortOrder] = 615.00 WHERE [Code] = 'bnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpq', 'Banda Malay', NULL, 61.60) END +VALUES ('bpq', 'Banda Malay', NULL, 616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda Malay', [Definition] = NULL, [SortOrder] = 61.60 WHERE [Code] = 'bpq' END +SET [Description] = 'Banda Malay', [Definition] = NULL, [SortOrder] = 616.00 WHERE [Code] = 'bpq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liy', 'Banda-Bambari', NULL, 61.70) END +VALUES ('liy', 'Banda-Bambari', NULL, 617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Bambari', [Definition] = NULL, [SortOrder] = 61.70 WHERE [Code] = 'liy' END +SET [Description] = 'Banda-Bambari', [Definition] = NULL, [SortOrder] = 617.00 WHERE [Code] = 'liy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpd', 'Banda-Banda', NULL, 61.80) END +VALUES ('bpd', 'Banda-Banda', NULL, 618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Banda', [Definition] = NULL, [SortOrder] = 61.80 WHERE [Code] = 'bpd' END +SET [Description] = 'Banda-Banda', [Definition] = NULL, [SortOrder] = 618.00 WHERE [Code] = 'bpd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqk', 'Banda-Mbrès', NULL, 61.90) END +VALUES ('bqk', 'Banda-Mbrès', NULL, 619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Mbrès', [Definition] = NULL, [SortOrder] = 61.90 WHERE [Code] = 'bqk' END +SET [Description] = 'Banda-Mbrès', [Definition] = NULL, [SortOrder] = 619.00 WHERE [Code] = 'bqk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfl', 'Banda-Ndélé', NULL, 62.00) END +VALUES ('bfl', 'Banda-Ndélé', NULL, 620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Ndélé', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = 'bfl' END +SET [Description] = 'Banda-Ndélé', [Definition] = NULL, [SortOrder] = 620.00 WHERE [Code] = 'bfl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaj', 'Banda-Yangere', NULL, 62.10) END +VALUES ('yaj', 'Banda-Yangere', NULL, 621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Yangere', [Definition] = NULL, [SortOrder] = 62.10 WHERE [Code] = 'yaj' END +SET [Description] = 'Banda-Yangere', [Definition] = NULL, [SortOrder] = 621.00 WHERE [Code] = 'yaj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bza', 'Bandi', NULL, 62.20) END +VALUES ('bza', 'Bandi', NULL, 622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bandi', [Definition] = NULL, [SortOrder] = 62.20 WHERE [Code] = 'bza' END +SET [Description] = 'Bandi', [Definition] = NULL, [SortOrder] = 622.00 WHERE [Code] = 'bza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqj', 'Bandial', NULL, 62.30) END +VALUES ('bqj', 'Bandial', NULL, 623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bandial', [Definition] = NULL, [SortOrder] = 62.30 WHERE [Code] = 'bqj' END +SET [Description] = 'Bandial', [Definition] = NULL, [SortOrder] = 623.00 WHERE [Code] = 'bqj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdy', 'Bandjalang', NULL, 62.40) END +VALUES ('bdy', 'Bandjalang', NULL, 624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bandjalang', [Definition] = NULL, [SortOrder] = 62.40 WHERE [Code] = 'bdy' END +SET [Description] = 'Bandjalang', [Definition] = NULL, [SortOrder] = 624.00 WHERE [Code] = 'bdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxg', 'Bangala', NULL, 62.50) END +VALUES ('bxg', 'Bangala', NULL, 625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangala', [Definition] = NULL, [SortOrder] = 62.50 WHERE [Code] = 'bxg' END +SET [Description] = 'Bangala', [Definition] = NULL, [SortOrder] = 625.00 WHERE [Code] = 'bxg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgf', 'Bangandu', NULL, 62.60) END +VALUES ('bgf', 'Bangandu', NULL, 626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangandu', [Definition] = NULL, [SortOrder] = 62.60 WHERE [Code] = 'bgf' END +SET [Description] = 'Bangandu', [Definition] = NULL, [SortOrder] = 626.00 WHERE [Code] = 'bgf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbe', 'Bangba', NULL, 62.70) END +VALUES ('bbe', 'Bangba', NULL, 627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangba', [Definition] = NULL, [SortOrder] = 62.70 WHERE [Code] = 'bbe' END +SET [Description] = 'Bangba', [Definition] = NULL, [SortOrder] = 627.00 WHERE [Code] = 'bbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgz', 'Banggai', NULL, 62.80) END +VALUES ('bgz', 'Banggai', NULL, 628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banggai', [Definition] = NULL, [SortOrder] = 62.80 WHERE [Code] = 'bgz' END +SET [Description] = 'Banggai', [Definition] = NULL, [SortOrder] = 628.00 WHERE [Code] = 'bgz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjb', 'Banggarla', NULL, 62.90) END +VALUES ('bjb', 'Banggarla', NULL, 629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banggarla', [Definition] = NULL, [SortOrder] = 62.90 WHERE [Code] = 'bjb' END +SET [Description] = 'Banggarla', [Definition] = NULL, [SortOrder] = 629.00 WHERE [Code] = 'bjb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bni', 'Bangi', NULL, 63.00) END +VALUES ('bni', 'Bangi', NULL, 630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangi', [Definition] = NULL, [SortOrder] = 63.00 WHERE [Code] = 'bni' END +SET [Description] = 'Bangi', [Definition] = NULL, [SortOrder] = 630.00 WHERE [Code] = 'bni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dba', 'Bangime', NULL, 63.10) END +VALUES ('dba', 'Bangime', NULL, 631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangime', [Definition] = NULL, [SortOrder] = 63.10 WHERE [Code] = 'dba' END +SET [Description] = 'Bangime', [Definition] = NULL, [SortOrder] = 631.00 WHERE [Code] = 'dba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfb', 'Bangka', NULL, 63.20) END +VALUES ('mfb', 'Bangka', NULL, 632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangka', [Definition] = NULL, [SortOrder] = 63.20 WHERE [Code] = 'mfb' END +SET [Description] = 'Bangka', [Definition] = NULL, [SortOrder] = 632.00 WHERE [Code] = 'mfb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgj', 'Bangolan', NULL, 63.30) END +VALUES ('bgj', 'Bangolan', NULL, 633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangolan', [Definition] = NULL, [SortOrder] = 63.30 WHERE [Code] = 'bgj' END +SET [Description] = 'Bangolan', [Definition] = NULL, [SortOrder] = 633.00 WHERE [Code] = 'bgj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnx', 'Bangubangu', NULL, 63.40) END +VALUES ('bnx', 'Bangubangu', NULL, 634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangubangu', [Definition] = NULL, [SortOrder] = 63.40 WHERE [Code] = 'bnx' END +SET [Description] = 'Bangubangu', [Definition] = NULL, [SortOrder] = 634.00 WHERE [Code] = 'bnx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsj', 'Bangwinji', NULL, 63.50) END +VALUES ('bsj', 'Bangwinji', NULL, 635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangwinji', [Definition] = NULL, [SortOrder] = 63.50 WHERE [Code] = 'bsj' END +SET [Description] = 'Bangwinji', [Definition] = NULL, [SortOrder] = 635.00 WHERE [Code] = 'bsj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvv', 'Baniva', NULL, 63.60) END +VALUES ('bvv', 'Baniva', NULL, 636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baniva', [Definition] = NULL, [SortOrder] = 63.60 WHERE [Code] = 'bvv' END +SET [Description] = 'Baniva', [Definition] = NULL, [SortOrder] = 636.00 WHERE [Code] = 'bvv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwi', 'Baniwa', NULL, 63.70) END +VALUES ('bwi', 'Baniwa', NULL, 637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baniwa', [Definition] = NULL, [SortOrder] = 63.70 WHERE [Code] = 'bwi' END +SET [Description] = 'Baniwa', [Definition] = NULL, [SortOrder] = 637.00 WHERE [Code] = 'bwi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjn', 'Banjar', NULL, 63.80) END +VALUES ('bjn', 'Banjar', NULL, 638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banjar', [Definition] = NULL, [SortOrder] = 63.80 WHERE [Code] = 'bjn' END +SET [Description] = 'Banjar', [Definition] = NULL, [SortOrder] = 638.00 WHERE [Code] = 'bjn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxw', 'Bankagooma', NULL, 63.90) END +VALUES ('bxw', 'Bankagooma', NULL, 639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bankagooma', [Definition] = NULL, [SortOrder] = 63.90 WHERE [Code] = 'bxw' END +SET [Description] = 'Bankagooma', [Definition] = NULL, [SortOrder] = 639.00 WHERE [Code] = 'bxw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jjr', 'Bankal', NULL, 64.00) END +VALUES ('jjr', 'Bankal', NULL, 640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bankal', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = 'jjr' END +SET [Description] = 'Bankal', [Definition] = NULL, [SortOrder] = 640.00 WHERE [Code] = 'jjr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbw', 'Bankan Tey Dogon', NULL, 64.10) END +VALUES ('dbw', 'Bankan Tey Dogon', NULL, 641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bankan Tey Dogon', [Definition] = NULL, [SortOrder] = 64.10 WHERE [Code] = 'dbw' END +SET [Description] = 'Bankan Tey Dogon', [Definition] = NULL, [SortOrder] = 641.00 WHERE [Code] = 'dbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abb', 'Bankon', NULL, 64.20) END +VALUES ('abb', 'Bankon', NULL, 642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bankon', [Definition] = NULL, [SortOrder] = 64.20 WHERE [Code] = 'abb' END +SET [Description] = 'Bankon', [Definition] = NULL, [SortOrder] = 642.00 WHERE [Code] = 'abb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcm', 'Bannoni', NULL, 64.30) END +VALUES ('bcm', 'Bannoni', NULL, 643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bannoni', [Definition] = NULL, [SortOrder] = 64.30 WHERE [Code] = 'bcm' END +SET [Description] = 'Bannoni', [Definition] = NULL, [SortOrder] = 643.00 WHERE [Code] = 'bcm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bap', 'Bantawa', NULL, 64.40) END +VALUES ('bap', 'Bantawa', NULL, 644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bantawa', [Definition] = NULL, [SortOrder] = 64.40 WHERE [Code] = 'bap' END +SET [Description] = 'Bantawa', [Definition] = NULL, [SortOrder] = 644.00 WHERE [Code] = 'bap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfx', 'Bantayanon', NULL, 64.50) END +VALUES ('bfx', 'Bantayanon', NULL, 645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bantayanon', [Definition] = NULL, [SortOrder] = 64.50 WHERE [Code] = 'bfx' END +SET [Description] = 'Bantayanon', [Definition] = NULL, [SortOrder] = 645.00 WHERE [Code] = 'bfx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnq', 'Bantik', NULL, 64.60) END +VALUES ('bnq', 'Bantik', NULL, 646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bantik', [Definition] = NULL, [SortOrder] = 64.60 WHERE [Code] = 'bnq' END +SET [Description] = 'Bantik', [Definition] = NULL, [SortOrder] = 646.00 WHERE [Code] = 'bnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bno', 'Bantoanon', NULL, 64.70) END +VALUES ('bno', 'Bantoanon', NULL, 647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bantoanon', [Definition] = NULL, [SortOrder] = 64.70 WHERE [Code] = 'bno' END +SET [Description] = 'Bantoanon', [Definition] = NULL, [SortOrder] = 647.00 WHERE [Code] = 'bno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnw', 'Banyjima', NULL, 64.80) END +VALUES ('pnw', 'Banyjima', NULL, 648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banyjima', [Definition] = NULL, [SortOrder] = 64.80 WHERE [Code] = 'pnw' END +SET [Description] = 'Banyjima', [Definition] = NULL, [SortOrder] = 648.00 WHERE [Code] = 'pnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bci', 'Baoulé', NULL, 64.90) END +VALUES ('bci', 'Baoulé', NULL, 649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baoulé', [Definition] = NULL, [SortOrder] = 64.90 WHERE [Code] = 'bci' END +SET [Description] = 'Baoulé', [Definition] = NULL, [SortOrder] = 649.00 WHERE [Code] = 'bci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhr', 'Bara Malagasy', NULL, 65.00) END +VALUES ('bhr', 'Bara Malagasy', NULL, 650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bara Malagasy', [Definition] = NULL, [SortOrder] = 65.00 WHERE [Code] = 'bhr' END +SET [Description] = 'Bara Malagasy', [Definition] = NULL, [SortOrder] = 650.00 WHERE [Code] = 'bhr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brd', 'Baraamu', NULL, 65.10) END +VALUES ('brd', 'Baraamu', NULL, 651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baraamu', [Definition] = NULL, [SortOrder] = 65.10 WHERE [Code] = 'brd' END +SET [Description] = 'Baraamu', [Definition] = NULL, [SortOrder] = 651.00 WHERE [Code] = 'brd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rbp', 'Barababaraba', NULL, 65.20) END +VALUES ('rbp', 'Barababaraba', NULL, 652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barababaraba', [Definition] = NULL, [SortOrder] = 65.20 WHERE [Code] = 'rbp' END +SET [Description] = 'Barababaraba', [Definition] = NULL, [SortOrder] = 652.00 WHERE [Code] = 'rbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbb', 'Barai', NULL, 65.30) END +VALUES ('bbb', 'Barai', NULL, 653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barai', [Definition] = NULL, [SortOrder] = 65.30 WHERE [Code] = 'bbb' END +SET [Description] = 'Barai', [Definition] = NULL, [SortOrder] = 653.00 WHERE [Code] = 'bbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'baj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baj', 'Barakai', NULL, 65.40) END +VALUES ('baj', 'Barakai', NULL, 654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barakai', [Definition] = NULL, [SortOrder] = 65.40 WHERE [Code] = 'baj' END +SET [Description] = 'Barakai', [Definition] = NULL, [SortOrder] = 654.00 WHERE [Code] = 'baj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kys', 'Baram Kayan', NULL, 65.50) END +VALUES ('kys', 'Baram Kayan', NULL, 655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baram Kayan', [Definition] = NULL, [SortOrder] = 65.50 WHERE [Code] = 'kys' END +SET [Description] = 'Baram Kayan', [Definition] = NULL, [SortOrder] = 655.00 WHERE [Code] = 'kys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbg', 'Barama', NULL, 65.60) END +VALUES ('bbg', 'Barama', NULL, 656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barama', [Definition] = NULL, [SortOrder] = 65.60 WHERE [Code] = 'bbg' END +SET [Description] = 'Barama', [Definition] = NULL, [SortOrder] = 656.00 WHERE [Code] = 'bbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brm', 'Barambu', NULL, 65.70) END +VALUES ('brm', 'Barambu', NULL, 657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barambu', [Definition] = NULL, [SortOrder] = 65.70 WHERE [Code] = 'brm' END +SET [Description] = 'Barambu', [Definition] = NULL, [SortOrder] = 657.00 WHERE [Code] = 'brm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmz', 'Baramu', NULL, 65.80) END +VALUES ('bmz', 'Baramu', NULL, 658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baramu', [Definition] = NULL, [SortOrder] = 65.80 WHERE [Code] = 'bmz' END +SET [Description] = 'Baramu', [Definition] = NULL, [SortOrder] = 658.00 WHERE [Code] = 'bmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brp', 'Barapasi', NULL, 65.90) END +VALUES ('brp', 'Barapasi', NULL, 659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barapasi', [Definition] = NULL, [SortOrder] = 65.90 WHERE [Code] = 'brp' END +SET [Description] = 'Barapasi', [Definition] = NULL, [SortOrder] = 659.00 WHERE [Code] = 'brp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brs', 'Baras', NULL, 66.00) END +VALUES ('brs', 'Baras', NULL, 660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baras', [Definition] = NULL, [SortOrder] = 66.00 WHERE [Code] = 'brs' END +SET [Description] = 'Baras', [Definition] = NULL, [SortOrder] = 660.00 WHERE [Code] = 'brs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsn', 'Barasana-Eduria', NULL, 66.10) END +VALUES ('bsn', 'Barasana-Eduria', NULL, 661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barasana-Eduria', [Definition] = NULL, [SortOrder] = 66.10 WHERE [Code] = 'bsn' END +SET [Description] = 'Barasana-Eduria', [Definition] = NULL, [SortOrder] = 661.00 WHERE [Code] = 'bsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmb', 'Barbaram', NULL, 66.20) END +VALUES ('vmb', 'Barbaram', NULL, 662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barbaram', [Definition] = NULL, [SortOrder] = 66.20 WHERE [Code] = 'vmb' END +SET [Description] = 'Barbaram', [Definition] = NULL, [SortOrder] = 662.00 WHERE [Code] = 'vmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boi', 'Barbareño', NULL, 66.30) END +VALUES ('boi', 'Barbareño', NULL, 663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barbareño', [Definition] = NULL, [SortOrder] = 66.30 WHERE [Code] = 'boi' END +SET [Description] = 'Barbareño', [Definition] = NULL, [SortOrder] = 663.00 WHERE [Code] = 'boi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gry', 'Barclayville Grebo', NULL, 66.40) END +VALUES ('gry', 'Barclayville Grebo', NULL, 664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barclayville Grebo', [Definition] = NULL, [SortOrder] = 66.40 WHERE [Code] = 'gry' END +SET [Description] = 'Barclayville Grebo', [Definition] = NULL, [SortOrder] = 664.00 WHERE [Code] = 'gry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcj', 'Bardi', NULL, 66.50) END +VALUES ('bcj', 'Bardi', NULL, 665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bardi', [Definition] = NULL, [SortOrder] = 66.50 WHERE [Code] = 'bcj' END +SET [Description] = 'Bardi', [Definition] = NULL, [SortOrder] = 665.00 WHERE [Code] = 'bcj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bae', 'Baré', NULL, 66.60) END +VALUES ('bae', 'Baré', NULL, 666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baré', [Definition] = NULL, [SortOrder] = 66.60 WHERE [Code] = 'bae' END +SET [Description] = 'Baré', [Definition] = NULL, [SortOrder] = 666.00 WHERE [Code] = 'bae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bva', 'Barein', NULL, 66.70) END +VALUES ('bva', 'Barein', NULL, 667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barein', [Definition] = NULL, [SortOrder] = 66.70 WHERE [Code] = 'bva' END +SET [Description] = 'Barein', [Definition] = NULL, [SortOrder] = 667.00 WHERE [Code] = 'bva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlp', 'Bargam', NULL, 66.80) END +VALUES ('mlp', 'Bargam', NULL, 668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bargam', [Definition] = NULL, [SortOrder] = 66.80 WHERE [Code] = 'mlp' END +SET [Description] = 'Bargam', [Definition] = NULL, [SortOrder] = 668.00 WHERE [Code] = 'mlp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfa', 'Bari', NULL, 66.90) END +VALUES ('bfa', 'Bari', NULL, 669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bari', [Definition] = NULL, [SortOrder] = 66.90 WHERE [Code] = 'bfa' END +SET [Description] = 'Bari', [Definition] = NULL, [SortOrder] = 669.00 WHERE [Code] = 'bfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mot', 'Barí', NULL, 67.00) END +VALUES ('mot', 'Barí', NULL, 670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barí', [Definition] = NULL, [SortOrder] = 67.00 WHERE [Code] = 'mot' END +SET [Description] = 'Barí', [Definition] = NULL, [SortOrder] = 670.00 WHERE [Code] = 'mot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bch', 'Bariai', NULL, 67.10) END +VALUES ('bch', 'Bariai', NULL, 671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bariai', [Definition] = NULL, [SortOrder] = 67.10 WHERE [Code] = 'bch' END +SET [Description] = 'Bariai', [Definition] = NULL, [SortOrder] = 671.00 WHERE [Code] = 'bch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjc', 'Bariji', NULL, 67.20) END +VALUES ('bjc', 'Bariji', NULL, 672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bariji', [Definition] = NULL, [SortOrder] = 67.20 WHERE [Code] = 'bjc' END +SET [Description] = 'Bariji', [Definition] = NULL, [SortOrder] = 672.00 WHERE [Code] = 'bjc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxo', 'Barikanchi', NULL, 67.30) END +VALUES ('bxo', 'Barikanchi', NULL, 673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barikanchi', [Definition] = NULL, [SortOrder] = 67.30 WHERE [Code] = 'bxo' END +SET [Description] = 'Barikanchi', [Definition] = NULL, [SortOrder] = 673.00 WHERE [Code] = 'bxo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbk', 'Barikewa', NULL, 67.40) END +VALUES ('jbk', 'Barikewa', NULL, 674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barikewa', [Definition] = NULL, [SortOrder] = 67.40 WHERE [Code] = 'jbk' END +SET [Description] = 'Barikewa', [Definition] = NULL, [SortOrder] = 674.00 WHERE [Code] = 'jbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjk', 'Barok', NULL, 67.50) END +VALUES ('bjk', 'Barok', NULL, 675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barok', [Definition] = NULL, [SortOrder] = 67.50 WHERE [Code] = 'bjk' END +SET [Description] = 'Barok', [Definition] = NULL, [SortOrder] = 675.00 WHERE [Code] = 'bjk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbi', 'Barombi', NULL, 67.60) END +VALUES ('bbi', 'Barombi', NULL, 676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barombi', [Definition] = NULL, [SortOrder] = 67.60 WHERE [Code] = 'bbi' END +SET [Description] = 'Barombi', [Definition] = NULL, [SortOrder] = 676.00 WHERE [Code] = 'bbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbn', 'Barro Negro Tunebo', NULL, 67.70) END +VALUES ('tbn', 'Barro Negro Tunebo', NULL, 677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barro Negro Tunebo', [Definition] = NULL, [SortOrder] = 67.70 WHERE [Code] = 'tbn' END +SET [Description] = 'Barro Negro Tunebo', [Definition] = NULL, [SortOrder] = 677.00 WHERE [Code] = 'tbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpt', 'Barrow Point', NULL, 67.80) END +VALUES ('bpt', 'Barrow Point', NULL, 678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barrow Point', [Definition] = NULL, [SortOrder] = 67.80 WHERE [Code] = 'bpt' END +SET [Description] = 'Barrow Point', [Definition] = NULL, [SortOrder] = 678.00 WHERE [Code] = 'bpt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjz', 'Baruga', NULL, 67.90) END +VALUES ('bjz', 'Baruga', NULL, 679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baruga', [Definition] = NULL, [SortOrder] = 67.90 WHERE [Code] = 'bjz' END +SET [Description] = 'Baruga', [Definition] = NULL, [SortOrder] = 679.00 WHERE [Code] = 'bjz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byr', 'Baruya', NULL, 68.00) END +VALUES ('byr', 'Baruya', NULL, 680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baruya', [Definition] = NULL, [SortOrder] = 68.00 WHERE [Code] = 'byr' END +SET [Description] = 'Baruya', [Definition] = NULL, [SortOrder] = 680.00 WHERE [Code] = 'byr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwg', 'Barwe', NULL, 68.10) END +VALUES ('bwg', 'Barwe', NULL, 681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barwe', [Definition] = NULL, [SortOrder] = 68.10 WHERE [Code] = 'bwg' END +SET [Description] = 'Barwe', [Definition] = NULL, [SortOrder] = 681.00 WHERE [Code] = 'bwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjf', 'Barzani Jewish Neo-Aramaic', NULL, 68.20) END +VALUES ('bjf', 'Barzani Jewish Neo-Aramaic', NULL, 682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barzani Jewish Neo-Aramaic', [Definition] = NULL, [SortOrder] = 68.20 WHERE [Code] = 'bjf' END +SET [Description] = 'Barzani Jewish Neo-Aramaic', [Definition] = NULL, [SortOrder] = 682.00 WHERE [Code] = 'bjf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bas', 'Basa (Cameroon)', NULL, 68.30) END +VALUES ('bas', 'Basa (Cameroon)', NULL, 683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basa (Cameroon)', [Definition] = NULL, [SortOrder] = 68.30 WHERE [Code] = 'bas' END +SET [Description] = 'Basa (Cameroon)', [Definition] = NULL, [SortOrder] = 683.00 WHERE [Code] = 'bas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzw', 'Basa (Nigeria)', NULL, 68.40) END +VALUES ('bzw', 'Basa (Nigeria)', NULL, 684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basa (Nigeria)', [Definition] = NULL, [SortOrder] = 68.40 WHERE [Code] = 'bzw' END +SET [Description] = 'Basa (Nigeria)', [Definition] = NULL, [SortOrder] = 684.00 WHERE [Code] = 'bzw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsl', 'Basa-Gumna', NULL, 68.50) END +VALUES ('bsl', 'Basa-Gumna', NULL, 685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basa-Gumna', [Definition] = NULL, [SortOrder] = 68.50 WHERE [Code] = 'bsl' END +SET [Description] = 'Basa-Gumna', [Definition] = NULL, [SortOrder] = 685.00 WHERE [Code] = 'bsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buj', 'Basa-Gurmana', NULL, 68.60) END +VALUES ('buj', 'Basa-Gurmana', NULL, 686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basa-Gurmana', [Definition] = NULL, [SortOrder] = 68.60 WHERE [Code] = 'buj' END +SET [Description] = 'Basa-Gurmana', [Definition] = NULL, [SortOrder] = 686.00 WHERE [Code] = 'buj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdb', 'Basap', NULL, 68.70) END +VALUES ('bdb', 'Basap', NULL, 687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basap', [Definition] = NULL, [SortOrder] = 68.70 WHERE [Code] = 'bdb' END +SET [Description] = 'Basap', [Definition] = NULL, [SortOrder] = 687.00 WHERE [Code] = 'bdb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byq', 'Basay', NULL, 68.80) END +VALUES ('byq', 'Basay', NULL, 688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basay', [Definition] = NULL, [SortOrder] = 68.80 WHERE [Code] = 'byq' END +SET [Description] = 'Basay', [Definition] = NULL, [SortOrder] = 688.00 WHERE [Code] = 'byq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsg', 'Bashkardi', NULL, 68.90) END +VALUES ('bsg', 'Bashkardi', NULL, 689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bashkardi', [Definition] = NULL, [SortOrder] = 68.90 WHERE [Code] = 'bsg' END +SET [Description] = 'Bashkardi', [Definition] = NULL, [SortOrder] = 689.00 WHERE [Code] = 'bsg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bak', 'Bashkir', NULL, 69.00) END +VALUES ('bak', 'Bashkir', NULL, 690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bashkir', [Definition] = NULL, [SortOrder] = 69.00 WHERE [Code] = 'bak' END +SET [Description] = 'Bashkir', [Definition] = NULL, [SortOrder] = 690.00 WHERE [Code] = 'bak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bst', 'Basketo', NULL, 69.10) END +VALUES ('bst', 'Basketo', NULL, 691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basketo', [Definition] = NULL, [SortOrder] = 69.10 WHERE [Code] = 'bst' END +SET [Description] = 'Basketo', [Definition] = NULL, [SortOrder] = 691.00 WHERE [Code] = 'bst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eus', 'Basque', NULL, 69.20) END +VALUES ('eus', 'Basque', NULL, 692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basque', [Definition] = NULL, [SortOrder] = 69.20 WHERE [Code] = 'eus' END +SET [Description] = 'Basque', [Definition] = NULL, [SortOrder] = 692.00 WHERE [Code] = 'eus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsq', 'Bassa', NULL, 69.30) END +VALUES ('bsq', 'Bassa', NULL, 693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bassa', [Definition] = NULL, [SortOrder] = 69.30 WHERE [Code] = 'bsq' END +SET [Description] = 'Bassa', [Definition] = NULL, [SortOrder] = 693.00 WHERE [Code] = 'bsq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsr', 'Bassa-Kontagora', NULL, 69.40) END +VALUES ('bsr', 'Bassa-Kontagora', NULL, 694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bassa-Kontagora', [Definition] = NULL, [SortOrder] = 69.40 WHERE [Code] = 'bsr' END +SET [Description] = 'Bassa-Kontagora', [Definition] = NULL, [SortOrder] = 694.00 WHERE [Code] = 'bsr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsc', 'Bassari', NULL, 69.50) END +VALUES ('bsc', 'Bassari', NULL, 695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bassari', [Definition] = NULL, [SortOrder] = 69.50 WHERE [Code] = 'bsc' END +SET [Description] = 'Bassari', [Definition] = NULL, [SortOrder] = 695.00 WHERE [Code] = 'bsc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsi', 'Bassossi', NULL, 69.60) END +VALUES ('bsi', 'Bassossi', NULL, 696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bassossi', [Definition] = NULL, [SortOrder] = 69.60 WHERE [Code] = 'bsi' END +SET [Description] = 'Bassossi', [Definition] = NULL, [SortOrder] = 696.00 WHERE [Code] = 'bsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bta', 'Bata', NULL, 69.70) END +VALUES ('bta', 'Bata', NULL, 697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bata', [Definition] = NULL, [SortOrder] = 69.70 WHERE [Code] = 'bta' END +SET [Description] = 'Bata', [Definition] = NULL, [SortOrder] = 697.00 WHERE [Code] = 'bta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifb', 'Batad Ifugao', NULL, 69.80) END +VALUES ('ifb', 'Batad Ifugao', NULL, 698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batad Ifugao', [Definition] = NULL, [SortOrder] = 69.80 WHERE [Code] = 'ifb' END +SET [Description] = 'Batad Ifugao', [Definition] = NULL, [SortOrder] = 698.00 WHERE [Code] = 'ifb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bya', 'Batak', NULL, 69.90) END +VALUES ('bya', 'Batak', NULL, 699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak', [Definition] = NULL, [SortOrder] = 69.90 WHERE [Code] = 'bya' END +SET [Description] = 'Batak', [Definition] = NULL, [SortOrder] = 699.00 WHERE [Code] = 'bya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btz', 'Batak Alas-Kluet', NULL, 70.00) END +VALUES ('btz', 'Batak Alas-Kluet', NULL, 700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Alas-Kluet', [Definition] = NULL, [SortOrder] = 70.00 WHERE [Code] = 'btz' END +SET [Description] = 'Batak Alas-Kluet', [Definition] = NULL, [SortOrder] = 700.00 WHERE [Code] = 'btz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akb', 'Batak Angkola', NULL, 70.10) END +VALUES ('akb', 'Batak Angkola', NULL, 701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Angkola', [Definition] = NULL, [SortOrder] = 70.10 WHERE [Code] = 'akb' END +SET [Description] = 'Batak Angkola', [Definition] = NULL, [SortOrder] = 701.00 WHERE [Code] = 'akb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btd', 'Batak Dairi', NULL, 70.20) END +VALUES ('btd', 'Batak Dairi', NULL, 702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Dairi', [Definition] = NULL, [SortOrder] = 70.20 WHERE [Code] = 'btd' END +SET [Description] = 'Batak Dairi', [Definition] = NULL, [SortOrder] = 702.00 WHERE [Code] = 'btd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btx', 'Batak Karo', NULL, 70.30) END +VALUES ('btx', 'Batak Karo', NULL, 703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Karo', [Definition] = NULL, [SortOrder] = 70.30 WHERE [Code] = 'btx' END +SET [Description] = 'Batak Karo', [Definition] = NULL, [SortOrder] = 703.00 WHERE [Code] = 'btx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btm', 'Batak Mandailing', NULL, 70.40) END +VALUES ('btm', 'Batak Mandailing', NULL, 704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Mandailing', [Definition] = NULL, [SortOrder] = 70.40 WHERE [Code] = 'btm' END +SET [Description] = 'Batak Mandailing', [Definition] = NULL, [SortOrder] = 704.00 WHERE [Code] = 'btm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bts', 'Batak Simalungun', NULL, 70.50) END +VALUES ('bts', 'Batak Simalungun', NULL, 705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Simalungun', [Definition] = NULL, [SortOrder] = 70.50 WHERE [Code] = 'bts' END +SET [Description] = 'Batak Simalungun', [Definition] = NULL, [SortOrder] = 705.00 WHERE [Code] = 'bts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbc', 'Batak Toba', NULL, 70.60) END +VALUES ('bbc', 'Batak Toba', NULL, 706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Toba', [Definition] = NULL, [SortOrder] = 70.60 WHERE [Code] = 'bbc' END +SET [Description] = 'Batak Toba', [Definition] = NULL, [SortOrder] = 706.00 WHERE [Code] = 'bbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnm', 'Batanga', NULL, 70.70) END +VALUES ('bnm', 'Batanga', NULL, 707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batanga', [Definition] = NULL, [SortOrder] = 70.70 WHERE [Code] = 'bnm' END +SET [Description] = 'Batanga', [Definition] = NULL, [SortOrder] = 707.00 WHERE [Code] = 'bnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btq', 'Batek', NULL, 70.80) END +VALUES ('btq', 'Batek', NULL, 708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batek', [Definition] = NULL, [SortOrder] = 70.80 WHERE [Code] = 'btq' END +SET [Description] = 'Batek', [Definition] = NULL, [SortOrder] = 708.00 WHERE [Code] = 'btq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btv', 'Bateri', NULL, 70.90) END +VALUES ('btv', 'Bateri', NULL, 709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bateri', [Definition] = NULL, [SortOrder] = 70.90 WHERE [Code] = 'btv' END +SET [Description] = 'Bateri', [Definition] = NULL, [SortOrder] = 709.00 WHERE [Code] = 'btv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhm', 'Bathari', NULL, 71.00) END +VALUES ('bhm', 'Bathari', NULL, 710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bathari', [Definition] = NULL, [SortOrder] = 71.00 WHERE [Code] = 'bhm' END +SET [Description] = 'Bathari', [Definition] = NULL, [SortOrder] = 710.00 WHERE [Code] = 'bhm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btc', 'Bati (Cameroon)', NULL, 71.10) END +VALUES ('btc', 'Bati (Cameroon)', NULL, 711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bati (Cameroon)', [Definition] = NULL, [SortOrder] = 71.10 WHERE [Code] = 'btc' END +SET [Description] = 'Bati (Cameroon)', [Definition] = NULL, [SortOrder] = 711.00 WHERE [Code] = 'btc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvt', 'Bati (Indonesia)', NULL, 71.20) END +VALUES ('bvt', 'Bati (Indonesia)', NULL, 712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bati (Indonesia)', [Definition] = NULL, [SortOrder] = 71.20 WHERE [Code] = 'bvt' END +SET [Description] = 'Bati (Indonesia)', [Definition] = NULL, [SortOrder] = 712.00 WHERE [Code] = 'bvt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xby', 'Batjala', NULL, 71.30) END +VALUES ('xby', 'Batjala', NULL, 713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batjala', [Definition] = NULL, [SortOrder] = 71.30 WHERE [Code] = 'xby' END +SET [Description] = 'Batjala', [Definition] = NULL, [SortOrder] = 713.00 WHERE [Code] = 'xby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbl', 'Bats', NULL, 71.40) END +VALUES ('bbl', 'Bats', NULL, 714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bats', [Definition] = NULL, [SortOrder] = 71.40 WHERE [Code] = 'bbl' END +SET [Description] = 'Bats', [Definition] = NULL, [SortOrder] = 714.00 WHERE [Code] = 'bbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btu', 'Batu', NULL, 71.50) END +VALUES ('btu', 'Batu', NULL, 715.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batu', [Definition] = NULL, [SortOrder] = 71.50 WHERE [Code] = 'btu' END +SET [Description] = 'Batu', [Definition] = NULL, [SortOrder] = 715.00 WHERE [Code] = 'btu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbt', 'Batui', NULL, 71.60) END +VALUES ('zbt', 'Batui', NULL, 716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batui', [Definition] = NULL, [SortOrder] = 71.60 WHERE [Code] = 'zbt' END +SET [Description] = 'Batui', [Definition] = NULL, [SortOrder] = 716.00 WHERE [Code] = 'zbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bay', 'Batuley', NULL, 71.70) END +VALUES ('bay', 'Batuley', NULL, 717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batuley', [Definition] = NULL, [SortOrder] = 71.70 WHERE [Code] = 'bay' END +SET [Description] = 'Batuley', [Definition] = NULL, [SortOrder] = 717.00 WHERE [Code] = 'bay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbd', 'Bau', NULL, 71.80) END +VALUES ('bbd', 'Bau', NULL, 718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bau', [Definition] = NULL, [SortOrder] = 71.80 WHERE [Code] = 'bbd' END +SET [Description] = 'Bau', [Definition] = NULL, [SortOrder] = 718.00 WHERE [Code] = 'bbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sne', 'Bau Bidayuh', NULL, 71.90) END +VALUES ('sne', 'Bau Bidayuh', NULL, 719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bau Bidayuh', [Definition] = NULL, [SortOrder] = 71.90 WHERE [Code] = 'sne' END +SET [Description] = 'Bau Bidayuh', [Definition] = NULL, [SortOrder] = 719.00 WHERE [Code] = 'sne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsf', 'Bauchi', NULL, 72.00) END +VALUES ('bsf', 'Bauchi', NULL, 720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauchi', [Definition] = NULL, [SortOrder] = 72.00 WHERE [Code] = 'bsf' END +SET [Description] = 'Bauchi', [Definition] = NULL, [SortOrder] = 720.00 WHERE [Code] = 'bsf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpe', 'Bauni', NULL, 72.10) END +VALUES ('bpe', 'Bauni', NULL, 721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauni', [Definition] = NULL, [SortOrder] = 72.10 WHERE [Code] = 'bpe' END +SET [Description] = 'Bauni', [Definition] = NULL, [SortOrder] = 721.00 WHERE [Code] = 'bpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brg', 'Baure', NULL, 72.20) END +VALUES ('brg', 'Baure', NULL, 722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baure', [Definition] = NULL, [SortOrder] = 72.20 WHERE [Code] = 'brg' END +SET [Description] = 'Baure', [Definition] = NULL, [SortOrder] = 722.00 WHERE [Code] = 'brg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bge', 'Bauria', NULL, 72.30) END +VALUES ('bge', 'Bauria', NULL, 723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauria', [Definition] = NULL, [SortOrder] = 72.30 WHERE [Code] = 'bge' END +SET [Description] = 'Bauria', [Definition] = NULL, [SortOrder] = 723.00 WHERE [Code] = 'bge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwk', 'Bauwaki', NULL, 72.40) END +VALUES ('bwk', 'Bauwaki', NULL, 724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauwaki', [Definition] = NULL, [SortOrder] = 72.40 WHERE [Code] = 'bwk' END +SET [Description] = 'Bauwaki', [Definition] = NULL, [SortOrder] = 724.00 WHERE [Code] = 'bwk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvz', 'Bauzi', NULL, 72.50) END +VALUES ('bvz', 'Bauzi', NULL, 725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauzi', [Definition] = NULL, [SortOrder] = 72.50 WHERE [Code] = 'bvz' END +SET [Description] = 'Bauzi', [Definition] = NULL, [SortOrder] = 725.00 WHERE [Code] = 'bvz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bar', 'Bavarian', NULL, 72.60) END +VALUES ('bar', 'Bavarian', NULL, 726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bavarian', [Definition] = NULL, [SortOrder] = 72.60 WHERE [Code] = 'bar' END +SET [Description] = 'Bavarian', [Definition] = NULL, [SortOrder] = 726.00 WHERE [Code] = 'bar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgr', 'Bawm Chin', NULL, 72.70) END +VALUES ('bgr', 'Bawm Chin', NULL, 727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bawm Chin', [Definition] = NULL, [SortOrder] = 72.70 WHERE [Code] = 'bgr' END +SET [Description] = 'Bawm Chin', [Definition] = NULL, [SortOrder] = 727.00 WHERE [Code] = 'bgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkq', 'Bay Miwok', NULL, 72.80) END +VALUES ('mkq', 'Bay Miwok', NULL, 728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bay Miwok', [Definition] = NULL, [SortOrder] = 72.80 WHERE [Code] = 'mkq' END +SET [Description] = 'Bay Miwok', [Definition] = NULL, [SortOrder] = 728.00 WHERE [Code] = 'mkq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjy', 'Bayali', NULL, 72.90) END +VALUES ('bjy', 'Bayali', NULL, 729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bayali', [Definition] = NULL, [SortOrder] = 72.90 WHERE [Code] = 'bjy' END +SET [Description] = 'Bayali', [Definition] = NULL, [SortOrder] = 729.00 WHERE [Code] = 'bjy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvy', 'Baybayanon', NULL, 73.00) END +VALUES ('bvy', 'Baybayanon', NULL, 730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baybayanon', [Definition] = NULL, [SortOrder] = 73.00 WHERE [Code] = 'bvy' END +SET [Description] = 'Baybayanon', [Definition] = NULL, [SortOrder] = 730.00 WHERE [Code] = 'bvy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byg', 'Baygo', NULL, 73.10) END +VALUES ('byg', 'Baygo', NULL, 731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baygo', [Definition] = NULL, [SortOrder] = 73.10 WHERE [Code] = 'byg' END +SET [Description] = 'Baygo', [Definition] = NULL, [SortOrder] = 731.00 WHERE [Code] = 'byg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byl', 'Bayono', NULL, 73.20) END +VALUES ('byl', 'Bayono', NULL, 732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bayono', [Definition] = NULL, [SortOrder] = 73.20 WHERE [Code] = 'byl' END +SET [Description] = 'Bayono', [Definition] = NULL, [SortOrder] = 732.00 WHERE [Code] = 'byl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bda', 'Bayot', NULL, 73.30) END +VALUES ('bda', 'Bayot', NULL, 733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bayot', [Definition] = NULL, [SortOrder] = 73.30 WHERE [Code] = 'bda' END +SET [Description] = 'Bayot', [Definition] = NULL, [SortOrder] = 733.00 WHERE [Code] = 'bda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxj', 'Bayungu', NULL, 73.40) END +VALUES ('bxj', 'Bayungu', NULL, 734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bayungu', [Definition] = NULL, [SortOrder] = 73.40 WHERE [Code] = 'bxj' END +SET [Description] = 'Bayungu', [Definition] = NULL, [SortOrder] = 734.00 WHERE [Code] = 'bxj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfr', 'Bazigar', NULL, 73.50) END +VALUES ('bfr', 'Bazigar', NULL, 735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bazigar', [Definition] = NULL, [SortOrder] = 73.50 WHERE [Code] = 'bfr' END +SET [Description] = 'Bazigar', [Definition] = NULL, [SortOrder] = 735.00 WHERE [Code] = 'bfr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beo', 'Beami', NULL, 73.60) END +VALUES ('beo', 'Beami', NULL, 736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beami', [Definition] = NULL, [SortOrder] = 73.60 WHERE [Code] = 'beo' END +SET [Description] = 'Beami', [Definition] = NULL, [SortOrder] = 736.00 WHERE [Code] = 'beo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bea', 'Beaver', NULL, 73.70) END +VALUES ('bea', 'Beaver', NULL, 737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beaver', [Definition] = NULL, [SortOrder] = 73.70 WHERE [Code] = 'bea' END +SET [Description] = 'Beaver', [Definition] = NULL, [SortOrder] = 737.00 WHERE [Code] = 'bea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfp', 'Beba', NULL, 73.80) END +VALUES ('bfp', 'Beba', NULL, 738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beba', [Definition] = NULL, [SortOrder] = 73.80 WHERE [Code] = 'bfp' END +SET [Description] = 'Beba', [Definition] = NULL, [SortOrder] = 738.00 WHERE [Code] = 'bfp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beb', 'Bebele', NULL, 73.90) END +VALUES ('beb', 'Bebele', NULL, 739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bebele', [Definition] = NULL, [SortOrder] = 73.90 WHERE [Code] = 'beb' END +SET [Description] = 'Bebele', [Definition] = NULL, [SortOrder] = 739.00 WHERE [Code] = 'beb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bek', 'Bebeli', NULL, 74.00) END +VALUES ('bek', 'Bebeli', NULL, 740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bebeli', [Definition] = NULL, [SortOrder] = 74.00 WHERE [Code] = 'bek' END +SET [Description] = 'Bebeli', [Definition] = NULL, [SortOrder] = 740.00 WHERE [Code] = 'bek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxp', 'Bebil', NULL, 74.10) END +VALUES ('bxp', 'Bebil', NULL, 741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bebil', [Definition] = NULL, [SortOrder] = 74.10 WHERE [Code] = 'bxp' END +SET [Description] = 'Bebil', [Definition] = NULL, [SortOrder] = 741.00 WHERE [Code] = 'bxp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjv', 'Bedjond', NULL, 74.20) END +VALUES ('bjv', 'Bedjond', NULL, 742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bedjond', [Definition] = NULL, [SortOrder] = 74.20 WHERE [Code] = 'bjv' END +SET [Description] = 'Bedjond', [Definition] = NULL, [SortOrder] = 742.00 WHERE [Code] = 'bjv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bed', 'Bedoanas', NULL, 74.30) END +VALUES ('bed', 'Bedoanas', NULL, 743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bedoanas', [Definition] = NULL, [SortOrder] = 74.30 WHERE [Code] = 'bed' END +SET [Description] = 'Bedoanas', [Definition] = NULL, [SortOrder] = 743.00 WHERE [Code] = 'bed' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkf', 'Beeke', NULL, 74.40) END +VALUES ('bkf', 'Beeke', NULL, 744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beeke', [Definition] = NULL, [SortOrder] = 74.40 WHERE [Code] = 'bkf' END +SET [Description] = 'Beeke', [Definition] = NULL, [SortOrder] = 744.00 WHERE [Code] = 'bkf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxq', 'Beele', NULL, 74.50) END +VALUES ('bxq', 'Beele', NULL, 745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beele', [Definition] = NULL, [SortOrder] = 74.50 WHERE [Code] = 'bxq' END +SET [Description] = 'Beele', [Definition] = NULL, [SortOrder] = 745.00 WHERE [Code] = 'bxq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beq', 'Beembe', NULL, 74.60) END +VALUES ('beq', 'Beembe', NULL, 746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beembe', [Definition] = NULL, [SortOrder] = 74.60 WHERE [Code] = 'beq' END +SET [Description] = 'Beembe', [Definition] = NULL, [SortOrder] = 746.00 WHERE [Code] = 'beq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnz', 'Beezen', NULL, 74.70) END +VALUES ('bnz', 'Beezen', NULL, 747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beezen', [Definition] = NULL, [SortOrder] = 74.70 WHERE [Code] = 'bnz' END +SET [Description] = 'Beezen', [Definition] = NULL, [SortOrder] = 747.00 WHERE [Code] = 'bnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bby', 'Befang', NULL, 74.80) END +VALUES ('bby', 'Befang', NULL, 748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Befang', [Definition] = NULL, [SortOrder] = 74.80 WHERE [Code] = 'bby' END +SET [Description] = 'Befang', [Definition] = NULL, [SortOrder] = 748.00 WHERE [Code] = 'bby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebc', 'Beginci', NULL, 74.90) END +VALUES ('ebc', 'Beginci', NULL, 749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beginci', [Definition] = NULL, [SortOrder] = 74.90 WHERE [Code] = 'ebc' END +SET [Description] = 'Beginci', [Definition] = NULL, [SortOrder] = 749.00 WHERE [Code] = 'ebc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bej', 'Beja', NULL, 75.00) END +VALUES ('bej', 'Beja', NULL, 750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beja', [Definition] = NULL, [SortOrder] = 75.00 WHERE [Code] = 'bej' END +SET [Description] = 'Beja', [Definition] = NULL, [SortOrder] = 750.00 WHERE [Code] = 'bej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bei', 'Bekati''', NULL, 75.10) END +VALUES ('bei', 'Bekati''', NULL, 751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bekati''', [Definition] = NULL, [SortOrder] = 75.10 WHERE [Code] = 'bei' END +SET [Description] = 'Bekati''', [Definition] = NULL, [SortOrder] = 751.00 WHERE [Code] = 'bei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkv', 'Bekwarra', NULL, 75.20) END +VALUES ('bkv', 'Bekwarra', NULL, 752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bekwarra', [Definition] = NULL, [SortOrder] = 75.20 WHERE [Code] = 'bkv' END +SET [Description] = 'Bekwarra', [Definition] = NULL, [SortOrder] = 752.00 WHERE [Code] = 'bkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkw', 'Bekwel', NULL, 75.30) END +VALUES ('bkw', 'Bekwel', NULL, 753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bekwel', [Definition] = NULL, [SortOrder] = 75.30 WHERE [Code] = 'bkw' END +SET [Description] = 'Bekwel', [Definition] = NULL, [SortOrder] = 753.00 WHERE [Code] = 'bkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beg', 'Belait', NULL, 75.40) END +VALUES ('beg', 'Belait', NULL, 754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belait', [Definition] = NULL, [SortOrder] = 75.40 WHERE [Code] = 'beg' END +SET [Description] = 'Belait', [Definition] = NULL, [SortOrder] = 754.00 WHERE [Code] = 'beg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxb', 'Belanda Bor', NULL, 75.50) END +VALUES ('bxb', 'Belanda Bor', NULL, 755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belanda Bor', [Definition] = NULL, [SortOrder] = 75.50 WHERE [Code] = 'bxb' END +SET [Description] = 'Belanda Bor', [Definition] = NULL, [SortOrder] = 755.00 WHERE [Code] = 'bxb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvi', 'Belanda Viri', NULL, 75.60) END +VALUES ('bvi', 'Belanda Viri', NULL, 756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belanda Viri', [Definition] = NULL, [SortOrder] = 75.60 WHERE [Code] = 'bvi' END +SET [Description] = 'Belanda Viri', [Definition] = NULL, [SortOrder] = 756.00 WHERE [Code] = 'bvi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bel', 'Belarusian', NULL, 75.70) END +VALUES ('bel', 'Belarusian', NULL, 757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belarusian', [Definition] = NULL, [SortOrder] = 75.70 WHERE [Code] = 'bel' END +SET [Description] = 'Belarusian', [Definition] = NULL, [SortOrder] = 757.00 WHERE [Code] = 'bel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byw', 'Belhariya', NULL, 75.80) END +VALUES ('byw', 'Belhariya', NULL, 758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belhariya', [Definition] = NULL, [SortOrder] = 75.80 WHERE [Code] = 'byw' END +SET [Description] = 'Belhariya', [Definition] = NULL, [SortOrder] = 758.00 WHERE [Code] = 'byw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bey', 'Beli (Papua New Guinea)', NULL, 75.90) END +VALUES ('bey', 'Beli (Papua New Guinea)', NULL, 759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beli (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 75.90 WHERE [Code] = 'bey' END +SET [Description] = 'Beli (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 759.00 WHERE [Code] = 'bey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blm', 'Beli (South Sudan)', NULL, 76.00) END +VALUES ('blm', 'Beli (South Sudan)', NULL, 760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beli (South Sudan)', [Definition] = NULL, [SortOrder] = 76.00 WHERE [Code] = 'blm' END +SET [Description] = 'Beli (South Sudan)', [Definition] = NULL, [SortOrder] = 760.00 WHERE [Code] = 'blm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzj', 'Belize Kriol English', NULL, 76.10) END +VALUES ('bzj', 'Belize Kriol English', NULL, 761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belize Kriol English', [Definition] = NULL, [SortOrder] = 76.10 WHERE [Code] = 'bzj' END +SET [Description] = 'Belize Kriol English', [Definition] = NULL, [SortOrder] = 761.00 WHERE [Code] = 'bzj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blc', 'Bella Coola', NULL, 76.20) END +VALUES ('blc', 'Bella Coola', NULL, 762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bella Coola', [Definition] = NULL, [SortOrder] = 76.20 WHERE [Code] = 'blc' END +SET [Description] = 'Bella Coola', [Definition] = NULL, [SortOrder] = 762.00 WHERE [Code] = 'blc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brw', 'Bellari', NULL, 76.30) END +VALUES ('brw', 'Bellari', NULL, 763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bellari', [Definition] = NULL, [SortOrder] = 76.30 WHERE [Code] = 'brw' END +SET [Description] = 'Bellari', [Definition] = NULL, [SortOrder] = 763.00 WHERE [Code] = 'brw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glb', 'Belning', NULL, 76.40) END +VALUES ('glb', 'Belning', NULL, 764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belning', [Definition] = NULL, [SortOrder] = 76.40 WHERE [Code] = 'glb' END +SET [Description] = 'Belning', [Definition] = NULL, [SortOrder] = 764.00 WHERE [Code] = 'glb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bem', 'Bemba (Zambia)', NULL, 76.50) END +VALUES ('bem', 'Bemba (Zambia)', NULL, 765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bemba (Zambia)', [Definition] = NULL, [SortOrder] = 76.50 WHERE [Code] = 'bem' END +SET [Description] = 'Bemba (Zambia)', [Definition] = NULL, [SortOrder] = 765.00 WHERE [Code] = 'bem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmb', 'Bembe', NULL, 76.60) END +VALUES ('bmb', 'Bembe', NULL, 766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bembe', [Definition] = NULL, [SortOrder] = 76.60 WHERE [Code] = 'bmb' END +SET [Description] = 'Bembe', [Definition] = NULL, [SortOrder] = 766.00 WHERE [Code] = 'bmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbt', 'Ben Tey Dogon', NULL, 76.70) END +VALUES ('dbt', 'Ben Tey Dogon', NULL, 767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ben Tey Dogon', [Definition] = NULL, [SortOrder] = 76.70 WHERE [Code] = 'dbt' END +SET [Description] = 'Ben Tey Dogon', [Definition] = NULL, [SortOrder] = 767.00 WHERE [Code] = 'dbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yun', 'Bena (Nigeria)', NULL, 76.80) END +VALUES ('yun', 'Bena (Nigeria)', NULL, 768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bena (Nigeria)', [Definition] = NULL, [SortOrder] = 76.80 WHERE [Code] = 'yun' END +SET [Description] = 'Bena (Nigeria)', [Definition] = NULL, [SortOrder] = 768.00 WHERE [Code] = 'yun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bez', 'Bena (Tanzania)', NULL, 76.90) END +VALUES ('bez', 'Bena (Tanzania)', NULL, 769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bena (Tanzania)', [Definition] = NULL, [SortOrder] = 76.90 WHERE [Code] = 'bez' END +SET [Description] = 'Bena (Tanzania)', [Definition] = NULL, [SortOrder] = 769.00 WHERE [Code] = 'bez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bef', 'Benabena', NULL, 77.00) END +VALUES ('bef', 'Benabena', NULL, 770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benabena', [Definition] = NULL, [SortOrder] = 77.00 WHERE [Code] = 'bef' END +SET [Description] = 'Benabena', [Definition] = NULL, [SortOrder] = 770.00 WHERE [Code] = 'bef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'egm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('egm', 'Benamanga', NULL, 77.10) END +VALUES ('egm', 'Benamanga', NULL, 771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benamanga', [Definition] = NULL, [SortOrder] = 77.10 WHERE [Code] = 'egm' END +SET [Description] = 'Benamanga', [Definition] = NULL, [SortOrder] = 771.00 WHERE [Code] = 'egm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcq', 'Bench', NULL, 77.20) END +VALUES ('bcq', 'Bench', NULL, 772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bench', [Definition] = NULL, [SortOrder] = 77.20 WHERE [Code] = 'bcq' END +SET [Description] = 'Bench', [Definition] = NULL, [SortOrder] = 772.00 WHERE [Code] = 'bcq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdp', 'Bende', NULL, 77.30) END +VALUES ('bdp', 'Bende', NULL, 773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bende', [Definition] = NULL, [SortOrder] = 77.30 WHERE [Code] = 'bdp' END +SET [Description] = 'Bende', [Definition] = NULL, [SortOrder] = 773.00 WHERE [Code] = 'bdp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bct', 'Bendi', NULL, 77.40) END +VALUES ('bct', 'Bendi', NULL, 774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bendi', [Definition] = NULL, [SortOrder] = 77.40 WHERE [Code] = 'bct' END +SET [Description] = 'Bendi', [Definition] = NULL, [SortOrder] = 774.00 WHERE [Code] = 'bct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhb', 'Beng', NULL, 77.50) END +VALUES ('nhb', 'Beng', NULL, 775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beng', [Definition] = NULL, [SortOrder] = 77.50 WHERE [Code] = 'nhb' END +SET [Description] = 'Beng', [Definition] = NULL, [SortOrder] = 775.00 WHERE [Code] = 'nhb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bng', 'Benga', NULL, 77.60) END +VALUES ('bng', 'Benga', NULL, 776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benga', [Definition] = NULL, [SortOrder] = 77.60 WHERE [Code] = 'bng' END +SET [Description] = 'Benga', [Definition] = NULL, [SortOrder] = 776.00 WHERE [Code] = 'bng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ben') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ben', 'Bengali', NULL, 77.70) END +VALUES ('ben', 'Bengali', NULL, 777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bengali', [Definition] = NULL, [SortOrder] = 77.70 WHERE [Code] = 'ben' END +SET [Description] = 'Bengali', [Definition] = NULL, [SortOrder] = 777.00 WHERE [Code] = 'ben' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgy', 'Benggoi', NULL, 77.80) END +VALUES ('bgy', 'Benggoi', NULL, 778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benggoi', [Definition] = NULL, [SortOrder] = 77.80 WHERE [Code] = 'bgy' END +SET [Description] = 'Benggoi', [Definition] = NULL, [SortOrder] = 778.00 WHERE [Code] = 'bgy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqy', 'Bengkala Sign Language', NULL, 77.90) END +VALUES ('bqy', 'Bengkala Sign Language', NULL, 779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bengkala Sign Language', [Definition] = NULL, [SortOrder] = 77.90 WHERE [Code] = 'bqy' END +SET [Description] = 'Bengkala Sign Language', [Definition] = NULL, [SortOrder] = 779.00 WHERE [Code] = 'bqy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnu', 'Bentong', NULL, 78.00) END +VALUES ('bnu', 'Bentong', NULL, 780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bentong', [Definition] = NULL, [SortOrder] = 78.00 WHERE [Code] = 'bnu' END +SET [Description] = 'Bentong', [Definition] = NULL, [SortOrder] = 780.00 WHERE [Code] = 'bnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byd', 'Benyadu''', NULL, 78.10) END +VALUES ('byd', 'Benyadu''', NULL, 781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benyadu''', [Definition] = NULL, [SortOrder] = 78.10 WHERE [Code] = 'byd' END +SET [Description] = 'Benyadu''', [Definition] = NULL, [SortOrder] = 781.00 WHERE [Code] = 'byd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bue', 'Beothuk', NULL, 78.20) END +VALUES ('bue', 'Beothuk', NULL, 782.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beothuk', [Definition] = NULL, [SortOrder] = 78.20 WHERE [Code] = 'bue' END +SET [Description] = 'Beothuk', [Definition] = NULL, [SortOrder] = 782.00 WHERE [Code] = 'bue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bie', 'Bepour', NULL, 78.30) END +VALUES ('bie', 'Bepour', NULL, 783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bepour', [Definition] = NULL, [SortOrder] = 78.30 WHERE [Code] = 'bie' END +SET [Description] = 'Bepour', [Definition] = NULL, [SortOrder] = 783.00 WHERE [Code] = 'bie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxv', 'Berakou', NULL, 78.40) END +VALUES ('bxv', 'Berakou', NULL, 784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berakou', [Definition] = NULL, [SortOrder] = 78.40 WHERE [Code] = 'bxv' END +SET [Description] = 'Berakou', [Definition] = NULL, [SortOrder] = 784.00 WHERE [Code] = 'bxv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bve', 'Berau Malay', NULL, 78.50) END +VALUES ('bve', 'Berau Malay', NULL, 785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berau Malay', [Definition] = NULL, [SortOrder] = 78.50 WHERE [Code] = 'bve' END +SET [Description] = 'Berau Malay', [Definition] = NULL, [SortOrder] = 785.00 WHERE [Code] = 'bve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brc', 'Berbice Creole Dutch', NULL, 78.60) END +VALUES ('brc', 'Berbice Creole Dutch', NULL, 786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berbice Creole Dutch', [Definition] = NULL, [SortOrder] = 78.60 WHERE [Code] = 'brc' END +SET [Description] = 'Berbice Creole Dutch', [Definition] = NULL, [SortOrder] = 786.00 WHERE [Code] = 'brc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkl', 'Berik', NULL, 78.70) END +VALUES ('bkl', 'Berik', NULL, 787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berik', [Definition] = NULL, [SortOrder] = 78.70 WHERE [Code] = 'bkl' END +SET [Description] = 'Berik', [Definition] = NULL, [SortOrder] = 787.00 WHERE [Code] = 'bkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bit', 'Berinomo', NULL, 78.80) END +VALUES ('bit', 'Berinomo', NULL, 788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berinomo', [Definition] = NULL, [SortOrder] = 78.80 WHERE [Code] = 'bit' END +SET [Description] = 'Berinomo', [Definition] = NULL, [SortOrder] = 788.00 WHERE [Code] = 'bit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bom', 'Berom', NULL, 78.90) END +VALUES ('bom', 'Berom', NULL, 789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berom', [Definition] = NULL, [SortOrder] = 78.90 WHERE [Code] = 'bom' END +SET [Description] = 'Berom', [Definition] = NULL, [SortOrder] = 789.00 WHERE [Code] = 'bom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wti', 'Berta', NULL, 79.00) END +VALUES ('wti', 'Berta', NULL, 790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berta', [Definition] = NULL, [SortOrder] = 79.00 WHERE [Code] = 'wti' END +SET [Description] = 'Berta', [Definition] = NULL, [SortOrder] = 790.00 WHERE [Code] = 'wti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byt', 'Berti', NULL, 79.10) END +VALUES ('byt', 'Berti', NULL, 791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berti', [Definition] = NULL, [SortOrder] = 79.10 WHERE [Code] = 'byt' END +SET [Description] = 'Berti', [Definition] = NULL, [SortOrder] = 791.00 WHERE [Code] = 'byt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhe', 'Besisi', NULL, 79.20) END +VALUES ('mhe', 'Besisi', NULL, 792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Besisi', [Definition] = NULL, [SortOrder] = 79.20 WHERE [Code] = 'mhe' END +SET [Description] = 'Besisi', [Definition] = NULL, [SortOrder] = 792.00 WHERE [Code] = 'mhe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bes', 'Besme', NULL, 79.30) END +VALUES ('bes', 'Besme', NULL, 793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Besme', [Definition] = NULL, [SortOrder] = 79.30 WHERE [Code] = 'bes' END +SET [Description] = 'Besme', [Definition] = NULL, [SortOrder] = 793.00 WHERE [Code] = 'bes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bep', 'Besoa', NULL, 79.40) END +VALUES ('bep', 'Besoa', NULL, 794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Besoa', [Definition] = NULL, [SortOrder] = 79.40 WHERE [Code] = 'bep' END +SET [Description] = 'Besoa', [Definition] = NULL, [SortOrder] = 794.00 WHERE [Code] = 'bep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfe', 'Betaf', NULL, 79.50) END +VALUES ('bfe', 'Betaf', NULL, 795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Betaf', [Definition] = NULL, [SortOrder] = 79.50 WHERE [Code] = 'bfe' END +SET [Description] = 'Betaf', [Definition] = NULL, [SortOrder] = 795.00 WHERE [Code] = 'bfe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bew', 'Betawi', NULL, 79.60) END +VALUES ('bew', 'Betawi', NULL, 796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Betawi', [Definition] = NULL, [SortOrder] = 79.60 WHERE [Code] = 'bew' END +SET [Description] = 'Betawi', [Definition] = NULL, [SortOrder] = 796.00 WHERE [Code] = 'bew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byf', 'Bete', NULL, 79.70) END +VALUES ('byf', 'Bete', NULL, 797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bete', [Definition] = NULL, [SortOrder] = 79.70 WHERE [Code] = 'byf' END +SET [Description] = 'Bete', [Definition] = NULL, [SortOrder] = 797.00 WHERE [Code] = 'byf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btt', 'Bete-Bendi', NULL, 79.80) END +VALUES ('btt', 'Bete-Bendi', NULL, 798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bete-Bendi', [Definition] = NULL, [SortOrder] = 79.80 WHERE [Code] = 'btt' END +SET [Description] = 'Bete-Bendi', [Definition] = NULL, [SortOrder] = 798.00 WHERE [Code] = 'btt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eot', 'Beti (Côte d''Ivoire)', NULL, 79.90) END +VALUES ('eot', 'Beti (Côte d''Ivoire)', NULL, 799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beti (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 79.90 WHERE [Code] = 'eot' END +SET [Description] = 'Beti (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 799.00 WHERE [Code] = 'eot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xub', 'Betta Kurumba', NULL, 80.00) END +VALUES ('xub', 'Betta Kurumba', NULL, 800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Betta Kurumba', [Definition] = NULL, [SortOrder] = 80.00 WHERE [Code] = 'xub' END +SET [Description] = 'Betta Kurumba', [Definition] = NULL, [SortOrder] = 800.00 WHERE [Code] = 'xub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kap', 'Bezhta', NULL, 80.10) END +VALUES ('kap', 'Bezhta', NULL, 801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bezhta', [Definition] = NULL, [SortOrder] = 80.10 WHERE [Code] = 'kap' END +SET [Description] = 'Bezhta', [Definition] = NULL, [SortOrder] = 801.00 WHERE [Code] = 'kap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhd', 'Bhadrawahi', NULL, 80.20) END +VALUES ('bhd', 'Bhadrawahi', NULL, 802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhadrawahi', [Definition] = NULL, [SortOrder] = 80.20 WHERE [Code] = 'bhd' END +SET [Description] = 'Bhadrawahi', [Definition] = NULL, [SortOrder] = 802.00 WHERE [Code] = 'bhd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhx', 'Bhalay', NULL, 80.30) END +VALUES ('bhx', 'Bhalay', NULL, 803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhalay', [Definition] = NULL, [SortOrder] = 80.30 WHERE [Code] = 'bhx' END +SET [Description] = 'Bhalay', [Definition] = NULL, [SortOrder] = 803.00 WHERE [Code] = 'bhx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bha', 'Bharia', NULL, 80.40) END +VALUES ('bha', 'Bharia', NULL, 804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bharia', [Definition] = NULL, [SortOrder] = 80.40 WHERE [Code] = 'bha' END +SET [Description] = 'Bharia', [Definition] = NULL, [SortOrder] = 804.00 WHERE [Code] = 'bha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgw', 'Bhatri', NULL, 80.50) END +VALUES ('bgw', 'Bhatri', NULL, 805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhatri', [Definition] = NULL, [SortOrder] = 80.50 WHERE [Code] = 'bgw' END +SET [Description] = 'Bhatri', [Definition] = NULL, [SortOrder] = 805.00 WHERE [Code] = 'bgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bht', 'Bhattiyali', NULL, 80.60) END +VALUES ('bht', 'Bhattiyali', NULL, 806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhattiyali', [Definition] = NULL, [SortOrder] = 80.60 WHERE [Code] = 'bht' END +SET [Description] = 'Bhattiyali', [Definition] = NULL, [SortOrder] = 806.00 WHERE [Code] = 'bht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhe', 'Bhaya', NULL, 80.70) END +VALUES ('bhe', 'Bhaya', NULL, 807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhaya', [Definition] = NULL, [SortOrder] = 80.70 WHERE [Code] = 'bhe' END +SET [Description] = 'Bhaya', [Definition] = NULL, [SortOrder] = 807.00 WHERE [Code] = 'bhe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhy', 'Bhele', NULL, 80.80) END +VALUES ('bhy', 'Bhele', NULL, 808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhele', [Definition] = NULL, [SortOrder] = 80.80 WHERE [Code] = 'bhy' END +SET [Description] = 'Bhele', [Definition] = NULL, [SortOrder] = 808.00 WHERE [Code] = 'bhy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhi', 'Bhilali', NULL, 80.90) END +VALUES ('bhi', 'Bhilali', NULL, 809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhilali', [Definition] = NULL, [SortOrder] = 80.90 WHERE [Code] = 'bhi' END +SET [Description] = 'Bhilali', [Definition] = NULL, [SortOrder] = 809.00 WHERE [Code] = 'bhi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhb', 'Bhili', NULL, 81.00) END +VALUES ('bhb', 'Bhili', NULL, 810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhili', [Definition] = NULL, [SortOrder] = 81.00 WHERE [Code] = 'bhb' END +SET [Description] = 'Bhili', [Definition] = NULL, [SortOrder] = 810.00 WHERE [Code] = 'bhb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bho', 'Bhojpuri', NULL, 81.10) END +VALUES ('bho', 'Bhojpuri', NULL, 811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhojpuri', [Definition] = NULL, [SortOrder] = 81.10 WHERE [Code] = 'bho' END +SET [Description] = 'Bhojpuri', [Definition] = NULL, [SortOrder] = 811.00 WHERE [Code] = 'bho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nes', 'Bhoti Kinnauri', NULL, 81.20) END +VALUES ('nes', 'Bhoti Kinnauri', NULL, 812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhoti Kinnauri', [Definition] = NULL, [SortOrder] = 81.20 WHERE [Code] = 'nes' END +SET [Description] = 'Bhoti Kinnauri', [Definition] = NULL, [SortOrder] = 812.00 WHERE [Code] = 'nes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byh', 'Bhujel', NULL, 81.30) END +VALUES ('byh', 'Bhujel', NULL, 813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhujel', [Definition] = NULL, [SortOrder] = 81.30 WHERE [Code] = 'byh' END +SET [Description] = 'Bhujel', [Definition] = NULL, [SortOrder] = 813.00 WHERE [Code] = 'byh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhu', 'Bhunjia', NULL, 81.40) END +VALUES ('bhu', 'Bhunjia', NULL, 814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhunjia', [Definition] = NULL, [SortOrder] = 81.40 WHERE [Code] = 'bhu' END +SET [Description] = 'Bhunjia', [Definition] = NULL, [SortOrder] = 814.00 WHERE [Code] = 'bhu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bif', 'Biafada', NULL, 81.50) END +VALUES ('bif', 'Biafada', NULL, 815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biafada', [Definition] = NULL, [SortOrder] = 81.50 WHERE [Code] = 'bif' END +SET [Description] = 'Biafada', [Definition] = NULL, [SortOrder] = 815.00 WHERE [Code] = 'bif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdf', 'Biage', NULL, 81.60) END +VALUES ('bdf', 'Biage', NULL, 816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biage', [Definition] = NULL, [SortOrder] = 81.60 WHERE [Code] = 'bdf' END +SET [Description] = 'Biage', [Definition] = NULL, [SortOrder] = 816.00 WHERE [Code] = 'bdf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhw', 'Biak', NULL, 81.70) END +VALUES ('bhw', 'Biak', NULL, 817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biak', [Definition] = NULL, [SortOrder] = 81.70 WHERE [Code] = 'bhw' END +SET [Description] = 'Biak', [Definition] = NULL, [SortOrder] = 817.00 WHERE [Code] = 'bhw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beh', 'Biali', NULL, 81.80) END +VALUES ('beh', 'Biali', NULL, 818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biali', [Definition] = NULL, [SortOrder] = 81.80 WHERE [Code] = 'beh' END +SET [Description] = 'Biali', [Definition] = NULL, [SortOrder] = 818.00 WHERE [Code] = 'beh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpv', 'Bian Marind', NULL, 81.90) END +VALUES ('bpv', 'Bian Marind', NULL, 819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bian Marind', [Definition] = NULL, [SortOrder] = 81.90 WHERE [Code] = 'bpv' END +SET [Description] = 'Bian Marind', [Definition] = NULL, [SortOrder] = 819.00 WHERE [Code] = 'bpv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'big') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('big', 'Biangai', NULL, 82.00) END +VALUES ('big', 'Biangai', NULL, 820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biangai', [Definition] = NULL, [SortOrder] = 82.00 WHERE [Code] = 'big' END +SET [Description] = 'Biangai', [Definition] = NULL, [SortOrder] = 820.00 WHERE [Code] = 'big' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byk', 'Biao', NULL, 82.10) END +VALUES ('byk', 'Biao', NULL, 821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biao', [Definition] = NULL, [SortOrder] = 82.10 WHERE [Code] = 'byk' END +SET [Description] = 'Biao', [Definition] = NULL, [SortOrder] = 821.00 WHERE [Code] = 'byk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmt', 'Biao Mon', NULL, 82.20) END +VALUES ('bmt', 'Biao Mon', NULL, 822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biao Mon', [Definition] = NULL, [SortOrder] = 82.20 WHERE [Code] = 'bmt' END +SET [Description] = 'Biao Mon', [Definition] = NULL, [SortOrder] = 822.00 WHERE [Code] = 'bmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bje', 'Biao-Jiao Mien', NULL, 82.30) END +VALUES ('bje', 'Biao-Jiao Mien', NULL, 823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biao-Jiao Mien', [Definition] = NULL, [SortOrder] = 82.30 WHERE [Code] = 'bje' END +SET [Description] = 'Biao-Jiao Mien', [Definition] = NULL, [SortOrder] = 823.00 WHERE [Code] = 'bje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bth', 'Biatah Bidayuh', NULL, 82.40) END +VALUES ('bth', 'Biatah Bidayuh', NULL, 824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biatah Bidayuh', [Definition] = NULL, [SortOrder] = 82.40 WHERE [Code] = 'bth' END +SET [Description] = 'Biatah Bidayuh', [Definition] = NULL, [SortOrder] = 824.00 WHERE [Code] = 'bth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbp', 'Bibbulman', NULL, 82.50) END +VALUES ('xbp', 'Bibbulman', NULL, 825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bibbulman', [Definition] = NULL, [SortOrder] = 82.50 WHERE [Code] = 'xbp' END +SET [Description] = 'Bibbulman', [Definition] = NULL, [SortOrder] = 825.00 WHERE [Code] = 'xbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ihw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ihw', 'Bidhawal', NULL, 82.60) END +VALUES ('ihw', 'Bidhawal', NULL, 826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bidhawal', [Definition] = NULL, [SortOrder] = 82.60 WHERE [Code] = 'ihw' END +SET [Description] = 'Bidhawal', [Definition] = NULL, [SortOrder] = 826.00 WHERE [Code] = 'ihw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bid', 'Bidiyo', NULL, 82.70) END +VALUES ('bid', 'Bidiyo', NULL, 827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bidiyo', [Definition] = NULL, [SortOrder] = 82.70 WHERE [Code] = 'bid' END +SET [Description] = 'Bidiyo', [Definition] = NULL, [SortOrder] = 827.00 WHERE [Code] = 'bid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bym', 'Bidjara', NULL, 82.80) END +VALUES ('bym', 'Bidjara', NULL, 828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bidjara', [Definition] = NULL, [SortOrder] = 82.80 WHERE [Code] = 'bym' END +SET [Description] = 'Bidjara', [Definition] = NULL, [SortOrder] = 828.00 WHERE [Code] = 'bym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjg', 'Bidyogo', NULL, 82.90) END +VALUES ('bjg', 'Bidyogo', NULL, 829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bidyogo', [Definition] = NULL, [SortOrder] = 82.90 WHERE [Code] = 'bjg' END +SET [Description] = 'Bidyogo', [Definition] = NULL, [SortOrder] = 829.00 WHERE [Code] = 'bjg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmc', 'Biem', NULL, 83.00) END +VALUES ('bmc', 'Biem', NULL, 830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biem', [Definition] = NULL, [SortOrder] = 83.00 WHERE [Code] = 'bmc' END +SET [Description] = 'Biem', [Definition] = NULL, [SortOrder] = 830.00 WHERE [Code] = 'bmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnk', 'Bierebo', NULL, 83.10) END +VALUES ('bnk', 'Bierebo', NULL, 831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bierebo', [Definition] = NULL, [SortOrder] = 83.10 WHERE [Code] = 'bnk' END +SET [Description] = 'Bierebo', [Definition] = NULL, [SortOrder] = 831.00 WHERE [Code] = 'bnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brj', 'Bieria', NULL, 83.20) END +VALUES ('brj', 'Bieria', NULL, 832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bieria', [Definition] = NULL, [SortOrder] = 83.20 WHERE [Code] = 'brj' END +SET [Description] = 'Bieria', [Definition] = NULL, [SortOrder] = 832.00 WHERE [Code] = 'brj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biu', 'Biete', NULL, 83.30) END +VALUES ('biu', 'Biete', NULL, 833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biete', [Definition] = NULL, [SortOrder] = 83.30 WHERE [Code] = 'biu' END +SET [Description] = 'Biete', [Definition] = NULL, [SortOrder] = 833.00 WHERE [Code] = 'biu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmb', 'Big Nambas', NULL, 83.40) END +VALUES ('nmb', 'Big Nambas', NULL, 834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Big Nambas', [Definition] = NULL, [SortOrder] = 83.40 WHERE [Code] = 'nmb' END +SET [Description] = 'Big Nambas', [Definition] = NULL, [SortOrder] = 834.00 WHERE [Code] = 'nmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhc', 'Biga', NULL, 83.50) END +VALUES ('bhc', 'Biga', NULL, 835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biga', [Definition] = NULL, [SortOrder] = 83.50 WHERE [Code] = 'bhc' END +SET [Description] = 'Biga', [Definition] = NULL, [SortOrder] = 835.00 WHERE [Code] = 'bhc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbe', 'Bigambal', NULL, 83.60) END +VALUES ('xbe', 'Bigambal', NULL, 836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bigambal', [Definition] = NULL, [SortOrder] = 83.60 WHERE [Code] = 'xbe' END +SET [Description] = 'Bigambal', [Definition] = NULL, [SortOrder] = 836.00 WHERE [Code] = 'xbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibh', 'Bih', NULL, 83.70) END +VALUES ('ibh', 'Bih', NULL, 837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bih', [Definition] = NULL, [SortOrder] = 83.70 WHERE [Code] = 'ibh' END +SET [Description] = 'Bih', [Definition] = NULL, [SortOrder] = 837.00 WHERE [Code] = 'ibh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbm', 'Bijim', NULL, 83.80) END +VALUES ('jbm', 'Bijim', NULL, 838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bijim', [Definition] = NULL, [SortOrder] = 83.80 WHERE [Code] = 'jbm' END +SET [Description] = 'Bijim', [Definition] = NULL, [SortOrder] = 838.00 WHERE [Code] = 'jbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bix', 'Bijori', NULL, 83.90) END +VALUES ('bix', 'Bijori', NULL, 839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bijori', [Definition] = NULL, [SortOrder] = 83.90 WHERE [Code] = 'bix' END +SET [Description] = 'Bijori', [Definition] = NULL, [SortOrder] = 839.00 WHERE [Code] = 'bix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bik', 'Bikol', NULL, 84.00) END +VALUES ('bik', 'Bikol', NULL, 840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bikol', [Definition] = NULL, [SortOrder] = 84.00 WHERE [Code] = 'bik' END +SET [Description] = 'Bikol', [Definition] = NULL, [SortOrder] = 840.00 WHERE [Code] = 'bik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byb', 'Bikya', NULL, 84.10) END +VALUES ('byb', 'Bikya', NULL, 841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bikya', [Definition] = NULL, [SortOrder] = 84.10 WHERE [Code] = 'byb' END +SET [Description] = 'Bikya', [Definition] = NULL, [SortOrder] = 841.00 WHERE [Code] = 'byb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bip', 'Bila', NULL, 84.20) END +VALUES ('bip', 'Bila', NULL, 842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bila', [Definition] = NULL, [SortOrder] = 84.20 WHERE [Code] = 'bip' END +SET [Description] = 'Bila', [Definition] = NULL, [SortOrder] = 842.00 WHERE [Code] = 'bip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bql', 'Bilakura', NULL, 84.30) END +VALUES ('bql', 'Bilakura', NULL, 843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilakura', [Definition] = NULL, [SortOrder] = 84.30 WHERE [Code] = 'bql' END +SET [Description] = 'Bilakura', [Definition] = NULL, [SortOrder] = 843.00 WHERE [Code] = 'bql' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfs', 'Bilaspuri', NULL, 84.40) END +VALUES ('kfs', 'Bilaspuri', NULL, 844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilaspuri', [Definition] = NULL, [SortOrder] = 84.40 WHERE [Code] = 'kfs' END +SET [Description] = 'Bilaspuri', [Definition] = NULL, [SortOrder] = 844.00 WHERE [Code] = 'kfs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpz', 'Bilba', NULL, 84.50) END +VALUES ('bpz', 'Bilba', NULL, 845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilba', [Definition] = NULL, [SortOrder] = 84.50 WHERE [Code] = 'bpz' END +SET [Description] = 'Bilba', [Definition] = NULL, [SortOrder] = 845.00 WHERE [Code] = 'bpz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brz', 'Bilbil', NULL, 84.60) END +VALUES ('brz', 'Bilbil', NULL, 846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilbil', [Definition] = NULL, [SortOrder] = 84.60 WHERE [Code] = 'brz' END +SET [Description] = 'Bilbil', [Definition] = NULL, [SortOrder] = 846.00 WHERE [Code] = 'brz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bil', 'Bile', NULL, 84.70) END +VALUES ('bil', 'Bile', NULL, 847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bile', [Definition] = NULL, [SortOrder] = 84.70 WHERE [Code] = 'bil' END +SET [Description] = 'Bile', [Definition] = NULL, [SortOrder] = 847.00 WHERE [Code] = 'bil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byn', 'Bilin', NULL, 84.80) END +VALUES ('byn', 'Bilin', NULL, 848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilin', [Definition] = NULL, [SortOrder] = 84.80 WHERE [Code] = 'byn' END +SET [Description] = 'Bilin', [Definition] = NULL, [SortOrder] = 848.00 WHERE [Code] = 'byn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bms', 'Bilma Kanuri', NULL, 84.90) END +VALUES ('bms', 'Bilma Kanuri', NULL, 849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilma Kanuri', [Definition] = NULL, [SortOrder] = 84.90 WHERE [Code] = 'bms' END +SET [Description] = 'Bilma Kanuri', [Definition] = NULL, [SortOrder] = 849.00 WHERE [Code] = 'bms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bll', 'Biloxi', NULL, 85.00) END +VALUES ('bll', 'Biloxi', NULL, 850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biloxi', [Definition] = NULL, [SortOrder] = 85.00 WHERE [Code] = 'bll' END +SET [Description] = 'Biloxi', [Definition] = NULL, [SortOrder] = 850.00 WHERE [Code] = 'bll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blb', 'Bilua', NULL, 85.10) END +VALUES ('blb', 'Bilua', NULL, 851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilua', [Definition] = NULL, [SortOrder] = 85.10 WHERE [Code] = 'blb' END +SET [Description] = 'Bilua', [Definition] = NULL, [SortOrder] = 851.00 WHERE [Code] = 'blb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxf', 'Bilur', NULL, 85.20) END +VALUES ('bxf', 'Bilur', NULL, 852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilur', [Definition] = NULL, [SortOrder] = 85.20 WHERE [Code] = 'bxf' END +SET [Description] = 'Bilur', [Definition] = NULL, [SortOrder] = 852.00 WHERE [Code] = 'bxf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhp', 'Bima', NULL, 85.30) END +VALUES ('bhp', 'Bima', NULL, 853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bima', [Definition] = NULL, [SortOrder] = 85.30 WHERE [Code] = 'bhp' END +SET [Description] = 'Bima', [Definition] = NULL, [SortOrder] = 853.00 WHERE [Code] = 'bhp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhl', 'Bimin', NULL, 85.40) END +VALUES ('bhl', 'Bimin', NULL, 854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bimin', [Definition] = NULL, [SortOrder] = 85.40 WHERE [Code] = 'bhl' END +SET [Description] = 'Bimin', [Definition] = NULL, [SortOrder] = 854.00 WHERE [Code] = 'bhl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bim', 'Bimoba', NULL, 85.50) END +VALUES ('bim', 'Bimoba', NULL, 855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bimoba', [Definition] = NULL, [SortOrder] = 85.50 WHERE [Code] = 'bim' END +SET [Description] = 'Bimoba', [Definition] = NULL, [SortOrder] = 855.00 WHERE [Code] = 'bim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byj', 'Bina (Nigeria)', NULL, 85.60) END +VALUES ('byj', 'Bina (Nigeria)', NULL, 856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bina (Nigeria)', [Definition] = NULL, [SortOrder] = 85.60 WHERE [Code] = 'byj' END +SET [Description] = 'Bina (Nigeria)', [Definition] = NULL, [SortOrder] = 856.00 WHERE [Code] = 'byj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmn', 'Bina (Papua New Guinea)', NULL, 85.70) END +VALUES ('bmn', 'Bina (Papua New Guinea)', NULL, 857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bina (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 85.70 WHERE [Code] = 'bmn' END +SET [Description] = 'Bina (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 857.00 WHERE [Code] = 'bmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxz', 'Binahari', NULL, 85.80) END +VALUES ('bxz', 'Binahari', NULL, 858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binahari', [Definition] = NULL, [SortOrder] = 85.80 WHERE [Code] = 'bxz' END +SET [Description] = 'Binahari', [Definition] = NULL, [SortOrder] = 858.00 WHERE [Code] = 'bxz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhg', 'Binandere', NULL, 85.90) END +VALUES ('bhg', 'Binandere', NULL, 859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binandere', [Definition] = NULL, [SortOrder] = 85.90 WHERE [Code] = 'bhg' END +SET [Description] = 'Binandere', [Definition] = NULL, [SortOrder] = 859.00 WHERE [Code] = 'bhg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbd', 'Bindal', NULL, 86.00) END +VALUES ('xbd', 'Bindal', NULL, 860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bindal', [Definition] = NULL, [SortOrder] = 86.00 WHERE [Code] = 'xbd' END +SET [Description] = 'Bindal', [Definition] = NULL, [SortOrder] = 860.00 WHERE [Code] = 'xbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bon', 'Bine', NULL, 86.10) END +VALUES ('bon', 'Bine', NULL, 861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bine', [Definition] = NULL, [SortOrder] = 86.10 WHERE [Code] = 'bon' END +SET [Description] = 'Bine', [Definition] = NULL, [SortOrder] = 861.00 WHERE [Code] = 'bon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bin', 'Bini', NULL, 86.20) END +VALUES ('bin', 'Bini', NULL, 862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bini', [Definition] = NULL, [SortOrder] = 86.20 WHERE [Code] = 'bin' END +SET [Description] = 'Bini', [Definition] = NULL, [SortOrder] = 862.00 WHERE [Code] = 'bin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpj', 'Binji', NULL, 86.30) END +VALUES ('bpj', 'Binji', NULL, 863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binji', [Definition] = NULL, [SortOrder] = 86.30 WHERE [Code] = 'bpj' END +SET [Description] = 'Binji', [Definition] = NULL, [SortOrder] = 863.00 WHERE [Code] = 'bpj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itb', 'Binongan Itneg', NULL, 86.40) END +VALUES ('itb', 'Binongan Itneg', NULL, 864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binongan Itneg', [Definition] = NULL, [SortOrder] = 86.40 WHERE [Code] = 'itb' END +SET [Description] = 'Binongan Itneg', [Definition] = NULL, [SortOrder] = 864.00 WHERE [Code] = 'itb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bne', 'Bintauna', NULL, 86.50) END +VALUES ('bne', 'Bintauna', NULL, 865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bintauna', [Definition] = NULL, [SortOrder] = 86.50 WHERE [Code] = 'bne' END +SET [Description] = 'Bintauna', [Definition] = NULL, [SortOrder] = 865.00 WHERE [Code] = 'bne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bny', 'Bintulu', NULL, 86.60) END +VALUES ('bny', 'Bintulu', NULL, 866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bintulu', [Definition] = NULL, [SortOrder] = 86.60 WHERE [Code] = 'bny' END +SET [Description] = 'Bintulu', [Definition] = NULL, [SortOrder] = 866.00 WHERE [Code] = 'bny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkd', 'Binukid', NULL, 86.70) END +VALUES ('bkd', 'Binukid', NULL, 867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binukid', [Definition] = NULL, [SortOrder] = 86.70 WHERE [Code] = 'bkd' END +SET [Description] = 'Binukid', [Definition] = NULL, [SortOrder] = 867.00 WHERE [Code] = 'bkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjr', 'Binumarien', NULL, 86.80) END +VALUES ('bjr', 'Binumarien', NULL, 868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binumarien', [Definition] = NULL, [SortOrder] = 86.80 WHERE [Code] = 'bjr' END +SET [Description] = 'Binumarien', [Definition] = NULL, [SortOrder] = 868.00 WHERE [Code] = 'bjr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biq', 'Bipi', NULL, 86.90) END +VALUES ('biq', 'Bipi', NULL, 869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bipi', [Definition] = NULL, [SortOrder] = 86.90 WHERE [Code] = 'biq' END +SET [Description] = 'Bipi', [Definition] = NULL, [SortOrder] = 869.00 WHERE [Code] = 'biq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brf', 'Bira', NULL, 87.00) END +VALUES ('brf', 'Bira', NULL, 870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bira', [Definition] = NULL, [SortOrder] = 87.00 WHERE [Code] = 'brf' END +SET [Description] = 'Bira', [Definition] = NULL, [SortOrder] = 870.00 WHERE [Code] = 'brf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxe', 'Birale', NULL, 87.10) END +VALUES ('bxe', 'Birale', NULL, 871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birale', [Definition] = NULL, [SortOrder] = 87.10 WHERE [Code] = 'bxe' END +SET [Description] = 'Birale', [Definition] = NULL, [SortOrder] = 871.00 WHERE [Code] = 'bxe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brr', 'Birao', NULL, 87.20) END +VALUES ('brr', 'Birao', NULL, 872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birao', [Definition] = NULL, [SortOrder] = 87.20 WHERE [Code] = 'brr' END +SET [Description] = 'Birao', [Definition] = NULL, [SortOrder] = 872.00 WHERE [Code] = 'brr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btf', 'Birgit', NULL, 87.30) END +VALUES ('btf', 'Birgit', NULL, 873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birgit', [Definition] = NULL, [SortOrder] = 87.30 WHERE [Code] = 'btf' END +SET [Description] = 'Birgit', [Definition] = NULL, [SortOrder] = 873.00 WHERE [Code] = 'btf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biy', 'Birhor', NULL, 87.40) END +VALUES ('biy', 'Birhor', NULL, 874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birhor', [Definition] = NULL, [SortOrder] = 87.40 WHERE [Code] = 'biy' END +SET [Description] = 'Birhor', [Definition] = NULL, [SortOrder] = 874.00 WHERE [Code] = 'biy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzr', 'Biri', NULL, 87.50) END +VALUES ('bzr', 'Biri', NULL, 875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biri', [Definition] = NULL, [SortOrder] = 87.50 WHERE [Code] = 'bzr' END +SET [Description] = 'Biri', [Definition] = NULL, [SortOrder] = 875.00 WHERE [Code] = 'bzr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqq', 'Biritai', NULL, 87.60) END +VALUES ('bqq', 'Biritai', NULL, 876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biritai', [Definition] = NULL, [SortOrder] = 87.60 WHERE [Code] = 'bqq' END +SET [Description] = 'Biritai', [Definition] = NULL, [SortOrder] = 876.00 WHERE [Code] = 'bqq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brk', 'Birked', NULL, 87.70) END +VALUES ('brk', 'Birked', NULL, 877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birked', [Definition] = NULL, [SortOrder] = 87.70 WHERE [Code] = 'brk' END +SET [Description] = 'Birked', [Definition] = NULL, [SortOrder] = 877.00 WHERE [Code] = 'brk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvq', 'Birri', NULL, 87.80) END +VALUES ('bvq', 'Birri', NULL, 878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birri', [Definition] = NULL, [SortOrder] = 87.80 WHERE [Code] = 'bvq' END +SET [Description] = 'Birri', [Definition] = NULL, [SortOrder] = 878.00 WHERE [Code] = 'bvq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbj', 'Birrpayi', NULL, 87.90) END +VALUES ('xbj', 'Birrpayi', NULL, 879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birrpayi', [Definition] = NULL, [SortOrder] = 87.90 WHERE [Code] = 'xbj' END +SET [Description] = 'Birrpayi', [Definition] = NULL, [SortOrder] = 879.00 WHERE [Code] = 'xbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brl', 'Birwa', NULL, 88.00) END +VALUES ('brl', 'Birwa', NULL, 880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birwa', [Definition] = NULL, [SortOrder] = 88.00 WHERE [Code] = 'brl' END +SET [Description] = 'Birwa', [Definition] = NULL, [SortOrder] = 880.00 WHERE [Code] = 'brl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ije') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ije', 'Biseni', NULL, 88.10) END +VALUES ('ije', 'Biseni', NULL, 881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biseni', [Definition] = NULL, [SortOrder] = 88.10 WHERE [Code] = 'ije' END +SET [Description] = 'Biseni', [Definition] = NULL, [SortOrder] = 881.00 WHERE [Code] = 'ije' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpy', 'Bishnupriya', NULL, 88.20) END +VALUES ('bpy', 'Bishnupriya', NULL, 882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bishnupriya', [Definition] = NULL, [SortOrder] = 88.20 WHERE [Code] = 'bpy' END +SET [Description] = 'Bishnupriya', [Definition] = NULL, [SortOrder] = 882.00 WHERE [Code] = 'bpy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwh', 'Bishuo', NULL, 88.30) END +VALUES ('bwh', 'Bishuo', NULL, 883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bishuo', [Definition] = NULL, [SortOrder] = 88.30 WHERE [Code] = 'bwh' END +SET [Description] = 'Bishuo', [Definition] = NULL, [SortOrder] = 883.00 WHERE [Code] = 'bwh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnw', 'Bisis', NULL, 88.40) END +VALUES ('bnw', 'Bisis', NULL, 884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bisis', [Definition] = NULL, [SortOrder] = 88.40 WHERE [Code] = 'bnw' END +SET [Description] = 'Bisis', [Definition] = NULL, [SortOrder] = 884.00 WHERE [Code] = 'bnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bis', 'Bislama', NULL, 88.50) END +VALUES ('bis', 'Bislama', NULL, 885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bislama', [Definition] = NULL, [SortOrder] = 88.50 WHERE [Code] = 'bis' END +SET [Description] = 'Bislama', [Definition] = NULL, [SortOrder] = 885.00 WHERE [Code] = 'bis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bir', 'Bisorio', NULL, 88.60) END +VALUES ('bir', 'Bisorio', NULL, 886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bisorio', [Definition] = NULL, [SortOrder] = 88.60 WHERE [Code] = 'bir' END +SET [Description] = 'Bisorio', [Definition] = NULL, [SortOrder] = 886.00 WHERE [Code] = 'bir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bib', 'Bissa', NULL, 88.70) END +VALUES ('bib', 'Bissa', NULL, 887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bissa', [Definition] = NULL, [SortOrder] = 88.70 WHERE [Code] = 'bib' END +SET [Description] = 'Bissa', [Definition] = NULL, [SortOrder] = 887.00 WHERE [Code] = 'bib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzi', 'Bisu', NULL, 88.80) END +VALUES ('bzi', 'Bisu', NULL, 888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bisu', [Definition] = NULL, [SortOrder] = 88.80 WHERE [Code] = 'bzi' END +SET [Description] = 'Bisu', [Definition] = NULL, [SortOrder] = 888.00 WHERE [Code] = 'bzi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgk', 'Bit', NULL, 88.90) END +VALUES ('bgk', 'Bit', NULL, 889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bit', [Definition] = NULL, [SortOrder] = 88.90 WHERE [Code] = 'bgk' END +SET [Description] = 'Bit', [Definition] = NULL, [SortOrder] = 889.00 WHERE [Code] = 'bgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brt', 'Bitare', NULL, 89.00) END +VALUES ('brt', 'Bitare', NULL, 890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bitare', [Definition] = NULL, [SortOrder] = 89.00 WHERE [Code] = 'brt' END +SET [Description] = 'Bitare', [Definition] = NULL, [SortOrder] = 890.00 WHERE [Code] = 'brt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcc', 'Bitur', NULL, 89.10) END +VALUES ('mcc', 'Bitur', NULL, 891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bitur', [Definition] = NULL, [SortOrder] = 89.10 WHERE [Code] = 'mcc' END +SET [Description] = 'Bitur', [Definition] = NULL, [SortOrder] = 891.00 WHERE [Code] = 'mcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwm', 'Biwat', NULL, 89.20) END +VALUES ('bwm', 'Biwat', NULL, 892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biwat', [Definition] = NULL, [SortOrder] = 89.20 WHERE [Code] = 'bwm' END +SET [Description] = 'Biwat', [Definition] = NULL, [SortOrder] = 892.00 WHERE [Code] = 'bwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byo', 'Biyo', NULL, 89.30) END +VALUES ('byo', 'Biyo', NULL, 893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biyo', [Definition] = NULL, [SortOrder] = 89.30 WHERE [Code] = 'byo' END +SET [Description] = 'Biyo', [Definition] = NULL, [SortOrder] = 893.00 WHERE [Code] = 'byo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpm', 'Biyom', NULL, 89.40) END +VALUES ('bpm', 'Biyom', NULL, 894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biyom', [Definition] = NULL, [SortOrder] = 89.40 WHERE [Code] = 'bpm' END +SET [Description] = 'Biyom', [Definition] = NULL, [SortOrder] = 894.00 WHERE [Code] = 'bpm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blp', 'Blablanga', NULL, 89.50) END +VALUES ('blp', 'Blablanga', NULL, 895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blablanga', [Definition] = NULL, [SortOrder] = 89.50 WHERE [Code] = 'blp' END +SET [Description] = 'Blablanga', [Definition] = NULL, [SortOrder] = 895.00 WHERE [Code] = 'blp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfh', 'Blafe', NULL, 89.60) END +VALUES ('bfh', 'Blafe', NULL, 896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blafe', [Definition] = NULL, [SortOrder] = 89.60 WHERE [Code] = 'bfh' END +SET [Description] = 'Blafe', [Definition] = NULL, [SortOrder] = 896.00 WHERE [Code] = 'bfh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beu', 'Blagar', NULL, 89.70) END +VALUES ('beu', 'Blagar', NULL, 897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blagar', [Definition] = NULL, [SortOrder] = 89.70 WHERE [Code] = 'beu' END +SET [Description] = 'Blagar', [Definition] = NULL, [SortOrder] = 897.00 WHERE [Code] = 'beu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blr', 'Blang', NULL, 89.80) END +VALUES ('blr', 'Blang', NULL, 898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blang', [Definition] = NULL, [SortOrder] = 89.80 WHERE [Code] = 'blr' END +SET [Description] = 'Blang', [Definition] = NULL, [SortOrder] = 898.00 WHERE [Code] = 'blr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbl', 'Blissymbols', NULL, 89.90) END +VALUES ('zbl', 'Blissymbols', NULL, 899.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blissymbols', [Definition] = NULL, [SortOrder] = 89.90 WHERE [Code] = 'zbl' END +SET [Description] = 'Blissymbols', [Definition] = NULL, [SortOrder] = 899.00 WHERE [Code] = 'zbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgl', 'Bo (Laos)', NULL, 90.00) END +VALUES ('bgl', 'Bo (Laos)', NULL, 900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bo (Laos)', [Definition] = NULL, [SortOrder] = 90.00 WHERE [Code] = 'bgl' END +SET [Description] = 'Bo (Laos)', [Definition] = NULL, [SortOrder] = 900.00 WHERE [Code] = 'bgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpw', 'Bo (Papua New Guinea)', NULL, 90.10) END +VALUES ('bpw', 'Bo (Papua New Guinea)', NULL, 901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bo (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 90.10 WHERE [Code] = 'bpw' END +SET [Description] = 'Bo (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 901.00 WHERE [Code] = 'bpw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mae', 'Bo-Rukul', NULL, 90.20) END +VALUES ('mae', 'Bo-Rukul', NULL, 902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bo-Rukul', [Definition] = NULL, [SortOrder] = 90.20 WHERE [Code] = 'mae' END +SET [Description] = 'Bo-Rukul', [Definition] = NULL, [SortOrder] = 902.00 WHERE [Code] = 'mae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mux', 'Bo-Ung', NULL, 90.30) END +VALUES ('mux', 'Bo-Ung', NULL, 903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bo-Ung', [Definition] = NULL, [SortOrder] = 90.30 WHERE [Code] = 'mux' END +SET [Description] = 'Bo-Ung', [Definition] = NULL, [SortOrder] = 903.00 WHERE [Code] = 'mux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzn', 'Boano (Maluku)', NULL, 90.40) END +VALUES ('bzn', 'Boano (Maluku)', NULL, 904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boano (Maluku)', [Definition] = NULL, [SortOrder] = 90.40 WHERE [Code] = 'bzn' END +SET [Description] = 'Boano (Maluku)', [Definition] = NULL, [SortOrder] = 904.00 WHERE [Code] = 'bzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzl', 'Boano (Sulawesi)', NULL, 90.50) END +VALUES ('bzl', 'Boano (Sulawesi)', NULL, 905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boano (Sulawesi)', [Definition] = NULL, [SortOrder] = 90.50 WHERE [Code] = 'bzl' END +SET [Description] = 'Boano (Sulawesi)', [Definition] = NULL, [SortOrder] = 905.00 WHERE [Code] = 'bzl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgb', 'Bobongko', NULL, 90.60) END +VALUES ('bgb', 'Bobongko', NULL, 906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bobongko', [Definition] = NULL, [SortOrder] = 90.60 WHERE [Code] = 'bgb' END +SET [Description] = 'Bobongko', [Definition] = NULL, [SortOrder] = 906.00 WHERE [Code] = 'bgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bty', 'Bobot', NULL, 90.70) END +VALUES ('bty', 'Bobot', NULL, 907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bobot', [Definition] = NULL, [SortOrder] = 90.70 WHERE [Code] = 'bty' END +SET [Description] = 'Bobot', [Definition] = NULL, [SortOrder] = 907.00 WHERE [Code] = 'bty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boy', 'Bodo (Central African Republic)', NULL, 90.80) END +VALUES ('boy', 'Bodo (Central African Republic)', NULL, 908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bodo (Central African Republic)', [Definition] = NULL, [SortOrder] = 90.80 WHERE [Code] = 'boy' END +SET [Description] = 'Bodo (Central African Republic)', [Definition] = NULL, [SortOrder] = 908.00 WHERE [Code] = 'boy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brx', 'Bodo (India)', NULL, 90.90) END +VALUES ('brx', 'Bodo (India)', NULL, 909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bodo (India)', [Definition] = NULL, [SortOrder] = 90.90 WHERE [Code] = 'brx' END +SET [Description] = 'Bodo (India)', [Definition] = NULL, [SortOrder] = 909.00 WHERE [Code] = 'brx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbj', 'Bodo Gadaba', NULL, 91.00) END +VALUES ('gbj', 'Bodo Gadaba', NULL, 910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bodo Gadaba', [Definition] = NULL, [SortOrder] = 91.00 WHERE [Code] = 'gbj' END +SET [Description] = 'Bodo Gadaba', [Definition] = NULL, [SortOrder] = 910.00 WHERE [Code] = 'gbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdv', 'Bodo Parja', NULL, 91.10) END +VALUES ('bdv', 'Bodo Parja', NULL, 911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bodo Parja', [Definition] = NULL, [SortOrder] = 91.10 WHERE [Code] = 'bdv' END +SET [Description] = 'Bodo Parja', [Definition] = NULL, [SortOrder] = 911.00 WHERE [Code] = 'bdv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bff') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bff', 'Bofi', NULL, 91.20) END +VALUES ('bff', 'Bofi', NULL, 912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bofi', [Definition] = NULL, [SortOrder] = 91.20 WHERE [Code] = 'bff' END +SET [Description] = 'Bofi', [Definition] = NULL, [SortOrder] = 912.00 WHERE [Code] = 'bff' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvw', 'Boga', NULL, 91.30) END +VALUES ('bvw', 'Boga', NULL, 913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boga', [Definition] = NULL, [SortOrder] = 91.30 WHERE [Code] = 'bvw' END +SET [Description] = 'Boga', [Definition] = NULL, [SortOrder] = 913.00 WHERE [Code] = 'bvw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boq', 'Bogaya', NULL, 91.40) END +VALUES ('boq', 'Bogaya', NULL, 914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bogaya', [Definition] = NULL, [SortOrder] = 91.40 WHERE [Code] = 'boq' END +SET [Description] = 'Bogaya', [Definition] = NULL, [SortOrder] = 914.00 WHERE [Code] = 'boq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bux', 'Boghom', NULL, 91.50) END +VALUES ('bux', 'Boghom', NULL, 915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boghom', [Definition] = NULL, [SortOrder] = 91.50 WHERE [Code] = 'bux' END +SET [Description] = 'Boghom', [Definition] = NULL, [SortOrder] = 915.00 WHERE [Code] = 'bux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqu', 'Boguru', NULL, 91.60) END +VALUES ('bqu', 'Boguru', NULL, 916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boguru', [Definition] = NULL, [SortOrder] = 91.60 WHERE [Code] = 'bqu' END +SET [Description] = 'Boguru', [Definition] = NULL, [SortOrder] = 916.00 WHERE [Code] = 'bqu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhn', 'Bohtan Neo-Aramaic', NULL, 91.70) END +VALUES ('bhn', 'Bohtan Neo-Aramaic', NULL, 917.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bohtan Neo-Aramaic', [Definition] = NULL, [SortOrder] = 91.70 WHERE [Code] = 'bhn' END +SET [Description] = 'Bohtan Neo-Aramaic', [Definition] = NULL, [SortOrder] = 917.00 WHERE [Code] = 'bhn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzf', 'Boikin', NULL, 91.80) END +VALUES ('bzf', 'Boikin', NULL, 918.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boikin', [Definition] = NULL, [SortOrder] = 91.80 WHERE [Code] = 'bzf' END +SET [Description] = 'Boikin', [Definition] = NULL, [SortOrder] = 918.00 WHERE [Code] = 'bzf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybk', 'Bokha', NULL, 91.90) END +VALUES ('ybk', 'Bokha', NULL, 919.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bokha', [Definition] = NULL, [SortOrder] = 91.90 WHERE [Code] = 'ybk' END +SET [Description] = 'Bokha', [Definition] = NULL, [SortOrder] = 919.00 WHERE [Code] = 'ybk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqc', 'Boko (Benin)', NULL, 92.00) END +VALUES ('bqc', 'Boko (Benin)', NULL, 920.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boko (Benin)', [Definition] = NULL, [SortOrder] = 92.00 WHERE [Code] = 'bqc' END +SET [Description] = 'Boko (Benin)', [Definition] = NULL, [SortOrder] = 920.00 WHERE [Code] = 'bqc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkp', 'Boko (Democratic Republic of Congo)', NULL, 92.10) END +VALUES ('bkp', 'Boko (Democratic Republic of Congo)', NULL, 921.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boko (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 92.10 WHERE [Code] = 'bkp' END +SET [Description] = 'Boko (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 921.00 WHERE [Code] = 'bkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bus', 'Bokobaru', NULL, 92.20) END +VALUES ('bus', 'Bokobaru', NULL, 922.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bokobaru', [Definition] = NULL, [SortOrder] = 92.20 WHERE [Code] = 'bus' END +SET [Description] = 'Bokobaru', [Definition] = NULL, [SortOrder] = 922.00 WHERE [Code] = 'bus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdt', 'Bokoto', NULL, 92.30) END +VALUES ('bdt', 'Bokoto', NULL, 923.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bokoto', [Definition] = NULL, [SortOrder] = 92.30 WHERE [Code] = 'bdt' END +SET [Description] = 'Bokoto', [Definition] = NULL, [SortOrder] = 923.00 WHERE [Code] = 'bdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bky', 'Bokyi', NULL, 92.40) END +VALUES ('bky', 'Bokyi', NULL, 924.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bokyi', [Definition] = NULL, [SortOrder] = 92.40 WHERE [Code] = 'bky' END +SET [Description] = 'Bokyi', [Definition] = NULL, [SortOrder] = 924.00 WHERE [Code] = 'bky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnp', 'Bola', NULL, 92.50) END +VALUES ('bnp', 'Bola', NULL, 925.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bola', [Definition] = NULL, [SortOrder] = 92.50 WHERE [Code] = 'bnp' END +SET [Description] = 'Bola', [Definition] = NULL, [SortOrder] = 925.00 WHERE [Code] = 'bnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bld', 'Bolango', NULL, 92.60) END +VALUES ('bld', 'Bolango', NULL, 926.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolango', [Definition] = NULL, [SortOrder] = 92.60 WHERE [Code] = 'bld' END +SET [Description] = 'Bolango', [Definition] = NULL, [SortOrder] = 926.00 WHERE [Code] = 'bld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bol', 'Bole', NULL, 92.70) END +VALUES ('bol', 'Bole', NULL, 927.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bole', [Definition] = NULL, [SortOrder] = 92.70 WHERE [Code] = 'bol' END +SET [Description] = 'Bole', [Definition] = NULL, [SortOrder] = 927.00 WHERE [Code] = 'bol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbo', 'Bolgarian', NULL, 92.80) END +VALUES ('xbo', 'Bolgarian', NULL, 928.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolgarian', [Definition] = NULL, [SortOrder] = 92.80 WHERE [Code] = 'xbo' END +SET [Description] = 'Bolgarian', [Definition] = NULL, [SortOrder] = 928.00 WHERE [Code] = 'xbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvo', 'Bolgo', NULL, 92.90) END +VALUES ('bvo', 'Bolgo', NULL, 929.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolgo', [Definition] = NULL, [SortOrder] = 92.90 WHERE [Code] = 'bvo' END +SET [Description] = 'Bolgo', [Definition] = NULL, [SortOrder] = 929.00 WHERE [Code] = 'bvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bli', 'Bolia', NULL, 93.00) END +VALUES ('bli', 'Bolia', NULL, 930.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolia', [Definition] = NULL, [SortOrder] = 93.00 WHERE [Code] = 'bli' END +SET [Description] = 'Bolia', [Definition] = NULL, [SortOrder] = 930.00 WHERE [Code] = 'bli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smk', 'Bolinao', NULL, 93.10) END +VALUES ('smk', 'Bolinao', NULL, 931.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolinao', [Definition] = NULL, [SortOrder] = 93.10 WHERE [Code] = 'smk' END +SET [Description] = 'Bolinao', [Definition] = NULL, [SortOrder] = 931.00 WHERE [Code] = 'smk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvl', 'Bolivian Sign Language', NULL, 93.20) END +VALUES ('bvl', 'Bolivian Sign Language', NULL, 932.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolivian Sign Language', [Definition] = NULL, [SortOrder] = 93.20 WHERE [Code] = 'bvl' END +SET [Description] = 'Bolivian Sign Language', [Definition] = NULL, [SortOrder] = 932.00 WHERE [Code] = 'bvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkt', 'Boloki', NULL, 93.30) END +VALUES ('bkt', 'Boloki', NULL, 933.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boloki', [Definition] = NULL, [SortOrder] = 93.30 WHERE [Code] = 'bkt' END +SET [Description] = 'Boloki', [Definition] = NULL, [SortOrder] = 933.00 WHERE [Code] = 'bkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bof', 'Bolon', NULL, 93.40) END +VALUES ('bof', 'Bolon', NULL, 934.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolon', [Definition] = NULL, [SortOrder] = 93.40 WHERE [Code] = 'bof' END +SET [Description] = 'Bolon', [Definition] = NULL, [SortOrder] = 934.00 WHERE [Code] = 'bof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzm', 'Bolondo', NULL, 93.50) END +VALUES ('bzm', 'Bolondo', NULL, 935.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolondo', [Definition] = NULL, [SortOrder] = 93.50 WHERE [Code] = 'bzm' END +SET [Description] = 'Bolondo', [Definition] = NULL, [SortOrder] = 935.00 WHERE [Code] = 'bzm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blj', 'Bolongan', NULL, 93.60) END +VALUES ('blj', 'Bolongan', NULL, 936.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolongan', [Definition] = NULL, [SortOrder] = 93.60 WHERE [Code] = 'blj' END +SET [Description] = 'Bolongan', [Definition] = NULL, [SortOrder] = 936.00 WHERE [Code] = 'blj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ply') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ply', 'Bolyu', NULL, 93.70) END +VALUES ('ply', 'Bolyu', NULL, 937.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolyu', [Definition] = NULL, [SortOrder] = 93.70 WHERE [Code] = 'ply' END +SET [Description] = 'Bolyu', [Definition] = NULL, [SortOrder] = 937.00 WHERE [Code] = 'ply' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmf', 'Bom-Kim', NULL, 93.80) END +VALUES ('bmf', 'Bom-Kim', NULL, 938.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bom-Kim', [Definition] = NULL, [SortOrder] = 93.80 WHERE [Code] = 'bmf' END +SET [Description] = 'Bom-Kim', [Definition] = NULL, [SortOrder] = 938.00 WHERE [Code] = 'bmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boh', 'Boma', NULL, 93.90) END +VALUES ('boh', 'Boma', NULL, 939.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boma', [Definition] = NULL, [SortOrder] = 93.90 WHERE [Code] = 'boh' END +SET [Description] = 'Boma', [Definition] = NULL, [SortOrder] = 939.00 WHERE [Code] = 'boh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bml', 'Bomboli', NULL, 94.00) END +VALUES ('bml', 'Bomboli', NULL, 940.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomboli', [Definition] = NULL, [SortOrder] = 94.00 WHERE [Code] = 'bml' END +SET [Description] = 'Bomboli', [Definition] = NULL, [SortOrder] = 940.00 WHERE [Code] = 'bml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bws', 'Bomboma', NULL, 94.10) END +VALUES ('bws', 'Bomboma', NULL, 941.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomboma', [Definition] = NULL, [SortOrder] = 94.10 WHERE [Code] = 'bws' END +SET [Description] = 'Bomboma', [Definition] = NULL, [SortOrder] = 941.00 WHERE [Code] = 'bws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmx', 'Bomitaba', NULL, 94.20) END +VALUES ('zmx', 'Bomitaba', NULL, 942.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomitaba', [Definition] = NULL, [SortOrder] = 94.20 WHERE [Code] = 'zmx' END +SET [Description] = 'Bomitaba', [Definition] = NULL, [SortOrder] = 942.00 WHERE [Code] = 'zmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmq', 'Bomu', NULL, 94.30) END +VALUES ('bmq', 'Bomu', NULL, 943.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomu', [Definition] = NULL, [SortOrder] = 94.30 WHERE [Code] = 'bmq' END +SET [Description] = 'Bomu', [Definition] = NULL, [SortOrder] = 943.00 WHERE [Code] = 'bmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmw', 'Bomwali', NULL, 94.40) END +VALUES ('bmw', 'Bomwali', NULL, 944.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomwali', [Definition] = NULL, [SortOrder] = 94.40 WHERE [Code] = 'bmw' END +SET [Description] = 'Bomwali', [Definition] = NULL, [SortOrder] = 944.00 WHERE [Code] = 'bmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glc', 'Bon Gula', NULL, 94.50) END +VALUES ('glc', 'Bon Gula', NULL, 945.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bon Gula', [Definition] = NULL, [SortOrder] = 94.50 WHERE [Code] = 'glc' END +SET [Description] = 'Bon Gula', [Definition] = NULL, [SortOrder] = 945.00 WHERE [Code] = 'glc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peh', 'Bonan', NULL, 94.60) END +VALUES ('peh', 'Bonan', NULL, 946.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonan', [Definition] = NULL, [SortOrder] = 94.60 WHERE [Code] = 'peh' END +SET [Description] = 'Bonan', [Definition] = NULL, [SortOrder] = 946.00 WHERE [Code] = 'peh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bou', 'Bondei', NULL, 94.70) END +VALUES ('bou', 'Bondei', NULL, 947.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bondei', [Definition] = NULL, [SortOrder] = 94.70 WHERE [Code] = 'bou' END +SET [Description] = 'Bondei', [Definition] = NULL, [SortOrder] = 947.00 WHERE [Code] = 'bou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfw', 'Bondo', NULL, 94.80) END +VALUES ('bfw', 'Bondo', NULL, 948.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bondo', [Definition] = NULL, [SortOrder] = 94.80 WHERE [Code] = 'bfw' END +SET [Description] = 'Bondo', [Definition] = NULL, [SortOrder] = 948.00 WHERE [Code] = 'bfw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzc', 'Bondoukou Kulango', NULL, 94.90) END +VALUES ('kzc', 'Bondoukou Kulango', NULL, 949.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bondoukou Kulango', [Definition] = NULL, [SortOrder] = 94.90 WHERE [Code] = 'kzc' END +SET [Description] = 'Bondoukou Kulango', [Definition] = NULL, [SortOrder] = 949.00 WHERE [Code] = 'kzc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbu', 'Bondum Dom Dogon', NULL, 95.00) END +VALUES ('dbu', 'Bondum Dom Dogon', NULL, 950.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bondum Dom Dogon', [Definition] = NULL, [SortOrder] = 95.00 WHERE [Code] = 'dbu' END +SET [Description] = 'Bondum Dom Dogon', [Definition] = NULL, [SortOrder] = 950.00 WHERE [Code] = 'dbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bna', 'Bonerate', NULL, 95.10) END +VALUES ('bna', 'Bonerate', NULL, 951.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonerate', [Definition] = NULL, [SortOrder] = 95.10 WHERE [Code] = 'bna' END +SET [Description] = 'Bonerate', [Definition] = NULL, [SortOrder] = 951.00 WHERE [Code] = 'bna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnv', 'Bonerif', NULL, 95.20) END +VALUES ('bnv', 'Bonerif', NULL, 952.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonerif', [Definition] = NULL, [SortOrder] = 95.20 WHERE [Code] = 'bnv' END +SET [Description] = 'Bonerif', [Definition] = NULL, [SortOrder] = 952.00 WHERE [Code] = 'bnv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdg', 'Bonggi', NULL, 95.30) END +VALUES ('bdg', 'Bonggi', NULL, 953.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonggi', [Definition] = NULL, [SortOrder] = 95.30 WHERE [Code] = 'bdg' END +SET [Description] = 'Bonggi', [Definition] = NULL, [SortOrder] = 953.00 WHERE [Code] = 'bdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpg', 'Bonggo', NULL, 95.40) END +VALUES ('bpg', 'Bonggo', NULL, 954.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonggo', [Definition] = NULL, [SortOrder] = 95.40 WHERE [Code] = 'bpg' END +SET [Description] = 'Bonggo', [Definition] = NULL, [SortOrder] = 954.00 WHERE [Code] = 'bpg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bui', 'Bongili', NULL, 95.50) END +VALUES ('bui', 'Bongili', NULL, 955.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bongili', [Definition] = NULL, [SortOrder] = 95.50 WHERE [Code] = 'bui' END +SET [Description] = 'Bongili', [Definition] = NULL, [SortOrder] = 955.00 WHERE [Code] = 'bui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bot', 'Bongo', NULL, 95.60) END +VALUES ('bot', 'Bongo', NULL, 956.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bongo', [Definition] = NULL, [SortOrder] = 95.60 WHERE [Code] = 'bot' END +SET [Description] = 'Bongo', [Definition] = NULL, [SortOrder] = 956.00 WHERE [Code] = 'bot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpu', 'Bongu', NULL, 95.70) END +VALUES ('bpu', 'Bongu', NULL, 957.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bongu', [Definition] = NULL, [SortOrder] = 95.70 WHERE [Code] = 'bpu' END +SET [Description] = 'Bongu', [Definition] = NULL, [SortOrder] = 957.00 WHERE [Code] = 'bpu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bok', 'Bonjo', NULL, 95.80) END +VALUES ('bok', 'Bonjo', NULL, 958.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonjo', [Definition] = NULL, [SortOrder] = 95.80 WHERE [Code] = 'bok' END +SET [Description] = 'Bonjo', [Definition] = NULL, [SortOrder] = 958.00 WHERE [Code] = 'bok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvg', 'Bonkeng', NULL, 95.90) END +VALUES ('bvg', 'Bonkeng', NULL, 959.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonkeng', [Definition] = NULL, [SortOrder] = 95.90 WHERE [Code] = 'bvg' END +SET [Description] = 'Bonkeng', [Definition] = NULL, [SortOrder] = 959.00 WHERE [Code] = 'bvg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bop', 'Bonkiman', NULL, 96.00) END +VALUES ('bop', 'Bonkiman', NULL, 960.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonkiman', [Definition] = NULL, [SortOrder] = 96.00 WHERE [Code] = 'bop' END +SET [Description] = 'Bonkiman', [Definition] = NULL, [SortOrder] = 960.00 WHERE [Code] = 'bop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnc', 'Bontok', NULL, 96.10) END +VALUES ('bnc', 'Bontok', NULL, 961.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bontok', [Definition] = NULL, [SortOrder] = 96.10 WHERE [Code] = 'bnc' END +SET [Description] = 'Bontok', [Definition] = NULL, [SortOrder] = 961.00 WHERE [Code] = 'bnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnb', 'Bookan', NULL, 96.20) END +VALUES ('bnb', 'Bookan', NULL, 962.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bookan', [Definition] = NULL, [SortOrder] = 96.20 WHERE [Code] = 'bnb' END +SET [Description] = 'Bookan', [Definition] = NULL, [SortOrder] = 962.00 WHERE [Code] = 'bnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnl', 'Boon', NULL, 96.30) END +VALUES ('bnl', 'Boon', NULL, 963.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boon', [Definition] = NULL, [SortOrder] = 96.30 WHERE [Code] = 'bnl' END +SET [Description] = 'Boon', [Definition] = NULL, [SortOrder] = 963.00 WHERE [Code] = 'bnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvf', 'Boor', NULL, 96.40) END +VALUES ('bvf', 'Boor', NULL, 964.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boor', [Definition] = NULL, [SortOrder] = 96.40 WHERE [Code] = 'bvf' END +SET [Description] = 'Boor', [Definition] = NULL, [SortOrder] = 964.00 WHERE [Code] = 'bvf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boa', 'Bora', NULL, 96.50) END +VALUES ('boa', 'Bora', NULL, 965.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bora', [Definition] = NULL, [SortOrder] = 96.50 WHERE [Code] = 'boa' END +SET [Description] = 'Bora', [Definition] = NULL, [SortOrder] = 965.00 WHERE [Code] = 'boa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gax', 'Borana-Arsi-Guji Oromo', NULL, 96.60) END +VALUES ('gax', 'Borana-Arsi-Guji Oromo', NULL, 966.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borana-Arsi-Guji Oromo', [Definition] = NULL, [SortOrder] = 96.60 WHERE [Code] = 'gax' END +SET [Description] = 'Borana-Arsi-Guji Oromo', [Definition] = NULL, [SortOrder] = 966.00 WHERE [Code] = 'gax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvn', 'Border Kuna', NULL, 96.70) END +VALUES ('kvn', 'Border Kuna', NULL, 967.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Border Kuna', [Definition] = NULL, [SortOrder] = 96.70 WHERE [Code] = 'kvn' END +SET [Description] = 'Border Kuna', [Definition] = NULL, [SortOrder] = 967.00 WHERE [Code] = 'kvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gai', 'Borei', NULL, 96.80) END +VALUES ('gai', 'Borei', NULL, 968.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borei', [Definition] = NULL, [SortOrder] = 96.80 WHERE [Code] = 'gai' END +SET [Description] = 'Borei', [Definition] = NULL, [SortOrder] = 968.00 WHERE [Code] = 'gai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fue', 'Borgu Fulfulde', NULL, 96.90) END +VALUES ('fue', 'Borgu Fulfulde', NULL, 969.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borgu Fulfulde', [Definition] = NULL, [SortOrder] = 96.90 WHERE [Code] = 'fue' END +SET [Description] = 'Borgu Fulfulde', [Definition] = NULL, [SortOrder] = 969.00 WHERE [Code] = 'fue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwo', 'Boro (Ethiopia)', NULL, 97.00) END +VALUES ('bwo', 'Boro (Ethiopia)', NULL, 970.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boro (Ethiopia)', [Definition] = NULL, [SortOrder] = 97.00 WHERE [Code] = 'bwo' END +SET [Description] = 'Boro (Ethiopia)', [Definition] = NULL, [SortOrder] = 970.00 WHERE [Code] = 'bwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxb', 'Boro (Ghana)', NULL, 97.10) END +VALUES ('xxb', 'Boro (Ghana)', NULL, 971.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boro (Ghana)', [Definition] = NULL, [SortOrder] = 97.10 WHERE [Code] = 'xxb' END +SET [Description] = 'Boro (Ghana)', [Definition] = NULL, [SortOrder] = 971.00 WHERE [Code] = 'xxb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksr', 'Borong', NULL, 97.20) END +VALUES ('ksr', 'Borong', NULL, 972.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borong', [Definition] = NULL, [SortOrder] = 97.20 WHERE [Code] = 'ksr' END +SET [Description] = 'Borong', [Definition] = NULL, [SortOrder] = 972.00 WHERE [Code] = 'ksr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bor', 'Borôro', NULL, 97.30) END +VALUES ('bor', 'Borôro', NULL, 973.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borôro', [Definition] = NULL, [SortOrder] = 97.30 WHERE [Code] = 'bor' END +SET [Description] = 'Borôro', [Definition] = NULL, [SortOrder] = 973.00 WHERE [Code] = 'bor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brn', 'Boruca', NULL, 97.40) END +VALUES ('brn', 'Boruca', NULL, 974.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boruca', [Definition] = NULL, [SortOrder] = 97.40 WHERE [Code] = 'brn' END +SET [Description] = 'Boruca', [Definition] = NULL, [SortOrder] = 974.00 WHERE [Code] = 'brn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwf', 'Boselewa', NULL, 97.50) END +VALUES ('bwf', 'Boselewa', NULL, 975.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boselewa', [Definition] = NULL, [SortOrder] = 97.50 WHERE [Code] = 'bwf' END +SET [Description] = 'Boselewa', [Definition] = NULL, [SortOrder] = 975.00 WHERE [Code] = 'bwf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqs', 'Bosngun', NULL, 97.60) END +VALUES ('bqs', 'Bosngun', NULL, 976.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bosngun', [Definition] = NULL, [SortOrder] = 97.60 WHERE [Code] = 'bqs' END +SET [Description] = 'Bosngun', [Definition] = NULL, [SortOrder] = 976.00 WHERE [Code] = 'bqs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bos', 'Bosnian', NULL, 97.70) END +VALUES ('bos', 'Bosnian', NULL, 977.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bosnian', [Definition] = NULL, [SortOrder] = 97.70 WHERE [Code] = 'bos' END +SET [Description] = 'Bosnian', [Definition] = NULL, [SortOrder] = 977.00 WHERE [Code] = 'bos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmj', 'Bote-Majhi', NULL, 97.80) END +VALUES ('bmj', 'Bote-Majhi', NULL, 978.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bote-Majhi', [Definition] = NULL, [SortOrder] = 97.80 WHERE [Code] = 'bmj' END +SET [Description] = 'Bote-Majhi', [Definition] = NULL, [SortOrder] = 978.00 WHERE [Code] = 'bmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bph', 'Botlikh', NULL, 97.90) END +VALUES ('bph', 'Botlikh', NULL, 979.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Botlikh', [Definition] = NULL, [SortOrder] = 97.90 WHERE [Code] = 'bph' END +SET [Description] = 'Botlikh', [Definition] = NULL, [SortOrder] = 979.00 WHERE [Code] = 'bph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbl', 'Botolan Sambal', NULL, 98.00) END +VALUES ('sbl', 'Botolan Sambal', NULL, 980.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Botolan Sambal', [Definition] = NULL, [SortOrder] = 98.00 WHERE [Code] = 'sbl' END +SET [Description] = 'Botolan Sambal', [Definition] = NULL, [SortOrder] = 980.00 WHERE [Code] = 'sbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nku', 'Bouna Kulango', NULL, 98.10) END +VALUES ('nku', 'Bouna Kulango', NULL, 981.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bouna Kulango', [Definition] = NULL, [SortOrder] = 98.10 WHERE [Code] = 'nku' END +SET [Description] = 'Bouna Kulango', [Definition] = NULL, [SortOrder] = 981.00 WHERE [Code] = 'nku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suo', 'Bouni', NULL, 98.20) END +VALUES ('suo', 'Bouni', NULL, 982.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bouni', [Definition] = NULL, [SortOrder] = 98.20 WHERE [Code] = 'suo' END +SET [Description] = 'Bouni', [Definition] = NULL, [SortOrder] = 982.00 WHERE [Code] = 'suo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcc', 'Bouyei', NULL, 98.30) END +VALUES ('pcc', 'Bouyei', NULL, 983.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bouyei', [Definition] = NULL, [SortOrder] = 98.30 WHERE [Code] = 'pcc' END +SET [Description] = 'Bouyei', [Definition] = NULL, [SortOrder] = 983.00 WHERE [Code] = 'pcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzo', 'Bozaba', NULL, 98.40) END +VALUES ('bzo', 'Bozaba', NULL, 984.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bozaba', [Definition] = NULL, [SortOrder] = 98.40 WHERE [Code] = 'bzo' END +SET [Description] = 'Bozaba', [Definition] = NULL, [SortOrder] = 984.00 WHERE [Code] = 'bzo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aof', 'Bragat', NULL, 98.50) END +VALUES ('aof', 'Bragat', NULL, 985.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bragat', [Definition] = NULL, [SortOrder] = 98.50 WHERE [Code] = 'aof' END +SET [Description] = 'Bragat', [Definition] = NULL, [SortOrder] = 985.00 WHERE [Code] = 'aof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brh', 'Brahui', NULL, 98.60) END +VALUES ('brh', 'Brahui', NULL, 986.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brahui', [Definition] = NULL, [SortOrder] = 98.60 WHERE [Code] = 'brh' END +SET [Description] = 'Brahui', [Definition] = NULL, [SortOrder] = 986.00 WHERE [Code] = 'brh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bra', 'Braj', NULL, 98.70) END +VALUES ('bra', 'Braj', NULL, 987.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Braj', [Definition] = NULL, [SortOrder] = 98.70 WHERE [Code] = 'bra' END +SET [Description] = 'Braj', [Definition] = NULL, [SortOrder] = 987.00 WHERE [Code] = 'bra' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('brb', 'Brao', NULL, 988.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Brao', [Definition] = NULL, [SortOrder] = 988.00 WHERE [Code] = 'brb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzs', 'Brazilian Sign Language', NULL, 98.80) END +VALUES ('bzs', 'Brazilian Sign Language', NULL, 989.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brazilian Sign Language', [Definition] = NULL, [SortOrder] = 98.80 WHERE [Code] = 'bzs' END +SET [Description] = 'Brazilian Sign Language', [Definition] = NULL, [SortOrder] = 989.00 WHERE [Code] = 'bzs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buq', 'Brem', NULL, 98.90) END +VALUES ('buq', 'Brem', NULL, 990.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brem', [Definition] = NULL, [SortOrder] = 98.90 WHERE [Code] = 'buq' END +SET [Description] = 'Brem', [Definition] = NULL, [SortOrder] = 990.00 WHERE [Code] = 'buq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brq', 'Breri', NULL, 99.00) END +VALUES ('brq', 'Breri', NULL, 991.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Breri', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = 'brq' END +SET [Description] = 'Breri', [Definition] = NULL, [SortOrder] = 991.00 WHERE [Code] = 'brq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bre', 'Breton', NULL, 99.10) END +VALUES ('bre', 'Breton', NULL, 992.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Breton', [Definition] = NULL, [SortOrder] = 99.10 WHERE [Code] = 'bre' END +SET [Description] = 'Breton', [Definition] = NULL, [SortOrder] = 992.00 WHERE [Code] = 'bre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzd', 'Bribri', NULL, 99.20) END +VALUES ('bzd', 'Bribri', NULL, 993.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bribri', [Definition] = NULL, [SortOrder] = 99.20 WHERE [Code] = 'bzd' END +SET [Description] = 'Bribri', [Definition] = NULL, [SortOrder] = 993.00 WHERE [Code] = 'bzd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rib', 'Bribri Sign Language', NULL, 99.30) END +VALUES ('rib', 'Bribri Sign Language', NULL, 994.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bribri Sign Language', [Definition] = NULL, [SortOrder] = 99.30 WHERE [Code] = 'rib' END +SET [Description] = 'Bribri Sign Language', [Definition] = NULL, [SortOrder] = 994.00 WHERE [Code] = 'rib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzt', 'Brithenig', NULL, 99.40) END +VALUES ('bzt', 'Brithenig', NULL, 995.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brithenig', [Definition] = NULL, [SortOrder] = 99.40 WHERE [Code] = 'bzt' END +SET [Description] = 'Brithenig', [Definition] = NULL, [SortOrder] = 995.00 WHERE [Code] = 'bzt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfi', 'British Sign Language', NULL, 99.50) END +VALUES ('bfi', 'British Sign Language', NULL, 996.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'British Sign Language', [Definition] = NULL, [SortOrder] = 99.50 WHERE [Code] = 'bfi' END +SET [Description] = 'British Sign Language', [Definition] = NULL, [SortOrder] = 996.00 WHERE [Code] = 'bfi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bro', 'Brokkat', NULL, 99.60) END +VALUES ('bro', 'Brokkat', NULL, 997.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brokkat', [Definition] = NULL, [SortOrder] = 99.60 WHERE [Code] = 'bro' END +SET [Description] = 'Brokkat', [Definition] = NULL, [SortOrder] = 997.00 WHERE [Code] = 'bro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgt', 'Brokpake', NULL, 99.70) END +VALUES ('sgt', 'Brokpake', NULL, 998.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brokpake', [Definition] = NULL, [SortOrder] = 99.70 WHERE [Code] = 'sgt' END +SET [Description] = 'Brokpake', [Definition] = NULL, [SortOrder] = 998.00 WHERE [Code] = 'sgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkk', 'Brokskat', NULL, 99.80) END +VALUES ('bkk', 'Brokskat', NULL, 999.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brokskat', [Definition] = NULL, [SortOrder] = 99.80 WHERE [Code] = 'bkk' END +SET [Description] = 'Brokskat', [Definition] = NULL, [SortOrder] = 999.00 WHERE [Code] = 'bkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plw', 'Brooke''s Point Palawano', NULL, 99.90) END +VALUES ('plw', 'Brooke''s Point Palawano', NULL, 1000.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brooke''s Point Palawano', [Definition] = NULL, [SortOrder] = 99.90 WHERE [Code] = 'plw' END +SET [Description] = 'Brooke''s Point Palawano', [Definition] = NULL, [SortOrder] = 1000.00 WHERE [Code] = 'plw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpl', 'Broome Pearling Lugger Pidgin', NULL, 100.00) END +VALUES ('bpl', 'Broome Pearling Lugger Pidgin', NULL, 1001.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Broome Pearling Lugger Pidgin', [Definition] = NULL, [SortOrder] = 100.00 WHERE [Code] = 'bpl' END +SET [Description] = 'Broome Pearling Lugger Pidgin', [Definition] = NULL, [SortOrder] = 1001.00 WHERE [Code] = 'bpl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnb', 'Brunca Sign Language', NULL, 100.10) END +VALUES ('rnb', 'Brunca Sign Language', NULL, 1002.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brunca Sign Language', [Definition] = NULL, [SortOrder] = 100.10 WHERE [Code] = 'rnb' END +SET [Description] = 'Brunca Sign Language', [Definition] = NULL, [SortOrder] = 1002.00 WHERE [Code] = 'rnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxd', 'Brunei', NULL, 100.20) END +VALUES ('kxd', 'Brunei', NULL, 1003.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brunei', [Definition] = NULL, [SortOrder] = 100.20 WHERE [Code] = 'kxd' END +SET [Description] = 'Brunei', [Definition] = NULL, [SortOrder] = 1003.00 WHERE [Code] = 'kxd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsb', 'Brunei Bisaya', NULL, 100.30) END +VALUES ('bsb', 'Brunei Bisaya', NULL, 1004.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brunei Bisaya', [Definition] = NULL, [SortOrder] = 100.30 WHERE [Code] = 'bsb' END +SET [Description] = 'Brunei Bisaya', [Definition] = NULL, [SortOrder] = 1004.00 WHERE [Code] = 'bsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpz', 'Bruny Island Tasmanian', NULL, 100.40) END +VALUES ('xpz', 'Bruny Island Tasmanian', NULL, 1005.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bruny Island Tasmanian', [Definition] = NULL, [SortOrder] = 100.40 WHERE [Code] = 'xpz' END +SET [Description] = 'Bruny Island Tasmanian', [Definition] = NULL, [SortOrder] = 1005.00 WHERE [Code] = 'xpz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbu', 'Bu (Bauchi State)', NULL, 100.50) END +VALUES ('zbu', 'Bu (Bauchi State)', NULL, 1006.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bu (Bauchi State)', [Definition] = NULL, [SortOrder] = 100.50 WHERE [Code] = 'zbu' END +SET [Description] = 'Bu (Bauchi State)', [Definition] = NULL, [SortOrder] = 1006.00 WHERE [Code] = 'zbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jid', 'Bu (Kaduna State)', NULL, 100.60) END +VALUES ('jid', 'Bu (Kaduna State)', NULL, 1007.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bu (Kaduna State)', [Definition] = NULL, [SortOrder] = 100.60 WHERE [Code] = 'jid' END +SET [Description] = 'Bu (Kaduna State)', [Definition] = NULL, [SortOrder] = 1007.00 WHERE [Code] = 'jid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwx', 'Bu-Nao Bunu', NULL, 100.70) END +VALUES ('bwx', 'Bu-Nao Bunu', NULL, 1008.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bu-Nao Bunu', [Definition] = NULL, [SortOrder] = 100.70 WHERE [Code] = 'bwx' END +SET [Description] = 'Bu-Nao Bunu', [Definition] = NULL, [SortOrder] = 1008.00 WHERE [Code] = 'bwx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bub', 'Bua', NULL, 100.80) END +VALUES ('bub', 'Bua', NULL, 1009.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bua', [Definition] = NULL, [SortOrder] = 100.80 WHERE [Code] = 'bub' END +SET [Description] = 'Bua', [Definition] = NULL, [SortOrder] = 1009.00 WHERE [Code] = 'bub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbl', 'Bualkhaw Chin', NULL, 100.90) END +VALUES ('cbl', 'Bualkhaw Chin', NULL, 1010.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bualkhaw Chin', [Definition] = NULL, [SortOrder] = 100.90 WHERE [Code] = 'cbl' END +SET [Description] = 'Bualkhaw Chin', [Definition] = NULL, [SortOrder] = 1010.00 WHERE [Code] = 'cbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'box') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('box', 'Buamu', NULL, 101.00) END +VALUES ('box', 'Buamu', NULL, 1011.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buamu', [Definition] = NULL, [SortOrder] = 101.00 WHERE [Code] = 'box' END +SET [Description] = 'Buamu', [Definition] = NULL, [SortOrder] = 1011.00 WHERE [Code] = 'box' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvb', 'Bube', NULL, 101.10) END +VALUES ('bvb', 'Bube', NULL, 1012.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bube', [Definition] = NULL, [SortOrder] = 101.10 WHERE [Code] = 'bvb' END +SET [Description] = 'Bube', [Definition] = NULL, [SortOrder] = 1012.00 WHERE [Code] = 'bvb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buw', 'Bubi', NULL, 101.20) END +VALUES ('buw', 'Bubi', NULL, 1013.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bubi', [Definition] = NULL, [SortOrder] = 101.20 WHERE [Code] = 'buw' END +SET [Description] = 'Bubi', [Definition] = NULL, [SortOrder] = 1013.00 WHERE [Code] = 'buw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbx', 'Bubia', NULL, 101.30) END +VALUES ('bbx', 'Bubia', NULL, 1014.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bubia', [Definition] = NULL, [SortOrder] = 101.30 WHERE [Code] = 'bbx' END +SET [Description] = 'Bubia', [Definition] = NULL, [SortOrder] = 1014.00 WHERE [Code] = 'bbx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stt', 'Budeh Stieng', NULL, 101.40) END +VALUES ('stt', 'Budeh Stieng', NULL, 1015.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budeh Stieng', [Definition] = NULL, [SortOrder] = 101.40 WHERE [Code] = 'stt' END +SET [Description] = 'Budeh Stieng', [Definition] = NULL, [SortOrder] = 1015.00 WHERE [Code] = 'stt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btp', 'Budibud', NULL, 101.50) END +VALUES ('btp', 'Budibud', NULL, 1016.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budibud', [Definition] = NULL, [SortOrder] = 101.50 WHERE [Code] = 'btp' END +SET [Description] = 'Budibud', [Definition] = NULL, [SortOrder] = 1016.00 WHERE [Code] = 'btp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdx', 'Budong-Budong', NULL, 101.60) END +VALUES ('bdx', 'Budong-Budong', NULL, 1017.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budong-Budong', [Definition] = NULL, [SortOrder] = 101.60 WHERE [Code] = 'bdx' END +SET [Description] = 'Budong-Budong', [Definition] = NULL, [SortOrder] = 1017.00 WHERE [Code] = 'bdx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buu', 'Budu', NULL, 101.70) END +VALUES ('buu', 'Budu', NULL, 1018.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budu', [Definition] = NULL, [SortOrder] = 101.70 WHERE [Code] = 'buu' END +SET [Description] = 'Budu', [Definition] = NULL, [SortOrder] = 1018.00 WHERE [Code] = 'buu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdk', 'Budukh', NULL, 101.80) END +VALUES ('bdk', 'Budukh', NULL, 1019.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budukh', [Definition] = NULL, [SortOrder] = 101.80 WHERE [Code] = 'bdk' END +SET [Description] = 'Budukh', [Definition] = NULL, [SortOrder] = 1019.00 WHERE [Code] = 'bdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdm', 'Buduma', NULL, 101.90) END +VALUES ('bdm', 'Buduma', NULL, 1020.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buduma', [Definition] = NULL, [SortOrder] = 101.90 WHERE [Code] = 'bdm' END +SET [Description] = 'Buduma', [Definition] = NULL, [SortOrder] = 1020.00 WHERE [Code] = 'bdm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bja', 'Budza', NULL, 102.00) END +VALUES ('bja', 'Budza', NULL, 1021.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budza', [Definition] = NULL, [SortOrder] = 102.00 WHERE [Code] = 'bja' END +SET [Description] = 'Budza', [Definition] = NULL, [SortOrder] = 1021.00 WHERE [Code] = 'bja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbh', 'Bugan', NULL, 102.10) END +VALUES ('bbh', 'Bugan', NULL, 1022.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bugan', [Definition] = NULL, [SortOrder] = 102.10 WHERE [Code] = 'bbh' END +SET [Description] = 'Bugan', [Definition] = NULL, [SortOrder] = 1022.00 WHERE [Code] = 'bbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buk', 'Bugawac', NULL, 102.20) END +VALUES ('buk', 'Bugawac', NULL, 1023.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bugawac', [Definition] = NULL, [SortOrder] = 102.20 WHERE [Code] = 'buk' END +SET [Description] = 'Bugawac', [Definition] = NULL, [SortOrder] = 1023.00 WHERE [Code] = 'buk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgt', 'Bughotu', NULL, 102.30) END +VALUES ('bgt', 'Bughotu', NULL, 1024.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bughotu', [Definition] = NULL, [SortOrder] = 102.30 WHERE [Code] = 'bgt' END +SET [Description] = 'Bughotu', [Definition] = NULL, [SortOrder] = 1024.00 WHERE [Code] = 'bgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bug', 'Buginese', NULL, 102.40) END +VALUES ('bug', 'Buginese', NULL, 1025.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buginese', [Definition] = NULL, [SortOrder] = 102.40 WHERE [Code] = 'bug' END +SET [Description] = 'Buginese', [Definition] = NULL, [SortOrder] = 1025.00 WHERE [Code] = 'bug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sab', 'Buglere', NULL, 102.50) END +VALUES ('sab', 'Buglere', NULL, 1026.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buglere', [Definition] = NULL, [SortOrder] = 102.50 WHERE [Code] = 'sab' END +SET [Description] = 'Buglere', [Definition] = NULL, [SortOrder] = 1026.00 WHERE [Code] = 'sab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgg', 'Bugun', NULL, 102.60) END +VALUES ('bgg', 'Bugun', NULL, 1027.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bugun', [Definition] = NULL, [SortOrder] = 102.60 WHERE [Code] = 'bgg' END +SET [Description] = 'Bugun', [Definition] = NULL, [SortOrder] = 1027.00 WHERE [Code] = 'bgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ubl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ubl', 'Buhi''non Bikol', NULL, 102.70) END +VALUES ('ubl', 'Buhi''non Bikol', NULL, 1028.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buhi''non Bikol', [Definition] = NULL, [SortOrder] = 102.70 WHERE [Code] = 'ubl' END +SET [Description] = 'Buhi''non Bikol', [Definition] = NULL, [SortOrder] = 1028.00 WHERE [Code] = 'ubl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bku', 'Buhid', NULL, 102.80) END +VALUES ('bku', 'Buhid', NULL, 1029.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buhid', [Definition] = NULL, [SortOrder] = 102.80 WHERE [Code] = 'bku' END +SET [Description] = 'Buhid', [Definition] = NULL, [SortOrder] = 1029.00 WHERE [Code] = 'bku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxh', 'Buhutu', NULL, 102.90) END +VALUES ('bxh', 'Buhutu', NULL, 1030.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buhutu', [Definition] = NULL, [SortOrder] = 102.90 WHERE [Code] = 'bxh' END +SET [Description] = 'Buhutu', [Definition] = NULL, [SortOrder] = 1030.00 WHERE [Code] = 'bxh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdo', 'Bukar-Sadung Bidayuh', NULL, 103.00) END +VALUES ('sdo', 'Bukar-Sadung Bidayuh', NULL, 1031.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukar-Sadung Bidayuh', [Definition] = NULL, [SortOrder] = 103.00 WHERE [Code] = 'sdo' END +SET [Description] = 'Bukar-Sadung Bidayuh', [Definition] = NULL, [SortOrder] = 1031.00 WHERE [Code] = 'sdo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvk', 'Bukat', NULL, 103.10) END +VALUES ('bvk', 'Bukat', NULL, 1032.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukat', [Definition] = NULL, [SortOrder] = 103.10 WHERE [Code] = 'bvk' END +SET [Description] = 'Bukat', [Definition] = NULL, [SortOrder] = 1032.00 WHERE [Code] = 'bvk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhh', 'Bukharic', NULL, 103.20) END +VALUES ('bhh', 'Bukharic', NULL, 1033.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukharic', [Definition] = NULL, [SortOrder] = 103.20 WHERE [Code] = 'bhh' END +SET [Description] = 'Bukharic', [Definition] = NULL, [SortOrder] = 1033.00 WHERE [Code] = 'bhh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvu', 'Bukit Malay', NULL, 103.30) END +VALUES ('bvu', 'Bukit Malay', NULL, 1034.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukit Malay', [Definition] = NULL, [SortOrder] = 103.30 WHERE [Code] = 'bvu' END +SET [Description] = 'Bukit Malay', [Definition] = NULL, [SortOrder] = 1034.00 WHERE [Code] = 'bvu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkn', 'Bukitan', NULL, 103.40) END +VALUES ('bkn', 'Bukitan', NULL, 1035.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukitan', [Definition] = NULL, [SortOrder] = 103.40 WHERE [Code] = 'bkn' END +SET [Description] = 'Bukitan', [Definition] = NULL, [SortOrder] = 1035.00 WHERE [Code] = 'bkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ape') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ape', 'Bukiyip', NULL, 103.50) END +VALUES ('ape', 'Bukiyip', NULL, 1036.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukiyip', [Definition] = NULL, [SortOrder] = 103.50 WHERE [Code] = 'ape' END +SET [Description] = 'Bukiyip', [Definition] = NULL, [SortOrder] = 1036.00 WHERE [Code] = 'ape' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkb', 'Buksa', NULL, 103.60) END +VALUES ('tkb', 'Buksa', NULL, 1037.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buksa', [Definition] = NULL, [SortOrder] = 103.60 WHERE [Code] = 'tkb' END +SET [Description] = 'Buksa', [Definition] = NULL, [SortOrder] = 1037.00 WHERE [Code] = 'tkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxk', 'Bukusu', NULL, 103.70) END +VALUES ('bxk', 'Bukusu', NULL, 1038.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukusu', [Definition] = NULL, [SortOrder] = 103.70 WHERE [Code] = 'bxk' END +SET [Description] = 'Bukusu', [Definition] = NULL, [SortOrder] = 1038.00 WHERE [Code] = 'bxk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buz', 'Bukwen', NULL, 103.80) END +VALUES ('buz', 'Bukwen', NULL, 1039.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukwen', [Definition] = NULL, [SortOrder] = 103.80 WHERE [Code] = 'buz' END +SET [Description] = 'Bukwen', [Definition] = NULL, [SortOrder] = 1039.00 WHERE [Code] = 'buz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bul', 'Bulgarian', NULL, 103.90) END +VALUES ('bul', 'Bulgarian', NULL, 1040.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulgarian', [Definition] = NULL, [SortOrder] = 103.90 WHERE [Code] = 'bul' END +SET [Description] = 'Bulgarian', [Definition] = NULL, [SortOrder] = 1040.00 WHERE [Code] = 'bul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqn', 'Bulgarian Sign Language', NULL, 104.00) END +VALUES ('bqn', 'Bulgarian Sign Language', NULL, 1041.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulgarian Sign Language', [Definition] = NULL, [SortOrder] = 104.00 WHERE [Code] = 'bqn' END +SET [Description] = 'Bulgarian Sign Language', [Definition] = NULL, [SortOrder] = 1041.00 WHERE [Code] = 'bqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmp', 'Bulgebi', NULL, 104.10) END +VALUES ('bmp', 'Bulgebi', NULL, 1042.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulgebi', [Definition] = NULL, [SortOrder] = 104.10 WHERE [Code] = 'bmp' END +SET [Description] = 'Bulgebi', [Definition] = NULL, [SortOrder] = 1042.00 WHERE [Code] = 'bmp' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('uly', 'Buli', NULL, 1043.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Buli', [Definition] = NULL, [SortOrder] = 1043.00 WHERE [Code] = 'uly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwu', 'Buli (Ghana)', NULL, 104.20) END +VALUES ('bwu', 'Buli (Ghana)', NULL, 1044.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buli (Ghana)', [Definition] = NULL, [SortOrder] = 104.20 WHERE [Code] = 'bwu' END +SET [Description] = 'Buli (Ghana)', [Definition] = NULL, [SortOrder] = 1044.00 WHERE [Code] = 'bwu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzq', 'Buli (Indonesia)', NULL, 104.30) END +VALUES ('bzq', 'Buli (Indonesia)', NULL, 1045.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buli (Indonesia)', [Definition] = NULL, [SortOrder] = 104.30 WHERE [Code] = 'bzq' END +SET [Description] = 'Buli (Indonesia)', [Definition] = NULL, [SortOrder] = 1045.00 WHERE [Code] = 'bzq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buy', 'Bullom So', NULL, 104.40) END +VALUES ('buy', 'Bullom So', NULL, 1046.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bullom So', [Definition] = NULL, [SortOrder] = 104.40 WHERE [Code] = 'buy' END +SET [Description] = 'Bullom So', [Definition] = NULL, [SortOrder] = 1046.00 WHERE [Code] = 'buy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sti', 'Bulo Stieng', NULL, 104.50) END +VALUES ('sti', 'Bulo Stieng', NULL, 1047.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulo Stieng', [Definition] = NULL, [SortOrder] = 104.50 WHERE [Code] = 'sti' END +SET [Description] = 'Bulo Stieng', [Definition] = NULL, [SortOrder] = 1047.00 WHERE [Code] = 'sti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bum', 'Bulu (Cameroon)', NULL, 104.60) END +VALUES ('bum', 'Bulu (Cameroon)', NULL, 1048.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulu (Cameroon)', [Definition] = NULL, [SortOrder] = 104.60 WHERE [Code] = 'bum' END +SET [Description] = 'Bulu (Cameroon)', [Definition] = NULL, [SortOrder] = 1048.00 WHERE [Code] = 'bum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjl', 'Bulu (Papua New Guinea)', NULL, 104.70) END +VALUES ('bjl', 'Bulu (Papua New Guinea)', NULL, 1049.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulu (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 104.70 WHERE [Code] = 'bjl' END +SET [Description] = 'Bulu (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 1049.00 WHERE [Code] = 'bjl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmv', 'Bum', NULL, 104.80) END +VALUES ('bmv', 'Bum', NULL, 1050.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bum', [Definition] = NULL, [SortOrder] = 104.80 WHERE [Code] = 'bmv' END +SET [Description] = 'Bum', [Definition] = NULL, [SortOrder] = 1050.00 WHERE [Code] = 'bmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byp', 'Bumaji', NULL, 104.90) END +VALUES ('byp', 'Bumaji', NULL, 1051.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bumaji', [Definition] = NULL, [SortOrder] = 104.90 WHERE [Code] = 'byp' END +SET [Description] = 'Bumaji', [Definition] = NULL, [SortOrder] = 1051.00 WHERE [Code] = 'byp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvp', 'Bumang', NULL, 105.00) END +VALUES ('bvp', 'Bumang', NULL, 1052.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bumang', [Definition] = NULL, [SortOrder] = 105.00 WHERE [Code] = 'bvp' END +SET [Description] = 'Bumang', [Definition] = NULL, [SortOrder] = 1052.00 WHERE [Code] = 'bvp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aon', 'Bumbita Arapesh', NULL, 105.10) END +VALUES ('aon', 'Bumbita Arapesh', NULL, 1053.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bumbita Arapesh', [Definition] = NULL, [SortOrder] = 105.10 WHERE [Code] = 'aon' END +SET [Description] = 'Bumbita Arapesh', [Definition] = NULL, [SortOrder] = 1053.00 WHERE [Code] = 'aon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjz', 'Bumthangkha', NULL, 105.20) END +VALUES ('kjz', 'Bumthangkha', NULL, 1054.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bumthangkha', [Definition] = NULL, [SortOrder] = 105.20 WHERE [Code] = 'kjz' END +SET [Description] = 'Bumthangkha', [Definition] = NULL, [SortOrder] = 1054.00 WHERE [Code] = 'kjz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buv', 'Bun', NULL, 105.30) END +VALUES ('buv', 'Bun', NULL, 1055.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bun', [Definition] = NULL, [SortOrder] = 105.30 WHERE [Code] = 'buv' END +SET [Description] = 'Bun', [Definition] = NULL, [SortOrder] = 1055.00 WHERE [Code] = 'buv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvn', 'Buna', NULL, 105.40) END +VALUES ('bvn', 'Buna', NULL, 1056.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buna', [Definition] = NULL, [SortOrder] = 105.40 WHERE [Code] = 'bvn' END +SET [Description] = 'Buna', [Definition] = NULL, [SortOrder] = 1056.00 WHERE [Code] = 'bvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfn', 'Bunak', NULL, 105.50) END +VALUES ('bfn', 'Bunak', NULL, 1057.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunak', [Definition] = NULL, [SortOrder] = 105.50 WHERE [Code] = 'bfn' END +SET [Description] = 'Bunak', [Definition] = NULL, [SortOrder] = 1057.00 WHERE [Code] = 'bfn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdd', 'Bunama', NULL, 105.60) END +VALUES ('bdd', 'Bunama', NULL, 1058.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunama', [Definition] = NULL, [SortOrder] = 105.60 WHERE [Code] = 'bdd' END +SET [Description] = 'Bunama', [Definition] = NULL, [SortOrder] = 1058.00 WHERE [Code] = 'bdd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bns', 'Bundeli', NULL, 105.70) END +VALUES ('bns', 'Bundeli', NULL, 1059.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bundeli', [Definition] = NULL, [SortOrder] = 105.70 WHERE [Code] = 'bns' END +SET [Description] = 'Bundeli', [Definition] = NULL, [SortOrder] = 1059.00 WHERE [Code] = 'bns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqd', 'Bung', NULL, 105.80) END +VALUES ('bqd', 'Bung', NULL, 1060.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bung', [Definition] = NULL, [SortOrder] = 105.80 WHERE [Code] = 'bqd' END +SET [Description] = 'Bung', [Definition] = NULL, [SortOrder] = 1060.00 WHERE [Code] = 'bqd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'but') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('but', 'Bungain', NULL, 105.90) END +VALUES ('but', 'Bungain', NULL, 1061.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bungain', [Definition] = NULL, [SortOrder] = 105.90 WHERE [Code] = 'but' END +SET [Description] = 'Bungain', [Definition] = NULL, [SortOrder] = 1061.00 WHERE [Code] = 'but' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbg', 'Bunganditj', NULL, 106.00) END +VALUES ('xbg', 'Bunganditj', NULL, 1062.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunganditj', [Definition] = NULL, [SortOrder] = 106.00 WHERE [Code] = 'xbg' END +SET [Description] = 'Bunganditj', [Definition] = NULL, [SortOrder] = 1062.00 WHERE [Code] = 'xbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkz', 'Bungku', NULL, 106.10) END +VALUES ('bkz', 'Bungku', NULL, 1063.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bungku', [Definition] = NULL, [SortOrder] = 106.10 WHERE [Code] = 'bkz' END +SET [Description] = 'Bungku', [Definition] = NULL, [SortOrder] = 1063.00 WHERE [Code] = 'bkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wun', 'Bungu', NULL, 106.20) END +VALUES ('wun', 'Bungu', NULL, 1064.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bungu', [Definition] = NULL, [SortOrder] = 106.20 WHERE [Code] = 'wun' END +SET [Description] = 'Bungu', [Definition] = NULL, [SortOrder] = 1064.00 WHERE [Code] = 'wun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgb', 'Bunoge Dogon', NULL, 106.30) END +VALUES ('dgb', 'Bunoge Dogon', NULL, 1065.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunoge Dogon', [Definition] = NULL, [SortOrder] = 106.30 WHERE [Code] = 'dgb' END +SET [Description] = 'Bunoge Dogon', [Definition] = NULL, [SortOrder] = 1065.00 WHERE [Code] = 'dgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bck', 'Bunuba', NULL, 106.40) END +VALUES ('bck', 'Bunuba', NULL, 1066.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunuba', [Definition] = NULL, [SortOrder] = 106.40 WHERE [Code] = 'bck' END +SET [Description] = 'Bunuba', [Definition] = NULL, [SortOrder] = 1066.00 WHERE [Code] = 'bck' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnn', 'Bunun', NULL, 106.50) END +VALUES ('bnn', 'Bunun', NULL, 1067.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunun', [Definition] = NULL, [SortOrder] = 106.50 WHERE [Code] = 'bnn' END +SET [Description] = 'Bunun', [Definition] = NULL, [SortOrder] = 1067.00 WHERE [Code] = 'bnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blf', 'Buol', NULL, 106.60) END +VALUES ('blf', 'Buol', NULL, 1068.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buol', [Definition] = NULL, [SortOrder] = 106.60 WHERE [Code] = 'blf' END +SET [Description] = 'Buol', [Definition] = NULL, [SortOrder] = 1068.00 WHERE [Code] = 'blf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwr', 'Bura-Pabir', NULL, 106.70) END +VALUES ('bwr', 'Bura-Pabir', NULL, 1069.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bura-Pabir', [Definition] = NULL, [SortOrder] = 106.70 WHERE [Code] = 'bwr' END +SET [Description] = 'Bura-Pabir', [Definition] = NULL, [SortOrder] = 1069.00 WHERE [Code] = 'bwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bys', 'Burak', NULL, 106.80) END +VALUES ('bys', 'Burak', NULL, 1070.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burak', [Definition] = NULL, [SortOrder] = 106.80 WHERE [Code] = 'bys' END +SET [Description] = 'Burak', [Definition] = NULL, [SortOrder] = 1070.00 WHERE [Code] = 'bys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkg', 'Buraka', NULL, 106.90) END +VALUES ('bkg', 'Buraka', NULL, 1071.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buraka', [Definition] = NULL, [SortOrder] = 106.90 WHERE [Code] = 'bkg' END +SET [Description] = 'Buraka', [Definition] = NULL, [SortOrder] = 1071.00 WHERE [Code] = 'bkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvr', 'Burarra', NULL, 107.00) END +VALUES ('bvr', 'Burarra', NULL, 1072.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burarra', [Definition] = NULL, [SortOrder] = 107.00 WHERE [Code] = 'bvr' END +SET [Description] = 'Burarra', [Definition] = NULL, [SortOrder] = 1072.00 WHERE [Code] = 'bvr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bti', 'Burate', NULL, 107.10) END +VALUES ('bti', 'Burate', NULL, 1073.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burate', [Definition] = NULL, [SortOrder] = 107.10 WHERE [Code] = 'bti' END +SET [Description] = 'Burate', [Definition] = NULL, [SortOrder] = 1073.00 WHERE [Code] = 'bti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxn', 'Burduna', NULL, 107.20) END +VALUES ('bxn', 'Burduna', NULL, 1074.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burduna', [Definition] = NULL, [SortOrder] = 107.20 WHERE [Code] = 'bxn' END +SET [Description] = 'Burduna', [Definition] = NULL, [SortOrder] = 1074.00 WHERE [Code] = 'bxn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvh', 'Bure', NULL, 107.30) END +VALUES ('bvh', 'Bure', NULL, 1075.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bure', [Definition] = NULL, [SortOrder] = 107.30 WHERE [Code] = 'bvh' END +SET [Description] = 'Bure', [Definition] = NULL, [SortOrder] = 1075.00 WHERE [Code] = 'bvh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bua', 'Buriat', NULL, 107.40) END +VALUES ('bua', 'Buriat', NULL, 1076.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buriat', [Definition] = NULL, [SortOrder] = 107.40 WHERE [Code] = 'bua' END +SET [Description] = 'Buriat', [Definition] = NULL, [SortOrder] = 1076.00 WHERE [Code] = 'bua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bji', 'Burji', NULL, 107.50) END +VALUES ('bji', 'Burji', NULL, 1077.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burji', [Definition] = NULL, [SortOrder] = 107.50 WHERE [Code] = 'bji' END +SET [Description] = 'Burji', [Definition] = NULL, [SortOrder] = 1077.00 WHERE [Code] = 'bji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vrt', 'Burmbar', NULL, 107.60) END +VALUES ('vrt', 'Burmbar', NULL, 1078.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burmbar', [Definition] = NULL, [SortOrder] = 107.60 WHERE [Code] = 'vrt' END +SET [Description] = 'Burmbar', [Definition] = NULL, [SortOrder] = 1078.00 WHERE [Code] = 'vrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mya', 'Burmese', NULL, 107.70) END +VALUES ('mya', 'Burmese', NULL, 1079.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burmese', [Definition] = NULL, [SortOrder] = 107.70 WHERE [Code] = 'mya' END +SET [Description] = 'Burmese', [Definition] = NULL, [SortOrder] = 1079.00 WHERE [Code] = 'mya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzu', 'Burmeso', NULL, 107.80) END +VALUES ('bzu', 'Burmeso', NULL, 1080.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burmeso', [Definition] = NULL, [SortOrder] = 107.80 WHERE [Code] = 'bzu' END +SET [Description] = 'Burmeso', [Definition] = NULL, [SortOrder] = 1080.00 WHERE [Code] = 'bzu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhs', 'Buru (Indonesia)', NULL, 107.90) END +VALUES ('mhs', 'Buru (Indonesia)', NULL, 1081.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buru (Indonesia)', [Definition] = NULL, [SortOrder] = 107.90 WHERE [Code] = 'mhs' END +SET [Description] = 'Buru (Indonesia)', [Definition] = NULL, [SortOrder] = 1081.00 WHERE [Code] = 'mhs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqw', 'Buru (Nigeria)', NULL, 108.00) END +VALUES ('bqw', 'Buru (Nigeria)', NULL, 1082.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buru (Nigeria)', [Definition] = NULL, [SortOrder] = 108.00 WHERE [Code] = 'bqw' END +SET [Description] = 'Buru (Nigeria)', [Definition] = NULL, [SortOrder] = 1082.00 WHERE [Code] = 'bqw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bry', 'Burui', NULL, 108.10) END +VALUES ('bry', 'Burui', NULL, 1083.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burui', [Definition] = NULL, [SortOrder] = 108.10 WHERE [Code] = 'bry' END +SET [Description] = 'Burui', [Definition] = NULL, [SortOrder] = 1083.00 WHERE [Code] = 'bry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aip', 'Burumakok', NULL, 108.20) END +VALUES ('aip', 'Burumakok', NULL, 1084.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burumakok', [Definition] = NULL, [SortOrder] = 108.20 WHERE [Code] = 'aip' END +SET [Description] = 'Burumakok', [Definition] = NULL, [SortOrder] = 1084.00 WHERE [Code] = 'aip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdi', 'Burun', NULL, 108.30) END +VALUES ('bdi', 'Burun', NULL, 1085.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burun', [Definition] = NULL, [SortOrder] = 108.30 WHERE [Code] = 'bdi' END +SET [Description] = 'Burun', [Definition] = NULL, [SortOrder] = 1085.00 WHERE [Code] = 'bdi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsb', 'Burundian Sign Language', NULL, 108.40) END +VALUES ('lsb', 'Burundian Sign Language', NULL, 1086.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burundian Sign Language', [Definition] = NULL, [SortOrder] = 108.40 WHERE [Code] = 'lsb' END +SET [Description] = 'Burundian Sign Language', [Definition] = NULL, [SortOrder] = 1086.00 WHERE [Code] = 'lsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bds', 'Burunge', NULL, 108.50) END +VALUES ('bds', 'Burunge', NULL, 1087.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burunge', [Definition] = NULL, [SortOrder] = 108.50 WHERE [Code] = 'bds' END +SET [Description] = 'Burunge', [Definition] = NULL, [SortOrder] = 1087.00 WHERE [Code] = 'bds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsk', 'Burushaski', NULL, 108.60) END +VALUES ('bsk', 'Burushaski', NULL, 1088.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burushaski', [Definition] = NULL, [SortOrder] = 108.60 WHERE [Code] = 'bsk' END +SET [Description] = 'Burushaski', [Definition] = NULL, [SortOrder] = 1088.00 WHERE [Code] = 'bsk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqr', 'Burusu', NULL, 108.70) END +VALUES ('bqr', 'Burusu', NULL, 1089.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burusu', [Definition] = NULL, [SortOrder] = 108.70 WHERE [Code] = 'bqr' END +SET [Description] = 'Burusu', [Definition] = NULL, [SortOrder] = 1089.00 WHERE [Code] = 'bqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asi', 'Buruwai', NULL, 108.80) END +VALUES ('asi', 'Buruwai', NULL, 1090.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buruwai', [Definition] = NULL, [SortOrder] = 108.80 WHERE [Code] = 'asi' END +SET [Description] = 'Buruwai', [Definition] = NULL, [SortOrder] = 1090.00 WHERE [Code] = 'asi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqp', 'Busa', NULL, 108.90) END +VALUES ('bqp', 'Busa', NULL, 1091.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busa', [Definition] = NULL, [SortOrder] = 108.90 WHERE [Code] = 'bqp' END +SET [Description] = 'Busa', [Definition] = NULL, [SortOrder] = 1091.00 WHERE [Code] = 'bqp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxs', 'Busam', NULL, 109.00) END +VALUES ('bxs', 'Busam', NULL, 1092.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busam', [Definition] = NULL, [SortOrder] = 109.00 WHERE [Code] = 'bxs' END +SET [Description] = 'Busam', [Definition] = NULL, [SortOrder] = 1092.00 WHERE [Code] = 'bxs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsm', 'Busami', NULL, 109.10) END +VALUES ('bsm', 'Busami', NULL, 1093.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busami', [Definition] = NULL, [SortOrder] = 109.10 WHERE [Code] = 'bsm' END +SET [Description] = 'Busami', [Definition] = NULL, [SortOrder] = 1093.00 WHERE [Code] = 'bsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfg', 'Busang Kayan', NULL, 109.20) END +VALUES ('bfg', 'Busang Kayan', NULL, 1094.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busang Kayan', [Definition] = NULL, [SortOrder] = 109.20 WHERE [Code] = 'bfg' END +SET [Description] = 'Busang Kayan', [Definition] = NULL, [SortOrder] = 1094.00 WHERE [Code] = 'bfg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buc', 'Bushi', NULL, 109.30) END +VALUES ('buc', 'Bushi', NULL, 1095.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bushi', [Definition] = NULL, [SortOrder] = 109.30 WHERE [Code] = 'buc' END +SET [Description] = 'Bushi', [Definition] = NULL, [SortOrder] = 1095.00 WHERE [Code] = 'buc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buf', 'Bushoong', NULL, 109.40) END +VALUES ('buf', 'Bushoong', NULL, 1096.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bushoong', [Definition] = NULL, [SortOrder] = 109.40 WHERE [Code] = 'buf' END +SET [Description] = 'Bushoong', [Definition] = NULL, [SortOrder] = 1096.00 WHERE [Code] = 'buf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bso', 'Buso', NULL, 109.50) END +VALUES ('bso', 'Buso', NULL, 1097.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buso', [Definition] = NULL, [SortOrder] = 109.50 WHERE [Code] = 'bso' END +SET [Description] = 'Buso', [Definition] = NULL, [SortOrder] = 1097.00 WHERE [Code] = 'bso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bup', 'Busoa', NULL, 109.60) END +VALUES ('bup', 'Busoa', NULL, 1098.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busoa', [Definition] = NULL, [SortOrder] = 109.60 WHERE [Code] = 'bup' END +SET [Description] = 'Busoa', [Definition] = NULL, [SortOrder] = 1098.00 WHERE [Code] = 'bup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dox', 'Bussa', NULL, 109.70) END +VALUES ('dox', 'Bussa', NULL, 1099.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bussa', [Definition] = NULL, [SortOrder] = 109.70 WHERE [Code] = 'dox' END +SET [Description] = 'Bussa', [Definition] = NULL, [SortOrder] = 1099.00 WHERE [Code] = 'dox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bju', 'Busuu', NULL, 109.80) END +VALUES ('bju', 'Busuu', NULL, 1100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busuu', [Definition] = NULL, [SortOrder] = 109.80 WHERE [Code] = 'bju' END +SET [Description] = 'Busuu', [Definition] = NULL, [SortOrder] = 1100.00 WHERE [Code] = 'bju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyb', 'Butbut Kalinga', NULL, 109.90) END +VALUES ('kyb', 'Butbut Kalinga', NULL, 1101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Butbut Kalinga', [Definition] = NULL, [SortOrder] = 109.90 WHERE [Code] = 'kyb' END +SET [Description] = 'Butbut Kalinga', [Definition] = NULL, [SortOrder] = 1101.00 WHERE [Code] = 'kyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnr', 'Butmas-Tur', NULL, 110.00) END +VALUES ('bnr', 'Butmas-Tur', NULL, 1102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Butmas-Tur', [Definition] = NULL, [SortOrder] = 110.00 WHERE [Code] = 'bnr' END +SET [Description] = 'Butmas-Tur', [Definition] = NULL, [SortOrder] = 1102.00 WHERE [Code] = 'bnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btw', 'Butuanon', NULL, 110.10) END +VALUES ('btw', 'Butuanon', NULL, 1103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Butuanon', [Definition] = NULL, [SortOrder] = 110.10 WHERE [Code] = 'btw' END +SET [Description] = 'Butuanon', [Definition] = NULL, [SortOrder] = 1103.00 WHERE [Code] = 'btw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhs', 'Buwal', NULL, 110.20) END +VALUES ('bhs', 'Buwal', NULL, 1104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buwal', [Definition] = NULL, [SortOrder] = 110.20 WHERE [Code] = 'bhs' END +SET [Description] = 'Buwal', [Definition] = NULL, [SortOrder] = 1104.00 WHERE [Code] = 'bhs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byi', 'Buyu', NULL, 110.30) END +VALUES ('byi', 'Buyu', NULL, 1105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buyu', [Definition] = NULL, [SortOrder] = 110.30 WHERE [Code] = 'byi' END +SET [Description] = 'Buyu', [Definition] = NULL, [SortOrder] = 1105.00 WHERE [Code] = 'byi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jiy', 'Buyuan Jinuo', NULL, 110.40) END +VALUES ('jiy', 'Buyuan Jinuo', NULL, 1106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buyuan Jinuo', [Definition] = NULL, [SortOrder] = 110.40 WHERE [Code] = 'jiy' END +SET [Description] = 'Buyuan Jinuo', [Definition] = NULL, [SortOrder] = 1106.00 WHERE [Code] = 'jiy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bww', 'Bwa', NULL, 110.50) END +VALUES ('bww', 'Bwa', NULL, 1107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwa', [Definition] = NULL, [SortOrder] = 110.50 WHERE [Code] = 'bww' END +SET [Description] = 'Bwa', [Definition] = NULL, [SortOrder] = 1107.00 WHERE [Code] = 'bww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwd', 'Bwaidoka', NULL, 110.60) END +VALUES ('bwd', 'Bwaidoka', NULL, 1108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwaidoka', [Definition] = NULL, [SortOrder] = 110.60 WHERE [Code] = 'bwd' END +SET [Description] = 'Bwaidoka', [Definition] = NULL, [SortOrder] = 1108.00 WHERE [Code] = 'bwd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tte', 'Bwanabwana', NULL, 110.70) END +VALUES ('tte', 'Bwanabwana', NULL, 1109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwanabwana', [Definition] = NULL, [SortOrder] = 110.70 WHERE [Code] = 'tte' END +SET [Description] = 'Bwanabwana', [Definition] = NULL, [SortOrder] = 1109.00 WHERE [Code] = 'tte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwa', 'Bwatoo', NULL, 110.80) END +VALUES ('bwa', 'Bwatoo', NULL, 1110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwatoo', [Definition] = NULL, [SortOrder] = 110.80 WHERE [Code] = 'bwa' END +SET [Description] = 'Bwatoo', [Definition] = NULL, [SortOrder] = 1110.00 WHERE [Code] = 'bwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwe', 'Bwe Karen', NULL, 110.90) END +VALUES ('bwe', 'Bwe Karen', NULL, 1111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwe Karen', [Definition] = NULL, [SortOrder] = 110.90 WHERE [Code] = 'bwe' END +SET [Description] = 'Bwe Karen', [Definition] = NULL, [SortOrder] = 1111.00 WHERE [Code] = 'bwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwl', 'Bwela', NULL, 111.00) END +VALUES ('bwl', 'Bwela', NULL, 1112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwela', [Definition] = NULL, [SortOrder] = 111.00 WHERE [Code] = 'bwl' END +SET [Description] = 'Bwela', [Definition] = NULL, [SortOrder] = 1112.00 WHERE [Code] = 'bwl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwc', 'Bwile', NULL, 111.10) END +VALUES ('bwc', 'Bwile', NULL, 1113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwile', [Definition] = NULL, [SortOrder] = 111.10 WHERE [Code] = 'bwc' END +SET [Description] = 'Bwile', [Definition] = NULL, [SortOrder] = 1113.00 WHERE [Code] = 'bwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwz', 'Bwisi', NULL, 111.20) END +VALUES ('bwz', 'Bwisi', NULL, 1114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwisi', [Definition] = NULL, [SortOrder] = 111.20 WHERE [Code] = 'bwz' END +SET [Description] = 'Bwisi', [Definition] = NULL, [SortOrder] = 1114.00 WHERE [Code] = 'bwz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bee', 'Byangsi', NULL, 111.30) END +VALUES ('bee', 'Byangsi', NULL, 1115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Byangsi', [Definition] = NULL, [SortOrder] = 111.30 WHERE [Code] = 'bee' END +SET [Description] = 'Byangsi', [Definition] = NULL, [SortOrder] = 1115.00 WHERE [Code] = 'bee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkk', 'Byep', NULL, 111.40) END +VALUES ('mkk', 'Byep', NULL, 1116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Byep', [Definition] = NULL, [SortOrder] = 111.40 WHERE [Code] = 'mkk' END +SET [Description] = 'Byep', [Definition] = NULL, [SortOrder] = 1116.00 WHERE [Code] = 'mkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dri', 'C''lela', NULL, 111.50) END +VALUES ('dri', 'C''lela', NULL, 1117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'C''lela', [Definition] = NULL, [SortOrder] = 111.50 WHERE [Code] = 'dri' END +SET [Description] = 'C''lela', [Definition] = NULL, [SortOrder] = 1117.00 WHERE [Code] = 'dri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msq', 'Caac', NULL, 111.60) END +VALUES ('msq', 'Caac', NULL, 1118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caac', [Definition] = NULL, [SortOrder] = 111.60 WHERE [Code] = 'msq' END +SET [Description] = 'Caac', [Definition] = NULL, [SortOrder] = 1118.00 WHERE [Code] = 'msq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjp', 'Cabécar', NULL, 111.70) END +VALUES ('cjp', 'Cabécar', NULL, 1119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cabécar', [Definition] = NULL, [SortOrder] = 111.70 WHERE [Code] = 'cjp' END +SET [Description] = 'Cabécar', [Definition] = NULL, [SortOrder] = 1119.00 WHERE [Code] = 'cjp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbb', 'Cabiyarí', NULL, 111.80) END +VALUES ('cbb', 'Cabiyarí', NULL, 1120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cabiyarí', [Definition] = NULL, [SortOrder] = 111.80 WHERE [Code] = 'cbb' END +SET [Description] = 'Cabiyarí', [Definition] = NULL, [SortOrder] = 1120.00 WHERE [Code] = 'cbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miu', 'Cacaloxtepec Mixtec', NULL, 111.90) END +VALUES ('miu', 'Cacaloxtepec Mixtec', NULL, 1121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cacaloxtepec Mixtec', [Definition] = NULL, [SortOrder] = 111.90 WHERE [Code] = 'miu' END +SET [Description] = 'Cacaloxtepec Mixtec', [Definition] = NULL, [SortOrder] = 1121.00 WHERE [Code] = 'miu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccr', 'Cacaopera', NULL, 112.00) END +VALUES ('ccr', 'Cacaopera', NULL, 1122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cacaopera', [Definition] = NULL, [SortOrder] = 112.00 WHERE [Code] = 'ccr' END +SET [Description] = 'Cacaopera', [Definition] = NULL, [SortOrder] = 1122.00 WHERE [Code] = 'ccr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'roc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roc', 'Cacgia Roglai', NULL, 112.10) END +VALUES ('roc', 'Cacgia Roglai', NULL, 1123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cacgia Roglai', [Definition] = NULL, [SortOrder] = 112.10 WHERE [Code] = 'roc' END +SET [Description] = 'Cacgia Roglai', [Definition] = NULL, [SortOrder] = 1123.00 WHERE [Code] = 'roc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbv', 'Cacua', NULL, 112.20) END +VALUES ('cbv', 'Cacua', NULL, 1124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cacua', [Definition] = NULL, [SortOrder] = 112.20 WHERE [Code] = 'cbv' END +SET [Description] = 'Cacua', [Definition] = NULL, [SortOrder] = 1124.00 WHERE [Code] = 'cbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cad', 'Caddo', NULL, 112.30) END +VALUES ('cad', 'Caddo', NULL, 1125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caddo', [Definition] = NULL, [SortOrder] = 112.30 WHERE [Code] = 'cad' END +SET [Description] = 'Caddo', [Definition] = NULL, [SortOrder] = 1125.00 WHERE [Code] = 'cad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccd', 'Cafundo Creole', NULL, 112.40) END +VALUES ('ccd', 'Cafundo Creole', NULL, 1126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cafundo Creole', [Definition] = NULL, [SortOrder] = 112.40 WHERE [Code] = 'ccd' END +SET [Description] = 'Cafundo Creole', [Definition] = NULL, [SortOrder] = 1126.00 WHERE [Code] = 'ccd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cah', 'Cahuarano', NULL, 112.50) END +VALUES ('cah', 'Cahuarano', NULL, 1127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cahuarano', [Definition] = NULL, [SortOrder] = 112.50 WHERE [Code] = 'cah' END +SET [Description] = 'Cahuarano', [Definition] = NULL, [SortOrder] = 1127.00 WHERE [Code] = 'cah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chl', 'Cahuilla', NULL, 112.60) END +VALUES ('chl', 'Cahuilla', NULL, 1128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cahuilla', [Definition] = NULL, [SortOrder] = 112.60 WHERE [Code] = 'chl' END +SET [Description] = 'Cahuilla', [Definition] = NULL, [SortOrder] = 1128.00 WHERE [Code] = 'chl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nat', 'Cahungwarya', NULL, 112.70) END +VALUES ('nat', 'Cahungwarya', NULL, 1129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cahungwarya', [Definition] = NULL, [SortOrder] = 112.70 WHERE [Code] = 'nat' END +SET [Description] = 'Cahungwarya', [Definition] = NULL, [SortOrder] = 1129.00 WHERE [Code] = 'nat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvc', 'Cajamarca Quechua', NULL, 112.80) END +VALUES ('qvc', 'Cajamarca Quechua', NULL, 1130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cajamarca Quechua', [Definition] = NULL, [SortOrder] = 112.80 WHERE [Code] = 'qvc' END +SET [Description] = 'Cajamarca Quechua', [Definition] = NULL, [SortOrder] = 1130.00 WHERE [Code] = 'qvc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvl', 'Cajatambo North Lima Quechua', NULL, 112.90) END +VALUES ('qvl', 'Cajatambo North Lima Quechua', NULL, 1131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cajatambo North Lima Quechua', [Definition] = NULL, [SortOrder] = 112.90 WHERE [Code] = 'qvl' END +SET [Description] = 'Cajatambo North Lima Quechua', [Definition] = NULL, [SortOrder] = 1131.00 WHERE [Code] = 'qvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zad', 'Cajonos Zapotec', NULL, 113.00) END +VALUES ('zad', 'Cajonos Zapotec', NULL, 1132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cajonos Zapotec', [Definition] = NULL, [SortOrder] = 113.00 WHERE [Code] = 'zad' END +SET [Description] = 'Cajonos Zapotec', [Definition] = NULL, [SortOrder] = 1132.00 WHERE [Code] = 'zad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frc', 'Cajun French', NULL, 113.10) END +VALUES ('frc', 'Cajun French', NULL, 1133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cajun French', [Definition] = NULL, [SortOrder] = 113.10 WHERE [Code] = 'frc' END +SET [Description] = 'Cajun French', [Definition] = NULL, [SortOrder] = 1133.00 WHERE [Code] = 'frc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckx', 'Caka', NULL, 113.20) END +VALUES ('ckx', 'Caka', NULL, 1134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caka', [Definition] = NULL, [SortOrder] = 113.20 WHERE [Code] = 'ckx' END +SET [Description] = 'Caka', [Definition] = NULL, [SortOrder] = 1134.00 WHERE [Code] = 'ckx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckz', 'Cakchiquel-Quiché Mixed Language', NULL, 113.30) END +VALUES ('ckz', 'Cakchiquel-Quiché Mixed Language', NULL, 1135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cakchiquel-Quiché Mixed Language', [Definition] = NULL, [SortOrder] = 113.30 WHERE [Code] = 'ckz' END +SET [Description] = 'Cakchiquel-Quiché Mixed Language', [Definition] = NULL, [SortOrder] = 1135.00 WHERE [Code] = 'ckz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cky', 'Cakfem-Mushere', NULL, 113.40) END +VALUES ('cky', 'Cakfem-Mushere', NULL, 1136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cakfem-Mushere', [Definition] = NULL, [SortOrder] = 113.40 WHERE [Code] = 'cky' END +SET [Description] = 'Cakfem-Mushere', [Definition] = NULL, [SortOrder] = 1136.00 WHERE [Code] = 'cky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbk', 'Calamian Tagbanwa', NULL, 113.50) END +VALUES ('tbk', 'Calamian Tagbanwa', NULL, 1137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Calamian Tagbanwa', [Definition] = NULL, [SortOrder] = 113.50 WHERE [Code] = 'tbk' END +SET [Description] = 'Calamian Tagbanwa', [Definition] = NULL, [SortOrder] = 1137.00 WHERE [Code] = 'tbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qud', 'Calderón Highland Quichua', NULL, 113.60) END +VALUES ('qud', 'Calderón Highland Quichua', NULL, 1138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Calderón Highland Quichua', [Definition] = NULL, [SortOrder] = 113.60 WHERE [Code] = 'qud' END +SET [Description] = 'Calderón Highland Quichua', [Definition] = NULL, [SortOrder] = 1138.00 WHERE [Code] = 'qud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caw', 'Callawalla', NULL, 113.70) END +VALUES ('caw', 'Callawalla', NULL, 1139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Callawalla', [Definition] = NULL, [SortOrder] = 113.70 WHERE [Code] = 'caw' END +SET [Description] = 'Callawalla', [Definition] = NULL, [SortOrder] = 1139.00 WHERE [Code] = 'caw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmq', 'Caló', NULL, 113.80) END +VALUES ('rmq', 'Caló', NULL, 1140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caló', [Definition] = NULL, [SortOrder] = 113.80 WHERE [Code] = 'rmq' END +SET [Description] = 'Caló', [Definition] = NULL, [SortOrder] = 1140.00 WHERE [Code] = 'rmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clu', 'Caluyanun', NULL, 113.90) END +VALUES ('clu', 'Caluyanun', NULL, 1141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caluyanun', [Definition] = NULL, [SortOrder] = 113.90 WHERE [Code] = 'clu' END +SET [Description] = 'Caluyanun', [Definition] = NULL, [SortOrder] = 1141.00 WHERE [Code] = 'clu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csx', 'Cambodian Sign Language', NULL, 114.00) END +VALUES ('csx', 'Cambodian Sign Language', NULL, 1142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cambodian Sign Language', [Definition] = NULL, [SortOrder] = 114.00 WHERE [Code] = 'csx' END +SET [Description] = 'Cambodian Sign Language', [Definition] = NULL, [SortOrder] = 1142.00 WHERE [Code] = 'csx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcu', 'Cameroon Mambila', NULL, 114.10) END +VALUES ('mcu', 'Cameroon Mambila', NULL, 1143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cameroon Mambila', [Definition] = NULL, [SortOrder] = 114.10 WHERE [Code] = 'mcu' END +SET [Description] = 'Cameroon Mambila', [Definition] = NULL, [SortOrder] = 1143.00 WHERE [Code] = 'mcu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wes', 'Cameroon Pidgin', NULL, 114.20) END +VALUES ('wes', 'Cameroon Pidgin', NULL, 1144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cameroon Pidgin', [Definition] = NULL, [SortOrder] = 114.20 WHERE [Code] = 'wes' END +SET [Description] = 'Cameroon Pidgin', [Definition] = NULL, [SortOrder] = 1144.00 WHERE [Code] = 'wes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rab', 'Camling', NULL, 114.30) END +VALUES ('rab', 'Camling', NULL, 1145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Camling', [Definition] = NULL, [SortOrder] = 114.30 WHERE [Code] = 'rab' END +SET [Description] = 'Camling', [Definition] = NULL, [SortOrder] = 1145.00 WHERE [Code] = 'rab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cml', 'Campalagian', NULL, 114.40) END +VALUES ('cml', 'Campalagian', NULL, 1146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Campalagian', [Definition] = NULL, [SortOrder] = 114.40 WHERE [Code] = 'cml' END +SET [Description] = 'Campalagian', [Definition] = NULL, [SortOrder] = 1146.00 WHERE [Code] = 'cml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sro', 'Campidanese Sardinian', NULL, 114.50) END +VALUES ('sro', 'Campidanese Sardinian', NULL, 1147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Campidanese Sardinian', [Definition] = NULL, [SortOrder] = 114.50 WHERE [Code] = 'sro' END +SET [Description] = 'Campidanese Sardinian', [Definition] = NULL, [SortOrder] = 1147.00 WHERE [Code] = 'sro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbh', 'Camsá', NULL, 114.60) END +VALUES ('kbh', 'Camsá', NULL, 1148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Camsá', [Definition] = NULL, [SortOrder] = 114.60 WHERE [Code] = 'kbh' END +SET [Description] = 'Camsá', [Definition] = NULL, [SortOrder] = 1148.00 WHERE [Code] = 'kbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmt', 'Camtho', NULL, 114.70) END +VALUES ('cmt', 'Camtho', NULL, 1149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Camtho', [Definition] = NULL, [SortOrder] = 114.70 WHERE [Code] = 'cmt' END +SET [Description] = 'Camtho', [Definition] = NULL, [SortOrder] = 1149.00 WHERE [Code] = 'cmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcc', 'Camunic', NULL, 114.80) END +VALUES ('xcc', 'Camunic', NULL, 1150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Camunic', [Definition] = NULL, [SortOrder] = 114.80 WHERE [Code] = 'xcc' END +SET [Description] = 'Camunic', [Definition] = NULL, [SortOrder] = 1150.00 WHERE [Code] = 'xcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxr', 'Cañar Highland Quichua', NULL, 114.90) END +VALUES ('qxr', 'Cañar Highland Quichua', NULL, 1151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cañar Highland Quichua', [Definition] = NULL, [SortOrder] = 114.90 WHERE [Code] = 'qxr' END +SET [Description] = 'Cañar Highland Quichua', [Definition] = NULL, [SortOrder] = 1151.00 WHERE [Code] = 'qxr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbu', 'Candoshi-Shapra', NULL, 115.00) END +VALUES ('cbu', 'Candoshi-Shapra', NULL, 1152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Candoshi-Shapra', [Definition] = NULL, [SortOrder] = 115.00 WHERE [Code] = 'cbu' END +SET [Description] = 'Candoshi-Shapra', [Definition] = NULL, [SortOrder] = 1152.00 WHERE [Code] = 'cbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ram') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ram', 'Canela', NULL, 115.10) END +VALUES ('ram', 'Canela', NULL, 1153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Canela', [Definition] = NULL, [SortOrder] = 115.10 WHERE [Code] = 'ram' END +SET [Description] = 'Canela', [Definition] = NULL, [SortOrder] = 1153.00 WHERE [Code] = 'ram' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caz', 'Canichana', NULL, 115.20) END +VALUES ('caz', 'Canichana', NULL, 1154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Canichana', [Definition] = NULL, [SortOrder] = 115.20 WHERE [Code] = 'caz' END +SET [Description] = 'Canichana', [Definition] = NULL, [SortOrder] = 1154.00 WHERE [Code] = 'caz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlc', 'Cao Lan', NULL, 115.30) END +VALUES ('mlc', 'Cao Lan', NULL, 1155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cao Lan', [Definition] = NULL, [SortOrder] = 115.30 WHERE [Code] = 'mlc' END +SET [Description] = 'Cao Lan', [Definition] = NULL, [SortOrder] = 1155.00 WHERE [Code] = 'mlc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cov', 'Cao Miao', NULL, 115.40) END +VALUES ('cov', 'Cao Miao', NULL, 1156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cao Miao', [Definition] = NULL, [SortOrder] = 115.40 WHERE [Code] = 'cov' END +SET [Description] = 'Cao Miao', [Definition] = NULL, [SortOrder] = 1156.00 WHERE [Code] = 'cov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaq', 'Capanahua', NULL, 115.50) END +VALUES ('kaq', 'Capanahua', NULL, 1157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Capanahua', [Definition] = NULL, [SortOrder] = 115.50 WHERE [Code] = 'kaq' END +SET [Description] = 'Capanahua', [Definition] = NULL, [SortOrder] = 1157.00 WHERE [Code] = 'kaq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cps', 'Capiznon', NULL, 115.60) END +VALUES ('cps', 'Capiznon', NULL, 1158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Capiznon', [Definition] = NULL, [SortOrder] = 115.60 WHERE [Code] = 'cps' END +SET [Description] = 'Capiznon', [Definition] = NULL, [SortOrder] = 1158.00 WHERE [Code] = 'cps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpg', 'Cappadocian Greek', NULL, 115.70) END +VALUES ('cpg', 'Cappadocian Greek', NULL, 1159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cappadocian Greek', [Definition] = NULL, [SortOrder] = 115.70 WHERE [Code] = 'cpg' END +SET [Description] = 'Cappadocian Greek', [Definition] = NULL, [SortOrder] = 1159.00 WHERE [Code] = 'cpg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cot', 'Caquinte', NULL, 115.80) END +VALUES ('cot', 'Caquinte', NULL, 1160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caquinte', [Definition] = NULL, [SortOrder] = 115.80 WHERE [Code] = 'cot' END +SET [Description] = 'Caquinte', [Definition] = NULL, [SortOrder] = 1160.00 WHERE [Code] = 'cot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caq', 'Car Nicobarese', NULL, 115.90) END +VALUES ('caq', 'Car Nicobarese', NULL, 1161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Car Nicobarese', [Definition] = NULL, [SortOrder] = 115.90 WHERE [Code] = 'caq' END +SET [Description] = 'Car Nicobarese', [Definition] = NULL, [SortOrder] = 1161.00 WHERE [Code] = 'caq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cfd', 'Cara', NULL, 116.00) END +VALUES ('cfd', 'Cara', NULL, 1162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cara', [Definition] = NULL, [SortOrder] = 116.00 WHERE [Code] = 'cfd' END +SET [Description] = 'Cara', [Definition] = NULL, [SortOrder] = 1162.00 WHERE [Code] = 'cfd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cby', 'Carabayo', NULL, 116.10) END +VALUES ('cby', 'Carabayo', NULL, 1163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carabayo', [Definition] = NULL, [SortOrder] = 116.10 WHERE [Code] = 'cby' END +SET [Description] = 'Carabayo', [Definition] = NULL, [SortOrder] = 1163.00 WHERE [Code] = 'cby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crf', 'Caramanta', NULL, 116.20) END +VALUES ('crf', 'Caramanta', NULL, 1164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caramanta', [Definition] = NULL, [SortOrder] = 116.20 WHERE [Code] = 'crf' END +SET [Description] = 'Caramanta', [Definition] = NULL, [SortOrder] = 1164.00 WHERE [Code] = 'crf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbc', 'Carapana', NULL, 116.30) END +VALUES ('cbc', 'Carapana', NULL, 1165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carapana', [Definition] = NULL, [SortOrder] = 116.30 WHERE [Code] = 'cbc' END +SET [Description] = 'Carapana', [Definition] = NULL, [SortOrder] = 1165.00 WHERE [Code] = 'cbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcr', 'Carian', NULL, 116.40) END +VALUES ('xcr', 'Carian', NULL, 1166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carian', [Definition] = NULL, [SortOrder] = 116.40 WHERE [Code] = 'xcr' END +SET [Description] = 'Carian', [Definition] = NULL, [SortOrder] = 1166.00 WHERE [Code] = 'xcr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hns', 'Caribbean Hindustani', NULL, 116.50) END +VALUES ('hns', 'Caribbean Hindustani', NULL, 1167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caribbean Hindustani', [Definition] = NULL, [SortOrder] = 116.50 WHERE [Code] = 'hns' END +SET [Description] = 'Caribbean Hindustani', [Definition] = NULL, [SortOrder] = 1167.00 WHERE [Code] = 'hns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jvn', 'Caribbean Javanese', NULL, 116.60) END +VALUES ('jvn', 'Caribbean Javanese', NULL, 1168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caribbean Javanese', [Definition] = NULL, [SortOrder] = 116.60 WHERE [Code] = 'jvn' END +SET [Description] = 'Caribbean Javanese', [Definition] = NULL, [SortOrder] = 1168.00 WHERE [Code] = 'jvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbd', 'Carijona', NULL, 116.70) END +VALUES ('cbd', 'Carijona', NULL, 1169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carijona', [Definition] = NULL, [SortOrder] = 116.70 WHERE [Code] = 'cbd' END +SET [Description] = 'Carijona', [Definition] = NULL, [SortOrder] = 1169.00 WHERE [Code] = 'cbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crr', 'Carolina Algonquian', NULL, 116.80) END +VALUES ('crr', 'Carolina Algonquian', NULL, 1170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carolina Algonquian', [Definition] = NULL, [SortOrder] = 116.80 WHERE [Code] = 'crr' END +SET [Description] = 'Carolina Algonquian', [Definition] = NULL, [SortOrder] = 1170.00 WHERE [Code] = 'crr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cal', 'Carolinian', NULL, 116.90) END +VALUES ('cal', 'Carolinian', NULL, 1171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carolinian', [Definition] = NULL, [SortOrder] = 116.90 WHERE [Code] = 'cal' END +SET [Description] = 'Carolinian', [Definition] = NULL, [SortOrder] = 1171.00 WHERE [Code] = 'cal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmc', 'Carpathian Romani', NULL, 117.00) END +VALUES ('rmc', 'Carpathian Romani', NULL, 1172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carpathian Romani', [Definition] = NULL, [SortOrder] = 117.00 WHERE [Code] = 'rmc' END +SET [Description] = 'Carpathian Romani', [Definition] = NULL, [SortOrder] = 1172.00 WHERE [Code] = 'rmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crx', 'Carrier', NULL, 117.10) END +VALUES ('crx', 'Carrier', NULL, 1173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carrier', [Definition] = NULL, [SortOrder] = 117.10 WHERE [Code] = 'crx' END +SET [Description] = 'Carrier', [Definition] = NULL, [SortOrder] = 1173.00 WHERE [Code] = 'crx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbr', 'Cashibo-Cacataibo', NULL, 117.20) END +VALUES ('cbr', 'Cashibo-Cacataibo', NULL, 1174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cashibo-Cacataibo', [Definition] = NULL, [SortOrder] = 117.20 WHERE [Code] = 'cbr' END +SET [Description] = 'Cashibo-Cacataibo', [Definition] = NULL, [SortOrder] = 1174.00 WHERE [Code] = 'cbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbs', 'Cashinahua', NULL, 117.30) END +VALUES ('cbs', 'Cashinahua', NULL, 1175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cashinahua', [Definition] = NULL, [SortOrder] = 117.30 WHERE [Code] = 'cbs' END +SET [Description] = 'Cashinahua', [Definition] = NULL, [SortOrder] = 1175.00 WHERE [Code] = 'cbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgc', 'Casiguran Dumagat Agta', NULL, 117.40) END +VALUES ('dgc', 'Casiguran Dumagat Agta', NULL, 1176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Casiguran Dumagat Agta', [Definition] = NULL, [SortOrder] = 117.40 WHERE [Code] = 'dgc' END +SET [Description] = 'Casiguran Dumagat Agta', [Definition] = NULL, [SortOrder] = 1176.00 WHERE [Code] = 'dgc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asc', 'Casuarina Coast Asmat', NULL, 117.50) END +VALUES ('asc', 'Casuarina Coast Asmat', NULL, 1177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Casuarina Coast Asmat', [Definition] = NULL, [SortOrder] = 117.50 WHERE [Code] = 'asc' END +SET [Description] = 'Casuarina Coast Asmat', [Definition] = NULL, [SortOrder] = 1177.00 WHERE [Code] = 'asc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cat', 'Catalan', NULL, 117.60) END +VALUES ('cat', 'Catalan', NULL, 1178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Catalan', [Definition] = NULL, [SortOrder] = 117.60 WHERE [Code] = 'cat' END +SET [Description] = 'Catalan', [Definition] = NULL, [SortOrder] = 1178.00 WHERE [Code] = 'cat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csc', 'Catalan Sign Language', NULL, 117.70) END +VALUES ('csc', 'Catalan Sign Language', NULL, 1179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Catalan Sign Language', [Definition] = NULL, [SortOrder] = 117.70 WHERE [Code] = 'csc' END +SET [Description] = 'Catalan Sign Language', [Definition] = NULL, [SortOrder] = 1179.00 WHERE [Code] = 'csc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chc', 'Catawba', NULL, 117.80) END +VALUES ('chc', 'Catawba', NULL, 1180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Catawba', [Definition] = NULL, [SortOrder] = 117.80 WHERE [Code] = 'chc' END +SET [Description] = 'Catawba', [Definition] = NULL, [SortOrder] = 1180.00 WHERE [Code] = 'chc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cav', 'Cavineña', NULL, 117.90) END +VALUES ('cav', 'Cavineña', NULL, 1181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cavineña', [Definition] = NULL, [SortOrder] = 117.90 WHERE [Code] = 'cav' END +SET [Description] = 'Cavineña', [Definition] = NULL, [SortOrder] = 1181.00 WHERE [Code] = 'cav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cyb', 'Cayubaba', NULL, 118.00) END +VALUES ('cyb', 'Cayubaba', NULL, 1182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cayubaba', [Definition] = NULL, [SortOrder] = 118.00 WHERE [Code] = 'cyb' END +SET [Description] = 'Cayubaba', [Definition] = NULL, [SortOrder] = 1182.00 WHERE [Code] = 'cyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cay', 'Cayuga', NULL, 118.10) END +VALUES ('cay', 'Cayuga', NULL, 1183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cayuga', [Definition] = NULL, [SortOrder] = 118.10 WHERE [Code] = 'cay' END +SET [Description] = 'Cayuga', [Definition] = NULL, [SortOrder] = 1183.00 WHERE [Code] = 'cay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcy', 'Cayuse', NULL, 118.20) END +VALUES ('xcy', 'Cayuse', NULL, 1184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cayuse', [Definition] = NULL, [SortOrder] = 118.20 WHERE [Code] = 'xcy' END +SET [Description] = 'Cayuse', [Definition] = NULL, [SortOrder] = 1184.00 WHERE [Code] = 'xcy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sef', 'Cebaara Senoufo', NULL, 118.30) END +VALUES ('sef', 'Cebaara Senoufo', NULL, 1185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cebaara Senoufo', [Definition] = NULL, [SortOrder] = 118.30 WHERE [Code] = 'sef' END +SET [Description] = 'Cebaara Senoufo', [Definition] = NULL, [SortOrder] = 1185.00 WHERE [Code] = 'sef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ceb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ceb', 'Cebuano', NULL, 118.40) END +VALUES ('ceb', 'Cebuano', NULL, 1186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cebuano', [Definition] = NULL, [SortOrder] = 118.40 WHERE [Code] = 'ceb' END +SET [Description] = 'Cebuano', [Definition] = NULL, [SortOrder] = 1186.00 WHERE [Code] = 'ceb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xce', 'Celtiberian', NULL, 118.50) END +VALUES ('xce', 'Celtiberian', NULL, 1187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Celtiberian', [Definition] = NULL, [SortOrder] = 118.50 WHERE [Code] = 'xce' END +SET [Description] = 'Celtiberian', [Definition] = NULL, [SortOrder] = 1187.00 WHERE [Code] = 'xce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cam', 'Cemuhî', NULL, 118.60) END +VALUES ('cam', 'Cemuhî', NULL, 1188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cemuhî', [Definition] = NULL, [SortOrder] = 118.60 WHERE [Code] = 'cam' END +SET [Description] = 'Cemuhî', [Definition] = NULL, [SortOrder] = 1188.00 WHERE [Code] = 'cam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cen', 'Cen', NULL, 118.70) END +VALUES ('cen', 'Cen', NULL, 1189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cen', [Definition] = NULL, [SortOrder] = 118.70 WHERE [Code] = 'cen' END +SET [Description] = 'Cen', [Definition] = NULL, [SortOrder] = 1189.00 WHERE [Code] = 'cen' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cns', 'Central Asmat', NULL, 118.80) END +VALUES ('cns', 'Central Asmat', NULL, 1190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Asmat', [Definition] = NULL, [SortOrder] = 118.80 WHERE [Code] = 'cns' END +SET [Description] = 'Central Asmat', [Definition] = NULL, [SortOrder] = 1190.00 WHERE [Code] = 'cns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzm', 'Central Atlas Tamazight', NULL, 118.90) END +VALUES ('tzm', 'Central Atlas Tamazight', NULL, 1191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Atlas Tamazight', [Definition] = NULL, [SortOrder] = 118.90 WHERE [Code] = 'tzm' END +SET [Description] = 'Central Atlas Tamazight', [Definition] = NULL, [SortOrder] = 1191.00 WHERE [Code] = 'tzm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awu', 'Central Awyu', NULL, 119.00) END +VALUES ('awu', 'Central Awyu', NULL, 1192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Awyu', [Definition] = NULL, [SortOrder] = 119.00 WHERE [Code] = 'awu' END +SET [Description] = 'Central Awyu', [Definition] = NULL, [SortOrder] = 1192.00 WHERE [Code] = 'awu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayr', 'Central Aymara', NULL, 119.10) END +VALUES ('ayr', 'Central Aymara', NULL, 1193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Aymara', [Definition] = NULL, [SortOrder] = 119.10 WHERE [Code] = 'ayr' END +SET [Description] = 'Central Aymara', [Definition] = NULL, [SortOrder] = 1193.00 WHERE [Code] = 'ayr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bca', 'Central Bai', NULL, 119.20) END +VALUES ('bca', 'Central Bai', NULL, 1194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Bai', [Definition] = NULL, [SortOrder] = 119.20 WHERE [Code] = 'bca' END +SET [Description] = 'Central Bai', [Definition] = NULL, [SortOrder] = 1194.00 WHERE [Code] = 'bca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbc', 'Central Berawan', NULL, 119.30) END +VALUES ('zbc', 'Central Berawan', NULL, 1195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Berawan', [Definition] = NULL, [SortOrder] = 119.30 WHERE [Code] = 'zbc' END +SET [Description] = 'Central Berawan', [Definition] = NULL, [SortOrder] = 1195.00 WHERE [Code] = 'zbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcl', 'Central Bikol', NULL, 119.40) END +VALUES ('bcl', 'Central Bikol', NULL, 1196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Bikol', [Definition] = NULL, [SortOrder] = 119.40 WHERE [Code] = 'bcl' END +SET [Description] = 'Central Bikol', [Definition] = NULL, [SortOrder] = 1196.00 WHERE [Code] = 'bcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbk', 'Central Bontok', NULL, 119.50) END +VALUES ('lbk', 'Central Bontok', NULL, 1197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Bontok', [Definition] = NULL, [SortOrder] = 119.50 WHERE [Code] = 'lbk' END +SET [Description] = 'Central Bontok', [Definition] = NULL, [SortOrder] = 1197.00 WHERE [Code] = 'lbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agt', 'Central Cagayan Agta', NULL, 119.60) END +VALUES ('agt', 'Central Cagayan Agta', NULL, 1198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Cagayan Agta', [Definition] = NULL, [SortOrder] = 119.60 WHERE [Code] = 'agt' END +SET [Description] = 'Central Cagayan Agta', [Definition] = NULL, [SortOrder] = 1198.00 WHERE [Code] = 'agt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grv', 'Central Grebo', NULL, 119.70) END +VALUES ('grv', 'Central Grebo', NULL, 1199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Grebo', [Definition] = NULL, [SortOrder] = 119.70 WHERE [Code] = 'grv' END +SET [Description] = 'Central Grebo', [Definition] = NULL, [SortOrder] = 1199.00 WHERE [Code] = 'grv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zch', 'Central Hongshuihe Zhuang', NULL, 119.80) END +VALUES ('zch', 'Central Hongshuihe Zhuang', NULL, 1200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Hongshuihe Zhuang', [Definition] = NULL, [SortOrder] = 119.80 WHERE [Code] = 'zch' END +SET [Description] = 'Central Hongshuihe Zhuang', [Definition] = NULL, [SortOrder] = 1200.00 WHERE [Code] = 'zch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nch', 'Central Huasteca Nahuatl', NULL, 119.90) END +VALUES ('nch', 'Central Huasteca Nahuatl', NULL, 1201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 119.90 WHERE [Code] = 'nch' END +SET [Description] = 'Central Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 1201.00 WHERE [Code] = 'nch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmc', 'Central Huishui Hmong', NULL, 120.00) END +VALUES ('hmc', 'Central Huishui Hmong', NULL, 1202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Huishui Hmong', [Definition] = NULL, [SortOrder] = 120.00 WHERE [Code] = 'hmc' END +SET [Description] = 'Central Huishui Hmong', [Definition] = NULL, [SortOrder] = 1202.00 WHERE [Code] = 'hmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knc', 'Central Kanuri', NULL, 120.10) END +VALUES ('knc', 'Central Kanuri', NULL, 1203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Kanuri', [Definition] = NULL, [SortOrder] = 120.10 WHERE [Code] = 'knc' END +SET [Description] = 'Central Kanuri', [Definition] = NULL, [SortOrder] = 1203.00 WHERE [Code] = 'knc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckb', 'Central Kurdish', NULL, 120.20) END +VALUES ('ckb', 'Central Kurdish', NULL, 1204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Kurdish', [Definition] = NULL, [SortOrder] = 120.20 WHERE [Code] = 'ckb' END +SET [Description] = 'Central Kurdish', [Definition] = NULL, [SortOrder] = 1204.00 WHERE [Code] = 'ckb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwo', 'Central Maewo', NULL, 120.30) END +VALUES ('mwo', 'Central Maewo', NULL, 1205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Maewo', [Definition] = NULL, [SortOrder] = 120.30 WHERE [Code] = 'mwo' END +SET [Description] = 'Central Maewo', [Definition] = NULL, [SortOrder] = 1205.00 WHERE [Code] = 'mwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pse', 'Central Malay', NULL, 120.40) END +VALUES ('pse', 'Central Malay', NULL, 1206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Malay', [Definition] = NULL, [SortOrder] = 120.40 WHERE [Code] = 'pse' END +SET [Description] = 'Central Malay', [Definition] = NULL, [SortOrder] = 1206.00 WHERE [Code] = 'pse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxz', 'Central Masela', NULL, 120.50) END +VALUES ('mxz', 'Central Masela', NULL, 1207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Masela', [Definition] = NULL, [SortOrder] = 120.50 WHERE [Code] = 'mxz' END +SET [Description] = 'Central Masela', [Definition] = NULL, [SortOrder] = 1207.00 WHERE [Code] = 'mxz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmm', 'Central Mashan Hmong', NULL, 120.60) END +VALUES ('hmm', 'Central Mashan Hmong', NULL, 1208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Mashan Hmong', [Definition] = NULL, [SortOrder] = 120.60 WHERE [Code] = 'hmm' END +SET [Description] = 'Central Mashan Hmong', [Definition] = NULL, [SortOrder] = 1208.00 WHERE [Code] = 'hmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maz', 'Central Mazahua', NULL, 120.70) END +VALUES ('maz', 'Central Mazahua', NULL, 1209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Mazahua', [Definition] = NULL, [SortOrder] = 120.70 WHERE [Code] = 'maz' END +SET [Description] = 'Central Mazahua', [Definition] = NULL, [SortOrder] = 1209.00 WHERE [Code] = 'maz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mel', 'Central Melanau', NULL, 120.80) END +VALUES ('mel', 'Central Melanau', NULL, 1210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Melanau', [Definition] = NULL, [SortOrder] = 120.80 WHERE [Code] = 'mel' END +SET [Description] = 'Central Melanau', [Definition] = NULL, [SortOrder] = 1210.00 WHERE [Code] = 'mel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmo', 'Central Mnong', NULL, 120.90) END +VALUES ('cmo', 'Central Mnong', NULL, 1211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Mnong', [Definition] = NULL, [SortOrder] = 120.90 WHERE [Code] = 'cmo' END +SET [Description] = 'Central Mnong', [Definition] = NULL, [SortOrder] = 1211.00 WHERE [Code] = 'cmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhn', 'Central Nahuatl', NULL, 121.00) END +VALUES ('nhn', 'Central Nahuatl', NULL, 1212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Nahuatl', [Definition] = NULL, [SortOrder] = 121.00 WHERE [Code] = 'nhn' END +SET [Description] = 'Central Nahuatl', [Definition] = NULL, [SortOrder] = 1212.00 WHERE [Code] = 'nhn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncb', 'Central Nicobarese', NULL, 121.10) END +VALUES ('ncb', 'Central Nicobarese', NULL, 1213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Nicobarese', [Definition] = NULL, [SortOrder] = 121.10 WHERE [Code] = 'ncb' END +SET [Description] = 'Central Nicobarese', [Definition] = NULL, [SortOrder] = 1213.00 WHERE [Code] = 'ncb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojc', 'Central Ojibwa', NULL, 121.20) END +VALUES ('ojc', 'Central Ojibwa', NULL, 1214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Ojibwa', [Definition] = NULL, [SortOrder] = 121.20 WHERE [Code] = 'ojc' END +SET [Description] = 'Central Ojibwa', [Definition] = NULL, [SortOrder] = 1214.00 WHERE [Code] = 'ojc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ryu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ryu', 'Central Okinawan', NULL, 121.30) END +VALUES ('ryu', 'Central Okinawan', NULL, 1215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Okinawan', [Definition] = NULL, [SortOrder] = 121.30 WHERE [Code] = 'ryu' END +SET [Description] = 'Central Okinawan', [Definition] = NULL, [SortOrder] = 1215.00 WHERE [Code] = 'ryu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plc', 'Central Palawano', NULL, 121.40) END +VALUES ('plc', 'Central Palawano', NULL, 1216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Palawano', [Definition] = NULL, [SortOrder] = 121.40 WHERE [Code] = 'plc' END +SET [Description] = 'Central Palawano', [Definition] = NULL, [SortOrder] = 1216.00 WHERE [Code] = 'plc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbs', 'Central Pame', NULL, 121.50) END +VALUES ('pbs', 'Central Pame', NULL, 1217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Pame', [Definition] = NULL, [SortOrder] = 121.50 WHERE [Code] = 'pbs' END +SET [Description] = 'Central Pame', [Definition] = NULL, [SortOrder] = 1217.00 WHERE [Code] = 'pbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pst', 'Central Pashto', NULL, 121.60) END +VALUES ('pst', 'Central Pashto', NULL, 1218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Pashto', [Definition] = NULL, [SortOrder] = 121.60 WHERE [Code] = 'pst' END +SET [Description] = 'Central Pashto', [Definition] = NULL, [SortOrder] = 1218.00 WHERE [Code] = 'pst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poo', 'Central Pomo', NULL, 121.70) END +VALUES ('poo', 'Central Pomo', NULL, 1219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Pomo', [Definition] = NULL, [SortOrder] = 121.70 WHERE [Code] = 'poo' END +SET [Description] = 'Central Pomo', [Definition] = NULL, [SortOrder] = 1219.00 WHERE [Code] = 'poo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncx', 'Central Puebla Nahuatl', NULL, 121.80) END +VALUES ('ncx', 'Central Puebla Nahuatl', NULL, 1220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 121.80 WHERE [Code] = 'ncx' END +SET [Description] = 'Central Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 1220.00 WHERE [Code] = 'ncx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sml', 'Central Sama', NULL, 121.90) END +VALUES ('sml', 'Central Sama', NULL, 1221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Sama', [Definition] = NULL, [SortOrder] = 121.90 WHERE [Code] = 'sml' END +SET [Description] = 'Central Sama', [Definition] = NULL, [SortOrder] = 1221.00 WHERE [Code] = 'sml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ess') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ess', 'Central Siberian Yupik', NULL, 122.00) END +VALUES ('ess', 'Central Siberian Yupik', NULL, 1222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Siberian Yupik', [Definition] = NULL, [SortOrder] = 122.00 WHERE [Code] = 'ess' END +SET [Description] = 'Central Siberian Yupik', [Definition] = NULL, [SortOrder] = 1222.00 WHERE [Code] = 'ess' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csm', 'Central Sierra Miwok', NULL, 122.10) END +VALUES ('csm', 'Central Sierra Miwok', NULL, 1223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Sierra Miwok', [Definition] = NULL, [SortOrder] = 122.10 WHERE [Code] = 'csm' END +SET [Description] = 'Central Sierra Miwok', [Definition] = NULL, [SortOrder] = 1223.00 WHERE [Code] = 'csm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syb', 'Central Subanen', NULL, 122.20) END +VALUES ('syb', 'Central Subanen', NULL, 1224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Subanen', [Definition] = NULL, [SortOrder] = 122.20 WHERE [Code] = 'syb' END +SET [Description] = 'Central Subanen', [Definition] = NULL, [SortOrder] = 1224.00 WHERE [Code] = 'syb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgt', 'Central Tagbanwa', NULL, 122.30) END +VALUES ('tgt', 'Central Tagbanwa', NULL, 1225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Tagbanwa', [Definition] = NULL, [SortOrder] = 122.30 WHERE [Code] = 'tgt' END +SET [Description] = 'Central Tagbanwa', [Definition] = NULL, [SortOrder] = 1225.00 WHERE [Code] = 'tgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tar', 'Central Tarahumara', NULL, 122.40) END +VALUES ('tar', 'Central Tarahumara', NULL, 1226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Tarahumara', [Definition] = NULL, [SortOrder] = 122.40 WHERE [Code] = 'tar' END +SET [Description] = 'Central Tarahumara', [Definition] = NULL, [SortOrder] = 1226.00 WHERE [Code] = 'tar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuf', 'Central Tunebo', NULL, 122.50) END +VALUES ('tuf', 'Central Tunebo', NULL, 1227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Tunebo', [Definition] = NULL, [SortOrder] = 122.50 WHERE [Code] = 'tuf' END +SET [Description] = 'Central Tunebo', [Definition] = NULL, [SortOrder] = 1227.00 WHERE [Code] = 'tuf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esu', 'Central Yupik', NULL, 122.60) END +VALUES ('esu', 'Central Yupik', NULL, 1228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Yupik', [Definition] = NULL, [SortOrder] = 122.60 WHERE [Code] = 'esu' END +SET [Description] = 'Central Yupik', [Definition] = NULL, [SortOrder] = 1228.00 WHERE [Code] = 'esu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuq', 'Central-Eastern Niger Fulfulde', NULL, 122.70) END +VALUES ('fuq', 'Central-Eastern Niger Fulfulde', NULL, 1229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central-Eastern Niger Fulfulde', [Definition] = NULL, [SortOrder] = 122.70 WHERE [Code] = 'fuq' END +SET [Description] = 'Central-Eastern Niger Fulfulde', [Definition] = NULL, [SortOrder] = 1229.00 WHERE [Code] = 'fuq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cet', 'Centúúm', NULL, 122.80) END +VALUES ('cet', 'Centúúm', NULL, 1230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Centúúm', [Definition] = NULL, [SortOrder] = 122.80 WHERE [Code] = 'cet' END +SET [Description] = 'Centúúm', [Definition] = NULL, [SortOrder] = 1230.00 WHERE [Code] = 'cet' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cme', 'Cerma', NULL, 122.90) END +VALUES ('cme', 'Cerma', NULL, 1231.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Cerma', [Definition] = NULL, [SortOrder] = 1231.00 WHERE [Code] = 'cme' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cxh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('cxh', 'Cha''ari', NULL, 1232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cerma', [Definition] = NULL, [SortOrder] = 122.90 WHERE [Code] = 'cme' END +SET [Description] = 'Cha''ari', [Definition] = NULL, [SortOrder] = 1232.00 WHERE [Code] = 'cxh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbf', 'Chabu', NULL, 123.00) END +VALUES ('sbf', 'Chabu', NULL, 1233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chabu', [Definition] = NULL, [SortOrder] = 123.00 WHERE [Code] = 'sbf' END +SET [Description] = 'Chabu', [Definition] = NULL, [SortOrder] = 1233.00 WHERE [Code] = 'sbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quk', 'Chachapoyas Quechua', NULL, 123.10) END +VALUES ('quk', 'Chachapoyas Quechua', NULL, 1234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chachapoyas Quechua', [Definition] = NULL, [SortOrder] = 123.10 WHERE [Code] = 'quk' END +SET [Description] = 'Chachapoyas Quechua', [Definition] = NULL, [SortOrder] = 1234.00 WHERE [Code] = 'quk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbi', 'Chachi', NULL, 123.20) END +VALUES ('cbi', 'Chachi', NULL, 1235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chachi', [Definition] = NULL, [SortOrder] = 123.20 WHERE [Code] = 'cbi' END +SET [Description] = 'Chachi', [Definition] = NULL, [SortOrder] = 1235.00 WHERE [Code] = 'cbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cao', 'Chácobo', NULL, 123.30) END +VALUES ('cao', 'Chácobo', NULL, 1236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chácobo', [Definition] = NULL, [SortOrder] = 123.30 WHERE [Code] = 'cao' END +SET [Description] = 'Chácobo', [Definition] = NULL, [SortOrder] = 1236.00 WHERE [Code] = 'cao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shu', 'Chadian Arabic', NULL, 123.40) END +VALUES ('shu', 'Chadian Arabic', NULL, 1237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chadian Arabic', [Definition] = NULL, [SortOrder] = 123.40 WHERE [Code] = 'shu' END +SET [Description] = 'Chadian Arabic', [Definition] = NULL, [SortOrder] = 1237.00 WHERE [Code] = 'shu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cds', 'Chadian Sign Language', NULL, 123.50) END +VALUES ('cds', 'Chadian Sign Language', NULL, 1238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chadian Sign Language', [Definition] = NULL, [SortOrder] = 123.50 WHERE [Code] = 'cds' END +SET [Description] = 'Chadian Sign Language', [Definition] = NULL, [SortOrder] = 1238.00 WHERE [Code] = 'cds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdy', 'Chadong', NULL, 123.60) END +VALUES ('cdy', 'Chadong', NULL, 1239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chadong', [Definition] = NULL, [SortOrder] = 123.60 WHERE [Code] = 'cdy' END +SET [Description] = 'Chadong', [Definition] = NULL, [SortOrder] = 1239.00 WHERE [Code] = 'cdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chg', 'Chagatai', NULL, 123.70) END +VALUES ('chg', 'Chagatai', NULL, 1240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chagatai', [Definition] = NULL, [SortOrder] = 123.70 WHERE [Code] = 'chg' END +SET [Description] = 'Chagatai', [Definition] = NULL, [SortOrder] = 1240.00 WHERE [Code] = 'chg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ciy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ciy', 'Chaima', NULL, 123.80) END +VALUES ('ciy', 'Chaima', NULL, 1241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chaima', [Definition] = NULL, [SortOrder] = 123.80 WHERE [Code] = 'ciy' END +SET [Description] = 'Chaima', [Definition] = NULL, [SortOrder] = 1241.00 WHERE [Code] = 'ciy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckh', 'Chak', NULL, 123.90) END +VALUES ('ckh', 'Chak', NULL, 1242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chak', [Definition] = NULL, [SortOrder] = 123.90 WHERE [Code] = 'ckh' END +SET [Description] = 'Chak', [Definition] = NULL, [SortOrder] = 1242.00 WHERE [Code] = 'ckh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cli', 'Chakali', NULL, 124.00) END +VALUES ('cli', 'Chakali', NULL, 1243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chakali', [Definition] = NULL, [SortOrder] = 124.00 WHERE [Code] = 'cli' END +SET [Description] = 'Chakali', [Definition] = NULL, [SortOrder] = 1243.00 WHERE [Code] = 'cli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckm', 'Chakavian', NULL, 124.10) END +VALUES ('ckm', 'Chakavian', NULL, 1244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chakavian', [Definition] = NULL, [SortOrder] = 124.10 WHERE [Code] = 'ckm' END +SET [Description] = 'Chakavian', [Definition] = NULL, [SortOrder] = 1244.00 WHERE [Code] = 'ckm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccp', 'Chakma', NULL, 124.20) END +VALUES ('ccp', 'Chakma', NULL, 1245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chakma', [Definition] = NULL, [SortOrder] = 124.20 WHERE [Code] = 'ccp' END +SET [Description] = 'Chakma', [Definition] = NULL, [SortOrder] = 1245.00 WHERE [Code] = 'ccp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cll', 'Chala', NULL, 124.30) END +VALUES ('cll', 'Chala', NULL, 1246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chala', [Definition] = NULL, [SortOrder] = 124.30 WHERE [Code] = 'cll' END +SET [Description] = 'Chala', [Definition] = NULL, [SortOrder] = 1246.00 WHERE [Code] = 'cll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cld', 'Chaldean Neo-Aramaic', NULL, 124.40) END +VALUES ('cld', 'Chaldean Neo-Aramaic', NULL, 1247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chaldean Neo-Aramaic', [Definition] = NULL, [SortOrder] = 124.40 WHERE [Code] = 'cld' END +SET [Description] = 'Chaldean Neo-Aramaic', [Definition] = NULL, [SortOrder] = 1247.00 WHERE [Code] = 'cld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgf', 'Chalikha', NULL, 124.50) END +VALUES ('tgf', 'Chalikha', NULL, 1248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chalikha', [Definition] = NULL, [SortOrder] = 124.50 WHERE [Code] = 'tgf' END +SET [Description] = 'Chalikha', [Definition] = NULL, [SortOrder] = 1248.00 WHERE [Code] = 'tgf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ceg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ceg', 'Chamacoco', NULL, 124.60) END +VALUES ('ceg', 'Chamacoco', NULL, 1249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chamacoco', [Definition] = NULL, [SortOrder] = 124.60 WHERE [Code] = 'ceg' END +SET [Description] = 'Chamacoco', [Definition] = NULL, [SortOrder] = 1249.00 WHERE [Code] = 'ceg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cji', 'Chamalal', NULL, 124.70) END +VALUES ('cji', 'Chamalal', NULL, 1250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chamalal', [Definition] = NULL, [SortOrder] = 124.70 WHERE [Code] = 'cji' END +SET [Description] = 'Chamalal', [Definition] = NULL, [SortOrder] = 1250.00 WHERE [Code] = 'cji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdh', 'Chambeali', NULL, 124.80) END +VALUES ('cdh', 'Chambeali', NULL, 1251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chambeali', [Definition] = NULL, [SortOrder] = 124.80 WHERE [Code] = 'cdh' END +SET [Description] = 'Chambeali', [Definition] = NULL, [SortOrder] = 1251.00 WHERE [Code] = 'cdh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'can') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('can', 'Chambri', NULL, 124.90) END +VALUES ('can', 'Chambri', NULL, 1252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chambri', [Definition] = NULL, [SortOrder] = 124.90 WHERE [Code] = 'can' END +SET [Description] = 'Chambri', [Definition] = NULL, [SortOrder] = 1252.00 WHERE [Code] = 'can' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccc', 'Chamicuro', NULL, 125.00) END +VALUES ('ccc', 'Chamicuro', NULL, 1253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chamicuro', [Definition] = NULL, [SortOrder] = 125.00 WHERE [Code] = 'ccc' END +SET [Description] = 'Chamicuro', [Definition] = NULL, [SortOrder] = 1253.00 WHERE [Code] = 'ccc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cha', 'Chamorro', NULL, 125.10) END +VALUES ('cha', 'Chamorro', NULL, 1254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chamorro', [Definition] = NULL, [SortOrder] = 125.10 WHERE [Code] = 'cha' END +SET [Description] = 'Chamorro', [Definition] = NULL, [SortOrder] = 1254.00 WHERE [Code] = 'cha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caj', 'Chané', NULL, 125.20) END +VALUES ('caj', 'Chané', NULL, 1255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chané', [Definition] = NULL, [SortOrder] = 125.20 WHERE [Code] = 'caj' END +SET [Description] = 'Chané', [Definition] = NULL, [SortOrder] = 1255.00 WHERE [Code] = 'caj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbc', 'Chang Naga', NULL, 125.30) END +VALUES ('nbc', 'Chang Naga', NULL, 1256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chang Naga', [Definition] = NULL, [SortOrder] = 125.30 WHERE [Code] = 'nbc' END +SET [Description] = 'Chang Naga', [Definition] = NULL, [SortOrder] = 1256.00 WHERE [Code] = 'nbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cga', 'Changriwa', NULL, 125.40) END +VALUES ('cga', 'Changriwa', NULL, 1257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Changriwa', [Definition] = NULL, [SortOrder] = 125.40 WHERE [Code] = 'cga' END +SET [Description] = 'Changriwa', [Definition] = NULL, [SortOrder] = 1257.00 WHERE [Code] = 'cga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cna', 'Changthang', NULL, 125.50) END +VALUES ('cna', 'Changthang', NULL, 1258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Changthang', [Definition] = NULL, [SortOrder] = 125.50 WHERE [Code] = 'cna' END +SET [Description] = 'Changthang', [Definition] = NULL, [SortOrder] = 1258.00 WHERE [Code] = 'cna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chx', 'Chantyal', NULL, 125.60) END +VALUES ('chx', 'Chantyal', NULL, 1259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chantyal', [Definition] = NULL, [SortOrder] = 125.60 WHERE [Code] = 'chx' END +SET [Description] = 'Chantyal', [Definition] = NULL, [SortOrder] = 1259.00 WHERE [Code] = 'chx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cra', 'Chara', NULL, 125.70) END +VALUES ('cra', 'Chara', NULL, 1260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chara', [Definition] = NULL, [SortOrder] = 125.70 WHERE [Code] = 'cra' END +SET [Description] = 'Chara', [Definition] = NULL, [SortOrder] = 1260.00 WHERE [Code] = 'cra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdn', 'Chaudangsi', NULL, 125.80) END +VALUES ('cdn', 'Chaudangsi', NULL, 1261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chaudangsi', [Definition] = NULL, [SortOrder] = 125.80 WHERE [Code] = 'cdn' END +SET [Description] = 'Chaudangsi', [Definition] = NULL, [SortOrder] = 1261.00 WHERE [Code] = 'cdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crv', 'Chaura', NULL, 125.90) END +VALUES ('crv', 'Chaura', NULL, 1262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chaura', [Definition] = NULL, [SortOrder] = 125.90 WHERE [Code] = 'crv' END +SET [Description] = 'Chaura', [Definition] = NULL, [SortOrder] = 1262.00 WHERE [Code] = 'crv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbk', 'Chavacano', NULL, 126.00) END +VALUES ('cbk', 'Chavacano', NULL, 1263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chavacano', [Definition] = NULL, [SortOrder] = 126.00 WHERE [Code] = 'cbk' END +SET [Description] = 'Chavacano', [Definition] = NULL, [SortOrder] = 1263.00 WHERE [Code] = 'cbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbt', 'Chayahuita', NULL, 126.10) END +VALUES ('cbt', 'Chayahuita', NULL, 1264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chayahuita', [Definition] = NULL, [SortOrder] = 126.10 WHERE [Code] = 'cbt' END +SET [Description] = 'Chayahuita', [Definition] = NULL, [SortOrder] = 1264.00 WHERE [Code] = 'cbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mih', 'Chayuco Mixtec', NULL, 126.20) END +VALUES ('mih', 'Chayuco Mixtec', NULL, 1265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chayuco Mixtec', [Definition] = NULL, [SortOrder] = 126.20 WHERE [Code] = 'mih' END +SET [Description] = 'Chayuco Mixtec', [Definition] = NULL, [SortOrder] = 1265.00 WHERE [Code] = 'mih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtb', 'Chazumba Mixtec', NULL, 126.30) END +VALUES ('xtb', 'Chazumba Mixtec', NULL, 1266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chazumba Mixtec', [Definition] = NULL, [SortOrder] = 126.30 WHERE [Code] = 'xtb' END +SET [Description] = 'Chazumba Mixtec', [Definition] = NULL, [SortOrder] = 1266.00 WHERE [Code] = 'xtb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruk', 'Che', NULL, 126.40) END +VALUES ('ruk', 'Che', NULL, 1267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Che', [Definition] = NULL, [SortOrder] = 126.40 WHERE [Code] = 'ruk' END +SET [Description] = 'Che', [Definition] = NULL, [SortOrder] = 1267.00 WHERE [Code] = 'ruk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'che') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('che', 'Chechen', NULL, 126.50) END +VALUES ('che', 'Chechen', NULL, 1268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chechen', [Definition] = NULL, [SortOrder] = 126.50 WHERE [Code] = 'che' END +SET [Description] = 'Chechen', [Definition] = NULL, [SortOrder] = 1268.00 WHERE [Code] = 'che' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrn', 'Cheke Holo', NULL, 126.60) END +VALUES ('mrn', 'Cheke Holo', NULL, 1269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cheke Holo', [Definition] = NULL, [SortOrder] = 126.60 WHERE [Code] = 'mrn' END +SET [Description] = 'Cheke Holo', [Definition] = NULL, [SortOrder] = 1269.00 WHERE [Code] = 'mrn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xch', 'Chemakum', NULL, 126.70) END +VALUES ('xch', 'Chemakum', NULL, 1270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chemakum', [Definition] = NULL, [SortOrder] = 126.70 WHERE [Code] = 'xch' END +SET [Description] = 'Chemakum', [Definition] = NULL, [SortOrder] = 1270.00 WHERE [Code] = 'xch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjn', 'Chenapian', NULL, 126.80) END +VALUES ('cjn', 'Chenapian', NULL, 1271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chenapian', [Definition] = NULL, [SortOrder] = 126.80 WHERE [Code] = 'cjn' END +SET [Description] = 'Chenapian', [Definition] = NULL, [SortOrder] = 1271.00 WHERE [Code] = 'cjn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cde', 'Chenchu', NULL, 126.90) END +VALUES ('cde', 'Chenchu', NULL, 1272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chenchu', [Definition] = NULL, [SortOrder] = 126.90 WHERE [Code] = 'cde' END +SET [Description] = 'Chenchu', [Definition] = NULL, [SortOrder] = 1272.00 WHERE [Code] = 'cde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnu', 'Chenoua', NULL, 127.00) END +VALUES ('cnu', 'Chenoua', NULL, 1273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chenoua', [Definition] = NULL, [SortOrder] = 127.00 WHERE [Code] = 'cnu' END +SET [Description] = 'Chenoua', [Definition] = NULL, [SortOrder] = 1273.00 WHERE [Code] = 'cnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdm', 'Chepang', NULL, 127.10) END +VALUES ('cdm', 'Chepang', NULL, 1274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chepang', [Definition] = NULL, [SortOrder] = 127.10 WHERE [Code] = 'cdm' END +SET [Description] = 'Chepang', [Definition] = NULL, [SortOrder] = 1274.00 WHERE [Code] = 'cdm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ycp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ycp', 'Chepya', NULL, 127.20) END +VALUES ('ycp', 'Chepya', NULL, 1275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chepya', [Definition] = NULL, [SortOrder] = 127.20 WHERE [Code] = 'ycp' END +SET [Description] = 'Chepya', [Definition] = NULL, [SortOrder] = 1275.00 WHERE [Code] = 'ycp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpn', 'Cherepon', NULL, 127.30) END +VALUES ('cpn', 'Cherepon', NULL, 1276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cherepon', [Definition] = NULL, [SortOrder] = 127.30 WHERE [Code] = 'cpn' END +SET [Description] = 'Cherepon', [Definition] = NULL, [SortOrder] = 1276.00 WHERE [Code] = 'cpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chr', 'Cherokee', NULL, 127.40) END +VALUES ('chr', 'Cherokee', NULL, 1277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cherokee', [Definition] = NULL, [SortOrder] = 127.40 WHERE [Code] = 'chr' END +SET [Description] = 'Cherokee', [Definition] = NULL, [SortOrder] = 1277.00 WHERE [Code] = 'chr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ych') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ych', 'Chesu', NULL, 127.50) END +VALUES ('ych', 'Chesu', NULL, 1278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chesu', [Definition] = NULL, [SortOrder] = 127.50 WHERE [Code] = 'ych' END +SET [Description] = 'Chesu', [Definition] = NULL, [SortOrder] = 1278.00 WHERE [Code] = 'ych' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctc', 'Chetco', NULL, 127.60) END +VALUES ('ctc', 'Chetco', NULL, 1279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chetco', [Definition] = NULL, [SortOrder] = 127.60 WHERE [Code] = 'ctc' END +SET [Description] = 'Chetco', [Definition] = NULL, [SortOrder] = 1279.00 WHERE [Code] = 'ctc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwg', 'Chewong', NULL, 127.70) END +VALUES ('cwg', 'Chewong', NULL, 1280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chewong', [Definition] = NULL, [SortOrder] = 127.70 WHERE [Code] = 'cwg' END +SET [Description] = 'Chewong', [Definition] = NULL, [SortOrder] = 1280.00 WHERE [Code] = 'cwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chy', 'Cheyenne', NULL, 127.80) END +VALUES ('chy', 'Cheyenne', NULL, 1281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cheyenne', [Definition] = NULL, [SortOrder] = 127.80 WHERE [Code] = 'chy' END +SET [Description] = 'Cheyenne', [Definition] = NULL, [SortOrder] = 1281.00 WHERE [Code] = 'chy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hne', 'Chhattisgarhi', NULL, 127.90) END +VALUES ('hne', 'Chhattisgarhi', NULL, 1282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chhattisgarhi', [Definition] = NULL, [SortOrder] = 127.90 WHERE [Code] = 'hne' END +SET [Description] = 'Chhattisgarhi', [Definition] = NULL, [SortOrder] = 1282.00 WHERE [Code] = 'hne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctn', 'Chhintange', NULL, 128.00) END +VALUES ('ctn', 'Chhintange', NULL, 1283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chhintange', [Definition] = NULL, [SortOrder] = 128.00 WHERE [Code] = 'ctn' END +SET [Description] = 'Chhintange', [Definition] = NULL, [SortOrder] = 1283.00 WHERE [Code] = 'ctn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cur', 'Chhulung', NULL, 128.10) END +VALUES ('cur', 'Chhulung', NULL, 1284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chhulung', [Definition] = NULL, [SortOrder] = 128.10 WHERE [Code] = 'cur' END +SET [Description] = 'Chhulung', [Definition] = NULL, [SortOrder] = 1284.00 WHERE [Code] = 'cur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csd', 'Chiangmai Sign Language', NULL, 128.20) END +VALUES ('csd', 'Chiangmai Sign Language', NULL, 1285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiangmai Sign Language', [Definition] = NULL, [SortOrder] = 128.20 WHERE [Code] = 'csd' END +SET [Description] = 'Chiangmai Sign Language', [Definition] = NULL, [SortOrder] = 1285.00 WHERE [Code] = 'csd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cip', 'Chiapanec', NULL, 128.30) END +VALUES ('cip', 'Chiapanec', NULL, 1286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiapanec', [Definition] = NULL, [SortOrder] = 128.30 WHERE [Code] = 'cip' END +SET [Description] = 'Chiapanec', [Definition] = NULL, [SortOrder] = 1286.00 WHERE [Code] = 'cip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chb', 'Chibcha', NULL, 128.40) END +VALUES ('chb', 'Chibcha', NULL, 1287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chibcha', [Definition] = NULL, [SortOrder] = 128.40 WHERE [Code] = 'chb' END +SET [Description] = 'Chibcha', [Definition] = NULL, [SortOrder] = 1287.00 WHERE [Code] = 'chb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trs', 'Chicahuaxtla Triqui', NULL, 128.50) END +VALUES ('trs', 'Chicahuaxtla Triqui', NULL, 1288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chicahuaxtla Triqui', [Definition] = NULL, [SortOrder] = 128.50 WHERE [Code] = 'trs' END +SET [Description] = 'Chicahuaxtla Triqui', [Definition] = NULL, [SortOrder] = 1288.00 WHERE [Code] = 'trs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpv', 'Chichicapan Zapotec', NULL, 128.60) END +VALUES ('zpv', 'Chichicapan Zapotec', NULL, 1289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chichicapan Zapotec', [Definition] = NULL, [SortOrder] = 128.60 WHERE [Code] = 'zpv' END +SET [Description] = 'Chichicapan Zapotec', [Definition] = NULL, [SortOrder] = 1289.00 WHERE [Code] = 'zpv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pei', 'Chichimeca-Jonaz', NULL, 128.70) END +VALUES ('pei', 'Chichimeca-Jonaz', NULL, 1290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chichimeca-Jonaz', [Definition] = NULL, [SortOrder] = 128.70 WHERE [Code] = 'pei' END +SET [Description] = 'Chichimeca-Jonaz', [Definition] = NULL, [SortOrder] = 1290.00 WHERE [Code] = 'pei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cic', 'Chickasaw', NULL, 128.80) END +VALUES ('cic', 'Chickasaw', NULL, 1291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chickasaw', [Definition] = NULL, [SortOrder] = 128.80 WHERE [Code] = 'cic' END +SET [Description] = 'Chickasaw', [Definition] = NULL, [SortOrder] = 1291.00 WHERE [Code] = 'cic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cob', 'Chicomuceltec', NULL, 128.90) END +VALUES ('cob', 'Chicomuceltec', NULL, 1292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chicomuceltec', [Definition] = NULL, [SortOrder] = 128.90 WHERE [Code] = 'cob' END +SET [Description] = 'Chicomuceltec', [Definition] = NULL, [SortOrder] = 1292.00 WHERE [Code] = 'cob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cgg', 'Chiga', NULL, 129.00) END +VALUES ('cgg', 'Chiga', NULL, 1293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiga', [Definition] = NULL, [SortOrder] = 129.00 WHERE [Code] = 'cgg' END +SET [Description] = 'Chiga', [Definition] = NULL, [SortOrder] = 1293.00 WHERE [Code] = 'cgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mii', 'Chigmecatitlán Mixtec', NULL, 129.10) END +VALUES ('mii', 'Chigmecatitlán Mixtec', NULL, 1294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chigmecatitlán Mixtec', [Definition] = NULL, [SortOrder] = 129.10 WHERE [Code] = 'mii' END +SET [Description] = 'Chigmecatitlán Mixtec', [Definition] = NULL, [SortOrder] = 1294.00 WHERE [Code] = 'mii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clc', 'Chilcotin', NULL, 129.20) END +VALUES ('clc', 'Chilcotin', NULL, 1295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chilcotin', [Definition] = NULL, [SortOrder] = 129.20 WHERE [Code] = 'clc' END +SET [Description] = 'Chilcotin', [Definition] = NULL, [SortOrder] = 1295.00 WHERE [Code] = 'clc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csg', 'Chilean Sign Language', NULL, 129.30) END +VALUES ('csg', 'Chilean Sign Language', NULL, 1296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chilean Sign Language', [Definition] = NULL, [SortOrder] = 129.30 WHERE [Code] = 'csg' END +SET [Description] = 'Chilean Sign Language', [Definition] = NULL, [SortOrder] = 1296.00 WHERE [Code] = 'csg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clh', 'Chilisso', NULL, 129.40) END +VALUES ('clh', 'Chilisso', NULL, 1297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chilisso', [Definition] = NULL, [SortOrder] = 129.40 WHERE [Code] = 'clh' END +SET [Description] = 'Chilisso', [Definition] = NULL, [SortOrder] = 1297.00 WHERE [Code] = 'clh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csa', 'Chiltepec Chinantec', NULL, 129.50) END +VALUES ('csa', 'Chiltepec Chinantec', NULL, 1298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiltepec Chinantec', [Definition] = NULL, [SortOrder] = 129.50 WHERE [Code] = 'csa' END +SET [Description] = 'Chiltepec Chinantec', [Definition] = NULL, [SortOrder] = 1298.00 WHERE [Code] = 'csa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zoh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zoh', 'Chimalapa Zoque', NULL, 129.60) END +VALUES ('zoh', 'Chimalapa Zoque', NULL, 1299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chimalapa Zoque', [Definition] = NULL, [SortOrder] = 129.60 WHERE [Code] = 'zoh' END +SET [Description] = 'Chimalapa Zoque', [Definition] = NULL, [SortOrder] = 1299.00 WHERE [Code] = 'zoh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cid', 'Chimariko', NULL, 129.70) END +VALUES ('cid', 'Chimariko', NULL, 1300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chimariko', [Definition] = NULL, [SortOrder] = 129.70 WHERE [Code] = 'cid' END +SET [Description] = 'Chimariko', [Definition] = NULL, [SortOrder] = 1300.00 WHERE [Code] = 'cid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qug', 'Chimborazo Highland Quichua', NULL, 129.80) END +VALUES ('qug', 'Chimborazo Highland Quichua', NULL, 1301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chimborazo Highland Quichua', [Definition] = NULL, [SortOrder] = 129.80 WHERE [Code] = 'qug' END +SET [Description] = 'Chimborazo Highland Quichua', [Definition] = NULL, [SortOrder] = 1301.00 WHERE [Code] = 'qug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbg', 'Chimila', NULL, 129.90) END +VALUES ('cbg', 'Chimila', NULL, 1302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chimila', [Definition] = NULL, [SortOrder] = 129.90 WHERE [Code] = 'cbg' END +SET [Description] = 'Chimila', [Definition] = NULL, [SortOrder] = 1302.00 WHERE [Code] = 'cbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxu', 'China Buriat', NULL, 130.00) END +VALUES ('bxu', 'China Buriat', NULL, 1303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'China Buriat', [Definition] = NULL, [SortOrder] = 130.00 WHERE [Code] = 'bxu' END +SET [Description] = 'China Buriat', [Definition] = NULL, [SortOrder] = 1303.00 WHERE [Code] = 'bxu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cih', 'Chinali', NULL, 130.10) END +VALUES ('cih', 'Chinali', NULL, 1304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinali', [Definition] = NULL, [SortOrder] = 130.10 WHERE [Code] = 'cih' END +SET [Description] = 'Chinali', [Definition] = NULL, [SortOrder] = 1304.00 WHERE [Code] = 'cih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnb', 'Chinbon Chin', NULL, 130.20) END +VALUES ('cnb', 'Chinbon Chin', NULL, 1305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinbon Chin', [Definition] = NULL, [SortOrder] = 130.20 WHERE [Code] = 'cnb' END +SET [Description] = 'Chinbon Chin', [Definition] = NULL, [SortOrder] = 1305.00 WHERE [Code] = 'cnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxc', 'Chincha Quechua', NULL, 130.30) END +VALUES ('qxc', 'Chincha Quechua', NULL, 1306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chincha Quechua', [Definition] = NULL, [SortOrder] = 130.30 WHERE [Code] = 'qxc' END +SET [Description] = 'Chincha Quechua', [Definition] = NULL, [SortOrder] = 1306.00 WHERE [Code] = 'qxc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zho', 'Chinese', NULL, 130.40) END +VALUES ('zho', 'Chinese', NULL, 1307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinese', [Definition] = NULL, [SortOrder] = 130.40 WHERE [Code] = 'zho' END +SET [Description] = 'Chinese', [Definition] = NULL, [SortOrder] = 1307.00 WHERE [Code] = 'zho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpi', 'Chinese Pidgin English', NULL, 130.50) END +VALUES ('cpi', 'Chinese Pidgin English', NULL, 1308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinese Pidgin English', [Definition] = NULL, [SortOrder] = 130.50 WHERE [Code] = 'cpi' END +SET [Description] = 'Chinese Pidgin English', [Definition] = NULL, [SortOrder] = 1308.00 WHERE [Code] = 'cpi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csl', 'Chinese Sign Language', NULL, 130.60) END +VALUES ('csl', 'Chinese Sign Language', NULL, 1309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinese Sign Language', [Definition] = NULL, [SortOrder] = 130.60 WHERE [Code] = 'csl' END +SET [Description] = 'Chinese Sign Language', [Definition] = NULL, [SortOrder] = 1309.00 WHERE [Code] = 'csl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chh', 'Chinook', NULL, 130.70) END +VALUES ('chh', 'Chinook', NULL, 1310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinook', [Definition] = NULL, [SortOrder] = 130.70 WHERE [Code] = 'chh' END +SET [Description] = 'Chinook', [Definition] = NULL, [SortOrder] = 1310.00 WHERE [Code] = 'chh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chn', 'Chinook jargon', NULL, 130.80) END +VALUES ('chn', 'Chinook jargon', NULL, 1311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinook jargon', [Definition] = NULL, [SortOrder] = 130.80 WHERE [Code] = 'chn' END +SET [Description] = 'Chinook jargon', [Definition] = NULL, [SortOrder] = 1311.00 WHERE [Code] = 'chn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cap', 'Chipaya', NULL, 130.90) END +VALUES ('cap', 'Chipaya', NULL, 1312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chipaya', [Definition] = NULL, [SortOrder] = 130.90 WHERE [Code] = 'cap' END +SET [Description] = 'Chipaya', [Definition] = NULL, [SortOrder] = 1312.00 WHERE [Code] = 'cap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chp', 'Chipewyan', NULL, 131.00) END +VALUES ('chp', 'Chipewyan', NULL, 1313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chipewyan', [Definition] = NULL, [SortOrder] = 131.00 WHERE [Code] = 'chp' END +SET [Description] = 'Chipewyan', [Definition] = NULL, [SortOrder] = 1313.00 WHERE [Code] = 'chp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ciw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ciw', 'Chippewa', NULL, 131.10) END +VALUES ('ciw', 'Chippewa', NULL, 1314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chippewa', [Definition] = NULL, [SortOrder] = 131.10 WHERE [Code] = 'ciw' END +SET [Description] = 'Chippewa', [Definition] = NULL, [SortOrder] = 1314.00 WHERE [Code] = 'ciw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxa', 'Chiquián Ancash Quechua', NULL, 131.20) END +VALUES ('qxa', 'Chiquián Ancash Quechua', NULL, 1315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiquián Ancash Quechua', [Definition] = NULL, [SortOrder] = 131.20 WHERE [Code] = 'qxa' END +SET [Description] = 'Chiquián Ancash Quechua', [Definition] = NULL, [SortOrder] = 1315.00 WHERE [Code] = 'qxa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maq', 'Chiquihuitlán Mazatec', NULL, 131.30) END +VALUES ('maq', 'Chiquihuitlán Mazatec', NULL, 1316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiquihuitlán Mazatec', [Definition] = NULL, [SortOrder] = 131.30 WHERE [Code] = 'maq' END +SET [Description] = 'Chiquihuitlán Mazatec', [Definition] = NULL, [SortOrder] = 1316.00 WHERE [Code] = 'maq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cax', 'Chiquitano', NULL, 131.40) END +VALUES ('cax', 'Chiquitano', NULL, 1317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiquitano', [Definition] = NULL, [SortOrder] = 131.40 WHERE [Code] = 'cax' END +SET [Description] = 'Chiquitano', [Definition] = NULL, [SortOrder] = 1317.00 WHERE [Code] = 'cax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhd', 'Chiripá', NULL, 131.50) END +VALUES ('nhd', 'Chiripá', NULL, 1318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiripá', [Definition] = NULL, [SortOrder] = 131.50 WHERE [Code] = 'nhd' END +SET [Description] = 'Chiripá', [Definition] = NULL, [SortOrder] = 1318.00 WHERE [Code] = 'nhd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdf', 'Chiru', NULL, 131.60) END +VALUES ('cdf', 'Chiru', NULL, 1319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiru', [Definition] = NULL, [SortOrder] = 131.60 WHERE [Code] = 'cdf' END +SET [Description] = 'Chiru', [Definition] = NULL, [SortOrder] = 1319.00 WHERE [Code] = 'cdf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctm', 'Chitimacha', NULL, 131.70) END +VALUES ('ctm', 'Chitimacha', NULL, 1320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chitimacha', [Definition] = NULL, [SortOrder] = 131.70 WHERE [Code] = 'ctm' END +SET [Description] = 'Chitimacha', [Definition] = NULL, [SortOrder] = 1320.00 WHERE [Code] = 'ctm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cik', 'Chitkuli Kinnauri', NULL, 131.80) END +VALUES ('cik', 'Chitkuli Kinnauri', NULL, 1321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chitkuli Kinnauri', [Definition] = NULL, [SortOrder] = 131.80 WHERE [Code] = 'cik' END +SET [Description] = 'Chitkuli Kinnauri', [Definition] = NULL, [SortOrder] = 1321.00 WHERE [Code] = 'cik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctg', 'Chittagonian', NULL, 131.90) END +VALUES ('ctg', 'Chittagonian', NULL, 1322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chittagonian', [Definition] = NULL, [SortOrder] = 131.90 WHERE [Code] = 'ctg' END +SET [Description] = 'Chittagonian', [Definition] = NULL, [SortOrder] = 1322.00 WHERE [Code] = 'ctg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'the') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('the', 'Chitwania Tharu', NULL, 132.00) END +VALUES ('the', 'Chitwania Tharu', NULL, 1323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chitwania Tharu', [Definition] = NULL, [SortOrder] = 132.00 WHERE [Code] = 'the' END +SET [Description] = 'Chitwania Tharu', [Definition] = NULL, [SortOrder] = 1323.00 WHERE [Code] = 'the' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpc', 'Choapan Zapotec', NULL, 132.10) END +VALUES ('zpc', 'Choapan Zapotec', NULL, 1324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Choapan Zapotec', [Definition] = NULL, [SortOrder] = 132.10 WHERE [Code] = 'zpc' END +SET [Description] = 'Choapan Zapotec', [Definition] = NULL, [SortOrder] = 1324.00 WHERE [Code] = 'zpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cgk', 'Chocangacakha', NULL, 132.20) END +VALUES ('cgk', 'Chocangacakha', NULL, 1325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chocangacakha', [Definition] = NULL, [SortOrder] = 132.20 WHERE [Code] = 'cgk' END +SET [Description] = 'Chocangacakha', [Definition] = NULL, [SortOrder] = 1325.00 WHERE [Code] = 'cgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coz', 'Chochotec', NULL, 132.30) END +VALUES ('coz', 'Chochotec', NULL, 1326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chochotec', [Definition] = NULL, [SortOrder] = 132.30 WHERE [Code] = 'coz' END +SET [Description] = 'Chochotec', [Definition] = NULL, [SortOrder] = 1326.00 WHERE [Code] = 'coz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cho', 'Choctaw', NULL, 132.40) END +VALUES ('cho', 'Choctaw', NULL, 1327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Choctaw', [Definition] = NULL, [SortOrder] = 132.40 WHERE [Code] = 'cho' END +SET [Description] = 'Choctaw', [Definition] = NULL, [SortOrder] = 1327.00 WHERE [Code] = 'cho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdi', 'Chodri', NULL, 132.50) END +VALUES ('cdi', 'Chodri', NULL, 1328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chodri', [Definition] = NULL, [SortOrder] = 132.50 WHERE [Code] = 'cdi' END +SET [Description] = 'Chodri', [Definition] = NULL, [SortOrder] = 1328.00 WHERE [Code] = 'cdi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nri', 'Chokri Naga', NULL, 132.60) END +VALUES ('nri', 'Chokri Naga', NULL, 1329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chokri Naga', [Definition] = NULL, [SortOrder] = 132.60 WHERE [Code] = 'nri' END +SET [Description] = 'Chokri Naga', [Definition] = NULL, [SortOrder] = 1329.00 WHERE [Code] = 'nri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjk', 'Chokwe', NULL, 132.70) END +VALUES ('cjk', 'Chokwe', NULL, 1330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chokwe', [Definition] = NULL, [SortOrder] = 132.70 WHERE [Code] = 'cjk' END +SET [Description] = 'Chokwe', [Definition] = NULL, [SortOrder] = 1330.00 WHERE [Code] = 'cjk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctu', 'Chol', NULL, 132.80) END +VALUES ('ctu', 'Chol', NULL, 1331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chol', [Definition] = NULL, [SortOrder] = 132.80 WHERE [Code] = 'ctu' END +SET [Description] = 'Chol', [Definition] = NULL, [SortOrder] = 1331.00 WHERE [Code] = 'ctu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cht', 'Cholón', NULL, 132.90) END +VALUES ('cht', 'Cholón', NULL, 1332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cholón', [Definition] = NULL, [SortOrder] = 132.90 WHERE [Code] = 'cht' END +SET [Description] = 'Cholón', [Definition] = NULL, [SortOrder] = 1332.00 WHERE [Code] = 'cht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cog', 'Chong', NULL, 133.00) END +VALUES ('cog', 'Chong', NULL, 1333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chong', [Definition] = NULL, [SortOrder] = 133.00 WHERE [Code] = 'cog' END +SET [Description] = 'Chong', [Definition] = NULL, [SortOrder] = 1333.00 WHERE [Code] = 'cog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cda', 'Choni', NULL, 133.10) END +VALUES ('cda', 'Choni', NULL, 1334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Choni', [Definition] = NULL, [SortOrder] = 133.10 WHERE [Code] = 'cda' END +SET [Description] = 'Choni', [Definition] = NULL, [SortOrder] = 1334.00 WHERE [Code] = 'cda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coh', 'Chonyi-Dzihana-Kauma', NULL, 133.20) END +VALUES ('coh', 'Chonyi-Dzihana-Kauma', NULL, 1335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chonyi-Dzihana-Kauma', [Definition] = NULL, [SortOrder] = 133.20 WHERE [Code] = 'coh' END +SET [Description] = 'Chonyi-Dzihana-Kauma', [Definition] = NULL, [SortOrder] = 1335.00 WHERE [Code] = 'coh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cce', 'Chopi', NULL, 133.30) END +VALUES ('cce', 'Chopi', NULL, 1336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chopi', [Definition] = NULL, [SortOrder] = 133.30 WHERE [Code] = 'cce' END +SET [Description] = 'Chopi', [Definition] = NULL, [SortOrder] = 1336.00 WHERE [Code] = 'cce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xco', 'Chorasmian', NULL, 133.40) END +VALUES ('xco', 'Chorasmian', NULL, 1337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chorasmian', [Definition] = NULL, [SortOrder] = 133.40 WHERE [Code] = 'xco' END +SET [Description] = 'Chorasmian', [Definition] = NULL, [SortOrder] = 1337.00 WHERE [Code] = 'xco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caa', 'Chortí', NULL, 133.50) END +VALUES ('caa', 'Chortí', NULL, 1338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chortí', [Definition] = NULL, [SortOrder] = 133.50 WHERE [Code] = 'caa' END +SET [Description] = 'Chortí', [Definition] = NULL, [SortOrder] = 1338.00 WHERE [Code] = 'caa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nct', 'Chothe Naga', NULL, 133.60) END +VALUES ('nct', 'Chothe Naga', NULL, 1339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chothe Naga', [Definition] = NULL, [SortOrder] = 133.60 WHERE [Code] = 'nct' END +SET [Description] = 'Chothe Naga', [Definition] = NULL, [SortOrder] = 1339.00 WHERE [Code] = 'nct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crw', 'Chrau', NULL, 133.70) END +VALUES ('crw', 'Chrau', NULL, 1340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chrau', [Definition] = NULL, [SortOrder] = 133.70 WHERE [Code] = 'crw' END +SET [Description] = 'Chrau', [Definition] = NULL, [SortOrder] = 1340.00 WHERE [Code] = 'crw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cje', 'Chru', NULL, 133.80) END +VALUES ('cje', 'Chru', NULL, 1341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chru', [Definition] = NULL, [SortOrder] = 133.80 WHERE [Code] = 'cje' END +SET [Description] = 'Chru', [Definition] = NULL, [SortOrder] = 1341.00 WHERE [Code] = 'cje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cqd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cqd', 'Chuanqiandian Cluster Miao', NULL, 133.90) END +VALUES ('cqd', 'Chuanqiandian Cluster Miao', NULL, 1342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuanqiandian Cluster Miao', [Definition] = NULL, [SortOrder] = 133.90 WHERE [Code] = 'cqd' END +SET [Description] = 'Chuanqiandian Cluster Miao', [Definition] = NULL, [SortOrder] = 1342.00 WHERE [Code] = 'cqd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjv', 'Chuave', NULL, 134.00) END +VALUES ('cjv', 'Chuave', NULL, 1343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuave', [Definition] = NULL, [SortOrder] = 134.00 WHERE [Code] = 'cjv' END +SET [Description] = 'Chuave', [Definition] = NULL, [SortOrder] = 1343.00 WHERE [Code] = 'cjv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cvg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cvg', 'Chug', NULL, 134.10) END +VALUES ('cvg', 'Chug', NULL, 1344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chug', [Definition] = NULL, [SortOrder] = 134.10 WHERE [Code] = 'cvg' END +SET [Description] = 'Chug', [Definition] = NULL, [SortOrder] = 1344.00 WHERE [Code] = 'cvg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cac', 'Chuj', NULL, 134.20) END +VALUES ('cac', 'Chuj', NULL, 1345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuj', [Definition] = NULL, [SortOrder] = 134.20 WHERE [Code] = 'cac' END +SET [Description] = 'Chuj', [Definition] = NULL, [SortOrder] = 1345.00 WHERE [Code] = 'cac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuh', 'Chuka', NULL, 134.30) END +VALUES ('cuh', 'Chuka', NULL, 1346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuka', [Definition] = NULL, [SortOrder] = 134.30 WHERE [Code] = 'cuh' END +SET [Description] = 'Chuka', [Definition] = NULL, [SortOrder] = 1346.00 WHERE [Code] = 'cuh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckt', 'Chukot', NULL, 134.40) END +VALUES ('ckt', 'Chukot', NULL, 1347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chukot', [Definition] = NULL, [SortOrder] = 134.40 WHERE [Code] = 'ckt' END +SET [Description] = 'Chukot', [Definition] = NULL, [SortOrder] = 1347.00 WHERE [Code] = 'ckt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuw', 'Chukwa', NULL, 134.50) END +VALUES ('cuw', 'Chukwa', NULL, 1348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chukwa', [Definition] = NULL, [SortOrder] = 134.50 WHERE [Code] = 'cuw' END +SET [Description] = 'Chukwa', [Definition] = NULL, [SortOrder] = 1348.00 WHERE [Code] = 'cuw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clw', 'Chulym', NULL, 134.60) END +VALUES ('clw', 'Chulym', NULL, 1349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chulym', [Definition] = NULL, [SortOrder] = 134.60 WHERE [Code] = 'clw' END +SET [Description] = 'Chulym', [Definition] = NULL, [SortOrder] = 1349.00 WHERE [Code] = 'clw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncu', 'Chumburung', NULL, 134.70) END +VALUES ('ncu', 'Chumburung', NULL, 1350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chumburung', [Definition] = NULL, [SortOrder] = 134.70 WHERE [Code] = 'ncu' END +SET [Description] = 'Chumburung', [Definition] = NULL, [SortOrder] = 1350.00 WHERE [Code] = 'ncu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnq', 'Chung', NULL, 134.80) END +VALUES ('cnq', 'Chung', NULL, 1351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chung', [Definition] = NULL, [SortOrder] = 134.80 WHERE [Code] = 'cnq' END +SET [Description] = 'Chung', [Definition] = NULL, [SortOrder] = 1351.00 WHERE [Code] = 'cnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdj', 'Churahi', NULL, 134.90) END +VALUES ('cdj', 'Churahi', NULL, 1352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Churahi', [Definition] = NULL, [SortOrder] = 134.90 WHERE [Code] = 'cdj' END +SET [Description] = 'Churahi', [Definition] = NULL, [SortOrder] = 1352.00 WHERE [Code] = 'cdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chu', 'Church Slavic', NULL, 135.00) END +VALUES ('chu', 'Church Slavic', NULL, 1353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Church Slavic', [Definition] = NULL, [SortOrder] = 135.00 WHERE [Code] = 'chu' END +SET [Description] = 'Church Slavic', [Definition] = NULL, [SortOrder] = 1353.00 WHERE [Code] = 'chu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scb', 'Chut', NULL, 135.10) END +VALUES ('scb', 'Chut', NULL, 1354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chut', [Definition] = NULL, [SortOrder] = 135.10 WHERE [Code] = 'scb' END +SET [Description] = 'Chut', [Definition] = NULL, [SortOrder] = 1354.00 WHERE [Code] = 'scb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chk', 'Chuukese', NULL, 135.20) END +VALUES ('chk', 'Chuukese', NULL, 1355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuukese', [Definition] = NULL, [SortOrder] = 135.20 WHERE [Code] = 'chk' END +SET [Description] = 'Chuukese', [Definition] = NULL, [SortOrder] = 1355.00 WHERE [Code] = 'chk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcv', 'Chuvantsy', NULL, 135.30) END +VALUES ('xcv', 'Chuvantsy', NULL, 1356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuvantsy', [Definition] = NULL, [SortOrder] = 135.30 WHERE [Code] = 'xcv' END +SET [Description] = 'Chuvantsy', [Definition] = NULL, [SortOrder] = 1356.00 WHERE [Code] = 'xcv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chv', 'Chuvash', NULL, 135.40) END +VALUES ('chv', 'Chuvash', NULL, 1357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuvash', [Definition] = NULL, [SortOrder] = 135.40 WHERE [Code] = 'chv' END +SET [Description] = 'Chuvash', [Definition] = NULL, [SortOrder] = 1357.00 WHERE [Code] = 'chv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chw', 'Chuwabu', NULL, 135.50) END +VALUES ('chw', 'Chuwabu', NULL, 1358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuwabu', [Definition] = NULL, [SortOrder] = 135.50 WHERE [Code] = 'chw' END +SET [Description] = 'Chuwabu', [Definition] = NULL, [SortOrder] = 1358.00 WHERE [Code] = 'chw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cib', 'Ci Gbe', NULL, 135.60) END +VALUES ('cib', 'Ci Gbe', NULL, 1359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ci Gbe', [Definition] = NULL, [SortOrder] = 135.60 WHERE [Code] = 'cib' END +SET [Description] = 'Ci Gbe', [Definition] = NULL, [SortOrder] = 1359.00 WHERE [Code] = 'cib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cia', 'Cia-Cia', NULL, 135.70) END +VALUES ('cia', 'Cia-Cia', NULL, 1360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cia-Cia', [Definition] = NULL, [SortOrder] = 135.70 WHERE [Code] = 'cia' END +SET [Description] = 'Cia-Cia', [Definition] = NULL, [SortOrder] = 1360.00 WHERE [Code] = 'cia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckl', 'Cibak', NULL, 135.80) END +VALUES ('ckl', 'Cibak', NULL, 1361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cibak', [Definition] = NULL, [SortOrder] = 135.80 WHERE [Code] = 'ckl' END +SET [Description] = 'Cibak', [Definition] = NULL, [SortOrder] = 1361.00 WHERE [Code] = 'ckl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awc', 'Cicipu', NULL, 135.90) END +VALUES ('awc', 'Cicipu', NULL, 1362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cicipu', [Definition] = NULL, [SortOrder] = 135.90 WHERE [Code] = 'awc' END +SET [Description] = 'Cicipu', [Definition] = NULL, [SortOrder] = 1362.00 WHERE [Code] = 'awc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cim', 'Cimbrian', NULL, 136.00) END +VALUES ('cim', 'Cimbrian', NULL, 1363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cimbrian', [Definition] = NULL, [SortOrder] = 136.00 WHERE [Code] = 'cim' END +SET [Description] = 'Cimbrian', [Definition] = NULL, [SortOrder] = 1363.00 WHERE [Code] = 'cim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdr', 'Cinda-Regi-Tiyal', NULL, 136.10) END +VALUES ('cdr', 'Cinda-Regi-Tiyal', NULL, 1364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cinda-Regi-Tiyal', [Definition] = NULL, [SortOrder] = 136.10 WHERE [Code] = 'cdr' END +SET [Description] = 'Cinda-Regi-Tiyal', [Definition] = NULL, [SortOrder] = 1364.00 WHERE [Code] = 'cdr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cie', 'Cineni', NULL, 136.20) END +VALUES ('cie', 'Cineni', NULL, 1365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cineni', [Definition] = NULL, [SortOrder] = 136.20 WHERE [Code] = 'cie' END +SET [Description] = 'Cineni', [Definition] = NULL, [SortOrder] = 1365.00 WHERE [Code] = 'cie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cin', 'Cinta Larga', NULL, 136.30) END +VALUES ('cin', 'Cinta Larga', NULL, 1366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cinta Larga', [Definition] = NULL, [SortOrder] = 136.30 WHERE [Code] = 'cin' END +SET [Description] = 'Cinta Larga', [Definition] = NULL, [SortOrder] = 1366.00 WHERE [Code] = 'cin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcg', 'Cisalpine Gaulish', NULL, 136.40) END +VALUES ('xcg', 'Cisalpine Gaulish', NULL, 1367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cisalpine Gaulish', [Definition] = NULL, [SortOrder] = 136.40 WHERE [Code] = 'xcg' END +SET [Description] = 'Cisalpine Gaulish', [Definition] = NULL, [SortOrder] = 1367.00 WHERE [Code] = 'xcg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asg', 'Cishingini', NULL, 136.50) END +VALUES ('asg', 'Cishingini', NULL, 1368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cishingini', [Definition] = NULL, [SortOrder] = 136.50 WHERE [Code] = 'asg' END +SET [Description] = 'Cishingini', [Definition] = NULL, [SortOrder] = 1368.00 WHERE [Code] = 'asg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txt', 'Citak', NULL, 136.60) END +VALUES ('txt', 'Citak', NULL, 1369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Citak', [Definition] = NULL, [SortOrder] = 136.60 WHERE [Code] = 'txt' END +SET [Description] = 'Citak', [Definition] = NULL, [SortOrder] = 1369.00 WHERE [Code] = 'txt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgd', 'Ciwogai', NULL, 136.70) END +VALUES ('tgd', 'Ciwogai', NULL, 1370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ciwogai', [Definition] = NULL, [SortOrder] = 136.70 WHERE [Code] = 'tgd' END +SET [Description] = 'Ciwogai', [Definition] = NULL, [SortOrder] = 1370.00 WHERE [Code] = 'tgd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clm', 'Clallam', NULL, 136.80) END +VALUES ('clm', 'Clallam', NULL, 1371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Clallam', [Definition] = NULL, [SortOrder] = 136.80 WHERE [Code] = 'clm' END +SET [Description] = 'Clallam', [Definition] = NULL, [SortOrder] = 1371.00 WHERE [Code] = 'clm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcl', 'Classical Armenian', NULL, 136.90) END +VALUES ('xcl', 'Classical Armenian', NULL, 1372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Armenian', [Definition] = NULL, [SortOrder] = 136.90 WHERE [Code] = 'xcl' END +SET [Description] = 'Classical Armenian', [Definition] = NULL, [SortOrder] = 1372.00 WHERE [Code] = 'xcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myz', 'Classical Mandaic', NULL, 137.00) END +VALUES ('myz', 'Classical Mandaic', NULL, 1373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Mandaic', [Definition] = NULL, [SortOrder] = 137.00 WHERE [Code] = 'myz' END +SET [Description] = 'Classical Mandaic', [Definition] = NULL, [SortOrder] = 1373.00 WHERE [Code] = 'myz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmg', 'Classical Mongolian', NULL, 137.10) END +VALUES ('cmg', 'Classical Mongolian', NULL, 1374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Mongolian', [Definition] = NULL, [SortOrder] = 137.10 WHERE [Code] = 'cmg' END +SET [Description] = 'Classical Mongolian', [Definition] = NULL, [SortOrder] = 1374.00 WHERE [Code] = 'cmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nci', 'Classical Nahuatl', NULL, 137.20) END +VALUES ('nci', 'Classical Nahuatl', NULL, 1375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Nahuatl', [Definition] = NULL, [SortOrder] = 137.20 WHERE [Code] = 'nci' END +SET [Description] = 'Classical Nahuatl', [Definition] = NULL, [SortOrder] = 1375.00 WHERE [Code] = 'nci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwc', 'Classical Newari', NULL, 137.30) END +VALUES ('nwc', 'Classical Newari', NULL, 1376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Newari', [Definition] = NULL, [SortOrder] = 137.30 WHERE [Code] = 'nwc' END +SET [Description] = 'Classical Newari', [Definition] = NULL, [SortOrder] = 1376.00 WHERE [Code] = 'nwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwc', 'Classical Quechua', NULL, 137.40) END +VALUES ('qwc', 'Classical Quechua', NULL, 1377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Quechua', [Definition] = NULL, [SortOrder] = 137.40 WHERE [Code] = 'qwc' END +SET [Description] = 'Classical Quechua', [Definition] = NULL, [SortOrder] = 1377.00 WHERE [Code] = 'qwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syc', 'Classical Syriac', NULL, 137.50) END +VALUES ('syc', 'Classical Syriac', NULL, 1378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Syriac', [Definition] = NULL, [SortOrder] = 137.50 WHERE [Code] = 'syc' END +SET [Description] = 'Classical Syriac', [Definition] = NULL, [SortOrder] = 1378.00 WHERE [Code] = 'syc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xct', 'Classical Tibetan', NULL, 137.60) END +VALUES ('xct', 'Classical Tibetan', NULL, 1379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Tibetan', [Definition] = NULL, [SortOrder] = 137.60 WHERE [Code] = 'xct' END +SET [Description] = 'Classical Tibetan', [Definition] = NULL, [SortOrder] = 1379.00 WHERE [Code] = 'xct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcw', 'Coahuilteco', NULL, 137.70) END +VALUES ('xcw', 'Coahuilteco', NULL, 1380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coahuilteco', [Definition] = NULL, [SortOrder] = 137.70 WHERE [Code] = 'xcw' END +SET [Description] = 'Coahuilteco', [Definition] = NULL, [SortOrder] = 1380.00 WHERE [Code] = 'xcw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csi', 'Coast Miwok', NULL, 137.80) END +VALUES ('csi', 'Coast Miwok', NULL, 1381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coast Miwok', [Definition] = NULL, [SortOrder] = 137.80 WHERE [Code] = 'csi' END +SET [Description] = 'Coast Miwok', [Definition] = NULL, [SortOrder] = 1381.00 WHERE [Code] = 'csi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjc', 'Coastal Konjo', NULL, 137.90) END +VALUES ('kjc', 'Coastal Konjo', NULL, 1382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coastal Konjo', [Definition] = NULL, [SortOrder] = 137.90 WHERE [Code] = 'kjc' END +SET [Description] = 'Coastal Konjo', [Definition] = NULL, [SortOrder] = 1382.00 WHERE [Code] = 'kjc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zca', 'Coatecas Altas Zapotec', NULL, 138.00) END +VALUES ('zca', 'Coatecas Altas Zapotec', NULL, 1383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatecas Altas Zapotec', [Definition] = NULL, [SortOrder] = 138.00 WHERE [Code] = 'zca' END +SET [Description] = 'Coatecas Altas Zapotec', [Definition] = NULL, [SortOrder] = 1383.00 WHERE [Code] = 'zca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naz', 'Coatepec Nahuatl', NULL, 138.10) END +VALUES ('naz', 'Coatepec Nahuatl', NULL, 1384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatepec Nahuatl', [Definition] = NULL, [SortOrder] = 138.10 WHERE [Code] = 'naz' END +SET [Description] = 'Coatepec Nahuatl', [Definition] = NULL, [SortOrder] = 1384.00 WHERE [Code] = 'naz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mco', 'Coatlán Mixe', NULL, 138.20) END +VALUES ('mco', 'Coatlán Mixe', NULL, 1385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatlán Mixe', [Definition] = NULL, [SortOrder] = 138.20 WHERE [Code] = 'mco' END +SET [Description] = 'Coatlán Mixe', [Definition] = NULL, [SortOrder] = 1385.00 WHERE [Code] = 'mco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zps', 'Coatlán Zapotec', NULL, 138.30) END +VALUES ('zps', 'Coatlán Zapotec', NULL, 1386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatlán Zapotec', [Definition] = NULL, [SortOrder] = 138.30 WHERE [Code] = 'zps' END +SET [Description] = 'Coatlán Zapotec', [Definition] = NULL, [SortOrder] = 1386.00 WHERE [Code] = 'zps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miz', 'Coatzospan Mixtec', NULL, 138.40) END +VALUES ('miz', 'Coatzospan Mixtec', NULL, 1387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatzospan Mixtec', [Definition] = NULL, [SortOrder] = 138.40 WHERE [Code] = 'miz' END +SET [Description] = 'Coatzospan Mixtec', [Definition] = NULL, [SortOrder] = 1387.00 WHERE [Code] = 'miz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cod', 'Cocama-Cocamilla', NULL, 138.50) END +VALUES ('cod', 'Cocama-Cocamilla', NULL, 1388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cocama-Cocamilla', [Definition] = NULL, [SortOrder] = 138.50 WHERE [Code] = 'cod' END +SET [Description] = 'Cocama-Cocamilla', [Definition] = NULL, [SortOrder] = 1388.00 WHERE [Code] = 'cod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coj', 'Cochimi', NULL, 138.60) END +VALUES ('coj', 'Cochimi', NULL, 1389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cochimi', [Definition] = NULL, [SortOrder] = 138.60 WHERE [Code] = 'coj' END +SET [Description] = 'Cochimi', [Definition] = NULL, [SortOrder] = 1389.00 WHERE [Code] = 'coj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coc', 'Cocopa', NULL, 138.70) END +VALUES ('coc', 'Cocopa', NULL, 1390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cocopa', [Definition] = NULL, [SortOrder] = 138.70 WHERE [Code] = 'coc' END +SET [Description] = 'Cocopa', [Definition] = NULL, [SortOrder] = 1390.00 WHERE [Code] = 'coc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coa', 'Cocos Islands Malay', NULL, 138.80) END +VALUES ('coa', 'Cocos Islands Malay', NULL, 1391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cocos Islands Malay', [Definition] = NULL, [SortOrder] = 138.80 WHERE [Code] = 'coa' END +SET [Description] = 'Cocos Islands Malay', [Definition] = NULL, [SortOrder] = 1391.00 WHERE [Code] = 'coa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crd', 'Coeur d''Alene', NULL, 138.90) END +VALUES ('crd', 'Coeur d''Alene', NULL, 1392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coeur d''Alene', [Definition] = NULL, [SortOrder] = 138.90 WHERE [Code] = 'crd' END +SET [Description] = 'Coeur d''Alene', [Definition] = NULL, [SortOrder] = 1392.00 WHERE [Code] = 'crd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'con') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('con', 'Cofán', NULL, 139.00) END +VALUES ('con', 'Cofán', NULL, 1393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cofán', [Definition] = NULL, [SortOrder] = 139.00 WHERE [Code] = 'con' END +SET [Description] = 'Cofán', [Definition] = NULL, [SortOrder] = 1393.00 WHERE [Code] = 'con' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kog', 'Cogui', NULL, 139.10) END +VALUES ('kog', 'Cogui', NULL, 1394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cogui', [Definition] = NULL, [SortOrder] = 139.10 WHERE [Code] = 'kog' END +SET [Description] = 'Cogui', [Definition] = NULL, [SortOrder] = 1394.00 WHERE [Code] = 'kog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liw', 'Col', NULL, 139.20) END +VALUES ('liw', 'Col', NULL, 1395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Col', [Definition] = NULL, [SortOrder] = 139.20 WHERE [Code] = 'liw' END +SET [Description] = 'Col', [Definition] = NULL, [SortOrder] = 1395.00 WHERE [Code] = 'liw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csn', 'Colombian Sign Language', NULL, 139.30) END +VALUES ('csn', 'Colombian Sign Language', NULL, 1396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Colombian Sign Language', [Definition] = NULL, [SortOrder] = 139.30 WHERE [Code] = 'csn' END +SET [Description] = 'Colombian Sign Language', [Definition] = NULL, [SortOrder] = 1396.00 WHERE [Code] = 'csn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gct', 'Colonia Tovar German', NULL, 139.40) END +VALUES ('gct', 'Colonia Tovar German', NULL, 1397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Colonia Tovar German', [Definition] = NULL, [SortOrder] = 139.40 WHERE [Code] = 'gct' END +SET [Description] = 'Colonia Tovar German', [Definition] = NULL, [SortOrder] = 1397.00 WHERE [Code] = 'gct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cof', 'Colorado', NULL, 139.50) END +VALUES ('cof', 'Colorado', NULL, 1398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Colorado', [Definition] = NULL, [SortOrder] = 139.50 WHERE [Code] = 'cof' END +SET [Description] = 'Colorado', [Definition] = NULL, [SortOrder] = 1398.00 WHERE [Code] = 'cof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'col') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('col', 'Columbia-Wenatchi', NULL, 139.60) END +VALUES ('col', 'Columbia-Wenatchi', NULL, 1399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Columbia-Wenatchi', [Definition] = NULL, [SortOrder] = 139.60 WHERE [Code] = 'col' END +SET [Description] = 'Columbia-Wenatchi', [Definition] = NULL, [SortOrder] = 1399.00 WHERE [Code] = 'col' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cco', 'Comaltepec Chinantec', NULL, 139.70) END +VALUES ('cco', 'Comaltepec Chinantec', NULL, 1400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Comaltepec Chinantec', [Definition] = NULL, [SortOrder] = 139.70 WHERE [Code] = 'cco' END +SET [Description] = 'Comaltepec Chinantec', [Definition] = NULL, [SortOrder] = 1400.00 WHERE [Code] = 'cco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'com') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('com', 'Comanche', NULL, 139.80) END +VALUES ('com', 'Comanche', NULL, 1401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Comanche', [Definition] = NULL, [SortOrder] = 139.80 WHERE [Code] = 'com' END +SET [Description] = 'Comanche', [Definition] = NULL, [SortOrder] = 1401.00 WHERE [Code] = 'com' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcm', 'Comecrudo', NULL, 139.90) END +VALUES ('xcm', 'Comecrudo', NULL, 1402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Comecrudo', [Definition] = NULL, [SortOrder] = 139.90 WHERE [Code] = 'xcm' END +SET [Description] = 'Comecrudo', [Definition] = NULL, [SortOrder] = 1402.00 WHERE [Code] = 'xcm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cfg', 'Como Karim', NULL, 140.00) END +VALUES ('cfg', 'Como Karim', NULL, 1403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Como Karim', [Definition] = NULL, [SortOrder] = 140.00 WHERE [Code] = 'cfg' END +SET [Description] = 'Como Karim', [Definition] = NULL, [SortOrder] = 1403.00 WHERE [Code] = 'cfg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coo', 'Comox', NULL, 140.10) END +VALUES ('coo', 'Comox', NULL, 1404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Comox', [Definition] = NULL, [SortOrder] = 140.10 WHERE [Code] = 'coo' END +SET [Description] = 'Comox', [Definition] = NULL, [SortOrder] = 1404.00 WHERE [Code] = 'coo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cno', 'Con', NULL, 140.20) END +VALUES ('cno', 'Con', NULL, 1405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Con', [Definition] = NULL, [SortOrder] = 140.20 WHERE [Code] = 'cno' END +SET [Description] = 'Con', [Definition] = NULL, [SortOrder] = 1405.00 WHERE [Code] = 'cno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swc', 'Congo Swahili', NULL, 140.30) END +VALUES ('swc', 'Congo Swahili', NULL, 1406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Congo Swahili', [Definition] = NULL, [SortOrder] = 140.30 WHERE [Code] = 'swc' END +SET [Description] = 'Congo Swahili', [Definition] = NULL, [SortOrder] = 1406.00 WHERE [Code] = 'swc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnc', 'Côông', NULL, 140.40) END +VALUES ('cnc', 'Côông', NULL, 1407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Côông', [Definition] = NULL, [SortOrder] = 140.40 WHERE [Code] = 'cnc' END +SET [Description] = 'Côông', [Definition] = NULL, [SortOrder] = 1407.00 WHERE [Code] = 'cnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csz', 'Coos', NULL, 140.50) END +VALUES ('csz', 'Coos', NULL, 1408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coos', [Definition] = NULL, [SortOrder] = 140.50 WHERE [Code] = 'csz' END +SET [Description] = 'Coos', [Definition] = NULL, [SortOrder] = 1408.00 WHERE [Code] = 'csz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zoc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zoc', 'Copainalá Zoque', NULL, 140.60) END +VALUES ('zoc', 'Copainalá Zoque', NULL, 1409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Copainalá Zoque', [Definition] = NULL, [SortOrder] = 140.60 WHERE [Code] = 'zoc' END +SET [Description] = 'Copainalá Zoque', [Definition] = NULL, [SortOrder] = 1409.00 WHERE [Code] = 'zoc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trc', 'Copala Triqui', NULL, 140.70) END +VALUES ('trc', 'Copala Triqui', NULL, 1410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Copala Triqui', [Definition] = NULL, [SortOrder] = 140.70 WHERE [Code] = 'trc' END +SET [Description] = 'Copala Triqui', [Definition] = NULL, [SortOrder] = 1410.00 WHERE [Code] = 'trc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cop', 'Coptic', NULL, 140.80) END +VALUES ('cop', 'Coptic', NULL, 1411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coptic', [Definition] = NULL, [SortOrder] = 140.80 WHERE [Code] = 'cop' END +SET [Description] = 'Coptic', [Definition] = NULL, [SortOrder] = 1411.00 WHERE [Code] = 'cop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coq', 'Coquille', NULL, 140.90) END +VALUES ('coq', 'Coquille', NULL, 1412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coquille', [Definition] = NULL, [SortOrder] = 140.90 WHERE [Code] = 'coq' END +SET [Description] = 'Coquille', [Definition] = NULL, [SortOrder] = 1412.00 WHERE [Code] = 'coq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cry', 'Cori', NULL, 141.00) END +VALUES ('cry', 'Cori', NULL, 1413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cori', [Definition] = NULL, [SortOrder] = 141.00 WHERE [Code] = 'cry' END +SET [Description] = 'Cori', [Definition] = NULL, [SortOrder] = 1413.00 WHERE [Code] = 'cry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cor', 'Cornish', NULL, 141.10) END +VALUES ('cor', 'Cornish', NULL, 1414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cornish', [Definition] = NULL, [SortOrder] = 141.10 WHERE [Code] = 'cor' END +SET [Description] = 'Cornish', [Definition] = NULL, [SortOrder] = 1414.00 WHERE [Code] = 'cor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwa', 'Corongo Ancash Quechua', NULL, 141.20) END +VALUES ('qwa', 'Corongo Ancash Quechua', NULL, 1415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Corongo Ancash Quechua', [Definition] = NULL, [SortOrder] = 141.20 WHERE [Code] = 'qwa' END +SET [Description] = 'Corongo Ancash Quechua', [Definition] = NULL, [SortOrder] = 1415.00 WHERE [Code] = 'qwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cos', 'Corsican', NULL, 141.30) END +VALUES ('cos', 'Corsican', NULL, 1416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Corsican', [Definition] = NULL, [SortOrder] = 141.30 WHERE [Code] = 'cos' END +SET [Description] = 'Corsican', [Definition] = NULL, [SortOrder] = 1416.00 WHERE [Code] = 'cos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csr', 'Costa Rican Sign Language', NULL, 141.40) END +VALUES ('csr', 'Costa Rican Sign Language', NULL, 1417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Costa Rican Sign Language', [Definition] = NULL, [SortOrder] = 141.40 WHERE [Code] = 'csr' END +SET [Description] = 'Costa Rican Sign Language', [Definition] = NULL, [SortOrder] = 1417.00 WHERE [Code] = 'csr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mta', 'Cotabato Manobo', NULL, 141.50) END +VALUES ('mta', 'Cotabato Manobo', NULL, 1418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cotabato Manobo', [Definition] = NULL, [SortOrder] = 141.50 WHERE [Code] = 'mta' END +SET [Description] = 'Cotabato Manobo', [Definition] = NULL, [SortOrder] = 1418.00 WHERE [Code] = 'mta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcn', 'Cotoname', NULL, 141.60) END +VALUES ('xcn', 'Cotoname', NULL, 1419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cotoname', [Definition] = NULL, [SortOrder] = 141.60 WHERE [Code] = 'xcn' END +SET [Description] = 'Cotoname', [Definition] = NULL, [SortOrder] = 1419.00 WHERE [Code] = 'xcn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cow', 'Cowlitz', NULL, 141.70) END +VALUES ('cow', 'Cowlitz', NULL, 1420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cowlitz', [Definition] = NULL, [SortOrder] = 141.70 WHERE [Code] = 'cow' END +SET [Description] = 'Cowlitz', [Definition] = NULL, [SortOrder] = 1420.00 WHERE [Code] = 'cow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbf', 'Coyotepec Popoloca', NULL, 141.80) END +VALUES ('pbf', 'Coyotepec Popoloca', NULL, 1421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coyotepec Popoloca', [Definition] = NULL, [SortOrder] = 141.80 WHERE [Code] = 'pbf' END +SET [Description] = 'Coyotepec Popoloca', [Definition] = NULL, [SortOrder] = 1421.00 WHERE [Code] = 'pbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toc', 'Coyutla Totonac', NULL, 141.90) END +VALUES ('toc', 'Coyutla Totonac', NULL, 1422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coyutla Totonac', [Definition] = NULL, [SortOrder] = 141.90 WHERE [Code] = 'toc' END +SET [Description] = 'Coyutla Totonac', [Definition] = NULL, [SortOrder] = 1422.00 WHERE [Code] = 'toc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cre', 'Cree', NULL, 142.00) END +VALUES ('cre', 'Cree', NULL, 1423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cree', [Definition] = NULL, [SortOrder] = 142.00 WHERE [Code] = 'cre' END +SET [Description] = 'Cree', [Definition] = NULL, [SortOrder] = 1423.00 WHERE [Code] = 'cre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mus', 'Creek', NULL, 142.10) END +VALUES ('mus', 'Creek', NULL, 1424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Creek', [Definition] = NULL, [SortOrder] = 142.10 WHERE [Code] = 'mus' END +SET [Description] = 'Creek', [Definition] = NULL, [SortOrder] = 1424.00 WHERE [Code] = 'mus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crh', 'Crimean Tatar', NULL, 142.20) END +VALUES ('crh', 'Crimean Tatar', NULL, 1425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Crimean Tatar', [Definition] = NULL, [SortOrder] = 142.20 WHERE [Code] = 'crh' END +SET [Description] = 'Crimean Tatar', [Definition] = NULL, [SortOrder] = 1425.00 WHERE [Code] = 'crh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csq', 'Croatia Sign Language', NULL, 142.30) END +VALUES ('csq', 'Croatia Sign Language', NULL, 1426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Croatia Sign Language', [Definition] = NULL, [SortOrder] = 142.30 WHERE [Code] = 'csq' END +SET [Description] = 'Croatia Sign Language', [Definition] = NULL, [SortOrder] = 1426.00 WHERE [Code] = 'csq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrv', 'Croatian', NULL, 142.40) END +VALUES ('hrv', 'Croatian', NULL, 1427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Croatian', [Definition] = NULL, [SortOrder] = 142.40 WHERE [Code] = 'hrv' END +SET [Description] = 'Croatian', [Definition] = NULL, [SortOrder] = 1427.00 WHERE [Code] = 'hrv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfn', 'Cross River Mbembe', NULL, 142.50) END +VALUES ('mfn', 'Cross River Mbembe', NULL, 1428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cross River Mbembe', [Definition] = NULL, [SortOrder] = 142.50 WHERE [Code] = 'mfn' END +SET [Description] = 'Cross River Mbembe', [Definition] = NULL, [SortOrder] = 1428.00 WHERE [Code] = 'mfn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cro', 'Crow', NULL, 142.60) END +VALUES ('cro', 'Crow', NULL, 1429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Crow', [Definition] = NULL, [SortOrder] = 142.60 WHERE [Code] = 'cro' END +SET [Description] = 'Crow', [Definition] = NULL, [SortOrder] = 1429.00 WHERE [Code] = 'cro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crz', 'Cruzeño', NULL, 142.70) END +VALUES ('crz', 'Cruzeño', NULL, 1430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cruzeño', [Definition] = NULL, [SortOrder] = 142.70 WHERE [Code] = 'crz' END +SET [Description] = 'Cruzeño', [Definition] = NULL, [SortOrder] = 1430.00 WHERE [Code] = 'crz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cua', 'Cua', NULL, 142.80) END +VALUES ('cua', 'Cua', NULL, 1431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cua', [Definition] = NULL, [SortOrder] = 142.80 WHERE [Code] = 'cua' END +SET [Description] = 'Cua', [Definition] = NULL, [SortOrder] = 1431.00 WHERE [Code] = 'cua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csf', 'Cuba Sign Language', NULL, 142.90) END +VALUES ('csf', 'Cuba Sign Language', NULL, 1432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuba Sign Language', [Definition] = NULL, [SortOrder] = 142.90 WHERE [Code] = 'csf' END +SET [Description] = 'Cuba Sign Language', [Definition] = NULL, [SortOrder] = 1432.00 WHERE [Code] = 'csf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cub', 'Cubeo', NULL, 143.00) END +VALUES ('cub', 'Cubeo', NULL, 1433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cubeo', [Definition] = NULL, [SortOrder] = 143.00 WHERE [Code] = 'cub' END +SET [Description] = 'Cubeo', [Definition] = NULL, [SortOrder] = 1433.00 WHERE [Code] = 'cub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cui', 'Cuiba', NULL, 143.10) END +VALUES ('cui', 'Cuiba', NULL, 1434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuiba', [Definition] = NULL, [SortOrder] = 143.10 WHERE [Code] = 'cui' END +SET [Description] = 'Cuiba', [Definition] = NULL, [SortOrder] = 1434.00 WHERE [Code] = 'cui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuy', 'Cuitlatec', NULL, 143.20) END +VALUES ('cuy', 'Cuitlatec', NULL, 1435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuitlatec', [Definition] = NULL, [SortOrder] = 143.20 WHERE [Code] = 'cuy' END +SET [Description] = 'Cuitlatec', [Definition] = NULL, [SortOrder] = 1435.00 WHERE [Code] = 'cuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cul', 'Culina', NULL, 143.30) END +VALUES ('cul', 'Culina', NULL, 1436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Culina', [Definition] = NULL, [SortOrder] = 143.30 WHERE [Code] = 'cul' END +SET [Description] = 'Culina', [Definition] = NULL, [SortOrder] = 1436.00 WHERE [Code] = 'cul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuo', 'Cumanagoto', NULL, 143.40) END +VALUES ('cuo', 'Cumanagoto', NULL, 1437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cumanagoto', [Definition] = NULL, [SortOrder] = 143.40 WHERE [Code] = 'cuo' END +SET [Description] = 'Cumanagoto', [Definition] = NULL, [SortOrder] = 1437.00 WHERE [Code] = 'cuo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcb', 'Cumbric', NULL, 143.50) END +VALUES ('xcb', 'Cumbric', NULL, 1438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cumbric', [Definition] = NULL, [SortOrder] = 143.50 WHERE [Code] = 'xcb' END +SET [Description] = 'Cumbric', [Definition] = NULL, [SortOrder] = 1438.00 WHERE [Code] = 'xcb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuq', 'Cun', NULL, 143.60) END +VALUES ('cuq', 'Cun', NULL, 1439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cun', [Definition] = NULL, [SortOrder] = 143.60 WHERE [Code] = 'cuq' END +SET [Description] = 'Cun', [Definition] = NULL, [SortOrder] = 1439.00 WHERE [Code] = 'cuq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlu', 'Cuneiform Luwian', NULL, 143.70) END +VALUES ('xlu', 'Cuneiform Luwian', NULL, 1440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuneiform Luwian', [Definition] = NULL, [SortOrder] = 143.70 WHERE [Code] = 'xlu' END +SET [Description] = 'Cuneiform Luwian', [Definition] = NULL, [SortOrder] = 1440.00 WHERE [Code] = 'xlu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cup', 'Cupeño', NULL, 143.80) END +VALUES ('cup', 'Cupeño', NULL, 1441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cupeño', [Definition] = NULL, [SortOrder] = 143.80 WHERE [Code] = 'cup' END +SET [Description] = 'Cupeño', [Definition] = NULL, [SortOrder] = 1441.00 WHERE [Code] = 'cup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcu', 'Curonian', NULL, 143.90) END +VALUES ('xcu', 'Curonian', NULL, 1442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Curonian', [Definition] = NULL, [SortOrder] = 143.90 WHERE [Code] = 'xcu' END +SET [Description] = 'Curonian', [Definition] = NULL, [SortOrder] = 1442.00 WHERE [Code] = 'xcu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpc', 'Curripaco', NULL, 144.00) END +VALUES ('kpc', 'Curripaco', NULL, 1443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Curripaco', [Definition] = NULL, [SortOrder] = 144.00 WHERE [Code] = 'kpc' END +SET [Description] = 'Curripaco', [Definition] = NULL, [SortOrder] = 1443.00 WHERE [Code] = 'kpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quz', 'Cusco Quechua', NULL, 144.10) END +VALUES ('quz', 'Cusco Quechua', NULL, 1444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cusco Quechua', [Definition] = NULL, [SortOrder] = 144.10 WHERE [Code] = 'quz' END +SET [Description] = 'Cusco Quechua', [Definition] = NULL, [SortOrder] = 1444.00 WHERE [Code] = 'quz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccl', 'Cutchi-Swahili', NULL, 144.20) END +VALUES ('ccl', 'Cutchi-Swahili', NULL, 1445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cutchi-Swahili', [Definition] = NULL, [SortOrder] = 144.20 WHERE [Code] = 'ccl' END +SET [Description] = 'Cutchi-Swahili', [Definition] = NULL, [SortOrder] = 1445.00 WHERE [Code] = 'ccl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuv', 'Cuvok', NULL, 144.30) END +VALUES ('cuv', 'Cuvok', NULL, 1446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuvok', [Definition] = NULL, [SortOrder] = 144.30 WHERE [Code] = 'cuv' END +SET [Description] = 'Cuvok', [Definition] = NULL, [SortOrder] = 1446.00 WHERE [Code] = 'cuv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtu', 'Cuyamecalco Mixtec', NULL, 144.40) END +VALUES ('xtu', 'Cuyamecalco Mixtec', NULL, 1447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuyamecalco Mixtec', [Definition] = NULL, [SortOrder] = 144.40 WHERE [Code] = 'xtu' END +SET [Description] = 'Cuyamecalco Mixtec', [Definition] = NULL, [SortOrder] = 1447.00 WHERE [Code] = 'xtu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cyo', 'Cuyonon', NULL, 144.50) END +VALUES ('cyo', 'Cuyonon', NULL, 1448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuyonon', [Definition] = NULL, [SortOrder] = 144.50 WHERE [Code] = 'cyo' END +SET [Description] = 'Cuyonon', [Definition] = NULL, [SortOrder] = 1448.00 WHERE [Code] = 'cyo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwy', 'Cwi Bwamu', NULL, 144.60) END +VALUES ('bwy', 'Cwi Bwamu', NULL, 1449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cwi Bwamu', [Definition] = NULL, [SortOrder] = 144.60 WHERE [Code] = 'bwy' END +SET [Description] = 'Cwi Bwamu', [Definition] = NULL, [SortOrder] = 1449.00 WHERE [Code] = 'bwy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acy', 'Cypriot Arabic', NULL, 144.70) END +VALUES ('acy', 'Cypriot Arabic', NULL, 1450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cypriot Arabic', [Definition] = NULL, [SortOrder] = 144.70 WHERE [Code] = 'acy' END +SET [Description] = 'Cypriot Arabic', [Definition] = NULL, [SortOrder] = 1450.00 WHERE [Code] = 'acy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ces') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ces', 'Czech', NULL, 144.80) END +VALUES ('ces', 'Czech', NULL, 1451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Czech', [Definition] = NULL, [SortOrder] = 144.80 WHERE [Code] = 'ces' END +SET [Description] = 'Czech', [Definition] = NULL, [SortOrder] = 1451.00 WHERE [Code] = 'ces' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cse', 'Czech Sign Language', NULL, 144.90) END +VALUES ('cse', 'Czech Sign Language', NULL, 1452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Czech Sign Language', [Definition] = NULL, [SortOrder] = 144.90 WHERE [Code] = 'cse' END +SET [Description] = 'Czech Sign Language', [Definition] = NULL, [SortOrder] = 1452.00 WHERE [Code] = 'cse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzf', 'Da''a Kaili', NULL, 145.00) END +VALUES ('kzf', 'Da''a Kaili', NULL, 1453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Da''a Kaili', [Definition] = NULL, [SortOrder] = 145.00 WHERE [Code] = 'kzf' END +SET [Description] = 'Da''a Kaili', [Definition] = NULL, [SortOrder] = 1453.00 WHERE [Code] = 'kzf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dao', 'Daai Chin', NULL, 145.10) END +VALUES ('dao', 'Daai Chin', NULL, 1454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daai Chin', [Definition] = NULL, [SortOrder] = 145.10 WHERE [Code] = 'dao' END +SET [Description] = 'Daai Chin', [Definition] = NULL, [SortOrder] = 1454.00 WHERE [Code] = 'dao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpa', 'Daakaka', NULL, 145.20) END +VALUES ('bpa', 'Daakaka', NULL, 1455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daakaka', [Definition] = NULL, [SortOrder] = 145.20 WHERE [Code] = 'bpa' END +SET [Description] = 'Daakaka', [Definition] = NULL, [SortOrder] = 1455.00 WHERE [Code] = 'bpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lni', 'Daantanai''', NULL, 145.30) END +VALUES ('lni', 'Daantanai''', NULL, 1456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daantanai''', [Definition] = NULL, [SortOrder] = 145.30 WHERE [Code] = 'lni' END +SET [Description] = 'Daantanai''', [Definition] = NULL, [SortOrder] = 1456.00 WHERE [Code] = 'lni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsh', 'Daasanach', NULL, 145.40) END +VALUES ('dsh', 'Daasanach', NULL, 1457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daasanach', [Definition] = NULL, [SortOrder] = 145.40 WHERE [Code] = 'dsh' END +SET [Description] = 'Daasanach', [Definition] = NULL, [SortOrder] = 1457.00 WHERE [Code] = 'dsh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtn', 'Daats''i´in', NULL, 145.50) END +VALUES ('dtn', 'Daats''i´in', NULL, 1458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daats''i´in', [Definition] = NULL, [SortOrder] = 145.50 WHERE [Code] = 'dtn' END +SET [Description] = 'Daats''i´in', [Definition] = NULL, [SortOrder] = 1458.00 WHERE [Code] = 'dtn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbq', 'Daba', NULL, 145.60) END +VALUES ('dbq', 'Daba', NULL, 1459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daba', [Definition] = NULL, [SortOrder] = 145.60 WHERE [Code] = 'dbq' END +SET [Description] = 'Daba', [Definition] = NULL, [SortOrder] = 1459.00 WHERE [Code] = 'dbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbr', 'Dabarre', NULL, 145.70) END +VALUES ('dbr', 'Dabarre', NULL, 1460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dabarre', [Definition] = NULL, [SortOrder] = 145.70 WHERE [Code] = 'dbr' END +SET [Description] = 'Dabarre', [Definition] = NULL, [SortOrder] = 1460.00 WHERE [Code] = 'dbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbe', 'Dabe', NULL, 145.80) END +VALUES ('dbe', 'Dabe', NULL, 1461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dabe', [Definition] = NULL, [SortOrder] = 145.80 WHERE [Code] = 'dbe' END +SET [Description] = 'Dabe', [Definition] = NULL, [SortOrder] = 1461.00 WHERE [Code] = 'dbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdc', 'Dacian', NULL, 145.90) END +VALUES ('xdc', 'Dacian', NULL, 1462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dacian', [Definition] = NULL, [SortOrder] = 145.90 WHERE [Code] = 'xdc' END +SET [Description] = 'Dacian', [Definition] = NULL, [SortOrder] = 1462.00 WHERE [Code] = 'xdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dda', 'Dadi Dadi', NULL, 146.00) END +VALUES ('dda', 'Dadi Dadi', NULL, 1463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dadi Dadi', [Definition] = NULL, [SortOrder] = 146.00 WHERE [Code] = 'dda' END +SET [Description] = 'Dadi Dadi', [Definition] = NULL, [SortOrder] = 1463.00 WHERE [Code] = 'dda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mps', 'Dadibi', NULL, 146.10) END +VALUES ('mps', 'Dadibi', NULL, 1464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dadibi', [Definition] = NULL, [SortOrder] = 146.10 WHERE [Code] = 'mps' END +SET [Description] = 'Dadibi', [Definition] = NULL, [SortOrder] = 1464.00 WHERE [Code] = 'mps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbd', 'Dadiya', NULL, 146.20) END +VALUES ('dbd', 'Dadiya', NULL, 1465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dadiya', [Definition] = NULL, [SortOrder] = 146.20 WHERE [Code] = 'dbd' END +SET [Description] = 'Dadiya', [Definition] = NULL, [SortOrder] = 1465.00 WHERE [Code] = 'dbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgz', 'Daga', NULL, 146.30) END +VALUES ('dgz', 'Daga', NULL, 1466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daga', [Definition] = NULL, [SortOrder] = 146.30 WHERE [Code] = 'dgz' END +SET [Description] = 'Daga', [Definition] = NULL, [SortOrder] = 1466.00 WHERE [Code] = 'dgz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgd', 'Dagaari Dioula', NULL, 146.40) END +VALUES ('dgd', 'Dagaari Dioula', NULL, 1467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagaari Dioula', [Definition] = NULL, [SortOrder] = 146.40 WHERE [Code] = 'dgd' END +SET [Description] = 'Dagaari Dioula', [Definition] = NULL, [SortOrder] = 1467.00 WHERE [Code] = 'dgd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgk', 'Dagba', NULL, 146.50) END +VALUES ('dgk', 'Dagba', NULL, 1468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagba', [Definition] = NULL, [SortOrder] = 146.50 WHERE [Code] = 'dgk' END +SET [Description] = 'Dagba', [Definition] = NULL, [SortOrder] = 1468.00 WHERE [Code] = 'dgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dag', 'Dagbani', NULL, 146.60) END +VALUES ('dag', 'Dagbani', NULL, 1469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagbani', [Definition] = NULL, [SortOrder] = 146.60 WHERE [Code] = 'dag' END +SET [Description] = 'Dagbani', [Definition] = NULL, [SortOrder] = 1469.00 WHERE [Code] = 'dag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dec', 'Dagik', NULL, 146.70) END +VALUES ('dec', 'Dagik', NULL, 1470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagik', [Definition] = NULL, [SortOrder] = 146.70 WHERE [Code] = 'dec' END +SET [Description] = 'Dagik', [Definition] = NULL, [SortOrder] = 1470.00 WHERE [Code] = 'dec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgn', 'Dagoman', NULL, 146.80) END +VALUES ('dgn', 'Dagoman', NULL, 1471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagoman', [Definition] = NULL, [SortOrder] = 146.80 WHERE [Code] = 'dgn' END +SET [Description] = 'Dagoman', [Definition] = NULL, [SortOrder] = 1471.00 WHERE [Code] = 'dgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dlk', 'Dahalik', NULL, 146.90) END +VALUES ('dlk', 'Dahalik', NULL, 1472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dahalik', [Definition] = NULL, [SortOrder] = 146.90 WHERE [Code] = 'dlk' END +SET [Description] = 'Dahalik', [Definition] = NULL, [SortOrder] = 1472.00 WHERE [Code] = 'dlk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dal', 'Dahalo', NULL, 147.00) END +VALUES ('dal', 'Dahalo', NULL, 1473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dahalo', [Definition] = NULL, [SortOrder] = 147.00 WHERE [Code] = 'dal' END +SET [Description] = 'Dahalo', [Definition] = NULL, [SortOrder] = 1473.00 WHERE [Code] = 'dal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'das') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('das', 'Daho-Doo', NULL, 147.10) END +VALUES ('das', 'Daho-Doo', NULL, 1474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daho-Doo', [Definition] = NULL, [SortOrder] = 147.10 WHERE [Code] = 'das' END +SET [Description] = 'Daho-Doo', [Definition] = NULL, [SortOrder] = 1474.00 WHERE [Code] = 'das' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dij', 'Dai', NULL, 147.20) END +VALUES ('dij', 'Dai', NULL, 1475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dai', [Definition] = NULL, [SortOrder] = 147.20 WHERE [Code] = 'dij' END +SET [Description] = 'Dai', [Definition] = NULL, [SortOrder] = 1475.00 WHERE [Code] = 'dij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhd', 'Dai Zhuang', NULL, 147.30) END +VALUES ('zhd', 'Dai Zhuang', NULL, 1476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dai Zhuang', [Definition] = NULL, [SortOrder] = 147.30 WHERE [Code] = 'zhd' END +SET [Description] = 'Dai Zhuang', [Definition] = NULL, [SortOrder] = 1476.00 WHERE [Code] = 'zhd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drb', 'Dair', NULL, 147.40) END +VALUES ('drb', 'Dair', NULL, 1477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dair', [Definition] = NULL, [SortOrder] = 147.40 WHERE [Code] = 'drb' END +SET [Description] = 'Dair', [Definition] = NULL, [SortOrder] = 1477.00 WHERE [Code] = 'drb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dkk', 'Dakka', NULL, 147.50) END +VALUES ('dkk', 'Dakka', NULL, 1478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dakka', [Definition] = NULL, [SortOrder] = 147.50 WHERE [Code] = 'dkk' END +SET [Description] = 'Dakka', [Definition] = NULL, [SortOrder] = 1478.00 WHERE [Code] = 'dkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dak', 'Dakota', NULL, 147.60) END +VALUES ('dak', 'Dakota', NULL, 1479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dakota', [Definition] = NULL, [SortOrder] = 147.60 WHERE [Code] = 'dak' END +SET [Description] = 'Dakota', [Definition] = NULL, [SortOrder] = 1479.00 WHERE [Code] = 'dak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dka', 'Dakpakha', NULL, 147.70) END +VALUES ('dka', 'Dakpakha', NULL, 1480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dakpakha', [Definition] = NULL, [SortOrder] = 147.70 WHERE [Code] = 'dka' END +SET [Description] = 'Dakpakha', [Definition] = NULL, [SortOrder] = 1480.00 WHERE [Code] = 'dka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngk', 'Dalabon', NULL, 147.80) END +VALUES ('ngk', 'Dalabon', NULL, 1481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dalabon', [Definition] = NULL, [SortOrder] = 147.80 WHERE [Code] = 'ngk' END +SET [Description] = 'Dalabon', [Definition] = NULL, [SortOrder] = 1481.00 WHERE [Code] = 'ngk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dlm', 'Dalmatian', NULL, 147.90) END +VALUES ('dlm', 'Dalmatian', NULL, 1482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dalmatian', [Definition] = NULL, [SortOrder] = 147.90 WHERE [Code] = 'dlm' END +SET [Description] = 'Dalmatian', [Definition] = NULL, [SortOrder] = 1482.00 WHERE [Code] = 'dlm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bev', 'Daloa Bété', NULL, 148.00) END +VALUES ('bev', 'Daloa Bété', NULL, 1483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daloa Bété', [Definition] = NULL, [SortOrder] = 148.00 WHERE [Code] = 'bev' END +SET [Description] = 'Daloa Bété', [Definition] = NULL, [SortOrder] = 1483.00 WHERE [Code] = 'bev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmm', 'Dama', NULL, 148.10) END +VALUES ('dmm', 'Dama', NULL, 1484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dama', [Definition] = NULL, [SortOrder] = 148.10 WHERE [Code] = 'dmm' END +SET [Description] = 'Dama', [Definition] = NULL, [SortOrder] = 1484.00 WHERE [Code] = 'dmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dam', 'Damakawa', NULL, 148.20) END +VALUES ('dam', 'Damakawa', NULL, 1485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Damakawa', [Definition] = NULL, [SortOrder] = 148.20 WHERE [Code] = 'dam' END +SET [Description] = 'Damakawa', [Definition] = NULL, [SortOrder] = 1485.00 WHERE [Code] = 'dam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uhn', 'Damal', NULL, 148.30) END +VALUES ('uhn', 'Damal', NULL, 1486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Damal', [Definition] = NULL, [SortOrder] = 148.30 WHERE [Code] = 'uhn' END +SET [Description] = 'Damal', [Definition] = NULL, [SortOrder] = 1486.00 WHERE [Code] = 'uhn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dac', 'Dambi', NULL, 148.40) END +VALUES ('dac', 'Dambi', NULL, 1487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dambi', [Definition] = NULL, [SortOrder] = 148.40 WHERE [Code] = 'dac' END +SET [Description] = 'Dambi', [Definition] = NULL, [SortOrder] = 1487.00 WHERE [Code] = 'dac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dml', 'Dameli', NULL, 148.50) END +VALUES ('dml', 'Dameli', NULL, 1488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dameli', [Definition] = NULL, [SortOrder] = 148.50 WHERE [Code] = 'dml' END +SET [Description] = 'Dameli', [Definition] = NULL, [SortOrder] = 1488.00 WHERE [Code] = 'dml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dms', 'Dampelas', NULL, 148.60) END +VALUES ('dms', 'Dampelas', NULL, 1489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dampelas', [Definition] = NULL, [SortOrder] = 148.60 WHERE [Code] = 'dms' END +SET [Description] = 'Dampelas', [Definition] = NULL, [SortOrder] = 1489.00 WHERE [Code] = 'dms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnj', 'Dan', NULL, 148.70) END +VALUES ('dnj', 'Dan', NULL, 1490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dan', [Definition] = NULL, [SortOrder] = 148.70 WHERE [Code] = 'dnj' END +SET [Description] = 'Dan', [Definition] = NULL, [SortOrder] = 1490.00 WHERE [Code] = 'dnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnr', 'Danaru', NULL, 148.80) END +VALUES ('dnr', 'Danaru', NULL, 1491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danaru', [Definition] = NULL, [SortOrder] = 148.80 WHERE [Code] = 'dnr' END +SET [Description] = 'Danaru', [Definition] = NULL, [SortOrder] = 1491.00 WHERE [Code] = 'dnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnu', 'Danau', NULL, 148.90) END +VALUES ('dnu', 'Danau', NULL, 1492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danau', [Definition] = NULL, [SortOrder] = 148.90 WHERE [Code] = 'dnu' END +SET [Description] = 'Danau', [Definition] = NULL, [SortOrder] = 1492.00 WHERE [Code] = 'dnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daq', 'Dandami Maria', NULL, 149.00) END +VALUES ('daq', 'Dandami Maria', NULL, 1493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dandami Maria', [Definition] = NULL, [SortOrder] = 149.00 WHERE [Code] = 'daq' END +SET [Description] = 'Dandami Maria', [Definition] = NULL, [SortOrder] = 1493.00 WHERE [Code] = 'daq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daa', 'Dangaléat', NULL, 149.10) END +VALUES ('daa', 'Dangaléat', NULL, 1494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dangaléat', [Definition] = NULL, [SortOrder] = 149.10 WHERE [Code] = 'daa' END +SET [Description] = 'Dangaléat', [Definition] = NULL, [SortOrder] = 1494.00 WHERE [Code] = 'daa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thl', 'Dangaura Tharu', NULL, 149.20) END +VALUES ('thl', 'Dangaura Tharu', NULL, 1495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dangaura Tharu', [Definition] = NULL, [SortOrder] = 149.20 WHERE [Code] = 'thl' END +SET [Description] = 'Dangaura Tharu', [Definition] = NULL, [SortOrder] = 1495.00 WHERE [Code] = 'thl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dan', 'Danish', NULL, 149.30) END +VALUES ('dan', 'Danish', NULL, 1496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danish', [Definition] = NULL, [SortOrder] = 149.30 WHERE [Code] = 'dan' END +SET [Description] = 'Danish', [Definition] = NULL, [SortOrder] = 1496.00 WHERE [Code] = 'dan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsl', 'Danish Sign Language', NULL, 149.40) END +VALUES ('dsl', 'Danish Sign Language', NULL, 1497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danish Sign Language', [Definition] = NULL, [SortOrder] = 149.40 WHERE [Code] = 'dsl' END +SET [Description] = 'Danish Sign Language', [Definition] = NULL, [SortOrder] = 1497.00 WHERE [Code] = 'dsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aso', 'Dano', NULL, 149.50) END +VALUES ('aso', 'Dano', NULL, 1498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dano', [Definition] = NULL, [SortOrder] = 149.50 WHERE [Code] = 'aso' END +SET [Description] = 'Dano', [Definition] = NULL, [SortOrder] = 1498.00 WHERE [Code] = 'aso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnv', 'Danu', NULL, 149.60) END +VALUES ('dnv', 'Danu', NULL, 1499.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danu', [Definition] = NULL, [SortOrder] = 149.60 WHERE [Code] = 'dnv' END +SET [Description] = 'Danu', [Definition] = NULL, [SortOrder] = 1499.00 WHERE [Code] = 'dnv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daz', 'Dao', NULL, 149.70) END +VALUES ('daz', 'Dao', NULL, 1500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dao', [Definition] = NULL, [SortOrder] = 149.70 WHERE [Code] = 'daz' END +SET [Description] = 'Dao', [Definition] = NULL, [SortOrder] = 1500.00 WHERE [Code] = 'daz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnd', 'Daonda', NULL, 149.80) END +VALUES ('dnd', 'Daonda', NULL, 1501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daonda', [Definition] = NULL, [SortOrder] = 149.80 WHERE [Code] = 'dnd' END +SET [Description] = 'Daonda', [Definition] = NULL, [SortOrder] = 1501.00 WHERE [Code] = 'dnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djc', 'Dar Daju Daju', NULL, 149.90) END +VALUES ('djc', 'Dar Daju Daju', NULL, 1502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dar Daju Daju', [Definition] = NULL, [SortOrder] = 149.90 WHERE [Code] = 'djc' END +SET [Description] = 'Dar Daju Daju', [Definition] = NULL, [SortOrder] = 1502.00 WHERE [Code] = 'djc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daj', 'Dar Fur Daju', NULL, 150.00) END +VALUES ('daj', 'Dar Fur Daju', NULL, 1503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dar Fur Daju', [Definition] = NULL, [SortOrder] = 150.00 WHERE [Code] = 'daj' END +SET [Description] = 'Dar Fur Daju', [Definition] = NULL, [SortOrder] = 1503.00 WHERE [Code] = 'daj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dau', 'Dar Sila Daju', NULL, 150.10) END +VALUES ('dau', 'Dar Sila Daju', NULL, 1504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dar Sila Daju', [Definition] = NULL, [SortOrder] = 150.10 WHERE [Code] = 'dau' END +SET [Description] = 'Dar Sila Daju', [Definition] = NULL, [SortOrder] = 1504.00 WHERE [Code] = 'dau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dry', 'Darai', NULL, 150.20) END +VALUES ('dry', 'Darai', NULL, 1505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Darai', [Definition] = NULL, [SortOrder] = 150.20 WHERE [Code] = 'dry' END +SET [Description] = 'Darai', [Definition] = NULL, [SortOrder] = 1505.00 WHERE [Code] = 'dry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dar', 'Dargwa', NULL, 150.30) END +VALUES ('dar', 'Dargwa', NULL, 1506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dargwa', [Definition] = NULL, [SortOrder] = 150.30 WHERE [Code] = 'dar' END +SET [Description] = 'Dargwa', [Definition] = NULL, [SortOrder] = 1506.00 WHERE [Code] = 'dar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prs', 'Dari', NULL, 150.40) END +VALUES ('prs', 'Dari', NULL, 1507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dari', [Definition] = NULL, [SortOrder] = 150.40 WHERE [Code] = 'prs' END +SET [Description] = 'Dari', [Definition] = NULL, [SortOrder] = 1507.00 WHERE [Code] = 'prs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xda', 'Darkinyung', NULL, 150.50) END +VALUES ('xda', 'Darkinyung', NULL, 1508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Darkinyung', [Definition] = NULL, [SortOrder] = 150.50 WHERE [Code] = 'xda' END +SET [Description] = 'Darkinyung', [Definition] = NULL, [SortOrder] = 1508.00 WHERE [Code] = 'xda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dln', 'Darlong', NULL, 150.60) END +VALUES ('dln', 'Darlong', NULL, 1509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Darlong', [Definition] = NULL, [SortOrder] = 150.60 WHERE [Code] = 'dln' END +SET [Description] = 'Darlong', [Definition] = NULL, [SortOrder] = 1509.00 WHERE [Code] = 'dln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drd', 'Darmiya', NULL, 150.70) END +VALUES ('drd', 'Darmiya', NULL, 1510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Darmiya', [Definition] = NULL, [SortOrder] = 150.70 WHERE [Code] = 'drd' END +SET [Description] = 'Darmiya', [Definition] = NULL, [SortOrder] = 1510.00 WHERE [Code] = 'drd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dro', 'Daro-Matu Melanau', NULL, 150.80) END +VALUES ('dro', 'Daro-Matu Melanau', NULL, 1511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daro-Matu Melanau', [Definition] = NULL, [SortOrder] = 150.80 WHERE [Code] = 'dro' END +SET [Description] = 'Daro-Matu Melanau', [Definition] = NULL, [SortOrder] = 1511.00 WHERE [Code] = 'dro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dot', 'Dass', NULL, 150.90) END +VALUES ('dot', 'Dass', NULL, 1512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dass', [Definition] = NULL, [SortOrder] = 150.90 WHERE [Code] = 'dot' END +SET [Description] = 'Dass', [Definition] = NULL, [SortOrder] = 1512.00 WHERE [Code] = 'dot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcc', 'Datooga', NULL, 151.00) END +VALUES ('tcc', 'Datooga', NULL, 1513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Datooga', [Definition] = NULL, [SortOrder] = 151.00 WHERE [Code] = 'tcc' END +SET [Description] = 'Datooga', [Definition] = NULL, [SortOrder] = 1513.00 WHERE [Code] = 'tcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgw', 'Daungwurrung', NULL, 151.10) END +VALUES ('dgw', 'Daungwurrung', NULL, 1514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daungwurrung', [Definition] = NULL, [SortOrder] = 151.10 WHERE [Code] = 'dgw' END +SET [Description] = 'Daungwurrung', [Definition] = NULL, [SortOrder] = 1514.00 WHERE [Code] = 'dgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dta', 'Daur', NULL, 151.20) END +VALUES ('dta', 'Daur', NULL, 1515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daur', [Definition] = NULL, [SortOrder] = 151.20 WHERE [Code] = 'dta' END +SET [Description] = 'Daur', [Definition] = NULL, [SortOrder] = 1515.00 WHERE [Code] = 'dta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daw', 'Davawenyo', NULL, 151.30) END +VALUES ('daw', 'Davawenyo', NULL, 1516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Davawenyo', [Definition] = NULL, [SortOrder] = 151.30 WHERE [Code] = 'daw' END +SET [Description] = 'Davawenyo', [Definition] = NULL, [SortOrder] = 1516.00 WHERE [Code] = 'daw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwa', 'Dâw', NULL, 151.40) END +VALUES ('kwa', 'Dâw', NULL, 1517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dâw', [Definition] = NULL, [SortOrder] = 151.40 WHERE [Code] = 'kwa' END +SET [Description] = 'Dâw', [Definition] = NULL, [SortOrder] = 1517.00 WHERE [Code] = 'kwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dww', 'Dawawa', NULL, 151.50) END +VALUES ('dww', 'Dawawa', NULL, 1518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dawawa', [Definition] = NULL, [SortOrder] = 151.50 WHERE [Code] = 'dww' END +SET [Description] = 'Dawawa', [Definition] = NULL, [SortOrder] = 1518.00 WHERE [Code] = 'dww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddw', 'Dawera-Daweloor', NULL, 151.60) END +VALUES ('ddw', 'Dawera-Daweloor', NULL, 1519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dawera-Daweloor', [Definition] = NULL, [SortOrder] = 151.60 WHERE [Code] = 'ddw' END +SET [Description] = 'Dawera-Daweloor', [Definition] = NULL, [SortOrder] = 1519.00 WHERE [Code] = 'ddw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwk', 'Dawik Kui', NULL, 151.70) END +VALUES ('dwk', 'Dawik Kui', NULL, 1520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dawik Kui', [Definition] = NULL, [SortOrder] = 151.70 WHERE [Code] = 'dwk' END +SET [Description] = 'Dawik Kui', [Definition] = NULL, [SortOrder] = 1520.00 WHERE [Code] = 'dwk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwr', 'Dawro', NULL, 151.80) END +VALUES ('dwr', 'Dawro', NULL, 1521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dawro', [Definition] = NULL, [SortOrder] = 151.80 WHERE [Code] = 'dwr' END +SET [Description] = 'Dawro', [Definition] = NULL, [SortOrder] = 1521.00 WHERE [Code] = 'dwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dai', 'Day', NULL, 151.90) END +VALUES ('dai', 'Day', NULL, 1522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Day', [Definition] = NULL, [SortOrder] = 151.90 WHERE [Code] = 'dai' END +SET [Description] = 'Day', [Definition] = NULL, [SortOrder] = 1522.00 WHERE [Code] = 'dai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dax', 'Dayi', NULL, 152.00) END +VALUES ('dax', 'Dayi', NULL, 1523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dayi', [Definition] = NULL, [SortOrder] = 152.00 WHERE [Code] = 'dax' END +SET [Description] = 'Dayi', [Definition] = NULL, [SortOrder] = 1523.00 WHERE [Code] = 'dax' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dzd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('dzd', 'Daza', NULL, 1524.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Daza', [Definition] = NULL, [SortOrder] = 1524.00 WHERE [Code] = 'dzd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzg', 'Dazaga', NULL, 152.10) END +VALUES ('dzg', 'Dazaga', NULL, 1525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dazaga', [Definition] = NULL, [SortOrder] = 152.10 WHERE [Code] = 'dzg' END +SET [Description] = 'Dazaga', [Definition] = NULL, [SortOrder] = 1525.00 WHERE [Code] = 'dzg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dcc', 'Deccan', NULL, 152.20) END +VALUES ('dcc', 'Deccan', NULL, 1526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Deccan', [Definition] = NULL, [SortOrder] = 152.20 WHERE [Code] = 'dcc' END +SET [Description] = 'Deccan', [Definition] = NULL, [SortOrder] = 1526.00 WHERE [Code] = 'dcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ded') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ded', 'Dedua', NULL, 152.30) END +VALUES ('ded', 'Dedua', NULL, 1527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dedua', [Definition] = NULL, [SortOrder] = 152.30 WHERE [Code] = 'ded' END +SET [Description] = 'Dedua', [Definition] = NULL, [SortOrder] = 1527.00 WHERE [Code] = 'ded' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afn', 'Defaka', NULL, 152.40) END +VALUES ('afn', 'Defaka', NULL, 1528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Defaka', [Definition] = NULL, [SortOrder] = 152.40 WHERE [Code] = 'afn' END +SET [Description] = 'Defaka', [Definition] = NULL, [SortOrder] = 1528.00 WHERE [Code] = 'afn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbh', 'Defi Gbe', NULL, 152.50) END +VALUES ('gbh', 'Defi Gbe', NULL, 1529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Defi Gbe', [Definition] = NULL, [SortOrder] = 152.50 WHERE [Code] = 'gbh' END +SET [Description] = 'Defi Gbe', [Definition] = NULL, [SortOrder] = 1529.00 WHERE [Code] = 'gbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzw', 'Deg', NULL, 152.60) END +VALUES ('mzw', 'Deg', NULL, 1530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Deg', [Definition] = NULL, [SortOrder] = 152.60 WHERE [Code] = 'mzw' END +SET [Description] = 'Deg', [Definition] = NULL, [SortOrder] = 1530.00 WHERE [Code] = 'mzw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'deg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('deg', 'Degema', NULL, 152.70) END +VALUES ('deg', 'Degema', NULL, 1531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Degema', [Definition] = NULL, [SortOrder] = 152.70 WHERE [Code] = 'deg' END +SET [Description] = 'Degema', [Definition] = NULL, [SortOrder] = 1531.00 WHERE [Code] = 'deg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dge', 'Degenan', NULL, 152.80) END +VALUES ('dge', 'Degenan', NULL, 1532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Degenan', [Definition] = NULL, [SortOrder] = 152.80 WHERE [Code] = 'dge' END +SET [Description] = 'Degenan', [Definition] = NULL, [SortOrder] = 1532.00 WHERE [Code] = 'dge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ing') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ing', 'Degexit''an', NULL, 152.90) END +VALUES ('ing', 'Degexit''an', NULL, 1533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Degexit''an', [Definition] = NULL, [SortOrder] = 152.90 WHERE [Code] = 'ing' END +SET [Description] = 'Degexit''an', [Definition] = NULL, [SortOrder] = 1533.00 WHERE [Code] = 'ing' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhv', 'Dehu', NULL, 153.00) END +VALUES ('dhv', 'Dehu', NULL, 1534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dehu', [Definition] = NULL, [SortOrder] = 153.00 WHERE [Code] = 'dhv' END +SET [Description] = 'Dehu', [Definition] = NULL, [SortOrder] = 1534.00 WHERE [Code] = 'dhv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'deh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('deh', 'Dehwari', NULL, 153.10) END +VALUES ('deh', 'Dehwari', NULL, 1535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dehwari', [Definition] = NULL, [SortOrder] = 153.10 WHERE [Code] = 'deh' END +SET [Description] = 'Dehwari', [Definition] = NULL, [SortOrder] = 1535.00 WHERE [Code] = 'deh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dek', 'Dek', NULL, 153.20) END +VALUES ('dek', 'Dek', NULL, 1536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dek', [Definition] = NULL, [SortOrder] = 153.20 WHERE [Code] = 'dek' END +SET [Description] = 'Dek', [Definition] = NULL, [SortOrder] = 1536.00 WHERE [Code] = 'dek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'row') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('row', 'Dela-Oenale', NULL, 153.30) END +VALUES ('row', 'Dela-Oenale', NULL, 1537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dela-Oenale', [Definition] = NULL, [SortOrder] = 153.30 WHERE [Code] = 'row' END +SET [Description] = 'Dela-Oenale', [Definition] = NULL, [SortOrder] = 1537.00 WHERE [Code] = 'row' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'del') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('del', 'Delaware', NULL, 153.40) END +VALUES ('del', 'Delaware', NULL, 1538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Delaware', [Definition] = NULL, [SortOrder] = 153.40 WHERE [Code] = 'del' END +SET [Description] = 'Delaware', [Definition] = NULL, [SortOrder] = 1538.00 WHERE [Code] = 'del' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntr', 'Delo', NULL, 153.50) END +VALUES ('ntr', 'Delo', NULL, 1539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Delo', [Definition] = NULL, [SortOrder] = 153.50 WHERE [Code] = 'ntr' END +SET [Description] = 'Delo', [Definition] = NULL, [SortOrder] = 1539.00 WHERE [Code] = 'ntr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dem', 'Dem', NULL, 153.60) END +VALUES ('dem', 'Dem', NULL, 1540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dem', [Definition] = NULL, [SortOrder] = 153.60 WHERE [Code] = 'dem' END +SET [Description] = 'Dem', [Definition] = NULL, [SortOrder] = 1540.00 WHERE [Code] = 'dem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmx', 'Dema', NULL, 153.70) END +VALUES ('dmx', 'Dema', NULL, 1541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dema', [Definition] = NULL, [SortOrder] = 153.70 WHERE [Code] = 'dmx' END +SET [Description] = 'Dema', [Definition] = NULL, [SortOrder] = 1541.00 WHERE [Code] = 'dmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dei', 'Demisa', NULL, 153.80) END +VALUES ('dei', 'Demisa', NULL, 1542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Demisa', [Definition] = NULL, [SortOrder] = 153.80 WHERE [Code] = 'dei' END +SET [Description] = 'Demisa', [Definition] = NULL, [SortOrder] = 1542.00 WHERE [Code] = 'dei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmy', 'Demta', NULL, 153.90) END +VALUES ('dmy', 'Demta', NULL, 1543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Demta', [Definition] = NULL, [SortOrder] = 153.90 WHERE [Code] = 'dmy' END +SET [Description] = 'Demta', [Definition] = NULL, [SortOrder] = 1543.00 WHERE [Code] = 'dmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddn', 'Dendi (Benin)', NULL, 154.00) END +VALUES ('ddn', 'Dendi (Benin)', NULL, 1544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dendi (Benin)', [Definition] = NULL, [SortOrder] = 154.00 WHERE [Code] = 'ddn' END +SET [Description] = 'Dendi (Benin)', [Definition] = NULL, [SortOrder] = 1544.00 WHERE [Code] = 'ddn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'deq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('deq', 'Dendi (Central African Republic)', NULL, 154.10) END +VALUES ('deq', 'Dendi (Central African Republic)', NULL, 1545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dendi (Central African Republic)', [Definition] = NULL, [SortOrder] = 154.10 WHERE [Code] = 'deq' END +SET [Description] = 'Dendi (Central African Republic)', [Definition] = NULL, [SortOrder] = 1545.00 WHERE [Code] = 'deq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dez', 'Dengese', NULL, 154.20) END +VALUES ('dez', 'Dengese', NULL, 1546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dengese', [Definition] = NULL, [SortOrder] = 154.20 WHERE [Code] = 'dez' END +SET [Description] = 'Dengese', [Definition] = NULL, [SortOrder] = 1546.00 WHERE [Code] = 'dez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnk', 'Dengka', NULL, 154.30) END +VALUES ('dnk', 'Dengka', NULL, 1547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dengka', [Definition] = NULL, [SortOrder] = 154.30 WHERE [Code] = 'dnk' END +SET [Description] = 'Dengka', [Definition] = NULL, [SortOrder] = 1547.00 WHERE [Code] = 'dnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dny', 'Dení', NULL, 154.40) END +VALUES ('dny', 'Dení', NULL, 1548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dení', [Definition] = NULL, [SortOrder] = 154.40 WHERE [Code] = 'dny' END +SET [Description] = 'Dení', [Definition] = NULL, [SortOrder] = 1548.00 WHERE [Code] = 'dny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbb', 'Deno', NULL, 154.50) END +VALUES ('dbb', 'Deno', NULL, 1549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Deno', [Definition] = NULL, [SortOrder] = 154.50 WHERE [Code] = 'dbb' END +SET [Description] = 'Deno', [Definition] = NULL, [SortOrder] = 1549.00 WHERE [Code] = 'dbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anv', 'Denya', NULL, 154.60) END +VALUES ('anv', 'Denya', NULL, 1550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Denya', [Definition] = NULL, [SortOrder] = 154.60 WHERE [Code] = 'anv' END +SET [Description] = 'Denya', [Definition] = NULL, [SortOrder] = 1550.00 WHERE [Code] = 'anv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'der') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('der', 'Deori', NULL, 154.70) END +VALUES ('der', 'Deori', NULL, 1551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Deori', [Definition] = NULL, [SortOrder] = 154.70 WHERE [Code] = 'der' END +SET [Description] = 'Deori', [Definition] = NULL, [SortOrder] = 1551.00 WHERE [Code] = 'der' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbv', 'Dera (Indonesia)', NULL, 154.80) END +VALUES ('kbv', 'Dera (Indonesia)', NULL, 1552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dera (Indonesia)', [Definition] = NULL, [SortOrder] = 154.80 WHERE [Code] = 'kbv' END +SET [Description] = 'Dera (Indonesia)', [Definition] = NULL, [SortOrder] = 1552.00 WHERE [Code] = 'kbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kna', 'Dera (Nigeria)', NULL, 154.90) END +VALUES ('kna', 'Dera (Nigeria)', NULL, 1553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dera (Nigeria)', [Definition] = NULL, [SortOrder] = 154.90 WHERE [Code] = 'kna' END +SET [Description] = 'Dera (Nigeria)', [Definition] = NULL, [SortOrder] = 1553.00 WHERE [Code] = 'kna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'des') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('des', 'Desano', NULL, 155.00) END +VALUES ('des', 'Desano', NULL, 1554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Desano', [Definition] = NULL, [SortOrder] = 155.00 WHERE [Code] = 'des' END +SET [Description] = 'Desano', [Definition] = NULL, [SortOrder] = 1554.00 WHERE [Code] = 'des' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dso', 'Desiya', NULL, 155.10) END +VALUES ('dso', 'Desiya', NULL, 1555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Desiya', [Definition] = NULL, [SortOrder] = 155.10 WHERE [Code] = 'dso' END +SET [Description] = 'Desiya', [Definition] = NULL, [SortOrder] = 1555.00 WHERE [Code] = 'dso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwz', 'Dewas Rai', NULL, 155.20) END +VALUES ('dwz', 'Dewas Rai', NULL, 1556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dewas Rai', [Definition] = NULL, [SortOrder] = 155.20 WHERE [Code] = 'dwz' END +SET [Description] = 'Dewas Rai', [Definition] = NULL, [SortOrder] = 1556.00 WHERE [Code] = 'dwz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dee', 'Dewoin', NULL, 155.30) END +VALUES ('dee', 'Dewoin', NULL, 1557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dewoin', [Definition] = NULL, [SortOrder] = 155.30 WHERE [Code] = 'dee' END +SET [Description] = 'Dewoin', [Definition] = NULL, [SortOrder] = 1557.00 WHERE [Code] = 'dee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'def') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('def', 'Dezfuli', NULL, 155.40) END +VALUES ('def', 'Dezfuli', NULL, 1558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dezfuli', [Definition] = NULL, [SortOrder] = 155.40 WHERE [Code] = 'def' END +SET [Description] = 'Dezfuli', [Definition] = NULL, [SortOrder] = 1558.00 WHERE [Code] = 'def' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgh', 'Dghwede', NULL, 155.50) END +VALUES ('dgh', 'Dghwede', NULL, 1559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dghwede', [Definition] = NULL, [SortOrder] = 155.50 WHERE [Code] = 'dgh' END +SET [Description] = 'Dghwede', [Definition] = NULL, [SortOrder] = 1559.00 WHERE [Code] = 'dgh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhs', 'Dhaiso', NULL, 155.60) END +VALUES ('dhs', 'Dhaiso', NULL, 1560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhaiso', [Definition] = NULL, [SortOrder] = 155.60 WHERE [Code] = 'dhs' END +SET [Description] = 'Dhaiso', [Definition] = NULL, [SortOrder] = 1560.00 WHERE [Code] = 'dhs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhl', 'Dhalandji', NULL, 155.70) END +VALUES ('dhl', 'Dhalandji', NULL, 1561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhalandji', [Definition] = NULL, [SortOrder] = 155.70 WHERE [Code] = 'dhl' END +SET [Description] = 'Dhalandji', [Definition] = NULL, [SortOrder] = 1561.00 WHERE [Code] = 'dhl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhg', 'Dhangu-Djangu', NULL, 155.80) END +VALUES ('dhg', 'Dhangu-Djangu', NULL, 1562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhangu-Djangu', [Definition] = NULL, [SortOrder] = 155.80 WHERE [Code] = 'dhg' END +SET [Description] = 'Dhangu-Djangu', [Definition] = NULL, [SortOrder] = 1562.00 WHERE [Code] = 'dhg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhn', 'Dhanki', NULL, 155.90) END +VALUES ('dhn', 'Dhanki', NULL, 1563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhanki', [Definition] = NULL, [SortOrder] = 155.90 WHERE [Code] = 'dhn' END +SET [Description] = 'Dhanki', [Definition] = NULL, [SortOrder] = 1563.00 WHERE [Code] = 'dhn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhw', 'Dhanwar (Nepal)', NULL, 156.00) END +VALUES ('dhw', 'Dhanwar (Nepal)', NULL, 1564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhanwar (Nepal)', [Definition] = NULL, [SortOrder] = 156.00 WHERE [Code] = 'dhw' END +SET [Description] = 'Dhanwar (Nepal)', [Definition] = NULL, [SortOrder] = 1564.00 WHERE [Code] = 'dhw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfa', 'Dhao', NULL, 156.10) END +VALUES ('nfa', 'Dhao', NULL, 1565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhao', [Definition] = NULL, [SortOrder] = 156.10 WHERE [Code] = 'nfa' END +SET [Description] = 'Dhao', [Definition] = NULL, [SortOrder] = 1565.00 WHERE [Code] = 'nfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbh', 'Dharawal', NULL, 156.20) END +VALUES ('tbh', 'Dharawal', NULL, 1566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dharawal', [Definition] = NULL, [SortOrder] = 156.20 WHERE [Code] = 'tbh' END +SET [Description] = 'Dharawal', [Definition] = NULL, [SortOrder] = 1566.00 WHERE [Code] = 'tbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhr', 'Dhargari', NULL, 156.30) END +VALUES ('dhr', 'Dhargari', NULL, 1567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhargari', [Definition] = NULL, [SortOrder] = 156.30 WHERE [Code] = 'dhr' END +SET [Description] = 'Dhargari', [Definition] = NULL, [SortOrder] = 1567.00 WHERE [Code] = 'dhr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdk', 'Dharuk', NULL, 156.40) END +VALUES ('xdk', 'Dharuk', NULL, 1568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dharuk', [Definition] = NULL, [SortOrder] = 156.40 WHERE [Code] = 'xdk' END +SET [Description] = 'Dharuk', [Definition] = NULL, [SortOrder] = 1568.00 WHERE [Code] = 'xdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgm', 'Dharumbal', NULL, 156.50) END +VALUES ('xgm', 'Dharumbal', NULL, 1569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dharumbal', [Definition] = NULL, [SortOrder] = 156.50 WHERE [Code] = 'xgm' END +SET [Description] = 'Dharumbal', [Definition] = NULL, [SortOrder] = 1569.00 WHERE [Code] = 'xgm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mki', 'Dhatki', NULL, 156.60) END +VALUES ('mki', 'Dhatki', NULL, 1570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhatki', [Definition] = NULL, [SortOrder] = 156.60 WHERE [Code] = 'mki' END +SET [Description] = 'Dhatki', [Definition] = NULL, [SortOrder] = 1570.00 WHERE [Code] = 'mki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhi', 'Dhimal', NULL, 156.70) END +VALUES ('dhi', 'Dhimal', NULL, 1571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhimal', [Definition] = NULL, [SortOrder] = 156.70 WHERE [Code] = 'dhi' END +SET [Description] = 'Dhimal', [Definition] = NULL, [SortOrder] = 1571.00 WHERE [Code] = 'dhi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'div') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('div', 'Dhivehi', NULL, 156.80) END +VALUES ('div', 'Dhivehi', NULL, 1572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhivehi', [Definition] = NULL, [SortOrder] = 156.80 WHERE [Code] = 'div' END +SET [Description] = 'Dhivehi', [Definition] = NULL, [SortOrder] = 1572.00 WHERE [Code] = 'div' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dho', 'Dhodia', NULL, 156.90) END +VALUES ('dho', 'Dhodia', NULL, 1573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhodia', [Definition] = NULL, [SortOrder] = 156.90 WHERE [Code] = 'dho' END +SET [Description] = 'Dhodia', [Definition] = NULL, [SortOrder] = 1573.00 WHERE [Code] = 'dho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adf', 'Dhofari Arabic', NULL, 157.00) END +VALUES ('adf', 'Dhofari Arabic', NULL, 1574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhofari Arabic', [Definition] = NULL, [SortOrder] = 157.00 WHERE [Code] = 'adf' END +SET [Description] = 'Dhofari Arabic', [Definition] = NULL, [SortOrder] = 1574.00 WHERE [Code] = 'adf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddr', 'Dhudhuroa', NULL, 157.10) END +VALUES ('ddr', 'Dhudhuroa', NULL, 1575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhudhuroa', [Definition] = NULL, [SortOrder] = 157.10 WHERE [Code] = 'ddr' END +SET [Description] = 'Dhudhuroa', [Definition] = NULL, [SortOrder] = 1575.00 WHERE [Code] = 'ddr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhd', 'Dhundari', NULL, 157.20) END +VALUES ('dhd', 'Dhundari', NULL, 1576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhundari', [Definition] = NULL, [SortOrder] = 157.20 WHERE [Code] = 'dhd' END +SET [Description] = 'Dhundari', [Definition] = NULL, [SortOrder] = 1576.00 WHERE [Code] = 'dhd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhx', 'Dhungaloo', NULL, 157.30) END +VALUES ('dhx', 'Dhungaloo', NULL, 1577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhungaloo', [Definition] = NULL, [SortOrder] = 157.30 WHERE [Code] = 'dhx' END +SET [Description] = 'Dhungaloo', [Definition] = NULL, [SortOrder] = 1577.00 WHERE [Code] = 'dhx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhu', 'Dhurga', NULL, 157.40) END +VALUES ('dhu', 'Dhurga', NULL, 1578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhurga', [Definition] = NULL, [SortOrder] = 157.40 WHERE [Code] = 'dhu' END +SET [Description] = 'Dhurga', [Definition] = NULL, [SortOrder] = 1578.00 WHERE [Code] = 'dhu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwu', 'Dhuwal', NULL, 157.50) END +VALUES ('dwu', 'Dhuwal', NULL, 1579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhuwal', [Definition] = NULL, [SortOrder] = 157.50 WHERE [Code] = 'dwu' END +SET [Description] = 'Dhuwal', [Definition] = NULL, [SortOrder] = 1579.00 WHERE [Code] = 'dwu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwy', 'Dhuwaya', NULL, 157.60) END +VALUES ('dwy', 'Dhuwaya', NULL, 1580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhuwaya', [Definition] = NULL, [SortOrder] = 157.60 WHERE [Code] = 'dwy' END +SET [Description] = 'Dhuwaya', [Definition] = NULL, [SortOrder] = 1580.00 WHERE [Code] = 'dwy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dia', 'Dia', NULL, 157.70) END +VALUES ('dia', 'Dia', NULL, 1581.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dia', [Definition] = NULL, [SortOrder] = 157.70 WHERE [Code] = 'dia' END +SET [Description] = 'Dia', [Definition] = NULL, [SortOrder] = 1581.00 WHERE [Code] = 'dia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbd', 'Dibabawon Manobo', NULL, 157.80) END +VALUES ('mbd', 'Dibabawon Manobo', NULL, 1582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dibabawon Manobo', [Definition] = NULL, [SortOrder] = 157.80 WHERE [Code] = 'mbd' END +SET [Description] = 'Dibabawon Manobo', [Definition] = NULL, [SortOrder] = 1582.00 WHERE [Code] = 'mbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dby', 'Dibiyaso', NULL, 157.90) END +VALUES ('dby', 'Dibiyaso', NULL, 1583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dibiyaso', [Definition] = NULL, [SortOrder] = 157.90 WHERE [Code] = 'dby' END +SET [Description] = 'Dibiyaso', [Definition] = NULL, [SortOrder] = 1583.00 WHERE [Code] = 'dby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dio', 'Dibo', NULL, 158.00) END +VALUES ('dio', 'Dibo', NULL, 1584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dibo', [Definition] = NULL, [SortOrder] = 158.00 WHERE [Code] = 'dio' END +SET [Description] = 'Dibo', [Definition] = NULL, [SortOrder] = 1584.00 WHERE [Code] = 'dio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvx', 'Dibole', NULL, 158.10) END +VALUES ('bvx', 'Dibole', NULL, 1585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dibole', [Definition] = NULL, [SortOrder] = 158.10 WHERE [Code] = 'bvx' END +SET [Description] = 'Dibole', [Definition] = NULL, [SortOrder] = 1585.00 WHERE [Code] = 'bvx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duy', 'Dicamay Agta', NULL, 158.20) END +VALUES ('duy', 'Dicamay Agta', NULL, 1586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dicamay Agta', [Definition] = NULL, [SortOrder] = 158.20 WHERE [Code] = 'duy' END +SET [Description] = 'Dicamay Agta', [Definition] = NULL, [SortOrder] = 1586.00 WHERE [Code] = 'duy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'did') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('did', 'Didinga', NULL, 158.30) END +VALUES ('did', 'Didinga', NULL, 1587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Didinga', [Definition] = NULL, [SortOrder] = 158.30 WHERE [Code] = 'did' END +SET [Description] = 'Didinga', [Definition] = NULL, [SortOrder] = 1587.00 WHERE [Code] = 'did' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddo', 'Dido', NULL, 158.40) END +VALUES ('ddo', 'Dido', NULL, 1588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dido', [Definition] = NULL, [SortOrder] = 158.40 WHERE [Code] = 'ddo' END +SET [Description] = 'Dido', [Definition] = NULL, [SortOrder] = 1588.00 WHERE [Code] = 'ddo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dif', 'Dieri', NULL, 158.50) END +VALUES ('dif', 'Dieri', NULL, 1589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dieri', [Definition] = NULL, [SortOrder] = 158.50 WHERE [Code] = 'dif' END +SET [Description] = 'Dieri', [Definition] = NULL, [SortOrder] = 1589.00 WHERE [Code] = 'dif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhu', 'Digaro-Mishmi', NULL, 158.60) END +VALUES ('mhu', 'Digaro-Mishmi', NULL, 1590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Digaro-Mishmi', [Definition] = NULL, [SortOrder] = 158.60 WHERE [Code] = 'mhu' END +SET [Description] = 'Digaro-Mishmi', [Definition] = NULL, [SortOrder] = 1590.00 WHERE [Code] = 'mhu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dig', 'Digo', NULL, 158.70) END +VALUES ('dig', 'Digo', NULL, 1591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Digo', [Definition] = NULL, [SortOrder] = 158.70 WHERE [Code] = 'dig' END +SET [Description] = 'Digo', [Definition] = NULL, [SortOrder] = 1591.00 WHERE [Code] = 'dig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dur', 'Dii', NULL, 158.80) END +VALUES ('dur', 'Dii', NULL, 1592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dii', [Definition] = NULL, [SortOrder] = 158.80 WHERE [Code] = 'dur' END +SET [Description] = 'Dii', [Definition] = NULL, [SortOrder] = 1592.00 WHERE [Code] = 'dur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cfa', 'Dijim-Bwilim', NULL, 158.90) END +VALUES ('cfa', 'Dijim-Bwilim', NULL, 1593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dijim-Bwilim', [Definition] = NULL, [SortOrder] = 158.90 WHERE [Code] = 'cfa' END +SET [Description] = 'Dijim-Bwilim', [Definition] = NULL, [SortOrder] = 1593.00 WHERE [Code] = 'cfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dil', 'Dilling', NULL, 159.00) END +VALUES ('dil', 'Dilling', NULL, 1594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dilling', [Definition] = NULL, [SortOrder] = 159.00 WHERE [Code] = 'dil' END +SET [Description] = 'Dilling', [Definition] = NULL, [SortOrder] = 1594.00 WHERE [Code] = 'dil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jma', 'Dima', NULL, 159.10) END +VALUES ('jma', 'Dima', NULL, 1595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dima', [Definition] = NULL, [SortOrder] = 159.10 WHERE [Code] = 'jma' END +SET [Description] = 'Dima', [Definition] = NULL, [SortOrder] = 1595.00 WHERE [Code] = 'jma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dis', 'Dimasa', NULL, 159.20) END +VALUES ('dis', 'Dimasa', NULL, 1596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dimasa', [Definition] = NULL, [SortOrder] = 159.20 WHERE [Code] = 'dis' END +SET [Description] = 'Dimasa', [Definition] = NULL, [SortOrder] = 1596.00 WHERE [Code] = 'dis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dii', 'Dimbong', NULL, 159.30) END +VALUES ('dii', 'Dimbong', NULL, 1597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dimbong', [Definition] = NULL, [SortOrder] = 159.30 WHERE [Code] = 'dii' END +SET [Description] = 'Dimbong', [Definition] = NULL, [SortOrder] = 1597.00 WHERE [Code] = 'dii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dim', 'Dime', NULL, 159.40) END +VALUES ('dim', 'Dime', NULL, 1598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dime', [Definition] = NULL, [SortOrder] = 159.40 WHERE [Code] = 'dim' END +SET [Description] = 'Dime', [Definition] = NULL, [SortOrder] = 1598.00 WHERE [Code] = 'dim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diq', 'Dimli (individual language)', NULL, 159.50) END +VALUES ('diq', 'Dimli (individual language)', NULL, 1599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dimli (individual language)', [Definition] = NULL, [SortOrder] = 159.50 WHERE [Code] = 'diq' END +SET [Description] = 'Dimli (individual language)', [Definition] = NULL, [SortOrder] = 1599.00 WHERE [Code] = 'diq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diz', 'Ding', NULL, 159.60) END +VALUES ('diz', 'Ding', NULL, 1600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ding', [Definition] = NULL, [SortOrder] = 159.60 WHERE [Code] = 'diz' END +SET [Description] = 'Ding', [Definition] = NULL, [SortOrder] = 1600.00 WHERE [Code] = 'diz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'din') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('din', 'Dinka', NULL, 159.70) END +VALUES ('din', 'Dinka', NULL, 1601.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Dinka', [Definition] = NULL, [SortOrder] = 1601.00 WHERE [Code] = 'din' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('nzr', 'Dir-Nyamzak-Mbarimi', NULL, 1602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dinka', [Definition] = NULL, [SortOrder] = 159.70 WHERE [Code] = 'din' END +SET [Description] = 'Dir-Nyamzak-Mbarimi', [Definition] = NULL, [SortOrder] = 1602.00 WHERE [Code] = 'nzr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdl', 'Dirasha', NULL, 159.80) END +VALUES ('gdl', 'Dirasha', NULL, 1603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dirasha', [Definition] = NULL, [SortOrder] = 159.80 WHERE [Code] = 'gdl' END +SET [Description] = 'Dirasha', [Definition] = NULL, [SortOrder] = 1603.00 WHERE [Code] = 'gdl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwa', 'Diri', NULL, 159.90) END +VALUES ('dwa', 'Diri', NULL, 1604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Diri', [Definition] = NULL, [SortOrder] = 159.90 WHERE [Code] = 'dwa' END +SET [Description] = 'Diri', [Definition] = NULL, [SortOrder] = 1604.00 WHERE [Code] = 'dwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diu', 'Diriku', NULL, 160.00) END +VALUES ('diu', 'Diriku', NULL, 1605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Diriku', [Definition] = NULL, [SortOrder] = 160.00 WHERE [Code] = 'diu' END +SET [Description] = 'Diriku', [Definition] = NULL, [SortOrder] = 1605.00 WHERE [Code] = 'diu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dir', 'Dirim', NULL, 160.10) END +VALUES ('dir', 'Dirim', NULL, 1606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dirim', [Definition] = NULL, [SortOrder] = 160.10 WHERE [Code] = 'dir' END +SET [Description] = 'Dirim', [Definition] = NULL, [SortOrder] = 1606.00 WHERE [Code] = 'dir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsi', 'Disa', NULL, 160.20) END +VALUES ('dsi', 'Disa', NULL, 1607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Disa', [Definition] = NULL, [SortOrder] = 160.20 WHERE [Code] = 'dsi' END +SET [Description] = 'Disa', [Definition] = NULL, [SortOrder] = 1607.00 WHERE [Code] = 'dsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbz', 'Ditammari', NULL, 160.30) END +VALUES ('tbz', 'Ditammari', NULL, 1608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ditammari', [Definition] = NULL, [SortOrder] = 160.30 WHERE [Code] = 'tbz' END +SET [Description] = 'Ditammari', [Definition] = NULL, [SortOrder] = 1608.00 WHERE [Code] = 'tbz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtd', 'Ditidaht', NULL, 160.40) END +VALUES ('dtd', 'Ditidaht', NULL, 1609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ditidaht', [Definition] = NULL, [SortOrder] = 160.40 WHERE [Code] = 'dtd' END +SET [Description] = 'Ditidaht', [Definition] = NULL, [SortOrder] = 1609.00 WHERE [Code] = 'dtd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diy', 'Diuwe', NULL, 160.50) END +VALUES ('diy', 'Diuwe', NULL, 1610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Diuwe', [Definition] = NULL, [SortOrder] = 160.50 WHERE [Code] = 'diy' END +SET [Description] = 'Diuwe', [Definition] = NULL, [SortOrder] = 1610.00 WHERE [Code] = 'diy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtd', 'Diuxi-Tilantongo Mixtec', NULL, 160.60) END +VALUES ('xtd', 'Diuxi-Tilantongo Mixtec', NULL, 1611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Diuxi-Tilantongo Mixtec', [Definition] = NULL, [SortOrder] = 160.60 WHERE [Code] = 'xtd' END +SET [Description] = 'Diuxi-Tilantongo Mixtec', [Definition] = NULL, [SortOrder] = 1611.00 WHERE [Code] = 'xtd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dix', 'Dixon Reef', NULL, 160.70) END +VALUES ('dix', 'Dixon Reef', NULL, 1612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dixon Reef', [Definition] = NULL, [SortOrder] = 160.70 WHERE [Code] = 'dix' END +SET [Description] = 'Dixon Reef', [Definition] = NULL, [SortOrder] = 1612.00 WHERE [Code] = 'dix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdx', 'Dizin', NULL, 160.80) END +VALUES ('mdx', 'Dizin', NULL, 1613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dizin', [Definition] = NULL, [SortOrder] = 160.80 WHERE [Code] = 'mdx' END +SET [Description] = 'Dizin', [Definition] = NULL, [SortOrder] = 1613.00 WHERE [Code] = 'mdx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyy', 'Djabugay', NULL, 160.90) END +VALUES ('dyy', 'Djabugay', NULL, 1614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djabugay', [Definition] = NULL, [SortOrder] = 160.90 WHERE [Code] = 'dyy' END +SET [Description] = 'Djabugay', [Definition] = NULL, [SortOrder] = 1614.00 WHERE [Code] = 'dyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjw', 'Djabwurrung', NULL, 161.00) END +VALUES ('tjw', 'Djabwurrung', NULL, 1615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djabwurrung', [Definition] = NULL, [SortOrder] = 161.00 WHERE [Code] = 'tjw' END +SET [Description] = 'Djabwurrung', [Definition] = NULL, [SortOrder] = 1615.00 WHERE [Code] = 'tjw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dja', 'Djadjawurrung', NULL, 161.10) END +VALUES ('dja', 'Djadjawurrung', NULL, 1616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djadjawurrung', [Definition] = NULL, [SortOrder] = 161.10 WHERE [Code] = 'dja' END +SET [Description] = 'Djadjawurrung', [Definition] = NULL, [SortOrder] = 1616.00 WHERE [Code] = 'dja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djr', 'Djambarrpuyngu', NULL, 161.20) END +VALUES ('djr', 'Djambarrpuyngu', NULL, 1617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djambarrpuyngu', [Definition] = NULL, [SortOrder] = 161.20 WHERE [Code] = 'djr' END +SET [Description] = 'Djambarrpuyngu', [Definition] = NULL, [SortOrder] = 1617.00 WHERE [Code] = 'djr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djd', 'Djamindjung', NULL, 161.30) END +VALUES ('djd', 'Djamindjung', NULL, 1618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djamindjung', [Definition] = NULL, [SortOrder] = 161.30 WHERE [Code] = 'djd' END +SET [Description] = 'Djamindjung', [Definition] = NULL, [SortOrder] = 1618.00 WHERE [Code] = 'djd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djf', 'Djangun', NULL, 161.40) END +VALUES ('djf', 'Djangun', NULL, 1619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djangun', [Definition] = NULL, [SortOrder] = 161.40 WHERE [Code] = 'djf' END +SET [Description] = 'Djangun', [Definition] = NULL, [SortOrder] = 1619.00 WHERE [Code] = 'djf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djw', 'Djawi', NULL, 161.50) END +VALUES ('djw', 'Djawi', NULL, 1620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djawi', [Definition] = NULL, [SortOrder] = 161.50 WHERE [Code] = 'djw' END +SET [Description] = 'Djawi', [Definition] = NULL, [SortOrder] = 1620.00 WHERE [Code] = 'djw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djj', 'Djeebbana', NULL, 161.60) END +VALUES ('djj', 'Djeebbana', NULL, 1621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djeebbana', [Definition] = NULL, [SortOrder] = 161.60 WHERE [Code] = 'djj' END +SET [Description] = 'Djeebbana', [Definition] = NULL, [SortOrder] = 1621.00 WHERE [Code] = 'djj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyi', 'Djimini Senoufo', NULL, 161.70) END +VALUES ('dyi', 'Djimini Senoufo', NULL, 1622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djimini Senoufo', [Definition] = NULL, [SortOrder] = 161.70 WHERE [Code] = 'dyi' END +SET [Description] = 'Djimini Senoufo', [Definition] = NULL, [SortOrder] = 1622.00 WHERE [Code] = 'dyi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dji', 'Djinang', NULL, 161.80) END +VALUES ('dji', 'Djinang', NULL, 1623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djinang', [Definition] = NULL, [SortOrder] = 161.80 WHERE [Code] = 'dji' END +SET [Description] = 'Djinang', [Definition] = NULL, [SortOrder] = 1623.00 WHERE [Code] = 'dji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djb', 'Djinba', NULL, 161.90) END +VALUES ('djb', 'Djinba', NULL, 1624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djinba', [Definition] = NULL, [SortOrder] = 161.90 WHERE [Code] = 'djb' END +SET [Description] = 'Djinba', [Definition] = NULL, [SortOrder] = 1624.00 WHERE [Code] = 'djb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dze', 'Djiwarli', NULL, 162.00) END +VALUES ('dze', 'Djiwarli', NULL, 1625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djiwarli', [Definition] = NULL, [SortOrder] = 162.00 WHERE [Code] = 'dze' END +SET [Description] = 'Djiwarli', [Definition] = NULL, [SortOrder] = 1625.00 WHERE [Code] = 'dze' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvo', 'Dobel', NULL, 162.10) END +VALUES ('kvo', 'Dobel', NULL, 1626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dobel', [Definition] = NULL, [SortOrder] = 162.10 WHERE [Code] = 'kvo' END +SET [Description] = 'Dobel', [Definition] = NULL, [SortOrder] = 1626.00 WHERE [Code] = 'kvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dob', 'Dobu', NULL, 162.20) END +VALUES ('dob', 'Dobu', NULL, 1627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dobu', [Definition] = NULL, [SortOrder] = 162.20 WHERE [Code] = 'dob' END +SET [Description] = 'Dobu', [Definition] = NULL, [SortOrder] = 1627.00 WHERE [Code] = 'dob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doe', 'Doe', NULL, 162.30) END +VALUES ('doe', 'Doe', NULL, 1628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doe', [Definition] = NULL, [SortOrder] = 162.30 WHERE [Code] = 'doe' END +SET [Description] = 'Doe', [Definition] = NULL, [SortOrder] = 1628.00 WHERE [Code] = 'doe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgg', 'Doga', NULL, 162.40) END +VALUES ('dgg', 'Doga', NULL, 1629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doga', [Definition] = NULL, [SortOrder] = 162.40 WHERE [Code] = 'dgg' END +SET [Description] = 'Doga', [Definition] = NULL, [SortOrder] = 1629.00 WHERE [Code] = 'dgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgx', 'Doghoro', NULL, 162.50) END +VALUES ('dgx', 'Doghoro', NULL, 1630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doghoro', [Definition] = NULL, [SortOrder] = 162.50 WHERE [Code] = 'dgx' END +SET [Description] = 'Doghoro', [Definition] = NULL, [SortOrder] = 1630.00 WHERE [Code] = 'dgx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dos', 'Dogosé', NULL, 162.60) END +VALUES ('dos', 'Dogosé', NULL, 1631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogosé', [Definition] = NULL, [SortOrder] = 162.60 WHERE [Code] = 'dos' END +SET [Description] = 'Dogosé', [Definition] = NULL, [SortOrder] = 1631.00 WHERE [Code] = 'dos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgs', 'Dogoso', NULL, 162.70) END +VALUES ('dgs', 'Dogoso', NULL, 1632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogoso', [Definition] = NULL, [SortOrder] = 162.70 WHERE [Code] = 'dgs' END +SET [Description] = 'Dogoso', [Definition] = NULL, [SortOrder] = 1632.00 WHERE [Code] = 'dgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgo', 'Dogri (individual language)', NULL, 162.80) END +VALUES ('dgo', 'Dogri (individual language)', NULL, 1633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogri (individual language)', [Definition] = NULL, [SortOrder] = 162.80 WHERE [Code] = 'dgo' END +SET [Description] = 'Dogri (individual language)', [Definition] = NULL, [SortOrder] = 1633.00 WHERE [Code] = 'dgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doi', 'Dogri (macrolanguage)', NULL, 162.90) END +VALUES ('doi', 'Dogri (macrolanguage)', NULL, 1634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogri (macrolanguage)', [Definition] = NULL, [SortOrder] = 162.90 WHERE [Code] = 'doi' END +SET [Description] = 'Dogri (macrolanguage)', [Definition] = NULL, [SortOrder] = 1634.00 WHERE [Code] = 'doi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgr', 'Dogrib', NULL, 163.00) END +VALUES ('dgr', 'Dogrib', NULL, 1635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogrib', [Definition] = NULL, [SortOrder] = 163.00 WHERE [Code] = 'dgr' END +SET [Description] = 'Dogrib', [Definition] = NULL, [SortOrder] = 1635.00 WHERE [Code] = 'dgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbg', 'Dogul Dom Dogon', NULL, 163.10) END +VALUES ('dbg', 'Dogul Dom Dogon', NULL, 1636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogul Dom Dogon', [Definition] = NULL, [SortOrder] = 163.10 WHERE [Code] = 'dbg' END +SET [Description] = 'Dogul Dom Dogon', [Definition] = NULL, [SortOrder] = 1636.00 WHERE [Code] = 'dbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbi', 'Doka', NULL, 163.20) END +VALUES ('dbi', 'Doka', NULL, 1637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doka', [Definition] = NULL, [SortOrder] = 163.20 WHERE [Code] = 'dbi' END +SET [Description] = 'Doka', [Definition] = NULL, [SortOrder] = 1637.00 WHERE [Code] = 'dbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uya', 'Doko-Uyanga', NULL, 163.30) END +VALUES ('uya', 'Doko-Uyanga', NULL, 1638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doko-Uyanga', [Definition] = NULL, [SortOrder] = 163.30 WHERE [Code] = 'uya' END +SET [Description] = 'Doko-Uyanga', [Definition] = NULL, [SortOrder] = 1638.00 WHERE [Code] = 'uya' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('dsk', 'Dokshi', NULL, 1639.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Dokshi', [Definition] = NULL, [SortOrder] = 1639.00 WHERE [Code] = 'dsk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dlg', 'Dolgan', NULL, 163.40) END +VALUES ('dlg', 'Dolgan', NULL, 1640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dolgan', [Definition] = NULL, [SortOrder] = 163.40 WHERE [Code] = 'dlg' END +SET [Description] = 'Dolgan', [Definition] = NULL, [SortOrder] = 1640.00 WHERE [Code] = 'dlg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dre', 'Dolpo', NULL, 163.50) END +VALUES ('dre', 'Dolpo', NULL, 1641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dolpo', [Definition] = NULL, [SortOrder] = 163.50 WHERE [Code] = 'dre' END +SET [Description] = 'Dolpo', [Definition] = NULL, [SortOrder] = 1641.00 WHERE [Code] = 'dre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doa', 'Dom', NULL, 163.60) END +VALUES ('doa', 'Dom', NULL, 1642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dom', [Definition] = NULL, [SortOrder] = 163.60 WHERE [Code] = 'doa' END +SET [Description] = 'Dom', [Definition] = NULL, [SortOrder] = 1642.00 WHERE [Code] = 'doa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmk', 'Domaaki', NULL, 163.70) END +VALUES ('dmk', 'Domaaki', NULL, 1643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Domaaki', [Definition] = NULL, [SortOrder] = 163.70 WHERE [Code] = 'dmk' END +SET [Description] = 'Domaaki', [Definition] = NULL, [SortOrder] = 1643.00 WHERE [Code] = 'dmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmt', 'Domari', NULL, 163.80) END +VALUES ('rmt', 'Domari', NULL, 1644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Domari', [Definition] = NULL, [SortOrder] = 163.80 WHERE [Code] = 'rmt' END +SET [Description] = 'Domari', [Definition] = NULL, [SortOrder] = 1644.00 WHERE [Code] = 'rmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dov', 'Dombe', NULL, 163.90) END +VALUES ('dov', 'Dombe', NULL, 1645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dombe', [Definition] = NULL, [SortOrder] = 163.90 WHERE [Code] = 'dov' END +SET [Description] = 'Dombe', [Definition] = NULL, [SortOrder] = 1645.00 WHERE [Code] = 'dov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doq', 'Dominican Sign Language', NULL, 164.00) END +VALUES ('doq', 'Dominican Sign Language', NULL, 1646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dominican Sign Language', [Definition] = NULL, [SortOrder] = 164.00 WHERE [Code] = 'doq' END +SET [Description] = 'Dominican Sign Language', [Definition] = NULL, [SortOrder] = 1646.00 WHERE [Code] = 'doq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doy', 'Dompo', NULL, 164.10) END +VALUES ('doy', 'Dompo', NULL, 1647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dompo', [Definition] = NULL, [SortOrder] = 164.10 WHERE [Code] = 'doy' END +SET [Description] = 'Dompo', [Definition] = NULL, [SortOrder] = 1647.00 WHERE [Code] = 'doy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dof', 'Domu', NULL, 164.20) END +VALUES ('dof', 'Domu', NULL, 1648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Domu', [Definition] = NULL, [SortOrder] = 164.20 WHERE [Code] = 'dof' END +SET [Description] = 'Domu', [Definition] = NULL, [SortOrder] = 1648.00 WHERE [Code] = 'dof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dev', 'Domung', NULL, 164.30) END +VALUES ('dev', 'Domung', NULL, 1649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Domung', [Definition] = NULL, [SortOrder] = 164.30 WHERE [Code] = 'dev' END +SET [Description] = 'Domung', [Definition] = NULL, [SortOrder] = 1649.00 WHERE [Code] = 'dev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dok', 'Dondo', NULL, 164.40) END +VALUES ('dok', 'Dondo', NULL, 1650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dondo', [Definition] = NULL, [SortOrder] = 164.40 WHERE [Code] = 'dok' END +SET [Description] = 'Dondo', [Definition] = NULL, [SortOrder] = 1650.00 WHERE [Code] = 'dok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doh', 'Dong', NULL, 164.50) END +VALUES ('doh', 'Dong', NULL, 1651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dong', [Definition] = NULL, [SortOrder] = 164.50 WHERE [Code] = 'doh' END +SET [Description] = 'Dong', [Definition] = NULL, [SortOrder] = 1651.00 WHERE [Code] = 'doh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doo', 'Dongo', NULL, 164.60) END +VALUES ('doo', 'Dongo', NULL, 1652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dongo', [Definition] = NULL, [SortOrder] = 164.60 WHERE [Code] = 'doo' END +SET [Description] = 'Dongo', [Definition] = NULL, [SortOrder] = 1652.00 WHERE [Code] = 'doo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddd', 'Dongotono', NULL, 164.70) END +VALUES ('ddd', 'Dongotono', NULL, 1653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dongotono', [Definition] = NULL, [SortOrder] = 164.70 WHERE [Code] = 'ddd' END +SET [Description] = 'Dongotono', [Definition] = NULL, [SortOrder] = 1653.00 WHERE [Code] = 'ddd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yik', 'Dongshanba Lalo', NULL, 164.80) END +VALUES ('yik', 'Dongshanba Lalo', NULL, 1654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dongshanba Lalo', [Definition] = NULL, [SortOrder] = 164.80 WHERE [Code] = 'yik' END +SET [Description] = 'Dongshanba Lalo', [Definition] = NULL, [SortOrder] = 1654.00 WHERE [Code] = 'yik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sce', 'Dongxiang', NULL, 164.90) END +VALUES ('sce', 'Dongxiang', NULL, 1655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dongxiang', [Definition] = NULL, [SortOrder] = 164.90 WHERE [Code] = 'sce' END +SET [Description] = 'Dongxiang', [Definition] = NULL, [SortOrder] = 1655.00 WHERE [Code] = 'sce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dds', 'Donno So Dogon', NULL, 165.00) END +VALUES ('dds', 'Donno So Dogon', NULL, 1656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Donno So Dogon', [Definition] = NULL, [SortOrder] = 165.00 WHERE [Code] = 'dds' END +SET [Description] = 'Donno So Dogon', [Definition] = NULL, [SortOrder] = 1656.00 WHERE [Code] = 'dds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dde', 'Doondo', NULL, 165.10) END +VALUES ('dde', 'Doondo', NULL, 1657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doondo', [Definition] = NULL, [SortOrder] = 165.10 WHERE [Code] = 'dde' END +SET [Description] = 'Doondo', [Definition] = NULL, [SortOrder] = 1657.00 WHERE [Code] = 'dde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dor', 'Dori''o', NULL, 165.20) END +VALUES ('dor', 'Dori''o', NULL, 1658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dori''o', [Definition] = NULL, [SortOrder] = 165.20 WHERE [Code] = 'dor' END +SET [Description] = 'Dori''o', [Definition] = NULL, [SortOrder] = 1658.00 WHERE [Code] = 'dor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqc', 'Doromu-Koki', NULL, 165.30) END +VALUES ('kqc', 'Doromu-Koki', NULL, 1659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doromu-Koki', [Definition] = NULL, [SortOrder] = 165.30 WHERE [Code] = 'kqc' END +SET [Description] = 'Doromu-Koki', [Definition] = NULL, [SortOrder] = 1659.00 WHERE [Code] = 'kqc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doz', 'Dorze', NULL, 165.40) END +VALUES ('doz', 'Dorze', NULL, 1660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dorze', [Definition] = NULL, [SortOrder] = 165.40 WHERE [Code] = 'doz' END +SET [Description] = 'Dorze', [Definition] = NULL, [SortOrder] = 1660.00 WHERE [Code] = 'doz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dol', 'Doso', NULL, 165.50) END +VALUES ('dol', 'Doso', NULL, 1661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doso', [Definition] = NULL, [SortOrder] = 165.50 WHERE [Code] = 'dol' END +SET [Description] = 'Doso', [Definition] = NULL, [SortOrder] = 1661.00 WHERE [Code] = 'dol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dty', 'Dotyali', NULL, 165.60) END +VALUES ('dty', 'Dotyali', NULL, 1662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dotyali', [Definition] = NULL, [SortOrder] = 165.60 WHERE [Code] = 'dty' END +SET [Description] = 'Dotyali', [Definition] = NULL, [SortOrder] = 1662.00 WHERE [Code] = 'dty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tds', 'Doutai', NULL, 165.70) END +VALUES ('tds', 'Doutai', NULL, 1663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doutai', [Definition] = NULL, [SortOrder] = 165.70 WHERE [Code] = 'tds' END +SET [Description] = 'Doutai', [Definition] = NULL, [SortOrder] = 1663.00 WHERE [Code] = 'tds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dow', 'Doyayo', NULL, 165.80) END +VALUES ('dow', 'Doyayo', NULL, 1664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doyayo', [Definition] = NULL, [SortOrder] = 165.80 WHERE [Code] = 'dow' END +SET [Description] = 'Doyayo', [Definition] = NULL, [SortOrder] = 1664.00 WHERE [Code] = 'dow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drt', 'Drents', NULL, 165.90) END +VALUES ('drt', 'Drents', NULL, 1665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Drents', [Definition] = NULL, [SortOrder] = 165.90 WHERE [Code] = 'drt' END +SET [Description] = 'Drents', [Definition] = NULL, [SortOrder] = 1665.00 WHERE [Code] = 'drt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duu', 'Drung', NULL, 166.00) END +VALUES ('duu', 'Drung', NULL, 1666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Drung', [Definition] = NULL, [SortOrder] = 166.00 WHERE [Code] = 'duu' END +SET [Description] = 'Drung', [Definition] = NULL, [SortOrder] = 1666.00 WHERE [Code] = 'duu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldb', 'Du~ya', NULL, 166.10) END +VALUES ('ldb', 'Du~ya', NULL, 1667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Du~ya', [Definition] = NULL, [SortOrder] = 166.10 WHERE [Code] = 'ldb' END +SET [Description] = 'Du~ya', [Definition] = NULL, [SortOrder] = 1667.00 WHERE [Code] = 'ldb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dua', 'Duala', NULL, 166.20) END +VALUES ('dua', 'Duala', NULL, 1668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duala', [Definition] = NULL, [SortOrder] = 166.20 WHERE [Code] = 'dua' END +SET [Description] = 'Duala', [Definition] = NULL, [SortOrder] = 1668.00 WHERE [Code] = 'dua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dup', 'Duano', NULL, 166.30) END +VALUES ('dup', 'Duano', NULL, 1669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duano', [Definition] = NULL, [SortOrder] = 166.30 WHERE [Code] = 'dup' END +SET [Description] = 'Duano', [Definition] = NULL, [SortOrder] = 1669.00 WHERE [Code] = 'dup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dva', 'Duau', NULL, 166.40) END +VALUES ('dva', 'Duau', NULL, 1670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duau', [Definition] = NULL, [SortOrder] = 166.40 WHERE [Code] = 'dva' END +SET [Description] = 'Duau', [Definition] = NULL, [SortOrder] = 1670.00 WHERE [Code] = 'dva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dub', 'Dubli', NULL, 166.50) END +VALUES ('dub', 'Dubli', NULL, 1671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dubli', [Definition] = NULL, [SortOrder] = 166.50 WHERE [Code] = 'dub' END +SET [Description] = 'Dubli', [Definition] = NULL, [SortOrder] = 1671.00 WHERE [Code] = 'dub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmu', 'Dubu', NULL, 166.60) END +VALUES ('dmu', 'Dubu', NULL, 1672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dubu', [Definition] = NULL, [SortOrder] = 166.60 WHERE [Code] = 'dmu' END +SET [Description] = 'Dubu', [Definition] = NULL, [SortOrder] = 1672.00 WHERE [Code] = 'dmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndu', 'Dugun', NULL, 166.70) END +VALUES ('ndu', 'Dugun', NULL, 1673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dugun', [Definition] = NULL, [SortOrder] = 166.70 WHERE [Code] = 'ndu' END +SET [Description] = 'Dugun', [Definition] = NULL, [SortOrder] = 1673.00 WHERE [Code] = 'ndu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbm', 'Duguri', NULL, 166.80) END +VALUES ('dbm', 'Duguri', NULL, 1674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duguri', [Definition] = NULL, [SortOrder] = 166.80 WHERE [Code] = 'dbm' END +SET [Description] = 'Duguri', [Definition] = NULL, [SortOrder] = 1674.00 WHERE [Code] = 'dbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dme', 'Dugwor', NULL, 166.90) END +VALUES ('dme', 'Dugwor', NULL, 1675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dugwor', [Definition] = NULL, [SortOrder] = 166.90 WHERE [Code] = 'dme' END +SET [Description] = 'Dugwor', [Definition] = NULL, [SortOrder] = 1675.00 WHERE [Code] = 'dme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbz', 'Duhwa', NULL, 167.00) END +VALUES ('kbz', 'Duhwa', NULL, 1676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duhwa', [Definition] = NULL, [SortOrder] = 167.00 WHERE [Code] = 'kbz' END +SET [Description] = 'Duhwa', [Definition] = NULL, [SortOrder] = 1676.00 WHERE [Code] = 'kbz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nke', 'Duke', NULL, 167.10) END +VALUES ('nke', 'Duke', NULL, 1677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duke', [Definition] = NULL, [SortOrder] = 167.10 WHERE [Code] = 'nke' END +SET [Description] = 'Duke', [Definition] = NULL, [SortOrder] = 1677.00 WHERE [Code] = 'nke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbo', 'Dulbu', NULL, 167.20) END +VALUES ('dbo', 'Dulbu', NULL, 1678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dulbu', [Definition] = NULL, [SortOrder] = 167.20 WHERE [Code] = 'dbo' END +SET [Description] = 'Dulbu', [Definition] = NULL, [SortOrder] = 1678.00 WHERE [Code] = 'dbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duz', 'Duli-Gey', NULL, 167.30) END +VALUES ('duz', 'Duli-Gey', NULL, 1679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duli-Gey', [Definition] = NULL, [SortOrder] = 167.30 WHERE [Code] = 'duz' END +SET [Description] = 'Duli-Gey', [Definition] = NULL, [SortOrder] = 1679.00 WHERE [Code] = 'duz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dma', 'Duma', NULL, 167.40) END +VALUES ('dma', 'Duma', NULL, 1680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duma', [Definition] = NULL, [SortOrder] = 167.40 WHERE [Code] = 'dma' END +SET [Description] = 'Duma', [Definition] = NULL, [SortOrder] = 1680.00 WHERE [Code] = 'dma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duf', 'Dumbea', NULL, 167.50) END +VALUES ('duf', 'Dumbea', NULL, 1681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dumbea', [Definition] = NULL, [SortOrder] = 167.50 WHERE [Code] = 'duf' END +SET [Description] = 'Dumbea', [Definition] = NULL, [SortOrder] = 1681.00 WHERE [Code] = 'duf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dus', 'Dumi', NULL, 167.60) END +VALUES ('dus', 'Dumi', NULL, 1682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dumi', [Definition] = NULL, [SortOrder] = 167.60 WHERE [Code] = 'dus' END +SET [Description] = 'Dumi', [Definition] = NULL, [SortOrder] = 1682.00 WHERE [Code] = 'dus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmv', 'Dumpas', NULL, 167.70) END +VALUES ('dmv', 'Dumpas', NULL, 1683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dumpas', [Definition] = NULL, [SortOrder] = 167.70 WHERE [Code] = 'dmv' END +SET [Description] = 'Dumpas', [Definition] = NULL, [SortOrder] = 1683.00 WHERE [Code] = 'dmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dui', 'Dumun', NULL, 167.80) END +VALUES ('dui', 'Dumun', NULL, 1684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dumun', [Definition] = NULL, [SortOrder] = 167.80 WHERE [Code] = 'dui' END +SET [Description] = 'Dumun', [Definition] = NULL, [SortOrder] = 1684.00 WHERE [Code] = 'dui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duc', 'Duna', NULL, 167.90) END +VALUES ('duc', 'Duna', NULL, 1685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duna', [Definition] = NULL, [SortOrder] = 167.90 WHERE [Code] = 'duc' END +SET [Description] = 'Duna', [Definition] = NULL, [SortOrder] = 1685.00 WHERE [Code] = 'duc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dng', 'Dungan', NULL, 168.00) END +VALUES ('dng', 'Dungan', NULL, 1686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dungan', [Definition] = NULL, [SortOrder] = 168.00 WHERE [Code] = 'dng' END +SET [Description] = 'Dungan', [Definition] = NULL, [SortOrder] = 1686.00 WHERE [Code] = 'dng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raa', 'Dungmali', NULL, 168.10) END +VALUES ('raa', 'Dungmali', NULL, 1687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dungmali', [Definition] = NULL, [SortOrder] = 168.10 WHERE [Code] = 'raa' END +SET [Description] = 'Dungmali', [Definition] = NULL, [SortOrder] = 1687.00 WHERE [Code] = 'raa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duh', 'Dungra Bhil', NULL, 168.20) END +VALUES ('duh', 'Dungra Bhil', NULL, 1688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dungra Bhil', [Definition] = NULL, [SortOrder] = 168.20 WHERE [Code] = 'duh' END +SET [Description] = 'Dungra Bhil', [Definition] = NULL, [SortOrder] = 1688.00 WHERE [Code] = 'duh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbv', 'Dungu', NULL, 168.30) END +VALUES ('dbv', 'Dungu', NULL, 1689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dungu', [Definition] = NULL, [SortOrder] = 168.30 WHERE [Code] = 'dbv' END +SET [Description] = 'Dungu', [Definition] = NULL, [SortOrder] = 1689.00 WHERE [Code] = 'dbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duo', 'Dupaninan Agta', NULL, 168.40) END +VALUES ('duo', 'Dupaninan Agta', NULL, 1690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dupaninan Agta', [Definition] = NULL, [SortOrder] = 168.40 WHERE [Code] = 'duo' END +SET [Description] = 'Dupaninan Agta', [Definition] = NULL, [SortOrder] = 1690.00 WHERE [Code] = 'duo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drq', 'Dura', NULL, 168.50) END +VALUES ('drq', 'Dura', NULL, 1691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dura', [Definition] = NULL, [SortOrder] = 168.50 WHERE [Code] = 'drq' END +SET [Description] = 'Dura', [Definition] = NULL, [SortOrder] = 1691.00 WHERE [Code] = 'drq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvp', 'Duri', NULL, 168.60) END +VALUES ('mvp', 'Duri', NULL, 1692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duri', [Definition] = NULL, [SortOrder] = 168.60 WHERE [Code] = 'mvp' END +SET [Description] = 'Duri', [Definition] = NULL, [SortOrder] = 1692.00 WHERE [Code] = 'mvp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbn', 'Duriankere', NULL, 168.70) END +VALUES ('dbn', 'Duriankere', NULL, 1693.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Duriankere', [Definition] = NULL, [SortOrder] = 1693.00 WHERE [Code] = 'dbn' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('krp', 'Durop', NULL, 1694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duriankere', [Definition] = NULL, [SortOrder] = 168.70 WHERE [Code] = 'dbn' END +SET [Description] = 'Durop', [Definition] = NULL, [SortOrder] = 1694.00 WHERE [Code] = 'krp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dug', 'Duruma', NULL, 168.80) END +VALUES ('dug', 'Duruma', NULL, 1695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duruma', [Definition] = NULL, [SortOrder] = 168.80 WHERE [Code] = 'dug' END +SET [Description] = 'Duruma', [Definition] = NULL, [SortOrder] = 1695.00 WHERE [Code] = 'dug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pci', 'Duruwa', NULL, 168.90) END +VALUES ('pci', 'Duruwa', NULL, 1696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duruwa', [Definition] = NULL, [SortOrder] = 168.90 WHERE [Code] = 'pci' END +SET [Description] = 'Duruwa', [Definition] = NULL, [SortOrder] = 1696.00 WHERE [Code] = 'pci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsn', 'Dusner', NULL, 169.00) END +VALUES ('dsn', 'Dusner', NULL, 1697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dusner', [Definition] = NULL, [SortOrder] = 169.00 WHERE [Code] = 'dsn' END +SET [Description] = 'Dusner', [Definition] = NULL, [SortOrder] = 1697.00 WHERE [Code] = 'dsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dun', 'Dusun Deyah', NULL, 169.10) END +VALUES ('dun', 'Dusun Deyah', NULL, 1698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dusun Deyah', [Definition] = NULL, [SortOrder] = 169.10 WHERE [Code] = 'dun' END +SET [Description] = 'Dusun Deyah', [Definition] = NULL, [SortOrder] = 1698.00 WHERE [Code] = 'dun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duq', 'Dusun Malang', NULL, 169.20) END +VALUES ('duq', 'Dusun Malang', NULL, 1699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dusun Malang', [Definition] = NULL, [SortOrder] = 169.20 WHERE [Code] = 'duq' END +SET [Description] = 'Dusun Malang', [Definition] = NULL, [SortOrder] = 1699.00 WHERE [Code] = 'duq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duw', 'Dusun Witu', NULL, 169.30) END +VALUES ('duw', 'Dusun Witu', NULL, 1700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dusun Witu', [Definition] = NULL, [SortOrder] = 169.30 WHERE [Code] = 'duw' END +SET [Description] = 'Dusun Witu', [Definition] = NULL, [SortOrder] = 1700.00 WHERE [Code] = 'duw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nld', 'Dutch', NULL, 169.40) END +VALUES ('nld', 'Dutch', NULL, 1701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dutch', [Definition] = NULL, [SortOrder] = 169.40 WHERE [Code] = 'nld' END +SET [Description] = 'Dutch', [Definition] = NULL, [SortOrder] = 1701.00 WHERE [Code] = 'nld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dse', 'Dutch Sign Language', NULL, 169.50) END +VALUES ('dse', 'Dutch Sign Language', NULL, 1702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dutch Sign Language', [Definition] = NULL, [SortOrder] = 169.50 WHERE [Code] = 'dse' END +SET [Description] = 'Dutch Sign Language', [Definition] = NULL, [SortOrder] = 1702.00 WHERE [Code] = 'dse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dws', 'Dutton World Speedwords', NULL, 169.60) END +VALUES ('dws', 'Dutton World Speedwords', NULL, 1703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dutton World Speedwords', [Definition] = NULL, [SortOrder] = 169.60 WHERE [Code] = 'dws' END +SET [Description] = 'Dutton World Speedwords', [Definition] = NULL, [SortOrder] = 1703.00 WHERE [Code] = 'dws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dux', 'Duungooma', NULL, 169.70) END +VALUES ('dux', 'Duungooma', NULL, 1704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duungooma', [Definition] = NULL, [SortOrder] = 169.70 WHERE [Code] = 'dux' END +SET [Description] = 'Duungooma', [Definition] = NULL, [SortOrder] = 1704.00 WHERE [Code] = 'dux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dae', 'Duupa', NULL, 169.80) END +VALUES ('dae', 'Duupa', NULL, 1705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duupa', [Definition] = NULL, [SortOrder] = 169.80 WHERE [Code] = 'dae' END +SET [Description] = 'Duupa', [Definition] = NULL, [SortOrder] = 1705.00 WHERE [Code] = 'dae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duv', 'Duvle', NULL, 169.90) END +VALUES ('duv', 'Duvle', NULL, 1706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duvle', [Definition] = NULL, [SortOrder] = 169.90 WHERE [Code] = 'duv' END +SET [Description] = 'Duvle', [Definition] = NULL, [SortOrder] = 1706.00 WHERE [Code] = 'duv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbp', 'Duwai', NULL, 170.00) END +VALUES ('dbp', 'Duwai', NULL, 1707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duwai', [Definition] = NULL, [SortOrder] = 170.00 WHERE [Code] = 'dbp' END +SET [Description] = 'Duwai', [Definition] = NULL, [SortOrder] = 1707.00 WHERE [Code] = 'dbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gve', 'Duwet', NULL, 170.10) END +VALUES ('gve', 'Duwet', NULL, 1708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duwet', [Definition] = NULL, [SortOrder] = 170.10 WHERE [Code] = 'gve' END +SET [Description] = 'Duwet', [Definition] = NULL, [SortOrder] = 1708.00 WHERE [Code] = 'gve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnu', 'Dwang', NULL, 170.20) END +VALUES ('nnu', 'Dwang', NULL, 1709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dwang', [Definition] = NULL, [SortOrder] = 170.20 WHERE [Code] = 'nnu' END +SET [Description] = 'Dwang', [Definition] = NULL, [SortOrder] = 1709.00 WHERE [Code] = 'nnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyb', 'Dyaberdyaber', NULL, 170.30) END +VALUES ('dyb', 'Dyaberdyaber', NULL, 1710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyaberdyaber', [Definition] = NULL, [SortOrder] = 170.30 WHERE [Code] = 'dyb' END +SET [Description] = 'Dyaberdyaber', [Definition] = NULL, [SortOrder] = 1710.00 WHERE [Code] = 'dyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dya', 'Dyan', NULL, 170.40) END +VALUES ('dya', 'Dyan', NULL, 1711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyan', [Definition] = NULL, [SortOrder] = 170.40 WHERE [Code] = 'dya' END +SET [Description] = 'Dyan', [Definition] = NULL, [SortOrder] = 1711.00 WHERE [Code] = 'dya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyn', 'Dyangadi', NULL, 170.50) END +VALUES ('dyn', 'Dyangadi', NULL, 1712.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Dyangadi', [Definition] = NULL, [SortOrder] = 1712.00 WHERE [Code] = 'dyn' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('dyr', 'Dyarim', NULL, 1713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyangadi', [Definition] = NULL, [SortOrder] = 170.50 WHERE [Code] = 'dyn' END +SET [Description] = 'Dyarim', [Definition] = NULL, [SortOrder] = 1713.00 WHERE [Code] = 'dyr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbl', 'Dyirbal', NULL, 170.60) END +VALUES ('dbl', 'Dyirbal', NULL, 1714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyirbal', [Definition] = NULL, [SortOrder] = 170.60 WHERE [Code] = 'dbl' END +SET [Description] = 'Dyirbal', [Definition] = NULL, [SortOrder] = 1714.00 WHERE [Code] = 'dbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyd', 'Dyugun', NULL, 170.70) END +VALUES ('dyd', 'Dyugun', NULL, 1715.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyugun', [Definition] = NULL, [SortOrder] = 170.70 WHERE [Code] = 'dyd' END +SET [Description] = 'Dyugun', [Definition] = NULL, [SortOrder] = 1715.00 WHERE [Code] = 'dyd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyu', 'Dyula', NULL, 170.80) END +VALUES ('dyu', 'Dyula', NULL, 1716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyula', [Definition] = NULL, [SortOrder] = 170.80 WHERE [Code] = 'dyu' END +SET [Description] = 'Dyula', [Definition] = NULL, [SortOrder] = 1716.00 WHERE [Code] = 'dyu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jen', 'Dza', NULL, 170.90) END +VALUES ('jen', 'Dza', NULL, 1717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dza', [Definition] = NULL, [SortOrder] = 170.90 WHERE [Code] = 'jen' END +SET [Description] = 'Dza', [Definition] = NULL, [SortOrder] = 1717.00 WHERE [Code] = 'jen' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzl', 'Dzalakha', NULL, 171.00) END +VALUES ('dzl', 'Dzalakha', NULL, 1718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzalakha', [Definition] = NULL, [SortOrder] = 171.00 WHERE [Code] = 'dzl' END +SET [Description] = 'Dzalakha', [Definition] = NULL, [SortOrder] = 1718.00 WHERE [Code] = 'dzl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzn', 'Dzando', NULL, 171.10) END +VALUES ('dzn', 'Dzando', NULL, 1719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzando', [Definition] = NULL, [SortOrder] = 171.10 WHERE [Code] = 'dzn' END +SET [Description] = 'Dzando', [Definition] = NULL, [SortOrder] = 1719.00 WHERE [Code] = 'dzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpn', 'Dzao Min', NULL, 171.20) END +VALUES ('bpn', 'Dzao Min', NULL, 1720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzao Min', [Definition] = NULL, [SortOrder] = 171.20 WHERE [Code] = 'bpn' END +SET [Description] = 'Dzao Min', [Definition] = NULL, [SortOrder] = 1720.00 WHERE [Code] = 'bpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzo', 'Dzongkha', NULL, 171.30) END +VALUES ('dzo', 'Dzongkha', NULL, 1721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzongkha', [Definition] = NULL, [SortOrder] = 171.30 WHERE [Code] = 'dzo' END +SET [Description] = 'Dzongkha', [Definition] = NULL, [SortOrder] = 1721.00 WHERE [Code] = 'dzo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnn', 'Dzùùngoo', NULL, 171.40) END +VALUES ('dnn', 'Dzùùngoo', NULL, 1722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzùùngoo', [Definition] = NULL, [SortOrder] = 171.40 WHERE [Code] = 'dnn' END +SET [Description] = 'Dzùùngoo', [Definition] = NULL, [SortOrder] = 1722.00 WHERE [Code] = 'dnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eee', 'E', NULL, 171.50) END +VALUES ('eee', 'E', NULL, 1723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'E', [Definition] = NULL, [SortOrder] = 171.50 WHERE [Code] = 'eee' END +SET [Description] = 'E', [Definition] = NULL, [SortOrder] = 1723.00 WHERE [Code] = 'eee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yzg', 'E''ma Buyang', NULL, 171.60) END +VALUES ('yzg', 'E''ma Buyang', NULL, 1724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'E''ma Buyang', [Definition] = NULL, [SortOrder] = 171.60 WHERE [Code] = 'yzg' END +SET [Description] = 'E''ma Buyang', [Definition] = NULL, [SortOrder] = 1724.00 WHERE [Code] = 'yzg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbh', 'E''ñapa Woromaipu', NULL, 171.70) END +VALUES ('pbh', 'E''ñapa Woromaipu', NULL, 1725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'E''ñapa Woromaipu', [Definition] = NULL, [SortOrder] = 171.70 WHERE [Code] = 'pbh' END +SET [Description] = 'E''ñapa Woromaipu', [Definition] = NULL, [SortOrder] = 1725.00 WHERE [Code] = 'pbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtr', 'Early Tripuri', NULL, 171.80) END +VALUES ('xtr', 'Early Tripuri', NULL, 1726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Early Tripuri', [Definition] = NULL, [SortOrder] = 171.80 WHERE [Code] = 'xtr' END +SET [Description] = 'Early Tripuri', [Definition] = NULL, [SortOrder] = 1726.00 WHERE [Code] = 'xtr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omb', 'East Ambae', NULL, 171.90) END +VALUES ('omb', 'East Ambae', NULL, 1727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Ambae', [Definition] = NULL, [SortOrder] = 171.90 WHERE [Code] = 'omb' END +SET [Description] = 'East Ambae', [Definition] = NULL, [SortOrder] = 1727.00 WHERE [Code] = 'omb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbe', 'East Berawan', NULL, 172.00) END +VALUES ('zbe', 'East Berawan', NULL, 1728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Berawan', [Definition] = NULL, [SortOrder] = 172.00 WHERE [Code] = 'zbe' END +SET [Description] = 'East Berawan', [Definition] = NULL, [SortOrder] = 1728.00 WHERE [Code] = 'zbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmr', 'East Damar', NULL, 172.10) END +VALUES ('dmr', 'East Damar', NULL, 1729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Damar', [Definition] = NULL, [SortOrder] = 172.10 WHERE [Code] = 'dmr' END +SET [Description] = 'East Damar', [Definition] = NULL, [SortOrder] = 1729.00 WHERE [Code] = 'dmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fud', 'East Futuna', NULL, 172.20) END +VALUES ('fud', 'East Futuna', NULL, 1730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Futuna', [Definition] = NULL, [SortOrder] = 172.20 WHERE [Code] = 'fud' END +SET [Description] = 'East Futuna', [Definition] = NULL, [SortOrder] = 1730.00 WHERE [Code] = 'fud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjs', 'East Kewa', NULL, 172.30) END +VALUES ('kjs', 'East Kewa', NULL, 1731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Kewa', [Definition] = NULL, [SortOrder] = 172.30 WHERE [Code] = 'kjs' END +SET [Description] = 'East Kewa', [Definition] = NULL, [SortOrder] = 1731.00 WHERE [Code] = 'kjs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lma', 'East Limba', NULL, 172.40) END +VALUES ('lma', 'East Limba', NULL, 1732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Limba', [Definition] = NULL, [SortOrder] = 172.40 WHERE [Code] = 'lma' END +SET [Description] = 'East Limba', [Definition] = NULL, [SortOrder] = 1732.00 WHERE [Code] = 'lma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mky', 'East Makian', NULL, 172.50) END +VALUES ('mky', 'East Makian', NULL, 1733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Makian', [Definition] = NULL, [SortOrder] = 172.50 WHERE [Code] = 'mky' END +SET [Description] = 'East Makian', [Definition] = NULL, [SortOrder] = 1733.00 WHERE [Code] = 'mky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vme', 'East Masela', NULL, 172.60) END +VALUES ('vme', 'East Masela', NULL, 1734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Masela', [Definition] = NULL, [SortOrder] = 172.60 WHERE [Code] = 'vme' END +SET [Description] = 'East Masela', [Definition] = NULL, [SortOrder] = 1734.00 WHERE [Code] = 'vme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nle', 'East Nyala', NULL, 172.70) END +VALUES ('nle', 'East Nyala', NULL, 1735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Nyala', [Definition] = NULL, [SortOrder] = 172.70 WHERE [Code] = 'nle' END +SET [Description] = 'East Nyala', [Definition] = NULL, [SortOrder] = 1735.00 WHERE [Code] = 'nle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tre', 'East Tarangan', NULL, 172.80) END +VALUES ('tre', 'East Tarangan', NULL, 1736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Tarangan', [Definition] = NULL, [SortOrder] = 172.80 WHERE [Code] = 'tre' END +SET [Description] = 'East Tarangan', [Definition] = NULL, [SortOrder] = 1736.00 WHERE [Code] = 'tre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuy', 'East Yugur', NULL, 172.90) END +VALUES ('yuy', 'East Yugur', NULL, 1737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Yugur', [Definition] = NULL, [SortOrder] = 172.90 WHERE [Code] = 'yuy' END +SET [Description] = 'East Yugur', [Definition] = NULL, [SortOrder] = 1737.00 WHERE [Code] = 'yuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaq', 'Eastern Abnaki', NULL, 173.00) END +VALUES ('aaq', 'Eastern Abnaki', NULL, 1738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Abnaki', [Definition] = NULL, [SortOrder] = 173.00 WHERE [Code] = 'aaq' END +SET [Description] = 'Eastern Abnaki', [Definition] = NULL, [SortOrder] = 1738.00 WHERE [Code] = 'aaq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acp', 'Eastern Acipa', NULL, 173.10) END +VALUES ('acp', 'Eastern Acipa', NULL, 1739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Acipa', [Definition] = NULL, [SortOrder] = 173.10 WHERE [Code] = 'acp' END +SET [Description] = 'Eastern Acipa', [Definition] = NULL, [SortOrder] = 1739.00 WHERE [Code] = 'acp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qve', 'Eastern Apurímac Quechua', NULL, 173.20) END +VALUES ('qve', 'Eastern Apurímac Quechua', NULL, 1740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Apurímac Quechua', [Definition] = NULL, [SortOrder] = 173.20 WHERE [Code] = 'qve' END +SET [Description] = 'Eastern Apurímac Quechua', [Definition] = NULL, [SortOrder] = 1740.00 WHERE [Code] = 'qve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aer', 'Eastern Arrernte', NULL, 173.30) END +VALUES ('aer', 'Eastern Arrernte', NULL, 1741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Arrernte', [Definition] = NULL, [SortOrder] = 173.30 WHERE [Code] = 'aer' END +SET [Description] = 'Eastern Arrernte', [Definition] = NULL, [SortOrder] = 1741.00 WHERE [Code] = 'aer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgp', 'Eastern Balochi', NULL, 173.40) END +VALUES ('bgp', 'Eastern Balochi', NULL, 1742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Balochi', [Definition] = NULL, [SortOrder] = 173.40 WHERE [Code] = 'bgp' END +SET [Description] = 'Eastern Balochi', [Definition] = NULL, [SortOrder] = 1742.00 WHERE [Code] = 'bgp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gui', 'Eastern Bolivian Guaraní', NULL, 173.50) END +VALUES ('gui', 'Eastern Bolivian Guaraní', NULL, 1743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Bolivian Guaraní', [Definition] = NULL, [SortOrder] = 173.50 WHERE [Code] = 'gui' END +SET [Description] = 'Eastern Bolivian Guaraní', [Definition] = NULL, [SortOrder] = 1743.00 WHERE [Code] = 'gui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebk', 'Eastern Bontok', NULL, 173.60) END +VALUES ('ebk', 'Eastern Bontok', NULL, 1744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Bontok', [Definition] = NULL, [SortOrder] = 173.60 WHERE [Code] = 'ebk' END +SET [Description] = 'Eastern Bontok', [Definition] = NULL, [SortOrder] = 1744.00 WHERE [Code] = 'ebk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bru', 'Eastern Bru', NULL, 173.70) END +VALUES ('bru', 'Eastern Bru', NULL, 1745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Bru', [Definition] = NULL, [SortOrder] = 173.70 WHERE [Code] = 'bru' END +SET [Description] = 'Eastern Bru', [Definition] = NULL, [SortOrder] = 1745.00 WHERE [Code] = 'bru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ike') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ike', 'Eastern Canadian Inuktitut', NULL, 173.80) END +VALUES ('ike', 'Eastern Canadian Inuktitut', NULL, 1746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Canadian Inuktitut', [Definition] = NULL, [SortOrder] = 173.80 WHERE [Code] = 'ike' END +SET [Description] = 'Eastern Canadian Inuktitut', [Definition] = NULL, [SortOrder] = 1746.00 WHERE [Code] = 'ike' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjm', 'Eastern Cham', NULL, 173.90) END +VALUES ('cjm', 'Eastern Cham', NULL, 1747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Cham', [Definition] = NULL, [SortOrder] = 173.90 WHERE [Code] = 'cjm' END +SET [Description] = 'Eastern Cham', [Definition] = NULL, [SortOrder] = 1747.00 WHERE [Code] = 'cjm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azd', 'Eastern Durango Nahuatl', NULL, 174.00) END +VALUES ('azd', 'Eastern Durango Nahuatl', NULL, 1748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Durango Nahuatl', [Definition] = NULL, [SortOrder] = 174.00 WHERE [Code] = 'azd' END +SET [Description] = 'Eastern Durango Nahuatl', [Definition] = NULL, [SortOrder] = 1748.00 WHERE [Code] = 'azd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avl', 'Eastern Egyptian Bedawi Arabic', NULL, 174.10) END +VALUES ('avl', 'Eastern Egyptian Bedawi Arabic', NULL, 1749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Egyptian Bedawi Arabic', [Definition] = NULL, [SortOrder] = 174.10 WHERE [Code] = 'avl' END +SET [Description] = 'Eastern Egyptian Bedawi Arabic', [Definition] = NULL, [SortOrder] = 1749.00 WHERE [Code] = 'avl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frs', 'Eastern Frisian', NULL, 174.20) END +VALUES ('frs', 'Eastern Frisian', NULL, 1750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Frisian', [Definition] = NULL, [SortOrder] = 174.20 WHERE [Code] = 'frs' END +SET [Description] = 'Eastern Frisian', [Definition] = NULL, [SortOrder] = 1750.00 WHERE [Code] = 'frs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tge', 'Eastern Gorkha Tamang', NULL, 174.30) END +VALUES ('tge', 'Eastern Gorkha Tamang', NULL, 1751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Gorkha Tamang', [Definition] = NULL, [SortOrder] = 174.30 WHERE [Code] = 'tge' END +SET [Description] = 'Eastern Gorkha Tamang', [Definition] = NULL, [SortOrder] = 1751.00 WHERE [Code] = 'tge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cly', 'Eastern Highland Chatino', NULL, 174.40) END +VALUES ('cly', 'Eastern Highland Chatino', NULL, 1752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Highland Chatino', [Definition] = NULL, [SortOrder] = 174.40 WHERE [Code] = 'cly' END +SET [Description] = 'Eastern Highland Chatino', [Definition] = NULL, [SortOrder] = 1752.00 WHERE [Code] = 'cly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otm', 'Eastern Highland Otomi', NULL, 174.50) END +VALUES ('otm', 'Eastern Highland Otomi', NULL, 1753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Highland Otomi', [Definition] = NULL, [SortOrder] = 174.50 WHERE [Code] = 'otm' END +SET [Description] = 'Eastern Highland Otomi', [Definition] = NULL, [SortOrder] = 1753.00 WHERE [Code] = 'otm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zeh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zeh', 'Eastern Hongshuihe Zhuang', NULL, 174.60) END +VALUES ('zeh', 'Eastern Hongshuihe Zhuang', NULL, 1754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Hongshuihe Zhuang', [Definition] = NULL, [SortOrder] = 174.60 WHERE [Code] = 'zeh' END +SET [Description] = 'Eastern Hongshuihe Zhuang', [Definition] = NULL, [SortOrder] = 1754.00 WHERE [Code] = 'zeh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhe', 'Eastern Huasteca Nahuatl', NULL, 174.70) END +VALUES ('nhe', 'Eastern Huasteca Nahuatl', NULL, 1755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 174.70 WHERE [Code] = 'nhe' END +SET [Description] = 'Eastern Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 1755.00 WHERE [Code] = 'nhe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hme', 'Eastern Huishui Hmong', NULL, 174.80) END +VALUES ('hme', 'Eastern Huishui Hmong', NULL, 1756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Huishui Hmong', [Definition] = NULL, [SortOrder] = 174.80 WHERE [Code] = 'hme' END +SET [Description] = 'Eastern Huishui Hmong', [Definition] = NULL, [SortOrder] = 1756.00 WHERE [Code] = 'hme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrb', 'Eastern Karaboro', NULL, 174.90) END +VALUES ('xrb', 'Eastern Karaboro', NULL, 1757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Karaboro', [Definition] = NULL, [SortOrder] = 174.90 WHERE [Code] = 'xrb' END +SET [Description] = 'Eastern Karaboro', [Definition] = NULL, [SortOrder] = 1757.00 WHERE [Code] = 'xrb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktv', 'Eastern Katu', NULL, 175.00) END +VALUES ('ktv', 'Eastern Katu', NULL, 1758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Katu', [Definition] = NULL, [SortOrder] = 175.00 WHERE [Code] = 'ktv' END +SET [Description] = 'Eastern Katu', [Definition] = NULL, [SortOrder] = 1758.00 WHERE [Code] = 'ktv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eky', 'Eastern Kayah', NULL, 175.10) END +VALUES ('eky', 'Eastern Kayah', NULL, 1759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Kayah', [Definition] = NULL, [SortOrder] = 175.10 WHERE [Code] = 'eky' END +SET [Description] = 'Eastern Kayah', [Definition] = NULL, [SortOrder] = 1759.00 WHERE [Code] = 'eky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kee', 'Eastern Keres', NULL, 175.20) END +VALUES ('kee', 'Eastern Keres', NULL, 1760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Keres', [Definition] = NULL, [SortOrder] = 175.20 WHERE [Code] = 'kee' END +SET [Description] = 'Eastern Keres', [Definition] = NULL, [SortOrder] = 1760.00 WHERE [Code] = 'kee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cek', 'Eastern Khumi Chin', NULL, 175.30) END +VALUES ('cek', 'Eastern Khumi Chin', NULL, 1761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Khumi Chin', [Definition] = NULL, [SortOrder] = 175.30 WHERE [Code] = 'cek' END +SET [Description] = 'Eastern Khumi Chin', [Definition] = NULL, [SortOrder] = 1761.00 WHERE [Code] = 'cek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqo', 'Eastern Krahn', NULL, 175.40) END +VALUES ('kqo', 'Eastern Krahn', NULL, 1762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Krahn', [Definition] = NULL, [SortOrder] = 175.40 WHERE [Code] = 'kqo' END +SET [Description] = 'Eastern Krahn', [Definition] = NULL, [SortOrder] = 1762.00 WHERE [Code] = 'kqo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yit', 'Eastern Lalu', NULL, 175.50) END +VALUES ('yit', 'Eastern Lalu', NULL, 1763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Lalu', [Definition] = NULL, [SortOrder] = 175.50 WHERE [Code] = 'yit' END +SET [Description] = 'Eastern Lalu', [Definition] = NULL, [SortOrder] = 1763.00 WHERE [Code] = 'yit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwl', 'Eastern Lawa', NULL, 175.60) END +VALUES ('lwl', 'Eastern Lawa', NULL, 1764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Lawa', [Definition] = NULL, [SortOrder] = 175.60 WHERE [Code] = 'lwl' END +SET [Description] = 'Eastern Lawa', [Definition] = NULL, [SortOrder] = 1764.00 WHERE [Code] = 'lwl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgp', 'Eastern Magar', NULL, 175.70) END +VALUES ('mgp', 'Eastern Magar', NULL, 1765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Magar', [Definition] = NULL, [SortOrder] = 175.70 WHERE [Code] = 'mgp' END +SET [Description] = 'Eastern Magar', [Definition] = NULL, [SortOrder] = 1765.00 WHERE [Code] = 'mgp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emk', 'Eastern Maninkakan', NULL, 175.80) END +VALUES ('emk', 'Eastern Maninkakan', NULL, 1766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Maninkakan', [Definition] = NULL, [SortOrder] = 175.80 WHERE [Code] = 'emk' END +SET [Description] = 'Eastern Maninkakan', [Definition] = NULL, [SortOrder] = 1766.00 WHERE [Code] = 'emk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhr', 'Eastern Mari', NULL, 175.90) END +VALUES ('mhr', 'Eastern Mari', NULL, 1767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Mari', [Definition] = NULL, [SortOrder] = 175.90 WHERE [Code] = 'mhr' END +SET [Description] = 'Eastern Mari', [Definition] = NULL, [SortOrder] = 1767.00 WHERE [Code] = 'mhr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djk', 'Eastern Maroon Creole', NULL, 176.00) END +VALUES ('djk', 'Eastern Maroon Creole', NULL, 1768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Maroon Creole', [Definition] = NULL, [SortOrder] = 176.00 WHERE [Code] = 'djk' END +SET [Description] = 'Eastern Maroon Creole', [Definition] = NULL, [SortOrder] = 1768.00 WHERE [Code] = 'djk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emg', 'Eastern Meohang', NULL, 176.10) END +VALUES ('emg', 'Eastern Meohang', NULL, 1769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Meohang', [Definition] = NULL, [SortOrder] = 176.10 WHERE [Code] = 'emg' END +SET [Description] = 'Eastern Meohang', [Definition] = NULL, [SortOrder] = 1769.00 WHERE [Code] = 'emg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emq', 'Eastern Minyag', NULL, 176.20) END +VALUES ('emq', 'Eastern Minyag', NULL, 1770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Minyag', [Definition] = NULL, [SortOrder] = 176.20 WHERE [Code] = 'emq' END +SET [Description] = 'Eastern Minyag', [Definition] = NULL, [SortOrder] = 1770.00 WHERE [Code] = 'emq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mng', 'Eastern Mnong', NULL, 176.30) END +VALUES ('mng', 'Eastern Mnong', NULL, 1771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Mnong', [Definition] = NULL, [SortOrder] = 176.30 WHERE [Code] = 'mng' END +SET [Description] = 'Eastern Mnong', [Definition] = NULL, [SortOrder] = 1771.00 WHERE [Code] = 'mng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emu', 'Eastern Muria', NULL, 176.40) END +VALUES ('emu', 'Eastern Muria', NULL, 1772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Muria', [Definition] = NULL, [SortOrder] = 176.40 WHERE [Code] = 'emu' END +SET [Description] = 'Eastern Muria', [Definition] = NULL, [SortOrder] = 1772.00 WHERE [Code] = 'emu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nea', 'Eastern Ngad''a', NULL, 176.50) END +VALUES ('nea', 'Eastern Ngad''a', NULL, 1773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Ngad''a', [Definition] = NULL, [SortOrder] = 176.50 WHERE [Code] = 'nea' END +SET [Description] = 'Eastern Ngad''a', [Definition] = NULL, [SortOrder] = 1773.00 WHERE [Code] = 'nea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nos', 'Eastern Nisu', NULL, 176.60) END +VALUES ('nos', 'Eastern Nisu', NULL, 1774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Nisu', [Definition] = NULL, [SortOrder] = 176.60 WHERE [Code] = 'nos' END +SET [Description] = 'Eastern Nisu', [Definition] = NULL, [SortOrder] = 1774.00 WHERE [Code] = 'nos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojg', 'Eastern Ojibwa', NULL, 176.70) END +VALUES ('ojg', 'Eastern Ojibwa', NULL, 1775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Ojibwa', [Definition] = NULL, [SortOrder] = 176.70 WHERE [Code] = 'ojg' END +SET [Description] = 'Eastern Ojibwa', [Definition] = NULL, [SortOrder] = 1775.00 WHERE [Code] = 'ojg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hae', 'Eastern Oromo', NULL, 176.80) END +VALUES ('hae', 'Eastern Oromo', NULL, 1776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Oromo', [Definition] = NULL, [SortOrder] = 176.80 WHERE [Code] = 'hae' END +SET [Description] = 'Eastern Oromo', [Definition] = NULL, [SortOrder] = 1776.00 WHERE [Code] = 'hae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kif', 'Eastern Parbate Kham', NULL, 176.90) END +VALUES ('kif', 'Eastern Parbate Kham', NULL, 1777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Parbate Kham', [Definition] = NULL, [SortOrder] = 176.90 WHERE [Code] = 'kif' END +SET [Description] = 'Eastern Parbate Kham', [Definition] = NULL, [SortOrder] = 1777.00 WHERE [Code] = 'kif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pez', 'Eastern Penan', NULL, 177.00) END +VALUES ('pez', 'Eastern Penan', NULL, 1778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Penan', [Definition] = NULL, [SortOrder] = 177.00 WHERE [Code] = 'pez' END +SET [Description] = 'Eastern Penan', [Definition] = NULL, [SortOrder] = 1778.00 WHERE [Code] = 'pez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peb', 'Eastern Pomo', NULL, 177.10) END +VALUES ('peb', 'Eastern Pomo', NULL, 1779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Pomo', [Definition] = NULL, [SortOrder] = 177.10 WHERE [Code] = 'peb' END +SET [Description] = 'Eastern Pomo', [Definition] = NULL, [SortOrder] = 1779.00 WHERE [Code] = 'peb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmq', 'Eastern Qiandong Miao', NULL, 177.20) END +VALUES ('hmq', 'Eastern Qiandong Miao', NULL, 1780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Qiandong Miao', [Definition] = NULL, [SortOrder] = 177.20 WHERE [Code] = 'hmq' END +SET [Description] = 'Eastern Qiandong Miao', [Definition] = NULL, [SortOrder] = 1780.00 WHERE [Code] = 'hmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfe', 'Eastern Subanen', NULL, 177.30) END +VALUES ('sfe', 'Eastern Subanen', NULL, 1781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Subanen', [Definition] = NULL, [SortOrder] = 177.30 WHERE [Code] = 'sfe' END +SET [Description] = 'Eastern Subanen', [Definition] = NULL, [SortOrder] = 1781.00 WHERE [Code] = 'sfe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taj', 'Eastern Tamang', NULL, 177.40) END +VALUES ('taj', 'Eastern Tamang', NULL, 1782.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Tamang', [Definition] = NULL, [SortOrder] = 177.40 WHERE [Code] = 'taj' END +SET [Description] = 'Eastern Tamang', [Definition] = NULL, [SortOrder] = 1782.00 WHERE [Code] = 'taj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnj', 'Eastern Tawbuid', NULL, 177.50) END +VALUES ('bnj', 'Eastern Tawbuid', NULL, 1783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Tawbuid', [Definition] = NULL, [SortOrder] = 177.50 WHERE [Code] = 'bnj' END +SET [Description] = 'Eastern Tawbuid', [Definition] = NULL, [SortOrder] = 1783.00 WHERE [Code] = 'bnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muq', 'Eastern Xiangxi Miao', NULL, 177.60) END +VALUES ('muq', 'Eastern Xiangxi Miao', NULL, 1784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Xiangxi Miao', [Definition] = NULL, [SortOrder] = 177.60 WHERE [Code] = 'muq' END +SET [Description] = 'Eastern Xiangxi Miao', [Definition] = NULL, [SortOrder] = 1784.00 WHERE [Code] = 'muq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbx', 'Eastern Xwla Gbe', NULL, 177.70) END +VALUES ('gbx', 'Eastern Xwla Gbe', NULL, 1785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Xwla Gbe', [Definition] = NULL, [SortOrder] = 177.70 WHERE [Code] = 'gbx' END +SET [Description] = 'Eastern Xwla Gbe', [Definition] = NULL, [SortOrder] = 1785.00 WHERE [Code] = 'gbx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ydd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ydd', 'Eastern Yiddish', NULL, 177.80) END +VALUES ('ydd', 'Eastern Yiddish', NULL, 1786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Yiddish', [Definition] = NULL, [SortOrder] = 177.80 WHERE [Code] = 'ydd' END +SET [Description] = 'Eastern Yiddish', [Definition] = NULL, [SortOrder] = 1786.00 WHERE [Code] = 'ydd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igb', 'Ebira', NULL, 177.90) END +VALUES ('igb', 'Ebira', NULL, 1787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ebira', [Definition] = NULL, [SortOrder] = 177.90 WHERE [Code] = 'igb' END +SET [Description] = 'Ebira', [Definition] = NULL, [SortOrder] = 1787.00 WHERE [Code] = 'igb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xeb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xeb', 'Eblan', NULL, 178.00) END +VALUES ('xeb', 'Eblan', NULL, 1788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eblan', [Definition] = NULL, [SortOrder] = 178.00 WHERE [Code] = 'xeb' END +SET [Description] = 'Eblan', [Definition] = NULL, [SortOrder] = 1788.00 WHERE [Code] = 'xeb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebr', 'Ebrié', NULL, 178.10) END +VALUES ('ebr', 'Ebrié', NULL, 1789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ebrié', [Definition] = NULL, [SortOrder] = 178.10 WHERE [Code] = 'ebr' END +SET [Description] = 'Ebrié', [Definition] = NULL, [SortOrder] = 1789.00 WHERE [Code] = 'ebr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebg', 'Ebughu', NULL, 178.20) END +VALUES ('ebg', 'Ebughu', NULL, 1790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ebughu', [Definition] = NULL, [SortOrder] = 178.20 WHERE [Code] = 'ebg' END +SET [Description] = 'Ebughu', [Definition] = NULL, [SortOrder] = 1790.00 WHERE [Code] = 'ebg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ecs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ecs', 'Ecuadorian Sign Language', NULL, 178.30) END +VALUES ('ecs', 'Ecuadorian Sign Language', NULL, 1791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ecuadorian Sign Language', [Definition] = NULL, [SortOrder] = 178.30 WHERE [Code] = 'ecs' END +SET [Description] = 'Ecuadorian Sign Language', [Definition] = NULL, [SortOrder] = 1791.00 WHERE [Code] = 'ecs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbj', 'Ede Cabe', NULL, 178.40) END +VALUES ('cbj', 'Ede Cabe', NULL, 1792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ede Cabe', [Definition] = NULL, [SortOrder] = 178.40 WHERE [Code] = 'cbj' END +SET [Description] = 'Ede Cabe', [Definition] = NULL, [SortOrder] = 1792.00 WHERE [Code] = 'cbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ica') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ica', 'Ede Ica', NULL, 178.50) END +VALUES ('ica', 'Ede Ica', NULL, 1793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ede Ica', [Definition] = NULL, [SortOrder] = 178.50 WHERE [Code] = 'ica' END +SET [Description] = 'Ede Ica', [Definition] = NULL, [SortOrder] = 1793.00 WHERE [Code] = 'ica' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idd', 'Ede Idaca', NULL, 178.60) END +VALUES ('idd', 'Ede Idaca', NULL, 1794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ede Idaca', [Definition] = NULL, [SortOrder] = 178.60 WHERE [Code] = 'idd' END +SET [Description] = 'Ede Idaca', [Definition] = NULL, [SortOrder] = 1794.00 WHERE [Code] = 'idd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ijj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijj', 'Ede Ije', NULL, 178.70) END +VALUES ('ijj', 'Ede Ije', NULL, 1795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ede Ije', [Definition] = NULL, [SortOrder] = 178.70 WHERE [Code] = 'ijj' END +SET [Description] = 'Ede Ije', [Definition] = NULL, [SortOrder] = 1795.00 WHERE [Code] = 'ijj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awy', 'Edera Awyu', NULL, 178.80) END +VALUES ('awy', 'Edera Awyu', NULL, 1796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Edera Awyu', [Definition] = NULL, [SortOrder] = 178.80 WHERE [Code] = 'awy' END +SET [Description] = 'Edera Awyu', [Definition] = NULL, [SortOrder] = 1796.00 WHERE [Code] = 'awy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etr', 'Edolo', NULL, 178.90) END +VALUES ('etr', 'Edolo', NULL, 1797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Edolo', [Definition] = NULL, [SortOrder] = 178.90 WHERE [Code] = 'etr' END +SET [Description] = 'Edolo', [Definition] = NULL, [SortOrder] = 1797.00 WHERE [Code] = 'etr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdm', 'Edomite', NULL, 179.00) END +VALUES ('xdm', 'Edomite', NULL, 1798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Edomite', [Definition] = NULL, [SortOrder] = 179.00 WHERE [Code] = 'xdm' END +SET [Description] = 'Edomite', [Definition] = NULL, [SortOrder] = 1798.00 WHERE [Code] = 'xdm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbf', 'Edopi', NULL, 179.10) END +VALUES ('dbf', 'Edopi', NULL, 1799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Edopi', [Definition] = NULL, [SortOrder] = 179.10 WHERE [Code] = 'dbf' END +SET [Description] = 'Edopi', [Definition] = NULL, [SortOrder] = 1799.00 WHERE [Code] = 'dbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'efa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('efa', 'Efai', NULL, 179.20) END +VALUES ('efa', 'Efai', NULL, 1800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Efai', [Definition] = NULL, [SortOrder] = 179.20 WHERE [Code] = 'efa' END +SET [Description] = 'Efai', [Definition] = NULL, [SortOrder] = 1800.00 WHERE [Code] = 'efa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'efe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('efe', 'Efe', NULL, 179.30) END +VALUES ('efe', 'Efe', NULL, 1801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Efe', [Definition] = NULL, [SortOrder] = 179.30 WHERE [Code] = 'efe' END +SET [Description] = 'Efe', [Definition] = NULL, [SortOrder] = 1801.00 WHERE [Code] = 'efe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'efi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('efi', 'Efik', NULL, 179.40) END +VALUES ('efi', 'Efik', NULL, 1802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Efik', [Definition] = NULL, [SortOrder] = 179.40 WHERE [Code] = 'efi' END +SET [Description] = 'Efik', [Definition] = NULL, [SortOrder] = 1802.00 WHERE [Code] = 'efi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ofu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ofu', 'Efutop', NULL, 179.50) END +VALUES ('ofu', 'Efutop', NULL, 1803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Efutop', [Definition] = NULL, [SortOrder] = 179.50 WHERE [Code] = 'ofu' END +SET [Description] = 'Efutop', [Definition] = NULL, [SortOrder] = 1803.00 WHERE [Code] = 'ofu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ega') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ega', 'Ega', NULL, 179.60) END +VALUES ('ega', 'Ega', NULL, 1804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ega', [Definition] = NULL, [SortOrder] = 179.60 WHERE [Code] = 'ega' END +SET [Description] = 'Ega', [Definition] = NULL, [SortOrder] = 1804.00 WHERE [Code] = 'ega' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ego') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ego', 'Eggon', NULL, 179.70) END +VALUES ('ego', 'Eggon', NULL, 1805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eggon', [Definition] = NULL, [SortOrder] = 179.70 WHERE [Code] = 'ego' END +SET [Description] = 'Eggon', [Definition] = NULL, [SortOrder] = 1805.00 WHERE [Code] = 'ego' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esl', 'Egypt Sign Language', NULL, 179.80) END +VALUES ('esl', 'Egypt Sign Language', NULL, 1806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Egypt Sign Language', [Definition] = NULL, [SortOrder] = 179.80 WHERE [Code] = 'esl' END +SET [Description] = 'Egypt Sign Language', [Definition] = NULL, [SortOrder] = 1806.00 WHERE [Code] = 'esl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'egy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('egy', 'Egyptian (Ancient)', NULL, 179.90) END +VALUES ('egy', 'Egyptian (Ancient)', NULL, 1807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Egyptian (Ancient)', [Definition] = NULL, [SortOrder] = 179.90 WHERE [Code] = 'egy' END +SET [Description] = 'Egyptian (Ancient)', [Definition] = NULL, [SortOrder] = 1807.00 WHERE [Code] = 'egy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arz', 'Egyptian Arabic', NULL, 180.00) END +VALUES ('arz', 'Egyptian Arabic', NULL, 1808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Egyptian Arabic', [Definition] = NULL, [SortOrder] = 180.00 WHERE [Code] = 'arz' END +SET [Description] = 'Egyptian Arabic', [Definition] = NULL, [SortOrder] = 1808.00 WHERE [Code] = 'arz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ehu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ehu', 'Ehueun', NULL, 180.10) END +VALUES ('ehu', 'Ehueun', NULL, 1809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ehueun', [Definition] = NULL, [SortOrder] = 180.10 WHERE [Code] = 'ehu' END +SET [Description] = 'Ehueun', [Definition] = NULL, [SortOrder] = 1809.00 WHERE [Code] = 'ehu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eip', 'Eipomek', NULL, 180.20) END +VALUES ('eip', 'Eipomek', NULL, 1810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eipomek', [Definition] = NULL, [SortOrder] = 180.20 WHERE [Code] = 'eip' END +SET [Description] = 'Eipomek', [Definition] = NULL, [SortOrder] = 1810.00 WHERE [Code] = 'eip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eit', 'Eitiep', NULL, 180.30) END +VALUES ('eit', 'Eitiep', NULL, 1811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eitiep', [Definition] = NULL, [SortOrder] = 180.30 WHERE [Code] = 'eit' END +SET [Description] = 'Eitiep', [Definition] = NULL, [SortOrder] = 1811.00 WHERE [Code] = 'eit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etu', 'Ejagham', NULL, 180.40) END +VALUES ('etu', 'Ejagham', NULL, 1812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ejagham', [Definition] = NULL, [SortOrder] = 180.40 WHERE [Code] = 'etu' END +SET [Description] = 'Ejagham', [Definition] = NULL, [SortOrder] = 1812.00 WHERE [Code] = 'etu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eja', 'Ejamat', NULL, 180.50) END +VALUES ('eja', 'Ejamat', NULL, 1813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ejamat', [Definition] = NULL, [SortOrder] = 180.50 WHERE [Code] = 'eja' END +SET [Description] = 'Ejamat', [Definition] = NULL, [SortOrder] = 1813.00 WHERE [Code] = 'eja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cey', 'Ekai Chin', NULL, 180.60) END +VALUES ('cey', 'Ekai Chin', NULL, 1814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekai Chin', [Definition] = NULL, [SortOrder] = 180.60 WHERE [Code] = 'cey' END +SET [Description] = 'Ekai Chin', [Definition] = NULL, [SortOrder] = 1814.00 WHERE [Code] = 'cey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eka', 'Ekajuk', NULL, 180.70) END +VALUES ('eka', 'Ekajuk', NULL, 1815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekajuk', [Definition] = NULL, [SortOrder] = 180.70 WHERE [Code] = 'eka' END +SET [Description] = 'Ekajuk', [Definition] = NULL, [SortOrder] = 1815.00 WHERE [Code] = 'eka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekg', 'Ekari', NULL, 180.80) END +VALUES ('ekg', 'Ekari', NULL, 1816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekari', [Definition] = NULL, [SortOrder] = 180.80 WHERE [Code] = 'ekg' END +SET [Description] = 'Ekari', [Definition] = NULL, [SortOrder] = 1816.00 WHERE [Code] = 'ekg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eki', 'Eki', NULL, 180.90) END +VALUES ('eki', 'Eki', NULL, 1817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eki', [Definition] = NULL, [SortOrder] = 180.90 WHERE [Code] = 'eki' END +SET [Description] = 'Eki', [Definition] = NULL, [SortOrder] = 1817.00 WHERE [Code] = 'eki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eke', 'Ekit', NULL, 181.00) END +VALUES ('eke', 'Ekit', NULL, 1818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekit', [Definition] = NULL, [SortOrder] = 181.00 WHERE [Code] = 'eke' END +SET [Description] = 'Ekit', [Definition] = NULL, [SortOrder] = 1818.00 WHERE [Code] = 'eke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekp', 'Ekpeye', NULL, 181.10) END +VALUES ('ekp', 'Ekpeye', NULL, 1819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekpeye', [Definition] = NULL, [SortOrder] = 181.10 WHERE [Code] = 'ekp' END +SET [Description] = 'Ekpeye', [Definition] = NULL, [SortOrder] = 1819.00 WHERE [Code] = 'ekp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpp', 'El Alto Zapotec', NULL, 181.20) END +VALUES ('zpp', 'El Alto Zapotec', NULL, 1820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'El Alto Zapotec', [Definition] = NULL, [SortOrder] = 181.20 WHERE [Code] = 'zpp' END +SET [Description] = 'El Alto Zapotec', [Definition] = NULL, [SortOrder] = 1820.00 WHERE [Code] = 'zpp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elh', 'El Hugeirat', NULL, 181.30) END +VALUES ('elh', 'El Hugeirat', NULL, 1821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'El Hugeirat', [Definition] = NULL, [SortOrder] = 181.30 WHERE [Code] = 'elh' END +SET [Description] = 'El Hugeirat', [Definition] = NULL, [SortOrder] = 1821.00 WHERE [Code] = 'elh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elo', 'El Molo', NULL, 181.40) END +VALUES ('elo', 'El Molo', NULL, 1822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'El Molo', [Definition] = NULL, [SortOrder] = 181.40 WHERE [Code] = 'elo' END +SET [Description] = 'El Molo', [Definition] = NULL, [SortOrder] = 1822.00 WHERE [Code] = 'elo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crn', 'El Nayar Cora', NULL, 181.50) END +VALUES ('crn', 'El Nayar Cora', NULL, 1823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'El Nayar Cora', [Definition] = NULL, [SortOrder] = 181.50 WHERE [Code] = 'crn' END +SET [Description] = 'El Nayar Cora', [Definition] = NULL, [SortOrder] = 1823.00 WHERE [Code] = 'crn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elx', 'Elamite', NULL, 181.60) END +VALUES ('elx', 'Elamite', NULL, 1824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elamite', [Definition] = NULL, [SortOrder] = 181.60 WHERE [Code] = 'elx' END +SET [Description] = 'Elamite', [Definition] = NULL, [SortOrder] = 1824.00 WHERE [Code] = 'elx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elm', 'Eleme', NULL, 181.70) END +VALUES ('elm', 'Eleme', NULL, 1825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eleme', [Definition] = NULL, [SortOrder] = 181.70 WHERE [Code] = 'elm' END +SET [Description] = 'Eleme', [Definition] = NULL, [SortOrder] = 1825.00 WHERE [Code] = 'elm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ele') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ele', 'Elepi', NULL, 181.80) END +VALUES ('ele', 'Elepi', NULL, 1826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elepi', [Definition] = NULL, [SortOrder] = 181.80 WHERE [Code] = 'ele' END +SET [Description] = 'Elepi', [Definition] = NULL, [SortOrder] = 1826.00 WHERE [Code] = 'ele' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ovd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ovd', 'Elfdalian', NULL, 181.90) END +VALUES ('ovd', 'Elfdalian', NULL, 1827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elfdalian', [Definition] = NULL, [SortOrder] = 181.90 WHERE [Code] = 'ovd' END +SET [Description] = 'Elfdalian', [Definition] = NULL, [SortOrder] = 1827.00 WHERE [Code] = 'ovd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekm', 'Elip', NULL, 182.00) END +VALUES ('ekm', 'Elip', NULL, 1828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elip', [Definition] = NULL, [SortOrder] = 182.00 WHERE [Code] = 'ekm' END +SET [Description] = 'Elip', [Definition] = NULL, [SortOrder] = 1828.00 WHERE [Code] = 'ekm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elk', 'Elkei', NULL, 182.10) END +VALUES ('elk', 'Elkei', NULL, 1829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elkei', [Definition] = NULL, [SortOrder] = 182.10 WHERE [Code] = 'elk' END +SET [Description] = 'Elkei', [Definition] = NULL, [SortOrder] = 1829.00 WHERE [Code] = 'elk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zte', 'Elotepec Zapotec', NULL, 182.20) END +VALUES ('zte', 'Elotepec Zapotec', NULL, 1830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elotepec Zapotec', [Definition] = NULL, [SortOrder] = 182.20 WHERE [Code] = 'zte' END +SET [Description] = 'Elotepec Zapotec', [Definition] = NULL, [SortOrder] = 1830.00 WHERE [Code] = 'zte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afo', 'Eloyi', NULL, 182.30) END +VALUES ('afo', 'Eloyi', NULL, 1831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eloyi', [Definition] = NULL, [SortOrder] = 182.30 WHERE [Code] = 'afo' END +SET [Description] = 'Eloyi', [Definition] = NULL, [SortOrder] = 1831.00 WHERE [Code] = 'afo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrf', 'Elseng', NULL, 182.40) END +VALUES ('mrf', 'Elseng', NULL, 1832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elseng', [Definition] = NULL, [SortOrder] = 182.40 WHERE [Code] = 'mrf' END +SET [Description] = 'Elseng', [Definition] = NULL, [SortOrder] = 1832.00 WHERE [Code] = 'mrf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elu', 'Elu', NULL, 182.50) END +VALUES ('elu', 'Elu', NULL, 1833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elu', [Definition] = NULL, [SortOrder] = 182.50 WHERE [Code] = 'elu' END +SET [Description] = 'Elu', [Definition] = NULL, [SortOrder] = 1833.00 WHERE [Code] = 'elu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xly', 'Elymian', NULL, 182.60) END +VALUES ('xly', 'Elymian', NULL, 1834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elymian', [Definition] = NULL, [SortOrder] = 182.60 WHERE [Code] = 'xly' END +SET [Description] = 'Elymian', [Definition] = NULL, [SortOrder] = 1834.00 WHERE [Code] = 'xly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmw', 'Emae', NULL, 182.70) END +VALUES ('mmw', 'Emae', NULL, 1835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emae', [Definition] = NULL, [SortOrder] = 182.70 WHERE [Code] = 'mmw' END +SET [Description] = 'Emae', [Definition] = NULL, [SortOrder] = 1835.00 WHERE [Code] = 'mmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ema') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ema', 'Emai-Iuleha-Ora', NULL, 182.80) END +VALUES ('ema', 'Emai-Iuleha-Ora', NULL, 1836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emai-Iuleha-Ora', [Definition] = NULL, [SortOrder] = 182.80 WHERE [Code] = 'ema' END +SET [Description] = 'Emai-Iuleha-Ora', [Definition] = NULL, [SortOrder] = 1836.00 WHERE [Code] = 'ema' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emn', 'Eman', NULL, 182.90) END +VALUES ('emn', 'Eman', NULL, 1837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eman', [Definition] = NULL, [SortOrder] = 182.90 WHERE [Code] = 'emn' END +SET [Description] = 'Eman', [Definition] = NULL, [SortOrder] = 1837.00 WHERE [Code] = 'emn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emb', 'Embaloh', NULL, 183.00) END +VALUES ('emb', 'Embaloh', NULL, 1838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Embaloh', [Definition] = NULL, [SortOrder] = 183.00 WHERE [Code] = 'emb' END +SET [Description] = 'Embaloh', [Definition] = NULL, [SortOrder] = 1838.00 WHERE [Code] = 'emb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdc', 'Emberá-Baudó', NULL, 183.10) END +VALUES ('bdc', 'Emberá-Baudó', NULL, 1839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emberá-Baudó', [Definition] = NULL, [SortOrder] = 183.10 WHERE [Code] = 'bdc' END +SET [Description] = 'Emberá-Baudó', [Definition] = NULL, [SortOrder] = 1839.00 WHERE [Code] = 'bdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cto', 'Emberá-Catío', NULL, 183.20) END +VALUES ('cto', 'Emberá-Catío', NULL, 1840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emberá-Catío', [Definition] = NULL, [SortOrder] = 183.20 WHERE [Code] = 'cto' END +SET [Description] = 'Emberá-Catío', [Definition] = NULL, [SortOrder] = 1840.00 WHERE [Code] = 'cto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmi', 'Emberá-Chamí', NULL, 183.30) END +VALUES ('cmi', 'Emberá-Chamí', NULL, 1841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emberá-Chamí', [Definition] = NULL, [SortOrder] = 183.30 WHERE [Code] = 'cmi' END +SET [Description] = 'Emberá-Chamí', [Definition] = NULL, [SortOrder] = 1841.00 WHERE [Code] = 'cmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdc', 'Emberá-Tadó', NULL, 183.40) END +VALUES ('tdc', 'Emberá-Tadó', NULL, 1842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emberá-Tadó', [Definition] = NULL, [SortOrder] = 183.40 WHERE [Code] = 'tdc' END +SET [Description] = 'Emberá-Tadó', [Definition] = NULL, [SortOrder] = 1842.00 WHERE [Code] = 'tdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebu', 'Embu', NULL, 183.50) END +VALUES ('ebu', 'Embu', NULL, 1843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Embu', [Definition] = NULL, [SortOrder] = 183.50 WHERE [Code] = 'ebu' END +SET [Description] = 'Embu', [Definition] = NULL, [SortOrder] = 1843.00 WHERE [Code] = 'ebu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eme', 'Emerillon', NULL, 183.60) END +VALUES ('eme', 'Emerillon', NULL, 1844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emerillon', [Definition] = NULL, [SortOrder] = 183.60 WHERE [Code] = 'eme' END +SET [Description] = 'Emerillon', [Definition] = NULL, [SortOrder] = 1844.00 WHERE [Code] = 'eme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'egl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('egl', 'Emilian', NULL, 183.70) END +VALUES ('egl', 'Emilian', NULL, 1845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emilian', [Definition] = NULL, [SortOrder] = 183.70 WHERE [Code] = 'egl' END +SET [Description] = 'Emilian', [Definition] = NULL, [SortOrder] = 1845.00 WHERE [Code] = 'egl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emw', 'Emplawas', NULL, 183.80) END +VALUES ('emw', 'Emplawas', NULL, 1846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emplawas', [Definition] = NULL, [SortOrder] = 183.80 WHERE [Code] = 'emw' END +SET [Description] = 'Emplawas', [Definition] = NULL, [SortOrder] = 1846.00 WHERE [Code] = 'emw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enr', 'Emumu', NULL, 183.90) END +VALUES ('enr', 'Emumu', NULL, 1847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emumu', [Definition] = NULL, [SortOrder] = 183.90 WHERE [Code] = 'enr' END +SET [Description] = 'Emumu', [Definition] = NULL, [SortOrder] = 1847.00 WHERE [Code] = 'enr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enc', 'En', NULL, 184.00) END +VALUES ('enc', 'En', NULL, 1848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'En', [Definition] = NULL, [SortOrder] = 184.00 WHERE [Code] = 'enc' END +SET [Description] = 'En', [Definition] = NULL, [SortOrder] = 1848.00 WHERE [Code] = 'enc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unk', 'Enawené-Nawé', NULL, 184.10) END +VALUES ('unk', 'Enawené-Nawé', NULL, 1849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enawené-Nawé', [Definition] = NULL, [SortOrder] = 184.10 WHERE [Code] = 'unk' END +SET [Description] = 'Enawené-Nawé', [Definition] = NULL, [SortOrder] = 1849.00 WHERE [Code] = 'unk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'end') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('end', 'Ende', NULL, 184.20) END +VALUES ('end', 'Ende', NULL, 1850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ende', [Definition] = NULL, [SortOrder] = 184.20 WHERE [Code] = 'end' END +SET [Description] = 'Ende', [Definition] = NULL, [SortOrder] = 1850.00 WHERE [Code] = 'end' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enq', 'Enga', NULL, 184.30) END +VALUES ('enq', 'Enga', NULL, 1851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enga', [Definition] = NULL, [SortOrder] = 184.30 WHERE [Code] = 'enq' END +SET [Description] = 'Enga', [Definition] = NULL, [SortOrder] = 1851.00 WHERE [Code] = 'enq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngr', 'Engdewu', NULL, 184.40) END +VALUES ('ngr', 'Engdewu', NULL, 1852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Engdewu', [Definition] = NULL, [SortOrder] = 184.40 WHERE [Code] = 'ngr' END +SET [Description] = 'Engdewu', [Definition] = NULL, [SortOrder] = 1852.00 WHERE [Code] = 'ngr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enn', 'Engenni', NULL, 184.50) END +VALUES ('enn', 'Engenni', NULL, 1853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Engenni', [Definition] = NULL, [SortOrder] = 184.50 WHERE [Code] = 'enn' END +SET [Description] = 'Engenni', [Definition] = NULL, [SortOrder] = 1853.00 WHERE [Code] = 'enn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eno', 'Enggano', NULL, 184.60) END +VALUES ('eno', 'Enggano', NULL, 1854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enggano', [Definition] = NULL, [SortOrder] = 184.60 WHERE [Code] = 'eno' END +SET [Description] = 'Enggano', [Definition] = NULL, [SortOrder] = 1854.00 WHERE [Code] = 'eno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eng', 'English', NULL, 184.70) END +VALUES ('eng', 'English', NULL, 1855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'English', [Definition] = NULL, [SortOrder] = 184.70 WHERE [Code] = 'eng' END +SET [Description] = 'English', [Definition] = NULL, [SortOrder] = 1855.00 WHERE [Code] = 'eng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enl', 'Enlhet', NULL, 184.80) END +VALUES ('enl', 'Enlhet', NULL, 1856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enlhet', [Definition] = NULL, [SortOrder] = 184.80 WHERE [Code] = 'enl' END +SET [Description] = 'Enlhet', [Definition] = NULL, [SortOrder] = 1856.00 WHERE [Code] = 'enl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptt', 'Enrekang', NULL, 184.90) END +VALUES ('ptt', 'Enrekang', NULL, 1857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enrekang', [Definition] = NULL, [SortOrder] = 184.90 WHERE [Code] = 'ptt' END +SET [Description] = 'Enrekang', [Definition] = NULL, [SortOrder] = 1857.00 WHERE [Code] = 'ptt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enu', 'Enu', NULL, 185.00) END +VALUES ('enu', 'Enu', NULL, 1858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enu', [Definition] = NULL, [SortOrder] = 185.00 WHERE [Code] = 'enu' END +SET [Description] = 'Enu', [Definition] = NULL, [SortOrder] = 1858.00 WHERE [Code] = 'enu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enw', 'Enwan (Akwa Ibom State)', NULL, 185.10) END +VALUES ('enw', 'Enwan (Akwa Ibom State)', NULL, 1859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enwan (Akwa Ibom State)', [Definition] = NULL, [SortOrder] = 185.10 WHERE [Code] = 'enw' END +SET [Description] = 'Enwan (Akwa Ibom State)', [Definition] = NULL, [SortOrder] = 1859.00 WHERE [Code] = 'enw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'env') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('env', 'Enwan (Edo State)', NULL, 185.20) END +VALUES ('env', 'Enwan (Edo State)', NULL, 1860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enwan (Edo State)', [Definition] = NULL, [SortOrder] = 185.20 WHERE [Code] = 'env' END +SET [Description] = 'Enwan (Edo State)', [Definition] = NULL, [SortOrder] = 1860.00 WHERE [Code] = 'env' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enx', 'Enxet', NULL, 185.30) END +VALUES ('enx', 'Enxet', NULL, 1861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enxet', [Definition] = NULL, [SortOrder] = 185.30 WHERE [Code] = 'enx' END +SET [Description] = 'Enxet', [Definition] = NULL, [SortOrder] = 1861.00 WHERE [Code] = 'enx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gey', 'Enya', NULL, 185.40) END +VALUES ('gey', 'Enya', NULL, 1862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enya', [Definition] = NULL, [SortOrder] = 185.40 WHERE [Code] = 'gey' END +SET [Description] = 'Enya', [Definition] = NULL, [SortOrder] = 1862.00 WHERE [Code] = 'gey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sja', 'Epena', NULL, 185.50) END +VALUES ('sja', 'Epena', NULL, 1863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Epena', [Definition] = NULL, [SortOrder] = 185.50 WHERE [Code] = 'sja' END +SET [Description] = 'Epena', [Definition] = NULL, [SortOrder] = 1863.00 WHERE [Code] = 'sja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xep', 'Epi-Olmec', NULL, 185.60) END +VALUES ('xep', 'Epi-Olmec', NULL, 1864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Epi-Olmec', [Definition] = NULL, [SortOrder] = 185.60 WHERE [Code] = 'xep' END +SET [Description] = 'Epi-Olmec', [Definition] = NULL, [SortOrder] = 1864.00 WHERE [Code] = 'xep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'epi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('epi', 'Epie', NULL, 185.70) END +VALUES ('epi', 'Epie', NULL, 1865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Epie', [Definition] = NULL, [SortOrder] = 185.70 WHERE [Code] = 'epi' END +SET [Description] = 'Epie', [Definition] = NULL, [SortOrder] = 1865.00 WHERE [Code] = 'epi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emy', 'Epigraphic Mayan', NULL, 185.80) END +VALUES ('emy', 'Epigraphic Mayan', NULL, 1866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Epigraphic Mayan', [Definition] = NULL, [SortOrder] = 185.80 WHERE [Code] = 'emy' END +SET [Description] = 'Epigraphic Mayan', [Definition] = NULL, [SortOrder] = 1866.00 WHERE [Code] = 'emy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'era') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('era', 'Eravallan', NULL, 185.90) END +VALUES ('era', 'Eravallan', NULL, 1867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eravallan', [Definition] = NULL, [SortOrder] = 185.90 WHERE [Code] = 'era' END +SET [Description] = 'Eravallan', [Definition] = NULL, [SortOrder] = 1867.00 WHERE [Code] = 'era' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjy', 'Erave', NULL, 186.00) END +VALUES ('kjy', 'Erave', NULL, 1868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erave', [Definition] = NULL, [SortOrder] = 186.00 WHERE [Code] = 'kjy' END +SET [Description] = 'Erave', [Definition] = NULL, [SortOrder] = 1868.00 WHERE [Code] = 'kjy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twp', 'Ere', NULL, 186.10) END +VALUES ('twp', 'Ere', NULL, 1869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ere', [Definition] = NULL, [SortOrder] = 186.10 WHERE [Code] = 'twp' END +SET [Description] = 'Ere', [Definition] = NULL, [SortOrder] = 1869.00 WHERE [Code] = 'twp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ert') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ert', 'Eritai', NULL, 186.20) END +VALUES ('ert', 'Eritai', NULL, 1870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eritai', [Definition] = NULL, [SortOrder] = 186.20 WHERE [Code] = 'ert' END +SET [Description] = 'Eritai', [Definition] = NULL, [SortOrder] = 1870.00 WHERE [Code] = 'ert' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'erw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('erw', 'Erokwanas', NULL, 186.30) END +VALUES ('erw', 'Erokwanas', NULL, 1871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erokwanas', [Definition] = NULL, [SortOrder] = 186.30 WHERE [Code] = 'erw' END +SET [Description] = 'Erokwanas', [Definition] = NULL, [SortOrder] = 1871.00 WHERE [Code] = 'erw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'err') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('err', 'Erre', NULL, 186.40) END +VALUES ('err', 'Erre', NULL, 1872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erre', [Definition] = NULL, [SortOrder] = 186.40 WHERE [Code] = 'err' END +SET [Description] = 'Erre', [Definition] = NULL, [SortOrder] = 1872.00 WHERE [Code] = 'err' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emx', 'Erromintxela', NULL, 186.50) END +VALUES ('emx', 'Erromintxela', NULL, 1873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erromintxela', [Definition] = NULL, [SortOrder] = 186.50 WHERE [Code] = 'emx' END +SET [Description] = 'Erromintxela', [Definition] = NULL, [SortOrder] = 1873.00 WHERE [Code] = 'emx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ers') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ers', 'Ersu', NULL, 186.60) END +VALUES ('ers', 'Ersu', NULL, 1874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ersu', [Definition] = NULL, [SortOrder] = 186.60 WHERE [Code] = 'ers' END +SET [Description] = 'Ersu', [Definition] = NULL, [SortOrder] = 1874.00 WHERE [Code] = 'ers' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'erh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('erh', 'Eruwa', NULL, 186.70) END +VALUES ('erh', 'Eruwa', NULL, 1875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eruwa', [Definition] = NULL, [SortOrder] = 186.70 WHERE [Code] = 'erh' END +SET [Description] = 'Eruwa', [Definition] = NULL, [SortOrder] = 1875.00 WHERE [Code] = 'erh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myv', 'Erzya', NULL, 186.80) END +VALUES ('myv', 'Erzya', NULL, 1876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erzya', [Definition] = NULL, [SortOrder] = 186.80 WHERE [Code] = 'myv' END +SET [Description] = 'Erzya', [Definition] = NULL, [SortOrder] = 1876.00 WHERE [Code] = 'myv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ish') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ish', 'Esan', NULL, 186.90) END +VALUES ('ish', 'Esan', NULL, 1877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esan', [Definition] = NULL, [SortOrder] = 186.90 WHERE [Code] = 'ish' END +SET [Description] = 'Esan', [Definition] = NULL, [SortOrder] = 1877.00 WHERE [Code] = 'ish' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcq', 'Ese', NULL, 187.00) END +VALUES ('mcq', 'Ese', NULL, 1878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ese', [Definition] = NULL, [SortOrder] = 187.00 WHERE [Code] = 'mcq' END +SET [Description] = 'Ese', [Definition] = NULL, [SortOrder] = 1878.00 WHERE [Code] = 'mcq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ese') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ese', 'Ese Ejja', NULL, 187.10) END +VALUES ('ese', 'Ese Ejja', NULL, 1879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ese Ejja', [Definition] = NULL, [SortOrder] = 187.10 WHERE [Code] = 'ese' END +SET [Description] = 'Ese Ejja', [Definition] = NULL, [SortOrder] = 1879.00 WHERE [Code] = 'ese' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esh', 'Eshtehardi', NULL, 187.20) END +VALUES ('esh', 'Eshtehardi', NULL, 1880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eshtehardi', [Definition] = NULL, [SortOrder] = 187.20 WHERE [Code] = 'esh' END +SET [Description] = 'Eshtehardi', [Definition] = NULL, [SortOrder] = 1880.00 WHERE [Code] = 'esh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ags') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ags', 'Esimbi', NULL, 187.30) END +VALUES ('ags', 'Esimbi', NULL, 1881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esimbi', [Definition] = NULL, [SortOrder] = 187.30 WHERE [Code] = 'ags' END +SET [Description] = 'Esimbi', [Definition] = NULL, [SortOrder] = 1881.00 WHERE [Code] = 'ags' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esy', 'Eskayan', NULL, 187.40) END +VALUES ('esy', 'Eskayan', NULL, 1882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eskayan', [Definition] = NULL, [SortOrder] = 187.40 WHERE [Code] = 'esy' END +SET [Description] = 'Eskayan', [Definition] = NULL, [SortOrder] = 1882.00 WHERE [Code] = 'esy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'epo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('epo', 'Esperanto', NULL, 187.50) END +VALUES ('epo', 'Esperanto', NULL, 1883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esperanto', [Definition] = NULL, [SortOrder] = 187.50 WHERE [Code] = 'epo' END +SET [Description] = 'Esperanto', [Definition] = NULL, [SortOrder] = 1883.00 WHERE [Code] = 'epo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esq', 'Esselen', NULL, 187.60) END +VALUES ('esq', 'Esselen', NULL, 1884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esselen', [Definition] = NULL, [SortOrder] = 187.60 WHERE [Code] = 'esq' END +SET [Description] = 'Esselen', [Definition] = NULL, [SortOrder] = 1884.00 WHERE [Code] = 'esq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ots') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ots', 'Estado de México Otomi', NULL, 187.70) END +VALUES ('ots', 'Estado de México Otomi', NULL, 1885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Estado de México Otomi', [Definition] = NULL, [SortOrder] = 187.70 WHERE [Code] = 'ots' END +SET [Description] = 'Estado de México Otomi', [Definition] = NULL, [SortOrder] = 1885.00 WHERE [Code] = 'ots' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'est') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('est', 'Estonian', NULL, 187.80) END +VALUES ('est', 'Estonian', NULL, 1886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Estonian', [Definition] = NULL, [SortOrder] = 187.80 WHERE [Code] = 'est' END +SET [Description] = 'Estonian', [Definition] = NULL, [SortOrder] = 1886.00 WHERE [Code] = 'est' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eso', 'Estonian Sign Language', NULL, 187.90) END +VALUES ('eso', 'Estonian Sign Language', NULL, 1887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Estonian Sign Language', [Definition] = NULL, [SortOrder] = 187.90 WHERE [Code] = 'eso' END +SET [Description] = 'Estonian Sign Language', [Definition] = NULL, [SortOrder] = 1887.00 WHERE [Code] = 'eso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esm', 'Esuma', NULL, 188.00) END +VALUES ('esm', 'Esuma', NULL, 1888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esuma', [Definition] = NULL, [SortOrder] = 188.00 WHERE [Code] = 'esm' END +SET [Description] = 'Esuma', [Definition] = NULL, [SortOrder] = 1888.00 WHERE [Code] = 'esm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etc', 'Etchemin', NULL, 188.10) END +VALUES ('etc', 'Etchemin', NULL, 1889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etchemin', [Definition] = NULL, [SortOrder] = 188.10 WHERE [Code] = 'etc' END +SET [Description] = 'Etchemin', [Definition] = NULL, [SortOrder] = 1889.00 WHERE [Code] = 'etc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etb', 'Etebi', NULL, 188.20) END +VALUES ('etb', 'Etebi', NULL, 1890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etebi', [Definition] = NULL, [SortOrder] = 188.20 WHERE [Code] = 'etb' END +SET [Description] = 'Etebi', [Definition] = NULL, [SortOrder] = 1890.00 WHERE [Code] = 'etb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etx', 'Eten', NULL, 188.30) END +VALUES ('etx', 'Eten', NULL, 1891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eten', [Definition] = NULL, [SortOrder] = 188.30 WHERE [Code] = 'etx' END +SET [Description] = 'Eten', [Definition] = NULL, [SortOrder] = 1891.00 WHERE [Code] = 'etx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ecr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ecr', 'Eteocretan', NULL, 188.40) END +VALUES ('ecr', 'Eteocretan', NULL, 1892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eteocretan', [Definition] = NULL, [SortOrder] = 188.40 WHERE [Code] = 'ecr' END +SET [Description] = 'Eteocretan', [Definition] = NULL, [SortOrder] = 1892.00 WHERE [Code] = 'ecr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ecy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ecy', 'Eteocypriot', NULL, 188.50) END +VALUES ('ecy', 'Eteocypriot', NULL, 1893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eteocypriot', [Definition] = NULL, [SortOrder] = 188.50 WHERE [Code] = 'ecy' END +SET [Description] = 'Eteocypriot', [Definition] = NULL, [SortOrder] = 1893.00 WHERE [Code] = 'ecy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eth', 'Ethiopian Sign Language', NULL, 188.60) END +VALUES ('eth', 'Ethiopian Sign Language', NULL, 1894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ethiopian Sign Language', [Definition] = NULL, [SortOrder] = 188.60 WHERE [Code] = 'eth' END +SET [Description] = 'Ethiopian Sign Language', [Definition] = NULL, [SortOrder] = 1894.00 WHERE [Code] = 'eth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ich') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ich', 'Etkywan', NULL, 188.70) END +VALUES ('ich', 'Etkywan', NULL, 1895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etkywan', [Definition] = NULL, [SortOrder] = 188.70 WHERE [Code] = 'ich' END +SET [Description] = 'Etkywan', [Definition] = NULL, [SortOrder] = 1895.00 WHERE [Code] = 'ich' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eto', 'Eton (Cameroon)', NULL, 188.80) END +VALUES ('eto', 'Eton (Cameroon)', NULL, 1896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eton (Cameroon)', [Definition] = NULL, [SortOrder] = 188.80 WHERE [Code] = 'eto' END +SET [Description] = 'Eton (Cameroon)', [Definition] = NULL, [SortOrder] = 1896.00 WHERE [Code] = 'eto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etn', 'Eton (Vanuatu)', NULL, 188.90) END +VALUES ('etn', 'Eton (Vanuatu)', NULL, 1897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eton (Vanuatu)', [Definition] = NULL, [SortOrder] = 188.90 WHERE [Code] = 'etn' END +SET [Description] = 'Eton (Vanuatu)', [Definition] = NULL, [SortOrder] = 1897.00 WHERE [Code] = 'etn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ett') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ett', 'Etruscan', NULL, 189.00) END +VALUES ('ett', 'Etruscan', NULL, 1898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etruscan', [Definition] = NULL, [SortOrder] = 189.00 WHERE [Code] = 'ett' END +SET [Description] = 'Etruscan', [Definition] = NULL, [SortOrder] = 1898.00 WHERE [Code] = 'ett' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'utr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('utr', 'Etulo', NULL, 189.10) END +VALUES ('utr', 'Etulo', NULL, 1899.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etulo', [Definition] = NULL, [SortOrder] = 189.10 WHERE [Code] = 'utr' END +SET [Description] = 'Etulo', [Definition] = NULL, [SortOrder] = 1899.00 WHERE [Code] = 'utr' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('eud', 'Eudeve', NULL, 1900.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Eudeve', [Definition] = NULL, [SortOrder] = 1900.00 WHERE [Code] = 'eud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzz', 'Evant', NULL, 189.20) END +VALUES ('bzz', 'Evant', NULL, 1901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Evant', [Definition] = NULL, [SortOrder] = 189.20 WHERE [Code] = 'bzz' END +SET [Description] = 'Evant', [Definition] = NULL, [SortOrder] = 1901.00 WHERE [Code] = 'bzz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eve', 'Even', NULL, 189.30) END +VALUES ('eve', 'Even', NULL, 1902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Even', [Definition] = NULL, [SortOrder] = 189.30 WHERE [Code] = 'eve' END +SET [Description] = 'Even', [Definition] = NULL, [SortOrder] = 1902.00 WHERE [Code] = 'eve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'evn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('evn', 'Evenki', NULL, 189.40) END +VALUES ('evn', 'Evenki', NULL, 1903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Evenki', [Definition] = NULL, [SortOrder] = 189.40 WHERE [Code] = 'evn' END +SET [Description] = 'Evenki', [Definition] = NULL, [SortOrder] = 1903.00 WHERE [Code] = 'evn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gev', 'Eviya', NULL, 189.50) END +VALUES ('gev', 'Eviya', NULL, 1904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eviya', [Definition] = NULL, [SortOrder] = 189.50 WHERE [Code] = 'gev' END +SET [Description] = 'Eviya', [Definition] = NULL, [SortOrder] = 1904.00 WHERE [Code] = 'gev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nou', 'Ewage-Notu', NULL, 189.60) END +VALUES ('nou', 'Ewage-Notu', NULL, 1905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ewage-Notu', [Definition] = NULL, [SortOrder] = 189.60 WHERE [Code] = 'nou' END +SET [Description] = 'Ewage-Notu', [Definition] = NULL, [SortOrder] = 1905.00 WHERE [Code] = 'nou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ewe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ewe', 'Ewe', NULL, 189.70) END +VALUES ('ewe', 'Ewe', NULL, 1906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ewe', [Definition] = NULL, [SortOrder] = 189.70 WHERE [Code] = 'ewe' END +SET [Description] = 'Ewe', [Definition] = NULL, [SortOrder] = 1906.00 WHERE [Code] = 'ewe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ewo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ewo', 'Ewondo', NULL, 189.80) END +VALUES ('ewo', 'Ewondo', NULL, 1907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ewondo', [Definition] = NULL, [SortOrder] = 189.80 WHERE [Code] = 'ewo' END +SET [Description] = 'Ewondo', [Definition] = NULL, [SortOrder] = 1907.00 WHERE [Code] = 'ewo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ext') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ext', 'Extremaduran', NULL, 189.90) END +VALUES ('ext', 'Extremaduran', NULL, 1908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Extremaduran', [Definition] = NULL, [SortOrder] = 189.90 WHERE [Code] = 'ext' END +SET [Description] = 'Extremaduran', [Definition] = NULL, [SortOrder] = 1908.00 WHERE [Code] = 'ext' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eya', 'Eyak', NULL, 190.00) END +VALUES ('eya', 'Eyak', NULL, 1909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eyak', [Definition] = NULL, [SortOrder] = 190.00 WHERE [Code] = 'eya' END +SET [Description] = 'Eyak', [Definition] = NULL, [SortOrder] = 1909.00 WHERE [Code] = 'eya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eza', 'Ezaa', NULL, 190.10) END +VALUES ('eza', 'Ezaa', NULL, 1910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ezaa', [Definition] = NULL, [SortOrder] = 190.10 WHERE [Code] = 'eza' END +SET [Description] = 'Ezaa', [Definition] = NULL, [SortOrder] = 1910.00 WHERE [Code] = 'eza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fab', 'Fa D''ambu', NULL, 190.20) END +VALUES ('fab', 'Fa D''ambu', NULL, 1911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fa D''ambu', [Definition] = NULL, [SortOrder] = 190.20 WHERE [Code] = 'fab' END +SET [Description] = 'Fa D''ambu', [Definition] = NULL, [SortOrder] = 1911.00 WHERE [Code] = 'fab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'faf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('faf', 'Fagani', NULL, 190.30) END +VALUES ('faf', 'Fagani', NULL, 1912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fagani', [Definition] = NULL, [SortOrder] = 190.30 WHERE [Code] = 'faf' END +SET [Description] = 'Fagani', [Definition] = NULL, [SortOrder] = 1912.00 WHERE [Code] = 'faf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fif', 'Faifi', NULL, 190.40) END +VALUES ('fif', 'Faifi', NULL, 1913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faifi', [Definition] = NULL, [SortOrder] = 190.40 WHERE [Code] = 'fif' END +SET [Description] = 'Faifi', [Definition] = NULL, [SortOrder] = 1913.00 WHERE [Code] = 'fif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azt', 'Faire Atta', NULL, 190.50) END +VALUES ('azt', 'Faire Atta', NULL, 1914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faire Atta', [Definition] = NULL, [SortOrder] = 190.50 WHERE [Code] = 'azt' END +SET [Description] = 'Faire Atta', [Definition] = NULL, [SortOrder] = 1914.00 WHERE [Code] = 'azt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'faj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('faj', 'Faita', NULL, 190.60) END +VALUES ('faj', 'Faita', NULL, 1915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faita', [Definition] = NULL, [SortOrder] = 190.60 WHERE [Code] = 'faj' END +SET [Description] = 'Faita', [Definition] = NULL, [SortOrder] = 1915.00 WHERE [Code] = 'faj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fai', 'Faiwol', NULL, 190.70) END +VALUES ('fai', 'Faiwol', NULL, 1916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faiwol', [Definition] = NULL, [SortOrder] = 190.70 WHERE [Code] = 'fai' END +SET [Description] = 'Faiwol', [Definition] = NULL, [SortOrder] = 1916.00 WHERE [Code] = 'fai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fax', 'Fala', NULL, 190.80) END +VALUES ('fax', 'Fala', NULL, 1917.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fala', [Definition] = NULL, [SortOrder] = 190.80 WHERE [Code] = 'fax' END +SET [Description] = 'Fala', [Definition] = NULL, [SortOrder] = 1917.00 WHERE [Code] = 'fax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cfm', 'Falam Chin', NULL, 190.90) END +VALUES ('cfm', 'Falam Chin', NULL, 1918.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Falam Chin', [Definition] = NULL, [SortOrder] = 190.90 WHERE [Code] = 'cfm' END +SET [Description] = 'Falam Chin', [Definition] = NULL, [SortOrder] = 1918.00 WHERE [Code] = 'cfm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fli', 'Fali', NULL, 191.00) END +VALUES ('fli', 'Fali', NULL, 1919.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fali', [Definition] = NULL, [SortOrder] = 191.00 WHERE [Code] = 'fli' END +SET [Description] = 'Fali', [Definition] = NULL, [SortOrder] = 1919.00 WHERE [Code] = 'fli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xfa', 'Faliscan', NULL, 191.10) END +VALUES ('xfa', 'Faliscan', NULL, 1920.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faliscan', [Definition] = NULL, [SortOrder] = 191.10 WHERE [Code] = 'xfa' END +SET [Description] = 'Faliscan', [Definition] = NULL, [SortOrder] = 1920.00 WHERE [Code] = 'xfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fam', 'Fam', NULL, 191.20) END +VALUES ('fam', 'Fam', NULL, 1921.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fam', [Definition] = NULL, [SortOrder] = 191.20 WHERE [Code] = 'fam' END +SET [Description] = 'Fam', [Definition] = NULL, [SortOrder] = 1921.00 WHERE [Code] = 'fam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fng', 'Fanagalo', NULL, 191.30) END +VALUES ('fng', 'Fanagalo', NULL, 1922.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fanagalo', [Definition] = NULL, [SortOrder] = 191.30 WHERE [Code] = 'fng' END +SET [Description] = 'Fanagalo', [Definition] = NULL, [SortOrder] = 1922.00 WHERE [Code] = 'fng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjp', 'Fanamaket', NULL, 191.40) END +VALUES ('bjp', 'Fanamaket', NULL, 1923.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fanamaket', [Definition] = NULL, [SortOrder] = 191.40 WHERE [Code] = 'bjp' END +SET [Description] = 'Fanamaket', [Definition] = NULL, [SortOrder] = 1923.00 WHERE [Code] = 'bjp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fnb', 'Fanbak', NULL, 191.50) END +VALUES ('fnb', 'Fanbak', NULL, 1924.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fanbak', [Definition] = NULL, [SortOrder] = 191.50 WHERE [Code] = 'fnb' END +SET [Description] = 'Fanbak', [Definition] = NULL, [SortOrder] = 1924.00 WHERE [Code] = 'fnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fak', 'Fang (Cameroon)', NULL, 191.60) END +VALUES ('fak', 'Fang (Cameroon)', NULL, 1925.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fang (Cameroon)', [Definition] = NULL, [SortOrder] = 191.60 WHERE [Code] = 'fak' END +SET [Description] = 'Fang (Cameroon)', [Definition] = NULL, [SortOrder] = 1925.00 WHERE [Code] = 'fak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fan', 'Fang (Equatorial Guinea)', NULL, 191.70) END +VALUES ('fan', 'Fang (Equatorial Guinea)', NULL, 1926.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fang (Equatorial Guinea)', [Definition] = NULL, [SortOrder] = 191.70 WHERE [Code] = 'fan' END +SET [Description] = 'Fang (Equatorial Guinea)', [Definition] = NULL, [SortOrder] = 1926.00 WHERE [Code] = 'fan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fni', 'Fania', NULL, 191.80) END +VALUES ('fni', 'Fania', NULL, 1927.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fania', [Definition] = NULL, [SortOrder] = 191.80 WHERE [Code] = 'fni' END +SET [Description] = 'Fania', [Definition] = NULL, [SortOrder] = 1927.00 WHERE [Code] = 'fni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fat', 'Fanti', NULL, 191.90) END +VALUES ('fat', 'Fanti', NULL, 1928.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fanti', [Definition] = NULL, [SortOrder] = 191.90 WHERE [Code] = 'fat' END +SET [Description] = 'Fanti', [Definition] = NULL, [SortOrder] = 1928.00 WHERE [Code] = 'fat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fmu', 'Far Western Muria', NULL, 192.00) END +VALUES ('fmu', 'Far Western Muria', NULL, 1929.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Far Western Muria', [Definition] = NULL, [SortOrder] = 192.00 WHERE [Code] = 'fmu' END +SET [Description] = 'Far Western Muria', [Definition] = NULL, [SortOrder] = 1929.00 WHERE [Code] = 'fmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gur', 'Farefare', NULL, 192.10) END +VALUES ('gur', 'Farefare', NULL, 1930.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Farefare', [Definition] = NULL, [SortOrder] = 192.10 WHERE [Code] = 'gur' END +SET [Description] = 'Farefare', [Definition] = NULL, [SortOrder] = 1930.00 WHERE [Code] = 'gur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fao', 'Faroese', NULL, 192.20) END +VALUES ('fao', 'Faroese', NULL, 1931.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faroese', [Definition] = NULL, [SortOrder] = 192.20 WHERE [Code] = 'fao' END +SET [Description] = 'Faroese', [Definition] = NULL, [SortOrder] = 1931.00 WHERE [Code] = 'fao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fqs', 'Fas', NULL, 192.30) END +VALUES ('fqs', 'Fas', NULL, 1932.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fas', [Definition] = NULL, [SortOrder] = 192.30 WHERE [Code] = 'fqs' END +SET [Description] = 'Fas', [Definition] = NULL, [SortOrder] = 1932.00 WHERE [Code] = 'fqs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'faa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('faa', 'Fasu', NULL, 192.40) END +VALUES ('faa', 'Fasu', NULL, 1933.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fasu', [Definition] = NULL, [SortOrder] = 192.40 WHERE [Code] = 'faa' END +SET [Description] = 'Fasu', [Definition] = NULL, [SortOrder] = 1933.00 WHERE [Code] = 'faa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'far') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('far', 'Fataleka', NULL, 192.50) END +VALUES ('far', 'Fataleka', NULL, 1934.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fataleka', [Definition] = NULL, [SortOrder] = 192.50 WHERE [Code] = 'far' END +SET [Description] = 'Fataleka', [Definition] = NULL, [SortOrder] = 1934.00 WHERE [Code] = 'far' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddg', 'Fataluku', NULL, 192.60) END +VALUES ('ddg', 'Fataluku', NULL, 1935.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fataluku', [Definition] = NULL, [SortOrder] = 192.60 WHERE [Code] = 'ddg' END +SET [Description] = 'Fataluku', [Definition] = NULL, [SortOrder] = 1935.00 WHERE [Code] = 'ddg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fau', 'Fayu', NULL, 192.70) END +VALUES ('fau', 'Fayu', NULL, 1936.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fayu', [Definition] = NULL, [SortOrder] = 192.70 WHERE [Code] = 'fau' END +SET [Description] = 'Fayu', [Definition] = NULL, [SortOrder] = 1936.00 WHERE [Code] = 'fau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fmp', 'Fe''fe''', NULL, 192.80) END +VALUES ('fmp', 'Fe''fe''', NULL, 1937.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fe''fe''', [Definition] = NULL, [SortOrder] = 192.80 WHERE [Code] = 'fmp' END +SET [Description] = 'Fe''fe''', [Definition] = NULL, [SortOrder] = 1937.00 WHERE [Code] = 'fmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agl', 'Fembe', NULL, 192.90) END +VALUES ('agl', 'Fembe', NULL, 1938.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fembe', [Definition] = NULL, [SortOrder] = 192.90 WHERE [Code] = 'agl' END +SET [Description] = 'Fembe', [Definition] = NULL, [SortOrder] = 1938.00 WHERE [Code] = 'agl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fpe', 'Fernando Po Creole English', NULL, 193.00) END +VALUES ('fpe', 'Fernando Po Creole English', NULL, 1939.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fernando Po Creole English', [Definition] = NULL, [SortOrder] = 193.00 WHERE [Code] = 'fpe' END +SET [Description] = 'Fernando Po Creole English', [Definition] = NULL, [SortOrder] = 1939.00 WHERE [Code] = 'fpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fer', 'Feroge', NULL, 193.10) END +VALUES ('fer', 'Feroge', NULL, 1940.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Feroge', [Definition] = NULL, [SortOrder] = 193.10 WHERE [Code] = 'fer' END +SET [Description] = 'Feroge', [Definition] = NULL, [SortOrder] = 1940.00 WHERE [Code] = 'fer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hif', 'Fiji Hindi', NULL, 193.20) END +VALUES ('hif', 'Fiji Hindi', NULL, 1941.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fiji Hindi', [Definition] = NULL, [SortOrder] = 193.20 WHERE [Code] = 'hif' END +SET [Description] = 'Fiji Hindi', [Definition] = NULL, [SortOrder] = 1941.00 WHERE [Code] = 'hif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fij', 'Fijian', NULL, 193.30) END +VALUES ('fij', 'Fijian', NULL, 1942.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fijian', [Definition] = NULL, [SortOrder] = 193.30 WHERE [Code] = 'fij' END +SET [Description] = 'Fijian', [Definition] = NULL, [SortOrder] = 1942.00 WHERE [Code] = 'fij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fil', 'Filipino', NULL, 193.40) END +VALUES ('fil', 'Filipino', NULL, 1943.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Filipino', [Definition] = NULL, [SortOrder] = 193.40 WHERE [Code] = 'fil' END +SET [Description] = 'Filipino', [Definition] = NULL, [SortOrder] = 1943.00 WHERE [Code] = 'fil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlp', 'Filomena Mata-Coahuitlán Totonac', NULL, 193.50) END +VALUES ('tlp', 'Filomena Mata-Coahuitlán Totonac', NULL, 1944.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Filomena Mata-Coahuitlán Totonac', [Definition] = NULL, [SortOrder] = 193.50 WHERE [Code] = 'tlp' END +SET [Description] = 'Filomena Mata-Coahuitlán Totonac', [Definition] = NULL, [SortOrder] = 1944.00 WHERE [Code] = 'tlp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fss', 'Finland-Swedish Sign Language', NULL, 193.60) END +VALUES ('fss', 'Finland-Swedish Sign Language', NULL, 1945.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Finland-Swedish Sign Language', [Definition] = NULL, [SortOrder] = 193.60 WHERE [Code] = 'fss' END +SET [Description] = 'Finland-Swedish Sign Language', [Definition] = NULL, [SortOrder] = 1945.00 WHERE [Code] = 'fss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fin', 'Finnish', NULL, 193.70) END +VALUES ('fin', 'Finnish', NULL, 1946.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Finnish', [Definition] = NULL, [SortOrder] = 193.70 WHERE [Code] = 'fin' END +SET [Description] = 'Finnish', [Definition] = NULL, [SortOrder] = 1946.00 WHERE [Code] = 'fin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fse', 'Finnish Sign Language', NULL, 193.80) END +VALUES ('fse', 'Finnish Sign Language', NULL, 1947.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Finnish Sign Language', [Definition] = NULL, [SortOrder] = 193.80 WHERE [Code] = 'fse' END +SET [Description] = 'Finnish Sign Language', [Definition] = NULL, [SortOrder] = 1947.00 WHERE [Code] = 'fse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fag', 'Finongan', NULL, 193.90) END +VALUES ('fag', 'Finongan', NULL, 1948.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Finongan', [Definition] = NULL, [SortOrder] = 193.90 WHERE [Code] = 'fag' END +SET [Description] = 'Finongan', [Definition] = NULL, [SortOrder] = 1948.00 WHERE [Code] = 'fag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fip', 'Fipa', NULL, 194.00) END +VALUES ('fip', 'Fipa', NULL, 1949.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fipa', [Definition] = NULL, [SortOrder] = 194.00 WHERE [Code] = 'fip' END +SET [Description] = 'Fipa', [Definition] = NULL, [SortOrder] = 1949.00 WHERE [Code] = 'fip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fir', 'Firan', NULL, 194.10) END +VALUES ('fir', 'Firan', NULL, 1950.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Firan', [Definition] = NULL, [SortOrder] = 194.10 WHERE [Code] = 'fir' END +SET [Description] = 'Firan', [Definition] = NULL, [SortOrder] = 1950.00 WHERE [Code] = 'fir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fiw', 'Fiwaga', NULL, 194.20) END +VALUES ('fiw', 'Fiwaga', NULL, 1951.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fiwaga', [Definition] = NULL, [SortOrder] = 194.20 WHERE [Code] = 'fiw' END +SET [Description] = 'Fiwaga', [Definition] = NULL, [SortOrder] = 1951.00 WHERE [Code] = 'fiw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fly', 'Flaaitaal', NULL, 194.30) END +VALUES ('fly', 'Flaaitaal', NULL, 1952.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Flaaitaal', [Definition] = NULL, [SortOrder] = 194.30 WHERE [Code] = 'fly' END +SET [Description] = 'Flaaitaal', [Definition] = NULL, [SortOrder] = 1952.00 WHERE [Code] = 'fly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fln', 'Flinders Island', NULL, 194.40) END +VALUES ('fln', 'Flinders Island', NULL, 1953.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Flinders Island', [Definition] = NULL, [SortOrder] = 194.40 WHERE [Code] = 'fln' END +SET [Description] = 'Flinders Island', [Definition] = NULL, [SortOrder] = 1953.00 WHERE [Code] = 'fln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'flh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('flh', 'Foau', NULL, 194.50) END +VALUES ('flh', 'Foau', NULL, 1954.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foau', [Definition] = NULL, [SortOrder] = 194.50 WHERE [Code] = 'flh' END +SET [Description] = 'Foau', [Definition] = NULL, [SortOrder] = 1954.00 WHERE [Code] = 'flh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'foi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('foi', 'Foi', NULL, 194.60) END +VALUES ('foi', 'Foi', NULL, 1955.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foi', [Definition] = NULL, [SortOrder] = 194.60 WHERE [Code] = 'foi' END +SET [Description] = 'Foi', [Definition] = NULL, [SortOrder] = 1955.00 WHERE [Code] = 'foi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ffi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ffi', 'Foia Foia', NULL, 194.70) END +VALUES ('ffi', 'Foia Foia', NULL, 1956.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foia Foia', [Definition] = NULL, [SortOrder] = 194.70 WHERE [Code] = 'ffi' END +SET [Description] = 'Foia Foia', [Definition] = NULL, [SortOrder] = 1956.00 WHERE [Code] = 'ffi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppo', 'Folopa', NULL, 194.80) END +VALUES ('ppo', 'Folopa', NULL, 1957.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Folopa', [Definition] = NULL, [SortOrder] = 194.80 WHERE [Code] = 'ppo' END +SET [Description] = 'Folopa', [Definition] = NULL, [SortOrder] = 1957.00 WHERE [Code] = 'ppo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fom', 'Foma', NULL, 194.90) END +VALUES ('fom', 'Foma', NULL, 1958.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foma', [Definition] = NULL, [SortOrder] = 194.90 WHERE [Code] = 'fom' END +SET [Description] = 'Foma', [Definition] = NULL, [SortOrder] = 1958.00 WHERE [Code] = 'fom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fon', 'Fon', NULL, 195.00) END +VALUES ('fon', 'Fon', NULL, 1959.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fon', [Definition] = NULL, [SortOrder] = 195.00 WHERE [Code] = 'fon' END +SET [Description] = 'Fon', [Definition] = NULL, [SortOrder] = 1959.00 WHERE [Code] = 'fon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fgr', 'Fongoro', NULL, 195.10) END +VALUES ('fgr', 'Fongoro', NULL, 1960.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fongoro', [Definition] = NULL, [SortOrder] = 195.10 WHERE [Code] = 'fgr' END +SET [Description] = 'Fongoro', [Definition] = NULL, [SortOrder] = 1960.00 WHERE [Code] = 'fgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fod', 'Foodo', NULL, 195.20) END +VALUES ('fod', 'Foodo', NULL, 1961.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foodo', [Definition] = NULL, [SortOrder] = 195.20 WHERE [Code] = 'fod' END +SET [Description] = 'Foodo', [Definition] = NULL, [SortOrder] = 1961.00 WHERE [Code] = 'fod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frq', 'Forak', NULL, 195.30) END +VALUES ('frq', 'Forak', NULL, 1962.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Forak', [Definition] = NULL, [SortOrder] = 195.30 WHERE [Code] = 'frq' END +SET [Description] = 'Forak', [Definition] = NULL, [SortOrder] = 1962.00 WHERE [Code] = 'frq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frd', 'Fordata', NULL, 195.40) END +VALUES ('frd', 'Fordata', NULL, 1963.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fordata', [Definition] = NULL, [SortOrder] = 195.40 WHERE [Code] = 'frd' END +SET [Description] = 'Fordata', [Definition] = NULL, [SortOrder] = 1963.00 WHERE [Code] = 'frd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'for') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('for', 'Fore', NULL, 195.50) END +VALUES ('for', 'Fore', NULL, 1964.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fore', [Definition] = NULL, [SortOrder] = 195.50 WHERE [Code] = 'for' END +SET [Description] = 'Fore', [Definition] = NULL, [SortOrder] = 1964.00 WHERE [Code] = 'for' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enf', 'Forest Enets', NULL, 195.60) END +VALUES ('enf', 'Forest Enets', NULL, 1965.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Forest Enets', [Definition] = NULL, [SortOrder] = 195.60 WHERE [Code] = 'enf' END +SET [Description] = 'Forest Enets', [Definition] = NULL, [SortOrder] = 1965.00 WHERE [Code] = 'enf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frt', 'Fortsenal', NULL, 195.70) END +VALUES ('frt', 'Fortsenal', NULL, 1966.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fortsenal', [Definition] = NULL, [SortOrder] = 195.70 WHERE [Code] = 'frt' END +SET [Description] = 'Fortsenal', [Definition] = NULL, [SortOrder] = 1966.00 WHERE [Code] = 'frt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zos', 'Francisco León Zoque', NULL, 195.80) END +VALUES ('zos', 'Francisco León Zoque', NULL, 1967.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Francisco León Zoque', [Definition] = NULL, [SortOrder] = 195.80 WHERE [Code] = 'zos' END +SET [Description] = 'Francisco León Zoque', [Definition] = NULL, [SortOrder] = 1967.00 WHERE [Code] = 'zos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frk', 'Frankish', NULL, 195.90) END +VALUES ('frk', 'Frankish', NULL, 1968.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Frankish', [Definition] = NULL, [SortOrder] = 195.90 WHERE [Code] = 'frk' END +SET [Description] = 'Frankish', [Definition] = NULL, [SortOrder] = 1968.00 WHERE [Code] = 'frk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fra', 'French', NULL, 196.00) END +VALUES ('fra', 'French', NULL, 1969.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'French', [Definition] = NULL, [SortOrder] = 196.00 WHERE [Code] = 'fra' END +SET [Description] = 'French', [Definition] = NULL, [SortOrder] = 1969.00 WHERE [Code] = 'fra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fsl', 'French Sign Language', NULL, 196.10) END +VALUES ('fsl', 'French Sign Language', NULL, 1970.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'French Sign Language', [Definition] = NULL, [SortOrder] = 196.10 WHERE [Code] = 'fsl' END +SET [Description] = 'French Sign Language', [Definition] = NULL, [SortOrder] = 1970.00 WHERE [Code] = 'fsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fur', 'Friulian', NULL, 196.20) END +VALUES ('fur', 'Friulian', NULL, 1971.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Friulian', [Definition] = NULL, [SortOrder] = 196.20 WHERE [Code] = 'fur' END +SET [Description] = 'Friulian', [Definition] = NULL, [SortOrder] = 1971.00 WHERE [Code] = 'fur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ful') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ful', 'Fulah', NULL, 196.30) END +VALUES ('ful', 'Fulah', NULL, 1972.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fulah', [Definition] = NULL, [SortOrder] = 196.30 WHERE [Code] = 'ful' END +SET [Description] = 'Fulah', [Definition] = NULL, [SortOrder] = 1972.00 WHERE [Code] = 'ful' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'flr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('flr', 'Fuliiru', NULL, 196.40) END +VALUES ('flr', 'Fuliiru', NULL, 1973.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fuliiru', [Definition] = NULL, [SortOrder] = 196.40 WHERE [Code] = 'flr' END +SET [Description] = 'Fuliiru', [Definition] = NULL, [SortOrder] = 1973.00 WHERE [Code] = 'flr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fun', 'Fulniô', NULL, 196.50) END +VALUES ('fun', 'Fulniô', NULL, 1974.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fulniô', [Definition] = NULL, [SortOrder] = 196.50 WHERE [Code] = 'fun' END +SET [Description] = 'Fulniô', [Definition] = NULL, [SortOrder] = 1974.00 WHERE [Code] = 'fun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fum', 'Fum', NULL, 196.60) END +VALUES ('fum', 'Fum', NULL, 1975.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fum', [Definition] = NULL, [SortOrder] = 196.60 WHERE [Code] = 'fum' END +SET [Description] = 'Fum', [Definition] = NULL, [SortOrder] = 1975.00 WHERE [Code] = 'fum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ula') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ula', 'Fungwa', NULL, 196.70) END +VALUES ('ula', 'Fungwa', NULL, 1976.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fungwa', [Definition] = NULL, [SortOrder] = 196.70 WHERE [Code] = 'ula' END +SET [Description] = 'Fungwa', [Definition] = NULL, [SortOrder] = 1976.00 WHERE [Code] = 'ula' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fvr', 'Fur', NULL, 196.80) END +VALUES ('fvr', 'Fur', NULL, 1977.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fur', [Definition] = NULL, [SortOrder] = 196.80 WHERE [Code] = 'fvr' END +SET [Description] = 'Fur', [Definition] = NULL, [SortOrder] = 1977.00 WHERE [Code] = 'fvr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuu', 'Furu', NULL, 196.90) END +VALUES ('fuu', 'Furu', NULL, 1978.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Furu', [Definition] = NULL, [SortOrder] = 196.90 WHERE [Code] = 'fuu' END +SET [Description] = 'Furu', [Definition] = NULL, [SortOrder] = 1978.00 WHERE [Code] = 'fuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fut', 'Futuna-Aniwa', NULL, 197.00) END +VALUES ('fut', 'Futuna-Aniwa', NULL, 1979.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Futuna-Aniwa', [Definition] = NULL, [SortOrder] = 197.00 WHERE [Code] = 'fut' END +SET [Description] = 'Futuna-Aniwa', [Definition] = NULL, [SortOrder] = 1979.00 WHERE [Code] = 'fut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuy', 'Fuyug', NULL, 197.10) END +VALUES ('fuy', 'Fuyug', NULL, 1980.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fuyug', [Definition] = NULL, [SortOrder] = 197.10 WHERE [Code] = 'fuy' END +SET [Description] = 'Fuyug', [Definition] = NULL, [SortOrder] = 1980.00 WHERE [Code] = 'fuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fwa', 'Fwâi', NULL, 197.20) END +VALUES ('fwa', 'Fwâi', NULL, 1981.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fwâi', [Definition] = NULL, [SortOrder] = 197.20 WHERE [Code] = 'fwa' END +SET [Description] = 'Fwâi', [Definition] = NULL, [SortOrder] = 1981.00 WHERE [Code] = 'fwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fwe', 'Fwe', NULL, 197.30) END +VALUES ('fwe', 'Fwe', NULL, 1982.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fwe', [Definition] = NULL, [SortOrder] = 197.30 WHERE [Code] = 'fwe' END +SET [Description] = 'Fwe', [Definition] = NULL, [SortOrder] = 1982.00 WHERE [Code] = 'fwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pym', 'Fyam', NULL, 197.40) END +VALUES ('pym', 'Fyam', NULL, 1983.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fyam', [Definition] = NULL, [SortOrder] = 197.40 WHERE [Code] = 'pym' END +SET [Description] = 'Fyam', [Definition] = NULL, [SortOrder] = 1983.00 WHERE [Code] = 'pym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fie', 'Fyer', NULL, 197.50) END +VALUES ('fie', 'Fyer', NULL, 1984.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fyer', [Definition] = NULL, [SortOrder] = 197.50 WHERE [Code] = 'fie' END +SET [Description] = 'Fyer', [Definition] = NULL, [SortOrder] = 1984.00 WHERE [Code] = 'fie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaa', 'Ga', NULL, 197.60) END +VALUES ('gaa', 'Ga', NULL, 1985.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ga', [Definition] = NULL, [SortOrder] = 197.60 WHERE [Code] = 'gaa' END +SET [Description] = 'Ga', [Definition] = NULL, [SortOrder] = 1985.00 WHERE [Code] = 'gaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqa', 'Ga''anda', NULL, 197.70) END +VALUES ('gqa', 'Ga''anda', NULL, 1986.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ga''anda', [Definition] = NULL, [SortOrder] = 197.70 WHERE [Code] = 'gqa' END +SET [Description] = 'Ga''anda', [Definition] = NULL, [SortOrder] = 1986.00 WHERE [Code] = 'gqa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdg', 'Ga''dang', NULL, 197.80) END +VALUES ('gdg', 'Ga''dang', NULL, 1987.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ga''dang', [Definition] = NULL, [SortOrder] = 197.80 WHERE [Code] = 'gdg' END +SET [Description] = 'Ga''dang', [Definition] = NULL, [SortOrder] = 1987.00 WHERE [Code] = 'gdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttb', 'Gaa', NULL, 197.90) END +VALUES ('ttb', 'Gaa', NULL, 1988.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaa', [Definition] = NULL, [SortOrder] = 197.90 WHERE [Code] = 'ttb' END +SET [Description] = 'Gaa', [Definition] = NULL, [SortOrder] = 1988.00 WHERE [Code] = 'ttb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbi', 'Gaam', NULL, 198.00) END +VALUES ('tbi', 'Gaam', NULL, 1989.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaam', [Definition] = NULL, [SortOrder] = 198.00 WHERE [Code] = 'tbi' END +SET [Description] = 'Gaam', [Definition] = NULL, [SortOrder] = 1989.00 WHERE [Code] = 'tbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbw', 'Gabi-Gabi', NULL, 198.10) END +VALUES ('gbw', 'Gabi-Gabi', NULL, 1990.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gabi-Gabi', [Definition] = NULL, [SortOrder] = 198.10 WHERE [Code] = 'gbw' END +SET [Description] = 'Gabi-Gabi', [Definition] = NULL, [SortOrder] = 1990.00 WHERE [Code] = 'gbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gie', 'Gabogbo', NULL, 198.20) END +VALUES ('gie', 'Gabogbo', NULL, 1991.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gabogbo', [Definition] = NULL, [SortOrder] = 198.20 WHERE [Code] = 'gie' END +SET [Description] = 'Gabogbo', [Definition] = NULL, [SortOrder] = 1991.00 WHERE [Code] = 'gie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gab', 'Gabri', NULL, 198.30) END +VALUES ('gab', 'Gabri', NULL, 1992.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gabri', [Definition] = NULL, [SortOrder] = 198.30 WHERE [Code] = 'gab' END +SET [Description] = 'Gabri', [Definition] = NULL, [SortOrder] = 1992.00 WHERE [Code] = 'gab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgf', 'Gabrielino-Fernandeño', NULL, 198.40) END +VALUES ('xgf', 'Gabrielino-Fernandeño', NULL, 1993.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gabrielino-Fernandeño', [Definition] = NULL, [SortOrder] = 198.40 WHERE [Code] = 'xgf' END +SET [Description] = 'Gabrielino-Fernandeño', [Definition] = NULL, [SortOrder] = 1993.00 WHERE [Code] = 'xgf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdk', 'Gadang', NULL, 198.50) END +VALUES ('gdk', 'Gadang', NULL, 1994.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gadang', [Definition] = NULL, [SortOrder] = 198.50 WHERE [Code] = 'gdk' END +SET [Description] = 'Gadang', [Definition] = NULL, [SortOrder] = 1994.00 WHERE [Code] = 'gdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gad', 'Gaddang', NULL, 198.60) END +VALUES ('gad', 'Gaddang', NULL, 1995.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaddang', [Definition] = NULL, [SortOrder] = 198.60 WHERE [Code] = 'gad' END +SET [Description] = 'Gaddang', [Definition] = NULL, [SortOrder] = 1995.00 WHERE [Code] = 'gad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbk', 'Gaddi', NULL, 198.70) END +VALUES ('gbk', 'Gaddi', NULL, 1996.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaddi', [Definition] = NULL, [SortOrder] = 198.70 WHERE [Code] = 'gbk' END +SET [Description] = 'Gaddi', [Definition] = NULL, [SortOrder] = 1996.00 WHERE [Code] = 'gbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ged') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ged', 'Gade', NULL, 198.80) END +VALUES ('ged', 'Gade', NULL, 1997.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gade', [Definition] = NULL, [SortOrder] = 198.80 WHERE [Code] = 'ged' END +SET [Description] = 'Gade', [Definition] = NULL, [SortOrder] = 1997.00 WHERE [Code] = 'ged' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gda', 'Gade Lohar', NULL, 198.90) END +VALUES ('gda', 'Gade Lohar', NULL, 1998.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gade Lohar', [Definition] = NULL, [SortOrder] = 198.90 WHERE [Code] = 'gda' END +SET [Description] = 'Gade Lohar', [Definition] = NULL, [SortOrder] = 1998.00 WHERE [Code] = 'gda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdh', 'Gadjerawang', NULL, 199.00) END +VALUES ('gdh', 'Gadjerawang', NULL, 1999.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gadjerawang', [Definition] = NULL, [SortOrder] = 199.00 WHERE [Code] = 'gdh' END +SET [Description] = 'Gadjerawang', [Definition] = NULL, [SortOrder] = 1999.00 WHERE [Code] = 'gdh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaj', 'Gadsup', NULL, 199.10) END +VALUES ('gaj', 'Gadsup', NULL, 2000.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gadsup', [Definition] = NULL, [SortOrder] = 199.10 WHERE [Code] = 'gaj' END +SET [Description] = 'Gadsup', [Definition] = NULL, [SortOrder] = 2000.00 WHERE [Code] = 'gaj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gft', 'Gafat', NULL, 199.20) END +VALUES ('gft', 'Gafat', NULL, 2001.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gafat', [Definition] = NULL, [SortOrder] = 199.20 WHERE [Code] = 'gft' END +SET [Description] = 'Gafat', [Definition] = NULL, [SortOrder] = 2001.00 WHERE [Code] = 'gft' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbu', 'Gagadu', NULL, 199.30) END +VALUES ('gbu', 'Gagadu', NULL, 2002.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gagadu', [Definition] = NULL, [SortOrder] = 199.30 WHERE [Code] = 'gbu' END +SET [Description] = 'Gagadu', [Definition] = NULL, [SortOrder] = 2002.00 WHERE [Code] = 'gbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gag', 'Gagauz', NULL, 199.40) END +VALUES ('gag', 'Gagauz', NULL, 2003.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gagauz', [Definition] = NULL, [SortOrder] = 199.40 WHERE [Code] = 'gag' END +SET [Description] = 'Gagauz', [Definition] = NULL, [SortOrder] = 2003.00 WHERE [Code] = 'gag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btg', 'Gagnoa Bété', NULL, 199.50) END +VALUES ('btg', 'Gagnoa Bété', NULL, 2004.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gagnoa Bété', [Definition] = NULL, [SortOrder] = 199.50 WHERE [Code] = 'btg' END +SET [Description] = 'Gagnoa Bété', [Definition] = NULL, [SortOrder] = 2004.00 WHERE [Code] = 'btg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggu', 'Gagu', NULL, 199.60) END +VALUES ('ggu', 'Gagu', NULL, 2005.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gagu', [Definition] = NULL, [SortOrder] = 199.60 WHERE [Code] = 'ggu' END +SET [Description] = 'Gagu', [Definition] = NULL, [SortOrder] = 2005.00 WHERE [Code] = 'ggu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfu', 'Gahri', NULL, 199.70) END +VALUES ('bfu', 'Gahri', NULL, 2006.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gahri', [Definition] = NULL, [SortOrder] = 199.70 WHERE [Code] = 'bfu' END +SET [Description] = 'Gahri', [Definition] = NULL, [SortOrder] = 2006.00 WHERE [Code] = 'bfu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbf', 'Gaikundi', NULL, 199.80) END +VALUES ('gbf', 'Gaikundi', NULL, 2007.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaikundi', [Definition] = NULL, [SortOrder] = 199.80 WHERE [Code] = 'gbf' END +SET [Description] = 'Gaikundi', [Definition] = NULL, [SortOrder] = 2007.00 WHERE [Code] = 'gbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gic', 'Gail', NULL, 199.90) END +VALUES ('gic', 'Gail', NULL, 2008.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gail', [Definition] = NULL, [SortOrder] = 199.90 WHERE [Code] = 'gic' END +SET [Description] = 'Gail', [Definition] = NULL, [SortOrder] = 2008.00 WHERE [Code] = 'gic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcn', 'Gaina', NULL, 200.00) END +VALUES ('gcn', 'Gaina', NULL, 2009.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaina', [Definition] = NULL, [SortOrder] = 200.00 WHERE [Code] = 'gcn' END +SET [Description] = 'Gaina', [Definition] = NULL, [SortOrder] = 2009.00 WHERE [Code] = 'gcn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gap', 'Gal', NULL, 200.10) END +VALUES ('gap', 'Gal', NULL, 2010.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gal', [Definition] = NULL, [SortOrder] = 200.10 WHERE [Code] = 'gap' END +SET [Description] = 'Gal', [Definition] = NULL, [SortOrder] = 2010.00 WHERE [Code] = 'gap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glo', 'Galambu', NULL, 200.20) END +VALUES ('glo', 'Galambu', NULL, 2011.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galambu', [Definition] = NULL, [SortOrder] = 200.20 WHERE [Code] = 'glo' END +SET [Description] = 'Galambu', [Definition] = NULL, [SortOrder] = 2011.00 WHERE [Code] = 'glo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xga', 'Galatian', NULL, 200.30) END +VALUES ('xga', 'Galatian', NULL, 2012.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galatian', [Definition] = NULL, [SortOrder] = 200.30 WHERE [Code] = 'xga' END +SET [Description] = 'Galatian', [Definition] = NULL, [SortOrder] = 2012.00 WHERE [Code] = 'xga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbi', 'Galela', NULL, 200.40) END +VALUES ('gbi', 'Galela', NULL, 2013.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galela', [Definition] = NULL, [SortOrder] = 200.40 WHERE [Code] = 'gbi' END +SET [Description] = 'Galela', [Definition] = NULL, [SortOrder] = 2013.00 WHERE [Code] = 'gbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gar', 'Galeya', NULL, 200.50) END +VALUES ('gar', 'Galeya', NULL, 2014.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galeya', [Definition] = NULL, [SortOrder] = 200.50 WHERE [Code] = 'gar' END +SET [Description] = 'Galeya', [Definition] = NULL, [SortOrder] = 2014.00 WHERE [Code] = 'gar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'car') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('car', 'Galibi Carib', NULL, 200.60) END +VALUES ('car', 'Galibi Carib', NULL, 2015.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galibi Carib', [Definition] = NULL, [SortOrder] = 200.60 WHERE [Code] = 'car' END +SET [Description] = 'Galibi Carib', [Definition] = NULL, [SortOrder] = 2015.00 WHERE [Code] = 'car' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gce', 'Galice', NULL, 200.70) END +VALUES ('gce', 'Galice', NULL, 2016.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galice', [Definition] = NULL, [SortOrder] = 200.70 WHERE [Code] = 'gce' END +SET [Description] = 'Galice', [Definition] = NULL, [SortOrder] = 2016.00 WHERE [Code] = 'gce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glg', 'Galician', NULL, 200.80) END +VALUES ('glg', 'Galician', NULL, 2017.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galician', [Definition] = NULL, [SortOrder] = 200.80 WHERE [Code] = 'glg' END +SET [Description] = 'Galician', [Definition] = NULL, [SortOrder] = 2017.00 WHERE [Code] = 'glg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgl', 'Galindan', NULL, 200.90) END +VALUES ('xgl', 'Galindan', NULL, 2018.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galindan', [Definition] = NULL, [SortOrder] = 200.90 WHERE [Code] = 'xgl' END +SET [Description] = 'Galindan', [Definition] = NULL, [SortOrder] = 2018.00 WHERE [Code] = 'xgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdn', 'Gallurese Sardinian', NULL, 201.00) END +VALUES ('sdn', 'Gallurese Sardinian', NULL, 2019.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gallurese Sardinian', [Definition] = NULL, [SortOrder] = 201.00 WHERE [Code] = 'sdn' END +SET [Description] = 'Gallurese Sardinian', [Definition] = NULL, [SortOrder] = 2019.00 WHERE [Code] = 'sdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adl', 'Galo', NULL, 201.10) END +VALUES ('adl', 'Galo', NULL, 2020.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galo', [Definition] = NULL, [SortOrder] = 201.10 WHERE [Code] = 'adl' END +SET [Description] = 'Galo', [Definition] = NULL, [SortOrder] = 2020.00 WHERE [Code] = 'adl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gal', 'Galolen', NULL, 201.20) END +VALUES ('gal', 'Galolen', NULL, 2021.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galolen', [Definition] = NULL, [SortOrder] = 201.20 WHERE [Code] = 'gal' END +SET [Description] = 'Galolen', [Definition] = NULL, [SortOrder] = 2021.00 WHERE [Code] = 'gal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgj', 'Gamale Kham', NULL, 201.30) END +VALUES ('kgj', 'Gamale Kham', NULL, 2022.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamale Kham', [Definition] = NULL, [SortOrder] = 201.30 WHERE [Code] = 'kgj' END +SET [Description] = 'Gamale Kham', [Definition] = NULL, [SortOrder] = 2022.00 WHERE [Code] = 'kgj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gma', 'Gambera', NULL, 201.40) END +VALUES ('gma', 'Gambera', NULL, 2023.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gambera', [Definition] = NULL, [SortOrder] = 201.40 WHERE [Code] = 'gma' END +SET [Description] = 'Gambera', [Definition] = NULL, [SortOrder] = 2023.00 WHERE [Code] = 'gma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wof', 'Gambian Wolof', NULL, 201.50) END +VALUES ('wof', 'Gambian Wolof', NULL, 2024.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gambian Wolof', [Definition] = NULL, [SortOrder] = 201.50 WHERE [Code] = 'wof' END +SET [Description] = 'Gambian Wolof', [Definition] = NULL, [SortOrder] = 2024.00 WHERE [Code] = 'wof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kld', 'Gamilaraay', NULL, 201.60) END +VALUES ('kld', 'Gamilaraay', NULL, 2025.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamilaraay', [Definition] = NULL, [SortOrder] = 201.60 WHERE [Code] = 'kld' END +SET [Description] = 'Gamilaraay', [Definition] = NULL, [SortOrder] = 2025.00 WHERE [Code] = 'kld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbl', 'Gamit', NULL, 201.70) END +VALUES ('gbl', 'Gamit', NULL, 2026.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamit', [Definition] = NULL, [SortOrder] = 201.70 WHERE [Code] = 'gbl' END +SET [Description] = 'Gamit', [Definition] = NULL, [SortOrder] = 2026.00 WHERE [Code] = 'gbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gak', 'Gamkonora', NULL, 201.80) END +VALUES ('gak', 'Gamkonora', NULL, 2027.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamkonora', [Definition] = NULL, [SortOrder] = 201.80 WHERE [Code] = 'gak' END +SET [Description] = 'Gamkonora', [Definition] = NULL, [SortOrder] = 2027.00 WHERE [Code] = 'gak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmv', 'Gamo', NULL, 201.90) END +VALUES ('gmv', 'Gamo', NULL, 2028.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamo', [Definition] = NULL, [SortOrder] = 201.90 WHERE [Code] = 'gmv' END +SET [Description] = 'Gamo', [Definition] = NULL, [SortOrder] = 2028.00 WHERE [Code] = 'gmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bte', 'Gamo-Ningi', NULL, 202.00) END +VALUES ('bte', 'Gamo-Ningi', NULL, 2029.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamo-Ningi', [Definition] = NULL, [SortOrder] = 202.00 WHERE [Code] = 'bte' END +SET [Description] = 'Gamo-Ningi', [Definition] = NULL, [SortOrder] = 2029.00 WHERE [Code] = 'bte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gan', 'Gan Chinese', NULL, 202.10) END +VALUES ('gan', 'Gan Chinese', NULL, 2030.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gan Chinese', [Definition] = NULL, [SortOrder] = 202.10 WHERE [Code] = 'gan' END +SET [Description] = 'Gan Chinese', [Definition] = NULL, [SortOrder] = 2030.00 WHERE [Code] = 'gan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnq', 'Gana', NULL, 202.20) END +VALUES ('gnq', 'Gana', NULL, 2031.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gana', [Definition] = NULL, [SortOrder] = 202.20 WHERE [Code] = 'gnq' END +SET [Description] = 'Gana', [Definition] = NULL, [SortOrder] = 2031.00 WHERE [Code] = 'gnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gne', 'Ganang', NULL, 202.30) END +VALUES ('gne', 'Ganang', NULL, 2032.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganang', [Definition] = NULL, [SortOrder] = 202.30 WHERE [Code] = 'gne' END +SET [Description] = 'Ganang', [Definition] = NULL, [SortOrder] = 2032.00 WHERE [Code] = 'gne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lug', 'Ganda', NULL, 202.40) END +VALUES ('lug', 'Ganda', NULL, 2033.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganda', [Definition] = NULL, [SortOrder] = 202.40 WHERE [Code] = 'lug' END +SET [Description] = 'Ganda', [Definition] = NULL, [SortOrder] = 2033.00 WHERE [Code] = 'lug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgd', 'Gandhari', NULL, 202.50) END +VALUES ('pgd', 'Gandhari', NULL, 2034.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gandhari', [Definition] = NULL, [SortOrder] = 202.50 WHERE [Code] = 'pgd' END +SET [Description] = 'Gandhari', [Definition] = NULL, [SortOrder] = 2034.00 WHERE [Code] = 'pgd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gzn', 'Gane', NULL, 202.60) END +VALUES ('gzn', 'Gane', NULL, 2035.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gane', [Definition] = NULL, [SortOrder] = 202.60 WHERE [Code] = 'gzn' END +SET [Description] = 'Gane', [Definition] = NULL, [SortOrder] = 2035.00 WHERE [Code] = 'gzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcd', 'Ganggalida', NULL, 202.70) END +VALUES ('gcd', 'Ganggalida', NULL, 2036.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganggalida', [Definition] = NULL, [SortOrder] = 202.70 WHERE [Code] = 'gcd' END +SET [Description] = 'Ganggalida', [Definition] = NULL, [SortOrder] = 2036.00 WHERE [Code] = 'gcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggl', 'Ganglau', NULL, 202.80) END +VALUES ('ggl', 'Ganglau', NULL, 2037.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganglau', [Definition] = NULL, [SortOrder] = 202.80 WHERE [Code] = 'ggl' END +SET [Description] = 'Ganglau', [Definition] = NULL, [SortOrder] = 2037.00 WHERE [Code] = 'ggl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnb', 'Gangte', NULL, 202.90) END +VALUES ('gnb', 'Gangte', NULL, 2038.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gangte', [Definition] = NULL, [SortOrder] = 202.90 WHERE [Code] = 'gnb' END +SET [Description] = 'Gangte', [Definition] = NULL, [SortOrder] = 2038.00 WHERE [Code] = 'gnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnl', 'Gangulu', NULL, 203.00) END +VALUES ('gnl', 'Gangulu', NULL, 2039.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gangulu', [Definition] = NULL, [SortOrder] = 203.00 WHERE [Code] = 'gnl' END +SET [Description] = 'Gangulu', [Definition] = NULL, [SortOrder] = 2039.00 WHERE [Code] = 'gnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gao', 'Gants', NULL, 203.10) END +VALUES ('gao', 'Gants', NULL, 2040.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gants', [Definition] = NULL, [SortOrder] = 203.10 WHERE [Code] = 'gao' END +SET [Description] = 'Gants', [Definition] = NULL, [SortOrder] = 2040.00 WHERE [Code] = 'gao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gza', 'Ganza', NULL, 203.20) END +VALUES ('gza', 'Ganza', NULL, 2041.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganza', [Definition] = NULL, [SortOrder] = 203.20 WHERE [Code] = 'gza' END +SET [Description] = 'Ganza', [Definition] = NULL, [SortOrder] = 2041.00 WHERE [Code] = 'gza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnz', 'Ganzi', NULL, 203.30) END +VALUES ('gnz', 'Ganzi', NULL, 2042.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganzi', [Definition] = NULL, [SortOrder] = 203.30 WHERE [Code] = 'gnz' END +SET [Description] = 'Ganzi', [Definition] = NULL, [SortOrder] = 2042.00 WHERE [Code] = 'gnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gga', 'Gao', NULL, 203.40) END +VALUES ('gga', 'Gao', NULL, 2043.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gao', [Definition] = NULL, [SortOrder] = 203.40 WHERE [Code] = 'gga' END +SET [Description] = 'Gao', [Definition] = NULL, [SortOrder] = 2043.00 WHERE [Code] = 'gga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwg', 'Gapapaiwa', NULL, 203.50) END +VALUES ('pwg', 'Gapapaiwa', NULL, 2044.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gapapaiwa', [Definition] = NULL, [SortOrder] = 203.50 WHERE [Code] = 'pwg' END +SET [Description] = 'Gapapaiwa', [Definition] = NULL, [SortOrder] = 2044.00 WHERE [Code] = 'pwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbm', 'Garhwali', NULL, 203.60) END +VALUES ('gbm', 'Garhwali', NULL, 2045.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garhwali', [Definition] = NULL, [SortOrder] = 203.60 WHERE [Code] = 'gbm' END +SET [Description] = 'Garhwali', [Definition] = NULL, [SortOrder] = 2045.00 WHERE [Code] = 'gbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cab', 'Garifuna', NULL, 203.70) END +VALUES ('cab', 'Garifuna', NULL, 2046.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garifuna', [Definition] = NULL, [SortOrder] = 203.70 WHERE [Code] = 'cab' END +SET [Description] = 'Garifuna', [Definition] = NULL, [SortOrder] = 2046.00 WHERE [Code] = 'cab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilg', 'Garig-Ilgar', NULL, 203.80) END +VALUES ('ilg', 'Garig-Ilgar', NULL, 2047.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garig-Ilgar', [Definition] = NULL, [SortOrder] = 203.80 WHERE [Code] = 'ilg' END +SET [Description] = 'Garig-Ilgar', [Definition] = NULL, [SortOrder] = 2047.00 WHERE [Code] = 'ilg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgi', 'Garingbal', NULL, 203.90) END +VALUES ('xgi', 'Garingbal', NULL, 2048.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garingbal', [Definition] = NULL, [SortOrder] = 203.90 WHERE [Code] = 'xgi' END +SET [Description] = 'Garingbal', [Definition] = NULL, [SortOrder] = 2048.00 WHERE [Code] = 'xgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gll', 'Garlali', NULL, 204.00) END +VALUES ('gll', 'Garlali', NULL, 2049.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garlali', [Definition] = NULL, [SortOrder] = 204.00 WHERE [Code] = 'gll' END +SET [Description] = 'Garlali', [Definition] = NULL, [SortOrder] = 2049.00 WHERE [Code] = 'gll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grt', 'Garo', NULL, 204.10) END +VALUES ('grt', 'Garo', NULL, 2050.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garo', [Definition] = NULL, [SortOrder] = 204.10 WHERE [Code] = 'grt' END +SET [Description] = 'Garo', [Definition] = NULL, [SortOrder] = 2050.00 WHERE [Code] = 'grt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gex', 'Garre', NULL, 204.20) END +VALUES ('gex', 'Garre', NULL, 2051.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garre', [Definition] = NULL, [SortOrder] = 204.20 WHERE [Code] = 'gex' END +SET [Description] = 'Garre', [Definition] = NULL, [SortOrder] = 2051.00 WHERE [Code] = 'gex' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrk', 'Garrwa', NULL, 204.30) END +VALUES ('wrk', 'Garrwa', NULL, 2052.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garrwa', [Definition] = NULL, [SortOrder] = 204.30 WHERE [Code] = 'wrk' END +SET [Description] = 'Garrwa', [Definition] = NULL, [SortOrder] = 2052.00 WHERE [Code] = 'wrk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyb', 'Garus', NULL, 204.40) END +VALUES ('gyb', 'Garus', NULL, 2053.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garus', [Definition] = NULL, [SortOrder] = 204.40 WHERE [Code] = 'gyb' END +SET [Description] = 'Garus', [Definition] = NULL, [SortOrder] = 2053.00 WHERE [Code] = 'gyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgr', 'Garza', NULL, 204.50) END +VALUES ('xgr', 'Garza', NULL, 2054.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garza', [Definition] = NULL, [SortOrder] = 204.50 WHERE [Code] = 'xgr' END +SET [Description] = 'Garza', [Definition] = NULL, [SortOrder] = 2054.00 WHERE [Code] = 'xgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaq', 'Gata''', NULL, 204.60) END +VALUES ('gaq', 'Gata''', NULL, 2055.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gata''', [Definition] = NULL, [SortOrder] = 204.60 WHERE [Code] = 'gaq' END +SET [Description] = 'Gata''', [Definition] = NULL, [SortOrder] = 2055.00 WHERE [Code] = 'gaq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmc', 'Gavak', NULL, 204.70) END +VALUES ('dmc', 'Gavak', NULL, 2056.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gavak', [Definition] = NULL, [SortOrder] = 204.70 WHERE [Code] = 'dmc' END +SET [Description] = 'Gavak', [Definition] = NULL, [SortOrder] = 2056.00 WHERE [Code] = 'dmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gou', 'Gavar', NULL, 204.80) END +VALUES ('gou', 'Gavar', NULL, 2057.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gavar', [Definition] = NULL, [SortOrder] = 204.80 WHERE [Code] = 'gou' END +SET [Description] = 'Gavar', [Definition] = NULL, [SortOrder] = 2057.00 WHERE [Code] = 'gou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvo', 'Gavião Do Jiparaná', NULL, 204.90) END +VALUES ('gvo', 'Gavião Do Jiparaná', NULL, 2058.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gavião Do Jiparaná', [Definition] = NULL, [SortOrder] = 204.90 WHERE [Code] = 'gvo' END +SET [Description] = 'Gavião Do Jiparaná', [Definition] = NULL, [SortOrder] = 2058.00 WHERE [Code] = 'gvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwt', 'Gawar-Bati', NULL, 205.00) END +VALUES ('gwt', 'Gawar-Bati', NULL, 2059.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gawar-Bati', [Definition] = NULL, [SortOrder] = 205.00 WHERE [Code] = 'gwt' END +SET [Description] = 'Gawar-Bati', [Definition] = NULL, [SortOrder] = 2059.00 WHERE [Code] = 'gwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwc', 'Gawri', NULL, 205.10) END +VALUES ('gwc', 'Gawri', NULL, 2060.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gawri', [Definition] = NULL, [SortOrder] = 205.10 WHERE [Code] = 'gwc' END +SET [Description] = 'Gawri', [Definition] = NULL, [SortOrder] = 2060.00 WHERE [Code] = 'gwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwd', 'Gawwada', NULL, 205.20) END +VALUES ('gwd', 'Gawwada', NULL, 2061.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gawwada', [Definition] = NULL, [SortOrder] = 205.20 WHERE [Code] = 'gwd' END +SET [Description] = 'Gawwada', [Definition] = NULL, [SortOrder] = 2061.00 WHERE [Code] = 'gwd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyl', 'Gayil', NULL, 205.30) END +VALUES ('gyl', 'Gayil', NULL, 2062.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gayil', [Definition] = NULL, [SortOrder] = 205.30 WHERE [Code] = 'gyl' END +SET [Description] = 'Gayil', [Definition] = NULL, [SortOrder] = 2062.00 WHERE [Code] = 'gyl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gay', 'Gayo', NULL, 205.40) END +VALUES ('gay', 'Gayo', NULL, 2063.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gayo', [Definition] = NULL, [SortOrder] = 205.40 WHERE [Code] = 'gay' END +SET [Description] = 'Gayo', [Definition] = NULL, [SortOrder] = 2063.00 WHERE [Code] = 'gay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gzi', 'Gazi', NULL, 205.50) END +VALUES ('gzi', 'Gazi', NULL, 2064.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gazi', [Definition] = NULL, [SortOrder] = 205.50 WHERE [Code] = 'gzi' END +SET [Description] = 'Gazi', [Definition] = NULL, [SortOrder] = 2064.00 WHERE [Code] = 'gzi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbr', 'Gbagyi', NULL, 205.60) END +VALUES ('gbr', 'Gbagyi', NULL, 2065.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbagyi', [Definition] = NULL, [SortOrder] = 205.60 WHERE [Code] = 'gbr' END +SET [Description] = 'Gbagyi', [Definition] = NULL, [SortOrder] = 2065.00 WHERE [Code] = 'gbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbv', 'Gbanu', NULL, 205.70) END +VALUES ('gbv', 'Gbanu', NULL, 2066.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbanu', [Definition] = NULL, [SortOrder] = 205.70 WHERE [Code] = 'gbv' END +SET [Description] = 'Gbanu', [Definition] = NULL, [SortOrder] = 2066.00 WHERE [Code] = 'gbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbg', 'Gbanziri', NULL, 205.80) END +VALUES ('gbg', 'Gbanziri', NULL, 2067.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbanziri', [Definition] = NULL, [SortOrder] = 205.80 WHERE [Code] = 'gbg' END +SET [Description] = 'Gbanziri', [Definition] = NULL, [SortOrder] = 2067.00 WHERE [Code] = 'gbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gby', 'Gbari', NULL, 205.90) END +VALUES ('gby', 'Gbari', NULL, 2068.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbari', [Definition] = NULL, [SortOrder] = 205.90 WHERE [Code] = 'gby' END +SET [Description] = 'Gbari', [Definition] = NULL, [SortOrder] = 2068.00 WHERE [Code] = 'gby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gba', 'Gbaya (Central African Republic)', NULL, 206.00) END +VALUES ('gba', 'Gbaya (Central African Republic)', NULL, 2069.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya (Central African Republic)', [Definition] = NULL, [SortOrder] = 206.00 WHERE [Code] = 'gba' END +SET [Description] = 'Gbaya (Central African Republic)', [Definition] = NULL, [SortOrder] = 2069.00 WHERE [Code] = 'gba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krs', 'Gbaya (Sudan)', NULL, 206.10) END +VALUES ('krs', 'Gbaya (Sudan)', NULL, 2070.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya (Sudan)', [Definition] = NULL, [SortOrder] = 206.10 WHERE [Code] = 'krs' END +SET [Description] = 'Gbaya (Sudan)', [Definition] = NULL, [SortOrder] = 2070.00 WHERE [Code] = 'krs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbp', 'Gbaya-Bossangoa', NULL, 206.20) END +VALUES ('gbp', 'Gbaya-Bossangoa', NULL, 2071.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya-Bossangoa', [Definition] = NULL, [SortOrder] = 206.20 WHERE [Code] = 'gbp' END +SET [Description] = 'Gbaya-Bossangoa', [Definition] = NULL, [SortOrder] = 2071.00 WHERE [Code] = 'gbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbq', 'Gbaya-Bozoum', NULL, 206.30) END +VALUES ('gbq', 'Gbaya-Bozoum', NULL, 2072.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya-Bozoum', [Definition] = NULL, [SortOrder] = 206.30 WHERE [Code] = 'gbq' END +SET [Description] = 'Gbaya-Bozoum', [Definition] = NULL, [SortOrder] = 2072.00 WHERE [Code] = 'gbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmm', 'Gbaya-Mbodomo', NULL, 206.40) END +VALUES ('gmm', 'Gbaya-Mbodomo', NULL, 2073.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya-Mbodomo', [Definition] = NULL, [SortOrder] = 206.40 WHERE [Code] = 'gmm' END +SET [Description] = 'Gbaya-Mbodomo', [Definition] = NULL, [SortOrder] = 2073.00 WHERE [Code] = 'gmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyg', 'Gbayi', NULL, 206.50) END +VALUES ('gyg', 'Gbayi', NULL, 2074.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbayi', [Definition] = NULL, [SortOrder] = 206.50 WHERE [Code] = 'gyg' END +SET [Description] = 'Gbayi', [Definition] = NULL, [SortOrder] = 2074.00 WHERE [Code] = 'gyg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbs', 'Gbesi Gbe', NULL, 206.60) END +VALUES ('gbs', 'Gbesi Gbe', NULL, 2075.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbesi Gbe', [Definition] = NULL, [SortOrder] = 206.60 WHERE [Code] = 'gbs' END +SET [Description] = 'Gbesi Gbe', [Definition] = NULL, [SortOrder] = 2075.00 WHERE [Code] = 'gbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggb', 'Gbii', NULL, 206.70) END +VALUES ('ggb', 'Gbii', NULL, 2076.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbii', [Definition] = NULL, [SortOrder] = 206.70 WHERE [Code] = 'ggb' END +SET [Description] = 'Gbii', [Definition] = NULL, [SortOrder] = 2076.00 WHERE [Code] = 'ggb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgb', 'Gbin', NULL, 206.80) END +VALUES ('xgb', 'Gbin', NULL, 2077.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbin', [Definition] = NULL, [SortOrder] = 206.80 WHERE [Code] = 'xgb' END +SET [Description] = 'Gbin', [Definition] = NULL, [SortOrder] = 2077.00 WHERE [Code] = 'xgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grh', 'Gbiri-Niragu', NULL, 206.90) END +VALUES ('grh', 'Gbiri-Niragu', NULL, 2078.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbiri-Niragu', [Definition] = NULL, [SortOrder] = 206.90 WHERE [Code] = 'grh' END +SET [Description] = 'Gbiri-Niragu', [Definition] = NULL, [SortOrder] = 2078.00 WHERE [Code] = 'grh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gec', 'Gboloo Grebo', NULL, 207.00) END +VALUES ('gec', 'Gboloo Grebo', NULL, 2079.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gboloo Grebo', [Definition] = NULL, [SortOrder] = 207.00 WHERE [Code] = 'gec' END +SET [Description] = 'Gboloo Grebo', [Definition] = NULL, [SortOrder] = 2079.00 WHERE [Code] = 'gec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmj', 'Ge', NULL, 207.10) END +VALUES ('hmj', 'Ge', NULL, 2080.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ge', [Definition] = NULL, [SortOrder] = 207.10 WHERE [Code] = 'hmj' END +SET [Description] = 'Ge', [Definition] = NULL, [SortOrder] = 2080.00 WHERE [Code] = 'hmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvq', 'Geba Karen', NULL, 207.20) END +VALUES ('kvq', 'Geba Karen', NULL, 2081.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geba Karen', [Definition] = NULL, [SortOrder] = 207.20 WHERE [Code] = 'kvq' END +SET [Description] = 'Geba Karen', [Definition] = NULL, [SortOrder] = 2081.00 WHERE [Code] = 'kvq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gei', 'Gebe', NULL, 207.30) END +VALUES ('gei', 'Gebe', NULL, 2082.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gebe', [Definition] = NULL, [SortOrder] = 207.30 WHERE [Code] = 'gei' END +SET [Description] = 'Gebe', [Definition] = NULL, [SortOrder] = 2082.00 WHERE [Code] = 'gei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdd', 'Gedaged', NULL, 207.40) END +VALUES ('gdd', 'Gedaged', NULL, 2083.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gedaged', [Definition] = NULL, [SortOrder] = 207.40 WHERE [Code] = 'gdd' END +SET [Description] = 'Gedaged', [Definition] = NULL, [SortOrder] = 2083.00 WHERE [Code] = 'gdd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drs', 'Gedeo', NULL, 207.50) END +VALUES ('drs', 'Gedeo', NULL, 2084.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gedeo', [Definition] = NULL, [SortOrder] = 207.50 WHERE [Code] = 'drs' END +SET [Description] = 'Gedeo', [Definition] = NULL, [SortOrder] = 2084.00 WHERE [Code] = 'drs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gez', 'Geez', NULL, 207.60) END +VALUES ('gez', 'Geez', NULL, 2085.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geez', [Definition] = NULL, [SortOrder] = 207.60 WHERE [Code] = 'gez' END +SET [Description] = 'Geez', [Definition] = NULL, [SortOrder] = 2085.00 WHERE [Code] = 'gez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyz', 'Geji', NULL, 207.70) END +VALUES ('gyz', 'Geji', NULL, 2086.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geji', [Definition] = NULL, [SortOrder] = 207.70 WHERE [Code] = 'gyz' END +SET [Description] = 'Geji', [Definition] = NULL, [SortOrder] = 2086.00 WHERE [Code] = 'gyz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghk', 'Geko Karen', NULL, 207.80) END +VALUES ('ghk', 'Geko Karen', NULL, 2087.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geko Karen', [Definition] = NULL, [SortOrder] = 207.80 WHERE [Code] = 'ghk' END +SET [Description] = 'Geko Karen', [Definition] = NULL, [SortOrder] = 2087.00 WHERE [Code] = 'ghk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlg', 'Gela', NULL, 207.90) END +VALUES ('nlg', 'Gela', NULL, 2088.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gela', [Definition] = NULL, [SortOrder] = 207.90 WHERE [Code] = 'nlg' END +SET [Description] = 'Gela', [Definition] = NULL, [SortOrder] = 2088.00 WHERE [Code] = 'nlg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'geq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geq', 'Geme', NULL, 208.00) END +VALUES ('geq', 'Geme', NULL, 2089.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geme', [Definition] = NULL, [SortOrder] = 208.00 WHERE [Code] = 'geq' END +SET [Description] = 'Geme', [Definition] = NULL, [SortOrder] = 2089.00 WHERE [Code] = 'geq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gej', 'Gen', NULL, 208.10) END +VALUES ('gej', 'Gen', NULL, 2090.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gen', [Definition] = NULL, [SortOrder] = 208.10 WHERE [Code] = 'gej' END +SET [Description] = 'Gen', [Definition] = NULL, [SortOrder] = 2090.00 WHERE [Code] = 'gej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaf', 'Gende', NULL, 208.20) END +VALUES ('gaf', 'Gende', NULL, 2091.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gende', [Definition] = NULL, [SortOrder] = 208.20 WHERE [Code] = 'gaf' END +SET [Description] = 'Gende', [Definition] = NULL, [SortOrder] = 2091.00 WHERE [Code] = 'gaf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'geg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geg', 'Gengle', NULL, 208.30) END +VALUES ('geg', 'Gengle', NULL, 2092.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gengle', [Definition] = NULL, [SortOrder] = 208.30 WHERE [Code] = 'geg' END +SET [Description] = 'Gengle', [Definition] = NULL, [SortOrder] = 2092.00 WHERE [Code] = 'geg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kat', 'Georgian', NULL, 208.40) END +VALUES ('kat', 'Georgian', NULL, 2093.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Georgian', [Definition] = NULL, [SortOrder] = 208.40 WHERE [Code] = 'kat' END +SET [Description] = 'Georgian', [Definition] = NULL, [SortOrder] = 2093.00 WHERE [Code] = 'kat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygp', 'Gepo', NULL, 208.50) END +VALUES ('ygp', 'Gepo', NULL, 2094.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gepo', [Definition] = NULL, [SortOrder] = 208.50 WHERE [Code] = 'ygp' END +SET [Description] = 'Gepo', [Definition] = NULL, [SortOrder] = 2094.00 WHERE [Code] = 'ygp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gew', 'Gera', NULL, 208.60) END +VALUES ('gew', 'Gera', NULL, 2095.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gera', [Definition] = NULL, [SortOrder] = 208.60 WHERE [Code] = 'gew' END +SET [Description] = 'Gera', [Definition] = NULL, [SortOrder] = 2095.00 WHERE [Code] = 'gew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gef', 'Gerai', NULL, 208.70) END +VALUES ('gef', 'Gerai', NULL, 2096.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gerai', [Definition] = NULL, [SortOrder] = 208.70 WHERE [Code] = 'gef' END +SET [Description] = 'Gerai', [Definition] = NULL, [SortOrder] = 2096.00 WHERE [Code] = 'gef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'deu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('deu', 'German', NULL, 208.80) END +VALUES ('deu', 'German', NULL, 2097.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'German', [Definition] = NULL, [SortOrder] = 208.80 WHERE [Code] = 'deu' END +SET [Description] = 'German', [Definition] = NULL, [SortOrder] = 2097.00 WHERE [Code] = 'deu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsg', 'German Sign Language', NULL, 208.90) END +VALUES ('gsg', 'German Sign Language', NULL, 2098.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'German Sign Language', [Definition] = NULL, [SortOrder] = 208.90 WHERE [Code] = 'gsg' END +SET [Description] = 'German Sign Language', [Definition] = NULL, [SortOrder] = 2098.00 WHERE [Code] = 'gsg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gea', 'Geruma', NULL, 209.00) END +VALUES ('gea', 'Geruma', NULL, 2099.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geruma', [Definition] = NULL, [SortOrder] = 209.00 WHERE [Code] = 'gea' END +SET [Description] = 'Geruma', [Definition] = NULL, [SortOrder] = 2099.00 WHERE [Code] = 'gea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ges') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ges', 'Geser-Gorom', NULL, 209.10) END +VALUES ('ges', 'Geser-Gorom', NULL, 2100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geser-Gorom', [Definition] = NULL, [SortOrder] = 209.10 WHERE [Code] = 'ges' END +SET [Description] = 'Geser-Gorom', [Definition] = NULL, [SortOrder] = 2100.00 WHERE [Code] = 'ges' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gha', 'Ghadamès', NULL, 209.20) END +VALUES ('gha', 'Ghadamès', NULL, 2101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghadamès', [Definition] = NULL, [SortOrder] = 209.20 WHERE [Code] = 'gha' END +SET [Description] = 'Ghadamès', [Definition] = NULL, [SortOrder] = 2101.00 WHERE [Code] = 'gha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gpe', 'Ghanaian Pidgin English', NULL, 209.30) END +VALUES ('gpe', 'Ghanaian Pidgin English', NULL, 2102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghanaian Pidgin English', [Definition] = NULL, [SortOrder] = 209.30 WHERE [Code] = 'gpe' END +SET [Description] = 'Ghanaian Pidgin English', [Definition] = NULL, [SortOrder] = 2102.00 WHERE [Code] = 'gpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gse', 'Ghanaian Sign Language', NULL, 209.40) END +VALUES ('gse', 'Ghanaian Sign Language', NULL, 2103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghanaian Sign Language', [Definition] = NULL, [SortOrder] = 209.40 WHERE [Code] = 'gse' END +SET [Description] = 'Ghanaian Sign Language', [Definition] = NULL, [SortOrder] = 2103.00 WHERE [Code] = 'gse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gds', 'Ghandruk Sign Language', NULL, 209.50) END +VALUES ('gds', 'Ghandruk Sign Language', NULL, 2104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghandruk Sign Language', [Definition] = NULL, [SortOrder] = 209.50 WHERE [Code] = 'gds' END +SET [Description] = 'Ghandruk Sign Language', [Definition] = NULL, [SortOrder] = 2104.00 WHERE [Code] = 'gds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghn', 'Ghanongga', NULL, 209.60) END +VALUES ('ghn', 'Ghanongga', NULL, 2105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghanongga', [Definition] = NULL, [SortOrder] = 209.60 WHERE [Code] = 'ghn' END +SET [Description] = 'Ghanongga', [Definition] = NULL, [SortOrder] = 2105.00 WHERE [Code] = 'ghn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gri', 'Ghari', NULL, 209.70) END +VALUES ('gri', 'Ghari', NULL, 2106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghari', [Definition] = NULL, [SortOrder] = 209.70 WHERE [Code] = 'gri' END +SET [Description] = 'Ghari', [Definition] = NULL, [SortOrder] = 2106.00 WHERE [Code] = 'gri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmk', 'Ghayavi', NULL, 209.80) END +VALUES ('bmk', 'Ghayavi', NULL, 2107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghayavi', [Definition] = NULL, [SortOrder] = 209.80 WHERE [Code] = 'bmk' END +SET [Description] = 'Ghayavi', [Definition] = NULL, [SortOrder] = 2107.00 WHERE [Code] = 'bmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aln', 'Gheg Albanian', NULL, 209.90) END +VALUES ('aln', 'Gheg Albanian', NULL, 2108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gheg Albanian', [Definition] = NULL, [SortOrder] = 209.90 WHERE [Code] = 'aln' END +SET [Description] = 'Gheg Albanian', [Definition] = NULL, [SortOrder] = 2108.00 WHERE [Code] = 'aln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghr', 'Ghera', NULL, 210.00) END +VALUES ('ghr', 'Ghera', NULL, 2109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghera', [Definition] = NULL, [SortOrder] = 210.00 WHERE [Code] = 'ghr' END +SET [Description] = 'Ghera', [Definition] = NULL, [SortOrder] = 2109.00 WHERE [Code] = 'ghr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdo', 'Ghodoberi', NULL, 210.10) END +VALUES ('gdo', 'Ghodoberi', NULL, 2110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghodoberi', [Definition] = NULL, [SortOrder] = 210.10 WHERE [Code] = 'gdo' END +SET [Description] = 'Ghodoberi', [Definition] = NULL, [SortOrder] = 2110.00 WHERE [Code] = 'gdo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbj', 'Ghomálá''', NULL, 210.20) END +VALUES ('bbj', 'Ghomálá''', NULL, 2111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghomálá''', [Definition] = NULL, [SortOrder] = 210.20 WHERE [Code] = 'bbj' END +SET [Description] = 'Ghomálá''', [Definition] = NULL, [SortOrder] = 2111.00 WHERE [Code] = 'bbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gho', 'Ghomara', NULL, 210.30) END +VALUES ('gho', 'Ghomara', NULL, 2112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghomara', [Definition] = NULL, [SortOrder] = 210.30 WHERE [Code] = 'gho' END +SET [Description] = 'Ghomara', [Definition] = NULL, [SortOrder] = 2112.00 WHERE [Code] = 'gho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaa', 'Ghotuo', NULL, 210.40) END +VALUES ('aaa', 'Ghotuo', NULL, 2113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghotuo', [Definition] = NULL, [SortOrder] = 210.40 WHERE [Code] = 'aaa' END +SET [Description] = 'Ghotuo', [Definition] = NULL, [SortOrder] = 2113.00 WHERE [Code] = 'aaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghl', 'Ghulfan', NULL, 210.50) END +VALUES ('ghl', 'Ghulfan', NULL, 2114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghulfan', [Definition] = NULL, [SortOrder] = 210.50 WHERE [Code] = 'ghl' END +SET [Description] = 'Ghulfan', [Definition] = NULL, [SortOrder] = 2114.00 WHERE [Code] = 'ghl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgi', 'Giangan', NULL, 210.60) END +VALUES ('bgi', 'Giangan', NULL, 2115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Giangan', [Definition] = NULL, [SortOrder] = 210.60 WHERE [Code] = 'bgi' END +SET [Description] = 'Giangan', [Definition] = NULL, [SortOrder] = 2115.00 WHERE [Code] = 'bgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gib', 'Gibanawa', NULL, 210.70) END +VALUES ('gib', 'Gibanawa', NULL, 2116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gibanawa', [Definition] = NULL, [SortOrder] = 210.70 WHERE [Code] = 'gib' END +SET [Description] = 'Gibanawa', [Definition] = NULL, [SortOrder] = 2116.00 WHERE [Code] = 'gib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gid', 'Gidar', NULL, 210.80) END +VALUES ('gid', 'Gidar', NULL, 2117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gidar', [Definition] = NULL, [SortOrder] = 210.80 WHERE [Code] = 'gid' END +SET [Description] = 'Gidar', [Definition] = NULL, [SortOrder] = 2117.00 WHERE [Code] = 'gid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kks', 'Giiwo', NULL, 210.90) END +VALUES ('kks', 'Giiwo', NULL, 2118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Giiwo', [Definition] = NULL, [SortOrder] = 210.90 WHERE [Code] = 'kks' END +SET [Description] = 'Giiwo', [Definition] = NULL, [SortOrder] = 2118.00 WHERE [Code] = 'kks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acd', 'Gikyode', NULL, 211.00) END +VALUES ('acd', 'Gikyode', NULL, 2119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gikyode', [Definition] = NULL, [SortOrder] = 211.00 WHERE [Code] = 'acd' END +SET [Description] = 'Gikyode', [Definition] = NULL, [SortOrder] = 2119.00 WHERE [Code] = 'acd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glk', 'Gilaki', NULL, 211.10) END +VALUES ('glk', 'Gilaki', NULL, 2120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gilaki', [Definition] = NULL, [SortOrder] = 211.10 WHERE [Code] = 'glk' END +SET [Description] = 'Gilaki', [Definition] = NULL, [SortOrder] = 2120.00 WHERE [Code] = 'glk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gil', 'Gilbertese', NULL, 211.20) END +VALUES ('gil', 'Gilbertese', NULL, 2121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gilbertese', [Definition] = NULL, [SortOrder] = 211.20 WHERE [Code] = 'gil' END +SET [Description] = 'Gilbertese', [Definition] = NULL, [SortOrder] = 2121.00 WHERE [Code] = 'gil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gix', 'Gilima', NULL, 211.30) END +VALUES ('gix', 'Gilima', NULL, 2122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gilima', [Definition] = NULL, [SortOrder] = 211.30 WHERE [Code] = 'gix' END +SET [Description] = 'Gilima', [Definition] = NULL, [SortOrder] = 2122.00 WHERE [Code] = 'gix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niv', 'Gilyak', NULL, 211.40) END +VALUES ('niv', 'Gilyak', NULL, 2123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gilyak', [Definition] = NULL, [SortOrder] = 211.40 WHERE [Code] = 'niv' END +SET [Description] = 'Gilyak', [Definition] = NULL, [SortOrder] = 2123.00 WHERE [Code] = 'niv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gim', 'Gimi (Eastern Highlands)', NULL, 211.50) END +VALUES ('gim', 'Gimi (Eastern Highlands)', NULL, 2124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gimi (Eastern Highlands)', [Definition] = NULL, [SortOrder] = 211.50 WHERE [Code] = 'gim' END +SET [Description] = 'Gimi (Eastern Highlands)', [Definition] = NULL, [SortOrder] = 2124.00 WHERE [Code] = 'gim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gip', 'Gimi (West New Britain)', NULL, 211.60) END +VALUES ('gip', 'Gimi (West New Britain)', NULL, 2125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gimi (West New Britain)', [Definition] = NULL, [SortOrder] = 211.60 WHERE [Code] = 'gip' END +SET [Description] = 'Gimi (West New Britain)', [Definition] = NULL, [SortOrder] = 2125.00 WHERE [Code] = 'gip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmp', 'Gimme', NULL, 211.70) END +VALUES ('kmp', 'Gimme', NULL, 2126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gimme', [Definition] = NULL, [SortOrder] = 211.70 WHERE [Code] = 'kmp' END +SET [Description] = 'Gimme', [Definition] = NULL, [SortOrder] = 2126.00 WHERE [Code] = 'kmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmn', 'Gimnime', NULL, 211.80) END +VALUES ('gmn', 'Gimnime', NULL, 2127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gimnime', [Definition] = NULL, [SortOrder] = 211.80 WHERE [Code] = 'gmn' END +SET [Description] = 'Gimnime', [Definition] = NULL, [SortOrder] = 2127.00 WHERE [Code] = 'gmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnm', 'Ginuman', NULL, 211.90) END +VALUES ('gnm', 'Ginuman', NULL, 2128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ginuman', [Definition] = NULL, [SortOrder] = 211.90 WHERE [Code] = 'gnm' END +SET [Description] = 'Ginuman', [Definition] = NULL, [SortOrder] = 2128.00 WHERE [Code] = 'gnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayg', 'Ginyanga', NULL, 212.00) END +VALUES ('ayg', 'Ginyanga', NULL, 2129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ginyanga', [Definition] = NULL, [SortOrder] = 212.00 WHERE [Code] = 'ayg' END +SET [Description] = 'Ginyanga', [Definition] = NULL, [SortOrder] = 2129.00 WHERE [Code] = 'ayg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbr', 'Girawa', NULL, 212.10) END +VALUES ('bbr', 'Girawa', NULL, 2130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Girawa', [Definition] = NULL, [SortOrder] = 212.10 WHERE [Code] = 'bbr' END +SET [Description] = 'Girawa', [Definition] = NULL, [SortOrder] = 2130.00 WHERE [Code] = 'bbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gii', 'Girirra', NULL, 212.20) END +VALUES ('gii', 'Girirra', NULL, 2131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Girirra', [Definition] = NULL, [SortOrder] = 212.20 WHERE [Code] = 'gii' END +SET [Description] = 'Girirra', [Definition] = NULL, [SortOrder] = 2131.00 WHERE [Code] = 'gii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyf', 'Giryama', NULL, 212.30) END +VALUES ('nyf', 'Giryama', NULL, 2132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Giryama', [Definition] = NULL, [SortOrder] = 212.30 WHERE [Code] = 'nyf' END +SET [Description] = 'Giryama', [Definition] = NULL, [SortOrder] = 2132.00 WHERE [Code] = 'nyf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gih', 'Githabul', NULL, 212.40) END +VALUES ('gih', 'Githabul', NULL, 2133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Githabul', [Definition] = NULL, [SortOrder] = 212.40 WHERE [Code] = 'gih' END +SET [Description] = 'Githabul', [Definition] = NULL, [SortOrder] = 2133.00 WHERE [Code] = 'gih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toh', 'Gitonga', NULL, 212.50) END +VALUES ('toh', 'Gitonga', NULL, 2134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gitonga', [Definition] = NULL, [SortOrder] = 212.50 WHERE [Code] = 'toh' END +SET [Description] = 'Gitonga', [Definition] = NULL, [SortOrder] = 2134.00 WHERE [Code] = 'toh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggt', 'Gitua', NULL, 212.60) END +VALUES ('ggt', 'Gitua', NULL, 2135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gitua', [Definition] = NULL, [SortOrder] = 212.60 WHERE [Code] = 'ggt' END +SET [Description] = 'Gitua', [Definition] = NULL, [SortOrder] = 2135.00 WHERE [Code] = 'ggt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'git') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('git', 'Gitxsan', NULL, 212.70) END +VALUES ('git', 'Gitxsan', NULL, 2136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gitxsan', [Definition] = NULL, [SortOrder] = 212.70 WHERE [Code] = 'git' END +SET [Description] = 'Gitxsan', [Definition] = NULL, [SortOrder] = 2136.00 WHERE [Code] = 'git' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giy', 'Giyug', NULL, 212.80) END +VALUES ('giy', 'Giyug', NULL, 2137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Giyug', [Definition] = NULL, [SortOrder] = 212.80 WHERE [Code] = 'giy' END +SET [Description] = 'Giyug', [Definition] = NULL, [SortOrder] = 2137.00 WHERE [Code] = 'giy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tof', 'Gizrra', NULL, 212.90) END +VALUES ('tof', 'Gizrra', NULL, 2138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gizrra', [Definition] = NULL, [SortOrder] = 212.90 WHERE [Code] = 'tof' END +SET [Description] = 'Gizrra', [Definition] = NULL, [SortOrder] = 2138.00 WHERE [Code] = 'tof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glr', 'Glaro-Twabo', NULL, 213.00) END +VALUES ('glr', 'Glaro-Twabo', NULL, 2139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Glaro-Twabo', [Definition] = NULL, [SortOrder] = 213.00 WHERE [Code] = 'glr' END +SET [Description] = 'Glaro-Twabo', [Definition] = NULL, [SortOrder] = 2139.00 WHERE [Code] = 'glr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glw', 'Glavda', NULL, 213.10) END +VALUES ('glw', 'Glavda', NULL, 2140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Glavda', [Definition] = NULL, [SortOrder] = 213.10 WHERE [Code] = 'glw' END +SET [Description] = 'Glavda', [Definition] = NULL, [SortOrder] = 2140.00 WHERE [Code] = 'glw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oub', 'Glio-Oubi', NULL, 213.20) END +VALUES ('oub', 'Glio-Oubi', NULL, 2141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Glio-Oubi', [Definition] = NULL, [SortOrder] = 213.20 WHERE [Code] = 'oub' END +SET [Description] = 'Glio-Oubi', [Definition] = NULL, [SortOrder] = 2141.00 WHERE [Code] = 'oub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnu', 'Gnau', NULL, 213.30) END +VALUES ('gnu', 'Gnau', NULL, 2142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gnau', [Definition] = NULL, [SortOrder] = 213.30 WHERE [Code] = 'gnu' END +SET [Description] = 'Gnau', [Definition] = NULL, [SortOrder] = 2142.00 WHERE [Code] = 'gnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gom', 'Goan Konkani', NULL, 213.40) END +VALUES ('gom', 'Goan Konkani', NULL, 2143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goan Konkani', [Definition] = NULL, [SortOrder] = 213.40 WHERE [Code] = 'gom' END +SET [Description] = 'Goan Konkani', [Definition] = NULL, [SortOrder] = 2143.00 WHERE [Code] = 'gom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gig', 'Goaria', NULL, 213.50) END +VALUES ('gig', 'Goaria', NULL, 2144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goaria', [Definition] = NULL, [SortOrder] = 213.50 WHERE [Code] = 'gig' END +SET [Description] = 'Goaria', [Definition] = NULL, [SortOrder] = 2144.00 WHERE [Code] = 'gig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goi', 'Gobasi', NULL, 213.60) END +VALUES ('goi', 'Gobasi', NULL, 2145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gobasi', [Definition] = NULL, [SortOrder] = 213.60 WHERE [Code] = 'goi' END +SET [Description] = 'Gobasi', [Definition] = NULL, [SortOrder] = 2145.00 WHERE [Code] = 'goi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gox', 'Gobu', NULL, 213.70) END +VALUES ('gox', 'Gobu', NULL, 2146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gobu', [Definition] = NULL, [SortOrder] = 213.70 WHERE [Code] = 'gox' END +SET [Description] = 'Gobu', [Definition] = NULL, [SortOrder] = 2146.00 WHERE [Code] = 'gox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'god') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('god', 'Godié', NULL, 213.80) END +VALUES ('god', 'Godié', NULL, 2147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Godié', [Definition] = NULL, [SortOrder] = 213.80 WHERE [Code] = 'god' END +SET [Description] = 'Godié', [Definition] = NULL, [SortOrder] = 2147.00 WHERE [Code] = 'god' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdx', 'Godwari', NULL, 213.90) END +VALUES ('gdx', 'Godwari', NULL, 2148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Godwari', [Definition] = NULL, [SortOrder] = 213.90 WHERE [Code] = 'gdx' END +SET [Description] = 'Godwari', [Definition] = NULL, [SortOrder] = 2148.00 WHERE [Code] = 'gdx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ank') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ank', 'Goemai', NULL, 214.00) END +VALUES ('ank', 'Goemai', NULL, 2149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goemai', [Definition] = NULL, [SortOrder] = 214.00 WHERE [Code] = 'ank' END +SET [Description] = 'Goemai', [Definition] = NULL, [SortOrder] = 2149.00 WHERE [Code] = 'ank' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gof', 'Gofa', NULL, 214.10) END +VALUES ('gof', 'Gofa', NULL, 2150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gofa', [Definition] = NULL, [SortOrder] = 214.10 WHERE [Code] = 'gof' END +SET [Description] = 'Gofa', [Definition] = NULL, [SortOrder] = 2150.00 WHERE [Code] = 'gof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gog', 'Gogo', NULL, 214.20) END +VALUES ('gog', 'Gogo', NULL, 2151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gogo', [Definition] = NULL, [SortOrder] = 214.20 WHERE [Code] = 'gog' END +SET [Description] = 'Gogo', [Definition] = NULL, [SortOrder] = 2151.00 WHERE [Code] = 'gog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggw', 'Gogodala', NULL, 214.30) END +VALUES ('ggw', 'Gogodala', NULL, 2152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gogodala', [Definition] = NULL, [SortOrder] = 214.30 WHERE [Code] = 'ggw' END +SET [Description] = 'Gogodala', [Definition] = NULL, [SortOrder] = 2152.00 WHERE [Code] = 'ggw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gkn', 'Gokana', NULL, 214.40) END +VALUES ('gkn', 'Gokana', NULL, 2153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gokana', [Definition] = NULL, [SortOrder] = 214.40 WHERE [Code] = 'gkn' END +SET [Description] = 'Gokana', [Definition] = NULL, [SortOrder] = 2153.00 WHERE [Code] = 'gkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gol', 'Gola', NULL, 214.50) END +VALUES ('gol', 'Gola', NULL, 2154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gola', [Definition] = NULL, [SortOrder] = 214.50 WHERE [Code] = 'gol' END +SET [Description] = 'Gola', [Definition] = NULL, [SortOrder] = 2154.00 WHERE [Code] = 'gol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvf', 'Golin', NULL, 214.60) END +VALUES ('gvf', 'Golin', NULL, 2155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Golin', [Definition] = NULL, [SortOrder] = 214.60 WHERE [Code] = 'gvf' END +SET [Description] = 'Golin', [Definition] = NULL, [SortOrder] = 2155.00 WHERE [Code] = 'gvf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lja', 'Golpa', NULL, 214.70) END +VALUES ('lja', 'Golpa', NULL, 2156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Golpa', [Definition] = NULL, [SortOrder] = 214.70 WHERE [Code] = 'lja' END +SET [Description] = 'Golpa', [Definition] = NULL, [SortOrder] = 2156.00 WHERE [Code] = 'lja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gon', 'Gondi', NULL, 214.80) END +VALUES ('gon', 'Gondi', NULL, 2157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gondi', [Definition] = NULL, [SortOrder] = 214.80 WHERE [Code] = 'gon' END +SET [Description] = 'Gondi', [Definition] = NULL, [SortOrder] = 2157.00 WHERE [Code] = 'gon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goo', 'Gone Dau', NULL, 214.90) END +VALUES ('goo', 'Gone Dau', NULL, 2158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gone Dau', [Definition] = NULL, [SortOrder] = 214.90 WHERE [Code] = 'goo' END +SET [Description] = 'Gone Dau', [Definition] = NULL, [SortOrder] = 2158.00 WHERE [Code] = 'goo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goe', 'Gongduk', NULL, 215.00) END +VALUES ('goe', 'Gongduk', NULL, 2159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gongduk', [Definition] = NULL, [SortOrder] = 215.00 WHERE [Code] = 'goe' END +SET [Description] = 'Gongduk', [Definition] = NULL, [SortOrder] = 2159.00 WHERE [Code] = 'goe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gjn', 'Gonja', NULL, 215.10) END +VALUES ('gjn', 'Gonja', NULL, 2160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gonja', [Definition] = NULL, [SortOrder] = 215.10 WHERE [Code] = 'gjn' END +SET [Description] = 'Gonja', [Definition] = NULL, [SortOrder] = 2160.00 WHERE [Code] = 'gjn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gov', 'Goo', NULL, 215.20) END +VALUES ('gov', 'Goo', NULL, 2161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goo', [Definition] = NULL, [SortOrder] = 215.20 WHERE [Code] = 'gov' END +SET [Description] = 'Goo', [Definition] = NULL, [SortOrder] = 2161.00 WHERE [Code] = 'gov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gni', 'Gooniyandi', NULL, 215.30) END +VALUES ('gni', 'Gooniyandi', NULL, 2162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gooniyandi', [Definition] = NULL, [SortOrder] = 215.30 WHERE [Code] = 'gni' END +SET [Description] = 'Gooniyandi', [Definition] = NULL, [SortOrder] = 2162.00 WHERE [Code] = 'gni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqr', 'Gor', NULL, 215.40) END +VALUES ('gqr', 'Gor', NULL, 2163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gor', [Definition] = NULL, [SortOrder] = 215.40 WHERE [Code] = 'gqr' END +SET [Description] = 'Gor', [Definition] = NULL, [SortOrder] = 2163.00 WHERE [Code] = 'gqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goc', 'Gorakor', NULL, 215.50) END +VALUES ('goc', 'Gorakor', NULL, 2164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorakor', [Definition] = NULL, [SortOrder] = 215.50 WHERE [Code] = 'goc' END +SET [Description] = 'Gorakor', [Definition] = NULL, [SortOrder] = 2164.00 WHERE [Code] = 'goc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goq', 'Gorap', NULL, 215.60) END +VALUES ('goq', 'Gorap', NULL, 2165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorap', [Definition] = NULL, [SortOrder] = 215.60 WHERE [Code] = 'goq' END +SET [Description] = 'Gorap', [Definition] = NULL, [SortOrder] = 2165.00 WHERE [Code] = 'goq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgg', 'Goreng', NULL, 215.70) END +VALUES ('xgg', 'Goreng', NULL, 2166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goreng', [Definition] = NULL, [SortOrder] = 215.70 WHERE [Code] = 'xgg' END +SET [Description] = 'Goreng', [Definition] = NULL, [SortOrder] = 2166.00 WHERE [Code] = 'xgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gor', 'Gorontalo', NULL, 215.80) END +VALUES ('gor', 'Gorontalo', NULL, 2167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorontalo', [Definition] = NULL, [SortOrder] = 215.80 WHERE [Code] = 'gor' END +SET [Description] = 'Gorontalo', [Definition] = NULL, [SortOrder] = 2167.00 WHERE [Code] = 'gor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grq', 'Gorovu', NULL, 215.90) END +VALUES ('grq', 'Gorovu', NULL, 2168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorovu', [Definition] = NULL, [SortOrder] = 215.90 WHERE [Code] = 'grq' END +SET [Description] = 'Gorovu', [Definition] = NULL, [SortOrder] = 2168.00 WHERE [Code] = 'grq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gow', 'Gorowa', NULL, 216.00) END +VALUES ('gow', 'Gorowa', NULL, 2169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorowa', [Definition] = NULL, [SortOrder] = 216.00 WHERE [Code] = 'gow' END +SET [Description] = 'Gorowa', [Definition] = NULL, [SortOrder] = 2169.00 WHERE [Code] = 'gow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'got') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('got', 'Gothic', NULL, 216.10) END +VALUES ('got', 'Gothic', NULL, 2170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gothic', [Definition] = NULL, [SortOrder] = 216.10 WHERE [Code] = 'got' END +SET [Description] = 'Gothic', [Definition] = NULL, [SortOrder] = 2170.00 WHERE [Code] = 'got' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goy', 'Goundo', NULL, 216.20) END +VALUES ('goy', 'Goundo', NULL, 2171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goundo', [Definition] = NULL, [SortOrder] = 216.20 WHERE [Code] = 'goy' END +SET [Description] = 'Goundo', [Definition] = NULL, [SortOrder] = 2171.00 WHERE [Code] = 'goy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gux', 'Gourmanchéma', NULL, 216.30) END +VALUES ('gux', 'Gourmanchéma', NULL, 2172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gourmanchéma', [Definition] = NULL, [SortOrder] = 216.30 WHERE [Code] = 'gux' END +SET [Description] = 'Gourmanchéma', [Definition] = NULL, [SortOrder] = 2172.00 WHERE [Code] = 'gux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goj', 'Gowlan', NULL, 216.40) END +VALUES ('goj', 'Gowlan', NULL, 2173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gowlan', [Definition] = NULL, [SortOrder] = 216.40 WHERE [Code] = 'goj' END +SET [Description] = 'Gowlan', [Definition] = NULL, [SortOrder] = 2173.00 WHERE [Code] = 'goj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gok', 'Gowli', NULL, 216.50) END +VALUES ('gok', 'Gowli', NULL, 2174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gowli', [Definition] = NULL, [SortOrder] = 216.50 WHERE [Code] = 'gok' END +SET [Description] = 'Gowli', [Definition] = NULL, [SortOrder] = 2174.00 WHERE [Code] = 'gok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwf', 'Gowro', NULL, 216.60) END +VALUES ('gwf', 'Gowro', NULL, 2175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gowro', [Definition] = NULL, [SortOrder] = 216.60 WHERE [Code] = 'gwf' END +SET [Description] = 'Gowro', [Definition] = NULL, [SortOrder] = 2175.00 WHERE [Code] = 'gwf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goz', 'Gozarkhani', NULL, 216.70) END +VALUES ('goz', 'Gozarkhani', NULL, 2176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gozarkhani', [Definition] = NULL, [SortOrder] = 216.70 WHERE [Code] = 'goz' END +SET [Description] = 'Gozarkhani', [Definition] = NULL, [SortOrder] = 2176.00 WHERE [Code] = 'goz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nli', 'Grangali', NULL, 216.80) END +VALUES ('nli', 'Grangali', NULL, 2177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Grangali', [Definition] = NULL, [SortOrder] = 216.80 WHERE [Code] = 'nli' END +SET [Description] = 'Grangali', [Definition] = NULL, [SortOrder] = 2177.00 WHERE [Code] = 'nli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbk', 'Grass Koiari', NULL, 216.90) END +VALUES ('kbk', 'Grass Koiari', NULL, 2178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Grass Koiari', [Definition] = NULL, [SortOrder] = 216.90 WHERE [Code] = 'kbk' END +SET [Description] = 'Grass Koiari', [Definition] = NULL, [SortOrder] = 2178.00 WHERE [Code] = 'kbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grb', 'Grebo', NULL, 217.00) END +VALUES ('grb', 'Grebo', NULL, 2179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Grebo', [Definition] = NULL, [SortOrder] = 217.00 WHERE [Code] = 'grb' END +SET [Description] = 'Grebo', [Definition] = NULL, [SortOrder] = 2179.00 WHERE [Code] = 'grb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gss', 'Greek Sign Language', NULL, 217.10) END +VALUES ('gss', 'Greek Sign Language', NULL, 2180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Greek Sign Language', [Definition] = NULL, [SortOrder] = 217.10 WHERE [Code] = 'gss' END +SET [Description] = 'Greek Sign Language', [Definition] = NULL, [SortOrder] = 2180.00 WHERE [Code] = 'gss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giq', 'Green Gelao', NULL, 217.20) END +VALUES ('giq', 'Green Gelao', NULL, 2181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Green Gelao', [Definition] = NULL, [SortOrder] = 217.20 WHERE [Code] = 'giq' END +SET [Description] = 'Green Gelao', [Definition] = NULL, [SortOrder] = 2181.00 WHERE [Code] = 'giq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcl', 'Grenadian Creole English', NULL, 217.30) END +VALUES ('gcl', 'Grenadian Creole English', NULL, 2182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Grenadian Creole English', [Definition] = NULL, [SortOrder] = 217.30 WHERE [Code] = 'gcl' END +SET [Description] = 'Grenadian Creole English', [Definition] = NULL, [SortOrder] = 2182.00 WHERE [Code] = 'gcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grs', 'Gresi', NULL, 217.40) END +VALUES ('grs', 'Gresi', NULL, 2183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gresi', [Definition] = NULL, [SortOrder] = 217.40 WHERE [Code] = 'grs' END +SET [Description] = 'Gresi', [Definition] = NULL, [SortOrder] = 2183.00 WHERE [Code] = 'grs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gro', 'Groma', NULL, 217.50) END +VALUES ('gro', 'Groma', NULL, 2184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Groma', [Definition] = NULL, [SortOrder] = 217.50 WHERE [Code] = 'gro' END +SET [Description] = 'Groma', [Definition] = NULL, [SortOrder] = 2184.00 WHERE [Code] = 'gro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gos', 'Gronings', NULL, 217.60) END +VALUES ('gos', 'Gronings', NULL, 2185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gronings', [Definition] = NULL, [SortOrder] = 217.60 WHERE [Code] = 'gos' END +SET [Description] = 'Gronings', [Definition] = NULL, [SortOrder] = 2185.00 WHERE [Code] = 'gos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ats') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ats', 'Gros Ventre', NULL, 217.70) END +VALUES ('ats', 'Gros Ventre', NULL, 2186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gros Ventre', [Definition] = NULL, [SortOrder] = 217.70 WHERE [Code] = 'ats' END +SET [Description] = 'Gros Ventre', [Definition] = NULL, [SortOrder] = 2186.00 WHERE [Code] = 'ats' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwx', 'Gua', NULL, 217.80) END +VALUES ('gwx', 'Gua', NULL, 2187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gua', [Definition] = NULL, [SortOrder] = 217.80 WHERE [Code] = 'gwx' END +SET [Description] = 'Gua', [Definition] = NULL, [SortOrder] = 2187.00 WHERE [Code] = 'gwx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcf', 'Guadeloupean Creole French', NULL, 217.90) END +VALUES ('gcf', 'Guadeloupean Creole French', NULL, 2188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guadeloupean Creole French', [Definition] = NULL, [SortOrder] = 217.90 WHERE [Code] = 'gcf' END +SET [Description] = 'Guadeloupean Creole French', [Definition] = NULL, [SortOrder] = 2188.00 WHERE [Code] = 'gcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guh', 'Guahibo', NULL, 218.00) END +VALUES ('guh', 'Guahibo', NULL, 2189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guahibo', [Definition] = NULL, [SortOrder] = 218.00 WHERE [Code] = 'guh' END +SET [Description] = 'Guahibo', [Definition] = NULL, [SortOrder] = 2189.00 WHERE [Code] = 'guh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvj', 'Guajá', NULL, 218.10) END +VALUES ('gvj', 'Guajá', NULL, 2190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guajá', [Definition] = NULL, [SortOrder] = 218.10 WHERE [Code] = 'gvj' END +SET [Description] = 'Guajá', [Definition] = NULL, [SortOrder] = 2190.00 WHERE [Code] = 'gvj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gub', 'Guajajára', NULL, 218.20) END +VALUES ('gub', 'Guajajára', NULL, 2191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guajajára', [Definition] = NULL, [SortOrder] = 218.20 WHERE [Code] = 'gub' END +SET [Description] = 'Guajajára', [Definition] = NULL, [SortOrder] = 2191.00 WHERE [Code] = 'gub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gum', 'Guambiano', NULL, 218.30) END +VALUES ('gum', 'Guambiano', NULL, 2192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guambiano', [Definition] = NULL, [SortOrder] = 218.30 WHERE [Code] = 'gum' END +SET [Description] = 'Guambiano', [Definition] = NULL, [SortOrder] = 2192.00 WHERE [Code] = 'gum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqn', 'Guana (Brazil)', NULL, 218.40) END +VALUES ('gqn', 'Guana (Brazil)', NULL, 2193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guana (Brazil)', [Definition] = NULL, [SortOrder] = 218.40 WHERE [Code] = 'gqn' END +SET [Description] = 'Guana (Brazil)', [Definition] = NULL, [SortOrder] = 2193.00 WHERE [Code] = 'gqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gva', 'Guana (Paraguay)', NULL, 218.50) END +VALUES ('gva', 'Guana (Paraguay)', NULL, 2194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guana (Paraguay)', [Definition] = NULL, [SortOrder] = 218.50 WHERE [Code] = 'gva' END +SET [Description] = 'Guana (Paraguay)', [Definition] = NULL, [SortOrder] = 2194.00 WHERE [Code] = 'gva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvc', 'Guanano', NULL, 218.60) END +VALUES ('gvc', 'Guanano', NULL, 2195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guanano', [Definition] = NULL, [SortOrder] = 218.60 WHERE [Code] = 'gvc' END +SET [Description] = 'Guanano', [Definition] = NULL, [SortOrder] = 2195.00 WHERE [Code] = 'gvc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnc', 'Guanche', NULL, 218.70) END +VALUES ('gnc', 'Guanche', NULL, 2196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guanche', [Definition] = NULL, [SortOrder] = 218.70 WHERE [Code] = 'gnc' END +SET [Description] = 'Guanche', [Definition] = NULL, [SortOrder] = 2196.00 WHERE [Code] = 'gnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jiq', 'Guanyinqiao', NULL, 218.80) END +VALUES ('jiq', 'Guanyinqiao', NULL, 2197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guanyinqiao', [Definition] = NULL, [SortOrder] = 218.80 WHERE [Code] = 'jiq' END +SET [Description] = 'Guanyinqiao', [Definition] = NULL, [SortOrder] = 2197.00 WHERE [Code] = 'jiq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grn', 'Guarani', NULL, 218.90) END +VALUES ('grn', 'Guarani', NULL, 2198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guarani', [Definition] = NULL, [SortOrder] = 218.90 WHERE [Code] = 'grn' END +SET [Description] = 'Guarani', [Definition] = NULL, [SortOrder] = 2198.00 WHERE [Code] = 'grn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyr', 'Guarayu', NULL, 219.00) END +VALUES ('gyr', 'Guarayu', NULL, 2199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guarayu', [Definition] = NULL, [SortOrder] = 219.00 WHERE [Code] = 'gyr' END +SET [Description] = 'Guarayu', [Definition] = NULL, [SortOrder] = 2199.00 WHERE [Code] = 'gyr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gae', 'Guarequena', NULL, 219.10) END +VALUES ('gae', 'Guarequena', NULL, 2200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guarequena', [Definition] = NULL, [SortOrder] = 219.10 WHERE [Code] = 'gae' END +SET [Description] = 'Guarequena', [Definition] = NULL, [SortOrder] = 2200.00 WHERE [Code] = 'gae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsm', 'Guatemalan Sign Language', NULL, 219.20) END +VALUES ('gsm', 'Guatemalan Sign Language', NULL, 2201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guatemalan Sign Language', [Definition] = NULL, [SortOrder] = 219.20 WHERE [Code] = 'gsm' END +SET [Description] = 'Guatemalan Sign Language', [Definition] = NULL, [SortOrder] = 2201.00 WHERE [Code] = 'gsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gta', 'Guató', NULL, 219.30) END +VALUES ('gta', 'Guató', NULL, 2202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guató', [Definition] = NULL, [SortOrder] = 219.30 WHERE [Code] = 'gta' END +SET [Description] = 'Guató', [Definition] = NULL, [SortOrder] = 2202.00 WHERE [Code] = 'gta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guo', 'Guayabero', NULL, 219.40) END +VALUES ('guo', 'Guayabero', NULL, 2203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guayabero', [Definition] = NULL, [SortOrder] = 219.40 WHERE [Code] = 'guo' END +SET [Description] = 'Guayabero', [Definition] = NULL, [SortOrder] = 2203.00 WHERE [Code] = 'guo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgd', 'Gudang', NULL, 219.50) END +VALUES ('xgd', 'Gudang', NULL, 2204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gudang', [Definition] = NULL, [SortOrder] = 219.50 WHERE [Code] = 'xgd' END +SET [Description] = 'Gudang', [Definition] = NULL, [SortOrder] = 2204.00 WHERE [Code] = 'xgd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nji', 'Gudanji', NULL, 219.60) END +VALUES ('nji', 'Gudanji', NULL, 2205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gudanji', [Definition] = NULL, [SortOrder] = 219.60 WHERE [Code] = 'nji' END +SET [Description] = 'Gudanji', [Definition] = NULL, [SortOrder] = 2205.00 WHERE [Code] = 'nji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gde', 'Gude', NULL, 219.70) END +VALUES ('gde', 'Gude', NULL, 2206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gude', [Definition] = NULL, [SortOrder] = 219.70 WHERE [Code] = 'gde' END +SET [Description] = 'Gude', [Definition] = NULL, [SortOrder] = 2206.00 WHERE [Code] = 'gde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdu', 'Gudu', NULL, 219.80) END +VALUES ('gdu', 'Gudu', NULL, 2207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gudu', [Definition] = NULL, [SortOrder] = 219.80 WHERE [Code] = 'gdu' END +SET [Description] = 'Gudu', [Definition] = NULL, [SortOrder] = 2207.00 WHERE [Code] = 'gdu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdf', 'Guduf-Gava', NULL, 219.90) END +VALUES ('gdf', 'Guduf-Gava', NULL, 2208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guduf-Gava', [Definition] = NULL, [SortOrder] = 219.90 WHERE [Code] = 'gdf' END +SET [Description] = 'Guduf-Gava', [Definition] = NULL, [SortOrder] = 2208.00 WHERE [Code] = 'gdf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amu', 'Guerrero Amuzgo', NULL, 220.00) END +VALUES ('amu', 'Guerrero Amuzgo', NULL, 2209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guerrero Amuzgo', [Definition] = NULL, [SortOrder] = 220.00 WHERE [Code] = 'amu' END +SET [Description] = 'Guerrero Amuzgo', [Definition] = NULL, [SortOrder] = 2209.00 WHERE [Code] = 'amu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngu', 'Guerrero Nahuatl', NULL, 220.10) END +VALUES ('ngu', 'Guerrero Nahuatl', NULL, 2210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guerrero Nahuatl', [Definition] = NULL, [SortOrder] = 220.10 WHERE [Code] = 'ngu' END +SET [Description] = 'Guerrero Nahuatl', [Definition] = NULL, [SortOrder] = 2210.00 WHERE [Code] = 'ngu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpg', 'Guevea De Humboldt Zapotec', NULL, 220.20) END +VALUES ('zpg', 'Guevea De Humboldt Zapotec', NULL, 2211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guevea De Humboldt Zapotec', [Definition] = NULL, [SortOrder] = 220.20 WHERE [Code] = 'zpg' END +SET [Description] = 'Guevea De Humboldt Zapotec', [Definition] = NULL, [SortOrder] = 2211.00 WHERE [Code] = 'zpg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggd', 'Gugadj', NULL, 220.30) END +VALUES ('ggd', 'Gugadj', NULL, 2212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gugadj', [Definition] = NULL, [SortOrder] = 220.30 WHERE [Code] = 'ggd' END +SET [Description] = 'Gugadj', [Definition] = NULL, [SortOrder] = 2212.00 WHERE [Code] = 'ggd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdc', 'Gugu Badhun', NULL, 220.40) END +VALUES ('gdc', 'Gugu Badhun', NULL, 2213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gugu Badhun', [Definition] = NULL, [SortOrder] = 220.40 WHERE [Code] = 'gdc' END +SET [Description] = 'Gugu Badhun', [Definition] = NULL, [SortOrder] = 2213.00 WHERE [Code] = 'gdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrw', 'Gugu Warra', NULL, 220.50) END +VALUES ('wrw', 'Gugu Warra', NULL, 2214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gugu Warra', [Definition] = NULL, [SortOrder] = 220.50 WHERE [Code] = 'wrw' END +SET [Description] = 'Gugu Warra', [Definition] = NULL, [SortOrder] = 2214.00 WHERE [Code] = 'wrw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkp', 'Gugubera', NULL, 220.60) END +VALUES ('kkp', 'Gugubera', NULL, 2215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gugubera', [Definition] = NULL, [SortOrder] = 220.60 WHERE [Code] = 'kkp' END +SET [Description] = 'Gugubera', [Definition] = NULL, [SortOrder] = 2215.00 WHERE [Code] = 'kkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghs', 'Guhu-Samane', NULL, 220.70) END +VALUES ('ghs', 'Guhu-Samane', NULL, 2216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guhu-Samane', [Definition] = NULL, [SortOrder] = 220.70 WHERE [Code] = 'ghs' END +SET [Description] = 'Guhu-Samane', [Definition] = NULL, [SortOrder] = 2216.00 WHERE [Code] = 'ghs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcr', 'Guianese Creole French', NULL, 220.80) END +VALUES ('gcr', 'Guianese Creole French', NULL, 2217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guianese Creole French', [Definition] = NULL, [SortOrder] = 220.80 WHERE [Code] = 'gcr' END +SET [Description] = 'Guianese Creole French', [Definition] = NULL, [SortOrder] = 2217.00 WHERE [Code] = 'gcr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgb', 'Guibei Zhuang', NULL, 220.90) END +VALUES ('zgb', 'Guibei Zhuang', NULL, 2218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guibei Zhuang', [Definition] = NULL, [SortOrder] = 220.90 WHERE [Code] = 'zgb' END +SET [Description] = 'Guibei Zhuang', [Definition] = NULL, [SortOrder] = 2218.00 WHERE [Code] = 'zgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bet', 'Guiberoua Béte', NULL, 221.00) END +VALUES ('bet', 'Guiberoua Béte', NULL, 2219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guiberoua Béte', [Definition] = NULL, [SortOrder] = 221.00 WHERE [Code] = 'bet' END +SET [Description] = 'Guiberoua Béte', [Definition] = NULL, [SortOrder] = 2219.00 WHERE [Code] = 'bet' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgn', 'Guibian Zhuang', NULL, 221.10) END +VALUES ('zgn', 'Guibian Zhuang', NULL, 2220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guibian Zhuang', [Definition] = NULL, [SortOrder] = 221.10 WHERE [Code] = 'zgn' END +SET [Description] = 'Guibian Zhuang', [Definition] = NULL, [SortOrder] = 2220.00 WHERE [Code] = 'zgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztu', 'Güilá Zapotec', NULL, 221.20) END +VALUES ('ztu', 'Güilá Zapotec', NULL, 2221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Güilá Zapotec', [Definition] = NULL, [SortOrder] = 221.20 WHERE [Code] = 'ztu' END +SET [Description] = 'Güilá Zapotec', [Definition] = NULL, [SortOrder] = 2221.00 WHERE [Code] = 'ztu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gkp', 'Guinea Kpelle', NULL, 221.30) END +VALUES ('gkp', 'Guinea Kpelle', NULL, 2222.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Guinea Kpelle', [Definition] = NULL, [SortOrder] = 2222.00 WHERE [Code] = 'gkp' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('lgs', 'Guinea-Bissau Sign Language', NULL, 2223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guinea Kpelle', [Definition] = NULL, [SortOrder] = 221.30 WHERE [Code] = 'gkp' END +SET [Description] = 'Guinea-Bissau Sign Language', [Definition] = NULL, [SortOrder] = 2223.00 WHERE [Code] = 'lgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gus', 'Guinean Sign Language', NULL, 221.40) END +VALUES ('gus', 'Guinean Sign Language', NULL, 2224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guinean Sign Language', [Definition] = NULL, [SortOrder] = 221.40 WHERE [Code] = 'gus' END +SET [Description] = 'Guinean Sign Language', [Definition] = NULL, [SortOrder] = 2224.00 WHERE [Code] = 'gus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqi', 'Guiqiong', NULL, 221.50) END +VALUES ('gqi', 'Guiqiong', NULL, 2225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guiqiong', [Definition] = NULL, [SortOrder] = 221.50 WHERE [Code] = 'gqi' END +SET [Description] = 'Guiqiong', [Definition] = NULL, [SortOrder] = 2225.00 WHERE [Code] = 'gqi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guj', 'Gujarati', NULL, 221.60) END +VALUES ('guj', 'Gujarati', NULL, 2226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gujarati', [Definition] = NULL, [SortOrder] = 221.60 WHERE [Code] = 'guj' END +SET [Description] = 'Gujarati', [Definition] = NULL, [SortOrder] = 2226.00 WHERE [Code] = 'guj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gju', 'Gujari', NULL, 221.70) END +VALUES ('gju', 'Gujari', NULL, 2227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gujari', [Definition] = NULL, [SortOrder] = 221.70 WHERE [Code] = 'gju' END +SET [Description] = 'Gujari', [Definition] = NULL, [SortOrder] = 2227.00 WHERE [Code] = 'gju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcm', 'Gula (Central African Republic)', NULL, 221.80) END +VALUES ('kcm', 'Gula (Central African Republic)', NULL, 2228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gula (Central African Republic)', [Definition] = NULL, [SortOrder] = 221.80 WHERE [Code] = 'kcm' END +SET [Description] = 'Gula (Central African Republic)', [Definition] = NULL, [SortOrder] = 2228.00 WHERE [Code] = 'kcm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glu', 'Gula (Chad)', NULL, 221.90) END +VALUES ('glu', 'Gula (Chad)', NULL, 2229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gula (Chad)', [Definition] = NULL, [SortOrder] = 221.90 WHERE [Code] = 'glu' END +SET [Description] = 'Gula (Chad)', [Definition] = NULL, [SortOrder] = 2229.00 WHERE [Code] = 'glu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glj', 'Gula Iro', NULL, 222.00) END +VALUES ('glj', 'Gula Iro', NULL, 2230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gula Iro', [Definition] = NULL, [SortOrder] = 222.00 WHERE [Code] = 'glj' END +SET [Description] = 'Gula Iro', [Definition] = NULL, [SortOrder] = 2230.00 WHERE [Code] = 'glj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmb', 'Gula''alaa', NULL, 222.10) END +VALUES ('gmb', 'Gula''alaa', NULL, 2231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gula''alaa', [Definition] = NULL, [SortOrder] = 222.10 WHERE [Code] = 'gmb' END +SET [Description] = 'Gula''alaa', [Definition] = NULL, [SortOrder] = 2231.00 WHERE [Code] = 'gmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvl', 'Gulay', NULL, 222.20) END +VALUES ('gvl', 'Gulay', NULL, 2232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gulay', [Definition] = NULL, [SortOrder] = 222.20 WHERE [Code] = 'gvl' END +SET [Description] = 'Gulay', [Definition] = NULL, [SortOrder] = 2232.00 WHERE [Code] = 'gvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gly', 'Gule', NULL, 222.30) END +VALUES ('gly', 'Gule', NULL, 2233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gule', [Definition] = NULL, [SortOrder] = 222.30 WHERE [Code] = 'gly' END +SET [Description] = 'Gule', [Definition] = NULL, [SortOrder] = 2233.00 WHERE [Code] = 'gly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afb', 'Gulf Arabic', NULL, 222.40) END +VALUES ('afb', 'Gulf Arabic', NULL, 2234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gulf Arabic', [Definition] = NULL, [SortOrder] = 222.40 WHERE [Code] = 'afb' END +SET [Description] = 'Gulf Arabic', [Definition] = NULL, [SortOrder] = 2234.00 WHERE [Code] = 'afb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmu', 'Gumalu', NULL, 222.50) END +VALUES ('gmu', 'Gumalu', NULL, 2235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gumalu', [Definition] = NULL, [SortOrder] = 222.50 WHERE [Code] = 'gmu' END +SET [Description] = 'Gumalu', [Definition] = NULL, [SortOrder] = 2235.00 WHERE [Code] = 'gmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnn', 'Gumatj', NULL, 222.60) END +VALUES ('gnn', 'Gumatj', NULL, 2236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gumatj', [Definition] = NULL, [SortOrder] = 222.60 WHERE [Code] = 'gnn' END +SET [Description] = 'Gumatj', [Definition] = NULL, [SortOrder] = 2236.00 WHERE [Code] = 'gnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvs', 'Gumawana', NULL, 222.70) END +VALUES ('gvs', 'Gumawana', NULL, 2237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gumawana', [Definition] = NULL, [SortOrder] = 222.70 WHERE [Code] = 'gvs' END +SET [Description] = 'Gumawana', [Definition] = NULL, [SortOrder] = 2237.00 WHERE [Code] = 'gvs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guk', 'Gumuz', NULL, 222.80) END +VALUES ('guk', 'Gumuz', NULL, 2238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gumuz', [Definition] = NULL, [SortOrder] = 222.80 WHERE [Code] = 'guk' END +SET [Description] = 'Gumuz', [Definition] = NULL, [SortOrder] = 2238.00 WHERE [Code] = 'guk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guw', 'Gun', NULL, 222.90) END +VALUES ('guw', 'Gun', NULL, 2239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gun', [Definition] = NULL, [SortOrder] = 222.90 WHERE [Code] = 'guw' END +SET [Description] = 'Gun', [Definition] = NULL, [SortOrder] = 2239.00 WHERE [Code] = 'guw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdi', 'Gundi', NULL, 223.00) END +VALUES ('gdi', 'Gundi', NULL, 2240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gundi', [Definition] = NULL, [SortOrder] = 223.00 WHERE [Code] = 'gdi' END +SET [Description] = 'Gundi', [Definition] = NULL, [SortOrder] = 2240.00 WHERE [Code] = 'gdi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gjm', 'Gunditjmara', NULL, 223.10) END +VALUES ('gjm', 'Gunditjmara', NULL, 2241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gunditjmara', [Definition] = NULL, [SortOrder] = 223.10 WHERE [Code] = 'gjm' END +SET [Description] = 'Gunditjmara', [Definition] = NULL, [SortOrder] = 2241.00 WHERE [Code] = 'gjm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrd', 'Gundungurra', NULL, 223.20) END +VALUES ('xrd', 'Gundungurra', NULL, 2242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gundungurra', [Definition] = NULL, [SortOrder] = 223.20 WHERE [Code] = 'xrd' END +SET [Description] = 'Gundungurra', [Definition] = NULL, [SortOrder] = 2242.00 WHERE [Code] = 'xrd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyf', 'Gungabula', NULL, 223.30) END +VALUES ('gyf', 'Gungabula', NULL, 2243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gungabula', [Definition] = NULL, [SortOrder] = 223.30 WHERE [Code] = 'gyf' END +SET [Description] = 'Gungabula', [Definition] = NULL, [SortOrder] = 2243.00 WHERE [Code] = 'gyf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rub', 'Gungu', NULL, 223.40) END +VALUES ('rub', 'Gungu', NULL, 2244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gungu', [Definition] = NULL, [SortOrder] = 223.40 WHERE [Code] = 'rub' END +SET [Description] = 'Gungu', [Definition] = NULL, [SortOrder] = 2244.00 WHERE [Code] = 'rub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnt', 'Guntai', NULL, 223.50) END +VALUES ('gnt', 'Guntai', NULL, 2245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guntai', [Definition] = NULL, [SortOrder] = 223.50 WHERE [Code] = 'gnt' END +SET [Description] = 'Guntai', [Definition] = NULL, [SortOrder] = 2245.00 WHERE [Code] = 'gnt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gup', 'Gunwinggu', NULL, 223.60) END +VALUES ('gup', 'Gunwinggu', NULL, 2246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gunwinggu', [Definition] = NULL, [SortOrder] = 223.60 WHERE [Code] = 'gup' END +SET [Description] = 'Gunwinggu', [Definition] = NULL, [SortOrder] = 2246.00 WHERE [Code] = 'gup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyy', 'Gunya', NULL, 223.70) END +VALUES ('gyy', 'Gunya', NULL, 2247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gunya', [Definition] = NULL, [SortOrder] = 223.70 WHERE [Code] = 'gyy' END +SET [Description] = 'Gunya', [Definition] = NULL, [SortOrder] = 2247.00 WHERE [Code] = 'gyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gpa', 'Gupa-Abawa', NULL, 223.80) END +VALUES ('gpa', 'Gupa-Abawa', NULL, 2248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gupa-Abawa', [Definition] = NULL, [SortOrder] = 223.80 WHERE [Code] = 'gpa' END +SET [Description] = 'Gupa-Abawa', [Definition] = NULL, [SortOrder] = 2248.00 WHERE [Code] = 'gpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guf', 'Gupapuyngu', NULL, 223.90) END +VALUES ('guf', 'Gupapuyngu', NULL, 2249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gupapuyngu', [Definition] = NULL, [SortOrder] = 223.90 WHERE [Code] = 'guf' END +SET [Description] = 'Gupapuyngu', [Definition] = NULL, [SortOrder] = 2249.00 WHERE [Code] = 'guf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grz', 'Guramalum', NULL, 224.00) END +VALUES ('grz', 'Guramalum', NULL, 2250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guramalum', [Definition] = NULL, [SortOrder] = 224.00 WHERE [Code] = 'grz' END +SET [Description] = 'Guramalum', [Definition] = NULL, [SortOrder] = 2250.00 WHERE [Code] = 'grz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hac', 'Gurani', NULL, 224.10) END +VALUES ('hac', 'Gurani', NULL, 2251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurani', [Definition] = NULL, [SortOrder] = 224.10 WHERE [Code] = 'hac' END +SET [Description] = 'Gurani', [Definition] = NULL, [SortOrder] = 2251.00 WHERE [Code] = 'hac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdj', 'Gurdjar', NULL, 224.20) END +VALUES ('gdj', 'Gurdjar', NULL, 2252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurdjar', [Definition] = NULL, [SortOrder] = 224.20 WHERE [Code] = 'gdj' END +SET [Description] = 'Gurdjar', [Definition] = NULL, [SortOrder] = 2252.00 WHERE [Code] = 'gdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnr', 'Gureng Gureng', NULL, 224.30) END +VALUES ('gnr', 'Gureng Gureng', NULL, 2253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gureng Gureng', [Definition] = NULL, [SortOrder] = 224.30 WHERE [Code] = 'gnr' END +SET [Description] = 'Gureng Gureng', [Definition] = NULL, [SortOrder] = 2253.00 WHERE [Code] = 'gnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggg', 'Gurgula', NULL, 224.40) END +VALUES ('ggg', 'Gurgula', NULL, 2254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurgula', [Definition] = NULL, [SortOrder] = 224.40 WHERE [Code] = 'ggg' END +SET [Description] = 'Gurgula', [Definition] = NULL, [SortOrder] = 2254.00 WHERE [Code] = 'ggg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grx', 'Guriaso', NULL, 224.50) END +VALUES ('grx', 'Guriaso', NULL, 2255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guriaso', [Definition] = NULL, [SortOrder] = 224.50 WHERE [Code] = 'grx' END +SET [Description] = 'Guriaso', [Definition] = NULL, [SortOrder] = 2255.00 WHERE [Code] = 'grx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gue', 'Gurindji', NULL, 224.60) END +VALUES ('gue', 'Gurindji', NULL, 2256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurindji', [Definition] = NULL, [SortOrder] = 224.60 WHERE [Code] = 'gue' END +SET [Description] = 'Gurindji', [Definition] = NULL, [SortOrder] = 2256.00 WHERE [Code] = 'gue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gjr', 'Gurindji Kriol', NULL, 224.70) END +VALUES ('gjr', 'Gurindji Kriol', NULL, 2257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurindji Kriol', [Definition] = NULL, [SortOrder] = 224.70 WHERE [Code] = 'gjr' END +SET [Description] = 'Gurindji Kriol', [Definition] = NULL, [SortOrder] = 2257.00 WHERE [Code] = 'gjr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvm', 'Gurmana', NULL, 224.80) END +VALUES ('gvm', 'Gurmana', NULL, 2258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurmana', [Definition] = NULL, [SortOrder] = 224.80 WHERE [Code] = 'gvm' END +SET [Description] = 'Gurmana', [Definition] = NULL, [SortOrder] = 2258.00 WHERE [Code] = 'gvm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goa', 'Guro', NULL, 224.90) END +VALUES ('goa', 'Guro', NULL, 2259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guro', [Definition] = NULL, [SortOrder] = 224.90 WHERE [Code] = 'goa' END +SET [Description] = 'Guro', [Definition] = NULL, [SortOrder] = 2259.00 WHERE [Code] = 'goa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gge', 'Gurr-goni', NULL, 225.00) END +VALUES ('gge', 'Gurr-goni', NULL, 2260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurr-goni', [Definition] = NULL, [SortOrder] = 225.00 WHERE [Code] = 'gge' END +SET [Description] = 'Gurr-goni', [Definition] = NULL, [SortOrder] = 2260.00 WHERE [Code] = 'gge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvr', 'Gurung', NULL, 225.10) END +VALUES ('gvr', 'Gurung', NULL, 2261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurung', [Definition] = NULL, [SortOrder] = 225.10 WHERE [Code] = 'gvr' END +SET [Description] = 'Gurung', [Definition] = NULL, [SortOrder] = 2261.00 WHERE [Code] = 'gvr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grd', 'Guruntum-Mbaaru', NULL, 225.20) END +VALUES ('grd', 'Guruntum-Mbaaru', NULL, 2262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guruntum-Mbaaru', [Definition] = NULL, [SortOrder] = 225.20 WHERE [Code] = 'grd' END +SET [Description] = 'Guruntum-Mbaaru', [Definition] = NULL, [SortOrder] = 2262.00 WHERE [Code] = 'grd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guz', 'Gusii', NULL, 225.30) END +VALUES ('guz', 'Gusii', NULL, 2263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gusii', [Definition] = NULL, [SortOrder] = 225.30 WHERE [Code] = 'guz' END +SET [Description] = 'Gusii', [Definition] = NULL, [SortOrder] = 2263.00 WHERE [Code] = 'guz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsl', 'Gusilay', NULL, 225.40) END +VALUES ('gsl', 'Gusilay', NULL, 2264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gusilay', [Definition] = NULL, [SortOrder] = 225.40 WHERE [Code] = 'gsl' END +SET [Description] = 'Gusilay', [Definition] = NULL, [SortOrder] = 2264.00 WHERE [Code] = 'gsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kky', 'Guugu Yimidhirr', NULL, 225.50) END +VALUES ('kky', 'Guugu Yimidhirr', NULL, 2265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guugu Yimidhirr', [Definition] = NULL, [SortOrder] = 225.50 WHERE [Code] = 'kky' END +SET [Description] = 'Guugu Yimidhirr', [Definition] = NULL, [SortOrder] = 2265.00 WHERE [Code] = 'kky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgw', 'Guwa', NULL, 225.60) END +VALUES ('xgw', 'Guwa', NULL, 2266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guwa', [Definition] = NULL, [SortOrder] = 225.60 WHERE [Code] = 'xgw' END +SET [Description] = 'Guwa', [Definition] = NULL, [SortOrder] = 2266.00 WHERE [Code] = 'xgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwu', 'Guwamu', NULL, 225.70) END +VALUES ('gwu', 'Guwamu', NULL, 2267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guwamu', [Definition] = NULL, [SortOrder] = 225.70 WHERE [Code] = 'gwu' END +SET [Description] = 'Guwamu', [Definition] = NULL, [SortOrder] = 2267.00 WHERE [Code] = 'gwu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gka', 'Guya', NULL, 225.80) END +VALUES ('gka', 'Guya', NULL, 2268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guya', [Definition] = NULL, [SortOrder] = 225.80 WHERE [Code] = 'gka' END +SET [Description] = 'Guya', [Definition] = NULL, [SortOrder] = 2268.00 WHERE [Code] = 'gka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyn', 'Guyanese Creole English', NULL, 225.90) END +VALUES ('gyn', 'Guyanese Creole English', NULL, 2269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guyanese Creole English', [Definition] = NULL, [SortOrder] = 225.90 WHERE [Code] = 'gyn' END +SET [Description] = 'Guyanese Creole English', [Definition] = NULL, [SortOrder] = 2269.00 WHERE [Code] = 'gyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvy', 'Guyani', NULL, 226.00) END +VALUES ('gvy', 'Guyani', NULL, 2270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guyani', [Definition] = NULL, [SortOrder] = 226.00 WHERE [Code] = 'gvy' END +SET [Description] = 'Guyani', [Definition] = NULL, [SortOrder] = 2270.00 WHERE [Code] = 'gvy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngs', 'Gvoko', NULL, 226.10) END +VALUES ('ngs', 'Gvoko', NULL, 2271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gvoko', [Definition] = NULL, [SortOrder] = 226.10 WHERE [Code] = 'ngs' END +SET [Description] = 'Gvoko', [Definition] = NULL, [SortOrder] = 2271.00 WHERE [Code] = 'ngs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwb', 'Gwa', NULL, 226.20) END +VALUES ('gwb', 'Gwa', NULL, 2272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwa', [Definition] = NULL, [SortOrder] = 226.20 WHERE [Code] = 'gwb' END +SET [Description] = 'Gwa', [Definition] = NULL, [SortOrder] = 2272.00 WHERE [Code] = 'gwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dah', 'Gwahatike', NULL, 226.30) END +VALUES ('dah', 'Gwahatike', NULL, 2273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwahatike', [Definition] = NULL, [SortOrder] = 226.30 WHERE [Code] = 'dah' END +SET [Description] = 'Gwahatike', [Definition] = NULL, [SortOrder] = 2273.00 WHERE [Code] = 'dah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jgk', 'Gwak', NULL, 226.40) END +VALUES ('jgk', 'Gwak', NULL, 2274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwak', [Definition] = NULL, [SortOrder] = 226.40 WHERE [Code] = 'jgk' END +SET [Description] = 'Gwak', [Definition] = NULL, [SortOrder] = 2274.00 WHERE [Code] = 'jgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bga', 'Gwamhi-Wuri', NULL, 226.50) END +VALUES ('bga', 'Gwamhi-Wuri', NULL, 2275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwamhi-Wuri', [Definition] = NULL, [SortOrder] = 226.50 WHERE [Code] = 'bga' END +SET [Description] = 'Gwamhi-Wuri', [Definition] = NULL, [SortOrder] = 2275.00 WHERE [Code] = 'bga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwn', 'Gwandara', NULL, 226.60) END +VALUES ('gwn', 'Gwandara', NULL, 2276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwandara', [Definition] = NULL, [SortOrder] = 226.60 WHERE [Code] = 'gwn' END +SET [Description] = 'Gwandara', [Definition] = NULL, [SortOrder] = 2276.00 WHERE [Code] = 'gwn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grw', 'Gweda', NULL, 226.70) END +VALUES ('grw', 'Gweda', NULL, 2277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gweda', [Definition] = NULL, [SortOrder] = 226.70 WHERE [Code] = 'grw' END +SET [Description] = 'Gweda', [Definition] = NULL, [SortOrder] = 2277.00 WHERE [Code] = 'grw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwe', 'Gweno', NULL, 226.80) END +VALUES ('gwe', 'Gweno', NULL, 2278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gweno', [Definition] = NULL, [SortOrder] = 226.80 WHERE [Code] = 'gwe' END +SET [Description] = 'Gweno', [Definition] = NULL, [SortOrder] = 2278.00 WHERE [Code] = 'gwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwr', 'Gwere', NULL, 226.90) END +VALUES ('gwr', 'Gwere', NULL, 2279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwere', [Definition] = NULL, [SortOrder] = 226.90 WHERE [Code] = 'gwr' END +SET [Description] = 'Gwere', [Definition] = NULL, [SortOrder] = 2279.00 WHERE [Code] = 'gwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwi', 'Gwich''in', NULL, 227.00) END +VALUES ('gwi', 'Gwich''in', NULL, 2280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwich''in', [Definition] = NULL, [SortOrder] = 227.00 WHERE [Code] = 'gwi' END +SET [Description] = 'Gwich''in', [Definition] = NULL, [SortOrder] = 2280.00 WHERE [Code] = 'gwi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyo', 'Gyalsumdo', NULL, 227.10) END +VALUES ('gyo', 'Gyalsumdo', NULL, 2281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gyalsumdo', [Definition] = NULL, [SortOrder] = 227.10 WHERE [Code] = 'gyo' END +SET [Description] = 'Gyalsumdo', [Definition] = NULL, [SortOrder] = 2281.00 WHERE [Code] = 'gyo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyi', 'Gyele', NULL, 227.20) END +VALUES ('gyi', 'Gyele', NULL, 2282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gyele', [Definition] = NULL, [SortOrder] = 227.20 WHERE [Code] = 'gyi' END +SET [Description] = 'Gyele', [Definition] = NULL, [SortOrder] = 2282.00 WHERE [Code] = 'gyi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gye', 'Gyem', NULL, 227.30) END +VALUES ('gye', 'Gyem', NULL, 2283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gyem', [Definition] = NULL, [SortOrder] = 227.30 WHERE [Code] = 'gye' END +SET [Description] = 'Gyem', [Definition] = NULL, [SortOrder] = 2283.00 WHERE [Code] = 'gye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haq', 'Ha', NULL, 227.40) END +VALUES ('haq', 'Ha', NULL, 2284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ha', [Definition] = NULL, [SortOrder] = 227.40 WHERE [Code] = 'haq' END +SET [Description] = 'Ha', [Definition] = NULL, [SortOrder] = 2284.00 WHERE [Code] = 'haq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbu', 'Habu', NULL, 227.50) END +VALUES ('hbu', 'Habu', NULL, 2285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Habu', [Definition] = NULL, [SortOrder] = 227.50 WHERE [Code] = 'hbu' END +SET [Description] = 'Habu', [Definition] = NULL, [SortOrder] = 2285.00 WHERE [Code] = 'hbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hdy', 'Hadiyya', NULL, 227.60) END +VALUES ('hdy', 'Hadiyya', NULL, 2286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadiyya', [Definition] = NULL, [SortOrder] = 227.60 WHERE [Code] = 'hdy' END +SET [Description] = 'Hadiyya', [Definition] = NULL, [SortOrder] = 2286.00 WHERE [Code] = 'hdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoj', 'Hadothi', NULL, 227.70) END +VALUES ('hoj', 'Hadothi', NULL, 2287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadothi', [Definition] = NULL, [SortOrder] = 227.70 WHERE [Code] = 'hoj' END +SET [Description] = 'Hadothi', [Definition] = NULL, [SortOrder] = 2287.00 WHERE [Code] = 'hoj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhd', 'Hadrami', NULL, 227.80) END +VALUES ('xhd', 'Hadrami', NULL, 2288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadrami', [Definition] = NULL, [SortOrder] = 227.80 WHERE [Code] = 'xhd' END +SET [Description] = 'Hadrami', [Definition] = NULL, [SortOrder] = 2288.00 WHERE [Code] = 'xhd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayh', 'Hadrami Arabic', NULL, 227.90) END +VALUES ('ayh', 'Hadrami Arabic', NULL, 2289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadrami Arabic', [Definition] = NULL, [SortOrder] = 227.90 WHERE [Code] = 'ayh' END +SET [Description] = 'Hadrami Arabic', [Definition] = NULL, [SortOrder] = 2289.00 WHERE [Code] = 'ayh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hts', 'Hadza', NULL, 228.00) END +VALUES ('hts', 'Hadza', NULL, 2290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadza', [Definition] = NULL, [SortOrder] = 228.00 WHERE [Code] = 'hts' END +SET [Description] = 'Hadza', [Definition] = NULL, [SortOrder] = 2290.00 WHERE [Code] = 'hts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aek', 'Haeke', NULL, 228.10) END +VALUES ('aek', 'Haeke', NULL, 2291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haeke', [Definition] = NULL, [SortOrder] = 228.10 WHERE [Code] = 'aek' END +SET [Description] = 'Haeke', [Definition] = NULL, [SortOrder] = 2291.00 WHERE [Code] = 'aek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hah', 'Hahon', NULL, 228.20) END +VALUES ('hah', 'Hahon', NULL, 2292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hahon', [Definition] = NULL, [SortOrder] = 228.20 WHERE [Code] = 'hah' END +SET [Description] = 'Hahon', [Definition] = NULL, [SortOrder] = 2292.00 WHERE [Code] = 'hah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hgm', 'Hai//om', NULL, 228.30) END +VALUES ('hgm', 'Hai//om', NULL, 2293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hai//om', [Definition] = NULL, [SortOrder] = 228.30 WHERE [Code] = 'hgm' END +SET [Description] = 'Hai//om', [Definition] = NULL, [SortOrder] = 2293.00 WHERE [Code] = 'hgm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hai', 'Haida', NULL, 228.40) END +VALUES ('hai', 'Haida', NULL, 2294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haida', [Definition] = NULL, [SortOrder] = 228.40 WHERE [Code] = 'hai' END +SET [Description] = 'Haida', [Definition] = NULL, [SortOrder] = 2294.00 WHERE [Code] = 'hai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hgw', 'Haigwai', NULL, 228.50) END +VALUES ('hgw', 'Haigwai', NULL, 2295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haigwai', [Definition] = NULL, [SortOrder] = 228.50 WHERE [Code] = 'hgw' END +SET [Description] = 'Haigwai', [Definition] = NULL, [SortOrder] = 2295.00 WHERE [Code] = 'hgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haf', 'Haiphong Sign Language', NULL, 228.60) END +VALUES ('haf', 'Haiphong Sign Language', NULL, 2296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haiphong Sign Language', [Definition] = NULL, [SortOrder] = 228.60 WHERE [Code] = 'haf' END +SET [Description] = 'Haiphong Sign Language', [Definition] = NULL, [SortOrder] = 2296.00 WHERE [Code] = 'haf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'has') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('has', 'Haisla', NULL, 228.70) END +VALUES ('has', 'Haisla', NULL, 2297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haisla', [Definition] = NULL, [SortOrder] = 228.70 WHERE [Code] = 'has' END +SET [Description] = 'Haisla', [Definition] = NULL, [SortOrder] = 2297.00 WHERE [Code] = 'has' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hat', 'Haitian', NULL, 228.80) END +VALUES ('hat', 'Haitian', NULL, 2298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haitian', [Definition] = NULL, [SortOrder] = 228.80 WHERE [Code] = 'hat' END +SET [Description] = 'Haitian', [Definition] = NULL, [SortOrder] = 2298.00 WHERE [Code] = 'hat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hvc', 'Haitian Vodoun Culture Language', NULL, 228.90) END +VALUES ('hvc', 'Haitian Vodoun Culture Language', NULL, 2299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haitian Vodoun Culture Language', [Definition] = NULL, [SortOrder] = 228.90 WHERE [Code] = 'hvc' END +SET [Description] = 'Haitian Vodoun Culture Language', [Definition] = NULL, [SortOrder] = 2299.00 WHERE [Code] = 'hvc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hji', 'Haji', NULL, 229.00) END +VALUES ('hji', 'Haji', NULL, 2300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haji', [Definition] = NULL, [SortOrder] = 229.00 WHERE [Code] = 'hji' END +SET [Description] = 'Haji', [Definition] = NULL, [SortOrder] = 2300.00 WHERE [Code] = 'hji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haj', 'Hajong', NULL, 229.10) END +VALUES ('haj', 'Hajong', NULL, 2301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hajong', [Definition] = NULL, [SortOrder] = 229.10 WHERE [Code] = 'haj' END +SET [Description] = 'Hajong', [Definition] = NULL, [SortOrder] = 2301.00 WHERE [Code] = 'haj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnh', 'Hakha Chin', NULL, 229.20) END +VALUES ('cnh', 'Hakha Chin', NULL, 2302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hakha Chin', [Definition] = NULL, [SortOrder] = 229.20 WHERE [Code] = 'cnh' END +SET [Description] = 'Hakha Chin', [Definition] = NULL, [SortOrder] = 2302.00 WHERE [Code] = 'cnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hak', 'Hakka Chinese', NULL, 229.30) END +VALUES ('hak', 'Hakka Chinese', NULL, 2303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hakka Chinese', [Definition] = NULL, [SortOrder] = 229.30 WHERE [Code] = 'hak' END +SET [Description] = 'Hakka Chinese', [Definition] = NULL, [SortOrder] = 2303.00 WHERE [Code] = 'hak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hao', 'Hakö', NULL, 229.40) END +VALUES ('hao', 'Hakö', NULL, 2304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hakö', [Definition] = NULL, [SortOrder] = 229.40 WHERE [Code] = 'hao' END +SET [Description] = 'Hakö', [Definition] = NULL, [SortOrder] = 2304.00 WHERE [Code] = 'hao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hal', 'Halang', NULL, 229.50) END +VALUES ('hal', 'Halang', NULL, 2305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halang', [Definition] = NULL, [SortOrder] = 229.50 WHERE [Code] = 'hal' END +SET [Description] = 'Halang', [Definition] = NULL, [SortOrder] = 2305.00 WHERE [Code] = 'hal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hld', 'Halang Doan', NULL, 229.60) END +VALUES ('hld', 'Halang Doan', NULL, 2306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halang Doan', [Definition] = NULL, [SortOrder] = 229.60 WHERE [Code] = 'hld' END +SET [Description] = 'Halang Doan', [Definition] = NULL, [SortOrder] = 2306.00 WHERE [Code] = 'hld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hlb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hlb', 'Halbi', NULL, 229.70) END +VALUES ('hlb', 'Halbi', NULL, 2307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halbi', [Definition] = NULL, [SortOrder] = 229.70 WHERE [Code] = 'hlb' END +SET [Description] = 'Halbi', [Definition] = NULL, [SortOrder] = 2307.00 WHERE [Code] = 'hlb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khk', 'Halh Mongolian', NULL, 229.80) END +VALUES ('khk', 'Halh Mongolian', NULL, 2308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halh Mongolian', [Definition] = NULL, [SortOrder] = 229.80 WHERE [Code] = 'khk' END +SET [Description] = 'Halh Mongolian', [Definition] = NULL, [SortOrder] = 2308.00 WHERE [Code] = 'khk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hla', 'Halia', NULL, 229.90) END +VALUES ('hla', 'Halia', NULL, 2309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halia', [Definition] = NULL, [SortOrder] = 229.90 WHERE [Code] = 'hla' END +SET [Description] = 'Halia', [Definition] = NULL, [SortOrder] = 2309.00 WHERE [Code] = 'hla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hur', 'Halkomelem', NULL, 230.00) END +VALUES ('hur', 'Halkomelem', NULL, 2310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halkomelem', [Definition] = NULL, [SortOrder] = 230.00 WHERE [Code] = 'hur' END +SET [Description] = 'Halkomelem', [Definition] = NULL, [SortOrder] = 2310.00 WHERE [Code] = 'hur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmu', 'Hamap', NULL, 230.10) END +VALUES ('hmu', 'Hamap', NULL, 2311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hamap', [Definition] = NULL, [SortOrder] = 230.10 WHERE [Code] = 'hmu' END +SET [Description] = 'Hamap', [Definition] = NULL, [SortOrder] = 2311.00 WHERE [Code] = 'hmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hba', 'Hamba', NULL, 230.20) END +VALUES ('hba', 'Hamba', NULL, 2312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hamba', [Definition] = NULL, [SortOrder] = 230.20 WHERE [Code] = 'hba' END +SET [Description] = 'Hamba', [Definition] = NULL, [SortOrder] = 2312.00 WHERE [Code] = 'hba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amf', 'Hamer-Banna', NULL, 230.30) END +VALUES ('amf', 'Hamer-Banna', NULL, 2313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hamer-Banna', [Definition] = NULL, [SortOrder] = 230.30 WHERE [Code] = 'amf' END +SET [Description] = 'Hamer-Banna', [Definition] = NULL, [SortOrder] = 2313.00 WHERE [Code] = 'amf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmt', 'Hamtai', NULL, 230.40) END +VALUES ('hmt', 'Hamtai', NULL, 2314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hamtai', [Definition] = NULL, [SortOrder] = 230.40 WHERE [Code] = 'hmt' END +SET [Description] = 'Hamtai', [Definition] = NULL, [SortOrder] = 2314.00 WHERE [Code] = 'hmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haa', 'Han', NULL, 230.50) END +VALUES ('haa', 'Han', NULL, 2315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Han', [Definition] = NULL, [SortOrder] = 230.50 WHERE [Code] = 'haa' END +SET [Description] = 'Han', [Definition] = NULL, [SortOrder] = 2315.00 WHERE [Code] = 'haa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hag', 'Hanga', NULL, 230.60) END +VALUES ('hag', 'Hanga', NULL, 2316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hanga', [Definition] = NULL, [SortOrder] = 230.60 WHERE [Code] = 'hag' END +SET [Description] = 'Hanga', [Definition] = NULL, [SortOrder] = 2316.00 WHERE [Code] = 'hag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wos', 'Hanga Hundi', NULL, 230.70) END +VALUES ('wos', 'Hanga Hundi', NULL, 2317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hanga Hundi', [Definition] = NULL, [SortOrder] = 230.70 WHERE [Code] = 'wos' END +SET [Description] = 'Hanga Hundi', [Definition] = NULL, [SortOrder] = 2317.00 WHERE [Code] = 'wos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'han') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('han', 'Hangaza', NULL, 230.80) END +VALUES ('han', 'Hangaza', NULL, 2318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hangaza', [Definition] = NULL, [SortOrder] = 230.80 WHERE [Code] = 'han' END +SET [Description] = 'Hangaza', [Definition] = NULL, [SortOrder] = 2318.00 WHERE [Code] = 'han' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hni', 'Hani', NULL, 230.90) END +VALUES ('hni', 'Hani', NULL, 2319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hani', [Definition] = NULL, [SortOrder] = 230.90 WHERE [Code] = 'hni' END +SET [Description] = 'Hani', [Definition] = NULL, [SortOrder] = 2319.00 WHERE [Code] = 'hni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lml', 'Hano', NULL, 231.00) END +VALUES ('lml', 'Hano', NULL, 2320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hano', [Definition] = NULL, [SortOrder] = 231.00 WHERE [Code] = 'lml' END +SET [Description] = 'Hano', [Definition] = NULL, [SortOrder] = 2320.00 WHERE [Code] = 'lml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hab', 'Hanoi Sign Language', NULL, 231.10) END +VALUES ('hab', 'Hanoi Sign Language', NULL, 2321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hanoi Sign Language', [Definition] = NULL, [SortOrder] = 231.10 WHERE [Code] = 'hab' END +SET [Description] = 'Hanoi Sign Language', [Definition] = NULL, [SortOrder] = 2321.00 WHERE [Code] = 'hab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnn', 'Hanunoo', NULL, 231.20) END +VALUES ('hnn', 'Hanunoo', NULL, 2322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hanunoo', [Definition] = NULL, [SortOrder] = 231.20 WHERE [Code] = 'hnn' END +SET [Description] = 'Hanunoo', [Definition] = NULL, [SortOrder] = 2322.00 WHERE [Code] = 'hnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xha', 'Harami', NULL, 231.30) END +VALUES ('xha', 'Harami', NULL, 2323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harami', [Definition] = NULL, [SortOrder] = 231.30 WHERE [Code] = 'xha' END +SET [Description] = 'Harami', [Definition] = NULL, [SortOrder] = 2323.00 WHERE [Code] = 'xha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'har') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('har', 'Harari', NULL, 231.40) END +VALUES ('har', 'Harari', NULL, 2324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harari', [Definition] = NULL, [SortOrder] = 231.40 WHERE [Code] = 'har' END +SET [Description] = 'Harari', [Definition] = NULL, [SortOrder] = 2324.00 WHERE [Code] = 'har' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjo', 'Harijan Kinnauri', NULL, 231.50) END +VALUES ('kjo', 'Harijan Kinnauri', NULL, 2325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harijan Kinnauri', [Definition] = NULL, [SortOrder] = 231.50 WHERE [Code] = 'kjo' END +SET [Description] = 'Harijan Kinnauri', [Definition] = NULL, [SortOrder] = 2325.00 WHERE [Code] = 'kjo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hro', 'Haroi', NULL, 231.60) END +VALUES ('hro', 'Haroi', NULL, 2326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haroi', [Definition] = NULL, [SortOrder] = 231.60 WHERE [Code] = 'hro' END +SET [Description] = 'Haroi', [Definition] = NULL, [SortOrder] = 2326.00 WHERE [Code] = 'hro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hss', 'Harsusi', NULL, 231.70) END +VALUES ('hss', 'Harsusi', NULL, 2327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harsusi', [Definition] = NULL, [SortOrder] = 231.70 WHERE [Code] = 'hss' END +SET [Description] = 'Harsusi', [Definition] = NULL, [SortOrder] = 2327.00 WHERE [Code] = 'hss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmd', 'Haruai', NULL, 231.80) END +VALUES ('tmd', 'Haruai', NULL, 2328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haruai', [Definition] = NULL, [SortOrder] = 231.80 WHERE [Code] = 'tmd' END +SET [Description] = 'Haruai', [Definition] = NULL, [SortOrder] = 2328.00 WHERE [Code] = 'tmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrk', 'Haruku', NULL, 231.90) END +VALUES ('hrk', 'Haruku', NULL, 2329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haruku', [Definition] = NULL, [SortOrder] = 231.90 WHERE [Code] = 'hrk' END +SET [Description] = 'Haruku', [Definition] = NULL, [SortOrder] = 2329.00 WHERE [Code] = 'hrk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgc', 'Haryanvi', NULL, 232.00) END +VALUES ('bgc', 'Haryanvi', NULL, 2330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haryanvi', [Definition] = NULL, [SortOrder] = 232.00 WHERE [Code] = 'bgc' END +SET [Description] = 'Haryanvi', [Definition] = NULL, [SortOrder] = 2330.00 WHERE [Code] = 'bgc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrz', 'Harzani', NULL, 232.10) END +VALUES ('hrz', 'Harzani', NULL, 2331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harzani', [Definition] = NULL, [SortOrder] = 232.10 WHERE [Code] = 'hrz' END +SET [Description] = 'Harzani', [Definition] = NULL, [SortOrder] = 2331.00 WHERE [Code] = 'hrz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybj', 'Hasha', NULL, 232.20) END +VALUES ('ybj', 'Hasha', NULL, 2332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hasha', [Definition] = NULL, [SortOrder] = 232.20 WHERE [Code] = 'ybj' END +SET [Description] = 'Hasha', [Definition] = NULL, [SortOrder] = 2332.00 WHERE [Code] = 'ybj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mey', 'Hassaniyya', NULL, 232.30) END +VALUES ('mey', 'Hassaniyya', NULL, 2333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hassaniyya', [Definition] = NULL, [SortOrder] = 232.30 WHERE [Code] = 'mey' END +SET [Description] = 'Hassaniyya', [Definition] = NULL, [SortOrder] = 2333.00 WHERE [Code] = 'mey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'had') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('had', 'Hatam', NULL, 232.40) END +VALUES ('had', 'Hatam', NULL, 2334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hatam', [Definition] = NULL, [SortOrder] = 232.40 WHERE [Code] = 'had' END +SET [Description] = 'Hatam', [Definition] = NULL, [SortOrder] = 2334.00 WHERE [Code] = 'had' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xht', 'Hattic', NULL, 232.50) END +VALUES ('xht', 'Hattic', NULL, 2335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hattic', [Definition] = NULL, [SortOrder] = 232.50 WHERE [Code] = 'xht' END +SET [Description] = 'Hattic', [Definition] = NULL, [SortOrder] = 2335.00 WHERE [Code] = 'xht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hau', 'Hausa', NULL, 232.60) END +VALUES ('hau', 'Hausa', NULL, 2336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hausa', [Definition] = NULL, [SortOrder] = 232.60 WHERE [Code] = 'hau' END +SET [Description] = 'Hausa', [Definition] = NULL, [SortOrder] = 2336.00 WHERE [Code] = 'hau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsl', 'Hausa Sign Language', NULL, 232.70) END +VALUES ('hsl', 'Hausa Sign Language', NULL, 2337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hausa Sign Language', [Definition] = NULL, [SortOrder] = 232.70 WHERE [Code] = 'hsl' END +SET [Description] = 'Hausa Sign Language', [Definition] = NULL, [SortOrder] = 2337.00 WHERE [Code] = 'hsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuf', 'Havasupai-Walapai-Yavapai', NULL, 232.80) END +VALUES ('yuf', 'Havasupai-Walapai-Yavapai', NULL, 2338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Havasupai-Walapai-Yavapai', [Definition] = NULL, [SortOrder] = 232.80 WHERE [Code] = 'yuf' END +SET [Description] = 'Havasupai-Walapai-Yavapai', [Definition] = NULL, [SortOrder] = 2338.00 WHERE [Code] = 'yuf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hvk', 'Haveke', NULL, 232.90) END +VALUES ('hvk', 'Haveke', NULL, 2339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haveke', [Definition] = NULL, [SortOrder] = 232.90 WHERE [Code] = 'hvk' END +SET [Description] = 'Haveke', [Definition] = NULL, [SortOrder] = 2339.00 WHERE [Code] = 'hvk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hav', 'Havu', NULL, 233.00) END +VALUES ('hav', 'Havu', NULL, 2340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Havu', [Definition] = NULL, [SortOrder] = 233.00 WHERE [Code] = 'hav' END +SET [Description] = 'Havu', [Definition] = NULL, [SortOrder] = 2340.00 WHERE [Code] = 'hav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hwc', 'Hawai''i Creole English', NULL, 233.10) END +VALUES ('hwc', 'Hawai''i Creole English', NULL, 2341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hawai''i Creole English', [Definition] = NULL, [SortOrder] = 233.10 WHERE [Code] = 'hwc' END +SET [Description] = 'Hawai''i Creole English', [Definition] = NULL, [SortOrder] = 2341.00 WHERE [Code] = 'hwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hps', 'Hawai''i Sign Language (HSL)', NULL, 233.20) END +VALUES ('hps', 'Hawai''i Sign Language (HSL)', NULL, 2342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hawai''i Sign Language (HSL)', [Definition] = NULL, [SortOrder] = 233.20 WHERE [Code] = 'hps' END +SET [Description] = 'Hawai''i Sign Language (HSL)', [Definition] = NULL, [SortOrder] = 2342.00 WHERE [Code] = 'hps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haw', 'Hawaiian', NULL, 233.30) END +VALUES ('haw', 'Hawaiian', NULL, 2343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hawaiian', [Definition] = NULL, [SortOrder] = 233.30 WHERE [Code] = 'haw' END +SET [Description] = 'Hawaiian', [Definition] = NULL, [SortOrder] = 2343.00 WHERE [Code] = 'haw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hay', 'Haya', NULL, 233.40) END +VALUES ('hay', 'Haya', NULL, 2344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haya', [Definition] = NULL, [SortOrder] = 233.40 WHERE [Code] = 'hay' END +SET [Description] = 'Haya', [Definition] = NULL, [SortOrder] = 2344.00 WHERE [Code] = 'hay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haz', 'Hazaragi', NULL, 233.50) END +VALUES ('haz', 'Hazaragi', NULL, 2345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hazaragi', [Definition] = NULL, [SortOrder] = 233.50 WHERE [Code] = 'haz' END +SET [Description] = 'Hazaragi', [Definition] = NULL, [SortOrder] = 2345.00 WHERE [Code] = 'haz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xed', 'Hdi', NULL, 233.60) END +VALUES ('xed', 'Hdi', NULL, 2346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hdi', [Definition] = NULL, [SortOrder] = 233.60 WHERE [Code] = 'xed' END +SET [Description] = 'Hdi', [Definition] = NULL, [SortOrder] = 2346.00 WHERE [Code] = 'xed' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'heb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('heb', 'Hebrew', NULL, 233.70) END +VALUES ('heb', 'Hebrew', NULL, 2347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hebrew', [Definition] = NULL, [SortOrder] = 233.70 WHERE [Code] = 'heb' END +SET [Description] = 'Hebrew', [Definition] = NULL, [SortOrder] = 2347.00 WHERE [Code] = 'heb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'heh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('heh', 'Hehe', NULL, 233.80) END +VALUES ('heh', 'Hehe', NULL, 2348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hehe', [Definition] = NULL, [SortOrder] = 233.80 WHERE [Code] = 'heh' END +SET [Description] = 'Hehe', [Definition] = NULL, [SortOrder] = 2348.00 WHERE [Code] = 'heh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbn', 'Heiban', NULL, 233.90) END +VALUES ('hbn', 'Heiban', NULL, 2349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Heiban', [Definition] = NULL, [SortOrder] = 233.90 WHERE [Code] = 'hbn' END +SET [Description] = 'Heiban', [Definition] = NULL, [SortOrder] = 2349.00 WHERE [Code] = 'hbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hei', 'Heiltsuk', NULL, 234.00) END +VALUES ('hei', 'Heiltsuk', NULL, 2350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Heiltsuk', [Definition] = NULL, [SortOrder] = 234.00 WHERE [Code] = 'hei' END +SET [Description] = 'Heiltsuk', [Definition] = NULL, [SortOrder] = 2350.00 WHERE [Code] = 'hei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'heg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('heg', 'Helong', NULL, 234.10) END +VALUES ('heg', 'Helong', NULL, 2351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Helong', [Definition] = NULL, [SortOrder] = 234.10 WHERE [Code] = 'heg' END +SET [Description] = 'Helong', [Definition] = NULL, [SortOrder] = 2351.00 WHERE [Code] = 'heg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nix', 'Hema', NULL, 234.20) END +VALUES ('nix', 'Hema', NULL, 2352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hema', [Definition] = NULL, [SortOrder] = 234.20 WHERE [Code] = 'nix' END +SET [Description] = 'Hema', [Definition] = NULL, [SortOrder] = 2352.00 WHERE [Code] = 'nix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hem', 'Hemba', NULL, 234.30) END +VALUES ('hem', 'Hemba', NULL, 2353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hemba', [Definition] = NULL, [SortOrder] = 234.30 WHERE [Code] = 'hem' END +SET [Description] = 'Hemba', [Definition] = NULL, [SortOrder] = 2353.00 WHERE [Code] = 'hem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hed', 'Herdé', NULL, 234.40) END +VALUES ('hed', 'Herdé', NULL, 2354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Herdé', [Definition] = NULL, [SortOrder] = 234.40 WHERE [Code] = 'hed' END +SET [Description] = 'Herdé', [Definition] = NULL, [SortOrder] = 2354.00 WHERE [Code] = 'hed' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'her') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('her', 'Herero', NULL, 234.50) END +VALUES ('her', 'Herero', NULL, 2355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Herero', [Definition] = NULL, [SortOrder] = 234.50 WHERE [Code] = 'her' END +SET [Description] = 'Herero', [Definition] = NULL, [SortOrder] = 2355.00 WHERE [Code] = 'her' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llf', 'Hermit', NULL, 234.60) END +VALUES ('llf', 'Hermit', NULL, 2356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hermit', [Definition] = NULL, [SortOrder] = 234.60 WHERE [Code] = 'llf' END +SET [Description] = 'Hermit', [Definition] = NULL, [SortOrder] = 2356.00 WHERE [Code] = 'llf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhr', 'Hernican', NULL, 234.70) END +VALUES ('xhr', 'Hernican', NULL, 2357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hernican', [Definition] = NULL, [SortOrder] = 234.70 WHERE [Code] = 'xhr' END +SET [Description] = 'Hernican', [Definition] = NULL, [SortOrder] = 2357.00 WHERE [Code] = 'xhr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrt', 'Hértevin', NULL, 234.80) END +VALUES ('hrt', 'Hértevin', NULL, 2358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hértevin', [Definition] = NULL, [SortOrder] = 234.80 WHERE [Code] = 'hrt' END +SET [Description] = 'Hértevin', [Definition] = NULL, [SortOrder] = 2358.00 WHERE [Code] = 'hrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ham') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ham', 'Hewa', NULL, 234.90) END +VALUES ('ham', 'Hewa', NULL, 2359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hewa', [Definition] = NULL, [SortOrder] = 234.90 WHERE [Code] = 'ham' END +SET [Description] = 'Hewa', [Definition] = NULL, [SortOrder] = 2359.00 WHERE [Code] = 'ham' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auk', 'Heyo', NULL, 235.00) END +VALUES ('auk', 'Heyo', NULL, 2360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Heyo', [Definition] = NULL, [SortOrder] = 235.00 WHERE [Code] = 'auk' END +SET [Description] = 'Heyo', [Definition] = NULL, [SortOrder] = 2360.00 WHERE [Code] = 'auk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghc', 'Hiberno-Scottish Gaelic', NULL, 235.10) END +VALUES ('ghc', 'Hiberno-Scottish Gaelic', NULL, 2361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hiberno-Scottish Gaelic', [Definition] = NULL, [SortOrder] = 235.10 WHERE [Code] = 'ghc' END +SET [Description] = 'Hiberno-Scottish Gaelic', [Definition] = NULL, [SortOrder] = 2361.00 WHERE [Code] = 'ghc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hib', 'Hibito', NULL, 235.20) END +VALUES ('hib', 'Hibito', NULL, 2362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hibito', [Definition] = NULL, [SortOrder] = 235.20 WHERE [Code] = 'hib' END +SET [Description] = 'Hibito', [Definition] = NULL, [SortOrder] = 2362.00 WHERE [Code] = 'hib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hid', 'Hidatsa', NULL, 235.30) END +VALUES ('hid', 'Hidatsa', NULL, 2363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hidatsa', [Definition] = NULL, [SortOrder] = 235.30 WHERE [Code] = 'hid' END +SET [Description] = 'Hidatsa', [Definition] = NULL, [SortOrder] = 2363.00 WHERE [Code] = 'hid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hlu', 'Hieroglyphic Luwian', NULL, 235.40) END +VALUES ('hlu', 'Hieroglyphic Luwian', NULL, 2364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hieroglyphic Luwian', [Definition] = NULL, [SortOrder] = 235.40 WHERE [Code] = 'hlu' END +SET [Description] = 'Hieroglyphic Luwian', [Definition] = NULL, [SortOrder] = 2364.00 WHERE [Code] = 'hlu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mba', 'Higaonon', NULL, 235.50) END +VALUES ('mba', 'Higaonon', NULL, 2365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Higaonon', [Definition] = NULL, [SortOrder] = 235.50 WHERE [Code] = 'mba' END +SET [Description] = 'Higaonon', [Definition] = NULL, [SortOrder] = 2365.00 WHERE [Code] = 'mba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjk', 'Highland Konjo', NULL, 235.60) END +VALUES ('kjk', 'Highland Konjo', NULL, 2366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Konjo', [Definition] = NULL, [SortOrder] = 235.60 WHERE [Code] = 'kjk' END +SET [Description] = 'Highland Konjo', [Definition] = NULL, [SortOrder] = 2366.00 WHERE [Code] = 'kjk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chd', 'Highland Oaxaca Chontal', NULL, 235.70) END +VALUES ('chd', 'Highland Oaxaca Chontal', NULL, 2367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Oaxaca Chontal', [Definition] = NULL, [SortOrder] = 235.70 WHERE [Code] = 'chd' END +SET [Description] = 'Highland Oaxaca Chontal', [Definition] = NULL, [SortOrder] = 2367.00 WHERE [Code] = 'chd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poi', 'Highland Popoluca', NULL, 235.80) END +VALUES ('poi', 'Highland Popoluca', NULL, 2368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Popoluca', [Definition] = NULL, [SortOrder] = 235.80 WHERE [Code] = 'poi' END +SET [Description] = 'Highland Popoluca', [Definition] = NULL, [SortOrder] = 2368.00 WHERE [Code] = 'poi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azz', 'Highland Puebla Nahuatl', NULL, 235.90) END +VALUES ('azz', 'Highland Puebla Nahuatl', NULL, 2369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 235.90 WHERE [Code] = 'azz' END +SET [Description] = 'Highland Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 2369.00 WHERE [Code] = 'azz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tos', 'Highland Totonac', NULL, 236.00) END +VALUES ('tos', 'Highland Totonac', NULL, 2370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Totonac', [Definition] = NULL, [SortOrder] = 236.00 WHERE [Code] = 'tos' END +SET [Description] = 'Highland Totonac', [Definition] = NULL, [SortOrder] = 2370.00 WHERE [Code] = 'tos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acw', 'Hijazi Arabic', NULL, 236.10) END +VALUES ('acw', 'Hijazi Arabic', NULL, 2371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hijazi Arabic', [Definition] = NULL, [SortOrder] = 236.10 WHERE [Code] = 'acw' END +SET [Description] = 'Hijazi Arabic', [Definition] = NULL, [SortOrder] = 2371.00 WHERE [Code] = 'acw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hij', 'Hijuk', NULL, 236.20) END +VALUES ('hij', 'Hijuk', NULL, 2372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hijuk', [Definition] = NULL, [SortOrder] = 236.20 WHERE [Code] = 'hij' END +SET [Description] = 'Hijuk', [Definition] = NULL, [SortOrder] = 2372.00 WHERE [Code] = 'hij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hil', 'Hiligaynon', NULL, 236.30) END +VALUES ('hil', 'Hiligaynon', NULL, 2373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hiligaynon', [Definition] = NULL, [SortOrder] = 236.30 WHERE [Code] = 'hil' END +SET [Description] = 'Hiligaynon', [Definition] = NULL, [SortOrder] = 2373.00 WHERE [Code] = 'hil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hir', 'Himarimã', NULL, 236.40) END +VALUES ('hir', 'Himarimã', NULL, 2374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Himarimã', [Definition] = NULL, [SortOrder] = 236.40 WHERE [Code] = 'hir' END +SET [Description] = 'Himarimã', [Definition] = NULL, [SortOrder] = 2374.00 WHERE [Code] = 'hir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hin', 'Hindi', NULL, 236.50) END +VALUES ('hin', 'Hindi', NULL, 2375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hindi', [Definition] = NULL, [SortOrder] = 236.50 WHERE [Code] = 'hin' END +SET [Description] = 'Hindi', [Definition] = NULL, [SortOrder] = 2375.00 WHERE [Code] = 'hin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hii', 'Hinduri', NULL, 236.60) END +VALUES ('hii', 'Hinduri', NULL, 2376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hinduri', [Definition] = NULL, [SortOrder] = 236.60 WHERE [Code] = 'hii' END +SET [Description] = 'Hinduri', [Definition] = NULL, [SortOrder] = 2376.00 WHERE [Code] = 'hii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gin', 'Hinukh', NULL, 236.70) END +VALUES ('gin', 'Hinukh', NULL, 2377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hinukh', [Definition] = NULL, [SortOrder] = 236.70 WHERE [Code] = 'gin' END +SET [Description] = 'Hinukh', [Definition] = NULL, [SortOrder] = 2377.00 WHERE [Code] = 'gin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmo', 'Hiri Motu', NULL, 236.80) END +VALUES ('hmo', 'Hiri Motu', NULL, 2378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hiri Motu', [Definition] = NULL, [SortOrder] = 236.80 WHERE [Code] = 'hmo' END +SET [Description] = 'Hiri Motu', [Definition] = NULL, [SortOrder] = 2378.00 WHERE [Code] = 'hmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hit', 'Hittite', NULL, 236.90) END +VALUES ('hit', 'Hittite', NULL, 2379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hittite', [Definition] = NULL, [SortOrder] = 236.90 WHERE [Code] = 'hit' END +SET [Description] = 'Hittite', [Definition] = NULL, [SortOrder] = 2379.00 WHERE [Code] = 'hit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'htu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('htu', 'Hitu', NULL, 237.00) END +VALUES ('htu', 'Hitu', NULL, 2380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hitu', [Definition] = NULL, [SortOrder] = 237.00 WHERE [Code] = 'htu' END +SET [Description] = 'Hitu', [Definition] = NULL, [SortOrder] = 2380.00 WHERE [Code] = 'htu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hiw', 'Hiw', NULL, 237.10) END +VALUES ('hiw', 'Hiw', NULL, 2381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hiw', [Definition] = NULL, [SortOrder] = 237.10 WHERE [Code] = 'hiw' END +SET [Description] = 'Hiw', [Definition] = NULL, [SortOrder] = 2381.00 WHERE [Code] = 'hiw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hix', 'Hixkaryána', NULL, 237.20) END +VALUES ('hix', 'Hixkaryána', NULL, 2382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hixkaryána', [Definition] = NULL, [SortOrder] = 237.20 WHERE [Code] = 'hix' END +SET [Description] = 'Hixkaryána', [Definition] = NULL, [SortOrder] = 2382.00 WHERE [Code] = 'hix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lic', 'Hlai', NULL, 237.30) END +VALUES ('lic', 'Hlai', NULL, 2383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hlai', [Definition] = NULL, [SortOrder] = 237.30 WHERE [Code] = 'lic' END +SET [Description] = 'Hlai', [Definition] = NULL, [SortOrder] = 2383.00 WHERE [Code] = 'lic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yhl', 'Hlepho Phowa', NULL, 237.40) END +VALUES ('yhl', 'Hlepho Phowa', NULL, 2384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hlepho Phowa', [Definition] = NULL, [SortOrder] = 237.40 WHERE [Code] = 'yhl' END +SET [Description] = 'Hlepho Phowa', [Definition] = NULL, [SortOrder] = 2384.00 WHERE [Code] = 'yhl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hle', 'Hlersu', NULL, 237.50) END +VALUES ('hle', 'Hlersu', NULL, 2385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hlersu', [Definition] = NULL, [SortOrder] = 237.50 WHERE [Code] = 'hle' END +SET [Description] = 'Hlersu', [Definition] = NULL, [SortOrder] = 2385.00 WHERE [Code] = 'hle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmr', 'Hmar', NULL, 237.60) END +VALUES ('hmr', 'Hmar', NULL, 2386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmar', [Definition] = NULL, [SortOrder] = 237.60 WHERE [Code] = 'hmr' END +SET [Description] = 'Hmar', [Definition] = NULL, [SortOrder] = 2386.00 WHERE [Code] = 'hmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmn', 'Hmong', NULL, 237.70) END +VALUES ('hmn', 'Hmong', NULL, 2387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong', [Definition] = NULL, [SortOrder] = 237.70 WHERE [Code] = 'hmn' END +SET [Description] = 'Hmong', [Definition] = NULL, [SortOrder] = 2387.00 WHERE [Code] = 'hmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mww', 'Hmong Daw', NULL, 237.80) END +VALUES ('mww', 'Hmong Daw', NULL, 2388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Daw', [Definition] = NULL, [SortOrder] = 237.80 WHERE [Code] = 'mww' END +SET [Description] = 'Hmong Daw', [Definition] = NULL, [SortOrder] = 2388.00 WHERE [Code] = 'mww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmv', 'Hmong Dô', NULL, 237.90) END +VALUES ('hmv', 'Hmong Dô', NULL, 2389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Dô', [Definition] = NULL, [SortOrder] = 237.90 WHERE [Code] = 'hmv' END +SET [Description] = 'Hmong Dô', [Definition] = NULL, [SortOrder] = 2389.00 WHERE [Code] = 'hmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmf', 'Hmong Don', NULL, 238.00) END +VALUES ('hmf', 'Hmong Don', NULL, 2390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Don', [Definition] = NULL, [SortOrder] = 238.00 WHERE [Code] = 'hmf' END +SET [Description] = 'Hmong Don', [Definition] = NULL, [SortOrder] = 2390.00 WHERE [Code] = 'hmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnj', 'Hmong Njua', NULL, 238.10) END +VALUES ('hnj', 'Hmong Njua', NULL, 2391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Njua', [Definition] = NULL, [SortOrder] = 238.10 WHERE [Code] = 'hnj' END +SET [Description] = 'Hmong Njua', [Definition] = NULL, [SortOrder] = 2391.00 WHERE [Code] = 'hnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmz', 'Hmong Shua', NULL, 238.20) END +VALUES ('hmz', 'Hmong Shua', NULL, 2392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Shua', [Definition] = NULL, [SortOrder] = 238.20 WHERE [Code] = 'hmz' END +SET [Description] = 'Hmong Shua', [Definition] = NULL, [SortOrder] = 2392.00 WHERE [Code] = 'hmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrk', 'Hmwaveke', NULL, 238.30) END +VALUES ('mrk', 'Hmwaveke', NULL, 2393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmwaveke', [Definition] = NULL, [SortOrder] = 238.30 WHERE [Code] = 'mrk' END +SET [Description] = 'Hmwaveke', [Definition] = NULL, [SortOrder] = 2393.00 WHERE [Code] = 'mrk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoc', 'Ho', NULL, 238.40) END +VALUES ('hoc', 'Ho', NULL, 2394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ho', [Definition] = NULL, [SortOrder] = 238.40 WHERE [Code] = 'hoc' END +SET [Description] = 'Ho', [Definition] = NULL, [SortOrder] = 2394.00 WHERE [Code] = 'hoc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hos', 'Ho Chi Minh City Sign Language', NULL, 238.50) END +VALUES ('hos', 'Ho Chi Minh City Sign Language', NULL, 2395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ho Chi Minh City Sign Language', [Definition] = NULL, [SortOrder] = 238.50 WHERE [Code] = 'hos' END +SET [Description] = 'Ho Chi Minh City Sign Language', [Definition] = NULL, [SortOrder] = 2395.00 WHERE [Code] = 'hos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'win') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('win', 'Ho-Chunk', NULL, 238.60) END +VALUES ('win', 'Ho-Chunk', NULL, 2396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ho-Chunk', [Definition] = NULL, [SortOrder] = 238.60 WHERE [Code] = 'win' END +SET [Description] = 'Ho-Chunk', [Definition] = NULL, [SortOrder] = 2396.00 WHERE [Code] = 'win' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoa', 'Hoava', NULL, 238.70) END +VALUES ('hoa', 'Hoava', NULL, 2397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hoava', [Definition] = NULL, [SortOrder] = 238.70 WHERE [Code] = 'hoa' END +SET [Description] = 'Hoava', [Definition] = NULL, [SortOrder] = 2397.00 WHERE [Code] = 'hoa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoh', 'Hobyót', NULL, 238.80) END +VALUES ('hoh', 'Hobyót', NULL, 2398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hobyót', [Definition] = NULL, [SortOrder] = 238.80 WHERE [Code] = 'hoh' END +SET [Description] = 'Hobyót', [Definition] = NULL, [SortOrder] = 2398.00 WHERE [Code] = 'hoh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hhi', 'Hoia Hoia', NULL, 238.90) END +VALUES ('hhi', 'Hoia Hoia', NULL, 2399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hoia Hoia', [Definition] = NULL, [SortOrder] = 238.90 WHERE [Code] = 'hhi' END +SET [Description] = 'Hoia Hoia', [Definition] = NULL, [SortOrder] = 2399.00 WHERE [Code] = 'hhi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoi', 'Holikachuk', NULL, 239.00) END +VALUES ('hoi', 'Holikachuk', NULL, 2400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holikachuk', [Definition] = NULL, [SortOrder] = 239.00 WHERE [Code] = 'hoi' END +SET [Description] = 'Holikachuk', [Definition] = NULL, [SortOrder] = 2400.00 WHERE [Code] = 'hoi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoy', 'Holiya', NULL, 239.10) END +VALUES ('hoy', 'Holiya', NULL, 2401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holiya', [Definition] = NULL, [SortOrder] = 239.10 WHERE [Code] = 'hoy' END +SET [Description] = 'Holiya', [Definition] = NULL, [SortOrder] = 2401.00 WHERE [Code] = 'hoy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hod', 'Holma', NULL, 239.20) END +VALUES ('hod', 'Holma', NULL, 2402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holma', [Definition] = NULL, [SortOrder] = 239.20 WHERE [Code] = 'hod' END +SET [Description] = 'Holma', [Definition] = NULL, [SortOrder] = 2402.00 WHERE [Code] = 'hod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoo', 'Holoholo', NULL, 239.30) END +VALUES ('hoo', 'Holoholo', NULL, 2403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holoholo', [Definition] = NULL, [SortOrder] = 239.30 WHERE [Code] = 'hoo' END +SET [Description] = 'Holoholo', [Definition] = NULL, [SortOrder] = 2403.00 WHERE [Code] = 'hoo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hol', 'Holu', NULL, 239.40) END +VALUES ('hol', 'Holu', NULL, 2404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holu', [Definition] = NULL, [SortOrder] = 239.40 WHERE [Code] = 'hol' END +SET [Description] = 'Holu', [Definition] = NULL, [SortOrder] = 2404.00 WHERE [Code] = 'hol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hom', 'Homa', NULL, 239.50) END +VALUES ('hom', 'Homa', NULL, 2405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Homa', [Definition] = NULL, [SortOrder] = 239.50 WHERE [Code] = 'hom' END +SET [Description] = 'Homa', [Definition] = NULL, [SortOrder] = 2405.00 WHERE [Code] = 'hom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hds', 'Honduras Sign Language', NULL, 239.60) END +VALUES ('hds', 'Honduras Sign Language', NULL, 2406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Honduras Sign Language', [Definition] = NULL, [SortOrder] = 239.60 WHERE [Code] = 'hds' END +SET [Description] = 'Honduras Sign Language', [Definition] = NULL, [SortOrder] = 2406.00 WHERE [Code] = 'hds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juh', 'Hõne', NULL, 239.70) END +VALUES ('juh', 'Hõne', NULL, 2407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hõne', [Definition] = NULL, [SortOrder] = 239.70 WHERE [Code] = 'juh' END +SET [Description] = 'Hõne', [Definition] = NULL, [SortOrder] = 2407.00 WHERE [Code] = 'juh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hks', 'Hong Kong Sign Language', NULL, 239.80) END +VALUES ('hks', 'Hong Kong Sign Language', NULL, 2408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hong Kong Sign Language', [Definition] = NULL, [SortOrder] = 239.80 WHERE [Code] = 'hks' END +SET [Description] = 'Hong Kong Sign Language', [Definition] = NULL, [SortOrder] = 2408.00 WHERE [Code] = 'hks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'how') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('how', 'Honi', NULL, 239.90) END +VALUES ('how', 'Honi', NULL, 2409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Honi', [Definition] = NULL, [SortOrder] = 239.90 WHERE [Code] = 'how' END +SET [Description] = 'Honi', [Definition] = NULL, [SortOrder] = 2409.00 WHERE [Code] = 'how' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hop', 'Hopi', NULL, 240.00) END +VALUES ('hop', 'Hopi', NULL, 2410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hopi', [Definition] = NULL, [SortOrder] = 240.00 WHERE [Code] = 'hop' END +SET [Description] = 'Hopi', [Definition] = NULL, [SortOrder] = 2410.00 WHERE [Code] = 'hop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrm', 'Horned Miao', NULL, 240.10) END +VALUES ('hrm', 'Horned Miao', NULL, 2411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Horned Miao', [Definition] = NULL, [SortOrder] = 240.10 WHERE [Code] = 'hrm' END +SET [Description] = 'Horned Miao', [Definition] = NULL, [SortOrder] = 2411.00 WHERE [Code] = 'hrm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hor', 'Horo', NULL, 240.20) END +VALUES ('hor', 'Horo', NULL, 2412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Horo', [Definition] = NULL, [SortOrder] = 240.20 WHERE [Code] = 'hor' END +SET [Description] = 'Horo', [Definition] = NULL, [SortOrder] = 2412.00 WHERE [Code] = 'hor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoe', 'Horom', NULL, 240.30) END +VALUES ('hoe', 'Horom', NULL, 2413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Horom', [Definition] = NULL, [SortOrder] = 240.30 WHERE [Code] = 'hoe' END +SET [Description] = 'Horom', [Definition] = NULL, [SortOrder] = 2413.00 WHERE [Code] = 'hoe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ero') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ero', 'Horpa', NULL, 240.40) END +VALUES ('ero', 'Horpa', NULL, 2414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Horpa', [Definition] = NULL, [SortOrder] = 240.40 WHERE [Code] = 'ero' END +SET [Description] = 'Horpa', [Definition] = NULL, [SortOrder] = 2414.00 WHERE [Code] = 'ero' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hot', 'Hote', NULL, 240.50) END +VALUES ('hot', 'Hote', NULL, 2415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hote', [Definition] = NULL, [SortOrder] = 240.50 WHERE [Code] = 'hot' END +SET [Description] = 'Hote', [Definition] = NULL, [SortOrder] = 2415.00 WHERE [Code] = 'hot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hti', 'Hoti', NULL, 240.60) END +VALUES ('hti', 'Hoti', NULL, 2416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hoti', [Definition] = NULL, [SortOrder] = 240.60 WHERE [Code] = 'hti' END +SET [Description] = 'Hoti', [Definition] = NULL, [SortOrder] = 2416.00 WHERE [Code] = 'hti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hov', 'Hovongan', NULL, 240.70) END +VALUES ('hov', 'Hovongan', NULL, 2417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hovongan', [Definition] = NULL, [SortOrder] = 240.70 WHERE [Code] = 'hov' END +SET [Description] = 'Hovongan', [Definition] = NULL, [SortOrder] = 2417.00 WHERE [Code] = 'hov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hhy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hhy', 'Hoyahoya', NULL, 240.80) END +VALUES ('hhy', 'Hoyahoya', NULL, 2418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hoyahoya', [Definition] = NULL, [SortOrder] = 240.80 WHERE [Code] = 'hhy' END +SET [Description] = 'Hoyahoya', [Definition] = NULL, [SortOrder] = 2418.00 WHERE [Code] = 'hhy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoz', 'Hozo', NULL, 240.90) END +VALUES ('hoz', 'Hozo', NULL, 2419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hozo', [Definition] = NULL, [SortOrder] = 240.90 WHERE [Code] = 'hoz' END +SET [Description] = 'Hozo', [Definition] = NULL, [SortOrder] = 2419.00 WHERE [Code] = 'hoz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hpo', 'Hpon', NULL, 241.00) END +VALUES ('hpo', 'Hpon', NULL, 2420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hpon', [Definition] = NULL, [SortOrder] = 241.00 WHERE [Code] = 'hpo' END +SET [Description] = 'Hpon', [Definition] = NULL, [SortOrder] = 2420.00 WHERE [Code] = 'hpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hra', 'Hrangkhol', NULL, 241.10) END +VALUES ('hra', 'Hrangkhol', NULL, 2421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hrangkhol', [Definition] = NULL, [SortOrder] = 241.10 WHERE [Code] = 'hra' END +SET [Description] = 'Hrangkhol', [Definition] = NULL, [SortOrder] = 2421.00 WHERE [Code] = 'hra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hre', 'Hre', NULL, 241.20) END +VALUES ('hre', 'Hre', NULL, 2422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hre', [Definition] = NULL, [SortOrder] = 241.20 WHERE [Code] = 'hre' END +SET [Description] = 'Hre', [Definition] = NULL, [SortOrder] = 2422.00 WHERE [Code] = 'hre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hru', 'Hruso', NULL, 241.30) END +VALUES ('hru', 'Hruso', NULL, 2423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hruso', [Definition] = NULL, [SortOrder] = 241.30 WHERE [Code] = 'hru' END +SET [Description] = 'Hruso', [Definition] = NULL, [SortOrder] = 2423.00 WHERE [Code] = 'hru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huo', 'Hu', NULL, 241.40) END +VALUES ('huo', 'Hu', NULL, 2424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hu', [Definition] = NULL, [SortOrder] = 241.40 WHERE [Code] = 'huo' END +SET [Description] = 'Hu', [Definition] = NULL, [SortOrder] = 2424.00 WHERE [Code] = 'huo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hug', 'Huachipaeri', NULL, 241.50) END +VALUES ('hug', 'Huachipaeri', NULL, 2425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huachipaeri', [Definition] = NULL, [SortOrder] = 241.50 WHERE [Code] = 'hug' END +SET [Description] = 'Huachipaeri', [Definition] = NULL, [SortOrder] = 2425.00 WHERE [Code] = 'hug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qub', 'Huallaga Huánuco Quechua', NULL, 241.60) END +VALUES ('qub', 'Huallaga Huánuco Quechua', NULL, 2426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huallaga Huánuco Quechua', [Definition] = NULL, [SortOrder] = 241.60 WHERE [Code] = 'qub' END +SET [Description] = 'Huallaga Huánuco Quechua', [Definition] = NULL, [SortOrder] = 2426.00 WHERE [Code] = 'qub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvh', 'Huamalíes-Dos de Mayo Huánuco Quechua', NULL, 241.70) END +VALUES ('qvh', 'Huamalíes-Dos de Mayo Huánuco Quechua', NULL, 2427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huamalíes-Dos de Mayo Huánuco Quechua', [Definition] = NULL, [SortOrder] = 241.70 WHERE [Code] = 'qvh' END +SET [Description] = 'Huamalíes-Dos de Mayo Huánuco Quechua', [Definition] = NULL, [SortOrder] = 2427.00 WHERE [Code] = 'qvh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hub', 'Huambisa', NULL, 241.80) END +VALUES ('hub', 'Huambisa', NULL, 2428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huambisa', [Definition] = NULL, [SortOrder] = 241.80 WHERE [Code] = 'hub' END +SET [Description] = 'Huambisa', [Definition] = NULL, [SortOrder] = 2428.00 WHERE [Code] = 'hub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'var') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('var', 'Huarijio', NULL, 241.90) END +VALUES ('var', 'Huarijio', NULL, 2429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huarijio', [Definition] = NULL, [SortOrder] = 241.90 WHERE [Code] = 'var' END +SET [Description] = 'Huarijio', [Definition] = NULL, [SortOrder] = 2429.00 WHERE [Code] = 'var' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hus', 'Huastec', NULL, 242.00) END +VALUES ('hus', 'Huastec', NULL, 2430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huastec', [Definition] = NULL, [SortOrder] = 242.00 WHERE [Code] = 'hus' END +SET [Description] = 'Huastec', [Definition] = NULL, [SortOrder] = 2430.00 WHERE [Code] = 'hus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hud', 'Huaulu', NULL, 242.10) END +VALUES ('hud', 'Huaulu', NULL, 2431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huaulu', [Definition] = NULL, [SortOrder] = 242.10 WHERE [Code] = 'hud' END +SET [Description] = 'Huaulu', [Definition] = NULL, [SortOrder] = 2431.00 WHERE [Code] = 'hud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mau', 'Huautla Mazatec', NULL, 242.20) END +VALUES ('mau', 'Huautla Mazatec', NULL, 2432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huautla Mazatec', [Definition] = NULL, [SortOrder] = 242.20 WHERE [Code] = 'mau' END +SET [Description] = 'Huautla Mazatec', [Definition] = NULL, [SortOrder] = 2432.00 WHERE [Code] = 'mau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhq', 'Huaxcaleca Nahuatl', NULL, 242.30) END +VALUES ('nhq', 'Huaxcaleca Nahuatl', NULL, 2433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huaxcaleca Nahuatl', [Definition] = NULL, [SortOrder] = 242.30 WHERE [Code] = 'nhq' END +SET [Description] = 'Huaxcaleca Nahuatl', [Definition] = NULL, [SortOrder] = 2433.00 WHERE [Code] = 'nhq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwh', 'Huaylas Ancash Quechua', NULL, 242.40) END +VALUES ('qwh', 'Huaylas Ancash Quechua', NULL, 2434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huaylas Ancash Quechua', [Definition] = NULL, [SortOrder] = 242.40 WHERE [Code] = 'qwh' END +SET [Description] = 'Huaylas Ancash Quechua', [Definition] = NULL, [SortOrder] = 2434.00 WHERE [Code] = 'qwh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvw', 'Huaylla Wanca Quechua', NULL, 242.50) END +VALUES ('qvw', 'Huaylla Wanca Quechua', NULL, 2435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huaylla Wanca Quechua', [Definition] = NULL, [SortOrder] = 242.50 WHERE [Code] = 'qvw' END +SET [Description] = 'Huaylla Wanca Quechua', [Definition] = NULL, [SortOrder] = 2435.00 WHERE [Code] = 'qvw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbb', 'Huba', NULL, 242.60) END +VALUES ('hbb', 'Huba', NULL, 2436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huba', [Definition] = NULL, [SortOrder] = 242.60 WHERE [Code] = 'hbb' END +SET [Description] = 'Huba', [Definition] = NULL, [SortOrder] = 2436.00 WHERE [Code] = 'hbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tee', 'Huehuetla Tepehua', NULL, 242.70) END +VALUES ('tee', 'Huehuetla Tepehua', NULL, 2437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huehuetla Tepehua', [Definition] = NULL, [SortOrder] = 242.70 WHERE [Code] = 'tee' END +SET [Description] = 'Huehuetla Tepehua', [Definition] = NULL, [SortOrder] = 2437.00 WHERE [Code] = 'tee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hch', 'Huichol', NULL, 242.80) END +VALUES ('hch', 'Huichol', NULL, 2438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huichol', [Definition] = NULL, [SortOrder] = 242.80 WHERE [Code] = 'hch' END +SET [Description] = 'Huichol', [Definition] = NULL, [SortOrder] = 2438.00 WHERE [Code] = 'hch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huh', 'Huilliche', NULL, 242.90) END +VALUES ('huh', 'Huilliche', NULL, 2439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huilliche', [Definition] = NULL, [SortOrder] = 242.90 WHERE [Code] = 'huh' END +SET [Description] = 'Huilliche', [Definition] = NULL, [SortOrder] = 2439.00 WHERE [Code] = 'huh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxs', 'Huitepec Mixtec', NULL, 243.00) END +VALUES ('mxs', 'Huitepec Mixtec', NULL, 2440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huitepec Mixtec', [Definition] = NULL, [SortOrder] = 243.00 WHERE [Code] = 'mxs' END +SET [Description] = 'Huitepec Mixtec', [Definition] = NULL, [SortOrder] = 2440.00 WHERE [Code] = 'mxs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czh', 'Huizhou Chinese', NULL, 243.10) END +VALUES ('czh', 'Huizhou Chinese', NULL, 2441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huizhou Chinese', [Definition] = NULL, [SortOrder] = 243.10 WHERE [Code] = 'czh' END +SET [Description] = 'Huizhou Chinese', [Definition] = NULL, [SortOrder] = 2441.00 WHERE [Code] = 'czh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huw', 'Hukumina', NULL, 243.20) END +VALUES ('huw', 'Hukumina', NULL, 2442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hukumina', [Definition] = NULL, [SortOrder] = 243.20 WHERE [Code] = 'huw' END +SET [Description] = 'Hukumina', [Definition] = NULL, [SortOrder] = 2442.00 WHERE [Code] = 'huw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hul', 'Hula', NULL, 243.30) END +VALUES ('hul', 'Hula', NULL, 2443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hula', [Definition] = NULL, [SortOrder] = 243.30 WHERE [Code] = 'hul' END +SET [Description] = 'Hula', [Definition] = NULL, [SortOrder] = 2443.00 WHERE [Code] = 'hul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huy', 'Hulaulá', NULL, 243.40) END +VALUES ('huy', 'Hulaulá', NULL, 2444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hulaulá', [Definition] = NULL, [SortOrder] = 243.40 WHERE [Code] = 'huy' END +SET [Description] = 'Hulaulá', [Definition] = NULL, [SortOrder] = 2444.00 WHERE [Code] = 'huy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hui', 'Huli', NULL, 243.50) END +VALUES ('hui', 'Huli', NULL, 2445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huli', [Definition] = NULL, [SortOrder] = 243.50 WHERE [Code] = 'hui' END +SET [Description] = 'Huli', [Definition] = NULL, [SortOrder] = 2445.00 WHERE [Code] = 'hui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huk', 'Hulung', NULL, 243.60) END +VALUES ('huk', 'Hulung', NULL, 2446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hulung', [Definition] = NULL, [SortOrder] = 243.60 WHERE [Code] = 'huk' END +SET [Description] = 'Hulung', [Definition] = NULL, [SortOrder] = 2446.00 WHERE [Code] = 'huk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmb', 'Humburi Senni Songhay', NULL, 243.70) END +VALUES ('hmb', 'Humburi Senni Songhay', NULL, 2447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Humburi Senni Songhay', [Definition] = NULL, [SortOrder] = 243.70 WHERE [Code] = 'hmb' END +SET [Description] = 'Humburi Senni Songhay', [Definition] = NULL, [SortOrder] = 2447.00 WHERE [Code] = 'hmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huf', 'Humene', NULL, 243.80) END +VALUES ('huf', 'Humene', NULL, 2448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Humene', [Definition] = NULL, [SortOrder] = 243.80 WHERE [Code] = 'huf' END +SET [Description] = 'Humene', [Definition] = NULL, [SortOrder] = 2448.00 WHERE [Code] = 'huf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hut', 'Humla', NULL, 243.90) END +VALUES ('hut', 'Humla', NULL, 2449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Humla', [Definition] = NULL, [SortOrder] = 243.90 WHERE [Code] = 'hut' END +SET [Description] = 'Humla', [Definition] = NULL, [SortOrder] = 2449.00 WHERE [Code] = 'hut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hke', 'Hunde', NULL, 244.00) END +VALUES ('hke', 'Hunde', NULL, 2450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunde', [Definition] = NULL, [SortOrder] = 244.00 WHERE [Code] = 'hke' END +SET [Description] = 'Hunde', [Definition] = NULL, [SortOrder] = 2450.00 WHERE [Code] = 'hke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnu', 'Hung', NULL, 244.10) END +VALUES ('hnu', 'Hung', NULL, 2451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hung', [Definition] = NULL, [SortOrder] = 244.10 WHERE [Code] = 'hnu' END +SET [Description] = 'Hung', [Definition] = NULL, [SortOrder] = 2451.00 WHERE [Code] = 'hnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hum', 'Hungana', NULL, 244.20) END +VALUES ('hum', 'Hungana', NULL, 2452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hungana', [Definition] = NULL, [SortOrder] = 244.20 WHERE [Code] = 'hum' END +SET [Description] = 'Hungana', [Definition] = NULL, [SortOrder] = 2452.00 WHERE [Code] = 'hum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hun', 'Hungarian', NULL, 244.30) END +VALUES ('hun', 'Hungarian', NULL, 2453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hungarian', [Definition] = NULL, [SortOrder] = 244.30 WHERE [Code] = 'hun' END +SET [Description] = 'Hungarian', [Definition] = NULL, [SortOrder] = 2453.00 WHERE [Code] = 'hun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsh', 'Hungarian Sign Language', NULL, 244.40) END +VALUES ('hsh', 'Hungarian Sign Language', NULL, 2454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hungarian Sign Language', [Definition] = NULL, [SortOrder] = 244.40 WHERE [Code] = 'hsh' END +SET [Description] = 'Hungarian Sign Language', [Definition] = NULL, [SortOrder] = 2454.00 WHERE [Code] = 'hsh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hng', 'Hungu', NULL, 244.50) END +VALUES ('hng', 'Hungu', NULL, 2455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hungu', [Definition] = NULL, [SortOrder] = 244.50 WHERE [Code] = 'hng' END +SET [Description] = 'Hungu', [Definition] = NULL, [SortOrder] = 2455.00 WHERE [Code] = 'hng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hkk', 'Hunjara-Kaina Ke', NULL, 244.60) END +VALUES ('hkk', 'Hunjara-Kaina Ke', NULL, 2456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunjara-Kaina Ke', [Definition] = NULL, [SortOrder] = 244.60 WHERE [Code] = 'hkk' END +SET [Description] = 'Hunjara-Kaina Ke', [Definition] = NULL, [SortOrder] = 2456.00 WHERE [Code] = 'hkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhc', 'Hunnic', NULL, 244.70) END +VALUES ('xhc', 'Hunnic', NULL, 2457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunnic', [Definition] = NULL, [SortOrder] = 244.70 WHERE [Code] = 'xhc' END +SET [Description] = 'Hunnic', [Definition] = NULL, [SortOrder] = 2457.00 WHERE [Code] = 'xhc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrx', 'Hunsrik', NULL, 244.80) END +VALUES ('hrx', 'Hunsrik', NULL, 2458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunsrik', [Definition] = NULL, [SortOrder] = 244.80 WHERE [Code] = 'hrx' END +SET [Description] = 'Hunsrik', [Definition] = NULL, [SortOrder] = 2458.00 WHERE [Code] = 'hrx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huz', 'Hunzib', NULL, 244.90) END +VALUES ('huz', 'Hunzib', NULL, 2459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunzib', [Definition] = NULL, [SortOrder] = 244.90 WHERE [Code] = 'huz' END +SET [Description] = 'Hunzib', [Definition] = NULL, [SortOrder] = 2459.00 WHERE [Code] = 'huz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hup', 'Hupa', NULL, 245.00) END +VALUES ('hup', 'Hupa', NULL, 2460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hupa', [Definition] = NULL, [SortOrder] = 245.00 WHERE [Code] = 'hup' END +SET [Description] = 'Hupa', [Definition] = NULL, [SortOrder] = 2460.00 WHERE [Code] = 'hup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jup', 'Hupdë', NULL, 245.10) END +VALUES ('jup', 'Hupdë', NULL, 2461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hupdë', [Definition] = NULL, [SortOrder] = 245.10 WHERE [Code] = 'jup' END +SET [Description] = 'Hupdë', [Definition] = NULL, [SortOrder] = 2461.00 WHERE [Code] = 'jup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hap', 'Hupla', NULL, 245.20) END +VALUES ('hap', 'Hupla', NULL, 2462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hupla', [Definition] = NULL, [SortOrder] = 245.20 WHERE [Code] = 'hap' END +SET [Description] = 'Hupla', [Definition] = NULL, [SortOrder] = 2462.00 WHERE [Code] = 'hap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhu', 'Hurrian', NULL, 245.30) END +VALUES ('xhu', 'Hurrian', NULL, 2463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hurrian', [Definition] = NULL, [SortOrder] = 245.30 WHERE [Code] = 'xhu' END +SET [Description] = 'Hurrian', [Definition] = NULL, [SortOrder] = 2463.00 WHERE [Code] = 'xhu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'geh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geh', 'Hutterite German', NULL, 245.40) END +VALUES ('geh', 'Hutterite German', NULL, 2464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hutterite German', [Definition] = NULL, [SortOrder] = 245.40 WHERE [Code] = 'geh' END +SET [Description] = 'Hutterite German', [Definition] = NULL, [SortOrder] = 2464.00 WHERE [Code] = 'geh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hwo', 'Hwana', NULL, 245.50) END +VALUES ('hwo', 'Hwana', NULL, 2465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hwana', [Definition] = NULL, [SortOrder] = 245.50 WHERE [Code] = 'hwo' END +SET [Description] = 'Hwana', [Definition] = NULL, [SortOrder] = 2465.00 WHERE [Code] = 'hwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hya', 'Hya', NULL, 245.60) END +VALUES ('hya', 'Hya', NULL, 2466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hya', [Definition] = NULL, [SortOrder] = 245.60 WHERE [Code] = 'hya' END +SET [Description] = 'Hya', [Definition] = NULL, [SortOrder] = 2466.00 WHERE [Code] = 'hya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jab', 'Hyam', NULL, 245.70) END +VALUES ('jab', 'Hyam', NULL, 2467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hyam', [Definition] = NULL, [SortOrder] = 245.70 WHERE [Code] = 'jab' END +SET [Description] = 'Hyam', [Definition] = NULL, [SortOrder] = 2467.00 WHERE [Code] = 'jab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scp', 'Hyolmo', NULL, 245.80) END +VALUES ('scp', 'Hyolmo', NULL, 2468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hyolmo', [Definition] = NULL, [SortOrder] = 245.80 WHERE [Code] = 'scp' END +SET [Description] = 'Hyolmo', [Definition] = NULL, [SortOrder] = 2468.00 WHERE [Code] = 'scp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iwk', 'I-Wak', NULL, 245.90) END +VALUES ('iwk', 'I-Wak', NULL, 2469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'I-Wak', [Definition] = NULL, [SortOrder] = 245.90 WHERE [Code] = 'iwk' END +SET [Description] = 'I-Wak', [Definition] = NULL, [SortOrder] = 2469.00 WHERE [Code] = 'iwk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iai', 'Iaai', NULL, 246.00) END +VALUES ('iai', 'Iaai', NULL, 2470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iaai', [Definition] = NULL, [SortOrder] = 246.00 WHERE [Code] = 'iai' END +SET [Description] = 'Iaai', [Definition] = NULL, [SortOrder] = 2470.00 WHERE [Code] = 'iai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yml', 'Iamalele', NULL, 246.10) END +VALUES ('yml', 'Iamalele', NULL, 2471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iamalele', [Definition] = NULL, [SortOrder] = 246.10 WHERE [Code] = 'yml' END +SET [Description] = 'Iamalele', [Definition] = NULL, [SortOrder] = 2471.00 WHERE [Code] = 'yml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ian') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ian', 'Iatmul', NULL, 246.20) END +VALUES ('ian', 'Iatmul', NULL, 2472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iatmul', [Definition] = NULL, [SortOrder] = 246.20 WHERE [Code] = 'ian' END +SET [Description] = 'Iatmul', [Definition] = NULL, [SortOrder] = 2472.00 WHERE [Code] = 'ian' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmu', 'Iau', NULL, 246.30) END +VALUES ('tmu', 'Iau', NULL, 2473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iau', [Definition] = NULL, [SortOrder] = 246.30 WHERE [Code] = 'tmu' END +SET [Description] = 'Iau', [Definition] = NULL, [SortOrder] = 2473.00 WHERE [Code] = 'tmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tek', 'Ibali Teke', NULL, 246.40) END +VALUES ('tek', 'Ibali Teke', NULL, 2474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibali Teke', [Definition] = NULL, [SortOrder] = 246.40 WHERE [Code] = 'tek' END +SET [Description] = 'Ibali Teke', [Definition] = NULL, [SortOrder] = 2474.00 WHERE [Code] = 'tek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibl', 'Ibaloi', NULL, 246.50) END +VALUES ('ibl', 'Ibaloi', NULL, 2475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibaloi', [Definition] = NULL, [SortOrder] = 246.50 WHERE [Code] = 'ibl' END +SET [Description] = 'Ibaloi', [Definition] = NULL, [SortOrder] = 2475.00 WHERE [Code] = 'ibl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iba', 'Iban', NULL, 246.60) END +VALUES ('iba', 'Iban', NULL, 2476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iban', [Definition] = NULL, [SortOrder] = 246.60 WHERE [Code] = 'iba' END +SET [Description] = 'Iban', [Definition] = NULL, [SortOrder] = 2476.00 WHERE [Code] = 'iba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibg', 'Ibanag', NULL, 246.70) END +VALUES ('ibg', 'Ibanag', NULL, 2477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibanag', [Definition] = NULL, [SortOrder] = 246.70 WHERE [Code] = 'ibg' END +SET [Description] = 'Ibanag', [Definition] = NULL, [SortOrder] = 2477.00 WHERE [Code] = 'ibg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iby', 'Ibani', NULL, 246.80) END +VALUES ('iby', 'Ibani', NULL, 2478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibani', [Definition] = NULL, [SortOrder] = 246.80 WHERE [Code] = 'iby' END +SET [Description] = 'Ibani', [Definition] = NULL, [SortOrder] = 2478.00 WHERE [Code] = 'iby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ivb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ivb', 'Ibatan', NULL, 246.90) END +VALUES ('ivb', 'Ibatan', NULL, 2479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibatan', [Definition] = NULL, [SortOrder] = 246.90 WHERE [Code] = 'ivb' END +SET [Description] = 'Ibatan', [Definition] = NULL, [SortOrder] = 2479.00 WHERE [Code] = 'ivb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xib', 'Iberian', NULL, 247.00) END +VALUES ('xib', 'Iberian', NULL, 2480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iberian', [Definition] = NULL, [SortOrder] = 247.00 WHERE [Code] = 'xib' END +SET [Description] = 'Iberian', [Definition] = NULL, [SortOrder] = 2480.00 WHERE [Code] = 'xib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibb', 'Ibibio', NULL, 247.10) END +VALUES ('ibb', 'Ibibio', NULL, 2481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibibio', [Definition] = NULL, [SortOrder] = 247.10 WHERE [Code] = 'ibb' END +SET [Description] = 'Ibibio', [Definition] = NULL, [SortOrder] = 2481.00 WHERE [Code] = 'ibb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibn', 'Ibino', NULL, 247.20) END +VALUES ('ibn', 'Ibino', NULL, 2482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibino', [Definition] = NULL, [SortOrder] = 247.20 WHERE [Code] = 'ibn' END +SET [Description] = 'Ibino', [Definition] = NULL, [SortOrder] = 2482.00 WHERE [Code] = 'ibn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibu', 'Ibu', NULL, 247.30) END +VALUES ('ibu', 'Ibu', NULL, 2483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibu', [Definition] = NULL, [SortOrder] = 247.30 WHERE [Code] = 'ibu' END +SET [Description] = 'Ibu', [Definition] = NULL, [SortOrder] = 2483.00 WHERE [Code] = 'ibu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibr', 'Ibuoro', NULL, 247.40) END +VALUES ('ibr', 'Ibuoro', NULL, 2484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibuoro', [Definition] = NULL, [SortOrder] = 247.40 WHERE [Code] = 'ibr' END +SET [Description] = 'Ibuoro', [Definition] = NULL, [SortOrder] = 2484.00 WHERE [Code] = 'ibr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isl', 'Icelandic', NULL, 247.50) END +VALUES ('isl', 'Icelandic', NULL, 2485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Icelandic', [Definition] = NULL, [SortOrder] = 247.50 WHERE [Code] = 'isl' END +SET [Description] = 'Icelandic', [Definition] = NULL, [SortOrder] = 2485.00 WHERE [Code] = 'isl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'icl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('icl', 'Icelandic Sign Language', NULL, 247.60) END +VALUES ('icl', 'Icelandic Sign Language', NULL, 2486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Icelandic Sign Language', [Definition] = NULL, [SortOrder] = 247.60 WHERE [Code] = 'icl' END +SET [Description] = 'Icelandic Sign Language', [Definition] = NULL, [SortOrder] = 2486.00 WHERE [Code] = 'icl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bec', 'Iceve-Maci', NULL, 247.70) END +VALUES ('bec', 'Iceve-Maci', NULL, 2487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iceve-Maci', [Definition] = NULL, [SortOrder] = 247.70 WHERE [Code] = 'bec' END +SET [Description] = 'Iceve-Maci', [Definition] = NULL, [SortOrder] = 2487.00 WHERE [Code] = 'bec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbj', 'Ida''an', NULL, 247.80) END +VALUES ('dbj', 'Ida''an', NULL, 2488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ida''an', [Definition] = NULL, [SortOrder] = 247.80 WHERE [Code] = 'dbj' END +SET [Description] = 'Ida''an', [Definition] = NULL, [SortOrder] = 2488.00 WHERE [Code] = 'dbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ida') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ida', 'Idakho-Isukha-Tiriki', NULL, 247.90) END +VALUES ('ida', 'Idakho-Isukha-Tiriki', NULL, 2489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idakho-Isukha-Tiriki', [Definition] = NULL, [SortOrder] = 247.90 WHERE [Code] = 'ida' END +SET [Description] = 'Idakho-Isukha-Tiriki', [Definition] = NULL, [SortOrder] = 2489.00 WHERE [Code] = 'ida' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idt', 'Idaté', NULL, 248.00) END +VALUES ('idt', 'Idaté', NULL, 2490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idaté', [Definition] = NULL, [SortOrder] = 248.00 WHERE [Code] = 'idt' END +SET [Description] = 'Idaté', [Definition] = NULL, [SortOrder] = 2490.00 WHERE [Code] = 'idt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ide') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ide', 'Idere', NULL, 248.10) END +VALUES ('ide', 'Idere', NULL, 2491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idere', [Definition] = NULL, [SortOrder] = 248.10 WHERE [Code] = 'ide' END +SET [Description] = 'Idere', [Definition] = NULL, [SortOrder] = 2491.00 WHERE [Code] = 'ide' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ids') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ids', 'Idesa', NULL, 248.20) END +VALUES ('ids', 'Idesa', NULL, 2492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idesa', [Definition] = NULL, [SortOrder] = 248.20 WHERE [Code] = 'ids' END +SET [Description] = 'Idesa', [Definition] = NULL, [SortOrder] = 2492.00 WHERE [Code] = 'ids' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idi', 'Idi', NULL, 248.30) END +VALUES ('idi', 'Idi', NULL, 2493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idi', [Definition] = NULL, [SortOrder] = 248.30 WHERE [Code] = 'idi' END +SET [Description] = 'Idi', [Definition] = NULL, [SortOrder] = 2493.00 WHERE [Code] = 'idi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ido') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ido', 'Ido', NULL, 248.40) END +VALUES ('ido', 'Ido', NULL, 2494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ido', [Definition] = NULL, [SortOrder] = 248.40 WHERE [Code] = 'ido' END +SET [Description] = 'Ido', [Definition] = NULL, [SortOrder] = 2494.00 WHERE [Code] = 'ido' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idu', 'Idoma', NULL, 248.50) END +VALUES ('idu', 'Idoma', NULL, 2495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idoma', [Definition] = NULL, [SortOrder] = 248.50 WHERE [Code] = 'idu' END +SET [Description] = 'Idoma', [Definition] = NULL, [SortOrder] = 2495.00 WHERE [Code] = 'idu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idc', 'Idon', NULL, 248.60) END +VALUES ('idc', 'Idon', NULL, 2496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idon', [Definition] = NULL, [SortOrder] = 248.60 WHERE [Code] = 'idc' END +SET [Description] = 'Idon', [Definition] = NULL, [SortOrder] = 2496.00 WHERE [Code] = 'idc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clk', 'Idu-Mishmi', NULL, 248.70) END +VALUES ('clk', 'Idu-Mishmi', NULL, 2497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idu-Mishmi', [Definition] = NULL, [SortOrder] = 248.70 WHERE [Code] = 'clk' END +SET [Description] = 'Idu-Mishmi', [Definition] = NULL, [SortOrder] = 2497.00 WHERE [Code] = 'clk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'viv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('viv', 'Iduna', NULL, 248.80) END +VALUES ('viv', 'Iduna', NULL, 2498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iduna', [Definition] = NULL, [SortOrder] = 248.80 WHERE [Code] = 'viv' END +SET [Description] = 'Iduna', [Definition] = NULL, [SortOrder] = 2498.00 WHERE [Code] = 'viv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ife') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ife', 'Ifè', NULL, 248.90) END +VALUES ('ife', 'Ifè', NULL, 2499.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ifè', [Definition] = NULL, [SortOrder] = 248.90 WHERE [Code] = 'ife' END +SET [Description] = 'Ifè', [Definition] = NULL, [SortOrder] = 2499.00 WHERE [Code] = 'ife' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iff') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iff', 'Ifo', NULL, 249.00) END +VALUES ('iff', 'Ifo', NULL, 2500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ifo', [Definition] = NULL, [SortOrder] = 249.00 WHERE [Code] = 'iff' END +SET [Description] = 'Ifo', [Definition] = NULL, [SortOrder] = 2500.00 WHERE [Code] = 'iff' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igl', 'Igala', NULL, 249.10) END +VALUES ('igl', 'Igala', NULL, 2501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igala', [Definition] = NULL, [SortOrder] = 249.10 WHERE [Code] = 'igl' END +SET [Description] = 'Igala', [Definition] = NULL, [SortOrder] = 2501.00 WHERE [Code] = 'igl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igg', 'Igana', NULL, 249.20) END +VALUES ('igg', 'Igana', NULL, 2502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igana', [Definition] = NULL, [SortOrder] = 249.20 WHERE [Code] = 'igg' END +SET [Description] = 'Igana', [Definition] = NULL, [SortOrder] = 2502.00 WHERE [Code] = 'igg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibo', 'Igbo', NULL, 249.30) END +VALUES ('ibo', 'Igbo', NULL, 2503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igbo', [Definition] = NULL, [SortOrder] = 249.30 WHERE [Code] = 'ibo' END +SET [Description] = 'Igbo', [Definition] = NULL, [SortOrder] = 2503.00 WHERE [Code] = 'ibo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ige') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ige', 'Igede', NULL, 249.40) END +VALUES ('ige', 'Igede', NULL, 2504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igede', [Definition] = NULL, [SortOrder] = 249.40 WHERE [Code] = 'ige' END +SET [Description] = 'Igede', [Definition] = NULL, [SortOrder] = 2504.00 WHERE [Code] = 'ige' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ign') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ign', 'Ignaciano', NULL, 249.50) END +VALUES ('ign', 'Ignaciano', NULL, 2505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ignaciano', [Definition] = NULL, [SortOrder] = 249.50 WHERE [Code] = 'ign' END +SET [Description] = 'Ignaciano', [Definition] = NULL, [SortOrder] = 2505.00 WHERE [Code] = 'ign' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahl', 'Igo', NULL, 249.60) END +VALUES ('ahl', 'Igo', NULL, 2506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igo', [Definition] = NULL, [SortOrder] = 249.60 WHERE [Code] = 'ahl' END +SET [Description] = 'Igo', [Definition] = NULL, [SortOrder] = 2506.00 WHERE [Code] = 'ahl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nar', 'Iguta', NULL, 249.70) END +VALUES ('nar', 'Iguta', NULL, 2507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iguta', [Definition] = NULL, [SortOrder] = 249.70 WHERE [Code] = 'nar' END +SET [Description] = 'Iguta', [Definition] = NULL, [SortOrder] = 2507.00 WHERE [Code] = 'nar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igw', 'Igwe', NULL, 249.80) END +VALUES ('igw', 'Igwe', NULL, 2508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igwe', [Definition] = NULL, [SortOrder] = 249.80 WHERE [Code] = 'igw' END +SET [Description] = 'Igwe', [Definition] = NULL, [SortOrder] = 2508.00 WHERE [Code] = 'igw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ihp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ihp', 'Iha', NULL, 249.90) END +VALUES ('ihp', 'Iha', NULL, 2509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iha', [Definition] = NULL, [SortOrder] = 249.90 WHERE [Code] = 'ihp' END +SET [Description] = 'Iha', [Definition] = NULL, [SortOrder] = 2509.00 WHERE [Code] = 'ihp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ihb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ihb', 'Iha Based Pidgin', NULL, 250.00) END +VALUES ('ihb', 'Iha Based Pidgin', NULL, 2510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iha Based Pidgin', [Definition] = NULL, [SortOrder] = 250.00 WHERE [Code] = 'ihb' END +SET [Description] = 'Iha Based Pidgin', [Definition] = NULL, [SortOrder] = 2510.00 WHERE [Code] = 'ihb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ihi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ihi', 'Ihievbe', NULL, 250.10) END +VALUES ('ihi', 'Ihievbe', NULL, 2511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ihievbe', [Definition] = NULL, [SortOrder] = 250.10 WHERE [Code] = 'ihi' END +SET [Description] = 'Ihievbe', [Definition] = NULL, [SortOrder] = 2511.00 WHERE [Code] = 'ihi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikx', 'Ik', NULL, 250.20) END +VALUES ('ikx', 'Ik', NULL, 2512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ik', [Definition] = NULL, [SortOrder] = 250.20 WHERE [Code] = 'ikx' END +SET [Description] = 'Ik', [Definition] = NULL, [SortOrder] = 2512.00 WHERE [Code] = 'ikx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikk', 'Ika', NULL, 250.30) END +VALUES ('ikk', 'Ika', NULL, 2513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ika', [Definition] = NULL, [SortOrder] = 250.30 WHERE [Code] = 'ikk' END +SET [Description] = 'Ika', [Definition] = NULL, [SortOrder] = 2513.00 WHERE [Code] = 'ikk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikr', 'Ikaranggal', NULL, 250.40) END +VALUES ('ikr', 'Ikaranggal', NULL, 2514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikaranggal', [Definition] = NULL, [SortOrder] = 250.40 WHERE [Code] = 'ikr' END +SET [Description] = 'Ikaranggal', [Definition] = NULL, [SortOrder] = 2514.00 WHERE [Code] = 'ikr' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('ikh', 'Ikhin-Arokho', NULL, 2515.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Ikhin-Arokho', [Definition] = NULL, [SortOrder] = 2515.00 WHERE [Code] = 'ikh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikz', 'Ikizu', NULL, 250.50) END +VALUES ('ikz', 'Ikizu', NULL, 2516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikizu', [Definition] = NULL, [SortOrder] = 250.50 WHERE [Code] = 'ikz' END +SET [Description] = 'Ikizu', [Definition] = NULL, [SortOrder] = 2516.00 WHERE [Code] = 'ikz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iki', 'Iko', NULL, 250.60) END +VALUES ('iki', 'Iko', NULL, 2517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iko', [Definition] = NULL, [SortOrder] = 250.60 WHERE [Code] = 'iki' END +SET [Description] = 'Iko', [Definition] = NULL, [SortOrder] = 2517.00 WHERE [Code] = 'iki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meb', 'Ikobi', NULL, 250.70) END +VALUES ('meb', 'Ikobi', NULL, 2518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikobi', [Definition] = NULL, [SortOrder] = 250.70 WHERE [Code] = 'meb' END +SET [Description] = 'Ikobi', [Definition] = NULL, [SortOrder] = 2518.00 WHERE [Code] = 'meb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntk', 'Ikoma-Nata-Isenye', NULL, 250.80) END +VALUES ('ntk', 'Ikoma-Nata-Isenye', NULL, 2519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikoma-Nata-Isenye', [Definition] = NULL, [SortOrder] = 250.80 WHERE [Code] = 'ntk' END +SET [Description] = 'Ikoma-Nata-Isenye', [Definition] = NULL, [SortOrder] = 2519.00 WHERE [Code] = 'ntk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txi', 'Ikpeng', NULL, 250.90) END +VALUES ('txi', 'Ikpeng', NULL, 2520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikpeng', [Definition] = NULL, [SortOrder] = 250.90 WHERE [Code] = 'txi' END +SET [Description] = 'Ikpeng', [Definition] = NULL, [SortOrder] = 2520.00 WHERE [Code] = 'txi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikp', 'Ikpeshi', NULL, 251.00) END +VALUES ('ikp', 'Ikpeshi', NULL, 2521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikpeshi', [Definition] = NULL, [SortOrder] = 251.00 WHERE [Code] = 'ikp' END +SET [Description] = 'Ikpeshi', [Definition] = NULL, [SortOrder] = 2521.00 WHERE [Code] = 'ikp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpo', 'Ikposo', NULL, 251.10) END +VALUES ('kpo', 'Ikposo', NULL, 2522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikposo', [Definition] = NULL, [SortOrder] = 251.10 WHERE [Code] = 'kpo' END +SET [Description] = 'Ikposo', [Definition] = NULL, [SortOrder] = 2522.00 WHERE [Code] = 'kpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikv', 'Iku-Gora-Ankwa', NULL, 251.20) END +VALUES ('ikv', 'Iku-Gora-Ankwa', NULL, 2523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iku-Gora-Ankwa', [Definition] = NULL, [SortOrder] = 251.20 WHERE [Code] = 'ikv' END +SET [Description] = 'Iku-Gora-Ankwa', [Definition] = NULL, [SortOrder] = 2523.00 WHERE [Code] = 'ikv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikl', 'Ikulu', NULL, 251.30) END +VALUES ('ikl', 'Ikulu', NULL, 2524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikulu', [Definition] = NULL, [SortOrder] = 251.30 WHERE [Code] = 'ikl' END +SET [Description] = 'Ikulu', [Definition] = NULL, [SortOrder] = 2524.00 WHERE [Code] = 'ikl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikw', 'Ikwere', NULL, 251.40) END +VALUES ('ikw', 'Ikwere', NULL, 2525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikwere', [Definition] = NULL, [SortOrder] = 251.40 WHERE [Code] = 'ikw' END +SET [Description] = 'Ikwere', [Definition] = NULL, [SortOrder] = 2525.00 WHERE [Code] = 'ikw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iqw', 'Ikwo', NULL, 251.50) END +VALUES ('iqw', 'Ikwo', NULL, 2526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikwo', [Definition] = NULL, [SortOrder] = 251.50 WHERE [Code] = 'iqw' END +SET [Description] = 'Ikwo', [Definition] = NULL, [SortOrder] = 2526.00 WHERE [Code] = 'iqw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilb', 'Ila', NULL, 251.60) END +VALUES ('ilb', 'Ila', NULL, 2527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ila', [Definition] = NULL, [SortOrder] = 251.60 WHERE [Code] = 'ilb' END +SET [Description] = 'Ila', [Definition] = NULL, [SortOrder] = 2527.00 WHERE [Code] = 'ilb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ila') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ila', 'Ile Ape', NULL, 251.70) END +VALUES ('ila', 'Ile Ape', NULL, 2528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ile Ape', [Definition] = NULL, [SortOrder] = 251.70 WHERE [Code] = 'ila' END +SET [Description] = 'Ile Ape', [Definition] = NULL, [SortOrder] = 2528.00 WHERE [Code] = 'ila' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ili') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ili', 'Ili Turki', NULL, 251.80) END +VALUES ('ili', 'Ili Turki', NULL, 2529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ili Turki', [Definition] = NULL, [SortOrder] = 251.80 WHERE [Code] = 'ili' END +SET [Description] = 'Ili Turki', [Definition] = NULL, [SortOrder] = 2529.00 WHERE [Code] = 'ili' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilu', 'Ili''uun', NULL, 251.90) END +VALUES ('ilu', 'Ili''uun', NULL, 2530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ili''uun', [Definition] = NULL, [SortOrder] = 251.90 WHERE [Code] = 'ilu' END +SET [Description] = 'Ili''uun', [Definition] = NULL, [SortOrder] = 2530.00 WHERE [Code] = 'ilu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbi', 'Ilianen Manobo', NULL, 252.00) END +VALUES ('mbi', 'Ilianen Manobo', NULL, 2531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ilianen Manobo', [Definition] = NULL, [SortOrder] = 252.00 WHERE [Code] = 'mbi' END +SET [Description] = 'Ilianen Manobo', [Definition] = NULL, [SortOrder] = 2531.00 WHERE [Code] = 'mbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xil', 'Illyrian', NULL, 252.10) END +VALUES ('xil', 'Illyrian', NULL, 2532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Illyrian', [Definition] = NULL, [SortOrder] = 252.10 WHERE [Code] = 'xil' END +SET [Description] = 'Illyrian', [Definition] = NULL, [SortOrder] = 2532.00 WHERE [Code] = 'xil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilo', 'Iloko', NULL, 252.20) END +VALUES ('ilo', 'Iloko', NULL, 2533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iloko', [Definition] = NULL, [SortOrder] = 252.20 WHERE [Code] = 'ilo' END +SET [Description] = 'Iloko', [Definition] = NULL, [SortOrder] = 2533.00 WHERE [Code] = 'ilo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilk', 'Ilongot', NULL, 252.30) END +VALUES ('ilk', 'Ilongot', NULL, 2534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ilongot', [Definition] = NULL, [SortOrder] = 252.30 WHERE [Code] = 'ilk' END +SET [Description] = 'Ilongot', [Definition] = NULL, [SortOrder] = 2534.00 WHERE [Code] = 'ilk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilv', 'Ilue', NULL, 252.40) END +VALUES ('ilv', 'Ilue', NULL, 2535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ilue', [Definition] = NULL, [SortOrder] = 252.40 WHERE [Code] = 'ilv' END +SET [Description] = 'Ilue', [Definition] = NULL, [SortOrder] = 2535.00 WHERE [Code] = 'ilv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlk', 'Ilwana', NULL, 252.50) END +VALUES ('mlk', 'Ilwana', NULL, 2536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ilwana', [Definition] = NULL, [SortOrder] = 252.50 WHERE [Code] = 'mlk' END +SET [Description] = 'Ilwana', [Definition] = NULL, [SortOrder] = 2536.00 WHERE [Code] = 'mlk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvi', 'Imbabura Highland Quichua', NULL, 252.60) END +VALUES ('qvi', 'Imbabura Highland Quichua', NULL, 2537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imbabura Highland Quichua', [Definition] = NULL, [SortOrder] = 252.60 WHERE [Code] = 'qvi' END +SET [Description] = 'Imbabura Highland Quichua', [Definition] = NULL, [SortOrder] = 2537.00 WHERE [Code] = 'qvi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imo', 'Imbongu', NULL, 252.70) END +VALUES ('imo', 'Imbongu', NULL, 2538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imbongu', [Definition] = NULL, [SortOrder] = 252.70 WHERE [Code] = 'imo' END +SET [Description] = 'Imbongu', [Definition] = NULL, [SortOrder] = 2538.00 WHERE [Code] = 'imo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imn', 'Imonda', NULL, 252.80) END +VALUES ('imn', 'Imonda', NULL, 2539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imonda', [Definition] = NULL, [SortOrder] = 252.80 WHERE [Code] = 'imn' END +SET [Description] = 'Imonda', [Definition] = NULL, [SortOrder] = 2539.00 WHERE [Code] = 'imn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imt', 'Imotong', NULL, 252.90) END +VALUES ('imt', 'Imotong', NULL, 2540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imotong', [Definition] = NULL, [SortOrder] = 252.90 WHERE [Code] = 'imt' END +SET [Description] = 'Imotong', [Definition] = NULL, [SortOrder] = 2540.00 WHERE [Code] = 'imt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imr', 'Imroing', NULL, 253.00) END +VALUES ('imr', 'Imroing', NULL, 2541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imroing', [Definition] = NULL, [SortOrder] = 253.00 WHERE [Code] = 'imr' END +SET [Description] = 'Imroing', [Definition] = NULL, [SortOrder] = 2541.00 WHERE [Code] = 'imr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abx', 'Inabaknon', NULL, 253.10) END +VALUES ('abx', 'Inabaknon', NULL, 2542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inabaknon', [Definition] = NULL, [SortOrder] = 253.10 WHERE [Code] = 'abx' END +SET [Description] = 'Inabaknon', [Definition] = NULL, [SortOrder] = 2542.00 WHERE [Code] = 'abx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzu', 'Inapang', NULL, 253.20) END +VALUES ('mzu', 'Inapang', NULL, 2543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inapang', [Definition] = NULL, [SortOrder] = 253.20 WHERE [Code] = 'mzu' END +SET [Description] = 'Inapang', [Definition] = NULL, [SortOrder] = 2543.00 WHERE [Code] = 'mzu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inp', 'Iñapari', NULL, 253.30) END +VALUES ('inp', 'Iñapari', NULL, 2544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iñapari', [Definition] = NULL, [SortOrder] = 253.30 WHERE [Code] = 'inp' END +SET [Description] = 'Iñapari', [Definition] = NULL, [SortOrder] = 2544.00 WHERE [Code] = 'inp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smn', 'Inari Sami', NULL, 253.40) END +VALUES ('smn', 'Inari Sami', NULL, 2545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inari Sami', [Definition] = NULL, [SortOrder] = 253.40 WHERE [Code] = 'smn' END +SET [Description] = 'Inari Sami', [Definition] = NULL, [SortOrder] = 2545.00 WHERE [Code] = 'smn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ins') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ins', 'Indian Sign Language', NULL, 253.50) END +VALUES ('ins', 'Indian Sign Language', NULL, 2546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indian Sign Language', [Definition] = NULL, [SortOrder] = 253.50 WHERE [Code] = 'ins' END +SET [Description] = 'Indian Sign Language', [Definition] = NULL, [SortOrder] = 2546.00 WHERE [Code] = 'ins' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idb', 'Indo-Portuguese', NULL, 253.60) END +VALUES ('idb', 'Indo-Portuguese', NULL, 2547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indo-Portuguese', [Definition] = NULL, [SortOrder] = 253.60 WHERE [Code] = 'idb' END +SET [Description] = 'Indo-Portuguese', [Definition] = NULL, [SortOrder] = 2547.00 WHERE [Code] = 'idb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ind') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ind', 'Indonesian', NULL, 253.70) END +VALUES ('ind', 'Indonesian', NULL, 2548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indonesian', [Definition] = NULL, [SortOrder] = 253.70 WHERE [Code] = 'ind' END +SET [Description] = 'Indonesian', [Definition] = NULL, [SortOrder] = 2548.00 WHERE [Code] = 'ind' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdl', 'Indonesian Bajau', NULL, 253.80) END +VALUES ('bdl', 'Indonesian Bajau', NULL, 2549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indonesian Bajau', [Definition] = NULL, [SortOrder] = 253.80 WHERE [Code] = 'bdl' END +SET [Description] = 'Indonesian Bajau', [Definition] = NULL, [SortOrder] = 2549.00 WHERE [Code] = 'bdl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inl', 'Indonesian Sign Language', NULL, 253.90) END +VALUES ('inl', 'Indonesian Sign Language', NULL, 2550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indonesian Sign Language', [Definition] = NULL, [SortOrder] = 253.90 WHERE [Code] = 'inl' END +SET [Description] = 'Indonesian Sign Language', [Definition] = NULL, [SortOrder] = 2550.00 WHERE [Code] = 'inl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idr', 'Indri', NULL, 254.00) END +VALUES ('idr', 'Indri', NULL, 2551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indri', [Definition] = NULL, [SortOrder] = 254.00 WHERE [Code] = 'idr' END +SET [Description] = 'Indri', [Definition] = NULL, [SortOrder] = 2551.00 WHERE [Code] = 'idr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvy', 'Indus Kohistani', NULL, 254.10) END +VALUES ('mvy', 'Indus Kohistani', NULL, 2552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indus Kohistani', [Definition] = NULL, [SortOrder] = 254.10 WHERE [Code] = 'mvy' END +SET [Description] = 'Indus Kohistani', [Definition] = NULL, [SortOrder] = 2552.00 WHERE [Code] = 'mvy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xiv', 'Indus Valley Language', NULL, 254.20) END +VALUES ('xiv', 'Indus Valley Language', NULL, 2553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indus Valley Language', [Definition] = NULL, [SortOrder] = 254.20 WHERE [Code] = 'xiv' END +SET [Description] = 'Indus Valley Language', [Definition] = NULL, [SortOrder] = 2553.00 WHERE [Code] = 'xiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oin', 'Inebu One', NULL, 254.30) END +VALUES ('oin', 'Inebu One', NULL, 2554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inebu One', [Definition] = NULL, [SortOrder] = 254.30 WHERE [Code] = 'oin' END +SET [Description] = 'Inebu One', [Definition] = NULL, [SortOrder] = 2554.00 WHERE [Code] = 'oin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inz', 'Ineseño', NULL, 254.40) END +VALUES ('inz', 'Ineseño', NULL, 2555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ineseño', [Definition] = NULL, [SortOrder] = 254.40 WHERE [Code] = 'inz' END +SET [Description] = 'Ineseño', [Definition] = NULL, [SortOrder] = 2555.00 WHERE [Code] = 'inz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inb', 'Inga', NULL, 254.50) END +VALUES ('inb', 'Inga', NULL, 2556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inga', [Definition] = NULL, [SortOrder] = 254.50 WHERE [Code] = 'inb' END +SET [Description] = 'Inga', [Definition] = NULL, [SortOrder] = 2556.00 WHERE [Code] = 'inb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'izh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('izh', 'Ingrian', NULL, 254.60) END +VALUES ('izh', 'Ingrian', NULL, 2557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ingrian', [Definition] = NULL, [SortOrder] = 254.60 WHERE [Code] = 'izh' END +SET [Description] = 'Ingrian', [Definition] = NULL, [SortOrder] = 2557.00 WHERE [Code] = 'izh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inh', 'Ingush', NULL, 254.70) END +VALUES ('inh', 'Ingush', NULL, 2558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ingush', [Definition] = NULL, [SortOrder] = 254.70 WHERE [Code] = 'inh' END +SET [Description] = 'Ingush', [Definition] = NULL, [SortOrder] = 2558.00 WHERE [Code] = 'inh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iti', 'Inlaod Itneg', NULL, 254.80) END +VALUES ('iti', 'Inlaod Itneg', NULL, 2559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inlaod Itneg', [Definition] = NULL, [SortOrder] = 254.80 WHERE [Code] = 'iti' END +SET [Description] = 'Inlaod Itneg', [Definition] = NULL, [SortOrder] = 2559.00 WHERE [Code] = 'iti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moe', 'Innu', NULL, 254.90) END +VALUES ('moe', 'Innu', NULL, 2560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Innu', [Definition] = NULL, [SortOrder] = 254.90 WHERE [Code] = 'moe' END +SET [Description] = 'Innu', [Definition] = NULL, [SortOrder] = 2560.00 WHERE [Code] = 'moe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ino') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ino', 'Inoke-Yate', NULL, 255.00) END +VALUES ('ino', 'Inoke-Yate', NULL, 2561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inoke-Yate', [Definition] = NULL, [SortOrder] = 255.00 WHERE [Code] = 'ino' END +SET [Description] = 'Inoke-Yate', [Definition] = NULL, [SortOrder] = 2561.00 WHERE [Code] = 'ino' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loc', 'Inonhan', NULL, 255.10) END +VALUES ('loc', 'Inonhan', NULL, 2562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inonhan', [Definition] = NULL, [SortOrder] = 255.10 WHERE [Code] = 'loc' END +SET [Description] = 'Inonhan', [Definition] = NULL, [SortOrder] = 2562.00 WHERE [Code] = 'loc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ior') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ior', 'Inor', NULL, 255.20) END +VALUES ('ior', 'Inor', NULL, 2563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inor', [Definition] = NULL, [SortOrder] = 255.20 WHERE [Code] = 'ior' END +SET [Description] = 'Inor', [Definition] = NULL, [SortOrder] = 2563.00 WHERE [Code] = 'ior' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkf', 'Inpui Naga', NULL, 255.30) END +VALUES ('nkf', 'Inpui Naga', NULL, 2564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inpui Naga', [Definition] = NULL, [SortOrder] = 255.30 WHERE [Code] = 'nkf' END +SET [Description] = 'Inpui Naga', [Definition] = NULL, [SortOrder] = 2564.00 WHERE [Code] = 'nkf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igs', 'Interglossa', NULL, 255.40) END +VALUES ('igs', 'Interglossa', NULL, 2565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Interglossa', [Definition] = NULL, [SortOrder] = 255.40 WHERE [Code] = 'igs' END +SET [Description] = 'Interglossa', [Definition] = NULL, [SortOrder] = 2565.00 WHERE [Code] = 'igs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ina') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ina', 'Interlingua (International Auxiliary Language Association)', NULL, 255.50) END +VALUES ('ina', 'Interlingua (International Auxiliary Language Association)', NULL, 2566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Interlingua (International Auxiliary Language Association)', [Definition] = NULL, [SortOrder] = 255.50 WHERE [Code] = 'ina' END +SET [Description] = 'Interlingua (International Auxiliary Language Association)', [Definition] = NULL, [SortOrder] = 2566.00 WHERE [Code] = 'ina' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ile') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ile', 'Interlingue', NULL, 255.60) END +VALUES ('ile', 'Interlingue', NULL, 2567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Interlingue', [Definition] = NULL, [SortOrder] = 255.60 WHERE [Code] = 'ile' END +SET [Description] = 'Interlingue', [Definition] = NULL, [SortOrder] = 2567.00 WHERE [Code] = 'ile' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ils') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ils', 'International Sign', NULL, 255.70) END +VALUES ('ils', 'International Sign', NULL, 2568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'International Sign', [Definition] = NULL, [SortOrder] = 255.70 WHERE [Code] = 'ils' END +SET [Description] = 'International Sign', [Definition] = NULL, [SortOrder] = 2568.00 WHERE [Code] = 'ils' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'int') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('int', 'Intha', NULL, 255.80) END +VALUES ('int', 'Intha', NULL, 2569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Intha', [Definition] = NULL, [SortOrder] = 255.80 WHERE [Code] = 'int' END +SET [Description] = 'Intha', [Definition] = NULL, [SortOrder] = 2569.00 WHERE [Code] = 'int' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikt', 'Inuinnaqtun', NULL, 255.90) END +VALUES ('ikt', 'Inuinnaqtun', NULL, 2570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inuinnaqtun', [Definition] = NULL, [SortOrder] = 255.90 WHERE [Code] = 'ikt' END +SET [Description] = 'Inuinnaqtun', [Definition] = NULL, [SortOrder] = 2570.00 WHERE [Code] = 'ikt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iks', 'Inuit Sign Language', NULL, 256.00) END +VALUES ('iks', 'Inuit Sign Language', NULL, 2571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inuit Sign Language', [Definition] = NULL, [SortOrder] = 256.00 WHERE [Code] = 'iks' END +SET [Description] = 'Inuit Sign Language', [Definition] = NULL, [SortOrder] = 2571.00 WHERE [Code] = 'iks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iku', 'Inuktitut', NULL, 256.10) END +VALUES ('iku', 'Inuktitut', NULL, 2572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inuktitut', [Definition] = NULL, [SortOrder] = 256.10 WHERE [Code] = 'iku' END +SET [Description] = 'Inuktitut', [Definition] = NULL, [SortOrder] = 2572.00 WHERE [Code] = 'iku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ipk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ipk', 'Inupiaq', NULL, 256.20) END +VALUES ('ipk', 'Inupiaq', NULL, 2573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inupiaq', [Definition] = NULL, [SortOrder] = 256.20 WHERE [Code] = 'ipk' END +SET [Description] = 'Inupiaq', [Definition] = NULL, [SortOrder] = 2573.00 WHERE [Code] = 'ipk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iow', 'Iowa-Oto', NULL, 256.30) END +VALUES ('iow', 'Iowa-Oto', NULL, 2574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iowa-Oto', [Definition] = NULL, [SortOrder] = 256.30 WHERE [Code] = 'iow' END +SET [Description] = 'Iowa-Oto', [Definition] = NULL, [SortOrder] = 2574.00 WHERE [Code] = 'iow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azm', 'Ipalapa Amuzgo', NULL, 256.40) END +VALUES ('azm', 'Ipalapa Amuzgo', NULL, 2575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ipalapa Amuzgo', [Definition] = NULL, [SortOrder] = 256.40 WHERE [Code] = 'azm' END +SET [Description] = 'Ipalapa Amuzgo', [Definition] = NULL, [SortOrder] = 2575.00 WHERE [Code] = 'azm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ipo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ipo', 'Ipiko', NULL, 256.50) END +VALUES ('ipo', 'Ipiko', NULL, 2576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ipiko', [Definition] = NULL, [SortOrder] = 256.50 WHERE [Code] = 'ipo' END +SET [Description] = 'Ipiko', [Definition] = NULL, [SortOrder] = 2576.00 WHERE [Code] = 'ipo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ipi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ipi', 'Ipili', NULL, 256.60) END +VALUES ('ipi', 'Ipili', NULL, 2577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ipili', [Definition] = NULL, [SortOrder] = 256.60 WHERE [Code] = 'ipi' END +SET [Description] = 'Ipili', [Definition] = NULL, [SortOrder] = 2577.00 WHERE [Code] = 'ipi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ass') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ass', 'Ipulo', NULL, 256.70) END +VALUES ('ass', 'Ipulo', NULL, 2578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ipulo', [Definition] = NULL, [SortOrder] = 256.70 WHERE [Code] = 'ass' END +SET [Description] = 'Ipulo', [Definition] = NULL, [SortOrder] = 2578.00 WHERE [Code] = 'ass' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iqu', 'Iquito', NULL, 256.80) END +VALUES ('iqu', 'Iquito', NULL, 2579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iquito', [Definition] = NULL, [SortOrder] = 256.80 WHERE [Code] = 'iqu' END +SET [Description] = 'Iquito', [Definition] = NULL, [SortOrder] = 2579.00 WHERE [Code] = 'iqu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irr', 'Ir', NULL, 256.90) END +VALUES ('irr', 'Ir', NULL, 2580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ir', [Definition] = NULL, [SortOrder] = 256.90 WHERE [Code] = 'irr' END +SET [Description] = 'Ir', [Definition] = NULL, [SortOrder] = 2580.00 WHERE [Code] = 'irr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pes', 'Iranian Persian', NULL, 257.00) END +VALUES ('pes', 'Iranian Persian', NULL, 2581.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Iranian Persian', [Definition] = NULL, [SortOrder] = 2581.00 WHERE [Code] = 'pes' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('psc', 'Iranian Sign Language', NULL, 2582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iranian Persian', [Definition] = NULL, [SortOrder] = 257.00 WHERE [Code] = 'pes' END +SET [Description] = 'Iranian Sign Language', [Definition] = NULL, [SortOrder] = 2582.00 WHERE [Code] = 'psc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irn', 'Irántxe', NULL, 257.10) END +VALUES ('irn', 'Irántxe', NULL, 2583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irántxe', [Definition] = NULL, [SortOrder] = 257.10 WHERE [Code] = 'irn' END +SET [Description] = 'Irántxe', [Definition] = NULL, [SortOrder] = 2583.00 WHERE [Code] = 'irn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilm', 'Iranun (Malaysia)', NULL, 257.20) END +VALUES ('ilm', 'Iranun (Malaysia)', NULL, 2584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iranun (Malaysia)', [Definition] = NULL, [SortOrder] = 257.20 WHERE [Code] = 'ilm' END +SET [Description] = 'Iranun (Malaysia)', [Definition] = NULL, [SortOrder] = 2584.00 WHERE [Code] = 'ilm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilp', 'Iranun (Philippines)', NULL, 257.30) END +VALUES ('ilp', 'Iranun (Philippines)', NULL, 2585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iranun (Philippines)', [Definition] = NULL, [SortOrder] = 257.30 WHERE [Code] = 'ilp' END +SET [Description] = 'Iranun (Philippines)', [Definition] = NULL, [SortOrder] = 2585.00 WHERE [Code] = 'ilp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irk', 'Iraqw', NULL, 257.40) END +VALUES ('irk', 'Iraqw', NULL, 2586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iraqw', [Definition] = NULL, [SortOrder] = 257.40 WHERE [Code] = 'irk' END +SET [Description] = 'Iraqw', [Definition] = NULL, [SortOrder] = 2586.00 WHERE [Code] = 'irk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irh', 'Irarutu', NULL, 257.50) END +VALUES ('irh', 'Irarutu', NULL, 2587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irarutu', [Definition] = NULL, [SortOrder] = 257.50 WHERE [Code] = 'irh' END +SET [Description] = 'Irarutu', [Definition] = NULL, [SortOrder] = 2587.00 WHERE [Code] = 'irh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iry', 'Iraya', NULL, 257.60) END +VALUES ('iry', 'Iraya', NULL, 2588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iraya', [Definition] = NULL, [SortOrder] = 257.60 WHERE [Code] = 'iry' END +SET [Description] = 'Iraya', [Definition] = NULL, [SortOrder] = 2588.00 WHERE [Code] = 'iry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ire') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ire', 'Iresim', NULL, 257.70) END +VALUES ('ire', 'Iresim', NULL, 2589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iresim', [Definition] = NULL, [SortOrder] = 257.70 WHERE [Code] = 'ire' END +SET [Description] = 'Iresim', [Definition] = NULL, [SortOrder] = 2589.00 WHERE [Code] = 'ire' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gle', 'Irish', NULL, 257.80) END +VALUES ('gle', 'Irish', NULL, 2590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irish', [Definition] = NULL, [SortOrder] = 257.80 WHERE [Code] = 'gle' END +SET [Description] = 'Irish', [Definition] = NULL, [SortOrder] = 2590.00 WHERE [Code] = 'gle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isg', 'Irish Sign Language', NULL, 257.90) END +VALUES ('isg', 'Irish Sign Language', NULL, 2591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irish Sign Language', [Definition] = NULL, [SortOrder] = 257.90 WHERE [Code] = 'isg' END +SET [Description] = 'Irish Sign Language', [Definition] = NULL, [SortOrder] = 2591.00 WHERE [Code] = 'isg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iru', 'Irula', NULL, 258.00) END +VALUES ('iru', 'Irula', NULL, 2592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irula', [Definition] = NULL, [SortOrder] = 258.00 WHERE [Code] = 'iru' END +SET [Description] = 'Irula', [Definition] = NULL, [SortOrder] = 2592.00 WHERE [Code] = 'iru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isa', 'Isabi', NULL, 258.10) END +VALUES ('isa', 'Isabi', NULL, 2593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isabi', [Definition] = NULL, [SortOrder] = 258.10 WHERE [Code] = 'isa' END +SET [Description] = 'Isabi', [Definition] = NULL, [SortOrder] = 2593.00 WHERE [Code] = 'isa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isn', 'Isanzu', NULL, 258.20) END +VALUES ('isn', 'Isanzu', NULL, 2594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isanzu', [Definition] = NULL, [SortOrder] = 258.20 WHERE [Code] = 'isn' END +SET [Description] = 'Isanzu', [Definition] = NULL, [SortOrder] = 2594.00 WHERE [Code] = 'isn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agk', 'Isarog Agta', NULL, 258.30) END +VALUES ('agk', 'Isarog Agta', NULL, 2595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isarog Agta', [Definition] = NULL, [SortOrder] = 258.30 WHERE [Code] = 'agk' END +SET [Description] = 'Isarog Agta', [Definition] = NULL, [SortOrder] = 2595.00 WHERE [Code] = 'agk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isc', 'Isconahua', NULL, 258.40) END +VALUES ('isc', 'Isconahua', NULL, 2596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isconahua', [Definition] = NULL, [SortOrder] = 258.40 WHERE [Code] = 'isc' END +SET [Description] = 'Isconahua', [Definition] = NULL, [SortOrder] = 2596.00 WHERE [Code] = 'isc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igo', 'Isebe', NULL, 258.50) END +VALUES ('igo', 'Isebe', NULL, 2597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isebe', [Definition] = NULL, [SortOrder] = 258.50 WHERE [Code] = 'igo' END +SET [Description] = 'Isebe', [Definition] = NULL, [SortOrder] = 2597.00 WHERE [Code] = 'igo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'its') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('its', 'Isekiri', NULL, 258.60) END +VALUES ('its', 'Isekiri', NULL, 2598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isekiri', [Definition] = NULL, [SortOrder] = 258.60 WHERE [Code] = 'its' END +SET [Description] = 'Isekiri', [Definition] = NULL, [SortOrder] = 2598.00 WHERE [Code] = 'its' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isk', 'Ishkashimi', NULL, 258.70) END +VALUES ('isk', 'Ishkashimi', NULL, 2599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ishkashimi', [Definition] = NULL, [SortOrder] = 258.70 WHERE [Code] = 'isk' END +SET [Description] = 'Ishkashimi', [Definition] = NULL, [SortOrder] = 2599.00 WHERE [Code] = 'isk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inn', 'Isinai', NULL, 258.80) END +VALUES ('inn', 'Isinai', NULL, 2600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isinai', [Definition] = NULL, [SortOrder] = 258.80 WHERE [Code] = 'inn' END +SET [Description] = 'Isinai', [Definition] = NULL, [SortOrder] = 2600.00 WHERE [Code] = 'inn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srl', 'Isirawa', NULL, 258.90) END +VALUES ('srl', 'Isirawa', NULL, 2601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isirawa', [Definition] = NULL, [SortOrder] = 258.90 WHERE [Code] = 'srl' END +SET [Description] = 'Isirawa', [Definition] = NULL, [SortOrder] = 2601.00 WHERE [Code] = 'srl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crb', 'Island Carib', NULL, 259.00) END +VALUES ('crb', 'Island Carib', NULL, 2602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Island Carib', [Definition] = NULL, [SortOrder] = 259.00 WHERE [Code] = 'crb' END +SET [Description] = 'Island Carib', [Definition] = NULL, [SortOrder] = 2602.00 WHERE [Code] = 'crb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'icr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('icr', 'Islander Creole English', NULL, 259.10) END +VALUES ('icr', 'Islander Creole English', NULL, 2603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Islander Creole English', [Definition] = NULL, [SortOrder] = 259.10 WHERE [Code] = 'icr' END +SET [Description] = 'Islander Creole English', [Definition] = NULL, [SortOrder] = 2603.00 WHERE [Code] = 'icr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isd', 'Isnag', NULL, 259.20) END +VALUES ('isd', 'Isnag', NULL, 2604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isnag', [Definition] = NULL, [SortOrder] = 259.20 WHERE [Code] = 'isd' END +SET [Description] = 'Isnag', [Definition] = NULL, [SortOrder] = 2604.00 WHERE [Code] = 'isd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iso', 'Isoko', NULL, 259.30) END +VALUES ('iso', 'Isoko', NULL, 2605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isoko', [Definition] = NULL, [SortOrder] = 259.30 WHERE [Code] = 'iso' END +SET [Description] = 'Isoko', [Definition] = NULL, [SortOrder] = 2605.00 WHERE [Code] = 'iso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isr', 'Israeli Sign Language', NULL, 259.40) END +VALUES ('isr', 'Israeli Sign Language', NULL, 2606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Israeli Sign Language', [Definition] = NULL, [SortOrder] = 259.40 WHERE [Code] = 'isr' END +SET [Description] = 'Israeli Sign Language', [Definition] = NULL, [SortOrder] = 2606.00 WHERE [Code] = 'isr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mir', 'Isthmus Mixe', NULL, 259.50) END +VALUES ('mir', 'Isthmus Mixe', NULL, 2607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus Mixe', [Definition] = NULL, [SortOrder] = 259.50 WHERE [Code] = 'mir' END +SET [Description] = 'Isthmus Mixe', [Definition] = NULL, [SortOrder] = 2607.00 WHERE [Code] = 'mir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zai', 'Isthmus Zapotec', NULL, 259.60) END +VALUES ('zai', 'Isthmus Zapotec', NULL, 2608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus Zapotec', [Definition] = NULL, [SortOrder] = 259.60 WHERE [Code] = 'zai' END +SET [Description] = 'Isthmus Zapotec', [Definition] = NULL, [SortOrder] = 2608.00 WHERE [Code] = 'zai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhk', 'Isthmus-Cosoleacaque Nahuatl', NULL, 259.70) END +VALUES ('nhk', 'Isthmus-Cosoleacaque Nahuatl', NULL, 2609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus-Cosoleacaque Nahuatl', [Definition] = NULL, [SortOrder] = 259.70 WHERE [Code] = 'nhk' END +SET [Description] = 'Isthmus-Cosoleacaque Nahuatl', [Definition] = NULL, [SortOrder] = 2609.00 WHERE [Code] = 'nhk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhx', 'Isthmus-Mecayapan Nahuatl', NULL, 259.80) END +VALUES ('nhx', 'Isthmus-Mecayapan Nahuatl', NULL, 2610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus-Mecayapan Nahuatl', [Definition] = NULL, [SortOrder] = 259.80 WHERE [Code] = 'nhx' END +SET [Description] = 'Isthmus-Mecayapan Nahuatl', [Definition] = NULL, [SortOrder] = 2610.00 WHERE [Code] = 'nhx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhp', 'Isthmus-Pajapan Nahuatl', NULL, 259.90) END +VALUES ('nhp', 'Isthmus-Pajapan Nahuatl', NULL, 2611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus-Pajapan Nahuatl', [Definition] = NULL, [SortOrder] = 259.90 WHERE [Code] = 'nhp' END +SET [Description] = 'Isthmus-Pajapan Nahuatl', [Definition] = NULL, [SortOrder] = 2611.00 WHERE [Code] = 'nhp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ist') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ist', 'Istriot', NULL, 260.00) END +VALUES ('ist', 'Istriot', NULL, 2612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Istriot', [Definition] = NULL, [SortOrder] = 260.00 WHERE [Code] = 'ist' END +SET [Description] = 'Istriot', [Definition] = NULL, [SortOrder] = 2612.00 WHERE [Code] = 'ist' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruo', 'Istro Romanian', NULL, 260.10) END +VALUES ('ruo', 'Istro Romanian', NULL, 2613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Istro Romanian', [Definition] = NULL, [SortOrder] = 260.10 WHERE [Code] = 'ruo' END +SET [Description] = 'Istro Romanian', [Definition] = NULL, [SortOrder] = 2613.00 WHERE [Code] = 'ruo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szv', 'Isu (Fako Division)', NULL, 260.20) END +VALUES ('szv', 'Isu (Fako Division)', NULL, 2614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isu (Fako Division)', [Definition] = NULL, [SortOrder] = 260.20 WHERE [Code] = 'szv' END +SET [Description] = 'Isu (Fako Division)', [Definition] = NULL, [SortOrder] = 2614.00 WHERE [Code] = 'szv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isu', 'Isu (Menchum Division)', NULL, 260.30) END +VALUES ('isu', 'Isu (Menchum Division)', NULL, 2615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isu (Menchum Division)', [Definition] = NULL, [SortOrder] = 260.30 WHERE [Code] = 'isu' END +SET [Description] = 'Isu (Menchum Division)', [Definition] = NULL, [SortOrder] = 2615.00 WHERE [Code] = 'isu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ita') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ita', 'Italian', NULL, 260.40) END +VALUES ('ita', 'Italian', NULL, 2616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Italian', [Definition] = NULL, [SortOrder] = 260.40 WHERE [Code] = 'ita' END +SET [Description] = 'Italian', [Definition] = NULL, [SortOrder] = 2616.00 WHERE [Code] = 'ita' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ise') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ise', 'Italian Sign Language', NULL, 260.50) END +VALUES ('ise', 'Italian Sign Language', NULL, 2617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Italian Sign Language', [Definition] = NULL, [SortOrder] = 260.50 WHERE [Code] = 'ise' END +SET [Description] = 'Italian Sign Language', [Definition] = NULL, [SortOrder] = 2617.00 WHERE [Code] = 'ise' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itv', 'Itawit', NULL, 260.60) END +VALUES ('itv', 'Itawit', NULL, 2618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itawit', [Definition] = NULL, [SortOrder] = 260.60 WHERE [Code] = 'itv' END +SET [Description] = 'Itawit', [Definition] = NULL, [SortOrder] = 2618.00 WHERE [Code] = 'itv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itl', 'Itelmen', NULL, 260.70) END +VALUES ('itl', 'Itelmen', NULL, 2619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itelmen', [Definition] = NULL, [SortOrder] = 260.70 WHERE [Code] = 'itl' END +SET [Description] = 'Itelmen', [Definition] = NULL, [SortOrder] = 2619.00 WHERE [Code] = 'itl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ite') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ite', 'Itene', NULL, 260.80) END +VALUES ('ite', 'Itene', NULL, 2620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itene', [Definition] = NULL, [SortOrder] = 260.80 WHERE [Code] = 'ite' END +SET [Description] = 'Itene', [Definition] = NULL, [SortOrder] = 2620.00 WHERE [Code] = 'ite' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itr', 'Iteri', NULL, 260.90) END +VALUES ('itr', 'Iteri', NULL, 2621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iteri', [Definition] = NULL, [SortOrder] = 260.90 WHERE [Code] = 'itr' END +SET [Description] = 'Iteri', [Definition] = NULL, [SortOrder] = 2621.00 WHERE [Code] = 'itr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itx', 'Itik', NULL, 261.00) END +VALUES ('itx', 'Itik', NULL, 2622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itik', [Definition] = NULL, [SortOrder] = 261.00 WHERE [Code] = 'itx' END +SET [Description] = 'Itik', [Definition] = NULL, [SortOrder] = 2622.00 WHERE [Code] = 'itx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itw', 'Ito', NULL, 261.10) END +VALUES ('itw', 'Ito', NULL, 2623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ito', [Definition] = NULL, [SortOrder] = 261.10 WHERE [Code] = 'itw' END +SET [Description] = 'Ito', [Definition] = NULL, [SortOrder] = 2623.00 WHERE [Code] = 'itw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ito') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ito', 'Itonama', NULL, 261.20) END +VALUES ('ito', 'Itonama', NULL, 2624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itonama', [Definition] = NULL, [SortOrder] = 261.20 WHERE [Code] = 'ito' END +SET [Description] = 'Itonama', [Definition] = NULL, [SortOrder] = 2624.00 WHERE [Code] = 'ito' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itm', 'Itu Mbon Uzo', NULL, 261.30) END +VALUES ('itm', 'Itu Mbon Uzo', NULL, 2625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itu Mbon Uzo', [Definition] = NULL, [SortOrder] = 261.30 WHERE [Code] = 'itm' END +SET [Description] = 'Itu Mbon Uzo', [Definition] = NULL, [SortOrder] = 2625.00 WHERE [Code] = 'itm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mce', 'Itundujia Mixtec', NULL, 261.40) END +VALUES ('mce', 'Itundujia Mixtec', NULL, 2626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itundujia Mixtec', [Definition] = NULL, [SortOrder] = 261.40 WHERE [Code] = 'mce' END +SET [Description] = 'Itundujia Mixtec', [Definition] = NULL, [SortOrder] = 2626.00 WHERE [Code] = 'mce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itz', 'Itzá', NULL, 261.50) END +VALUES ('itz', 'Itzá', NULL, 2627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itzá', [Definition] = NULL, [SortOrder] = 261.50 WHERE [Code] = 'itz' END +SET [Description] = 'Itzá', [Definition] = NULL, [SortOrder] = 2627.00 WHERE [Code] = 'itz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ium') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ium', 'Iu Mien', NULL, 261.60) END +VALUES ('ium', 'Iu Mien', NULL, 2628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iu Mien', [Definition] = NULL, [SortOrder] = 261.60 WHERE [Code] = 'ium' END +SET [Description] = 'Iu Mien', [Definition] = NULL, [SortOrder] = 2628.00 WHERE [Code] = 'ium' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ivv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ivv', 'Ivatan', NULL, 261.70) END +VALUES ('ivv', 'Ivatan', NULL, 2629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ivatan', [Definition] = NULL, [SortOrder] = 261.70 WHERE [Code] = 'ivv' END +SET [Description] = 'Ivatan', [Definition] = NULL, [SortOrder] = 2629.00 WHERE [Code] = 'ivv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atg', 'Ivbie North-Okpela-Arhe', NULL, 261.80) END +VALUES ('atg', 'Ivbie North-Okpela-Arhe', NULL, 2630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ivbie North-Okpela-Arhe', [Definition] = NULL, [SortOrder] = 261.80 WHERE [Code] = 'atg' END +SET [Description] = 'Ivbie North-Okpela-Arhe', [Definition] = NULL, [SortOrder] = 2630.00 WHERE [Code] = 'atg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibd', 'Iwaidja', NULL, 261.90) END +VALUES ('ibd', 'Iwaidja', NULL, 2631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iwaidja', [Definition] = NULL, [SortOrder] = 261.90 WHERE [Code] = 'ibd' END +SET [Description] = 'Iwaidja', [Definition] = NULL, [SortOrder] = 2631.00 WHERE [Code] = 'ibd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbm', 'Iwal', NULL, 262.00) END +VALUES ('kbm', 'Iwal', NULL, 2632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iwal', [Definition] = NULL, [SortOrder] = 262.00 WHERE [Code] = 'kbm' END +SET [Description] = 'Iwal', [Definition] = NULL, [SortOrder] = 2632.00 WHERE [Code] = 'kbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iwm', 'Iwam', NULL, 262.10) END +VALUES ('iwm', 'Iwam', NULL, 2633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iwam', [Definition] = NULL, [SortOrder] = 262.10 WHERE [Code] = 'iwm' END +SET [Description] = 'Iwam', [Definition] = NULL, [SortOrder] = 2633.00 WHERE [Code] = 'iwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iwo', 'Iwur', NULL, 262.20) END +VALUES ('iwo', 'Iwur', NULL, 2634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iwur', [Definition] = NULL, [SortOrder] = 262.20 WHERE [Code] = 'iwo' END +SET [Description] = 'Iwur', [Definition] = NULL, [SortOrder] = 2634.00 WHERE [Code] = 'iwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ixc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ixc', 'Ixcatec', NULL, 262.30) END +VALUES ('ixc', 'Ixcatec', NULL, 2635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixcatec', [Definition] = NULL, [SortOrder] = 262.30 WHERE [Code] = 'ixc' END +SET [Description] = 'Ixcatec', [Definition] = NULL, [SortOrder] = 2635.00 WHERE [Code] = 'ixc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzi', 'Ixcatlán Mazatec', NULL, 262.40) END +VALUES ('mzi', 'Ixcatlán Mazatec', NULL, 2636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixcatlán Mazatec', [Definition] = NULL, [SortOrder] = 262.40 WHERE [Code] = 'mzi' END +SET [Description] = 'Ixcatlán Mazatec', [Definition] = NULL, [SortOrder] = 2636.00 WHERE [Code] = 'mzi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ixl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ixl', 'Ixil', NULL, 262.50) END +VALUES ('ixl', 'Ixil', NULL, 2637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixil', [Definition] = NULL, [SortOrder] = 262.50 WHERE [Code] = 'ixl' END +SET [Description] = 'Ixil', [Definition] = NULL, [SortOrder] = 2637.00 WHERE [Code] = 'ixl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmj', 'Ixtayutla Mixtec', NULL, 262.60) END +VALUES ('vmj', 'Ixtayutla Mixtec', NULL, 2638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixtayutla Mixtec', [Definition] = NULL, [SortOrder] = 262.60 WHERE [Code] = 'vmj' END +SET [Description] = 'Ixtayutla Mixtec', [Definition] = NULL, [SortOrder] = 2638.00 WHERE [Code] = 'vmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otz', 'Ixtenco Otomi', NULL, 262.70) END +VALUES ('otz', 'Ixtenco Otomi', NULL, 2639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixtenco Otomi', [Definition] = NULL, [SortOrder] = 262.70 WHERE [Code] = 'otz' END +SET [Description] = 'Ixtenco Otomi', [Definition] = NULL, [SortOrder] = 2639.00 WHERE [Code] = 'otz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iya', 'Iyayu', NULL, 262.80) END +VALUES ('iya', 'Iyayu', NULL, 2640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyayu', [Definition] = NULL, [SortOrder] = 262.80 WHERE [Code] = 'iya' END +SET [Description] = 'Iyayu', [Definition] = NULL, [SortOrder] = 2640.00 WHERE [Code] = 'iya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uiv', 'Iyive', NULL, 262.90) END +VALUES ('uiv', 'Iyive', NULL, 2641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyive', [Definition] = NULL, [SortOrder] = 262.90 WHERE [Code] = 'uiv' END +SET [Description] = 'Iyive', [Definition] = NULL, [SortOrder] = 2641.00 WHERE [Code] = 'uiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nca', 'Iyo', NULL, 263.00) END +VALUES ('nca', 'Iyo', NULL, 2642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyo', [Definition] = NULL, [SortOrder] = 263.00 WHERE [Code] = 'nca' END +SET [Description] = 'Iyo', [Definition] = NULL, [SortOrder] = 2642.00 WHERE [Code] = 'nca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crq', 'Iyo''wujwa Chorote', NULL, 263.10) END +VALUES ('crq', 'Iyo''wujwa Chorote', NULL, 2643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyo''wujwa Chorote', [Definition] = NULL, [SortOrder] = 263.10 WHERE [Code] = 'crq' END +SET [Description] = 'Iyo''wujwa Chorote', [Definition] = NULL, [SortOrder] = 2643.00 WHERE [Code] = 'crq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crt', 'Iyojwa''ja Chorote', NULL, 263.20) END +VALUES ('crt', 'Iyojwa''ja Chorote', NULL, 2644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyojwa''ja Chorote', [Definition] = NULL, [SortOrder] = 263.20 WHERE [Code] = 'crt' END +SET [Description] = 'Iyojwa''ja Chorote', [Definition] = NULL, [SortOrder] = 2644.00 WHERE [Code] = 'crt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'izr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('izr', 'Izere', NULL, 263.30) END +VALUES ('izr', 'Izere', NULL, 2645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Izere', [Definition] = NULL, [SortOrder] = 263.30 WHERE [Code] = 'izr' END +SET [Description] = 'Izere', [Definition] = NULL, [SortOrder] = 2645.00 WHERE [Code] = 'izr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'izz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('izz', 'Izii', NULL, 263.40) END +VALUES ('izz', 'Izii', NULL, 2646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Izii', [Definition] = NULL, [SortOrder] = 263.40 WHERE [Code] = 'izz' END +SET [Description] = 'Izii', [Definition] = NULL, [SortOrder] = 2646.00 WHERE [Code] = 'izz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ijc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijc', 'Izon', NULL, 263.50) END +VALUES ('ijc', 'Izon', NULL, 2647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Izon', [Definition] = NULL, [SortOrder] = 263.50 WHERE [Code] = 'ijc' END +SET [Description] = 'Izon', [Definition] = NULL, [SortOrder] = 2647.00 WHERE [Code] = 'ijc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbo', 'Izora', NULL, 263.60) END +VALUES ('cbo', 'Izora', NULL, 2648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Izora', [Definition] = NULL, [SortOrder] = 263.60 WHERE [Code] = 'cbo' END +SET [Description] = 'Izora', [Definition] = NULL, [SortOrder] = 2648.00 WHERE [Code] = 'cbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbt', 'Jabutí', NULL, 263.70) END +VALUES ('jbt', 'Jabutí', NULL, 2649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jabutí', [Definition] = NULL, [SortOrder] = 263.70 WHERE [Code] = 'jbt' END +SET [Description] = 'Jabutí', [Definition] = NULL, [SortOrder] = 2649.00 WHERE [Code] = 'jbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jda', 'Jad', NULL, 263.80) END +VALUES ('jda', 'Jad', NULL, 2650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jad', [Definition] = NULL, [SortOrder] = 263.80 WHERE [Code] = 'jda' END +SET [Description] = 'Jad', [Definition] = NULL, [SortOrder] = 2650.00 WHERE [Code] = 'jda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jdg', 'Jadgali', NULL, 263.90) END +VALUES ('jdg', 'Jadgali', NULL, 2651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jadgali', [Definition] = NULL, [SortOrder] = 263.90 WHERE [Code] = 'jdg' END +SET [Description] = 'Jadgali', [Definition] = NULL, [SortOrder] = 2651.00 WHERE [Code] = 'jdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jah', 'Jah Hut', NULL, 264.00) END +VALUES ('jah', 'Jah Hut', NULL, 2652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jah Hut', [Definition] = NULL, [SortOrder] = 264.00 WHERE [Code] = 'jah' END +SET [Description] = 'Jah Hut', [Definition] = NULL, [SortOrder] = 2652.00 WHERE [Code] = 'jah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jad', 'Jahanka', NULL, 264.10) END +VALUES ('jad', 'Jahanka', NULL, 2653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jahanka', [Definition] = NULL, [SortOrder] = 264.10 WHERE [Code] = 'jad' END +SET [Description] = 'Jahanka', [Definition] = NULL, [SortOrder] = 2653.00 WHERE [Code] = 'jad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awv', 'Jair Awyu', NULL, 264.20) END +VALUES ('awv', 'Jair Awyu', NULL, 2654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jair Awyu', [Definition] = NULL, [SortOrder] = 264.20 WHERE [Code] = 'awv' END +SET [Description] = 'Jair Awyu', [Definition] = NULL, [SortOrder] = 2654.00 WHERE [Code] = 'awv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xjt', 'Jaitmatang', NULL, 264.30) END +VALUES ('xjt', 'Jaitmatang', NULL, 2655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaitmatang', [Definition] = NULL, [SortOrder] = 264.30 WHERE [Code] = 'xjt' END +SET [Description] = 'Jaitmatang', [Definition] = NULL, [SortOrder] = 2655.00 WHERE [Code] = 'xjt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jat', 'Jakati', NULL, 264.40) END +VALUES ('jat', 'Jakati', NULL, 2656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jakati', [Definition] = NULL, [SortOrder] = 264.40 WHERE [Code] = 'jat' END +SET [Description] = 'Jakati', [Definition] = NULL, [SortOrder] = 2656.00 WHERE [Code] = 'jat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jrt', 'Jakattoe', NULL, 264.50) END +VALUES ('jrt', 'Jakattoe', NULL, 2657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jakattoe', [Definition] = NULL, [SortOrder] = 264.50 WHERE [Code] = 'jrt' END +SET [Description] = 'Jakattoe', [Definition] = NULL, [SortOrder] = 2657.00 WHERE [Code] = 'jrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jak', 'Jakun', NULL, 264.60) END +VALUES ('jak', 'Jakun', NULL, 2658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jakun', [Definition] = NULL, [SortOrder] = 264.60 WHERE [Code] = 'jak' END +SET [Description] = 'Jakun', [Definition] = NULL, [SortOrder] = 2658.00 WHERE [Code] = 'jak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maj', 'Jalapa De Díaz Mazatec', NULL, 264.70) END +VALUES ('maj', 'Jalapa De Díaz Mazatec', NULL, 2659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jalapa De Díaz Mazatec', [Definition] = NULL, [SortOrder] = 264.70 WHERE [Code] = 'maj' END +SET [Description] = 'Jalapa De Díaz Mazatec', [Definition] = NULL, [SortOrder] = 2659.00 WHERE [Code] = 'maj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxl', 'Jalkunan', NULL, 264.80) END +VALUES ('bxl', 'Jalkunan', NULL, 2660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jalkunan', [Definition] = NULL, [SortOrder] = 264.80 WHERE [Code] = 'bxl' END +SET [Description] = 'Jalkunan', [Definition] = NULL, [SortOrder] = 2660.00 WHERE [Code] = 'bxl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jcs', 'Jamaican Country Sign Language', NULL, 264.90) END +VALUES ('jcs', 'Jamaican Country Sign Language', NULL, 2661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamaican Country Sign Language', [Definition] = NULL, [SortOrder] = 264.90 WHERE [Code] = 'jcs' END +SET [Description] = 'Jamaican Country Sign Language', [Definition] = NULL, [SortOrder] = 2661.00 WHERE [Code] = 'jcs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jam', 'Jamaican Creole English', NULL, 265.00) END +VALUES ('jam', 'Jamaican Creole English', NULL, 2662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamaican Creole English', [Definition] = NULL, [SortOrder] = 265.00 WHERE [Code] = 'jam' END +SET [Description] = 'Jamaican Creole English', [Definition] = NULL, [SortOrder] = 2662.00 WHERE [Code] = 'jam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jls', 'Jamaican Sign Language', NULL, 265.10) END +VALUES ('jls', 'Jamaican Sign Language', NULL, 2663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamaican Sign Language', [Definition] = NULL, [SortOrder] = 265.10 WHERE [Code] = 'jls' END +SET [Description] = 'Jamaican Sign Language', [Definition] = NULL, [SortOrder] = 2663.00 WHERE [Code] = 'jls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaa', 'Jamamadí', NULL, 265.20) END +VALUES ('jaa', 'Jamamadí', NULL, 2664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamamadí', [Definition] = NULL, [SortOrder] = 265.20 WHERE [Code] = 'jaa' END +SET [Description] = 'Jamamadí', [Definition] = NULL, [SortOrder] = 2664.00 WHERE [Code] = 'jaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jax', 'Jambi Malay', NULL, 265.30) END +VALUES ('jax', 'Jambi Malay', NULL, 2665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jambi Malay', [Definition] = NULL, [SortOrder] = 265.30 WHERE [Code] = 'jax' END +SET [Description] = 'Jambi Malay', [Definition] = NULL, [SortOrder] = 2665.00 WHERE [Code] = 'jax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxt', 'Jamiltepec Mixtec', NULL, 265.40) END +VALUES ('mxt', 'Jamiltepec Mixtec', NULL, 2666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamiltepec Mixtec', [Definition] = NULL, [SortOrder] = 265.40 WHERE [Code] = 'mxt' END +SET [Description] = 'Jamiltepec Mixtec', [Definition] = NULL, [SortOrder] = 2666.00 WHERE [Code] = 'mxt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djm', 'Jamsay Dogon', NULL, 265.50) END +VALUES ('djm', 'Jamsay Dogon', NULL, 2667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamsay Dogon', [Definition] = NULL, [SortOrder] = 265.50 WHERE [Code] = 'djm' END +SET [Description] = 'Jamsay Dogon', [Definition] = NULL, [SortOrder] = 2667.00 WHERE [Code] = 'djm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jan', 'Jandai', NULL, 265.60) END +VALUES ('jan', 'Jandai', NULL, 2668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jandai', [Definition] = NULL, [SortOrder] = 265.60 WHERE [Code] = 'jan' END +SET [Description] = 'Jandai', [Definition] = NULL, [SortOrder] = 2668.00 WHERE [Code] = 'jan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jnd', 'Jandavra', NULL, 265.70) END +VALUES ('jnd', 'Jandavra', NULL, 2669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jandavra', [Definition] = NULL, [SortOrder] = 265.70 WHERE [Code] = 'jnd' END +SET [Description] = 'Jandavra', [Definition] = NULL, [SortOrder] = 2669.00 WHERE [Code] = 'jnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djo', 'Jangkang', NULL, 265.80) END +VALUES ('djo', 'Jangkang', NULL, 2670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jangkang', [Definition] = NULL, [SortOrder] = 265.80 WHERE [Code] = 'djo' END +SET [Description] = 'Jangkang', [Definition] = NULL, [SortOrder] = 2670.00 WHERE [Code] = 'djo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jna', 'Jangshung', NULL, 265.90) END +VALUES ('jna', 'Jangshung', NULL, 2671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jangshung', [Definition] = NULL, [SortOrder] = 265.90 WHERE [Code] = 'jna' END +SET [Description] = 'Jangshung', [Definition] = NULL, [SortOrder] = 2671.00 WHERE [Code] = 'jna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jni', 'Janji', NULL, 266.00) END +VALUES ('jni', 'Janji', NULL, 2672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Janji', [Definition] = NULL, [SortOrder] = 266.00 WHERE [Code] = 'jni' END +SET [Description] = 'Janji', [Definition] = NULL, [SortOrder] = 2672.00 WHERE [Code] = 'jni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpn', 'Japanese', NULL, 266.10) END +VALUES ('jpn', 'Japanese', NULL, 2673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Japanese', [Definition] = NULL, [SortOrder] = 266.10 WHERE [Code] = 'jpn' END +SET [Description] = 'Japanese', [Definition] = NULL, [SortOrder] = 2673.00 WHERE [Code] = 'jpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jsl', 'Japanese Sign Language', NULL, 266.20) END +VALUES ('jsl', 'Japanese Sign Language', NULL, 2674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Japanese Sign Language', [Definition] = NULL, [SortOrder] = 266.20 WHERE [Code] = 'jsl' END +SET [Description] = 'Japanese Sign Language', [Definition] = NULL, [SortOrder] = 2674.00 WHERE [Code] = 'jsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jru', 'Japrería', NULL, 266.30) END +VALUES ('jru', 'Japrería', NULL, 2675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Japrería', [Definition] = NULL, [SortOrder] = 266.30 WHERE [Code] = 'jru' END +SET [Description] = 'Japrería', [Definition] = NULL, [SortOrder] = 2675.00 WHERE [Code] = 'jru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jqr', 'Jaqaru', NULL, 266.40) END +VALUES ('jqr', 'Jaqaru', NULL, 2676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaqaru', [Definition] = NULL, [SortOrder] = 266.40 WHERE [Code] = 'jqr' END +SET [Description] = 'Jaqaru', [Definition] = NULL, [SortOrder] = 2676.00 WHERE [Code] = 'jqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaf', 'Jara', NULL, 266.50) END +VALUES ('jaf', 'Jara', NULL, 2677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jara', [Definition] = NULL, [SortOrder] = 266.50 WHERE [Code] = 'jaf' END +SET [Description] = 'Jara', [Definition] = NULL, [SortOrder] = 2677.00 WHERE [Code] = 'jaf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jra', 'Jarai', NULL, 266.60) END +VALUES ('jra', 'Jarai', NULL, 2678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jarai', [Definition] = NULL, [SortOrder] = 266.60 WHERE [Code] = 'jra' END +SET [Description] = 'Jarai', [Definition] = NULL, [SortOrder] = 2678.00 WHERE [Code] = 'jra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anq', 'Jarawa (India)', NULL, 266.70) END +VALUES ('anq', 'Jarawa (India)', NULL, 2679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jarawa (India)', [Definition] = NULL, [SortOrder] = 266.70 WHERE [Code] = 'anq' END +SET [Description] = 'Jarawa (India)', [Definition] = NULL, [SortOrder] = 2679.00 WHERE [Code] = 'anq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddj', 'Jaru', NULL, 266.80) END +VALUES ('ddj', 'Jaru', NULL, 2680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaru', [Definition] = NULL, [SortOrder] = 266.80 WHERE [Code] = 'ddj' END +SET [Description] = 'Jaru', [Definition] = NULL, [SortOrder] = 2680.00 WHERE [Code] = 'ddj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxw', 'Jauja Wanca Quechua', NULL, 266.90) END +VALUES ('qxw', 'Jauja Wanca Quechua', NULL, 2681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jauja Wanca Quechua', [Definition] = NULL, [SortOrder] = 266.90 WHERE [Code] = 'qxw' END +SET [Description] = 'Jauja Wanca Quechua', [Definition] = NULL, [SortOrder] = 2681.00 WHERE [Code] = 'qxw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jns', 'Jaunsari', NULL, 267.00) END +VALUES ('jns', 'Jaunsari', NULL, 2682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaunsari', [Definition] = NULL, [SortOrder] = 267.00 WHERE [Code] = 'jns' END +SET [Description] = 'Jaunsari', [Definition] = NULL, [SortOrder] = 2682.00 WHERE [Code] = 'jns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jav', 'Javanese', NULL, 267.10) END +VALUES ('jav', 'Javanese', NULL, 2683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Javanese', [Definition] = NULL, [SortOrder] = 267.10 WHERE [Code] = 'jav' END +SET [Description] = 'Javanese', [Definition] = NULL, [SortOrder] = 2683.00 WHERE [Code] = 'jav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jvd', 'Javindo', NULL, 267.20) END +VALUES ('jvd', 'Javindo', NULL, 2684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Javindo', [Definition] = NULL, [SortOrder] = 267.20 WHERE [Code] = 'jvd' END +SET [Description] = 'Javindo', [Definition] = NULL, [SortOrder] = 2684.00 WHERE [Code] = 'jvd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaz', 'Jawe', NULL, 267.30) END +VALUES ('jaz', 'Jawe', NULL, 2685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jawe', [Definition] = NULL, [SortOrder] = 267.30 WHERE [Code] = 'jaz' END +SET [Description] = 'Jawe', [Definition] = NULL, [SortOrder] = 2685.00 WHERE [Code] = 'jaz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djn', 'Jawoyn', NULL, 267.40) END +VALUES ('djn', 'Jawoyn', NULL, 2686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jawoyn', [Definition] = NULL, [SortOrder] = 267.40 WHERE [Code] = 'djn' END +SET [Description] = 'Jawoyn', [Definition] = NULL, [SortOrder] = 2686.00 WHERE [Code] = 'djn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jyy', 'Jaya', NULL, 267.50) END +VALUES ('jyy', 'Jaya', NULL, 2687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaya', [Definition] = NULL, [SortOrder] = 267.50 WHERE [Code] = 'jyy' END +SET [Description] = 'Jaya', [Definition] = NULL, [SortOrder] = 2687.00 WHERE [Code] = 'jyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jeb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jeb', 'Jebero', NULL, 267.60) END +VALUES ('jeb', 'Jebero', NULL, 2688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jebero', [Definition] = NULL, [SortOrder] = 267.60 WHERE [Code] = 'jeb' END +SET [Description] = 'Jebero', [Definition] = NULL, [SortOrder] = 2688.00 WHERE [Code] = 'jeb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jeh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jeh', 'Jeh', NULL, 267.70) END +VALUES ('jeh', 'Jeh', NULL, 2689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jeh', [Definition] = NULL, [SortOrder] = 267.70 WHERE [Code] = 'jeh' END +SET [Description] = 'Jeh', [Definition] = NULL, [SortOrder] = 2689.00 WHERE [Code] = 'jeh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jhi', 'Jehai', NULL, 267.80) END +VALUES ('jhi', 'Jehai', NULL, 2690.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Jehai', [Definition] = NULL, [SortOrder] = 2690.00 WHERE [Code] = 'jhi' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('pzn', 'Jejarra Naga', NULL, 2691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jehai', [Definition] = NULL, [SortOrder] = 267.80 WHERE [Code] = 'jhi' END +SET [Description] = 'Jejarra Naga', [Definition] = NULL, [SortOrder] = 2691.00 WHERE [Code] = 'pzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jje', 'Jejueo', NULL, 267.90) END +VALUES ('jje', 'Jejueo', NULL, 2692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jejueo', [Definition] = NULL, [SortOrder] = 267.90 WHERE [Code] = 'jje' END +SET [Description] = 'Jejueo', [Definition] = NULL, [SortOrder] = 2692.00 WHERE [Code] = 'jje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tow', 'Jemez', NULL, 268.00) END +VALUES ('tow', 'Jemez', NULL, 2693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jemez', [Definition] = NULL, [SortOrder] = 268.00 WHERE [Code] = 'tow' END +SET [Description] = 'Jemez', [Definition] = NULL, [SortOrder] = 2693.00 WHERE [Code] = 'tow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bze', 'Jenaama Bozo', NULL, 268.10) END +VALUES ('bze', 'Jenaama Bozo', NULL, 2694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jenaama Bozo', [Definition] = NULL, [SortOrder] = 268.10 WHERE [Code] = 'bze' END +SET [Description] = 'Jenaama Bozo', [Definition] = NULL, [SortOrder] = 2694.00 WHERE [Code] = 'bze' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xuj', 'Jennu Kurumba', NULL, 268.20) END +VALUES ('xuj', 'Jennu Kurumba', NULL, 2695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jennu Kurumba', [Definition] = NULL, [SortOrder] = 268.20 WHERE [Code] = 'xuj' END +SET [Description] = 'Jennu Kurumba', [Definition] = NULL, [SortOrder] = 2695.00 WHERE [Code] = 'xuj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jer', 'Jere', NULL, 268.30) END +VALUES ('jer', 'Jere', NULL, 2696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jere', [Definition] = NULL, [SortOrder] = 268.30 WHERE [Code] = 'jer' END +SET [Description] = 'Jere', [Definition] = NULL, [SortOrder] = 2696.00 WHERE [Code] = 'jer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jek', 'Jeri Kuo', NULL, 268.40) END +VALUES ('jek', 'Jeri Kuo', NULL, 2697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jeri Kuo', [Definition] = NULL, [SortOrder] = 268.40 WHERE [Code] = 'jek' END +SET [Description] = 'Jeri Kuo', [Definition] = NULL, [SortOrder] = 2697.00 WHERE [Code] = 'jek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrf', 'Jèrriais', NULL, 268.50) END +VALUES ('nrf', 'Jèrriais', NULL, 2698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jèrriais', [Definition] = NULL, [SortOrder] = 268.50 WHERE [Code] = 'nrf' END +SET [Description] = 'Jèrriais', [Definition] = NULL, [SortOrder] = 2698.00 WHERE [Code] = 'nrf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jee', 'Jerung', NULL, 268.60) END +VALUES ('jee', 'Jerung', NULL, 2699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jerung', [Definition] = NULL, [SortOrder] = 268.60 WHERE [Code] = 'jee' END +SET [Description] = 'Jerung', [Definition] = NULL, [SortOrder] = 2699.00 WHERE [Code] = 'jee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmr', 'Jewish Babylonian Aramaic (ca. 200-1200 CE)', NULL, 268.70) END +VALUES ('tmr', 'Jewish Babylonian Aramaic (ca. 200-1200 CE)', NULL, 2700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jewish Babylonian Aramaic (ca. 200-1200 CE)', [Definition] = NULL, [SortOrder] = 268.70 WHERE [Code] = 'tmr' END +SET [Description] = 'Jewish Babylonian Aramaic (ca. 200-1200 CE)', [Definition] = NULL, [SortOrder] = 2700.00 WHERE [Code] = 'tmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpa', 'Jewish Palestinian Aramaic', NULL, 268.80) END +VALUES ('jpa', 'Jewish Palestinian Aramaic', NULL, 2701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jewish Palestinian Aramaic', [Definition] = NULL, [SortOrder] = 268.80 WHERE [Code] = 'jpa' END +SET [Description] = 'Jewish Palestinian Aramaic', [Definition] = NULL, [SortOrder] = 2701.00 WHERE [Code] = 'jpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jhs', 'Jhankot Sign Language', NULL, 268.90) END +VALUES ('jhs', 'Jhankot Sign Language', NULL, 2702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jhankot Sign Language', [Definition] = NULL, [SortOrder] = 268.90 WHERE [Code] = 'jhs' END +SET [Description] = 'Jhankot Sign Language', [Definition] = NULL, [SortOrder] = 2702.00 WHERE [Code] = 'jhs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jio', 'Jiamao', NULL, 269.00) END +VALUES ('jio', 'Jiamao', NULL, 2703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiamao', [Definition] = NULL, [SortOrder] = 269.00 WHERE [Code] = 'jio' END +SET [Description] = 'Jiamao', [Definition] = NULL, [SortOrder] = 2703.00 WHERE [Code] = 'jio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jya', 'Jiarong', NULL, 269.10) END +VALUES ('jya', 'Jiarong', NULL, 2704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiarong', [Definition] = NULL, [SortOrder] = 269.10 WHERE [Code] = 'jya' END +SET [Description] = 'Jiarong', [Definition] = NULL, [SortOrder] = 2704.00 WHERE [Code] = 'jya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juo', 'Jiba', NULL, 269.20) END +VALUES ('juo', 'Jiba', NULL, 2705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiba', [Definition] = NULL, [SortOrder] = 269.20 WHERE [Code] = 'juo' END +SET [Description] = 'Jiba', [Definition] = NULL, [SortOrder] = 2705.00 WHERE [Code] = 'juo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jib', 'Jibu', NULL, 269.30) END +VALUES ('jib', 'Jibu', NULL, 2706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jibu', [Definition] = NULL, [SortOrder] = 269.30 WHERE [Code] = 'jib' END +SET [Description] = 'Jibu', [Definition] = NULL, [SortOrder] = 2706.00 WHERE [Code] = 'jib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apj', 'Jicarilla Apache', NULL, 269.40) END +VALUES ('apj', 'Jicarilla Apache', NULL, 2707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jicarilla Apache', [Definition] = NULL, [SortOrder] = 269.40 WHERE [Code] = 'apj' END +SET [Description] = 'Jicarilla Apache', [Definition] = NULL, [SortOrder] = 2707.00 WHERE [Code] = 'apj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jii', 'Jiiddu', NULL, 269.50) END +VALUES ('jii', 'Jiiddu', NULL, 2708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiiddu', [Definition] = NULL, [SortOrder] = 269.50 WHERE [Code] = 'jii' END +SET [Description] = 'Jiiddu', [Definition] = NULL, [SortOrder] = 2708.00 WHERE [Code] = 'jii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jie', 'Jilbe', NULL, 269.60) END +VALUES ('jie', 'Jilbe', NULL, 2709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jilbe', [Definition] = NULL, [SortOrder] = 269.60 WHERE [Code] = 'jie' END +SET [Description] = 'Jilbe', [Definition] = NULL, [SortOrder] = 2709.00 WHERE [Code] = 'jie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jil', 'Jilim', NULL, 269.70) END +VALUES ('jil', 'Jilim', NULL, 2710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jilim', [Definition] = NULL, [SortOrder] = 269.70 WHERE [Code] = 'jil' END +SET [Description] = 'Jilim', [Definition] = NULL, [SortOrder] = 2710.00 WHERE [Code] = 'jil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jim', 'Jimi (Cameroon)', NULL, 269.80) END +VALUES ('jim', 'Jimi (Cameroon)', NULL, 2711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jimi (Cameroon)', [Definition] = NULL, [SortOrder] = 269.80 WHERE [Code] = 'jim' END +SET [Description] = 'Jimi (Cameroon)', [Definition] = NULL, [SortOrder] = 2711.00 WHERE [Code] = 'jim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmi', 'Jimi (Nigeria)', NULL, 269.90) END +VALUES ('jmi', 'Jimi (Nigeria)', NULL, 2712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jimi (Nigeria)', [Definition] = NULL, [SortOrder] = 269.90 WHERE [Code] = 'jmi' END +SET [Description] = 'Jimi (Nigeria)', [Definition] = NULL, [SortOrder] = 2712.00 WHERE [Code] = 'jmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jia', 'Jina', NULL, 270.00) END +VALUES ('jia', 'Jina', NULL, 2713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jina', [Definition] = NULL, [SortOrder] = 270.00 WHERE [Code] = 'jia' END +SET [Description] = 'Jina', [Definition] = NULL, [SortOrder] = 2713.00 WHERE [Code] = 'jia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jig', 'Jingulu', NULL, 270.10) END +VALUES ('jig', 'Jingulu', NULL, 2714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jingulu', [Definition] = NULL, [SortOrder] = 270.10 WHERE [Code] = 'jig' END +SET [Description] = 'Jingulu', [Definition] = NULL, [SortOrder] = 2714.00 WHERE [Code] = 'jig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjy', 'Jinyu Chinese', NULL, 270.20) END +VALUES ('cjy', 'Jinyu Chinese', NULL, 2715.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jinyu Chinese', [Definition] = NULL, [SortOrder] = 270.20 WHERE [Code] = 'cjy' END +SET [Description] = 'Jinyu Chinese', [Definition] = NULL, [SortOrder] = 2715.00 WHERE [Code] = 'cjy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnu', 'Jiongnai Bunu', NULL, 270.30) END +VALUES ('pnu', 'Jiongnai Bunu', NULL, 2716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiongnai Bunu', [Definition] = NULL, [SortOrder] = 270.30 WHERE [Code] = 'pnu' END +SET [Description] = 'Jiongnai Bunu', [Definition] = NULL, [SortOrder] = 2716.00 WHERE [Code] = 'pnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jul', 'Jirel', NULL, 270.40) END +VALUES ('jul', 'Jirel', NULL, 2717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jirel', [Definition] = NULL, [SortOrder] = 270.40 WHERE [Code] = 'jul' END +SET [Description] = 'Jirel', [Definition] = NULL, [SortOrder] = 2717.00 WHERE [Code] = 'jul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jrr', 'Jiru', NULL, 270.50) END +VALUES ('jrr', 'Jiru', NULL, 2718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiru', [Definition] = NULL, [SortOrder] = 270.50 WHERE [Code] = 'jrr' END +SET [Description] = 'Jiru', [Definition] = NULL, [SortOrder] = 2718.00 WHERE [Code] = 'jrr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jit', 'Jita', NULL, 270.60) END +VALUES ('jit', 'Jita', NULL, 2719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jita', [Definition] = NULL, [SortOrder] = 270.60 WHERE [Code] = 'jit' END +SET [Description] = 'Jita', [Definition] = NULL, [SortOrder] = 2719.00 WHERE [Code] = 'jit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaj', 'Jju', NULL, 270.70) END +VALUES ('kaj', 'Jju', NULL, 2720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jju', [Definition] = NULL, [SortOrder] = 270.70 WHERE [Code] = 'kaj' END +SET [Description] = 'Jju', [Definition] = NULL, [SortOrder] = 2720.00 WHERE [Code] = 'kaj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'job') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('job', 'Joba', NULL, 270.80) END +VALUES ('job', 'Joba', NULL, 2721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Joba', [Definition] = NULL, [SortOrder] = 270.80 WHERE [Code] = 'job' END +SET [Description] = 'Joba', [Definition] = NULL, [SortOrder] = 2721.00 WHERE [Code] = 'job' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbr', 'Jofotek-Bromnya', NULL, 270.90) END +VALUES ('jbr', 'Jofotek-Bromnya', NULL, 2722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jofotek-Bromnya', [Definition] = NULL, [SortOrder] = 270.90 WHERE [Code] = 'jbr' END +SET [Description] = 'Jofotek-Bromnya', [Definition] = NULL, [SortOrder] = 2722.00 WHERE [Code] = 'jbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jog', 'Jogi', NULL, 271.00) END +VALUES ('jog', 'Jogi', NULL, 2723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jogi', [Definition] = NULL, [SortOrder] = 271.00 WHERE [Code] = 'jog' END +SET [Description] = 'Jogi', [Definition] = NULL, [SortOrder] = 2723.00 WHERE [Code] = 'jog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyo', 'Jola-Fonyi', NULL, 271.10) END +VALUES ('dyo', 'Jola-Fonyi', NULL, 2724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jola-Fonyi', [Definition] = NULL, [SortOrder] = 271.10 WHERE [Code] = 'dyo' END +SET [Description] = 'Jola-Fonyi', [Definition] = NULL, [SortOrder] = 2724.00 WHERE [Code] = 'dyo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csk', 'Jola-Kasa', NULL, 271.20) END +VALUES ('csk', 'Jola-Kasa', NULL, 2725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jola-Kasa', [Definition] = NULL, [SortOrder] = 271.20 WHERE [Code] = 'csk' END +SET [Description] = 'Jola-Kasa', [Definition] = NULL, [SortOrder] = 2725.00 WHERE [Code] = 'csk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jeu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jeu', 'Jonkor Bourmataguil', NULL, 271.30) END +VALUES ('jeu', 'Jonkor Bourmataguil', NULL, 2726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jonkor Bourmataguil', [Definition] = NULL, [SortOrder] = 271.30 WHERE [Code] = 'jeu' END +SET [Description] = 'Jonkor Bourmataguil', [Definition] = NULL, [SortOrder] = 2726.00 WHERE [Code] = 'jeu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jor', 'Jorá', NULL, 271.40) END +VALUES ('jor', 'Jorá', NULL, 2727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jorá', [Definition] = NULL, [SortOrder] = 271.40 WHERE [Code] = 'jor' END +SET [Description] = 'Jorá', [Definition] = NULL, [SortOrder] = 2727.00 WHERE [Code] = 'jor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jos', 'Jordanian Sign Language', NULL, 271.50) END +VALUES ('jos', 'Jordanian Sign Language', NULL, 2728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jordanian Sign Language', [Definition] = NULL, [SortOrder] = 271.50 WHERE [Code] = 'jos' END +SET [Description] = 'Jordanian Sign Language', [Definition] = NULL, [SortOrder] = 2728.00 WHERE [Code] = 'jos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jow', 'Jowulu', NULL, 271.60) END +VALUES ('jow', 'Jowulu', NULL, 2729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jowulu', [Definition] = NULL, [SortOrder] = 271.60 WHERE [Code] = 'jow' END +SET [Description] = 'Jowulu', [Definition] = NULL, [SortOrder] = 2729.00 WHERE [Code] = 'jow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juu', 'Ju', NULL, 271.70) END +VALUES ('juu', 'Ju', NULL, 2730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ju', [Definition] = NULL, [SortOrder] = 271.70 WHERE [Code] = 'juu' END +SET [Description] = 'Ju', [Definition] = NULL, [SortOrder] = 2730.00 WHERE [Code] = 'juu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktz', 'Ju/''hoan', NULL, 271.80) END +VALUES ('ktz', 'Ju/''hoan', NULL, 2731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ju/''hoan', [Definition] = NULL, [SortOrder] = 271.80 WHERE [Code] = 'ktz' END +SET [Description] = 'Ju/''hoan', [Definition] = NULL, [SortOrder] = 2731.00 WHERE [Code] = 'ktz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jun', 'Juang', NULL, 271.90) END +VALUES ('jun', 'Juang', NULL, 2732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juang', [Definition] = NULL, [SortOrder] = 271.90 WHERE [Code] = 'jun' END +SET [Description] = 'Juang', [Definition] = NULL, [SortOrder] = 2732.00 WHERE [Code] = 'jun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jrb', 'Judeo-Arabic', NULL, 272.00) END +VALUES ('jrb', 'Judeo-Arabic', NULL, 2733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Arabic', [Definition] = NULL, [SortOrder] = 272.00 WHERE [Code] = 'jrb' END +SET [Description] = 'Judeo-Arabic', [Definition] = NULL, [SortOrder] = 2733.00 WHERE [Code] = 'jrb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbe', 'Judeo-Berber', NULL, 272.10) END +VALUES ('jbe', 'Judeo-Berber', NULL, 2734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Berber', [Definition] = NULL, [SortOrder] = 272.10 WHERE [Code] = 'jbe' END +SET [Description] = 'Judeo-Berber', [Definition] = NULL, [SortOrder] = 2734.00 WHERE [Code] = 'jbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jge', 'Judeo-Georgian', NULL, 272.20) END +VALUES ('jge', 'Judeo-Georgian', NULL, 2735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Georgian', [Definition] = NULL, [SortOrder] = 272.20 WHERE [Code] = 'jge' END +SET [Description] = 'Judeo-Georgian', [Definition] = NULL, [SortOrder] = 2735.00 WHERE [Code] = 'jge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yhd', 'Judeo-Iraqi Arabic', NULL, 272.30) END +VALUES ('yhd', 'Judeo-Iraqi Arabic', NULL, 2736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Iraqi Arabic', [Definition] = NULL, [SortOrder] = 272.30 WHERE [Code] = 'yhd' END +SET [Description] = 'Judeo-Iraqi Arabic', [Definition] = NULL, [SortOrder] = 2736.00 WHERE [Code] = 'yhd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itk', 'Judeo-Italian', NULL, 272.40) END +VALUES ('itk', 'Judeo-Italian', NULL, 2737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Italian', [Definition] = NULL, [SortOrder] = 272.40 WHERE [Code] = 'itk' END +SET [Description] = 'Judeo-Italian', [Definition] = NULL, [SortOrder] = 2737.00 WHERE [Code] = 'itk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aju', 'Judeo-Moroccan Arabic', NULL, 272.50) END +VALUES ('aju', 'Judeo-Moroccan Arabic', NULL, 2738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Moroccan Arabic', [Definition] = NULL, [SortOrder] = 272.50 WHERE [Code] = 'aju' END +SET [Description] = 'Judeo-Moroccan Arabic', [Definition] = NULL, [SortOrder] = 2738.00 WHERE [Code] = 'aju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpr', 'Judeo-Persian', NULL, 272.60) END +VALUES ('jpr', 'Judeo-Persian', NULL, 2739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Persian', [Definition] = NULL, [SortOrder] = 272.60 WHERE [Code] = 'jpr' END +SET [Description] = 'Judeo-Persian', [Definition] = NULL, [SortOrder] = 2739.00 WHERE [Code] = 'jpr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jdt', 'Judeo-Tat', NULL, 272.70) END +VALUES ('jdt', 'Judeo-Tat', NULL, 2740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Tat', [Definition] = NULL, [SortOrder] = 272.70 WHERE [Code] = 'jdt' END +SET [Description] = 'Judeo-Tat', [Definition] = NULL, [SortOrder] = 2740.00 WHERE [Code] = 'jdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yud', 'Judeo-Tripolitanian Arabic', NULL, 272.80) END +VALUES ('yud', 'Judeo-Tripolitanian Arabic', NULL, 2741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Tripolitanian Arabic', [Definition] = NULL, [SortOrder] = 272.80 WHERE [Code] = 'yud' END +SET [Description] = 'Judeo-Tripolitanian Arabic', [Definition] = NULL, [SortOrder] = 2741.00 WHERE [Code] = 'yud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jye', 'Judeo-Yemeni Arabic', NULL, 272.90) END +VALUES ('jye', 'Judeo-Yemeni Arabic', NULL, 2742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Yemeni Arabic', [Definition] = NULL, [SortOrder] = 272.90 WHERE [Code] = 'jye' END +SET [Description] = 'Judeo-Yemeni Arabic', [Definition] = NULL, [SortOrder] = 2742.00 WHERE [Code] = 'jye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbu', 'Jukun Takum', NULL, 273.00) END +VALUES ('jbu', 'Jukun Takum', NULL, 2743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jukun Takum', [Definition] = NULL, [SortOrder] = 273.00 WHERE [Code] = 'jbu' END +SET [Description] = 'Jukun Takum', [Definition] = NULL, [SortOrder] = 2743.00 WHERE [Code] = 'jbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jua', 'Júma', NULL, 273.10) END +VALUES ('jua', 'Júma', NULL, 2744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Júma', [Definition] = NULL, [SortOrder] = 273.10 WHERE [Code] = 'jua' END +SET [Description] = 'Júma', [Definition] = NULL, [SortOrder] = 2744.00 WHERE [Code] = 'jua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jum', 'Jumjum', NULL, 273.20) END +VALUES ('jum', 'Jumjum', NULL, 2745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jumjum', [Definition] = NULL, [SortOrder] = 273.20 WHERE [Code] = 'jum' END +SET [Description] = 'Jumjum', [Definition] = NULL, [SortOrder] = 2745.00 WHERE [Code] = 'jum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jus', 'Jumla Sign Language', NULL, 273.30) END +VALUES ('jus', 'Jumla Sign Language', NULL, 2746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jumla Sign Language', [Definition] = NULL, [SortOrder] = 273.30 WHERE [Code] = 'jus' END +SET [Description] = 'Jumla Sign Language', [Definition] = NULL, [SortOrder] = 2746.00 WHERE [Code] = 'jus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jml', 'Jumli', NULL, 273.40) END +VALUES ('jml', 'Jumli', NULL, 2747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jumli', [Definition] = NULL, [SortOrder] = 273.40 WHERE [Code] = 'jml' END +SET [Description] = 'Jumli', [Definition] = NULL, [SortOrder] = 2747.00 WHERE [Code] = 'jml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inj', 'Jungle Inga', NULL, 273.50) END +VALUES ('inj', 'Jungle Inga', NULL, 2748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jungle Inga', [Definition] = NULL, [SortOrder] = 273.50 WHERE [Code] = 'inj' END +SET [Description] = 'Jungle Inga', [Definition] = NULL, [SortOrder] = 2748.00 WHERE [Code] = 'inj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxq', 'Juquila Mixe', NULL, 273.60) END +VALUES ('mxq', 'Juquila Mixe', NULL, 2749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juquila Mixe', [Definition] = NULL, [SortOrder] = 273.60 WHERE [Code] = 'mxq' END +SET [Description] = 'Juquila Mixe', [Definition] = NULL, [SortOrder] = 2749.00 WHERE [Code] = 'mxq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bex', 'Jur Modo', NULL, 273.70) END +VALUES ('bex', 'Jur Modo', NULL, 2750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jur Modo', [Definition] = NULL, [SortOrder] = 273.70 WHERE [Code] = 'bex' END +SET [Description] = 'Jur Modo', [Definition] = NULL, [SortOrder] = 2750.00 WHERE [Code] = 'bex' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juy', 'Juray', NULL, 273.80) END +VALUES ('juy', 'Juray', NULL, 2751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juray', [Definition] = NULL, [SortOrder] = 273.80 WHERE [Code] = 'juy' END +SET [Description] = 'Juray', [Definition] = NULL, [SortOrder] = 2751.00 WHERE [Code] = 'juy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juc', 'Jurchen', NULL, 273.90) END +VALUES ('juc', 'Jurchen', NULL, 2752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jurchen', [Definition] = NULL, [SortOrder] = 273.90 WHERE [Code] = 'juc' END +SET [Description] = 'Jurchen', [Definition] = NULL, [SortOrder] = 2752.00 WHERE [Code] = 'juc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jur', 'Jurúna', NULL, 274.00) END +VALUES ('jur', 'Jurúna', NULL, 2753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jurúna', [Definition] = NULL, [SortOrder] = 274.00 WHERE [Code] = 'jur' END +SET [Description] = 'Jurúna', [Definition] = NULL, [SortOrder] = 2753.00 WHERE [Code] = 'jur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jut', 'Jutish', NULL, 274.10) END +VALUES ('jut', 'Jutish', NULL, 2754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jutish', [Definition] = NULL, [SortOrder] = 274.10 WHERE [Code] = 'jut' END +SET [Description] = 'Jutish', [Definition] = NULL, [SortOrder] = 2754.00 WHERE [Code] = 'jut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwb', 'Juwal', NULL, 274.20) END +VALUES ('mwb', 'Juwal', NULL, 2755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juwal', [Definition] = NULL, [SortOrder] = 274.20 WHERE [Code] = 'mwb' END +SET [Description] = 'Juwal', [Definition] = NULL, [SortOrder] = 2755.00 WHERE [Code] = 'mwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmc', 'Juxtlahuaca Mixtec', NULL, 274.30) END +VALUES ('vmc', 'Juxtlahuaca Mixtec', NULL, 2756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juxtlahuaca Mixtec', [Definition] = NULL, [SortOrder] = 274.30 WHERE [Code] = 'vmc' END +SET [Description] = 'Juxtlahuaca Mixtec', [Definition] = NULL, [SortOrder] = 2756.00 WHERE [Code] = 'vmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jwi', 'Jwira-Pepesa', NULL, 274.40) END +VALUES ('jwi', 'Jwira-Pepesa', NULL, 2757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jwira-Pepesa', [Definition] = NULL, [SortOrder] = 274.40 WHERE [Code] = 'jwi' END +SET [Description] = 'Jwira-Pepesa', [Definition] = NULL, [SortOrder] = 2757.00 WHERE [Code] = 'jwi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quc', 'K''iche''', NULL, 274.50) END +VALUES ('quc', 'K''iche''', NULL, 2758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'K''iche''', [Definition] = NULL, [SortOrder] = 274.50 WHERE [Code] = 'quc' END +SET [Description] = 'K''iche''', [Definition] = NULL, [SortOrder] = 2758.00 WHERE [Code] = 'quc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xku', 'Kaamba', NULL, 274.60) END +VALUES ('xku', 'Kaamba', NULL, 2759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaamba', [Definition] = NULL, [SortOrder] = 274.60 WHERE [Code] = 'xku' END +SET [Description] = 'Kaamba', [Definition] = NULL, [SortOrder] = 2759.00 WHERE [Code] = 'xku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldl', 'Kaan', NULL, 274.70) END +VALUES ('ldl', 'Kaan', NULL, 2760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaan', [Definition] = NULL, [SortOrder] = 274.70 WHERE [Code] = 'ldl' END +SET [Description] = 'Kaan', [Definition] = NULL, [SortOrder] = 2760.00 WHERE [Code] = 'ldl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckn', 'Kaang Chin', NULL, 274.80) END +VALUES ('ckn', 'Kaang Chin', NULL, 2761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaang Chin', [Definition] = NULL, [SortOrder] = 274.80 WHERE [Code] = 'ckn' END +SET [Description] = 'Kaang Chin', [Definition] = NULL, [SortOrder] = 2761.00 WHERE [Code] = 'ckn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gna', 'Kaansa', NULL, 274.90) END +VALUES ('gna', 'Kaansa', NULL, 2762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaansa', [Definition] = NULL, [SortOrder] = 274.90 WHERE [Code] = 'gna' END +SET [Description] = 'Kaansa', [Definition] = NULL, [SortOrder] = 2762.00 WHERE [Code] = 'gna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksp', 'Kaba', NULL, 275.00) END +VALUES ('ksp', 'Kaba', NULL, 2763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaba', [Definition] = NULL, [SortOrder] = 275.00 WHERE [Code] = 'ksp' END +SET [Description] = 'Kaba', [Definition] = NULL, [SortOrder] = 2763.00 WHERE [Code] = 'ksp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvf', 'Kabalai', NULL, 275.10) END +VALUES ('kvf', 'Kabalai', NULL, 2764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabalai', [Definition] = NULL, [SortOrder] = 275.10 WHERE [Code] = 'kvf' END +SET [Description] = 'Kabalai', [Definition] = NULL, [SortOrder] = 2764.00 WHERE [Code] = 'kvf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbd', 'Kabardian', NULL, 275.20) END +VALUES ('kbd', 'Kabardian', NULL, 2765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabardian', [Definition] = NULL, [SortOrder] = 275.20 WHERE [Code] = 'kbd' END +SET [Description] = 'Kabardian', [Definition] = NULL, [SortOrder] = 2765.00 WHERE [Code] = 'kbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkp', 'Kabatei', NULL, 275.30) END +VALUES ('xkp', 'Kabatei', NULL, 2766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabatei', [Definition] = NULL, [SortOrder] = 275.30 WHERE [Code] = 'xkp' END +SET [Description] = 'Kabatei', [Definition] = NULL, [SortOrder] = 2766.00 WHERE [Code] = 'xkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbp', 'Kabiyè', NULL, 275.40) END +VALUES ('kbp', 'Kabiyè', NULL, 2767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabiyè', [Definition] = NULL, [SortOrder] = 275.40 WHERE [Code] = 'kbp' END +SET [Description] = 'Kabiyè', [Definition] = NULL, [SortOrder] = 2767.00 WHERE [Code] = 'kbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klz', 'Kabola', NULL, 275.50) END +VALUES ('klz', 'Kabola', NULL, 2768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabola', [Definition] = NULL, [SortOrder] = 275.50 WHERE [Code] = 'klz' END +SET [Description] = 'Kabola', [Definition] = NULL, [SortOrder] = 2768.00 WHERE [Code] = 'klz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onk', 'Kabore One', NULL, 275.60) END +VALUES ('onk', 'Kabore One', NULL, 2769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabore One', [Definition] = NULL, [SortOrder] = 275.60 WHERE [Code] = 'onk' END +SET [Description] = 'Kabore One', [Definition] = NULL, [SortOrder] = 2769.00 WHERE [Code] = 'onk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkb', 'Kabras', NULL, 275.70) END +VALUES ('lkb', 'Kabras', NULL, 2770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabras', [Definition] = NULL, [SortOrder] = 275.70 WHERE [Code] = 'lkb' END +SET [Description] = 'Kabras', [Definition] = NULL, [SortOrder] = 2770.00 WHERE [Code] = 'lkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uka', 'Kaburi', NULL, 275.80) END +VALUES ('uka', 'Kaburi', NULL, 2771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaburi', [Definition] = NULL, [SortOrder] = 275.80 WHERE [Code] = 'uka' END +SET [Description] = 'Kaburi', [Definition] = NULL, [SortOrder] = 2771.00 WHERE [Code] = 'uka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbu', 'Kabutra', NULL, 275.90) END +VALUES ('kbu', 'Kabutra', NULL, 2772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabutra', [Definition] = NULL, [SortOrder] = 275.90 WHERE [Code] = 'kbu' END +SET [Description] = 'Kabutra', [Definition] = NULL, [SortOrder] = 2772.00 WHERE [Code] = 'kbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kea', 'Kabuverdianu', NULL, 276.00) END +VALUES ('kea', 'Kabuverdianu', NULL, 2773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabuverdianu', [Definition] = NULL, [SortOrder] = 276.00 WHERE [Code] = 'kea' END +SET [Description] = 'Kabuverdianu', [Definition] = NULL, [SortOrder] = 2773.00 WHERE [Code] = 'kea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwa', 'Kabwa', NULL, 276.10) END +VALUES ('cwa', 'Kabwa', NULL, 2774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabwa', [Definition] = NULL, [SortOrder] = 276.10 WHERE [Code] = 'cwa' END +SET [Description] = 'Kabwa', [Definition] = NULL, [SortOrder] = 2774.00 WHERE [Code] = 'cwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcw', 'Kabwari', NULL, 276.20) END +VALUES ('kcw', 'Kabwari', NULL, 2775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabwari', [Definition] = NULL, [SortOrder] = 276.20 WHERE [Code] = 'kcw' END +SET [Description] = 'Kabwari', [Definition] = NULL, [SortOrder] = 2775.00 WHERE [Code] = 'kcw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kab', 'Kabyle', NULL, 276.30) END +VALUES ('kab', 'Kabyle', NULL, 2776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabyle', [Definition] = NULL, [SortOrder] = 276.30 WHERE [Code] = 'kab' END +SET [Description] = 'Kabyle', [Definition] = NULL, [SortOrder] = 2776.00 WHERE [Code] = 'kab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcx', 'Kachama-Ganjule', NULL, 276.40) END +VALUES ('kcx', 'Kachama-Ganjule', NULL, 2777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachama-Ganjule', [Definition] = NULL, [SortOrder] = 276.40 WHERE [Code] = 'kcx' END +SET [Description] = 'Kachama-Ganjule', [Definition] = NULL, [SortOrder] = 2777.00 WHERE [Code] = 'kcx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xac', 'Kachari', NULL, 276.50) END +VALUES ('xac', 'Kachari', NULL, 2778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachari', [Definition] = NULL, [SortOrder] = 276.50 WHERE [Code] = 'xac' END +SET [Description] = 'Kachari', [Definition] = NULL, [SortOrder] = 2778.00 WHERE [Code] = 'xac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfr', 'Kachhi', NULL, 276.60) END +VALUES ('kfr', 'Kachhi', NULL, 2779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachhi', [Definition] = NULL, [SortOrder] = 276.60 WHERE [Code] = 'kfr' END +SET [Description] = 'Kachhi', [Definition] = NULL, [SortOrder] = 2779.00 WHERE [Code] = 'kfr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gjk', 'Kachi Koli', NULL, 276.70) END +VALUES ('gjk', 'Kachi Koli', NULL, 2780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachi Koli', [Definition] = NULL, [SortOrder] = 276.70 WHERE [Code] = 'gjk' END +SET [Description] = 'Kachi Koli', [Definition] = NULL, [SortOrder] = 2780.00 WHERE [Code] = 'gjk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kac', 'Kachin', NULL, 276.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachin', [Definition] = NULL, [SortOrder] = 276.80 WHERE [Code] = 'kac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koe', 'Kacipo-Bale Suri', NULL, 276.90) END +VALUES ('kac', 'Kachin', NULL, 2781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kacipo-Bale Suri', [Definition] = NULL, [SortOrder] = 276.90 WHERE [Code] = 'koe' END +SET [Description] = 'Kachin', [Definition] = NULL, [SortOrder] = 2781.00 WHERE [Code] = 'kac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkk', 'Kachok', NULL, 277.00) END +VALUES ('xkk', 'Kachok', NULL, 2782.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Kachok', [Definition] = NULL, [SortOrder] = 2782.00 WHERE [Code] = 'xkk' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('koe', 'Kacipo-Bale Suri', NULL, 2783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachok', [Definition] = NULL, [SortOrder] = 277.00 WHERE [Code] = 'xkk' END +SET [Description] = 'Kacipo-Bale Suri', [Definition] = NULL, [SortOrder] = 2783.00 WHERE [Code] = 'koe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzd', 'Kadai', NULL, 277.10) END +VALUES ('kzd', 'Kadai', NULL, 2784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadai', [Definition] = NULL, [SortOrder] = 277.10 WHERE [Code] = 'kzd' END +SET [Description] = 'Kadai', [Definition] = NULL, [SortOrder] = 2784.00 WHERE [Code] = 'kzd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kej', 'Kadar', NULL, 277.20) END +VALUES ('kej', 'Kadar', NULL, 2785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadar', [Definition] = NULL, [SortOrder] = 277.20 WHERE [Code] = 'kej' END +SET [Description] = 'Kadar', [Definition] = NULL, [SortOrder] = 2785.00 WHERE [Code] = 'kej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdu', 'Kadaru', NULL, 277.30) END +VALUES ('kdu', 'Kadaru', NULL, 2786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadaru', [Definition] = NULL, [SortOrder] = 277.30 WHERE [Code] = 'kdu' END +SET [Description] = 'Kadaru', [Definition] = NULL, [SortOrder] = 2786.00 WHERE [Code] = 'kdu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtp', 'Kadazan Dusun', NULL, 277.40) END +VALUES ('dtp', 'Kadazan Dusun', NULL, 2787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadazan Dusun', [Definition] = NULL, [SortOrder] = 277.40 WHERE [Code] = 'dtp' END +SET [Description] = 'Kadazan Dusun', [Definition] = NULL, [SortOrder] = 2787.00 WHERE [Code] = 'dtp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbc', 'Kadiwéu', NULL, 277.50) END +VALUES ('kbc', 'Kadiwéu', NULL, 2788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadiwéu', [Definition] = NULL, [SortOrder] = 277.50 WHERE [Code] = 'kbc' END +SET [Description] = 'Kadiwéu', [Definition] = NULL, [SortOrder] = 2788.00 WHERE [Code] = 'kbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkd', 'Kadu', NULL, 277.60) END +VALUES ('zkd', 'Kadu', NULL, 2789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadu', [Definition] = NULL, [SortOrder] = 277.60 WHERE [Code] = 'zkd' END +SET [Description] = 'Kadu', [Definition] = NULL, [SortOrder] = 2789.00 WHERE [Code] = 'zkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dkg', 'Kadung', NULL, 277.70) END +VALUES ('dkg', 'Kadung', NULL, 2790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadung', [Definition] = NULL, [SortOrder] = 277.70 WHERE [Code] = 'dkg' END +SET [Description] = 'Kadung', [Definition] = NULL, [SortOrder] = 2790.00 WHERE [Code] = 'dkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktp', 'Kaduo', NULL, 277.80) END +VALUES ('ktp', 'Kaduo', NULL, 2791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaduo', [Definition] = NULL, [SortOrder] = 277.80 WHERE [Code] = 'ktp' END +SET [Description] = 'Kaduo', [Definition] = NULL, [SortOrder] = 2791.00 WHERE [Code] = 'ktp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkq', 'Kaeku', NULL, 277.90) END +VALUES ('kkq', 'Kaeku', NULL, 2792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaeku', [Definition] = NULL, [SortOrder] = 277.90 WHERE [Code] = 'kkq' END +SET [Description] = 'Kaeku', [Definition] = NULL, [SortOrder] = 2792.00 WHERE [Code] = 'kkq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jka', 'Kaera', NULL, 278.00) END +VALUES ('jka', 'Kaera', NULL, 2793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaera', [Definition] = NULL, [SortOrder] = 278.00 WHERE [Code] = 'jka' END +SET [Description] = 'Kaera', [Definition] = NULL, [SortOrder] = 2793.00 WHERE [Code] = 'jka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbr', 'Kafa', NULL, 278.10) END +VALUES ('kbr', 'Kafa', NULL, 2794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kafa', [Definition] = NULL, [SortOrder] = 278.10 WHERE [Code] = 'kbr' END +SET [Description] = 'Kafa', [Definition] = NULL, [SortOrder] = 2794.00 WHERE [Code] = 'kbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpu', 'Kafoa', NULL, 278.20) END +VALUES ('kpu', 'Kafoa', NULL, 2795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kafoa', [Definition] = NULL, [SortOrder] = 278.20 WHERE [Code] = 'kpu' END +SET [Description] = 'Kafoa', [Definition] = NULL, [SortOrder] = 2795.00 WHERE [Code] = 'kpu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kll', 'Kagan Kalagan', NULL, 278.30) END +VALUES ('kll', 'Kagan Kalagan', NULL, 2796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagan Kalagan', [Definition] = NULL, [SortOrder] = 278.30 WHERE [Code] = 'kll' END +SET [Description] = 'Kagan Kalagan', [Definition] = NULL, [SortOrder] = 2796.00 WHERE [Code] = 'kll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syw', 'Kagate', NULL, 278.40) END +VALUES ('syw', 'Kagate', NULL, 2797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagate', [Definition] = NULL, [SortOrder] = 278.40 WHERE [Code] = 'syw' END +SET [Description] = 'Kagate', [Definition] = NULL, [SortOrder] = 2797.00 WHERE [Code] = 'syw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cgc', 'Kagayanen', NULL, 278.50) END +VALUES ('cgc', 'Kagayanen', NULL, 2798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagayanen', [Definition] = NULL, [SortOrder] = 278.50 WHERE [Code] = 'cgc' END +SET [Description] = 'Kagayanen', [Definition] = NULL, [SortOrder] = 2798.00 WHERE [Code] = 'cgc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdm', 'Kagoma', NULL, 278.60) END +VALUES ('kdm', 'Kagoma', NULL, 2799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagoma', [Definition] = NULL, [SortOrder] = 278.60 WHERE [Code] = 'kdm' END +SET [Description] = 'Kagoma', [Definition] = NULL, [SortOrder] = 2799.00 WHERE [Code] = 'kdm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkg', 'Kagoro', NULL, 278.70) END +VALUES ('xkg', 'Kagoro', NULL, 2800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagoro', [Definition] = NULL, [SortOrder] = 278.70 WHERE [Code] = 'xkg' END +SET [Description] = 'Kagoro', [Definition] = NULL, [SortOrder] = 2800.00 WHERE [Code] = 'xkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kki', 'Kagulu', NULL, 278.80) END +VALUES ('kki', 'Kagulu', NULL, 2801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagulu', [Definition] = NULL, [SortOrder] = 278.80 WHERE [Code] = 'kki' END +SET [Description] = 'Kagulu', [Definition] = NULL, [SortOrder] = 2801.00 WHERE [Code] = 'kki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hka', 'Kahe', NULL, 278.90) END +VALUES ('hka', 'Kahe', NULL, 2802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kahe', [Definition] = NULL, [SortOrder] = 278.90 WHERE [Code] = 'hka' END +SET [Description] = 'Kahe', [Definition] = NULL, [SortOrder] = 2802.00 WHERE [Code] = 'hka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agw', 'Kahua', NULL, 279.00) END +VALUES ('agw', 'Kahua', NULL, 2803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kahua', [Definition] = NULL, [SortOrder] = 279.00 WHERE [Code] = 'agw' END +SET [Description] = 'Kahua', [Definition] = NULL, [SortOrder] = 2803.00 WHERE [Code] = 'agw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kct', 'Kaian', NULL, 279.10) END +VALUES ('kct', 'Kaian', NULL, 2804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaian', [Definition] = NULL, [SortOrder] = 279.10 WHERE [Code] = 'kct' END +SET [Description] = 'Kaian', [Definition] = NULL, [SortOrder] = 2804.00 WHERE [Code] = 'kct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzb', 'Kaibobo', NULL, 279.20) END +VALUES ('kzb', 'Kaibobo', NULL, 2805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaibobo', [Definition] = NULL, [SortOrder] = 279.20 WHERE [Code] = 'kzb' END +SET [Description] = 'Kaibobo', [Definition] = NULL, [SortOrder] = 2805.00 WHERE [Code] = 'kzb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzp', 'Kaidipang', NULL, 279.30) END +VALUES ('kzp', 'Kaidipang', NULL, 2806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaidipang', [Definition] = NULL, [SortOrder] = 279.30 WHERE [Code] = 'kzp' END +SET [Description] = 'Kaidipang', [Definition] = NULL, [SortOrder] = 2806.00 WHERE [Code] = 'kzp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbw', 'Kaiep', NULL, 279.40) END +VALUES ('kbw', 'Kaiep', NULL, 2807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaiep', [Definition] = NULL, [SortOrder] = 279.40 WHERE [Code] = 'kbw' END +SET [Description] = 'Kaiep', [Definition] = NULL, [SortOrder] = 2807.00 WHERE [Code] = 'kbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kep', 'Kaikadi', NULL, 279.50) END +VALUES ('kep', 'Kaikadi', NULL, 2808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaikadi', [Definition] = NULL, [SortOrder] = 279.50 WHERE [Code] = 'kep' END +SET [Description] = 'Kaikadi', [Definition] = NULL, [SortOrder] = 2808.00 WHERE [Code] = 'kep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjv', 'Kaikavian Literary Language', NULL, 279.60) END +VALUES ('kjv', 'Kaikavian Literary Language', NULL, 2809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaikavian Literary Language', [Definition] = NULL, [SortOrder] = 279.60 WHERE [Code] = 'kjv' END +SET [Description] = 'Kaikavian Literary Language', [Definition] = NULL, [SortOrder] = 2809.00 WHERE [Code] = 'kjv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzq', 'Kaike', NULL, 279.70) END +VALUES ('kzq', 'Kaike', NULL, 2810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaike', [Definition] = NULL, [SortOrder] = 279.70 WHERE [Code] = 'kzq' END +SET [Description] = 'Kaike', [Definition] = NULL, [SortOrder] = 2810.00 WHERE [Code] = 'kzq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xai', 'Kaimbé', NULL, 279.80) END +VALUES ('xai', 'Kaimbé', NULL, 2811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaimbé', [Definition] = NULL, [SortOrder] = 279.80 WHERE [Code] = 'xai' END +SET [Description] = 'Kaimbé', [Definition] = NULL, [SortOrder] = 2811.00 WHERE [Code] = 'xai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zka', 'Kaimbulawa', NULL, 279.90) END +VALUES ('zka', 'Kaimbulawa', NULL, 2812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaimbulawa', [Definition] = NULL, [SortOrder] = 279.90 WHERE [Code] = 'zka' END +SET [Description] = 'Kaimbulawa', [Definition] = NULL, [SortOrder] = 2812.00 WHERE [Code] = 'zka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgp', 'Kaingang', NULL, 280.00) END +VALUES ('kgp', 'Kaingang', NULL, 2813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaingang', [Definition] = NULL, [SortOrder] = 280.00 WHERE [Code] = 'kgp' END +SET [Description] = 'Kaingang', [Definition] = NULL, [SortOrder] = 2813.00 WHERE [Code] = 'kgp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckr', 'Kairak', NULL, 280.10) END +VALUES ('ckr', 'Kairak', NULL, 2814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kairak', [Definition] = NULL, [SortOrder] = 280.10 WHERE [Code] = 'ckr' END +SET [Description] = 'Kairak', [Definition] = NULL, [SortOrder] = 2814.00 WHERE [Code] = 'ckr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxa', 'Kairiru', NULL, 280.20) END +VALUES ('kxa', 'Kairiru', NULL, 2815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kairiru', [Definition] = NULL, [SortOrder] = 280.20 WHERE [Code] = 'kxa' END +SET [Description] = 'Kairiru', [Definition] = NULL, [SortOrder] = 2815.00 WHERE [Code] = 'kxa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krd', 'Kairui-Midiki', NULL, 280.30) END +VALUES ('krd', 'Kairui-Midiki', NULL, 2816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kairui-Midiki', [Definition] = NULL, [SortOrder] = 280.30 WHERE [Code] = 'krd' END +SET [Description] = 'Kairui-Midiki', [Definition] = NULL, [SortOrder] = 2816.00 WHERE [Code] = 'krd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzm', 'Kais', NULL, 280.40) END +VALUES ('kzm', 'Kais', NULL, 2817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kais', [Definition] = NULL, [SortOrder] = 280.40 WHERE [Code] = 'kzm' END +SET [Description] = 'Kais', [Definition] = NULL, [SortOrder] = 2817.00 WHERE [Code] = 'kzm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdq', 'Kaitag', NULL, 280.50) END +VALUES ('xdq', 'Kaitag', NULL, 2818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaitag', [Definition] = NULL, [SortOrder] = 280.50 WHERE [Code] = 'xdq' END +SET [Description] = 'Kaitag', [Definition] = NULL, [SortOrder] = 2818.00 WHERE [Code] = 'xdq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kce', 'Kaivi', NULL, 280.60) END +VALUES ('kce', 'Kaivi', NULL, 2819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaivi', [Definition] = NULL, [SortOrder] = 280.60 WHERE [Code] = 'kce' END +SET [Description] = 'Kaivi', [Definition] = NULL, [SortOrder] = 2819.00 WHERE [Code] = 'kce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgk', 'Kaiwá', NULL, 280.70) END +VALUES ('kgk', 'Kaiwá', NULL, 2820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaiwá', [Definition] = NULL, [SortOrder] = 280.70 WHERE [Code] = 'kgk' END +SET [Description] = 'Kaiwá', [Definition] = NULL, [SortOrder] = 2820.00 WHERE [Code] = 'kgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcq', 'Kaiy', NULL, 280.80) END +VALUES ('tcq', 'Kaiy', NULL, 2821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaiy', [Definition] = NULL, [SortOrder] = 280.80 WHERE [Code] = 'tcq' END +SET [Description] = 'Kaiy', [Definition] = NULL, [SortOrder] = 2821.00 WHERE [Code] = 'tcq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckq', 'Kajakse', NULL, 280.90) END +VALUES ('ckq', 'Kajakse', NULL, 2822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kajakse', [Definition] = NULL, [SortOrder] = 280.90 WHERE [Code] = 'ckq' END +SET [Description] = 'Kajakse', [Definition] = NULL, [SortOrder] = 2822.00 WHERE [Code] = 'ckq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkj', 'Kajali', NULL, 281.00) END +VALUES ('xkj', 'Kajali', NULL, 2823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kajali', [Definition] = NULL, [SortOrder] = 281.00 WHERE [Code] = 'xkj' END +SET [Description] = 'Kajali', [Definition] = NULL, [SortOrder] = 2823.00 WHERE [Code] = 'xkj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kag', 'Kajaman', NULL, 281.10) END +VALUES ('kag', 'Kajaman', NULL, 2824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kajaman', [Definition] = NULL, [SortOrder] = 281.10 WHERE [Code] = 'kag' END +SET [Description] = 'Kajaman', [Definition] = NULL, [SortOrder] = 2824.00 WHERE [Code] = 'kag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqf', 'Kakabai', NULL, 281.20) END +VALUES ('kqf', 'Kakabai', NULL, 2825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kakabai', [Definition] = NULL, [SortOrder] = 281.20 WHERE [Code] = 'kqf' END +SET [Description] = 'Kakabai', [Definition] = NULL, [SortOrder] = 2825.00 WHERE [Code] = 'kqf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kke', 'Kakabe', NULL, 281.30) END +VALUES ('kke', 'Kakabe', NULL, 2826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kakabe', [Definition] = NULL, [SortOrder] = 281.30 WHERE [Code] = 'kke' END +SET [Description] = 'Kakabe', [Definition] = NULL, [SortOrder] = 2826.00 WHERE [Code] = 'kke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kka', 'Kakanda', NULL, 281.40) END +VALUES ('kka', 'Kakanda', NULL, 2827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kakanda', [Definition] = NULL, [SortOrder] = 281.40 WHERE [Code] = 'kka' END +SET [Description] = 'Kakanda', [Definition] = NULL, [SortOrder] = 2827.00 WHERE [Code] = 'kka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbd', 'Kaki Ae', NULL, 281.50) END +VALUES ('tbd', 'Kaki Ae', NULL, 2828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaki Ae', [Definition] = NULL, [SortOrder] = 281.50 WHERE [Code] = 'tbd' END +SET [Description] = 'Kaki Ae', [Definition] = NULL, [SortOrder] = 2828.00 WHERE [Code] = 'tbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkj', 'Kako', NULL, 281.60) END +VALUES ('kkj', 'Kako', NULL, 2829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kako', [Definition] = NULL, [SortOrder] = 281.60 WHERE [Code] = 'kkj' END +SET [Description] = 'Kako', [Definition] = NULL, [SortOrder] = 2829.00 WHERE [Code] = 'kkj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keo', 'Kakwa', NULL, 281.70) END +VALUES ('keo', 'Kakwa', NULL, 2830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kakwa', [Definition] = NULL, [SortOrder] = 281.70 WHERE [Code] = 'keo' END +SET [Description] = 'Kakwa', [Definition] = NULL, [SortOrder] = 2830.00 WHERE [Code] = 'keo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwp', 'Kala Lagaw Ya', NULL, 281.80) END +VALUES ('mwp', 'Kala Lagaw Ya', NULL, 2831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kala Lagaw Ya', [Definition] = NULL, [SortOrder] = 281.80 WHERE [Code] = 'mwp' END +SET [Description] = 'Kala Lagaw Ya', [Definition] = NULL, [SortOrder] = 2831.00 WHERE [Code] = 'mwp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kal', 'Kalaallisut', NULL, 281.90) END +VALUES ('kal', 'Kalaallisut', NULL, 2832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalaallisut', [Definition] = NULL, [SortOrder] = 281.90 WHERE [Code] = 'kal' END +SET [Description] = 'Kalaallisut', [Definition] = NULL, [SortOrder] = 2832.00 WHERE [Code] = 'kal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkm', 'Kalaamaya', NULL, 282.00) END +VALUES ('lkm', 'Kalaamaya', NULL, 2833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalaamaya', [Definition] = NULL, [SortOrder] = 282.00 WHERE [Code] = 'lkm' END +SET [Description] = 'Kalaamaya', [Definition] = NULL, [SortOrder] = 2833.00 WHERE [Code] = 'lkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kve', 'Kalabakan', NULL, 282.10) END +VALUES ('kve', 'Kalabakan', NULL, 2834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalabakan', [Definition] = NULL, [SortOrder] = 282.10 WHERE [Code] = 'kve' END +SET [Description] = 'Kalabakan', [Definition] = NULL, [SortOrder] = 2834.00 WHERE [Code] = 'kve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ijn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijn', 'Kalabari', NULL, 282.20) END +VALUES ('ijn', 'Kalabari', NULL, 2835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalabari', [Definition] = NULL, [SortOrder] = 282.20 WHERE [Code] = 'ijn' END +SET [Description] = 'Kalabari', [Definition] = NULL, [SortOrder] = 2835.00 WHERE [Code] = 'ijn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzz', 'Kalabra', NULL, 282.30) END +VALUES ('kzz', 'Kalabra', NULL, 2836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalabra', [Definition] = NULL, [SortOrder] = 282.30 WHERE [Code] = 'kzz' END +SET [Description] = 'Kalabra', [Definition] = NULL, [SortOrder] = 2836.00 WHERE [Code] = 'kzz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqe', 'Kalagan', NULL, 282.40) END +VALUES ('kqe', 'Kalagan', NULL, 2837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalagan', [Definition] = NULL, [SortOrder] = 282.40 WHERE [Code] = 'kqe' END +SET [Description] = 'Kalagan', [Definition] = NULL, [SortOrder] = 2837.00 WHERE [Code] = 'kqe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkf', 'Kalaktang Monpa', NULL, 282.50) END +VALUES ('kkf', 'Kalaktang Monpa', NULL, 2838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalaktang Monpa', [Definition] = NULL, [SortOrder] = 282.50 WHERE [Code] = 'kkf' END +SET [Description] = 'Kalaktang Monpa', [Definition] = NULL, [SortOrder] = 2838.00 WHERE [Code] = 'kkf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmh', 'Kalam', NULL, 282.60) END +VALUES ('kmh', 'Kalam', NULL, 2839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalam', [Definition] = NULL, [SortOrder] = 282.60 WHERE [Code] = 'kmh' END +SET [Description] = 'Kalam', [Definition] = NULL, [SortOrder] = 2839.00 WHERE [Code] = 'kmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knz', 'Kalamsé', NULL, 282.70) END +VALUES ('knz', 'Kalamsé', NULL, 2840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalamsé', [Definition] = NULL, [SortOrder] = 282.70 WHERE [Code] = 'knz' END +SET [Description] = 'Kalamsé', [Definition] = NULL, [SortOrder] = 2840.00 WHERE [Code] = 'knz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkl', 'Kalanadi', NULL, 282.80) END +VALUES ('wkl', 'Kalanadi', NULL, 2841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalanadi', [Definition] = NULL, [SortOrder] = 282.80 WHERE [Code] = 'wkl' END +SET [Description] = 'Kalanadi', [Definition] = NULL, [SortOrder] = 2841.00 WHERE [Code] = 'wkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kck', 'Kalanga', NULL, 282.90) END +VALUES ('kck', 'Kalanga', NULL, 2842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalanga', [Definition] = NULL, [SortOrder] = 282.90 WHERE [Code] = 'kck' END +SET [Description] = 'Kalanga', [Definition] = NULL, [SortOrder] = 2842.00 WHERE [Code] = 'kck' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kak', 'Kalanguya', NULL, 283.00) END +VALUES ('kak', 'Kalanguya', NULL, 2843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalanguya', [Definition] = NULL, [SortOrder] = 283.00 WHERE [Code] = 'kak' END +SET [Description] = 'Kalanguya', [Definition] = NULL, [SortOrder] = 2843.00 WHERE [Code] = 'kak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kly', 'Kalao', NULL, 283.10) END +VALUES ('kly', 'Kalao', NULL, 2844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalao', [Definition] = NULL, [SortOrder] = 283.10 WHERE [Code] = 'kly' END +SET [Description] = 'Kalao', [Definition] = NULL, [SortOrder] = 2844.00 WHERE [Code] = 'kly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyl', 'Kalapuya', NULL, 283.20) END +VALUES ('kyl', 'Kalapuya', NULL, 2845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalapuya', [Definition] = NULL, [SortOrder] = 283.20 WHERE [Code] = 'kyl' END +SET [Description] = 'Kalapuya', [Definition] = NULL, [SortOrder] = 2845.00 WHERE [Code] = 'kyl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kba', 'Kalarko', NULL, 283.30) END +VALUES ('kba', 'Kalarko', NULL, 2846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalarko', [Definition] = NULL, [SortOrder] = 283.30 WHERE [Code] = 'kba' END +SET [Description] = 'Kalarko', [Definition] = NULL, [SortOrder] = 2846.00 WHERE [Code] = 'kba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kls', 'Kalasha', NULL, 283.40) END +VALUES ('kls', 'Kalasha', NULL, 2847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalasha', [Definition] = NULL, [SortOrder] = 283.40 WHERE [Code] = 'kls' END +SET [Description] = 'Kalasha', [Definition] = NULL, [SortOrder] = 2847.00 WHERE [Code] = 'kls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kln', 'Kalenjin', NULL, 283.50) END +VALUES ('kln', 'Kalenjin', NULL, 2848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalenjin', [Definition] = NULL, [SortOrder] = 283.50 WHERE [Code] = 'kln' END +SET [Description] = 'Kalenjin', [Definition] = NULL, [SortOrder] = 2848.00 WHERE [Code] = 'kln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fla', 'Kalispel-Pend d''Oreille', NULL, 283.60) END +VALUES ('fla', 'Kalispel-Pend d''Oreille', NULL, 2849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalispel-Pend d''Oreille', [Definition] = NULL, [SortOrder] = 283.60 WHERE [Code] = 'fla' END +SET [Description] = 'Kalispel-Pend d''Oreille', [Definition] = NULL, [SortOrder] = 2849.00 WHERE [Code] = 'fla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xka', 'Kalkoti', NULL, 283.70) END +VALUES ('xka', 'Kalkoti', NULL, 2850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalkoti', [Definition] = NULL, [SortOrder] = 283.70 WHERE [Code] = 'xka' END +SET [Description] = 'Kalkoti', [Definition] = NULL, [SortOrder] = 2850.00 WHERE [Code] = 'xka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktg', 'Kalkutung', NULL, 283.80) END +VALUES ('ktg', 'Kalkutung', NULL, 2851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalkutung', [Definition] = NULL, [SortOrder] = 283.80 WHERE [Code] = 'ktg' END +SET [Description] = 'Kalkutung', [Definition] = NULL, [SortOrder] = 2851.00 WHERE [Code] = 'ktg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xal', 'Kalmyk', NULL, 283.90) END +VALUES ('xal', 'Kalmyk', NULL, 2852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalmyk', [Definition] = NULL, [SortOrder] = 283.90 WHERE [Code] = 'xal' END +SET [Description] = 'Kalmyk', [Definition] = NULL, [SortOrder] = 2852.00 WHERE [Code] = 'xal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmf', 'Kalo Finnish Romani', NULL, 284.00) END +VALUES ('rmf', 'Kalo Finnish Romani', NULL, 2853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalo Finnish Romani', [Definition] = NULL, [SortOrder] = 284.00 WHERE [Code] = 'rmf' END +SET [Description] = 'Kalo Finnish Romani', [Definition] = NULL, [SortOrder] = 2853.00 WHERE [Code] = 'rmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywa', 'Kalou', NULL, 284.10) END +VALUES ('ywa', 'Kalou', NULL, 2854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalou', [Definition] = NULL, [SortOrder] = 284.10 WHERE [Code] = 'ywa' END +SET [Description] = 'Kalou', [Definition] = NULL, [SortOrder] = 2854.00 WHERE [Code] = 'ywa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bco', 'Kaluli', NULL, 284.20) END +VALUES ('bco', 'Kaluli', NULL, 2855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaluli', [Definition] = NULL, [SortOrder] = 284.20 WHERE [Code] = 'bco' END +SET [Description] = 'Kaluli', [Definition] = NULL, [SortOrder] = 2855.00 WHERE [Code] = 'bco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kli', 'Kalumpang', NULL, 284.30) END +VALUES ('kli', 'Kalumpang', NULL, 2856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalumpang', [Definition] = NULL, [SortOrder] = 284.30 WHERE [Code] = 'kli' END +SET [Description] = 'Kalumpang', [Definition] = NULL, [SortOrder] = 2856.00 WHERE [Code] = 'kli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdx', 'Kam', NULL, 284.40) END +VALUES ('kdx', 'Kam', NULL, 2857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kam', [Definition] = NULL, [SortOrder] = 284.40 WHERE [Code] = 'kdx' END +SET [Description] = 'Kam', [Definition] = NULL, [SortOrder] = 2857.00 WHERE [Code] = 'kdx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkm', 'Kamakan', NULL, 284.50) END +VALUES ('vkm', 'Kamakan', NULL, 2858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamakan', [Definition] = NULL, [SortOrder] = 284.50 WHERE [Code] = 'vkm' END +SET [Description] = 'Kamakan', [Definition] = NULL, [SortOrder] = 2858.00 WHERE [Code] = 'vkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woi', 'Kamang', NULL, 284.60) END +VALUES ('woi', 'Kamang', NULL, 2859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamang', [Definition] = NULL, [SortOrder] = 284.60 WHERE [Code] = 'woi' END +SET [Description] = 'Kamang', [Definition] = NULL, [SortOrder] = 2859.00 WHERE [Code] = 'woi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbq', 'Kamano', NULL, 284.70) END +VALUES ('kbq', 'Kamano', NULL, 2860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamano', [Definition] = NULL, [SortOrder] = 284.70 WHERE [Code] = 'kbq' END +SET [Description] = 'Kamano', [Definition] = NULL, [SortOrder] = 2860.00 WHERE [Code] = 'kbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kci', 'Kamantan', NULL, 284.80) END +VALUES ('kci', 'Kamantan', NULL, 2861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamantan', [Definition] = NULL, [SortOrder] = 284.80 WHERE [Code] = 'kci' END +SET [Description] = 'Kamantan', [Definition] = NULL, [SortOrder] = 2861.00 WHERE [Code] = 'kci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keq', 'Kamar', NULL, 284.90) END +VALUES ('keq', 'Kamar', NULL, 2862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamar', [Definition] = NULL, [SortOrder] = 284.90 WHERE [Code] = 'keq' END +SET [Description] = 'Kamar', [Definition] = NULL, [SortOrder] = 2862.00 WHERE [Code] = 'keq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmr', 'Kamara', NULL, 285.00) END +VALUES ('jmr', 'Kamara', NULL, 2863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamara', [Definition] = NULL, [SortOrder] = 285.00 WHERE [Code] = 'jmr' END +SET [Description] = 'Kamara', [Definition] = NULL, [SortOrder] = 2863.00 WHERE [Code] = 'jmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzx', 'Kamarian', NULL, 285.10) END +VALUES ('kzx', 'Kamarian', NULL, 2864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamarian', [Definition] = NULL, [SortOrder] = 285.10 WHERE [Code] = 'kzx' END +SET [Description] = 'Kamarian', [Definition] = NULL, [SortOrder] = 2864.00 WHERE [Code] = 'kzx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgx', 'Kamaru', NULL, 285.20) END +VALUES ('kgx', 'Kamaru', NULL, 2865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamaru', [Definition] = NULL, [SortOrder] = 285.20 WHERE [Code] = 'kgx' END +SET [Description] = 'Kamaru', [Definition] = NULL, [SortOrder] = 2865.00 WHERE [Code] = 'kgx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xas', 'Kamas', NULL, 285.30) END +VALUES ('xas', 'Kamas', NULL, 2866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamas', [Definition] = NULL, [SortOrder] = 285.30 WHERE [Code] = 'xas' END +SET [Description] = 'Kamas', [Definition] = NULL, [SortOrder] = 2866.00 WHERE [Code] = 'xas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klp', 'Kamasa', NULL, 285.40) END +VALUES ('klp', 'Kamasa', NULL, 2867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamasa', [Definition] = NULL, [SortOrder] = 285.40 WHERE [Code] = 'klp' END +SET [Description] = 'Kamasa', [Definition] = NULL, [SortOrder] = 2867.00 WHERE [Code] = 'klp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kms', 'Kamasau', NULL, 285.50) END +VALUES ('kms', 'Kamasau', NULL, 2868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamasau', [Definition] = NULL, [SortOrder] = 285.50 WHERE [Code] = 'kms' END +SET [Description] = 'Kamasau', [Definition] = NULL, [SortOrder] = 2868.00 WHERE [Code] = 'kms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyk', 'Kamayo', NULL, 285.60) END +VALUES ('kyk', 'Kamayo', NULL, 2869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamayo', [Definition] = NULL, [SortOrder] = 285.60 WHERE [Code] = 'kyk' END +SET [Description] = 'Kamayo', [Definition] = NULL, [SortOrder] = 2869.00 WHERE [Code] = 'kyk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kay', 'Kamayurá', NULL, 285.70) END +VALUES ('kay', 'Kamayurá', NULL, 2870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamayurá', [Definition] = NULL, [SortOrder] = 285.70 WHERE [Code] = 'kay' END +SET [Description] = 'Kamayurá', [Definition] = NULL, [SortOrder] = 2870.00 WHERE [Code] = 'kay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kam', 'Kamba (Kenya)', NULL, 285.80) END +VALUES ('kam', 'Kamba (Kenya)', NULL, 2871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamba (Kenya)', [Definition] = NULL, [SortOrder] = 285.80 WHERE [Code] = 'kam' END +SET [Description] = 'Kamba (Kenya)', [Definition] = NULL, [SortOrder] = 2871.00 WHERE [Code] = 'kam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktb', 'Kambaata', NULL, 285.90) END +VALUES ('ktb', 'Kambaata', NULL, 2872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kambaata', [Definition] = NULL, [SortOrder] = 285.90 WHERE [Code] = 'ktb' END +SET [Description] = 'Kambaata', [Definition] = NULL, [SortOrder] = 2872.00 WHERE [Code] = 'ktb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyy', 'Kambaira', NULL, 286.00) END +VALUES ('kyy', 'Kambaira', NULL, 2873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kambaira', [Definition] = NULL, [SortOrder] = 286.00 WHERE [Code] = 'kyy' END +SET [Description] = 'Kambaira', [Definition] = NULL, [SortOrder] = 2873.00 WHERE [Code] = 'kyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbr', 'Kambera', NULL, 286.10) END +VALUES ('xbr', 'Kambera', NULL, 2874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kambera', [Definition] = NULL, [SortOrder] = 286.10 WHERE [Code] = 'xbr' END +SET [Description] = 'Kambera', [Definition] = NULL, [SortOrder] = 2874.00 WHERE [Code] = 'xbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irx', 'Kamberau', NULL, 286.20) END +VALUES ('irx', 'Kamberau', NULL, 2875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamberau', [Definition] = NULL, [SortOrder] = 286.20 WHERE [Code] = 'irx' END +SET [Description] = 'Kamberau', [Definition] = NULL, [SortOrder] = 2875.00 WHERE [Code] = 'irx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbw', 'Kambiwá', NULL, 286.30) END +VALUES ('xbw', 'Kambiwá', NULL, 2876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kambiwá', [Definition] = NULL, [SortOrder] = 286.30 WHERE [Code] = 'xbw' END +SET [Description] = 'Kambiwá', [Definition] = NULL, [SortOrder] = 2876.00 WHERE [Code] = 'xbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmi', 'Kami (Nigeria)', NULL, 286.40) END +VALUES ('kmi', 'Kami (Nigeria)', NULL, 2877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kami (Nigeria)', [Definition] = NULL, [SortOrder] = 286.40 WHERE [Code] = 'kmi' END +SET [Description] = 'Kami (Nigeria)', [Definition] = NULL, [SortOrder] = 2877.00 WHERE [Code] = 'kmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcu', 'Kami (Tanzania)', NULL, 286.50) END +VALUES ('kcu', 'Kami (Tanzania)', NULL, 2878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kami (Tanzania)', [Definition] = NULL, [SortOrder] = 286.50 WHERE [Code] = 'kcu' END +SET [Description] = 'Kami (Tanzania)', [Definition] = NULL, [SortOrder] = 2878.00 WHERE [Code] = 'kcu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcq', 'Kamo', NULL, 286.60) END +VALUES ('kcq', 'Kamo', NULL, 2879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamo', [Definition] = NULL, [SortOrder] = 286.60 WHERE [Code] = 'kcq' END +SET [Description] = 'Kamo', [Definition] = NULL, [SortOrder] = 2879.00 WHERE [Code] = 'kcq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgq', 'Kamoro', NULL, 286.70) END +VALUES ('kgq', 'Kamoro', NULL, 2880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamoro', [Definition] = NULL, [SortOrder] = 286.70 WHERE [Code] = 'kgq' END +SET [Description] = 'Kamoro', [Definition] = NULL, [SortOrder] = 2880.00 WHERE [Code] = 'kgq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmu', 'Kamu', NULL, 286.80) END +VALUES ('xmu', 'Kamu', NULL, 2881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamu', [Definition] = NULL, [SortOrder] = 286.80 WHERE [Code] = 'xmu' END +SET [Description] = 'Kamu', [Definition] = NULL, [SortOrder] = 2881.00 WHERE [Code] = 'xmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xla', 'Kamula', NULL, 286.90) END +VALUES ('xla', 'Kamula', NULL, 2882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamula', [Definition] = NULL, [SortOrder] = 286.90 WHERE [Code] = 'xla' END +SET [Description] = 'Kamula', [Definition] = NULL, [SortOrder] = 2882.00 WHERE [Code] = 'xla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xvi', 'Kamviri', NULL, 287.00) END +VALUES ('xvi', 'Kamviri', NULL, 2883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamviri', [Definition] = NULL, [SortOrder] = 287.00 WHERE [Code] = 'xvi' END +SET [Description] = 'Kamviri', [Definition] = NULL, [SortOrder] = 2883.00 WHERE [Code] = 'xvi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hig', 'Kamwe', NULL, 287.10) END +VALUES ('hig', 'Kamwe', NULL, 2884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamwe', [Definition] = NULL, [SortOrder] = 287.10 WHERE [Code] = 'hig' END +SET [Description] = 'Kamwe', [Definition] = NULL, [SortOrder] = 2884.00 WHERE [Code] = 'hig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnb', 'Kanakanabu', NULL, 287.20) END +VALUES ('xnb', 'Kanakanabu', NULL, 2885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanakanabu', [Definition] = NULL, [SortOrder] = 287.20 WHERE [Code] = 'xnb' END +SET [Description] = 'Kanakanabu', [Definition] = NULL, [SortOrder] = 2885.00 WHERE [Code] = 'xnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knm', 'Kanamarí', NULL, 287.30) END +VALUES ('knm', 'Kanamarí', NULL, 2886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanamarí', [Definition] = NULL, [SortOrder] = 287.30 WHERE [Code] = 'knm' END +SET [Description] = 'Kanamarí', [Definition] = NULL, [SortOrder] = 2886.00 WHERE [Code] = 'knm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkn', 'Kanan', NULL, 287.40) END +VALUES ('zkn', 'Kanan', NULL, 2887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanan', [Definition] = NULL, [SortOrder] = 287.40 WHERE [Code] = 'zkn' END +SET [Description] = 'Kanan', [Definition] = NULL, [SortOrder] = 2887.00 WHERE [Code] = 'zkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xns', 'Kanashi', NULL, 287.50) END +VALUES ('xns', 'Kanashi', NULL, 2888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanashi', [Definition] = NULL, [SortOrder] = 287.50 WHERE [Code] = 'xns' END +SET [Description] = 'Kanashi', [Definition] = NULL, [SortOrder] = 2888.00 WHERE [Code] = 'xns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soq', 'Kanasi', NULL, 287.60) END +VALUES ('soq', 'Kanasi', NULL, 2889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanasi', [Definition] = NULL, [SortOrder] = 287.60 WHERE [Code] = 'soq' END +SET [Description] = 'Kanasi', [Definition] = NULL, [SortOrder] = 2889.00 WHERE [Code] = 'soq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjj', 'Kanauji', NULL, 287.70) END +VALUES ('bjj', 'Kanauji', NULL, 2890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanauji', [Definition] = NULL, [SortOrder] = 287.70 WHERE [Code] = 'bjj' END +SET [Description] = 'Kanauji', [Definition] = NULL, [SortOrder] = 2890.00 WHERE [Code] = 'bjj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqw', 'Kandas', NULL, 287.80) END +VALUES ('kqw', 'Kandas', NULL, 2891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kandas', [Definition] = NULL, [SortOrder] = 287.80 WHERE [Code] = 'kqw' END +SET [Description] = 'Kandas', [Definition] = NULL, [SortOrder] = 2891.00 WHERE [Code] = 'kqw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gam', 'Kandawo', NULL, 287.90) END +VALUES ('gam', 'Kandawo', NULL, 2892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kandawo', [Definition] = NULL, [SortOrder] = 287.90 WHERE [Code] = 'gam' END +SET [Description] = 'Kandawo', [Definition] = NULL, [SortOrder] = 2892.00 WHERE [Code] = 'gam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbs', 'Kande', NULL, 288.00) END +VALUES ('kbs', 'Kande', NULL, 2893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kande', [Definition] = NULL, [SortOrder] = 288.00 WHERE [Code] = 'kbs' END +SET [Description] = 'Kande', [Definition] = NULL, [SortOrder] = 2893.00 WHERE [Code] = 'kbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbl', 'Kanembu', NULL, 288.10) END +VALUES ('kbl', 'Kanembu', NULL, 2894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanembu', [Definition] = NULL, [SortOrder] = 288.10 WHERE [Code] = 'kbl' END +SET [Description] = 'Kanembu', [Definition] = NULL, [SortOrder] = 2894.00 WHERE [Code] = 'kbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyp', 'Kang', NULL, 288.20) END +VALUES ('kyp', 'Kang', NULL, 2895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kang', [Definition] = NULL, [SortOrder] = 288.20 WHERE [Code] = 'kyp' END +SET [Description] = 'Kang', [Definition] = NULL, [SortOrder] = 2895.00 WHERE [Code] = 'kyp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcp', 'Kanga', NULL, 288.30) END +VALUES ('kcp', 'Kanga', NULL, 2896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanga', [Definition] = NULL, [SortOrder] = 288.30 WHERE [Code] = 'kcp' END +SET [Description] = 'Kanga', [Definition] = NULL, [SortOrder] = 2896.00 WHERE [Code] = 'kcp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkv', 'Kangean', NULL, 288.40) END +VALUES ('kkv', 'Kangean', NULL, 2897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kangean', [Definition] = NULL, [SortOrder] = 288.40 WHERE [Code] = 'kkv' END +SET [Description] = 'Kangean', [Definition] = NULL, [SortOrder] = 2897.00 WHERE [Code] = 'kkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igm', 'Kanggape', NULL, 288.50) END +VALUES ('igm', 'Kanggape', NULL, 2898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanggape', [Definition] = NULL, [SortOrder] = 288.50 WHERE [Code] = 'igm' END +SET [Description] = 'Kanggape', [Definition] = NULL, [SortOrder] = 2898.00 WHERE [Code] = 'igm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxs', 'Kangjia', NULL, 288.60) END +VALUES ('kxs', 'Kangjia', NULL, 2899.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kangjia', [Definition] = NULL, [SortOrder] = 288.60 WHERE [Code] = 'kxs' END +SET [Description] = 'Kangjia', [Definition] = NULL, [SortOrder] = 2899.00 WHERE [Code] = 'kxs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kty', 'Kango (Bas-Uélé District)', NULL, 288.70) END +VALUES ('kty', 'Kango (Bas-Uélé District)', NULL, 2900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kango (Bas-Uélé District)', [Definition] = NULL, [SortOrder] = 288.70 WHERE [Code] = 'kty' END +SET [Description] = 'Kango (Bas-Uélé District)', [Definition] = NULL, [SortOrder] = 2900.00 WHERE [Code] = 'kty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzy', 'Kango (Tshopo District)', NULL, 288.80) END +VALUES ('kzy', 'Kango (Tshopo District)', NULL, 2901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kango (Tshopo District)', [Definition] = NULL, [SortOrder] = 288.80 WHERE [Code] = 'kzy' END +SET [Description] = 'Kango (Tshopo District)', [Definition] = NULL, [SortOrder] = 2901.00 WHERE [Code] = 'kzy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnr', 'Kangri', NULL, 288.90) END +VALUES ('xnr', 'Kangri', NULL, 2902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kangri', [Definition] = NULL, [SortOrder] = 288.90 WHERE [Code] = 'xnr' END +SET [Description] = 'Kangri', [Definition] = NULL, [SortOrder] = 2902.00 WHERE [Code] = 'xnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktk', 'Kaniet', NULL, 289.00) END +VALUES ('ktk', 'Kaniet', NULL, 2903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaniet', [Definition] = NULL, [SortOrder] = 289.00 WHERE [Code] = 'ktk' END +SET [Description] = 'Kaniet', [Definition] = NULL, [SortOrder] = 2903.00 WHERE [Code] = 'ktk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kev', 'Kanikkaran', NULL, 289.10) END +VALUES ('kev', 'Kanikkaran', NULL, 2904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanikkaran', [Definition] = NULL, [SortOrder] = 289.10 WHERE [Code] = 'kev' END +SET [Description] = 'Kanikkaran', [Definition] = NULL, [SortOrder] = 2904.00 WHERE [Code] = 'kev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdp', 'Kaningdon-Nindem', NULL, 289.20) END +VALUES ('kdp', 'Kaningdon-Nindem', NULL, 2905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaningdon-Nindem', [Definition] = NULL, [SortOrder] = 289.20 WHERE [Code] = 'kdp' END +SET [Description] = 'Kaningdon-Nindem', [Definition] = NULL, [SortOrder] = 2905.00 WHERE [Code] = 'kdp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzo', 'Kaningi', NULL, 289.30) END +VALUES ('kzo', 'Kaningi', NULL, 2906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaningi', [Definition] = NULL, [SortOrder] = 289.30 WHERE [Code] = 'kzo' END +SET [Description] = 'Kaningi', [Definition] = NULL, [SortOrder] = 2906.00 WHERE [Code] = 'kzo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knr', 'Kaningra', NULL, 289.40) END +VALUES ('knr', 'Kaningra', NULL, 2907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaningra', [Definition] = NULL, [SortOrder] = 289.40 WHERE [Code] = 'knr' END +SET [Description] = 'Kaningra', [Definition] = NULL, [SortOrder] = 2907.00 WHERE [Code] = 'knr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wat', 'Kaninuwa', NULL, 289.50) END +VALUES ('wat', 'Kaninuwa', NULL, 2908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaninuwa', [Definition] = NULL, [SortOrder] = 289.50 WHERE [Code] = 'wat' END +SET [Description] = 'Kaninuwa', [Definition] = NULL, [SortOrder] = 2908.00 WHERE [Code] = 'wat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmu', 'Kanite', NULL, 289.60) END +VALUES ('kmu', 'Kanite', NULL, 2909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanite', [Definition] = NULL, [SortOrder] = 289.60 WHERE [Code] = 'kmu' END +SET [Description] = 'Kanite', [Definition] = NULL, [SortOrder] = 2909.00 WHERE [Code] = 'kmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kft', 'Kanjari', NULL, 289.70) END +VALUES ('kft', 'Kanjari', NULL, 2910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanjari', [Definition] = NULL, [SortOrder] = 289.70 WHERE [Code] = 'kft' END +SET [Description] = 'Kanjari', [Definition] = NULL, [SortOrder] = 2910.00 WHERE [Code] = 'kft' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbe', 'Kanju', NULL, 289.80) END +VALUES ('kbe', 'Kanju', NULL, 2911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanju', [Definition] = NULL, [SortOrder] = 289.80 WHERE [Code] = 'kbe' END +SET [Description] = 'Kanju', [Definition] = NULL, [SortOrder] = 2911.00 WHERE [Code] = 'kbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kne', 'Kankanaey', NULL, 289.90) END +VALUES ('kne', 'Kankanaey', NULL, 2912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kankanaey', [Definition] = NULL, [SortOrder] = 289.90 WHERE [Code] = 'kne' END +SET [Description] = 'Kankanaey', [Definition] = NULL, [SortOrder] = 2912.00 WHERE [Code] = 'kne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kan', 'Kannada', NULL, 290.00) END +VALUES ('kan', 'Kannada', NULL, 2913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kannada', [Definition] = NULL, [SortOrder] = 290.00 WHERE [Code] = 'kan' END +SET [Description] = 'Kannada', [Definition] = NULL, [SortOrder] = 2913.00 WHERE [Code] = 'kan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfi', 'Kannada Kurumba', NULL, 290.10) END +VALUES ('kfi', 'Kannada Kurumba', NULL, 2914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kannada Kurumba', [Definition] = NULL, [SortOrder] = 290.10 WHERE [Code] = 'kfi' END +SET [Description] = 'Kannada Kurumba', [Definition] = NULL, [SortOrder] = 2914.00 WHERE [Code] = 'kfi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxo', 'Kanoé', NULL, 290.20) END +VALUES ('kxo', 'Kanoé', NULL, 2915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanoé', [Definition] = NULL, [SortOrder] = 290.20 WHERE [Code] = 'kxo' END +SET [Description] = 'Kanoé', [Definition] = NULL, [SortOrder] = 2915.00 WHERE [Code] = 'kxo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxn', 'Kanowit-Tanjong Melanau', NULL, 290.30) END +VALUES ('kxn', 'Kanowit-Tanjong Melanau', NULL, 2916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanowit-Tanjong Melanau', [Definition] = NULL, [SortOrder] = 290.30 WHERE [Code] = 'kxn' END +SET [Description] = 'Kanowit-Tanjong Melanau', [Definition] = NULL, [SortOrder] = 2916.00 WHERE [Code] = 'kxn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksk', 'Kansa', NULL, 290.40) END +VALUES ('ksk', 'Kansa', NULL, 2917.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kansa', [Definition] = NULL, [SortOrder] = 290.40 WHERE [Code] = 'ksk' END +SET [Description] = 'Kansa', [Definition] = NULL, [SortOrder] = 2917.00 WHERE [Code] = 'ksk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkt', 'Kantosi', NULL, 290.50) END +VALUES ('xkt', 'Kantosi', NULL, 2918.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kantosi', [Definition] = NULL, [SortOrder] = 290.50 WHERE [Code] = 'xkt' END +SET [Description] = 'Kantosi', [Definition] = NULL, [SortOrder] = 2918.00 WHERE [Code] = 'xkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khx', 'Kanu', NULL, 290.60) END +VALUES ('khx', 'Kanu', NULL, 2919.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanu', [Definition] = NULL, [SortOrder] = 290.60 WHERE [Code] = 'khx' END +SET [Description] = 'Kanu', [Definition] = NULL, [SortOrder] = 2919.00 WHERE [Code] = 'khx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kni', 'Kanufi', NULL, 290.70) END +VALUES ('kni', 'Kanufi', NULL, 2920.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanufi', [Definition] = NULL, [SortOrder] = 290.70 WHERE [Code] = 'kni' END +SET [Description] = 'Kanufi', [Definition] = NULL, [SortOrder] = 2920.00 WHERE [Code] = 'kni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kau', 'Kanuri', NULL, 290.80) END +VALUES ('kau', 'Kanuri', NULL, 2921.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanuri', [Definition] = NULL, [SortOrder] = 290.80 WHERE [Code] = 'kau' END +SET [Description] = 'Kanuri', [Definition] = NULL, [SortOrder] = 2921.00 WHERE [Code] = 'kau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kny', 'Kanyok', NULL, 290.90) END +VALUES ('kny', 'Kanyok', NULL, 2922.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanyok', [Definition] = NULL, [SortOrder] = 290.90 WHERE [Code] = 'kny' END +SET [Description] = 'Kanyok', [Definition] = NULL, [SortOrder] = 2922.00 WHERE [Code] = 'kny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kax', 'Kao', NULL, 291.00) END +VALUES ('kax', 'Kao', NULL, 2923.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kao', [Definition] = NULL, [SortOrder] = 291.00 WHERE [Code] = 'kax' END +SET [Description] = 'Kao', [Definition] = NULL, [SortOrder] = 2923.00 WHERE [Code] = 'kax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqn', 'Kaonde', NULL, 291.10) END +VALUES ('kqn', 'Kaonde', NULL, 2924.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaonde', [Definition] = NULL, [SortOrder] = 291.10 WHERE [Code] = 'kqn' END +SET [Description] = 'Kaonde', [Definition] = NULL, [SortOrder] = 2924.00 WHERE [Code] = 'kqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykm', 'Kap', NULL, 291.20) END +VALUES ('ykm', 'Kap', NULL, 2925.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kap', [Definition] = NULL, [SortOrder] = 291.20 WHERE [Code] = 'ykm' END +SET [Description] = 'Kap', [Definition] = NULL, [SortOrder] = 2925.00 WHERE [Code] = 'ykm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbx', 'Kapin', NULL, 291.30) END +VALUES ('tbx', 'Kapin', NULL, 2926.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapin', [Definition] = NULL, [SortOrder] = 291.30 WHERE [Code] = 'tbx' END +SET [Description] = 'Kapin', [Definition] = NULL, [SortOrder] = 2926.00 WHERE [Code] = 'tbx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpn', 'Kapinawá', NULL, 291.40) END +VALUES ('xpn', 'Kapinawá', NULL, 2927.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapinawá', [Definition] = NULL, [SortOrder] = 291.40 WHERE [Code] = 'xpn' END +SET [Description] = 'Kapinawá', [Definition] = NULL, [SortOrder] = 2927.00 WHERE [Code] = 'xpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpg', 'Kapingamarangi', NULL, 291.50) END +VALUES ('kpg', 'Kapingamarangi', NULL, 2928.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapingamarangi', [Definition] = NULL, [SortOrder] = 291.50 WHERE [Code] = 'kpg' END +SET [Description] = 'Kapingamarangi', [Definition] = NULL, [SortOrder] = 2928.00 WHERE [Code] = 'kpg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khp', 'Kapori', NULL, 291.60) END +VALUES ('khp', 'Kapori', NULL, 2929.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapori', [Definition] = NULL, [SortOrder] = 291.60 WHERE [Code] = 'khp' END +SET [Description] = 'Kapori', [Definition] = NULL, [SortOrder] = 2929.00 WHERE [Code] = 'khp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dju', 'Kapriman', NULL, 291.70) END +VALUES ('dju', 'Kapriman', NULL, 2930.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapriman', [Definition] = NULL, [SortOrder] = 291.70 WHERE [Code] = 'dju' END +SET [Description] = 'Kapriman', [Definition] = NULL, [SortOrder] = 2930.00 WHERE [Code] = 'dju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbi', 'Kaptiau', NULL, 291.80) END +VALUES ('kbi', 'Kaptiau', NULL, 2931.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaptiau', [Definition] = NULL, [SortOrder] = 291.80 WHERE [Code] = 'kbi' END +SET [Description] = 'Kaptiau', [Definition] = NULL, [SortOrder] = 2931.00 WHERE [Code] = 'kbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klo', 'Kapya', NULL, 291.90) END +VALUES ('klo', 'Kapya', NULL, 2932.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapya', [Definition] = NULL, [SortOrder] = 291.90 WHERE [Code] = 'klo' END +SET [Description] = 'Kapya', [Definition] = NULL, [SortOrder] = 2932.00 WHERE [Code] = 'klo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cak', 'Kaqchikel', NULL, 292.00) END +VALUES ('cak', 'Kaqchikel', NULL, 2933.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaqchikel', [Definition] = NULL, [SortOrder] = 292.00 WHERE [Code] = 'cak' END +SET [Description] = 'Kaqchikel', [Definition] = NULL, [SortOrder] = 2933.00 WHERE [Code] = 'cak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kah', 'Kara (Central African Republic)', NULL, 292.10) END +VALUES ('kah', 'Kara (Central African Republic)', NULL, 2934.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara (Central African Republic)', [Definition] = NULL, [SortOrder] = 292.10 WHERE [Code] = 'kah' END +SET [Description] = 'Kara (Central African Republic)', [Definition] = NULL, [SortOrder] = 2934.00 WHERE [Code] = 'kah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zra', 'Kara (Korea)', NULL, 292.20) END +VALUES ('zra', 'Kara (Korea)', NULL, 2935.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara (Korea)', [Definition] = NULL, [SortOrder] = 292.20 WHERE [Code] = 'zra' END +SET [Description] = 'Kara (Korea)', [Definition] = NULL, [SortOrder] = 2935.00 WHERE [Code] = 'zra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leu', 'Kara (Papua New Guinea)', NULL, 292.30) END +VALUES ('leu', 'Kara (Papua New Guinea)', NULL, 2936.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 292.30 WHERE [Code] = 'leu' END +SET [Description] = 'Kara (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 2936.00 WHERE [Code] = 'leu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'reg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('reg', 'Kara (Tanzania)', NULL, 292.40) END +VALUES ('reg', 'Kara (Tanzania)', NULL, 2937.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara (Tanzania)', [Definition] = NULL, [SortOrder] = 292.40 WHERE [Code] = 'reg' END +SET [Description] = 'Kara (Tanzania)', [Definition] = NULL, [SortOrder] = 2937.00 WHERE [Code] = 'reg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaa', 'Kara-Kalpak', NULL, 292.50) END +VALUES ('kaa', 'Kara-Kalpak', NULL, 2938.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara-Kalpak', [Definition] = NULL, [SortOrder] = 292.50 WHERE [Code] = 'kaa' END +SET [Description] = 'Kara-Kalpak', [Definition] = NULL, [SortOrder] = 2938.00 WHERE [Code] = 'kaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krc', 'Karachay-Balkar', NULL, 292.60) END +VALUES ('krc', 'Karachay-Balkar', NULL, 2939.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karachay-Balkar', [Definition] = NULL, [SortOrder] = 292.60 WHERE [Code] = 'krc' END +SET [Description] = 'Karachay-Balkar', [Definition] = NULL, [SortOrder] = 2939.00 WHERE [Code] = 'krc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kim', 'Karagas', NULL, 292.70) END +VALUES ('kim', 'Karagas', NULL, 2940.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karagas', [Definition] = NULL, [SortOrder] = 292.70 WHERE [Code] = 'kim' END +SET [Description] = 'Karagas', [Definition] = NULL, [SortOrder] = 2940.00 WHERE [Code] = 'kim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdr', 'Karaim', NULL, 292.80) END +VALUES ('kdr', 'Karaim', NULL, 2941.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karaim', [Definition] = NULL, [SortOrder] = 292.80 WHERE [Code] = 'kdr' END +SET [Description] = 'Karaim', [Definition] = NULL, [SortOrder] = 2941.00 WHERE [Code] = 'kdr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpj', 'Karajá', NULL, 292.90) END +VALUES ('kpj', 'Karajá', NULL, 2942.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karajá', [Definition] = NULL, [SortOrder] = 292.90 WHERE [Code] = 'kpj' END +SET [Description] = 'Karajá', [Definition] = NULL, [SortOrder] = 2942.00 WHERE [Code] = 'kpj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbd', 'Karajarri', NULL, 293.00) END +VALUES ('gbd', 'Karajarri', NULL, 2943.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karajarri', [Definition] = NULL, [SortOrder] = 293.00 WHERE [Code] = 'gbd' END +SET [Description] = 'Karajarri', [Definition] = NULL, [SortOrder] = 2943.00 WHERE [Code] = 'gbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xqa', 'Karakhanid', NULL, 293.10) END +VALUES ('xqa', 'Karakhanid', NULL, 2944.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karakhanid', [Definition] = NULL, [SortOrder] = 293.10 WHERE [Code] = 'xqa' END +SET [Description] = 'Karakhanid', [Definition] = NULL, [SortOrder] = 2944.00 WHERE [Code] = 'xqa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xar', 'Karami', NULL, 293.20) END +VALUES ('xar', 'Karami', NULL, 2945.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karami', [Definition] = NULL, [SortOrder] = 293.20 WHERE [Code] = 'xar' END +SET [Description] = 'Karami', [Definition] = NULL, [SortOrder] = 2945.00 WHERE [Code] = 'xar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdj', 'Karamojong', NULL, 293.30) END +VALUES ('kdj', 'Karamojong', NULL, 2946.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karamojong', [Definition] = NULL, [SortOrder] = 293.30 WHERE [Code] = 'kdj' END +SET [Description] = 'Karamojong', [Definition] = NULL, [SortOrder] = 2946.00 WHERE [Code] = 'kdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzr', 'Karang', NULL, 293.40) END +VALUES ('kzr', 'Karang', NULL, 2947.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karang', [Definition] = NULL, [SortOrder] = 293.40 WHERE [Code] = 'kzr' END +SET [Description] = 'Karang', [Definition] = NULL, [SortOrder] = 2947.00 WHERE [Code] = 'kzr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kth', 'Karanga', NULL, 293.50) END +VALUES ('kth', 'Karanga', NULL, 2948.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karanga', [Definition] = NULL, [SortOrder] = 293.50 WHERE [Code] = 'kth' END +SET [Description] = 'Karanga', [Definition] = NULL, [SortOrder] = 2948.00 WHERE [Code] = 'kth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkk', 'Karankawa', NULL, 293.60) END +VALUES ('zkk', 'Karankawa', NULL, 2949.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karankawa', [Definition] = NULL, [SortOrder] = 293.60 WHERE [Code] = 'zkk' END +SET [Description] = 'Karankawa', [Definition] = NULL, [SortOrder] = 2949.00 WHERE [Code] = 'zkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyj', 'Karao', NULL, 293.70) END +VALUES ('kyj', 'Karao', NULL, 2950.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karao', [Definition] = NULL, [SortOrder] = 293.70 WHERE [Code] = 'kyj' END +SET [Description] = 'Karao', [Definition] = NULL, [SortOrder] = 2950.00 WHERE [Code] = 'kyj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgv', 'Karas', NULL, 293.80) END +VALUES ('kgv', 'Karas', NULL, 2951.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karas', [Definition] = NULL, [SortOrder] = 293.80 WHERE [Code] = 'kgv' END +SET [Description] = 'Karas', [Definition] = NULL, [SortOrder] = 2951.00 WHERE [Code] = 'kgv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpt', 'Karata', NULL, 293.90) END +VALUES ('kpt', 'Karata', NULL, 2952.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karata', [Definition] = NULL, [SortOrder] = 293.90 WHERE [Code] = 'kpt' END +SET [Description] = 'Karata', [Definition] = NULL, [SortOrder] = 2952.00 WHERE [Code] = 'kpt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrw', 'Karawa', NULL, 294.00) END +VALUES ('xrw', 'Karawa', NULL, 2953.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karawa', [Definition] = NULL, [SortOrder] = 294.00 WHERE [Code] = 'xrw' END +SET [Description] = 'Karawa', [Definition] = NULL, [SortOrder] = 2953.00 WHERE [Code] = 'xrw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjw', 'Karbi', NULL, 294.10) END +VALUES ('mjw', 'Karbi', NULL, 2954.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karbi', [Definition] = NULL, [SortOrder] = 294.10 WHERE [Code] = 'mjw' END +SET [Description] = 'Karbi', [Definition] = NULL, [SortOrder] = 2954.00 WHERE [Code] = 'mjw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbn', 'Kare (Central African Republic)', NULL, 294.20) END +VALUES ('kbn', 'Kare (Central African Republic)', NULL, 2955.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kare (Central African Republic)', [Definition] = NULL, [SortOrder] = 294.20 WHERE [Code] = 'kbn' END +SET [Description] = 'Kare (Central African Republic)', [Definition] = NULL, [SortOrder] = 2955.00 WHERE [Code] = 'kbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmf', 'Kare (Papua New Guinea)', NULL, 294.30) END +VALUES ('kmf', 'Kare (Papua New Guinea)', NULL, 2956.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kare (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 294.30 WHERE [Code] = 'kmf' END +SET [Description] = 'Kare (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 2956.00 WHERE [Code] = 'kmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kai', 'Karekare', NULL, 294.40) END +VALUES ('kai', 'Karekare', NULL, 2957.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karekare', [Definition] = NULL, [SortOrder] = 294.40 WHERE [Code] = 'kai' END +SET [Description] = 'Karekare', [Definition] = NULL, [SortOrder] = 2957.00 WHERE [Code] = 'kai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krl', 'Karelian', NULL, 294.50) END +VALUES ('krl', 'Karelian', NULL, 2958.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karelian', [Definition] = NULL, [SortOrder] = 294.50 WHERE [Code] = 'krl' END +SET [Description] = 'Karelian', [Definition] = NULL, [SortOrder] = 2958.00 WHERE [Code] = 'krl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eaa', 'Karenggapa', NULL, 294.60) END +VALUES ('eaa', 'Karenggapa', NULL, 2959.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karenggapa', [Definition] = NULL, [SortOrder] = 294.60 WHERE [Code] = 'eaa' END +SET [Description] = 'Karenggapa', [Definition] = NULL, [SortOrder] = 2959.00 WHERE [Code] = 'eaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyd', 'Karey', NULL, 294.70) END +VALUES ('kyd', 'Karey', NULL, 2960.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karey', [Definition] = NULL, [SortOrder] = 294.70 WHERE [Code] = 'kyd' END +SET [Description] = 'Karey', [Definition] = NULL, [SortOrder] = 2960.00 WHERE [Code] = 'kyd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbj', 'Kari', NULL, 294.80) END +VALUES ('kbj', 'Kari', NULL, 2961.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kari', [Definition] = NULL, [SortOrder] = 294.80 WHERE [Code] = 'kbj' END +SET [Description] = 'Kari', [Definition] = NULL, [SortOrder] = 2961.00 WHERE [Code] = 'kbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgn', 'Karingani', NULL, 294.90) END +VALUES ('kgn', 'Karingani', NULL, 2962.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karingani', [Definition] = NULL, [SortOrder] = 294.90 WHERE [Code] = 'kgn' END +SET [Description] = 'Karingani', [Definition] = NULL, [SortOrder] = 2962.00 WHERE [Code] = 'kgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuq', 'Karipuna', NULL, 295.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karipuna', [Definition] = NULL, [SortOrder] = 295.00 WHERE [Code] = 'kuq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgm', 'Karipúna', NULL, 295.10) END +VALUES ('kuq', 'Karipuna', NULL, 2963.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karipúna', [Definition] = NULL, [SortOrder] = 295.10 WHERE [Code] = 'kgm' END +SET [Description] = 'Karipuna', [Definition] = NULL, [SortOrder] = 2963.00 WHERE [Code] = 'kuq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmv', 'Karipúna Creole French', NULL, 295.20) END +VALUES ('kmv', 'Karipúna Creole French', NULL, 2964.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karipúna Creole French', [Definition] = NULL, [SortOrder] = 295.20 WHERE [Code] = 'kmv' END +SET [Description] = 'Karipúna Creole French', [Definition] = NULL, [SortOrder] = 2964.00 WHERE [Code] = 'kmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzw', 'Karirí-Xocó', NULL, 295.30) END +VALUES ('kzw', 'Karirí-Xocó', NULL, 2965.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karirí-Xocó', [Definition] = NULL, [SortOrder] = 295.30 WHERE [Code] = 'kzw' END +SET [Description] = 'Karirí-Xocó', [Definition] = NULL, [SortOrder] = 2965.00 WHERE [Code] = 'kzw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktn', 'Karitiâna', NULL, 295.40) END +VALUES ('ktn', 'Karitiâna', NULL, 2966.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karitiâna', [Definition] = NULL, [SortOrder] = 295.40 WHERE [Code] = 'ktn' END +SET [Description] = 'Karitiâna', [Definition] = NULL, [SortOrder] = 2966.00 WHERE [Code] = 'ktn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kil', 'Kariya', NULL, 295.50) END +VALUES ('kil', 'Kariya', NULL, 2967.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kariya', [Definition] = NULL, [SortOrder] = 295.50 WHERE [Code] = 'kil' END +SET [Description] = 'Kariya', [Definition] = NULL, [SortOrder] = 2967.00 WHERE [Code] = 'kil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vka', 'Kariyarra', NULL, 295.60) END +VALUES ('vka', 'Kariyarra', NULL, 2968.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kariyarra', [Definition] = NULL, [SortOrder] = 295.60 WHERE [Code] = 'vka' END +SET [Description] = 'Kariyarra', [Definition] = NULL, [SortOrder] = 2968.00 WHERE [Code] = 'vka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuj', 'Karkar-Yuri', NULL, 295.70) END +VALUES ('yuj', 'Karkar-Yuri', NULL, 2969.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karkar-Yuri', [Definition] = NULL, [SortOrder] = 295.70 WHERE [Code] = 'yuj' END +SET [Description] = 'Karkar-Yuri', [Definition] = NULL, [SortOrder] = 2969.00 WHERE [Code] = 'yuj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krb', 'Karkin', NULL, 295.80) END +VALUES ('krb', 'Karkin', NULL, 2970.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karkin', [Definition] = NULL, [SortOrder] = 295.80 WHERE [Code] = 'krb' END +SET [Description] = 'Karkin', [Definition] = NULL, [SortOrder] = 2970.00 WHERE [Code] = 'krb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kko', 'Karko', NULL, 295.90) END +VALUES ('kko', 'Karko', NULL, 2971.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karko', [Definition] = NULL, [SortOrder] = 295.90 WHERE [Code] = 'kko' END +SET [Description] = 'Karko', [Definition] = NULL, [SortOrder] = 2971.00 WHERE [Code] = 'kko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbv', 'Karnai', NULL, 296.00) END +VALUES ('bbv', 'Karnai', NULL, 2972.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karnai', [Definition] = NULL, [SortOrder] = 296.00 WHERE [Code] = 'bbv' END +SET [Description] = 'Karnai', [Definition] = NULL, [SortOrder] = 2972.00 WHERE [Code] = 'bbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arr', 'Karo (Brazil)', NULL, 296.10) END +VALUES ('arr', 'Karo (Brazil)', NULL, 2973.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karo (Brazil)', [Definition] = NULL, [SortOrder] = 296.10 WHERE [Code] = 'arr' END +SET [Description] = 'Karo (Brazil)', [Definition] = NULL, [SortOrder] = 2973.00 WHERE [Code] = 'arr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxh', 'Karo (Ethiopia)', NULL, 296.20) END +VALUES ('kxh', 'Karo (Ethiopia)', NULL, 2974.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karo (Ethiopia)', [Definition] = NULL, [SortOrder] = 296.20 WHERE [Code] = 'kxh' END +SET [Description] = 'Karo (Ethiopia)', [Definition] = NULL, [SortOrder] = 2974.00 WHERE [Code] = 'kxh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyh', 'Karok', NULL, 296.30) END +VALUES ('kyh', 'Karok', NULL, 2975.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karok', [Definition] = NULL, [SortOrder] = 296.30 WHERE [Code] = 'kyh' END +SET [Description] = 'Karok', [Definition] = NULL, [SortOrder] = 2975.00 WHERE [Code] = 'kyh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krx', 'Karon', NULL, 296.40) END +VALUES ('krx', 'Karon', NULL, 2976.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karon', [Definition] = NULL, [SortOrder] = 296.40 WHERE [Code] = 'krx' END +SET [Description] = 'Karon', [Definition] = NULL, [SortOrder] = 2976.00 WHERE [Code] = 'krx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgw', 'Karon Dori', NULL, 296.50) END +VALUES ('kgw', 'Karon Dori', NULL, 2977.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karon Dori', [Definition] = NULL, [SortOrder] = 296.50 WHERE [Code] = 'kgw' END +SET [Description] = 'Karon Dori', [Definition] = NULL, [SortOrder] = 2977.00 WHERE [Code] = 'kgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkx', 'Karore', NULL, 296.60) END +VALUES ('xkx', 'Karore', NULL, 2978.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karore', [Definition] = NULL, [SortOrder] = 296.60 WHERE [Code] = 'xkx' END +SET [Description] = 'Karore', [Definition] = NULL, [SortOrder] = 2978.00 WHERE [Code] = 'xkx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rxw', 'Karuwali', NULL, 296.70) END +VALUES ('rxw', 'Karuwali', NULL, 2979.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karuwali', [Definition] = NULL, [SortOrder] = 296.70 WHERE [Code] = 'rxw' END +SET [Description] = 'Karuwali', [Definition] = NULL, [SortOrder] = 2979.00 WHERE [Code] = 'rxw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccj', 'Kasanga', NULL, 296.80) END +VALUES ('ccj', 'Kasanga', NULL, 2980.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kasanga', [Definition] = NULL, [SortOrder] = 296.80 WHERE [Code] = 'ccj' END +SET [Description] = 'Kasanga', [Definition] = NULL, [SortOrder] = 2980.00 WHERE [Code] = 'ccj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsm', 'Kasem', NULL, 296.90) END +VALUES ('xsm', 'Kasem', NULL, 2981.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kasem', [Definition] = NULL, [SortOrder] = 296.90 WHERE [Code] = 'xsm' END +SET [Description] = 'Kasem', [Definition] = NULL, [SortOrder] = 2981.00 WHERE [Code] = 'xsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kju', 'Kashaya', NULL, 297.00) END +VALUES ('kju', 'Kashaya', NULL, 2982.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kashaya', [Definition] = NULL, [SortOrder] = 297.00 WHERE [Code] = 'kju' END +SET [Description] = 'Kashaya', [Definition] = NULL, [SortOrder] = 2982.00 WHERE [Code] = 'kju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kas', 'Kashmiri', NULL, 297.10) END +VALUES ('kas', 'Kashmiri', NULL, 2983.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kashmiri', [Definition] = NULL, [SortOrder] = 297.10 WHERE [Code] = 'kas' END +SET [Description] = 'Kashmiri', [Definition] = NULL, [SortOrder] = 2983.00 WHERE [Code] = 'kas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csb', 'Kashubian', NULL, 297.20) END +VALUES ('csb', 'Kashubian', NULL, 2984.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kashubian', [Definition] = NULL, [SortOrder] = 297.20 WHERE [Code] = 'csb' END +SET [Description] = 'Kashubian', [Definition] = NULL, [SortOrder] = 2984.00 WHERE [Code] = 'csb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksn', 'Kasiguranin', NULL, 297.30) END +VALUES ('ksn', 'Kasiguranin', NULL, 2985.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kasiguranin', [Definition] = NULL, [SortOrder] = 297.30 WHERE [Code] = 'ksn' END +SET [Description] = 'Kasiguranin', [Definition] = NULL, [SortOrder] = 2985.00 WHERE [Code] = 'ksn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkz', 'Kaska', NULL, 297.40) END +VALUES ('kkz', 'Kaska', NULL, 2986.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaska', [Definition] = NULL, [SortOrder] = 297.40 WHERE [Code] = 'kkz' END +SET [Description] = 'Kaska', [Definition] = NULL, [SortOrder] = 2986.00 WHERE [Code] = 'kkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsk', 'Kaskean', NULL, 297.50) END +VALUES ('zsk', 'Kaskean', NULL, 2987.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaskean', [Definition] = NULL, [SortOrder] = 297.50 WHERE [Code] = 'zsk' END +SET [Description] = 'Kaskean', [Definition] = NULL, [SortOrder] = 2987.00 WHERE [Code] = 'zsk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khs', 'Kasua', NULL, 297.60) END +VALUES ('khs', 'Kasua', NULL, 2988.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kasua', [Definition] = NULL, [SortOrder] = 297.60 WHERE [Code] = 'khs' END +SET [Description] = 'Kasua', [Definition] = NULL, [SortOrder] = 2988.00 WHERE [Code] = 'khs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktq', 'Katabaga', NULL, 297.70) END +VALUES ('ktq', 'Katabaga', NULL, 2989.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katabaga', [Definition] = NULL, [SortOrder] = 297.70 WHERE [Code] = 'ktq' END +SET [Description] = 'Katabaga', [Definition] = NULL, [SortOrder] = 2989.00 WHERE [Code] = 'ktq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xat', 'Katawixi', NULL, 297.80) END +VALUES ('xat', 'Katawixi', NULL, 2990.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katawixi', [Definition] = NULL, [SortOrder] = 297.80 WHERE [Code] = 'xat' END +SET [Description] = 'Katawixi', [Definition] = NULL, [SortOrder] = 2990.00 WHERE [Code] = 'xat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmb', 'Katbol', NULL, 297.90) END +VALUES ('tmb', 'Katbol', NULL, 2991.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katbol', [Definition] = NULL, [SortOrder] = 297.90 WHERE [Code] = 'tmb' END +SET [Description] = 'Katbol', [Definition] = NULL, [SortOrder] = 2991.00 WHERE [Code] = 'tmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtc', 'Katcha-Kadugli-Miri', NULL, 298.00) END +VALUES ('xtc', 'Katcha-Kadugli-Miri', NULL, 2992.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katcha-Kadugli-Miri', [Definition] = NULL, [SortOrder] = 298.00 WHERE [Code] = 'xtc' END +SET [Description] = 'Katcha-Kadugli-Miri', [Definition] = NULL, [SortOrder] = 2992.00 WHERE [Code] = 'xtc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmg', 'Kâte', NULL, 298.10) END +VALUES ('kmg', 'Kâte', NULL, 2993.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kâte', [Definition] = NULL, [SortOrder] = 298.10 WHERE [Code] = 'kmg' END +SET [Description] = 'Kâte', [Definition] = NULL, [SortOrder] = 2993.00 WHERE [Code] = 'kmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkt', 'Kathoriya Tharu', NULL, 298.20) END +VALUES ('tkt', 'Kathoriya Tharu', NULL, 2994.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kathoriya Tharu', [Definition] = NULL, [SortOrder] = 298.20 WHERE [Code] = 'tkt' END +SET [Description] = 'Kathoriya Tharu', [Definition] = NULL, [SortOrder] = 2994.00 WHERE [Code] = 'tkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykt', 'Kathu', NULL, 298.30) END +VALUES ('ykt', 'Kathu', NULL, 2995.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kathu', [Definition] = NULL, [SortOrder] = 298.30 WHERE [Code] = 'ykt' END +SET [Description] = 'Kathu', [Definition] = NULL, [SortOrder] = 2995.00 WHERE [Code] = 'ykt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsh', 'Kati', NULL, 298.40) END +VALUES ('bsh', 'Kati', NULL, 2996.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kati', [Definition] = NULL, [SortOrder] = 298.40 WHERE [Code] = 'bsh' END +SET [Description] = 'Kati', [Definition] = NULL, [SortOrder] = 2996.00 WHERE [Code] = 'bsh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfu', 'Katkari', NULL, 298.50) END +VALUES ('kfu', 'Katkari', NULL, 2997.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katkari', [Definition] = NULL, [SortOrder] = 298.50 WHERE [Code] = 'kfu' END +SET [Description] = 'Katkari', [Definition] = NULL, [SortOrder] = 2997.00 WHERE [Code] = 'kfu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcr', 'Katla', NULL, 298.60) END +VALUES ('kcr', 'Katla', NULL, 2998.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katla', [Definition] = NULL, [SortOrder] = 298.60 WHERE [Code] = 'kcr' END +SET [Description] = 'Katla', [Definition] = NULL, [SortOrder] = 2998.00 WHERE [Code] = 'kcr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktw', 'Kato', NULL, 298.70) END +VALUES ('ktw', 'Kato', NULL, 2999.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kato', [Definition] = NULL, [SortOrder] = 298.70 WHERE [Code] = 'ktw' END +SET [Description] = 'Kato', [Definition] = NULL, [SortOrder] = 2999.00 WHERE [Code] = 'ktw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaf', 'Katso', NULL, 298.80) END +VALUES ('kaf', 'Katso', NULL, 3000.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katso', [Definition] = NULL, [SortOrder] = 298.80 WHERE [Code] = 'kaf' END +SET [Description] = 'Katso', [Definition] = NULL, [SortOrder] = 3000.00 WHERE [Code] = 'kaf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kta', 'Katua', NULL, 298.90) END +VALUES ('kta', 'Katua', NULL, 3001.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katua', [Definition] = NULL, [SortOrder] = 298.90 WHERE [Code] = 'kta' END +SET [Description] = 'Katua', [Definition] = NULL, [SortOrder] = 3001.00 WHERE [Code] = 'kta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kav', 'Katukína', NULL, 299.00) END +VALUES ('kav', 'Katukína', NULL, 3002.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katukína', [Definition] = NULL, [SortOrder] = 299.00 WHERE [Code] = 'kav' END +SET [Description] = 'Katukína', [Definition] = NULL, [SortOrder] = 3002.00 WHERE [Code] = 'kav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pss', 'Kaulong', NULL, 299.10) END +VALUES ('pss', 'Kaulong', NULL, 3003.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaulong', [Definition] = NULL, [SortOrder] = 299.10 WHERE [Code] = 'pss' END +SET [Description] = 'Kaulong', [Definition] = NULL, [SortOrder] = 3003.00 WHERE [Code] = 'pss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkk', 'Kaur', NULL, 299.20) END +VALUES ('vkk', 'Kaur', NULL, 3004.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaur', [Definition] = NULL, [SortOrder] = 299.20 WHERE [Code] = 'vkk' END +SET [Description] = 'Kaur', [Definition] = NULL, [SortOrder] = 3004.00 WHERE [Code] = 'vkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpp', 'Kaure', NULL, 299.30) END +VALUES ('bpp', 'Kaure', NULL, 3005.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaure', [Definition] = NULL, [SortOrder] = 299.30 WHERE [Code] = 'bpp' END +SET [Description] = 'Kaure', [Definition] = NULL, [SortOrder] = 3005.00 WHERE [Code] = 'bpp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zku', 'Kaurna', NULL, 299.40) END +VALUES ('zku', 'Kaurna', NULL, 3006.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaurna', [Definition] = NULL, [SortOrder] = 299.40 WHERE [Code] = 'zku' END +SET [Description] = 'Kaurna', [Definition] = NULL, [SortOrder] = 3006.00 WHERE [Code] = 'zku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xau', 'Kauwera', NULL, 299.50) END +VALUES ('xau', 'Kauwera', NULL, 3007.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kauwera', [Definition] = NULL, [SortOrder] = 299.50 WHERE [Code] = 'xau' END +SET [Description] = 'Kauwera', [Definition] = NULL, [SortOrder] = 3007.00 WHERE [Code] = 'xau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckv', 'Kavalan', NULL, 299.60) END +VALUES ('ckv', 'Kavalan', NULL, 3008.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kavalan', [Definition] = NULL, [SortOrder] = 299.60 WHERE [Code] = 'ckv' END +SET [Description] = 'Kavalan', [Definition] = NULL, [SortOrder] = 3008.00 WHERE [Code] = 'ckv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krv', 'Kavet', NULL, 299.70) END +VALUES ('krv', 'Kavet', NULL, 3009.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kavet', [Definition] = NULL, [SortOrder] = 299.70 WHERE [Code] = 'krv' END +SET [Description] = 'Kavet', [Definition] = NULL, [SortOrder] = 3009.00 WHERE [Code] = 'krv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcb', 'Kawacha', NULL, 299.80) END +VALUES ('kcb', 'Kawacha', NULL, 3010.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kawacha', [Definition] = NULL, [SortOrder] = 299.80 WHERE [Code] = 'kcb' END +SET [Description] = 'Kawacha', [Definition] = NULL, [SortOrder] = 3010.00 WHERE [Code] = 'kcb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xaw', 'Kawaiisu', NULL, 299.90) END +VALUES ('xaw', 'Kawaiisu', NULL, 3011.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kawaiisu', [Definition] = NULL, [SortOrder] = 299.90 WHERE [Code] = 'xaw' END +SET [Description] = 'Kawaiisu', [Definition] = NULL, [SortOrder] = 3011.00 WHERE [Code] = 'xaw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgb', 'Kawe', NULL, 300.00) END +VALUES ('kgb', 'Kawe', NULL, 3012.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kawe', [Definition] = NULL, [SortOrder] = 300.00 WHERE [Code] = 'kgb' END +SET [Description] = 'Kawe', [Definition] = NULL, [SortOrder] = 3012.00 WHERE [Code] = 'kgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaw', 'Kawi', NULL, 300.10) END +VALUES ('kaw', 'Kawi', NULL, 3013.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kawi', [Definition] = NULL, [SortOrder] = 300.10 WHERE [Code] = 'kaw' END +SET [Description] = 'Kawi', [Definition] = NULL, [SortOrder] = 3013.00 WHERE [Code] = 'kaw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktx', 'Kaxararí', NULL, 300.20) END +VALUES ('ktx', 'Kaxararí', NULL, 3014.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaxararí', [Definition] = NULL, [SortOrder] = 300.20 WHERE [Code] = 'ktx' END +SET [Description] = 'Kaxararí', [Definition] = NULL, [SortOrder] = 3014.00 WHERE [Code] = 'ktx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbb', 'Kaxuiâna', NULL, 300.30) END +VALUES ('kbb', 'Kaxuiâna', NULL, 3015.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaxuiâna', [Definition] = NULL, [SortOrder] = 300.30 WHERE [Code] = 'kbb' END +SET [Description] = 'Kaxuiâna', [Definition] = NULL, [SortOrder] = 3015.00 WHERE [Code] = 'kbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyz', 'Kayabí', NULL, 300.40) END +VALUES ('kyz', 'Kayabí', NULL, 3016.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayabí', [Definition] = NULL, [SortOrder] = 300.40 WHERE [Code] = 'kyz' END +SET [Description] = 'Kayabí', [Definition] = NULL, [SortOrder] = 3016.00 WHERE [Code] = 'kyz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyt', 'Kayagar', NULL, 300.50) END +VALUES ('kyt', 'Kayagar', NULL, 3017.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayagar', [Definition] = NULL, [SortOrder] = 300.50 WHERE [Code] = 'kyt' END +SET [Description] = 'Kayagar', [Definition] = NULL, [SortOrder] = 3017.00 WHERE [Code] = 'kyt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdu', 'Kayan', NULL, 300.60) END +VALUES ('pdu', 'Kayan', NULL, 3018.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayan', [Definition] = NULL, [SortOrder] = 300.60 WHERE [Code] = 'pdu' END +SET [Description] = 'Kayan', [Definition] = NULL, [SortOrder] = 3018.00 WHERE [Code] = 'pdu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xay', 'Kayan Mahakam', NULL, 300.70) END +VALUES ('xay', 'Kayan Mahakam', NULL, 3019.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayan Mahakam', [Definition] = NULL, [SortOrder] = 300.70 WHERE [Code] = 'xay' END +SET [Description] = 'Kayan Mahakam', [Definition] = NULL, [SortOrder] = 3019.00 WHERE [Code] = 'xay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkn', 'Kayan River Kayan', NULL, 300.80) END +VALUES ('xkn', 'Kayan River Kayan', NULL, 3020.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayan River Kayan', [Definition] = NULL, [SortOrder] = 300.80 WHERE [Code] = 'xkn' END +SET [Description] = 'Kayan River Kayan', [Definition] = NULL, [SortOrder] = 3020.00 WHERE [Code] = 'xkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txu', 'Kayapó', NULL, 300.90) END +VALUES ('txu', 'Kayapó', NULL, 3021.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayapó', [Definition] = NULL, [SortOrder] = 300.90 WHERE [Code] = 'txu' END +SET [Description] = 'Kayapó', [Definition] = NULL, [SortOrder] = 3021.00 WHERE [Code] = 'txu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyd', 'Kayardild', NULL, 301.00) END +VALUES ('gyd', 'Kayardild', NULL, 3022.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayardild', [Definition] = NULL, [SortOrder] = 301.00 WHERE [Code] = 'gyd' END +SET [Description] = 'Kayardild', [Definition] = NULL, [SortOrder] = 3022.00 WHERE [Code] = 'gyd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvl', 'Kayaw', NULL, 301.10) END +VALUES ('kvl', 'Kayaw', NULL, 3023.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayaw', [Definition] = NULL, [SortOrder] = 301.10 WHERE [Code] = 'kvl' END +SET [Description] = 'Kayaw', [Definition] = NULL, [SortOrder] = 3023.00 WHERE [Code] = 'kvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzl', 'Kayeli', NULL, 301.20) END +VALUES ('kzl', 'Kayeli', NULL, 3024.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayeli', [Definition] = NULL, [SortOrder] = 301.20 WHERE [Code] = 'kzl' END +SET [Description] = 'Kayeli', [Definition] = NULL, [SortOrder] = 3024.00 WHERE [Code] = 'kzl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxy', 'Kayong', NULL, 301.30) END +VALUES ('kxy', 'Kayong', NULL, 3025.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayong', [Definition] = NULL, [SortOrder] = 301.30 WHERE [Code] = 'kxy' END +SET [Description] = 'Kayong', [Definition] = NULL, [SortOrder] = 3025.00 WHERE [Code] = 'kxy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyv', 'Kayort', NULL, 301.40) END +VALUES ('kyv', 'Kayort', NULL, 3026.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayort', [Definition] = NULL, [SortOrder] = 301.40 WHERE [Code] = 'kyv' END +SET [Description] = 'Kayort', [Definition] = NULL, [SortOrder] = 3026.00 WHERE [Code] = 'kyv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbb', 'Kaytetye', NULL, 301.50) END +VALUES ('gbb', 'Kaytetye', NULL, 3027.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaytetye', [Definition] = NULL, [SortOrder] = 301.50 WHERE [Code] = 'gbb' END +SET [Description] = 'Kaytetye', [Definition] = NULL, [SortOrder] = 3027.00 WHERE [Code] = 'gbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzu', 'Kayupulau', NULL, 301.60) END +VALUES ('kzu', 'Kayupulau', NULL, 3028.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayupulau', [Definition] = NULL, [SortOrder] = 301.60 WHERE [Code] = 'kzu' END +SET [Description] = 'Kayupulau', [Definition] = NULL, [SortOrder] = 3028.00 WHERE [Code] = 'kzu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaz', 'Kazakh', NULL, 301.70) END +VALUES ('kaz', 'Kazakh', NULL, 3029.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kazakh', [Definition] = NULL, [SortOrder] = 301.70 WHERE [Code] = 'kaz' END +SET [Description] = 'Kazakh', [Definition] = NULL, [SortOrder] = 3029.00 WHERE [Code] = 'kaz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzk', 'Kazukuru', NULL, 301.80) END +VALUES ('kzk', 'Kazukuru', NULL, 3030.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kazukuru', [Definition] = NULL, [SortOrder] = 301.80 WHERE [Code] = 'kzk' END +SET [Description] = 'Kazukuru', [Definition] = NULL, [SortOrder] = 3030.00 WHERE [Code] = 'kzk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxk', 'Ke''o', NULL, 301.90) END +VALUES ('xxk', 'Ke''o', NULL, 3031.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ke''o', [Definition] = NULL, [SortOrder] = 301.90 WHERE [Code] = 'xxk' END +SET [Description] = 'Ke''o', [Definition] = NULL, [SortOrder] = 3031.00 WHERE [Code] = 'xxk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keh', 'Keak', NULL, 302.00) END +VALUES ('keh', 'Keak', NULL, 3032.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keak', [Definition] = NULL, [SortOrder] = 302.00 WHERE [Code] = 'keh' END +SET [Description] = 'Keak', [Definition] = NULL, [SortOrder] = 3032.00 WHERE [Code] = 'keh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khz', 'Keapara', NULL, 302.10) END +VALUES ('khz', 'Keapara', NULL, 3033.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keapara', [Definition] = NULL, [SortOrder] = 302.10 WHERE [Code] = 'khz' END +SET [Description] = 'Keapara', [Definition] = NULL, [SortOrder] = 3033.00 WHERE [Code] = 'khz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meo', 'Kedah Malay', NULL, 302.20) END +VALUES ('meo', 'Kedah Malay', NULL, 3034.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kedah Malay', [Definition] = NULL, [SortOrder] = 302.20 WHERE [Code] = 'meo' END +SET [Description] = 'Kedah Malay', [Definition] = NULL, [SortOrder] = 3034.00 WHERE [Code] = 'meo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksx', 'Kedang', NULL, 302.30) END +VALUES ('ksx', 'Kedang', NULL, 3035.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kedang', [Definition] = NULL, [SortOrder] = 302.30 WHERE [Code] = 'ksx' END +SET [Description] = 'Kedang', [Definition] = NULL, [SortOrder] = 3035.00 WHERE [Code] = 'ksx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdy', 'Keder', NULL, 302.40) END +VALUES ('kdy', 'Keder', NULL, 3036.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keder', [Definition] = NULL, [SortOrder] = 302.40 WHERE [Code] = 'kdy' END +SET [Description] = 'Keder', [Definition] = NULL, [SortOrder] = 3036.00 WHERE [Code] = 'kdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkr', 'Keerray-Woorroong', NULL, 302.50) END +VALUES ('wkr', 'Keerray-Woorroong', NULL, 3037.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keerray-Woorroong', [Definition] = NULL, [SortOrder] = 302.50 WHERE [Code] = 'wkr' END +SET [Description] = 'Keerray-Woorroong', [Definition] = NULL, [SortOrder] = 3037.00 WHERE [Code] = 'wkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khh', 'Kehu', NULL, 302.60) END +VALUES ('khh', 'Kehu', NULL, 3038.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kehu', [Definition] = NULL, [SortOrder] = 302.60 WHERE [Code] = 'khh' END +SET [Description] = 'Kehu', [Definition] = NULL, [SortOrder] = 3038.00 WHERE [Code] = 'khh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kei', 'Kei', NULL, 302.70) END +VALUES ('kei', 'Kei', NULL, 3039.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kei', [Definition] = NULL, [SortOrder] = 302.70 WHERE [Code] = 'kei' END +SET [Description] = 'Kei', [Definition] = NULL, [SortOrder] = 3039.00 WHERE [Code] = 'kei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kec', 'Keiga', NULL, 302.80) END +VALUES ('kec', 'Keiga', NULL, 3040.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keiga', [Definition] = NULL, [SortOrder] = 302.80 WHERE [Code] = 'kec' END +SET [Description] = 'Keiga', [Definition] = NULL, [SortOrder] = 3040.00 WHERE [Code] = 'kec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmh', 'Kein', NULL, 302.90) END +VALUES ('bmh', 'Kein', NULL, 3041.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kein', [Definition] = NULL, [SortOrder] = 302.90 WHERE [Code] = 'bmh' END +SET [Description] = 'Kein', [Definition] = NULL, [SortOrder] = 3041.00 WHERE [Code] = 'bmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eyo', 'Keiyo', NULL, 303.00) END +VALUES ('eyo', 'Keiyo', NULL, 3042.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keiyo', [Definition] = NULL, [SortOrder] = 303.00 WHERE [Code] = 'eyo' END +SET [Description] = 'Keiyo', [Definition] = NULL, [SortOrder] = 3042.00 WHERE [Code] = 'eyo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kek', 'Kekchí', NULL, 303.10) END +VALUES ('kek', 'Kekchí', NULL, 3043.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kekchí', [Definition] = NULL, [SortOrder] = 303.10 WHERE [Code] = 'kek' END +SET [Description] = 'Kekchí', [Definition] = NULL, [SortOrder] = 3043.00 WHERE [Code] = 'kek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kel', 'Kela (Democratic Republic of Congo)', NULL, 303.20) END +VALUES ('kel', 'Kela (Democratic Republic of Congo)', NULL, 3044.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kela (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 303.20 WHERE [Code] = 'kel' END +SET [Description] = 'Kela (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 3044.00 WHERE [Code] = 'kel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcl', 'Kela (Papua New Guinea)', NULL, 303.30) END +VALUES ('kcl', 'Kela (Papua New Guinea)', NULL, 3045.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kela (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 303.30 WHERE [Code] = 'kcl' END +SET [Description] = 'Kela (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3045.00 WHERE [Code] = 'kcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzi', 'Kelabit', NULL, 303.40) END +VALUES ('kzi', 'Kelabit', NULL, 3046.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kelabit', [Definition] = NULL, [SortOrder] = 303.40 WHERE [Code] = 'kzi' END +SET [Description] = 'Kelabit', [Definition] = NULL, [SortOrder] = 3046.00 WHERE [Code] = 'kzi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keb', 'Kélé', NULL, 303.50) END +VALUES ('keb', 'Kélé', NULL, 3047.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kélé', [Definition] = NULL, [SortOrder] = 303.50 WHERE [Code] = 'keb' END +SET [Description] = 'Kélé', [Definition] = NULL, [SortOrder] = 3047.00 WHERE [Code] = 'keb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khy', 'Kele (Democratic Republic of Congo)', NULL, 303.60) END +VALUES ('khy', 'Kele (Democratic Republic of Congo)', NULL, 3048.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kele (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 303.60 WHERE [Code] = 'khy' END +SET [Description] = 'Kele (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 3048.00 WHERE [Code] = 'khy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbc', 'Kele (Papua New Guinea)', NULL, 303.70) END +VALUES ('sbc', 'Kele (Papua New Guinea)', NULL, 3049.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kele (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 303.70 WHERE [Code] = 'sbc' END +SET [Description] = 'Kele (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3049.00 WHERE [Code] = 'sbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzx', 'Kelengaxo Bozo', NULL, 303.80) END +VALUES ('bzx', 'Kelengaxo Bozo', NULL, 3050.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kelengaxo Bozo', [Definition] = NULL, [SortOrder] = 303.80 WHERE [Code] = 'bzx' END +SET [Description] = 'Kelengaxo Bozo', [Definition] = NULL, [SortOrder] = 3050.00 WHERE [Code] = 'bzx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ify') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ify', 'Keley-I Kallahan', NULL, 303.90) END +VALUES ('ify', 'Keley-I Kallahan', NULL, 3051.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keley-I Kallahan', [Definition] = NULL, [SortOrder] = 303.90 WHERE [Code] = 'ify' END +SET [Description] = 'Keley-I Kallahan', [Definition] = NULL, [SortOrder] = 3051.00 WHERE [Code] = 'ify' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbo', 'Keliko', NULL, 304.00) END +VALUES ('kbo', 'Keliko', NULL, 3052.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keliko', [Definition] = NULL, [SortOrder] = 304.00 WHERE [Code] = 'kbo' END +SET [Description] = 'Keliko', [Definition] = NULL, [SortOrder] = 3052.00 WHERE [Code] = 'kbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xel', 'Kelo', NULL, 304.10) END +VALUES ('xel', 'Kelo', NULL, 3053.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kelo', [Definition] = NULL, [SortOrder] = 304.10 WHERE [Code] = 'xel' END +SET [Description] = 'Kelo', [Definition] = NULL, [SortOrder] = 3053.00 WHERE [Code] = 'xel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyo', 'Kelon', NULL, 304.20) END +VALUES ('kyo', 'Kelon', NULL, 3054.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kelon', [Definition] = NULL, [SortOrder] = 304.20 WHERE [Code] = 'kyo' END +SET [Description] = 'Kelon', [Definition] = NULL, [SortOrder] = 3054.00 WHERE [Code] = 'kyo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kem', 'Kemak', NULL, 304.30) END +VALUES ('kem', 'Kemak', NULL, 3055.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemak', [Definition] = NULL, [SortOrder] = 304.30 WHERE [Code] = 'kem' END +SET [Description] = 'Kemak', [Definition] = NULL, [SortOrder] = 3055.00 WHERE [Code] = 'kem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xem', 'Kembayan', NULL, 304.40) END +VALUES ('xem', 'Kembayan', NULL, 3056.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kembayan', [Definition] = NULL, [SortOrder] = 304.40 WHERE [Code] = 'xem' END +SET [Description] = 'Kembayan', [Definition] = NULL, [SortOrder] = 3056.00 WHERE [Code] = 'xem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzp', 'Kemberano', NULL, 304.50) END +VALUES ('bzp', 'Kemberano', NULL, 3057.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemberano', [Definition] = NULL, [SortOrder] = 304.50 WHERE [Code] = 'bzp' END +SET [Description] = 'Kemberano', [Definition] = NULL, [SortOrder] = 3057.00 WHERE [Code] = 'bzp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkw', 'Kembra', NULL, 304.60) END +VALUES ('xkw', 'Kembra', NULL, 3058.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kembra', [Definition] = NULL, [SortOrder] = 304.60 WHERE [Code] = 'xkw' END +SET [Description] = 'Kembra', [Definition] = NULL, [SortOrder] = 3058.00 WHERE [Code] = 'xkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmo', 'Kemedzung', NULL, 304.70) END +VALUES ('dmo', 'Kemedzung', NULL, 3059.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemedzung', [Definition] = NULL, [SortOrder] = 304.70 WHERE [Code] = 'dmo' END +SET [Description] = 'Kemedzung', [Definition] = NULL, [SortOrder] = 3059.00 WHERE [Code] = 'dmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjk', 'Kemi Sami', NULL, 304.80) END +VALUES ('sjk', 'Kemi Sami', NULL, 3060.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemi Sami', [Definition] = NULL, [SortOrder] = 304.80 WHERE [Code] = 'sjk' END +SET [Description] = 'Kemi Sami', [Definition] = NULL, [SortOrder] = 3060.00 WHERE [Code] = 'sjk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfj', 'Kemiehua', NULL, 304.90) END +VALUES ('kfj', 'Kemiehua', NULL, 3061.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemiehua', [Definition] = NULL, [SortOrder] = 304.90 WHERE [Code] = 'kfj' END +SET [Description] = 'Kemiehua', [Definition] = NULL, [SortOrder] = 3061.00 WHERE [Code] = 'kfj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmt', 'Kemtuik', NULL, 305.00) END +VALUES ('kmt', 'Kemtuik', NULL, 3062.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemtuik', [Definition] = NULL, [SortOrder] = 305.00 WHERE [Code] = 'kmt' END +SET [Description] = 'Kemtuik', [Definition] = NULL, [SortOrder] = 3062.00 WHERE [Code] = 'kmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbn', 'Kenaboi', NULL, 305.10) END +VALUES ('xbn', 'Kenaboi', NULL, 3063.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenaboi', [Definition] = NULL, [SortOrder] = 305.10 WHERE [Code] = 'xbn' END +SET [Description] = 'Kenaboi', [Definition] = NULL, [SortOrder] = 3063.00 WHERE [Code] = 'xbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gat', 'Kenati', NULL, 305.20) END +VALUES ('gat', 'Kenati', NULL, 3064.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenati', [Definition] = NULL, [SortOrder] = 305.20 WHERE [Code] = 'gat' END +SET [Description] = 'Kenati', [Definition] = NULL, [SortOrder] = 3064.00 WHERE [Code] = 'gat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knx', 'Kendayan', NULL, 305.30) END +VALUES ('knx', 'Kendayan', NULL, 3065.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kendayan', [Definition] = NULL, [SortOrder] = 305.30 WHERE [Code] = 'knx' END +SET [Description] = 'Kendayan', [Definition] = NULL, [SortOrder] = 3065.00 WHERE [Code] = 'knx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klf', 'Kendeje', NULL, 305.40) END +VALUES ('klf', 'Kendeje', NULL, 3066.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kendeje', [Definition] = NULL, [SortOrder] = 305.40 WHERE [Code] = 'klf' END +SET [Description] = 'Kendeje', [Definition] = NULL, [SortOrder] = 3066.00 WHERE [Code] = 'klf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvm', 'Kendem', NULL, 305.50) END +VALUES ('kvm', 'Kendem', NULL, 3067.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kendem', [Definition] = NULL, [SortOrder] = 305.50 WHERE [Code] = 'kvm' END +SET [Description] = 'Kendem', [Definition] = NULL, [SortOrder] = 3067.00 WHERE [Code] = 'kvm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyq', 'Kenga', NULL, 305.60) END +VALUES ('kyq', 'Kenga', NULL, 3068.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenga', [Definition] = NULL, [SortOrder] = 305.60 WHERE [Code] = 'kyq' END +SET [Description] = 'Kenga', [Definition] = NULL, [SortOrder] = 3068.00 WHERE [Code] = 'kyq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxi', 'Keningau Murut', NULL, 305.70) END +VALUES ('kxi', 'Keningau Murut', NULL, 3069.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keningau Murut', [Definition] = NULL, [SortOrder] = 305.70 WHERE [Code] = 'kxi' END +SET [Description] = 'Keningau Murut', [Definition] = NULL, [SortOrder] = 3069.00 WHERE [Code] = 'kxi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knl', 'Keninjal', NULL, 305.80) END +VALUES ('knl', 'Keninjal', NULL, 3070.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keninjal', [Definition] = NULL, [SortOrder] = 305.80 WHERE [Code] = 'knl' END +SET [Description] = 'Keninjal', [Definition] = NULL, [SortOrder] = 3070.00 WHERE [Code] = 'knl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kns', 'Kensiu', NULL, 305.90) END +VALUES ('kns', 'Kensiu', NULL, 3071.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kensiu', [Definition] = NULL, [SortOrder] = 305.90 WHERE [Code] = 'kns' END +SET [Description] = 'Kensiu', [Definition] = NULL, [SortOrder] = 3071.00 WHERE [Code] = 'kns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndb', 'Kenswei Nsei', NULL, 306.00) END +VALUES ('ndb', 'Kenswei Nsei', NULL, 3072.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenswei Nsei', [Definition] = NULL, [SortOrder] = 306.00 WHERE [Code] = 'ndb' END +SET [Description] = 'Kenswei Nsei', [Definition] = NULL, [SortOrder] = 3072.00 WHERE [Code] = 'ndb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xki', 'Kenyan Sign Language', NULL, 306.10) END +VALUES ('xki', 'Kenyan Sign Language', NULL, 3073.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenyan Sign Language', [Definition] = NULL, [SortOrder] = 306.10 WHERE [Code] = 'xki' END +SET [Description] = 'Kenyan Sign Language', [Definition] = NULL, [SortOrder] = 3073.00 WHERE [Code] = 'xki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ken') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ken', 'Kenyang', NULL, 306.20) END +VALUES ('ken', 'Kenyang', NULL, 3074.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenyang', [Definition] = NULL, [SortOrder] = 306.20 WHERE [Code] = 'ken' END +SET [Description] = 'Kenyang', [Definition] = NULL, [SortOrder] = 3074.00 WHERE [Code] = 'ken' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lke', 'Kenyi', NULL, 306.30) END +VALUES ('lke', 'Kenyi', NULL, 3075.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenyi', [Definition] = NULL, [SortOrder] = 306.30 WHERE [Code] = 'lke' END +SET [Description] = 'Kenyi', [Definition] = NULL, [SortOrder] = 3075.00 WHERE [Code] = 'lke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnz', 'Kenzi', NULL, 306.40) END +VALUES ('xnz', 'Kenzi', NULL, 3076.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenzi', [Definition] = NULL, [SortOrder] = 306.40 WHERE [Code] = 'xnz' END +SET [Description] = 'Kenzi', [Definition] = NULL, [SortOrder] = 3076.00 WHERE [Code] = 'xnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xeu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xeu', 'Keoru-Ahia', NULL, 306.50) END +VALUES ('xeu', 'Keoru-Ahia', NULL, 3077.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keoru-Ahia', [Definition] = NULL, [SortOrder] = 306.50 WHERE [Code] = 'xeu' END +SET [Description] = 'Keoru-Ahia', [Definition] = NULL, [SortOrder] = 3077.00 WHERE [Code] = 'xeu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpn', 'Kepkiriwát', NULL, 306.60) END +VALUES ('kpn', 'Kepkiriwát', NULL, 3078.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kepkiriwát', [Definition] = NULL, [SortOrder] = 306.60 WHERE [Code] = 'kpn' END +SET [Description] = 'Kepkiriwát', [Definition] = NULL, [SortOrder] = 3078.00 WHERE [Code] = 'kpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuk', 'Kepo''', NULL, 306.70) END +VALUES ('kuk', 'Kepo''', NULL, 3079.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kepo''', [Definition] = NULL, [SortOrder] = 306.70 WHERE [Code] = 'kuk' END +SET [Description] = 'Kepo''', [Definition] = NULL, [SortOrder] = 3079.00 WHERE [Code] = 'kuk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ker') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ker', 'Kera', NULL, 306.80) END +VALUES ('ker', 'Kera', NULL, 3080.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kera', [Definition] = NULL, [SortOrder] = 306.80 WHERE [Code] = 'ker' END +SET [Description] = 'Kera', [Definition] = NULL, [SortOrder] = 3080.00 WHERE [Code] = 'ker' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hhr', 'Kerak', NULL, 306.90) END +VALUES ('hhr', 'Kerak', NULL, 3081.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerak', [Definition] = NULL, [SortOrder] = 306.90 WHERE [Code] = 'hhr' END +SET [Description] = 'Kerak', [Definition] = NULL, [SortOrder] = 3081.00 WHERE [Code] = 'hhr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xke', 'Kereho', NULL, 307.00) END +VALUES ('xke', 'Kereho', NULL, 3082.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kereho', [Definition] = NULL, [SortOrder] = 307.00 WHERE [Code] = 'xke' END +SET [Description] = 'Kereho', [Definition] = NULL, [SortOrder] = 3082.00 WHERE [Code] = 'xke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krk', 'Kerek', NULL, 307.10) END +VALUES ('krk', 'Kerek', NULL, 3083.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerek', [Definition] = NULL, [SortOrder] = 307.10 WHERE [Code] = 'krk' END +SET [Description] = 'Kerek', [Definition] = NULL, [SortOrder] = 3083.00 WHERE [Code] = 'krk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ked') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ked', 'Kerewe', NULL, 307.20) END +VALUES ('ked', 'Kerewe', NULL, 3084.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerewe', [Definition] = NULL, [SortOrder] = 307.20 WHERE [Code] = 'ked' END +SET [Description] = 'Kerewe', [Definition] = NULL, [SortOrder] = 3084.00 WHERE [Code] = 'ked' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxz', 'Kerewo', NULL, 307.30) END +VALUES ('kxz', 'Kerewo', NULL, 3085.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerewo', [Definition] = NULL, [SortOrder] = 307.30 WHERE [Code] = 'kxz' END +SET [Description] = 'Kerewo', [Definition] = NULL, [SortOrder] = 3085.00 WHERE [Code] = 'kxz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvr', 'Kerinci', NULL, 307.40) END +VALUES ('kvr', 'Kerinci', NULL, 3086.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerinci', [Definition] = NULL, [SortOrder] = 307.40 WHERE [Code] = 'kvr' END +SET [Description] = 'Kerinci', [Definition] = NULL, [SortOrder] = 3086.00 WHERE [Code] = 'kvr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xes', 'Kesawai', NULL, 307.50) END +VALUES ('xes', 'Kesawai', NULL, 3087.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kesawai', [Definition] = NULL, [SortOrder] = 307.50 WHERE [Code] = 'xes' END +SET [Description] = 'Kesawai', [Definition] = NULL, [SortOrder] = 3087.00 WHERE [Code] = 'xes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ket') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ket', 'Ket', NULL, 307.60) END +VALUES ('ket', 'Ket', NULL, 3088.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ket', [Definition] = NULL, [SortOrder] = 307.60 WHERE [Code] = 'ket' END +SET [Description] = 'Ket', [Definition] = NULL, [SortOrder] = 3088.00 WHERE [Code] = 'ket' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kae', 'Ketangalan', NULL, 307.70) END +VALUES ('kae', 'Ketangalan', NULL, 3089.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ketangalan', [Definition] = NULL, [SortOrder] = 307.70 WHERE [Code] = 'kae' END +SET [Description] = 'Ketangalan', [Definition] = NULL, [SortOrder] = 3089.00 WHERE [Code] = 'kae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcv', 'Kete', NULL, 307.80) END +VALUES ('kcv', 'Kete', NULL, 3090.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kete', [Definition] = NULL, [SortOrder] = 307.80 WHERE [Code] = 'kcv' END +SET [Description] = 'Kete', [Definition] = NULL, [SortOrder] = 3090.00 WHERE [Code] = 'kcv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xte', 'Ketengban', NULL, 307.90) END +VALUES ('xte', 'Ketengban', NULL, 3091.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ketengban', [Definition] = NULL, [SortOrder] = 307.90 WHERE [Code] = 'xte' END +SET [Description] = 'Ketengban', [Definition] = NULL, [SortOrder] = 3091.00 WHERE [Code] = 'xte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktt', 'Ketum', NULL, 308.00) END +VALUES ('ktt', 'Ketum', NULL, 3092.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ketum', [Definition] = NULL, [SortOrder] = 308.00 WHERE [Code] = 'ktt' END +SET [Description] = 'Ketum', [Definition] = NULL, [SortOrder] = 3092.00 WHERE [Code] = 'ktt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyg', 'Keyagana', NULL, 308.10) END +VALUES ('kyg', 'Keyagana', NULL, 3093.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keyagana', [Definition] = NULL, [SortOrder] = 308.10 WHERE [Code] = 'kyg' END +SET [Description] = 'Keyagana', [Definition] = NULL, [SortOrder] = 3093.00 WHERE [Code] = 'kyg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkv', 'Kgalagadi', NULL, 308.20) END +VALUES ('xkv', 'Kgalagadi', NULL, 3094.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kgalagadi', [Definition] = NULL, [SortOrder] = 308.20 WHERE [Code] = 'xkv' END +SET [Description] = 'Kgalagadi', [Definition] = NULL, [SortOrder] = 3094.00 WHERE [Code] = 'xkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hkh', 'Khah', NULL, 308.30) END +VALUES ('hkh', 'Khah', NULL, 3095.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khah', [Definition] = NULL, [SortOrder] = 308.30 WHERE [Code] = 'hkh' END +SET [Description] = 'Khah', [Definition] = NULL, [SortOrder] = 3095.00 WHERE [Code] = 'hkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjh', 'Khakas', NULL, 308.40) END +VALUES ('kjh', 'Khakas', NULL, 3096.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khakas', [Definition] = NULL, [SortOrder] = 308.40 WHERE [Code] = 'kjh' END +SET [Description] = 'Khakas', [Definition] = NULL, [SortOrder] = 3096.00 WHERE [Code] = 'kjh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klj', 'Khalaj', NULL, 308.50) END +VALUES ('klj', 'Khalaj', NULL, 3097.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khalaj', [Definition] = NULL, [SortOrder] = 308.50 WHERE [Code] = 'klj' END +SET [Description] = 'Khalaj', [Definition] = NULL, [SortOrder] = 3097.00 WHERE [Code] = 'klj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klr', 'Khaling', NULL, 308.60) END +VALUES ('klr', 'Khaling', NULL, 3098.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khaling', [Definition] = NULL, [SortOrder] = 308.60 WHERE [Code] = 'klr' END +SET [Description] = 'Khaling', [Definition] = NULL, [SortOrder] = 3098.00 WHERE [Code] = 'klr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbg', 'Khamba', NULL, 308.70) END +VALUES ('kbg', 'Khamba', NULL, 3099.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khamba', [Definition] = NULL, [SortOrder] = 308.70 WHERE [Code] = 'kbg' END +SET [Description] = 'Khamba', [Definition] = NULL, [SortOrder] = 3099.00 WHERE [Code] = 'kbg' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('ykh', 'Khamnigan Mongo', NULL, 3100.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Khamnigan Mongo', [Definition] = NULL, [SortOrder] = 3100.00 WHERE [Code] = 'ykh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khg', 'Khams Tibetan', NULL, 308.80) END +VALUES ('khg', 'Khams Tibetan', NULL, 3101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khams Tibetan', [Definition] = NULL, [SortOrder] = 308.80 WHERE [Code] = 'khg' END +SET [Description] = 'Khams Tibetan', [Definition] = NULL, [SortOrder] = 3101.00 WHERE [Code] = 'khg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kht', 'Khamti', NULL, 308.90) END +VALUES ('kht', 'Khamti', NULL, 3102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khamti', [Definition] = NULL, [SortOrder] = 308.90 WHERE [Code] = 'kht' END +SET [Description] = 'Khamti', [Definition] = NULL, [SortOrder] = 3102.00 WHERE [Code] = 'kht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksu', 'Khamyang', NULL, 309.00) END +VALUES ('ksu', 'Khamyang', NULL, 3103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khamyang', [Definition] = NULL, [SortOrder] = 309.00 WHERE [Code] = 'ksu' END +SET [Description] = 'Khamyang', [Definition] = NULL, [SortOrder] = 3103.00 WHERE [Code] = 'ksu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogo', 'Khana', NULL, 309.10) END +VALUES ('ogo', 'Khana', NULL, 3104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khana', [Definition] = NULL, [SortOrder] = 309.10 WHERE [Code] = 'ogo' END +SET [Description] = 'Khana', [Definition] = NULL, [SortOrder] = 3104.00 WHERE [Code] = 'ogo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khn', 'Khandesi', NULL, 309.20) END +VALUES ('khn', 'Khandesi', NULL, 3105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khandesi', [Definition] = NULL, [SortOrder] = 309.20 WHERE [Code] = 'khn' END +SET [Description] = 'Khandesi', [Definition] = NULL, [SortOrder] = 3105.00 WHERE [Code] = 'khn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjm', 'Kháng', NULL, 309.30) END +VALUES ('kjm', 'Kháng', NULL, 3106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kháng', [Definition] = NULL, [SortOrder] = 309.30 WHERE [Code] = 'kjm' END +SET [Description] = 'Kháng', [Definition] = NULL, [SortOrder] = 3106.00 WHERE [Code] = 'kjm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kca', 'Khanty', NULL, 309.40) END +VALUES ('kca', 'Khanty', NULL, 3107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khanty', [Definition] = NULL, [SortOrder] = 309.40 WHERE [Code] = 'kca' END +SET [Description] = 'Khanty', [Definition] = NULL, [SortOrder] = 3107.00 WHERE [Code] = 'kca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xao', 'Khao', NULL, 309.50) END +VALUES ('xao', 'Khao', NULL, 3108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khao', [Definition] = NULL, [SortOrder] = 309.50 WHERE [Code] = 'xao' END +SET [Description] = 'Khao', [Definition] = NULL, [SortOrder] = 3108.00 WHERE [Code] = 'xao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfw', 'Kharam Naga', NULL, 309.60) END +VALUES ('kfw', 'Kharam Naga', NULL, 3109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kharam Naga', [Definition] = NULL, [SortOrder] = 309.60 WHERE [Code] = 'kfw' END +SET [Description] = 'Kharam Naga', [Definition] = NULL, [SortOrder] = 3109.00 WHERE [Code] = 'kfw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khr', 'Kharia', NULL, 309.70) END +VALUES ('khr', 'Kharia', NULL, 3110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kharia', [Definition] = NULL, [SortOrder] = 309.70 WHERE [Code] = 'khr' END +SET [Description] = 'Kharia', [Definition] = NULL, [SortOrder] = 3110.00 WHERE [Code] = 'khr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksy', 'Kharia Thar', NULL, 309.80) END +VALUES ('ksy', 'Kharia Thar', NULL, 3111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kharia Thar', [Definition] = NULL, [SortOrder] = 309.80 WHERE [Code] = 'ksy' END +SET [Description] = 'Kharia Thar', [Definition] = NULL, [SortOrder] = 3111.00 WHERE [Code] = 'ksy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kha', 'Khasi', NULL, 309.90) END +VALUES ('kha', 'Khasi', NULL, 3112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khasi', [Definition] = NULL, [SortOrder] = 309.90 WHERE [Code] = 'kha' END +SET [Description] = 'Khasi', [Definition] = NULL, [SortOrder] = 3112.00 WHERE [Code] = 'kha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lko', 'Khayo', NULL, 310.00) END +VALUES ('lko', 'Khayo', NULL, 3113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khayo', [Definition] = NULL, [SortOrder] = 310.00 WHERE [Code] = 'lko' END +SET [Description] = 'Khayo', [Definition] = NULL, [SortOrder] = 3113.00 WHERE [Code] = 'lko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkz', 'Khazar', NULL, 310.10) END +VALUES ('zkz', 'Khazar', NULL, 3114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khazar', [Definition] = NULL, [SortOrder] = 310.10 WHERE [Code] = 'zkz' END +SET [Description] = 'Khazar', [Definition] = NULL, [SortOrder] = 3114.00 WHERE [Code] = 'zkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqg', 'Khe', NULL, 310.20) END +VALUES ('kqg', 'Khe', NULL, 3115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khe', [Definition] = NULL, [SortOrder] = 310.20 WHERE [Code] = 'kqg' END +SET [Description] = 'Khe', [Definition] = NULL, [SortOrder] = 3115.00 WHERE [Code] = 'kqg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlx', 'Khehek', NULL, 310.30) END +VALUES ('tlx', 'Khehek', NULL, 3116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khehek', [Definition] = NULL, [SortOrder] = 310.30 WHERE [Code] = 'tlx' END +SET [Description] = 'Khehek', [Definition] = NULL, [SortOrder] = 3116.00 WHERE [Code] = 'tlx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkf', 'Khengkha', NULL, 310.40) END +VALUES ('xkf', 'Khengkha', NULL, 3117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khengkha', [Definition] = NULL, [SortOrder] = 310.40 WHERE [Code] = 'xkf' END +SET [Description] = 'Khengkha', [Definition] = NULL, [SortOrder] = 3117.00 WHERE [Code] = 'xkf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhe', 'Khetrani', NULL, 310.50) END +VALUES ('xhe', 'Khetrani', NULL, 3118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khetrani', [Definition] = NULL, [SortOrder] = 310.50 WHERE [Code] = 'xhe' END +SET [Description] = 'Khetrani', [Definition] = NULL, [SortOrder] = 3118.00 WHERE [Code] = 'xhe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkh', 'Khezha Naga', NULL, 310.60) END +VALUES ('nkh', 'Khezha Naga', NULL, 3119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khezha Naga', [Definition] = NULL, [SortOrder] = 310.60 WHERE [Code] = 'nkh' END +SET [Description] = 'Khezha Naga', [Definition] = NULL, [SortOrder] = 3119.00 WHERE [Code] = 'nkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kix', 'Khiamniungan Naga', NULL, 310.70) END +VALUES ('kix', 'Khiamniungan Naga', NULL, 3120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khiamniungan Naga', [Definition] = NULL, [SortOrder] = 310.70 WHERE [Code] = 'kix' END +SET [Description] = 'Khiamniungan Naga', [Definition] = NULL, [SortOrder] = 3120.00 WHERE [Code] = 'kix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjj', 'Khinalugh', NULL, 310.80) END +VALUES ('kjj', 'Khinalugh', NULL, 3121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khinalugh', [Definition] = NULL, [SortOrder] = 310.80 WHERE [Code] = 'kjj' END +SET [Description] = 'Khinalugh', [Definition] = NULL, [SortOrder] = 3121.00 WHERE [Code] = 'kjj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwx', 'Khirwar', NULL, 310.90) END +VALUES ('kwx', 'Khirwar', NULL, 3122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khirwar', [Definition] = NULL, [SortOrder] = 310.90 WHERE [Code] = 'kwx' END +SET [Description] = 'Khirwar', [Definition] = NULL, [SortOrder] = 3122.00 WHERE [Code] = 'kwx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqm', 'Khisa', NULL, 311.00) END +VALUES ('kqm', 'Khisa', NULL, 3123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khisa', [Definition] = NULL, [SortOrder] = 311.00 WHERE [Code] = 'kqm' END +SET [Description] = 'Khisa', [Definition] = NULL, [SortOrder] = 3123.00 WHERE [Code] = 'kqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykl', 'Khlula', NULL, 311.10) END +VALUES ('ykl', 'Khlula', NULL, 3124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khlula', [Definition] = NULL, [SortOrder] = 311.10 WHERE [Code] = 'ykl' END +SET [Description] = 'Khlula', [Definition] = NULL, [SortOrder] = 3124.00 WHERE [Code] = 'ykl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khm', 'Khmer', NULL, 311.20) END +VALUES ('khm', 'Khmer', NULL, 3125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khmer', [Definition] = NULL, [SortOrder] = 311.20 WHERE [Code] = 'khm' END +SET [Description] = 'Khmer', [Definition] = NULL, [SortOrder] = 3125.00 WHERE [Code] = 'khm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjg', 'Khmu', NULL, 311.30) END +VALUES ('kjg', 'Khmu', NULL, 3126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khmu', [Definition] = NULL, [SortOrder] = 311.30 WHERE [Code] = 'kjg' END +SET [Description] = 'Khmu', [Definition] = NULL, [SortOrder] = 3126.00 WHERE [Code] = 'kjg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkc', 'Kho''ini', NULL, 311.40) END +VALUES ('xkc', 'Kho''ini', NULL, 3127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kho''ini', [Definition] = NULL, [SortOrder] = 311.40 WHERE [Code] = 'xkc' END +SET [Description] = 'Kho''ini', [Definition] = NULL, [SortOrder] = 3127.00 WHERE [Code] = 'xkc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naq', 'Khoekhoe', NULL, 311.50) END +VALUES ('naq', 'Khoekhoe', NULL, 3128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khoekhoe', [Definition] = NULL, [SortOrder] = 311.50 WHERE [Code] = 'naq' END +SET [Description] = 'Khoekhoe', [Definition] = NULL, [SortOrder] = 3128.00 WHERE [Code] = 'naq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkb', 'Khoibu Naga', NULL, 311.60) END +VALUES ('nkb', 'Khoibu Naga', NULL, 3129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khoibu Naga', [Definition] = NULL, [SortOrder] = 311.60 WHERE [Code] = 'nkb' END +SET [Description] = 'Khoibu Naga', [Definition] = NULL, [SortOrder] = 3129.00 WHERE [Code] = 'nkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktc', 'Kholok', NULL, 311.70) END +VALUES ('ktc', 'Kholok', NULL, 3130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kholok', [Definition] = NULL, [SortOrder] = 311.70 WHERE [Code] = 'ktc' END +SET [Description] = 'Kholok', [Definition] = NULL, [SortOrder] = 3130.00 WHERE [Code] = 'ktc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmz', 'Khorasani Turkish', NULL, 311.80) END +VALUES ('kmz', 'Khorasani Turkish', NULL, 3131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khorasani Turkish', [Definition] = NULL, [SortOrder] = 311.80 WHERE [Code] = 'kmz' END +SET [Description] = 'Khorasani Turkish', [Definition] = NULL, [SortOrder] = 3131.00 WHERE [Code] = 'kmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkh', 'Khorezmian', NULL, 311.90) END +VALUES ('zkh', 'Khorezmian', NULL, 3132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khorezmian', [Definition] = NULL, [SortOrder] = 311.90 WHERE [Code] = 'zkh' END +SET [Description] = 'Khorezmian', [Definition] = NULL, [SortOrder] = 3132.00 WHERE [Code] = 'zkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kho', 'Khotanese', NULL, 312.00) END +VALUES ('kho', 'Khotanese', NULL, 3133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khotanese', [Definition] = NULL, [SortOrder] = 312.00 WHERE [Code] = 'kho' END +SET [Description] = 'Khotanese', [Definition] = NULL, [SortOrder] = 3133.00 WHERE [Code] = 'kho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khw', 'Khowar', NULL, 312.10) END +VALUES ('khw', 'Khowar', NULL, 3134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khowar', [Definition] = NULL, [SortOrder] = 312.10 WHERE [Code] = 'khw' END +SET [Description] = 'Khowar', [Definition] = NULL, [SortOrder] = 3134.00 WHERE [Code] = 'khw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhv', 'Khua', NULL, 312.20) END +VALUES ('xhv', 'Khua', NULL, 3135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khua', [Definition] = NULL, [SortOrder] = 312.20 WHERE [Code] = 'xhv' END +SET [Description] = 'Khua', [Definition] = NULL, [SortOrder] = 3135.00 WHERE [Code] = 'xhv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khf', 'Khuen', NULL, 312.30) END +VALUES ('khf', 'Khuen', NULL, 3136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khuen', [Definition] = NULL, [SortOrder] = 312.30 WHERE [Code] = 'khf' END +SET [Description] = 'Khuen', [Definition] = NULL, [SortOrder] = 3136.00 WHERE [Code] = 'khf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnk', 'Khumi Chin', NULL, 312.40) END +VALUES ('cnk', 'Khumi Chin', NULL, 3137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khumi Chin', [Definition] = NULL, [SortOrder] = 312.40 WHERE [Code] = 'cnk' END +SET [Description] = 'Khumi Chin', [Definition] = NULL, [SortOrder] = 3137.00 WHERE [Code] = 'cnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkh', 'Khün', NULL, 312.50) END +VALUES ('kkh', 'Khün', NULL, 3138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khün', [Definition] = NULL, [SortOrder] = 312.50 WHERE [Code] = 'kkh' END +SET [Description] = 'Khün', [Definition] = NULL, [SortOrder] = 3138.00 WHERE [Code] = 'kkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfm', 'Khunsari', NULL, 312.60) END +VALUES ('kfm', 'Khunsari', NULL, 3139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khunsari', [Definition] = NULL, [SortOrder] = 312.60 WHERE [Code] = 'kfm' END +SET [Description] = 'Khunsari', [Definition] = NULL, [SortOrder] = 3139.00 WHERE [Code] = 'kfm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khv', 'Khvarshi', NULL, 312.70) END +VALUES ('khv', 'Khvarshi', NULL, 3140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khvarshi', [Definition] = NULL, [SortOrder] = 312.70 WHERE [Code] = 'khv' END +SET [Description] = 'Khvarshi', [Definition] = NULL, [SortOrder] = 3140.00 WHERE [Code] = 'khv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blv', 'Kibala', NULL, 312.80) END +VALUES ('blv', 'Kibala', NULL, 3141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kibala', [Definition] = NULL, [SortOrder] = 312.80 WHERE [Code] = 'blv' END +SET [Description] = 'Kibala', [Definition] = NULL, [SortOrder] = 3141.00 WHERE [Code] = 'blv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kie', 'Kibet', NULL, 312.90) END +VALUES ('kie', 'Kibet', NULL, 3142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kibet', [Definition] = NULL, [SortOrder] = 312.90 WHERE [Code] = 'kie' END +SET [Description] = 'Kibet', [Definition] = NULL, [SortOrder] = 3142.00 WHERE [Code] = 'kie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prm', 'Kibiri', NULL, 313.00) END +VALUES ('prm', 'Kibiri', NULL, 3143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kibiri', [Definition] = NULL, [SortOrder] = 313.00 WHERE [Code] = 'prm' END +SET [Description] = 'Kibiri', [Definition] = NULL, [SortOrder] = 3143.00 WHERE [Code] = 'prm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kic', 'Kickapoo', NULL, 313.10) END +VALUES ('kic', 'Kickapoo', NULL, 3144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kickapoo', [Definition] = NULL, [SortOrder] = 313.10 WHERE [Code] = 'kic' END +SET [Description] = 'Kickapoo', [Definition] = NULL, [SortOrder] = 3144.00 WHERE [Code] = 'kic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gia', 'Kija', NULL, 313.20) END +VALUES ('gia', 'Kija', NULL, 3145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kija', [Definition] = NULL, [SortOrder] = 313.20 WHERE [Code] = 'gia' END +SET [Description] = 'Kija', [Definition] = NULL, [SortOrder] = 3145.00 WHERE [Code] = 'gia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzg', 'Kikai', NULL, 313.30) END +VALUES ('kzg', 'Kikai', NULL, 3146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kikai', [Definition] = NULL, [SortOrder] = 313.30 WHERE [Code] = 'kzg' END +SET [Description] = 'Kikai', [Definition] = NULL, [SortOrder] = 3146.00 WHERE [Code] = 'kzg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kik', 'Kikuyu', NULL, 313.40) END +VALUES ('kik', 'Kikuyu', NULL, 3147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kikuyu', [Definition] = NULL, [SortOrder] = 313.40 WHERE [Code] = 'kik' END +SET [Description] = 'Kikuyu', [Definition] = NULL, [SortOrder] = 3147.00 WHERE [Code] = 'kik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjd', 'Kildin Sami', NULL, 313.50) END +VALUES ('sjd', 'Kildin Sami', NULL, 3148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kildin Sami', [Definition] = NULL, [SortOrder] = 313.50 WHERE [Code] = 'sjd' END +SET [Description] = 'Kildin Sami', [Definition] = NULL, [SortOrder] = 3148.00 WHERE [Code] = 'sjd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kij', 'Kilivila', NULL, 313.60) END +VALUES ('kij', 'Kilivila', NULL, 3149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kilivila', [Definition] = NULL, [SortOrder] = 313.60 WHERE [Code] = 'kij' END +SET [Description] = 'Kilivila', [Definition] = NULL, [SortOrder] = 3149.00 WHERE [Code] = 'kij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klb', 'Kiliwa', NULL, 313.70) END +VALUES ('klb', 'Kiliwa', NULL, 3150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiliwa', [Definition] = NULL, [SortOrder] = 313.70 WHERE [Code] = 'klb' END +SET [Description] = 'Kiliwa', [Definition] = NULL, [SortOrder] = 3150.00 WHERE [Code] = 'klb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kih', 'Kilmeri', NULL, 313.80) END +VALUES ('kih', 'Kilmeri', NULL, 3151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kilmeri', [Definition] = NULL, [SortOrder] = 313.80 WHERE [Code] = 'kih' END +SET [Description] = 'Kilmeri', [Definition] = NULL, [SortOrder] = 3151.00 WHERE [Code] = 'kih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kia', 'Kim', NULL, 313.90) END +VALUES ('kia', 'Kim', NULL, 3152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kim', [Definition] = NULL, [SortOrder] = 313.90 WHERE [Code] = 'kia' END +SET [Description] = 'Kim', [Definition] = NULL, [SortOrder] = 3152.00 WHERE [Code] = 'kia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mji', 'Kim Mun', NULL, 314.00) END +VALUES ('mji', 'Kim Mun', NULL, 3153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kim Mun', [Definition] = NULL, [SortOrder] = 314.00 WHERE [Code] = 'mji' END +SET [Description] = 'Kim Mun', [Definition] = NULL, [SortOrder] = 3153.00 WHERE [Code] = 'mji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kig', 'Kimaama', NULL, 314.10) END +VALUES ('kig', 'Kimaama', NULL, 3154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimaama', [Definition] = NULL, [SortOrder] = 314.10 WHERE [Code] = 'kig' END +SET [Description] = 'Kimaama', [Definition] = NULL, [SortOrder] = 3154.00 WHERE [Code] = 'kig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqr', 'Kimaragang', NULL, 314.20) END +VALUES ('kqr', 'Kimaragang', NULL, 3155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimaragang', [Definition] = NULL, [SortOrder] = 314.20 WHERE [Code] = 'kqr' END +SET [Description] = 'Kimaragang', [Definition] = NULL, [SortOrder] = 3155.00 WHERE [Code] = 'kqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiv', 'Kimbu', NULL, 314.30) END +VALUES ('kiv', 'Kimbu', NULL, 3156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimbu', [Definition] = NULL, [SortOrder] = 314.30 WHERE [Code] = 'kiv' END +SET [Description] = 'Kimbu', [Definition] = NULL, [SortOrder] = 3156.00 WHERE [Code] = 'kiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmb', 'Kimbundu', NULL, 314.40) END +VALUES ('kmb', 'Kimbundu', NULL, 3157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimbundu', [Definition] = NULL, [SortOrder] = 314.40 WHERE [Code] = 'kmb' END +SET [Description] = 'Kimbundu', [Definition] = NULL, [SortOrder] = 3157.00 WHERE [Code] = 'kmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbt', 'Kimki', NULL, 314.50) END +VALUES ('sbt', 'Kimki', NULL, 3158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimki', [Definition] = NULL, [SortOrder] = 314.50 WHERE [Code] = 'sbt' END +SET [Description] = 'Kimki', [Definition] = NULL, [SortOrder] = 3158.00 WHERE [Code] = 'sbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqp', 'Kimré', NULL, 314.60) END +VALUES ('kqp', 'Kimré', NULL, 3159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimré', [Definition] = NULL, [SortOrder] = 314.60 WHERE [Code] = 'kqp' END +SET [Description] = 'Kimré', [Definition] = NULL, [SortOrder] = 3159.00 WHERE [Code] = 'kqp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbw', 'Kinabalian', NULL, 314.70) END +VALUES ('cbw', 'Kinabalian', NULL, 3160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinabalian', [Definition] = NULL, [SortOrder] = 314.70 WHERE [Code] = 'cbw' END +SET [Description] = 'Kinabalian', [Definition] = NULL, [SortOrder] = 3160.00 WHERE [Code] = 'cbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kco', 'Kinalakna', NULL, 314.80) END +VALUES ('kco', 'Kinalakna', NULL, 3161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinalakna', [Definition] = NULL, [SortOrder] = 314.80 WHERE [Code] = 'kco' END +SET [Description] = 'Kinalakna', [Definition] = NULL, [SortOrder] = 3161.00 WHERE [Code] = 'kco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkx', 'Kinamiging Manobo', NULL, 314.90) END +VALUES ('mkx', 'Kinamiging Manobo', NULL, 3162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinamiging Manobo', [Definition] = NULL, [SortOrder] = 314.90 WHERE [Code] = 'mkx' END +SET [Description] = 'Kinamiging Manobo', [Definition] = NULL, [SortOrder] = 3162.00 WHERE [Code] = 'mkx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krj', 'Kinaray-A', NULL, 315.00) END +VALUES ('krj', 'Kinaray-A', NULL, 3163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinaray-A', [Definition] = NULL, [SortOrder] = 315.00 WHERE [Code] = 'krj' END +SET [Description] = 'Kinaray-A', [Definition] = NULL, [SortOrder] = 3163.00 WHERE [Code] = 'krj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zga', 'Kinga', NULL, 315.10) END +VALUES ('zga', 'Kinga', NULL, 3164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinga', [Definition] = NULL, [SortOrder] = 315.10 WHERE [Code] = 'zga' END +SET [Description] = 'Kinga', [Definition] = NULL, [SortOrder] = 3164.00 WHERE [Code] = 'zga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfk', 'Kinnauri', NULL, 315.20) END +VALUES ('kfk', 'Kinnauri', NULL, 3165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinnauri', [Definition] = NULL, [SortOrder] = 315.20 WHERE [Code] = 'kfk' END +SET [Description] = 'Kinnauri', [Definition] = NULL, [SortOrder] = 3165.00 WHERE [Code] = 'kfk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knq', 'Kintaq', NULL, 315.30) END +VALUES ('knq', 'Kintaq', NULL, 3166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kintaq', [Definition] = NULL, [SortOrder] = 315.30 WHERE [Code] = 'knq' END +SET [Description] = 'Kintaq', [Definition] = NULL, [SortOrder] = 3166.00 WHERE [Code] = 'knq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkd', 'Kinuku', NULL, 315.40) END +VALUES ('kkd', 'Kinuku', NULL, 3167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinuku', [Definition] = NULL, [SortOrder] = 315.40 WHERE [Code] = 'kkd' END +SET [Description] = 'Kinuku', [Definition] = NULL, [SortOrder] = 3167.00 WHERE [Code] = 'kkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kin', 'Kinyarwanda', NULL, 315.50) END +VALUES ('kin', 'Kinyarwanda', NULL, 3168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinyarwanda', [Definition] = NULL, [SortOrder] = 315.50 WHERE [Code] = 'kin' END +SET [Description] = 'Kinyarwanda', [Definition] = NULL, [SortOrder] = 3168.00 WHERE [Code] = 'kin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ues') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ues', 'Kioko', NULL, 315.60) END +VALUES ('ues', 'Kioko', NULL, 3169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kioko', [Definition] = NULL, [SortOrder] = 315.60 WHERE [Code] = 'ues' END +SET [Description] = 'Kioko', [Definition] = NULL, [SortOrder] = 3169.00 WHERE [Code] = 'ues' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkm', 'Kiong', NULL, 315.70) END +VALUES ('kkm', 'Kiong', NULL, 3170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiong', [Definition] = NULL, [SortOrder] = 315.70 WHERE [Code] = 'kkm' END +SET [Description] = 'Kiong', [Definition] = NULL, [SortOrder] = 3170.00 WHERE [Code] = 'kkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xko', 'Kiorr', NULL, 315.80) END +VALUES ('xko', 'Kiorr', NULL, 3171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiorr', [Definition] = NULL, [SortOrder] = 315.80 WHERE [Code] = 'xko' END +SET [Description] = 'Kiorr', [Definition] = NULL, [SortOrder] = 3171.00 WHERE [Code] = 'xko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kio', 'Kiowa', NULL, 315.90) END +VALUES ('kio', 'Kiowa', NULL, 3172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiowa', [Definition] = NULL, [SortOrder] = 315.90 WHERE [Code] = 'kio' END +SET [Description] = 'Kiowa', [Definition] = NULL, [SortOrder] = 3172.00 WHERE [Code] = 'kio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apk', 'Kiowa Apache', NULL, 316.00) END +VALUES ('apk', 'Kiowa Apache', NULL, 3173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiowa Apache', [Definition] = NULL, [SortOrder] = 316.00 WHERE [Code] = 'apk' END +SET [Description] = 'Kiowa Apache', [Definition] = NULL, [SortOrder] = 3173.00 WHERE [Code] = 'apk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgc', 'Kipsigis', NULL, 316.10) END +VALUES ('sgc', 'Kipsigis', NULL, 3174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kipsigis', [Definition] = NULL, [SortOrder] = 316.10 WHERE [Code] = 'sgc' END +SET [Description] = 'Kipsigis', [Definition] = NULL, [SortOrder] = 3174.00 WHERE [Code] = 'sgc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyi', 'Kiput', NULL, 316.20) END +VALUES ('kyi', 'Kiput', NULL, 3175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiput', [Definition] = NULL, [SortOrder] = 316.20 WHERE [Code] = 'kyi' END +SET [Description] = 'Kiput', [Definition] = NULL, [SortOrder] = 3175.00 WHERE [Code] = 'kyi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkr', 'Kir-Balar', NULL, 316.30) END +VALUES ('kkr', 'Kir-Balar', NULL, 3176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kir-Balar', [Definition] = NULL, [SortOrder] = 316.30 WHERE [Code] = 'kkr' END +SET [Description] = 'Kir-Balar', [Definition] = NULL, [SortOrder] = 3176.00 WHERE [Code] = 'kkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'geb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geb', 'Kire', NULL, 316.40) END +VALUES ('geb', 'Kire', NULL, 3177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kire', [Definition] = NULL, [SortOrder] = 316.40 WHERE [Code] = 'geb' END +SET [Description] = 'Kire', [Definition] = NULL, [SortOrder] = 3177.00 WHERE [Code] = 'geb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kir', 'Kirghiz', NULL, 316.50) END +VALUES ('kir', 'Kirghiz', NULL, 3178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirghiz', [Definition] = NULL, [SortOrder] = 316.50 WHERE [Code] = 'kir' END +SET [Description] = 'Kirghiz', [Definition] = NULL, [SortOrder] = 3178.00 WHERE [Code] = 'kir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okr', 'Kirike', NULL, 316.60) END +VALUES ('okr', 'Kirike', NULL, 3179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirike', [Definition] = NULL, [SortOrder] = 316.60 WHERE [Code] = 'okr' END +SET [Description] = 'Kirike', [Definition] = NULL, [SortOrder] = 3179.00 WHERE [Code] = 'okr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiy', 'Kirikiri', NULL, 316.70) END +VALUES ('kiy', 'Kirikiri', NULL, 3180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirikiri', [Definition] = NULL, [SortOrder] = 316.70 WHERE [Code] = 'kiy' END +SET [Description] = 'Kirikiri', [Definition] = NULL, [SortOrder] = 3180.00 WHERE [Code] = 'kiy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiu', 'Kirmanjki (individual language)', NULL, 316.80) END +VALUES ('kiu', 'Kirmanjki (individual language)', NULL, 3181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirmanjki (individual language)', [Definition] = NULL, [SortOrder] = 316.80 WHERE [Code] = 'kiu' END +SET [Description] = 'Kirmanjki (individual language)', [Definition] = NULL, [SortOrder] = 3181.00 WHERE [Code] = 'kiu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fkk', 'Kirya-Konzel', NULL, 316.90) END +VALUES ('fkk', 'Kirya-Konzel', NULL, 3182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirya-Konzel', [Definition] = NULL, [SortOrder] = 316.90 WHERE [Code] = 'fkk' END +SET [Description] = 'Kirya-Konzel', [Definition] = NULL, [SortOrder] = 3182.00 WHERE [Code] = 'fkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kis', 'Kis', NULL, 317.00) END +VALUES ('kis', 'Kis', NULL, 3183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kis', [Definition] = NULL, [SortOrder] = 317.00 WHERE [Code] = 'kis' END +SET [Description] = 'Kis', [Definition] = NULL, [SortOrder] = 3183.00 WHERE [Code] = 'kis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lks', 'Kisa', NULL, 317.10) END +VALUES ('lks', 'Kisa', NULL, 3184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisa', [Definition] = NULL, [SortOrder] = 317.10 WHERE [Code] = 'lks' END +SET [Description] = 'Kisa', [Definition] = NULL, [SortOrder] = 3184.00 WHERE [Code] = 'lks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xis', 'Kisan', NULL, 317.20) END +VALUES ('xis', 'Kisan', NULL, 3185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisan', [Definition] = NULL, [SortOrder] = 317.20 WHERE [Code] = 'xis' END +SET [Description] = 'Kisan', [Definition] = NULL, [SortOrder] = 3185.00 WHERE [Code] = 'xis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqh', 'Kisankasa', NULL, 317.30) END +VALUES ('kqh', 'Kisankasa', NULL, 3186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisankasa', [Definition] = NULL, [SortOrder] = 317.30 WHERE [Code] = 'kqh' END +SET [Description] = 'Kisankasa', [Definition] = NULL, [SortOrder] = 3186.00 WHERE [Code] = 'kqh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kje', 'Kisar', NULL, 317.40) END +VALUES ('kje', 'Kisar', NULL, 3187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisar', [Definition] = NULL, [SortOrder] = 317.40 WHERE [Code] = 'kje' END +SET [Description] = 'Kisar', [Definition] = NULL, [SortOrder] = 3187.00 WHERE [Code] = 'kje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiz', 'Kisi', NULL, 317.50) END +VALUES ('kiz', 'Kisi', NULL, 3188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisi', [Definition] = NULL, [SortOrder] = 317.50 WHERE [Code] = 'kiz' END +SET [Description] = 'Kisi', [Definition] = NULL, [SortOrder] = 3188.00 WHERE [Code] = 'kiz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gru', 'Kistane', NULL, 317.60) END +VALUES ('gru', 'Kistane', NULL, 3189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kistane', [Definition] = NULL, [SortOrder] = 317.60 WHERE [Code] = 'gru' END +SET [Description] = 'Kistane', [Definition] = NULL, [SortOrder] = 3189.00 WHERE [Code] = 'gru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwk', 'Kita Maninkakan', NULL, 317.70) END +VALUES ('mwk', 'Kita Maninkakan', NULL, 3190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kita Maninkakan', [Definition] = NULL, [SortOrder] = 317.70 WHERE [Code] = 'mwk' END +SET [Description] = 'Kita Maninkakan', [Definition] = NULL, [SortOrder] = 3190.00 WHERE [Code] = 'mwk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkt', 'Kitan', NULL, 317.80) END +VALUES ('zkt', 'Kitan', NULL, 3191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kitan', [Definition] = NULL, [SortOrder] = 317.80 WHERE [Code] = 'zkt' END +SET [Description] = 'Kitan', [Definition] = NULL, [SortOrder] = 3191.00 WHERE [Code] = 'zkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kii', 'Kitsai', NULL, 317.90) END +VALUES ('kii', 'Kitsai', NULL, 3192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kitsai', [Definition] = NULL, [SortOrder] = 317.90 WHERE [Code] = 'kii' END +SET [Description] = 'Kitsai', [Definition] = NULL, [SortOrder] = 3192.00 WHERE [Code] = 'kii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkw', 'Kituba (Congo)', NULL, 318.00) END +VALUES ('mkw', 'Kituba (Congo)', NULL, 3193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kituba (Congo)', [Definition] = NULL, [SortOrder] = 318.00 WHERE [Code] = 'mkw' END +SET [Description] = 'Kituba (Congo)', [Definition] = NULL, [SortOrder] = 3193.00 WHERE [Code] = 'mkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktu', 'Kituba (Democratic Republic of Congo)', NULL, 318.10) END +VALUES ('ktu', 'Kituba (Democratic Republic of Congo)', NULL, 3194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kituba (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 318.10 WHERE [Code] = 'ktu' END +SET [Description] = 'Kituba (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 3194.00 WHERE [Code] = 'ktu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wei', 'Kiunum', NULL, 318.20) END +VALUES ('wei', 'Kiunum', NULL, 3195.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Kiunum', [Definition] = NULL, [SortOrder] = 3195.00 WHERE [Code] = 'wei' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'izm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('izm', 'Kizamani', NULL, 3196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiunum', [Definition] = NULL, [SortOrder] = 318.20 WHERE [Code] = 'wei' END +SET [Description] = 'Kizamani', [Definition] = NULL, [SortOrder] = 3196.00 WHERE [Code] = 'izm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lda', 'Kla-Dan', NULL, 318.30) END +VALUES ('lda', 'Kla-Dan', NULL, 3197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kla-Dan', [Definition] = NULL, [SortOrder] = 318.30 WHERE [Code] = 'lda' END +SET [Description] = 'Kla-Dan', [Definition] = NULL, [SortOrder] = 3197.00 WHERE [Code] = 'lda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kla', 'Klamath-Modoc', NULL, 318.40) END +VALUES ('kla', 'Klamath-Modoc', NULL, 3198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Klamath-Modoc', [Definition] = NULL, [SortOrder] = 318.40 WHERE [Code] = 'kla' END +SET [Description] = 'Klamath-Modoc', [Definition] = NULL, [SortOrder] = 3198.00 WHERE [Code] = 'kla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klu', 'Klao', NULL, 318.50) END +VALUES ('klu', 'Klao', NULL, 3199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Klao', [Definition] = NULL, [SortOrder] = 318.50 WHERE [Code] = 'klu' END +SET [Description] = 'Klao', [Definition] = NULL, [SortOrder] = 3199.00 WHERE [Code] = 'klu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqt', 'Klias River Kadazan', NULL, 318.60) END +VALUES ('kqt', 'Klias River Kadazan', NULL, 3200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Klias River Kadazan', [Definition] = NULL, [SortOrder] = 318.60 WHERE [Code] = 'kqt' END +SET [Description] = 'Klias River Kadazan', [Definition] = NULL, [SortOrder] = 3200.00 WHERE [Code] = 'kqt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlh', 'Klingon', NULL, 318.70) END +VALUES ('tlh', 'Klingon', NULL, 3201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Klingon', [Definition] = NULL, [SortOrder] = 318.70 WHERE [Code] = 'tlh' END +SET [Description] = 'Klingon', [Definition] = NULL, [SortOrder] = 3201.00 WHERE [Code] = 'tlh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czk', 'Knaanic', NULL, 318.80) END +VALUES ('czk', 'Knaanic', NULL, 3202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Knaanic', [Definition] = NULL, [SortOrder] = 318.80 WHERE [Code] = 'czk' END +SET [Description] = 'Knaanic', [Definition] = NULL, [SortOrder] = 3202.00 WHERE [Code] = 'czk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuj', 'Ko', NULL, 318.90) END +VALUES ('fuj', 'Ko', NULL, 3203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ko', [Definition] = NULL, [SortOrder] = 318.90 WHERE [Code] = 'fuj' END +SET [Description] = 'Ko', [Definition] = NULL, [SortOrder] = 3203.00 WHERE [Code] = 'fuj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kib', 'Koalib', NULL, 319.00) END +VALUES ('kib', 'Koalib', NULL, 3204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koalib', [Definition] = NULL, [SortOrder] = 319.00 WHERE [Code] = 'kib' END +SET [Description] = 'Koalib', [Definition] = NULL, [SortOrder] = 3204.00 WHERE [Code] = 'kib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cku', 'Koasati', NULL, 319.10) END +VALUES ('cku', 'Koasati', NULL, 3205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koasati', [Definition] = NULL, [SortOrder] = 319.10 WHERE [Code] = 'cku' END +SET [Description] = 'Koasati', [Definition] = NULL, [SortOrder] = 3205.00 WHERE [Code] = 'cku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpd', 'Koba', NULL, 319.20) END +VALUES ('kpd', 'Koba', NULL, 3206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koba', [Definition] = NULL, [SortOrder] = 319.20 WHERE [Code] = 'kpd' END +SET [Description] = 'Koba', [Definition] = NULL, [SortOrder] = 3206.00 WHERE [Code] = 'kpd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcj', 'Kobiana', NULL, 319.30) END +VALUES ('kcj', 'Kobiana', NULL, 3207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kobiana', [Definition] = NULL, [SortOrder] = 319.30 WHERE [Code] = 'kcj' END +SET [Description] = 'Kobiana', [Definition] = NULL, [SortOrder] = 3207.00 WHERE [Code] = 'kcj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okc', 'Kobo', NULL, 319.40) END +VALUES ('okc', 'Kobo', NULL, 3208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kobo', [Definition] = NULL, [SortOrder] = 319.40 WHERE [Code] = 'okc' END +SET [Description] = 'Kobo', [Definition] = NULL, [SortOrder] = 3208.00 WHERE [Code] = 'okc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgu', 'Kobol', NULL, 319.50) END +VALUES ('kgu', 'Kobol', NULL, 3209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kobol', [Definition] = NULL, [SortOrder] = 319.50 WHERE [Code] = 'kgu' END +SET [Description] = 'Kobol', [Definition] = NULL, [SortOrder] = 3209.00 WHERE [Code] = 'kgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpw', 'Kobon', NULL, 319.60) END +VALUES ('kpw', 'Kobon', NULL, 3210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kobon', [Definition] = NULL, [SortOrder] = 319.60 WHERE [Code] = 'kpw' END +SET [Description] = 'Kobon', [Definition] = NULL, [SortOrder] = 3210.00 WHERE [Code] = 'kpw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdq', 'Koch', NULL, 319.70) END +VALUES ('kdq', 'Koch', NULL, 3211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koch', [Definition] = NULL, [SortOrder] = 319.70 WHERE [Code] = 'kdq' END +SET [Description] = 'Koch', [Definition] = NULL, [SortOrder] = 3211.00 WHERE [Code] = 'kdq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thq', 'Kochila Tharu', NULL, 319.80) END +VALUES ('thq', 'Kochila Tharu', NULL, 3212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kochila Tharu', [Definition] = NULL, [SortOrder] = 319.80 WHERE [Code] = 'thq' END +SET [Description] = 'Kochila Tharu', [Definition] = NULL, [SortOrder] = 3212.00 WHERE [Code] = 'thq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdz', 'Koda', NULL, 319.90) END +VALUES ('cdz', 'Koda', NULL, 3213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koda', [Definition] = NULL, [SortOrder] = 319.90 WHERE [Code] = 'cdz' END +SET [Description] = 'Koda', [Definition] = NULL, [SortOrder] = 3213.00 WHERE [Code] = 'cdz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksz', 'Kodaku', NULL, 320.00) END +VALUES ('ksz', 'Kodaku', NULL, 3214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodaku', [Definition] = NULL, [SortOrder] = 320.00 WHERE [Code] = 'ksz' END +SET [Description] = 'Kodaku', [Definition] = NULL, [SortOrder] = 3214.00 WHERE [Code] = 'ksz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfa', 'Kodava', NULL, 320.10) END +VALUES ('kfa', 'Kodava', NULL, 3215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodava', [Definition] = NULL, [SortOrder] = 320.10 WHERE [Code] = 'kfa' END +SET [Description] = 'Kodava', [Definition] = NULL, [SortOrder] = 3215.00 WHERE [Code] = 'kfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vko', 'Kodeoha', NULL, 320.20) END +VALUES ('vko', 'Kodeoha', NULL, 3216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodeoha', [Definition] = NULL, [SortOrder] = 320.20 WHERE [Code] = 'vko' END +SET [Description] = 'Kodeoha', [Definition] = NULL, [SortOrder] = 3216.00 WHERE [Code] = 'vko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kod', 'Kodi', NULL, 320.30) END +VALUES ('kod', 'Kodi', NULL, 3217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodi', [Definition] = NULL, [SortOrder] = 320.30 WHERE [Code] = 'kod' END +SET [Description] = 'Kodi', [Definition] = NULL, [SortOrder] = 3217.00 WHERE [Code] = 'kod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwp', 'Kodia', NULL, 320.40) END +VALUES ('kwp', 'Kodia', NULL, 3218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodia', [Definition] = NULL, [SortOrder] = 320.40 WHERE [Code] = 'kwp' END +SET [Description] = 'Kodia', [Definition] = NULL, [SortOrder] = 3218.00 WHERE [Code] = 'kwp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcs', 'Koenoem', NULL, 320.50) END +VALUES ('kcs', 'Koenoem', NULL, 3219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koenoem', [Definition] = NULL, [SortOrder] = 320.50 WHERE [Code] = 'kcs' END +SET [Description] = 'Koenoem', [Definition] = NULL, [SortOrder] = 3219.00 WHERE [Code] = 'kcs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kso', 'Kofa', NULL, 320.60) END +VALUES ('kso', 'Kofa', NULL, 3220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kofa', [Definition] = NULL, [SortOrder] = 320.60 WHERE [Code] = 'kso' END +SET [Description] = 'Kofa', [Definition] = NULL, [SortOrder] = 3220.00 WHERE [Code] = 'kso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpi', 'Kofei', NULL, 320.70) END +VALUES ('kpi', 'Kofei', NULL, 3221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kofei', [Definition] = NULL, [SortOrder] = 320.70 WHERE [Code] = 'kpi' END +SET [Description] = 'Kofei', [Definition] = NULL, [SortOrder] = 3221.00 WHERE [Code] = 'kpi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwl', 'Kofyar', NULL, 320.80) END +VALUES ('kwl', 'Kofyar', NULL, 3222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kofyar', [Definition] = NULL, [SortOrder] = 320.80 WHERE [Code] = 'kwl' END +SET [Description] = 'Kofyar', [Definition] = NULL, [SortOrder] = 3222.00 WHERE [Code] = 'kwl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkg', 'Koguryo', NULL, 320.90) END +VALUES ('zkg', 'Koguryo', NULL, 3223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koguryo', [Definition] = NULL, [SortOrder] = 320.90 WHERE [Code] = 'zkg' END +SET [Description] = 'Koguryo', [Definition] = NULL, [SortOrder] = 3223.00 WHERE [Code] = 'zkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkx', 'Kohin', NULL, 321.00) END +VALUES ('kkx', 'Kohin', NULL, 3224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kohin', [Definition] = NULL, [SortOrder] = 321.00 WHERE [Code] = 'kkx' END +SET [Description] = 'Kohin', [Definition] = NULL, [SortOrder] = 3224.00 WHERE [Code] = 'kkx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plk', 'Kohistani Shina', NULL, 321.10) END +VALUES ('plk', 'Kohistani Shina', NULL, 3225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kohistani Shina', [Definition] = NULL, [SortOrder] = 321.10 WHERE [Code] = 'plk' END +SET [Description] = 'Kohistani Shina', [Definition] = NULL, [SortOrder] = 3225.00 WHERE [Code] = 'plk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpm', 'Koho', NULL, 321.20) END +VALUES ('kpm', 'Koho', NULL, 3226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koho', [Definition] = NULL, [SortOrder] = 321.20 WHERE [Code] = 'kpm' END +SET [Description] = 'Koho', [Definition] = NULL, [SortOrder] = 3226.00 WHERE [Code] = 'kpm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcs', 'Kohumono', NULL, 321.30) END +VALUES ('bcs', 'Kohumono', NULL, 3227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kohumono', [Definition] = NULL, [SortOrder] = 321.30 WHERE [Code] = 'bcs' END +SET [Description] = 'Kohumono', [Definition] = NULL, [SortOrder] = 3227.00 WHERE [Code] = 'bcs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkt', 'Koi', NULL, 321.40) END +VALUES ('kkt', 'Koi', NULL, 3228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koi', [Definition] = NULL, [SortOrder] = 321.40 WHERE [Code] = 'kkt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkb', 'Koibal', NULL, 321.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koibal', [Definition] = NULL, [SortOrder] = 321.50 WHERE [Code] = 'zkb' END +SET [Description] = 'Koi', [Definition] = NULL, [SortOrder] = 3228.00 WHERE [Code] = 'kkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkd', 'Koireng', NULL, 321.60) END +VALUES ('nkd', 'Koireng', NULL, 3229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koireng', [Definition] = NULL, [SortOrder] = 321.60 WHERE [Code] = 'nkd' END +SET [Description] = 'Koireng', [Definition] = NULL, [SortOrder] = 3229.00 WHERE [Code] = 'nkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqi', 'Koitabu', NULL, 321.70) END +VALUES ('kqi', 'Koitabu', NULL, 3230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koitabu', [Definition] = NULL, [SortOrder] = 321.70 WHERE [Code] = 'kqi' END +SET [Description] = 'Koitabu', [Definition] = NULL, [SortOrder] = 3230.00 WHERE [Code] = 'kqi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxt', 'Koiwat', NULL, 321.80) END +VALUES ('kxt', 'Koiwat', NULL, 3231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koiwat', [Definition] = NULL, [SortOrder] = 321.80 WHERE [Code] = 'kxt' END +SET [Description] = 'Koiwat', [Definition] = NULL, [SortOrder] = 3231.00 WHERE [Code] = 'kxt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trp', 'Kok Borok', NULL, 321.90) END +VALUES ('trp', 'Kok Borok', NULL, 3232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kok Borok', [Definition] = NULL, [SortOrder] = 321.90 WHERE [Code] = 'trp' END +SET [Description] = 'Kok Borok', [Definition] = NULL, [SortOrder] = 3232.00 WHERE [Code] = 'trp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gko', 'Kok-Nar', NULL, 322.00) END +VALUES ('gko', 'Kok-Nar', NULL, 3233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kok-Nar', [Definition] = NULL, [SortOrder] = 322.00 WHERE [Code] = 'gko' END +SET [Description] = 'Kok-Nar', [Definition] = NULL, [SortOrder] = 3233.00 WHERE [Code] = 'gko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktd', 'Kokata', NULL, 322.10) END +VALUES ('ktd', 'Kokata', NULL, 3234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kokata', [Definition] = NULL, [SortOrder] = 322.10 WHERE [Code] = 'ktd' END +SET [Description] = 'Kokata', [Definition] = NULL, [SortOrder] = 3234.00 WHERE [Code] = 'ktd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kou', 'Koke', NULL, 322.20) END +VALUES ('kou', 'Koke', NULL, 3235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koke', [Definition] = NULL, [SortOrder] = 322.20 WHERE [Code] = 'kou' END +SET [Description] = 'Koke', [Definition] = NULL, [SortOrder] = 3235.00 WHERE [Code] = 'kou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxk', 'Koki Naga', NULL, 322.30) END +VALUES ('nxk', 'Koki Naga', NULL, 3236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koki Naga', [Definition] = NULL, [SortOrder] = 322.30 WHERE [Code] = 'nxk' END +SET [Description] = 'Koki Naga', [Definition] = NULL, [SortOrder] = 3236.00 WHERE [Code] = 'nxk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okg', 'Koko Babangk', NULL, 322.40) END +VALUES ('okg', 'Koko Babangk', NULL, 3237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koko Babangk', [Definition] = NULL, [SortOrder] = 322.40 WHERE [Code] = 'okg' END +SET [Description] = 'Koko Babangk', [Definition] = NULL, [SortOrder] = 3237.00 WHERE [Code] = 'okg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xod', 'Kokoda', NULL, 322.50) END +VALUES ('xod', 'Kokoda', NULL, 3238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kokoda', [Definition] = NULL, [SortOrder] = 322.50 WHERE [Code] = 'xod' END +SET [Description] = 'Kokoda', [Definition] = NULL, [SortOrder] = 3238.00 WHERE [Code] = 'xod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzn', 'Kokola', NULL, 322.60) END +VALUES ('kzn', 'Kokola', NULL, 3239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kokola', [Definition] = NULL, [SortOrder] = 322.60 WHERE [Code] = 'kzn' END +SET [Description] = 'Kokola', [Definition] = NULL, [SortOrder] = 3239.00 WHERE [Code] = 'kzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkk', 'Kokota', NULL, 322.70) END +VALUES ('kkk', 'Kokota', NULL, 3240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kokota', [Definition] = NULL, [SortOrder] = 322.70 WHERE [Code] = 'kkk' END +SET [Description] = 'Kokota', [Definition] = NULL, [SortOrder] = 3240.00 WHERE [Code] = 'kkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekl', 'Kol (Bangladesh)', NULL, 322.80) END +VALUES ('ekl', 'Kol (Bangladesh)', NULL, 3241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kol (Bangladesh)', [Definition] = NULL, [SortOrder] = 322.80 WHERE [Code] = 'ekl' END +SET [Description] = 'Kol (Bangladesh)', [Definition] = NULL, [SortOrder] = 3241.00 WHERE [Code] = 'ekl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biw', 'Kol (Cameroon)', NULL, 322.90) END +VALUES ('biw', 'Kol (Cameroon)', NULL, 3242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kol (Cameroon)', [Definition] = NULL, [SortOrder] = 322.90 WHERE [Code] = 'biw' END +SET [Description] = 'Kol (Cameroon)', [Definition] = NULL, [SortOrder] = 3242.00 WHERE [Code] = 'biw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kol', 'Kol (Papua New Guinea)', NULL, 323.00) END +VALUES ('kol', 'Kol (Papua New Guinea)', NULL, 3243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kol (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 323.00 WHERE [Code] = 'kol' END +SET [Description] = 'Kol (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3243.00 WHERE [Code] = 'kol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvv', 'Kola', NULL, 323.10) END +VALUES ('kvv', 'Kola', NULL, 3244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kola', [Definition] = NULL, [SortOrder] = 323.10 WHERE [Code] = 'kvv' END +SET [Description] = 'Kola', [Definition] = NULL, [SortOrder] = 3244.00 WHERE [Code] = 'kvv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klc', 'Kolbila', NULL, 323.20) END +VALUES ('klc', 'Kolbila', NULL, 3245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kolbila', [Definition] = NULL, [SortOrder] = 323.20 WHERE [Code] = 'klc' END +SET [Description] = 'Kolbila', [Definition] = NULL, [SortOrder] = 3245.00 WHERE [Code] = 'klc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skn', 'Kolibugan Subanon', NULL, 323.30) END +VALUES ('skn', 'Kolibugan Subanon', NULL, 3246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kolibugan Subanon', [Definition] = NULL, [SortOrder] = 323.30 WHERE [Code] = 'skn' END +SET [Description] = 'Kolibugan Subanon', [Definition] = NULL, [SortOrder] = 3246.00 WHERE [Code] = 'skn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksh', 'Kölsch', NULL, 323.40) END +VALUES ('ksh', 'Kölsch', NULL, 3247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kölsch', [Definition] = NULL, [SortOrder] = 323.40 WHERE [Code] = 'ksh' END +SET [Description] = 'Kölsch', [Definition] = NULL, [SortOrder] = 3247.00 WHERE [Code] = 'ksh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klx', 'Koluwawa', NULL, 323.50) END +VALUES ('klx', 'Koluwawa', NULL, 3248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koluwawa', [Definition] = NULL, [SortOrder] = 323.50 WHERE [Code] = 'klx' END +SET [Description] = 'Koluwawa', [Definition] = NULL, [SortOrder] = 3248.00 WHERE [Code] = 'klx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkm', 'Kom (Cameroon)', NULL, 323.60) END +VALUES ('bkm', 'Kom (Cameroon)', NULL, 3249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kom (Cameroon)', [Definition] = NULL, [SortOrder] = 323.60 WHERE [Code] = 'bkm' END +SET [Description] = 'Kom (Cameroon)', [Definition] = NULL, [SortOrder] = 3249.00 WHERE [Code] = 'bkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmm', 'Kom (India)', NULL, 323.70) END +VALUES ('kmm', 'Kom (India)', NULL, 3250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kom (India)', [Definition] = NULL, [SortOrder] = 323.70 WHERE [Code] = 'kmm' END +SET [Description] = 'Kom (India)', [Definition] = NULL, [SortOrder] = 3250.00 WHERE [Code] = 'kmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmy', 'Koma', NULL, 323.80) END +VALUES ('kmy', 'Koma', NULL, 3251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koma', [Definition] = NULL, [SortOrder] = 323.80 WHERE [Code] = 'kmy' END +SET [Description] = 'Koma', [Definition] = NULL, [SortOrder] = 3251.00 WHERE [Code] = 'kmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpf', 'Komba', NULL, 323.90) END +VALUES ('kpf', 'Komba', NULL, 3252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komba', [Definition] = NULL, [SortOrder] = 323.90 WHERE [Code] = 'kpf' END +SET [Description] = 'Komba', [Definition] = NULL, [SortOrder] = 3252.00 WHERE [Code] = 'kpf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyn', 'Kombai', NULL, 324.00) END +VALUES ('tyn', 'Kombai', NULL, 3253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kombai', [Definition] = NULL, [SortOrder] = 324.00 WHERE [Code] = 'tyn' END +SET [Description] = 'Kombai', [Definition] = NULL, [SortOrder] = 3253.00 WHERE [Code] = 'tyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbi', 'Kombio', NULL, 324.10) END +VALUES ('xbi', 'Kombio', NULL, 3254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kombio', [Definition] = NULL, [SortOrder] = 324.10 WHERE [Code] = 'xbi' END +SET [Description] = 'Kombio', [Definition] = NULL, [SortOrder] = 3254.00 WHERE [Code] = 'xbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kge', 'Komering', NULL, 324.20) END +VALUES ('kge', 'Komering', NULL, 3255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komering', [Definition] = NULL, [SortOrder] = 324.20 WHERE [Code] = 'kge' END +SET [Description] = 'Komering', [Definition] = NULL, [SortOrder] = 3255.00 WHERE [Code] = 'kge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kom', 'Komi', NULL, 324.30) END +VALUES ('kom', 'Komi', NULL, 3256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komi', [Definition] = NULL, [SortOrder] = 324.30 WHERE [Code] = 'kom' END +SET [Description] = 'Komi', [Definition] = NULL, [SortOrder] = 3256.00 WHERE [Code] = 'kom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koi', 'Komi-Permyak', NULL, 324.40) END +VALUES ('koi', 'Komi-Permyak', NULL, 3257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komi-Permyak', [Definition] = NULL, [SortOrder] = 324.40 WHERE [Code] = 'koi' END +SET [Description] = 'Komi-Permyak', [Definition] = NULL, [SortOrder] = 3257.00 WHERE [Code] = 'koi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpv', 'Komi-Zyrian', NULL, 324.50) END +VALUES ('kpv', 'Komi-Zyrian', NULL, 3258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komi-Zyrian', [Definition] = NULL, [SortOrder] = 324.50 WHERE [Code] = 'kpv' END +SET [Description] = 'Komi-Zyrian', [Definition] = NULL, [SortOrder] = 3258.00 WHERE [Code] = 'kpv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xoi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xoi', 'Kominimung', NULL, 324.60) END +VALUES ('xoi', 'Kominimung', NULL, 3259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kominimung', [Definition] = NULL, [SortOrder] = 324.60 WHERE [Code] = 'xoi' END +SET [Description] = 'Kominimung', [Definition] = NULL, [SortOrder] = 3259.00 WHERE [Code] = 'xoi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmw', 'Komo (Democratic Republic of Congo)', NULL, 324.70) END +VALUES ('kmw', 'Komo (Democratic Republic of Congo)', NULL, 3260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komo (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 324.70 WHERE [Code] = 'kmw' END +SET [Description] = 'Komo (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 3260.00 WHERE [Code] = 'kmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xom', 'Komo (Sudan)', NULL, 324.80) END +VALUES ('xom', 'Komo (Sudan)', NULL, 3261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komo (Sudan)', [Definition] = NULL, [SortOrder] = 324.80 WHERE [Code] = 'xom' END +SET [Description] = 'Komo (Sudan)', [Definition] = NULL, [SortOrder] = 3261.00 WHERE [Code] = 'xom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvh', 'Komodo', NULL, 324.90) END +VALUES ('kvh', 'Komodo', NULL, 3262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komodo', [Definition] = NULL, [SortOrder] = 324.90 WHERE [Code] = 'kvh' END +SET [Description] = 'Komodo', [Definition] = NULL, [SortOrder] = 3262.00 WHERE [Code] = 'kvh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvp', 'Kompane', NULL, 325.00) END +VALUES ('kvp', 'Kompane', NULL, 3263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kompane', [Definition] = NULL, [SortOrder] = 325.00 WHERE [Code] = 'kvp' END +SET [Description] = 'Kompane', [Definition] = NULL, [SortOrder] = 3263.00 WHERE [Code] = 'kvp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzv', 'Komyandaret', NULL, 325.10) END +VALUES ('kzv', 'Komyandaret', NULL, 3264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komyandaret', [Definition] = NULL, [SortOrder] = 325.10 WHERE [Code] = 'kzv' END +SET [Description] = 'Komyandaret', [Definition] = NULL, [SortOrder] = 3264.00 WHERE [Code] = 'kzv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkn', 'Kon Keu', NULL, 325.20) END +VALUES ('kkn', 'Kon Keu', NULL, 3265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kon Keu', [Definition] = NULL, [SortOrder] = 325.20 WHERE [Code] = 'kkn' END +SET [Description] = 'Kon Keu', [Definition] = NULL, [SortOrder] = 3265.00 WHERE [Code] = 'kkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxw', 'Konai', NULL, 325.30) END +VALUES ('kxw', 'Konai', NULL, 3266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konai', [Definition] = NULL, [SortOrder] = 325.30 WHERE [Code] = 'kxw' END +SET [Description] = 'Konai', [Definition] = NULL, [SortOrder] = 3266.00 WHERE [Code] = 'kxw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knd', 'Konda', NULL, 325.40) END +VALUES ('knd', 'Konda', NULL, 3267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konda', [Definition] = NULL, [SortOrder] = 325.40 WHERE [Code] = 'knd' END +SET [Description] = 'Konda', [Definition] = NULL, [SortOrder] = 3267.00 WHERE [Code] = 'knd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfc', 'Konda-Dora', NULL, 325.50) END +VALUES ('kfc', 'Konda-Dora', NULL, 3268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konda-Dora', [Definition] = NULL, [SortOrder] = 325.50 WHERE [Code] = 'kfc' END +SET [Description] = 'Konda-Dora', [Definition] = NULL, [SortOrder] = 3268.00 WHERE [Code] = 'kfc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdw', 'Koneraw', NULL, 325.60) END +VALUES ('kdw', 'Koneraw', NULL, 3269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koneraw', [Definition] = NULL, [SortOrder] = 325.60 WHERE [Code] = 'kdw' END +SET [Description] = 'Koneraw', [Definition] = NULL, [SortOrder] = 3269.00 WHERE [Code] = 'kdw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kon', 'Kongo', NULL, 325.70) END +VALUES ('kon', 'Kongo', NULL, 3270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kongo', [Definition] = NULL, [SortOrder] = 325.70 WHERE [Code] = 'kon' END +SET [Description] = 'Kongo', [Definition] = NULL, [SortOrder] = 3270.00 WHERE [Code] = 'kon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knn', 'Konkani (individual language)', NULL, 325.80) END +VALUES ('knn', 'Konkani (individual language)', NULL, 3271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konkani (individual language)', [Definition] = NULL, [SortOrder] = 325.80 WHERE [Code] = 'knn' END +SET [Description] = 'Konkani (individual language)', [Definition] = NULL, [SortOrder] = 3271.00 WHERE [Code] = 'knn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kok', 'Konkani (macrolanguage)', NULL, 325.90) END +VALUES ('kok', 'Konkani (macrolanguage)', NULL, 3272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konkani (macrolanguage)', [Definition] = NULL, [SortOrder] = 325.90 WHERE [Code] = 'kok' END +SET [Description] = 'Konkani (macrolanguage)', [Definition] = NULL, [SortOrder] = 3272.00 WHERE [Code] = 'kok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xon', 'Konkomba', NULL, 326.00) END +VALUES ('xon', 'Konkomba', NULL, 3273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konkomba', [Definition] = NULL, [SortOrder] = 326.00 WHERE [Code] = 'xon' END +SET [Description] = 'Konkomba', [Definition] = NULL, [SortOrder] = 3273.00 WHERE [Code] = 'xon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kma', 'Konni', NULL, 326.10) END +VALUES ('kma', 'Konni', NULL, 3274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konni', [Definition] = NULL, [SortOrder] = 326.10 WHERE [Code] = 'kma' END +SET [Description] = 'Konni', [Definition] = NULL, [SortOrder] = 3274.00 WHERE [Code] = 'kma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knu', 'Kono (Guinea)', NULL, 326.20) END +VALUES ('knu', 'Kono (Guinea)', NULL, 3275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kono (Guinea)', [Definition] = NULL, [SortOrder] = 326.20 WHERE [Code] = 'knu' END +SET [Description] = 'Kono (Guinea)', [Definition] = NULL, [SortOrder] = 3275.00 WHERE [Code] = 'knu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klk', 'Kono (Nigeria)', NULL, 326.30) END +VALUES ('klk', 'Kono (Nigeria)', NULL, 3276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kono (Nigeria)', [Definition] = NULL, [SortOrder] = 326.30 WHERE [Code] = 'klk' END +SET [Description] = 'Kono (Nigeria)', [Definition] = NULL, [SortOrder] = 3276.00 WHERE [Code] = 'klk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kno', 'Kono (Sierra Leone)', NULL, 326.40) END +VALUES ('kno', 'Kono (Sierra Leone)', NULL, 3277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kono (Sierra Leone)', [Definition] = NULL, [SortOrder] = 326.40 WHERE [Code] = 'kno' END +SET [Description] = 'Kono (Sierra Leone)', [Definition] = NULL, [SortOrder] = 3277.00 WHERE [Code] = 'kno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koa', 'Konomala', NULL, 326.50) END +VALUES ('koa', 'Konomala', NULL, 3278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konomala', [Definition] = NULL, [SortOrder] = 326.50 WHERE [Code] = 'koa' END +SET [Description] = 'Konomala', [Definition] = NULL, [SortOrder] = 3278.00 WHERE [Code] = 'koa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcz', 'Konongo', NULL, 326.60) END +VALUES ('kcz', 'Konongo', NULL, 3279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konongo', [Definition] = NULL, [SortOrder] = 326.60 WHERE [Code] = 'kcz' END +SET [Description] = 'Konongo', [Definition] = NULL, [SortOrder] = 3279.00 WHERE [Code] = 'kcz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxc', 'Konso', NULL, 326.70) END +VALUES ('kxc', 'Konso', NULL, 3280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konso', [Definition] = NULL, [SortOrder] = 326.70 WHERE [Code] = 'kxc' END +SET [Description] = 'Konso', [Definition] = NULL, [SortOrder] = 3280.00 WHERE [Code] = 'kxc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbe', 'Konyak Naga', NULL, 326.80) END +VALUES ('nbe', 'Konyak Naga', NULL, 3281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konyak Naga', [Definition] = NULL, [SortOrder] = 326.80 WHERE [Code] = 'nbe' END +SET [Description] = 'Konyak Naga', [Definition] = NULL, [SortOrder] = 3281.00 WHERE [Code] = 'nbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mku', 'Konyanka Maninka', NULL, 326.90) END +VALUES ('mku', 'Konyanka Maninka', NULL, 3282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konyanka Maninka', [Definition] = NULL, [SortOrder] = 326.90 WHERE [Code] = 'mku' END +SET [Description] = 'Konyanka Maninka', [Definition] = NULL, [SortOrder] = 3282.00 WHERE [Code] = 'mku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koo', 'Konzo', NULL, 327.00) END +VALUES ('koo', 'Konzo', NULL, 3283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konzo', [Definition] = NULL, [SortOrder] = 327.00 WHERE [Code] = 'koo' END +SET [Description] = 'Konzo', [Definition] = NULL, [SortOrder] = 3283.00 WHERE [Code] = 'koo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kng', 'Koongo', NULL, 327.10) END +VALUES ('kng', 'Koongo', NULL, 3284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koongo', [Definition] = NULL, [SortOrder] = 327.10 WHERE [Code] = 'kng' END +SET [Description] = 'Koongo', [Definition] = NULL, [SortOrder] = 3284.00 WHERE [Code] = 'kng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ozm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ozm', 'Koonzime', NULL, 327.20) END +VALUES ('ozm', 'Koonzime', NULL, 3285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koonzime', [Definition] = NULL, [SortOrder] = 327.20 WHERE [Code] = 'ozm' END +SET [Description] = 'Koonzime', [Definition] = NULL, [SortOrder] = 3285.00 WHERE [Code] = 'ozm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqy', 'Koorete', NULL, 327.30) END +VALUES ('kqy', 'Koorete', NULL, 3286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koorete', [Definition] = NULL, [SortOrder] = 327.30 WHERE [Code] = 'kqy' END +SET [Description] = 'Koorete', [Definition] = NULL, [SortOrder] = 3286.00 WHERE [Code] = 'kqy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xop', 'Kopar', NULL, 327.40) END +VALUES ('xop', 'Kopar', NULL, 3287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kopar', [Definition] = NULL, [SortOrder] = 327.40 WHERE [Code] = 'xop' END +SET [Description] = 'Kopar', [Definition] = NULL, [SortOrder] = 3287.00 WHERE [Code] = 'xop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opk', 'Kopkaka', NULL, 327.50) END +VALUES ('opk', 'Kopkaka', NULL, 3288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kopkaka', [Definition] = NULL, [SortOrder] = 327.50 WHERE [Code] = 'opk' END +SET [Description] = 'Kopkaka', [Definition] = NULL, [SortOrder] = 3288.00 WHERE [Code] = 'opk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpr', 'Korafe-Yegha', NULL, 327.60) END +VALUES ('kpr', 'Korafe-Yegha', NULL, 3289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korafe-Yegha', [Definition] = NULL, [SortOrder] = 327.60 WHERE [Code] = 'kpr' END +SET [Description] = 'Korafe-Yegha', [Definition] = NULL, [SortOrder] = 3289.00 WHERE [Code] = 'kpr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koz', 'Korak', NULL, 327.70) END +VALUES ('koz', 'Korak', NULL, 3290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korak', [Definition] = NULL, [SortOrder] = 327.70 WHERE [Code] = 'koz' END +SET [Description] = 'Korak', [Definition] = NULL, [SortOrder] = 3290.00 WHERE [Code] = 'koz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqz', 'Korana', NULL, 327.80) END +VALUES ('kqz', 'Korana', NULL, 3291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korana', [Definition] = NULL, [SortOrder] = 327.80 WHERE [Code] = 'kqz' END +SET [Description] = 'Korana', [Definition] = NULL, [SortOrder] = 3291.00 WHERE [Code] = 'kqz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcy', 'Korandje', NULL, 327.90) END +VALUES ('kcy', 'Korandje', NULL, 3292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korandje', [Definition] = NULL, [SortOrder] = 327.90 WHERE [Code] = 'kcy' END +SET [Description] = 'Korandje', [Definition] = NULL, [SortOrder] = 3292.00 WHERE [Code] = 'kcy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kor', 'Korean', NULL, 328.00) END +VALUES ('kor', 'Korean', NULL, 3293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korean', [Definition] = NULL, [SortOrder] = 328.00 WHERE [Code] = 'kor' END +SET [Description] = 'Korean', [Definition] = NULL, [SortOrder] = 3293.00 WHERE [Code] = 'kor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvk', 'Korean Sign Language', NULL, 328.10) END +VALUES ('kvk', 'Korean Sign Language', NULL, 3294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korean Sign Language', [Definition] = NULL, [SortOrder] = 328.10 WHERE [Code] = 'kvk' END +SET [Description] = 'Korean Sign Language', [Definition] = NULL, [SortOrder] = 3294.00 WHERE [Code] = 'kvk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coe', 'Koreguaje', NULL, 328.20) END +VALUES ('coe', 'Koreguaje', NULL, 3295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koreguaje', [Definition] = NULL, [SortOrder] = 328.20 WHERE [Code] = 'coe' END +SET [Description] = 'Koreguaje', [Definition] = NULL, [SortOrder] = 3295.00 WHERE [Code] = 'coe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okh', 'Koresh-e Rostam', NULL, 328.30) END +VALUES ('okh', 'Koresh-e Rostam', NULL, 3296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koresh-e Rostam', [Definition] = NULL, [SortOrder] = 328.30 WHERE [Code] = 'okh' END +SET [Description] = 'Koresh-e Rostam', [Definition] = NULL, [SortOrder] = 3296.00 WHERE [Code] = 'okh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfq', 'Korku', NULL, 328.40) END +VALUES ('kfq', 'Korku', NULL, 3297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korku', [Definition] = NULL, [SortOrder] = 328.40 WHERE [Code] = 'kfq' END +SET [Description] = 'Korku', [Definition] = NULL, [SortOrder] = 3297.00 WHERE [Code] = 'kfq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkp', 'Korlai Creole Portuguese', NULL, 328.50) END +VALUES ('vkp', 'Korlai Creole Portuguese', NULL, 3298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korlai Creole Portuguese', [Definition] = NULL, [SortOrder] = 328.50 WHERE [Code] = 'vkp' END +SET [Description] = 'Korlai Creole Portuguese', [Definition] = NULL, [SortOrder] = 3298.00 WHERE [Code] = 'vkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfo', 'Koro (Côte d''Ivoire)', NULL, 328.60) END +VALUES ('kfo', 'Koro (Côte d''Ivoire)', NULL, 3299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 328.60 WHERE [Code] = 'kfo' END +SET [Description] = 'Koro (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 3299.00 WHERE [Code] = 'kfo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jkr', 'Koro (India)', NULL, 328.70) END +VALUES ('jkr', 'Koro (India)', NULL, 3300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro (India)', [Definition] = NULL, [SortOrder] = 328.70 WHERE [Code] = 'jkr' END +SET [Description] = 'Koro (India)', [Definition] = NULL, [SortOrder] = 3300.00 WHERE [Code] = 'jkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxr', 'Koro (Papua New Guinea)', NULL, 328.80) END +VALUES ('kxr', 'Koro (Papua New Guinea)', NULL, 3301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 328.80 WHERE [Code] = 'kxr' END +SET [Description] = 'Koro (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3301.00 WHERE [Code] = 'kxr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krf', 'Koro (Vanuatu)', NULL, 328.90) END +VALUES ('krf', 'Koro (Vanuatu)', NULL, 3302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro (Vanuatu)', [Definition] = NULL, [SortOrder] = 328.90 WHERE [Code] = 'krf' END +SET [Description] = 'Koro (Vanuatu)', [Definition] = NULL, [SortOrder] = 3302.00 WHERE [Code] = 'krf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkn', 'Koro Nulu', NULL, 329.00) END +VALUES ('vkn', 'Koro Nulu', NULL, 3303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro Nulu', [Definition] = NULL, [SortOrder] = 329.00 WHERE [Code] = 'vkn' END +SET [Description] = 'Koro Nulu', [Definition] = NULL, [SortOrder] = 3303.00 WHERE [Code] = 'vkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqv', 'Koro Wachi', NULL, 329.10) END +VALUES ('bqv', 'Koro Wachi', NULL, 3304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro Wachi', [Definition] = NULL, [SortOrder] = 329.10 WHERE [Code] = 'bqv' END +SET [Description] = 'Koro Wachi', [Definition] = NULL, [SortOrder] = 3304.00 WHERE [Code] = 'bqv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkz', 'Koro Zuba', NULL, 329.20) END +VALUES ('vkz', 'Koro Zuba', NULL, 3305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro Zuba', [Definition] = NULL, [SortOrder] = 329.20 WHERE [Code] = 'vkz' END +SET [Description] = 'Koro Zuba', [Definition] = NULL, [SortOrder] = 3305.00 WHERE [Code] = 'vkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfz', 'Koromfé', NULL, 329.30) END +VALUES ('kfz', 'Koromfé', NULL, 3306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koromfé', [Definition] = NULL, [SortOrder] = 329.30 WHERE [Code] = 'kfz' END +SET [Description] = 'Koromfé', [Definition] = NULL, [SortOrder] = 3306.00 WHERE [Code] = 'kfz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqj', 'Koromira', NULL, 329.40) END +VALUES ('kqj', 'Koromira', NULL, 3307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koromira', [Definition] = NULL, [SortOrder] = 329.40 WHERE [Code] = 'kqj' END +SET [Description] = 'Koromira', [Definition] = NULL, [SortOrder] = 3307.00 WHERE [Code] = 'kqj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpr', 'Koronadal Blaan', NULL, 329.50) END +VALUES ('bpr', 'Koronadal Blaan', NULL, 3308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koronadal Blaan', [Definition] = NULL, [SortOrder] = 329.50 WHERE [Code] = 'bpr' END +SET [Description] = 'Koronadal Blaan', [Definition] = NULL, [SortOrder] = 3308.00 WHERE [Code] = 'bpr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkq', 'Koroni', NULL, 329.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koroni', [Definition] = NULL, [SortOrder] = 329.60 WHERE [Code] = 'xkq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krp', 'Korop', NULL, 329.70) END +VALUES ('xkq', 'Koroni', NULL, 3309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korop', [Definition] = NULL, [SortOrder] = 329.70 WHERE [Code] = 'krp' END +SET [Description] = 'Koroni', [Definition] = NULL, [SortOrder] = 3309.00 WHERE [Code] = 'xkq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxr', 'Koropó', NULL, 329.80) END +VALUES ('xxr', 'Koropó', NULL, 3310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koropó', [Definition] = NULL, [SortOrder] = 329.80 WHERE [Code] = 'xxr' END +SET [Description] = 'Koropó', [Definition] = NULL, [SortOrder] = 3310.00 WHERE [Code] = 'xxr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktl', 'Koroshi', NULL, 329.90) END +VALUES ('ktl', 'Koroshi', NULL, 3311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koroshi', [Definition] = NULL, [SortOrder] = 329.90 WHERE [Code] = 'ktl' END +SET [Description] = 'Koroshi', [Definition] = NULL, [SortOrder] = 3311.00 WHERE [Code] = 'ktl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khe', 'Korowai', NULL, 330.00) END +VALUES ('khe', 'Korowai', NULL, 3312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korowai', [Definition] = NULL, [SortOrder] = 330.00 WHERE [Code] = 'khe' END +SET [Description] = 'Korowai', [Definition] = NULL, [SortOrder] = 3312.00 WHERE [Code] = 'khe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfd', 'Korra Koraga', NULL, 330.10) END +VALUES ('kfd', 'Korra Koraga', NULL, 3313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korra Koraga', [Definition] = NULL, [SortOrder] = 330.10 WHERE [Code] = 'kfd' END +SET [Description] = 'Korra Koraga', [Definition] = NULL, [SortOrder] = 3313.00 WHERE [Code] = 'kfd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xor', 'Korubo', NULL, 330.20) END +VALUES ('xor', 'Korubo', NULL, 3314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korubo', [Definition] = NULL, [SortOrder] = 330.20 WHERE [Code] = 'xor' END +SET [Description] = 'Korubo', [Definition] = NULL, [SortOrder] = 3314.00 WHERE [Code] = 'xor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpq', 'Korupun-Sela', NULL, 330.30) END +VALUES ('kpq', 'Korupun-Sela', NULL, 3315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korupun-Sela', [Definition] = NULL, [SortOrder] = 330.30 WHERE [Code] = 'kpq' END +SET [Description] = 'Korupun-Sela', [Definition] = NULL, [SortOrder] = 3315.00 WHERE [Code] = 'kpq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfp', 'Korwa', NULL, 330.40) END +VALUES ('kfp', 'Korwa', NULL, 3316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korwa', [Definition] = NULL, [SortOrder] = 330.40 WHERE [Code] = 'kfp' END +SET [Description] = 'Korwa', [Definition] = NULL, [SortOrder] = 3316.00 WHERE [Code] = 'kfp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpy', 'Koryak', NULL, 330.50) END +VALUES ('kpy', 'Koryak', NULL, 3317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koryak', [Definition] = NULL, [SortOrder] = 330.50 WHERE [Code] = 'kpy' END +SET [Description] = 'Koryak', [Definition] = NULL, [SortOrder] = 3317.00 WHERE [Code] = 'kpy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiq', 'Kosadle', NULL, 330.60) END +VALUES ('kiq', 'Kosadle', NULL, 3318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kosadle', [Definition] = NULL, [SortOrder] = 330.60 WHERE [Code] = 'kiq' END +SET [Description] = 'Kosadle', [Definition] = NULL, [SortOrder] = 3318.00 WHERE [Code] = 'kiq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkl', 'Kosarek Yale', NULL, 330.70) END +VALUES ('kkl', 'Kosarek Yale', NULL, 3319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kosarek Yale', [Definition] = NULL, [SortOrder] = 330.70 WHERE [Code] = 'kkl' END +SET [Description] = 'Kosarek Yale', [Definition] = NULL, [SortOrder] = 3319.00 WHERE [Code] = 'kkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kze', 'Kosena', NULL, 330.80) END +VALUES ('kze', 'Kosena', NULL, 3320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kosena', [Definition] = NULL, [SortOrder] = 330.80 WHERE [Code] = 'kze' END +SET [Description] = 'Kosena', [Definition] = NULL, [SortOrder] = 3320.00 WHERE [Code] = 'kze' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kid', 'Koshin', NULL, 330.90) END +VALUES ('kid', 'Koshin', NULL, 3321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koshin', [Definition] = NULL, [SortOrder] = 330.90 WHERE [Code] = 'kid' END +SET [Description] = 'Koshin', [Definition] = NULL, [SortOrder] = 3321.00 WHERE [Code] = 'kid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kos', 'Kosraean', NULL, 331.00) END +VALUES ('kos', 'Kosraean', NULL, 3322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kosraean', [Definition] = NULL, [SortOrder] = 331.00 WHERE [Code] = 'kos' END +SET [Description] = 'Kosraean', [Definition] = NULL, [SortOrder] = 3322.00 WHERE [Code] = 'kos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koq', 'Kota (Gabon)', NULL, 331.10) END +VALUES ('koq', 'Kota (Gabon)', NULL, 3323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kota (Gabon)', [Definition] = NULL, [SortOrder] = 331.10 WHERE [Code] = 'koq' END +SET [Description] = 'Kota (Gabon)', [Definition] = NULL, [SortOrder] = 3323.00 WHERE [Code] = 'koq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfe', 'Kota (India)', NULL, 331.20) END +VALUES ('kfe', 'Kota (India)', NULL, 3324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kota (India)', [Definition] = NULL, [SortOrder] = 331.20 WHERE [Code] = 'kfe' END +SET [Description] = 'Kota (India)', [Definition] = NULL, [SortOrder] = 3324.00 WHERE [Code] = 'kfe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqg', 'Kota Bangun Kutai Malay', NULL, 331.30) END +VALUES ('mqg', 'Kota Bangun Kutai Malay', NULL, 3325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kota Bangun Kutai Malay', [Definition] = NULL, [SortOrder] = 331.30 WHERE [Code] = 'mqg' END +SET [Description] = 'Kota Bangun Kutai Malay', [Definition] = NULL, [SortOrder] = 3325.00 WHERE [Code] = 'mqg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grm', 'Kota Marudu Talantang', NULL, 331.40) END +VALUES ('grm', 'Kota Marudu Talantang', NULL, 3326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kota Marudu Talantang', [Definition] = NULL, [SortOrder] = 331.40 WHERE [Code] = 'grm' END +SET [Description] = 'Kota Marudu Talantang', [Definition] = NULL, [SortOrder] = 3326.00 WHERE [Code] = 'grm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqk', 'Kotafon Gbe', NULL, 331.50) END +VALUES ('kqk', 'Kotafon Gbe', NULL, 3327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kotafon Gbe', [Definition] = NULL, [SortOrder] = 331.50 WHERE [Code] = 'kqk' END +SET [Description] = 'Kotafon Gbe', [Definition] = NULL, [SortOrder] = 3327.00 WHERE [Code] = 'kqk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avk', 'Kotava', NULL, 331.60) END +VALUES ('avk', 'Kotava', NULL, 3328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kotava', [Definition] = NULL, [SortOrder] = 331.60 WHERE [Code] = 'avk' END +SET [Description] = 'Kotava', [Definition] = NULL, [SortOrder] = 3328.00 WHERE [Code] = 'avk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eko', 'Koti', NULL, 331.70) END +VALUES ('eko', 'Koti', NULL, 3329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koti', [Definition] = NULL, [SortOrder] = 331.70 WHERE [Code] = 'eko' END +SET [Description] = 'Koti', [Definition] = NULL, [SortOrder] = 3329.00 WHERE [Code] = 'eko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zko', 'Kott', NULL, 331.80) END +VALUES ('zko', 'Kott', NULL, 3330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kott', [Definition] = NULL, [SortOrder] = 331.80 WHERE [Code] = 'zko' END +SET [Description] = 'Kott', [Definition] = NULL, [SortOrder] = 3330.00 WHERE [Code] = 'zko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snz', 'Kou', NULL, 331.90) END +VALUES ('snz', 'Kou', NULL, 3331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kou', [Definition] = NULL, [SortOrder] = 331.90 WHERE [Code] = 'snz' END +SET [Description] = 'Kou', [Definition] = NULL, [SortOrder] = 3331.00 WHERE [Code] = 'snz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyf', 'Kouya', NULL, 332.00) END +VALUES ('kyf', 'Kouya', NULL, 3332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kouya', [Definition] = NULL, [SortOrder] = 332.00 WHERE [Code] = 'kyf' END +SET [Description] = 'Kouya', [Definition] = NULL, [SortOrder] = 3332.00 WHERE [Code] = 'kyf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqb', 'Kovai', NULL, 332.10) END +VALUES ('kqb', 'Kovai', NULL, 3333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kovai', [Definition] = NULL, [SortOrder] = 332.10 WHERE [Code] = 'kqb' END +SET [Description] = 'Kovai', [Definition] = NULL, [SortOrder] = 3333.00 WHERE [Code] = 'kqb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvc', 'Kove', NULL, 332.20) END +VALUES ('kvc', 'Kove', NULL, 3334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kove', [Definition] = NULL, [SortOrder] = 332.20 WHERE [Code] = 'kvc' END +SET [Description] = 'Kove', [Definition] = NULL, [SortOrder] = 3334.00 WHERE [Code] = 'kvc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xow', 'Kowaki', NULL, 332.30) END +VALUES ('xow', 'Kowaki', NULL, 3335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kowaki', [Definition] = NULL, [SortOrder] = 332.30 WHERE [Code] = 'xow' END +SET [Description] = 'Kowaki', [Definition] = NULL, [SortOrder] = 3335.00 WHERE [Code] = 'xow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwh', 'Kowiai', NULL, 332.40) END +VALUES ('kwh', 'Kowiai', NULL, 3336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kowiai', [Definition] = NULL, [SortOrder] = 332.40 WHERE [Code] = 'kwh' END +SET [Description] = 'Kowiai', [Definition] = NULL, [SortOrder] = 3336.00 WHERE [Code] = 'kwh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqd', 'Koy Sanjaq Surat', NULL, 332.50) END +VALUES ('kqd', 'Koy Sanjaq Surat', NULL, 3337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koy Sanjaq Surat', [Definition] = NULL, [SortOrder] = 332.50 WHERE [Code] = 'kqd' END +SET [Description] = 'Koy Sanjaq Surat', [Definition] = NULL, [SortOrder] = 3337.00 WHERE [Code] = 'kqd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kff') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kff', 'Koya', NULL, 332.60) END +VALUES ('kff', 'Koya', NULL, 3338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koya', [Definition] = NULL, [SortOrder] = 332.60 WHERE [Code] = 'kff' END +SET [Description] = 'Koya', [Definition] = NULL, [SortOrder] = 3338.00 WHERE [Code] = 'kff' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kga', 'Koyaga', NULL, 332.70) END +VALUES ('kga', 'Koyaga', NULL, 3339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyaga', [Definition] = NULL, [SortOrder] = 332.70 WHERE [Code] = 'kga' END +SET [Description] = 'Koyaga', [Definition] = NULL, [SortOrder] = 3339.00 WHERE [Code] = 'kga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koh', 'Koyo', NULL, 332.80) END +VALUES ('koh', 'Koyo', NULL, 3340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyo', [Definition] = NULL, [SortOrder] = 332.80 WHERE [Code] = 'koh' END +SET [Description] = 'Koyo', [Definition] = NULL, [SortOrder] = 3340.00 WHERE [Code] = 'koh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khq', 'Koyra Chiini Songhay', NULL, 332.90) END +VALUES ('khq', 'Koyra Chiini Songhay', NULL, 3341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyra Chiini Songhay', [Definition] = NULL, [SortOrder] = 332.90 WHERE [Code] = 'khq' END +SET [Description] = 'Koyra Chiini Songhay', [Definition] = NULL, [SortOrder] = 3341.00 WHERE [Code] = 'khq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ses') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ses', 'Koyraboro Senni Songhai', NULL, 333.00) END +VALUES ('ses', 'Koyraboro Senni Songhai', NULL, 3342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyraboro Senni Songhai', [Definition] = NULL, [SortOrder] = 333.00 WHERE [Code] = 'ses' END +SET [Description] = 'Koyraboro Senni Songhai', [Definition] = NULL, [SortOrder] = 3342.00 WHERE [Code] = 'ses' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koy', 'Koyukon', NULL, 333.10) END +VALUES ('koy', 'Koyukon', NULL, 3343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyukon', [Definition] = NULL, [SortOrder] = 333.10 WHERE [Code] = 'koy' END +SET [Description] = 'Koyukon', [Definition] = NULL, [SortOrder] = 3343.00 WHERE [Code] = 'koy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuw', 'Kpagua', NULL, 333.20) END +VALUES ('kuw', 'Kpagua', NULL, 3344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpagua', [Definition] = NULL, [SortOrder] = 333.20 WHERE [Code] = 'kuw' END +SET [Description] = 'Kpagua', [Definition] = NULL, [SortOrder] = 3344.00 WHERE [Code] = 'kuw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpl', 'Kpala', NULL, 333.30) END +VALUES ('kpl', 'Kpala', NULL, 3345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpala', [Definition] = NULL, [SortOrder] = 333.30 WHERE [Code] = 'kpl' END +SET [Description] = 'Kpala', [Definition] = NULL, [SortOrder] = 3345.00 WHERE [Code] = 'kpl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpk', 'Kpan', NULL, 333.40) END +VALUES ('kpk', 'Kpan', NULL, 3346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpan', [Definition] = NULL, [SortOrder] = 333.40 WHERE [Code] = 'kpk' END +SET [Description] = 'Kpan', [Definition] = NULL, [SortOrder] = 3346.00 WHERE [Code] = 'kpk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbn', 'Kpasam', NULL, 333.50) END +VALUES ('pbn', 'Kpasam', NULL, 3347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpasam', [Definition] = NULL, [SortOrder] = 333.50 WHERE [Code] = 'pbn' END +SET [Description] = 'Kpasam', [Definition] = NULL, [SortOrder] = 3347.00 WHERE [Code] = 'pbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koc', 'Kpati', NULL, 333.60) END +VALUES ('koc', 'Kpati', NULL, 3348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpati', [Definition] = NULL, [SortOrder] = 333.60 WHERE [Code] = 'koc' END +SET [Description] = 'Kpati', [Definition] = NULL, [SortOrder] = 3348.00 WHERE [Code] = 'koc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kym', 'Kpatili', NULL, 333.70) END +VALUES ('kym', 'Kpatili', NULL, 3349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpatili', [Definition] = NULL, [SortOrder] = 333.70 WHERE [Code] = 'kym' END +SET [Description] = 'Kpatili', [Definition] = NULL, [SortOrder] = 3349.00 WHERE [Code] = 'kym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpo', 'Kpeego', NULL, 333.80) END +VALUES ('cpo', 'Kpeego', NULL, 3350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpeego', [Definition] = NULL, [SortOrder] = 333.80 WHERE [Code] = 'cpo' END +SET [Description] = 'Kpeego', [Definition] = NULL, [SortOrder] = 3350.00 WHERE [Code] = 'cpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpe', 'Kpelle', NULL, 333.90) END +VALUES ('kpe', 'Kpelle', NULL, 3351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpelle', [Definition] = NULL, [SortOrder] = 333.90 WHERE [Code] = 'kpe' END +SET [Description] = 'Kpelle', [Definition] = NULL, [SortOrder] = 3351.00 WHERE [Code] = 'kpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kef', 'Kpessi', NULL, 334.00) END +VALUES ('kef', 'Kpessi', NULL, 3352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpessi', [Definition] = NULL, [SortOrder] = 334.00 WHERE [Code] = 'kef' END +SET [Description] = 'Kpessi', [Definition] = NULL, [SortOrder] = 3352.00 WHERE [Code] = 'kef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kph', 'Kplang', NULL, 334.10) END +VALUES ('kph', 'Kplang', NULL, 3353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kplang', [Definition] = NULL, [SortOrder] = 334.10 WHERE [Code] = 'kph' END +SET [Description] = 'Kplang', [Definition] = NULL, [SortOrder] = 3353.00 WHERE [Code] = 'kph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kye', 'Krache', NULL, 334.20) END +VALUES ('kye', 'Krache', NULL, 3354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krache', [Definition] = NULL, [SortOrder] = 334.20 WHERE [Code] = 'kye' END +SET [Description] = 'Krache', [Definition] = NULL, [SortOrder] = 3354.00 WHERE [Code] = 'kye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xra', 'Krahô', NULL, 334.30) END +VALUES ('xra', 'Krahô', NULL, 3355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krahô', [Definition] = NULL, [SortOrder] = 334.30 WHERE [Code] = 'xra' END +SET [Description] = 'Krahô', [Definition] = NULL, [SortOrder] = 3355.00 WHERE [Code] = 'xra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rka', 'Kraol', NULL, 334.40) END +VALUES ('rka', 'Kraol', NULL, 3356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kraol', [Definition] = NULL, [SortOrder] = 334.40 WHERE [Code] = 'rka' END +SET [Description] = 'Kraol', [Definition] = NULL, [SortOrder] = 3356.00 WHERE [Code] = 'rka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqq', 'Krenak', NULL, 334.50) END +VALUES ('kqq', 'Krenak', NULL, 3357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krenak', [Definition] = NULL, [SortOrder] = 334.50 WHERE [Code] = 'kqq' END +SET [Description] = 'Krenak', [Definition] = NULL, [SortOrder] = 3357.00 WHERE [Code] = 'kqq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkv', 'Krevinian', NULL, 334.60) END +VALUES ('zkv', 'Krevinian', NULL, 3358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krevinian', [Definition] = NULL, [SortOrder] = 334.60 WHERE [Code] = 'zkv' END +SET [Description] = 'Krevinian', [Definition] = NULL, [SortOrder] = 3358.00 WHERE [Code] = 'zkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xre', 'Kreye', NULL, 334.70) END +VALUES ('xre', 'Kreye', NULL, 3359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kreye', [Definition] = NULL, [SortOrder] = 334.70 WHERE [Code] = 'xre' END +SET [Description] = 'Kreye', [Definition] = NULL, [SortOrder] = 3359.00 WHERE [Code] = 'xre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngt', 'Kriang', NULL, 334.80) END +VALUES ('ngt', 'Kriang', NULL, 3360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kriang', [Definition] = NULL, [SortOrder] = 334.80 WHERE [Code] = 'ngt' END +SET [Description] = 'Kriang', [Definition] = NULL, [SortOrder] = 3360.00 WHERE [Code] = 'ngt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xri', 'Krikati-Timbira', NULL, 334.90) END +VALUES ('xri', 'Krikati-Timbira', NULL, 3361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krikati-Timbira', [Definition] = NULL, [SortOrder] = 334.90 WHERE [Code] = 'xri' END +SET [Description] = 'Krikati-Timbira', [Definition] = NULL, [SortOrder] = 3361.00 WHERE [Code] = 'xri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kri', 'Krio', NULL, 335.00) END +VALUES ('kri', 'Krio', NULL, 3362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krio', [Definition] = NULL, [SortOrder] = 335.00 WHERE [Code] = 'kri' END +SET [Description] = 'Krio', [Definition] = NULL, [SortOrder] = 3362.00 WHERE [Code] = 'kri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rop', 'Kriol', NULL, 335.10) END +VALUES ('rop', 'Kriol', NULL, 3363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kriol', [Definition] = NULL, [SortOrder] = 335.10 WHERE [Code] = 'rop' END +SET [Description] = 'Kriol', [Definition] = NULL, [SortOrder] = 3363.00 WHERE [Code] = 'rop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksi', 'Krisa', NULL, 335.20) END +VALUES ('ksi', 'Krisa', NULL, 3364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krisa', [Definition] = NULL, [SortOrder] = 335.20 WHERE [Code] = 'ksi' END +SET [Description] = 'Krisa', [Definition] = NULL, [SortOrder] = 3364.00 WHERE [Code] = 'ksi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxb', 'Krobu', NULL, 335.30) END +VALUES ('kxb', 'Krobu', NULL, 3365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krobu', [Definition] = NULL, [SortOrder] = 335.30 WHERE [Code] = 'kxb' END +SET [Description] = 'Krobu', [Definition] = NULL, [SortOrder] = 3365.00 WHERE [Code] = 'kxb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgo', 'Krongo', NULL, 335.40) END +VALUES ('kgo', 'Krongo', NULL, 3366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krongo', [Definition] = NULL, [SortOrder] = 335.40 WHERE [Code] = 'kgo' END +SET [Description] = 'Krongo', [Definition] = NULL, [SortOrder] = 3366.00 WHERE [Code] = 'kgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krr', 'Krung', NULL, 335.50) END +VALUES ('krr', 'Krung', NULL, 3367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krung', [Definition] = NULL, [SortOrder] = 335.50 WHERE [Code] = 'krr' END +SET [Description] = 'Krung', [Definition] = NULL, [SortOrder] = 3367.00 WHERE [Code] = 'krr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jct', 'Krymchak', NULL, 335.60) END +VALUES ('jct', 'Krymchak', NULL, 3368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krymchak', [Definition] = NULL, [SortOrder] = 335.60 WHERE [Code] = 'jct' END +SET [Description] = 'Krymchak', [Definition] = NULL, [SortOrder] = 3368.00 WHERE [Code] = 'jct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kry', 'Kryts', NULL, 335.70) END +VALUES ('kry', 'Kryts', NULL, 3369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kryts', [Definition] = NULL, [SortOrder] = 335.70 WHERE [Code] = 'kry' END +SET [Description] = 'Kryts', [Definition] = NULL, [SortOrder] = 3369.00 WHERE [Code] = 'kry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyu', 'Kua', NULL, 335.80) END +VALUES ('tyu', 'Kua', NULL, 3370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kua', [Definition] = NULL, [SortOrder] = 335.80 WHERE [Code] = 'tyu' END +SET [Description] = 'Kua', [Definition] = NULL, [SortOrder] = 3370.00 WHERE [Code] = 'tyu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykn', 'Kua-nsi', NULL, 335.90) END +VALUES ('ykn', 'Kua-nsi', NULL, 3371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kua-nsi', [Definition] = NULL, [SortOrder] = 335.90 WHERE [Code] = 'ykn' END +SET [Description] = 'Kua-nsi', [Definition] = NULL, [SortOrder] = 3371.00 WHERE [Code] = 'ykn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yku', 'Kuamasi', NULL, 336.00) END +VALUES ('yku', 'Kuamasi', NULL, 3372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuamasi', [Definition] = NULL, [SortOrder] = 336.00 WHERE [Code] = 'yku' END +SET [Description] = 'Kuamasi', [Definition] = NULL, [SortOrder] = 3372.00 WHERE [Code] = 'yku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uan', 'Kuan', NULL, 336.10) END +VALUES ('uan', 'Kuan', NULL, 3373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuan', [Definition] = NULL, [SortOrder] = 336.10 WHERE [Code] = 'uan' END +SET [Description] = 'Kuan', [Definition] = NULL, [SortOrder] = 3373.00 WHERE [Code] = 'uan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnh', 'Kuanhua', NULL, 336.20) END +VALUES ('xnh', 'Kuanhua', NULL, 3374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuanhua', [Definition] = NULL, [SortOrder] = 336.20 WHERE [Code] = 'xnh' END +SET [Description] = 'Kuanhua', [Definition] = NULL, [SortOrder] = 3374.00 WHERE [Code] = 'xnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksd', 'Kuanua', NULL, 336.30) END +VALUES ('ksd', 'Kuanua', NULL, 3375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuanua', [Definition] = NULL, [SortOrder] = 336.30 WHERE [Code] = 'ksd' END +SET [Description] = 'Kuanua', [Definition] = NULL, [SortOrder] = 3375.00 WHERE [Code] = 'ksd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kua', 'Kuanyama', NULL, 336.40) END +VALUES ('kua', 'Kuanyama', NULL, 3376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuanyama', [Definition] = NULL, [SortOrder] = 336.40 WHERE [Code] = 'kua' END +SET [Description] = 'Kuanyama', [Definition] = NULL, [SortOrder] = 3376.00 WHERE [Code] = 'kua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugh', 'Kubachi', NULL, 336.50) END +VALUES ('ugh', 'Kubachi', NULL, 3377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kubachi', [Definition] = NULL, [SortOrder] = 336.50 WHERE [Code] = 'ugh' END +SET [Description] = 'Kubachi', [Definition] = NULL, [SortOrder] = 3377.00 WHERE [Code] = 'ugh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgf', 'Kube', NULL, 336.60) END +VALUES ('kgf', 'Kube', NULL, 3378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kube', [Definition] = NULL, [SortOrder] = 336.60 WHERE [Code] = 'kgf' END +SET [Description] = 'Kube', [Definition] = NULL, [SortOrder] = 3378.00 WHERE [Code] = 'kgf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kof', 'Kubi', NULL, 336.70) END +VALUES ('kof', 'Kubi', NULL, 3379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kubi', [Definition] = NULL, [SortOrder] = 336.70 WHERE [Code] = 'kof' END +SET [Description] = 'Kubi', [Definition] = NULL, [SortOrder] = 3379.00 WHERE [Code] = 'kof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jko', 'Kubo', NULL, 336.80) END +VALUES ('jko', 'Kubo', NULL, 3380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kubo', [Definition] = NULL, [SortOrder] = 336.80 WHERE [Code] = 'jko' END +SET [Description] = 'Kubo', [Definition] = NULL, [SortOrder] = 3380.00 WHERE [Code] = 'jko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvb', 'Kubu', NULL, 336.90) END +VALUES ('kvb', 'Kubu', NULL, 3381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kubu', [Definition] = NULL, [SortOrder] = 336.90 WHERE [Code] = 'kvb' END +SET [Description] = 'Kubu', [Definition] = NULL, [SortOrder] = 3381.00 WHERE [Code] = 'kvb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkc', 'Kucong', NULL, 337.00) END +VALUES ('lkc', 'Kucong', NULL, 3382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kucong', [Definition] = NULL, [SortOrder] = 337.00 WHERE [Code] = 'lkc' END +SET [Description] = 'Kucong', [Definition] = NULL, [SortOrder] = 3382.00 WHERE [Code] = 'lkc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfg', 'Kudiya', NULL, 337.10) END +VALUES ('kfg', 'Kudiya', NULL, 3383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kudiya', [Definition] = NULL, [SortOrder] = 337.10 WHERE [Code] = 'kfg' END +SET [Description] = 'Kudiya', [Definition] = NULL, [SortOrder] = 3383.00 WHERE [Code] = 'kfg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyw', 'Kudmali', NULL, 337.20) END +VALUES ('kyw', 'Kudmali', NULL, 3384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kudmali', [Definition] = NULL, [SortOrder] = 337.20 WHERE [Code] = 'kyw' END +SET [Description] = 'Kudmali', [Definition] = NULL, [SortOrder] = 3384.00 WHERE [Code] = 'kyw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kov', 'Kudu-Camo', NULL, 337.30) END +VALUES ('kov', 'Kudu-Camo', NULL, 3385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kudu-Camo', [Definition] = NULL, [SortOrder] = 337.30 WHERE [Code] = 'kov' END +SET [Description] = 'Kudu-Camo', [Definition] = NULL, [SortOrder] = 3385.00 WHERE [Code] = 'kov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqx', 'Kufr Qassem Sign Language (KQSL)', NULL, 337.40) END +VALUES ('sqx', 'Kufr Qassem Sign Language (KQSL)', NULL, 3386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kufr Qassem Sign Language (KQSL)', [Definition] = NULL, [SortOrder] = 337.40 WHERE [Code] = 'sqx' END +SET [Description] = 'Kufr Qassem Sign Language (KQSL)', [Definition] = NULL, [SortOrder] = 3386.00 WHERE [Code] = 'sqx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kow', 'Kugama', NULL, 337.50) END +VALUES ('kow', 'Kugama', NULL, 3387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kugama', [Definition] = NULL, [SortOrder] = 337.50 WHERE [Code] = 'kow' END +SET [Description] = 'Kugama', [Definition] = NULL, [SortOrder] = 3387.00 WHERE [Code] = 'kow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kes', 'Kugbo', NULL, 337.60) END +VALUES ('kes', 'Kugbo', NULL, 3388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kugbo', [Definition] = NULL, [SortOrder] = 337.60 WHERE [Code] = 'kes' END +SET [Description] = 'Kugbo', [Definition] = NULL, [SortOrder] = 3388.00 WHERE [Code] = 'kes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmh', 'Kugu-Muminh', NULL, 337.70) END +VALUES ('xmh', 'Kugu-Muminh', NULL, 3389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kugu-Muminh', [Definition] = NULL, [SortOrder] = 337.70 WHERE [Code] = 'xmh' END +SET [Description] = 'Kugu-Muminh', [Definition] = NULL, [SortOrder] = 3389.00 WHERE [Code] = 'xmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uki', 'Kui (India)', NULL, 337.80) END +VALUES ('uki', 'Kui (India)', NULL, 3390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kui (India)', [Definition] = NULL, [SortOrder] = 337.80 WHERE [Code] = 'uki' END +SET [Description] = 'Kui (India)', [Definition] = NULL, [SortOrder] = 3390.00 WHERE [Code] = 'uki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvd', 'Kui (Indonesia)', NULL, 337.90) END +VALUES ('kvd', 'Kui (Indonesia)', NULL, 3391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kui (Indonesia)', [Definition] = NULL, [SortOrder] = 337.90 WHERE [Code] = 'kvd' END +SET [Description] = 'Kui (Indonesia)', [Definition] = NULL, [SortOrder] = 3391.00 WHERE [Code] = 'kvd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dkr', 'Kuijau', NULL, 338.00) END +VALUES ('dkr', 'Kuijau', NULL, 3392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuijau', [Definition] = NULL, [SortOrder] = 338.00 WHERE [Code] = 'dkr' END +SET [Description] = 'Kuijau', [Definition] = NULL, [SortOrder] = 3392.00 WHERE [Code] = 'dkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kui', 'Kuikúro-Kalapálo', NULL, 338.10) END +VALUES ('kui', 'Kuikúro-Kalapálo', NULL, 3393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuikúro-Kalapálo', [Definition] = NULL, [SortOrder] = 338.10 WHERE [Code] = 'kui' END +SET [Description] = 'Kuikúro-Kalapálo', [Definition] = NULL, [SortOrder] = 3393.00 WHERE [Code] = 'kui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkj', 'Kujarge', NULL, 338.20) END +VALUES ('vkj', 'Kujarge', NULL, 3394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kujarge', [Definition] = NULL, [SortOrder] = 338.20 WHERE [Code] = 'vkj' END +SET [Description] = 'Kujarge', [Definition] = NULL, [SortOrder] = 3394.00 WHERE [Code] = 'vkj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfn', 'Kuk', NULL, 338.30) END +VALUES ('kfn', 'Kuk', NULL, 3395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuk', [Definition] = NULL, [SortOrder] = 338.30 WHERE [Code] = 'kfn' END +SET [Description] = 'Kuk', [Definition] = NULL, [SortOrder] = 3395.00 WHERE [Code] = 'kfn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kux', 'Kukatja', NULL, 338.40) END +VALUES ('kux', 'Kukatja', NULL, 3396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kukatja', [Definition] = NULL, [SortOrder] = 338.40 WHERE [Code] = 'kux' END +SET [Description] = 'Kukatja', [Definition] = NULL, [SortOrder] = 3396.00 WHERE [Code] = 'kux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ght') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ght', 'Kuke', NULL, 338.50) END +VALUES ('ght', 'Kuke', NULL, 3397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuke', [Definition] = NULL, [SortOrder] = 338.50 WHERE [Code] = 'ght' END +SET [Description] = 'Kuke', [Definition] = NULL, [SortOrder] = 3397.00 WHERE [Code] = 'ght' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kez', 'Kukele', NULL, 338.60) END +VALUES ('kez', 'Kukele', NULL, 3398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kukele', [Definition] = NULL, [SortOrder] = 338.60 WHERE [Code] = 'kez' END +SET [Description] = 'Kukele', [Definition] = NULL, [SortOrder] = 3398.00 WHERE [Code] = 'kez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kex', 'Kukna', NULL, 338.70) END +VALUES ('kex', 'Kukna', NULL, 3399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kukna', [Definition] = NULL, [SortOrder] = 338.70 WHERE [Code] = 'kex' END +SET [Description] = 'Kukna', [Definition] = NULL, [SortOrder] = 3399.00 WHERE [Code] = 'kex' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukv', 'Kuku', NULL, 338.80) END +VALUES ('ukv', 'Kuku', NULL, 3400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku', [Definition] = NULL, [SortOrder] = 338.80 WHERE [Code] = 'ukv' END +SET [Description] = 'Kuku', [Definition] = NULL, [SortOrder] = 3400.00 WHERE [Code] = 'ukv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmq', 'Kuku-Mangk', NULL, 338.90) END +VALUES ('xmq', 'Kuku-Mangk', NULL, 3401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Mangk', [Definition] = NULL, [SortOrder] = 338.90 WHERE [Code] = 'xmq' END +SET [Description] = 'Kuku-Mangk', [Definition] = NULL, [SortOrder] = 3401.00 WHERE [Code] = 'xmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmp', 'Kuku-Mu''inh', NULL, 339.00) END +VALUES ('xmp', 'Kuku-Mu''inh', NULL, 3402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Mu''inh', [Definition] = NULL, [SortOrder] = 339.00 WHERE [Code] = 'xmp' END +SET [Description] = 'Kuku-Mu''inh', [Definition] = NULL, [SortOrder] = 3402.00 WHERE [Code] = 'xmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugb', 'Kuku-Ugbanh', NULL, 339.10) END +VALUES ('ugb', 'Kuku-Ugbanh', NULL, 3403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Ugbanh', [Definition] = NULL, [SortOrder] = 339.10 WHERE [Code] = 'ugb' END +SET [Description] = 'Kuku-Ugbanh', [Definition] = NULL, [SortOrder] = 3403.00 WHERE [Code] = 'ugb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uwa', 'Kuku-Uwanh', NULL, 339.20) END +VALUES ('uwa', 'Kuku-Uwanh', NULL, 3404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Uwanh', [Definition] = NULL, [SortOrder] = 339.20 WHERE [Code] = 'uwa' END +SET [Description] = 'Kuku-Uwanh', [Definition] = NULL, [SortOrder] = 3404.00 WHERE [Code] = 'uwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvn', 'Kuku-Yalanji', NULL, 339.30) END +VALUES ('gvn', 'Kuku-Yalanji', NULL, 3405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Yalanji', [Definition] = NULL, [SortOrder] = 339.30 WHERE [Code] = 'gvn' END +SET [Description] = 'Kuku-Yalanji', [Definition] = NULL, [SortOrder] = 3405.00 WHERE [Code] = 'gvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpg', 'Kula', NULL, 339.40) END +VALUES ('tpg', 'Kula', NULL, 3406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kula', [Definition] = NULL, [SortOrder] = 339.40 WHERE [Code] = 'tpg' END +SET [Description] = 'Kula', [Definition] = NULL, [SortOrder] = 3406.00 WHERE [Code] = 'tpg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kul', 'Kulere', NULL, 339.50) END +VALUES ('kul', 'Kulere', NULL, 3407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulere', [Definition] = NULL, [SortOrder] = 339.50 WHERE [Code] = 'kul' END +SET [Description] = 'Kulere', [Definition] = NULL, [SortOrder] = 3407.00 WHERE [Code] = 'kul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxj', 'Kulfa', NULL, 339.60) END +VALUES ('kxj', 'Kulfa', NULL, 3408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulfa', [Definition] = NULL, [SortOrder] = 339.60 WHERE [Code] = 'kxj' END +SET [Description] = 'Kulfa', [Definition] = NULL, [SortOrder] = 3408.00 WHERE [Code] = 'kxj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpk', 'Kulina Pano', NULL, 339.70) END +VALUES ('xpk', 'Kulina Pano', NULL, 3409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulina Pano', [Definition] = NULL, [SortOrder] = 339.70 WHERE [Code] = 'xpk' END +SET [Description] = 'Kulina Pano', [Definition] = NULL, [SortOrder] = 3409.00 WHERE [Code] = 'xpk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkl', 'Kulisusu', NULL, 339.80) END +VALUES ('vkl', 'Kulisusu', NULL, 3410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulisusu', [Definition] = NULL, [SortOrder] = 339.80 WHERE [Code] = 'vkl' END +SET [Description] = 'Kulisusu', [Definition] = NULL, [SortOrder] = 3410.00 WHERE [Code] = 'vkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfx', 'Kullu Pahari', NULL, 339.90) END +VALUES ('kfx', 'Kullu Pahari', NULL, 3411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kullu Pahari', [Definition] = NULL, [SortOrder] = 339.90 WHERE [Code] = 'kfx' END +SET [Description] = 'Kullu Pahari', [Definition] = NULL, [SortOrder] = 3411.00 WHERE [Code] = 'kfx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uon', 'Kulon', NULL, 340.00) END +VALUES ('uon', 'Kulon', NULL, 3412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulon', [Definition] = NULL, [SortOrder] = 340.00 WHERE [Code] = 'uon' END +SET [Description] = 'Kulon', [Definition] = NULL, [SortOrder] = 3412.00 WHERE [Code] = 'uon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kle', 'Kulung (Nepal)', NULL, 340.10) END +VALUES ('kle', 'Kulung (Nepal)', NULL, 3413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulung (Nepal)', [Definition] = NULL, [SortOrder] = 340.10 WHERE [Code] = 'kle' END +SET [Description] = 'Kulung (Nepal)', [Definition] = NULL, [SortOrder] = 3413.00 WHERE [Code] = 'kle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbu', 'Kulung (Nigeria)', NULL, 340.20) END +VALUES ('bbu', 'Kulung (Nigeria)', NULL, 3414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulung (Nigeria)', [Definition] = NULL, [SortOrder] = 340.20 WHERE [Code] = 'bbu' END +SET [Description] = 'Kulung (Nigeria)', [Definition] = NULL, [SortOrder] = 3414.00 WHERE [Code] = 'bbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksl', 'Kumalu', NULL, 340.30) END +VALUES ('ksl', 'Kumalu', NULL, 3415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumalu', [Definition] = NULL, [SortOrder] = 340.30 WHERE [Code] = 'ksl' END +SET [Description] = 'Kumalu', [Definition] = NULL, [SortOrder] = 3415.00 WHERE [Code] = 'ksl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdi', 'Kumam', NULL, 340.40) END +VALUES ('kdi', 'Kumam', NULL, 3416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumam', [Definition] = NULL, [SortOrder] = 340.40 WHERE [Code] = 'kdi' END +SET [Description] = 'Kumam', [Definition] = NULL, [SortOrder] = 3416.00 WHERE [Code] = 'kdi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kue', 'Kuman (Papua New Guinea)', NULL, 340.50) END +VALUES ('kue', 'Kuman (Papua New Guinea)', NULL, 3417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuman (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 340.50 WHERE [Code] = 'kue' END +SET [Description] = 'Kuman (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3417.00 WHERE [Code] = 'kue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwm', 'Kuman (Russia)', NULL, 340.60) END +VALUES ('qwm', 'Kuman (Russia)', NULL, 3418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuman (Russia)', [Definition] = NULL, [SortOrder] = 340.60 WHERE [Code] = 'qwm' END +SET [Description] = 'Kuman (Russia)', [Definition] = NULL, [SortOrder] = 3418.00 WHERE [Code] = 'qwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfy', 'Kumaoni', NULL, 340.70) END +VALUES ('kfy', 'Kumaoni', NULL, 3419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumaoni', [Definition] = NULL, [SortOrder] = 340.70 WHERE [Code] = 'kfy' END +SET [Description] = 'Kumaoni', [Definition] = NULL, [SortOrder] = 3419.00 WHERE [Code] = 'kfy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmj', 'Kumarbhag Paharia', NULL, 340.80) END +VALUES ('kmj', 'Kumarbhag Paharia', NULL, 3420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumarbhag Paharia', [Definition] = NULL, [SortOrder] = 340.80 WHERE [Code] = 'kmj' END +SET [Description] = 'Kumarbhag Paharia', [Definition] = NULL, [SortOrder] = 3420.00 WHERE [Code] = 'kmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksm', 'Kumba', NULL, 340.90) END +VALUES ('ksm', 'Kumba', NULL, 3421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumba', [Definition] = NULL, [SortOrder] = 340.90 WHERE [Code] = 'ksm' END +SET [Description] = 'Kumba', [Definition] = NULL, [SortOrder] = 3421.00 WHERE [Code] = 'ksm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgs', 'Kumbainggar', NULL, 341.00) END +VALUES ('kgs', 'Kumbainggar', NULL, 3422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumbainggar', [Definition] = NULL, [SortOrder] = 341.00 WHERE [Code] = 'kgs' END +SET [Description] = 'Kumbainggar', [Definition] = NULL, [SortOrder] = 3422.00 WHERE [Code] = 'kgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkb', 'Kumbaran', NULL, 341.10) END +VALUES ('wkb', 'Kumbaran', NULL, 3423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumbaran', [Definition] = NULL, [SortOrder] = 341.10 WHERE [Code] = 'wkb' END +SET [Description] = 'Kumbaran', [Definition] = NULL, [SortOrder] = 3423.00 WHERE [Code] = 'wkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xks', 'Kumbewaha', NULL, 341.20) END +VALUES ('xks', 'Kumbewaha', NULL, 3424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumbewaha', [Definition] = NULL, [SortOrder] = 341.20 WHERE [Code] = 'xks' END +SET [Description] = 'Kumbewaha', [Definition] = NULL, [SortOrder] = 3424.00 WHERE [Code] = 'xks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kra', 'Kumhali', NULL, 341.30) END +VALUES ('kra', 'Kumhali', NULL, 3425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumhali', [Definition] = NULL, [SortOrder] = 341.30 WHERE [Code] = 'kra' END +SET [Description] = 'Kumhali', [Definition] = NULL, [SortOrder] = 3425.00 WHERE [Code] = 'kra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dih', 'Kumiai', NULL, 341.40) END +VALUES ('dih', 'Kumiai', NULL, 3426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumiai', [Definition] = NULL, [SortOrder] = 341.40 WHERE [Code] = 'dih' END +SET [Description] = 'Kumiai', [Definition] = NULL, [SortOrder] = 3426.00 WHERE [Code] = 'dih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuo', 'Kumukio', NULL, 341.50) END +VALUES ('kuo', 'Kumukio', NULL, 3427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumukio', [Definition] = NULL, [SortOrder] = 341.50 WHERE [Code] = 'kuo' END +SET [Description] = 'Kumukio', [Definition] = NULL, [SortOrder] = 3427.00 WHERE [Code] = 'kuo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kum', 'Kumyk', NULL, 341.60) END +VALUES ('kum', 'Kumyk', NULL, 3428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumyk', [Definition] = NULL, [SortOrder] = 341.60 WHERE [Code] = 'kum' END +SET [Description] = 'Kumyk', [Definition] = NULL, [SortOrder] = 3428.00 WHERE [Code] = 'kum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zum', 'Kumzari', NULL, 341.70) END +VALUES ('zum', 'Kumzari', NULL, 3429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumzari', [Definition] = NULL, [SortOrder] = 341.70 WHERE [Code] = 'zum' END +SET [Description] = 'Kumzari', [Definition] = NULL, [SortOrder] = 3429.00 WHERE [Code] = 'zum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kun', 'Kunama', NULL, 341.80) END +VALUES ('kun', 'Kunama', NULL, 3430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunama', [Definition] = NULL, [SortOrder] = 341.80 WHERE [Code] = 'kun' END +SET [Description] = 'Kunama', [Definition] = NULL, [SortOrder] = 3430.00 WHERE [Code] = 'kun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlg', 'Kunbarlang', NULL, 341.90) END +VALUES ('wlg', 'Kunbarlang', NULL, 3431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunbarlang', [Definition] = NULL, [SortOrder] = 341.90 WHERE [Code] = 'wlg' END +SET [Description] = 'Kunbarlang', [Definition] = NULL, [SortOrder] = 3431.00 WHERE [Code] = 'wlg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdn', 'Kunda', NULL, 342.00) END +VALUES ('kdn', 'Kunda', NULL, 3432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunda', [Definition] = NULL, [SortOrder] = 342.00 WHERE [Code] = 'kdn' END +SET [Description] = 'Kunda', [Definition] = NULL, [SortOrder] = 3432.00 WHERE [Code] = 'kdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shd', 'Kundal Shahi', NULL, 342.10) END +VALUES ('shd', 'Kundal Shahi', NULL, 3433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kundal Shahi', [Definition] = NULL, [SortOrder] = 342.10 WHERE [Code] = 'shd' END +SET [Description] = 'Kundal Shahi', [Definition] = NULL, [SortOrder] = 3433.00 WHERE [Code] = 'shd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wku', 'Kunduvadi', NULL, 342.20) END +VALUES ('wku', 'Kunduvadi', NULL, 3434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunduvadi', [Definition] = NULL, [SortOrder] = 342.20 WHERE [Code] = 'wku' END +SET [Description] = 'Kunduvadi', [Definition] = NULL, [SortOrder] = 3434.00 WHERE [Code] = 'wku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfl', 'Kung', NULL, 342.30) END +VALUES ('kfl', 'Kung', NULL, 3435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kung', [Definition] = NULL, [SortOrder] = 342.30 WHERE [Code] = 'kfl' END +SET [Description] = 'Kung', [Definition] = NULL, [SortOrder] = 3435.00 WHERE [Code] = 'kfl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knw', 'Kung-Ekoka', NULL, 342.40) END +VALUES ('knw', 'Kung-Ekoka', NULL, 3436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kung-Ekoka', [Definition] = NULL, [SortOrder] = 342.40 WHERE [Code] = 'knw' END +SET [Description] = 'Kung-Ekoka', [Definition] = NULL, [SortOrder] = 3436.00 WHERE [Code] = 'knw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggk', 'Kungarakany', NULL, 342.50) END +VALUES ('ggk', 'Kungarakany', NULL, 3437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kungarakany', [Definition] = NULL, [SortOrder] = 342.50 WHERE [Code] = 'ggk' END +SET [Description] = 'Kungarakany', [Definition] = NULL, [SortOrder] = 3437.00 WHERE [Code] = 'ggk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdt', 'Kungardutyi', NULL, 342.60) END +VALUES ('gdt', 'Kungardutyi', NULL, 3438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kungardutyi', [Definition] = NULL, [SortOrder] = 342.60 WHERE [Code] = 'gdt' END +SET [Description] = 'Kungardutyi', [Definition] = NULL, [SortOrder] = 3438.00 WHERE [Code] = 'gdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgl', 'Kunggari', NULL, 342.70) END +VALUES ('kgl', 'Kunggari', NULL, 3439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunggari', [Definition] = NULL, [SortOrder] = 342.70 WHERE [Code] = 'kgl' END +SET [Description] = 'Kunggari', [Definition] = NULL, [SortOrder] = 3439.00 WHERE [Code] = 'kgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lku', 'Kungkari', NULL, 342.80) END +VALUES ('lku', 'Kungkari', NULL, 3440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kungkari', [Definition] = NULL, [SortOrder] = 342.80 WHERE [Code] = 'lku' END +SET [Description] = 'Kungkari', [Definition] = NULL, [SortOrder] = 3440.00 WHERE [Code] = 'lku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kse', 'Kuni', NULL, 342.90) END +VALUES ('kse', 'Kuni', NULL, 3441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuni', [Definition] = NULL, [SortOrder] = 342.90 WHERE [Code] = 'kse' END +SET [Description] = 'Kuni', [Definition] = NULL, [SortOrder] = 3441.00 WHERE [Code] = 'kse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvg', 'Kuni-Boazi', NULL, 343.00) END +VALUES ('kvg', 'Kuni-Boazi', NULL, 3442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuni-Boazi', [Definition] = NULL, [SortOrder] = 343.00 WHERE [Code] = 'kvg' END +SET [Description] = 'Kuni-Boazi', [Definition] = NULL, [SortOrder] = 3442.00 WHERE [Code] = 'kvg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xug', 'Kunigami', NULL, 343.10) END +VALUES ('xug', 'Kunigami', NULL, 3443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunigami', [Definition] = NULL, [SortOrder] = 343.10 WHERE [Code] = 'xug' END +SET [Description] = 'Kunigami', [Definition] = NULL, [SortOrder] = 3443.00 WHERE [Code] = 'xug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kup', 'Kunimaipa', NULL, 343.20) END +VALUES ('kup', 'Kunimaipa', NULL, 3444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunimaipa', [Definition] = NULL, [SortOrder] = 343.20 WHERE [Code] = 'kup' END +SET [Description] = 'Kunimaipa', [Definition] = NULL, [SortOrder] = 3444.00 WHERE [Code] = 'kup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pep', 'Kunja', NULL, 343.30) END +VALUES ('pep', 'Kunja', NULL, 3445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunja', [Definition] = NULL, [SortOrder] = 343.30 WHERE [Code] = 'pep' END +SET [Description] = 'Kunja', [Definition] = NULL, [SortOrder] = 3445.00 WHERE [Code] = 'pep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjn', 'Kunjen', NULL, 343.40) END +VALUES ('kjn', 'Kunjen', NULL, 3446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunjen', [Definition] = NULL, [SortOrder] = 343.40 WHERE [Code] = 'kjn' END +SET [Description] = 'Kunjen', [Definition] = NULL, [SortOrder] = 3446.00 WHERE [Code] = 'kjn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njx', 'Kunyi', NULL, 343.50) END +VALUES ('njx', 'Kunyi', NULL, 3447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunyi', [Definition] = NULL, [SortOrder] = 343.50 WHERE [Code] = 'njx' END +SET [Description] = 'Kunyi', [Definition] = NULL, [SortOrder] = 3447.00 WHERE [Code] = 'njx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuz', 'Kunza', NULL, 343.60) END +VALUES ('kuz', 'Kunza', NULL, 3448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunza', [Definition] = NULL, [SortOrder] = 343.60 WHERE [Code] = 'kuz' END +SET [Description] = 'Kunza', [Definition] = NULL, [SortOrder] = 3448.00 WHERE [Code] = 'kuz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xuo', 'Kuo', NULL, 343.70) END +VALUES ('xuo', 'Kuo', NULL, 3449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuo', [Definition] = NULL, [SortOrder] = 343.70 WHERE [Code] = 'xuo' END +SET [Description] = 'Kuo', [Definition] = NULL, [SortOrder] = 3449.00 WHERE [Code] = 'xuo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kto', 'Kuot', NULL, 343.80) END +VALUES ('kto', 'Kuot', NULL, 3450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuot', [Definition] = NULL, [SortOrder] = 343.80 WHERE [Code] = 'kto' END +SET [Description] = 'Kuot', [Definition] = NULL, [SortOrder] = 3450.00 WHERE [Code] = 'kto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kug', 'Kupa', NULL, 343.90) END +VALUES ('kug', 'Kupa', NULL, 3451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kupa', [Definition] = NULL, [SortOrder] = 343.90 WHERE [Code] = 'kug' END +SET [Description] = 'Kupa', [Definition] = NULL, [SortOrder] = 3451.00 WHERE [Code] = 'kug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkn', 'Kupang Malay', NULL, 344.00) END +VALUES ('mkn', 'Kupang Malay', NULL, 3452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kupang Malay', [Definition] = NULL, [SortOrder] = 344.00 WHERE [Code] = 'mkn' END +SET [Description] = 'Kupang Malay', [Definition] = NULL, [SortOrder] = 3452.00 WHERE [Code] = 'mkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'key') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('key', 'Kupia', NULL, 344.10) END +VALUES ('key', 'Kupia', NULL, 3453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kupia', [Definition] = NULL, [SortOrder] = 344.10 WHERE [Code] = 'key' END +SET [Description] = 'Kupia', [Definition] = NULL, [SortOrder] = 3453.00 WHERE [Code] = 'key' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpz', 'Kupsabiny', NULL, 344.20) END +VALUES ('kpz', 'Kupsabiny', NULL, 3454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kupsabiny', [Definition] = NULL, [SortOrder] = 344.20 WHERE [Code] = 'kpz' END +SET [Description] = 'Kupsabiny', [Definition] = NULL, [SortOrder] = 3454.00 WHERE [Code] = 'kpz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuv', 'Kur', NULL, 344.30) END +VALUES ('kuv', 'Kur', NULL, 3455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kur', [Definition] = NULL, [SortOrder] = 344.30 WHERE [Code] = 'kuv' END +SET [Description] = 'Kur', [Definition] = NULL, [SortOrder] = 3455.00 WHERE [Code] = 'kuv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqk', 'Kura Ede Nago', NULL, 344.40) END +VALUES ('nqk', 'Kura Ede Nago', NULL, 3456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kura Ede Nago', [Definition] = NULL, [SortOrder] = 344.40 WHERE [Code] = 'nqk' END +SET [Description] = 'Kura Ede Nago', [Definition] = NULL, [SortOrder] = 3456.00 WHERE [Code] = 'nqk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krh', 'Kurama', NULL, 344.50) END +VALUES ('krh', 'Kurama', NULL, 3457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurama', [Definition] = NULL, [SortOrder] = 344.50 WHERE [Code] = 'krh' END +SET [Description] = 'Kurama', [Definition] = NULL, [SortOrder] = 3457.00 WHERE [Code] = 'krh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knk', 'Kuranko', NULL, 344.60) END +VALUES ('knk', 'Kuranko', NULL, 3458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuranko', [Definition] = NULL, [SortOrder] = 344.60 WHERE [Code] = 'knk' END +SET [Description] = 'Kuranko', [Definition] = NULL, [SortOrder] = 3458.00 WHERE [Code] = 'knk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kur', 'Kurdish', NULL, 344.70) END +VALUES ('kur', 'Kurdish', NULL, 3459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurdish', [Definition] = NULL, [SortOrder] = 344.70 WHERE [Code] = 'kur' END +SET [Description] = 'Kurdish', [Definition] = NULL, [SortOrder] = 3459.00 WHERE [Code] = 'kur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbn', 'Kuri', NULL, 344.80) END +VALUES ('nbn', 'Kuri', NULL, 3460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuri', [Definition] = NULL, [SortOrder] = 344.80 WHERE [Code] = 'nbn' END +SET [Description] = 'Kuri', [Definition] = NULL, [SortOrder] = 3460.00 WHERE [Code] = 'nbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuj', 'Kuria', NULL, 344.90) END +VALUES ('kuj', 'Kuria', NULL, 3461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuria', [Definition] = NULL, [SortOrder] = 344.90 WHERE [Code] = 'kuj' END +SET [Description] = 'Kuria', [Definition] = NULL, [SortOrder] = 3461.00 WHERE [Code] = 'kuj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfh', 'Kurichiya', NULL, 345.00) END +VALUES ('kfh', 'Kurichiya', NULL, 3462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurichiya', [Definition] = NULL, [SortOrder] = 345.00 WHERE [Code] = 'kfh' END +SET [Description] = 'Kurichiya', [Definition] = NULL, [SortOrder] = 3462.00 WHERE [Code] = 'kfh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfv', 'Kurmukar', NULL, 345.10) END +VALUES ('kfv', 'Kurmukar', NULL, 3463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurmukar', [Definition] = NULL, [SortOrder] = 345.10 WHERE [Code] = 'kfv' END +SET [Description] = 'Kurmukar', [Definition] = NULL, [SortOrder] = 3463.00 WHERE [Code] = 'kfv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unn', 'Kurnai', NULL, 345.20) END +VALUES ('unn', 'Kurnai', NULL, 3464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurnai', [Definition] = NULL, [SortOrder] = 345.20 WHERE [Code] = 'unn' END +SET [Description] = 'Kurnai', [Definition] = NULL, [SortOrder] = 3464.00 WHERE [Code] = 'unn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vku', 'Kurrama', NULL, 345.30) END +VALUES ('vku', 'Kurrama', NULL, 3465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurrama', [Definition] = NULL, [SortOrder] = 345.30 WHERE [Code] = 'vku' END +SET [Description] = 'Kurrama', [Definition] = NULL, [SortOrder] = 3465.00 WHERE [Code] = 'vku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktm', 'Kurti', NULL, 345.40) END +VALUES ('ktm', 'Kurti', NULL, 3466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurti', [Definition] = NULL, [SortOrder] = 345.40 WHERE [Code] = 'ktm' END +SET [Description] = 'Kurti', [Definition] = NULL, [SortOrder] = 3466.00 WHERE [Code] = 'ktm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkz', 'Kurtokha', NULL, 345.50) END +VALUES ('xkz', 'Kurtokha', NULL, 3467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurtokha', [Definition] = NULL, [SortOrder] = 345.50 WHERE [Code] = 'xkz' END +SET [Description] = 'Kurtokha', [Definition] = NULL, [SortOrder] = 3467.00 WHERE [Code] = 'xkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyr', 'Kuruáya', NULL, 345.60) END +VALUES ('kyr', 'Kuruáya', NULL, 3468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuruáya', [Definition] = NULL, [SortOrder] = 345.60 WHERE [Code] = 'kyr' END +SET [Description] = 'Kuruáya', [Definition] = NULL, [SortOrder] = 3468.00 WHERE [Code] = 'kyr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjr', 'Kurudu', NULL, 345.70) END +VALUES ('kjr', 'Kurudu', NULL, 3469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurudu', [Definition] = NULL, [SortOrder] = 345.70 WHERE [Code] = 'kjr' END +SET [Description] = 'Kurudu', [Definition] = NULL, [SortOrder] = 3469.00 WHERE [Code] = 'kjr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kru', 'Kurukh', NULL, 345.80) END +VALUES ('kru', 'Kurukh', NULL, 3470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurukh', [Definition] = NULL, [SortOrder] = 345.80 WHERE [Code] = 'kru' END +SET [Description] = 'Kurukh', [Definition] = NULL, [SortOrder] = 3470.00 WHERE [Code] = 'kru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kus', 'Kusaal', NULL, 345.90) END +VALUES ('kus', 'Kusaal', NULL, 3471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kusaal', [Definition] = NULL, [SortOrder] = 345.90 WHERE [Code] = 'kus' END +SET [Description] = 'Kusaal', [Definition] = NULL, [SortOrder] = 3471.00 WHERE [Code] = 'kus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksg', 'Kusaghe', NULL, 346.00) END +VALUES ('ksg', 'Kusaghe', NULL, 3472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kusaghe', [Definition] = NULL, [SortOrder] = 346.00 WHERE [Code] = 'ksg' END +SET [Description] = 'Kusaghe', [Definition] = NULL, [SortOrder] = 3472.00 WHERE [Code] = 'ksg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuh', 'Kushi', NULL, 346.10) END +VALUES ('kuh', 'Kushi', NULL, 3473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kushi', [Definition] = NULL, [SortOrder] = 346.10 WHERE [Code] = 'kuh' END +SET [Description] = 'Kushi', [Definition] = NULL, [SortOrder] = 3473.00 WHERE [Code] = 'kuh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksv', 'Kusu', NULL, 346.20) END +VALUES ('ksv', 'Kusu', NULL, 3474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kusu', [Definition] = NULL, [SortOrder] = 346.20 WHERE [Code] = 'ksv' END +SET [Description] = 'Kusu', [Definition] = NULL, [SortOrder] = 3474.00 WHERE [Code] = 'ksv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgg', 'Kusunda', NULL, 346.30) END +VALUES ('kgg', 'Kusunda', NULL, 3475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kusunda', [Definition] = NULL, [SortOrder] = 346.30 WHERE [Code] = 'kgg' END +SET [Description] = 'Kusunda', [Definition] = NULL, [SortOrder] = 3475.00 WHERE [Code] = 'kgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kut', 'Kutenai', NULL, 346.40) END +VALUES ('kut', 'Kutenai', NULL, 3476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutenai', [Definition] = NULL, [SortOrder] = 346.40 WHERE [Code] = 'kut' END +SET [Description] = 'Kutenai', [Definition] = NULL, [SortOrder] = 3476.00 WHERE [Code] = 'kut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kub', 'Kutep', NULL, 346.50) END +VALUES ('kub', 'Kutep', NULL, 3477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutep', [Definition] = NULL, [SortOrder] = 346.50 WHERE [Code] = 'kub' END +SET [Description] = 'Kutep', [Definition] = NULL, [SortOrder] = 3477.00 WHERE [Code] = 'kub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xut', 'Kuthant', NULL, 346.60) END +VALUES ('xut', 'Kuthant', NULL, 3478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuthant', [Definition] = NULL, [SortOrder] = 346.60 WHERE [Code] = 'xut' END +SET [Description] = 'Kuthant', [Definition] = NULL, [SortOrder] = 3478.00 WHERE [Code] = 'xut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skm', 'Kutong', NULL, 346.70) END +VALUES ('skm', 'Kutong', NULL, 3479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutong', [Definition] = NULL, [SortOrder] = 346.70 WHERE [Code] = 'skm' END +SET [Description] = 'Kutong', [Definition] = NULL, [SortOrder] = 3479.00 WHERE [Code] = 'skm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpa', 'Kutto', NULL, 346.80) END +VALUES ('kpa', 'Kutto', NULL, 3480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutto', [Definition] = NULL, [SortOrder] = 346.80 WHERE [Code] = 'kpa' END +SET [Description] = 'Kutto', [Definition] = NULL, [SortOrder] = 3480.00 WHERE [Code] = 'kpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdc', 'Kutu', NULL, 346.90) END +VALUES ('kdc', 'Kutu', NULL, 3481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutu', [Definition] = NULL, [SortOrder] = 346.90 WHERE [Code] = 'kdc' END +SET [Description] = 'Kutu', [Definition] = NULL, [SortOrder] = 3481.00 WHERE [Code] = 'kdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khj', 'Kuturmi', NULL, 347.00) END +VALUES ('khj', 'Kuturmi', NULL, 3482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuturmi', [Definition] = NULL, [SortOrder] = 347.00 WHERE [Code] = 'khj' END +SET [Description] = 'Kuturmi', [Definition] = NULL, [SortOrder] = 3482.00 WHERE [Code] = 'khj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thd', 'Kuuk Thaayorre', NULL, 347.10) END +VALUES ('thd', 'Kuuk Thaayorre', NULL, 3483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuuk Thaayorre', [Definition] = NULL, [SortOrder] = 347.10 WHERE [Code] = 'thd' END +SET [Description] = 'Kuuk Thaayorre', [Definition] = NULL, [SortOrder] = 3483.00 WHERE [Code] = 'thd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uky', 'Kuuk-Yak', NULL, 347.20) END +VALUES ('uky', 'Kuuk-Yak', NULL, 3484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuuk-Yak', [Definition] = NULL, [SortOrder] = 347.20 WHERE [Code] = 'uky' END +SET [Description] = 'Kuuk-Yak', [Definition] = NULL, [SortOrder] = 3484.00 WHERE [Code] = 'uky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuy', 'Kuuku-Ya''u', NULL, 347.30) END +VALUES ('kuy', 'Kuuku-Ya''u', NULL, 3485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuuku-Ya''u', [Definition] = NULL, [SortOrder] = 347.30 WHERE [Code] = 'kuy' END +SET [Description] = 'Kuuku-Ya''u', [Definition] = NULL, [SortOrder] = 3485.00 WHERE [Code] = 'kuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olu', 'Kuvale', NULL, 347.40) END +VALUES ('olu', 'Kuvale', NULL, 3486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuvale', [Definition] = NULL, [SortOrder] = 347.40 WHERE [Code] = 'olu' END +SET [Description] = 'Kuvale', [Definition] = NULL, [SortOrder] = 3486.00 WHERE [Code] = 'olu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxv', 'Kuvi', NULL, 347.50) END +VALUES ('kxv', 'Kuvi', NULL, 3487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuvi', [Definition] = NULL, [SortOrder] = 347.50 WHERE [Code] = 'kxv' END +SET [Description] = 'Kuvi', [Definition] = NULL, [SortOrder] = 3487.00 WHERE [Code] = 'kxv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blh', 'Kuwaa', NULL, 347.60) END +VALUES ('blh', 'Kuwaa', NULL, 3488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuwaa', [Definition] = NULL, [SortOrder] = 347.60 WHERE [Code] = 'blh' END +SET [Description] = 'Kuwaa', [Definition] = NULL, [SortOrder] = 3488.00 WHERE [Code] = 'blh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwt', 'Kuwaataay', NULL, 347.70) END +VALUES ('cwt', 'Kuwaataay', NULL, 3489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuwaataay', [Definition] = NULL, [SortOrder] = 347.70 WHERE [Code] = 'cwt' END +SET [Description] = 'Kuwaataay', [Definition] = NULL, [SortOrder] = 3489.00 WHERE [Code] = 'cwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woa', 'Kuwema', NULL, 347.80) END +VALUES ('woa', 'Kuwema', NULL, 3490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuwema', [Definition] = NULL, [SortOrder] = 347.80 WHERE [Code] = 'woa' END +SET [Description] = 'Kuwema', [Definition] = NULL, [SortOrder] = 3490.00 WHERE [Code] = 'woa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdt', 'Kuy', NULL, 347.90) END +VALUES ('kdt', 'Kuy', NULL, 3491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuy', [Definition] = NULL, [SortOrder] = 347.90 WHERE [Code] = 'kdt' END +SET [Description] = 'Kuy', [Definition] = NULL, [SortOrder] = 3491.00 WHERE [Code] = 'kdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fkv', 'Kven Finnish', NULL, 348.00) END +VALUES ('fkv', 'Kven Finnish', NULL, 3492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kven Finnish', [Definition] = NULL, [SortOrder] = 348.00 WHERE [Code] = 'fkv' END +SET [Description] = 'Kven Finnish', [Definition] = NULL, [SortOrder] = 3492.00 WHERE [Code] = 'fkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wka', 'Kw''adza', NULL, 348.10) END +VALUES ('wka', 'Kw''adza', NULL, 3493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kw''adza', [Definition] = NULL, [SortOrder] = 348.10 WHERE [Code] = 'wka' END +SET [Description] = 'Kw''adza', [Definition] = NULL, [SortOrder] = 3493.00 WHERE [Code] = 'wka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwb', 'Kwa', NULL, 348.20) END +VALUES ('kwb', 'Kwa', NULL, 3494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwa', [Definition] = NULL, [SortOrder] = 348.20 WHERE [Code] = 'kwb' END +SET [Description] = 'Kwa', [Definition] = NULL, [SortOrder] = 3494.00 WHERE [Code] = 'kwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bko', 'Kwa''', NULL, 348.30) END +VALUES ('bko', 'Kwa''', NULL, 3495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwa''', [Definition] = NULL, [SortOrder] = 348.30 WHERE [Code] = 'bko' END +SET [Description] = 'Kwa''', [Definition] = NULL, [SortOrder] = 3495.00 WHERE [Code] = 'bko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksq', 'Kwaami', NULL, 348.40) END +VALUES ('ksq', 'Kwaami', NULL, 3496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaami', [Definition] = NULL, [SortOrder] = 348.40 WHERE [Code] = 'ksq' END +SET [Description] = 'Kwaami', [Definition] = NULL, [SortOrder] = 3496.00 WHERE [Code] = 'ksq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwz', 'Kwadi', NULL, 348.50) END +VALUES ('kwz', 'Kwadi', NULL, 3497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwadi', [Definition] = NULL, [SortOrder] = 348.50 WHERE [Code] = 'kwz' END +SET [Description] = 'Kwadi', [Definition] = NULL, [SortOrder] = 3497.00 WHERE [Code] = 'kwz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwd', 'Kwaio', NULL, 348.60) END +VALUES ('kwd', 'Kwaio', NULL, 3498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaio', [Definition] = NULL, [SortOrder] = 348.60 WHERE [Code] = 'kwd' END +SET [Description] = 'Kwaio', [Definition] = NULL, [SortOrder] = 3498.00 WHERE [Code] = 'kwd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdz', 'Kwaja', NULL, 348.70) END +VALUES ('kdz', 'Kwaja', NULL, 3499.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaja', [Definition] = NULL, [SortOrder] = 348.70 WHERE [Code] = 'kdz' END +SET [Description] = 'Kwaja', [Definition] = NULL, [SortOrder] = 3499.00 WHERE [Code] = 'kdz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwk', 'Kwakiutl', NULL, 348.80) END +VALUES ('kwk', 'Kwakiutl', NULL, 3500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwakiutl', [Definition] = NULL, [SortOrder] = 348.80 WHERE [Code] = 'kwk' END +SET [Description] = 'Kwakiutl', [Definition] = NULL, [SortOrder] = 3500.00 WHERE [Code] = 'kwk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwu', 'Kwakum', NULL, 348.90) END +VALUES ('kwu', 'Kwakum', NULL, 3501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwakum', [Definition] = NULL, [SortOrder] = 348.90 WHERE [Code] = 'kwu' END +SET [Description] = 'Kwakum', [Definition] = NULL, [SortOrder] = 3501.00 WHERE [Code] = 'kwu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwt', 'Kwalhioqua-Tlatskanai', NULL, 349.00) END +VALUES ('qwt', 'Kwalhioqua-Tlatskanai', NULL, 3502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwalhioqua-Tlatskanai', [Definition] = NULL, [SortOrder] = 349.00 WHERE [Code] = 'qwt' END +SET [Description] = 'Kwalhioqua-Tlatskanai', [Definition] = NULL, [SortOrder] = 3502.00 WHERE [Code] = 'qwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmq', 'Kwama', NULL, 349.10) END +VALUES ('kmq', 'Kwama', NULL, 3503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwama', [Definition] = NULL, [SortOrder] = 349.10 WHERE [Code] = 'kmq' END +SET [Description] = 'Kwama', [Definition] = NULL, [SortOrder] = 3503.00 WHERE [Code] = 'kmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwm', 'Kwambi', NULL, 349.20) END +VALUES ('kwm', 'Kwambi', NULL, 3504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwambi', [Definition] = NULL, [SortOrder] = 349.20 WHERE [Code] = 'kwm' END +SET [Description] = 'Kwambi', [Definition] = NULL, [SortOrder] = 3504.00 WHERE [Code] = 'kwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnk', 'Kwamera', NULL, 349.30) END +VALUES ('tnk', 'Kwamera', NULL, 3505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwamera', [Definition] = NULL, [SortOrder] = 349.30 WHERE [Code] = 'tnk' END +SET [Description] = 'Kwamera', [Definition] = NULL, [SortOrder] = 3505.00 WHERE [Code] = 'tnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktf', 'Kwami', NULL, 349.40) END +VALUES ('ktf', 'Kwami', NULL, 3506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwami', [Definition] = NULL, [SortOrder] = 349.40 WHERE [Code] = 'ktf' END +SET [Description] = 'Kwami', [Definition] = NULL, [SortOrder] = 3506.00 WHERE [Code] = 'ktf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okk', 'Kwamtim One', NULL, 349.50) END +VALUES ('okk', 'Kwamtim One', NULL, 3507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwamtim One', [Definition] = NULL, [SortOrder] = 349.50 WHERE [Code] = 'okk' END +SET [Description] = 'Kwamtim One', [Definition] = NULL, [SortOrder] = 3507.00 WHERE [Code] = 'okk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdo', 'Kwandu', NULL, 349.60) END +VALUES ('xdo', 'Kwandu', NULL, 3508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwandu', [Definition] = NULL, [SortOrder] = 349.60 WHERE [Code] = 'xdo' END +SET [Description] = 'Kwandu', [Definition] = NULL, [SortOrder] = 3508.00 WHERE [Code] = 'xdo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvi', 'Kwang', NULL, 349.70) END +VALUES ('kvi', 'Kwang', NULL, 3509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwang', [Definition] = NULL, [SortOrder] = 349.70 WHERE [Code] = 'kvi' END +SET [Description] = 'Kwang', [Definition] = NULL, [SortOrder] = 3509.00 WHERE [Code] = 'kvi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwj', 'Kwanga', NULL, 349.80) END +VALUES ('kwj', 'Kwanga', NULL, 3510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwanga', [Definition] = NULL, [SortOrder] = 349.80 WHERE [Code] = 'kwj' END +SET [Description] = 'Kwanga', [Definition] = NULL, [SortOrder] = 3510.00 WHERE [Code] = 'kwj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwn', 'Kwangali', NULL, 349.90) END +VALUES ('kwn', 'Kwangali', NULL, 3511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwangali', [Definition] = NULL, [SortOrder] = 349.90 WHERE [Code] = 'kwn' END +SET [Description] = 'Kwangali', [Definition] = NULL, [SortOrder] = 3511.00 WHERE [Code] = 'kwn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knp', 'Kwanja', NULL, 350.00) END +VALUES ('knp', 'Kwanja', NULL, 3512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwanja', [Definition] = NULL, [SortOrder] = 350.00 WHERE [Code] = 'knp' END +SET [Description] = 'Kwanja', [Definition] = NULL, [SortOrder] = 3512.00 WHERE [Code] = 'knp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwf', 'Kwara''ae', NULL, 350.10) END +VALUES ('kwf', 'Kwara''ae', NULL, 3513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwara''ae', [Definition] = NULL, [SortOrder] = 350.10 WHERE [Code] = 'kwf' END +SET [Description] = 'Kwara''ae', [Definition] = NULL, [SortOrder] = 3513.00 WHERE [Code] = 'kwf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmg', 'Kwasio', NULL, 350.20) END +VALUES ('nmg', 'Kwasio', NULL, 3514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwasio', [Definition] = NULL, [SortOrder] = 350.20 WHERE [Code] = 'nmg' END +SET [Description] = 'Kwasio', [Definition] = NULL, [SortOrder] = 3514.00 WHERE [Code] = 'nmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kya', 'Kwaya', NULL, 350.30) END +VALUES ('kya', 'Kwaya', NULL, 3515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaya', [Definition] = NULL, [SortOrder] = 350.30 WHERE [Code] = 'kya' END +SET [Description] = 'Kwaya', [Definition] = NULL, [SortOrder] = 3515.00 WHERE [Code] = 'kya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwa', 'Kwaza', NULL, 350.40) END +VALUES ('xwa', 'Kwaza', NULL, 3516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaza', [Definition] = NULL, [SortOrder] = 350.40 WHERE [Code] = 'xwa' END +SET [Description] = 'Kwaza', [Definition] = NULL, [SortOrder] = 3516.00 WHERE [Code] = 'xwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwg', 'Kwegu', NULL, 350.50) END +VALUES ('xwg', 'Kwegu', NULL, 3517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwegu', [Definition] = NULL, [SortOrder] = 350.50 WHERE [Code] = 'xwg' END +SET [Description] = 'Kwegu', [Definition] = NULL, [SortOrder] = 3517.00 WHERE [Code] = 'xwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwr', 'Kwer', NULL, 350.60) END +VALUES ('kwr', 'Kwer', NULL, 3518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwer', [Definition] = NULL, [SortOrder] = 350.60 WHERE [Code] = 'kwr' END +SET [Description] = 'Kwer', [Definition] = NULL, [SortOrder] = 3518.00 WHERE [Code] = 'kwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwe', 'Kwerba', NULL, 350.70) END +VALUES ('kwe', 'Kwerba', NULL, 3519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwerba', [Definition] = NULL, [SortOrder] = 350.70 WHERE [Code] = 'kwe' END +SET [Description] = 'Kwerba', [Definition] = NULL, [SortOrder] = 3519.00 WHERE [Code] = 'kwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwr', 'Kwerba Mamberamo', NULL, 350.80) END +VALUES ('xwr', 'Kwerba Mamberamo', NULL, 3520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwerba Mamberamo', [Definition] = NULL, [SortOrder] = 350.80 WHERE [Code] = 'xwr' END +SET [Description] = 'Kwerba Mamberamo', [Definition] = NULL, [SortOrder] = 3520.00 WHERE [Code] = 'xwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwe', 'Kwere', NULL, 350.90) END +VALUES ('cwe', 'Kwere', NULL, 3521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwere', [Definition] = NULL, [SortOrder] = 350.90 WHERE [Code] = 'cwe' END +SET [Description] = 'Kwere', [Definition] = NULL, [SortOrder] = 3521.00 WHERE [Code] = 'cwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkb', 'Kwerisa', NULL, 351.00) END +VALUES ('kkb', 'Kwerisa', NULL, 3522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwerisa', [Definition] = NULL, [SortOrder] = 351.00 WHERE [Code] = 'kkb' END +SET [Description] = 'Kwerisa', [Definition] = NULL, [SortOrder] = 3522.00 WHERE [Code] = 'kkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kws', 'Kwese', NULL, 351.10) END +VALUES ('kws', 'Kwese', NULL, 3523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwese', [Definition] = NULL, [SortOrder] = 351.10 WHERE [Code] = 'kws' END +SET [Description] = 'Kwese', [Definition] = NULL, [SortOrder] = 3523.00 WHERE [Code] = 'kws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwt', 'Kwesten', NULL, 351.20) END +VALUES ('kwt', 'Kwesten', NULL, 3524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwesten', [Definition] = NULL, [SortOrder] = 351.20 WHERE [Code] = 'kwt' END +SET [Description] = 'Kwesten', [Definition] = NULL, [SortOrder] = 3524.00 WHERE [Code] = 'kwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gww', 'Kwini', NULL, 351.30) END +VALUES ('gww', 'Kwini', NULL, 3525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwini', [Definition] = NULL, [SortOrder] = 351.30 WHERE [Code] = 'gww' END +SET [Description] = 'Kwini', [Definition] = NULL, [SortOrder] = 3525.00 WHERE [Code] = 'gww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuc', 'Kwinsu', NULL, 351.40) END +VALUES ('kuc', 'Kwinsu', NULL, 3526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwinsu', [Definition] = NULL, [SortOrder] = 351.40 WHERE [Code] = 'kuc' END +SET [Description] = 'Kwinsu', [Definition] = NULL, [SortOrder] = 3526.00 WHERE [Code] = 'kuc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kww', 'Kwinti', NULL, 351.50) END +VALUES ('kww', 'Kwinti', NULL, 3527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwinti', [Definition] = NULL, [SortOrder] = 351.50 WHERE [Code] = 'kww' END +SET [Description] = 'Kwinti', [Definition] = NULL, [SortOrder] = 3527.00 WHERE [Code] = 'kww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmo', 'Kwoma', NULL, 351.60) END +VALUES ('kmo', 'Kwoma', NULL, 3528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwoma', [Definition] = NULL, [SortOrder] = 351.60 WHERE [Code] = 'kmo' END +SET [Description] = 'Kwoma', [Definition] = NULL, [SortOrder] = 3528.00 WHERE [Code] = 'kmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwo', 'Kwomtari', NULL, 351.70) END +VALUES ('kwo', 'Kwomtari', NULL, 3529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwomtari', [Definition] = NULL, [SortOrder] = 351.70 WHERE [Code] = 'kwo' END +SET [Description] = 'Kwomtari', [Definition] = NULL, [SortOrder] = 3529.00 WHERE [Code] = 'kwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xuu', 'Kxoe', NULL, 351.80) END +VALUES ('xuu', 'Kxoe', NULL, 3530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kxoe', [Definition] = NULL, [SortOrder] = 351.80 WHERE [Code] = 'xuu' END +SET [Description] = 'Kxoe', [Definition] = NULL, [SortOrder] = 3530.00 WHERE [Code] = 'xuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bka', 'Kyak', NULL, 351.90) END +VALUES ('bka', 'Kyak', NULL, 3531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyak', [Definition] = NULL, [SortOrder] = 351.90 WHERE [Code] = 'bka' END +SET [Description] = 'Kyak', [Definition] = NULL, [SortOrder] = 3531.00 WHERE [Code] = 'bka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyc', 'Kyaka', NULL, 352.00) END +VALUES ('kyc', 'Kyaka', NULL, 3532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyaka', [Definition] = NULL, [SortOrder] = 352.00 WHERE [Code] = 'kyc' END +SET [Description] = 'Kyaka', [Definition] = NULL, [SortOrder] = 3532.00 WHERE [Code] = 'kyc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqq', 'Kyan-Karyaw Naga', NULL, 352.10) END +VALUES ('nqq', 'Kyan-Karyaw Naga', NULL, 3533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyan-Karyaw Naga', [Definition] = NULL, [SortOrder] = 352.10 WHERE [Code] = 'nqq' END +SET [Description] = 'Kyan-Karyaw Naga', [Definition] = NULL, [SortOrder] = 3533.00 WHERE [Code] = 'nqq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tye', 'Kyanga', NULL, 352.20) END +VALUES ('tye', 'Kyanga', NULL, 3534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyanga', [Definition] = NULL, [SortOrder] = 352.20 WHERE [Code] = 'tye' END +SET [Description] = 'Kyanga', [Definition] = NULL, [SortOrder] = 3534.00 WHERE [Code] = 'tye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kql', 'Kyenele', NULL, 352.30) END +VALUES ('kql', 'Kyenele', NULL, 3535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyenele', [Definition] = NULL, [SortOrder] = 352.30 WHERE [Code] = 'kql' END +SET [Description] = 'Kyenele', [Definition] = NULL, [SortOrder] = 3535.00 WHERE [Code] = 'kql' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgy', 'Kyerung', NULL, 352.40) END +VALUES ('kgy', 'Kyerung', NULL, 3536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyerung', [Definition] = NULL, [SortOrder] = 352.40 WHERE [Code] = 'kgy' END +SET [Description] = 'Kyerung', [Definition] = NULL, [SortOrder] = 3536.00 WHERE [Code] = 'kgy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbi', 'La''bi', NULL, 352.50) END +VALUES ('lbi', 'La''bi', NULL, 3537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'La''bi', [Definition] = NULL, [SortOrder] = 352.50 WHERE [Code] = 'lbi' END +SET [Description] = 'La''bi', [Definition] = NULL, [SortOrder] = 3537.00 WHERE [Code] = 'lbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwj', 'Láá Láá Bwamu', NULL, 352.60) END +VALUES ('bwj', 'Láá Láá Bwamu', NULL, 3538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Láá Láá Bwamu', [Definition] = NULL, [SortOrder] = 352.60 WHERE [Code] = 'bwj' END +SET [Description] = 'Láá Láá Bwamu', [Definition] = NULL, [SortOrder] = 3538.00 WHERE [Code] = 'bwj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldn', 'Láadan', NULL, 352.70) END +VALUES ('ldn', 'Láadan', NULL, 3539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Láadan', [Definition] = NULL, [SortOrder] = 352.70 WHERE [Code] = 'ldn' END +SET [Description] = 'Láadan', [Definition] = NULL, [SortOrder] = 3539.00 WHERE [Code] = 'ldn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdm', 'Laal', NULL, 352.80) END +VALUES ('gdm', 'Laal', NULL, 3540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laal', [Definition] = NULL, [SortOrder] = 352.80 WHERE [Code] = 'gdm' END +SET [Description] = 'Laal', [Definition] = NULL, [SortOrder] = 3540.00 WHERE [Code] = 'gdm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldi', 'Laari', NULL, 352.90) END +VALUES ('ldi', 'Laari', NULL, 3541.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Laari', [Definition] = NULL, [SortOrder] = 3541.00 WHERE [Code] = 'ldi' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('loh', 'Laarim', NULL, 3542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laari', [Definition] = NULL, [SortOrder] = 352.90 WHERE [Code] = 'ldi' END +SET [Description] = 'Laarim', [Definition] = NULL, [SortOrder] = 3542.00 WHERE [Code] = 'loh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lau', 'Laba', NULL, 353.00) END +VALUES ('lau', 'Laba', NULL, 3543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laba', [Definition] = NULL, [SortOrder] = 353.00 WHERE [Code] = 'lau' END +SET [Description] = 'Laba', [Definition] = NULL, [SortOrder] = 3543.00 WHERE [Code] = 'lau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbb', 'Label', NULL, 353.10) END +VALUES ('lbb', 'Label', NULL, 3544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Label', [Definition] = NULL, [SortOrder] = 353.10 WHERE [Code] = 'lbb' END +SET [Description] = 'Label', [Definition] = NULL, [SortOrder] = 3544.00 WHERE [Code] = 'lbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jku', 'Labir', NULL, 353.20) END +VALUES ('jku', 'Labir', NULL, 3545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labir', [Definition] = NULL, [SortOrder] = 353.20 WHERE [Code] = 'jku' END +SET [Description] = 'Labir', [Definition] = NULL, [SortOrder] = 3545.00 WHERE [Code] = 'jku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwi', 'Labo', NULL, 353.30) END +VALUES ('mwi', 'Labo', NULL, 3546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labo', [Definition] = NULL, [SortOrder] = 353.30 WHERE [Code] = 'mwi' END +SET [Description] = 'Labo', [Definition] = NULL, [SortOrder] = 3546.00 WHERE [Code] = 'mwi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypb', 'Labo Phowa', NULL, 353.40) END +VALUES ('ypb', 'Labo Phowa', NULL, 3547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labo Phowa', [Definition] = NULL, [SortOrder] = 353.40 WHERE [Code] = 'ypb' END +SET [Description] = 'Labo Phowa', [Definition] = NULL, [SortOrder] = 3547.00 WHERE [Code] = 'ypb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbu', 'Labu', NULL, 353.50) END +VALUES ('lbu', 'Labu', NULL, 3548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labu', [Definition] = NULL, [SortOrder] = 353.50 WHERE [Code] = 'lbu' END +SET [Description] = 'Labu', [Definition] = NULL, [SortOrder] = 3548.00 WHERE [Code] = 'lbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtb', 'Labuk-Kinabatangan Kadazan', NULL, 353.60) END +VALUES ('dtb', 'Labuk-Kinabatangan Kadazan', NULL, 3549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labuk-Kinabatangan Kadazan', [Definition] = NULL, [SortOrder] = 353.60 WHERE [Code] = 'dtb' END +SET [Description] = 'Labuk-Kinabatangan Kadazan', [Definition] = NULL, [SortOrder] = 3549.00 WHERE [Code] = 'dtb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lac', 'Lacandon', NULL, 353.70) END +VALUES ('lac', 'Lacandon', NULL, 3550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lacandon', [Definition] = NULL, [SortOrder] = 353.70 WHERE [Code] = 'lac' END +SET [Description] = 'Lacandon', [Definition] = NULL, [SortOrder] = 3550.00 WHERE [Code] = 'lac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbt', 'Lachi', NULL, 353.80) END +VALUES ('lbt', 'Lachi', NULL, 3551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lachi', [Definition] = NULL, [SortOrder] = 353.80 WHERE [Code] = 'lbt' END +SET [Description] = 'Lachi', [Definition] = NULL, [SortOrder] = 3551.00 WHERE [Code] = 'lbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpa', 'Lachiguiri Zapotec', NULL, 353.90) END +VALUES ('zpa', 'Lachiguiri Zapotec', NULL, 3552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lachiguiri Zapotec', [Definition] = NULL, [SortOrder] = 353.90 WHERE [Code] = 'zpa' END +SET [Description] = 'Lachiguiri Zapotec', [Definition] = NULL, [SortOrder] = 3552.00 WHERE [Code] = 'zpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpl', 'Lachixío Zapotec', NULL, 354.00) END +VALUES ('zpl', 'Lachixío Zapotec', NULL, 3553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lachixío Zapotec', [Definition] = NULL, [SortOrder] = 354.00 WHERE [Code] = 'zpl' END +SET [Description] = 'Lachixío Zapotec', [Definition] = NULL, [SortOrder] = 3553.00 WHERE [Code] = 'zpl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbj', 'Ladakhi', NULL, 354.10) END +VALUES ('lbj', 'Ladakhi', NULL, 3554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ladakhi', [Definition] = NULL, [SortOrder] = 354.10 WHERE [Code] = 'lbj' END +SET [Description] = 'Ladakhi', [Definition] = NULL, [SortOrder] = 3554.00 WHERE [Code] = 'lbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lld', 'Ladin', NULL, 354.20) END +VALUES ('lld', 'Ladin', NULL, 3555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ladin', [Definition] = NULL, [SortOrder] = 354.20 WHERE [Code] = 'lld' END +SET [Description] = 'Ladin', [Definition] = NULL, [SortOrder] = 3555.00 WHERE [Code] = 'lld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lad', 'Ladino', NULL, 354.30) END +VALUES ('lad', 'Ladino', NULL, 3556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ladino', [Definition] = NULL, [SortOrder] = 354.30 WHERE [Code] = 'lad' END +SET [Description] = 'Ladino', [Definition] = NULL, [SortOrder] = 3556.00 WHERE [Code] = 'lad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llj', 'Ladji Ladji', NULL, 354.40) END +VALUES ('llj', 'Ladji Ladji', NULL, 3557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ladji Ladji', [Definition] = NULL, [SortOrder] = 354.40 WHERE [Code] = 'llj' END +SET [Description] = 'Ladji Ladji', [Definition] = NULL, [SortOrder] = 3557.00 WHERE [Code] = 'llj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkl', 'Laeko-Libuat', NULL, 354.50) END +VALUES ('lkl', 'Laeko-Libuat', NULL, 3558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laeko-Libuat', [Definition] = NULL, [SortOrder] = 354.50 WHERE [Code] = 'lkl' END +SET [Description] = 'Laeko-Libuat', [Definition] = NULL, [SortOrder] = 3558.00 WHERE [Code] = 'lkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laf', 'Lafofa', NULL, 354.60) END +VALUES ('laf', 'Lafofa', NULL, 3559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lafofa', [Definition] = NULL, [SortOrder] = 354.60 WHERE [Code] = 'laf' END +SET [Description] = 'Lafofa', [Definition] = NULL, [SortOrder] = 3559.00 WHERE [Code] = 'laf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgb', 'Laghu', NULL, 354.70) END +VALUES ('lgb', 'Laghu', NULL, 3560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laghu', [Definition] = NULL, [SortOrder] = 354.70 WHERE [Code] = 'lgb' END +SET [Description] = 'Laghu', [Definition] = NULL, [SortOrder] = 3560.00 WHERE [Code] = 'lgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgh', 'Laghuu', NULL, 354.80) END +VALUES ('lgh', 'Laghuu', NULL, 3561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laghuu', [Definition] = NULL, [SortOrder] = 354.80 WHERE [Code] = 'lgh' END +SET [Description] = 'Laghuu', [Definition] = NULL, [SortOrder] = 3561.00 WHERE [Code] = 'lgh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kot', 'Lagwan', NULL, 354.90) END +VALUES ('kot', 'Lagwan', NULL, 3562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lagwan', [Definition] = NULL, [SortOrder] = 354.90 WHERE [Code] = 'kot' END +SET [Description] = 'Lagwan', [Definition] = NULL, [SortOrder] = 3562.00 WHERE [Code] = 'kot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhh', 'Laha (Indonesia)', NULL, 355.00) END +VALUES ('lhh', 'Laha (Indonesia)', NULL, 3563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laha (Indonesia)', [Definition] = NULL, [SortOrder] = 355.00 WHERE [Code] = 'lhh' END +SET [Description] = 'Laha (Indonesia)', [Definition] = NULL, [SortOrder] = 3563.00 WHERE [Code] = 'lhh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lha', 'Laha (Viet Nam)', NULL, 355.10) END +VALUES ('lha', 'Laha (Viet Nam)', NULL, 3564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laha (Viet Nam)', [Definition] = NULL, [SortOrder] = 355.10 WHERE [Code] = 'lha' END +SET [Description] = 'Laha (Viet Nam)', [Definition] = NULL, [SortOrder] = 3564.00 WHERE [Code] = 'lha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhn', 'Lahanan', NULL, 355.20) END +VALUES ('lhn', 'Lahanan', NULL, 3565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahanan', [Definition] = NULL, [SortOrder] = 355.20 WHERE [Code] = 'lhn' END +SET [Description] = 'Lahanan', [Definition] = NULL, [SortOrder] = 3565.00 WHERE [Code] = 'lhn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lah', 'Lahnda', NULL, 355.30) END +VALUES ('lah', 'Lahnda', NULL, 3566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahnda', [Definition] = NULL, [SortOrder] = 355.30 WHERE [Code] = 'lah' END +SET [Description] = 'Lahnda', [Definition] = NULL, [SortOrder] = 3566.00 WHERE [Code] = 'lah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvt', 'Lahta Karen', NULL, 355.40) END +VALUES ('kvt', 'Lahta Karen', NULL, 3567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahta Karen', [Definition] = NULL, [SortOrder] = 355.40 WHERE [Code] = 'kvt' END +SET [Description] = 'Lahta Karen', [Definition] = NULL, [SortOrder] = 3567.00 WHERE [Code] = 'kvt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhu', 'Lahu', NULL, 355.50) END +VALUES ('lhu', 'Lahu', NULL, 3568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahu', [Definition] = NULL, [SortOrder] = 355.50 WHERE [Code] = 'lhu' END +SET [Description] = 'Lahu', [Definition] = NULL, [SortOrder] = 3568.00 WHERE [Code] = 'lhu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhi', 'Lahu Shi', NULL, 355.60) END +VALUES ('lhi', 'Lahu Shi', NULL, 3569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahu Shi', [Definition] = NULL, [SortOrder] = 355.60 WHERE [Code] = 'lhi' END +SET [Description] = 'Lahu Shi', [Definition] = NULL, [SortOrder] = 3569.00 WHERE [Code] = 'lhi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhl', 'Lahul Lohar', NULL, 355.70) END +VALUES ('lhl', 'Lahul Lohar', NULL, 3570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahul Lohar', [Definition] = NULL, [SortOrder] = 355.70 WHERE [Code] = 'lhl' END +SET [Description] = 'Lahul Lohar', [Definition] = NULL, [SortOrder] = 3570.00 WHERE [Code] = 'lhl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmx', 'Laimbue', NULL, 355.80) END +VALUES ('lmx', 'Laimbue', NULL, 3571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laimbue', [Definition] = NULL, [SortOrder] = 355.80 WHERE [Code] = 'lmx' END +SET [Description] = 'Laimbue', [Definition] = NULL, [SortOrder] = 3571.00 WHERE [Code] = 'lmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clj', 'Laitu Chin', NULL, 355.90) END +VALUES ('clj', 'Laitu Chin', NULL, 3572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laitu Chin', [Definition] = NULL, [SortOrder] = 355.90 WHERE [Code] = 'clj' END +SET [Description] = 'Laitu Chin', [Definition] = NULL, [SortOrder] = 3572.00 WHERE [Code] = 'clj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lji', 'Laiyolo', NULL, 356.00) END +VALUES ('lji', 'Laiyolo', NULL, 3573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laiyolo', [Definition] = NULL, [SortOrder] = 356.00 WHERE [Code] = 'lji' END +SET [Description] = 'Laiyolo', [Definition] = NULL, [SortOrder] = 3573.00 WHERE [Code] = 'lji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbe', 'Lak', NULL, 356.10) END +VALUES ('lbe', 'Lak', NULL, 3574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lak', [Definition] = NULL, [SortOrder] = 356.10 WHERE [Code] = 'lbe' END +SET [Description] = 'Lak', [Definition] = NULL, [SortOrder] = 3574.00 WHERE [Code] = 'lbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lap', 'Laka (Chad)', NULL, 356.20) END +VALUES ('lap', 'Laka (Chad)', NULL, 3575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laka (Chad)', [Definition] = NULL, [SortOrder] = 356.20 WHERE [Code] = 'lap' END +SET [Description] = 'Laka (Chad)', [Definition] = NULL, [SortOrder] = 3575.00 WHERE [Code] = 'lap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lka', 'Lakalei', NULL, 356.30) END +VALUES ('lka', 'Lakalei', NULL, 3576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakalei', [Definition] = NULL, [SortOrder] = 356.30 WHERE [Code] = 'lka' END +SET [Description] = 'Lakalei', [Definition] = NULL, [SortOrder] = 3576.00 WHERE [Code] = 'lka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmw', 'Lake Miwok', NULL, 356.40) END +VALUES ('lmw', 'Lake Miwok', NULL, 3577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lake Miwok', [Definition] = NULL, [SortOrder] = 356.40 WHERE [Code] = 'lmw' END +SET [Description] = 'Lake Miwok', [Definition] = NULL, [SortOrder] = 3577.00 WHERE [Code] = 'lmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkh', 'Lakha', NULL, 356.50) END +VALUES ('lkh', 'Lakha', NULL, 3578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakha', [Definition] = NULL, [SortOrder] = 356.50 WHERE [Code] = 'lkh' END +SET [Description] = 'Lakha', [Definition] = NULL, [SortOrder] = 3578.00 WHERE [Code] = 'lkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lki', 'Laki', NULL, 356.60) END +VALUES ('lki', 'Laki', NULL, 3579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laki', [Definition] = NULL, [SortOrder] = 356.60 WHERE [Code] = 'lki' END +SET [Description] = 'Laki', [Definition] = NULL, [SortOrder] = 3579.00 WHERE [Code] = 'lki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbc', 'Lakkia', NULL, 356.70) END +VALUES ('lbc', 'Lakkia', NULL, 3580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakkia', [Definition] = NULL, [SortOrder] = 356.70 WHERE [Code] = 'lbc' END +SET [Description] = 'Lakkia', [Definition] = NULL, [SortOrder] = 3580.00 WHERE [Code] = 'lbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkn', 'Lakon', NULL, 356.80) END +VALUES ('lkn', 'Lakon', NULL, 3581.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakon', [Definition] = NULL, [SortOrder] = 356.80 WHERE [Code] = 'lkn' END +SET [Description] = 'Lakon', [Definition] = NULL, [SortOrder] = 3581.00 WHERE [Code] = 'lkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkd', 'Lakondê', NULL, 356.90) END +VALUES ('lkd', 'Lakondê', NULL, 3582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakondê', [Definition] = NULL, [SortOrder] = 356.90 WHERE [Code] = 'lkd' END +SET [Description] = 'Lakondê', [Definition] = NULL, [SortOrder] = 3582.00 WHERE [Code] = 'lkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkt', 'Lakota', NULL, 357.00) END +VALUES ('lkt', 'Lakota', NULL, 3583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakota', [Definition] = NULL, [SortOrder] = 357.00 WHERE [Code] = 'lkt' END +SET [Description] = 'Lakota', [Definition] = NULL, [SortOrder] = 3583.00 WHERE [Code] = 'lkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dic', 'Lakota Dida', NULL, 357.10) END +VALUES ('dic', 'Lakota Dida', NULL, 3584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakota Dida', [Definition] = NULL, [SortOrder] = 357.10 WHERE [Code] = 'dic' END +SET [Description] = 'Lakota Dida', [Definition] = NULL, [SortOrder] = 3584.00 WHERE [Code] = 'dic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lxm', 'Lakurumau', NULL, 357.20) END +VALUES ('lxm', 'Lakurumau', NULL, 3585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakurumau', [Definition] = NULL, [SortOrder] = 357.20 WHERE [Code] = 'lxm' END +SET [Description] = 'Lakurumau', [Definition] = NULL, [SortOrder] = 3585.00 WHERE [Code] = 'lxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrz', 'Lala', NULL, 357.30) END +VALUES ('nrz', 'Lala', NULL, 3586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lala', [Definition] = NULL, [SortOrder] = 357.30 WHERE [Code] = 'nrz' END +SET [Description] = 'Lala', [Definition] = NULL, [SortOrder] = 3586.00 WHERE [Code] = 'nrz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leb', 'Lala-Bisa', NULL, 357.40) END +VALUES ('leb', 'Lala-Bisa', NULL, 3587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lala-Bisa', [Definition] = NULL, [SortOrder] = 357.40 WHERE [Code] = 'leb' END +SET [Description] = 'Lala-Bisa', [Definition] = NULL, [SortOrder] = 3587.00 WHERE [Code] = 'leb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lla', 'Lala-Roba', NULL, 357.50) END +VALUES ('lla', 'Lala-Roba', NULL, 3588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lala-Roba', [Definition] = NULL, [SortOrder] = 357.50 WHERE [Code] = 'lla' END +SET [Description] = 'Lala-Roba', [Definition] = NULL, [SortOrder] = 3588.00 WHERE [Code] = 'lla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnl', 'Lalana Chinantec', NULL, 357.60) END +VALUES ('cnl', 'Lalana Chinantec', NULL, 3589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lalana Chinantec', [Definition] = NULL, [SortOrder] = 357.60 WHERE [Code] = 'cnl' END +SET [Description] = 'Lalana Chinantec', [Definition] = NULL, [SortOrder] = 3589.00 WHERE [Code] = 'cnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lal', 'Lalia', NULL, 357.70) END +VALUES ('lal', 'Lalia', NULL, 3590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lalia', [Definition] = NULL, [SortOrder] = 357.70 WHERE [Code] = 'lal' END +SET [Description] = 'Lalia', [Definition] = NULL, [SortOrder] = 3590.00 WHERE [Code] = 'lal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'las') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('las', 'Lama (Togo)', NULL, 357.80) END +VALUES ('las', 'Lama (Togo)', NULL, 3591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lama (Togo)', [Definition] = NULL, [SortOrder] = 357.80 WHERE [Code] = 'las' END +SET [Description] = 'Lama (Togo)', [Definition] = NULL, [SortOrder] = 3591.00 WHERE [Code] = 'las' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lay', 'Lama Bai', NULL, 357.90) END +VALUES ('lay', 'Lama Bai', NULL, 3592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lama Bai', [Definition] = NULL, [SortOrder] = 357.90 WHERE [Code] = 'lay' END +SET [Description] = 'Lama Bai', [Definition] = NULL, [SortOrder] = 3592.00 WHERE [Code] = 'lay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slp', 'Lamaholot', NULL, 358.00) END +VALUES ('slp', 'Lamaholot', NULL, 3593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamaholot', [Definition] = NULL, [SortOrder] = 358.00 WHERE [Code] = 'slp' END +SET [Description] = 'Lamaholot', [Definition] = NULL, [SortOrder] = 3593.00 WHERE [Code] = 'slp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lby', 'Lamalama', NULL, 358.10) END +VALUES ('lby', 'Lamalama', NULL, 3594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamalama', [Definition] = NULL, [SortOrder] = 358.10 WHERE [Code] = 'lby' END +SET [Description] = 'Lamalama', [Definition] = NULL, [SortOrder] = 3594.00 WHERE [Code] = 'lby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmr', 'Lamalera', NULL, 358.20) END +VALUES ('lmr', 'Lamalera', NULL, 3595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamalera', [Definition] = NULL, [SortOrder] = 358.20 WHERE [Code] = 'lmr' END +SET [Description] = 'Lamalera', [Definition] = NULL, [SortOrder] = 3595.00 WHERE [Code] = 'lmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hia', 'Lamang', NULL, 358.30) END +VALUES ('hia', 'Lamang', NULL, 3596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamang', [Definition] = NULL, [SortOrder] = 358.30 WHERE [Code] = 'hia' END +SET [Description] = 'Lamang', [Definition] = NULL, [SortOrder] = 3596.00 WHERE [Code] = 'hia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmq', 'Lamatuka', NULL, 358.40) END +VALUES ('lmq', 'Lamatuka', NULL, 3597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamatuka', [Definition] = NULL, [SortOrder] = 358.40 WHERE [Code] = 'lmq' END +SET [Description] = 'Lamatuka', [Definition] = NULL, [SortOrder] = 3597.00 WHERE [Code] = 'lmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lam', 'Lamba', NULL, 358.50) END +VALUES ('lam', 'Lamba', NULL, 3598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamba', [Definition] = NULL, [SortOrder] = 358.50 WHERE [Code] = 'lam' END +SET [Description] = 'Lamba', [Definition] = NULL, [SortOrder] = 3598.00 WHERE [Code] = 'lam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmn', 'Lambadi', NULL, 358.60) END +VALUES ('lmn', 'Lambadi', NULL, 3599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lambadi', [Definition] = NULL, [SortOrder] = 358.60 WHERE [Code] = 'lmn' END +SET [Description] = 'Lambadi', [Definition] = NULL, [SortOrder] = 3599.00 WHERE [Code] = 'lmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quf', 'Lambayeque Quechua', NULL, 358.70) END +VALUES ('quf', 'Lambayeque Quechua', NULL, 3600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lambayeque Quechua', [Definition] = NULL, [SortOrder] = 358.70 WHERE [Code] = 'quf' END +SET [Description] = 'Lambayeque Quechua', [Definition] = NULL, [SortOrder] = 3600.00 WHERE [Code] = 'quf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmh', 'Lambichhong', NULL, 358.80) END +VALUES ('lmh', 'Lambichhong', NULL, 3601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lambichhong', [Definition] = NULL, [SortOrder] = 358.80 WHERE [Code] = 'lmh' END +SET [Description] = 'Lambichhong', [Definition] = NULL, [SortOrder] = 3601.00 WHERE [Code] = 'lmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmy', 'Lamboya', NULL, 358.90) END +VALUES ('lmy', 'Lamboya', NULL, 3602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamboya', [Definition] = NULL, [SortOrder] = 358.90 WHERE [Code] = 'lmy' END +SET [Description] = 'Lamboya', [Definition] = NULL, [SortOrder] = 3602.00 WHERE [Code] = 'lmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lai', 'Lambya', NULL, 359.00) END +VALUES ('lai', 'Lambya', NULL, 3603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lambya', [Definition] = NULL, [SortOrder] = 359.00 WHERE [Code] = 'lai' END +SET [Description] = 'Lambya', [Definition] = NULL, [SortOrder] = 3603.00 WHERE [Code] = 'lai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bma', 'Lame', NULL, 359.10) END +VALUES ('bma', 'Lame', NULL, 3604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lame', [Definition] = NULL, [SortOrder] = 359.10 WHERE [Code] = 'bma' END +SET [Description] = 'Lame', [Definition] = NULL, [SortOrder] = 3604.00 WHERE [Code] = 'bma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmu', 'Lamenu', NULL, 359.20) END +VALUES ('lmu', 'Lamenu', NULL, 3605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamenu', [Definition] = NULL, [SortOrder] = 359.20 WHERE [Code] = 'lmu' END +SET [Description] = 'Lamenu', [Definition] = NULL, [SortOrder] = 3605.00 WHERE [Code] = 'lmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldh', 'Lamja-Dengsa-Tola', NULL, 359.30) END +VALUES ('ldh', 'Lamja-Dengsa-Tola', NULL, 3606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamja-Dengsa-Tola', [Definition] = NULL, [SortOrder] = 359.30 WHERE [Code] = 'ldh' END +SET [Description] = 'Lamja-Dengsa-Tola', [Definition] = NULL, [SortOrder] = 3606.00 WHERE [Code] = 'ldh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmk', 'Lamkang', NULL, 359.40) END +VALUES ('lmk', 'Lamkang', NULL, 3607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamkang', [Definition] = NULL, [SortOrder] = 359.40 WHERE [Code] = 'lmk' END +SET [Description] = 'Lamkang', [Definition] = NULL, [SortOrder] = 3607.00 WHERE [Code] = 'lmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lev', 'Lamma', NULL, 359.50) END +VALUES ('lev', 'Lamma', NULL, 3608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamma', [Definition] = NULL, [SortOrder] = 359.50 WHERE [Code] = 'lev' END +SET [Description] = 'Lamma', [Definition] = NULL, [SortOrder] = 3608.00 WHERE [Code] = 'lev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lns', 'Lamnso''', NULL, 359.60) END +VALUES ('lns', 'Lamnso''', NULL, 3609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamnso''', [Definition] = NULL, [SortOrder] = 359.60 WHERE [Code] = 'lns' END +SET [Description] = 'Lamnso''', [Definition] = NULL, [SortOrder] = 3609.00 WHERE [Code] = 'lns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmg', 'Lamogai', NULL, 359.70) END +VALUES ('lmg', 'Lamogai', NULL, 3610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamogai', [Definition] = NULL, [SortOrder] = 359.70 WHERE [Code] = 'lmg' END +SET [Description] = 'Lamogai', [Definition] = NULL, [SortOrder] = 3610.00 WHERE [Code] = 'lmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ljp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ljp', 'Lampung Api', NULL, 359.80) END +VALUES ('ljp', 'Lampung Api', NULL, 3611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lampung Api', [Definition] = NULL, [SortOrder] = 359.80 WHERE [Code] = 'ljp' END +SET [Description] = 'Lampung Api', [Definition] = NULL, [SortOrder] = 3611.00 WHERE [Code] = 'ljp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abl', 'Lampung Nyo', NULL, 359.90) END +VALUES ('abl', 'Lampung Nyo', NULL, 3612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lampung Nyo', [Definition] = NULL, [SortOrder] = 359.90 WHERE [Code] = 'abl' END +SET [Description] = 'Lampung Nyo', [Definition] = NULL, [SortOrder] = 3612.00 WHERE [Code] = 'abl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llh', 'Lamu', NULL, 360.00) END +VALUES ('llh', 'Lamu', NULL, 3613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamu', [Definition] = NULL, [SortOrder] = 360.00 WHERE [Code] = 'llh' END +SET [Description] = 'Lamu', [Definition] = NULL, [SortOrder] = 3613.00 WHERE [Code] = 'llh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruu', 'Lanas Lobu', NULL, 360.10) END +VALUES ('ruu', 'Lanas Lobu', NULL, 3614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lanas Lobu', [Definition] = NULL, [SortOrder] = 360.10 WHERE [Code] = 'ruu' END +SET [Description] = 'Lanas Lobu', [Definition] = NULL, [SortOrder] = 3614.00 WHERE [Code] = 'ruu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldm', 'Landoma', NULL, 360.20) END +VALUES ('ldm', 'Landoma', NULL, 3615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Landoma', [Definition] = NULL, [SortOrder] = 360.20 WHERE [Code] = 'ldm' END +SET [Description] = 'Landoma', [Definition] = NULL, [SortOrder] = 3615.00 WHERE [Code] = 'ldm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yne', 'Lang''e', NULL, 360.30) END +VALUES ('yne', 'Lang''e', NULL, 3616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lang''e', [Definition] = NULL, [SortOrder] = 360.30 WHERE [Code] = 'yne' END +SET [Description] = 'Lang''e', [Definition] = NULL, [SortOrder] = 3616.00 WHERE [Code] = 'yne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnm', 'Langam', NULL, 360.40) END +VALUES ('lnm', 'Langam', NULL, 3617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langam', [Definition] = NULL, [SortOrder] = 360.40 WHERE [Code] = 'lnm' END +SET [Description] = 'Langam', [Definition] = NULL, [SortOrder] = 3617.00 WHERE [Code] = 'lnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lna', 'Langbashe', NULL, 360.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langbashe', [Definition] = NULL, [SortOrder] = 360.50 WHERE [Code] = 'lna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lag', 'Langi', NULL, 360.60) END +VALUES ('lna', 'Langbashe', NULL, 3618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langi', [Definition] = NULL, [SortOrder] = 360.60 WHERE [Code] = 'lag' END +SET [Description] = 'Langbashe', [Definition] = NULL, [SortOrder] = 3618.00 WHERE [Code] = 'lna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yln', 'Langnian Buyang', NULL, 360.70) END +VALUES ('yln', 'Langnian Buyang', NULL, 3619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langnian Buyang', [Definition] = NULL, [SortOrder] = 360.70 WHERE [Code] = 'yln' END +SET [Description] = 'Langnian Buyang', [Definition] = NULL, [SortOrder] = 3619.00 WHERE [Code] = 'yln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgo', 'Lango (South Sudan)', NULL, 360.80) END +VALUES ('lgo', 'Lango (South Sudan)', NULL, 3620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lango (South Sudan)', [Definition] = NULL, [SortOrder] = 360.80 WHERE [Code] = 'lgo' END +SET [Description] = 'Lango (South Sudan)', [Definition] = NULL, [SortOrder] = 3620.00 WHERE [Code] = 'lgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laj', 'Lango (Uganda)', NULL, 360.90) END +VALUES ('laj', 'Lango (Uganda)', NULL, 3621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lango (Uganda)', [Definition] = NULL, [SortOrder] = 360.90 WHERE [Code] = 'laj' END +SET [Description] = 'Lango (Uganda)', [Definition] = NULL, [SortOrder] = 3621.00 WHERE [Code] = 'laj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lng', 'Langobardic', NULL, 361.00) END +VALUES ('lng', 'Langobardic', NULL, 3622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langobardic', [Definition] = NULL, [SortOrder] = 361.00 WHERE [Code] = 'lng' END +SET [Description] = 'Langobardic', [Definition] = NULL, [SortOrder] = 3622.00 WHERE [Code] = 'lng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfb', 'Langue des signes de Belgique Francophone', NULL, 361.10) END +VALUES ('sfb', 'Langue des signes de Belgique Francophone', NULL, 3623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langue des signes de Belgique Francophone', [Definition] = NULL, [SortOrder] = 361.10 WHERE [Code] = 'sfb' END +SET [Description] = 'Langue des signes de Belgique Francophone', [Definition] = NULL, [SortOrder] = 3623.00 WHERE [Code] = 'sfb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnw', 'Lanima', NULL, 361.20) END +VALUES ('lnw', 'Lanima', NULL, 3624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lanima', [Definition] = NULL, [SortOrder] = 361.20 WHERE [Code] = 'lnw' END +SET [Description] = 'Lanima', [Definition] = NULL, [SortOrder] = 3624.00 WHERE [Code] = 'lnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnh', 'Lanoh', NULL, 361.30) END +VALUES ('lnh', 'Lanoh', NULL, 3625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lanoh', [Definition] = NULL, [SortOrder] = 361.30 WHERE [Code] = 'lnh' END +SET [Description] = 'Lanoh', [Definition] = NULL, [SortOrder] = 3625.00 WHERE [Code] = 'lnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lao', 'Lao', NULL, 361.40) END +VALUES ('lao', 'Lao', NULL, 3626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lao', [Definition] = NULL, [SortOrder] = 361.40 WHERE [Code] = 'lao' END +SET [Description] = 'Lao', [Definition] = NULL, [SortOrder] = 3626.00 WHERE [Code] = 'lao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlq', 'Lao Naga', NULL, 361.50) END +VALUES ('nlq', 'Lao Naga', NULL, 3627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lao Naga', [Definition] = NULL, [SortOrder] = 361.50 WHERE [Code] = 'nlq' END +SET [Description] = 'Lao Naga', [Definition] = NULL, [SortOrder] = 3627.00 WHERE [Code] = 'nlq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwm', 'Laomian', NULL, 361.60) END +VALUES ('lwm', 'Laomian', NULL, 3628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laomian', [Definition] = NULL, [SortOrder] = 361.60 WHERE [Code] = 'lwm' END +SET [Description] = 'Laomian', [Definition] = NULL, [SortOrder] = 3628.00 WHERE [Code] = 'lwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbg', 'Laopang', NULL, 361.70) END +VALUES ('lbg', 'Laopang', NULL, 3629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laopang', [Definition] = NULL, [SortOrder] = 361.70 WHERE [Code] = 'lbg' END +SET [Description] = 'Laopang', [Definition] = NULL, [SortOrder] = 3629.00 WHERE [Code] = 'lbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lso', 'Laos Sign Language', NULL, 361.80) END +VALUES ('lso', 'Laos Sign Language', NULL, 3630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laos Sign Language', [Definition] = NULL, [SortOrder] = 361.80 WHERE [Code] = 'lso' END +SET [Description] = 'Laos Sign Language', [Definition] = NULL, [SortOrder] = 3630.00 WHERE [Code] = 'lso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztl', 'Lapaguía-Guivini Zapotec', NULL, 361.90) END +VALUES ('ztl', 'Lapaguía-Guivini Zapotec', NULL, 3631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lapaguía-Guivini Zapotec', [Definition] = NULL, [SortOrder] = 361.90 WHERE [Code] = 'ztl' END +SET [Description] = 'Lapaguía-Guivini Zapotec', [Definition] = NULL, [SortOrder] = 3631.00 WHERE [Code] = 'ztl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrg', 'Laragia', NULL, 362.00) END +VALUES ('lrg', 'Laragia', NULL, 3632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laragia', [Definition] = NULL, [SortOrder] = 362.00 WHERE [Code] = 'lrg' END +SET [Description] = 'Laragia', [Definition] = NULL, [SortOrder] = 3632.00 WHERE [Code] = 'lrg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrt', 'Larantuka Malay', NULL, 362.10) END +VALUES ('lrt', 'Larantuka Malay', NULL, 3633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Larantuka Malay', [Definition] = NULL, [SortOrder] = 362.10 WHERE [Code] = 'lrt' END +SET [Description] = 'Larantuka Malay', [Definition] = NULL, [SortOrder] = 3633.00 WHERE [Code] = 'lrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbz', 'Lardil', NULL, 362.20) END +VALUES ('lbz', 'Lardil', NULL, 3634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lardil', [Definition] = NULL, [SortOrder] = 362.20 WHERE [Code] = 'lbz' END +SET [Description] = 'Lardil', [Definition] = NULL, [SortOrder] = 3634.00 WHERE [Code] = 'lbz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrv', 'Larevat', NULL, 362.30) END +VALUES ('lrv', 'Larevat', NULL, 3635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Larevat', [Definition] = NULL, [SortOrder] = 362.30 WHERE [Code] = 'lrv' END +SET [Description] = 'Larevat', [Definition] = NULL, [SortOrder] = 3635.00 WHERE [Code] = 'lrv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmd', 'Large Flowery Miao', NULL, 362.40) END +VALUES ('hmd', 'Large Flowery Miao', NULL, 3636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Large Flowery Miao', [Definition] = NULL, [SortOrder] = 362.40 WHERE [Code] = 'hmd' END +SET [Description] = 'Large Flowery Miao', [Definition] = NULL, [SortOrder] = 3636.00 WHERE [Code] = 'hmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrl', 'Lari', NULL, 362.50) END +VALUES ('lrl', 'Lari', NULL, 3637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lari', [Definition] = NULL, [SortOrder] = 362.50 WHERE [Code] = 'lrl' END +SET [Description] = 'Lari', [Definition] = NULL, [SortOrder] = 3637.00 WHERE [Code] = 'lrl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alo', 'Larike-Wakasihu', NULL, 362.60) END +VALUES ('alo', 'Larike-Wakasihu', NULL, 3638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Larike-Wakasihu', [Definition] = NULL, [SortOrder] = 362.60 WHERE [Code] = 'alo' END +SET [Description] = 'Larike-Wakasihu', [Definition] = NULL, [SortOrder] = 3638.00 WHERE [Code] = 'alo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lro', 'Laro', NULL, 362.70) END +VALUES ('lro', 'Laro', NULL, 3639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laro', [Definition] = NULL, [SortOrder] = 362.70 WHERE [Code] = 'lro' END +SET [Description] = 'Laro', [Definition] = NULL, [SortOrder] = 3639.00 WHERE [Code] = 'lro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lar', 'Larteh', NULL, 362.80) END +VALUES ('lar', 'Larteh', NULL, 3640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Larteh', [Definition] = NULL, [SortOrder] = 362.80 WHERE [Code] = 'lar' END +SET [Description] = 'Larteh', [Definition] = NULL, [SortOrder] = 3640.00 WHERE [Code] = 'lar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lan', 'Laru', NULL, 362.90) END +VALUES ('lan', 'Laru', NULL, 3641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laru', [Definition] = NULL, [SortOrder] = 362.90 WHERE [Code] = 'lan' END +SET [Description] = 'Laru', [Definition] = NULL, [SortOrder] = 3641.00 WHERE [Code] = 'lan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zcd', 'Las Delicias Zapotec', NULL, 363.00) END +VALUES ('zcd', 'Las Delicias Zapotec', NULL, 3642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Las Delicias Zapotec', [Definition] = NULL, [SortOrder] = 363.00 WHERE [Code] = 'zcd' END +SET [Description] = 'Las Delicias Zapotec', [Definition] = NULL, [SortOrder] = 3642.00 WHERE [Code] = 'zcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llm', 'Lasalimu', NULL, 363.10) END +VALUES ('llm', 'Lasalimu', NULL, 3643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lasalimu', [Definition] = NULL, [SortOrder] = 363.10 WHERE [Code] = 'llm' END +SET [Description] = 'Lasalimu', [Definition] = NULL, [SortOrder] = 3643.00 WHERE [Code] = 'llm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsa', 'Lasgerdi', NULL, 363.20) END +VALUES ('lsa', 'Lasgerdi', NULL, 3644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lasgerdi', [Definition] = NULL, [SortOrder] = 363.20 WHERE [Code] = 'lsa' END +SET [Description] = 'Lasgerdi', [Definition] = NULL, [SortOrder] = 3644.00 WHERE [Code] = 'lsa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsi', 'Lashi', NULL, 363.30) END +VALUES ('lsi', 'Lashi', NULL, 3645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lashi', [Definition] = NULL, [SortOrder] = 363.30 WHERE [Code] = 'lsi' END +SET [Description] = 'Lashi', [Definition] = NULL, [SortOrder] = 3645.00 WHERE [Code] = 'lsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lss', 'Lasi', NULL, 363.40) END +VALUES ('lss', 'Lasi', NULL, 3646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lasi', [Definition] = NULL, [SortOrder] = 363.40 WHERE [Code] = 'lss' END +SET [Description] = 'Lasi', [Definition] = NULL, [SortOrder] = 3646.00 WHERE [Code] = 'lss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltc', 'Late Middle Chinese', NULL, 363.50) END +VALUES ('ltc', 'Late Middle Chinese', NULL, 3647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Late Middle Chinese', [Definition] = NULL, [SortOrder] = 363.50 WHERE [Code] = 'ltc' END +SET [Description] = 'Late Middle Chinese', [Definition] = NULL, [SortOrder] = 3647.00 WHERE [Code] = 'ltc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltg', 'Latgalian', NULL, 363.60) END +VALUES ('ltg', 'Latgalian', NULL, 3648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latgalian', [Definition] = NULL, [SortOrder] = 363.60 WHERE [Code] = 'ltg' END +SET [Description] = 'Latgalian', [Definition] = NULL, [SortOrder] = 3648.00 WHERE [Code] = 'ltg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lat', 'Latin', NULL, 363.70) END +VALUES ('lat', 'Latin', NULL, 3649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latin', [Definition] = NULL, [SortOrder] = 363.70 WHERE [Code] = 'lat' END +SET [Description] = 'Latin', [Definition] = NULL, [SortOrder] = 3649.00 WHERE [Code] = 'lat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltu', 'Latu', NULL, 363.80) END +VALUES ('ltu', 'Latu', NULL, 3650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latu', [Definition] = NULL, [SortOrder] = 363.80 WHERE [Code] = 'ltu' END +SET [Description] = 'Latu', [Definition] = NULL, [SortOrder] = 3650.00 WHERE [Code] = 'ltu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltn', 'Latundê', NULL, 363.90) END +VALUES ('ltn', 'Latundê', NULL, 3651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latundê', [Definition] = NULL, [SortOrder] = 363.90 WHERE [Code] = 'ltn' END +SET [Description] = 'Latundê', [Definition] = NULL, [SortOrder] = 3651.00 WHERE [Code] = 'ltn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lav', 'Latvian', NULL, 364.00) END +VALUES ('lav', 'Latvian', NULL, 3652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latvian', [Definition] = NULL, [SortOrder] = 364.00 WHERE [Code] = 'lav' END +SET [Description] = 'Latvian', [Definition] = NULL, [SortOrder] = 3652.00 WHERE [Code] = 'lav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsl', 'Latvian Sign Language', NULL, 364.10) END +VALUES ('lsl', 'Latvian Sign Language', NULL, 3653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latvian Sign Language', [Definition] = NULL, [SortOrder] = 364.10 WHERE [Code] = 'lsl' END +SET [Description] = 'Latvian Sign Language', [Definition] = NULL, [SortOrder] = 3653.00 WHERE [Code] = 'lsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llu', 'Lau', NULL, 364.20) END +VALUES ('llu', 'Lau', NULL, 3654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lau', [Definition] = NULL, [SortOrder] = 364.20 WHERE [Code] = 'llu' END +SET [Description] = 'Lau', [Definition] = NULL, [SortOrder] = 3654.00 WHERE [Code] = 'llu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luf', 'Laua', NULL, 364.30) END +VALUES ('luf', 'Laua', NULL, 3655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laua', [Definition] = NULL, [SortOrder] = 364.30 WHERE [Code] = 'luf' END +SET [Description] = 'Laua', [Definition] = NULL, [SortOrder] = 3655.00 WHERE [Code] = 'luf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llx', 'Lauan', NULL, 364.40) END +VALUES ('llx', 'Lauan', NULL, 3656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lauan', [Definition] = NULL, [SortOrder] = 364.40 WHERE [Code] = 'llx' END +SET [Description] = 'Lauan', [Definition] = NULL, [SortOrder] = 3656.00 WHERE [Code] = 'llx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'law') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('law', 'Lauje', NULL, 364.50) END +VALUES ('law', 'Lauje', NULL, 3657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lauje', [Definition] = NULL, [SortOrder] = 364.50 WHERE [Code] = 'law' END +SET [Description] = 'Lauje', [Definition] = NULL, [SortOrder] = 3657.00 WHERE [Code] = 'law' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lur', 'Laura', NULL, 364.60) END +VALUES ('lur', 'Laura', NULL, 3658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laura', [Definition] = NULL, [SortOrder] = 364.60 WHERE [Code] = 'lur' END +SET [Description] = 'Laura', [Definition] = NULL, [SortOrder] = 3658.00 WHERE [Code] = 'lur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lre', 'Laurentian', NULL, 364.70) END +VALUES ('lre', 'Laurentian', NULL, 3659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laurentian', [Definition] = NULL, [SortOrder] = 364.70 WHERE [Code] = 'lre' END +SET [Description] = 'Laurentian', [Definition] = NULL, [SortOrder] = 3659.00 WHERE [Code] = 'lre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clt', 'Lautu Chin', NULL, 364.80) END +VALUES ('clt', 'Lautu Chin', NULL, 3660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lautu Chin', [Definition] = NULL, [SortOrder] = 364.80 WHERE [Code] = 'clt' END +SET [Description] = 'Lautu Chin', [Definition] = NULL, [SortOrder] = 3660.00 WHERE [Code] = 'clt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbv', 'Lavatbura-Lamusong', NULL, 364.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lavatbura-Lamusong', [Definition] = NULL, [SortOrder] = 364.90 WHERE [Code] = 'lbv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brb', 'Brao', NULL, 365.00) END +VALUES ('lbv', 'Lavatbura-Lamusong', NULL, 3661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brao', [Definition] = NULL, [SortOrder] = 365.00 WHERE [Code] = 'brb' END +SET [Description] = 'Lavatbura-Lamusong', [Definition] = NULL, [SortOrder] = 3661.00 WHERE [Code] = 'lbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbo', 'Laven', NULL, 365.10) END +VALUES ('lbo', 'Laven', NULL, 3662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laven', [Definition] = NULL, [SortOrder] = 365.10 WHERE [Code] = 'lbo' END +SET [Description] = 'Laven', [Definition] = NULL, [SortOrder] = 3662.00 WHERE [Code] = 'lbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lvi', 'Lavi', NULL, 365.20) END +VALUES ('lvi', 'Lavi', NULL, 3663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lavi', [Definition] = NULL, [SortOrder] = 365.20 WHERE [Code] = 'lvi' END +SET [Description] = 'Lavi', [Definition] = NULL, [SortOrder] = 3663.00 WHERE [Code] = 'lvi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lvk', 'Lavukaleve', NULL, 365.30) END +VALUES ('lvk', 'Lavukaleve', NULL, 3664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lavukaleve', [Definition] = NULL, [SortOrder] = 365.30 WHERE [Code] = 'lvk' END +SET [Description] = 'Lavukaleve', [Definition] = NULL, [SortOrder] = 3664.00 WHERE [Code] = 'lvk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbx', 'Lawangan', NULL, 365.40) END +VALUES ('lbx', 'Lawangan', NULL, 3665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lawangan', [Definition] = NULL, [SortOrder] = 365.40 WHERE [Code] = 'lbx' END +SET [Description] = 'Lawangan', [Definition] = NULL, [SortOrder] = 3665.00 WHERE [Code] = 'lbx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwu', 'Lawu', NULL, 365.50) END +VALUES ('lwu', 'Lawu', NULL, 3666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lawu', [Definition] = NULL, [SortOrder] = 365.50 WHERE [Code] = 'lwu' END +SET [Description] = 'Lawu', [Definition] = NULL, [SortOrder] = 3666.00 WHERE [Code] = 'lwu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgi', 'Lawunuia', NULL, 365.60) END +VALUES ('tgi', 'Lawunuia', NULL, 3667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lawunuia', [Definition] = NULL, [SortOrder] = 365.60 WHERE [Code] = 'tgi' END +SET [Description] = 'Lawunuia', [Definition] = NULL, [SortOrder] = 3667.00 WHERE [Code] = 'tgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lya', 'Layakha', NULL, 365.70) END +VALUES ('lya', 'Layakha', NULL, 3668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Layakha', [Definition] = NULL, [SortOrder] = 365.70 WHERE [Code] = 'lya' END +SET [Description] = 'Layakha', [Definition] = NULL, [SortOrder] = 3668.00 WHERE [Code] = 'lya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lzz', 'Laz', NULL, 365.80) END +VALUES ('lzz', 'Laz', NULL, 3669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laz', [Definition] = NULL, [SortOrder] = 365.80 WHERE [Code] = 'lzz' END +SET [Description] = 'Laz', [Definition] = NULL, [SortOrder] = 3669.00 WHERE [Code] = 'lzz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cle', 'Lealao Chinantec', NULL, 365.90) END +VALUES ('cle', 'Lealao Chinantec', NULL, 3670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lealao Chinantec', [Definition] = NULL, [SortOrder] = 365.90 WHERE [Code] = 'cle' END +SET [Description] = 'Lealao Chinantec', [Definition] = NULL, [SortOrder] = 3670.00 WHERE [Code] = 'cle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lec', 'Leco', NULL, 366.00) END +VALUES ('lec', 'Leco', NULL, 3671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leco', [Definition] = NULL, [SortOrder] = 366.00 WHERE [Code] = 'lec' END +SET [Description] = 'Leco', [Definition] = NULL, [SortOrder] = 3671.00 WHERE [Code] = 'lec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lew', 'Ledo Kaili', NULL, 366.10) END +VALUES ('lew', 'Ledo Kaili', NULL, 3672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ledo Kaili', [Definition] = NULL, [SortOrder] = 366.10 WHERE [Code] = 'lew' END +SET [Description] = 'Ledo Kaili', [Definition] = NULL, [SortOrder] = 3672.00 WHERE [Code] = 'lew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldk', 'Leelau', NULL, 366.20) END +VALUES ('ldk', 'Leelau', NULL, 3673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leelau', [Definition] = NULL, [SortOrder] = 366.20 WHERE [Code] = 'ldk' END +SET [Description] = 'Leelau', [Definition] = NULL, [SortOrder] = 3673.00 WHERE [Code] = 'ldk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lfa', 'Lefa', NULL, 366.30) END +VALUES ('lfa', 'Lefa', NULL, 3674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lefa', [Definition] = NULL, [SortOrder] = 366.30 WHERE [Code] = 'lfa' END +SET [Description] = 'Lefa', [Definition] = NULL, [SortOrder] = 3674.00 WHERE [Code] = 'lfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgm', 'Lega-Mwenga', NULL, 366.40) END +VALUES ('lgm', 'Lega-Mwenga', NULL, 3675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lega-Mwenga', [Definition] = NULL, [SortOrder] = 366.40 WHERE [Code] = 'lgm' END +SET [Description] = 'Lega-Mwenga', [Definition] = NULL, [SortOrder] = 3675.00 WHERE [Code] = 'lgm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lea', 'Lega-Shabunda', NULL, 366.50) END +VALUES ('lea', 'Lega-Shabunda', NULL, 3676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lega-Shabunda', [Definition] = NULL, [SortOrder] = 366.50 WHERE [Code] = 'lea' END +SET [Description] = 'Lega-Shabunda', [Definition] = NULL, [SortOrder] = 3676.00 WHERE [Code] = 'lea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agb', 'Legbo', NULL, 366.60) END +VALUES ('agb', 'Legbo', NULL, 3677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Legbo', [Definition] = NULL, [SortOrder] = 366.60 WHERE [Code] = 'agb' END +SET [Description] = 'Legbo', [Definition] = NULL, [SortOrder] = 3677.00 WHERE [Code] = 'agb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcc', 'Legenyem', NULL, 366.70) END +VALUES ('lcc', 'Legenyem', NULL, 3678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Legenyem', [Definition] = NULL, [SortOrder] = 366.70 WHERE [Code] = 'lcc' END +SET [Description] = 'Legenyem', [Definition] = NULL, [SortOrder] = 3678.00 WHERE [Code] = 'lcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tql', 'Lehali', NULL, 366.80) END +VALUES ('tql', 'Lehali', NULL, 3679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lehali', [Definition] = NULL, [SortOrder] = 366.80 WHERE [Code] = 'tql' END +SET [Description] = 'Lehali', [Definition] = NULL, [SortOrder] = 3679.00 WHERE [Code] = 'tql' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urr', 'Lehalurup', NULL, 366.90) END +VALUES ('urr', 'Lehalurup', NULL, 3680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lehalurup', [Definition] = NULL, [SortOrder] = 366.90 WHERE [Code] = 'urr' END +SET [Description] = 'Lehalurup', [Definition] = NULL, [SortOrder] = 3680.00 WHERE [Code] = 'urr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cae', 'Lehar', NULL, 367.00) END +VALUES ('cae', 'Lehar', NULL, 3681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lehar', [Definition] = NULL, [SortOrder] = 367.00 WHERE [Code] = 'cae' END +SET [Description] = 'Lehar', [Definition] = NULL, [SortOrder] = 3681.00 WHERE [Code] = 'cae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lzn', 'Leinong Naga', NULL, 367.10) END +VALUES ('lzn', 'Leinong Naga', NULL, 3682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leinong Naga', [Definition] = NULL, [SortOrder] = 367.10 WHERE [Code] = 'lzn' END +SET [Description] = 'Leinong Naga', [Definition] = NULL, [SortOrder] = 3682.00 WHERE [Code] = 'lzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lek', 'Leipon', NULL, 367.20) END +VALUES ('lek', 'Leipon', NULL, 3683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leipon', [Definition] = NULL, [SortOrder] = 367.20 WHERE [Code] = 'lek' END +SET [Description] = 'Leipon', [Definition] = NULL, [SortOrder] = 3683.00 WHERE [Code] = 'lek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llk', 'Lelak', NULL, 367.30) END +VALUES ('llk', 'Lelak', NULL, 3684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lelak', [Definition] = NULL, [SortOrder] = 367.30 WHERE [Code] = 'llk' END +SET [Description] = 'Lelak', [Definition] = NULL, [SortOrder] = 3684.00 WHERE [Code] = 'llk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lln', 'Lele (Chad)', NULL, 367.40) END +VALUES ('lln', 'Lele (Chad)', NULL, 3685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lele (Chad)', [Definition] = NULL, [SortOrder] = 367.40 WHERE [Code] = 'lln' END +SET [Description] = 'Lele (Chad)', [Definition] = NULL, [SortOrder] = 3685.00 WHERE [Code] = 'lln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lel', 'Lele (Democratic Republic of Congo)', NULL, 367.50) END +VALUES ('lel', 'Lele (Democratic Republic of Congo)', NULL, 3686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lele (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 367.50 WHERE [Code] = 'lel' END +SET [Description] = 'Lele (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 3686.00 WHERE [Code] = 'lel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llc', 'Lele (Guinea)', NULL, 367.60) END +VALUES ('llc', 'Lele (Guinea)', NULL, 3687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lele (Guinea)', [Definition] = NULL, [SortOrder] = 367.60 WHERE [Code] = 'llc' END +SET [Description] = 'Lele (Guinea)', [Definition] = NULL, [SortOrder] = 3687.00 WHERE [Code] = 'llc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lle', 'Lele (Papua New Guinea)', NULL, 367.70) END +VALUES ('lle', 'Lele (Papua New Guinea)', NULL, 3688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lele (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 367.70 WHERE [Code] = 'lle' END +SET [Description] = 'Lele (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3688.00 WHERE [Code] = 'lle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lef', 'Lelemi', NULL, 367.80) END +VALUES ('lef', 'Lelemi', NULL, 3689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lelemi', [Definition] = NULL, [SortOrder] = 367.80 WHERE [Code] = 'lef' END +SET [Description] = 'Lelemi', [Definition] = NULL, [SortOrder] = 3689.00 WHERE [Code] = 'lef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpa', 'Lelepa', NULL, 367.90) END +VALUES ('lpa', 'Lelepa', NULL, 3690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lelepa', [Definition] = NULL, [SortOrder] = 367.90 WHERE [Code] = 'lpa' END +SET [Description] = 'Lelepa', [Definition] = NULL, [SortOrder] = 3690.00 WHERE [Code] = 'lpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leq', 'Lembena', NULL, 368.00) END +VALUES ('leq', 'Lembena', NULL, 3691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lembena', [Definition] = NULL, [SortOrder] = 368.00 WHERE [Code] = 'leq' END +SET [Description] = 'Lembena', [Definition] = NULL, [SortOrder] = 3691.00 WHERE [Code] = 'leq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrz', 'Lemerig', NULL, 368.10) END +VALUES ('lrz', 'Lemerig', NULL, 3692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemerig', [Definition] = NULL, [SortOrder] = 368.10 WHERE [Code] = 'lrz' END +SET [Description] = 'Lemerig', [Definition] = NULL, [SortOrder] = 3692.00 WHERE [Code] = 'lrz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lei', 'Lemio', NULL, 368.20) END +VALUES ('lei', 'Lemio', NULL, 3693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemio', [Definition] = NULL, [SortOrder] = 368.20 WHERE [Code] = 'lei' END +SET [Description] = 'Lemio', [Definition] = NULL, [SortOrder] = 3693.00 WHERE [Code] = 'lei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xle', 'Lemnian', NULL, 368.30) END +VALUES ('xle', 'Lemnian', NULL, 3694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemnian', [Definition] = NULL, [SortOrder] = 368.30 WHERE [Code] = 'xle' END +SET [Description] = 'Lemnian', [Definition] = NULL, [SortOrder] = 3694.00 WHERE [Code] = 'xle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ley') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ley', 'Lemolang', NULL, 368.40) END +VALUES ('ley', 'Lemolang', NULL, 3695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemolang', [Definition] = NULL, [SortOrder] = 368.40 WHERE [Code] = 'ley' END +SET [Description] = 'Lemolang', [Definition] = NULL, [SortOrder] = 3695.00 WHERE [Code] = 'ley' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldj', 'Lemoro', NULL, 368.50) END +VALUES ('ldj', 'Lemoro', NULL, 3696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemoro', [Definition] = NULL, [SortOrder] = 368.50 WHERE [Code] = 'ldj' END +SET [Description] = 'Lemoro', [Definition] = NULL, [SortOrder] = 3696.00 WHERE [Code] = 'ldj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnl', 'Lenakel', NULL, 368.60) END +VALUES ('tnl', 'Lenakel', NULL, 3697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenakel', [Definition] = NULL, [SortOrder] = 368.60 WHERE [Code] = 'tnl' END +SET [Description] = 'Lenakel', [Definition] = NULL, [SortOrder] = 3697.00 WHERE [Code] = 'tnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'len') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('len', 'Lenca', NULL, 368.70) END +VALUES ('len', 'Lenca', NULL, 3698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenca', [Definition] = NULL, [SortOrder] = 368.70 WHERE [Code] = 'len' END +SET [Description] = 'Lenca', [Definition] = NULL, [SortOrder] = 3698.00 WHERE [Code] = 'len' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'led') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('led', 'Lendu', NULL, 368.80) END +VALUES ('led', 'Lendu', NULL, 3699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lendu', [Definition] = NULL, [SortOrder] = 368.80 WHERE [Code] = 'led' END +SET [Description] = 'Lendu', [Definition] = NULL, [SortOrder] = 3699.00 WHERE [Code] = 'led' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgi', 'Lengilu', NULL, 368.90) END +VALUES ('lgi', 'Lengilu', NULL, 3700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lengilu', [Definition] = NULL, [SortOrder] = 368.90 WHERE [Code] = 'lgi' END +SET [Description] = 'Lengilu', [Definition] = NULL, [SortOrder] = 3700.00 WHERE [Code] = 'lgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgr', 'Lengo', NULL, 369.00) END +VALUES ('lgr', 'Lengo', NULL, 3701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lengo', [Definition] = NULL, [SortOrder] = 369.00 WHERE [Code] = 'lgr' END +SET [Description] = 'Lengo', [Definition] = NULL, [SortOrder] = 3701.00 WHERE [Code] = 'lgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lej', 'Lengola', NULL, 369.10) END +VALUES ('lej', 'Lengola', NULL, 3702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lengola', [Definition] = NULL, [SortOrder] = 369.10 WHERE [Code] = 'lej' END +SET [Description] = 'Lengola', [Definition] = NULL, [SortOrder] = 3702.00 WHERE [Code] = 'lej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnj', 'Leningitij', NULL, 369.20) END +VALUES ('lnj', 'Leningitij', NULL, 3703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leningitij', [Definition] = NULL, [SortOrder] = 369.20 WHERE [Code] = 'lnj' END +SET [Description] = 'Leningitij', [Definition] = NULL, [SortOrder] = 3703.00 WHERE [Code] = 'lnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leh', 'Lenje', NULL, 369.30) END +VALUES ('leh', 'Lenje', NULL, 3704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenje', [Definition] = NULL, [SortOrder] = 369.30 WHERE [Code] = 'leh' END +SET [Description] = 'Lenje', [Definition] = NULL, [SortOrder] = 3704.00 WHERE [Code] = 'leh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ler') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ler', 'Lenkau', NULL, 369.40) END +VALUES ('ler', 'Lenkau', NULL, 3705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenkau', [Definition] = NULL, [SortOrder] = 369.40 WHERE [Code] = 'ler' END +SET [Description] = 'Lenkau', [Definition] = NULL, [SortOrder] = 3705.00 WHERE [Code] = 'ler' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldg', 'Lenyima', NULL, 369.50) END +VALUES ('ldg', 'Lenyima', NULL, 3706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenyima', [Definition] = NULL, [SortOrder] = 369.50 WHERE [Code] = 'ldg' END +SET [Description] = 'Lenyima', [Definition] = NULL, [SortOrder] = 3706.00 WHERE [Code] = 'ldg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lep', 'Lepcha', NULL, 369.60) END +VALUES ('lep', 'Lepcha', NULL, 3707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lepcha', [Definition] = NULL, [SortOrder] = 369.60 WHERE [Code] = 'lep' END +SET [Description] = 'Lepcha', [Definition] = NULL, [SortOrder] = 3707.00 WHERE [Code] = 'lep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpe', 'Lepki', NULL, 369.70) END +VALUES ('lpe', 'Lepki', NULL, 3708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lepki', [Definition] = NULL, [SortOrder] = 369.70 WHERE [Code] = 'lpe' END +SET [Description] = 'Lepki', [Definition] = NULL, [SortOrder] = 3708.00 WHERE [Code] = 'lpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlp', 'Lepontic', NULL, 369.80) END +VALUES ('xlp', 'Lepontic', NULL, 3709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lepontic', [Definition] = NULL, [SortOrder] = 369.80 WHERE [Code] = 'xlp' END +SET [Description] = 'Lepontic', [Definition] = NULL, [SortOrder] = 3709.00 WHERE [Code] = 'xlp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnh', 'Lere', NULL, 369.90) END +VALUES ('gnh', 'Lere', NULL, 3710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lere', [Definition] = NULL, [SortOrder] = 369.90 WHERE [Code] = 'gnh' END +SET [Description] = 'Lere', [Definition] = NULL, [SortOrder] = 3710.00 WHERE [Code] = 'gnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'les') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('les', 'Lese', NULL, 370.00) END +VALUES ('les', 'Lese', NULL, 3711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lese', [Definition] = NULL, [SortOrder] = 370.00 WHERE [Code] = 'les' END +SET [Description] = 'Lese', [Definition] = NULL, [SortOrder] = 3711.00 WHERE [Code] = 'les' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'let') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('let', 'Lesing-Gelimi', NULL, 370.10) END +VALUES ('let', 'Lesing-Gelimi', NULL, 3712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lesing-Gelimi', [Definition] = NULL, [SortOrder] = 370.10 WHERE [Code] = 'let' END +SET [Description] = 'Lesing-Gelimi', [Definition] = NULL, [SortOrder] = 3712.00 WHERE [Code] = 'let' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nms', 'Letemboi', NULL, 370.20) END +VALUES ('nms', 'Letemboi', NULL, 3713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Letemboi', [Definition] = NULL, [SortOrder] = 370.20 WHERE [Code] = 'nms' END +SET [Description] = 'Letemboi', [Definition] = NULL, [SortOrder] = 3713.00 WHERE [Code] = 'nms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leo', 'Leti (Cameroon)', NULL, 370.30) END +VALUES ('leo', 'Leti (Cameroon)', NULL, 3714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leti (Cameroon)', [Definition] = NULL, [SortOrder] = 370.30 WHERE [Code] = 'leo' END +SET [Description] = 'Leti (Cameroon)', [Definition] = NULL, [SortOrder] = 3714.00 WHERE [Code] = 'leo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lti', 'Leti (Indonesia)', NULL, 370.40) END +VALUES ('lti', 'Leti (Indonesia)', NULL, 3715.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Leti (Indonesia)', [Definition] = NULL, [SortOrder] = 3715.00 WHERE [Code] = 'lti' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('apc', 'Levantine Arabic', NULL, 3716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leti (Indonesia)', [Definition] = NULL, [SortOrder] = 370.40 WHERE [Code] = 'lti' END +SET [Description] = 'Levantine Arabic', [Definition] = NULL, [SortOrder] = 3716.00 WHERE [Code] = 'apc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lvu', 'Levuka', NULL, 370.50) END +VALUES ('lvu', 'Levuka', NULL, 3717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Levuka', [Definition] = NULL, [SortOrder] = 370.50 WHERE [Code] = 'lvu' END +SET [Description] = 'Levuka', [Definition] = NULL, [SortOrder] = 3717.00 WHERE [Code] = 'lvu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lww', 'Lewo', NULL, 370.60) END +VALUES ('lww', 'Lewo', NULL, 3718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lewo', [Definition] = NULL, [SortOrder] = 370.60 WHERE [Code] = 'lww' END +SET [Description] = 'Lewo', [Definition] = NULL, [SortOrder] = 3718.00 WHERE [Code] = 'lww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwe', 'Lewo Eleng', NULL, 370.70) END +VALUES ('lwe', 'Lewo Eleng', NULL, 3719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lewo Eleng', [Definition] = NULL, [SortOrder] = 370.70 WHERE [Code] = 'lwe' END +SET [Description] = 'Lewo Eleng', [Definition] = NULL, [SortOrder] = 3719.00 WHERE [Code] = 'lwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwt', 'Lewotobi', NULL, 370.80) END +VALUES ('lwt', 'Lewotobi', NULL, 3720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lewotobi', [Definition] = NULL, [SortOrder] = 370.80 WHERE [Code] = 'lwt' END +SET [Description] = 'Lewotobi', [Definition] = NULL, [SortOrder] = 3720.00 WHERE [Code] = 'lwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayi', 'Leyigha', NULL, 370.90) END +VALUES ('ayi', 'Leyigha', NULL, 3721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leyigha', [Definition] = NULL, [SortOrder] = 370.90 WHERE [Code] = 'ayi' END +SET [Description] = 'Leyigha', [Definition] = NULL, [SortOrder] = 3721.00 WHERE [Code] = 'ayi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lez', 'Lezghian', NULL, 371.00) END +VALUES ('lez', 'Lezghian', NULL, 3722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lezghian', [Definition] = NULL, [SortOrder] = 371.00 WHERE [Code] = 'lez' END +SET [Description] = 'Lezghian', [Definition] = NULL, [SortOrder] = 3722.00 WHERE [Code] = 'lez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhp', 'Lhokpu', NULL, 371.10) END +VALUES ('lhp', 'Lhokpu', NULL, 3723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lhokpu', [Definition] = NULL, [SortOrder] = 371.10 WHERE [Code] = 'lhp' END +SET [Description] = 'Lhokpu', [Definition] = NULL, [SortOrder] = 3723.00 WHERE [Code] = 'lhp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhm', 'Lhomi', NULL, 371.20) END +VALUES ('lhm', 'Lhomi', NULL, 3724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lhomi', [Definition] = NULL, [SortOrder] = 371.20 WHERE [Code] = 'lhm' END +SET [Description] = 'Lhomi', [Definition] = NULL, [SortOrder] = 3724.00 WHERE [Code] = 'lhm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ljl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ljl', 'Li''o', NULL, 371.30) END +VALUES ('ljl', 'Li''o', NULL, 3725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Li''o', [Definition] = NULL, [SortOrder] = 371.30 WHERE [Code] = 'ljl' END +SET [Description] = 'Li''o', [Definition] = NULL, [SortOrder] = 3725.00 WHERE [Code] = 'ljl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lix', 'Liabuku', NULL, 371.40) END +VALUES ('lix', 'Liabuku', NULL, 3726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liabuku', [Definition] = NULL, [SortOrder] = 371.40 WHERE [Code] = 'lix' END +SET [Description] = 'Liabuku', [Definition] = NULL, [SortOrder] = 3726.00 WHERE [Code] = 'lix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ste') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ste', 'Liana-Seti', NULL, 371.50) END +VALUES ('ste', 'Liana-Seti', NULL, 3727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liana-Seti', [Definition] = NULL, [SortOrder] = 371.50 WHERE [Code] = 'ste' END +SET [Description] = 'Liana-Seti', [Definition] = NULL, [SortOrder] = 3727.00 WHERE [Code] = 'ste' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njn', 'Liangmai Naga', NULL, 371.60) END +VALUES ('njn', 'Liangmai Naga', NULL, 3728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liangmai Naga', [Definition] = NULL, [SortOrder] = 371.60 WHERE [Code] = 'njn' END +SET [Description] = 'Liangmai Naga', [Definition] = NULL, [SortOrder] = 3728.00 WHERE [Code] = 'njn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zln', 'Lianshan Zhuang', NULL, 371.70) END +VALUES ('zln', 'Lianshan Zhuang', NULL, 3729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lianshan Zhuang', [Definition] = NULL, [SortOrder] = 371.70 WHERE [Code] = 'zln' END +SET [Description] = 'Lianshan Zhuang', [Definition] = NULL, [SortOrder] = 3729.00 WHERE [Code] = 'zln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpe', 'Liberia Kpelle', NULL, 371.80) END +VALUES ('xpe', 'Liberia Kpelle', NULL, 3730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liberia Kpelle', [Definition] = NULL, [SortOrder] = 371.80 WHERE [Code] = 'xpe' END +SET [Description] = 'Liberia Kpelle', [Definition] = NULL, [SortOrder] = 3730.00 WHERE [Code] = 'xpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lir', 'Liberian English', NULL, 371.90) END +VALUES ('lir', 'Liberian English', NULL, 3731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liberian English', [Definition] = NULL, [SortOrder] = 371.90 WHERE [Code] = 'lir' END +SET [Description] = 'Liberian English', [Definition] = NULL, [SortOrder] = 3731.00 WHERE [Code] = 'lir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liq', 'Libido', NULL, 372.00) END +VALUES ('liq', 'Libido', NULL, 3732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libido', [Definition] = NULL, [SortOrder] = 372.00 WHERE [Code] = 'liq' END +SET [Description] = 'Libido', [Definition] = NULL, [SortOrder] = 3732.00 WHERE [Code] = 'liq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liz', 'Libinza', NULL, 372.10) END +VALUES ('liz', 'Libinza', NULL, 3733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libinza', [Definition] = NULL, [SortOrder] = 372.10 WHERE [Code] = 'liz' END +SET [Description] = 'Libinza', [Definition] = NULL, [SortOrder] = 3733.00 WHERE [Code] = 'liz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbl', 'Libon Bikol', NULL, 372.20) END +VALUES ('lbl', 'Libon Bikol', NULL, 3734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libon Bikol', [Definition] = NULL, [SortOrder] = 372.20 WHERE [Code] = 'lbl' END +SET [Description] = 'Libon Bikol', [Definition] = NULL, [SortOrder] = 3734.00 WHERE [Code] = 'lbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xli', 'Liburnian', NULL, 372.30) END +VALUES ('xli', 'Liburnian', NULL, 3735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liburnian', [Definition] = NULL, [SortOrder] = 372.30 WHERE [Code] = 'xli' END +SET [Description] = 'Liburnian', [Definition] = NULL, [SortOrder] = 3735.00 WHERE [Code] = 'xli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayl', 'Libyan Arabic', NULL, 372.40) END +VALUES ('ayl', 'Libyan Arabic', NULL, 3736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libyan Arabic', [Definition] = NULL, [SortOrder] = 372.40 WHERE [Code] = 'ayl' END +SET [Description] = 'Libyan Arabic', [Definition] = NULL, [SortOrder] = 3736.00 WHERE [Code] = 'ayl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbs', 'Libyan Sign Language', NULL, 372.50) END +VALUES ('lbs', 'Libyan Sign Language', NULL, 3737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libyan Sign Language', [Definition] = NULL, [SortOrder] = 372.50 WHERE [Code] = 'lbs' END +SET [Description] = 'Libyan Sign Language', [Definition] = NULL, [SortOrder] = 3737.00 WHERE [Code] = 'lbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'add') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('add', 'Lidzonka', NULL, 372.60) END +VALUES ('add', 'Lidzonka', NULL, 3738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lidzonka', [Definition] = NULL, [SortOrder] = 372.60 WHERE [Code] = 'add' END +SET [Description] = 'Lidzonka', [Definition] = NULL, [SortOrder] = 3738.00 WHERE [Code] = 'add' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lig', 'Ligbi', NULL, 372.70) END +VALUES ('lig', 'Ligbi', NULL, 3739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ligbi', [Definition] = NULL, [SortOrder] = 372.70 WHERE [Code] = 'lig' END +SET [Description] = 'Ligbi', [Definition] = NULL, [SortOrder] = 3739.00 WHERE [Code] = 'lig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgz', 'Ligenza', NULL, 372.80) END +VALUES ('lgz', 'Ligenza', NULL, 3740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ligenza', [Definition] = NULL, [SortOrder] = 372.80 WHERE [Code] = 'lgz' END +SET [Description] = 'Ligenza', [Definition] = NULL, [SortOrder] = 3740.00 WHERE [Code] = 'lgz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lij', 'Ligurian', NULL, 372.90) END +VALUES ('lij', 'Ligurian', NULL, 3741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ligurian', [Definition] = NULL, [SortOrder] = 372.90 WHERE [Code] = 'lij' END +SET [Description] = 'Ligurian', [Definition] = NULL, [SortOrder] = 3741.00 WHERE [Code] = 'lij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlg', 'Ligurian (Ancient)', NULL, 373.00) END +VALUES ('xlg', 'Ligurian (Ancient)', NULL, 3742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ligurian (Ancient)', [Definition] = NULL, [SortOrder] = 373.00 WHERE [Code] = 'xlg' END +SET [Description] = 'Ligurian (Ancient)', [Definition] = NULL, [SortOrder] = 3742.00 WHERE [Code] = 'xlg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lih', 'Lihir', NULL, 373.10) END +VALUES ('lih', 'Lihir', NULL, 3743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lihir', [Definition] = NULL, [SortOrder] = 373.10 WHERE [Code] = 'lih' END +SET [Description] = 'Lihir', [Definition] = NULL, [SortOrder] = 3743.00 WHERE [Code] = 'lih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgi', 'Lijili', NULL, 373.20) END +VALUES ('mgi', 'Lijili', NULL, 3744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lijili', [Definition] = NULL, [SortOrder] = 373.20 WHERE [Code] = 'mgi' END +SET [Description] = 'Lijili', [Definition] = NULL, [SortOrder] = 3744.00 WHERE [Code] = 'mgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lik', 'Lika', NULL, 373.30) END +VALUES ('lik', 'Lika', NULL, 3745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lika', [Definition] = NULL, [SortOrder] = 373.30 WHERE [Code] = 'lik' END +SET [Description] = 'Lika', [Definition] = NULL, [SortOrder] = 3745.00 WHERE [Code] = 'lik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lio', 'Liki', NULL, 373.40) END +VALUES ('lio', 'Liki', NULL, 3746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liki', [Definition] = NULL, [SortOrder] = 373.40 WHERE [Code] = 'lio' END +SET [Description] = 'Liki', [Definition] = NULL, [SortOrder] = 3746.00 WHERE [Code] = 'lio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lie', 'Likila', NULL, 373.50) END +VALUES ('lie', 'Likila', NULL, 3747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Likila', [Definition] = NULL, [SortOrder] = 373.50 WHERE [Code] = 'lie' END +SET [Description] = 'Likila', [Definition] = NULL, [SortOrder] = 3747.00 WHERE [Code] = 'lie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxx', 'Likuba', NULL, 373.60) END +VALUES ('kxx', 'Likuba', NULL, 3748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Likuba', [Definition] = NULL, [SortOrder] = 373.60 WHERE [Code] = 'kxx' END +SET [Description] = 'Likuba', [Definition] = NULL, [SortOrder] = 3748.00 WHERE [Code] = 'kxx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lib', 'Likum', NULL, 373.70) END +VALUES ('lib', 'Likum', NULL, 3749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Likum', [Definition] = NULL, [SortOrder] = 373.70 WHERE [Code] = 'lib' END +SET [Description] = 'Likum', [Definition] = NULL, [SortOrder] = 3749.00 WHERE [Code] = 'lib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwc', 'Likwala', NULL, 373.80) END +VALUES ('kwc', 'Likwala', NULL, 3750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Likwala', [Definition] = NULL, [SortOrder] = 373.80 WHERE [Code] = 'kwc' END +SET [Description] = 'Likwala', [Definition] = NULL, [SortOrder] = 3750.00 WHERE [Code] = 'kwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lll', 'Lilau', NULL, 373.90) END +VALUES ('lll', 'Lilau', NULL, 3751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lilau', [Definition] = NULL, [SortOrder] = 373.90 WHERE [Code] = 'lll' END +SET [Description] = 'Lilau', [Definition] = NULL, [SortOrder] = 3751.00 WHERE [Code] = 'lll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lil', 'Lillooet', NULL, 374.00) END +VALUES ('lil', 'Lillooet', NULL, 3752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lillooet', [Definition] = NULL, [SortOrder] = 374.00 WHERE [Code] = 'lil' END +SET [Description] = 'Lillooet', [Definition] = NULL, [SortOrder] = 3752.00 WHERE [Code] = 'lil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bme', 'Limassa', NULL, 374.10) END +VALUES ('bme', 'Limassa', NULL, 3753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limassa', [Definition] = NULL, [SortOrder] = 374.10 WHERE [Code] = 'bme' END +SET [Description] = 'Limassa', [Definition] = NULL, [SortOrder] = 3753.00 WHERE [Code] = 'bme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lif', 'Limbu', NULL, 374.20) END +VALUES ('lif', 'Limbu', NULL, 3754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limbu', [Definition] = NULL, [SortOrder] = 374.20 WHERE [Code] = 'lif' END +SET [Description] = 'Limbu', [Definition] = NULL, [SortOrder] = 3754.00 WHERE [Code] = 'lif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmp', 'Limbum', NULL, 374.30) END +VALUES ('lmp', 'Limbum', NULL, 3755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limbum', [Definition] = NULL, [SortOrder] = 374.30 WHERE [Code] = 'lmp' END +SET [Description] = 'Limbum', [Definition] = NULL, [SortOrder] = 3755.00 WHERE [Code] = 'lmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lim', 'Limburgan', NULL, 374.40) END +VALUES ('lim', 'Limburgan', NULL, 3756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limburgan', [Definition] = NULL, [SortOrder] = 374.40 WHERE [Code] = 'lim' END +SET [Description] = 'Limburgan', [Definition] = NULL, [SortOrder] = 3756.00 WHERE [Code] = 'lim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylm', 'Limi', NULL, 374.50) END +VALUES ('ylm', 'Limi', NULL, 3757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limi', [Definition] = NULL, [SortOrder] = 374.50 WHERE [Code] = 'ylm' END +SET [Description] = 'Limi', [Definition] = NULL, [SortOrder] = 3757.00 WHERE [Code] = 'ylm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmc', 'Limilngan', NULL, 374.60) END +VALUES ('lmc', 'Limilngan', NULL, 3758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limilngan', [Definition] = NULL, [SortOrder] = 374.60 WHERE [Code] = 'lmc' END +SET [Description] = 'Limilngan', [Definition] = NULL, [SortOrder] = 3758.00 WHERE [Code] = 'lmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmk', 'Limos Kalinga', NULL, 374.70) END +VALUES ('kmk', 'Limos Kalinga', NULL, 3759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limos Kalinga', [Definition] = NULL, [SortOrder] = 374.70 WHERE [Code] = 'kmk' END +SET [Description] = 'Limos Kalinga', [Definition] = NULL, [SortOrder] = 3759.00 WHERE [Code] = 'kmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lab', 'Linear A', NULL, 374.80) END +VALUES ('lab', 'Linear A', NULL, 3760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Linear A', [Definition] = NULL, [SortOrder] = 374.80 WHERE [Code] = 'lab' END +SET [Description] = 'Linear A', [Definition] = NULL, [SortOrder] = 3760.00 WHERE [Code] = 'lab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lin', 'Lingala', NULL, 374.90) END +VALUES ('lin', 'Lingala', NULL, 3761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingala', [Definition] = NULL, [SortOrder] = 374.90 WHERE [Code] = 'lin' END +SET [Description] = 'Lingala', [Definition] = NULL, [SortOrder] = 3761.00 WHERE [Code] = 'lin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onb', 'Lingao', NULL, 375.00) END +VALUES ('onb', 'Lingao', NULL, 3762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingao', [Definition] = NULL, [SortOrder] = 375.00 WHERE [Code] = 'onb' END +SET [Description] = 'Lingao', [Definition] = NULL, [SortOrder] = 3762.00 WHERE [Code] = 'onb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgk', 'Lingarak', NULL, 375.10) END +VALUES ('lgk', 'Lingarak', NULL, 3763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingarak', [Definition] = NULL, [SortOrder] = 375.10 WHERE [Code] = 'lgk' END +SET [Description] = 'Lingarak', [Definition] = NULL, [SortOrder] = 3763.00 WHERE [Code] = 'lgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pml', 'Lingua Franca', NULL, 375.20) END +VALUES ('pml', 'Lingua Franca', NULL, 3764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingua Franca', [Definition] = NULL, [SortOrder] = 375.20 WHERE [Code] = 'pml' END +SET [Description] = 'Lingua Franca', [Definition] = NULL, [SortOrder] = 3764.00 WHERE [Code] = 'pml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lfn', 'Lingua Franca Nova', NULL, 375.30) END +VALUES ('lfn', 'Lingua Franca Nova', NULL, 3765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingua Franca Nova', [Definition] = NULL, [SortOrder] = 375.30 WHERE [Code] = 'lfn' END +SET [Description] = 'Lingua Franca Nova', [Definition] = NULL, [SortOrder] = 3765.00 WHERE [Code] = 'lfn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apl', 'Lipan Apache', NULL, 375.40) END +VALUES ('apl', 'Lipan Apache', NULL, 3766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lipan Apache', [Definition] = NULL, [SortOrder] = 375.40 WHERE [Code] = 'apl' END +SET [Description] = 'Lipan Apache', [Definition] = NULL, [SortOrder] = 3766.00 WHERE [Code] = 'apl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpo', 'Lipo', NULL, 375.50) END +VALUES ('lpo', 'Lipo', NULL, 3767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lipo', [Definition] = NULL, [SortOrder] = 375.50 WHERE [Code] = 'lpo' END +SET [Description] = 'Lipo', [Definition] = NULL, [SortOrder] = 3767.00 WHERE [Code] = 'lpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcs', 'Lisabata-Nuniali', NULL, 375.60) END +VALUES ('lcs', 'Lisabata-Nuniali', NULL, 3768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lisabata-Nuniali', [Definition] = NULL, [SortOrder] = 375.60 WHERE [Code] = 'lcs' END +SET [Description] = 'Lisabata-Nuniali', [Definition] = NULL, [SortOrder] = 3768.00 WHERE [Code] = 'lcs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcl', 'Lisela', NULL, 375.70) END +VALUES ('lcl', 'Lisela', NULL, 3769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lisela', [Definition] = NULL, [SortOrder] = 375.70 WHERE [Code] = 'lcl' END +SET [Description] = 'Lisela', [Definition] = NULL, [SortOrder] = 3769.00 WHERE [Code] = 'lcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsh', 'Lish', NULL, 375.80) END +VALUES ('lsh', 'Lish', NULL, 3770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lish', [Definition] = NULL, [SortOrder] = 375.80 WHERE [Code] = 'lsh' END +SET [Description] = 'Lish', [Definition] = NULL, [SortOrder] = 3770.00 WHERE [Code] = 'lsh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trg', 'Lishán Didán', NULL, 375.90) END +VALUES ('trg', 'Lishán Didán', NULL, 3771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lishán Didán', [Definition] = NULL, [SortOrder] = 375.90 WHERE [Code] = 'trg' END +SET [Description] = 'Lishán Didán', [Definition] = NULL, [SortOrder] = 3771.00 WHERE [Code] = 'trg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsd', 'Lishana Deni', NULL, 376.00) END +VALUES ('lsd', 'Lishana Deni', NULL, 3772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lishana Deni', [Definition] = NULL, [SortOrder] = 376.00 WHERE [Code] = 'lsd' END +SET [Description] = 'Lishana Deni', [Definition] = NULL, [SortOrder] = 3772.00 WHERE [Code] = 'lsd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aij', 'Lishanid Noshan', NULL, 376.10) END +VALUES ('aij', 'Lishanid Noshan', NULL, 3773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lishanid Noshan', [Definition] = NULL, [SortOrder] = 376.10 WHERE [Code] = 'aij' END +SET [Description] = 'Lishanid Noshan', [Definition] = NULL, [SortOrder] = 3773.00 WHERE [Code] = 'aij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lis', 'Lisu', NULL, 376.20) END +VALUES ('lis', 'Lisu', NULL, 3774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lisu', [Definition] = NULL, [SortOrder] = 376.20 WHERE [Code] = 'lis' END +SET [Description] = 'Lisu', [Definition] = NULL, [SortOrder] = 3774.00 WHERE [Code] = 'lis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lzh', 'Literary Chinese', NULL, 376.30) END +VALUES ('lzh', 'Literary Chinese', NULL, 3775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Literary Chinese', [Definition] = NULL, [SortOrder] = 376.30 WHERE [Code] = 'lzh' END +SET [Description] = 'Literary Chinese', [Definition] = NULL, [SortOrder] = 3775.00 WHERE [Code] = 'lzh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lit', 'Lithuanian', NULL, 376.40) END +VALUES ('lit', 'Lithuanian', NULL, 3776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lithuanian', [Definition] = NULL, [SortOrder] = 376.40 WHERE [Code] = 'lit' END +SET [Description] = 'Lithuanian', [Definition] = NULL, [SortOrder] = 3776.00 WHERE [Code] = 'lit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lls', 'Lithuanian Sign Language', NULL, 376.50) END +VALUES ('lls', 'Lithuanian Sign Language', NULL, 3777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lithuanian Sign Language', [Definition] = NULL, [SortOrder] = 376.50 WHERE [Code] = 'lls' END +SET [Description] = 'Lithuanian Sign Language', [Definition] = NULL, [SortOrder] = 3777.00 WHERE [Code] = 'lls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lzl', 'Litzlitz', NULL, 376.60) END +VALUES ('lzl', 'Litzlitz', NULL, 3778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Litzlitz', [Definition] = NULL, [SortOrder] = 376.60 WHERE [Code] = 'lzl' END +SET [Description] = 'Litzlitz', [Definition] = NULL, [SortOrder] = 3778.00 WHERE [Code] = 'lzl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zlj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zlj', 'Liujiang Zhuang', NULL, 376.70) END +VALUES ('zlj', 'Liujiang Zhuang', NULL, 3779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liujiang Zhuang', [Definition] = NULL, [SortOrder] = 376.70 WHERE [Code] = 'zlj' END +SET [Description] = 'Liujiang Zhuang', [Definition] = NULL, [SortOrder] = 3779.00 WHERE [Code] = 'zlj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zlq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zlq', 'Liuqian Zhuang', NULL, 376.80) END +VALUES ('zlq', 'Liuqian Zhuang', NULL, 3780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liuqian Zhuang', [Definition] = NULL, [SortOrder] = 376.80 WHERE [Code] = 'zlq' END +SET [Description] = 'Liuqian Zhuang', [Definition] = NULL, [SortOrder] = 3780.00 WHERE [Code] = 'zlq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liv', 'Liv', NULL, 376.90) END +VALUES ('liv', 'Liv', NULL, 3781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liv', [Definition] = NULL, [SortOrder] = 376.90 WHERE [Code] = 'liv' END +SET [Description] = 'Liv', [Definition] = NULL, [SortOrder] = 3781.00 WHERE [Code] = 'liv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olo', 'Livvi', NULL, 377.00) END +VALUES ('olo', 'Livvi', NULL, 3782.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Livvi', [Definition] = NULL, [SortOrder] = 377.00 WHERE [Code] = 'olo' END +SET [Description] = 'Livvi', [Definition] = NULL, [SortOrder] = 3782.00 WHERE [Code] = 'olo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lht', 'Lo-Toga', NULL, 377.10) END +VALUES ('lht', 'Lo-Toga', NULL, 3783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lo-Toga', [Definition] = NULL, [SortOrder] = 377.10 WHERE [Code] = 'lht' END +SET [Description] = 'Lo-Toga', [Definition] = NULL, [SortOrder] = 3783.00 WHERE [Code] = 'lht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrk', 'Loarki', NULL, 377.20) END +VALUES ('lrk', 'Loarki', NULL, 3784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loarki', [Definition] = NULL, [SortOrder] = 377.20 WHERE [Code] = 'lrk' END +SET [Description] = 'Loarki', [Definition] = NULL, [SortOrder] = 3784.00 WHERE [Code] = 'lrk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loq', 'Lobala', NULL, 377.30) END +VALUES ('loq', 'Lobala', NULL, 3785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lobala', [Definition] = NULL, [SortOrder] = 377.30 WHERE [Code] = 'loq' END +SET [Description] = 'Lobala', [Definition] = NULL, [SortOrder] = 3785.00 WHERE [Code] = 'loq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lob', 'Lobi', NULL, 377.40) END +VALUES ('lob', 'Lobi', NULL, 3786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lobi', [Definition] = NULL, [SortOrder] = 377.40 WHERE [Code] = 'lob' END +SET [Description] = 'Lobi', [Definition] = NULL, [SortOrder] = 3786.00 WHERE [Code] = 'lob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbm', 'Lodhi', NULL, 377.50) END +VALUES ('lbm', 'Lodhi', NULL, 3787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lodhi', [Definition] = NULL, [SortOrder] = 377.50 WHERE [Code] = 'lbm' END +SET [Description] = 'Lodhi', [Definition] = NULL, [SortOrder] = 3787.00 WHERE [Code] = 'lbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgq', 'Logba', NULL, 377.60) END +VALUES ('lgq', 'Logba', NULL, 3788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logba', [Definition] = NULL, [SortOrder] = 377.60 WHERE [Code] = 'lgq' END +SET [Description] = 'Logba', [Definition] = NULL, [SortOrder] = 3788.00 WHERE [Code] = 'lgq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lqr', 'Logir', NULL, 377.70) END +VALUES ('lqr', 'Logir', NULL, 3789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logir', [Definition] = NULL, [SortOrder] = 377.70 WHERE [Code] = 'lqr' END +SET [Description] = 'Logir', [Definition] = NULL, [SortOrder] = 3789.00 WHERE [Code] = 'lqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'log') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('log', 'Logo', NULL, 377.80) END +VALUES ('log', 'Logo', NULL, 3790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logo', [Definition] = NULL, [SortOrder] = 377.80 WHERE [Code] = 'log' END +SET [Description] = 'Logo', [Definition] = NULL, [SortOrder] = 3790.00 WHERE [Code] = 'log' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lof', 'Logol', NULL, 377.90) END +VALUES ('lof', 'Logol', NULL, 3791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logol', [Definition] = NULL, [SortOrder] = 377.90 WHERE [Code] = 'lof' END +SET [Description] = 'Logol', [Definition] = NULL, [SortOrder] = 3791.00 WHERE [Code] = 'lof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rag', 'Logooli', NULL, 378.00) END +VALUES ('rag', 'Logooli', NULL, 3792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logooli', [Definition] = NULL, [SortOrder] = 378.00 WHERE [Code] = 'rag' END +SET [Description] = 'Logooli', [Definition] = NULL, [SortOrder] = 3792.00 WHERE [Code] = 'rag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liu', 'Logorik', NULL, 378.10) END +VALUES ('liu', 'Logorik', NULL, 3793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logorik', [Definition] = NULL, [SortOrder] = 378.10 WHERE [Code] = 'liu' END +SET [Description] = 'Logorik', [Definition] = NULL, [SortOrder] = 3793.00 WHERE [Code] = 'liu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'src') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('src', 'Logudorese Sardinian', NULL, 378.20) END +VALUES ('src', 'Logudorese Sardinian', NULL, 3794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logudorese Sardinian', [Definition] = NULL, [SortOrder] = 378.20 WHERE [Code] = 'src' END +SET [Description] = 'Logudorese Sardinian', [Definition] = NULL, [SortOrder] = 3794.00 WHERE [Code] = 'src' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbr', 'Lohorung', NULL, 378.30) END +VALUES ('lbr', 'Lohorung', NULL, 3795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lohorung', [Definition] = NULL, [SortOrder] = 378.30 WHERE [Code] = 'lbr' END +SET [Description] = 'Lohorung', [Definition] = NULL, [SortOrder] = 3795.00 WHERE [Code] = 'lbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvj', 'Loja Highland Quichua', NULL, 378.40) END +VALUES ('qvj', 'Loja Highland Quichua', NULL, 3796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loja Highland Quichua', [Definition] = NULL, [SortOrder] = 378.40 WHERE [Code] = 'qvj' END +SET [Description] = 'Loja Highland Quichua', [Definition] = NULL, [SortOrder] = 3796.00 WHERE [Code] = 'qvj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbo', 'Lojban', NULL, 378.50) END +VALUES ('jbo', 'Lojban', NULL, 3797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lojban', [Definition] = NULL, [SortOrder] = 378.50 WHERE [Code] = 'jbo' END +SET [Description] = 'Lojban', [Definition] = NULL, [SortOrder] = 3797.00 WHERE [Code] = 'jbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaz', 'Lokaa', NULL, 378.60) END +VALUES ('yaz', 'Lokaa', NULL, 3798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lokaa', [Definition] = NULL, [SortOrder] = 378.60 WHERE [Code] = 'yaz' END +SET [Description] = 'Lokaa', [Definition] = NULL, [SortOrder] = 3798.00 WHERE [Code] = 'yaz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loy', 'Loke', NULL, 378.70) END +VALUES ('loy', 'Loke', NULL, 3799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loke', [Definition] = NULL, [SortOrder] = 378.70 WHERE [Code] = 'loy' END +SET [Description] = 'Loke', [Definition] = NULL, [SortOrder] = 3799.00 WHERE [Code] = 'loy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lok', 'Loko', NULL, 378.80) END +VALUES ('lok', 'Loko', NULL, 3800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loko', [Definition] = NULL, [SortOrder] = 378.80 WHERE [Code] = 'lok' END +SET [Description] = 'Loko', [Definition] = NULL, [SortOrder] = 3800.00 WHERE [Code] = 'lok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lky', 'Lokoya', NULL, 378.90) END +VALUES ('lky', 'Lokoya', NULL, 3801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lokoya', [Definition] = NULL, [SortOrder] = 378.90 WHERE [Code] = 'lky' END +SET [Description] = 'Lokoya', [Definition] = NULL, [SortOrder] = 3801.00 WHERE [Code] = 'lky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcd', 'Lola', NULL, 379.00) END +VALUES ('lcd', 'Lola', NULL, 3802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lola', [Definition] = NULL, [SortOrder] = 379.00 WHERE [Code] = 'lcd' END +SET [Description] = 'Lola', [Definition] = NULL, [SortOrder] = 3802.00 WHERE [Code] = 'lcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llq', 'Lolak', NULL, 379.10) END +VALUES ('llq', 'Lolak', NULL, 3803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lolak', [Definition] = NULL, [SortOrder] = 379.10 WHERE [Code] = 'llq' END +SET [Description] = 'Lolak', [Definition] = NULL, [SortOrder] = 3803.00 WHERE [Code] = 'llq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llg', 'Lole', NULL, 379.20) END +VALUES ('llg', 'Lole', NULL, 3804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lole', [Definition] = NULL, [SortOrder] = 379.20 WHERE [Code] = 'llg' END +SET [Description] = 'Lole', [Definition] = NULL, [SortOrder] = 3804.00 WHERE [Code] = 'llg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llb', 'Lolo', NULL, 379.30) END +VALUES ('llb', 'Lolo', NULL, 3805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lolo', [Definition] = NULL, [SortOrder] = 379.30 WHERE [Code] = 'llb' END +SET [Description] = 'Lolo', [Definition] = NULL, [SortOrder] = 3805.00 WHERE [Code] = 'llb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loa', 'Loloda', NULL, 379.40) END +VALUES ('loa', 'Loloda', NULL, 3806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loloda', [Definition] = NULL, [SortOrder] = 379.40 WHERE [Code] = 'loa' END +SET [Description] = 'Loloda', [Definition] = NULL, [SortOrder] = 3806.00 WHERE [Code] = 'loa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ycl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ycl', 'Lolopo', NULL, 379.50) END +VALUES ('ycl', 'Lolopo', NULL, 3807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lolopo', [Definition] = NULL, [SortOrder] = 379.50 WHERE [Code] = 'ycl' END +SET [Description] = 'Lolopo', [Definition] = NULL, [SortOrder] = 3807.00 WHERE [Code] = 'ycl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loi', 'Loma (Côte d''Ivoire)', NULL, 379.60) END +VALUES ('loi', 'Loma (Côte d''Ivoire)', NULL, 3808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loma (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 379.60 WHERE [Code] = 'loi' END +SET [Description] = 'Loma (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 3808.00 WHERE [Code] = 'loi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lom', 'Loma (Liberia)', NULL, 379.70) END +VALUES ('lom', 'Loma (Liberia)', NULL, 3809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loma (Liberia)', [Definition] = NULL, [SortOrder] = 379.70 WHERE [Code] = 'lom' END +SET [Description] = 'Loma (Liberia)', [Definition] = NULL, [SortOrder] = 3809.00 WHERE [Code] = 'lom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmv', 'Lomaiviti', NULL, 379.80) END +VALUES ('lmv', 'Lomaiviti', NULL, 3810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lomaiviti', [Definition] = NULL, [SortOrder] = 379.80 WHERE [Code] = 'lmv' END +SET [Description] = 'Lomaiviti', [Definition] = NULL, [SortOrder] = 3810.00 WHERE [Code] = 'lmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmi', 'Lomavren', NULL, 379.90) END +VALUES ('rmi', 'Lomavren', NULL, 3811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lomavren', [Definition] = NULL, [SortOrder] = 379.90 WHERE [Code] = 'rmi' END +SET [Description] = 'Lomavren', [Definition] = NULL, [SortOrder] = 3811.00 WHERE [Code] = 'rmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmo', 'Lombard', NULL, 380.00) END +VALUES ('lmo', 'Lombard', NULL, 3812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lombard', [Definition] = NULL, [SortOrder] = 380.00 WHERE [Code] = 'lmo' END +SET [Description] = 'Lombard', [Definition] = NULL, [SortOrder] = 3812.00 WHERE [Code] = 'lmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmi', 'Lombi', NULL, 380.10) END +VALUES ('lmi', 'Lombi', NULL, 3813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lombi', [Definition] = NULL, [SortOrder] = 380.10 WHERE [Code] = 'lmi' END +SET [Description] = 'Lombi', [Definition] = NULL, [SortOrder] = 3813.00 WHERE [Code] = 'lmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loo', 'Lombo', NULL, 380.20) END +VALUES ('loo', 'Lombo', NULL, 3814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lombo', [Definition] = NULL, [SortOrder] = 380.20 WHERE [Code] = 'loo' END +SET [Description] = 'Lombo', [Definition] = NULL, [SortOrder] = 3814.00 WHERE [Code] = 'loo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngl', 'Lomwe', NULL, 380.30) END +VALUES ('ngl', 'Lomwe', NULL, 3815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lomwe', [Definition] = NULL, [SortOrder] = 380.30 WHERE [Code] = 'ngl' END +SET [Description] = 'Lomwe', [Definition] = NULL, [SortOrder] = 3815.00 WHERE [Code] = 'ngl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lce', 'Loncong', NULL, 380.40) END +VALUES ('lce', 'Loncong', NULL, 3816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loncong', [Definition] = NULL, [SortOrder] = 380.40 WHERE [Code] = 'lce' END +SET [Description] = 'Loncong', [Definition] = NULL, [SortOrder] = 3816.00 WHERE [Code] = 'lce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpn', 'Long Phuri Naga', NULL, 380.50) END +VALUES ('lpn', 'Long Phuri Naga', NULL, 3817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Long Phuri Naga', [Definition] = NULL, [SortOrder] = 380.50 WHERE [Code] = 'lpn' END +SET [Description] = 'Long Phuri Naga', [Definition] = NULL, [SortOrder] = 3817.00 WHERE [Code] = 'lpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttw', 'Long Wat', NULL, 380.60) END +VALUES ('ttw', 'Long Wat', NULL, 3818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Long Wat', [Definition] = NULL, [SortOrder] = 380.60 WHERE [Code] = 'ttw' END +SET [Description] = 'Long Wat', [Definition] = NULL, [SortOrder] = 3818.00 WHERE [Code] = 'ttw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgu', 'Longgu', NULL, 380.70) END +VALUES ('lgu', 'Longgu', NULL, 3819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Longgu', [Definition] = NULL, [SortOrder] = 380.70 WHERE [Code] = 'lgu' END +SET [Description] = 'Longgu', [Definition] = NULL, [SortOrder] = 3819.00 WHERE [Code] = 'lgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wok', 'Longto', NULL, 380.80) END +VALUES ('wok', 'Longto', NULL, 3820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Longto', [Definition] = NULL, [SortOrder] = 380.80 WHERE [Code] = 'wok' END +SET [Description] = 'Longto', [Definition] = NULL, [SortOrder] = 3820.00 WHERE [Code] = 'wok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnu', 'Longuda', NULL, 380.90) END +VALUES ('lnu', 'Longuda', NULL, 3821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Longuda', [Definition] = NULL, [SortOrder] = 380.90 WHERE [Code] = 'lnu' END +SET [Description] = 'Longuda', [Definition] = NULL, [SortOrder] = 3821.00 WHERE [Code] = 'lnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'los') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('los', 'Loniu', NULL, 381.00) END +VALUES ('los', 'Loniu', NULL, 3822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loniu', [Definition] = NULL, [SortOrder] = 381.00 WHERE [Code] = 'los' END +SET [Description] = 'Loniu', [Definition] = NULL, [SortOrder] = 3822.00 WHERE [Code] = 'los' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crc', 'Lonwolwol', NULL, 381.10) END +VALUES ('crc', 'Lonwolwol', NULL, 3823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lonwolwol', [Definition] = NULL, [SortOrder] = 381.10 WHERE [Code] = 'crc' END +SET [Description] = 'Lonwolwol', [Definition] = NULL, [SortOrder] = 3823.00 WHERE [Code] = 'crc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnz', 'Lonzo', NULL, 381.20) END +VALUES ('lnz', 'Lonzo', NULL, 3824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lonzo', [Definition] = NULL, [SortOrder] = 381.20 WHERE [Code] = 'lnz' END +SET [Description] = 'Lonzo', [Definition] = NULL, [SortOrder] = 3824.00 WHERE [Code] = 'lnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldo', 'Loo', NULL, 381.30) END +VALUES ('ldo', 'Loo', NULL, 3825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loo', [Definition] = NULL, [SortOrder] = 381.30 WHERE [Code] = 'ldo' END +SET [Description] = 'Loo', [Definition] = NULL, [SortOrder] = 3825.00 WHERE [Code] = 'ldo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lop', 'Lopa', NULL, 381.40) END +VALUES ('lop', 'Lopa', NULL, 3826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lopa', [Definition] = NULL, [SortOrder] = 381.40 WHERE [Code] = 'lop' END +SET [Description] = 'Lopa', [Definition] = NULL, [SortOrder] = 3826.00 WHERE [Code] = 'lop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lov', 'Lopi', NULL, 381.50) END +VALUES ('lov', 'Lopi', NULL, 3827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lopi', [Definition] = NULL, [SortOrder] = 381.50 WHERE [Code] = 'lov' END +SET [Description] = 'Lopi', [Definition] = NULL, [SortOrder] = 3827.00 WHERE [Code] = 'lov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpx', 'Lopit', NULL, 381.60) END +VALUES ('lpx', 'Lopit', NULL, 3828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lopit', [Definition] = NULL, [SortOrder] = 381.60 WHERE [Code] = 'lpx' END +SET [Description] = 'Lopit', [Definition] = NULL, [SortOrder] = 3828.00 WHERE [Code] = 'lpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrn', 'Lorang', NULL, 381.70) END +VALUES ('lrn', 'Lorang', NULL, 3829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lorang', [Definition] = NULL, [SortOrder] = 381.70 WHERE [Code] = 'lrn' END +SET [Description] = 'Lorang', [Definition] = NULL, [SortOrder] = 3829.00 WHERE [Code] = 'lrn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnn', 'Lorediakarkar', NULL, 381.80) END +VALUES ('lnn', 'Lorediakarkar', NULL, 3830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lorediakarkar', [Definition] = NULL, [SortOrder] = 381.80 WHERE [Code] = 'lnn' END +SET [Description] = 'Lorediakarkar', [Definition] = NULL, [SortOrder] = 3830.00 WHERE [Code] = 'lnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spq', 'Loreto-Ucayali Spanish', NULL, 381.90) END +VALUES ('spq', 'Loreto-Ucayali Spanish', NULL, 3831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loreto-Ucayali Spanish', [Definition] = NULL, [SortOrder] = 381.90 WHERE [Code] = 'spq' END +SET [Description] = 'Loreto-Ucayali Spanish', [Definition] = NULL, [SortOrder] = 3831.00 WHERE [Code] = 'spq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uvl', 'Lote', NULL, 382.00) END +VALUES ('uvl', 'Lote', NULL, 3832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lote', [Definition] = NULL, [SortOrder] = 382.00 WHERE [Code] = 'uvl' END +SET [Description] = 'Lote', [Definition] = NULL, [SortOrder] = 3832.00 WHERE [Code] = 'uvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njh', 'Lotha Naga', NULL, 382.10) END +VALUES ('njh', 'Lotha Naga', NULL, 3833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lotha Naga', [Definition] = NULL, [SortOrder] = 382.10 WHERE [Code] = 'njh' END +SET [Description] = 'Lotha Naga', [Definition] = NULL, [SortOrder] = 3833.00 WHERE [Code] = 'njh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtr', 'Lotud', NULL, 382.20) END +VALUES ('dtr', 'Lotud', NULL, 3834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lotud', [Definition] = NULL, [SortOrder] = 382.20 WHERE [Code] = 'dtr' END +SET [Description] = 'Lotud', [Definition] = NULL, [SortOrder] = 3834.00 WHERE [Code] = 'dtr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loj', 'Lou', NULL, 382.30) END +VALUES ('loj', 'Lou', NULL, 3835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lou', [Definition] = NULL, [SortOrder] = 382.30 WHERE [Code] = 'loj' END +SET [Description] = 'Lou', [Definition] = NULL, [SortOrder] = 3835.00 WHERE [Code] = 'loj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lou', 'Louisiana Creole', NULL, 382.40) END +VALUES ('lou', 'Louisiana Creole', NULL, 3836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Louisiana Creole', [Definition] = NULL, [SortOrder] = 382.40 WHERE [Code] = 'lou' END +SET [Description] = 'Louisiana Creole', [Definition] = NULL, [SortOrder] = 3836.00 WHERE [Code] = 'lou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lox', 'Loun', NULL, 382.50) END +VALUES ('lox', 'Loun', NULL, 3837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loun', [Definition] = NULL, [SortOrder] = 382.50 WHERE [Code] = 'lox' END +SET [Description] = 'Loun', [Definition] = NULL, [SortOrder] = 3837.00 WHERE [Code] = 'lox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlo', 'Loup A', NULL, 382.60) END +VALUES ('xlo', 'Loup A', NULL, 3838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loup A', [Definition] = NULL, [SortOrder] = 382.60 WHERE [Code] = 'xlo' END +SET [Description] = 'Loup A', [Definition] = NULL, [SortOrder] = 3838.00 WHERE [Code] = 'xlo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlb', 'Loup B', NULL, 382.70) END +VALUES ('xlb', 'Loup B', NULL, 3839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loup B', [Definition] = NULL, [SortOrder] = 382.70 WHERE [Code] = 'xlb' END +SET [Description] = 'Loup B', [Definition] = NULL, [SortOrder] = 3839.00 WHERE [Code] = 'xlb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nds', 'Low German', NULL, 382.80) END +VALUES ('nds', 'Low German', NULL, 3840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Low German', [Definition] = NULL, [SortOrder] = 382.80 WHERE [Code] = 'nds' END +SET [Description] = 'Low German', [Definition] = NULL, [SortOrder] = 3840.00 WHERE [Code] = 'nds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbb', 'Lower Burdekin', NULL, 382.90) END +VALUES ('xbb', 'Lower Burdekin', NULL, 3841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Burdekin', [Definition] = NULL, [SortOrder] = 382.90 WHERE [Code] = 'xbb' END +SET [Description] = 'Lower Burdekin', [Definition] = NULL, [SortOrder] = 3841.00 WHERE [Code] = 'xbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cea', 'Lower Chehalis', NULL, 383.00) END +VALUES ('cea', 'Lower Chehalis', NULL, 3842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Chehalis', [Definition] = NULL, [SortOrder] = 383.00 WHERE [Code] = 'cea' END +SET [Description] = 'Lower Chehalis', [Definition] = NULL, [SortOrder] = 3842.00 WHERE [Code] = 'cea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dni', 'Lower Grand Valley Dani', NULL, 383.10) END +VALUES ('dni', 'Lower Grand Valley Dani', NULL, 3843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Grand Valley Dani', [Definition] = NULL, [SortOrder] = 383.10 WHERE [Code] = 'dni' END +SET [Description] = 'Lower Grand Valley Dani', [Definition] = NULL, [SortOrder] = 3843.00 WHERE [Code] = 'dni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsb', 'Lower Nossob', NULL, 383.20) END +VALUES ('nsb', 'Lower Nossob', NULL, 3844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Nossob', [Definition] = NULL, [SortOrder] = 383.20 WHERE [Code] = 'nsb' END +SET [Description] = 'Lower Nossob', [Definition] = NULL, [SortOrder] = 3844.00 WHERE [Code] = 'nsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sli', 'Lower Silesian', NULL, 383.30) END +VALUES ('sli', 'Lower Silesian', NULL, 3845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Silesian', [Definition] = NULL, [SortOrder] = 383.30 WHERE [Code] = 'sli' END +SET [Description] = 'Lower Silesian', [Definition] = NULL, [SortOrder] = 3845.00 WHERE [Code] = 'sli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsb', 'Lower Sorbian', NULL, 383.40) END +VALUES ('dsb', 'Lower Sorbian', NULL, 3846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Sorbian', [Definition] = NULL, [SortOrder] = 383.40 WHERE [Code] = 'dsb' END +SET [Description] = 'Lower Sorbian', [Definition] = NULL, [SortOrder] = 3846.00 WHERE [Code] = 'dsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axl', 'Lower Southern Aranda', NULL, 383.50) END +VALUES ('axl', 'Lower Southern Aranda', NULL, 3847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Southern Aranda', [Definition] = NULL, [SortOrder] = 383.50 WHERE [Code] = 'axl' END +SET [Description] = 'Lower Southern Aranda', [Definition] = NULL, [SortOrder] = 3847.00 WHERE [Code] = 'axl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tto', 'Lower Ta''oih', NULL, 383.60) END +VALUES ('tto', 'Lower Ta''oih', NULL, 3848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Ta''oih', [Definition] = NULL, [SortOrder] = 383.60 WHERE [Code] = 'tto' END +SET [Description] = 'Lower Ta''oih', [Definition] = NULL, [SortOrder] = 3848.00 WHERE [Code] = 'tto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taa', 'Lower Tanana', NULL, 383.70) END +VALUES ('taa', 'Lower Tanana', NULL, 3849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Tanana', [Definition] = NULL, [SortOrder] = 383.70 WHERE [Code] = 'taa' END +SET [Description] = 'Lower Tanana', [Definition] = NULL, [SortOrder] = 3849.00 WHERE [Code] = 'taa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clo', 'Lowland Oaxaca Chontal', NULL, 383.80) END +VALUES ('clo', 'Lowland Oaxaca Chontal', NULL, 3850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lowland Oaxaca Chontal', [Definition] = NULL, [SortOrder] = 383.80 WHERE [Code] = 'clo' END +SET [Description] = 'Lowland Oaxaca Chontal', [Definition] = NULL, [SortOrder] = 3850.00 WHERE [Code] = 'clo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tac', 'Lowland Tarahumara', NULL, 383.90) END +VALUES ('tac', 'Lowland Tarahumara', NULL, 3851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lowland Tarahumara', [Definition] = NULL, [SortOrder] = 383.90 WHERE [Code] = 'tac' END +SET [Description] = 'Lowland Tarahumara', [Definition] = NULL, [SortOrder] = 3851.00 WHERE [Code] = 'tac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztp', 'Loxicha Zapotec', NULL, 384.00) END +VALUES ('ztp', 'Loxicha Zapotec', NULL, 3852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loxicha Zapotec', [Definition] = NULL, [SortOrder] = 384.00 WHERE [Code] = 'ztp' END +SET [Description] = 'Loxicha Zapotec', [Definition] = NULL, [SortOrder] = 3852.00 WHERE [Code] = 'ztp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loz', 'Lozi', NULL, 384.10) END +VALUES ('loz', 'Lozi', NULL, 3853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lozi', [Definition] = NULL, [SortOrder] = 384.10 WHERE [Code] = 'loz' END +SET [Description] = 'Lozi', [Definition] = NULL, [SortOrder] = 3853.00 WHERE [Code] = 'loz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khb', 'Lü', NULL, 384.20) END +VALUES ('khb', 'Lü', NULL, 3854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lü', [Definition] = NULL, [SortOrder] = 384.20 WHERE [Code] = 'khb' END +SET [Description] = 'Lü', [Definition] = NULL, [SortOrder] = 3854.00 WHERE [Code] = 'khb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lex', 'Luang', NULL, 384.30) END +VALUES ('lex', 'Luang', NULL, 3855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luang', [Definition] = NULL, [SortOrder] = 384.30 WHERE [Code] = 'lex' END +SET [Description] = 'Luang', [Definition] = NULL, [SortOrder] = 3855.00 WHERE [Code] = 'lex' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lub', 'Luba-Katanga', NULL, 384.40) END +VALUES ('lub', 'Luba-Katanga', NULL, 3856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luba-Katanga', [Definition] = NULL, [SortOrder] = 384.40 WHERE [Code] = 'lub' END +SET [Description] = 'Luba-Katanga', [Definition] = NULL, [SortOrder] = 3856.00 WHERE [Code] = 'lub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lua', 'Luba-Lulua', NULL, 384.50) END +VALUES ('lua', 'Luba-Lulua', NULL, 3857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luba-Lulua', [Definition] = NULL, [SortOrder] = 384.50 WHERE [Code] = 'lua' END +SET [Description] = 'Luba-Lulua', [Definition] = NULL, [SortOrder] = 3857.00 WHERE [Code] = 'lua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcc', 'Lubila', NULL, 384.60) END +VALUES ('kcc', 'Lubila', NULL, 3858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lubila', [Definition] = NULL, [SortOrder] = 384.60 WHERE [Code] = 'kcc' END +SET [Description] = 'Lubila', [Definition] = NULL, [SortOrder] = 3858.00 WHERE [Code] = 'kcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcf', 'Lubu', NULL, 384.70) END +VALUES ('lcf', 'Lubu', NULL, 3859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lubu', [Definition] = NULL, [SortOrder] = 384.70 WHERE [Code] = 'lcf' END +SET [Description] = 'Lubu', [Definition] = NULL, [SortOrder] = 3859.00 WHERE [Code] = 'lcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knb', 'Lubuagan Kalinga', NULL, 384.80) END +VALUES ('knb', 'Lubuagan Kalinga', NULL, 3860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lubuagan Kalinga', [Definition] = NULL, [SortOrder] = 384.80 WHERE [Code] = 'knb' END +SET [Description] = 'Lubuagan Kalinga', [Definition] = NULL, [SortOrder] = 3860.00 WHERE [Code] = 'knb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lch', 'Luchazi', NULL, 384.90) END +VALUES ('lch', 'Luchazi', NULL, 3861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luchazi', [Definition] = NULL, [SortOrder] = 384.90 WHERE [Code] = 'lch' END +SET [Description] = 'Luchazi', [Definition] = NULL, [SortOrder] = 3861.00 WHERE [Code] = 'lch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luq', 'Lucumi', NULL, 385.00) END +VALUES ('luq', 'Lucumi', NULL, 3862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lucumi', [Definition] = NULL, [SortOrder] = 385.00 WHERE [Code] = 'luq' END +SET [Description] = 'Lucumi', [Definition] = NULL, [SortOrder] = 3862.00 WHERE [Code] = 'luq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lud', 'Ludian', NULL, 385.10) END +VALUES ('lud', 'Ludian', NULL, 3863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ludian', [Definition] = NULL, [SortOrder] = 385.10 WHERE [Code] = 'lud' END +SET [Description] = 'Ludian', [Definition] = NULL, [SortOrder] = 3863.00 WHERE [Code] = 'lud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldq', 'Lufu', NULL, 385.20) END +VALUES ('ldq', 'Lufu', NULL, 3864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lufu', [Definition] = NULL, [SortOrder] = 385.20 WHERE [Code] = 'ldq' END +SET [Description] = 'Lufu', [Definition] = NULL, [SortOrder] = 3864.00 WHERE [Code] = 'ldq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgg', 'Lugbara', NULL, 385.30) END +VALUES ('lgg', 'Lugbara', NULL, 3865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lugbara', [Definition] = NULL, [SortOrder] = 385.30 WHERE [Code] = 'lgg' END +SET [Description] = 'Lugbara', [Definition] = NULL, [SortOrder] = 3865.00 WHERE [Code] = 'lgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruf', 'Luguru', NULL, 385.40) END +VALUES ('ruf', 'Luguru', NULL, 3866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luguru', [Definition] = NULL, [SortOrder] = 385.40 WHERE [Code] = 'ruf' END +SET [Description] = 'Luguru', [Definition] = NULL, [SortOrder] = 3866.00 WHERE [Code] = 'ruf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcq', 'Luhu', NULL, 385.50) END +VALUES ('lcq', 'Luhu', NULL, 3867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luhu', [Definition] = NULL, [SortOrder] = 385.50 WHERE [Code] = 'lcq' END +SET [Description] = 'Luhu', [Definition] = NULL, [SortOrder] = 3867.00 WHERE [Code] = 'lcq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lum', 'Luimbi', NULL, 385.60) END +VALUES ('lum', 'Luimbi', NULL, 3868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luimbi', [Definition] = NULL, [SortOrder] = 385.60 WHERE [Code] = 'lum' END +SET [Description] = 'Luimbi', [Definition] = NULL, [SortOrder] = 3868.00 WHERE [Code] = 'lum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lui', 'Luiseno', NULL, 385.70) END +VALUES ('lui', 'Luiseno', NULL, 3869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luiseno', [Definition] = NULL, [SortOrder] = 385.70 WHERE [Code] = 'lui' END +SET [Description] = 'Luiseno', [Definition] = NULL, [SortOrder] = 3869.00 WHERE [Code] = 'lui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dop', 'Lukpa', NULL, 385.80) END +VALUES ('dop', 'Lukpa', NULL, 3870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lukpa', [Definition] = NULL, [SortOrder] = 385.80 WHERE [Code] = 'dop' END +SET [Description] = 'Lukpa', [Definition] = NULL, [SortOrder] = 3870.00 WHERE [Code] = 'dop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ule') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ule', 'Lule', NULL, 385.90) END +VALUES ('ule', 'Lule', NULL, 3871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lule', [Definition] = NULL, [SortOrder] = 385.90 WHERE [Code] = 'ule' END +SET [Description] = 'Lule', [Definition] = NULL, [SortOrder] = 3871.00 WHERE [Code] = 'ule' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smj', 'Lule Sami', NULL, 386.00) END +VALUES ('smj', 'Lule Sami', NULL, 3872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lule Sami', [Definition] = NULL, [SortOrder] = 386.00 WHERE [Code] = 'smj' END +SET [Description] = 'Lule Sami', [Definition] = NULL, [SortOrder] = 3872.00 WHERE [Code] = 'smj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luu', 'Lumba-Yakkha', NULL, 386.10) END +VALUES ('luu', 'Lumba-Yakkha', NULL, 3873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lumba-Yakkha', [Definition] = NULL, [SortOrder] = 386.10 WHERE [Code] = 'luu' END +SET [Description] = 'Lumba-Yakkha', [Definition] = NULL, [SortOrder] = 3873.00 WHERE [Code] = 'luu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lup', 'Lumbu', NULL, 386.20) END +VALUES ('lup', 'Lumbu', NULL, 3874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lumbu', [Definition] = NULL, [SortOrder] = 386.20 WHERE [Code] = 'lup' END +SET [Description] = 'Lumbu', [Definition] = NULL, [SortOrder] = 3874.00 WHERE [Code] = 'lup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmd', 'Lumun', NULL, 386.30) END +VALUES ('lmd', 'Lumun', NULL, 3875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lumun', [Definition] = NULL, [SortOrder] = 386.30 WHERE [Code] = 'lmd' END +SET [Description] = 'Lumun', [Definition] = NULL, [SortOrder] = 3875.00 WHERE [Code] = 'lmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luj', 'Luna', NULL, 386.40) END +VALUES ('luj', 'Luna', NULL, 3876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luna', [Definition] = NULL, [SortOrder] = 386.40 WHERE [Code] = 'luj' END +SET [Description] = 'Luna', [Definition] = NULL, [SortOrder] = 3876.00 WHERE [Code] = 'luj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luk', 'Lunanakha', NULL, 386.50) END +VALUES ('luk', 'Lunanakha', NULL, 3877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lunanakha', [Definition] = NULL, [SortOrder] = 386.50 WHERE [Code] = 'luk' END +SET [Description] = 'Lunanakha', [Definition] = NULL, [SortOrder] = 3877.00 WHERE [Code] = 'luk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lun', 'Lunda', NULL, 386.60) END +VALUES ('lun', 'Lunda', NULL, 3878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lunda', [Definition] = NULL, [SortOrder] = 386.60 WHERE [Code] = 'lun' END +SET [Description] = 'Lunda', [Definition] = NULL, [SortOrder] = 3878.00 WHERE [Code] = 'lun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnd', 'Lundayeh', NULL, 386.70) END +VALUES ('lnd', 'Lundayeh', NULL, 3879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lundayeh', [Definition] = NULL, [SortOrder] = 386.70 WHERE [Code] = 'lnd' END +SET [Description] = 'Lundayeh', [Definition] = NULL, [SortOrder] = 3879.00 WHERE [Code] = 'lnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmg', 'Lungalunga', NULL, 386.80) END +VALUES ('vmg', 'Lungalunga', NULL, 3880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lungalunga', [Definition] = NULL, [SortOrder] = 386.80 WHERE [Code] = 'vmg' END +SET [Description] = 'Lungalunga', [Definition] = NULL, [SortOrder] = 3880.00 WHERE [Code] = 'vmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lga', 'Lungga', NULL, 386.90) END +VALUES ('lga', 'Lungga', NULL, 3881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lungga', [Definition] = NULL, [SortOrder] = 386.90 WHERE [Code] = 'lga' END +SET [Description] = 'Lungga', [Definition] = NULL, [SortOrder] = 3881.00 WHERE [Code] = 'lga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luw', 'Luo (Cameroon)', NULL, 387.00) END +VALUES ('luw', 'Luo (Cameroon)', NULL, 3882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luo (Cameroon)', [Definition] = NULL, [SortOrder] = 387.00 WHERE [Code] = 'luw' END +SET [Description] = 'Luo (Cameroon)', [Definition] = NULL, [SortOrder] = 3882.00 WHERE [Code] = 'luw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luo', 'Luo (Kenya and Tanzania)', NULL, 387.10) END +VALUES ('luo', 'Luo (Kenya and Tanzania)', NULL, 3883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luo (Kenya and Tanzania)', [Definition] = NULL, [SortOrder] = 387.10 WHERE [Code] = 'luo' END +SET [Description] = 'Luo (Kenya and Tanzania)', [Definition] = NULL, [SortOrder] = 3883.00 WHERE [Code] = 'luo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hml', 'Luopohe Hmong', NULL, 387.20) END +VALUES ('hml', 'Luopohe Hmong', NULL, 3884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luopohe Hmong', [Definition] = NULL, [SortOrder] = 387.20 WHERE [Code] = 'hml' END +SET [Description] = 'Luopohe Hmong', [Definition] = NULL, [SortOrder] = 3884.00 WHERE [Code] = 'hml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldd', 'Luri', NULL, 387.30) END +VALUES ('ldd', 'Luri', NULL, 3885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luri', [Definition] = NULL, [SortOrder] = 387.30 WHERE [Code] = 'ldd' END +SET [Description] = 'Luri', [Definition] = NULL, [SortOrder] = 3885.00 WHERE [Code] = 'ldd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lse', 'Lusengo', NULL, 387.40) END +VALUES ('lse', 'Lusengo', NULL, 3886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lusengo', [Definition] = NULL, [SortOrder] = 387.40 WHERE [Code] = 'lse' END +SET [Description] = 'Lusengo', [Definition] = NULL, [SortOrder] = 3886.00 WHERE [Code] = 'lse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lus', 'Lushai', NULL, 387.50) END +VALUES ('lus', 'Lushai', NULL, 3887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lushai', [Definition] = NULL, [SortOrder] = 387.50 WHERE [Code] = 'lus' END +SET [Description] = 'Lushai', [Definition] = NULL, [SortOrder] = 3887.00 WHERE [Code] = 'lus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lut', 'Lushootseed', NULL, 387.60) END +VALUES ('lut', 'Lushootseed', NULL, 3888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lushootseed', [Definition] = NULL, [SortOrder] = 387.60 WHERE [Code] = 'lut' END +SET [Description] = 'Lushootseed', [Definition] = NULL, [SortOrder] = 3888.00 WHERE [Code] = 'lut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khl', 'Lusi', NULL, 387.70) END +VALUES ('khl', 'Lusi', NULL, 3889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lusi', [Definition] = NULL, [SortOrder] = 387.70 WHERE [Code] = 'khl' END +SET [Description] = 'Lusi', [Definition] = NULL, [SortOrder] = 3889.00 WHERE [Code] = 'khl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xls', 'Lusitanian', NULL, 387.80) END +VALUES ('xls', 'Lusitanian', NULL, 3890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lusitanian', [Definition] = NULL, [SortOrder] = 387.80 WHERE [Code] = 'xls' END +SET [Description] = 'Lusitanian', [Definition] = NULL, [SortOrder] = 3890.00 WHERE [Code] = 'xls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndy', 'Lutos', NULL, 387.90) END +VALUES ('ndy', 'Lutos', NULL, 3891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lutos', [Definition] = NULL, [SortOrder] = 387.90 WHERE [Code] = 'ndy' END +SET [Description] = 'Lutos', [Definition] = NULL, [SortOrder] = 3891.00 WHERE [Code] = 'ndy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lue', 'Luvale', NULL, 388.00) END +VALUES ('lue', 'Luvale', NULL, 3892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luvale', [Definition] = NULL, [SortOrder] = 388.00 WHERE [Code] = 'lue' END +SET [Description] = 'Luvale', [Definition] = NULL, [SortOrder] = 3892.00 WHERE [Code] = 'lue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luv', 'Luwati', NULL, 388.10) END +VALUES ('luv', 'Luwati', NULL, 3893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luwati', [Definition] = NULL, [SortOrder] = 388.10 WHERE [Code] = 'luv' END +SET [Description] = 'Luwati', [Definition] = NULL, [SortOrder] = 3893.00 WHERE [Code] = 'luv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwo', 'Luwo', NULL, 388.20) END +VALUES ('lwo', 'Luwo', NULL, 3894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luwo', [Definition] = NULL, [SortOrder] = 388.20 WHERE [Code] = 'lwo' END +SET [Description] = 'Luwo', [Definition] = NULL, [SortOrder] = 3894.00 WHERE [Code] = 'lwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltz', 'Luxembourgish', NULL, 388.30) END +VALUES ('ltz', 'Luxembourgish', NULL, 3895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luxembourgish', [Definition] = NULL, [SortOrder] = 388.30 WHERE [Code] = 'ltz' END +SET [Description] = 'Luxembourgish', [Definition] = NULL, [SortOrder] = 3895.00 WHERE [Code] = 'ltz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lyn', 'Luyana', NULL, 388.40) END +VALUES ('lyn', 'Luyana', NULL, 3896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luyana', [Definition] = NULL, [SortOrder] = 388.40 WHERE [Code] = 'lyn' END +SET [Description] = 'Luyana', [Definition] = NULL, [SortOrder] = 3896.00 WHERE [Code] = 'lyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luy', 'Luyia', NULL, 388.50) END +VALUES ('luy', 'Luyia', NULL, 3897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luyia', [Definition] = NULL, [SortOrder] = 388.50 WHERE [Code] = 'luy' END +SET [Description] = 'Luyia', [Definition] = NULL, [SortOrder] = 3897.00 WHERE [Code] = 'luy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwa', 'Lwalu', NULL, 388.60) END +VALUES ('lwa', 'Lwalu', NULL, 3898.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Lwalu', [Definition] = NULL, [SortOrder] = 3898.00 WHERE [Code] = 'lwa' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('lvl', 'Lwel', NULL, 3899.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lwalu', [Definition] = NULL, [SortOrder] = 388.60 WHERE [Code] = 'lwa' END +SET [Description] = 'Lwel', [Definition] = NULL, [SortOrder] = 3899.00 WHERE [Code] = 'lvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlc', 'Lycian', NULL, 388.70) END +VALUES ('xlc', 'Lycian', NULL, 3900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lycian', [Definition] = NULL, [SortOrder] = 388.70 WHERE [Code] = 'xlc' END +SET [Description] = 'Lycian', [Definition] = NULL, [SortOrder] = 3900.00 WHERE [Code] = 'xlc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xld', 'Lydian', NULL, 388.80) END +VALUES ('xld', 'Lydian', NULL, 3901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lydian', [Definition] = NULL, [SortOrder] = 388.80 WHERE [Code] = 'xld' END +SET [Description] = 'Lydian', [Definition] = NULL, [SortOrder] = 3901.00 WHERE [Code] = 'xld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lee', 'Lyélé', NULL, 388.90) END +VALUES ('lee', 'Lyélé', NULL, 3902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lyélé', [Definition] = NULL, [SortOrder] = 388.90 WHERE [Code] = 'lee' END +SET [Description] = 'Lyélé', [Definition] = NULL, [SortOrder] = 3902.00 WHERE [Code] = 'lee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lyg', 'Lyngngam', NULL, 389.00) END +VALUES ('lyg', 'Lyngngam', NULL, 3903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lyngngam', [Definition] = NULL, [SortOrder] = 389.00 WHERE [Code] = 'lyg' END +SET [Description] = 'Lyngngam', [Definition] = NULL, [SortOrder] = 3903.00 WHERE [Code] = 'lyg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msj', 'Ma (Democratic Republic of Congo)', NULL, 389.10) END +VALUES ('msj', 'Ma (Democratic Republic of Congo)', NULL, 3904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 389.10 WHERE [Code] = 'msj' END +SET [Description] = 'Ma (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 3904.00 WHERE [Code] = 'msj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjn', 'Ma (Papua New Guinea)', NULL, 389.20) END +VALUES ('mjn', 'Ma (Papua New Guinea)', NULL, 3905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 389.20 WHERE [Code] = 'mjn' END +SET [Description] = 'Ma (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3905.00 WHERE [Code] = 'mjn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skc', 'Ma Manda', NULL, 389.30) END +VALUES ('skc', 'Ma Manda', NULL, 3906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma Manda', [Definition] = NULL, [SortOrder] = 389.30 WHERE [Code] = 'skc' END +SET [Description] = 'Ma Manda', [Definition] = NULL, [SortOrder] = 3906.00 WHERE [Code] = 'skc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhy', 'Ma''anyan', NULL, 389.40) END +VALUES ('mhy', 'Ma''anyan', NULL, 3907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma''anyan', [Definition] = NULL, [SortOrder] = 389.40 WHERE [Code] = 'mhy' END +SET [Description] = 'Ma''anyan', [Definition] = NULL, [SortOrder] = 3907.00 WHERE [Code] = 'mhy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhi', 'Ma''di', NULL, 389.50) END +VALUES ('mhi', 'Ma''di', NULL, 3908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma''di', [Definition] = NULL, [SortOrder] = 389.50 WHERE [Code] = 'mhi' END +SET [Description] = 'Ma''di', [Definition] = NULL, [SortOrder] = 3908.00 WHERE [Code] = 'mhi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slz', 'Ma''ya', NULL, 389.60) END +VALUES ('slz', 'Ma''ya', NULL, 3909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma''ya', [Definition] = NULL, [SortOrder] = 389.60 WHERE [Code] = 'slz' END +SET [Description] = 'Ma''ya', [Definition] = NULL, [SortOrder] = 3909.00 WHERE [Code] = 'slz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cma', 'Maa', NULL, 389.70) END +VALUES ('cma', 'Maa', NULL, 3910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maa', [Definition] = NULL, [SortOrder] = 389.70 WHERE [Code] = 'cma' END +SET [Description] = 'Maa', [Definition] = NULL, [SortOrder] = 3910.00 WHERE [Code] = 'cma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mew', 'Maaka', NULL, 389.80) END +VALUES ('mew', 'Maaka', NULL, 3911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maaka', [Definition] = NULL, [SortOrder] = 389.80 WHERE [Code] = 'mew' END +SET [Description] = 'Maaka', [Definition] = NULL, [SortOrder] = 3911.00 WHERE [Code] = 'mew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ffm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ffm', 'Maasina Fulfulde', NULL, 389.90) END +VALUES ('ffm', 'Maasina Fulfulde', NULL, 3912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maasina Fulfulde', [Definition] = NULL, [SortOrder] = 389.90 WHERE [Code] = 'ffm' END +SET [Description] = 'Maasina Fulfulde', [Definition] = NULL, [SortOrder] = 3912.00 WHERE [Code] = 'ffm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymm', 'Maay', NULL, 390.00) END +VALUES ('ymm', 'Maay', NULL, 3913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maay', [Definition] = NULL, [SortOrder] = 390.00 WHERE [Code] = 'ymm' END +SET [Description] = 'Maay', [Definition] = NULL, [SortOrder] = 3913.00 WHERE [Code] = 'ymm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mde', 'Maba (Chad)', NULL, 390.10) END +VALUES ('mde', 'Maba (Chad)', NULL, 3914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maba (Chad)', [Definition] = NULL, [SortOrder] = 390.10 WHERE [Code] = 'mde' END +SET [Description] = 'Maba (Chad)', [Definition] = NULL, [SortOrder] = 3914.00 WHERE [Code] = 'mde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqa', 'Maba (Indonesia)', NULL, 390.20) END +VALUES ('mqa', 'Maba (Indonesia)', NULL, 3915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maba (Indonesia)', [Definition] = NULL, [SortOrder] = 390.20 WHERE [Code] = 'mqa' END +SET [Description] = 'Maba (Indonesia)', [Definition] = NULL, [SortOrder] = 3915.00 WHERE [Code] = 'mqa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmz', 'Mabaale', NULL, 390.30) END +VALUES ('mmz', 'Mabaale', NULL, 3916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mabaale', [Definition] = NULL, [SortOrder] = 390.30 WHERE [Code] = 'mmz' END +SET [Description] = 'Mabaale', [Definition] = NULL, [SortOrder] = 3916.00 WHERE [Code] = 'mmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfz', 'Mabaan', NULL, 390.40) END +VALUES ('mfz', 'Mabaan', NULL, 3917.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mabaan', [Definition] = NULL, [SortOrder] = 390.40 WHERE [Code] = 'mfz' END +SET [Description] = 'Mabaan', [Definition] = NULL, [SortOrder] = 3917.00 WHERE [Code] = 'mfz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkg', 'Mabaka Valley Kalinga', NULL, 390.50) END +VALUES ('kkg', 'Mabaka Valley Kalinga', NULL, 3918.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mabaka Valley Kalinga', [Definition] = NULL, [SortOrder] = 390.50 WHERE [Code] = 'kkg' END +SET [Description] = 'Mabaka Valley Kalinga', [Definition] = NULL, [SortOrder] = 3918.00 WHERE [Code] = 'kkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muj', 'Mabire', NULL, 390.60) END +VALUES ('muj', 'Mabire', NULL, 3919.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mabire', [Definition] = NULL, [SortOrder] = 390.60 WHERE [Code] = 'muj' END +SET [Description] = 'Mabire', [Definition] = NULL, [SortOrder] = 3919.00 WHERE [Code] = 'muj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mca', 'Maca', NULL, 390.70) END +VALUES ('mca', 'Maca', NULL, 3920.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maca', [Definition] = NULL, [SortOrder] = 390.70 WHERE [Code] = 'mca' END +SET [Description] = 'Maca', [Definition] = NULL, [SortOrder] = 3920.00 WHERE [Code] = 'mca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcl', 'Macaguaje', NULL, 390.80) END +VALUES ('mcl', 'Macaguaje', NULL, 3921.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macaguaje', [Definition] = NULL, [SortOrder] = 390.80 WHERE [Code] = 'mcl' END +SET [Description] = 'Macaguaje', [Definition] = NULL, [SortOrder] = 3921.00 WHERE [Code] = 'mcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbn', 'Macaguán', NULL, 390.90) END +VALUES ('mbn', 'Macaguán', NULL, 3922.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macaguán', [Definition] = NULL, [SortOrder] = 390.90 WHERE [Code] = 'mbn' END +SET [Description] = 'Macaguán', [Definition] = NULL, [SortOrder] = 3922.00 WHERE [Code] = 'mbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzs', 'Macanese', NULL, 391.00) END +VALUES ('mzs', 'Macanese', NULL, 3923.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macanese', [Definition] = NULL, [SortOrder] = 391.00 WHERE [Code] = 'mzs' END +SET [Description] = 'Macanese', [Definition] = NULL, [SortOrder] = 3923.00 WHERE [Code] = 'mzs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rup', 'Macedo-Romanian', NULL, 391.10) END +VALUES ('rup', 'Macedo-Romanian', NULL, 3924.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macedo-Romanian', [Definition] = NULL, [SortOrder] = 391.10 WHERE [Code] = 'rup' END +SET [Description] = 'Macedo-Romanian', [Definition] = NULL, [SortOrder] = 3924.00 WHERE [Code] = 'rup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkd', 'Macedonian', NULL, 391.20) END +VALUES ('mkd', 'Macedonian', NULL, 3925.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macedonian', [Definition] = NULL, [SortOrder] = 391.20 WHERE [Code] = 'mkd' END +SET [Description] = 'Macedonian', [Definition] = NULL, [SortOrder] = 3925.00 WHERE [Code] = 'mkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmc', 'Machame', NULL, 391.30) END +VALUES ('jmc', 'Machame', NULL, 3926.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Machame', [Definition] = NULL, [SortOrder] = 391.30 WHERE [Code] = 'jmc' END +SET [Description] = 'Machame', [Definition] = NULL, [SortOrder] = 3926.00 WHERE [Code] = 'jmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcb', 'Machiguenga', NULL, 391.40) END +VALUES ('mcb', 'Machiguenga', NULL, 3927.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Machiguenga', [Definition] = NULL, [SortOrder] = 391.40 WHERE [Code] = 'mcb' END +SET [Description] = 'Machiguenga', [Definition] = NULL, [SortOrder] = 3927.00 WHERE [Code] = 'mcb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpd', 'Machinere', NULL, 391.50) END +VALUES ('mpd', 'Machinere', NULL, 3928.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Machinere', [Definition] = NULL, [SortOrder] = 391.50 WHERE [Code] = 'mpd' END +SET [Description] = 'Machinere', [Definition] = NULL, [SortOrder] = 3928.00 WHERE [Code] = 'mpd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvw', 'Machinga', NULL, 391.60) END +VALUES ('mvw', 'Machinga', NULL, 3929.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Machinga', [Definition] = NULL, [SortOrder] = 391.60 WHERE [Code] = 'mvw' END +SET [Description] = 'Machinga', [Definition] = NULL, [SortOrder] = 3929.00 WHERE [Code] = 'mvw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wpc', 'Maco', NULL, 391.70) END +VALUES ('wpc', 'Maco', NULL, 3930.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maco', [Definition] = NULL, [SortOrder] = 391.70 WHERE [Code] = 'wpc' END +SET [Description] = 'Maco', [Definition] = NULL, [SortOrder] = 3930.00 WHERE [Code] = 'wpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myy', 'Macuna', NULL, 391.80) END +VALUES ('myy', 'Macuna', NULL, 3931.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macuna', [Definition] = NULL, [SortOrder] = 391.80 WHERE [Code] = 'myy' END +SET [Description] = 'Macuna', [Definition] = NULL, [SortOrder] = 3931.00 WHERE [Code] = 'myy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbc', 'Macushi', NULL, 391.90) END +VALUES ('mbc', 'Macushi', NULL, 3932.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macushi', [Definition] = NULL, [SortOrder] = 391.90 WHERE [Code] = 'mbc' END +SET [Description] = 'Macushi', [Definition] = NULL, [SortOrder] = 3932.00 WHERE [Code] = 'mbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxu', 'Mada (Cameroon)', NULL, 392.00) END +VALUES ('mxu', 'Mada (Cameroon)', NULL, 3933.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mada (Cameroon)', [Definition] = NULL, [SortOrder] = 392.00 WHERE [Code] = 'mxu' END +SET [Description] = 'Mada (Cameroon)', [Definition] = NULL, [SortOrder] = 3933.00 WHERE [Code] = 'mxu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mda', 'Mada (Nigeria)', NULL, 392.10) END +VALUES ('mda', 'Mada (Nigeria)', NULL, 3934.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mada (Nigeria)', [Definition] = NULL, [SortOrder] = 392.10 WHERE [Code] = 'mda' END +SET [Description] = 'Mada (Nigeria)', [Definition] = NULL, [SortOrder] = 3934.00 WHERE [Code] = 'mda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzc', 'Madagascar Sign Language', NULL, 392.20) END +VALUES ('mzc', 'Madagascar Sign Language', NULL, 3935.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madagascar Sign Language', [Definition] = NULL, [SortOrder] = 392.20 WHERE [Code] = 'mzc' END +SET [Description] = 'Madagascar Sign Language', [Definition] = NULL, [SortOrder] = 3935.00 WHERE [Code] = 'mzc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmx', 'Madak', NULL, 392.30) END +VALUES ('mmx', 'Madak', NULL, 3936.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madak', [Definition] = NULL, [SortOrder] = 392.30 WHERE [Code] = 'mmx' END +SET [Description] = 'Madak', [Definition] = NULL, [SortOrder] = 3936.00 WHERE [Code] = 'mmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmx', 'Maden', NULL, 392.40) END +VALUES ('xmx', 'Maden', NULL, 3937.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maden', [Definition] = NULL, [SortOrder] = 392.40 WHERE [Code] = 'xmx' END +SET [Description] = 'Maden', [Definition] = NULL, [SortOrder] = 3937.00 WHERE [Code] = 'xmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmd', 'Madhi Madhi', NULL, 392.50) END +VALUES ('dmd', 'Madhi Madhi', NULL, 3938.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madhi Madhi', [Definition] = NULL, [SortOrder] = 392.50 WHERE [Code] = 'dmd' END +SET [Description] = 'Madhi Madhi', [Definition] = NULL, [SortOrder] = 3938.00 WHERE [Code] = 'dmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grg', 'Madi', NULL, 392.60) END +VALUES ('grg', 'Madi', NULL, 3939.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madi', [Definition] = NULL, [SortOrder] = 392.60 WHERE [Code] = 'grg' END +SET [Description] = 'Madi', [Definition] = NULL, [SortOrder] = 3939.00 WHERE [Code] = 'grg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mad', 'Madurese', NULL, 392.70) END +VALUES ('mad', 'Madurese', NULL, 3940.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madurese', [Definition] = NULL, [SortOrder] = 392.70 WHERE [Code] = 'mad' END +SET [Description] = 'Madurese', [Definition] = NULL, [SortOrder] = 3940.00 WHERE [Code] = 'mad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mme', 'Mae', NULL, 392.80) END +VALUES ('mme', 'Mae', NULL, 3941.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mae', [Definition] = NULL, [SortOrder] = 392.80 WHERE [Code] = 'mme' END +SET [Description] = 'Mae', [Definition] = NULL, [SortOrder] = 3941.00 WHERE [Code] = 'mme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmk', 'Maek', NULL, 392.90) END +VALUES ('hmk', 'Maek', NULL, 3942.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maek', [Definition] = NULL, [SortOrder] = 392.90 WHERE [Code] = 'hmk' END +SET [Description] = 'Maek', [Definition] = NULL, [SortOrder] = 3942.00 WHERE [Code] = 'hmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itt', 'Maeng Itneg', NULL, 393.00) END +VALUES ('itt', 'Maeng Itneg', NULL, 3943.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maeng Itneg', [Definition] = NULL, [SortOrder] = 393.00 WHERE [Code] = 'itt' END +SET [Description] = 'Maeng Itneg', [Definition] = NULL, [SortOrder] = 3943.00 WHERE [Code] = 'itt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maf', 'Mafa', NULL, 393.10) END +VALUES ('maf', 'Mafa', NULL, 3944.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mafa', [Definition] = NULL, [SortOrder] = 393.10 WHERE [Code] = 'maf' END +SET [Description] = 'Mafa', [Definition] = NULL, [SortOrder] = 3944.00 WHERE [Code] = 'maf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkv', 'Mafea', NULL, 393.20) END +VALUES ('mkv', 'Mafea', NULL, 3945.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mafea', [Definition] = NULL, [SortOrder] = 393.20 WHERE [Code] = 'mkv' END +SET [Description] = 'Mafea', [Definition] = NULL, [SortOrder] = 3945.00 WHERE [Code] = 'mkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgb', 'Mag-antsi Ayta', NULL, 393.30) END +VALUES ('sgb', 'Mag-antsi Ayta', NULL, 3946.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mag-antsi Ayta', [Definition] = NULL, [SortOrder] = 393.30 WHERE [Code] = 'sgb' END +SET [Description] = 'Mag-antsi Ayta', [Definition] = NULL, [SortOrder] = 3946.00 WHERE [Code] = 'sgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blx', 'Mag-Indi Ayta', NULL, 393.40) END +VALUES ('blx', 'Mag-Indi Ayta', NULL, 3947.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mag-Indi Ayta', [Definition] = NULL, [SortOrder] = 393.40 WHERE [Code] = 'blx' END +SET [Description] = 'Mag-Indi Ayta', [Definition] = NULL, [SortOrder] = 3947.00 WHERE [Code] = 'blx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mag', 'Magahi', NULL, 393.50) END +VALUES ('mag', 'Magahi', NULL, 3948.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magahi', [Definition] = NULL, [SortOrder] = 393.50 WHERE [Code] = 'mag' END +SET [Description] = 'Magahi', [Definition] = NULL, [SortOrder] = 3948.00 WHERE [Code] = 'mag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayt', 'Magbukun Ayta', NULL, 393.60) END +VALUES ('ayt', 'Magbukun Ayta', NULL, 3949.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magbukun Ayta', [Definition] = NULL, [SortOrder] = 393.60 WHERE [Code] = 'ayt' END +SET [Description] = 'Magbukun Ayta', [Definition] = NULL, [SortOrder] = 3949.00 WHERE [Code] = 'ayt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtm', 'Magdalena Peñasco Mixtec', NULL, 393.70) END +VALUES ('xtm', 'Magdalena Peñasco Mixtec', NULL, 3950.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magdalena Peñasco Mixtec', [Definition] = NULL, [SortOrder] = 393.70 WHERE [Code] = 'xtm' END +SET [Description] = 'Magdalena Peñasco Mixtec', [Definition] = NULL, [SortOrder] = 3950.00 WHERE [Code] = 'xtm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmd', 'Mághdì', NULL, 393.80) END +VALUES ('gmd', 'Mághdì', NULL, 3951.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mághdì', [Definition] = NULL, [SortOrder] = 393.80 WHERE [Code] = 'gmd' END +SET [Description] = 'Mághdì', [Definition] = NULL, [SortOrder] = 3951.00 WHERE [Code] = 'gmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gkd', 'Magi (Madang Province)', NULL, 393.90) END +VALUES ('gkd', 'Magi (Madang Province)', NULL, 3952.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magi (Madang Province)', [Definition] = NULL, [SortOrder] = 393.90 WHERE [Code] = 'gkd' END +SET [Description] = 'Magi (Madang Province)', [Definition] = NULL, [SortOrder] = 3952.00 WHERE [Code] = 'gkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmg', 'Magiyi', NULL, 394.00) END +VALUES ('gmg', 'Magiyi', NULL, 3953.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magiyi', [Definition] = NULL, [SortOrder] = 394.00 WHERE [Code] = 'gmg' END +SET [Description] = 'Magiyi', [Definition] = NULL, [SortOrder] = 3953.00 WHERE [Code] = 'gmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmx', 'Magoma', NULL, 394.10) END +VALUES ('gmx', 'Magoma', NULL, 3954.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magoma', [Definition] = NULL, [SortOrder] = 394.10 WHERE [Code] = 'gmx' END +SET [Description] = 'Magoma', [Definition] = NULL, [SortOrder] = 3954.00 WHERE [Code] = 'gmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgr', 'Magori', NULL, 394.20) END +VALUES ('zgr', 'Magori', NULL, 3955.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magori', [Definition] = NULL, [SortOrder] = 394.20 WHERE [Code] = 'zgr' END +SET [Description] = 'Magori', [Definition] = NULL, [SortOrder] = 3955.00 WHERE [Code] = 'zgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdh', 'Maguindanaon', NULL, 394.30) END +VALUES ('mdh', 'Maguindanaon', NULL, 3956.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maguindanaon', [Definition] = NULL, [SortOrder] = 394.30 WHERE [Code] = 'mdh' END +SET [Description] = 'Maguindanaon', [Definition] = NULL, [SortOrder] = 3956.00 WHERE [Code] = 'mdh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjx', 'Mahali', NULL, 394.40) END +VALUES ('mjx', 'Mahali', NULL, 3957.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahali', [Definition] = NULL, [SortOrder] = 394.40 WHERE [Code] = 'mjx' END +SET [Description] = 'Mahali', [Definition] = NULL, [SortOrder] = 3957.00 WHERE [Code] = 'mjx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmh', 'Maharastri Prakrit', NULL, 394.50) END +VALUES ('pmh', 'Maharastri Prakrit', NULL, 3958.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maharastri Prakrit', [Definition] = NULL, [SortOrder] = 394.50 WHERE [Code] = 'pmh' END +SET [Description] = 'Maharastri Prakrit', [Definition] = NULL, [SortOrder] = 3958.00 WHERE [Code] = 'pmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfz', 'Mahasu Pahari', NULL, 394.60) END +VALUES ('bfz', 'Mahasu Pahari', NULL, 3959.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahasu Pahari', [Definition] = NULL, [SortOrder] = 394.60 WHERE [Code] = 'bfz' END +SET [Description] = 'Mahasu Pahari', [Definition] = NULL, [SortOrder] = 3959.00 WHERE [Code] = 'bfz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjy', 'Mahican', NULL, 394.70) END +VALUES ('mjy', 'Mahican', NULL, 3960.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahican', [Definition] = NULL, [SortOrder] = 394.70 WHERE [Code] = 'mjy' END +SET [Description] = 'Mahican', [Definition] = NULL, [SortOrder] = 3960.00 WHERE [Code] = 'mjy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhb', 'Mahongwe', NULL, 394.80) END +VALUES ('mhb', 'Mahongwe', NULL, 3961.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahongwe', [Definition] = NULL, [SortOrder] = 394.80 WHERE [Code] = 'mhb' END +SET [Description] = 'Mahongwe', [Definition] = NULL, [SortOrder] = 3961.00 WHERE [Code] = 'mhb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxx', 'Mahou', NULL, 394.90) END +VALUES ('mxx', 'Mahou', NULL, 3962.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahou', [Definition] = NULL, [SortOrder] = 394.90 WHERE [Code] = 'mxx' END +SET [Description] = 'Mahou', [Definition] = NULL, [SortOrder] = 3962.00 WHERE [Code] = 'mxx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayz', 'Mai Brat', NULL, 395.00) END +VALUES ('ayz', 'Mai Brat', NULL, 3963.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mai Brat', [Definition] = NULL, [SortOrder] = 395.00 WHERE [Code] = 'ayz' END +SET [Description] = 'Mai Brat', [Definition] = NULL, [SortOrder] = 3963.00 WHERE [Code] = 'ayz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sks', 'Maia', NULL, 395.10) END +VALUES ('sks', 'Maia', NULL, 3964.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maia', [Definition] = NULL, [SortOrder] = 395.10 WHERE [Code] = 'sks' END +SET [Description] = 'Maia', [Definition] = NULL, [SortOrder] = 3964.00 WHERE [Code] = 'sks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzz', 'Maiadomu', NULL, 395.20) END +VALUES ('mzz', 'Maiadomu', NULL, 3965.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiadomu', [Definition] = NULL, [SortOrder] = 395.20 WHERE [Code] = 'mzz' END +SET [Description] = 'Maiadomu', [Definition] = NULL, [SortOrder] = 3965.00 WHERE [Code] = 'mzz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnh', 'Maiani', NULL, 395.30) END +VALUES ('tnh', 'Maiani', NULL, 3966.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiani', [Definition] = NULL, [SortOrder] = 395.30 WHERE [Code] = 'tnh' END +SET [Description] = 'Maiani', [Definition] = NULL, [SortOrder] = 3966.00 WHERE [Code] = 'tnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmm', 'Maii', NULL, 395.40) END +VALUES ('mmm', 'Maii', NULL, 3967.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maii', [Definition] = NULL, [SortOrder] = 395.40 WHERE [Code] = 'mmm' END +SET [Description] = 'Maii', [Definition] = NULL, [SortOrder] = 3967.00 WHERE [Code] = 'mmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgu', 'Mailu', NULL, 395.50) END +VALUES ('mgu', 'Mailu', NULL, 3968.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mailu', [Definition] = NULL, [SortOrder] = 395.50 WHERE [Code] = 'mgu' END +SET [Description] = 'Mailu', [Definition] = NULL, [SortOrder] = 3968.00 WHERE [Code] = 'mgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwb', 'Maindo', NULL, 395.60) END +VALUES ('cwb', 'Maindo', NULL, 3969.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maindo', [Definition] = NULL, [SortOrder] = 395.60 WHERE [Code] = 'cwb' END +SET [Description] = 'Maindo', [Definition] = NULL, [SortOrder] = 3969.00 WHERE [Code] = 'cwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmf', 'Mainfränkisch', NULL, 395.70) END +VALUES ('vmf', 'Mainfränkisch', NULL, 3970.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mainfränkisch', [Definition] = NULL, [SortOrder] = 395.70 WHERE [Code] = 'vmf' END +SET [Description] = 'Mainfränkisch', [Definition] = NULL, [SortOrder] = 3970.00 WHERE [Code] = 'vmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkl', 'Mainstream Kenyah', NULL, 395.80) END +VALUES ('xkl', 'Mainstream Kenyah', NULL, 3971.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mainstream Kenyah', [Definition] = NULL, [SortOrder] = 395.80 WHERE [Code] = 'xkl' END +SET [Description] = 'Mainstream Kenyah', [Definition] = NULL, [SortOrder] = 3971.00 WHERE [Code] = 'xkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zrs', 'Mairasi', NULL, 395.90) END +VALUES ('zrs', 'Mairasi', NULL, 3972.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mairasi', [Definition] = NULL, [SortOrder] = 395.90 WHERE [Code] = 'zrs' END +SET [Description] = 'Mairasi', [Definition] = NULL, [SortOrder] = 3972.00 WHERE [Code] = 'zrs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbq', 'Maisin', NULL, 396.00) END +VALUES ('mbq', 'Maisin', NULL, 3973.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maisin', [Definition] = NULL, [SortOrder] = 396.00 WHERE [Code] = 'mbq' END +SET [Description] = 'Maisin', [Definition] = NULL, [SortOrder] = 3973.00 WHERE [Code] = 'mbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mai', 'Maithili', NULL, 396.10) END +VALUES ('mai', 'Maithili', NULL, 3974.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maithili', [Definition] = NULL, [SortOrder] = 396.10 WHERE [Code] = 'mai' END +SET [Description] = 'Maithili', [Definition] = NULL, [SortOrder] = 3974.00 WHERE [Code] = 'mai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmm', 'Maiwa (Indonesia)', NULL, 396.20) END +VALUES ('wmm', 'Maiwa (Indonesia)', NULL, 3975.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiwa (Indonesia)', [Definition] = NULL, [SortOrder] = 396.20 WHERE [Code] = 'wmm' END +SET [Description] = 'Maiwa (Indonesia)', [Definition] = NULL, [SortOrder] = 3975.00 WHERE [Code] = 'wmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mti', 'Maiwa (Papua New Guinea)', NULL, 396.30) END +VALUES ('mti', 'Maiwa (Papua New Guinea)', NULL, 3976.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiwa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 396.30 WHERE [Code] = 'mti' END +SET [Description] = 'Maiwa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3976.00 WHERE [Code] = 'mti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mum', 'Maiwala', NULL, 396.40) END +VALUES ('mum', 'Maiwala', NULL, 3977.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiwala', [Definition] = NULL, [SortOrder] = 396.40 WHERE [Code] = 'mum' END +SET [Description] = 'Maiwala', [Definition] = NULL, [SortOrder] = 3977.00 WHERE [Code] = 'mum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpe', 'Majang', NULL, 396.50) END +VALUES ('mpe', 'Majang', NULL, 3978.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majang', [Definition] = NULL, [SortOrder] = 396.50 WHERE [Code] = 'mpe' END +SET [Description] = 'Majang', [Definition] = NULL, [SortOrder] = 3978.00 WHERE [Code] = 'mpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmj', 'Majera', NULL, 396.60) END +VALUES ('xmj', 'Majera', NULL, 3979.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majera', [Definition] = NULL, [SortOrder] = 396.60 WHERE [Code] = 'xmj' END +SET [Description] = 'Majera', [Definition] = NULL, [SortOrder] = 3979.00 WHERE [Code] = 'xmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjz', 'Majhi', NULL, 396.70) END +VALUES ('mjz', 'Majhi', NULL, 3980.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majhi', [Definition] = NULL, [SortOrder] = 396.70 WHERE [Code] = 'mjz' END +SET [Description] = 'Majhi', [Definition] = NULL, [SortOrder] = 3980.00 WHERE [Code] = 'mjz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmj', 'Majhwar', NULL, 396.80) END +VALUES ('mmj', 'Majhwar', NULL, 3981.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majhwar', [Definition] = NULL, [SortOrder] = 396.80 WHERE [Code] = 'mmj' END +SET [Description] = 'Majhwar', [Definition] = NULL, [SortOrder] = 3981.00 WHERE [Code] = 'mmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmd', 'Majukayang Kalinga', NULL, 396.90) END +VALUES ('kmd', 'Majukayang Kalinga', NULL, 3982.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majukayang Kalinga', [Definition] = NULL, [SortOrder] = 396.90 WHERE [Code] = 'kmd' END +SET [Description] = 'Majukayang Kalinga', [Definition] = NULL, [SortOrder] = 3982.00 WHERE [Code] = 'kmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkg', 'Mak (China)', NULL, 397.00) END +VALUES ('mkg', 'Mak (China)', NULL, 3983.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mak (China)', [Definition] = NULL, [SortOrder] = 397.00 WHERE [Code] = 'mkg' END +SET [Description] = 'Mak (China)', [Definition] = NULL, [SortOrder] = 3983.00 WHERE [Code] = 'mkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbl', 'Mak (Nigeria)', NULL, 397.10) END +VALUES ('pbl', 'Mak (Nigeria)', NULL, 3984.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mak (Nigeria)', [Definition] = NULL, [SortOrder] = 397.10 WHERE [Code] = 'pbl' END +SET [Description] = 'Mak (Nigeria)', [Definition] = NULL, [SortOrder] = 3984.00 WHERE [Code] = 'pbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcp', 'Makaa', NULL, 397.20) END +VALUES ('mcp', 'Makaa', NULL, 3985.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makaa', [Definition] = NULL, [SortOrder] = 397.20 WHERE [Code] = 'mcp' END +SET [Description] = 'Makaa', [Definition] = NULL, [SortOrder] = 3985.00 WHERE [Code] = 'mcp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myh', 'Makah', NULL, 397.30) END +VALUES ('myh', 'Makah', NULL, 3986.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makah', [Definition] = NULL, [SortOrder] = 397.30 WHERE [Code] = 'myh' END +SET [Description] = 'Makah', [Definition] = NULL, [SortOrder] = 3986.00 WHERE [Code] = 'myh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjb', 'Makalero', NULL, 397.40) END +VALUES ('mjb', 'Makalero', NULL, 3987.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makalero', [Definition] = NULL, [SortOrder] = 397.40 WHERE [Code] = 'mjb' END +SET [Description] = 'Makalero', [Definition] = NULL, [SortOrder] = 3987.00 WHERE [Code] = 'mjb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkz', 'Makasae', NULL, 397.50) END +VALUES ('mkz', 'Makasae', NULL, 3988.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makasae', [Definition] = NULL, [SortOrder] = 397.50 WHERE [Code] = 'mkz' END +SET [Description] = 'Makasae', [Definition] = NULL, [SortOrder] = 3988.00 WHERE [Code] = 'mkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mak', 'Makasar', NULL, 397.60) END +VALUES ('mak', 'Makasar', NULL, 3989.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makasar', [Definition] = NULL, [SortOrder] = 397.60 WHERE [Code] = 'mak' END +SET [Description] = 'Makasar', [Definition] = NULL, [SortOrder] = 3989.00 WHERE [Code] = 'mak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfp', 'Makassar Malay', NULL, 397.70) END +VALUES ('mfp', 'Makassar Malay', NULL, 3990.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makassar Malay', [Definition] = NULL, [SortOrder] = 397.70 WHERE [Code] = 'mfp' END +SET [Description] = 'Makassar Malay', [Definition] = NULL, [SortOrder] = 3990.00 WHERE [Code] = 'mfp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aup', 'Makayam', NULL, 397.80) END +VALUES ('aup', 'Makayam', NULL, 3991.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makayam', [Definition] = NULL, [SortOrder] = 397.80 WHERE [Code] = 'aup' END +SET [Description] = 'Makayam', [Definition] = NULL, [SortOrder] = 3991.00 WHERE [Code] = 'aup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmw', 'Makhuwa', NULL, 397.90) END +VALUES ('vmw', 'Makhuwa', NULL, 3992.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa', [Definition] = NULL, [SortOrder] = 397.90 WHERE [Code] = 'vmw' END +SET [Description] = 'Makhuwa', [Definition] = NULL, [SortOrder] = 3992.00 WHERE [Code] = 'vmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmc', 'Makhuwa-Marrevone', NULL, 398.00) END +VALUES ('xmc', 'Makhuwa-Marrevone', NULL, 3993.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Marrevone', [Definition] = NULL, [SortOrder] = 398.00 WHERE [Code] = 'xmc' END +SET [Description] = 'Makhuwa-Marrevone', [Definition] = NULL, [SortOrder] = 3993.00 WHERE [Code] = 'xmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgh', 'Makhuwa-Meetto', NULL, 398.10) END +VALUES ('mgh', 'Makhuwa-Meetto', NULL, 3994.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Meetto', [Definition] = NULL, [SortOrder] = 398.10 WHERE [Code] = 'mgh' END +SET [Description] = 'Makhuwa-Meetto', [Definition] = NULL, [SortOrder] = 3994.00 WHERE [Code] = 'mgh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhm', 'Makhuwa-Moniga', NULL, 398.20) END +VALUES ('mhm', 'Makhuwa-Moniga', NULL, 3995.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Moniga', [Definition] = NULL, [SortOrder] = 398.20 WHERE [Code] = 'mhm' END +SET [Description] = 'Makhuwa-Moniga', [Definition] = NULL, [SortOrder] = 3995.00 WHERE [Code] = 'mhm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsq', 'Makhuwa-Saka', NULL, 398.30) END +VALUES ('xsq', 'Makhuwa-Saka', NULL, 3996.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Saka', [Definition] = NULL, [SortOrder] = 398.30 WHERE [Code] = 'xsq' END +SET [Description] = 'Makhuwa-Saka', [Definition] = NULL, [SortOrder] = 3996.00 WHERE [Code] = 'xsq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmk', 'Makhuwa-Shirima', NULL, 398.40) END +VALUES ('vmk', 'Makhuwa-Shirima', NULL, 3997.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Shirima', [Definition] = NULL, [SortOrder] = 398.40 WHERE [Code] = 'vmk' END +SET [Description] = 'Makhuwa-Shirima', [Definition] = NULL, [SortOrder] = 3997.00 WHERE [Code] = 'vmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgf', 'Maklew', NULL, 398.50) END +VALUES ('mgf', 'Maklew', NULL, 3998.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maklew', [Definition] = NULL, [SortOrder] = 398.50 WHERE [Code] = 'mgf' END +SET [Description] = 'Maklew', [Definition] = NULL, [SortOrder] = 3998.00 WHERE [Code] = 'mgf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmh', 'Makolkol', NULL, 398.60) END +VALUES ('zmh', 'Makolkol', NULL, 3999.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makolkol', [Definition] = NULL, [SortOrder] = 398.60 WHERE [Code] = 'zmh' END +SET [Description] = 'Makolkol', [Definition] = NULL, [SortOrder] = 3999.00 WHERE [Code] = 'zmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kde', 'Makonde', NULL, 398.70) END +VALUES ('kde', 'Makonde', NULL, 4000.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makonde', [Definition] = NULL, [SortOrder] = 398.70 WHERE [Code] = 'kde' END +SET [Description] = 'Makonde', [Definition] = NULL, [SortOrder] = 4000.00 WHERE [Code] = 'kde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xak', 'Maku', NULL, 398.80) END +VALUES ('xak', 'Maku', NULL, 4001.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maku', [Definition] = NULL, [SortOrder] = 398.80 WHERE [Code] = 'xak' END +SET [Description] = 'Maku', [Definition] = NULL, [SortOrder] = 4001.00 WHERE [Code] = 'xak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lva', 'Maku''a', NULL, 398.90) END +VALUES ('lva', 'Maku''a', NULL, 4002.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maku''a', [Definition] = NULL, [SortOrder] = 398.90 WHERE [Code] = 'lva' END +SET [Description] = 'Maku''a', [Definition] = NULL, [SortOrder] = 4002.00 WHERE [Code] = 'lva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpu', 'Makuráp', NULL, 399.00) END +VALUES ('mpu', 'Makuráp', NULL, 4003.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makuráp', [Definition] = NULL, [SortOrder] = 399.00 WHERE [Code] = 'mpu' END +SET [Description] = 'Makuráp', [Definition] = NULL, [SortOrder] = 4003.00 WHERE [Code] = 'mpu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmn', 'Makuri Naga', NULL, 399.10) END +VALUES ('jmn', 'Makuri Naga', NULL, 4004.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makuri Naga', [Definition] = NULL, [SortOrder] = 399.10 WHERE [Code] = 'jmn' END +SET [Description] = 'Makuri Naga', [Definition] = NULL, [SortOrder] = 4004.00 WHERE [Code] = 'jmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymk', 'Makwe', NULL, 399.20) END +VALUES ('ymk', 'Makwe', NULL, 4005.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makwe', [Definition] = NULL, [SortOrder] = 399.20 WHERE [Code] = 'ymk' END +SET [Description] = 'Makwe', [Definition] = NULL, [SortOrder] = 4005.00 WHERE [Code] = 'ymk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umn', 'Makyan Naga', NULL, 399.30) END +VALUES ('umn', 'Makyan Naga', NULL, 4006.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makyan Naga', [Definition] = NULL, [SortOrder] = 399.30 WHERE [Code] = 'umn' END +SET [Description] = 'Makyan Naga', [Definition] = NULL, [SortOrder] = 4006.00 WHERE [Code] = 'umn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlf', 'Mal', NULL, 399.40) END +VALUES ('mlf', 'Mal', NULL, 4007.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mal', [Definition] = NULL, [SortOrder] = 399.40 WHERE [Code] = 'mlf' END +SET [Description] = 'Mal', [Definition] = NULL, [SortOrder] = 4007.00 WHERE [Code] = 'mlf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkb', 'Mal Paharia', NULL, 399.50) END +VALUES ('mkb', 'Mal Paharia', NULL, 4008.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mal Paharia', [Definition] = NULL, [SortOrder] = 399.50 WHERE [Code] = 'mkb' END +SET [Description] = 'Mal Paharia', [Definition] = NULL, [SortOrder] = 4008.00 WHERE [Code] = 'mkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruy', 'Mala (Nigeria)', NULL, 399.60) END +VALUES ('ruy', 'Mala (Nigeria)', NULL, 4009.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mala (Nigeria)', [Definition] = NULL, [SortOrder] = 399.60 WHERE [Code] = 'ruy' END +SET [Description] = 'Mala (Nigeria)', [Definition] = NULL, [SortOrder] = 4009.00 WHERE [Code] = 'ruy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ped') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ped', 'Mala (Papua New Guinea)', NULL, 399.70) END +VALUES ('ped', 'Mala (Papua New Guinea)', NULL, 4010.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mala (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 399.70 WHERE [Code] = 'ped' END +SET [Description] = 'Mala (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 4010.00 WHERE [Code] = 'ped' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ima') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ima', 'Mala Malasar', NULL, 399.80) END +VALUES ('ima', 'Mala Malasar', NULL, 4011.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mala Malasar', [Definition] = NULL, [SortOrder] = 399.80 WHERE [Code] = 'ima' END +SET [Description] = 'Mala Malasar', [Definition] = NULL, [SortOrder] = 4011.00 WHERE [Code] = 'ima' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccm', 'Malaccan Creole Malay', NULL, 399.90) END +VALUES ('ccm', 'Malaccan Creole Malay', NULL, 4012.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaccan Creole Malay', [Definition] = NULL, [SortOrder] = 399.90 WHERE [Code] = 'ccm' END +SET [Description] = 'Malaccan Creole Malay', [Definition] = NULL, [SortOrder] = 4012.00 WHERE [Code] = 'ccm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcm', 'Malaccan Creole Portuguese', NULL, 400.00) END +VALUES ('mcm', 'Malaccan Creole Portuguese', NULL, 4013.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaccan Creole Portuguese', [Definition] = NULL, [SortOrder] = 400.00 WHERE [Code] = 'mcm' END +SET [Description] = 'Malaccan Creole Portuguese', [Definition] = NULL, [SortOrder] = 4013.00 WHERE [Code] = 'mcm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlg', 'Malagasy', NULL, 400.10) END +VALUES ('mlg', 'Malagasy', NULL, 4014.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malagasy', [Definition] = NULL, [SortOrder] = 400.10 WHERE [Code] = 'mlg' END +SET [Description] = 'Malagasy', [Definition] = NULL, [SortOrder] = 4014.00 WHERE [Code] = 'mlg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpb', 'Malak Malak', NULL, 400.20) END +VALUES ('mpb', 'Malak Malak', NULL, 4015.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malak Malak', [Definition] = NULL, [SortOrder] = 400.20 WHERE [Code] = 'mpb' END +SET [Description] = 'Malak Malak', [Definition] = NULL, [SortOrder] = 4015.00 WHERE [Code] = 'mpb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmt', 'Malalamai', NULL, 400.30) END +VALUES ('mmt', 'Malalamai', NULL, 4016.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malalamai', [Definition] = NULL, [SortOrder] = 400.30 WHERE [Code] = 'mmt' END +SET [Description] = 'Malalamai', [Definition] = NULL, [SortOrder] = 4016.00 WHERE [Code] = 'mmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mln', 'Malango', NULL, 400.40) END +VALUES ('mln', 'Malango', NULL, 4017.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malango', [Definition] = NULL, [SortOrder] = 400.40 WHERE [Code] = 'mln' END +SET [Description] = 'Malango', [Definition] = NULL, [SortOrder] = 4017.00 WHERE [Code] = 'mln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjo', 'Malankuravan', NULL, 400.50) END +VALUES ('mjo', 'Malankuravan', NULL, 4018.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malankuravan', [Definition] = NULL, [SortOrder] = 400.50 WHERE [Code] = 'mjo' END +SET [Description] = 'Malankuravan', [Definition] = NULL, [SortOrder] = 4018.00 WHERE [Code] = 'mjo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjp', 'Malapandaram', NULL, 400.60) END +VALUES ('mjp', 'Malapandaram', NULL, 4019.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malapandaram', [Definition] = NULL, [SortOrder] = 400.60 WHERE [Code] = 'mjp' END +SET [Description] = 'Malapandaram', [Definition] = NULL, [SortOrder] = 4019.00 WHERE [Code] = 'mjp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjq', 'Malaryan', NULL, 400.70) END +VALUES ('mjq', 'Malaryan', NULL, 4020.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaryan', [Definition] = NULL, [SortOrder] = 400.70 WHERE [Code] = 'mjq' END +SET [Description] = 'Malaryan', [Definition] = NULL, [SortOrder] = 4020.00 WHERE [Code] = 'mjq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkr', 'Malas', NULL, 400.80) END +VALUES ('mkr', 'Malas', NULL, 4021.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malas', [Definition] = NULL, [SortOrder] = 400.80 WHERE [Code] = 'mkr' END +SET [Description] = 'Malas', [Definition] = NULL, [SortOrder] = 4021.00 WHERE [Code] = 'mkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymr', 'Malasar', NULL, 400.90) END +VALUES ('ymr', 'Malasar', NULL, 4022.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malasar', [Definition] = NULL, [SortOrder] = 400.90 WHERE [Code] = 'ymr' END +SET [Description] = 'Malasar', [Definition] = NULL, [SortOrder] = 4022.00 WHERE [Code] = 'ymr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjr', 'Malavedan', NULL, 401.00) END +VALUES ('mjr', 'Malavedan', NULL, 4023.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malavedan', [Definition] = NULL, [SortOrder] = 401.00 WHERE [Code] = 'mjr' END +SET [Description] = 'Malavedan', [Definition] = NULL, [SortOrder] = 4023.00 WHERE [Code] = 'mjr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lon', 'Malawi Lomwe', NULL, 401.10) END +VALUES ('lon', 'Malawi Lomwe', NULL, 4024.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malawi Lomwe', [Definition] = NULL, [SortOrder] = 401.10 WHERE [Code] = 'lon' END +SET [Description] = 'Malawi Lomwe', [Definition] = NULL, [SortOrder] = 4024.00 WHERE [Code] = 'lon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swk', 'Malawi Sena', NULL, 401.20) END +VALUES ('swk', 'Malawi Sena', NULL, 4025.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malawi Sena', [Definition] = NULL, [SortOrder] = 401.20 WHERE [Code] = 'swk' END +SET [Description] = 'Malawi Sena', [Definition] = NULL, [SortOrder] = 4025.00 WHERE [Code] = 'swk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lws', 'Malawian Sign Language', NULL, 401.30) END +VALUES ('lws', 'Malawian Sign Language', NULL, 4026.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malawian Sign Language', [Definition] = NULL, [SortOrder] = 401.30 WHERE [Code] = 'lws' END +SET [Description] = 'Malawian Sign Language', [Definition] = NULL, [SortOrder] = 4026.00 WHERE [Code] = 'lws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zlm', 'Malay (individual language)', NULL, 401.40) END +VALUES ('zlm', 'Malay (individual language)', NULL, 4027.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malay (individual language)', [Definition] = NULL, [SortOrder] = 401.40 WHERE [Code] = 'zlm' END +SET [Description] = 'Malay (individual language)', [Definition] = NULL, [SortOrder] = 4027.00 WHERE [Code] = 'zlm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msa', 'Malay (macrolanguage)', NULL, 401.50) END +VALUES ('msa', 'Malay (macrolanguage)', NULL, 4028.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malay (macrolanguage)', [Definition] = NULL, [SortOrder] = 401.50 WHERE [Code] = 'msa' END +SET [Description] = 'Malay (macrolanguage)', [Definition] = NULL, [SortOrder] = 4028.00 WHERE [Code] = 'msa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mal', 'Malayalam', NULL, 401.60) END +VALUES ('mal', 'Malayalam', NULL, 4029.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malayalam', [Definition] = NULL, [SortOrder] = 401.60 WHERE [Code] = 'mal' END +SET [Description] = 'Malayalam', [Definition] = NULL, [SortOrder] = 4029.00 WHERE [Code] = 'mal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdy', 'Malayic Dayak', NULL, 401.70) END +VALUES ('xdy', 'Malayic Dayak', NULL, 4030.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malayic Dayak', [Definition] = NULL, [SortOrder] = 401.70 WHERE [Code] = 'xdy' END +SET [Description] = 'Malayic Dayak', [Definition] = NULL, [SortOrder] = 4030.00 WHERE [Code] = 'xdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlz', 'Malaynon', NULL, 401.80) END +VALUES ('mlz', 'Malaynon', NULL, 4031.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaynon', [Definition] = NULL, [SortOrder] = 401.80 WHERE [Code] = 'mlz' END +SET [Description] = 'Malaynon', [Definition] = NULL, [SortOrder] = 4031.00 WHERE [Code] = 'mlz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbp', 'Malayo', NULL, 401.90) END +VALUES ('mbp', 'Malayo', NULL, 4032.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malayo', [Definition] = NULL, [SortOrder] = 401.90 WHERE [Code] = 'mbp' END +SET [Description] = 'Malayo', [Definition] = NULL, [SortOrder] = 4032.00 WHERE [Code] = 'mbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xml', 'Malaysian Sign Language', NULL, 402.00) END +VALUES ('xml', 'Malaysian Sign Language', NULL, 4033.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaysian Sign Language', [Definition] = NULL, [SortOrder] = 402.00 WHERE [Code] = 'xml' END +SET [Description] = 'Malaysian Sign Language', [Definition] = NULL, [SortOrder] = 4033.00 WHERE [Code] = 'xml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfo', 'Malba Birifor', NULL, 402.10) END +VALUES ('bfo', 'Malba Birifor', NULL, 4034.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malba Birifor', [Definition] = NULL, [SortOrder] = 402.10 WHERE [Code] = 'bfo' END +SET [Description] = 'Malba Birifor', [Definition] = NULL, [SortOrder] = 4034.00 WHERE [Code] = 'bfo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdy', 'Male (Ethiopia)', NULL, 402.20) END +VALUES ('mdy', 'Male (Ethiopia)', NULL, 4035.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Male (Ethiopia)', [Definition] = NULL, [SortOrder] = 402.20 WHERE [Code] = 'mdy' END +SET [Description] = 'Male (Ethiopia)', [Definition] = NULL, [SortOrder] = 4035.00 WHERE [Code] = 'mdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdc', 'Male (Papua New Guinea)', NULL, 402.30) END +VALUES ('mdc', 'Male (Papua New Guinea)', NULL, 4036.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Male (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 402.30 WHERE [Code] = 'mdc' END +SET [Description] = 'Male (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 4036.00 WHERE [Code] = 'mdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pqm', 'Malecite-Passamaquoddy', NULL, 402.40) END +VALUES ('pqm', 'Malecite-Passamaquoddy', NULL, 4037.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malecite-Passamaquoddy', [Definition] = NULL, [SortOrder] = 402.40 WHERE [Code] = 'pqm' END +SET [Description] = 'Malecite-Passamaquoddy', [Definition] = NULL, [SortOrder] = 4037.00 WHERE [Code] = 'pqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gut', 'Maléku Jaíka', NULL, 402.50) END +VALUES ('gut', 'Maléku Jaíka', NULL, 4038.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maléku Jaíka', [Definition] = NULL, [SortOrder] = 402.50 WHERE [Code] = 'gut' END +SET [Description] = 'Maléku Jaíka', [Definition] = NULL, [SortOrder] = 4038.00 WHERE [Code] = 'gut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkt', 'Maleng', NULL, 402.60) END +VALUES ('pkt', 'Maleng', NULL, 4039.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maleng', [Definition] = NULL, [SortOrder] = 402.60 WHERE [Code] = 'pkt' END +SET [Description] = 'Maleng', [Definition] = NULL, [SortOrder] = 4039.00 WHERE [Code] = 'pkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgl', 'Maleu-Kilenge', NULL, 402.70) END +VALUES ('mgl', 'Maleu-Kilenge', NULL, 4040.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maleu-Kilenge', [Definition] = NULL, [SortOrder] = 402.70 WHERE [Code] = 'mgl' END +SET [Description] = 'Maleu-Kilenge', [Definition] = NULL, [SortOrder] = 4040.00 WHERE [Code] = 'mgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlx', 'Malfaxal', NULL, 402.80) END +VALUES ('mlx', 'Malfaxal', NULL, 4041.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malfaxal', [Definition] = NULL, [SortOrder] = 402.80 WHERE [Code] = 'mlx' END +SET [Description] = 'Malfaxal', [Definition] = NULL, [SortOrder] = 4041.00 WHERE [Code] = 'mlx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vml', 'Malgana', NULL, 402.90) END +VALUES ('vml', 'Malgana', NULL, 4042.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malgana', [Definition] = NULL, [SortOrder] = 402.90 WHERE [Code] = 'vml' END +SET [Description] = 'Malgana', [Definition] = NULL, [SortOrder] = 4042.00 WHERE [Code] = 'vml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxf', 'Malgbe', NULL, 403.00) END +VALUES ('mxf', 'Malgbe', NULL, 4043.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malgbe', [Definition] = NULL, [SortOrder] = 403.00 WHERE [Code] = 'mxf' END +SET [Description] = 'Malgbe', [Definition] = NULL, [SortOrder] = 4043.00 WHERE [Code] = 'mxf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcc', 'Mali', NULL, 403.10) END +VALUES ('gcc', 'Mali', NULL, 4044.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mali', [Definition] = NULL, [SortOrder] = 403.10 WHERE [Code] = 'gcc' END +SET [Description] = 'Mali', [Definition] = NULL, [SortOrder] = 4044.00 WHERE [Code] = 'gcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgq', 'Malila', NULL, 403.20) END +VALUES ('mgq', 'Malila', NULL, 4045.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malila', [Definition] = NULL, [SortOrder] = 403.20 WHERE [Code] = 'mgq' END +SET [Description] = 'Malila', [Definition] = NULL, [SortOrder] = 4045.00 WHERE [Code] = 'mgq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzd', 'Malimba', NULL, 403.30) END +VALUES ('mzd', 'Malimba', NULL, 4046.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malimba', [Definition] = NULL, [SortOrder] = 403.30 WHERE [Code] = 'mzd' END +SET [Description] = 'Malimba', [Definition] = NULL, [SortOrder] = 4046.00 WHERE [Code] = 'mzd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mli', 'Malimpung', NULL, 403.40) END +VALUES ('mli', 'Malimpung', NULL, 4047.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malimpung', [Definition] = NULL, [SortOrder] = 403.40 WHERE [Code] = 'mli' END +SET [Description] = 'Malimpung', [Definition] = NULL, [SortOrder] = 4047.00 WHERE [Code] = 'mli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcf', 'Malinaltepec Me''phaa', NULL, 403.50) END +VALUES ('tcf', 'Malinaltepec Me''phaa', NULL, 4048.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malinaltepec Me''phaa', [Definition] = NULL, [SortOrder] = 403.50 WHERE [Code] = 'tcf' END +SET [Description] = 'Malinaltepec Me''phaa', [Definition] = NULL, [SortOrder] = 4048.00 WHERE [Code] = 'tcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mla', 'Malo', NULL, 403.60) END +VALUES ('mla', 'Malo', NULL, 4049.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malo', [Definition] = NULL, [SortOrder] = 403.60 WHERE [Code] = 'mla' END +SET [Description] = 'Malo', [Definition] = NULL, [SortOrder] = 4049.00 WHERE [Code] = 'mla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbk', 'Malol', NULL, 403.70) END +VALUES ('mbk', 'Malol', NULL, 4050.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malol', [Definition] = NULL, [SortOrder] = 403.70 WHERE [Code] = 'mbk' END +SET [Description] = 'Malol', [Definition] = NULL, [SortOrder] = 4050.00 WHERE [Code] = 'mbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlt', 'Maltese', NULL, 403.80) END +VALUES ('mlt', 'Maltese', NULL, 4051.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maltese', [Definition] = NULL, [SortOrder] = 403.80 WHERE [Code] = 'mlt' END +SET [Description] = 'Maltese', [Definition] = NULL, [SortOrder] = 4051.00 WHERE [Code] = 'mlt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdl', 'Maltese Sign Language', NULL, 403.90) END +VALUES ('mdl', 'Maltese Sign Language', NULL, 4052.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maltese Sign Language', [Definition] = NULL, [SortOrder] = 403.90 WHERE [Code] = 'mdl' END +SET [Description] = 'Maltese Sign Language', [Definition] = NULL, [SortOrder] = 4052.00 WHERE [Code] = 'mdl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mll', 'Malua Bay', NULL, 404.00) END +VALUES ('mll', 'Malua Bay', NULL, 4053.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malua Bay', [Definition] = NULL, [SortOrder] = 404.00 WHERE [Code] = 'mll' END +SET [Description] = 'Malua Bay', [Definition] = NULL, [SortOrder] = 4053.00 WHERE [Code] = 'mll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mup', 'Malvi', NULL, 404.10) END +VALUES ('mup', 'Malvi', NULL, 4054.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malvi', [Definition] = NULL, [SortOrder] = 404.10 WHERE [Code] = 'mup' END +SET [Description] = 'Malvi', [Definition] = NULL, [SortOrder] = 4054.00 WHERE [Code] = 'mup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yga', 'Malyangapa', NULL, 404.20) END +VALUES ('yga', 'Malyangapa', NULL, 4055.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malyangapa', [Definition] = NULL, [SortOrder] = 404.20 WHERE [Code] = 'yga' END +SET [Description] = 'Malyangapa', [Definition] = NULL, [SortOrder] = 4055.00 WHERE [Code] = 'yga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mam', 'Mam', NULL, 404.30) END +VALUES ('mam', 'Mam', NULL, 4056.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mam', [Definition] = NULL, [SortOrder] = 404.30 WHERE [Code] = 'mam' END +SET [Description] = 'Mam', [Definition] = NULL, [SortOrder] = 4056.00 WHERE [Code] = 'mam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mma', 'Mama', NULL, 404.40) END +VALUES ('mma', 'Mama', NULL, 4057.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mama', [Definition] = NULL, [SortOrder] = 404.40 WHERE [Code] = 'mma' END +SET [Description] = 'Mama', [Definition] = NULL, [SortOrder] = 4057.00 WHERE [Code] = 'mma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhf', 'Mamaa', NULL, 404.50) END +VALUES ('mhf', 'Mamaa', NULL, 4058.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamaa', [Definition] = NULL, [SortOrder] = 404.50 WHERE [Code] = 'mhf' END +SET [Description] = 'Mamaa', [Definition] = NULL, [SortOrder] = 4058.00 WHERE [Code] = 'mhf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmd', 'Mamaindé', NULL, 404.60) END +VALUES ('wmd', 'Mamaindé', NULL, 4059.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamaindé', [Definition] = NULL, [SortOrder] = 404.60 WHERE [Code] = 'wmd' END +SET [Description] = 'Mamaindé', [Definition] = NULL, [SortOrder] = 4059.00 WHERE [Code] = 'wmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmn', 'Mamanwa', NULL, 404.70) END +VALUES ('mmn', 'Mamanwa', NULL, 4060.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamanwa', [Definition] = NULL, [SortOrder] = 404.70 WHERE [Code] = 'mmn' END +SET [Description] = 'Mamanwa', [Definition] = NULL, [SortOrder] = 4060.00 WHERE [Code] = 'mmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myk', 'Mamara Senoufo', NULL, 404.80) END +VALUES ('myk', 'Mamara Senoufo', NULL, 4061.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamara Senoufo', [Definition] = NULL, [SortOrder] = 404.80 WHERE [Code] = 'myk' END +SET [Description] = 'Mamara Senoufo', [Definition] = NULL, [SortOrder] = 4061.00 WHERE [Code] = 'myk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqj', 'Mamasa', NULL, 404.90) END +VALUES ('mqj', 'Mamasa', NULL, 4062.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamasa', [Definition] = NULL, [SortOrder] = 404.90 WHERE [Code] = 'mqj' END +SET [Description] = 'Mamasa', [Definition] = NULL, [SortOrder] = 4062.00 WHERE [Code] = 'mqj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgm', 'Mambae', NULL, 405.00) END +VALUES ('mgm', 'Mambae', NULL, 4063.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mambae', [Definition] = NULL, [SortOrder] = 405.00 WHERE [Code] = 'mgm' END +SET [Description] = 'Mambae', [Definition] = NULL, [SortOrder] = 4063.00 WHERE [Code] = 'mgm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcs', 'Mambai', NULL, 405.10) END +VALUES ('mcs', 'Mambai', NULL, 4064.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mambai', [Definition] = NULL, [SortOrder] = 405.10 WHERE [Code] = 'mcs' END +SET [Description] = 'Mambai', [Definition] = NULL, [SortOrder] = 4064.00 WHERE [Code] = 'mcs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvd', 'Mamboru', NULL, 405.20) END +VALUES ('mvd', 'Mamboru', NULL, 4065.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamboru', [Definition] = NULL, [SortOrder] = 405.20 WHERE [Code] = 'mvd' END +SET [Description] = 'Mamboru', [Definition] = NULL, [SortOrder] = 4065.00 WHERE [Code] = 'mvd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgr', 'Mambwe-Lungu', NULL, 405.30) END +VALUES ('mgr', 'Mambwe-Lungu', NULL, 4066.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mambwe-Lungu', [Definition] = NULL, [SortOrder] = 405.30 WHERE [Code] = 'mgr' END +SET [Description] = 'Mambwe-Lungu', [Definition] = NULL, [SortOrder] = 4066.00 WHERE [Code] = 'mgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maw', 'Mampruli', NULL, 405.40) END +VALUES ('maw', 'Mampruli', NULL, 4067.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mampruli', [Definition] = NULL, [SortOrder] = 405.40 WHERE [Code] = 'maw' END +SET [Description] = 'Mampruli', [Definition] = NULL, [SortOrder] = 4067.00 WHERE [Code] = 'maw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqx', 'Mamuju', NULL, 405.50) END +VALUES ('mqx', 'Mamuju', NULL, 4068.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamuju', [Definition] = NULL, [SortOrder] = 405.50 WHERE [Code] = 'mqx' END +SET [Description] = 'Mamuju', [Definition] = NULL, [SortOrder] = 4068.00 WHERE [Code] = 'mqx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emm', 'Mamulique', NULL, 405.60) END +VALUES ('emm', 'Mamulique', NULL, 4069.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamulique', [Definition] = NULL, [SortOrder] = 405.60 WHERE [Code] = 'emm' END +SET [Description] = 'Mamulique', [Definition] = NULL, [SortOrder] = 4069.00 WHERE [Code] = 'emm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdf', 'Mamusi', NULL, 405.70) END +VALUES ('kdf', 'Mamusi', NULL, 4070.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamusi', [Definition] = NULL, [SortOrder] = 405.70 WHERE [Code] = 'kdf' END +SET [Description] = 'Mamusi', [Definition] = NULL, [SortOrder] = 4070.00 WHERE [Code] = 'kdf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdi', 'Mamvu', NULL, 405.80) END +VALUES ('mdi', 'Mamvu', NULL, 4071.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamvu', [Definition] = NULL, [SortOrder] = 405.80 WHERE [Code] = 'mdi' END +SET [Description] = 'Mamvu', [Definition] = NULL, [SortOrder] = 4071.00 WHERE [Code] = 'mdi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mml', 'Man Met', NULL, 405.90) END +VALUES ('mml', 'Man Met', NULL, 4072.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Man Met', [Definition] = NULL, [SortOrder] = 405.90 WHERE [Code] = 'mml' END +SET [Description] = 'Man Met', [Definition] = NULL, [SortOrder] = 4072.00 WHERE [Code] = 'mml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmm', 'Manado Malay', NULL, 406.00) END +VALUES ('xmm', 'Manado Malay', NULL, 4073.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manado Malay', [Definition] = NULL, [SortOrder] = 406.00 WHERE [Code] = 'xmm' END +SET [Description] = 'Manado Malay', [Definition] = NULL, [SortOrder] = 4073.00 WHERE [Code] = 'xmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mva', 'Manam', NULL, 406.10) END +VALUES ('mva', 'Manam', NULL, 4074.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manam', [Definition] = NULL, [SortOrder] = 406.10 WHERE [Code] = 'mva' END +SET [Description] = 'Manam', [Definition] = NULL, [SortOrder] = 4074.00 WHERE [Code] = 'mva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mle', 'Manambu', NULL, 406.20) END +VALUES ('mle', 'Manambu', NULL, 4075.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manambu', [Definition] = NULL, [SortOrder] = 406.20 WHERE [Code] = 'mle' END +SET [Description] = 'Manambu', [Definition] = NULL, [SortOrder] = 4075.00 WHERE [Code] = 'mle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmm', 'Manangba', NULL, 406.30) END +VALUES ('nmm', 'Manangba', NULL, 4076.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manangba', [Definition] = NULL, [SortOrder] = 406.30 WHERE [Code] = 'nmm' END +SET [Description] = 'Manangba', [Definition] = NULL, [SortOrder] = 4076.00 WHERE [Code] = 'nmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'znk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('znk', 'Manangkari', NULL, 406.40) END +VALUES ('znk', 'Manangkari', NULL, 4077.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manangkari', [Definition] = NULL, [SortOrder] = 406.40 WHERE [Code] = 'znk' END +SET [Description] = 'Manangkari', [Definition] = NULL, [SortOrder] = 4077.00 WHERE [Code] = 'znk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnc', 'Manchu', NULL, 406.50) END +VALUES ('mnc', 'Manchu', NULL, 4078.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manchu', [Definition] = NULL, [SortOrder] = 406.50 WHERE [Code] = 'mnc' END +SET [Description] = 'Manchu', [Definition] = NULL, [SortOrder] = 4078.00 WHERE [Code] = 'mnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zma', 'Manda (Australia)', NULL, 406.60) END +VALUES ('zma', 'Manda (Australia)', NULL, 4079.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manda (Australia)', [Definition] = NULL, [SortOrder] = 406.60 WHERE [Code] = 'zma' END +SET [Description] = 'Manda (Australia)', [Definition] = NULL, [SortOrder] = 4079.00 WHERE [Code] = 'zma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mha', 'Manda (India)', NULL, 406.70) END +VALUES ('mha', 'Manda (India)', NULL, 4080.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manda (India)', [Definition] = NULL, [SortOrder] = 406.70 WHERE [Code] = 'mha' END +SET [Description] = 'Manda (India)', [Definition] = NULL, [SortOrder] = 4080.00 WHERE [Code] = 'mha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgs', 'Manda (Tanzania)', NULL, 406.80) END +VALUES ('mgs', 'Manda (Tanzania)', NULL, 4081.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manda (Tanzania)', [Definition] = NULL, [SortOrder] = 406.80 WHERE [Code] = 'mgs' END +SET [Description] = 'Manda (Tanzania)', [Definition] = NULL, [SortOrder] = 4081.00 WHERE [Code] = 'mgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mht', 'Mandahuaca', NULL, 406.90) END +VALUES ('mht', 'Mandahuaca', NULL, 4082.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandahuaca', [Definition] = NULL, [SortOrder] = 406.90 WHERE [Code] = 'mht' END +SET [Description] = 'Mandahuaca', [Definition] = NULL, [SortOrder] = 4082.00 WHERE [Code] = 'mht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mid', 'Mandaic', NULL, 407.00) END +VALUES ('mid', 'Mandaic', NULL, 4083.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandaic', [Definition] = NULL, [SortOrder] = 407.00 WHERE [Code] = 'mid' END +SET [Description] = 'Mandaic', [Definition] = NULL, [SortOrder] = 4083.00 WHERE [Code] = 'mid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhq', 'Mandan', NULL, 407.10) END +VALUES ('mhq', 'Mandan', NULL, 4084.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandan', [Definition] = NULL, [SortOrder] = 407.10 WHERE [Code] = 'mhq' END +SET [Description] = 'Mandan', [Definition] = NULL, [SortOrder] = 4084.00 WHERE [Code] = 'mhq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmk', 'Mandandanyi', NULL, 407.20) END +VALUES ('zmk', 'Mandandanyi', NULL, 4085.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandandanyi', [Definition] = NULL, [SortOrder] = 407.20 WHERE [Code] = 'zmk' END +SET [Description] = 'Mandandanyi', [Definition] = NULL, [SortOrder] = 4085.00 WHERE [Code] = 'zmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdr', 'Mandar', NULL, 407.30) END +VALUES ('mdr', 'Mandar', NULL, 4086.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandar', [Definition] = NULL, [SortOrder] = 407.30 WHERE [Code] = 'mdr' END +SET [Description] = 'Mandar', [Definition] = NULL, [SortOrder] = 4086.00 WHERE [Code] = 'mdr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbf', 'Mandara', NULL, 407.40) END +VALUES ('tbf', 'Mandara', NULL, 4087.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandara', [Definition] = NULL, [SortOrder] = 407.40 WHERE [Code] = 'tbf' END +SET [Description] = 'Mandara', [Definition] = NULL, [SortOrder] = 4087.00 WHERE [Code] = 'tbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqu', 'Mandari', NULL, 407.50) END +VALUES ('mqu', 'Mandari', NULL, 4088.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandari', [Definition] = NULL, [SortOrder] = 407.50 WHERE [Code] = 'mqu' END +SET [Description] = 'Mandari', [Definition] = NULL, [SortOrder] = 4088.00 WHERE [Code] = 'mqu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmn', 'Mandarin Chinese', NULL, 407.60) END +VALUES ('cmn', 'Mandarin Chinese', NULL, 4089.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandarin Chinese', [Definition] = NULL, [SortOrder] = 407.60 WHERE [Code] = 'cmn' END +SET [Description] = 'Mandarin Chinese', [Definition] = NULL, [SortOrder] = 4089.00 WHERE [Code] = 'cmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mry', 'Mandaya', NULL, 407.70) END +VALUES ('mry', 'Mandaya', NULL, 4090.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandaya', [Definition] = NULL, [SortOrder] = 407.70 WHERE [Code] = 'mry' END +SET [Description] = 'Mandaya', [Definition] = NULL, [SortOrder] = 4090.00 WHERE [Code] = 'mry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjl', 'Mandeali', NULL, 407.80) END +VALUES ('mjl', 'Mandeali', NULL, 4091.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandeali', [Definition] = NULL, [SortOrder] = 407.80 WHERE [Code] = 'mjl' END +SET [Description] = 'Mandeali', [Definition] = NULL, [SortOrder] = 4091.00 WHERE [Code] = 'mjl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqr', 'Mander', NULL, 407.90) END +VALUES ('mqr', 'Mander', NULL, 4092.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mander', [Definition] = NULL, [SortOrder] = 407.90 WHERE [Code] = 'mqr' END +SET [Description] = 'Mander', [Definition] = NULL, [SortOrder] = 4092.00 WHERE [Code] = 'mqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'man') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('man', 'Mandingo', NULL, 408.00) END +VALUES ('man', 'Mandingo', NULL, 4093.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandingo', [Definition] = NULL, [SortOrder] = 408.00 WHERE [Code] = 'man' END +SET [Description] = 'Mandingo', [Definition] = NULL, [SortOrder] = 4093.00 WHERE [Code] = 'man' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnk', 'Mandinka', NULL, 408.10) END +VALUES ('mnk', 'Mandinka', NULL, 4094.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandinka', [Definition] = NULL, [SortOrder] = 408.10 WHERE [Code] = 'mnk' END +SET [Description] = 'Mandinka', [Definition] = NULL, [SortOrder] = 4094.00 WHERE [Code] = 'mnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfv', 'Mandjak', NULL, 408.20) END +VALUES ('mfv', 'Mandjak', NULL, 4095.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandjak', [Definition] = NULL, [SortOrder] = 408.20 WHERE [Code] = 'mfv' END +SET [Description] = 'Mandjak', [Definition] = NULL, [SortOrder] = 4095.00 WHERE [Code] = 'mfv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aax', 'Mandobo Atas', NULL, 408.30) END +VALUES ('aax', 'Mandobo Atas', NULL, 4096.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandobo Atas', [Definition] = NULL, [SortOrder] = 408.30 WHERE [Code] = 'aax' END +SET [Description] = 'Mandobo Atas', [Definition] = NULL, [SortOrder] = 4096.00 WHERE [Code] = 'aax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwp', 'Mandobo Bawah', NULL, 408.40) END +VALUES ('bwp', 'Mandobo Bawah', NULL, 4097.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandobo Bawah', [Definition] = NULL, [SortOrder] = 408.40 WHERE [Code] = 'bwp' END +SET [Description] = 'Mandobo Bawah', [Definition] = NULL, [SortOrder] = 4097.00 WHERE [Code] = 'bwp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jet', 'Manem', NULL, 408.50) END +VALUES ('jet', 'Manem', NULL, 4098.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manem', [Definition] = NULL, [SortOrder] = 408.50 WHERE [Code] = 'jet' END +SET [Description] = 'Manem', [Definition] = NULL, [SortOrder] = 4098.00 WHERE [Code] = 'jet' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zng', 'Mang', NULL, 408.60) END +VALUES ('zng', 'Mang', NULL, 4099.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mang', [Definition] = NULL, [SortOrder] = 408.60 WHERE [Code] = 'zng' END +SET [Description] = 'Mang', [Definition] = NULL, [SortOrder] = 4099.00 WHERE [Code] = 'zng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kby', 'Manga Kanuri', NULL, 408.70) END +VALUES ('kby', 'Manga Kanuri', NULL, 4100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manga Kanuri', [Definition] = NULL, [SortOrder] = 408.70 WHERE [Code] = 'kby' END +SET [Description] = 'Manga Kanuri', [Definition] = NULL, [SortOrder] = 4100.00 WHERE [Code] = 'kby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mem', 'Mangala', NULL, 408.80) END +VALUES ('mem', 'Mangala', NULL, 4101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangala', [Definition] = NULL, [SortOrder] = 408.80 WHERE [Code] = 'mem' END +SET [Description] = 'Mangala', [Definition] = NULL, [SortOrder] = 4101.00 WHERE [Code] = 'mem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrv', 'Mangareva', NULL, 408.90) END +VALUES ('mrv', 'Mangareva', NULL, 4102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangareva', [Definition] = NULL, [SortOrder] = 408.90 WHERE [Code] = 'mrv' END +SET [Description] = 'Mangareva', [Definition] = NULL, [SortOrder] = 4102.00 WHERE [Code] = 'mrv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpc', 'Mangarrayi', NULL, 409.00) END +VALUES ('mpc', 'Mangarrayi', NULL, 4103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangarrayi', [Definition] = NULL, [SortOrder] = 409.00 WHERE [Code] = 'mpc' END +SET [Description] = 'Mangarrayi', [Definition] = NULL, [SortOrder] = 4103.00 WHERE [Code] = 'mpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zns', 'Mangas', NULL, 409.10) END +VALUES ('zns', 'Mangas', NULL, 4104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangas', [Definition] = NULL, [SortOrder] = 409.10 WHERE [Code] = 'zns' END +SET [Description] = 'Mangas', [Definition] = NULL, [SortOrder] = 4104.00 WHERE [Code] = 'zns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myj', 'Mangayat', NULL, 409.20) END +VALUES ('myj', 'Mangayat', NULL, 4105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangayat', [Definition] = NULL, [SortOrder] = 409.20 WHERE [Code] = 'myj' END +SET [Description] = 'Mangayat', [Definition] = NULL, [SortOrder] = 4105.00 WHERE [Code] = 'myj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdj', 'Mangbetu', NULL, 409.30) END +VALUES ('mdj', 'Mangbetu', NULL, 4106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangbetu', [Definition] = NULL, [SortOrder] = 409.30 WHERE [Code] = 'mdj' END +SET [Description] = 'Mangbetu', [Definition] = NULL, [SortOrder] = 4106.00 WHERE [Code] = 'mdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdk', 'Mangbutu', NULL, 409.40) END +VALUES ('mdk', 'Mangbutu', NULL, 4107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangbutu', [Definition] = NULL, [SortOrder] = 409.40 WHERE [Code] = 'mdk' END +SET [Description] = 'Mangbutu', [Definition] = NULL, [SortOrder] = 4107.00 WHERE [Code] = 'mdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zme', 'Mangerr', NULL, 409.50) END +VALUES ('zme', 'Mangerr', NULL, 4108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangerr', [Definition] = NULL, [SortOrder] = 409.50 WHERE [Code] = 'zme' END +SET [Description] = 'Mangerr', [Definition] = NULL, [SortOrder] = 4108.00 WHERE [Code] = 'zme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmo', 'Mangga Buang', NULL, 409.60) END +VALUES ('mmo', 'Mangga Buang', NULL, 4109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangga Buang', [Definition] = NULL, [SortOrder] = 409.60 WHERE [Code] = 'mmo' END +SET [Description] = 'Mangga Buang', [Definition] = NULL, [SortOrder] = 4109.00 WHERE [Code] = 'mmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqy', 'Manggarai', NULL, 409.70) END +VALUES ('mqy', 'Manggarai', NULL, 4110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manggarai', [Definition] = NULL, [SortOrder] = 409.70 WHERE [Code] = 'mqy' END +SET [Description] = 'Manggarai', [Definition] = NULL, [SortOrder] = 4110.00 WHERE [Code] = 'mqy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mge', 'Mango', NULL, 409.80) END +VALUES ('mge', 'Mango', NULL, 4111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mango', [Definition] = NULL, [SortOrder] = 409.80 WHERE [Code] = 'mge' END +SET [Description] = 'Mango', [Definition] = NULL, [SortOrder] = 4111.00 WHERE [Code] = 'mge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqc', 'Mangole', NULL, 409.90) END +VALUES ('mqc', 'Mangole', NULL, 4112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangole', [Definition] = NULL, [SortOrder] = 409.90 WHERE [Code] = 'mqc' END +SET [Description] = 'Mangole', [Definition] = NULL, [SortOrder] = 4112.00 WHERE [Code] = 'mqc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbh', 'Mangseng', NULL, 410.00) END +VALUES ('mbh', 'Mangseng', NULL, 4113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangseng', [Definition] = NULL, [SortOrder] = 410.00 WHERE [Code] = 'mbh' END +SET [Description] = 'Mangseng', [Definition] = NULL, [SortOrder] = 4113.00 WHERE [Code] = 'mbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mom', 'Mangue', NULL, 410.10) END +VALUES ('mom', 'Mangue', NULL, 4114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangue', [Definition] = NULL, [SortOrder] = 410.10 WHERE [Code] = 'mom' END +SET [Description] = 'Mangue', [Definition] = NULL, [SortOrder] = 4114.00 WHERE [Code] = 'mom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmn', 'Manichaean Middle Persian', NULL, 410.20) END +VALUES ('xmn', 'Manichaean Middle Persian', NULL, 4115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manichaean Middle Persian', [Definition] = NULL, [SortOrder] = 410.20 WHERE [Code] = 'xmn' END +SET [Description] = 'Manichaean Middle Persian', [Definition] = NULL, [SortOrder] = 4115.00 WHERE [Code] = 'xmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abd', 'Manide', NULL, 410.30) END +VALUES ('abd', 'Manide', NULL, 4116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manide', [Definition] = NULL, [SortOrder] = 410.30 WHERE [Code] = 'abd' END +SET [Description] = 'Manide', [Definition] = NULL, [SortOrder] = 4116.00 WHERE [Code] = 'abd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnx', 'Manikion', NULL, 410.40) END +VALUES ('mnx', 'Manikion', NULL, 4117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manikion', [Definition] = NULL, [SortOrder] = 410.40 WHERE [Code] = 'mnx' END +SET [Description] = 'Manikion', [Definition] = NULL, [SortOrder] = 4117.00 WHERE [Code] = 'mnx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqp', 'Manipa', NULL, 410.50) END +VALUES ('mqp', 'Manipa', NULL, 4118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manipa', [Definition] = NULL, [SortOrder] = 410.50 WHERE [Code] = 'mqp' END +SET [Description] = 'Manipa', [Definition] = NULL, [SortOrder] = 4118.00 WHERE [Code] = 'mqp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mni', 'Manipuri', NULL, 410.60) END +VALUES ('mni', 'Manipuri', NULL, 4119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manipuri', [Definition] = NULL, [SortOrder] = 410.60 WHERE [Code] = 'mni' END +SET [Description] = 'Manipuri', [Definition] = NULL, [SortOrder] = 4119.00 WHERE [Code] = 'mni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knf', 'Mankanya', NULL, 410.70) END +VALUES ('knf', 'Mankanya', NULL, 4120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mankanya', [Definition] = NULL, [SortOrder] = 410.70 WHERE [Code] = 'knf' END +SET [Description] = 'Mankanya', [Definition] = NULL, [SortOrder] = 4120.00 WHERE [Code] = 'knf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlm', 'Mankiyali', NULL, 410.80) END +VALUES ('nlm', 'Mankiyali', NULL, 4121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mankiyali', [Definition] = NULL, [SortOrder] = 410.80 WHERE [Code] = 'nlm' END +SET [Description] = 'Mankiyali', [Definition] = NULL, [SortOrder] = 4121.00 WHERE [Code] = 'nlm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mju', 'Manna-Dora', NULL, 410.90) END +VALUES ('mju', 'Manna-Dora', NULL, 4122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manna-Dora', [Definition] = NULL, [SortOrder] = 410.90 WHERE [Code] = 'mju' END +SET [Description] = 'Manna-Dora', [Definition] = NULL, [SortOrder] = 4122.00 WHERE [Code] = 'mju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjv', 'Mannan', NULL, 411.00) END +VALUES ('mjv', 'Mannan', NULL, 4123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mannan', [Definition] = NULL, [SortOrder] = 411.00 WHERE [Code] = 'mjv' END +SET [Description] = 'Mannan', [Definition] = NULL, [SortOrder] = 4123.00 WHERE [Code] = 'mjv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mev', 'Mano', NULL, 411.10) END +VALUES ('mev', 'Mano', NULL, 4124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mano', [Definition] = NULL, [SortOrder] = 411.10 WHERE [Code] = 'mev' END +SET [Description] = 'Mano', [Definition] = NULL, [SortOrder] = 4124.00 WHERE [Code] = 'mev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woo', 'Manombai', NULL, 411.20) END +VALUES ('woo', 'Manombai', NULL, 4125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manombai', [Definition] = NULL, [SortOrder] = 411.20 WHERE [Code] = 'woo' END +SET [Description] = 'Manombai', [Definition] = NULL, [SortOrder] = 4125.00 WHERE [Code] = 'woo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msk', 'Mansaka', NULL, 411.30) END +VALUES ('msk', 'Mansaka', NULL, 4126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mansaka', [Definition] = NULL, [SortOrder] = 411.30 WHERE [Code] = 'msk' END +SET [Description] = 'Mansaka', [Definition] = NULL, [SortOrder] = 4126.00 WHERE [Code] = 'msk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mns', 'Mansi', NULL, 411.40) END +VALUES ('mns', 'Mansi', NULL, 4127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mansi', [Definition] = NULL, [SortOrder] = 411.40 WHERE [Code] = 'mns' END +SET [Description] = 'Mansi', [Definition] = NULL, [SortOrder] = 4127.00 WHERE [Code] = 'mns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msw', 'Mansoanka', NULL, 411.50) END +VALUES ('msw', 'Mansoanka', NULL, 4128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mansoanka', [Definition] = NULL, [SortOrder] = 411.50 WHERE [Code] = 'msw' END +SET [Description] = 'Mansoanka', [Definition] = NULL, [SortOrder] = 4128.00 WHERE [Code] = 'msw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myg', 'Manta', NULL, 411.60) END +VALUES ('myg', 'Manta', NULL, 4129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manta', [Definition] = NULL, [SortOrder] = 411.60 WHERE [Code] = 'myg' END +SET [Description] = 'Manta', [Definition] = NULL, [SortOrder] = 4129.00 WHERE [Code] = 'myg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nty', 'Mantsi', NULL, 411.70) END +VALUES ('nty', 'Mantsi', NULL, 4130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mantsi', [Definition] = NULL, [SortOrder] = 411.70 WHERE [Code] = 'nty' END +SET [Description] = 'Mantsi', [Definition] = NULL, [SortOrder] = 4130.00 WHERE [Code] = 'nty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxf', 'Manumanaw Karen', NULL, 411.80) END +VALUES ('kxf', 'Manumanaw Karen', NULL, 4131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manumanaw Karen', [Definition] = NULL, [SortOrder] = 411.80 WHERE [Code] = 'kxf' END +SET [Description] = 'Manumanaw Karen', [Definition] = NULL, [SortOrder] = 4131.00 WHERE [Code] = 'kxf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glv', 'Manx', NULL, 411.90) END +VALUES ('glv', 'Manx', NULL, 4132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manx', [Definition] = NULL, [SortOrder] = 411.90 WHERE [Code] = 'glv' END +SET [Description] = 'Manx', [Definition] = NULL, [SortOrder] = 4132.00 WHERE [Code] = 'glv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzj', 'Manya', NULL, 412.00) END +VALUES ('mzj', 'Manya', NULL, 4133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manya', [Definition] = NULL, [SortOrder] = 412.00 WHERE [Code] = 'mzj' END +SET [Description] = 'Manya', [Definition] = NULL, [SortOrder] = 4133.00 WHERE [Code] = 'mzj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mny', 'Manyawa', NULL, 412.10) END +VALUES ('mny', 'Manyawa', NULL, 4134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manyawa', [Definition] = NULL, [SortOrder] = 412.10 WHERE [Code] = 'mny' END +SET [Description] = 'Manyawa', [Definition] = NULL, [SortOrder] = 4134.00 WHERE [Code] = 'mny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxc', 'Manyika', NULL, 412.20) END +VALUES ('mxc', 'Manyika', NULL, 4135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manyika', [Definition] = NULL, [SortOrder] = 412.20 WHERE [Code] = 'mxc' END +SET [Description] = 'Manyika', [Definition] = NULL, [SortOrder] = 4135.00 WHERE [Code] = 'mxc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzv', 'Manza', NULL, 412.30) END +VALUES ('mzv', 'Manza', NULL, 4136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manza', [Definition] = NULL, [SortOrder] = 412.30 WHERE [Code] = 'mzv' END +SET [Description] = 'Manza', [Definition] = NULL, [SortOrder] = 4136.00 WHERE [Code] = 'mzv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbi', 'Mao Naga', NULL, 412.40) END +VALUES ('nbi', 'Mao Naga', NULL, 4137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mao Naga', [Definition] = NULL, [SortOrder] = 412.40 WHERE [Code] = 'nbi' END +SET [Description] = 'Mao Naga', [Definition] = NULL, [SortOrder] = 4137.00 WHERE [Code] = 'nbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmd', 'Maonan', NULL, 412.50) END +VALUES ('mmd', 'Maonan', NULL, 4138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maonan', [Definition] = NULL, [SortOrder] = 412.50 WHERE [Code] = 'mmd' END +SET [Description] = 'Maonan', [Definition] = NULL, [SortOrder] = 4138.00 WHERE [Code] = 'mmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swb', 'Maore Comorian', NULL, 412.60) END +VALUES ('swb', 'Maore Comorian', NULL, 4139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maore Comorian', [Definition] = NULL, [SortOrder] = 412.60 WHERE [Code] = 'swb' END +SET [Description] = 'Maore Comorian', [Definition] = NULL, [SortOrder] = 4139.00 WHERE [Code] = 'swb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mri', 'Maori', NULL, 412.70) END +VALUES ('mri', 'Maori', NULL, 4140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maori', [Definition] = NULL, [SortOrder] = 412.70 WHERE [Code] = 'mri' END +SET [Description] = 'Maori', [Definition] = NULL, [SortOrder] = 4140.00 WHERE [Code] = 'mri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlh', 'Mape', NULL, 412.80) END +VALUES ('mlh', 'Mape', NULL, 4141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mape', [Definition] = NULL, [SortOrder] = 412.80 WHERE [Code] = 'mlh' END +SET [Description] = 'Mape', [Definition] = NULL, [SortOrder] = 4141.00 WHERE [Code] = 'mlh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnm', 'Mapena', NULL, 412.90) END +VALUES ('mnm', 'Mapena', NULL, 4142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapena', [Definition] = NULL, [SortOrder] = 412.90 WHERE [Code] = 'mnm' END +SET [Description] = 'Mapena', [Definition] = NULL, [SortOrder] = 4142.00 WHERE [Code] = 'mnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpy', 'Mapia', NULL, 413.00) END +VALUES ('mpy', 'Mapia', NULL, 4143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapia', [Definition] = NULL, [SortOrder] = 413.00 WHERE [Code] = 'mpy' END +SET [Description] = 'Mapia', [Definition] = NULL, [SortOrder] = 4143.00 WHERE [Code] = 'mpy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpw', 'Mapidian', NULL, 413.10) END +VALUES ('mpw', 'Mapidian', NULL, 4144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapidian', [Definition] = NULL, [SortOrder] = 413.10 WHERE [Code] = 'mpw' END +SET [Description] = 'Mapidian', [Definition] = NULL, [SortOrder] = 4144.00 WHERE [Code] = 'mpw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzh', 'Mapos Buang', NULL, 413.20) END +VALUES ('bzh', 'Mapos Buang', NULL, 4145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapos Buang', [Definition] = NULL, [SortOrder] = 413.20 WHERE [Code] = 'bzh' END +SET [Description] = 'Mapos Buang', [Definition] = NULL, [SortOrder] = 4145.00 WHERE [Code] = 'bzh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcg', 'Mapoyo', NULL, 413.30) END +VALUES ('mcg', 'Mapoyo', NULL, 4146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapoyo', [Definition] = NULL, [SortOrder] = 413.30 WHERE [Code] = 'mcg' END +SET [Description] = 'Mapoyo', [Definition] = NULL, [SortOrder] = 4146.00 WHERE [Code] = 'mcg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arn', 'Mapudungun', NULL, 413.40) END +VALUES ('arn', 'Mapudungun', NULL, 4147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapudungun', [Definition] = NULL, [SortOrder] = 413.40 WHERE [Code] = 'arn' END +SET [Description] = 'Mapudungun', [Definition] = NULL, [SortOrder] = 4147.00 WHERE [Code] = 'arn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjm', 'Mapun', NULL, 413.50) END +VALUES ('sjm', 'Mapun', NULL, 4148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapun', [Definition] = NULL, [SortOrder] = 413.50 WHERE [Code] = 'sjm' END +SET [Description] = 'Mapun', [Definition] = NULL, [SortOrder] = 4148.00 WHERE [Code] = 'sjm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mch', 'Maquiritari', NULL, 413.60) END +VALUES ('mch', 'Maquiritari', NULL, 4149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maquiritari', [Definition] = NULL, [SortOrder] = 413.60 WHERE [Code] = 'mch' END +SET [Description] = 'Maquiritari', [Definition] = NULL, [SortOrder] = 4149.00 WHERE [Code] = 'mch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrh', 'Mara Chin', NULL, 413.70) END +VALUES ('mrh', 'Mara Chin', NULL, 4150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mara Chin', [Definition] = NULL, [SortOrder] = 413.70 WHERE [Code] = 'mrh' END +SET [Description] = 'Mara Chin', [Definition] = NULL, [SortOrder] = 4150.00 WHERE [Code] = 'mrh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lri', 'Marachi', NULL, 413.80) END +VALUES ('lri', 'Marachi', NULL, 4151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marachi', [Definition] = NULL, [SortOrder] = 413.80 WHERE [Code] = 'lri' END +SET [Description] = 'Marachi', [Definition] = NULL, [SortOrder] = 4151.00 WHERE [Code] = 'lri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmh', 'Maraghei', NULL, 413.90) END +VALUES ('vmh', 'Maraghei', NULL, 4152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maraghei', [Definition] = NULL, [SortOrder] = 413.90 WHERE [Code] = 'vmh' END +SET [Description] = 'Maraghei', [Definition] = NULL, [SortOrder] = 4152.00 WHERE [Code] = 'vmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrs', 'Maragus', NULL, 414.00) END +VALUES ('mrs', 'Maragus', NULL, 4153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maragus', [Definition] = NULL, [SortOrder] = 414.00 WHERE [Code] = 'mrs' END +SET [Description] = 'Maragus', [Definition] = NULL, [SortOrder] = 4153.00 WHERE [Code] = 'mrs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nma', 'Maram Naga', NULL, 414.10) END +VALUES ('nma', 'Maram Naga', NULL, 4154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maram Naga', [Definition] = NULL, [SortOrder] = 414.10 WHERE [Code] = 'nma' END +SET [Description] = 'Maram Naga', [Definition] = NULL, [SortOrder] = 4154.00 WHERE [Code] = 'nma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrm', 'Marama', NULL, 414.20) END +VALUES ('lrm', 'Marama', NULL, 4155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marama', [Definition] = NULL, [SortOrder] = 414.20 WHERE [Code] = 'lrm' END +SET [Description] = 'Marama', [Definition] = NULL, [SortOrder] = 4155.00 WHERE [Code] = 'lrm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrw', 'Maranao', NULL, 414.30) END +VALUES ('mrw', 'Maranao', NULL, 4156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maranao', [Definition] = NULL, [SortOrder] = 414.30 WHERE [Code] = 'mrw' END +SET [Description] = 'Maranao', [Definition] = NULL, [SortOrder] = 4156.00 WHERE [Code] = 'mrw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmr', 'Maranunggu', NULL, 414.40) END +VALUES ('zmr', 'Maranunggu', NULL, 4157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maranunggu', [Definition] = NULL, [SortOrder] = 414.40 WHERE [Code] = 'zmr' END +SET [Description] = 'Maranunggu', [Definition] = NULL, [SortOrder] = 4157.00 WHERE [Code] = 'zmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgb', 'Mararit', NULL, 414.50) END +VALUES ('mgb', 'Mararit', NULL, 4158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mararit', [Definition] = NULL, [SortOrder] = 414.50 WHERE [Code] = 'mgb' END +SET [Description] = 'Mararit', [Definition] = NULL, [SortOrder] = 4158.00 WHERE [Code] = 'mgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mar', 'Marathi', NULL, 414.60) END +VALUES ('mar', 'Marathi', NULL, 4159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marathi', [Definition] = NULL, [SortOrder] = 414.60 WHERE [Code] = 'mar' END +SET [Description] = 'Marathi', [Definition] = NULL, [SortOrder] = 4159.00 WHERE [Code] = 'mar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvr', 'Marau', NULL, 414.70) END +VALUES ('mvr', 'Marau', NULL, 4160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marau', [Definition] = NULL, [SortOrder] = 414.70 WHERE [Code] = 'mvr' END +SET [Description] = 'Marau', [Definition] = NULL, [SortOrder] = 4160.00 WHERE [Code] = 'mvr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpg', 'Marba', NULL, 414.80) END +VALUES ('mpg', 'Marba', NULL, 4161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marba', [Definition] = NULL, [SortOrder] = 414.80 WHERE [Code] = 'mpg' END +SET [Description] = 'Marba', [Definition] = NULL, [SortOrder] = 4161.00 WHERE [Code] = 'mpg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsz', 'Mardin Sign Language', NULL, 414.90) END +VALUES ('dsz', 'Mardin Sign Language', NULL, 4162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mardin Sign Language', [Definition] = NULL, [SortOrder] = 414.90 WHERE [Code] = 'dsz' END +SET [Description] = 'Mardin Sign Language', [Definition] = NULL, [SortOrder] = 4162.00 WHERE [Code] = 'dsz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrx', 'Maremgi', NULL, 415.00) END +VALUES ('mrx', 'Maremgi', NULL, 4163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maremgi', [Definition] = NULL, [SortOrder] = 415.00 WHERE [Code] = 'mrx' END +SET [Description] = 'Maremgi', [Definition] = NULL, [SortOrder] = 4163.00 WHERE [Code] = 'mrx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmr', 'Marenje', NULL, 415.10) END +VALUES ('vmr', 'Marenje', NULL, 4164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marenje', [Definition] = NULL, [SortOrder] = 415.10 WHERE [Code] = 'vmr' END +SET [Description] = 'Marenje', [Definition] = NULL, [SortOrder] = 4164.00 WHERE [Code] = 'vmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvu', 'Marfa', NULL, 415.20) END +VALUES ('mvu', 'Marfa', NULL, 4165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marfa', [Definition] = NULL, [SortOrder] = 415.20 WHERE [Code] = 'mvu' END +SET [Description] = 'Marfa', [Definition] = NULL, [SortOrder] = 4165.00 WHERE [Code] = 'mvu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmc', 'Margany', NULL, 415.30) END +VALUES ('zmc', 'Margany', NULL, 4166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Margany', [Definition] = NULL, [SortOrder] = 415.30 WHERE [Code] = 'zmc' END +SET [Description] = 'Margany', [Definition] = NULL, [SortOrder] = 4166.00 WHERE [Code] = 'zmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrt', 'Marghi Central', NULL, 415.40) END +VALUES ('mrt', 'Marghi Central', NULL, 4167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marghi Central', [Definition] = NULL, [SortOrder] = 415.40 WHERE [Code] = 'mrt' END +SET [Description] = 'Marghi Central', [Definition] = NULL, [SortOrder] = 4167.00 WHERE [Code] = 'mrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfm', 'Marghi South', NULL, 415.50) END +VALUES ('mfm', 'Marghi South', NULL, 4168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marghi South', [Definition] = NULL, [SortOrder] = 415.50 WHERE [Code] = 'mfm' END +SET [Description] = 'Marghi South', [Definition] = NULL, [SortOrder] = 4168.00 WHERE [Code] = 'mfm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvm', 'Margos-Yarowilca-Lauricocha Quechua', NULL, 415.60) END +VALUES ('qvm', 'Margos-Yarowilca-Lauricocha Quechua', NULL, 4169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Margos-Yarowilca-Lauricocha Quechua', [Definition] = NULL, [SortOrder] = 415.60 WHERE [Code] = 'qvm' END +SET [Description] = 'Margos-Yarowilca-Lauricocha Quechua', [Definition] = NULL, [SortOrder] = 4169.00 WHERE [Code] = 'qvm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhg', 'Margu', NULL, 415.70) END +VALUES ('mhg', 'Margu', NULL, 4170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Margu', [Definition] = NULL, [SortOrder] = 415.70 WHERE [Code] = 'mhg' END +SET [Description] = 'Margu', [Definition] = NULL, [SortOrder] = 4170.00 WHERE [Code] = 'mhg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbx', 'Mari (East Sepik Province)', NULL, 415.80) END +VALUES ('mbx', 'Mari (East Sepik Province)', NULL, 4171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mari (East Sepik Province)', [Definition] = NULL, [SortOrder] = 415.80 WHERE [Code] = 'mbx' END +SET [Description] = 'Mari (East Sepik Province)', [Definition] = NULL, [SortOrder] = 4171.00 WHERE [Code] = 'mbx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hob', 'Mari (Madang Province)', NULL, 415.90) END +VALUES ('hob', 'Mari (Madang Province)', NULL, 4172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mari (Madang Province)', [Definition] = NULL, [SortOrder] = 415.90 WHERE [Code] = 'hob' END +SET [Description] = 'Mari (Madang Province)', [Definition] = NULL, [SortOrder] = 4172.00 WHERE [Code] = 'hob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chm', 'Mari (Russia)', NULL, 416.00) END +VALUES ('chm', 'Mari (Russia)', NULL, 4173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mari (Russia)', [Definition] = NULL, [SortOrder] = 416.00 WHERE [Code] = 'chm' END +SET [Description] = 'Mari (Russia)', [Definition] = NULL, [SortOrder] = 4173.00 WHERE [Code] = 'chm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrr', 'Maria (India)', NULL, 416.10) END +VALUES ('mrr', 'Maria (India)', NULL, 4174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maria (India)', [Definition] = NULL, [SortOrder] = 416.10 WHERE [Code] = 'mrr' END +SET [Description] = 'Maria (India)', [Definition] = NULL, [SortOrder] = 4174.00 WHERE [Code] = 'mrr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mds', 'Maria (Papua New Guinea)', NULL, 416.20) END +VALUES ('mds', 'Maria (Papua New Guinea)', NULL, 4175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maria (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 416.20 WHERE [Code] = 'mds' END +SET [Description] = 'Maria (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 4175.00 WHERE [Code] = 'mds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrc', 'Maricopa', NULL, 416.30) END +VALUES ('mrc', 'Maricopa', NULL, 4176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maricopa', [Definition] = NULL, [SortOrder] = 416.30 WHERE [Code] = 'mrc' END +SET [Description] = 'Maricopa', [Definition] = NULL, [SortOrder] = 4176.00 WHERE [Code] = 'mrc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmd', 'Maridan', NULL, 416.40) END +VALUES ('zmd', 'Maridan', NULL, 4177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maridan', [Definition] = NULL, [SortOrder] = 416.40 WHERE [Code] = 'zmd' END +SET [Description] = 'Maridan', [Definition] = NULL, [SortOrder] = 4177.00 WHERE [Code] = 'zmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmj', 'Maridjabin', NULL, 416.50) END +VALUES ('zmj', 'Maridjabin', NULL, 4178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maridjabin', [Definition] = NULL, [SortOrder] = 416.50 WHERE [Code] = 'zmj' END +SET [Description] = 'Maridjabin', [Definition] = NULL, [SortOrder] = 4178.00 WHERE [Code] = 'zmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dad', 'Marik', NULL, 416.60) END +VALUES ('dad', 'Marik', NULL, 4179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marik', [Definition] = NULL, [SortOrder] = 416.60 WHERE [Code] = 'dad' END +SET [Description] = 'Marik', [Definition] = NULL, [SortOrder] = 4179.00 WHERE [Code] = 'dad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmm', 'Marimanindji', NULL, 416.70) END +VALUES ('zmm', 'Marimanindji', NULL, 4180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marimanindji', [Definition] = NULL, [SortOrder] = 416.70 WHERE [Code] = 'zmm' END +SET [Description] = 'Marimanindji', [Definition] = NULL, [SortOrder] = 4180.00 WHERE [Code] = 'zmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrz', 'Marind', NULL, 416.80) END +VALUES ('mrz', 'Marind', NULL, 4181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marind', [Definition] = NULL, [SortOrder] = 416.80 WHERE [Code] = 'mrz' END +SET [Description] = 'Marind', [Definition] = NULL, [SortOrder] = 4181.00 WHERE [Code] = 'mrz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbw', 'Maring', NULL, 416.90) END +VALUES ('mbw', 'Maring', NULL, 4182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maring', [Definition] = NULL, [SortOrder] = 416.90 WHERE [Code] = 'mbw' END +SET [Description] = 'Maring', [Definition] = NULL, [SortOrder] = 4182.00 WHERE [Code] = 'mbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nng', 'Maring Naga', NULL, 417.00) END +VALUES ('nng', 'Maring Naga', NULL, 4183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maring Naga', [Definition] = NULL, [SortOrder] = 417.00 WHERE [Code] = 'nng' END +SET [Description] = 'Maring Naga', [Definition] = NULL, [SortOrder] = 4183.00 WHERE [Code] = 'nng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmt', 'Maringarr', NULL, 417.10) END +VALUES ('zmt', 'Maringarr', NULL, 4184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maringarr', [Definition] = NULL, [SortOrder] = 417.10 WHERE [Code] = 'zmt' END +SET [Description] = 'Maringarr', [Definition] = NULL, [SortOrder] = 4184.00 WHERE [Code] = 'zmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrb', 'Marino', NULL, 417.20) END +VALUES ('mrb', 'Marino', NULL, 4185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marino', [Definition] = NULL, [SortOrder] = 417.20 WHERE [Code] = 'mrb' END +SET [Description] = 'Marino', [Definition] = NULL, [SortOrder] = 4185.00 WHERE [Code] = 'mrb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqi', 'Mariri', NULL, 417.30) END +VALUES ('mqi', 'Mariri', NULL, 4186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mariri', [Definition] = NULL, [SortOrder] = 417.30 WHERE [Code] = 'mqi' END +SET [Description] = 'Mariri', [Definition] = NULL, [SortOrder] = 4186.00 WHERE [Code] = 'mqi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsr', 'Maritime Sign Language', NULL, 417.40) END +VALUES ('nsr', 'Maritime Sign Language', NULL, 4187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maritime Sign Language', [Definition] = NULL, [SortOrder] = 417.40 WHERE [Code] = 'nsr' END +SET [Description] = 'Maritime Sign Language', [Definition] = NULL, [SortOrder] = 4187.00 WHERE [Code] = 'nsr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msp', 'Maritsauá', NULL, 417.50) END +VALUES ('msp', 'Maritsauá', NULL, 4188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maritsauá', [Definition] = NULL, [SortOrder] = 417.50 WHERE [Code] = 'msp' END +SET [Description] = 'Maritsauá', [Definition] = NULL, [SortOrder] = 4188.00 WHERE [Code] = 'msp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmy', 'Mariyedi', NULL, 417.60) END +VALUES ('zmy', 'Mariyedi', NULL, 4189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mariyedi', [Definition] = NULL, [SortOrder] = 417.60 WHERE [Code] = 'zmy' END +SET [Description] = 'Mariyedi', [Definition] = NULL, [SortOrder] = 4189.00 WHERE [Code] = 'zmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkm', 'Marka', NULL, 417.70) END +VALUES ('rkm', 'Marka', NULL, 4190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marka', [Definition] = NULL, [SortOrder] = 417.70 WHERE [Code] = 'rkm' END +SET [Description] = 'Marka', [Definition] = NULL, [SortOrder] = 4190.00 WHERE [Code] = 'rkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enb', 'Markweeta', NULL, 417.80) END +VALUES ('enb', 'Markweeta', NULL, 4191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Markweeta', [Definition] = NULL, [SortOrder] = 417.80 WHERE [Code] = 'enb' END +SET [Description] = 'Markweeta', [Definition] = NULL, [SortOrder] = 4191.00 WHERE [Code] = 'enb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmz', 'Marma', NULL, 417.90) END +VALUES ('rmz', 'Marma', NULL, 4192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marma', [Definition] = NULL, [SortOrder] = 417.90 WHERE [Code] = 'rmz' END +SET [Description] = 'Marma', [Definition] = NULL, [SortOrder] = 4192.00 WHERE [Code] = 'rmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvo', 'Marovo', NULL, 418.00) END +VALUES ('mvo', 'Marovo', NULL, 4193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marovo', [Definition] = NULL, [SortOrder] = 418.00 WHERE [Code] = 'mvo' END +SET [Description] = 'Marovo', [Definition] = NULL, [SortOrder] = 4193.00 WHERE [Code] = 'mvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mec', 'Marra', NULL, 418.10) END +VALUES ('mec', 'Marra', NULL, 4194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marra', [Definition] = NULL, [SortOrder] = 418.10 WHERE [Code] = 'mec' END +SET [Description] = 'Marra', [Definition] = NULL, [SortOrder] = 4194.00 WHERE [Code] = 'mec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xru', 'Marriammu', NULL, 418.20) END +VALUES ('xru', 'Marriammu', NULL, 4195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marriammu', [Definition] = NULL, [SortOrder] = 418.20 WHERE [Code] = 'xru' END +SET [Description] = 'Marriammu', [Definition] = NULL, [SortOrder] = 4195.00 WHERE [Code] = 'xru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfr', 'Marrithiyel', NULL, 418.30) END +VALUES ('mfr', 'Marrithiyel', NULL, 4196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marrithiyel', [Definition] = NULL, [SortOrder] = 418.30 WHERE [Code] = 'mfr' END +SET [Description] = 'Marrithiyel', [Definition] = NULL, [SortOrder] = 4196.00 WHERE [Code] = 'mfr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umc', 'Marrucinian', NULL, 418.40) END +VALUES ('umc', 'Marrucinian', NULL, 4197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marrucinian', [Definition] = NULL, [SortOrder] = 418.40 WHERE [Code] = 'umc' END +SET [Description] = 'Marrucinian', [Definition] = NULL, [SortOrder] = 4197.00 WHERE [Code] = 'umc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mah', 'Marshallese', NULL, 418.50) END +VALUES ('mah', 'Marshallese', NULL, 4198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marshallese', [Definition] = NULL, [SortOrder] = 418.50 WHERE [Code] = 'mah' END +SET [Description] = 'Marshallese', [Definition] = NULL, [SortOrder] = 4198.00 WHERE [Code] = 'mah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ims') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ims', 'Marsian', NULL, 418.60) END +VALUES ('ims', 'Marsian', NULL, 4199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marsian', [Definition] = NULL, [SortOrder] = 418.60 WHERE [Code] = 'ims' END +SET [Description] = 'Marsian', [Definition] = NULL, [SortOrder] = 4199.00 WHERE [Code] = 'ims' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mre', 'Martha''s Vineyard Sign Language', NULL, 418.70) END +VALUES ('mre', 'Martha''s Vineyard Sign Language', NULL, 4200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Martha''s Vineyard Sign Language', [Definition] = NULL, [SortOrder] = 418.70 WHERE [Code] = 'mre' END +SET [Description] = 'Martha''s Vineyard Sign Language', [Definition] = NULL, [SortOrder] = 4200.00 WHERE [Code] = 'mre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmg', 'Marti Ke', NULL, 418.80) END +VALUES ('zmg', 'Marti Ke', NULL, 4201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marti Ke', [Definition] = NULL, [SortOrder] = 418.80 WHERE [Code] = 'zmg' END +SET [Description] = 'Marti Ke', [Definition] = NULL, [SortOrder] = 4201.00 WHERE [Code] = 'zmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpj', 'Martu Wangka', NULL, 418.90) END +VALUES ('mpj', 'Martu Wangka', NULL, 4202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Martu Wangka', [Definition] = NULL, [SortOrder] = 418.90 WHERE [Code] = 'mpj' END +SET [Description] = 'Martu Wangka', [Definition] = NULL, [SortOrder] = 4202.00 WHERE [Code] = 'mpj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vma', 'Martuyhunira', NULL, 419.00) END +VALUES ('vma', 'Martuyhunira', NULL, 4203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Martuyhunira', [Definition] = NULL, [SortOrder] = 419.00 WHERE [Code] = 'vma' END +SET [Description] = 'Martuyhunira', [Definition] = NULL, [SortOrder] = 4203.00 WHERE [Code] = 'vma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhx', 'Maru', NULL, 419.10) END +VALUES ('mhx', 'Maru', NULL, 4204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maru', [Definition] = NULL, [SortOrder] = 419.10 WHERE [Code] = 'mhx' END +SET [Description] = 'Maru', [Definition] = NULL, [SortOrder] = 4204.00 WHERE [Code] = 'mhx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzr', 'Marúbo', NULL, 419.20) END +VALUES ('mzr', 'Marúbo', NULL, 4205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marúbo', [Definition] = NULL, [SortOrder] = 419.20 WHERE [Code] = 'mzr' END +SET [Description] = 'Marúbo', [Definition] = NULL, [SortOrder] = 4205.00 WHERE [Code] = 'mzr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwr', 'Marwari', NULL, 419.30) END +VALUES ('mwr', 'Marwari', NULL, 4206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marwari', [Definition] = NULL, [SortOrder] = 419.30 WHERE [Code] = 'mwr' END +SET [Description] = 'Marwari', [Definition] = NULL, [SortOrder] = 4206.00 WHERE [Code] = 'mwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwr', 'Marwari (India)', NULL, 419.40) END +VALUES ('rwr', 'Marwari (India)', NULL, 4207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marwari (India)', [Definition] = NULL, [SortOrder] = 419.40 WHERE [Code] = 'rwr' END +SET [Description] = 'Marwari (India)', [Definition] = NULL, [SortOrder] = 4207.00 WHERE [Code] = 'rwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mve', 'Marwari (Pakistan)', NULL, 419.50) END +VALUES ('mve', 'Marwari (Pakistan)', NULL, 4208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marwari (Pakistan)', [Definition] = NULL, [SortOrder] = 419.50 WHERE [Code] = 'mve' END +SET [Description] = 'Marwari (Pakistan)', [Definition] = NULL, [SortOrder] = 4208.00 WHERE [Code] = 'mve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myx', 'Masaaba', NULL, 419.60) END +VALUES ('myx', 'Masaaba', NULL, 4209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masaaba', [Definition] = NULL, [SortOrder] = 419.60 WHERE [Code] = 'myx' END +SET [Description] = 'Masaaba', [Definition] = NULL, [SortOrder] = 4209.00 WHERE [Code] = 'myx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tis', 'Masadiit Itneg', NULL, 419.70) END +VALUES ('tis', 'Masadiit Itneg', NULL, 4210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masadiit Itneg', [Definition] = NULL, [SortOrder] = 419.70 WHERE [Code] = 'tis' END +SET [Description] = 'Masadiit Itneg', [Definition] = NULL, [SortOrder] = 4210.00 WHERE [Code] = 'tis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mas', 'Masai', NULL, 419.80) END +VALUES ('mas', 'Masai', NULL, 4211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masai', [Definition] = NULL, [SortOrder] = 419.80 WHERE [Code] = 'mas' END +SET [Description] = 'Masai', [Definition] = NULL, [SortOrder] = 4211.00 WHERE [Code] = 'mas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mls', 'Masalit', NULL, 419.90) END +VALUES ('mls', 'Masalit', NULL, 4212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masalit', [Definition] = NULL, [SortOrder] = 419.90 WHERE [Code] = 'mls' END +SET [Description] = 'Masalit', [Definition] = NULL, [SortOrder] = 4212.00 WHERE [Code] = 'mls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcn', 'Masana', NULL, 420.00) END +VALUES ('mcn', 'Masana', NULL, 4213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masana', [Definition] = NULL, [SortOrder] = 420.00 WHERE [Code] = 'mcn' END +SET [Description] = 'Masana', [Definition] = NULL, [SortOrder] = 4213.00 WHERE [Code] = 'mcn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msb', 'Masbatenyo', NULL, 420.10) END +VALUES ('msb', 'Masbatenyo', NULL, 4214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masbatenyo', [Definition] = NULL, [SortOrder] = 420.10 WHERE [Code] = 'msb' END +SET [Description] = 'Masbatenyo', [Definition] = NULL, [SortOrder] = 4214.00 WHERE [Code] = 'msb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuj', 'Mashco Piro', NULL, 420.20) END +VALUES ('cuj', 'Mashco Piro', NULL, 4215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mashco Piro', [Definition] = NULL, [SortOrder] = 420.20 WHERE [Code] = 'cuj' END +SET [Description] = 'Mashco Piro', [Definition] = NULL, [SortOrder] = 4215.00 WHERE [Code] = 'cuj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jms', 'Mashi (Nigeria)', NULL, 420.30) END +VALUES ('jms', 'Mashi (Nigeria)', NULL, 4216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mashi (Nigeria)', [Definition] = NULL, [SortOrder] = 420.30 WHERE [Code] = 'jms' END +SET [Description] = 'Mashi (Nigeria)', [Definition] = NULL, [SortOrder] = 4216.00 WHERE [Code] = 'jms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mho', 'Mashi (Zambia)', NULL, 420.40) END +VALUES ('mho', 'Mashi (Zambia)', NULL, 4217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mashi (Zambia)', [Definition] = NULL, [SortOrder] = 420.40 WHERE [Code] = 'mho' END +SET [Description] = 'Mashi (Zambia)', [Definition] = NULL, [SortOrder] = 4217.00 WHERE [Code] = 'mho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msh', 'Masikoro Malagasy', NULL, 420.50) END +VALUES ('msh', 'Masikoro Malagasy', NULL, 4218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masikoro Malagasy', [Definition] = NULL, [SortOrder] = 420.50 WHERE [Code] = 'msh' END +SET [Description] = 'Masikoro Malagasy', [Definition] = NULL, [SortOrder] = 4218.00 WHERE [Code] = 'msh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ism') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ism', 'Masimasi', NULL, 420.60) END +VALUES ('ism', 'Masimasi', NULL, 4219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masimasi', [Definition] = NULL, [SortOrder] = 420.60 WHERE [Code] = 'ism' END +SET [Description] = 'Masimasi', [Definition] = NULL, [SortOrder] = 4219.00 WHERE [Code] = 'ism' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnf', 'Masiwang', NULL, 420.70) END +VALUES ('bnf', 'Masiwang', NULL, 4220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masiwang', [Definition] = NULL, [SortOrder] = 420.70 WHERE [Code] = 'bnf' END +SET [Description] = 'Masiwang', [Definition] = NULL, [SortOrder] = 4220.00 WHERE [Code] = 'bnf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klv', 'Maskelynes', NULL, 420.80) END +VALUES ('klv', 'Maskelynes', NULL, 4221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maskelynes', [Definition] = NULL, [SortOrder] = 420.80 WHERE [Code] = 'klv' END +SET [Description] = 'Maskelynes', [Definition] = NULL, [SortOrder] = 4221.00 WHERE [Code] = 'klv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msv', 'Maslam', NULL, 420.90) END +VALUES ('msv', 'Maslam', NULL, 4222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maslam', [Definition] = NULL, [SortOrder] = 420.90 WHERE [Code] = 'msv' END +SET [Description] = 'Maslam', [Definition] = NULL, [SortOrder] = 4222.00 WHERE [Code] = 'msv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mes', 'Masmaje', NULL, 421.00) END +VALUES ('mes', 'Masmaje', NULL, 4223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masmaje', [Definition] = NULL, [SortOrder] = 421.00 WHERE [Code] = 'mes' END +SET [Description] = 'Masmaje', [Definition] = NULL, [SortOrder] = 4223.00 WHERE [Code] = 'mes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdg', 'Massalat', NULL, 421.10) END +VALUES ('mdg', 'Massalat', NULL, 4224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Massalat', [Definition] = NULL, [SortOrder] = 421.10 WHERE [Code] = 'mdg' END +SET [Description] = 'Massalat', [Definition] = NULL, [SortOrder] = 4224.00 WHERE [Code] = 'mdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvs', 'Massep', NULL, 421.20) END +VALUES ('mvs', 'Massep', NULL, 4225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Massep', [Definition] = NULL, [SortOrder] = 421.20 WHERE [Code] = 'mvs' END +SET [Description] = 'Massep', [Definition] = NULL, [SortOrder] = 4225.00 WHERE [Code] = 'mvs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtn', 'Matagalpa', NULL, 421.30) END +VALUES ('mtn', 'Matagalpa', NULL, 4226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matagalpa', [Definition] = NULL, [SortOrder] = 421.30 WHERE [Code] = 'mtn' END +SET [Description] = 'Matagalpa', [Definition] = NULL, [SortOrder] = 4226.00 WHERE [Code] = 'mtn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfh', 'Matal', NULL, 421.40) END +VALUES ('mfh', 'Matal', NULL, 4227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matal', [Definition] = NULL, [SortOrder] = 421.40 WHERE [Code] = 'mfh' END +SET [Description] = 'Matal', [Definition] = NULL, [SortOrder] = 4227.00 WHERE [Code] = 'mfh' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wtb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('wtb', 'Matambwe', NULL, 4228.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Matambwe', [Definition] = NULL, [SortOrder] = 4228.00 WHERE [Code] = 'wtb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmt', 'Matbat', NULL, 421.50) END +VALUES ('xmt', 'Matbat', NULL, 4229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matbat', [Definition] = NULL, [SortOrder] = 421.50 WHERE [Code] = 'xmt' END +SET [Description] = 'Matbat', [Definition] = NULL, [SortOrder] = 4229.00 WHERE [Code] = 'xmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgv', 'Matengo', NULL, 421.60) END +VALUES ('mgv', 'Matengo', NULL, 4230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matengo', [Definition] = NULL, [SortOrder] = 421.60 WHERE [Code] = 'mgv' END +SET [Description] = 'Matengo', [Definition] = NULL, [SortOrder] = 4230.00 WHERE [Code] = 'mgv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqe', 'Matepi', NULL, 421.70) END +VALUES ('mqe', 'Matepi', NULL, 4231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matepi', [Definition] = NULL, [SortOrder] = 421.70 WHERE [Code] = 'mqe' END +SET [Description] = 'Matepi', [Definition] = NULL, [SortOrder] = 4231.00 WHERE [Code] = 'mqe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbt', 'Matigsalug Manobo', NULL, 421.80) END +VALUES ('mbt', 'Matigsalug Manobo', NULL, 4232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matigsalug Manobo', [Definition] = NULL, [SortOrder] = 421.80 WHERE [Code] = 'mbt' END +SET [Description] = 'Matigsalug Manobo', [Definition] = NULL, [SortOrder] = 4232.00 WHERE [Code] = 'mbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzo', 'Matipuhy', NULL, 421.90) END +VALUES ('mzo', 'Matipuhy', NULL, 4233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matipuhy', [Definition] = NULL, [SortOrder] = 421.90 WHERE [Code] = 'mzo' END +SET [Description] = 'Matipuhy', [Definition] = NULL, [SortOrder] = 4233.00 WHERE [Code] = 'mzo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpq', 'Matís', NULL, 422.00) END +VALUES ('mpq', 'Matís', NULL, 4234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matís', [Definition] = NULL, [SortOrder] = 422.00 WHERE [Code] = 'mpq' END +SET [Description] = 'Matís', [Definition] = NULL, [SortOrder] = 4234.00 WHERE [Code] = 'mpq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zml', 'Matngala', NULL, 422.10) END +VALUES ('zml', 'Matngala', NULL, 4235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matngala', [Definition] = NULL, [SortOrder] = 422.10 WHERE [Code] = 'zml' END +SET [Description] = 'Matngala', [Definition] = NULL, [SortOrder] = 4235.00 WHERE [Code] = 'zml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'met') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('met', 'Mato', NULL, 422.20) END +VALUES ('met', 'Mato', NULL, 4236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mato', [Definition] = NULL, [SortOrder] = 422.20 WHERE [Code] = 'met' END +SET [Description] = 'Mato', [Definition] = NULL, [SortOrder] = 4236.00 WHERE [Code] = 'met' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axg', 'Mato Grosso Arára', NULL, 422.30) END +VALUES ('axg', 'Mato Grosso Arára', NULL, 4237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mato Grosso Arára', [Definition] = NULL, [SortOrder] = 422.30 WHERE [Code] = 'axg' END +SET [Description] = 'Mato Grosso Arára', [Definition] = NULL, [SortOrder] = 4237.00 WHERE [Code] = 'axg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtm', 'Mator', NULL, 422.40) END +VALUES ('mtm', 'Mator', NULL, 4238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mator', [Definition] = NULL, [SortOrder] = 422.40 WHERE [Code] = 'mtm' END +SET [Description] = 'Mator', [Definition] = NULL, [SortOrder] = 4238.00 WHERE [Code] = 'mtm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcf', 'Matsés', NULL, 422.50) END +VALUES ('mcf', 'Matsés', NULL, 4239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matsés', [Definition] = NULL, [SortOrder] = 422.50 WHERE [Code] = 'mcf' END +SET [Description] = 'Matsés', [Definition] = NULL, [SortOrder] = 4239.00 WHERE [Code] = 'mcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvb', 'Mattole', NULL, 422.60) END +VALUES ('mvb', 'Mattole', NULL, 4240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mattole', [Definition] = NULL, [SortOrder] = 422.60 WHERE [Code] = 'mvb' END +SET [Description] = 'Mattole', [Definition] = NULL, [SortOrder] = 4240.00 WHERE [Code] = 'mvb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hlt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hlt', 'Matu Chin', NULL, 422.70) END +VALUES ('hlt', 'Matu Chin', NULL, 4241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matu Chin', [Definition] = NULL, [SortOrder] = 422.70 WHERE [Code] = 'hlt' END +SET [Description] = 'Matu Chin', [Definition] = NULL, [SortOrder] = 4241.00 WHERE [Code] = 'hlt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjk', 'Matukar', NULL, 422.80) END +VALUES ('mjk', 'Matukar', NULL, 4242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matukar', [Definition] = NULL, [SortOrder] = 422.80 WHERE [Code] = 'mjk' END +SET [Description] = 'Matukar', [Definition] = NULL, [SortOrder] = 4242.00 WHERE [Code] = 'mjk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgw', 'Matumbi', NULL, 422.90) END +VALUES ('mgw', 'Matumbi', NULL, 4243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matumbi', [Definition] = NULL, [SortOrder] = 422.90 WHERE [Code] = 'mgw' END +SET [Description] = 'Matumbi', [Definition] = NULL, [SortOrder] = 4243.00 WHERE [Code] = 'mgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stj', 'Matya Samo', NULL, 423.00) END +VALUES ('stj', 'Matya Samo', NULL, 4244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matya Samo', [Definition] = NULL, [SortOrder] = 423.00 WHERE [Code] = 'stj' END +SET [Description] = 'Matya Samo', [Definition] = NULL, [SortOrder] = 4244.00 WHERE [Code] = 'stj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mph', 'Maung', NULL, 423.10) END +VALUES ('mph', 'Maung', NULL, 4245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maung', [Definition] = NULL, [SortOrder] = 423.10 WHERE [Code] = 'mph' END +SET [Description] = 'Maung', [Definition] = NULL, [SortOrder] = 4245.00 WHERE [Code] = 'mph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsy', 'Mauritian Sign Language', NULL, 423.20) END +VALUES ('lsy', 'Mauritian Sign Language', NULL, 4246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mauritian Sign Language', [Definition] = NULL, [SortOrder] = 423.20 WHERE [Code] = 'lsy' END +SET [Description] = 'Mauritian Sign Language', [Definition] = NULL, [SortOrder] = 4246.00 WHERE [Code] = 'lsy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhl', 'Mauwake', NULL, 423.30) END +VALUES ('mhl', 'Mauwake', NULL, 4247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mauwake', [Definition] = NULL, [SortOrder] = 423.30 WHERE [Code] = 'mhl' END +SET [Description] = 'Mauwake', [Definition] = NULL, [SortOrder] = 4247.00 WHERE [Code] = 'mhl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcw', 'Mawa (Chad)', NULL, 423.40) END +VALUES ('mcw', 'Mawa (Chad)', NULL, 4248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawa (Chad)', [Definition] = NULL, [SortOrder] = 423.40 WHERE [Code] = 'mcw' END +SET [Description] = 'Mawa (Chad)', [Definition] = NULL, [SortOrder] = 4248.00 WHERE [Code] = 'mcw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wma', 'Mawa (Nigeria)', NULL, 423.50) END +VALUES ('wma', 'Mawa (Nigeria)', NULL, 4249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawa (Nigeria)', [Definition] = NULL, [SortOrder] = 423.50 WHERE [Code] = 'wma' END +SET [Description] = 'Mawa (Nigeria)', [Definition] = NULL, [SortOrder] = 4249.00 WHERE [Code] = 'wma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjj', 'Mawak', NULL, 423.60) END +VALUES ('mjj', 'Mawak', NULL, 4250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawak', [Definition] = NULL, [SortOrder] = 423.60 WHERE [Code] = 'mjj' END +SET [Description] = 'Mawak', [Definition] = NULL, [SortOrder] = 4250.00 WHERE [Code] = 'mjj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcz', 'Mawan', NULL, 423.70) END +VALUES ('mcz', 'Mawan', NULL, 4251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawan', [Definition] = NULL, [SortOrder] = 423.70 WHERE [Code] = 'mcz' END +SET [Description] = 'Mawan', [Definition] = NULL, [SortOrder] = 4251.00 WHERE [Code] = 'mcz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzx', 'Mawayana', NULL, 423.80) END +VALUES ('mzx', 'Mawayana', NULL, 4252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawayana', [Definition] = NULL, [SortOrder] = 423.80 WHERE [Code] = 'mzx' END +SET [Description] = 'Mawayana', [Definition] = NULL, [SortOrder] = 4252.00 WHERE [Code] = 'mzx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mke', 'Mawchi', NULL, 423.90) END +VALUES ('mke', 'Mawchi', NULL, 4253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawchi', [Definition] = NULL, [SortOrder] = 423.90 WHERE [Code] = 'mke' END +SET [Description] = 'Mawchi', [Definition] = NULL, [SortOrder] = 4253.00 WHERE [Code] = 'mke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgk', 'Mawes', NULL, 424.00) END +VALUES ('mgk', 'Mawes', NULL, 4254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawes', [Definition] = NULL, [SortOrder] = 424.00 WHERE [Code] = 'mgk' END +SET [Description] = 'Mawes', [Definition] = NULL, [SortOrder] = 4254.00 WHERE [Code] = 'mgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbl', 'Maxakalí', NULL, 424.10) END +VALUES ('mbl', 'Maxakalí', NULL, 4255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maxakalí', [Definition] = NULL, [SortOrder] = 424.10 WHERE [Code] = 'mbl' END +SET [Description] = 'Maxakalí', [Definition] = NULL, [SortOrder] = 4255.00 WHERE [Code] = 'mbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxl', 'Maxi Gbe', NULL, 424.20) END +VALUES ('mxl', 'Maxi Gbe', NULL, 4256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maxi Gbe', [Definition] = NULL, [SortOrder] = 424.20 WHERE [Code] = 'mxl' END +SET [Description] = 'Maxi Gbe', [Definition] = NULL, [SortOrder] = 4256.00 WHERE [Code] = 'mxl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sym', 'Maya Samo', NULL, 424.30) END +VALUES ('sym', 'Maya Samo', NULL, 4257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maya Samo', [Definition] = NULL, [SortOrder] = 424.30 WHERE [Code] = 'sym' END +SET [Description] = 'Maya Samo', [Definition] = NULL, [SortOrder] = 4257.00 WHERE [Code] = 'sym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmy', 'Mayaguduna', NULL, 424.40) END +VALUES ('xmy', 'Mayaguduna', NULL, 4258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayaguduna', [Definition] = NULL, [SortOrder] = 424.40 WHERE [Code] = 'xmy' END +SET [Description] = 'Mayaguduna', [Definition] = NULL, [SortOrder] = 4258.00 WHERE [Code] = 'xmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yan', 'Mayangna', NULL, 424.50) END +VALUES ('yan', 'Mayangna', NULL, 4259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayangna', [Definition] = NULL, [SortOrder] = 424.50 WHERE [Code] = 'yan' END +SET [Description] = 'Mayangna', [Definition] = NULL, [SortOrder] = 4259.00 WHERE [Code] = 'yan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxa', 'Mayawali', NULL, 424.60) END +VALUES ('yxa', 'Mayawali', NULL, 4260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayawali', [Definition] = NULL, [SortOrder] = 424.60 WHERE [Code] = 'yxa' END +SET [Description] = 'Mayawali', [Definition] = NULL, [SortOrder] = 4260.00 WHERE [Code] = 'yxa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myc', 'Mayeka', NULL, 424.70) END +VALUES ('myc', 'Mayeka', NULL, 4261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayeka', [Definition] = NULL, [SortOrder] = 424.70 WHERE [Code] = 'myc' END +SET [Description] = 'Mayeka', [Definition] = NULL, [SortOrder] = 4261.00 WHERE [Code] = 'myc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyk', 'Mayi-Kulan', NULL, 424.80) END +VALUES ('xyk', 'Mayi-Kulan', NULL, 4262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayi-Kulan', [Definition] = NULL, [SortOrder] = 424.80 WHERE [Code] = 'xyk' END +SET [Description] = 'Mayi-Kulan', [Definition] = NULL, [SortOrder] = 4262.00 WHERE [Code] = 'xyk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyt', 'Mayi-Thakurti', NULL, 424.90) END +VALUES ('xyt', 'Mayi-Thakurti', NULL, 4263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayi-Thakurti', [Definition] = NULL, [SortOrder] = 424.90 WHERE [Code] = 'xyt' END +SET [Description] = 'Mayi-Thakurti', [Definition] = NULL, [SortOrder] = 4263.00 WHERE [Code] = 'xyt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyj', 'Mayi-Yapi', NULL, 425.00) END +VALUES ('xyj', 'Mayi-Yapi', NULL, 4264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayi-Yapi', [Definition] = NULL, [SortOrder] = 425.00 WHERE [Code] = 'xyj' END +SET [Description] = 'Mayi-Yapi', [Definition] = NULL, [SortOrder] = 4264.00 WHERE [Code] = 'xyj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfy', 'Mayo', NULL, 425.10) END +VALUES ('mfy', 'Mayo', NULL, 4265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayo', [Definition] = NULL, [SortOrder] = 425.10 WHERE [Code] = 'mfy' END +SET [Description] = 'Mayo', [Definition] = NULL, [SortOrder] = 4265.00 WHERE [Code] = 'mfy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdm', 'Mayogo', NULL, 425.20) END +VALUES ('mdm', 'Mayogo', NULL, 4266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayogo', [Definition] = NULL, [SortOrder] = 425.20 WHERE [Code] = 'mdm' END +SET [Description] = 'Mayogo', [Definition] = NULL, [SortOrder] = 4266.00 WHERE [Code] = 'mdm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifu', 'Mayoyao Ifugao', NULL, 425.30) END +VALUES ('ifu', 'Mayoyao Ifugao', NULL, 4267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayoyao Ifugao', [Definition] = NULL, [SortOrder] = 425.30 WHERE [Code] = 'ifu' END +SET [Description] = 'Mayoyao Ifugao', [Definition] = NULL, [SortOrder] = 4267.00 WHERE [Code] = 'ifu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dkx', 'Mazagway', NULL, 425.40) END +VALUES ('dkx', 'Mazagway', NULL, 4268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazagway', [Definition] = NULL, [SortOrder] = 425.40 WHERE [Code] = 'dkx' END +SET [Description] = 'Mazagway', [Definition] = NULL, [SortOrder] = 4268.00 WHERE [Code] = 'dkx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpy', 'Mazaltepec Zapotec', NULL, 425.50) END +VALUES ('zpy', 'Mazaltepec Zapotec', NULL, 4269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazaltepec Zapotec', [Definition] = NULL, [SortOrder] = 425.50 WHERE [Code] = 'zpy' END +SET [Description] = 'Mazaltepec Zapotec', [Definition] = NULL, [SortOrder] = 4269.00 WHERE [Code] = 'zpy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzn', 'Mazanderani', NULL, 425.60) END +VALUES ('mzn', 'Mazanderani', NULL, 4270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazanderani', [Definition] = NULL, [SortOrder] = 425.60 WHERE [Code] = 'mzn' END +SET [Description] = 'Mazanderani', [Definition] = NULL, [SortOrder] = 4270.00 WHERE [Code] = 'mzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmz', 'Mazatlán Mazatec', NULL, 425.70) END +VALUES ('vmz', 'Mazatlán Mazatec', NULL, 4271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazatlán Mazatec', [Definition] = NULL, [SortOrder] = 425.70 WHERE [Code] = 'vmz' END +SET [Description] = 'Mazatlán Mazatec', [Definition] = NULL, [SortOrder] = 4271.00 WHERE [Code] = 'vmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzl', 'Mazatlán Mixe', NULL, 425.80) END +VALUES ('mzl', 'Mazatlán Mixe', NULL, 4272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazatlán Mixe', [Definition] = NULL, [SortOrder] = 425.80 WHERE [Code] = 'mzl' END +SET [Description] = 'Mazatlán Mixe', [Definition] = NULL, [SortOrder] = 4272.00 WHERE [Code] = 'mzl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfc', 'Mba', NULL, 425.90) END +VALUES ('mfc', 'Mba', NULL, 4273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mba', [Definition] = NULL, [SortOrder] = 425.90 WHERE [Code] = 'mfc' END +SET [Description] = 'Mba', [Definition] = NULL, [SortOrder] = 4273.00 WHERE [Code] = 'mfc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdp', 'Mbala', NULL, 426.00) END +VALUES ('mdp', 'Mbala', NULL, 4274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbala', [Definition] = NULL, [SortOrder] = 426.00 WHERE [Code] = 'mdp' END +SET [Description] = 'Mbala', [Definition] = NULL, [SortOrder] = 4274.00 WHERE [Code] = 'mdp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnb', 'Mbalanhu', NULL, 426.10) END +VALUES ('lnb', 'Mbalanhu', NULL, 4275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbalanhu', [Definition] = NULL, [SortOrder] = 426.10 WHERE [Code] = 'lnb' END +SET [Description] = 'Mbalanhu', [Definition] = NULL, [SortOrder] = 4275.00 WHERE [Code] = 'lnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmz', 'Mbandja', NULL, 426.20) END +VALUES ('zmz', 'Mbandja', NULL, 4276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbandja', [Definition] = NULL, [SortOrder] = 426.20 WHERE [Code] = 'zmz' END +SET [Description] = 'Mbandja', [Definition] = NULL, [SortOrder] = 4276.00 WHERE [Code] = 'zmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxg', 'Mbangala', NULL, 426.30) END +VALUES ('mxg', 'Mbangala', NULL, 4277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbangala', [Definition] = NULL, [SortOrder] = 426.30 WHERE [Code] = 'mxg' END +SET [Description] = 'Mbangala', [Definition] = NULL, [SortOrder] = 4277.00 WHERE [Code] = 'mxg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgn', 'Mbangi', NULL, 426.40) END +VALUES ('mgn', 'Mbangi', NULL, 4278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbangi', [Definition] = NULL, [SortOrder] = 426.40 WHERE [Code] = 'mgn' END +SET [Description] = 'Mbangi', [Definition] = NULL, [SortOrder] = 4278.00 WHERE [Code] = 'mgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmn', 'Mbangwe', NULL, 426.50) END +VALUES ('zmn', 'Mbangwe', NULL, 4279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbangwe', [Definition] = NULL, [SortOrder] = 426.50 WHERE [Code] = 'zmn' END +SET [Description] = 'Mbangwe', [Definition] = NULL, [SortOrder] = 4279.00 WHERE [Code] = 'zmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvl', 'Mbara (Australia)', NULL, 426.60) END +VALUES ('mvl', 'Mbara (Australia)', NULL, 4280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbara (Australia)', [Definition] = NULL, [SortOrder] = 426.60 WHERE [Code] = 'mvl' END +SET [Description] = 'Mbara (Australia)', [Definition] = NULL, [SortOrder] = 4280.00 WHERE [Code] = 'mvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpk', 'Mbara (Chad)', NULL, 426.70) END +VALUES ('mpk', 'Mbara (Chad)', NULL, 4281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbara (Chad)', [Definition] = NULL, [SortOrder] = 426.70 WHERE [Code] = 'mpk' END +SET [Description] = 'Mbara (Chad)', [Definition] = NULL, [SortOrder] = 4281.00 WHERE [Code] = 'mpk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmv', 'Mbariman-Gudhinma', NULL, 426.80) END +VALUES ('zmv', 'Mbariman-Gudhinma', NULL, 4282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbariman-Gudhinma', [Definition] = NULL, [SortOrder] = 426.80 WHERE [Code] = 'zmv' END +SET [Description] = 'Mbariman-Gudhinma', [Definition] = NULL, [SortOrder] = 4282.00 WHERE [Code] = 'zmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdn', 'Mbati', NULL, 426.90) END +VALUES ('mdn', 'Mbati', NULL, 4283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbati', [Definition] = NULL, [SortOrder] = 426.90 WHERE [Code] = 'mdn' END +SET [Description] = 'Mbati', [Definition] = NULL, [SortOrder] = 4283.00 WHERE [Code] = 'mdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwa', 'Mbato', NULL, 427.00) END +VALUES ('gwa', 'Mbato', NULL, 4284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbato', [Definition] = NULL, [SortOrder] = 427.00 WHERE [Code] = 'gwa' END +SET [Description] = 'Mbato', [Definition] = NULL, [SortOrder] = 4284.00 WHERE [Code] = 'gwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myb', 'Mbay', NULL, 427.10) END +VALUES ('myb', 'Mbay', NULL, 4285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbay', [Definition] = NULL, [SortOrder] = 427.10 WHERE [Code] = 'myb' END +SET [Description] = 'Mbay', [Definition] = NULL, [SortOrder] = 4285.00 WHERE [Code] = 'myb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfo', 'Mbe', NULL, 427.20) END +VALUES ('mfo', 'Mbe', NULL, 4286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbe', [Definition] = NULL, [SortOrder] = 427.20 WHERE [Code] = 'mfo' END +SET [Description] = 'Mbe', [Definition] = NULL, [SortOrder] = 4286.00 WHERE [Code] = 'mfo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtk', 'Mbe''', NULL, 427.30) END +VALUES ('mtk', 'Mbe''', NULL, 4287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbe''', [Definition] = NULL, [SortOrder] = 427.30 WHERE [Code] = 'mtk' END +SET [Description] = 'Mbe''', [Definition] = NULL, [SortOrder] = 4287.00 WHERE [Code] = 'mtk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mql', 'Mbelime', NULL, 427.40) END +VALUES ('mql', 'Mbelime', NULL, 4288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbelime', [Definition] = NULL, [SortOrder] = 427.40 WHERE [Code] = 'mql' END +SET [Description] = 'Mbelime', [Definition] = NULL, [SortOrder] = 4288.00 WHERE [Code] = 'mql' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdt', 'Mbere', NULL, 427.50) END +VALUES ('mdt', 'Mbere', NULL, 4289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbere', [Definition] = NULL, [SortOrder] = 427.50 WHERE [Code] = 'mdt' END +SET [Description] = 'Mbere', [Definition] = NULL, [SortOrder] = 4289.00 WHERE [Code] = 'mdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zms', 'Mbesa', NULL, 427.60) END +VALUES ('zms', 'Mbesa', NULL, 4290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbesa', [Definition] = NULL, [SortOrder] = 427.60 WHERE [Code] = 'zms' END +SET [Description] = 'Mbesa', [Definition] = NULL, [SortOrder] = 4290.00 WHERE [Code] = 'zms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emz', 'Mbessa', NULL, 427.70) END +VALUES ('emz', 'Mbessa', NULL, 4291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbessa', [Definition] = NULL, [SortOrder] = 427.70 WHERE [Code] = 'emz' END +SET [Description] = 'Mbessa', [Definition] = NULL, [SortOrder] = 4291.00 WHERE [Code] = 'emz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbo', 'Mbo (Cameroon)', NULL, 427.80) END +VALUES ('mbo', 'Mbo (Cameroon)', NULL, 4292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbo (Cameroon)', [Definition] = NULL, [SortOrder] = 427.80 WHERE [Code] = 'mbo' END +SET [Description] = 'Mbo (Cameroon)', [Definition] = NULL, [SortOrder] = 4292.00 WHERE [Code] = 'mbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmw', 'Mbo (Democratic Republic of Congo)', NULL, 427.90) END +VALUES ('zmw', 'Mbo (Democratic Republic of Congo)', NULL, 4293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbo (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 427.90 WHERE [Code] = 'zmw' END +SET [Description] = 'Mbo (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 4293.00 WHERE [Code] = 'zmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moi', 'Mboi', NULL, 428.00) END +VALUES ('moi', 'Mboi', NULL, 4294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mboi', [Definition] = NULL, [SortOrder] = 428.00 WHERE [Code] = 'moi' END +SET [Description] = 'Mboi', [Definition] = NULL, [SortOrder] = 4294.00 WHERE [Code] = 'moi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdu', 'Mboko', NULL, 428.10) END +VALUES ('mdu', 'Mboko', NULL, 4295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mboko', [Definition] = NULL, [SortOrder] = 428.10 WHERE [Code] = 'mdu' END +SET [Description] = 'Mboko', [Definition] = NULL, [SortOrder] = 4295.00 WHERE [Code] = 'mdu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdq', 'Mbole', NULL, 428.20) END +VALUES ('mdq', 'Mbole', NULL, 4296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbole', [Definition] = NULL, [SortOrder] = 428.20 WHERE [Code] = 'mdq' END +SET [Description] = 'Mbole', [Definition] = NULL, [SortOrder] = 4296.00 WHERE [Code] = 'mdq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmb', 'Mbonga', NULL, 428.30) END +VALUES ('xmb', 'Mbonga', NULL, 4297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbonga', [Definition] = NULL, [SortOrder] = 428.30 WHERE [Code] = 'xmb' END +SET [Description] = 'Mbonga', [Definition] = NULL, [SortOrder] = 4297.00 WHERE [Code] = 'xmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgu', 'Mbongno', NULL, 428.40) END +VALUES ('bgu', 'Mbongno', NULL, 4298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbongno', [Definition] = NULL, [SortOrder] = 428.40 WHERE [Code] = 'bgu' END +SET [Description] = 'Mbongno', [Definition] = NULL, [SortOrder] = 4298.00 WHERE [Code] = 'bgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdw', 'Mbosi', NULL, 428.50) END +VALUES ('mdw', 'Mbosi', NULL, 4299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbosi', [Definition] = NULL, [SortOrder] = 428.50 WHERE [Code] = 'mdw' END +SET [Description] = 'Mbosi', [Definition] = NULL, [SortOrder] = 4299.00 WHERE [Code] = 'mdw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxo', 'Mbowe', NULL, 428.60) END +VALUES ('mxo', 'Mbowe', NULL, 4300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbowe', [Definition] = NULL, [SortOrder] = 428.60 WHERE [Code] = 'mxo' END +SET [Description] = 'Mbowe', [Definition] = NULL, [SortOrder] = 4300.00 WHERE [Code] = 'mxo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mka', 'Mbre', NULL, 428.70) END +VALUES ('mka', 'Mbre', NULL, 4301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbre', [Definition] = NULL, [SortOrder] = 428.70 WHERE [Code] = 'mka' END +SET [Description] = 'Mbre', [Definition] = NULL, [SortOrder] = 4301.00 WHERE [Code] = 'mka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmd', 'Mbudum', NULL, 428.80) END +VALUES ('xmd', 'Mbudum', NULL, 4302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbudum', [Definition] = NULL, [SortOrder] = 428.80 WHERE [Code] = 'xmd' END +SET [Description] = 'Mbudum', [Definition] = NULL, [SortOrder] = 4302.00 WHERE [Code] = 'xmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhd', 'Mbugu', NULL, 428.90) END +VALUES ('mhd', 'Mbugu', NULL, 4303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbugu', [Definition] = NULL, [SortOrder] = 428.90 WHERE [Code] = 'mhd' END +SET [Description] = 'Mbugu', [Definition] = NULL, [SortOrder] = 4303.00 WHERE [Code] = 'mhd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgz', 'Mbugwe', NULL, 429.00) END +VALUES ('mgz', 'Mbugwe', NULL, 4304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbugwe', [Definition] = NULL, [SortOrder] = 429.00 WHERE [Code] = 'mgz' END +SET [Description] = 'Mbugwe', [Definition] = NULL, [SortOrder] = 4304.00 WHERE [Code] = 'mgz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpc', 'Mbuk', NULL, 429.10) END +VALUES ('bpc', 'Mbuk', NULL, 4305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbuk', [Definition] = NULL, [SortOrder] = 429.10 WHERE [Code] = 'bpc' END +SET [Description] = 'Mbuk', [Definition] = NULL, [SortOrder] = 4305.00 WHERE [Code] = 'bpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqb', 'Mbuko', NULL, 429.20) END +VALUES ('mqb', 'Mbuko', NULL, 4306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbuko', [Definition] = NULL, [SortOrder] = 429.20 WHERE [Code] = 'mqb' END +SET [Description] = 'Mbuko', [Definition] = NULL, [SortOrder] = 4306.00 WHERE [Code] = 'mqb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhw', 'Mbukushu', NULL, 429.30) END +VALUES ('mhw', 'Mbukushu', NULL, 4307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbukushu', [Definition] = NULL, [SortOrder] = 429.30 WHERE [Code] = 'mhw' END +SET [Description] = 'Mbukushu', [Definition] = NULL, [SortOrder] = 4307.00 WHERE [Code] = 'mhw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mna', 'Mbula', NULL, 429.40) END +VALUES ('mna', 'Mbula', NULL, 4308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbula', [Definition] = NULL, [SortOrder] = 429.40 WHERE [Code] = 'mna' END +SET [Description] = 'Mbula', [Definition] = NULL, [SortOrder] = 4308.00 WHERE [Code] = 'mna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbu', 'Mbula-Bwazza', NULL, 429.50) END +VALUES ('mbu', 'Mbula-Bwazza', NULL, 4309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbula-Bwazza', [Definition] = NULL, [SortOrder] = 429.50 WHERE [Code] = 'mbu' END +SET [Description] = 'Mbula-Bwazza', [Definition] = NULL, [SortOrder] = 4309.00 WHERE [Code] = 'mbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlb', 'Mbule', NULL, 429.60) END +VALUES ('mlb', 'Mbule', NULL, 4310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbule', [Definition] = NULL, [SortOrder] = 429.60 WHERE [Code] = 'mlb' END +SET [Description] = 'Mbule', [Definition] = NULL, [SortOrder] = 4310.00 WHERE [Code] = 'mlb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbv', 'Mbulungish', NULL, 429.70) END +VALUES ('mbv', 'Mbulungish', NULL, 4311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbulungish', [Definition] = NULL, [SortOrder] = 429.70 WHERE [Code] = 'mbv' END +SET [Description] = 'Mbulungish', [Definition] = NULL, [SortOrder] = 4311.00 WHERE [Code] = 'mbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdd', 'Mbum', NULL, 429.80) END +VALUES ('mdd', 'Mbum', NULL, 4312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbum', [Definition] = NULL, [SortOrder] = 429.80 WHERE [Code] = 'mdd' END +SET [Description] = 'Mbum', [Definition] = NULL, [SortOrder] = 4312.00 WHERE [Code] = 'mdd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mck', 'Mbunda', NULL, 429.90) END +VALUES ('mck', 'Mbunda', NULL, 4313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbunda', [Definition] = NULL, [SortOrder] = 429.90 WHERE [Code] = 'mck' END +SET [Description] = 'Mbunda', [Definition] = NULL, [SortOrder] = 4313.00 WHERE [Code] = 'mck' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgy', 'Mbunga', NULL, 430.00) END +VALUES ('mgy', 'Mbunga', NULL, 4314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbunga', [Definition] = NULL, [SortOrder] = 430.00 WHERE [Code] = 'mgy' END +SET [Description] = 'Mbunga', [Definition] = NULL, [SortOrder] = 4314.00 WHERE [Code] = 'mgy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbt', 'Mburku', NULL, 430.10) END +VALUES ('bbt', 'Mburku', NULL, 4315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mburku', [Definition] = NULL, [SortOrder] = 430.10 WHERE [Code] = 'bbt' END +SET [Description] = 'Mburku', [Definition] = NULL, [SortOrder] = 4315.00 WHERE [Code] = 'bbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfu', 'Mbwela', NULL, 430.20) END +VALUES ('mfu', 'Mbwela', NULL, 4316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbwela', [Definition] = NULL, [SortOrder] = 430.20 WHERE [Code] = 'mfu' END +SET [Description] = 'Mbwela', [Definition] = NULL, [SortOrder] = 4316.00 WHERE [Code] = 'mfu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gun', 'Mbyá Guaraní', NULL, 430.30) END +VALUES ('gun', 'Mbyá Guaraní', NULL, 4317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbyá Guaraní', [Definition] = NULL, [SortOrder] = 430.30 WHERE [Code] = 'gun' END +SET [Description] = 'Mbyá Guaraní', [Definition] = NULL, [SortOrder] = 4317.00 WHERE [Code] = 'gun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mym', 'Me''en', NULL, 430.40) END +VALUES ('mym', 'Me''en', NULL, 4318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Me''en', [Definition] = NULL, [SortOrder] = 430.40 WHERE [Code] = 'mym' END +SET [Description] = 'Me''en', [Definition] = NULL, [SortOrder] = 4318.00 WHERE [Code] = 'mym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjm', 'Medebur', NULL, 430.50) END +VALUES ('mjm', 'Medebur', NULL, 4319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Medebur', [Definition] = NULL, [SortOrder] = 430.50 WHERE [Code] = 'mjm' END +SET [Description] = 'Medebur', [Definition] = NULL, [SortOrder] = 4319.00 WHERE [Code] = 'mjm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmf', 'Medefaidrin', NULL, 430.60) END +VALUES ('dmf', 'Medefaidrin', NULL, 4320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Medefaidrin', [Definition] = NULL, [SortOrder] = 430.60 WHERE [Code] = 'dmf' END +SET [Description] = 'Medefaidrin', [Definition] = NULL, [SortOrder] = 4320.00 WHERE [Code] = 'dmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mue', 'Media Lengua', NULL, 430.70) END +VALUES ('mue', 'Media Lengua', NULL, 4321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Media Lengua', [Definition] = NULL, [SortOrder] = 430.70 WHERE [Code] = 'mue' END +SET [Description] = 'Media Lengua', [Definition] = NULL, [SortOrder] = 4321.00 WHERE [Code] = 'mue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xme', 'Median', NULL, 430.80) END +VALUES ('xme', 'Median', NULL, 4322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Median', [Definition] = NULL, [SortOrder] = 430.80 WHERE [Code] = 'xme' END +SET [Description] = 'Median', [Definition] = NULL, [SortOrder] = 4322.00 WHERE [Code] = 'xme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mud', 'Mednyj Aleut', NULL, 430.90) END +VALUES ('mud', 'Mednyj Aleut', NULL, 4323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mednyj Aleut', [Definition] = NULL, [SortOrder] = 430.90 WHERE [Code] = 'mud' END +SET [Description] = 'Mednyj Aleut', [Definition] = NULL, [SortOrder] = 4323.00 WHERE [Code] = 'mud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byv', 'Medumba', NULL, 431.00) END +VALUES ('byv', 'Medumba', NULL, 4324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Medumba', [Definition] = NULL, [SortOrder] = 431.00 WHERE [Code] = 'byv' END +SET [Description] = 'Medumba', [Definition] = NULL, [SortOrder] = 4324.00 WHERE [Code] = 'byv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfj', 'Mefele', NULL, 431.10) END +VALUES ('mfj', 'Mefele', NULL, 4325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mefele', [Definition] = NULL, [SortOrder] = 431.10 WHERE [Code] = 'mfj' END +SET [Description] = 'Mefele', [Definition] = NULL, [SortOrder] = 4325.00 WHERE [Code] = 'mfj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mef', 'Megam', NULL, 431.20) END +VALUES ('mef', 'Megam', NULL, 4326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Megam', [Definition] = NULL, [SortOrder] = 431.20 WHERE [Code] = 'mef' END +SET [Description] = 'Megam', [Definition] = NULL, [SortOrder] = 4326.00 WHERE [Code] = 'mef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruq', 'Megleno Romanian', NULL, 431.30) END +VALUES ('ruq', 'Megleno Romanian', NULL, 4327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Megleno Romanian', [Definition] = NULL, [SortOrder] = 431.30 WHERE [Code] = 'ruq' END +SET [Description] = 'Megleno Romanian', [Definition] = NULL, [SortOrder] = 4327.00 WHERE [Code] = 'ruq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nux', 'Mehek', NULL, 431.40) END +VALUES ('nux', 'Mehek', NULL, 4328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mehek', [Definition] = NULL, [SortOrder] = 431.40 WHERE [Code] = 'nux' END +SET [Description] = 'Mehek', [Definition] = NULL, [SortOrder] = 4328.00 WHERE [Code] = 'nux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmh', 'Mehináku', NULL, 431.50) END +VALUES ('mmh', 'Mehináku', NULL, 4329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mehináku', [Definition] = NULL, [SortOrder] = 431.50 WHERE [Code] = 'mmh' END +SET [Description] = 'Mehináku', [Definition] = NULL, [SortOrder] = 4329.00 WHERE [Code] = 'mmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdq', 'Mehri', NULL, 431.60) END +VALUES ('gdq', 'Mehri', NULL, 4330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mehri', [Definition] = NULL, [SortOrder] = 431.60 WHERE [Code] = 'gdq' END +SET [Description] = 'Mehri', [Definition] = NULL, [SortOrder] = 4330.00 WHERE [Code] = 'gdq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mek', 'Mekeo', NULL, 431.70) END +VALUES ('mek', 'Mekeo', NULL, 4331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mekeo', [Definition] = NULL, [SortOrder] = 431.70 WHERE [Code] = 'mek' END +SET [Description] = 'Mekeo', [Definition] = NULL, [SortOrder] = 4331.00 WHERE [Code] = 'mek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvk', 'Mekmek', NULL, 431.80) END +VALUES ('mvk', 'Mekmek', NULL, 4332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mekmek', [Definition] = NULL, [SortOrder] = 431.80 WHERE [Code] = 'mvk' END +SET [Description] = 'Mekmek', [Definition] = NULL, [SortOrder] = 4332.00 WHERE [Code] = 'mvk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msf', 'Mekwei', NULL, 431.90) END +VALUES ('msf', 'Mekwei', NULL, 4333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mekwei', [Definition] = NULL, [SortOrder] = 431.90 WHERE [Code] = 'msf' END +SET [Description] = 'Mekwei', [Definition] = NULL, [SortOrder] = 4333.00 WHERE [Code] = 'msf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hkn', 'Mel-Khaonh', NULL, 432.00) END +VALUES ('hkn', 'Mel-Khaonh', NULL, 4334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mel-Khaonh', [Definition] = NULL, [SortOrder] = 432.00 WHERE [Code] = 'hkn' END +SET [Description] = 'Mel-Khaonh', [Definition] = NULL, [SortOrder] = 4334.00 WHERE [Code] = 'hkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxe', 'Mele-Fila', NULL, 432.10) END +VALUES ('mxe', 'Mele-Fila', NULL, 4335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mele-Fila', [Definition] = NULL, [SortOrder] = 432.10 WHERE [Code] = 'mxe' END +SET [Description] = 'Mele-Fila', [Definition] = NULL, [SortOrder] = 4335.00 WHERE [Code] = 'mxe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfx', 'Melo', NULL, 432.20) END +VALUES ('mfx', 'Melo', NULL, 4336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Melo', [Definition] = NULL, [SortOrder] = 432.20 WHERE [Code] = 'mfx' END +SET [Description] = 'Melo', [Definition] = NULL, [SortOrder] = 4336.00 WHERE [Code] = 'mfx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'med') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('med', 'Melpa', NULL, 432.30) END +VALUES ('med', 'Melpa', NULL, 4337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Melpa', [Definition] = NULL, [SortOrder] = 432.30 WHERE [Code] = 'med' END +SET [Description] = 'Melpa', [Definition] = NULL, [SortOrder] = 4337.00 WHERE [Code] = 'med' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mby', 'Memoni', NULL, 432.40) END +VALUES ('mby', 'Memoni', NULL, 4338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Memoni', [Definition] = NULL, [SortOrder] = 432.40 WHERE [Code] = 'mby' END +SET [Description] = 'Memoni', [Definition] = NULL, [SortOrder] = 4338.00 WHERE [Code] = 'mby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkd', 'Mendalam Kayan', NULL, 432.50) END +VALUES ('xkd', 'Mendalam Kayan', NULL, 4339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mendalam Kayan', [Definition] = NULL, [SortOrder] = 432.50 WHERE [Code] = 'xkd' END +SET [Description] = 'Mendalam Kayan', [Definition] = NULL, [SortOrder] = 4339.00 WHERE [Code] = 'xkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfd', 'Mendankwe-Nkwen', NULL, 432.60) END +VALUES ('mfd', 'Mendankwe-Nkwen', NULL, 4340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mendankwe-Nkwen', [Definition] = NULL, [SortOrder] = 432.60 WHERE [Code] = 'mfd' END +SET [Description] = 'Mendankwe-Nkwen', [Definition] = NULL, [SortOrder] = 4340.00 WHERE [Code] = 'mfd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sim', 'Mende (Papua New Guinea)', NULL, 432.70) END +VALUES ('sim', 'Mende (Papua New Guinea)', NULL, 4341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mende (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 432.70 WHERE [Code] = 'sim' END +SET [Description] = 'Mende (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 4341.00 WHERE [Code] = 'sim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'men') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('men', 'Mende (Sierra Leone)', NULL, 432.80) END +VALUES ('men', 'Mende (Sierra Leone)', NULL, 4342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mende (Sierra Leone)', [Definition] = NULL, [SortOrder] = 432.80 WHERE [Code] = 'men' END +SET [Description] = 'Mende (Sierra Leone)', [Definition] = NULL, [SortOrder] = 4342.00 WHERE [Code] = 'men' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmg', 'Mengaka', NULL, 432.90) END +VALUES ('xmg', 'Mengaka', NULL, 4343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mengaka', [Definition] = NULL, [SortOrder] = 432.90 WHERE [Code] = 'xmg' END +SET [Description] = 'Mengaka', [Definition] = NULL, [SortOrder] = 4343.00 WHERE [Code] = 'xmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mee', 'Mengen', NULL, 433.00) END +VALUES ('mee', 'Mengen', NULL, 4344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mengen', [Definition] = NULL, [SortOrder] = 433.00 WHERE [Code] = 'mee' END +SET [Description] = 'Mengen', [Definition] = NULL, [SortOrder] = 4344.00 WHERE [Code] = 'mee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mct', 'Mengisa', NULL, 433.10) END +VALUES ('mct', 'Mengisa', NULL, 4345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mengisa', [Definition] = NULL, [SortOrder] = 433.10 WHERE [Code] = 'mct' END +SET [Description] = 'Mengisa', [Definition] = NULL, [SortOrder] = 4345.00 WHERE [Code] = 'mct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnr', 'Ménik', NULL, 433.20) END +VALUES ('tnr', 'Ménik', NULL, 4346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ménik', [Definition] = NULL, [SortOrder] = 433.20 WHERE [Code] = 'tnr' END +SET [Description] = 'Ménik', [Definition] = NULL, [SortOrder] = 4346.00 WHERE [Code] = 'tnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mea', 'Menka', NULL, 433.30) END +VALUES ('mea', 'Menka', NULL, 4347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Menka', [Definition] = NULL, [SortOrder] = 433.30 WHERE [Code] = 'mea' END +SET [Description] = 'Menka', [Definition] = NULL, [SortOrder] = 4347.00 WHERE [Code] = 'mea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mez', 'Menominee', NULL, 433.40) END +VALUES ('mez', 'Menominee', NULL, 4348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Menominee', [Definition] = NULL, [SortOrder] = 433.40 WHERE [Code] = 'mez' END +SET [Description] = 'Menominee', [Definition] = NULL, [SortOrder] = 4348.00 WHERE [Code] = 'mez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwv', 'Mentawai', NULL, 433.50) END +VALUES ('mwv', 'Mentawai', NULL, 4349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mentawai', [Definition] = NULL, [SortOrder] = 433.50 WHERE [Code] = 'mwv' END +SET [Description] = 'Mentawai', [Definition] = NULL, [SortOrder] = 4349.00 WHERE [Code] = 'mwv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcr', 'Menya', NULL, 433.60) END +VALUES ('mcr', 'Menya', NULL, 4350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Menya', [Definition] = NULL, [SortOrder] = 433.60 WHERE [Code] = 'mcr' END +SET [Description] = 'Menya', [Definition] = NULL, [SortOrder] = 4350.00 WHERE [Code] = 'mcr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvx', 'Meoswar', NULL, 433.70) END +VALUES ('mvx', 'Meoswar', NULL, 4351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meoswar', [Definition] = NULL, [SortOrder] = 433.70 WHERE [Code] = 'mvx' END +SET [Description] = 'Meoswar', [Definition] = NULL, [SortOrder] = 4351.00 WHERE [Code] = 'mvx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnu', 'Mer', NULL, 433.80) END +VALUES ('mnu', 'Mer', NULL, 4352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mer', [Definition] = NULL, [SortOrder] = 433.80 WHERE [Code] = 'mnu' END +SET [Description] = 'Mer', [Definition] = NULL, [SortOrder] = 4352.00 WHERE [Code] = 'mnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxm', 'Meramera', NULL, 433.90) END +VALUES ('mxm', 'Meramera', NULL, 4353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meramera', [Definition] = NULL, [SortOrder] = 433.90 WHERE [Code] = 'mxm' END +SET [Description] = 'Meramera', [Definition] = NULL, [SortOrder] = 4353.00 WHERE [Code] = 'mxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmb', 'Merei', NULL, 434.00) END +VALUES ('lmb', 'Merei', NULL, 4354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Merei', [Definition] = NULL, [SortOrder] = 434.00 WHERE [Code] = 'lmb' END +SET [Description] = 'Merei', [Definition] = NULL, [SortOrder] = 4354.00 WHERE [Code] = 'lmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meq', 'Merey', NULL, 434.10) END +VALUES ('meq', 'Merey', NULL, 4355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Merey', [Definition] = NULL, [SortOrder] = 434.10 WHERE [Code] = 'meq' END +SET [Description] = 'Merey', [Definition] = NULL, [SortOrder] = 4355.00 WHERE [Code] = 'meq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulk', 'Meriam Mir', NULL, 434.20) END +VALUES ('ulk', 'Meriam Mir', NULL, 4356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meriam Mir', [Definition] = NULL, [SortOrder] = 434.20 WHERE [Code] = 'ulk' END +SET [Description] = 'Meriam Mir', [Definition] = NULL, [SortOrder] = 4356.00 WHERE [Code] = 'ulk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrm', 'Merlav', NULL, 434.30) END +VALUES ('mrm', 'Merlav', NULL, 4357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Merlav', [Definition] = NULL, [SortOrder] = 434.30 WHERE [Code] = 'mrm' END +SET [Description] = 'Merlav', [Definition] = NULL, [SortOrder] = 4357.00 WHERE [Code] = 'mrm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmr', 'Meroitic', NULL, 434.40) END +VALUES ('xmr', 'Meroitic', NULL, 4358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meroitic', [Definition] = NULL, [SortOrder] = 434.40 WHERE [Code] = 'xmr' END +SET [Description] = 'Meroitic', [Definition] = NULL, [SortOrder] = 4358.00 WHERE [Code] = 'xmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mer', 'Meru', NULL, 434.50) END +VALUES ('mer', 'Meru', NULL, 4359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meru', [Definition] = NULL, [SortOrder] = 434.50 WHERE [Code] = 'mer' END +SET [Description] = 'Meru', [Definition] = NULL, [SortOrder] = 4359.00 WHERE [Code] = 'mer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wry', 'Merwari', NULL, 434.60) END +VALUES ('wry', 'Merwari', NULL, 4360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Merwari', [Definition] = NULL, [SortOrder] = 434.60 WHERE [Code] = 'wry' END +SET [Description] = 'Merwari', [Definition] = NULL, [SortOrder] = 4360.00 WHERE [Code] = 'wry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iyo', 'Mesaka', NULL, 434.70) END +VALUES ('iyo', 'Mesaka', NULL, 4361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesaka', [Definition] = NULL, [SortOrder] = 434.70 WHERE [Code] = 'iyo' END +SET [Description] = 'Mesaka', [Definition] = NULL, [SortOrder] = 4361.00 WHERE [Code] = 'iyo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apm', 'Mescalero-Chiricahua Apache', NULL, 434.80) END +VALUES ('apm', 'Mescalero-Chiricahua Apache', NULL, 4362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mescalero-Chiricahua Apache', [Definition] = NULL, [SortOrder] = 434.80 WHERE [Code] = 'apm' END +SET [Description] = 'Mescalero-Chiricahua Apache', [Definition] = NULL, [SortOrder] = 4362.00 WHERE [Code] = 'apm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mci', 'Mese', NULL, 434.90) END +VALUES ('mci', 'Mese', NULL, 4363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mese', [Definition] = NULL, [SortOrder] = 434.90 WHERE [Code] = 'mci' END +SET [Description] = 'Mese', [Definition] = NULL, [SortOrder] = 4363.00 WHERE [Code] = 'mci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sac', 'Meskwaki', NULL, 435.00) END +VALUES ('sac', 'Meskwaki', NULL, 4364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meskwaki', [Definition] = NULL, [SortOrder] = 435.00 WHERE [Code] = 'sac' END +SET [Description] = 'Meskwaki', [Definition] = NULL, [SortOrder] = 4364.00 WHERE [Code] = 'sac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zim', 'Mesme', NULL, 435.10) END +VALUES ('zim', 'Mesme', NULL, 4365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesme', [Definition] = NULL, [SortOrder] = 435.10 WHERE [Code] = 'zim' END +SET [Description] = 'Mesme', [Definition] = NULL, [SortOrder] = 4365.00 WHERE [Code] = 'zim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mys', 'Mesmes', NULL, 435.20) END +VALUES ('mys', 'Mesmes', NULL, 4366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesmes', [Definition] = NULL, [SortOrder] = 435.20 WHERE [Code] = 'mys' END +SET [Description] = 'Mesmes', [Definition] = NULL, [SortOrder] = 4366.00 WHERE [Code] = 'mys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acm', 'Mesopotamian Arabic', NULL, 435.30) END +VALUES ('acm', 'Mesopotamian Arabic', NULL, 4367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesopotamian Arabic', [Definition] = NULL, [SortOrder] = 435.30 WHERE [Code] = 'acm' END +SET [Description] = 'Mesopotamian Arabic', [Definition] = NULL, [SortOrder] = 4367.00 WHERE [Code] = 'acm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvz', 'Mesqan', NULL, 435.40) END +VALUES ('mvz', 'Mesqan', NULL, 4368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesqan', [Definition] = NULL, [SortOrder] = 435.40 WHERE [Code] = 'mvz' END +SET [Description] = 'Mesqan', [Definition] = NULL, [SortOrder] = 4368.00 WHERE [Code] = 'mvz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cms', 'Messapic', NULL, 435.50) END +VALUES ('cms', 'Messapic', NULL, 4369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Messapic', [Definition] = NULL, [SortOrder] = 435.50 WHERE [Code] = 'cms' END +SET [Description] = 'Messapic', [Definition] = NULL, [SortOrder] = 4369.00 WHERE [Code] = 'cms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgo', 'Meta''', NULL, 435.60) END +VALUES ('mgo', 'Meta''', NULL, 4370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meta''', [Definition] = NULL, [SortOrder] = 435.60 WHERE [Code] = 'mgo' END +SET [Description] = 'Meta''', [Definition] = NULL, [SortOrder] = 4370.00 WHERE [Code] = 'mgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxv', 'Metlatónoc Mixtec', NULL, 435.70) END +VALUES ('mxv', 'Metlatónoc Mixtec', NULL, 4371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Metlatónoc Mixtec', [Definition] = NULL, [SortOrder] = 435.70 WHERE [Code] = 'mxv' END +SET [Description] = 'Metlatónoc Mixtec', [Definition] = NULL, [SortOrder] = 4371.00 WHERE [Code] = 'mxv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtr', 'Mewari', NULL, 435.80) END +VALUES ('mtr', 'Mewari', NULL, 4372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mewari', [Definition] = NULL, [SortOrder] = 435.80 WHERE [Code] = 'mtr' END +SET [Description] = 'Mewari', [Definition] = NULL, [SortOrder] = 4372.00 WHERE [Code] = 'mtr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wtm', 'Mewati', NULL, 435.90) END +VALUES ('wtm', 'Mewati', NULL, 4373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mewati', [Definition] = NULL, [SortOrder] = 435.90 WHERE [Code] = 'wtm' END +SET [Description] = 'Mewati', [Definition] = NULL, [SortOrder] = 4373.00 WHERE [Code] = 'wtm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfs', 'Mexican Sign Language', NULL, 436.00) END +VALUES ('mfs', 'Mexican Sign Language', NULL, 4374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mexican Sign Language', [Definition] = NULL, [SortOrder] = 436.00 WHERE [Code] = 'mfs' END +SET [Description] = 'Mexican Sign Language', [Definition] = NULL, [SortOrder] = 4374.00 WHERE [Code] = 'mfs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mej', 'Meyah', NULL, 436.10) END +VALUES ('mej', 'Meyah', NULL, 4375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meyah', [Definition] = NULL, [SortOrder] = 436.10 WHERE [Code] = 'mej' END +SET [Description] = 'Meyah', [Definition] = NULL, [SortOrder] = 4375.00 WHERE [Code] = 'mej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbe', 'Mezontla Popoloca', NULL, 436.20) END +VALUES ('pbe', 'Mezontla Popoloca', NULL, 4376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mezontla Popoloca', [Definition] = NULL, [SortOrder] = 436.20 WHERE [Code] = 'pbe' END +SET [Description] = 'Mezontla Popoloca', [Definition] = NULL, [SortOrder] = 4376.00 WHERE [Code] = 'pbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ote') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ote', 'Mezquital Otomi', NULL, 436.30) END +VALUES ('ote', 'Mezquital Otomi', NULL, 4377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mezquital Otomi', [Definition] = NULL, [SortOrder] = 436.30 WHERE [Code] = 'ote' END +SET [Description] = 'Mezquital Otomi', [Definition] = NULL, [SortOrder] = 4377.00 WHERE [Code] = 'ote' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmf', 'Mfinu', NULL, 436.40) END +VALUES ('zmf', 'Mfinu', NULL, 4378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mfinu', [Definition] = NULL, [SortOrder] = 436.40 WHERE [Code] = 'zmf' END +SET [Description] = 'Mfinu', [Definition] = NULL, [SortOrder] = 4378.00 WHERE [Code] = 'zmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfu', 'Mfumte', NULL, 436.50) END +VALUES ('nfu', 'Mfumte', NULL, 4379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mfumte', [Definition] = NULL, [SortOrder] = 436.50 WHERE [Code] = 'nfu' END +SET [Description] = 'Mfumte', [Definition] = NULL, [SortOrder] = 4379.00 WHERE [Code] = 'nfu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmz', 'Mgbolizhia', NULL, 436.60) END +VALUES ('gmz', 'Mgbolizhia', NULL, 4380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mgbolizhia', [Definition] = NULL, [SortOrder] = 436.60 WHERE [Code] = 'gmz' END +SET [Description] = 'Mgbolizhia', [Definition] = NULL, [SortOrder] = 4380.00 WHERE [Code] = 'gmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mic', 'Mi''kmaq', NULL, 436.70) END +VALUES ('mic', 'Mi''kmaq', NULL, 4381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mi''kmaq', [Definition] = NULL, [SortOrder] = 436.70 WHERE [Code] = 'mic' END +SET [Description] = 'Mi''kmaq', [Definition] = NULL, [SortOrder] = 4381.00 WHERE [Code] = 'mic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zam', 'Miahuatlán Zapotec', NULL, 436.80) END +VALUES ('zam', 'Miahuatlán Zapotec', NULL, 4382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miahuatlán Zapotec', [Definition] = NULL, [SortOrder] = 436.80 WHERE [Code] = 'zam' END +SET [Description] = 'Miahuatlán Zapotec', [Definition] = NULL, [SortOrder] = 4382.00 WHERE [Code] = 'zam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mia', 'Miami', NULL, 436.90) END +VALUES ('mia', 'Miami', NULL, 4383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miami', [Definition] = NULL, [SortOrder] = 436.90 WHERE [Code] = 'mia' END +SET [Description] = 'Miami', [Definition] = NULL, [SortOrder] = 4383.00 WHERE [Code] = 'mia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpt', 'Mian', NULL, 437.00) END +VALUES ('mpt', 'Mian', NULL, 4384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mian', [Definition] = NULL, [SortOrder] = 437.00 WHERE [Code] = 'mpt' END +SET [Description] = 'Mian', [Definition] = NULL, [SortOrder] = 4384.00 WHERE [Code] = 'mpt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pla', 'Miani', NULL, 437.10) END +VALUES ('pla', 'Miani', NULL, 4385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miani', [Definition] = NULL, [SortOrder] = 437.10 WHERE [Code] = 'pla' END +SET [Description] = 'Miani', [Definition] = NULL, [SortOrder] = 4385.00 WHERE [Code] = 'pla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crg', 'Michif', NULL, 437.20) END +VALUES ('crg', 'Michif', NULL, 4386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Michif', [Definition] = NULL, [SortOrder] = 437.20 WHERE [Code] = 'crg' END +SET [Description] = 'Michif', [Definition] = NULL, [SortOrder] = 4386.00 WHERE [Code] = 'crg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmm', 'Michigamea', NULL, 437.30) END +VALUES ('cmm', 'Michigamea', NULL, 4387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Michigamea', [Definition] = NULL, [SortOrder] = 437.30 WHERE [Code] = 'cmm' END +SET [Description] = 'Michigamea', [Definition] = NULL, [SortOrder] = 4387.00 WHERE [Code] = 'cmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmc', 'Michoacán Mazahua', NULL, 437.40) END +VALUES ('mmc', 'Michoacán Mazahua', NULL, 4388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Michoacán Mazahua', [Definition] = NULL, [SortOrder] = 437.40 WHERE [Code] = 'mmc' END +SET [Description] = 'Michoacán Mazahua', [Definition] = NULL, [SortOrder] = 4388.00 WHERE [Code] = 'mmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncl', 'Michoacán Nahuatl', NULL, 437.50) END +VALUES ('ncl', 'Michoacán Nahuatl', NULL, 4389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Michoacán Nahuatl', [Definition] = NULL, [SortOrder] = 437.50 WHERE [Code] = 'ncl' END +SET [Description] = 'Michoacán Nahuatl', [Definition] = NULL, [SortOrder] = 4389.00 WHERE [Code] = 'ncl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnt', 'Mid Grand Valley Dani', NULL, 437.60) END +VALUES ('dnt', 'Mid Grand Valley Dani', NULL, 4390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mid Grand Valley Dani', [Definition] = NULL, [SortOrder] = 437.60 WHERE [Code] = 'dnt' END +SET [Description] = 'Mid Grand Valley Dani', [Definition] = NULL, [SortOrder] = 4390.00 WHERE [Code] = 'dnt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjo', 'Mid-Southern Banda', NULL, 437.70) END +VALUES ('bjo', 'Mid-Southern Banda', NULL, 4391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mid-Southern Banda', [Definition] = NULL, [SortOrder] = 437.70 WHERE [Code] = 'bjo' END +SET [Description] = 'Mid-Southern Banda', [Definition] = NULL, [SortOrder] = 4391.00 WHERE [Code] = 'bjo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axm', 'Middle Armenian', NULL, 437.80) END +VALUES ('axm', 'Middle Armenian', NULL, 4392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Armenian', [Definition] = NULL, [SortOrder] = 437.80 WHERE [Code] = 'axm' END +SET [Description] = 'Middle Armenian', [Definition] = NULL, [SortOrder] = 4392.00 WHERE [Code] = 'axm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbm', 'Middle Breton', NULL, 437.90) END +VALUES ('xbm', 'Middle Breton', NULL, 4393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Breton', [Definition] = NULL, [SortOrder] = 437.90 WHERE [Code] = 'xbm' END +SET [Description] = 'Middle Breton', [Definition] = NULL, [SortOrder] = 4393.00 WHERE [Code] = 'xbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnx', 'Middle Cornish', NULL, 438.00) END +VALUES ('cnx', 'Middle Cornish', NULL, 4394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Cornish', [Definition] = NULL, [SortOrder] = 438.00 WHERE [Code] = 'cnx' END +SET [Description] = 'Middle Cornish', [Definition] = NULL, [SortOrder] = 4394.00 WHERE [Code] = 'cnx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dum', 'Middle Dutch (ca. 1050-1350)', NULL, 438.10) END +VALUES ('dum', 'Middle Dutch (ca. 1050-1350)', NULL, 4395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Dutch (ca. 1050-1350)', [Definition] = NULL, [SortOrder] = 438.10 WHERE [Code] = 'dum' END +SET [Description] = 'Middle Dutch (ca. 1050-1350)', [Definition] = NULL, [SortOrder] = 4395.00 WHERE [Code] = 'dum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enm', 'Middle English (1100-1500)', NULL, 438.20) END +VALUES ('enm', 'Middle English (1100-1500)', NULL, 4396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle English (1100-1500)', [Definition] = NULL, [SortOrder] = 438.20 WHERE [Code] = 'enm' END +SET [Description] = 'Middle English (1100-1500)', [Definition] = NULL, [SortOrder] = 4396.00 WHERE [Code] = 'enm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frm', 'Middle French (ca. 1400-1600)', NULL, 438.30) END +VALUES ('frm', 'Middle French (ca. 1400-1600)', NULL, 4397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle French (ca. 1400-1600)', [Definition] = NULL, [SortOrder] = 438.30 WHERE [Code] = 'frm' END +SET [Description] = 'Middle French (ca. 1400-1600)', [Definition] = NULL, [SortOrder] = 4397.00 WHERE [Code] = 'frm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmh', 'Middle High German (ca. 1050-1500)', NULL, 438.40) END +VALUES ('gmh', 'Middle High German (ca. 1050-1500)', NULL, 4398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle High German (ca. 1050-1500)', [Definition] = NULL, [SortOrder] = 438.40 WHERE [Code] = 'gmh' END +SET [Description] = 'Middle High German (ca. 1050-1500)', [Definition] = NULL, [SortOrder] = 4398.00 WHERE [Code] = 'gmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'htx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('htx', 'Middle Hittite', NULL, 438.50) END +VALUES ('htx', 'Middle Hittite', NULL, 4399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Hittite', [Definition] = NULL, [SortOrder] = 438.50 WHERE [Code] = 'htx' END +SET [Description] = 'Middle Hittite', [Definition] = NULL, [SortOrder] = 4399.00 WHERE [Code] = 'htx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mga', 'Middle Irish (900-1200)', NULL, 438.60) END +VALUES ('mga', 'Middle Irish (900-1200)', NULL, 4400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Irish (900-1200)', [Definition] = NULL, [SortOrder] = 438.60 WHERE [Code] = 'mga' END +SET [Description] = 'Middle Irish (900-1200)', [Definition] = NULL, [SortOrder] = 4400.00 WHERE [Code] = 'mga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhm', 'Middle Khmer (1400 to 1850 CE)', NULL, 438.70) END +VALUES ('xhm', 'Middle Khmer (1400 to 1850 CE)', NULL, 4401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Khmer (1400 to 1850 CE)', [Definition] = NULL, [SortOrder] = 438.70 WHERE [Code] = 'xhm' END +SET [Description] = 'Middle Khmer (1400 to 1850 CE)', [Definition] = NULL, [SortOrder] = 4401.00 WHERE [Code] = 'xhm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okm', 'Middle Korean (10th-16th cent.)', NULL, 438.80) END +VALUES ('okm', 'Middle Korean (10th-16th cent.)', NULL, 4402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Korean (10th-16th cent.)', [Definition] = NULL, [SortOrder] = 438.80 WHERE [Code] = 'okm' END +SET [Description] = 'Middle Korean (10th-16th cent.)', [Definition] = NULL, [SortOrder] = 4402.00 WHERE [Code] = 'okm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gml', 'Middle Low German', NULL, 438.90) END +VALUES ('gml', 'Middle Low German', NULL, 4403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Low German', [Definition] = NULL, [SortOrder] = 438.90 WHERE [Code] = 'gml' END +SET [Description] = 'Middle Low German', [Definition] = NULL, [SortOrder] = 4403.00 WHERE [Code] = 'gml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xng', 'Middle Mongolian', NULL, 439.00) END +VALUES ('xng', 'Middle Mongolian', NULL, 4404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Mongolian', [Definition] = NULL, [SortOrder] = 439.00 WHERE [Code] = 'xng' END +SET [Description] = 'Middle Mongolian', [Definition] = NULL, [SortOrder] = 4404.00 WHERE [Code] = 'xng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwx', 'Middle Newar', NULL, 439.10) END +VALUES ('nwx', 'Middle Newar', NULL, 4405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Newar', [Definition] = NULL, [SortOrder] = 439.10 WHERE [Code] = 'nwx' END +SET [Description] = 'Middle Newar', [Definition] = NULL, [SortOrder] = 4405.00 WHERE [Code] = 'nwx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpl', 'Middle Watut', NULL, 439.20) END +VALUES ('mpl', 'Middle Watut', NULL, 4406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Watut', [Definition] = NULL, [SortOrder] = 439.20 WHERE [Code] = 'mpl' END +SET [Description] = 'Middle Watut', [Definition] = NULL, [SortOrder] = 4406.00 WHERE [Code] = 'mpl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlm', 'Middle Welsh', NULL, 439.30) END +VALUES ('wlm', 'Middle Welsh', NULL, 4407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Welsh', [Definition] = NULL, [SortOrder] = 439.30 WHERE [Code] = 'wlm' END +SET [Description] = 'Middle Welsh', [Definition] = NULL, [SortOrder] = 4407.00 WHERE [Code] = 'wlm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mei', 'Midob', NULL, 439.40) END +VALUES ('mei', 'Midob', NULL, 4408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Midob', [Definition] = NULL, [SortOrder] = 439.40 WHERE [Code] = 'mei' END +SET [Description] = 'Midob', [Definition] = NULL, [SortOrder] = 4408.00 WHERE [Code] = 'mei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmy', 'Migaama', NULL, 439.50) END +VALUES ('mmy', 'Migaama', NULL, 4409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Migaama', [Definition] = NULL, [SortOrder] = 439.50 WHERE [Code] = 'mmy' END +SET [Description] = 'Migaama', [Definition] = NULL, [SortOrder] = 4409.00 WHERE [Code] = 'mmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpp', 'Migabac', NULL, 439.60) END +VALUES ('mpp', 'Migabac', NULL, 4410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Migabac', [Definition] = NULL, [SortOrder] = 439.60 WHERE [Code] = 'mpp' END +SET [Description] = 'Migabac', [Definition] = NULL, [SortOrder] = 4410.00 WHERE [Code] = 'mpp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klm', 'Migum', NULL, 439.70) END +VALUES ('klm', 'Migum', NULL, 4411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Migum', [Definition] = NULL, [SortOrder] = 439.70 WHERE [Code] = 'klm' END +SET [Description] = 'Migum', [Definition] = NULL, [SortOrder] = 4411.00 WHERE [Code] = 'klm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxj', 'Miju-Mishmi', NULL, 439.80) END +VALUES ('mxj', 'Miju-Mishmi', NULL, 4412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miju-Mishmi', [Definition] = NULL, [SortOrder] = 439.80 WHERE [Code] = 'mxj' END +SET [Description] = 'Miju-Mishmi', [Definition] = NULL, [SortOrder] = 4412.00 WHERE [Code] = 'mxj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mik', 'Mikasuki', NULL, 439.90) END +VALUES ('mik', 'Mikasuki', NULL, 4413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mikasuki', [Definition] = NULL, [SortOrder] = 439.90 WHERE [Code] = 'mik' END +SET [Description] = 'Mikasuki', [Definition] = NULL, [SortOrder] = 4413.00 WHERE [Code] = 'mik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymh', 'Mili', NULL, 440.00) END +VALUES ('ymh', 'Mili', NULL, 4414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mili', [Definition] = NULL, [SortOrder] = 440.00 WHERE [Code] = 'ymh' END +SET [Description] = 'Mili', [Definition] = NULL, [SortOrder] = 4414.00 WHERE [Code] = 'ymh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlj', 'Miltu', NULL, 440.10) END +VALUES ('mlj', 'Miltu', NULL, 4415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miltu', [Definition] = NULL, [SortOrder] = 440.10 WHERE [Code] = 'mlj' END +SET [Description] = 'Miltu', [Definition] = NULL, [SortOrder] = 4415.00 WHERE [Code] = 'mlj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iml', 'Miluk', NULL, 440.20) END +VALUES ('iml', 'Miluk', NULL, 4416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miluk', [Definition] = NULL, [SortOrder] = 440.20 WHERE [Code] = 'iml' END +SET [Description] = 'Miluk', [Definition] = NULL, [SortOrder] = 4416.00 WHERE [Code] = 'iml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imy', 'Milyan', NULL, 440.30) END +VALUES ('imy', 'Milyan', NULL, 4417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Milyan', [Definition] = NULL, [SortOrder] = 440.30 WHERE [Code] = 'imy' END +SET [Description] = 'Milyan', [Definition] = NULL, [SortOrder] = 4417.00 WHERE [Code] = 'imy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnp', 'Min Bei Chinese', NULL, 440.40) END +VALUES ('mnp', 'Min Bei Chinese', NULL, 4418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Min Bei Chinese', [Definition] = NULL, [SortOrder] = 440.40 WHERE [Code] = 'mnp' END +SET [Description] = 'Min Bei Chinese', [Definition] = NULL, [SortOrder] = 4418.00 WHERE [Code] = 'mnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdo', 'Min Dong Chinese', NULL, 440.50) END +VALUES ('cdo', 'Min Dong Chinese', NULL, 4419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Min Dong Chinese', [Definition] = NULL, [SortOrder] = 440.50 WHERE [Code] = 'cdo' END +SET [Description] = 'Min Dong Chinese', [Definition] = NULL, [SortOrder] = 4419.00 WHERE [Code] = 'cdo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nan', 'Min Nan Chinese', NULL, 440.60) END +VALUES ('nan', 'Min Nan Chinese', NULL, 4420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Min Nan Chinese', [Definition] = NULL, [SortOrder] = 440.60 WHERE [Code] = 'nan' END +SET [Description] = 'Min Nan Chinese', [Definition] = NULL, [SortOrder] = 4420.00 WHERE [Code] = 'nan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czo', 'Min Zhong Chinese', NULL, 440.70) END +VALUES ('czo', 'Min Zhong Chinese', NULL, 4421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Min Zhong Chinese', [Definition] = NULL, [SortOrder] = 440.70 WHERE [Code] = 'czo' END +SET [Description] = 'Min Zhong Chinese', [Definition] = NULL, [SortOrder] = 4421.00 WHERE [Code] = 'czo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hna', 'Mina (Cameroon)', NULL, 440.80) END +VALUES ('hna', 'Mina (Cameroon)', NULL, 4422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mina (Cameroon)', [Definition] = NULL, [SortOrder] = 440.80 WHERE [Code] = 'hna' END +SET [Description] = 'Mina (Cameroon)', [Definition] = NULL, [SortOrder] = 4422.00 WHERE [Code] = 'hna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inm', 'Minaean', NULL, 440.90) END +VALUES ('inm', 'Minaean', NULL, 4423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minaean', [Definition] = NULL, [SortOrder] = 440.90 WHERE [Code] = 'inm' END +SET [Description] = 'Minaean', [Definition] = NULL, [SortOrder] = 4423.00 WHERE [Code] = 'inm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrg', 'Minang', NULL, 441.00) END +VALUES ('xrg', 'Minang', NULL, 4424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minang', [Definition] = NULL, [SortOrder] = 441.00 WHERE [Code] = 'xrg' END +SET [Description] = 'Minang', [Definition] = NULL, [SortOrder] = 4424.00 WHERE [Code] = 'xrg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'min') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('min', 'Minangkabau', NULL, 441.10) END +VALUES ('min', 'Minangkabau', NULL, 4425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minangkabau', [Definition] = NULL, [SortOrder] = 441.10 WHERE [Code] = 'min' END +SET [Description] = 'Minangkabau', [Definition] = NULL, [SortOrder] = 4425.00 WHERE [Code] = 'min' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcv', 'Minanibai', NULL, 441.20) END +VALUES ('mcv', 'Minanibai', NULL, 4426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minanibai', [Definition] = NULL, [SortOrder] = 441.20 WHERE [Code] = 'mcv' END +SET [Description] = 'Minanibai', [Definition] = NULL, [SortOrder] = 4426.00 WHERE [Code] = 'mcv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvn', 'Minaveha', NULL, 441.30) END +VALUES ('mvn', 'Minaveha', NULL, 4427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minaveha', [Definition] = NULL, [SortOrder] = 441.30 WHERE [Code] = 'mvn' END +SET [Description] = 'Minaveha', [Definition] = NULL, [SortOrder] = 4427.00 WHERE [Code] = 'mvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drc', 'Minderico', NULL, 441.40) END +VALUES ('drc', 'Minderico', NULL, 4428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minderico', [Definition] = NULL, [SortOrder] = 441.40 WHERE [Code] = 'drc' END +SET [Description] = 'Minderico', [Definition] = NULL, [SortOrder] = 4428.00 WHERE [Code] = 'drc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpn', 'Mindiri', NULL, 441.50) END +VALUES ('mpn', 'Mindiri', NULL, 4429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mindiri', [Definition] = NULL, [SortOrder] = 441.50 WHERE [Code] = 'mpn' END +SET [Description] = 'Mindiri', [Definition] = NULL, [SortOrder] = 4429.00 WHERE [Code] = 'mpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mko', 'Mingang Doso', NULL, 441.60) END +VALUES ('mko', 'Mingang Doso', NULL, 4430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mingang Doso', [Definition] = NULL, [SortOrder] = 441.60 WHERE [Code] = 'mko' END +SET [Description] = 'Mingang Doso', [Definition] = NULL, [SortOrder] = 4430.00 WHERE [Code] = 'mko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmf', 'Mingrelian', NULL, 441.70) END +VALUES ('xmf', 'Mingrelian', NULL, 4431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mingrelian', [Definition] = NULL, [SortOrder] = 441.70 WHERE [Code] = 'xmf' END +SET [Description] = 'Mingrelian', [Definition] = NULL, [SortOrder] = 4431.00 WHERE [Code] = 'xmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hto', 'Minica Huitoto', NULL, 441.80) END +VALUES ('hto', 'Minica Huitoto', NULL, 4432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minica Huitoto', [Definition] = NULL, [SortOrder] = 441.80 WHERE [Code] = 'hto' END +SET [Description] = 'Minica Huitoto', [Definition] = NULL, [SortOrder] = 4432.00 WHERE [Code] = 'hto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wii', 'Minidien', NULL, 441.90) END +VALUES ('wii', 'Minidien', NULL, 4433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minidien', [Definition] = NULL, [SortOrder] = 441.90 WHERE [Code] = 'wii' END +SET [Description] = 'Minidien', [Definition] = NULL, [SortOrder] = 4433.00 WHERE [Code] = 'wii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xjb', 'Minjungbal', NULL, 442.00) END +VALUES ('xjb', 'Minjungbal', NULL, 4434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minjungbal', [Definition] = NULL, [SortOrder] = 442.00 WHERE [Code] = 'xjb' END +SET [Description] = 'Minjungbal', [Definition] = NULL, [SortOrder] = 4434.00 WHERE [Code] = 'xjb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxm', 'Minkin', NULL, 442.10) END +VALUES ('xxm', 'Minkin', NULL, 4435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minkin', [Definition] = NULL, [SortOrder] = 442.10 WHERE [Code] = 'xxm' END +SET [Description] = 'Minkin', [Definition] = NULL, [SortOrder] = 4435.00 WHERE [Code] = 'xxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omn', 'Minoan', NULL, 442.20) END +VALUES ('omn', 'Minoan', NULL, 4436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minoan', [Definition] = NULL, [SortOrder] = 442.20 WHERE [Code] = 'omn' END +SET [Description] = 'Minoan', [Definition] = NULL, [SortOrder] = 4436.00 WHERE [Code] = 'omn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqq', 'Minokok', NULL, 442.30) END +VALUES ('mqq', 'Minokok', NULL, 4437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minokok', [Definition] = NULL, [SortOrder] = 442.30 WHERE [Code] = 'mqq' END +SET [Description] = 'Minokok', [Definition] = NULL, [SortOrder] = 4437.00 WHERE [Code] = 'mqq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnq', 'Minriq', NULL, 442.40) END +VALUES ('mnq', 'Minriq', NULL, 4438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minriq', [Definition] = NULL, [SortOrder] = 442.40 WHERE [Code] = 'mnq' END +SET [Description] = 'Minriq', [Definition] = NULL, [SortOrder] = 4438.00 WHERE [Code] = 'mnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzt', 'Mintil', NULL, 442.50) END +VALUES ('mzt', 'Mintil', NULL, 4439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mintil', [Definition] = NULL, [SortOrder] = 442.50 WHERE [Code] = 'mzt' END +SET [Description] = 'Mintil', [Definition] = NULL, [SortOrder] = 4439.00 WHERE [Code] = 'mzt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgm', 'Minz Zhuang', NULL, 442.60) END +VALUES ('zgm', 'Minz Zhuang', NULL, 4440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minz Zhuang', [Definition] = NULL, [SortOrder] = 442.60 WHERE [Code] = 'zgm' END +SET [Description] = 'Minz Zhuang', [Definition] = NULL, [SortOrder] = 4440.00 WHERE [Code] = 'zgm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yiq', 'Miqie', NULL, 442.70) END +VALUES ('yiq', 'Miqie', NULL, 4441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miqie', [Definition] = NULL, [SortOrder] = 442.70 WHERE [Code] = 'yiq' END +SET [Description] = 'Miqie', [Definition] = NULL, [SortOrder] = 4441.00 WHERE [Code] = 'yiq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwl', 'Mirandese', NULL, 442.80) END +VALUES ('mwl', 'Mirandese', NULL, 4442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mirandese', [Definition] = NULL, [SortOrder] = 442.80 WHERE [Code] = 'mwl' END +SET [Description] = 'Mirandese', [Definition] = NULL, [SortOrder] = 4442.00 WHERE [Code] = 'mwl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rbl', 'Miraya Bikol', NULL, 442.90) END +VALUES ('rbl', 'Miraya Bikol', NULL, 4443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miraya Bikol', [Definition] = NULL, [SortOrder] = 442.90 WHERE [Code] = 'rbl' END +SET [Description] = 'Miraya Bikol', [Definition] = NULL, [SortOrder] = 4443.00 WHERE [Code] = 'rbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zrg', 'Mirgan', NULL, 443.00) END +VALUES ('zrg', 'Mirgan', NULL, 4444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mirgan', [Definition] = NULL, [SortOrder] = 443.00 WHERE [Code] = 'zrg' END +SET [Description] = 'Mirgan', [Definition] = NULL, [SortOrder] = 4444.00 WHERE [Code] = 'zrg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmv', 'Miriti', NULL, 443.10) END +VALUES ('mmv', 'Miriti', NULL, 4445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miriti', [Definition] = NULL, [SortOrder] = 443.10 WHERE [Code] = 'mmv' END +SET [Description] = 'Miriti', [Definition] = NULL, [SortOrder] = 4445.00 WHERE [Code] = 'mmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mep', 'Miriwoong', NULL, 443.20) END +VALUES ('mep', 'Miriwoong', NULL, 4446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miriwoong', [Definition] = NULL, [SortOrder] = 443.20 WHERE [Code] = 'mep' END +SET [Description] = 'Miriwoong', [Definition] = NULL, [SortOrder] = 4446.00 WHERE [Code] = 'mep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsm', 'Miriwoong Sign Language', NULL, 443.30) END +VALUES ('rsm', 'Miriwoong Sign Language', NULL, 4447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miriwoong Sign Language', [Definition] = NULL, [SortOrder] = 443.30 WHERE [Code] = 'rsm' END +SET [Description] = 'Miriwoong Sign Language', [Definition] = NULL, [SortOrder] = 4447.00 WHERE [Code] = 'rsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmr', 'Mirning', NULL, 443.40) END +VALUES ('gmr', 'Mirning', NULL, 4448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mirning', [Definition] = NULL, [SortOrder] = 443.40 WHERE [Code] = 'gmr' END +SET [Description] = 'Mirning', [Definition] = NULL, [SortOrder] = 4448.00 WHERE [Code] = 'gmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjs', 'Miship', NULL, 443.50) END +VALUES ('mjs', 'Miship', NULL, 4449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miship', [Definition] = NULL, [SortOrder] = 443.50 WHERE [Code] = 'mjs' END +SET [Description] = 'Miship', [Definition] = NULL, [SortOrder] = 4449.00 WHERE [Code] = 'mjs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpx', 'Misima-Panaeati', NULL, 443.60) END +VALUES ('mpx', 'Misima-Panaeati', NULL, 4450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Misima-Panaeati', [Definition] = NULL, [SortOrder] = 443.60 WHERE [Code] = 'mpx' END +SET [Description] = 'Misima-Panaeati', [Definition] = NULL, [SortOrder] = 4450.00 WHERE [Code] = 'mpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrg', 'Mising', NULL, 443.70) END +VALUES ('mrg', 'Mising', NULL, 4451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mising', [Definition] = NULL, [SortOrder] = 443.70 WHERE [Code] = 'mrg' END +SET [Description] = 'Mising', [Definition] = NULL, [SortOrder] = 4451.00 WHERE [Code] = 'mrg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miq', 'Mískito', NULL, 443.80) END +VALUES ('miq', 'Mískito', NULL, 4452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mískito', [Definition] = NULL, [SortOrder] = 443.80 WHERE [Code] = 'miq' END +SET [Description] = 'Mískito', [Definition] = NULL, [SortOrder] = 4452.00 WHERE [Code] = 'miq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaw', 'Mitla Zapotec', NULL, 443.90) END +VALUES ('zaw', 'Mitla Zapotec', NULL, 4453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mitla Zapotec', [Definition] = NULL, [SortOrder] = 443.90 WHERE [Code] = 'zaw' END +SET [Description] = 'Mitla Zapotec', [Definition] = NULL, [SortOrder] = 4453.00 WHERE [Code] = 'zaw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmm', 'Mitlatongo Mixtec', NULL, 444.00) END +VALUES ('vmm', 'Mitlatongo Mixtec', NULL, 4454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mitlatongo Mixtec', [Definition] = NULL, [SortOrder] = 444.00 WHERE [Code] = 'vmm' END +SET [Description] = 'Mitlatongo Mixtec', [Definition] = NULL, [SortOrder] = 4454.00 WHERE [Code] = 'vmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwu', 'Mittu', NULL, 444.10) END +VALUES ('mwu', 'Mittu', NULL, 4455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mittu', [Definition] = NULL, [SortOrder] = 444.10 WHERE [Code] = 'mwu' END +SET [Description] = 'Mittu', [Definition] = NULL, [SortOrder] = 4455.00 WHERE [Code] = 'mwu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmq', 'Mituku', NULL, 444.20) END +VALUES ('zmq', 'Mituku', NULL, 4456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mituku', [Definition] = NULL, [SortOrder] = 444.20 WHERE [Code] = 'zmq' END +SET [Description] = 'Mituku', [Definition] = NULL, [SortOrder] = 4456.00 WHERE [Code] = 'zmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpo', 'Miu', NULL, 444.30) END +VALUES ('mpo', 'Miu', NULL, 4457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miu', [Definition] = NULL, [SortOrder] = 444.30 WHERE [Code] = 'mpo' END +SET [Description] = 'Miu', [Definition] = NULL, [SortOrder] = 4457.00 WHERE [Code] = 'mpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmi', 'Miwa', NULL, 444.40) END +VALUES ('vmi', 'Miwa', NULL, 4458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miwa', [Definition] = NULL, [SortOrder] = 444.40 WHERE [Code] = 'vmi' END +SET [Description] = 'Miwa', [Definition] = NULL, [SortOrder] = 4458.00 WHERE [Code] = 'vmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gac', 'Mixed Great Andamanese', NULL, 444.50) END +VALUES ('gac', 'Mixed Great Andamanese', NULL, 4459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mixed Great Andamanese', [Definition] = NULL, [SortOrder] = 444.50 WHERE [Code] = 'gac' END +SET [Description] = 'Mixed Great Andamanese', [Definition] = NULL, [SortOrder] = 4459.00 WHERE [Code] = 'gac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mix', 'Mixtepec Mixtec', NULL, 444.60) END +VALUES ('mix', 'Mixtepec Mixtec', NULL, 4460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mixtepec Mixtec', [Definition] = NULL, [SortOrder] = 444.60 WHERE [Code] = 'mix' END +SET [Description] = 'Mixtepec Mixtec', [Definition] = NULL, [SortOrder] = 4460.00 WHERE [Code] = 'mix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpm', 'Mixtepec Zapotec', NULL, 444.70) END +VALUES ('zpm', 'Mixtepec Zapotec', NULL, 4461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 444.70 WHERE [Code] = 'zpm' END +SET [Description] = 'Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 4461.00 WHERE [Code] = 'zpm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkf', 'Miya', NULL, 444.80) END +VALUES ('mkf', 'Miya', NULL, 4462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miya', [Definition] = NULL, [SortOrder] = 444.80 WHERE [Code] = 'mkf' END +SET [Description] = 'Miya', [Definition] = NULL, [SortOrder] = 4462.00 WHERE [Code] = 'mkf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvi', 'Miyako', NULL, 444.90) END +VALUES ('mvi', 'Miyako', NULL, 4463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miyako', [Definition] = NULL, [SortOrder] = 444.90 WHERE [Code] = 'mvi' END +SET [Description] = 'Miyako', [Definition] = NULL, [SortOrder] = 4463.00 WHERE [Code] = 'mvi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ehs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ehs', 'Miyakubo Sign Language', NULL, 445.00) END +VALUES ('ehs', 'Miyakubo Sign Language', NULL, 4464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miyakubo Sign Language', [Definition] = NULL, [SortOrder] = 445.00 WHERE [Code] = 'ehs' END +SET [Description] = 'Miyakubo Sign Language', [Definition] = NULL, [SortOrder] = 4464.00 WHERE [Code] = 'ehs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soy', 'Miyobe', NULL, 445.10) END +VALUES ('soy', 'Miyobe', NULL, 4465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miyobe', [Definition] = NULL, [SortOrder] = 445.10 WHERE [Code] = 'soy' END +SET [Description] = 'Miyobe', [Definition] = NULL, [SortOrder] = 4465.00 WHERE [Code] = 'soy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mra', 'Mlabri', NULL, 445.20) END +VALUES ('mra', 'Mlabri', NULL, 4466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mlabri', [Definition] = NULL, [SortOrder] = 445.20 WHERE [Code] = 'mra' END +SET [Description] = 'Mlabri', [Definition] = NULL, [SortOrder] = 4466.00 WHERE [Code] = 'mra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhs', 'Mlahsö', NULL, 445.30) END +VALUES ('lhs', 'Mlahsö', NULL, 4467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mlahsö', [Definition] = NULL, [SortOrder] = 445.30 WHERE [Code] = 'lhs' END +SET [Description] = 'Mlahsö', [Definition] = NULL, [SortOrder] = 4467.00 WHERE [Code] = 'lhs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kja', 'Mlap', NULL, 445.40) END +VALUES ('kja', 'Mlap', NULL, 4468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mlap', [Definition] = NULL, [SortOrder] = 445.40 WHERE [Code] = 'kja' END +SET [Description] = 'Mlap', [Definition] = NULL, [SortOrder] = 4468.00 WHERE [Code] = 'kja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlo', 'Mlomp', NULL, 445.50) END +VALUES ('mlo', 'Mlomp', NULL, 4469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mlomp', [Definition] = NULL, [SortOrder] = 445.50 WHERE [Code] = 'mlo' END +SET [Description] = 'Mlomp', [Definition] = NULL, [SortOrder] = 4469.00 WHERE [Code] = 'mlo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmu', 'Mmaala', NULL, 445.60) END +VALUES ('mmu', 'Mmaala', NULL, 4470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mmaala', [Definition] = NULL, [SortOrder] = 445.60 WHERE [Code] = 'mmu' END +SET [Description] = 'Mmaala', [Definition] = NULL, [SortOrder] = 4470.00 WHERE [Code] = 'mmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfm', 'Mmen', NULL, 445.70) END +VALUES ('bfm', 'Mmen', NULL, 4471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mmen', [Definition] = NULL, [SortOrder] = 445.70 WHERE [Code] = 'bfm' END +SET [Description] = 'Mmen', [Definition] = NULL, [SortOrder] = 4471.00 WHERE [Code] = 'bfm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbn', 'Mo''da', NULL, 445.80) END +VALUES ('gbn', 'Mo''da', NULL, 4472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mo''da', [Definition] = NULL, [SortOrder] = 445.80 WHERE [Code] = 'gbn' END +SET [Description] = 'Mo''da', [Definition] = NULL, [SortOrder] = 4472.00 WHERE [Code] = 'gbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obm', 'Moabite', NULL, 445.90) END +VALUES ('obm', 'Moabite', NULL, 4473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moabite', [Definition] = NULL, [SortOrder] = 445.90 WHERE [Code] = 'obm' END +SET [Description] = 'Moabite', [Definition] = NULL, [SortOrder] = 4473.00 WHERE [Code] = 'obm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfq', 'Moba', NULL, 446.00) END +VALUES ('mfq', 'Moba', NULL, 4474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moba', [Definition] = NULL, [SortOrder] = 446.00 WHERE [Code] = 'mfq' END +SET [Description] = 'Moba', [Definition] = NULL, [SortOrder] = 4474.00 WHERE [Code] = 'mfq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mod', 'Mobilian', NULL, 446.10) END +VALUES ('mod', 'Mobilian', NULL, 4475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mobilian', [Definition] = NULL, [SortOrder] = 446.10 WHERE [Code] = 'mod' END +SET [Description] = 'Mobilian', [Definition] = NULL, [SortOrder] = 4475.00 WHERE [Code] = 'mod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahm', 'Mobumrin Aizi', NULL, 446.20) END +VALUES ('ahm', 'Mobumrin Aizi', NULL, 4476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mobumrin Aizi', [Definition] = NULL, [SortOrder] = 446.20 WHERE [Code] = 'ahm' END +SET [Description] = 'Mobumrin Aizi', [Definition] = NULL, [SortOrder] = 4476.00 WHERE [Code] = 'ahm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jkm', 'Mobwa Karen', NULL, 446.30) END +VALUES ('jkm', 'Mobwa Karen', NULL, 4477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mobwa Karen', [Definition] = NULL, [SortOrder] = 446.30 WHERE [Code] = 'jkm' END +SET [Description] = 'Mobwa Karen', [Definition] = NULL, [SortOrder] = 4477.00 WHERE [Code] = 'jkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhn', 'Mócheno', NULL, 446.40) END +VALUES ('mhn', 'Mócheno', NULL, 4478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mócheno', [Definition] = NULL, [SortOrder] = 446.40 WHERE [Code] = 'mhn' END +SET [Description] = 'Mócheno', [Definition] = NULL, [SortOrder] = 4478.00 WHERE [Code] = 'mhn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'old') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('old', 'Mochi', NULL, 446.50) END +VALUES ('old', 'Mochi', NULL, 4479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mochi', [Definition] = NULL, [SortOrder] = 446.50 WHERE [Code] = 'old' END +SET [Description] = 'Mochi', [Definition] = NULL, [SortOrder] = 4479.00 WHERE [Code] = 'old' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omc', 'Mochica', NULL, 446.60) END +VALUES ('omc', 'Mochica', NULL, 4480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mochica', [Definition] = NULL, [SortOrder] = 446.60 WHERE [Code] = 'omc' END +SET [Description] = 'Mochica', [Definition] = NULL, [SortOrder] = 4480.00 WHERE [Code] = 'omc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhc', 'Mocho', NULL, 446.70) END +VALUES ('mhc', 'Mocho', NULL, 4481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mocho', [Definition] = NULL, [SortOrder] = 446.70 WHERE [Code] = 'mhc' END +SET [Description] = 'Mocho', [Definition] = NULL, [SortOrder] = 4481.00 WHERE [Code] = 'mhc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moc', 'Mocoví', NULL, 446.80) END +VALUES ('moc', 'Mocoví', NULL, 4482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mocoví', [Definition] = NULL, [SortOrder] = 446.80 WHERE [Code] = 'moc' END +SET [Description] = 'Mocoví', [Definition] = NULL, [SortOrder] = 4482.00 WHERE [Code] = 'moc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxd', 'Modang', NULL, 446.90) END +VALUES ('mxd', 'Modang', NULL, 4483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Modang', [Definition] = NULL, [SortOrder] = 446.90 WHERE [Code] = 'mxd' END +SET [Description] = 'Modang', [Definition] = NULL, [SortOrder] = 4483.00 WHERE [Code] = 'mxd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ell') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ell', 'Modern Greek (1453-)', NULL, 447.00) END +VALUES ('ell', 'Modern Greek (1453-)', NULL, 4484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Modern Greek (1453-)', [Definition] = NULL, [SortOrder] = 447.00 WHERE [Code] = 'ell' END +SET [Description] = 'Modern Greek (1453-)', [Definition] = NULL, [SortOrder] = 4484.00 WHERE [Code] = 'ell' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqo', 'Modole', NULL, 447.10) END +VALUES ('mqo', 'Modole', NULL, 4485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Modole', [Definition] = NULL, [SortOrder] = 447.10 WHERE [Code] = 'mqo' END +SET [Description] = 'Modole', [Definition] = NULL, [SortOrder] = 4485.00 WHERE [Code] = 'mqo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvq', 'Moere', NULL, 447.20) END +VALUES ('mvq', 'Moere', NULL, 4486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moere', [Definition] = NULL, [SortOrder] = 447.20 WHERE [Code] = 'mvq' END +SET [Description] = 'Moere', [Definition] = NULL, [SortOrder] = 4486.00 WHERE [Code] = 'mvq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mif', 'Mofu-Gudur', NULL, 447.30) END +VALUES ('mif', 'Mofu-Gudur', NULL, 4487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mofu-Gudur', [Definition] = NULL, [SortOrder] = 447.30 WHERE [Code] = 'mif' END +SET [Description] = 'Mofu-Gudur', [Definition] = NULL, [SortOrder] = 4487.00 WHERE [Code] = 'mif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhj', 'Mogholi', NULL, 447.40) END +VALUES ('mhj', 'Mogholi', NULL, 4488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mogholi', [Definition] = NULL, [SortOrder] = 447.40 WHERE [Code] = 'mhj' END +SET [Description] = 'Mogholi', [Definition] = NULL, [SortOrder] = 4488.00 WHERE [Code] = 'mhj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfg', 'Mogofin', NULL, 447.50) END +VALUES ('mfg', 'Mogofin', NULL, 4489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mogofin', [Definition] = NULL, [SortOrder] = 447.50 WHERE [Code] = 'mfg' END +SET [Description] = 'Mogofin', [Definition] = NULL, [SortOrder] = 4489.00 WHERE [Code] = 'mfg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mou', 'Mogum', NULL, 447.60) END +VALUES ('mou', 'Mogum', NULL, 4490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mogum', [Definition] = NULL, [SortOrder] = 447.60 WHERE [Code] = 'mou' END +SET [Description] = 'Mogum', [Definition] = NULL, [SortOrder] = 4490.00 WHERE [Code] = 'mou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mov', 'Mohave', NULL, 447.70) END +VALUES ('mov', 'Mohave', NULL, 4491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mohave', [Definition] = NULL, [SortOrder] = 447.70 WHERE [Code] = 'mov' END +SET [Description] = 'Mohave', [Definition] = NULL, [SortOrder] = 4491.00 WHERE [Code] = 'mov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moh', 'Mohawk', NULL, 447.80) END +VALUES ('moh', 'Mohawk', NULL, 4492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mohawk', [Definition] = NULL, [SortOrder] = 447.80 WHERE [Code] = 'moh' END +SET [Description] = 'Mohawk', [Definition] = NULL, [SortOrder] = 4492.00 WHERE [Code] = 'moh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpq', 'Mohegan-Pequot', NULL, 447.90) END +VALUES ('xpq', 'Mohegan-Pequot', NULL, 4493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mohegan-Pequot', [Definition] = NULL, [SortOrder] = 447.90 WHERE [Code] = 'xpq' END +SET [Description] = 'Mohegan-Pequot', [Definition] = NULL, [SortOrder] = 4493.00 WHERE [Code] = 'xpq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mow', 'Moi (Congo)', NULL, 448.00) END +VALUES ('mow', 'Moi (Congo)', NULL, 4494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moi (Congo)', [Definition] = NULL, [SortOrder] = 448.00 WHERE [Code] = 'mow' END +SET [Description] = 'Moi (Congo)', [Definition] = NULL, [SortOrder] = 4494.00 WHERE [Code] = 'mow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxn', 'Moi (Indonesia)', NULL, 448.10) END +VALUES ('mxn', 'Moi (Indonesia)', NULL, 4495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moi (Indonesia)', [Definition] = NULL, [SortOrder] = 448.10 WHERE [Code] = 'mxn' END +SET [Description] = 'Moi (Indonesia)', [Definition] = NULL, [SortOrder] = 4495.00 WHERE [Code] = 'mxn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkp', 'Moikodi', NULL, 448.20) END +VALUES ('mkp', 'Moikodi', NULL, 4496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moikodi', [Definition] = NULL, [SortOrder] = 448.20 WHERE [Code] = 'mkp' END +SET [Description] = 'Moikodi', [Definition] = NULL, [SortOrder] = 4496.00 WHERE [Code] = 'mkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwz', 'Moingi', NULL, 448.30) END +VALUES ('mwz', 'Moingi', NULL, 4497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moingi', [Definition] = NULL, [SortOrder] = 448.30 WHERE [Code] = 'mwz' END +SET [Description] = 'Moingi', [Definition] = NULL, [SortOrder] = 4497.00 WHERE [Code] = 'mwz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymi', 'Moji', NULL, 448.40) END +VALUES ('ymi', 'Moji', NULL, 4498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moji', [Definition] = NULL, [SortOrder] = 448.40 WHERE [Code] = 'ymi' END +SET [Description] = 'Moji', [Definition] = NULL, [SortOrder] = 4498.00 WHERE [Code] = 'ymi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqt', 'Mok', NULL, 448.50) END +VALUES ('mqt', 'Mok', NULL, 4499.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Mok', [Definition] = NULL, [SortOrder] = 4499.00 WHERE [Code] = 'mqt' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('wnb', 'Mokati', NULL, 4500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mok', [Definition] = NULL, [SortOrder] = 448.50 WHERE [Code] = 'mqt' END +SET [Description] = 'Mokati', [Definition] = NULL, [SortOrder] = 4500.00 WHERE [Code] = 'wnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwt', 'Moken', NULL, 448.60) END +VALUES ('mwt', 'Moken', NULL, 4501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moken', [Definition] = NULL, [SortOrder] = 448.60 WHERE [Code] = 'mwt' END +SET [Description] = 'Moken', [Definition] = NULL, [SortOrder] = 4501.00 WHERE [Code] = 'mwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mft', 'Mokerang', NULL, 448.70) END +VALUES ('mft', 'Mokerang', NULL, 4502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mokerang', [Definition] = NULL, [SortOrder] = 448.70 WHERE [Code] = 'mft' END +SET [Description] = 'Mokerang', [Definition] = NULL, [SortOrder] = 4502.00 WHERE [Code] = 'mft' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkj', 'Mokilese', NULL, 448.80) END +VALUES ('mkj', 'Mokilese', NULL, 4503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mokilese', [Definition] = NULL, [SortOrder] = 448.80 WHERE [Code] = 'mkj' END +SET [Description] = 'Mokilese', [Definition] = NULL, [SortOrder] = 4503.00 WHERE [Code] = 'mkj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkm', 'Moklen', NULL, 448.90) END +VALUES ('mkm', 'Moklen', NULL, 4504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moklen', [Definition] = NULL, [SortOrder] = 448.90 WHERE [Code] = 'mkm' END +SET [Description] = 'Moklen', [Definition] = NULL, [SortOrder] = 4504.00 WHERE [Code] = 'mkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkl', 'Mokole', NULL, 449.00) END +VALUES ('mkl', 'Mokole', NULL, 4505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mokole', [Definition] = NULL, [SortOrder] = 449.00 WHERE [Code] = 'mkl' END +SET [Description] = 'Mokole', [Definition] = NULL, [SortOrder] = 4505.00 WHERE [Code] = 'mkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bri', 'Mokpwe', NULL, 449.10) END +VALUES ('bri', 'Mokpwe', NULL, 4506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mokpwe', [Definition] = NULL, [SortOrder] = 449.10 WHERE [Code] = 'bri' END +SET [Description] = 'Mokpwe', [Definition] = NULL, [SortOrder] = 4506.00 WHERE [Code] = 'bri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vms', 'Moksela', NULL, 449.20) END +VALUES ('vms', 'Moksela', NULL, 4507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moksela', [Definition] = NULL, [SortOrder] = 449.20 WHERE [Code] = 'vms' END +SET [Description] = 'Moksela', [Definition] = NULL, [SortOrder] = 4507.00 WHERE [Code] = 'vms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdf', 'Moksha', NULL, 449.30) END +VALUES ('mdf', 'Moksha', NULL, 4508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moksha', [Definition] = NULL, [SortOrder] = 449.30 WHERE [Code] = 'mdf' END +SET [Description] = 'Moksha', [Definition] = NULL, [SortOrder] = 4508.00 WHERE [Code] = 'mdf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbe', 'Molale', NULL, 449.40) END +VALUES ('mbe', 'Molale', NULL, 4509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molale', [Definition] = NULL, [SortOrder] = 449.40 WHERE [Code] = 'mbe' END +SET [Description] = 'Molale', [Definition] = NULL, [SortOrder] = 4509.00 WHERE [Code] = 'mbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwm', 'Molbog', NULL, 449.50) END +VALUES ('pwm', 'Molbog', NULL, 4510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molbog', [Definition] = NULL, [SortOrder] = 449.50 WHERE [Code] = 'pwm' END +SET [Description] = 'Molbog', [Definition] = NULL, [SortOrder] = 4510.00 WHERE [Code] = 'pwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vsi', 'Moldova Sign Language', NULL, 449.60) END +VALUES ('vsi', 'Moldova Sign Language', NULL, 4511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moldova Sign Language', [Definition] = NULL, [SortOrder] = 449.60 WHERE [Code] = 'vsi' END +SET [Description] = 'Moldova Sign Language', [Definition] = NULL, [SortOrder] = 4511.00 WHERE [Code] = 'vsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxc', 'Molengue', NULL, 449.70) END +VALUES ('bxc', 'Molengue', NULL, 4512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molengue', [Definition] = NULL, [SortOrder] = 449.70 WHERE [Code] = 'bxc' END +SET [Description] = 'Molengue', [Definition] = NULL, [SortOrder] = 4512.00 WHERE [Code] = 'bxc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mox', 'Molima', NULL, 449.80) END +VALUES ('mox', 'Molima', NULL, 4513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molima', [Definition] = NULL, [SortOrder] = 449.80 WHERE [Code] = 'mox' END +SET [Description] = 'Molima', [Definition] = NULL, [SortOrder] = 4513.00 WHERE [Code] = 'mox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aun', 'Molmo One', NULL, 449.90) END +VALUES ('aun', 'Molmo One', NULL, 4514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molmo One', [Definition] = NULL, [SortOrder] = 449.90 WHERE [Code] = 'aun' END +SET [Description] = 'Molmo One', [Definition] = NULL, [SortOrder] = 4514.00 WHERE [Code] = 'aun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmo', 'Molo', NULL, 450.00) END +VALUES ('zmo', 'Molo', NULL, 4515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molo', [Definition] = NULL, [SortOrder] = 450.00 WHERE [Code] = 'zmo' END +SET [Description] = 'Molo', [Definition] = NULL, [SortOrder] = 4515.00 WHERE [Code] = 'zmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msl', 'Molof', NULL, 450.10) END +VALUES ('msl', 'Molof', NULL, 4516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molof', [Definition] = NULL, [SortOrder] = 450.10 WHERE [Code] = 'msl' END +SET [Description] = 'Molof', [Definition] = NULL, [SortOrder] = 4516.00 WHERE [Code] = 'msl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlw', 'Moloko', NULL, 450.20) END +VALUES ('mlw', 'Moloko', NULL, 4517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moloko', [Definition] = NULL, [SortOrder] = 450.20 WHERE [Code] = 'mlw' END +SET [Description] = 'Moloko', [Definition] = NULL, [SortOrder] = 4517.00 WHERE [Code] = 'mlw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ver') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ver', 'Mom Jango', NULL, 450.30) END +VALUES ('ver', 'Mom Jango', NULL, 4518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mom Jango', [Definition] = NULL, [SortOrder] = 450.30 WHERE [Code] = 'ver' END +SET [Description] = 'Mom Jango', [Definition] = NULL, [SortOrder] = 4518.00 WHERE [Code] = 'ver' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myl', 'Moma', NULL, 450.40) END +VALUES ('myl', 'Moma', NULL, 4519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moma', [Definition] = NULL, [SortOrder] = 450.40 WHERE [Code] = 'myl' END +SET [Description] = 'Moma', [Definition] = NULL, [SortOrder] = 4519.00 WHERE [Code] = 'myl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msz', 'Momare', NULL, 450.50) END +VALUES ('msz', 'Momare', NULL, 4520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Momare', [Definition] = NULL, [SortOrder] = 450.50 WHERE [Code] = 'msz' END +SET [Description] = 'Momare', [Definition] = NULL, [SortOrder] = 4520.00 WHERE [Code] = 'msz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmb', 'Mombo Dogon', NULL, 450.60) END +VALUES ('dmb', 'Mombo Dogon', NULL, 4521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mombo Dogon', [Definition] = NULL, [SortOrder] = 450.60 WHERE [Code] = 'dmb' END +SET [Description] = 'Mombo Dogon', [Definition] = NULL, [SortOrder] = 4521.00 WHERE [Code] = 'dmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mso', 'Mombum', NULL, 450.70) END +VALUES ('mso', 'Mombum', NULL, 4522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mombum', [Definition] = NULL, [SortOrder] = 450.70 WHERE [Code] = 'mso' END +SET [Description] = 'Mombum', [Definition] = NULL, [SortOrder] = 4522.00 WHERE [Code] = 'mso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmb', 'Momina', NULL, 450.80) END +VALUES ('mmb', 'Momina', NULL, 4523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Momina', [Definition] = NULL, [SortOrder] = 450.80 WHERE [Code] = 'mmb' END +SET [Description] = 'Momina', [Definition] = NULL, [SortOrder] = 4523.00 WHERE [Code] = 'mmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqf', 'Momuna', NULL, 450.90) END +VALUES ('mqf', 'Momuna', NULL, 4524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Momuna', [Definition] = NULL, [SortOrder] = 450.90 WHERE [Code] = 'mqf' END +SET [Description] = 'Momuna', [Definition] = NULL, [SortOrder] = 4524.00 WHERE [Code] = 'mqf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnw', 'Mon', NULL, 451.00) END +VALUES ('mnw', 'Mon', NULL, 4525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mon', [Definition] = NULL, [SortOrder] = 451.00 WHERE [Code] = 'mnw' END +SET [Description] = 'Mon', [Definition] = NULL, [SortOrder] = 4525.00 WHERE [Code] = 'mnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzg', 'Monastic Sign Language', NULL, 451.10) END +VALUES ('mzg', 'Monastic Sign Language', NULL, 4526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monastic Sign Language', [Definition] = NULL, [SortOrder] = 451.10 WHERE [Code] = 'mzg' END +SET [Description] = 'Monastic Sign Language', [Definition] = NULL, [SortOrder] = 4526.00 WHERE [Code] = 'mzg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnd', 'Mondé', NULL, 451.20) END +VALUES ('mnd', 'Mondé', NULL, 4527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mondé', [Definition] = NULL, [SortOrder] = 451.20 WHERE [Code] = 'mnd' END +SET [Description] = 'Mondé', [Definition] = NULL, [SortOrder] = 4527.00 WHERE [Code] = 'mnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npn', 'Mondropolon', NULL, 451.30) END +VALUES ('npn', 'Mondropolon', NULL, 4528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mondropolon', [Definition] = NULL, [SortOrder] = 451.30 WHERE [Code] = 'npn' END +SET [Description] = 'Mondropolon', [Definition] = NULL, [SortOrder] = 4528.00 WHERE [Code] = 'npn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lol', 'Mongo', NULL, 451.40) END +VALUES ('lol', 'Mongo', NULL, 4529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongo', [Definition] = NULL, [SortOrder] = 451.40 WHERE [Code] = 'lol' END +SET [Description] = 'Mongo', [Definition] = NULL, [SortOrder] = 4529.00 WHERE [Code] = 'lol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgt', 'Mongol', NULL, 451.50) END +VALUES ('mgt', 'Mongol', NULL, 4530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongol', [Definition] = NULL, [SortOrder] = 451.50 WHERE [Code] = 'mgt' END +SET [Description] = 'Mongol', [Definition] = NULL, [SortOrder] = 4530.00 WHERE [Code] = 'mgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxm', 'Mongolia Buriat', NULL, 451.60) END +VALUES ('bxm', 'Mongolia Buriat', NULL, 4531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongolia Buriat', [Definition] = NULL, [SortOrder] = 451.60 WHERE [Code] = 'bxm' END +SET [Description] = 'Mongolia Buriat', [Definition] = NULL, [SortOrder] = 4531.00 WHERE [Code] = 'bxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mon', 'Mongolian', NULL, 451.70) END +VALUES ('mon', 'Mongolian', NULL, 4532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongolian', [Definition] = NULL, [SortOrder] = 451.70 WHERE [Code] = 'mon' END +SET [Description] = 'Mongolian', [Definition] = NULL, [SortOrder] = 4532.00 WHERE [Code] = 'mon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msr', 'Mongolian Sign Language', NULL, 451.80) END +VALUES ('msr', 'Mongolian Sign Language', NULL, 4533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongolian Sign Language', [Definition] = NULL, [SortOrder] = 451.80 WHERE [Code] = 'msr' END +SET [Description] = 'Mongolian Sign Language', [Definition] = NULL, [SortOrder] = 4533.00 WHERE [Code] = 'msr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mog', 'Mongondow', NULL, 451.90) END +VALUES ('mog', 'Mongondow', NULL, 4534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongondow', [Definition] = NULL, [SortOrder] = 451.90 WHERE [Code] = 'mog' END +SET [Description] = 'Mongondow', [Definition] = NULL, [SortOrder] = 4534.00 WHERE [Code] = 'mog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnz', 'Moni', NULL, 452.00) END +VALUES ('mnz', 'Moni', NULL, 4535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moni', [Definition] = NULL, [SortOrder] = 452.00 WHERE [Code] = 'mnz' END +SET [Description] = 'Moni', [Definition] = NULL, [SortOrder] = 4535.00 WHERE [Code] = 'mnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mru', 'Mono (Cameroon)', NULL, 452.10) END +VALUES ('mru', 'Mono (Cameroon)', NULL, 4536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mono (Cameroon)', [Definition] = NULL, [SortOrder] = 452.10 WHERE [Code] = 'mru' END +SET [Description] = 'Mono (Cameroon)', [Definition] = NULL, [SortOrder] = 4536.00 WHERE [Code] = 'mru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnh', 'Mono (Democratic Republic of Congo)', NULL, 452.20) END +VALUES ('mnh', 'Mono (Democratic Republic of Congo)', NULL, 4537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mono (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 452.20 WHERE [Code] = 'mnh' END +SET [Description] = 'Mono (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 4537.00 WHERE [Code] = 'mnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mte', 'Mono (Solomon Islands)', NULL, 452.30) END +VALUES ('mte', 'Mono (Solomon Islands)', NULL, 4538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mono (Solomon Islands)', [Definition] = NULL, [SortOrder] = 452.30 WHERE [Code] = 'mte' END +SET [Description] = 'Mono (Solomon Islands)', [Definition] = NULL, [SortOrder] = 4538.00 WHERE [Code] = 'mte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnr', 'Mono (USA)', NULL, 452.40) END +VALUES ('mnr', 'Mono (USA)', NULL, 4539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mono (USA)', [Definition] = NULL, [SortOrder] = 452.40 WHERE [Code] = 'mnr' END +SET [Description] = 'Mono (USA)', [Definition] = NULL, [SortOrder] = 4539.00 WHERE [Code] = 'mnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moo', 'Monom', NULL, 452.50) END +VALUES ('moo', 'Monom', NULL, 4540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monom', [Definition] = NULL, [SortOrder] = 452.50 WHERE [Code] = 'moo' END +SET [Description] = 'Monom', [Definition] = NULL, [SortOrder] = 4540.00 WHERE [Code] = 'moo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmh', 'Monsang Naga', NULL, 452.60) END +VALUES ('nmh', 'Monsang Naga', NULL, 4541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monsang Naga', [Definition] = NULL, [SortOrder] = 452.60 WHERE [Code] = 'nmh' END +SET [Description] = 'Monsang Naga', [Definition] = NULL, [SortOrder] = 4541.00 WHERE [Code] = 'nmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnr', 'Montenegrin', NULL, 452.70) END +VALUES ('cnr', 'Montenegrin', NULL, 4542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Montenegrin', [Definition] = NULL, [SortOrder] = 452.70 WHERE [Code] = 'cnr' END +SET [Description] = 'Montenegrin', [Definition] = NULL, [SortOrder] = 4542.00 WHERE [Code] = 'cnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtl', 'Montol', NULL, 452.80) END +VALUES ('mtl', 'Montol', NULL, 4543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Montol', [Definition] = NULL, [SortOrder] = 452.80 WHERE [Code] = 'mtl' END +SET [Description] = 'Montol', [Definition] = NULL, [SortOrder] = 4543.00 WHERE [Code] = 'mtl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxk', 'Monumbo', NULL, 452.90) END +VALUES ('mxk', 'Monumbo', NULL, 4544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monumbo', [Definition] = NULL, [SortOrder] = 452.90 WHERE [Code] = 'mxk' END +SET [Description] = 'Monumbo', [Definition] = NULL, [SortOrder] = 4544.00 WHERE [Code] = 'mxk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moj', 'Monzombo', NULL, 453.00) END +VALUES ('moj', 'Monzombo', NULL, 4545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monzombo', [Definition] = NULL, [SortOrder] = 453.00 WHERE [Code] = 'moj' END +SET [Description] = 'Monzombo', [Definition] = NULL, [SortOrder] = 4545.00 WHERE [Code] = 'moj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwg', 'Moo', NULL, 453.10) END +VALUES ('gwg', 'Moo', NULL, 4546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moo', [Definition] = NULL, [SortOrder] = 453.10 WHERE [Code] = 'gwg' END +SET [Description] = 'Moo', [Definition] = NULL, [SortOrder] = 4546.00 WHERE [Code] = 'gwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crm', 'Moose Cree', NULL, 453.20) END +VALUES ('crm', 'Moose Cree', NULL, 4547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moose Cree', [Definition] = NULL, [SortOrder] = 453.20 WHERE [Code] = 'crm' END +SET [Description] = 'Moose Cree', [Definition] = NULL, [SortOrder] = 4547.00 WHERE [Code] = 'crm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mop', 'Mopán Maya', NULL, 453.30) END +VALUES ('mop', 'Mopán Maya', NULL, 4548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mopán Maya', [Definition] = NULL, [SortOrder] = 453.30 WHERE [Code] = 'mop' END +SET [Description] = 'Mopán Maya', [Definition] = NULL, [SortOrder] = 4548.00 WHERE [Code] = 'mop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moq', 'Mor (Bomberai Peninsula)', NULL, 453.40) END +VALUES ('moq', 'Mor (Bomberai Peninsula)', NULL, 4549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mor (Bomberai Peninsula)', [Definition] = NULL, [SortOrder] = 453.40 WHERE [Code] = 'moq' END +SET [Description] = 'Mor (Bomberai Peninsula)', [Definition] = NULL, [SortOrder] = 4549.00 WHERE [Code] = 'moq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhz', 'Mor (Mor Islands)', NULL, 453.50) END +VALUES ('mhz', 'Mor (Mor Islands)', NULL, 4550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mor (Mor Islands)', [Definition] = NULL, [SortOrder] = 453.50 WHERE [Code] = 'mhz' END +SET [Description] = 'Mor (Mor Islands)', [Definition] = NULL, [SortOrder] = 4550.00 WHERE [Code] = 'mhz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msg', 'Moraid', NULL, 453.60) END +VALUES ('msg', 'Moraid', NULL, 4551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moraid', [Definition] = NULL, [SortOrder] = 453.60 WHERE [Code] = 'msg' END +SET [Description] = 'Moraid', [Definition] = NULL, [SortOrder] = 4551.00 WHERE [Code] = 'msg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mze', 'Morawa', NULL, 453.70) END +VALUES ('mze', 'Morawa', NULL, 4552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morawa', [Definition] = NULL, [SortOrder] = 453.70 WHERE [Code] = 'mze' END +SET [Description] = 'Morawa', [Definition] = NULL, [SortOrder] = 4552.00 WHERE [Code] = 'mze' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhm', 'Morelos Nahuatl', NULL, 453.80) END +VALUES ('nhm', 'Morelos Nahuatl', NULL, 4553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morelos Nahuatl', [Definition] = NULL, [SortOrder] = 453.80 WHERE [Code] = 'nhm' END +SET [Description] = 'Morelos Nahuatl', [Definition] = NULL, [SortOrder] = 4553.00 WHERE [Code] = 'nhm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmo', 'Morerebi', NULL, 453.90) END +VALUES ('xmo', 'Morerebi', NULL, 4554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morerebi', [Definition] = NULL, [SortOrder] = 453.90 WHERE [Code] = 'xmo' END +SET [Description] = 'Morerebi', [Definition] = NULL, [SortOrder] = 4554.00 WHERE [Code] = 'xmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msx', 'Moresada', NULL, 454.00) END +VALUES ('msx', 'Moresada', NULL, 4555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moresada', [Definition] = NULL, [SortOrder] = 454.00 WHERE [Code] = 'msx' END +SET [Description] = 'Moresada', [Definition] = NULL, [SortOrder] = 4555.00 WHERE [Code] = 'msx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzq', 'Mori Atas', NULL, 454.10) END +VALUES ('mzq', 'Mori Atas', NULL, 4556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mori Atas', [Definition] = NULL, [SortOrder] = 454.10 WHERE [Code] = 'mzq' END +SET [Description] = 'Mori Atas', [Definition] = NULL, [SortOrder] = 4556.00 WHERE [Code] = 'mzq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmz', 'Mori Bawah', NULL, 454.20) END +VALUES ('xmz', 'Mori Bawah', NULL, 4557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mori Bawah', [Definition] = NULL, [SortOrder] = 454.20 WHERE [Code] = 'xmz' END +SET [Description] = 'Mori Bawah', [Definition] = NULL, [SortOrder] = 4557.00 WHERE [Code] = 'xmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdb', 'Morigi', NULL, 454.30) END +VALUES ('mdb', 'Morigi', NULL, 4558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morigi', [Definition] = NULL, [SortOrder] = 454.30 WHERE [Code] = 'mdb' END +SET [Description] = 'Morigi', [Definition] = NULL, [SortOrder] = 4558.00 WHERE [Code] = 'mdb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfe', 'Morisyen', NULL, 454.40) END +VALUES ('mfe', 'Morisyen', NULL, 4559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morisyen', [Definition] = NULL, [SortOrder] = 454.40 WHERE [Code] = 'mfe' END +SET [Description] = 'Morisyen', [Definition] = NULL, [SortOrder] = 4559.00 WHERE [Code] = 'mfe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mor', 'Moro', NULL, 454.50) END +VALUES ('mor', 'Moro', NULL, 4560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moro', [Definition] = NULL, [SortOrder] = 454.50 WHERE [Code] = 'mor' END +SET [Description] = 'Moro', [Definition] = NULL, [SortOrder] = 4560.00 WHERE [Code] = 'mor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ary') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ary', 'Moroccan Arabic', NULL, 454.60) END +VALUES ('ary', 'Moroccan Arabic', NULL, 4561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moroccan Arabic', [Definition] = NULL, [SortOrder] = 454.60 WHERE [Code] = 'ary' END +SET [Description] = 'Moroccan Arabic', [Definition] = NULL, [SortOrder] = 4561.00 WHERE [Code] = 'ary' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xms', 'Moroccan Sign Language', NULL, 454.70) END +VALUES ('xms', 'Moroccan Sign Language', NULL, 4562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moroccan Sign Language', [Definition] = NULL, [SortOrder] = 454.70 WHERE [Code] = 'xms' END +SET [Description] = 'Moroccan Sign Language', [Definition] = NULL, [SortOrder] = 4562.00 WHERE [Code] = 'xms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgc', 'Morokodo', NULL, 454.80) END +VALUES ('mgc', 'Morokodo', NULL, 4563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morokodo', [Definition] = NULL, [SortOrder] = 454.80 WHERE [Code] = 'mgc' END +SET [Description] = 'Morokodo', [Definition] = NULL, [SortOrder] = 4563.00 WHERE [Code] = 'mgc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdo', 'Morom', NULL, 454.90) END +VALUES ('bdo', 'Morom', NULL, 4564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morom', [Definition] = NULL, [SortOrder] = 454.90 WHERE [Code] = 'bdo' END +SET [Description] = 'Morom', [Definition] = NULL, [SortOrder] = 4564.00 WHERE [Code] = 'bdo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqn', 'Moronene', NULL, 455.00) END +VALUES ('mqn', 'Moronene', NULL, 4565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moronene', [Definition] = NULL, [SortOrder] = 455.00 WHERE [Code] = 'mqn' END +SET [Description] = 'Moronene', [Definition] = NULL, [SortOrder] = 4565.00 WHERE [Code] = 'mqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mok', 'Morori', NULL, 455.10) END +VALUES ('mok', 'Morori', NULL, 4566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morori', [Definition] = NULL, [SortOrder] = 455.10 WHERE [Code] = 'mok' END +SET [Description] = 'Morori', [Definition] = NULL, [SortOrder] = 4566.00 WHERE [Code] = 'mok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrp', 'Morouas', NULL, 455.20) END +VALUES ('mrp', 'Morouas', NULL, 4567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morouas', [Definition] = NULL, [SortOrder] = 455.20 WHERE [Code] = 'mrp' END +SET [Description] = 'Morouas', [Definition] = NULL, [SortOrder] = 4567.00 WHERE [Code] = 'mrp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umg', 'Morrobalama', NULL, 455.30) END +VALUES ('umg', 'Morrobalama', NULL, 4568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morrobalama', [Definition] = NULL, [SortOrder] = 455.30 WHERE [Code] = 'umg' END +SET [Description] = 'Morrobalama', [Definition] = NULL, [SortOrder] = 4568.00 WHERE [Code] = 'umg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrl', 'Mortlockese', NULL, 455.40) END +VALUES ('mrl', 'Mortlockese', NULL, 4569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mortlockese', [Definition] = NULL, [SortOrder] = 455.40 WHERE [Code] = 'mrl' END +SET [Description] = 'Mortlockese', [Definition] = NULL, [SortOrder] = 4569.00 WHERE [Code] = 'mrl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgd', 'Moru', NULL, 455.50) END +VALUES ('mgd', 'Moru', NULL, 4570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moru', [Definition] = NULL, [SortOrder] = 455.50 WHERE [Code] = 'mgd' END +SET [Description] = 'Moru', [Definition] = NULL, [SortOrder] = 4570.00 WHERE [Code] = 'mgd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqv', 'Mosimo', NULL, 455.60) END +VALUES ('mqv', 'Mosimo', NULL, 4571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mosimo', [Definition] = NULL, [SortOrder] = 455.60 WHERE [Code] = 'mqv' END +SET [Description] = 'Mosimo', [Definition] = NULL, [SortOrder] = 4571.00 WHERE [Code] = 'mqv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtj', 'Moskona', NULL, 455.70) END +VALUES ('mtj', 'Moskona', NULL, 4572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moskona', [Definition] = NULL, [SortOrder] = 455.70 WHERE [Code] = 'mtj' END +SET [Description] = 'Moskona', [Definition] = NULL, [SortOrder] = 4572.00 WHERE [Code] = 'mtj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mos', 'Mossi', NULL, 455.80) END +VALUES ('mos', 'Mossi', NULL, 4573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mossi', [Definition] = NULL, [SortOrder] = 455.80 WHERE [Code] = 'mos' END +SET [Description] = 'Mossi', [Definition] = NULL, [SortOrder] = 4573.00 WHERE [Code] = 'mos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtt', 'Mota', NULL, 455.90) END +VALUES ('mtt', 'Mota', NULL, 4574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mota', [Definition] = NULL, [SortOrder] = 455.90 WHERE [Code] = 'mtt' END +SET [Description] = 'Mota', [Definition] = NULL, [SortOrder] = 4574.00 WHERE [Code] = 'mtt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlv', 'Motlav', NULL, 456.00) END +VALUES ('mlv', 'Motlav', NULL, 4575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Motlav', [Definition] = NULL, [SortOrder] = 456.00 WHERE [Code] = 'mlv' END +SET [Description] = 'Motlav', [Definition] = NULL, [SortOrder] = 4575.00 WHERE [Code] = 'mlv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meu', 'Motu', NULL, 456.10) END +VALUES ('meu', 'Motu', NULL, 4576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Motu', [Definition] = NULL, [SortOrder] = 456.10 WHERE [Code] = 'meu' END +SET [Description] = 'Motu', [Definition] = NULL, [SortOrder] = 4576.00 WHERE [Code] = 'meu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwh', 'Mouk-Aria', NULL, 456.20) END +VALUES ('mwh', 'Mouk-Aria', NULL, 4577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mouk-Aria', [Definition] = NULL, [SortOrder] = 456.20 WHERE [Code] = 'mwh' END +SET [Description] = 'Mouk-Aria', [Definition] = NULL, [SortOrder] = 4577.00 WHERE [Code] = 'mwh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cty', 'Moundadan Chetty', NULL, 456.30) END +VALUES ('cty', 'Moundadan Chetty', NULL, 4578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moundadan Chetty', [Definition] = NULL, [SortOrder] = 456.30 WHERE [Code] = 'cty' END +SET [Description] = 'Moundadan Chetty', [Definition] = NULL, [SortOrder] = 4578.00 WHERE [Code] = 'cty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpx', 'Mountain Koiali', NULL, 456.40) END +VALUES ('kpx', 'Mountain Koiali', NULL, 4579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mountain Koiali', [Definition] = NULL, [SortOrder] = 456.40 WHERE [Code] = 'kpx' END +SET [Description] = 'Mountain Koiali', [Definition] = NULL, [SortOrder] = 4579.00 WHERE [Code] = 'kpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmw', 'Mouwase', NULL, 456.50) END +VALUES ('jmw', 'Mouwase', NULL, 4580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mouwase', [Definition] = NULL, [SortOrder] = 456.50 WHERE [Code] = 'jmw' END +SET [Description] = 'Mouwase', [Definition] = NULL, [SortOrder] = 4580.00 WHERE [Code] = 'jmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzp', 'Movima', NULL, 456.60) END +VALUES ('mzp', 'Movima', NULL, 4581.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Movima', [Definition] = NULL, [SortOrder] = 456.60 WHERE [Code] = 'mzp' END +SET [Description] = 'Movima', [Definition] = NULL, [SortOrder] = 4581.00 WHERE [Code] = 'mzp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ity') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ity', 'Moyadan Itneg', NULL, 456.70) END +VALUES ('ity', 'Moyadan Itneg', NULL, 4582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moyadan Itneg', [Definition] = NULL, [SortOrder] = 456.70 WHERE [Code] = 'ity' END +SET [Description] = 'Moyadan Itneg', [Definition] = NULL, [SortOrder] = 4582.00 WHERE [Code] = 'ity' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmo', 'Moyon Naga', NULL, 456.80) END +VALUES ('nmo', 'Moyon Naga', NULL, 4583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moyon Naga', [Definition] = NULL, [SortOrder] = 456.80 WHERE [Code] = 'nmo' END +SET [Description] = 'Moyon Naga', [Definition] = NULL, [SortOrder] = 4583.00 WHERE [Code] = 'nmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzy', 'Mozambican Sign Language', NULL, 456.90) END +VALUES ('mzy', 'Mozambican Sign Language', NULL, 4584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mozambican Sign Language', [Definition] = NULL, [SortOrder] = 456.90 WHERE [Code] = 'mzy' END +SET [Description] = 'Mozambican Sign Language', [Definition] = NULL, [SortOrder] = 4584.00 WHERE [Code] = 'mzy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxi', 'Mozarabic', NULL, 457.00) END +VALUES ('mxi', 'Mozarabic', NULL, 4585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mozarabic', [Definition] = NULL, [SortOrder] = 457.00 WHERE [Code] = 'mxi' END +SET [Description] = 'Mozarabic', [Definition] = NULL, [SortOrder] = 4585.00 WHERE [Code] = 'mxi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpi', 'Mpade', NULL, 457.10) END +VALUES ('mpi', 'Mpade', NULL, 4586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpade', [Definition] = NULL, [SortOrder] = 457.10 WHERE [Code] = 'mpi' END +SET [Description] = 'Mpade', [Definition] = NULL, [SortOrder] = 4586.00 WHERE [Code] = 'mpi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpj', 'Mpalitjanh', NULL, 457.20) END +VALUES ('xpj', 'Mpalitjanh', NULL, 4587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpalitjanh', [Definition] = NULL, [SortOrder] = 457.20 WHERE [Code] = 'xpj' END +SET [Description] = 'Mpalitjanh', [Definition] = NULL, [SortOrder] = 4587.00 WHERE [Code] = 'xpj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpz', 'Mpi', NULL, 457.30) END +VALUES ('mpz', 'Mpi', NULL, 4588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpi', [Definition] = NULL, [SortOrder] = 457.30 WHERE [Code] = 'mpz' END +SET [Description] = 'Mpi', [Definition] = NULL, [SortOrder] = 4588.00 WHERE [Code] = 'mpz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcx', 'Mpiemo', NULL, 457.40) END +VALUES ('mcx', 'Mpiemo', NULL, 4589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpiemo', [Definition] = NULL, [SortOrder] = 457.40 WHERE [Code] = 'mcx' END +SET [Description] = 'Mpiemo', [Definition] = NULL, [SortOrder] = 4589.00 WHERE [Code] = 'mcx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnd', 'Mpinda', NULL, 457.50) END +VALUES ('pnd', 'Mpinda', NULL, 4590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpinda', [Definition] = NULL, [SortOrder] = 457.50 WHERE [Code] = 'pnd' END +SET [Description] = 'Mpinda', [Definition] = NULL, [SortOrder] = 4590.00 WHERE [Code] = 'pnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpa', 'Mpoto', NULL, 457.60) END +VALUES ('mpa', 'Mpoto', NULL, 4591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpoto', [Definition] = NULL, [SortOrder] = 457.60 WHERE [Code] = 'mpa' END +SET [Description] = 'Mpoto', [Definition] = NULL, [SortOrder] = 4591.00 WHERE [Code] = 'mpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvt', 'Mpotovoro', NULL, 457.70) END +VALUES ('mvt', 'Mpotovoro', NULL, 4592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpotovoro', [Definition] = NULL, [SortOrder] = 457.70 WHERE [Code] = 'mvt' END +SET [Description] = 'Mpotovoro', [Definition] = NULL, [SortOrder] = 4592.00 WHERE [Code] = 'mvt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgg', 'Mpumpong', NULL, 457.80) END +VALUES ('mgg', 'Mpumpong', NULL, 4593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpumpong', [Definition] = NULL, [SortOrder] = 457.80 WHERE [Code] = 'mgg' END +SET [Description] = 'Mpumpong', [Definition] = NULL, [SortOrder] = 4593.00 WHERE [Code] = 'mgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmp', 'Mpuono', NULL, 457.90) END +VALUES ('zmp', 'Mpuono', NULL, 4594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpuono', [Definition] = NULL, [SortOrder] = 457.90 WHERE [Code] = 'zmp' END +SET [Description] = 'Mpuono', [Definition] = NULL, [SortOrder] = 4594.00 WHERE [Code] = 'zmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akc', 'Mpur', NULL, 458.00) END +VALUES ('akc', 'Mpur', NULL, 4595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpur', [Definition] = NULL, [SortOrder] = 458.00 WHERE [Code] = 'akc' END +SET [Description] = 'Mpur', [Definition] = NULL, [SortOrder] = 4595.00 WHERE [Code] = 'akc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmr', 'Mro-Khimi Chin', NULL, 458.10) END +VALUES ('cmr', 'Mro-Khimi Chin', NULL, 4596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mro-Khimi Chin', [Definition] = NULL, [SortOrder] = 458.10 WHERE [Code] = 'cmr' END +SET [Description] = 'Mro-Khimi Chin', [Definition] = NULL, [SortOrder] = 4596.00 WHERE [Code] = 'cmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mro', 'Mru', NULL, 458.20) END +VALUES ('mro', 'Mru', NULL, 4597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mru', [Definition] = NULL, [SortOrder] = 458.20 WHERE [Code] = 'mro' END +SET [Description] = 'Mru', [Definition] = NULL, [SortOrder] = 4597.00 WHERE [Code] = 'mro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqx', 'Mser', NULL, 458.30) END +VALUES ('kqx', 'Mser', NULL, 4598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mser', [Definition] = NULL, [SortOrder] = 458.30 WHERE [Code] = 'kqx' END +SET [Description] = 'Mser', [Definition] = NULL, [SortOrder] = 4598.00 WHERE [Code] = 'kqx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atl', 'Mt. Iraya Agta', NULL, 458.40) END +VALUES ('atl', 'Mt. Iraya Agta', NULL, 4599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mt. Iraya Agta', [Definition] = NULL, [SortOrder] = 458.40 WHERE [Code] = 'atl' END +SET [Description] = 'Mt. Iraya Agta', [Definition] = NULL, [SortOrder] = 4599.00 WHERE [Code] = 'atl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agz', 'Mt. Iriga Agta', NULL, 458.50) END +VALUES ('agz', 'Mt. Iriga Agta', NULL, 4600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mt. Iriga Agta', [Definition] = NULL, [SortOrder] = 458.50 WHERE [Code] = 'agz' END +SET [Description] = 'Mt. Iriga Agta', [Definition] = NULL, [SortOrder] = 4600.00 WHERE [Code] = 'agz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukk', 'Muak Sa-aak', NULL, 458.60) END +VALUES ('ukk', 'Muak Sa-aak', NULL, 4601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muak Sa-aak', [Definition] = NULL, [SortOrder] = 458.60 WHERE [Code] = 'ukk' END +SET [Description] = 'Muak Sa-aak', [Definition] = NULL, [SortOrder] = 4601.00 WHERE [Code] = 'ukk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtd', 'Mualang', NULL, 458.70) END +VALUES ('mtd', 'Mualang', NULL, 4602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mualang', [Definition] = NULL, [SortOrder] = 458.70 WHERE [Code] = 'mtd' END +SET [Description] = 'Mualang', [Definition] = NULL, [SortOrder] = 4602.00 WHERE [Code] = 'mtd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsx', 'Mubami', NULL, 458.80) END +VALUES ('tsx', 'Mubami', NULL, 4603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mubami', [Definition] = NULL, [SortOrder] = 458.80 WHERE [Code] = 'tsx' END +SET [Description] = 'Mubami', [Definition] = NULL, [SortOrder] = 4603.00 WHERE [Code] = 'tsx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mub', 'Mubi', NULL, 458.90) END +VALUES ('mub', 'Mubi', NULL, 4604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mubi', [Definition] = NULL, [SortOrder] = 458.90 WHERE [Code] = 'mub' END +SET [Description] = 'Mubi', [Definition] = NULL, [SortOrder] = 4604.00 WHERE [Code] = 'mub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymd', 'Muda', NULL, 459.00) END +VALUES ('ymd', 'Muda', NULL, 4605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muda', [Definition] = NULL, [SortOrder] = 459.00 WHERE [Code] = 'ymd' END +SET [Description] = 'Muda', [Definition] = NULL, [SortOrder] = 4605.00 WHERE [Code] = 'ymd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmw', 'Mudburra', NULL, 459.10) END +VALUES ('dmw', 'Mudburra', NULL, 4606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mudburra', [Definition] = NULL, [SortOrder] = 459.10 WHERE [Code] = 'dmw' END +SET [Description] = 'Mudburra', [Definition] = NULL, [SortOrder] = 4606.00 WHERE [Code] = 'dmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gau', 'Mudhili Gadaba', NULL, 459.20) END +VALUES ('gau', 'Mudhili Gadaba', NULL, 4607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mudhili Gadaba', [Definition] = NULL, [SortOrder] = 459.20 WHERE [Code] = 'gau' END +SET [Description] = 'Mudhili Gadaba', [Definition] = NULL, [SortOrder] = 4607.00 WHERE [Code] = 'gau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmd', 'Mudu Koraga', NULL, 459.30) END +VALUES ('vmd', 'Mudu Koraga', NULL, 4608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mudu Koraga', [Definition] = NULL, [SortOrder] = 459.30 WHERE [Code] = 'vmd' END +SET [Description] = 'Mudu Koraga', [Definition] = NULL, [SortOrder] = 4608.00 WHERE [Code] = 'vmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udg', 'Muduga', NULL, 459.40) END +VALUES ('udg', 'Muduga', NULL, 4609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muduga', [Definition] = NULL, [SortOrder] = 459.40 WHERE [Code] = 'udg' END +SET [Description] = 'Muduga', [Definition] = NULL, [SortOrder] = 4609.00 WHERE [Code] = 'udg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoj', 'Mufian', NULL, 459.50) END +VALUES ('aoj', 'Mufian', NULL, 4610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mufian', [Definition] = NULL, [SortOrder] = 459.50 WHERE [Code] = 'aoj' END +SET [Description] = 'Mufian', [Definition] = NULL, [SortOrder] = 4610.00 WHERE [Code] = 'aoj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muk', 'Mugom', NULL, 459.60) END +VALUES ('muk', 'Mugom', NULL, 4611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mugom', [Definition] = NULL, [SortOrder] = 459.60 WHERE [Code] = 'muk' END +SET [Description] = 'Mugom', [Definition] = NULL, [SortOrder] = 4611.00 WHERE [Code] = 'muk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmr', 'Muinane', NULL, 459.70) END +VALUES ('bmr', 'Muinane', NULL, 4612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muinane', [Definition] = NULL, [SortOrder] = 459.70 WHERE [Code] = 'bmr' END +SET [Description] = 'Muinane', [Definition] = NULL, [SortOrder] = 4612.00 WHERE [Code] = 'bmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmk', 'Mukha-Dora', NULL, 459.80) END +VALUES ('mmk', 'Mukha-Dora', NULL, 4613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mukha-Dora', [Definition] = NULL, [SortOrder] = 459.80 WHERE [Code] = 'mmk' END +SET [Description] = 'Mukha-Dora', [Definition] = NULL, [SortOrder] = 4613.00 WHERE [Code] = 'mmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moz', 'Mukulu', NULL, 459.90) END +VALUES ('moz', 'Mukulu', NULL, 4614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mukulu', [Definition] = NULL, [SortOrder] = 459.90 WHERE [Code] = 'moz' END +SET [Description] = 'Mukulu', [Definition] = NULL, [SortOrder] = 4614.00 WHERE [Code] = 'moz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfw', 'Mulaha', NULL, 460.00) END +VALUES ('mfw', 'Mulaha', NULL, 4615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mulaha', [Definition] = NULL, [SortOrder] = 460.00 WHERE [Code] = 'mfw' END +SET [Description] = 'Mulaha', [Definition] = NULL, [SortOrder] = 4615.00 WHERE [Code] = 'mfw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlm', 'Mulam', NULL, 460.10) END +VALUES ('mlm', 'Mulam', NULL, 4616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mulam', [Definition] = NULL, [SortOrder] = 460.10 WHERE [Code] = 'mlm' END +SET [Description] = 'Mulam', [Definition] = NULL, [SortOrder] = 4616.00 WHERE [Code] = 'mlm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giu', 'Mulao', NULL, 460.20) END +VALUES ('giu', 'Mulao', NULL, 4617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mulao', [Definition] = NULL, [SortOrder] = 460.20 WHERE [Code] = 'giu' END +SET [Description] = 'Mulao', [Definition] = NULL, [SortOrder] = 4617.00 WHERE [Code] = 'giu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvh', 'Mulgi', NULL, 460.30) END +VALUES ('mvh', 'Mulgi', NULL, 4618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mulgi', [Definition] = NULL, [SortOrder] = 460.30 WHERE [Code] = 'mvh' END +SET [Description] = 'Mulgi', [Definition] = NULL, [SortOrder] = 4618.00 WHERE [Code] = 'mvh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpb', 'Mullu Kurumba', NULL, 460.40) END +VALUES ('kpb', 'Mullu Kurumba', NULL, 4619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mullu Kurumba', [Definition] = NULL, [SortOrder] = 460.40 WHERE [Code] = 'kpb' END +SET [Description] = 'Mullu Kurumba', [Definition] = NULL, [SortOrder] = 4619.00 WHERE [Code] = 'kpb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mul', 'Multiple languages', NULL, 460.50) END +VALUES ('mul', 'Multiple languages', NULL, 4620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Multiple languages', [Definition] = NULL, [SortOrder] = 460.50 WHERE [Code] = 'mul' END +SET [Description] = 'Multiple languages', [Definition] = NULL, [SortOrder] = 4620.00 WHERE [Code] = 'mul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmu', 'Muluridyi', NULL, 460.60) END +VALUES ('vmu', 'Muluridyi', NULL, 4621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muluridyi', [Definition] = NULL, [SortOrder] = 460.60 WHERE [Code] = 'vmu' END +SET [Description] = 'Muluridyi', [Definition] = NULL, [SortOrder] = 4621.00 WHERE [Code] = 'vmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqa', 'Mum', NULL, 460.70) END +VALUES ('kqa', 'Mum', NULL, 4622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mum', [Definition] = NULL, [SortOrder] = 460.70 WHERE [Code] = 'kqa' END +SET [Description] = 'Mum', [Definition] = NULL, [SortOrder] = 4622.00 WHERE [Code] = 'kqa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzm', 'Mumuye', NULL, 460.80) END +VALUES ('mzm', 'Mumuye', NULL, 4623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mumuye', [Definition] = NULL, [SortOrder] = 460.80 WHERE [Code] = 'mzm' END +SET [Description] = 'Mumuye', [Definition] = NULL, [SortOrder] = 4623.00 WHERE [Code] = 'mzm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwq', 'Mün Chin', NULL, 460.90) END +VALUES ('mwq', 'Mün Chin', NULL, 4624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mün Chin', [Definition] = NULL, [SortOrder] = 460.90 WHERE [Code] = 'mwq' END +SET [Description] = 'Mün Chin', [Definition] = NULL, [SortOrder] = 4624.00 WHERE [Code] = 'mwq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnb', 'Muna', NULL, 461.00) END +VALUES ('mnb', 'Muna', NULL, 4625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muna', [Definition] = NULL, [SortOrder] = 461.00 WHERE [Code] = 'mnb' END +SET [Description] = 'Muna', [Definition] = NULL, [SortOrder] = 4625.00 WHERE [Code] = 'mnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unx', 'Munda', NULL, 461.10) END +VALUES ('unx', 'Munda', NULL, 4626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munda', [Definition] = NULL, [SortOrder] = 461.10 WHERE [Code] = 'unx' END +SET [Description] = 'Munda', [Definition] = NULL, [SortOrder] = 4626.00 WHERE [Code] = 'unx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boe', 'Mundabli', NULL, 461.20) END +VALUES ('boe', 'Mundabli', NULL, 4627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundabli', [Definition] = NULL, [SortOrder] = 461.20 WHERE [Code] = 'boe' END +SET [Description] = 'Mundabli', [Definition] = NULL, [SortOrder] = 4627.00 WHERE [Code] = 'boe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mua', 'Mundang', NULL, 461.30) END +VALUES ('mua', 'Mundang', NULL, 4628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundang', [Definition] = NULL, [SortOrder] = 461.30 WHERE [Code] = 'mua' END +SET [Description] = 'Mundang', [Definition] = NULL, [SortOrder] = 4628.00 WHERE [Code] = 'mua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnf', 'Mundani', NULL, 461.40) END +VALUES ('mnf', 'Mundani', NULL, 4629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundani', [Definition] = NULL, [SortOrder] = 461.40 WHERE [Code] = 'mnf' END +SET [Description] = 'Mundani', [Definition] = NULL, [SortOrder] = 4629.00 WHERE [Code] = 'mnf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unr', 'Mundari', NULL, 461.50) END +VALUES ('unr', 'Mundari', NULL, 4630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundari', [Definition] = NULL, [SortOrder] = 461.50 WHERE [Code] = 'unr' END +SET [Description] = 'Mundari', [Definition] = NULL, [SortOrder] = 4630.00 WHERE [Code] = 'unr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmf', 'Mundat', NULL, 461.60) END +VALUES ('mmf', 'Mundat', NULL, 4631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundat', [Definition] = NULL, [SortOrder] = 461.60 WHERE [Code] = 'mmf' END +SET [Description] = 'Mundat', [Definition] = NULL, [SortOrder] = 4631.00 WHERE [Code] = 'mmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muh', 'Mündü', NULL, 461.70) END +VALUES ('muh', 'Mündü', NULL, 4632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mündü', [Definition] = NULL, [SortOrder] = 461.70 WHERE [Code] = 'muh' END +SET [Description] = 'Mündü', [Definition] = NULL, [SortOrder] = 4632.00 WHERE [Code] = 'muh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myu', 'Mundurukú', NULL, 461.80) END +VALUES ('myu', 'Mundurukú', NULL, 4633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundurukú', [Definition] = NULL, [SortOrder] = 461.80 WHERE [Code] = 'myu' END +SET [Description] = 'Mundurukú', [Definition] = NULL, [SortOrder] = 4633.00 WHERE [Code] = 'myu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhk', 'Mungaka', NULL, 461.90) END +VALUES ('mhk', 'Mungaka', NULL, 4634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mungaka', [Definition] = NULL, [SortOrder] = 461.90 WHERE [Code] = 'mhk' END +SET [Description] = 'Mungaka', [Definition] = NULL, [SortOrder] = 4634.00 WHERE [Code] = 'mhk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mth', 'Munggui', NULL, 462.00) END +VALUES ('mth', 'Munggui', NULL, 4635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munggui', [Definition] = NULL, [SortOrder] = 462.00 WHERE [Code] = 'mth' END +SET [Description] = 'Munggui', [Definition] = NULL, [SortOrder] = 4635.00 WHERE [Code] = 'mth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpv', 'Mungkip', NULL, 462.10) END +VALUES ('mpv', 'Mungkip', NULL, 4636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mungkip', [Definition] = NULL, [SortOrder] = 462.10 WHERE [Code] = 'mpv' END +SET [Description] = 'Mungkip', [Definition] = NULL, [SortOrder] = 4636.00 WHERE [Code] = 'mpv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myr', 'Muniche', NULL, 462.20) END +VALUES ('myr', 'Muniche', NULL, 4637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muniche', [Definition] = NULL, [SortOrder] = 462.20 WHERE [Code] = 'myr' END +SET [Description] = 'Muniche', [Definition] = NULL, [SortOrder] = 4637.00 WHERE [Code] = 'myr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtc', 'Munit', NULL, 462.30) END +VALUES ('mtc', 'Munit', NULL, 4638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munit', [Definition] = NULL, [SortOrder] = 462.30 WHERE [Code] = 'mtc' END +SET [Description] = 'Munit', [Definition] = NULL, [SortOrder] = 4638.00 WHERE [Code] = 'mtc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnj', 'Munji', NULL, 462.40) END +VALUES ('mnj', 'Munji', NULL, 4639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munji', [Definition] = NULL, [SortOrder] = 462.40 WHERE [Code] = 'mnj' END +SET [Description] = 'Munji', [Definition] = NULL, [SortOrder] = 4639.00 WHERE [Code] = 'mnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umu', 'Munsee', NULL, 462.50) END +VALUES ('umu', 'Munsee', NULL, 4640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munsee', [Definition] = NULL, [SortOrder] = 462.50 WHERE [Code] = 'umu' END +SET [Description] = 'Munsee', [Definition] = NULL, [SortOrder] = 4640.00 WHERE [Code] = 'umu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtq', 'Muong', NULL, 462.60) END +VALUES ('mtq', 'Muong', NULL, 4641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muong', [Definition] = NULL, [SortOrder] = 462.60 WHERE [Code] = 'mtq' END +SET [Description] = 'Muong', [Definition] = NULL, [SortOrder] = 4641.00 WHERE [Code] = 'mtq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkv', 'Mur Pano', NULL, 462.70) END +VALUES ('tkv', 'Mur Pano', NULL, 4642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mur Pano', [Definition] = NULL, [SortOrder] = 462.70 WHERE [Code] = 'tkv' END +SET [Description] = 'Mur Pano', [Definition] = NULL, [SortOrder] = 4642.00 WHERE [Code] = 'tkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asx', 'Muratayak', NULL, 462.80) END +VALUES ('asx', 'Muratayak', NULL, 4643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muratayak', [Definition] = NULL, [SortOrder] = 462.80 WHERE [Code] = 'asx' END +SET [Description] = 'Muratayak', [Definition] = NULL, [SortOrder] = 4643.00 WHERE [Code] = 'asx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxr', 'Murik (Malaysia)', NULL, 462.90) END +VALUES ('mxr', 'Murik (Malaysia)', NULL, 4644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murik (Malaysia)', [Definition] = NULL, [SortOrder] = 462.90 WHERE [Code] = 'mxr' END +SET [Description] = 'Murik (Malaysia)', [Definition] = NULL, [SortOrder] = 4644.00 WHERE [Code] = 'mxr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtf', 'Murik (Papua New Guinea)', NULL, 463.00) END +VALUES ('mtf', 'Murik (Papua New Guinea)', NULL, 4645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murik (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 463.00 WHERE [Code] = 'mtf' END +SET [Description] = 'Murik (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 4645.00 WHERE [Code] = 'mtf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmh', 'Murkim', NULL, 463.10) END +VALUES ('rmh', 'Murkim', NULL, 4646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murkim', [Definition] = NULL, [SortOrder] = 463.10 WHERE [Code] = 'rmh' END +SET [Description] = 'Murkim', [Definition] = NULL, [SortOrder] = 4646.00 WHERE [Code] = 'rmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mur', 'Murle', NULL, 463.20) END +VALUES ('mur', 'Murle', NULL, 4647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murle', [Definition] = NULL, [SortOrder] = 463.20 WHERE [Code] = 'mur' END +SET [Description] = 'Murle', [Definition] = NULL, [SortOrder] = 4647.00 WHERE [Code] = 'mur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwf', 'Murrinh-Patha', NULL, 463.30) END +VALUES ('mwf', 'Murrinh-Patha', NULL, 4648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murrinh-Patha', [Definition] = NULL, [SortOrder] = 463.30 WHERE [Code] = 'mwf' END +SET [Description] = 'Murrinh-Patha', [Definition] = NULL, [SortOrder] = 4648.00 WHERE [Code] = 'mwf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muz', 'Mursi', NULL, 463.40) END +VALUES ('muz', 'Mursi', NULL, 4649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mursi', [Definition] = NULL, [SortOrder] = 463.40 WHERE [Code] = 'muz' END +SET [Description] = 'Mursi', [Definition] = NULL, [SortOrder] = 4649.00 WHERE [Code] = 'muz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huu', 'Murui Huitoto', NULL, 463.50) END +VALUES ('huu', 'Murui Huitoto', NULL, 4650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murui Huitoto', [Definition] = NULL, [SortOrder] = 463.50 WHERE [Code] = 'huu' END +SET [Description] = 'Murui Huitoto', [Definition] = NULL, [SortOrder] = 4650.00 WHERE [Code] = 'huu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqw', 'Murupi', NULL, 463.60) END +VALUES ('mqw', 'Murupi', NULL, 4651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murupi', [Definition] = NULL, [SortOrder] = 463.60 WHERE [Code] = 'mqw' END +SET [Description] = 'Murupi', [Definition] = NULL, [SortOrder] = 4651.00 WHERE [Code] = 'mqw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmu', 'Muruwari', NULL, 463.70) END +VALUES ('zmu', 'Muruwari', NULL, 4652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muruwari', [Definition] = NULL, [SortOrder] = 463.70 WHERE [Code] = 'zmu' END +SET [Description] = 'Muruwari', [Definition] = NULL, [SortOrder] = 4652.00 WHERE [Code] = 'zmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmq', 'Musak', NULL, 463.80) END +VALUES ('mmq', 'Musak', NULL, 4653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musak', [Definition] = NULL, [SortOrder] = 463.80 WHERE [Code] = 'mmq' END +SET [Description] = 'Musak', [Definition] = NULL, [SortOrder] = 4653.00 WHERE [Code] = 'mmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmi', 'Musar', NULL, 463.90) END +VALUES ('mmi', 'Musar', NULL, 4654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musar', [Definition] = NULL, [SortOrder] = 463.90 WHERE [Code] = 'mmi' END +SET [Description] = 'Musar', [Definition] = NULL, [SortOrder] = 4654.00 WHERE [Code] = 'mmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smm', 'Musasa', NULL, 464.00) END +VALUES ('smm', 'Musasa', NULL, 4655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musasa', [Definition] = NULL, [SortOrder] = 464.00 WHERE [Code] = 'smm' END +SET [Description] = 'Musasa', [Definition] = NULL, [SortOrder] = 4655.00 WHERE [Code] = 'smm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mse', 'Musey', NULL, 464.10) END +VALUES ('mse', 'Musey', NULL, 4656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musey', [Definition] = NULL, [SortOrder] = 464.10 WHERE [Code] = 'mse' END +SET [Description] = 'Musey', [Definition] = NULL, [SortOrder] = 4656.00 WHERE [Code] = 'mse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mug', 'Musgu', NULL, 464.20) END +VALUES ('mug', 'Musgu', NULL, 4657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musgu', [Definition] = NULL, [SortOrder] = 464.20 WHERE [Code] = 'mug' END +SET [Description] = 'Musgu', [Definition] = NULL, [SortOrder] = 4657.00 WHERE [Code] = 'mug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xma', 'Mushungulu', NULL, 464.30) END +VALUES ('xma', 'Mushungulu', NULL, 4658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mushungulu', [Definition] = NULL, [SortOrder] = 464.30 WHERE [Code] = 'xma' END +SET [Description] = 'Mushungulu', [Definition] = NULL, [SortOrder] = 4658.00 WHERE [Code] = 'xma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mui', 'Musi', NULL, 464.40) END +VALUES ('mui', 'Musi', NULL, 4659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musi', [Definition] = NULL, [SortOrder] = 464.40 WHERE [Code] = 'mui' END +SET [Description] = 'Musi', [Definition] = NULL, [SortOrder] = 4659.00 WHERE [Code] = 'mui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mje', 'Muskum', NULL, 464.50) END +VALUES ('mje', 'Muskum', NULL, 4660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muskum', [Definition] = NULL, [SortOrder] = 464.50 WHERE [Code] = 'mje' END +SET [Description] = 'Muskum', [Definition] = NULL, [SortOrder] = 4660.00 WHERE [Code] = 'mje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttt', 'Muslim Tat', NULL, 464.60) END +VALUES ('ttt', 'Muslim Tat', NULL, 4661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muslim Tat', [Definition] = NULL, [SortOrder] = 464.60 WHERE [Code] = 'ttt' END +SET [Description] = 'Muslim Tat', [Definition] = NULL, [SortOrder] = 4661.00 WHERE [Code] = 'ttt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msu', 'Musom', NULL, 464.70) END +VALUES ('msu', 'Musom', NULL, 4662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musom', [Definition] = NULL, [SortOrder] = 464.70 WHERE [Code] = 'msu' END +SET [Description] = 'Musom', [Definition] = NULL, [SortOrder] = 4662.00 WHERE [Code] = 'msu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emi', 'Mussau-Emira', NULL, 464.80) END +VALUES ('emi', 'Mussau-Emira', NULL, 4663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mussau-Emira', [Definition] = NULL, [SortOrder] = 464.80 WHERE [Code] = 'emi' END +SET [Description] = 'Mussau-Emira', [Definition] = NULL, [SortOrder] = 4663.00 WHERE [Code] = 'emi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muv', 'Muthuvan', NULL, 464.90) END +VALUES ('muv', 'Muthuvan', NULL, 4664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muthuvan', [Definition] = NULL, [SortOrder] = 464.90 WHERE [Code] = 'muv' END +SET [Description] = 'Muthuvan', [Definition] = NULL, [SortOrder] = 4664.00 WHERE [Code] = 'muv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuc', 'Mutu', NULL, 465.00) END +VALUES ('tuc', 'Mutu', NULL, 4665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mutu', [Definition] = NULL, [SortOrder] = 465.00 WHERE [Code] = 'tuc' END +SET [Description] = 'Mutu', [Definition] = NULL, [SortOrder] = 4665.00 WHERE [Code] = 'tuc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muy', 'Muyang', NULL, 465.10) END +VALUES ('muy', 'Muyang', NULL, 4666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muyang', [Definition] = NULL, [SortOrder] = 465.10 WHERE [Code] = 'muy' END +SET [Description] = 'Muyang', [Definition] = NULL, [SortOrder] = 4666.00 WHERE [Code] = 'muy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myw', 'Muyuw', NULL, 465.20) END +VALUES ('myw', 'Muyuw', NULL, 4667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muyuw', [Definition] = NULL, [SortOrder] = 465.20 WHERE [Code] = 'myw' END +SET [Description] = 'Muyuw', [Definition] = NULL, [SortOrder] = 4667.00 WHERE [Code] = 'myw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymz', 'Muzi', NULL, 465.30) END +VALUES ('ymz', 'Muzi', NULL, 4668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muzi', [Definition] = NULL, [SortOrder] = 465.30 WHERE [Code] = 'ymz' END +SET [Description] = 'Muzi', [Definition] = NULL, [SortOrder] = 4668.00 WHERE [Code] = 'ymz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcj', 'Mvanip', NULL, 465.40) END +VALUES ('mcj', 'Mvanip', NULL, 4669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mvanip', [Definition] = NULL, [SortOrder] = 465.40 WHERE [Code] = 'mcj' END +SET [Description] = 'Mvanip', [Definition] = NULL, [SortOrder] = 4669.00 WHERE [Code] = 'mcj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxh', 'Mvuba', NULL, 465.50) END +VALUES ('mxh', 'Mvuba', NULL, 4670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mvuba', [Definition] = NULL, [SortOrder] = 465.50 WHERE [Code] = 'mxh' END +SET [Description] = 'Mvuba', [Definition] = NULL, [SortOrder] = 4670.00 WHERE [Code] = 'mxh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sur', 'Mwaghavul', NULL, 465.60) END +VALUES ('sur', 'Mwaghavul', NULL, 4671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwaghavul', [Definition] = NULL, [SortOrder] = 465.60 WHERE [Code] = 'sur' END +SET [Description] = 'Mwaghavul', [Definition] = NULL, [SortOrder] = 4671.00 WHERE [Code] = 'sur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlc', 'Mwali Comorian', NULL, 465.70) END +VALUES ('wlc', 'Mwali Comorian', NULL, 4672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwali Comorian', [Definition] = NULL, [SortOrder] = 465.70 WHERE [Code] = 'wlc' END +SET [Description] = 'Mwali Comorian', [Definition] = NULL, [SortOrder] = 4672.00 WHERE [Code] = 'wlc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moa', 'Mwan', NULL, 465.80) END +VALUES ('moa', 'Mwan', NULL, 4673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwan', [Definition] = NULL, [SortOrder] = 465.80 WHERE [Code] = 'moa' END +SET [Description] = 'Mwan', [Definition] = NULL, [SortOrder] = 4673.00 WHERE [Code] = 'moa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmw', 'Mwani', NULL, 465.90) END +VALUES ('wmw', 'Mwani', NULL, 4674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwani', [Definition] = NULL, [SortOrder] = 465.90 WHERE [Code] = 'wmw' END +SET [Description] = 'Mwani', [Definition] = NULL, [SortOrder] = 4674.00 WHERE [Code] = 'wmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwa', 'Mwatebu', NULL, 466.00) END +VALUES ('mwa', 'Mwatebu', NULL, 4675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwatebu', [Definition] = NULL, [SortOrder] = 466.00 WHERE [Code] = 'mwa' END +SET [Description] = 'Mwatebu', [Definition] = NULL, [SortOrder] = 4675.00 WHERE [Code] = 'mwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwe', 'Mwera (Chimwera)', NULL, 466.10) END +VALUES ('mwe', 'Mwera (Chimwera)', NULL, 4676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwera (Chimwera)', [Definition] = NULL, [SortOrder] = 466.10 WHERE [Code] = 'mwe' END +SET [Description] = 'Mwera (Chimwera)', [Definition] = NULL, [SortOrder] = 4676.00 WHERE [Code] = 'mwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjh', 'Mwera (Nyasa)', NULL, 466.20) END +VALUES ('mjh', 'Mwera (Nyasa)', NULL, 4677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwera (Nyasa)', [Definition] = NULL, [SortOrder] = 466.20 WHERE [Code] = 'mjh' END +SET [Description] = 'Mwera (Nyasa)', [Definition] = NULL, [SortOrder] = 4677.00 WHERE [Code] = 'mjh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mws', 'Mwimbi-Muthambi', NULL, 466.30) END +VALUES ('mws', 'Mwimbi-Muthambi', NULL, 4678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwimbi-Muthambi', [Definition] = NULL, [SortOrder] = 466.30 WHERE [Code] = 'mws' END +SET [Description] = 'Mwimbi-Muthambi', [Definition] = NULL, [SortOrder] = 4678.00 WHERE [Code] = 'mws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysm', 'Myanmar Sign Language', NULL, 466.40) END +VALUES ('ysm', 'Myanmar Sign Language', NULL, 4679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Myanmar Sign Language', [Definition] = NULL, [SortOrder] = 466.40 WHERE [Code] = 'ysm' END +SET [Description] = 'Myanmar Sign Language', [Definition] = NULL, [SortOrder] = 4679.00 WHERE [Code] = 'ysm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmy', 'Mycenaean Greek', NULL, 466.50) END +VALUES ('gmy', 'Mycenaean Greek', NULL, 4680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mycenaean Greek', [Definition] = NULL, [SortOrder] = 466.50 WHERE [Code] = 'gmy' END +SET [Description] = 'Mycenaean Greek', [Definition] = NULL, [SortOrder] = 4680.00 WHERE [Code] = 'gmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mye', 'Myene', NULL, 466.60) END +VALUES ('mye', 'Myene', NULL, 4681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Myene', [Definition] = NULL, [SortOrder] = 466.60 WHERE [Code] = 'mye' END +SET [Description] = 'Myene', [Definition] = NULL, [SortOrder] = 4681.00 WHERE [Code] = 'mye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yms', 'Mysian', NULL, 466.70) END +VALUES ('yms', 'Mysian', NULL, 4682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mysian', [Definition] = NULL, [SortOrder] = 466.70 WHERE [Code] = 'yms' END +SET [Description] = 'Mysian', [Definition] = NULL, [SortOrder] = 4682.00 WHERE [Code] = 'yms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nme', 'Mzieme Naga', NULL, 466.80) END +VALUES ('nme', 'Mzieme Naga', NULL, 4683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mzieme Naga', [Definition] = NULL, [SortOrder] = 466.80 WHERE [Code] = 'nme' END +SET [Description] = 'Mzieme Naga', [Definition] = NULL, [SortOrder] = 4683.00 WHERE [Code] = 'nme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqo', 'N''Ko', NULL, 466.90) END +VALUES ('nqo', 'N''Ko', NULL, 4684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'N''Ko', [Definition] = NULL, [SortOrder] = 466.90 WHERE [Code] = 'nqo' END +SET [Description] = 'N''Ko', [Definition] = NULL, [SortOrder] = 4684.00 WHERE [Code] = 'nqo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngh', 'N?ng', NULL, 467.00) END +VALUES ('ngh', 'N?ng', NULL, 4685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'N?ng', [Definition] = NULL, [SortOrder] = 467.00 WHERE [Code] = 'ngh' END +SET [Description] = 'N?ng', [Definition] = NULL, [SortOrder] = 4685.00 WHERE [Code] = 'ngh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbt', 'Na', NULL, 467.10) END +VALUES ('nbt', 'Na', NULL, 4686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Na', [Definition] = NULL, [SortOrder] = 467.10 WHERE [Code] = 'nbt' END +SET [Description] = 'Na', [Definition] = NULL, [SortOrder] = 4686.00 WHERE [Code] = 'nbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nck', 'Na-kara', NULL, 467.20) END +VALUES ('nck', 'Na-kara', NULL, 4687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Na-kara', [Definition] = NULL, [SortOrder] = 467.20 WHERE [Code] = 'nck' END +SET [Description] = 'Na-kara', [Definition] = NULL, [SortOrder] = 4687.00 WHERE [Code] = 'nck' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neo', 'Ná-Meo', NULL, 467.30) END +VALUES ('neo', 'Ná-Meo', NULL, 4688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ná-Meo', [Definition] = NULL, [SortOrder] = 467.30 WHERE [Code] = 'neo' END +SET [Description] = 'Ná-Meo', [Definition] = NULL, [SortOrder] = 4688.00 WHERE [Code] = 'neo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nao', 'Naaba', NULL, 467.40) END +VALUES ('nao', 'Naaba', NULL, 4689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naaba', [Definition] = NULL, [SortOrder] = 467.40 WHERE [Code] = 'nao' END +SET [Description] = 'Naaba', [Definition] = NULL, [SortOrder] = 4689.00 WHERE [Code] = 'nao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzv', 'Naami', NULL, 467.50) END +VALUES ('bzv', 'Naami', NULL, 4690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naami', [Definition] = NULL, [SortOrder] = 467.50 WHERE [Code] = 'bzv' END +SET [Description] = 'Naami', [Definition] = NULL, [SortOrder] = 4690.00 WHERE [Code] = 'bzv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nas', 'Naasioi', NULL, 467.60) END +VALUES ('nas', 'Naasioi', NULL, 4691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naasioi', [Definition] = NULL, [SortOrder] = 467.60 WHERE [Code] = 'nas' END +SET [Description] = 'Naasioi', [Definition] = NULL, [SortOrder] = 4691.00 WHERE [Code] = 'nas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mne', 'Naba', NULL, 467.70) END +VALUES ('mne', 'Naba', NULL, 4692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naba', [Definition] = NULL, [SortOrder] = 467.70 WHERE [Code] = 'mne' END +SET [Description] = 'Naba', [Definition] = NULL, [SortOrder] = 4692.00 WHERE [Code] = 'mne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naf', 'Nabak', NULL, 467.80) END +VALUES ('naf', 'Nabak', NULL, 4693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nabak', [Definition] = NULL, [SortOrder] = 467.80 WHERE [Code] = 'naf' END +SET [Description] = 'Nabak', [Definition] = NULL, [SortOrder] = 4693.00 WHERE [Code] = 'naf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mty', 'Nabi', NULL, 467.90) END +VALUES ('mty', 'Nabi', NULL, 4694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nabi', [Definition] = NULL, [SortOrder] = 467.90 WHERE [Code] = 'mty' END +SET [Description] = 'Nabi', [Definition] = NULL, [SortOrder] = 4694.00 WHERE [Code] = 'mty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncd', 'Nachering', NULL, 468.00) END +VALUES ('ncd', 'Nachering', NULL, 4695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nachering', [Definition] = NULL, [SortOrder] = 468.00 WHERE [Code] = 'ncd' END +SET [Description] = 'Nachering', [Definition] = NULL, [SortOrder] = 4695.00 WHERE [Code] = 'ncd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbj', 'Nadëb', NULL, 468.10) END +VALUES ('mbj', 'Nadëb', NULL, 4696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nadëb', [Definition] = NULL, [SortOrder] = 468.10 WHERE [Code] = 'mbj' END +SET [Description] = 'Nadëb', [Definition] = NULL, [SortOrder] = 4696.00 WHERE [Code] = 'mbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndf', 'Nadruvian', NULL, 468.20) END +VALUES ('ndf', 'Nadruvian', NULL, 4697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nadruvian', [Definition] = NULL, [SortOrder] = 468.20 WHERE [Code] = 'ndf' END +SET [Description] = 'Nadruvian', [Definition] = NULL, [SortOrder] = 4697.00 WHERE [Code] = 'ndf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfr', 'Nafaanra', NULL, 468.30) END +VALUES ('nfr', 'Nafaanra', NULL, 4698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nafaanra', [Definition] = NULL, [SortOrder] = 468.30 WHERE [Code] = 'nfr' END +SET [Description] = 'Nafaanra', [Definition] = NULL, [SortOrder] = 4698.00 WHERE [Code] = 'nfr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srf', 'Nafi', NULL, 468.40) END +VALUES ('srf', 'Nafi', NULL, 4699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nafi', [Definition] = NULL, [SortOrder] = 468.40 WHERE [Code] = 'srf' END +SET [Description] = 'Nafi', [Definition] = NULL, [SortOrder] = 4699.00 WHERE [Code] = 'srf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxx', 'Nafri', NULL, 468.50) END +VALUES ('nxx', 'Nafri', NULL, 4700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nafri', [Definition] = NULL, [SortOrder] = 468.50 WHERE [Code] = 'nxx' END +SET [Description] = 'Nafri', [Definition] = NULL, [SortOrder] = 4700.00 WHERE [Code] = 'nxx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbn', 'Nafusi', NULL, 468.60) END +VALUES ('jbn', 'Nafusi', NULL, 4701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nafusi', [Definition] = NULL, [SortOrder] = 468.60 WHERE [Code] = 'jbn' END +SET [Description] = 'Nafusi', [Definition] = NULL, [SortOrder] = 4701.00 WHERE [Code] = 'jbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nag', 'Naga Pidgin', NULL, 468.70) END +VALUES ('nag', 'Naga Pidgin', NULL, 4702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naga Pidgin', [Definition] = NULL, [SortOrder] = 468.70 WHERE [Code] = 'nag' END +SET [Description] = 'Naga Pidgin', [Definition] = NULL, [SortOrder] = 4702.00 WHERE [Code] = 'nag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbg', 'Nagarchal', NULL, 468.80) END +VALUES ('nbg', 'Nagarchal', NULL, 4703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nagarchal', [Definition] = NULL, [SortOrder] = 468.80 WHERE [Code] = 'nbg' END +SET [Description] = 'Nagarchal', [Definition] = NULL, [SortOrder] = 4703.00 WHERE [Code] = 'nbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxe', 'Nage', NULL, 468.90) END +VALUES ('nxe', 'Nage', NULL, 4704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nage', [Definition] = NULL, [SortOrder] = 468.90 WHERE [Code] = 'nxe' END +SET [Description] = 'Nage', [Definition] = NULL, [SortOrder] = 4704.00 WHERE [Code] = 'nxe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngv', 'Nagumi', NULL, 469.00) END +VALUES ('ngv', 'Nagumi', NULL, 4705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nagumi', [Definition] = NULL, [SortOrder] = 469.00 WHERE [Code] = 'ngv' END +SET [Description] = 'Nagumi', [Definition] = NULL, [SortOrder] = 4705.00 WHERE [Code] = 'ngv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlx', 'Nahali', NULL, 469.10) END +VALUES ('nlx', 'Nahali', NULL, 4706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nahali', [Definition] = NULL, [SortOrder] = 469.10 WHERE [Code] = 'nlx' END +SET [Description] = 'Nahali', [Definition] = NULL, [SortOrder] = 4706.00 WHERE [Code] = 'nlx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhh', 'Nahari', NULL, 469.20) END +VALUES ('nhh', 'Nahari', NULL, 4707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nahari', [Definition] = NULL, [SortOrder] = 469.20 WHERE [Code] = 'nhh' END +SET [Description] = 'Nahari', [Definition] = NULL, [SortOrder] = 4707.00 WHERE [Code] = 'nhh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bio', 'Nai', NULL, 469.30) END +VALUES ('bio', 'Nai', NULL, 4708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nai', [Definition] = NULL, [SortOrder] = 469.30 WHERE [Code] = 'bio' END +SET [Description] = 'Nai', [Definition] = NULL, [SortOrder] = 4708.00 WHERE [Code] = 'bio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ars') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ars', 'Najdi Arabic', NULL, 469.40) END +VALUES ('ars', 'Najdi Arabic', NULL, 4709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Najdi Arabic', [Definition] = NULL, [SortOrder] = 469.40 WHERE [Code] = 'ars' END +SET [Description] = 'Najdi Arabic', [Definition] = NULL, [SortOrder] = 4709.00 WHERE [Code] = 'ars' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nae', 'Naka''ela', NULL, 469.50) END +VALUES ('nae', 'Naka''ela', NULL, 4710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naka''ela', [Definition] = NULL, [SortOrder] = 469.50 WHERE [Code] = 'nae' END +SET [Description] = 'Naka''ela', [Definition] = NULL, [SortOrder] = 4710.00 WHERE [Code] = 'nae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkj', 'Nakai', NULL, 469.60) END +VALUES ('nkj', 'Nakai', NULL, 4711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nakai', [Definition] = NULL, [SortOrder] = 469.60 WHERE [Code] = 'nkj' END +SET [Description] = 'Nakai', [Definition] = NULL, [SortOrder] = 4711.00 WHERE [Code] = 'nkj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nib', 'Nakame', NULL, 469.70) END +VALUES ('nib', 'Nakame', NULL, 4712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nakame', [Definition] = NULL, [SortOrder] = 469.70 WHERE [Code] = 'nib' END +SET [Description] = 'Nakame', [Definition] = NULL, [SortOrder] = 4712.00 WHERE [Code] = 'nib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nak', 'Nakanai', NULL, 469.80) END +VALUES ('nak', 'Nakanai', NULL, 4713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nakanai', [Definition] = NULL, [SortOrder] = 469.80 WHERE [Code] = 'nak' END +SET [Description] = 'Nakanai', [Definition] = NULL, [SortOrder] = 4713.00 WHERE [Code] = 'nak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbk', 'Nake', NULL, 469.90) END +VALUES ('nbk', 'Nake', NULL, 4714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nake', [Definition] = NULL, [SortOrder] = 469.90 WHERE [Code] = 'nbk' END +SET [Description] = 'Nake', [Definition] = NULL, [SortOrder] = 4714.00 WHERE [Code] = 'nbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mff') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mff', 'Naki', NULL, 470.00) END +VALUES ('mff', 'Naki', NULL, 4715.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naki', [Definition] = NULL, [SortOrder] = 470.00 WHERE [Code] = 'mff' END +SET [Description] = 'Naki', [Definition] = NULL, [SortOrder] = 4715.00 WHERE [Code] = 'mff' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nax', 'Nakwi', NULL, 470.10) END +VALUES ('nax', 'Nakwi', NULL, 4716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nakwi', [Definition] = NULL, [SortOrder] = 470.10 WHERE [Code] = 'nax' END +SET [Description] = 'Nakwi', [Definition] = NULL, [SortOrder] = 4716.00 WHERE [Code] = 'nax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlc', 'Nalca', NULL, 470.20) END +VALUES ('nlc', 'Nalca', NULL, 4717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nalca', [Definition] = NULL, [SortOrder] = 470.20 WHERE [Code] = 'nlc' END +SET [Description] = 'Nalca', [Definition] = NULL, [SortOrder] = 4717.00 WHERE [Code] = 'nlc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nss', 'Nali', NULL, 470.30) END +VALUES ('nss', 'Nali', NULL, 4718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nali', [Definition] = NULL, [SortOrder] = 470.30 WHERE [Code] = 'nss' END +SET [Description] = 'Nali', [Definition] = NULL, [SortOrder] = 4718.00 WHERE [Code] = 'nss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nal', 'Nalik', NULL, 470.40) END +VALUES ('nal', 'Nalik', NULL, 4719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nalik', [Definition] = NULL, [SortOrder] = 470.40 WHERE [Code] = 'nal' END +SET [Description] = 'Nalik', [Definition] = NULL, [SortOrder] = 4719.00 WHERE [Code] = 'nal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlz', 'Nalögo', NULL, 470.50) END +VALUES ('nlz', 'Nalögo', NULL, 4720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nalögo', [Definition] = NULL, [SortOrder] = 470.50 WHERE [Code] = 'nlz' END +SET [Description] = 'Nalögo', [Definition] = NULL, [SortOrder] = 4720.00 WHERE [Code] = 'nlz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naj', 'Nalu', NULL, 470.60) END +VALUES ('naj', 'Nalu', NULL, 4721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nalu', [Definition] = NULL, [SortOrder] = 470.60 WHERE [Code] = 'naj' END +SET [Description] = 'Nalu', [Definition] = NULL, [SortOrder] = 4721.00 WHERE [Code] = 'naj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylo', 'Naluo Yi', NULL, 470.70) END +VALUES ('ylo', 'Naluo Yi', NULL, 4722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naluo Yi', [Definition] = NULL, [SortOrder] = 470.70 WHERE [Code] = 'ylo' END +SET [Description] = 'Naluo Yi', [Definition] = NULL, [SortOrder] = 4722.00 WHERE [Code] = 'ylo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmx', 'Nama (Papua New Guinea)', NULL, 470.80) END +VALUES ('nmx', 'Nama (Papua New Guinea)', NULL, 4723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nama (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 470.80 WHERE [Code] = 'nmx' END +SET [Description] = 'Nama (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 4723.00 WHERE [Code] = 'nmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmk', 'Namakura', NULL, 470.90) END +VALUES ('nmk', 'Namakura', NULL, 4724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namakura', [Definition] = NULL, [SortOrder] = 470.90 WHERE [Code] = 'nmk' END +SET [Description] = 'Namakura', [Definition] = NULL, [SortOrder] = 4724.00 WHERE [Code] = 'nmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkm', 'Namat', NULL, 471.00) END +VALUES ('nkm', 'Namat', NULL, 4725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namat', [Definition] = NULL, [SortOrder] = 471.00 WHERE [Code] = 'nkm' END +SET [Description] = 'Namat', [Definition] = NULL, [SortOrder] = 4725.00 WHERE [Code] = 'nkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncm', 'Nambo', NULL, 471.10) END +VALUES ('ncm', 'Nambo', NULL, 4726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nambo', [Definition] = NULL, [SortOrder] = 471.10 WHERE [Code] = 'ncm' END +SET [Description] = 'Nambo', [Definition] = NULL, [SortOrder] = 4726.00 WHERE [Code] = 'ncm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmq', 'Nambya', NULL, 471.20) END +VALUES ('nmq', 'Nambya', NULL, 4727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nambya', [Definition] = NULL, [SortOrder] = 471.20 WHERE [Code] = 'nmq' END +SET [Description] = 'Nambya', [Definition] = NULL, [SortOrder] = 4727.00 WHERE [Code] = 'nmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnm', 'Namia', NULL, 471.30) END +VALUES ('nnm', 'Namia', NULL, 4728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namia', [Definition] = NULL, [SortOrder] = 471.30 WHERE [Code] = 'nnm' END +SET [Description] = 'Namia', [Definition] = NULL, [SortOrder] = 4728.00 WHERE [Code] = 'nnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nvm', 'Namiae', NULL, 471.40) END +VALUES ('nvm', 'Namiae', NULL, 4729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namiae', [Definition] = NULL, [SortOrder] = 471.40 WHERE [Code] = 'nvm' END +SET [Description] = 'Namiae', [Definition] = NULL, [SortOrder] = 4729.00 WHERE [Code] = 'nvm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbs', 'Namibian Sign Language', NULL, 471.50) END +VALUES ('nbs', 'Namibian Sign Language', NULL, 4730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namibian Sign Language', [Definition] = NULL, [SortOrder] = 471.50 WHERE [Code] = 'nbs' END +SET [Description] = 'Namibian Sign Language', [Definition] = NULL, [SortOrder] = 4730.00 WHERE [Code] = 'nbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naa', 'Namla', NULL, 471.60) END +VALUES ('naa', 'Namla', NULL, 4731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namla', [Definition] = NULL, [SortOrder] = 471.60 WHERE [Code] = 'naa' END +SET [Description] = 'Namla', [Definition] = NULL, [SortOrder] = 4731.00 WHERE [Code] = 'naa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxw', 'Namo', NULL, 471.70) END +VALUES ('mxw', 'Namo', NULL, 4732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namo', [Definition] = NULL, [SortOrder] = 471.70 WHERE [Code] = 'mxw' END +SET [Description] = 'Namo', [Definition] = NULL, [SortOrder] = 4732.00 WHERE [Code] = 'mxw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmt', 'Namonuito', NULL, 471.80) END +VALUES ('nmt', 'Namonuito', NULL, 4733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namonuito', [Definition] = NULL, [SortOrder] = 471.80 WHERE [Code] = 'nmt' END +SET [Description] = 'Namonuito', [Definition] = NULL, [SortOrder] = 4733.00 WHERE [Code] = 'nmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwb', 'Namosi-Naitasiri-Serua', NULL, 471.90) END +VALUES ('bwb', 'Namosi-Naitasiri-Serua', NULL, 4734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namosi-Naitasiri-Serua', [Definition] = NULL, [SortOrder] = 471.90 WHERE [Code] = 'bwb' END +SET [Description] = 'Namosi-Naitasiri-Serua', [Definition] = NULL, [SortOrder] = 4734.00 WHERE [Code] = 'bwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmy', 'Namuyi', NULL, 472.00) END +VALUES ('nmy', 'Namuyi', NULL, 4735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namuyi', [Definition] = NULL, [SortOrder] = 472.00 WHERE [Code] = 'nmy' END +SET [Description] = 'Namuyi', [Definition] = NULL, [SortOrder] = 4735.00 WHERE [Code] = 'nmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gld', 'Nanai', NULL, 472.10) END +VALUES ('gld', 'Nanai', NULL, 4736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanai', [Definition] = NULL, [SortOrder] = 472.10 WHERE [Code] = 'gld' END +SET [Description] = 'Nanai', [Definition] = NULL, [SortOrder] = 4736.00 WHERE [Code] = 'gld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnc', 'Nancere', NULL, 472.20) END +VALUES ('nnc', 'Nancere', NULL, 4737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nancere', [Definition] = NULL, [SortOrder] = 472.20 WHERE [Code] = 'nnc' END +SET [Description] = 'Nancere', [Definition] = NULL, [SortOrder] = 4737.00 WHERE [Code] = 'nnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnb', 'Nande', NULL, 472.30) END +VALUES ('nnb', 'Nande', NULL, 4738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nande', [Definition] = NULL, [SortOrder] = 472.30 WHERE [Code] = 'nnb' END +SET [Description] = 'Nande', [Definition] = NULL, [SortOrder] = 4738.00 WHERE [Code] = 'nnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niq', 'Nandi', NULL, 472.40) END +VALUES ('niq', 'Nandi', NULL, 4739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nandi', [Definition] = NULL, [SortOrder] = 472.40 WHERE [Code] = 'niq' END +SET [Description] = 'Nandi', [Definition] = NULL, [SortOrder] = 4739.00 WHERE [Code] = 'niq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sen', 'Nanerigé Sénoufo', NULL, 472.50) END +VALUES ('sen', 'Nanerigé Sénoufo', NULL, 4740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanerigé Sénoufo', [Definition] = NULL, [SortOrder] = 472.50 WHERE [Code] = 'sen' END +SET [Description] = 'Nanerigé Sénoufo', [Definition] = NULL, [SortOrder] = 4740.00 WHERE [Code] = 'sen' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzz', 'Nanga Dama Dogon', NULL, 472.60) END +VALUES ('nzz', 'Nanga Dama Dogon', NULL, 4741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanga Dama Dogon', [Definition] = NULL, [SortOrder] = 472.60 WHERE [Code] = 'nzz' END +SET [Description] = 'Nanga Dama Dogon', [Definition] = NULL, [SortOrder] = 4741.00 WHERE [Code] = 'nzz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnk', 'Nankina', NULL, 472.70) END +VALUES ('nnk', 'Nankina', NULL, 4742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nankina', [Definition] = NULL, [SortOrder] = 472.70 WHERE [Code] = 'nnk' END +SET [Description] = 'Nankina', [Definition] = NULL, [SortOrder] = 4742.00 WHERE [Code] = 'nnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cox', 'Nanti', NULL, 472.80) END +VALUES ('cox', 'Nanti', NULL, 4743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanti', [Definition] = NULL, [SortOrder] = 472.80 WHERE [Code] = 'cox' END +SET [Description] = 'Nanti', [Definition] = NULL, [SortOrder] = 4743.00 WHERE [Code] = 'cox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnt', 'Nanticoke', NULL, 472.90) END +VALUES ('nnt', 'Nanticoke', NULL, 4744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanticoke', [Definition] = NULL, [SortOrder] = 472.90 WHERE [Code] = 'nnt' END +SET [Description] = 'Nanticoke', [Definition] = NULL, [SortOrder] = 4744.00 WHERE [Code] = 'nnt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afk', 'Nanubae', NULL, 473.00) END +VALUES ('afk', 'Nanubae', NULL, 4745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanubae', [Definition] = NULL, [SortOrder] = 473.00 WHERE [Code] = 'afk' END +SET [Description] = 'Nanubae', [Definition] = NULL, [SortOrder] = 4745.00 WHERE [Code] = 'afk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvo', 'Napo Lowland Quechua', NULL, 473.10) END +VALUES ('qvo', 'Napo Lowland Quechua', NULL, 4746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Napo Lowland Quechua', [Definition] = NULL, [SortOrder] = 473.10 WHERE [Code] = 'qvo' END +SET [Description] = 'Napo Lowland Quechua', [Definition] = NULL, [SortOrder] = 4746.00 WHERE [Code] = 'qvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npy', 'Napu', NULL, 473.20) END +VALUES ('npy', 'Napu', NULL, 4747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Napu', [Definition] = NULL, [SortOrder] = 473.20 WHERE [Code] = 'npy' END +SET [Description] = 'Napu', [Definition] = NULL, [SortOrder] = 4747.00 WHERE [Code] = 'npy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npa', 'Nar Phu', NULL, 473.30) END +VALUES ('npa', 'Nar Phu', NULL, 4748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nar Phu', [Definition] = NULL, [SortOrder] = 473.30 WHERE [Code] = 'npa' END +SET [Description] = 'Nar Phu', [Definition] = NULL, [SortOrder] = 4748.00 WHERE [Code] = 'npa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrb', 'Nara', NULL, 473.40) END +VALUES ('nrb', 'Nara', NULL, 4749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nara', [Definition] = NULL, [SortOrder] = 473.40 WHERE [Code] = 'nrb' END +SET [Description] = 'Nara', [Definition] = NULL, [SortOrder] = 4749.00 WHERE [Code] = 'nrb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nac', 'Narak', NULL, 473.50) END +VALUES ('nac', 'Narak', NULL, 4750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narak', [Definition] = NULL, [SortOrder] = 473.50 WHERE [Code] = 'nac' END +SET [Description] = 'Narak', [Definition] = NULL, [SortOrder] = 4750.00 WHERE [Code] = 'nac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrg', 'Narango', NULL, 473.60) END +VALUES ('nrg', 'Narango', NULL, 4751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narango', [Definition] = NULL, [SortOrder] = 473.60 WHERE [Code] = 'nrg' END +SET [Description] = 'Narango', [Definition] = NULL, [SortOrder] = 4751.00 WHERE [Code] = 'nrg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnr', 'Nari Nari', NULL, 473.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nari Nari', [Definition] = NULL, [SortOrder] = 473.70 WHERE [Code] = 'rnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loh', 'Narim', NULL, 473.80) END +VALUES ('rnr', 'Nari Nari', NULL, 4752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narim', [Definition] = NULL, [SortOrder] = 473.80 WHERE [Code] = 'loh' END +SET [Description] = 'Nari Nari', [Definition] = NULL, [SortOrder] = 4752.00 WHERE [Code] = 'rnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhr', 'Naro', NULL, 473.90) END +VALUES ('nhr', 'Naro', NULL, 4753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naro', [Definition] = NULL, [SortOrder] = 473.90 WHERE [Code] = 'nhr' END +SET [Description] = 'Naro', [Definition] = NULL, [SortOrder] = 4753.00 WHERE [Code] = 'nhr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrm', 'Narom', NULL, 474.00) END +VALUES ('nrm', 'Narom', NULL, 4754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narom', [Definition] = NULL, [SortOrder] = 474.00 WHERE [Code] = 'nrm' END +SET [Description] = 'Narom', [Definition] = NULL, [SortOrder] = 4754.00 WHERE [Code] = 'nrm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnt', 'Narragansett', NULL, 474.10) END +VALUES ('xnt', 'Narragansett', NULL, 4755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narragansett', [Definition] = NULL, [SortOrder] = 474.10 WHERE [Code] = 'xnt' END +SET [Description] = 'Narragansett', [Definition] = NULL, [SortOrder] = 4755.00 WHERE [Code] = 'xnt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nru', 'Narua', NULL, 474.20) END +VALUES ('nru', 'Narua', NULL, 4756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narua', [Definition] = NULL, [SortOrder] = 474.20 WHERE [Code] = 'nru' END +SET [Description] = 'Narua', [Definition] = NULL, [SortOrder] = 4756.00 WHERE [Code] = 'nru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnr', 'Narungga', NULL, 474.30) END +VALUES ('nnr', 'Narungga', NULL, 4757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narungga', [Definition] = NULL, [SortOrder] = 474.30 WHERE [Code] = 'nnr' END +SET [Description] = 'Narungga', [Definition] = NULL, [SortOrder] = 4757.00 WHERE [Code] = 'nnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsy', 'Nasal', NULL, 474.40) END +VALUES ('nsy', 'Nasal', NULL, 4758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nasal', [Definition] = NULL, [SortOrder] = 474.40 WHERE [Code] = 'nsy' END +SET [Description] = 'Nasal', [Definition] = NULL, [SortOrder] = 4758.00 WHERE [Code] = 'nsy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nvh', 'Nasarian', NULL, 474.50) END +VALUES ('nvh', 'Nasarian', NULL, 4759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nasarian', [Definition] = NULL, [SortOrder] = 474.50 WHERE [Code] = 'nvh' END +SET [Description] = 'Nasarian', [Definition] = NULL, [SortOrder] = 4759.00 WHERE [Code] = 'nvh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsk', 'Naskapi', NULL, 474.60) END +VALUES ('nsk', 'Naskapi', NULL, 4760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naskapi', [Definition] = NULL, [SortOrder] = 474.60 WHERE [Code] = 'nsk' END +SET [Description] = 'Naskapi', [Definition] = NULL, [SortOrder] = 4760.00 WHERE [Code] = 'nsk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntz', 'Natanzi', NULL, 474.70) END +VALUES ('ntz', 'Natanzi', NULL, 4761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Natanzi', [Definition] = NULL, [SortOrder] = 474.70 WHERE [Code] = 'ntz' END +SET [Description] = 'Natanzi', [Definition] = NULL, [SortOrder] = 4761.00 WHERE [Code] = 'ntz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncz', 'Natchez', NULL, 474.80) END +VALUES ('ncz', 'Natchez', NULL, 4762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Natchez', [Definition] = NULL, [SortOrder] = 474.80 WHERE [Code] = 'ncz' END +SET [Description] = 'Natchez', [Definition] = NULL, [SortOrder] = 4762.00 WHERE [Code] = 'ncz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntm', 'Nateni', NULL, 474.90) END +VALUES ('ntm', 'Nateni', NULL, 4763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nateni', [Definition] = NULL, [SortOrder] = 474.90 WHERE [Code] = 'ntm' END +SET [Description] = 'Nateni', [Definition] = NULL, [SortOrder] = 4763.00 WHERE [Code] = 'ntm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nte', 'Nathembo', NULL, 475.00) END +VALUES ('nte', 'Nathembo', NULL, 4764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nathembo', [Definition] = NULL, [SortOrder] = 475.00 WHERE [Code] = 'nte' END +SET [Description] = 'Nathembo', [Definition] = NULL, [SortOrder] = 4764.00 WHERE [Code] = 'nte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nti', 'Natioro', NULL, 475.10) END +VALUES ('nti', 'Natioro', NULL, 4765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Natioro', [Definition] = NULL, [SortOrder] = 475.10 WHERE [Code] = 'nti' END +SET [Description] = 'Natioro', [Definition] = NULL, [SortOrder] = 4765.00 WHERE [Code] = 'nti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntu', 'Natügu', NULL, 475.20) END +VALUES ('ntu', 'Natügu', NULL, 4766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Natügu', [Definition] = NULL, [SortOrder] = 475.20 WHERE [Code] = 'ntu' END +SET [Description] = 'Natügu', [Definition] = NULL, [SortOrder] = 4766.00 WHERE [Code] = 'ntu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxa', 'Nauete', NULL, 475.30) END +VALUES ('nxa', 'Nauete', NULL, 4767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nauete', [Definition] = NULL, [SortOrder] = 475.30 WHERE [Code] = 'nxa' END +SET [Description] = 'Nauete', [Definition] = NULL, [SortOrder] = 4767.00 WHERE [Code] = 'nxa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynk', 'Naukan Yupik', NULL, 475.40) END +VALUES ('ynk', 'Naukan Yupik', NULL, 4768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naukan Yupik', [Definition] = NULL, [SortOrder] = 475.40 WHERE [Code] = 'ynk' END +SET [Description] = 'Naukan Yupik', [Definition] = NULL, [SortOrder] = 4768.00 WHERE [Code] = 'ynk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncn', 'Nauna', NULL, 475.50) END +VALUES ('ncn', 'Nauna', NULL, 4769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nauna', [Definition] = NULL, [SortOrder] = 475.50 WHERE [Code] = 'ncn' END +SET [Description] = 'Nauna', [Definition] = NULL, [SortOrder] = 4769.00 WHERE [Code] = 'ncn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwo', 'Nauo', NULL, 475.60) END +VALUES ('nwo', 'Nauo', NULL, 4770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nauo', [Definition] = NULL, [SortOrder] = 475.60 WHERE [Code] = 'nwo' END +SET [Description] = 'Nauo', [Definition] = NULL, [SortOrder] = 4770.00 WHERE [Code] = 'nwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nau', 'Nauru', NULL, 475.70) END +VALUES ('nau', 'Nauru', NULL, 4771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nauru', [Definition] = NULL, [SortOrder] = 475.70 WHERE [Code] = 'nau' END +SET [Description] = 'Nauru', [Definition] = NULL, [SortOrder] = 4771.00 WHERE [Code] = 'nau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nav', 'Navajo', NULL, 475.80) END +VALUES ('nav', 'Navajo', NULL, 4772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Navajo', [Definition] = NULL, [SortOrder] = 475.80 WHERE [Code] = 'nav' END +SET [Description] = 'Navajo', [Definition] = NULL, [SortOrder] = 4772.00 WHERE [Code] = 'nav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsw', 'Navut', NULL, 475.90) END +VALUES ('nsw', 'Navut', NULL, 4773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Navut', [Definition] = NULL, [SortOrder] = 475.90 WHERE [Code] = 'nsw' END +SET [Description] = 'Navut', [Definition] = NULL, [SortOrder] = 4773.00 WHERE [Code] = 'nsw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwr', 'Nawaru', NULL, 476.00) END +VALUES ('nwr', 'Nawaru', NULL, 4774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nawaru', [Definition] = NULL, [SortOrder] = 476.00 WHERE [Code] = 'nwr' END +SET [Description] = 'Nawaru', [Definition] = NULL, [SortOrder] = 4774.00 WHERE [Code] = 'nwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwa', 'Nawathinehena', NULL, 476.10) END +VALUES ('nwa', 'Nawathinehena', NULL, 4775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nawathinehena', [Definition] = NULL, [SortOrder] = 476.10 WHERE [Code] = 'nwa' END +SET [Description] = 'Nawathinehena', [Definition] = NULL, [SortOrder] = 4775.00 WHERE [Code] = 'nwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmz', 'Nawdm', NULL, 476.20) END +VALUES ('nmz', 'Nawdm', NULL, 4776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nawdm', [Definition] = NULL, [SortOrder] = 476.20 WHERE [Code] = 'nmz' END +SET [Description] = 'Nawdm', [Definition] = NULL, [SortOrder] = 4776.00 WHERE [Code] = 'nmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naw', 'Nawuri', NULL, 476.30) END +VALUES ('naw', 'Nawuri', NULL, 4777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nawuri', [Definition] = NULL, [SortOrder] = 476.30 WHERE [Code] = 'naw' END +SET [Description] = 'Nawuri', [Definition] = NULL, [SortOrder] = 4777.00 WHERE [Code] = 'naw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxq', 'Naxi', NULL, 476.40) END +VALUES ('nxq', 'Naxi', NULL, 4778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naxi', [Definition] = NULL, [SortOrder] = 476.40 WHERE [Code] = 'nxq' END +SET [Description] = 'Naxi', [Definition] = NULL, [SortOrder] = 4778.00 WHERE [Code] = 'nxq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noz', 'Nayi', NULL, 476.50) END +VALUES ('noz', 'Nayi', NULL, 4779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nayi', [Definition] = NULL, [SortOrder] = 476.50 WHERE [Code] = 'noz' END +SET [Description] = 'Nayi', [Definition] = NULL, [SortOrder] = 4779.00 WHERE [Code] = 'noz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyq', 'Nayini', NULL, 476.60) END +VALUES ('nyq', 'Nayini', NULL, 4780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nayini', [Definition] = NULL, [SortOrder] = 476.60 WHERE [Code] = 'nyq' END +SET [Description] = 'Nayini', [Definition] = NULL, [SortOrder] = 4780.00 WHERE [Code] = 'nyq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncr', 'Ncane', NULL, 476.70) END +VALUES ('ncr', 'Ncane', NULL, 4781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ncane', [Definition] = NULL, [SortOrder] = 476.70 WHERE [Code] = 'ncr' END +SET [Description] = 'Ncane', [Definition] = NULL, [SortOrder] = 4781.00 WHERE [Code] = 'ncr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlu', 'Nchumbulu', NULL, 476.80) END +VALUES ('nlu', 'Nchumbulu', NULL, 4782.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nchumbulu', [Definition] = NULL, [SortOrder] = 476.80 WHERE [Code] = 'nlu' END +SET [Description] = 'Nchumbulu', [Definition] = NULL, [SortOrder] = 4782.00 WHERE [Code] = 'nlu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnz', 'Nda''nda''', NULL, 476.90) END +VALUES ('nnz', 'Nda''nda''', NULL, 4783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nda''nda''', [Definition] = NULL, [SortOrder] = 476.90 WHERE [Code] = 'nnz' END +SET [Description] = 'Nda''nda''', [Definition] = NULL, [SortOrder] = 4783.00 WHERE [Code] = 'nnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gke', 'Ndai', NULL, 477.00) END +VALUES ('gke', 'Ndai', NULL, 4784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndai', [Definition] = NULL, [SortOrder] = 477.00 WHERE [Code] = 'gke' END +SET [Description] = 'Ndai', [Definition] = NULL, [SortOrder] = 4784.00 WHERE [Code] = 'gke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndk', 'Ndaka', NULL, 477.10) END +VALUES ('ndk', 'Ndaka', NULL, 4785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndaka', [Definition] = NULL, [SortOrder] = 477.10 WHERE [Code] = 'ndk' END +SET [Description] = 'Ndaka', [Definition] = NULL, [SortOrder] = 4785.00 WHERE [Code] = 'ndk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndh', 'Ndali', NULL, 477.20) END +VALUES ('ndh', 'Ndali', NULL, 4786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndali', [Definition] = NULL, [SortOrder] = 477.20 WHERE [Code] = 'ndh' END +SET [Description] = 'Ndali', [Definition] = NULL, [SortOrder] = 4786.00 WHERE [Code] = 'ndh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndm', 'Ndam', NULL, 477.30) END +VALUES ('ndm', 'Ndam', NULL, 4787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndam', [Definition] = NULL, [SortOrder] = 477.30 WHERE [Code] = 'ndm' END +SET [Description] = 'Ndam', [Definition] = NULL, [SortOrder] = 4787.00 WHERE [Code] = 'ndm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndj', 'Ndamba', NULL, 477.40) END +VALUES ('ndj', 'Ndamba', NULL, 4788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndamba', [Definition] = NULL, [SortOrder] = 477.40 WHERE [Code] = 'ndj' END +SET [Description] = 'Ndamba', [Definition] = NULL, [SortOrder] = 4788.00 WHERE [Code] = 'ndj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxo', 'Ndambomo', NULL, 477.50) END +VALUES ('nxo', 'Ndambomo', NULL, 4789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndambomo', [Definition] = NULL, [SortOrder] = 477.50 WHERE [Code] = 'nxo' END +SET [Description] = 'Ndambomo', [Definition] = NULL, [SortOrder] = 4789.00 WHERE [Code] = 'nxo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nda', 'Ndasa', NULL, 477.60) END +VALUES ('nda', 'Ndasa', NULL, 4790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndasa', [Definition] = NULL, [SortOrder] = 477.60 WHERE [Code] = 'nda' END +SET [Description] = 'Ndasa', [Definition] = NULL, [SortOrder] = 4790.00 WHERE [Code] = 'nda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndc', 'Ndau', NULL, 477.70) END +VALUES ('ndc', 'Ndau', NULL, 4791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndau', [Definition] = NULL, [SortOrder] = 477.70 WHERE [Code] = 'ndc' END +SET [Description] = 'Ndau', [Definition] = NULL, [SortOrder] = 4791.00 WHERE [Code] = 'ndc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ned') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ned', 'Nde-Gbite', NULL, 477.80) END +VALUES ('ned', 'Nde-Gbite', NULL, 4792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nde-Gbite', [Definition] = NULL, [SortOrder] = 477.80 WHERE [Code] = 'ned' END +SET [Description] = 'Nde-Gbite', [Definition] = NULL, [SortOrder] = 4792.00 WHERE [Code] = 'ned' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndd', 'Nde-Nsele-Nta', NULL, 477.90) END +VALUES ('ndd', 'Nde-Nsele-Nta', NULL, 4793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nde-Nsele-Nta', [Definition] = NULL, [SortOrder] = 477.90 WHERE [Code] = 'ndd' END +SET [Description] = 'Nde-Nsele-Nta', [Definition] = NULL, [SortOrder] = 4793.00 WHERE [Code] = 'ndd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nml', 'Ndemli', NULL, 478.00) END +VALUES ('nml', 'Ndemli', NULL, 4794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndemli', [Definition] = NULL, [SortOrder] = 478.00 WHERE [Code] = 'nml' END +SET [Description] = 'Ndemli', [Definition] = NULL, [SortOrder] = 4794.00 WHERE [Code] = 'nml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dne', 'Ndendeule', NULL, 478.10) END +VALUES ('dne', 'Ndendeule', NULL, 4795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndendeule', [Definition] = NULL, [SortOrder] = 478.10 WHERE [Code] = 'dne' END +SET [Description] = 'Ndendeule', [Definition] = NULL, [SortOrder] = 4795.00 WHERE [Code] = 'dne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndg', 'Ndengereko', NULL, 478.20) END +VALUES ('ndg', 'Ndengereko', NULL, 4796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndengereko', [Definition] = NULL, [SortOrder] = 478.20 WHERE [Code] = 'ndg' END +SET [Description] = 'Ndengereko', [Definition] = NULL, [SortOrder] = 4796.00 WHERE [Code] = 'ndg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eli', 'Nding', NULL, 478.30) END +VALUES ('eli', 'Nding', NULL, 4797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nding', [Definition] = NULL, [SortOrder] = 478.30 WHERE [Code] = 'eli' END +SET [Description] = 'Nding', [Definition] = NULL, [SortOrder] = 4797.00 WHERE [Code] = 'eli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndp', 'Ndo', NULL, 478.40) END +VALUES ('ndp', 'Ndo', NULL, 4798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndo', [Definition] = NULL, [SortOrder] = 478.40 WHERE [Code] = 'ndp' END +SET [Description] = 'Ndo', [Definition] = NULL, [SortOrder] = 4798.00 WHERE [Code] = 'ndp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndw', 'Ndobo', NULL, 478.50) END +VALUES ('ndw', 'Ndobo', NULL, 4799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndobo', [Definition] = NULL, [SortOrder] = 478.50 WHERE [Code] = 'ndw' END +SET [Description] = 'Ndobo', [Definition] = NULL, [SortOrder] = 4799.00 WHERE [Code] = 'ndw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbb', 'Ndoe', NULL, 478.60) END +VALUES ('nbb', 'Ndoe', NULL, 4800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndoe', [Definition] = NULL, [SortOrder] = 478.60 WHERE [Code] = 'nbb' END +SET [Description] = 'Ndoe', [Definition] = NULL, [SortOrder] = 4800.00 WHERE [Code] = 'nbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndz', 'Ndogo', NULL, 478.70) END +VALUES ('ndz', 'Ndogo', NULL, 4801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndogo', [Definition] = NULL, [SortOrder] = 478.70 WHERE [Code] = 'ndz' END +SET [Description] = 'Ndogo', [Definition] = NULL, [SortOrder] = 4801.00 WHERE [Code] = 'ndz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndl', 'Ndolo', NULL, 478.80) END +VALUES ('ndl', 'Ndolo', NULL, 4802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndolo', [Definition] = NULL, [SortOrder] = 478.80 WHERE [Code] = 'ndl' END +SET [Description] = 'Ndolo', [Definition] = NULL, [SortOrder] = 4802.00 WHERE [Code] = 'ndl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqm', 'Ndom', NULL, 478.90) END +VALUES ('nqm', 'Ndom', NULL, 4803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndom', [Definition] = NULL, [SortOrder] = 478.90 WHERE [Code] = 'nqm' END +SET [Description] = 'Ndom', [Definition] = NULL, [SortOrder] = 4803.00 WHERE [Code] = 'nqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndq', 'Ndombe', NULL, 479.00) END +VALUES ('ndq', 'Ndombe', NULL, 4804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndombe', [Definition] = NULL, [SortOrder] = 479.00 WHERE [Code] = 'ndq' END +SET [Description] = 'Ndombe', [Definition] = NULL, [SortOrder] = 4804.00 WHERE [Code] = 'ndq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njd', 'Ndonde Hamba', NULL, 479.10) END +VALUES ('njd', 'Ndonde Hamba', NULL, 4805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndonde Hamba', [Definition] = NULL, [SortOrder] = 479.10 WHERE [Code] = 'njd' END +SET [Description] = 'Ndonde Hamba', [Definition] = NULL, [SortOrder] = 4805.00 WHERE [Code] = 'njd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndo', 'Ndonga', NULL, 479.20) END +VALUES ('ndo', 'Ndonga', NULL, 4806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndonga', [Definition] = NULL, [SortOrder] = 479.20 WHERE [Code] = 'ndo' END +SET [Description] = 'Ndonga', [Definition] = NULL, [SortOrder] = 4806.00 WHERE [Code] = 'ndo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndr', 'Ndoola', NULL, 479.30) END +VALUES ('ndr', 'Ndoola', NULL, 4807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndoola', [Definition] = NULL, [SortOrder] = 479.30 WHERE [Code] = 'ndr' END +SET [Description] = 'Ndoola', [Definition] = NULL, [SortOrder] = 4807.00 WHERE [Code] = 'ndr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgt', 'Ndra''ngith', NULL, 479.40) END +VALUES ('dgt', 'Ndra''ngith', NULL, 4808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndra''ngith', [Definition] = NULL, [SortOrder] = 479.40 WHERE [Code] = 'dgt' END +SET [Description] = 'Ndra''ngith', [Definition] = NULL, [SortOrder] = 4808.00 WHERE [Code] = 'dgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dno', 'Ndrulo', NULL, 479.50) END +VALUES ('dno', 'Ndrulo', NULL, 4809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndrulo', [Definition] = NULL, [SortOrder] = 479.50 WHERE [Code] = 'dno' END +SET [Description] = 'Ndrulo', [Definition] = NULL, [SortOrder] = 4809.00 WHERE [Code] = 'dno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndx', 'Nduga', NULL, 479.60) END +VALUES ('ndx', 'Nduga', NULL, 4810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nduga', [Definition] = NULL, [SortOrder] = 479.60 WHERE [Code] = 'ndx' END +SET [Description] = 'Nduga', [Definition] = NULL, [SortOrder] = 4810.00 WHERE [Code] = 'ndx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmd', 'Ndumu', NULL, 479.70) END +VALUES ('nmd', 'Ndumu', NULL, 4811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndumu', [Definition] = NULL, [SortOrder] = 479.70 WHERE [Code] = 'nmd' END +SET [Description] = 'Ndumu', [Definition] = NULL, [SortOrder] = 4811.00 WHERE [Code] = 'nmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuh', 'Ndunda', NULL, 479.80) END +VALUES ('nuh', 'Ndunda', NULL, 4812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndunda', [Definition] = NULL, [SortOrder] = 479.80 WHERE [Code] = 'nuh' END +SET [Description] = 'Ndunda', [Definition] = NULL, [SortOrder] = 4812.00 WHERE [Code] = 'nuh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndt', 'Ndunga', NULL, 479.90) END +VALUES ('ndt', 'Ndunga', NULL, 4813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndunga', [Definition] = NULL, [SortOrder] = 479.90 WHERE [Code] = 'ndt' END +SET [Description] = 'Ndunga', [Definition] = NULL, [SortOrder] = 4813.00 WHERE [Code] = 'ndt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndv', 'Ndut', NULL, 480.00) END +VALUES ('ndv', 'Ndut', NULL, 4814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndut', [Definition] = NULL, [SortOrder] = 480.00 WHERE [Code] = 'ndv' END +SET [Description] = 'Ndut', [Definition] = NULL, [SortOrder] = 4814.00 WHERE [Code] = 'ndv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nww', 'Ndwewe', NULL, 480.10) END +VALUES ('nww', 'Ndwewe', NULL, 4815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndwewe', [Definition] = NULL, [SortOrder] = 480.10 WHERE [Code] = 'nww' END +SET [Description] = 'Ndwewe', [Definition] = NULL, [SortOrder] = 4815.00 WHERE [Code] = 'nww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njt', 'Ndyuka-Trio Pidgin', NULL, 480.20) END +VALUES ('njt', 'Ndyuka-Trio Pidgin', NULL, 4816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndyuka-Trio Pidgin', [Definition] = NULL, [SortOrder] = 480.20 WHERE [Code] = 'njt' END +SET [Description] = 'Ndyuka-Trio Pidgin', [Definition] = NULL, [SortOrder] = 4816.00 WHERE [Code] = 'njt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wni', 'Ndzwani Comorian', NULL, 480.30) END +VALUES ('wni', 'Ndzwani Comorian', NULL, 4817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndzwani Comorian', [Definition] = NULL, [SortOrder] = 480.30 WHERE [Code] = 'wni' END +SET [Description] = 'Ndzwani Comorian', [Definition] = NULL, [SortOrder] = 4817.00 WHERE [Code] = 'wni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nap', 'Neapolitan', NULL, 480.40) END +VALUES ('nap', 'Neapolitan', NULL, 4818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neapolitan', [Definition] = NULL, [SortOrder] = 480.40 WHERE [Code] = 'nap' END +SET [Description] = 'Neapolitan', [Definition] = NULL, [SortOrder] = 4818.00 WHERE [Code] = 'nap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nec', 'Nedebang', NULL, 480.50) END +VALUES ('nec', 'Nedebang', NULL, 4819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nedebang', [Definition] = NULL, [SortOrder] = 480.50 WHERE [Code] = 'nec' END +SET [Description] = 'Nedebang', [Definition] = NULL, [SortOrder] = 4819.00 WHERE [Code] = 'nec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nef', 'Nefamese', NULL, 480.60) END +VALUES ('nef', 'Nefamese', NULL, 4820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nefamese', [Definition] = NULL, [SortOrder] = 480.60 WHERE [Code] = 'nef' END +SET [Description] = 'Nefamese', [Definition] = NULL, [SortOrder] = 4820.00 WHERE [Code] = 'nef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dcr', 'Negerhollands', NULL, 480.70) END +VALUES ('dcr', 'Negerhollands', NULL, 4821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Negerhollands', [Definition] = NULL, [SortOrder] = 480.70 WHERE [Code] = 'dcr' END +SET [Description] = 'Negerhollands', [Definition] = NULL, [SortOrder] = 4821.00 WHERE [Code] = 'dcr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmi', 'Negeri Sembilan Malay', NULL, 480.80) END +VALUES ('zmi', 'Negeri Sembilan Malay', NULL, 4822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Negeri Sembilan Malay', [Definition] = NULL, [SortOrder] = 480.80 WHERE [Code] = 'zmi' END +SET [Description] = 'Negeri Sembilan Malay', [Definition] = NULL, [SortOrder] = 4822.00 WHERE [Code] = 'zmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neg', 'Negidal', NULL, 480.90) END +VALUES ('neg', 'Negidal', NULL, 4823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Negidal', [Definition] = NULL, [SortOrder] = 480.90 WHERE [Code] = 'neg' END +SET [Description] = 'Negidal', [Definition] = NULL, [SortOrder] = 4823.00 WHERE [Code] = 'neg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsn', 'Nehan', NULL, 481.00) END +VALUES ('nsn', 'Nehan', NULL, 4824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nehan', [Definition] = NULL, [SortOrder] = 481.00 WHERE [Code] = 'nsn' END +SET [Description] = 'Nehan', [Definition] = NULL, [SortOrder] = 4824.00 WHERE [Code] = 'nsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nif', 'Nek', NULL, 481.10) END +VALUES ('nif', 'Nek', NULL, 4825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nek', [Definition] = NULL, [SortOrder] = 481.10 WHERE [Code] = 'nif' END +SET [Description] = 'Nek', [Definition] = NULL, [SortOrder] = 4825.00 WHERE [Code] = 'nif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkg', 'Nekgini', NULL, 481.20) END +VALUES ('nkg', 'Nekgini', NULL, 4826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nekgini', [Definition] = NULL, [SortOrder] = 481.20 WHERE [Code] = 'nkg' END +SET [Description] = 'Nekgini', [Definition] = NULL, [SortOrder] = 4826.00 WHERE [Code] = 'nkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nej', 'Neko', NULL, 481.30) END +VALUES ('nej', 'Neko', NULL, 4827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neko', [Definition] = NULL, [SortOrder] = 481.30 WHERE [Code] = 'nej' END +SET [Description] = 'Neko', [Definition] = NULL, [SortOrder] = 4827.00 WHERE [Code] = 'nej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nek', 'Neku', NULL, 481.40) END +VALUES ('nek', 'Neku', NULL, 4828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neku', [Definition] = NULL, [SortOrder] = 481.40 WHERE [Code] = 'nek' END +SET [Description] = 'Neku', [Definition] = NULL, [SortOrder] = 4828.00 WHERE [Code] = 'nek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nee', 'Nêlêmwa-Nixumwak', NULL, 481.50) END +VALUES ('nee', 'Nêlêmwa-Nixumwak', NULL, 4829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nêlêmwa-Nixumwak', [Definition] = NULL, [SortOrder] = 481.50 WHERE [Code] = 'nee' END +SET [Description] = 'Nêlêmwa-Nixumwak', [Definition] = NULL, [SortOrder] = 4829.00 WHERE [Code] = 'nee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsn', 'Nema', NULL, 481.60) END +VALUES ('gsn', 'Nema', NULL, 4830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nema', [Definition] = NULL, [SortOrder] = 481.60 WHERE [Code] = 'gsn' END +SET [Description] = 'Nema', [Definition] = NULL, [SortOrder] = 4830.00 WHERE [Code] = 'gsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nex', 'Neme', NULL, 481.70) END +VALUES ('nex', 'Neme', NULL, 4831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neme', [Definition] = NULL, [SortOrder] = 481.70 WHERE [Code] = 'nex' END +SET [Description] = 'Neme', [Definition] = NULL, [SortOrder] = 4831.00 WHERE [Code] = 'nex' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nem', 'Nemi', NULL, 481.80) END +VALUES ('nem', 'Nemi', NULL, 4832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nemi', [Definition] = NULL, [SortOrder] = 481.80 WHERE [Code] = 'nem' END +SET [Description] = 'Nemi', [Definition] = NULL, [SortOrder] = 4832.00 WHERE [Code] = 'nem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqn', 'Nen', NULL, 481.90) END +VALUES ('nqn', 'Nen', NULL, 4833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nen', [Definition] = NULL, [SortOrder] = 481.90 WHERE [Code] = 'nqn' END +SET [Description] = 'Nen', [Definition] = NULL, [SortOrder] = 4833.00 WHERE [Code] = 'nqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anh', 'Nend', NULL, 482.00) END +VALUES ('anh', 'Nend', NULL, 4834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nend', [Definition] = NULL, [SortOrder] = 482.00 WHERE [Code] = 'anh' END +SET [Description] = 'Nend', [Definition] = NULL, [SortOrder] = 4834.00 WHERE [Code] = 'anh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrk', 'Nenets', NULL, 482.10) END +VALUES ('yrk', 'Nenets', NULL, 4835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nenets', [Definition] = NULL, [SortOrder] = 482.10 WHERE [Code] = 'yrk' END +SET [Description] = 'Nenets', [Definition] = NULL, [SortOrder] = 4835.00 WHERE [Code] = 'yrk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nen', 'Nengone', NULL, 482.20) END +VALUES ('nen', 'Nengone', NULL, 4836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nengone', [Definition] = NULL, [SortOrder] = 482.20 WHERE [Code] = 'nen' END +SET [Description] = 'Nengone', [Definition] = NULL, [SortOrder] = 4836.00 WHERE [Code] = 'nen' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neu', 'Neo', NULL, 482.30) END +VALUES ('neu', 'Neo', NULL, 4837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neo', [Definition] = NULL, [SortOrder] = 482.30 WHERE [Code] = 'neu' END +SET [Description] = 'Neo', [Definition] = NULL, [SortOrder] = 4837.00 WHERE [Code] = 'neu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nei', 'Neo-Hittite', NULL, 482.40) END +VALUES ('nei', 'Neo-Hittite', NULL, 4838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neo-Hittite', [Definition] = NULL, [SortOrder] = 482.40 WHERE [Code] = 'nei' END +SET [Description] = 'Neo-Hittite', [Definition] = NULL, [SortOrder] = 4838.00 WHERE [Code] = 'nei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsp', 'Nepalese Sign Language', NULL, 482.50) END +VALUES ('nsp', 'Nepalese Sign Language', NULL, 4839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nepalese Sign Language', [Definition] = NULL, [SortOrder] = 482.50 WHERE [Code] = 'nsp' END +SET [Description] = 'Nepalese Sign Language', [Definition] = NULL, [SortOrder] = 4839.00 WHERE [Code] = 'nsp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npi', 'Nepali (individual language)', NULL, 482.60) END +VALUES ('npi', 'Nepali (individual language)', NULL, 4840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nepali (individual language)', [Definition] = NULL, [SortOrder] = 482.60 WHERE [Code] = 'npi' END +SET [Description] = 'Nepali (individual language)', [Definition] = NULL, [SortOrder] = 4840.00 WHERE [Code] = 'npi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nep', 'Nepali (macrolanguage)', NULL, 482.70) END +VALUES ('nep', 'Nepali (macrolanguage)', NULL, 4841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nepali (macrolanguage)', [Definition] = NULL, [SortOrder] = 482.70 WHERE [Code] = 'nep' END +SET [Description] = 'Nepali (macrolanguage)', [Definition] = NULL, [SortOrder] = 4841.00 WHERE [Code] = 'nep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'net') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('net', 'Nete', NULL, 482.80) END +VALUES ('net', 'Nete', NULL, 4842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nete', [Definition] = NULL, [SortOrder] = 482.80 WHERE [Code] = 'net' END +SET [Description] = 'Nete', [Definition] = NULL, [SortOrder] = 4842.00 WHERE [Code] = 'net' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jas', 'New Caledonian Javanese', NULL, 482.90) END +VALUES ('jas', 'New Caledonian Javanese', NULL, 4843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'New Caledonian Javanese', [Definition] = NULL, [SortOrder] = 482.90 WHERE [Code] = 'jas' END +SET [Description] = 'New Caledonian Javanese', [Definition] = NULL, [SortOrder] = 4843.00 WHERE [Code] = 'jas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzs', 'New Zealand Sign Language', NULL, 483.00) END +VALUES ('nzs', 'New Zealand Sign Language', NULL, 4844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'New Zealand Sign Language', [Definition] = NULL, [SortOrder] = 483.00 WHERE [Code] = 'nzs' END +SET [Description] = 'New Zealand Sign Language', [Definition] = NULL, [SortOrder] = 4844.00 WHERE [Code] = 'nzs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'new') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('new', 'Newari', NULL, 483.10) END +VALUES ('new', 'Newari', NULL, 4845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Newari', [Definition] = NULL, [SortOrder] = 483.10 WHERE [Code] = 'new' END +SET [Description] = 'Newari', [Definition] = NULL, [SortOrder] = 4845.00 WHERE [Code] = 'new' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ney') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ney', 'Neyo', NULL, 483.20) END +VALUES ('ney', 'Neyo', NULL, 4846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neyo', [Definition] = NULL, [SortOrder] = 483.20 WHERE [Code] = 'ney' END +SET [Description] = 'Neyo', [Definition] = NULL, [SortOrder] = 4846.00 WHERE [Code] = 'ney' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nez', 'Nez Perce', NULL, 483.30) END +VALUES ('nez', 'Nez Perce', NULL, 4847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nez Perce', [Definition] = NULL, [SortOrder] = 483.30 WHERE [Code] = 'nez' END +SET [Description] = 'Nez Perce', [Definition] = NULL, [SortOrder] = 4847.00 WHERE [Code] = 'nez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntj', 'Ngaanyatjarra', NULL, 483.40) END +VALUES ('ntj', 'Ngaanyatjarra', NULL, 4848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngaanyatjarra', [Definition] = NULL, [SortOrder] = 483.40 WHERE [Code] = 'ntj' END +SET [Description] = 'Ngaanyatjarra', [Definition] = NULL, [SortOrder] = 4848.00 WHERE [Code] = 'ntj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gym', 'Ngäbere', NULL, 483.50) END +VALUES ('gym', 'Ngäbere', NULL, 4849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngäbere', [Definition] = NULL, [SortOrder] = 483.50 WHERE [Code] = 'gym' END +SET [Description] = 'Ngäbere', [Definition] = NULL, [SortOrder] = 4849.00 WHERE [Code] = 'gym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxg', 'Ngad''a', NULL, 483.60) END +VALUES ('nxg', 'Ngad''a', NULL, 4850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngad''a', [Definition] = NULL, [SortOrder] = 483.60 WHERE [Code] = 'nxg' END +SET [Description] = 'Ngad''a', [Definition] = NULL, [SortOrder] = 4850.00 WHERE [Code] = 'nxg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nju', 'Ngadjunmaya', NULL, 483.70) END +VALUES ('nju', 'Ngadjunmaya', NULL, 4851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngadjunmaya', [Definition] = NULL, [SortOrder] = 483.70 WHERE [Code] = 'nju' END +SET [Description] = 'Ngadjunmaya', [Definition] = NULL, [SortOrder] = 4851.00 WHERE [Code] = 'nju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jui', 'Ngadjuri', NULL, 483.80) END +VALUES ('jui', 'Ngadjuri', NULL, 4852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngadjuri', [Definition] = NULL, [SortOrder] = 483.80 WHERE [Code] = 'jui' END +SET [Description] = 'Ngadjuri', [Definition] = NULL, [SortOrder] = 4852.00 WHERE [Code] = 'jui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnf', 'Ngaing', NULL, 483.90) END +VALUES ('nnf', 'Ngaing', NULL, 4853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngaing', [Definition] = NULL, [SortOrder] = 483.90 WHERE [Code] = 'nnf' END +SET [Description] = 'Ngaing', [Definition] = NULL, [SortOrder] = 4853.00 WHERE [Code] = 'nnf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nij', 'Ngaju', NULL, 484.00) END +VALUES ('nij', 'Ngaju', NULL, 4854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngaju', [Definition] = NULL, [SortOrder] = 484.00 WHERE [Code] = 'nij' END +SET [Description] = 'Ngaju', [Definition] = NULL, [SortOrder] = 4854.00 WHERE [Code] = 'nij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nud', 'Ngala', NULL, 484.10) END +VALUES ('nud', 'Ngala', NULL, 4855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngala', [Definition] = NULL, [SortOrder] = 484.10 WHERE [Code] = 'nud' END +SET [Description] = 'Ngala', [Definition] = NULL, [SortOrder] = 4855.00 WHERE [Code] = 'nud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nig', 'Ngalakgan', NULL, 484.20) END +VALUES ('nig', 'Ngalakgan', NULL, 4856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngalakgan', [Definition] = NULL, [SortOrder] = 484.20 WHERE [Code] = 'nig' END +SET [Description] = 'Ngalakgan', [Definition] = NULL, [SortOrder] = 4856.00 WHERE [Code] = 'nig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szb', 'Ngalum', NULL, 484.30) END +VALUES ('szb', 'Ngalum', NULL, 4857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngalum', [Definition] = NULL, [SortOrder] = 484.30 WHERE [Code] = 'szb' END +SET [Description] = 'Ngalum', [Definition] = NULL, [SortOrder] = 4857.00 WHERE [Code] = 'szb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmc', 'Ngam', NULL, 484.40) END +VALUES ('nmc', 'Ngam', NULL, 4858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngam', [Definition] = NULL, [SortOrder] = 484.40 WHERE [Code] = 'nmc' END +SET [Description] = 'Ngam', [Definition] = NULL, [SortOrder] = 4858.00 WHERE [Code] = 'nmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbv', 'Ngamambo', NULL, 484.50) END +VALUES ('nbv', 'Ngamambo', NULL, 4859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngamambo', [Definition] = NULL, [SortOrder] = 484.50 WHERE [Code] = 'nbv' END +SET [Description] = 'Ngamambo', [Definition] = NULL, [SortOrder] = 4859.00 WHERE [Code] = 'nbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sba', 'Ngambay', NULL, 484.60) END +VALUES ('sba', 'Ngambay', NULL, 4860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngambay', [Definition] = NULL, [SortOrder] = 484.60 WHERE [Code] = 'sba' END +SET [Description] = 'Ngambay', [Definition] = NULL, [SortOrder] = 4860.00 WHERE [Code] = 'sba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmv', 'Ngamini', NULL, 484.70) END +VALUES ('nmv', 'Ngamini', NULL, 4861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngamini', [Definition] = NULL, [SortOrder] = 484.70 WHERE [Code] = 'nmv' END +SET [Description] = 'Ngamini', [Definition] = NULL, [SortOrder] = 4861.00 WHERE [Code] = 'nmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbh', 'Ngamo', NULL, 484.80) END +VALUES ('nbh', 'Ngamo', NULL, 4862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngamo', [Definition] = NULL, [SortOrder] = 484.80 WHERE [Code] = 'nbh' END +SET [Description] = 'Ngamo', [Definition] = NULL, [SortOrder] = 4862.00 WHERE [Code] = 'nbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nam', 'Ngan''gityemerri', NULL, 484.90) END +VALUES ('nam', 'Ngan''gityemerri', NULL, 4863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngan''gityemerri', [Definition] = NULL, [SortOrder] = 484.90 WHERE [Code] = 'nam' END +SET [Description] = 'Ngan''gityemerri', [Definition] = NULL, [SortOrder] = 4863.00 WHERE [Code] = 'nam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnk', 'Nganakarti', NULL, 485.00) END +VALUES ('xnk', 'Nganakarti', NULL, 4864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nganakarti', [Definition] = NULL, [SortOrder] = 485.00 WHERE [Code] = 'xnk' END +SET [Description] = 'Nganakarti', [Definition] = NULL, [SortOrder] = 4864.00 WHERE [Code] = 'xnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nio', 'Nganasan', NULL, 485.10) END +VALUES ('nio', 'Nganasan', NULL, 4865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nganasan', [Definition] = NULL, [SortOrder] = 485.10 WHERE [Code] = 'nio' END +SET [Description] = 'Nganasan', [Definition] = NULL, [SortOrder] = 4865.00 WHERE [Code] = 'nio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nid', 'Ngandi', NULL, 485.20) END +VALUES ('nid', 'Ngandi', NULL, 4866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngandi', [Definition] = NULL, [SortOrder] = 485.20 WHERE [Code] = 'nid' END +SET [Description] = 'Ngandi', [Definition] = NULL, [SortOrder] = 4866.00 WHERE [Code] = 'nid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngd', 'Ngando (Central African Republic)', NULL, 485.30) END +VALUES ('ngd', 'Ngando (Central African Republic)', NULL, 4867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngando (Central African Republic)', [Definition] = NULL, [SortOrder] = 485.30 WHERE [Code] = 'ngd' END +SET [Description] = 'Ngando (Central African Republic)', [Definition] = NULL, [SortOrder] = 4867.00 WHERE [Code] = 'ngd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxd', 'Ngando (Democratic Republic of Congo)', NULL, 485.40) END +VALUES ('nxd', 'Ngando (Democratic Republic of Congo)', NULL, 4868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngando (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 485.40 WHERE [Code] = 'nxd' END +SET [Description] = 'Ngando (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 4868.00 WHERE [Code] = 'nxd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nne', 'Ngandyera', NULL, 485.50) END +VALUES ('nne', 'Ngandyera', NULL, 4869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngandyera', [Definition] = NULL, [SortOrder] = 485.50 WHERE [Code] = 'nne' END +SET [Description] = 'Ngandyera', [Definition] = NULL, [SortOrder] = 4869.00 WHERE [Code] = 'nne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gng', 'Ngangam', NULL, 485.60) END +VALUES ('gng', 'Ngangam', NULL, 4870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngangam', [Definition] = NULL, [SortOrder] = 485.60 WHERE [Code] = 'gng' END +SET [Description] = 'Ngangam', [Definition] = NULL, [SortOrder] = 4870.00 WHERE [Code] = 'gng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntg', 'Ngantangarra', NULL, 485.70) END +VALUES ('ntg', 'Ngantangarra', NULL, 4871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngantangarra', [Definition] = NULL, [SortOrder] = 485.70 WHERE [Code] = 'ntg' END +SET [Description] = 'Ngantangarra', [Definition] = NULL, [SortOrder] = 4871.00 WHERE [Code] = 'ntg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyx', 'Nganyaywana', NULL, 485.80) END +VALUES ('nyx', 'Nganyaywana', NULL, 4872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nganyaywana', [Definition] = NULL, [SortOrder] = 485.80 WHERE [Code] = 'nyx' END +SET [Description] = 'Nganyaywana', [Definition] = NULL, [SortOrder] = 4872.00 WHERE [Code] = 'nyx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rxd', 'Ngardi', NULL, 485.90) END +VALUES ('rxd', 'Ngardi', NULL, 4873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngardi', [Definition] = NULL, [SortOrder] = 485.90 WHERE [Code] = 'rxd' END +SET [Description] = 'Ngardi', [Definition] = NULL, [SortOrder] = 4873.00 WHERE [Code] = 'rxd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xni', 'Ngarigu', NULL, 486.00) END +VALUES ('xni', 'Ngarigu', NULL, 4874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarigu', [Definition] = NULL, [SortOrder] = 486.00 WHERE [Code] = 'xni' END +SET [Description] = 'Ngarigu', [Definition] = NULL, [SortOrder] = 4874.00 WHERE [Code] = 'xni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ung') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ung', 'Ngarinyin', NULL, 486.10) END +VALUES ('ung', 'Ngarinyin', NULL, 4875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarinyin', [Definition] = NULL, [SortOrder] = 486.10 WHERE [Code] = 'ung' END +SET [Description] = 'Ngarinyin', [Definition] = NULL, [SortOrder] = 4875.00 WHERE [Code] = 'ung' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbj', 'Ngarinyman', NULL, 486.20) END +VALUES ('nbj', 'Ngarinyman', NULL, 4876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarinyman', [Definition] = NULL, [SortOrder] = 486.20 WHERE [Code] = 'nbj' END +SET [Description] = 'Ngarinyman', [Definition] = NULL, [SortOrder] = 4876.00 WHERE [Code] = 'nbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrk', 'Ngarla', NULL, 486.30) END +VALUES ('nrk', 'Ngarla', NULL, 4877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarla', [Definition] = NULL, [SortOrder] = 486.30 WHERE [Code] = 'nrk' END +SET [Description] = 'Ngarla', [Definition] = NULL, [SortOrder] = 4877.00 WHERE [Code] = 'nrk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrl', 'Ngarluma', NULL, 486.40) END +VALUES ('nrl', 'Ngarluma', NULL, 4878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarluma', [Definition] = NULL, [SortOrder] = 486.40 WHERE [Code] = 'nrl' END +SET [Description] = 'Ngarluma', [Definition] = NULL, [SortOrder] = 4878.00 WHERE [Code] = 'nrl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nay', 'Ngarrindjeri', NULL, 486.50) END +VALUES ('nay', 'Ngarrindjeri', NULL, 4879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarrindjeri', [Definition] = NULL, [SortOrder] = 486.50 WHERE [Code] = 'nay' END +SET [Description] = 'Ngarrindjeri', [Definition] = NULL, [SortOrder] = 4879.00 WHERE [Code] = 'nay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anc', 'Ngas', NULL, 486.60) END +VALUES ('anc', 'Ngas', NULL, 4880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngas', [Definition] = NULL, [SortOrder] = 486.60 WHERE [Code] = 'anc' END +SET [Description] = 'Ngas', [Definition] = NULL, [SortOrder] = 4880.00 WHERE [Code] = 'anc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsg', 'Ngasa', NULL, 486.70) END +VALUES ('nsg', 'Ngasa', NULL, 4881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngasa', [Definition] = NULL, [SortOrder] = 486.70 WHERE [Code] = 'nsg' END +SET [Description] = 'Ngasa', [Definition] = NULL, [SortOrder] = 4881.00 WHERE [Code] = 'nsg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngm', 'Ngatik Men''s Creole', NULL, 486.80) END +VALUES ('ngm', 'Ngatik Men''s Creole', NULL, 4882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngatik Men''s Creole', [Definition] = NULL, [SortOrder] = 486.80 WHERE [Code] = 'ngm' END +SET [Description] = 'Ngatik Men''s Creole', [Definition] = NULL, [SortOrder] = 4882.00 WHERE [Code] = 'ngm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnw', 'Ngawn Chin', NULL, 486.90) END +VALUES ('cnw', 'Ngawn Chin', NULL, 4883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngawn Chin', [Definition] = NULL, [SortOrder] = 486.90 WHERE [Code] = 'cnw' END +SET [Description] = 'Ngawn Chin', [Definition] = NULL, [SortOrder] = 4883.00 WHERE [Code] = 'cnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxn', 'Ngawun', NULL, 487.00) END +VALUES ('nxn', 'Ngawun', NULL, 4884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngawun', [Definition] = NULL, [SortOrder] = 487.00 WHERE [Code] = 'nxn' END +SET [Description] = 'Ngawun', [Definition] = NULL, [SortOrder] = 4884.00 WHERE [Code] = 'nxn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwg', 'Ngayawung', NULL, 487.10) END +VALUES ('nwg', 'Ngayawung', NULL, 4885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngayawung', [Definition] = NULL, [SortOrder] = 487.10 WHERE [Code] = 'nwg' END +SET [Description] = 'Ngayawung', [Definition] = NULL, [SortOrder] = 4885.00 WHERE [Code] = 'nwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zdj', 'Ngazidja Comorian', NULL, 487.20) END +VALUES ('zdj', 'Ngazidja Comorian', NULL, 4886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngazidja Comorian', [Definition] = NULL, [SortOrder] = 487.20 WHERE [Code] = 'zdj' END +SET [Description] = 'Ngazidja Comorian', [Definition] = NULL, [SortOrder] = 4886.00 WHERE [Code] = 'zdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nga', 'Ngbaka', NULL, 487.30) END +VALUES ('nga', 'Ngbaka', NULL, 4887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbaka', [Definition] = NULL, [SortOrder] = 487.30 WHERE [Code] = 'nga' END +SET [Description] = 'Ngbaka', [Definition] = NULL, [SortOrder] = 4887.00 WHERE [Code] = 'nga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbm', 'Ngbaka Ma''bo', NULL, 487.40) END +VALUES ('nbm', 'Ngbaka Ma''bo', NULL, 4888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbaka Ma''bo', [Definition] = NULL, [SortOrder] = 487.40 WHERE [Code] = 'nbm' END +SET [Description] = 'Ngbaka Ma''bo', [Definition] = NULL, [SortOrder] = 4888.00 WHERE [Code] = 'nbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngg', 'Ngbaka Manza', NULL, 487.50) END +VALUES ('ngg', 'Ngbaka Manza', NULL, 4889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbaka Manza', [Definition] = NULL, [SortOrder] = 487.50 WHERE [Code] = 'ngg' END +SET [Description] = 'Ngbaka Manza', [Definition] = NULL, [SortOrder] = 4889.00 WHERE [Code] = 'ngg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jgb', 'Ngbee', NULL, 487.60) END +VALUES ('jgb', 'Ngbee', NULL, 4890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbee', [Definition] = NULL, [SortOrder] = 487.60 WHERE [Code] = 'jgb' END +SET [Description] = 'Ngbee', [Definition] = NULL, [SortOrder] = 4890.00 WHERE [Code] = 'jgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbd', 'Ngbinda', NULL, 487.70) END +VALUES ('nbd', 'Ngbinda', NULL, 4891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbinda', [Definition] = NULL, [SortOrder] = 487.70 WHERE [Code] = 'nbd' END +SET [Description] = 'Ngbinda', [Definition] = NULL, [SortOrder] = 4891.00 WHERE [Code] = 'nbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuu', 'Ngbundu', NULL, 487.80) END +VALUES ('nuu', 'Ngbundu', NULL, 4892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbundu', [Definition] = NULL, [SortOrder] = 487.80 WHERE [Code] = 'nuu' END +SET [Description] = 'Ngbundu', [Definition] = NULL, [SortOrder] = 4892.00 WHERE [Code] = 'nuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agh', 'Ngelima', NULL, 487.90) END +VALUES ('agh', 'Ngelima', NULL, 4893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngelima', [Definition] = NULL, [SortOrder] = 487.90 WHERE [Code] = 'agh' END +SET [Description] = 'Ngelima', [Definition] = NULL, [SortOrder] = 4893.00 WHERE [Code] = 'agh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nge', 'Ngemba', NULL, 488.00) END +VALUES ('nge', 'Ngemba', NULL, 4894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngemba', [Definition] = NULL, [SortOrder] = 488.00 WHERE [Code] = 'nge' END +SET [Description] = 'Ngemba', [Definition] = NULL, [SortOrder] = 4894.00 WHERE [Code] = 'nge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnj', 'Ngen', NULL, 488.10) END +VALUES ('gnj', 'Ngen', NULL, 4895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngen', [Definition] = NULL, [SortOrder] = 488.10 WHERE [Code] = 'gnj' END +SET [Description] = 'Ngen', [Definition] = NULL, [SortOrder] = 4895.00 WHERE [Code] = 'gnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nql', 'Ngendelengo', NULL, 488.20) END +VALUES ('nql', 'Ngendelengo', NULL, 4896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngendelengo', [Definition] = NULL, [SortOrder] = 488.20 WHERE [Code] = 'nql' END +SET [Description] = 'Ngendelengo', [Definition] = NULL, [SortOrder] = 4896.00 WHERE [Code] = 'nql' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnn', 'Ngete', NULL, 488.30) END +VALUES ('nnn', 'Ngete', NULL, 4897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngete', [Definition] = NULL, [SortOrder] = 488.30 WHERE [Code] = 'nnn' END +SET [Description] = 'Ngete', [Definition] = NULL, [SortOrder] = 4897.00 WHERE [Code] = 'nnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbq', 'Nggem', NULL, 488.40) END +VALUES ('nbq', 'Nggem', NULL, 4898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nggem', [Definition] = NULL, [SortOrder] = 488.40 WHERE [Code] = 'nbq' END +SET [Description] = 'Nggem', [Definition] = NULL, [SortOrder] = 4898.00 WHERE [Code] = 'nbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngx', 'Nggwahyi', NULL, 488.50) END +VALUES ('ngx', 'Nggwahyi', NULL, 4899.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nggwahyi', [Definition] = NULL, [SortOrder] = 488.50 WHERE [Code] = 'ngx' END +SET [Description] = 'Nggwahyi', [Definition] = NULL, [SortOrder] = 4899.00 WHERE [Code] = 'ngx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngj', 'Ngie', NULL, 488.60) END +VALUES ('ngj', 'Ngie', NULL, 4900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngie', [Definition] = NULL, [SortOrder] = 488.60 WHERE [Code] = 'ngj' END +SET [Description] = 'Ngie', [Definition] = NULL, [SortOrder] = 4900.00 WHERE [Code] = 'ngj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnh', 'Ngiemboon', NULL, 488.70) END +VALUES ('nnh', 'Ngiemboon', NULL, 4901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngiemboon', [Definition] = NULL, [SortOrder] = 488.70 WHERE [Code] = 'nnh' END +SET [Description] = 'Ngiemboon', [Definition] = NULL, [SortOrder] = 4901.00 WHERE [Code] = 'nnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jle', 'Ngile', NULL, 488.80) END +VALUES ('jle', 'Ngile', NULL, 4902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngile', [Definition] = NULL, [SortOrder] = 488.80 WHERE [Code] = 'jle' END +SET [Description] = 'Ngile', [Definition] = NULL, [SortOrder] = 4902.00 WHERE [Code] = 'jle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnq', 'Ngindo', NULL, 488.90) END +VALUES ('nnq', 'Ngindo', NULL, 4903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngindo', [Definition] = NULL, [SortOrder] = 488.90 WHERE [Code] = 'nnq' END +SET [Description] = 'Ngindo', [Definition] = NULL, [SortOrder] = 4903.00 WHERE [Code] = 'nnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niy', 'Ngiti', NULL, 489.00) END +VALUES ('niy', 'Ngiti', NULL, 4904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngiti', [Definition] = NULL, [SortOrder] = 489.00 WHERE [Code] = 'niy' END +SET [Description] = 'Ngiti', [Definition] = NULL, [SortOrder] = 4904.00 WHERE [Code] = 'niy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngi', 'Ngizim', NULL, 489.10) END +VALUES ('ngi', 'Ngizim', NULL, 4905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngizim', [Definition] = NULL, [SortOrder] = 489.10 WHERE [Code] = 'ngi' END +SET [Description] = 'Ngizim', [Definition] = NULL, [SortOrder] = 4905.00 WHERE [Code] = 'ngi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcd', 'Ngkâlmpw Kanum', NULL, 489.20) END +VALUES ('kcd', 'Ngkâlmpw Kanum', NULL, 4906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngkâlmpw Kanum', [Definition] = NULL, [SortOrder] = 489.20 WHERE [Code] = 'kcd' END +SET [Description] = 'Ngkâlmpw Kanum', [Definition] = NULL, [SortOrder] = 4906.00 WHERE [Code] = 'kcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nra', 'Ngom', NULL, 489.30) END +VALUES ('nra', 'Ngom', NULL, 4907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngom', [Definition] = NULL, [SortOrder] = 489.30 WHERE [Code] = 'nra' END +SET [Description] = 'Ngom', [Definition] = NULL, [SortOrder] = 4907.00 WHERE [Code] = 'nra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jgo', 'Ngomba', NULL, 489.40) END +VALUES ('jgo', 'Ngomba', NULL, 4908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngomba', [Definition] = NULL, [SortOrder] = 489.40 WHERE [Code] = 'jgo' END +SET [Description] = 'Ngomba', [Definition] = NULL, [SortOrder] = 4908.00 WHERE [Code] = 'jgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nla', 'Ngombale', NULL, 489.50) END +VALUES ('nla', 'Ngombale', NULL, 4909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngombale', [Definition] = NULL, [SortOrder] = 489.50 WHERE [Code] = 'nla' END +SET [Description] = 'Ngombale', [Definition] = NULL, [SortOrder] = 4909.00 WHERE [Code] = 'nla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmj', 'Ngombe (Central African Republic)', NULL, 489.60) END +VALUES ('nmj', 'Ngombe (Central African Republic)', NULL, 4910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngombe (Central African Republic)', [Definition] = NULL, [SortOrder] = 489.60 WHERE [Code] = 'nmj' END +SET [Description] = 'Ngombe (Central African Republic)', [Definition] = NULL, [SortOrder] = 4910.00 WHERE [Code] = 'nmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngc', 'Ngombe (Democratic Republic of Congo)', NULL, 489.70) END +VALUES ('ngc', 'Ngombe (Democratic Republic of Congo)', NULL, 4911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngombe (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 489.70 WHERE [Code] = 'ngc' END +SET [Description] = 'Ngombe (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 4911.00 WHERE [Code] = 'ngc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noq', 'Ngongo', NULL, 489.80) END +VALUES ('noq', 'Ngongo', NULL, 4912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngongo', [Definition] = NULL, [SortOrder] = 489.80 WHERE [Code] = 'noq' END +SET [Description] = 'Ngongo', [Definition] = NULL, [SortOrder] = 4912.00 WHERE [Code] = 'noq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnq', 'Ngoni (Mozambique)', NULL, 489.90) END +VALUES ('xnq', 'Ngoni (Mozambique)', NULL, 4913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngoni (Mozambique)', [Definition] = NULL, [SortOrder] = 489.90 WHERE [Code] = 'xnq' END +SET [Description] = 'Ngoni (Mozambique)', [Definition] = NULL, [SortOrder] = 4913.00 WHERE [Code] = 'xnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnj', 'Ngoni (Tanzania)', NULL, 490.00) END +VALUES ('xnj', 'Ngoni (Tanzania)', NULL, 4914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngoni (Tanzania)', [Definition] = NULL, [SortOrder] = 490.00 WHERE [Code] = 'xnj' END +SET [Description] = 'Ngoni (Tanzania)', [Definition] = NULL, [SortOrder] = 4914.00 WHERE [Code] = 'xnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsh', 'Ngoshie', NULL, 490.10) END +VALUES ('nsh', 'Ngoshie', NULL, 4915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngoshie', [Definition] = NULL, [SortOrder] = 490.10 WHERE [Code] = 'nsh' END +SET [Description] = 'Ngoshie', [Definition] = NULL, [SortOrder] = 4915.00 WHERE [Code] = 'nsh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlo', 'Ngul', NULL, 490.20) END +VALUES ('nlo', 'Ngul', NULL, 4916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngul', [Definition] = NULL, [SortOrder] = 490.20 WHERE [Code] = 'nlo' END +SET [Description] = 'Ngul', [Definition] = NULL, [SortOrder] = 4916.00 WHERE [Code] = 'nlo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngp', 'Ngulu', NULL, 490.30) END +VALUES ('ngp', 'Ngulu', NULL, 4917.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngulu', [Definition] = NULL, [SortOrder] = 490.30 WHERE [Code] = 'ngp' END +SET [Description] = 'Ngulu', [Definition] = NULL, [SortOrder] = 4917.00 WHERE [Code] = 'ngp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuw', 'Nguluwan', NULL, 490.40) END +VALUES ('nuw', 'Nguluwan', NULL, 4918.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nguluwan', [Definition] = NULL, [SortOrder] = 490.40 WHERE [Code] = 'nuw' END +SET [Description] = 'Nguluwan', [Definition] = NULL, [SortOrder] = 4918.00 WHERE [Code] = 'nuw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnm', 'Ngumbarl', NULL, 490.50) END +VALUES ('xnm', 'Ngumbarl', NULL, 4919.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngumbarl', [Definition] = NULL, [SortOrder] = 490.50 WHERE [Code] = 'xnm' END +SET [Description] = 'Ngumbarl', [Definition] = NULL, [SortOrder] = 4919.00 WHERE [Code] = 'xnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nui', 'Ngumbi', NULL, 490.60) END +VALUES ('nui', 'Ngumbi', NULL, 4920.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngumbi', [Definition] = NULL, [SortOrder] = 490.60 WHERE [Code] = 'nui' END +SET [Description] = 'Ngumbi', [Definition] = NULL, [SortOrder] = 4920.00 WHERE [Code] = 'nui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xul', 'Ngunawal', NULL, 490.70) END +VALUES ('xul', 'Ngunawal', NULL, 4921.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngunawal', [Definition] = NULL, [SortOrder] = 490.70 WHERE [Code] = 'xul' END +SET [Description] = 'Ngunawal', [Definition] = NULL, [SortOrder] = 4921.00 WHERE [Code] = 'xul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndn', 'Ngundi', NULL, 490.80) END +VALUES ('ndn', 'Ngundi', NULL, 4922.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngundi', [Definition] = NULL, [SortOrder] = 490.80 WHERE [Code] = 'ndn' END +SET [Description] = 'Ngundi', [Definition] = NULL, [SortOrder] = 4922.00 WHERE [Code] = 'ndn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nue', 'Ngundu', NULL, 490.90) END +VALUES ('nue', 'Ngundu', NULL, 4923.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngundu', [Definition] = NULL, [SortOrder] = 490.90 WHERE [Code] = 'nue' END +SET [Description] = 'Ngundu', [Definition] = NULL, [SortOrder] = 4923.00 WHERE [Code] = 'nue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngz', 'Ngungwel', NULL, 491.00) END +VALUES ('ngz', 'Ngungwel', NULL, 4924.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngungwel', [Definition] = NULL, [SortOrder] = 491.00 WHERE [Code] = 'ngz' END +SET [Description] = 'Ngungwel', [Definition] = NULL, [SortOrder] = 4924.00 WHERE [Code] = 'ngz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuo', 'Nguôn', NULL, 491.10) END +VALUES ('nuo', 'Nguôn', NULL, 4925.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nguôn', [Definition] = NULL, [SortOrder] = 491.10 WHERE [Code] = 'nuo' END +SET [Description] = 'Nguôn', [Definition] = NULL, [SortOrder] = 4925.00 WHERE [Code] = 'nuo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngq', 'Ngurimi', NULL, 491.20) END +VALUES ('ngq', 'Ngurimi', NULL, 4926.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngurimi', [Definition] = NULL, [SortOrder] = 491.20 WHERE [Code] = 'ngq' END +SET [Description] = 'Ngurimi', [Definition] = NULL, [SortOrder] = 4926.00 WHERE [Code] = 'ngq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrx', 'Ngurmbur', NULL, 491.30) END +VALUES ('nrx', 'Ngurmbur', NULL, 4927.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngurmbur', [Definition] = NULL, [SortOrder] = 491.30 WHERE [Code] = 'nrx' END +SET [Description] = 'Ngurmbur', [Definition] = NULL, [SortOrder] = 4927.00 WHERE [Code] = 'nrx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngw', 'Ngwaba', NULL, 491.40) END +VALUES ('ngw', 'Ngwaba', NULL, 4928.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngwaba', [Definition] = NULL, [SortOrder] = 491.40 WHERE [Code] = 'ngw' END +SET [Description] = 'Ngwaba', [Definition] = NULL, [SortOrder] = 4928.00 WHERE [Code] = 'ngw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwe', 'Ngwe', NULL, 491.50) END +VALUES ('nwe', 'Ngwe', NULL, 4929.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngwe', [Definition] = NULL, [SortOrder] = 491.50 WHERE [Code] = 'nwe' END +SET [Description] = 'Ngwe', [Definition] = NULL, [SortOrder] = 4929.00 WHERE [Code] = 'nwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngn', 'Ngwo', NULL, 491.60) END +VALUES ('ngn', 'Ngwo', NULL, 4930.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngwo', [Definition] = NULL, [SortOrder] = 491.60 WHERE [Code] = 'ngn' END +SET [Description] = 'Ngwo', [Definition] = NULL, [SortOrder] = 4930.00 WHERE [Code] = 'ngn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nha', 'Nhanda', NULL, 491.70) END +VALUES ('nha', 'Nhanda', NULL, 4931.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nhanda', [Definition] = NULL, [SortOrder] = 491.70 WHERE [Code] = 'nha' END +SET [Description] = 'Nhanda', [Definition] = NULL, [SortOrder] = 4931.00 WHERE [Code] = 'nha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrl', 'Nhengatu', NULL, 491.80) END +VALUES ('yrl', 'Nhengatu', NULL, 4932.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nhengatu', [Definition] = NULL, [SortOrder] = 491.80 WHERE [Code] = 'yrl' END +SET [Description] = 'Nhengatu', [Definition] = NULL, [SortOrder] = 4932.00 WHERE [Code] = 'yrl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrp', 'Nhirrpi', NULL, 491.90) END +VALUES ('hrp', 'Nhirrpi', NULL, 4933.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nhirrpi', [Definition] = NULL, [SortOrder] = 491.90 WHERE [Code] = 'hrp' END +SET [Description] = 'Nhirrpi', [Definition] = NULL, [SortOrder] = 4933.00 WHERE [Code] = 'hrp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhf', 'Nhuwala', NULL, 492.00) END +VALUES ('nhf', 'Nhuwala', NULL, 4934.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nhuwala', [Definition] = NULL, [SortOrder] = 492.00 WHERE [Code] = 'nhf' END +SET [Description] = 'Nhuwala', [Definition] = NULL, [SortOrder] = 4934.00 WHERE [Code] = 'nhf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nia', 'Nias', NULL, 492.10) END +VALUES ('nia', 'Nias', NULL, 4935.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nias', [Definition] = NULL, [SortOrder] = 492.10 WHERE [Code] = 'nia' END +SET [Description] = 'Nias', [Definition] = NULL, [SortOrder] = 4935.00 WHERE [Code] = 'nia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzk', 'Nicaragua Creole English', NULL, 492.20) END +VALUES ('bzk', 'Nicaragua Creole English', NULL, 4936.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nicaragua Creole English', [Definition] = NULL, [SortOrder] = 492.20 WHERE [Code] = 'bzk' END +SET [Description] = 'Nicaragua Creole English', [Definition] = NULL, [SortOrder] = 4936.00 WHERE [Code] = 'bzk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncs', 'Nicaraguan Sign Language', NULL, 492.30) END +VALUES ('ncs', 'Nicaraguan Sign Language', NULL, 4937.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nicaraguan Sign Language', [Definition] = NULL, [SortOrder] = 492.30 WHERE [Code] = 'ncs' END +SET [Description] = 'Nicaraguan Sign Language', [Definition] = NULL, [SortOrder] = 4937.00 WHERE [Code] = 'ncs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nie', 'Niellim', NULL, 492.40) END +VALUES ('nie', 'Niellim', NULL, 4938.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niellim', [Definition] = NULL, [SortOrder] = 492.40 WHERE [Code] = 'nie' END +SET [Description] = 'Niellim', [Definition] = NULL, [SortOrder] = 4938.00 WHERE [Code] = 'nie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzk', 'Nigeria Mambila', NULL, 492.50) END +VALUES ('mzk', 'Nigeria Mambila', NULL, 4939.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nigeria Mambila', [Definition] = NULL, [SortOrder] = 492.50 WHERE [Code] = 'mzk' END +SET [Description] = 'Nigeria Mambila', [Definition] = NULL, [SortOrder] = 4939.00 WHERE [Code] = 'mzk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuv', 'Nigerian Fulfulde', NULL, 492.60) END +VALUES ('fuv', 'Nigerian Fulfulde', NULL, 4940.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nigerian Fulfulde', [Definition] = NULL, [SortOrder] = 492.60 WHERE [Code] = 'fuv' END +SET [Description] = 'Nigerian Fulfulde', [Definition] = NULL, [SortOrder] = 4940.00 WHERE [Code] = 'fuv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcm', 'Nigerian Pidgin', NULL, 492.70) END +VALUES ('pcm', 'Nigerian Pidgin', NULL, 4941.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nigerian Pidgin', [Definition] = NULL, [SortOrder] = 492.70 WHERE [Code] = 'pcm' END +SET [Description] = 'Nigerian Pidgin', [Definition] = NULL, [SortOrder] = 4941.00 WHERE [Code] = 'pcm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsi', 'Nigerian Sign Language', NULL, 492.80) END +VALUES ('nsi', 'Nigerian Sign Language', NULL, 4942.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nigerian Sign Language', [Definition] = NULL, [SortOrder] = 492.80 WHERE [Code] = 'nsi' END +SET [Description] = 'Nigerian Sign Language', [Definition] = NULL, [SortOrder] = 4942.00 WHERE [Code] = 'nsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nll', 'Nihali', NULL, 492.90) END +VALUES ('nll', 'Nihali', NULL, 4943.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nihali', [Definition] = NULL, [SortOrder] = 492.90 WHERE [Code] = 'nll' END +SET [Description] = 'Nihali', [Definition] = NULL, [SortOrder] = 4943.00 WHERE [Code] = 'nll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nii', 'Nii', NULL, 493.00) END +VALUES ('nii', 'Nii', NULL, 4944.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nii', [Definition] = NULL, [SortOrder] = 493.00 WHERE [Code] = 'nii' END +SET [Description] = 'Nii', [Definition] = NULL, [SortOrder] = 4944.00 WHERE [Code] = 'nii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbe', 'Niksek', NULL, 493.10) END +VALUES ('gbe', 'Niksek', NULL, 4945.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niksek', [Definition] = NULL, [SortOrder] = 493.10 WHERE [Code] = 'gbe' END +SET [Description] = 'Niksek', [Definition] = NULL, [SortOrder] = 4945.00 WHERE [Code] = 'gbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nil', 'Nila', NULL, 493.20) END +VALUES ('nil', 'Nila', NULL, 4946.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nila', [Definition] = NULL, [SortOrder] = 493.20 WHERE [Code] = 'nil' END +SET [Description] = 'Nila', [Definition] = NULL, [SortOrder] = 4946.00 WHERE [Code] = 'nil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nim', 'Nilamba', NULL, 493.30) END +VALUES ('nim', 'Nilamba', NULL, 4947.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nilamba', [Definition] = NULL, [SortOrder] = 493.30 WHERE [Code] = 'nim' END +SET [Description] = 'Nilamba', [Definition] = NULL, [SortOrder] = 4947.00 WHERE [Code] = 'nim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noe', 'Nimadi', NULL, 493.40) END +VALUES ('noe', 'Nimadi', NULL, 4948.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimadi', [Definition] = NULL, [SortOrder] = 493.40 WHERE [Code] = 'noe' END +SET [Description] = 'Nimadi', [Definition] = NULL, [SortOrder] = 4948.00 WHERE [Code] = 'noe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmp', 'Nimanbur', NULL, 493.50) END +VALUES ('nmp', 'Nimanbur', NULL, 4949.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimanbur', [Definition] = NULL, [SortOrder] = 493.50 WHERE [Code] = 'nmp' END +SET [Description] = 'Nimanbur', [Definition] = NULL, [SortOrder] = 4949.00 WHERE [Code] = 'nmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmr', 'Nimbari', NULL, 493.60) END +VALUES ('nmr', 'Nimbari', NULL, 4950.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimbari', [Definition] = NULL, [SortOrder] = 493.60 WHERE [Code] = 'nmr' END +SET [Description] = 'Nimbari', [Definition] = NULL, [SortOrder] = 4950.00 WHERE [Code] = 'nmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nir', 'Nimboran', NULL, 493.70) END +VALUES ('nir', 'Nimboran', NULL, 4951.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimboran', [Definition] = NULL, [SortOrder] = 493.70 WHERE [Code] = 'nir' END +SET [Description] = 'Nimboran', [Definition] = NULL, [SortOrder] = 4951.00 WHERE [Code] = 'nir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nis', 'Nimi', NULL, 493.80) END +VALUES ('nis', 'Nimi', NULL, 4952.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimi', [Definition] = NULL, [SortOrder] = 493.80 WHERE [Code] = 'nis' END +SET [Description] = 'Nimi', [Definition] = NULL, [SortOrder] = 4952.00 WHERE [Code] = 'nis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niw', 'Nimo', NULL, 493.90) END +VALUES ('niw', 'Nimo', NULL, 4953.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimo', [Definition] = NULL, [SortOrder] = 493.90 WHERE [Code] = 'niw' END +SET [Description] = 'Nimo', [Definition] = NULL, [SortOrder] = 4953.00 WHERE [Code] = 'niw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmw', 'Nimoa', NULL, 494.00) END +VALUES ('nmw', 'Nimoa', NULL, 4954.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimoa', [Definition] = NULL, [SortOrder] = 494.00 WHERE [Code] = 'nmw' END +SET [Description] = 'Nimoa', [Definition] = NULL, [SortOrder] = 4954.00 WHERE [Code] = 'nmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shb', 'Ninam', NULL, 494.10) END +VALUES ('shb', 'Ninam', NULL, 4955.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ninam', [Definition] = NULL, [SortOrder] = 494.10 WHERE [Code] = 'shb' END +SET [Description] = 'Ninam', [Definition] = NULL, [SortOrder] = 4955.00 WHERE [Code] = 'shb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxi', 'Nindi', NULL, 494.20) END +VALUES ('nxi', 'Nindi', NULL, 4956.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nindi', [Definition] = NULL, [SortOrder] = 494.20 WHERE [Code] = 'nxi' END +SET [Description] = 'Nindi', [Definition] = NULL, [SortOrder] = 4956.00 WHERE [Code] = 'nxi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nby', 'Ningera', NULL, 494.30) END +VALUES ('nby', 'Ningera', NULL, 4957.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ningera', [Definition] = NULL, [SortOrder] = 494.30 WHERE [Code] = 'nby' END +SET [Description] = 'Ningera', [Definition] = NULL, [SortOrder] = 4957.00 WHERE [Code] = 'nby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxr', 'Ninggerum', NULL, 494.40) END +VALUES ('nxr', 'Ninggerum', NULL, 4958.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ninggerum', [Definition] = NULL, [SortOrder] = 494.40 WHERE [Code] = 'nxr' END +SET [Description] = 'Ninggerum', [Definition] = NULL, [SortOrder] = 4958.00 WHERE [Code] = 'nxr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niz', 'Ningil', NULL, 494.50) END +VALUES ('niz', 'Ningil', NULL, 4959.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ningil', [Definition] = NULL, [SortOrder] = 494.50 WHERE [Code] = 'niz' END +SET [Description] = 'Ningil', [Definition] = NULL, [SortOrder] = 4959.00 WHERE [Code] = 'niz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlk', 'Ninia Yali', NULL, 494.60) END +VALUES ('nlk', 'Ninia Yali', NULL, 4960.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ninia Yali', [Definition] = NULL, [SortOrder] = 494.60 WHERE [Code] = 'nlk' END +SET [Description] = 'Ninia Yali', [Definition] = NULL, [SortOrder] = 4960.00 WHERE [Code] = 'nlk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nin', 'Ninzo', NULL, 494.70) END +VALUES ('nin', 'Ninzo', NULL, 4961.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ninzo', [Definition] = NULL, [SortOrder] = 494.70 WHERE [Code] = 'nin' END +SET [Description] = 'Ninzo', [Definition] = NULL, [SortOrder] = 4961.00 WHERE [Code] = 'nin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nps', 'Nipsan', NULL, 494.80) END +VALUES ('nps', 'Nipsan', NULL, 4962.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nipsan', [Definition] = NULL, [SortOrder] = 494.80 WHERE [Code] = 'nps' END +SET [Description] = 'Nipsan', [Definition] = NULL, [SortOrder] = 4962.00 WHERE [Code] = 'nps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njs', 'Nisa', NULL, 494.90) END +VALUES ('njs', 'Nisa', NULL, 4963.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nisa', [Definition] = NULL, [SortOrder] = 494.90 WHERE [Code] = 'njs' END +SET [Description] = 'Nisa', [Definition] = NULL, [SortOrder] = 4963.00 WHERE [Code] = 'njs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsz', 'Nisenan', NULL, 495.00) END +VALUES ('nsz', 'Nisenan', NULL, 4964.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nisenan', [Definition] = NULL, [SortOrder] = 495.00 WHERE [Code] = 'nsz' END +SET [Description] = 'Nisenan', [Definition] = NULL, [SortOrder] = 4964.00 WHERE [Code] = 'nsz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncg', 'Nisga''a', NULL, 495.10) END +VALUES ('ncg', 'Nisga''a', NULL, 4965.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nisga''a', [Definition] = NULL, [SortOrder] = 495.10 WHERE [Code] = 'ncg' END +SET [Description] = 'Nisga''a', [Definition] = NULL, [SortOrder] = 4965.00 WHERE [Code] = 'ncg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yso', 'Nisi (China)', NULL, 495.20) END +VALUES ('yso', 'Nisi (China)', NULL, 4966.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nisi (China)', [Definition] = NULL, [SortOrder] = 495.20 WHERE [Code] = 'yso' END +SET [Description] = 'Nisi (China)', [Definition] = NULL, [SortOrder] = 4966.00 WHERE [Code] = 'yso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'num') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('num', 'Niuafo''ou', NULL, 495.30) END +VALUES ('num', 'Niuafo''ou', NULL, 4967.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niuafo''ou', [Definition] = NULL, [SortOrder] = 495.30 WHERE [Code] = 'num' END +SET [Description] = 'Niuafo''ou', [Definition] = NULL, [SortOrder] = 4967.00 WHERE [Code] = 'num' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkp', 'Niuatoputapu', NULL, 495.40) END +VALUES ('nkp', 'Niuatoputapu', NULL, 4968.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niuatoputapu', [Definition] = NULL, [SortOrder] = 495.40 WHERE [Code] = 'nkp' END +SET [Description] = 'Niuatoputapu', [Definition] = NULL, [SortOrder] = 4968.00 WHERE [Code] = 'nkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niu', 'Niuean', NULL, 495.50) END +VALUES ('niu', 'Niuean', NULL, 4969.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niuean', [Definition] = NULL, [SortOrder] = 495.50 WHERE [Code] = 'niu' END +SET [Description] = 'Niuean', [Definition] = NULL, [SortOrder] = 4969.00 WHERE [Code] = 'niu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cag', 'Nivaclé', NULL, 495.60) END +VALUES ('cag', 'Nivaclé', NULL, 4970.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nivaclé', [Definition] = NULL, [SortOrder] = 495.60 WHERE [Code] = 'cag' END +SET [Description] = 'Nivaclé', [Definition] = NULL, [SortOrder] = 4970.00 WHERE [Code] = 'cag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrc', 'Niwer Mil', NULL, 495.70) END +VALUES ('hrc', 'Niwer Mil', NULL, 4971.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niwer Mil', [Definition] = NULL, [SortOrder] = 495.70 WHERE [Code] = 'hrc' END +SET [Description] = 'Niwer Mil', [Definition] = NULL, [SortOrder] = 4971.00 WHERE [Code] = 'hrc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njl', 'Njalgulgule', NULL, 495.80) END +VALUES ('njl', 'Njalgulgule', NULL, 4972.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njalgulgule', [Definition] = NULL, [SortOrder] = 495.80 WHERE [Code] = 'njl' END +SET [Description] = 'Njalgulgule', [Definition] = NULL, [SortOrder] = 4972.00 WHERE [Code] = 'njl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzb', 'Njebi', NULL, 495.90) END +VALUES ('nzb', 'Njebi', NULL, 4973.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njebi', [Definition] = NULL, [SortOrder] = 495.90 WHERE [Code] = 'nzb' END +SET [Description] = 'Njebi', [Definition] = NULL, [SortOrder] = 4973.00 WHERE [Code] = 'nzb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njj', 'Njen', NULL, 496.00) END +VALUES ('njj', 'Njen', NULL, 4974.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njen', [Definition] = NULL, [SortOrder] = 496.00 WHERE [Code] = 'njj' END +SET [Description] = 'Njen', [Definition] = NULL, [SortOrder] = 4974.00 WHERE [Code] = 'njj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njr', 'Njerep', NULL, 496.10) END +VALUES ('njr', 'Njerep', NULL, 4975.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njerep', [Definition] = NULL, [SortOrder] = 496.10 WHERE [Code] = 'njr' END +SET [Description] = 'Njerep', [Definition] = NULL, [SortOrder] = 4975.00 WHERE [Code] = 'njr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njy', 'Njyem', NULL, 496.20) END +VALUES ('njy', 'Njyem', NULL, 4976.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njyem', [Definition] = NULL, [SortOrder] = 496.20 WHERE [Code] = 'njy' END +SET [Description] = 'Njyem', [Definition] = NULL, [SortOrder] = 4976.00 WHERE [Code] = 'njy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkq', 'Nkami', NULL, 496.30) END +VALUES ('nkq', 'Nkami', NULL, 4977.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkami', [Definition] = NULL, [SortOrder] = 496.30 WHERE [Code] = 'nkq' END +SET [Description] = 'Nkami', [Definition] = NULL, [SortOrder] = 4977.00 WHERE [Code] = 'nkq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkn', 'Nkangala', NULL, 496.40) END +VALUES ('nkn', 'Nkangala', NULL, 4978.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkangala', [Definition] = NULL, [SortOrder] = 496.40 WHERE [Code] = 'nkn' END +SET [Description] = 'Nkangala', [Definition] = NULL, [SortOrder] = 4978.00 WHERE [Code] = 'nkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkz', 'Nkari', NULL, 496.50) END +VALUES ('nkz', 'Nkari', NULL, 4979.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkari', [Definition] = NULL, [SortOrder] = 496.50 WHERE [Code] = 'nkz' END +SET [Description] = 'Nkari', [Definition] = NULL, [SortOrder] = 4979.00 WHERE [Code] = 'nkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isi', 'Nkem-Nkum', NULL, 496.60) END +VALUES ('isi', 'Nkem-Nkum', NULL, 4980.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkem-Nkum', [Definition] = NULL, [SortOrder] = 496.60 WHERE [Code] = 'isi' END +SET [Description] = 'Nkem-Nkum', [Definition] = NULL, [SortOrder] = 4980.00 WHERE [Code] = 'isi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khu', 'Nkhumbi', NULL, 496.70) END +VALUES ('khu', 'Nkhumbi', NULL, 4981.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkhumbi', [Definition] = NULL, [SortOrder] = 496.70 WHERE [Code] = 'khu' END +SET [Description] = 'Nkhumbi', [Definition] = NULL, [SortOrder] = 4981.00 WHERE [Code] = 'khu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkc', 'Nkongho', NULL, 496.80) END +VALUES ('nkc', 'Nkongho', NULL, 4982.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkongho', [Definition] = NULL, [SortOrder] = 496.80 WHERE [Code] = 'nkc' END +SET [Description] = 'Nkongho', [Definition] = NULL, [SortOrder] = 4982.00 WHERE [Code] = 'nkc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nko', 'Nkonya', NULL, 496.90) END +VALUES ('nko', 'Nkonya', NULL, 4983.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkonya', [Definition] = NULL, [SortOrder] = 496.90 WHERE [Code] = 'nko' END +SET [Description] = 'Nkonya', [Definition] = NULL, [SortOrder] = 4983.00 WHERE [Code] = 'nko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkx', 'Nkoroo', NULL, 497.00) END +VALUES ('nkx', 'Nkoroo', NULL, 4984.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkoroo', [Definition] = NULL, [SortOrder] = 497.00 WHERE [Code] = 'nkx' END +SET [Description] = 'Nkoroo', [Definition] = NULL, [SortOrder] = 4984.00 WHERE [Code] = 'nkx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nka', 'Nkoya', NULL, 497.10) END +VALUES ('nka', 'Nkoya', NULL, 4985.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkoya', [Definition] = NULL, [SortOrder] = 497.10 WHERE [Code] = 'nka' END +SET [Description] = 'Nkoya', [Definition] = NULL, [SortOrder] = 4985.00 WHERE [Code] = 'nka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbo', 'Nkukoli', NULL, 497.20) END +VALUES ('nbo', 'Nkukoli', NULL, 4986.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkukoli', [Definition] = NULL, [SortOrder] = 497.20 WHERE [Code] = 'nbo' END +SET [Description] = 'Nkukoli', [Definition] = NULL, [SortOrder] = 4986.00 WHERE [Code] = 'nbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkw', 'Nkutu', NULL, 497.30) END +VALUES ('nkw', 'Nkutu', NULL, 4987.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkutu', [Definition] = NULL, [SortOrder] = 497.30 WHERE [Code] = 'nkw' END +SET [Description] = 'Nkutu', [Definition] = NULL, [SortOrder] = 4987.00 WHERE [Code] = 'nkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbp', 'Nnam', NULL, 497.40) END +VALUES ('nbp', 'Nnam', NULL, 4988.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nnam', [Definition] = NULL, [SortOrder] = 497.40 WHERE [Code] = 'nbp' END +SET [Description] = 'Nnam', [Definition] = NULL, [SortOrder] = 4988.00 WHERE [Code] = 'nbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zxx', 'No linguistic content', NULL, 497.50) END +VALUES ('zxx', 'No linguistic content', NULL, 4989.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'No linguistic content', [Definition] = NULL, [SortOrder] = 497.50 WHERE [Code] = 'zxx' END +SET [Description] = 'No linguistic content', [Definition] = NULL, [SortOrder] = 4989.00 WHERE [Code] = 'zxx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fia', 'Nobiin', NULL, 497.60) END +VALUES ('fia', 'Nobiin', NULL, 4990.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nobiin', [Definition] = NULL, [SortOrder] = 497.60 WHERE [Code] = 'fia' END +SET [Description] = 'Nobiin', [Definition] = NULL, [SortOrder] = 4990.00 WHERE [Code] = 'fia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaw', 'Nobonob', NULL, 497.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nobonob', [Definition] = NULL, [SortOrder] = 497.70 WHERE [Code] = 'gaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nom', 'Nocamán', NULL, 497.80) END +VALUES ('gaw', 'Nobonob', NULL, 4991.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nocamán', [Definition] = NULL, [SortOrder] = 497.80 WHERE [Code] = 'nom' END +SET [Description] = 'Nobonob', [Definition] = NULL, [SortOrder] = 4991.00 WHERE [Code] = 'gaw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njb', 'Nocte Naga', NULL, 497.90) END +VALUES ('njb', 'Nocte Naga', NULL, 4992.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nocte Naga', [Definition] = NULL, [SortOrder] = 497.90 WHERE [Code] = 'njb' END +SET [Description] = 'Nocte Naga', [Definition] = NULL, [SortOrder] = 4992.00 WHERE [Code] = 'njb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nog', 'Nogai', NULL, 498.00) END +VALUES ('nog', 'Nogai', NULL, 4993.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nogai', [Definition] = NULL, [SortOrder] = 498.00 WHERE [Code] = 'nog' END +SET [Description] = 'Nogai', [Definition] = NULL, [SortOrder] = 4993.00 WHERE [Code] = 'nog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npx', 'Noipx', NULL, 498.10) END +VALUES ('npx', 'Noipx', NULL, 4994.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noipx', [Definition] = NULL, [SortOrder] = 498.10 WHERE [Code] = 'npx' END +SET [Description] = 'Noipx', [Definition] = NULL, [SortOrder] = 4994.00 WHERE [Code] = 'npx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noi', 'Noiri', NULL, 498.20) END +VALUES ('noi', 'Noiri', NULL, 4995.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noiri', [Definition] = NULL, [SortOrder] = 498.20 WHERE [Code] = 'noi' END +SET [Description] = 'Noiri', [Definition] = NULL, [SortOrder] = 4995.00 WHERE [Code] = 'noi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkk', 'Nokuku', NULL, 498.30) END +VALUES ('nkk', 'Nokuku', NULL, 4996.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nokuku', [Definition] = NULL, [SortOrder] = 498.30 WHERE [Code] = 'nkk' END +SET [Description] = 'Nokuku', [Definition] = NULL, [SortOrder] = 4996.00 WHERE [Code] = 'nkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lem', 'Nomaande', NULL, 498.40) END +VALUES ('lem', 'Nomaande', NULL, 4997.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomaande', [Definition] = NULL, [SortOrder] = 498.40 WHERE [Code] = 'lem' END +SET [Description] = 'Nomaande', [Definition] = NULL, [SortOrder] = 4997.00 WHERE [Code] = 'lem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nof', 'Nomane', NULL, 498.50) END +VALUES ('nof', 'Nomane', NULL, 4998.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomane', [Definition] = NULL, [SortOrder] = 498.50 WHERE [Code] = 'nof' END +SET [Description] = 'Nomane', [Definition] = NULL, [SortOrder] = 4998.00 WHERE [Code] = 'nof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'not') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('not', 'Nomatsiguenga', NULL, 498.60) END +VALUES ('not', 'Nomatsiguenga', NULL, 4999.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomatsiguenga', [Definition] = NULL, [SortOrder] = 498.60 WHERE [Code] = 'not' END +SET [Description] = 'Nomatsiguenga', [Definition] = NULL, [SortOrder] = 4999.00 WHERE [Code] = 'not' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nol', 'Nomlaki', NULL, 498.70) END +VALUES ('nol', 'Nomlaki', NULL, 5000.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomlaki', [Definition] = NULL, [SortOrder] = 498.70 WHERE [Code] = 'nol' END +SET [Description] = 'Nomlaki', [Definition] = NULL, [SortOrder] = 5000.00 WHERE [Code] = 'nol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noh', 'Nomu', NULL, 498.80) END +VALUES ('noh', 'Nomu', NULL, 5001.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomu', [Definition] = NULL, [SortOrder] = 498.80 WHERE [Code] = 'noh' END +SET [Description] = 'Nomu', [Definition] = NULL, [SortOrder] = 5001.00 WHERE [Code] = 'noh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhn', 'Nong Zhuang', NULL, 498.90) END +VALUES ('zhn', 'Nong Zhuang', NULL, 5002.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nong Zhuang', [Definition] = NULL, [SortOrder] = 498.90 WHERE [Code] = 'zhn' END +SET [Description] = 'Nong Zhuang', [Definition] = NULL, [SortOrder] = 5002.00 WHERE [Code] = 'zhn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noj', 'Nonuya', NULL, 499.00) END +VALUES ('noj', 'Nonuya', NULL, 5003.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nonuya', [Definition] = NULL, [SortOrder] = 499.00 WHERE [Code] = 'noj' END +SET [Description] = 'Nonuya', [Definition] = NULL, [SortOrder] = 5003.00 WHERE [Code] = 'noj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nok', 'Nooksack', NULL, 499.10) END +VALUES ('nok', 'Nooksack', NULL, 5004.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nooksack', [Definition] = NULL, [SortOrder] = 499.10 WHERE [Code] = 'nok' END +SET [Description] = 'Nooksack', [Definition] = NULL, [SortOrder] = 5004.00 WHERE [Code] = 'nok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snf', 'Noon', NULL, 499.20) END +VALUES ('snf', 'Noon', NULL, 5005.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noon', [Definition] = NULL, [SortOrder] = 499.20 WHERE [Code] = 'snf' END +SET [Description] = 'Noon', [Definition] = NULL, [SortOrder] = 5005.00 WHERE [Code] = 'snf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhu', 'Noone', NULL, 499.30) END +VALUES ('nhu', 'Noone', NULL, 5006.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noone', [Definition] = NULL, [SortOrder] = 499.30 WHERE [Code] = 'nhu' END +SET [Description] = 'Noone', [Definition] = NULL, [SortOrder] = 5006.00 WHERE [Code] = 'nhu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cya', 'Nopala Chatino', NULL, 499.40) END +VALUES ('cya', 'Nopala Chatino', NULL, 5007.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nopala Chatino', [Definition] = NULL, [SortOrder] = 499.40 WHERE [Code] = 'cya' END +SET [Description] = 'Nopala Chatino', [Definition] = NULL, [SortOrder] = 5007.00 WHERE [Code] = 'cya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrc', 'Noric', NULL, 499.50) END +VALUES ('nrc', 'Noric', NULL, 5008.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noric', [Definition] = NULL, [SortOrder] = 499.50 WHERE [Code] = 'nrc' END +SET [Description] = 'Noric', [Definition] = NULL, [SortOrder] = 5008.00 WHERE [Code] = 'nrc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrn', 'Norn', NULL, 499.60) END +VALUES ('nrn', 'Norn', NULL, 5009.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norn', [Definition] = NULL, [SortOrder] = 499.60 WHERE [Code] = 'nrn' END +SET [Description] = 'Norn', [Definition] = NULL, [SortOrder] = 5009.00 WHERE [Code] = 'nrn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrr', 'Norra', NULL, 499.70) END +VALUES ('nrr', 'Norra', NULL, 5010.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norra', [Definition] = NULL, [SortOrder] = 499.70 WHERE [Code] = 'nrr' END +SET [Description] = 'Norra', [Definition] = NULL, [SortOrder] = 5010.00 WHERE [Code] = 'nrr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esi', 'North Alaskan Inupiatun', NULL, 499.80) END +VALUES ('esi', 'North Alaskan Inupiatun', NULL, 5011.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Alaskan Inupiatun', [Definition] = NULL, [SortOrder] = 499.80 WHERE [Code] = 'esi' END +SET [Description] = 'North Alaskan Inupiatun', [Definition] = NULL, [SortOrder] = 5011.00 WHERE [Code] = 'esi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmg', 'North Ambrym', NULL, 499.90) END +VALUES ('mmg', 'North Ambrym', NULL, 5012.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Ambrym', [Definition] = NULL, [SortOrder] = 499.90 WHERE [Code] = 'mmg' END +SET [Description] = 'North Ambrym', [Definition] = NULL, [SortOrder] = 5012.00 WHERE [Code] = 'mmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nks', 'North Asmat', NULL, 500.00) END +VALUES ('nks', 'North Asmat', NULL, 5013.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Asmat', [Definition] = NULL, [SortOrder] = 500.00 WHERE [Code] = 'nks' END +SET [Description] = 'North Asmat', [Definition] = NULL, [SortOrder] = 5013.00 WHERE [Code] = 'nks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yir', 'North Awyu', NULL, 500.10) END +VALUES ('yir', 'North Awyu', NULL, 5014.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Awyu', [Definition] = NULL, [SortOrder] = 500.10 WHERE [Code] = 'yir' END +SET [Description] = 'North Awyu', [Definition] = NULL, [SortOrder] = 5014.00 WHERE [Code] = 'yir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azj', 'North Azerbaijani', NULL, 500.20) END +VALUES ('azj', 'North Azerbaijani', NULL, 5015.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Azerbaijani', [Definition] = NULL, [SortOrder] = 500.20 WHERE [Code] = 'azj' END +SET [Description] = 'North Azerbaijani', [Definition] = NULL, [SortOrder] = 5015.00 WHERE [Code] = 'azj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcd', 'North Babar', NULL, 500.30) END +VALUES ('bcd', 'North Babar', NULL, 5016.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Babar', [Definition] = NULL, [SortOrder] = 500.30 WHERE [Code] = 'bcd' END +SET [Description] = 'North Babar', [Definition] = NULL, [SortOrder] = 5016.00 WHERE [Code] = 'bcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qul', 'North Bolivian Quechua', NULL, 500.40) END +VALUES ('qul', 'North Bolivian Quechua', NULL, 5017.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Bolivian Quechua', [Definition] = NULL, [SortOrder] = 500.40 WHERE [Code] = 'qul' END +SET [Description] = 'North Bolivian Quechua', [Definition] = NULL, [SortOrder] = 5017.00 WHERE [Code] = 'qul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neq', 'North Central Mixe', NULL, 500.50) END +VALUES ('neq', 'North Central Mixe', NULL, 5018.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Central Mixe', [Definition] = NULL, [SortOrder] = 500.50 WHERE [Code] = 'neq' END +SET [Description] = 'North Central Mixe', [Definition] = NULL, [SortOrder] = 5018.00 WHERE [Code] = 'neq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llp', 'North Efate', NULL, 500.60) END +VALUES ('llp', 'North Efate', NULL, 5019.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Efate', [Definition] = NULL, [SortOrder] = 500.60 WHERE [Code] = 'llp' END +SET [Description] = 'North Efate', [Definition] = NULL, [SortOrder] = 5019.00 WHERE [Code] = 'llp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fll', 'North Fali', NULL, 500.70) END +VALUES ('fll', 'North Fali', NULL, 5020.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Fali', [Definition] = NULL, [SortOrder] = 500.70 WHERE [Code] = 'fll' END +SET [Description] = 'North Fali', [Definition] = NULL, [SortOrder] = 5020.00 WHERE [Code] = 'fll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gis', 'North Giziga', NULL, 500.80) END +VALUES ('gis', 'North Giziga', NULL, 5021.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Giziga', [Definition] = NULL, [SortOrder] = 500.80 WHERE [Code] = 'gis' END +SET [Description] = 'North Giziga', [Definition] = NULL, [SortOrder] = 5021.00 WHERE [Code] = 'gis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvn', 'North Junín Quechua', NULL, 500.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Junín Quechua', [Definition] = NULL, [SortOrder] = 500.90 WHERE [Code] = 'qvn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apc', 'North Levantine Arabic', NULL, 501.00) END +VALUES ('qvn', 'North Junín Quechua', NULL, 5022.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Levantine Arabic', [Definition] = NULL, [SortOrder] = 501.00 WHERE [Code] = 'apc' END +SET [Description] = 'North Junín Quechua', [Definition] = NULL, [SortOrder] = 5022.00 WHERE [Code] = 'qvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrq', 'North Marquesan', NULL, 501.10) END +VALUES ('mrq', 'North Marquesan', NULL, 5023.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Marquesan', [Definition] = NULL, [SortOrder] = 501.10 WHERE [Code] = 'mrq' END +SET [Description] = 'North Marquesan', [Definition] = NULL, [SortOrder] = 5023.00 WHERE [Code] = 'mrq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayp', 'North Mesopotamian Arabic', NULL, 501.20) END +VALUES ('ayp', 'North Mesopotamian Arabic', NULL, 5024.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Mesopotamian Arabic', [Definition] = NULL, [SortOrder] = 501.20 WHERE [Code] = 'ayp' END +SET [Description] = 'North Mesopotamian Arabic', [Definition] = NULL, [SortOrder] = 5024.00 WHERE [Code] = 'ayp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xph', 'North Midlands Tasmanian', NULL, 501.30) END +VALUES ('xph', 'North Midlands Tasmanian', NULL, 5025.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Midlands Tasmanian', [Definition] = NULL, [SortOrder] = 501.30 WHERE [Code] = 'xph' END +SET [Description] = 'North Midlands Tasmanian', [Definition] = NULL, [SortOrder] = 5025.00 WHERE [Code] = 'xph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfk', 'North Mofu', NULL, 501.40) END +VALUES ('mfk', 'North Mofu', NULL, 5026.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Mofu', [Definition] = NULL, [SortOrder] = 501.40 WHERE [Code] = 'mfk' END +SET [Description] = 'North Mofu', [Definition] = NULL, [SortOrder] = 5026.00 WHERE [Code] = 'mfk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'max') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('max', 'North Moluccan Malay', NULL, 501.50) END +VALUES ('max', 'North Moluccan Malay', NULL, 5027.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Moluccan Malay', [Definition] = NULL, [SortOrder] = 501.50 WHERE [Code] = 'max' END +SET [Description] = 'North Moluccan Malay', [Definition] = NULL, [SortOrder] = 5027.00 WHERE [Code] = 'max' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kti', 'North Muyu', NULL, 501.60) END +VALUES ('kti', 'North Muyu', NULL, 5028.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Muyu', [Definition] = NULL, [SortOrder] = 501.60 WHERE [Code] = 'kti' END +SET [Description] = 'North Muyu', [Definition] = NULL, [SortOrder] = 5028.00 WHERE [Code] = 'kti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nde', 'North Ndebele', NULL, 501.70) END +VALUES ('nde', 'North Ndebele', NULL, 5029.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Ndebele', [Definition] = NULL, [SortOrder] = 501.70 WHERE [Code] = 'nde' END +SET [Description] = 'North Ndebele', [Definition] = NULL, [SortOrder] = 5029.00 WHERE [Code] = 'nde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nni', 'North Nuaulu', NULL, 501.80) END +VALUES ('nni', 'North Nuaulu', NULL, 5030.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Nuaulu', [Definition] = NULL, [SortOrder] = 501.80 WHERE [Code] = 'nni' END +SET [Description] = 'North Nuaulu', [Definition] = NULL, [SortOrder] = 5030.00 WHERE [Code] = 'nni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrp', 'North Picene', NULL, 501.90) END +VALUES ('nrp', 'North Picene', NULL, 5031.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Picene', [Definition] = NULL, [SortOrder] = 501.90 WHERE [Code] = 'nrp' END +SET [Description] = 'North Picene', [Definition] = NULL, [SortOrder] = 5031.00 WHERE [Code] = 'nrp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scs', 'North Slavey', NULL, 502.00) END +VALUES ('scs', 'North Slavey', NULL, 5032.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Slavey', [Definition] = NULL, [SortOrder] = 502.00 WHERE [Code] = 'scs' END +SET [Description] = 'North Slavey', [Definition] = NULL, [SortOrder] = 5032.00 WHERE [Code] = 'scs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbg', 'North Tairora', NULL, 502.10) END +VALUES ('tbg', 'North Tairora', NULL, 5033.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Tairora', [Definition] = NULL, [SortOrder] = 502.10 WHERE [Code] = 'tbg' END +SET [Description] = 'North Tairora', [Definition] = NULL, [SortOrder] = 5033.00 WHERE [Code] = 'tbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnn', 'North Tanna', NULL, 502.20) END +VALUES ('tnn', 'North Tanna', NULL, 5034.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Tanna', [Definition] = NULL, [SortOrder] = 502.20 WHERE [Code] = 'tnn' END +SET [Description] = 'North Tanna', [Definition] = NULL, [SortOrder] = 5034.00 WHERE [Code] = 'tnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'whg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('whg', 'North Wahgi', NULL, 502.30) END +VALUES ('whg', 'North Wahgi', NULL, 5035.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Wahgi', [Definition] = NULL, [SortOrder] = 502.30 WHERE [Code] = 'whg' END +SET [Description] = 'North Wahgi', [Definition] = NULL, [SortOrder] = 5035.00 WHERE [Code] = 'whg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'una') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('una', 'North Watut', NULL, 502.40) END +VALUES ('una', 'North Watut', NULL, 5036.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Watut', [Definition] = NULL, [SortOrder] = 502.40 WHERE [Code] = 'una' END +SET [Description] = 'North Watut', [Definition] = NULL, [SortOrder] = 5036.00 WHERE [Code] = 'una' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiw', 'Northeast Kiwai', NULL, 502.50) END +VALUES ('kiw', 'Northeast Kiwai', NULL, 5037.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeast Kiwai', [Definition] = NULL, [SortOrder] = 502.50 WHERE [Code] = 'kiw' END +SET [Description] = 'Northeast Kiwai', [Definition] = NULL, [SortOrder] = 5037.00 WHERE [Code] = 'kiw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmu', 'Northeast Maidu', NULL, 502.60) END +VALUES ('nmu', 'Northeast Maidu', NULL, 5038.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeast Maidu', [Definition] = NULL, [SortOrder] = 502.60 WHERE [Code] = 'nmu' END +SET [Description] = 'Northeast Maidu', [Definition] = NULL, [SortOrder] = 5038.00 WHERE [Code] = 'nmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aee', 'Northeast Pashai', NULL, 502.70) END +VALUES ('aee', 'Northeast Pashai', NULL, 5039.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeast Pashai', [Definition] = NULL, [SortOrder] = 502.70 WHERE [Code] = 'aee' END +SET [Description] = 'Northeast Pashai', [Definition] = NULL, [SortOrder] = 5039.00 WHERE [Code] = 'aee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dip', 'Northeastern Dinka', NULL, 502.80) END +VALUES ('dip', 'Northeastern Dinka', NULL, 5040.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeastern Dinka', [Definition] = NULL, [SortOrder] = 502.80 WHERE [Code] = 'dip' END +SET [Description] = 'Northeastern Dinka', [Definition] = NULL, [SortOrder] = 5040.00 WHERE [Code] = 'dip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pef', 'Northeastern Pomo', NULL, 502.90) END +VALUES ('pef', 'Northeastern Pomo', NULL, 5041.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeastern Pomo', [Definition] = NULL, [SortOrder] = 502.90 WHERE [Code] = 'pef' END +SET [Description] = 'Northeastern Pomo', [Definition] = NULL, [SortOrder] = 5041.00 WHERE [Code] = 'pef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpb', 'Northeastern Tasmanian', NULL, 503.00) END +VALUES ('xpb', 'Northeastern Tasmanian', NULL, 5042.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeastern Tasmanian', [Definition] = NULL, [SortOrder] = 503.00 WHERE [Code] = 'xpb' END +SET [Description] = 'Northeastern Tasmanian', [Definition] = NULL, [SortOrder] = 5042.00 WHERE [Code] = 'xpb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tts', 'Northeastern Thai', NULL, 503.10) END +VALUES ('tts', 'Northeastern Thai', NULL, 5043.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeastern Thai', [Definition] = NULL, [SortOrder] = 503.10 WHERE [Code] = 'tts' END +SET [Description] = 'Northeastern Thai', [Definition] = NULL, [SortOrder] = 5043.00 WHERE [Code] = 'tts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqn', 'Northern Alta', NULL, 503.20) END +VALUES ('aqn', 'Northern Alta', NULL, 5044.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Alta', [Definition] = NULL, [SortOrder] = 503.20 WHERE [Code] = 'aqn' END +SET [Description] = 'Northern Alta', [Definition] = NULL, [SortOrder] = 5044.00 WHERE [Code] = 'aqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atv', 'Northern Altai', NULL, 503.30) END +VALUES ('atv', 'Northern Altai', NULL, 5045.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Altai', [Definition] = NULL, [SortOrder] = 503.30 WHERE [Code] = 'atv' END +SET [Description] = 'Northern Altai', [Definition] = NULL, [SortOrder] = 5045.00 WHERE [Code] = 'atv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ryn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ryn', 'Northern Amami-Oshima', NULL, 503.40) END +VALUES ('ryn', 'Northern Amami-Oshima', NULL, 5046.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Amami-Oshima', [Definition] = NULL, [SortOrder] = 503.40 WHERE [Code] = 'ryn' END +SET [Description] = 'Northern Amami-Oshima', [Definition] = NULL, [SortOrder] = 5046.00 WHERE [Code] = 'ryn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmm', 'Northern Betsimisaraka Malagasy', NULL, 503.50) END +VALUES ('bmm', 'Northern Betsimisaraka Malagasy', NULL, 5047.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Betsimisaraka Malagasy', [Definition] = NULL, [SortOrder] = 503.50 WHERE [Code] = 'bmm' END +SET [Description] = 'Northern Betsimisaraka Malagasy', [Definition] = NULL, [SortOrder] = 5047.00 WHERE [Code] = 'bmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyn', 'Northern Binukidnon', NULL, 503.60) END +VALUES ('kyn', 'Northern Binukidnon', NULL, 5048.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Binukidnon', [Definition] = NULL, [SortOrder] = 503.60 WHERE [Code] = 'kyn' END +SET [Description] = 'Northern Binukidnon', [Definition] = NULL, [SortOrder] = 5048.00 WHERE [Code] = 'kyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbo', 'Northern Bobo Madaré', NULL, 503.70) END +VALUES ('bbo', 'Northern Bobo Madaré', NULL, 5049.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Bobo Madaré', [Definition] = NULL, [SortOrder] = 503.70 WHERE [Code] = 'bbo' END +SET [Description] = 'Northern Bobo Madaré', [Definition] = NULL, [SortOrder] = 5049.00 WHERE [Code] = 'bbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rbk', 'Northern Bontok', NULL, 503.80) END +VALUES ('rbk', 'Northern Bontok', NULL, 5050.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Bontok', [Definition] = NULL, [SortOrder] = 503.80 WHERE [Code] = 'rbk' END +SET [Description] = 'Northern Bontok', [Definition] = NULL, [SortOrder] = 5050.00 WHERE [Code] = 'rbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cts', 'Northern Catanduanes Bikol', NULL, 503.90) END +VALUES ('cts', 'Northern Catanduanes Bikol', NULL, 5051.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Catanduanes Bikol', [Definition] = NULL, [SortOrder] = 503.90 WHERE [Code] = 'cts' END +SET [Description] = 'Northern Catanduanes Bikol', [Definition] = NULL, [SortOrder] = 5051.00 WHERE [Code] = 'cts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxn', 'Northern Conchucos Ancash Quechua', NULL, 504.00) END +VALUES ('qxn', 'Northern Conchucos Ancash Quechua', NULL, 5052.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Conchucos Ancash Quechua', [Definition] = NULL, [SortOrder] = 504.00 WHERE [Code] = 'qxn' END +SET [Description] = 'Northern Conchucos Ancash Quechua', [Definition] = NULL, [SortOrder] = 5052.00 WHERE [Code] = 'qxn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgi', 'Northern Dagara', NULL, 504.10) END +VALUES ('dgi', 'Northern Dagara', NULL, 5053.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Dagara', [Definition] = NULL, [SortOrder] = 504.10 WHERE [Code] = 'dgi' END +SET [Description] = 'Northern Dagara', [Definition] = NULL, [SortOrder] = 5053.00 WHERE [Code] = 'dgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doc', 'Northern Dong', NULL, 504.20) END +VALUES ('doc', 'Northern Dong', NULL, 5054.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Dong', [Definition] = NULL, [SortOrder] = 504.20 WHERE [Code] = 'doc' END +SET [Description] = 'Northern Dong', [Definition] = NULL, [SortOrder] = 5054.00 WHERE [Code] = 'doc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crl', 'Northern East Cree', NULL, 504.30) END +VALUES ('crl', 'Northern East Cree', NULL, 5055.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern East Cree', [Definition] = NULL, [SortOrder] = 504.30 WHERE [Code] = 'crl' END +SET [Description] = 'Northern East Cree', [Definition] = NULL, [SortOrder] = 5055.00 WHERE [Code] = 'crl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emp', 'Northern Emberá', NULL, 504.40) END +VALUES ('emp', 'Northern Emberá', NULL, 5056.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Emberá', [Definition] = NULL, [SortOrder] = 504.40 WHERE [Code] = 'emp' END +SET [Description] = 'Northern Emberá', [Definition] = NULL, [SortOrder] = 5056.00 WHERE [Code] = 'emp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frr', 'Northern Frisian', NULL, 504.50) END +VALUES ('frr', 'Northern Frisian', NULL, 5057.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Frisian', [Definition] = NULL, [SortOrder] = 504.50 WHERE [Code] = 'frr' END +SET [Description] = 'Northern Frisian', [Definition] = NULL, [SortOrder] = 5057.00 WHERE [Code] = 'frr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghh', 'Northern Ghale', NULL, 504.60) END +VALUES ('ghh', 'Northern Ghale', NULL, 5058.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Ghale', [Definition] = NULL, [SortOrder] = 504.60 WHERE [Code] = 'ghh' END +SET [Description] = 'Northern Ghale', [Definition] = NULL, [SortOrder] = 5058.00 WHERE [Code] = 'ghh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gno', 'Northern Gondi', NULL, 504.70) END +VALUES ('gno', 'Northern Gondi', NULL, 5059.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Gondi', [Definition] = NULL, [SortOrder] = 504.70 WHERE [Code] = 'gno' END +SET [Description] = 'Northern Gondi', [Definition] = NULL, [SortOrder] = 5059.00 WHERE [Code] = 'gno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbo', 'Northern Grebo', NULL, 504.80) END +VALUES ('gbo', 'Northern Grebo', NULL, 5060.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Grebo', [Definition] = NULL, [SortOrder] = 504.80 WHERE [Code] = 'gbo' END +SET [Description] = 'Northern Grebo', [Definition] = NULL, [SortOrder] = 5060.00 WHERE [Code] = 'gbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huj', 'Northern Guiyang Hmong', NULL, 504.90) END +VALUES ('huj', 'Northern Guiyang Hmong', NULL, 5061.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 504.90 WHERE [Code] = 'huj' END +SET [Description] = 'Northern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 5061.00 WHERE [Code] = 'huj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hdn', 'Northern Haida', NULL, 505.00) END +VALUES ('hdn', 'Northern Haida', NULL, 5062.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Haida', [Definition] = NULL, [SortOrder] = 505.00 WHERE [Code] = 'hdn' END +SET [Description] = 'Northern Haida', [Definition] = NULL, [SortOrder] = 5062.00 WHERE [Code] = 'hdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hno', 'Northern Hindko', NULL, 505.10) END +VALUES ('hno', 'Northern Hindko', NULL, 5063.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Hindko', [Definition] = NULL, [SortOrder] = 505.10 WHERE [Code] = 'hno' END +SET [Description] = 'Northern Hindko', [Definition] = NULL, [SortOrder] = 5063.00 WHERE [Code] = 'hno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmi', 'Northern Huishui Hmong', NULL, 505.20) END +VALUES ('hmi', 'Northern Huishui Hmong', NULL, 5064.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Huishui Hmong', [Definition] = NULL, [SortOrder] = 505.20 WHERE [Code] = 'hmi' END +SET [Description] = 'Northern Huishui Hmong', [Definition] = NULL, [SortOrder] = 5064.00 WHERE [Code] = 'hmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrt', 'Northern Kalapuya', NULL, 505.30) END +VALUES ('nrt', 'Northern Kalapuya', NULL, 5065.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Kalapuya', [Definition] = NULL, [SortOrder] = 505.30 WHERE [Code] = 'nrt' END +SET [Description] = 'Northern Kalapuya', [Definition] = NULL, [SortOrder] = 5065.00 WHERE [Code] = 'nrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnn', 'Northern Kankanay', NULL, 505.40) END +VALUES ('xnn', 'Northern Kankanay', NULL, 5066.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Kankanay', [Definition] = NULL, [SortOrder] = 505.40 WHERE [Code] = 'xnn' END +SET [Description] = 'Northern Kankanay', [Definition] = NULL, [SortOrder] = 5066.00 WHERE [Code] = 'xnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncq', 'Northern Katang', NULL, 505.50) END +VALUES ('ncq', 'Northern Katang', NULL, 5067.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Katang', [Definition] = NULL, [SortOrder] = 505.50 WHERE [Code] = 'ncq' END +SET [Description] = 'Northern Katang', [Definition] = NULL, [SortOrder] = 5067.00 WHERE [Code] = 'ncq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxm', 'Northern Khmer', NULL, 505.60) END +VALUES ('kxm', 'Northern Khmer', NULL, 5068.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Khmer', [Definition] = NULL, [SortOrder] = 505.60 WHERE [Code] = 'kxm' END +SET [Description] = 'Northern Khmer', [Definition] = NULL, [SortOrder] = 5068.00 WHERE [Code] = 'kxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqs', 'Northern Kissi', NULL, 505.70) END +VALUES ('kqs', 'Northern Kissi', NULL, 5069.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Kissi', [Definition] = NULL, [SortOrder] = 505.70 WHERE [Code] = 'kqs' END +SET [Description] = 'Northern Kissi', [Definition] = NULL, [SortOrder] = 5069.00 WHERE [Code] = 'kqs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmr', 'Northern Kurdish', NULL, 505.80) END +VALUES ('kmr', 'Northern Kurdish', NULL, 5070.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Kurdish', [Definition] = NULL, [SortOrder] = 505.80 WHERE [Code] = 'kmr' END +SET [Description] = 'Northern Kurdish', [Definition] = NULL, [SortOrder] = 5070.00 WHERE [Code] = 'kmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrc', 'Northern Luri', NULL, 505.90) END +VALUES ('lrc', 'Northern Luri', NULL, 5071.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Luri', [Definition] = NULL, [SortOrder] = 505.90 WHERE [Code] = 'lrc' END +SET [Description] = 'Northern Luri', [Definition] = NULL, [SortOrder] = 5071.00 WHERE [Code] = 'lrc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmp', 'Northern Mashan Hmong', NULL, 506.00) END +VALUES ('hmp', 'Northern Mashan Hmong', NULL, 5072.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Mashan Hmong', [Definition] = NULL, [SortOrder] = 506.00 WHERE [Code] = 'hmp' END +SET [Description] = 'Northern Mashan Hmong', [Definition] = NULL, [SortOrder] = 5072.00 WHERE [Code] = 'hmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymx', 'Northern Muji', NULL, 506.10) END +VALUES ('ymx', 'Northern Muji', NULL, 5073.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Muji', [Definition] = NULL, [SortOrder] = 506.10 WHERE [Code] = 'ymx' END +SET [Description] = 'Northern Muji', [Definition] = NULL, [SortOrder] = 5073.00 WHERE [Code] = 'ymx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkb', 'Northern Nago', NULL, 506.20) END +VALUES ('xkb', 'Northern Nago', NULL, 5074.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Nago', [Definition] = NULL, [SortOrder] = 506.20 WHERE [Code] = 'xkb' END +SET [Description] = 'Northern Nago', [Definition] = NULL, [SortOrder] = 5074.00 WHERE [Code] = 'xkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngb', 'Northern Ngbandi', NULL, 506.30) END +VALUES ('ngb', 'Northern Ngbandi', NULL, 5075.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Ngbandi', [Definition] = NULL, [SortOrder] = 506.30 WHERE [Code] = 'ngb' END +SET [Description] = 'Northern Ngbandi', [Definition] = NULL, [SortOrder] = 5075.00 WHERE [Code] = 'ngb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yiv', 'Northern Nisu', NULL, 506.40) END +VALUES ('yiv', 'Northern Nisu', NULL, 5076.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Nisu', [Definition] = NULL, [SortOrder] = 506.40 WHERE [Code] = 'yiv' END +SET [Description] = 'Northern Nisu', [Definition] = NULL, [SortOrder] = 5076.00 WHERE [Code] = 'yiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuv', 'Northern Nuni', NULL, 506.50) END +VALUES ('nuv', 'Northern Nuni', NULL, 5077.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Nuni', [Definition] = NULL, [SortOrder] = 506.50 WHERE [Code] = 'nuv' END +SET [Description] = 'Northern Nuni', [Definition] = NULL, [SortOrder] = 5077.00 WHERE [Code] = 'nuv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhy', 'Northern Oaxaca Nahuatl', NULL, 506.60) END +VALUES ('nhy', 'Northern Oaxaca Nahuatl', NULL, 5078.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Oaxaca Nahuatl', [Definition] = NULL, [SortOrder] = 506.60 WHERE [Code] = 'nhy' END +SET [Description] = 'Northern Oaxaca Nahuatl', [Definition] = NULL, [SortOrder] = 5078.00 WHERE [Code] = 'nhy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cst', 'Northern Ohlone', NULL, 506.70) END +VALUES ('cst', 'Northern Ohlone', NULL, 5079.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Ohlone', [Definition] = NULL, [SortOrder] = 506.70 WHERE [Code] = 'cst' END +SET [Description] = 'Northern Ohlone', [Definition] = NULL, [SortOrder] = 5079.00 WHERE [Code] = 'cst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onr', 'Northern One', NULL, 506.80) END +VALUES ('onr', 'Northern One', NULL, 5080.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern One', [Definition] = NULL, [SortOrder] = 506.80 WHERE [Code] = 'onr' END +SET [Description] = 'Northern One', [Definition] = NULL, [SortOrder] = 5080.00 WHERE [Code] = 'onr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pao', 'Northern Paiute', NULL, 506.90) END +VALUES ('pao', 'Northern Paiute', NULL, 5081.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Paiute', [Definition] = NULL, [SortOrder] = 506.90 WHERE [Code] = 'pao' END +SET [Description] = 'Northern Paiute', [Definition] = NULL, [SortOrder] = 5081.00 WHERE [Code] = 'pao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmq', 'Northern Pame', NULL, 507.00) END +VALUES ('pmq', 'Northern Pame', NULL, 5082.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pame', [Definition] = NULL, [SortOrder] = 507.00 WHERE [Code] = 'pmq' END +SET [Description] = 'Northern Pame', [Definition] = NULL, [SortOrder] = 5082.00 WHERE [Code] = 'pmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbu', 'Northern Pashto', NULL, 507.10) END +VALUES ('pbu', 'Northern Pashto', NULL, 5083.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pashto', [Definition] = NULL, [SortOrder] = 507.10 WHERE [Code] = 'pbu' END +SET [Description] = 'Northern Pashto', [Definition] = NULL, [SortOrder] = 5083.00 WHERE [Code] = 'pbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvz', 'Northern Pastaza Quichua', NULL, 507.20) END +VALUES ('qvz', 'Northern Pastaza Quichua', NULL, 5084.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pastaza Quichua', [Definition] = NULL, [SortOrder] = 507.20 WHERE [Code] = 'qvz' END +SET [Description] = 'Northern Pastaza Quichua', [Definition] = NULL, [SortOrder] = 5084.00 WHERE [Code] = 'qvz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnp', 'Northern Ping Chinese', NULL, 507.30) END +VALUES ('cnp', 'Northern Ping Chinese', NULL, 5085.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Ping Chinese', [Definition] = NULL, [SortOrder] = 507.30 WHERE [Code] = 'cnp' END +SET [Description] = 'Northern Ping Chinese', [Definition] = NULL, [SortOrder] = 5085.00 WHERE [Code] = 'cnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pej', 'Northern Pomo', NULL, 507.40) END +VALUES ('pej', 'Northern Pomo', NULL, 5086.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pomo', [Definition] = NULL, [SortOrder] = 507.40 WHERE [Code] = 'pej' END +SET [Description] = 'Northern Pomo', [Definition] = NULL, [SortOrder] = 5086.00 WHERE [Code] = 'pej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncj', 'Northern Puebla Nahuatl', NULL, 507.50) END +VALUES ('ncj', 'Northern Puebla Nahuatl', NULL, 5087.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 507.50 WHERE [Code] = 'ncj' END +SET [Description] = 'Northern Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 5087.00 WHERE [Code] = 'ncj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmi', 'Northern Pumi', NULL, 507.60) END +VALUES ('pmi', 'Northern Pumi', NULL, 5088.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pumi', [Definition] = NULL, [SortOrder] = 507.60 WHERE [Code] = 'pmi' END +SET [Description] = 'Northern Pumi', [Definition] = NULL, [SortOrder] = 5088.00 WHERE [Code] = 'pmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hea', 'Northern Qiandong Miao', NULL, 507.70) END +VALUES ('hea', 'Northern Qiandong Miao', NULL, 5089.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Qiandong Miao', [Definition] = NULL, [SortOrder] = 507.70 WHERE [Code] = 'hea' END +SET [Description] = 'Northern Qiandong Miao', [Definition] = NULL, [SortOrder] = 5089.00 WHERE [Code] = 'hea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cng', 'Northern Qiang', NULL, 507.80) END +VALUES ('cng', 'Northern Qiang', NULL, 5090.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Qiang', [Definition] = NULL, [SortOrder] = 507.80 WHERE [Code] = 'cng' END +SET [Description] = 'Northern Qiang', [Definition] = NULL, [SortOrder] = 5090.00 WHERE [Code] = 'cng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnl', 'Northern Rengma Naga', NULL, 507.90) END +VALUES ('nnl', 'Northern Rengma Naga', NULL, 5091.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Rengma Naga', [Definition] = NULL, [SortOrder] = 507.90 WHERE [Code] = 'nnl' END +SET [Description] = 'Northern Rengma Naga', [Definition] = NULL, [SortOrder] = 5091.00 WHERE [Code] = 'nnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rog', 'Northern Roglai', NULL, 508.00) END +VALUES ('rog', 'Northern Roglai', NULL, 5092.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Roglai', [Definition] = NULL, [SortOrder] = 508.00 WHERE [Code] = 'rog' END +SET [Description] = 'Northern Roglai', [Definition] = NULL, [SortOrder] = 5092.00 WHERE [Code] = 'rog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sme', 'Northern Sami', NULL, 508.10) END +VALUES ('sme', 'Northern Sami', NULL, 5093.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Sami', [Definition] = NULL, [SortOrder] = 508.10 WHERE [Code] = 'sme' END +SET [Description] = 'Northern Sami', [Definition] = NULL, [SortOrder] = 5093.00 WHERE [Code] = 'sme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsq', 'Northern Sierra Miwok', NULL, 508.20) END +VALUES ('nsq', 'Northern Sierra Miwok', NULL, 5094.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Sierra Miwok', [Definition] = NULL, [SortOrder] = 508.20 WHERE [Code] = 'nsq' END +SET [Description] = 'Northern Sierra Miwok', [Definition] = NULL, [SortOrder] = 5094.00 WHERE [Code] = 'nsq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bks', 'Northern Sorsoganon', NULL, 508.30) END +VALUES ('bks', 'Northern Sorsoganon', NULL, 5095.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Sorsoganon', [Definition] = NULL, [SortOrder] = 508.30 WHERE [Code] = 'bks' END +SET [Description] = 'Northern Sorsoganon', [Definition] = NULL, [SortOrder] = 5095.00 WHERE [Code] = 'bks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stb', 'Northern Subanen', NULL, 508.40) END +VALUES ('stb', 'Northern Subanen', NULL, 5096.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Subanen', [Definition] = NULL, [SortOrder] = 508.40 WHERE [Code] = 'stb' END +SET [Description] = 'Northern Subanen', [Definition] = NULL, [SortOrder] = 5096.00 WHERE [Code] = 'stb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thh', 'Northern Tarahumara', NULL, 508.50) END +VALUES ('thh', 'Northern Tarahumara', NULL, 5097.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tarahumara', [Definition] = NULL, [SortOrder] = 508.50 WHERE [Code] = 'thh' END +SET [Description] = 'Northern Tarahumara', [Definition] = NULL, [SortOrder] = 5097.00 WHERE [Code] = 'thh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpv', 'Northern Tasmanian', NULL, 508.60) END +VALUES ('xpv', 'Northern Tasmanian', NULL, 5098.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tasmanian', [Definition] = NULL, [SortOrder] = 508.60 WHERE [Code] = 'xpv' END +SET [Description] = 'Northern Tasmanian', [Definition] = NULL, [SortOrder] = 5098.00 WHERE [Code] = 'xpv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntp', 'Northern Tepehuan', NULL, 508.70) END +VALUES ('ntp', 'Northern Tepehuan', NULL, 5099.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tepehuan', [Definition] = NULL, [SortOrder] = 508.70 WHERE [Code] = 'ntp' END +SET [Description] = 'Northern Tepehuan', [Definition] = NULL, [SortOrder] = 5099.00 WHERE [Code] = 'ntp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nod', 'Northern Thai', NULL, 508.80) END +VALUES ('nod', 'Northern Thai', NULL, 5100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Thai', [Definition] = NULL, [SortOrder] = 508.80 WHERE [Code] = 'nod' END +SET [Description] = 'Northern Thai', [Definition] = NULL, [SortOrder] = 5100.00 WHERE [Code] = 'nod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntd', 'Northern Tidung', NULL, 508.90) END +VALUES ('ntd', 'Northern Tidung', NULL, 5101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tidung', [Definition] = NULL, [SortOrder] = 508.90 WHERE [Code] = 'ntd' END +SET [Description] = 'Northern Tidung', [Definition] = NULL, [SortOrder] = 5101.00 WHERE [Code] = 'ntd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twf', 'Northern Tiwa', NULL, 509.00) END +VALUES ('twf', 'Northern Tiwa', NULL, 5102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tiwa', [Definition] = NULL, [SortOrder] = 509.00 WHERE [Code] = 'twf' END +SET [Description] = 'Northern Tiwa', [Definition] = NULL, [SortOrder] = 5102.00 WHERE [Code] = 'twf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtn', 'Northern Tlaxiaco Mixtec', NULL, 509.10) END +VALUES ('xtn', 'Northern Tlaxiaco Mixtec', NULL, 5103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tlaxiaco Mixtec', [Definition] = NULL, [SortOrder] = 509.10 WHERE [Code] = 'xtn' END +SET [Description] = 'Northern Tlaxiaco Mixtec', [Definition] = NULL, [SortOrder] = 5103.00 WHERE [Code] = 'xtn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsp', 'Northern Toussian', NULL, 509.20) END +VALUES ('tsp', 'Northern Toussian', NULL, 5104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Toussian', [Definition] = NULL, [SortOrder] = 509.20 WHERE [Code] = 'tsp' END +SET [Description] = 'Northern Toussian', [Definition] = NULL, [SortOrder] = 5104.00 WHERE [Code] = 'tsp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tji', 'Northern Tujia', NULL, 509.30) END +VALUES ('tji', 'Northern Tujia', NULL, 5105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tujia', [Definition] = NULL, [SortOrder] = 509.30 WHERE [Code] = 'tji' END +SET [Description] = 'Northern Tujia', [Definition] = NULL, [SortOrder] = 5105.00 WHERE [Code] = 'tji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttm', 'Northern Tutchone', NULL, 509.40) END +VALUES ('ttm', 'Northern Tutchone', NULL, 5106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tutchone', [Definition] = NULL, [SortOrder] = 509.40 WHERE [Code] = 'ttm' END +SET [Description] = 'Northern Tutchone', [Definition] = NULL, [SortOrder] = 5106.00 WHERE [Code] = 'ttm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uzn', 'Northern Uzbek', NULL, 509.50) END +VALUES ('uzn', 'Northern Uzbek', NULL, 5107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Uzbek', [Definition] = NULL, [SortOrder] = 509.50 WHERE [Code] = 'uzn' END +SET [Description] = 'Northern Uzbek', [Definition] = NULL, [SortOrder] = 5107.00 WHERE [Code] = 'uzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykg', 'Northern Yukaghir', NULL, 509.60) END +VALUES ('ykg', 'Northern Yukaghir', NULL, 5108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Yukaghir', [Definition] = NULL, [SortOrder] = 509.60 WHERE [Code] = 'ykg' END +SET [Description] = 'Northern Yukaghir', [Definition] = NULL, [SortOrder] = 5108.00 WHERE [Code] = 'ykg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esk', 'Northwest Alaska Inupiatun', NULL, 509.70) END +VALUES ('esk', 'Northwest Alaska Inupiatun', NULL, 5109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Alaska Inupiatun', [Definition] = NULL, [SortOrder] = 509.70 WHERE [Code] = 'esk' END +SET [Description] = 'Northwest Alaska Inupiatun', [Definition] = NULL, [SortOrder] = 5109.00 WHERE [Code] = 'esk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gya', 'Northwest Gbaya', NULL, 509.80) END +VALUES ('gya', 'Northwest Gbaya', NULL, 5110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Gbaya', [Definition] = NULL, [SortOrder] = 509.80 WHERE [Code] = 'gya' END +SET [Description] = 'Northwest Gbaya', [Definition] = NULL, [SortOrder] = 5110.00 WHERE [Code] = 'gya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjd', 'Northwest Maidu', NULL, 509.90) END +VALUES ('mjd', 'Northwest Maidu', NULL, 5111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Maidu', [Definition] = NULL, [SortOrder] = 509.90 WHERE [Code] = 'mjd' END +SET [Description] = 'Northwest Maidu', [Definition] = NULL, [SortOrder] = 5111.00 WHERE [Code] = 'mjd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxa', 'Northwest Oaxaca Mixtec', NULL, 510.00) END +VALUES ('mxa', 'Northwest Oaxaca Mixtec', NULL, 5112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Oaxaca Mixtec', [Definition] = NULL, [SortOrder] = 510.00 WHERE [Code] = 'mxa' END +SET [Description] = 'Northwest Oaxaca Mixtec', [Definition] = NULL, [SortOrder] = 5112.00 WHERE [Code] = 'mxa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glh', 'Northwest Pashai', NULL, 510.10) END +VALUES ('glh', 'Northwest Pashai', NULL, 5113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Pashai', [Definition] = NULL, [SortOrder] = 510.10 WHERE [Code] = 'glh' END +SET [Description] = 'Northwest Pashai', [Definition] = NULL, [SortOrder] = 5113.00 WHERE [Code] = 'glh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diw', 'Northwestern Dinka', NULL, 510.20) END +VALUES ('diw', 'Northwestern Dinka', NULL, 5114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Dinka', [Definition] = NULL, [SortOrder] = 510.20 WHERE [Code] = 'diw' END +SET [Description] = 'Northwestern Dinka', [Definition] = NULL, [SortOrder] = 5114.00 WHERE [Code] = 'diw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'faz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('faz', 'Northwestern Fars', NULL, 510.30) END +VALUES ('faz', 'Northwestern Fars', NULL, 5115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Fars', [Definition] = NULL, [SortOrder] = 510.30 WHERE [Code] = 'faz' END +SET [Description] = 'Northwestern Fars', [Definition] = NULL, [SortOrder] = 5115.00 WHERE [Code] = 'faz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfb', 'Northwestern Kolami', NULL, 510.40) END +VALUES ('kfb', 'Northwestern Kolami', NULL, 5116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Kolami', [Definition] = NULL, [SortOrder] = 510.40 WHERE [Code] = 'kfb' END +SET [Description] = 'Northwestern Kolami', [Definition] = NULL, [SortOrder] = 5116.00 WHERE [Code] = 'kfb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsf', 'Northwestern Nisu', NULL, 510.50) END +VALUES ('nsf', 'Northwestern Nisu', NULL, 5117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Nisu', [Definition] = NULL, [SortOrder] = 510.50 WHERE [Code] = 'nsf' END +SET [Description] = 'Northwestern Nisu', [Definition] = NULL, [SortOrder] = 5117.00 WHERE [Code] = 'nsf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojb', 'Northwestern Ojibwa', NULL, 510.60) END +VALUES ('ojb', 'Northwestern Ojibwa', NULL, 5118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Ojibwa', [Definition] = NULL, [SortOrder] = 510.60 WHERE [Code] = 'ojb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmk', 'Northwestern Tamang', NULL, 510.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Tamang', [Definition] = NULL, [SortOrder] = 510.70 WHERE [Code] = 'tmk' END +SET [Description] = 'Northwestern Ojibwa', [Definition] = NULL, [SortOrder] = 5118.00 WHERE [Code] = 'ojb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpw', 'Northwestern Tasmanian', NULL, 510.80) END +VALUES ('xpw', 'Northwestern Tasmanian', NULL, 5119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Tasmanian', [Definition] = NULL, [SortOrder] = 510.80 WHERE [Code] = 'xpw' END +SET [Description] = 'Northwestern Tasmanian', [Definition] = NULL, [SortOrder] = 5119.00 WHERE [Code] = 'xpw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nor', 'Norwegian', NULL, 510.90) END +VALUES ('nor', 'Norwegian', NULL, 5120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norwegian', [Definition] = NULL, [SortOrder] = 510.90 WHERE [Code] = 'nor' END +SET [Description] = 'Norwegian', [Definition] = NULL, [SortOrder] = 5120.00 WHERE [Code] = 'nor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nob', 'Norwegian Bokmål', NULL, 511.00) END +VALUES ('nob', 'Norwegian Bokmål', NULL, 5121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norwegian Bokmål', [Definition] = NULL, [SortOrder] = 511.00 WHERE [Code] = 'nob' END +SET [Description] = 'Norwegian Bokmål', [Definition] = NULL, [SortOrder] = 5121.00 WHERE [Code] = 'nob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nno', 'Norwegian Nynorsk', NULL, 511.10) END +VALUES ('nno', 'Norwegian Nynorsk', NULL, 5122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norwegian Nynorsk', [Definition] = NULL, [SortOrder] = 511.10 WHERE [Code] = 'nno' END +SET [Description] = 'Norwegian Nynorsk', [Definition] = NULL, [SortOrder] = 5122.00 WHERE [Code] = 'nno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsl', 'Norwegian Sign Language', NULL, 511.20) END +VALUES ('nsl', 'Norwegian Sign Language', NULL, 5123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norwegian Sign Language', [Definition] = NULL, [SortOrder] = 511.20 WHERE [Code] = 'nsl' END +SET [Description] = 'Norwegian Sign Language', [Definition] = NULL, [SortOrder] = 5123.00 WHERE [Code] = 'nsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bly', 'Notre', NULL, 511.30) END +VALUES ('bly', 'Notre', NULL, 5124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Notre', [Definition] = NULL, [SortOrder] = 511.30 WHERE [Code] = 'bly' END +SET [Description] = 'Notre', [Definition] = NULL, [SortOrder] = 5124.00 WHERE [Code] = 'bly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncf', 'Notsi', NULL, 511.40) END +VALUES ('ncf', 'Notsi', NULL, 5125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Notsi', [Definition] = NULL, [SortOrder] = 511.40 WHERE [Code] = 'ncf' END +SET [Description] = 'Notsi', [Definition] = NULL, [SortOrder] = 5125.00 WHERE [Code] = 'ncf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntw', 'Nottoway', NULL, 511.50) END +VALUES ('ntw', 'Nottoway', NULL, 5126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nottoway', [Definition] = NULL, [SortOrder] = 511.50 WHERE [Code] = 'ntw' END +SET [Description] = 'Nottoway', [Definition] = NULL, [SortOrder] = 5126.00 WHERE [Code] = 'ntw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwy', 'Nottoway-Meherrin', NULL, 511.60) END +VALUES ('nwy', 'Nottoway-Meherrin', NULL, 5127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nottoway-Meherrin', [Definition] = NULL, [SortOrder] = 511.60 WHERE [Code] = 'nwy' END +SET [Description] = 'Nottoway-Meherrin', [Definition] = NULL, [SortOrder] = 5127.00 WHERE [Code] = 'nwy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nov', 'Novial', NULL, 511.70) END +VALUES ('nov', 'Novial', NULL, 5128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Novial', [Definition] = NULL, [SortOrder] = 511.70 WHERE [Code] = 'nov' END +SET [Description] = 'Novial', [Definition] = NULL, [SortOrder] = 5128.00 WHERE [Code] = 'nov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noy', 'Noy', NULL, 511.80) END +VALUES ('noy', 'Noy', NULL, 5129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noy', [Definition] = NULL, [SortOrder] = 511.80 WHERE [Code] = 'noy' END +SET [Description] = 'Noy', [Definition] = NULL, [SortOrder] = 5129.00 WHERE [Code] = 'noy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nse', 'Nsenga', NULL, 511.90) END +VALUES ('nse', 'Nsenga', NULL, 5130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nsenga', [Definition] = NULL, [SortOrder] = 511.90 WHERE [Code] = 'nse' END +SET [Description] = 'Nsenga', [Definition] = NULL, [SortOrder] = 5130.00 WHERE [Code] = 'nse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsc', 'Nshi', NULL, 512.00) END +VALUES ('nsc', 'Nshi', NULL, 5131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nshi', [Definition] = NULL, [SortOrder] = 512.00 WHERE [Code] = 'nsc' END +SET [Description] = 'Nshi', [Definition] = NULL, [SortOrder] = 5131.00 WHERE [Code] = 'nsc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsx', 'Nsongo', NULL, 512.10) END +VALUES ('nsx', 'Nsongo', NULL, 5132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nsongo', [Definition] = NULL, [SortOrder] = 512.10 WHERE [Code] = 'nsx' END +SET [Description] = 'Nsongo', [Definition] = NULL, [SortOrder] = 5132.00 WHERE [Code] = 'nsx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bud', 'Ntcham', NULL, 512.20) END +VALUES ('bud', 'Ntcham', NULL, 5133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ntcham', [Definition] = NULL, [SortOrder] = 512.20 WHERE [Code] = 'bud' END +SET [Description] = 'Ntcham', [Definition] = NULL, [SortOrder] = 5133.00 WHERE [Code] = 'bud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqt', 'Nteng', NULL, 512.30) END +VALUES ('nqt', 'Nteng', NULL, 5134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nteng', [Definition] = NULL, [SortOrder] = 512.30 WHERE [Code] = 'nqt' END +SET [Description] = 'Nteng', [Definition] = NULL, [SortOrder] = 5134.00 WHERE [Code] = 'nqt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nto', 'Ntomba', NULL, 512.40) END +VALUES ('nto', 'Ntomba', NULL, 5135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ntomba', [Definition] = NULL, [SortOrder] = 512.40 WHERE [Code] = 'nto' END +SET [Description] = 'Ntomba', [Definition] = NULL, [SortOrder] = 5135.00 WHERE [Code] = 'nto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'baf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baf', 'Nubaca', NULL, 512.50) END +VALUES ('baf', 'Nubaca', NULL, 5136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nubaca', [Definition] = NULL, [SortOrder] = 512.50 WHERE [Code] = 'baf' END +SET [Description] = 'Nubaca', [Definition] = NULL, [SortOrder] = 5136.00 WHERE [Code] = 'baf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcn', 'Nubi', NULL, 512.60) END +VALUES ('kcn', 'Nubi', NULL, 5137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nubi', [Definition] = NULL, [SortOrder] = 512.60 WHERE [Code] = 'kcn' END +SET [Description] = 'Nubi', [Definition] = NULL, [SortOrder] = 5137.00 WHERE [Code] = 'kcn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kte', 'Nubri', NULL, 512.70) END +VALUES ('kte', 'Nubri', NULL, 5138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nubri', [Definition] = NULL, [SortOrder] = 512.70 WHERE [Code] = 'kte' END +SET [Description] = 'Nubri', [Definition] = NULL, [SortOrder] = 5138.00 WHERE [Code] = 'kte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nus', 'Nuer', NULL, 512.80) END +VALUES ('nus', 'Nuer', NULL, 5139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nuer', [Definition] = NULL, [SortOrder] = 512.80 WHERE [Code] = 'nus' END +SET [Description] = 'Nuer', [Definition] = NULL, [SortOrder] = 5139.00 WHERE [Code] = 'nus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnv', 'Nugunu (Australia)', NULL, 512.90) END +VALUES ('nnv', 'Nugunu (Australia)', NULL, 5140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nugunu (Australia)', [Definition] = NULL, [SortOrder] = 512.90 WHERE [Code] = 'nnv' END +SET [Description] = 'Nugunu (Australia)', [Definition] = NULL, [SortOrder] = 5140.00 WHERE [Code] = 'nnv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yas', 'Nugunu (Cameroon)', NULL, 513.00) END +VALUES ('yas', 'Nugunu (Cameroon)', NULL, 5141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nugunu (Cameroon)', [Definition] = NULL, [SortOrder] = 513.00 WHERE [Code] = 'yas' END +SET [Description] = 'Nugunu (Cameroon)', [Definition] = NULL, [SortOrder] = 5141.00 WHERE [Code] = 'yas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noc', 'Nuk', NULL, 513.10) END +VALUES ('noc', 'Nuk', NULL, 5142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nuk', [Definition] = NULL, [SortOrder] = 513.10 WHERE [Code] = 'noc' END +SET [Description] = 'Nuk', [Definition] = NULL, [SortOrder] = 5142.00 WHERE [Code] = 'noc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbr', 'Nukak Makú', NULL, 513.20) END +VALUES ('mbr', 'Nukak Makú', NULL, 5143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukak Makú', [Definition] = NULL, [SortOrder] = 513.20 WHERE [Code] = 'mbr' END +SET [Description] = 'Nukak Makú', [Definition] = NULL, [SortOrder] = 5143.00 WHERE [Code] = 'mbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klt', 'Nukna', NULL, 513.30) END +VALUES ('klt', 'Nukna', NULL, 5144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukna', [Definition] = NULL, [SortOrder] = 513.30 WHERE [Code] = 'klt' END +SET [Description] = 'Nukna', [Definition] = NULL, [SortOrder] = 5144.00 WHERE [Code] = 'klt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuc', 'Nukuini', NULL, 513.40) END +VALUES ('nuc', 'Nukuini', NULL, 5145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukuini', [Definition] = NULL, [SortOrder] = 513.40 WHERE [Code] = 'nuc' END +SET [Description] = 'Nukuini', [Definition] = NULL, [SortOrder] = 5145.00 WHERE [Code] = 'nuc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuq', 'Nukumanu', NULL, 513.50) END +VALUES ('nuq', 'Nukumanu', NULL, 5146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukumanu', [Definition] = NULL, [SortOrder] = 513.50 WHERE [Code] = 'nuq' END +SET [Description] = 'Nukumanu', [Definition] = NULL, [SortOrder] = 5146.00 WHERE [Code] = 'nuq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnu', 'Nukunul', NULL, 513.60) END +VALUES ('xnu', 'Nukunul', NULL, 5147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukunul', [Definition] = NULL, [SortOrder] = 513.60 WHERE [Code] = 'xnu' END +SET [Description] = 'Nukunul', [Definition] = NULL, [SortOrder] = 5147.00 WHERE [Code] = 'xnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkr', 'Nukuoro', NULL, 513.70) END +VALUES ('nkr', 'Nukuoro', NULL, 5148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukuoro', [Definition] = NULL, [SortOrder] = 513.70 WHERE [Code] = 'nkr' END +SET [Description] = 'Nukuoro', [Definition] = NULL, [SortOrder] = 5148.00 WHERE [Code] = 'nkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nur', 'Nukuria', NULL, 513.80) END +VALUES ('nur', 'Nukuria', NULL, 5149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukuria', [Definition] = NULL, [SortOrder] = 513.80 WHERE [Code] = 'nur' END +SET [Description] = 'Nukuria', [Definition] = NULL, [SortOrder] = 5149.00 WHERE [Code] = 'nur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbr', 'Numana', NULL, 513.90) END +VALUES ('nbr', 'Numana', NULL, 5150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numana', [Definition] = NULL, [SortOrder] = 513.90 WHERE [Code] = 'nbr' END +SET [Description] = 'Numana', [Definition] = NULL, [SortOrder] = 5150.00 WHERE [Code] = 'nbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nop', 'Numanggang', NULL, 514.00) END +VALUES ('nop', 'Numanggang', NULL, 5151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numanggang', [Definition] = NULL, [SortOrder] = 514.00 WHERE [Code] = 'nop' END +SET [Description] = 'Numanggang', [Definition] = NULL, [SortOrder] = 5151.00 WHERE [Code] = 'nop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sij', 'Numbami', NULL, 514.10) END +VALUES ('sij', 'Numbami', NULL, 5152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numbami', [Definition] = NULL, [SortOrder] = 514.10 WHERE [Code] = 'sij' END +SET [Description] = 'Numbami', [Definition] = NULL, [SortOrder] = 5152.00 WHERE [Code] = 'sij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgs', 'Nume', NULL, 514.20) END +VALUES ('tgs', 'Nume', NULL, 5153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nume', [Definition] = NULL, [SortOrder] = 514.20 WHERE [Code] = 'tgs' END +SET [Description] = 'Nume', [Definition] = NULL, [SortOrder] = 5153.00 WHERE [Code] = 'tgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdk', 'Numèè', NULL, 514.30) END +VALUES ('kdk', 'Numèè', NULL, 5154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numèè', [Definition] = NULL, [SortOrder] = 514.30 WHERE [Code] = 'kdk' END +SET [Description] = 'Numèè', [Definition] = NULL, [SortOrder] = 5154.00 WHERE [Code] = 'kdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxm', 'Numidian', NULL, 514.40) END +VALUES ('nxm', 'Numidian', NULL, 5155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numidian', [Definition] = NULL, [SortOrder] = 514.40 WHERE [Code] = 'nxm' END +SET [Description] = 'Numidian', [Definition] = NULL, [SortOrder] = 5155.00 WHERE [Code] = 'nxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nut', 'Nung (Viet Nam)', NULL, 514.50) END +VALUES ('nut', 'Nung (Viet Nam)', NULL, 5156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nung (Viet Nam)', [Definition] = NULL, [SortOrder] = 514.50 WHERE [Code] = 'nut' END +SET [Description] = 'Nung (Viet Nam)', [Definition] = NULL, [SortOrder] = 5156.00 WHERE [Code] = 'nut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nug', 'Nungali', NULL, 514.60) END +VALUES ('nug', 'Nungali', NULL, 5157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nungali', [Definition] = NULL, [SortOrder] = 514.60 WHERE [Code] = 'nug' END +SET [Description] = 'Nungali', [Definition] = NULL, [SortOrder] = 5157.00 WHERE [Code] = 'nug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuy', 'Nunggubuyu', NULL, 514.70) END +VALUES ('nuy', 'Nunggubuyu', NULL, 5158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nunggubuyu', [Definition] = NULL, [SortOrder] = 514.70 WHERE [Code] = 'nuy' END +SET [Description] = 'Nunggubuyu', [Definition] = NULL, [SortOrder] = 5158.00 WHERE [Code] = 'nuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rin', 'Nungu', NULL, 514.80) END +VALUES ('rin', 'Nungu', NULL, 5159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nungu', [Definition] = NULL, [SortOrder] = 514.80 WHERE [Code] = 'rin' END +SET [Description] = 'Nungu', [Definition] = NULL, [SortOrder] = 5159.00 WHERE [Code] = 'rin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npb', 'Nupbikha', NULL, 514.90) END +VALUES ('npb', 'Nupbikha', NULL, 5160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nupbikha', [Definition] = NULL, [SortOrder] = 514.90 WHERE [Code] = 'npb' END +SET [Description] = 'Nupbikha', [Definition] = NULL, [SortOrder] = 5160.00 WHERE [Code] = 'npb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nup', 'Nupe-Nupe-Tako', NULL, 515.00) END +VALUES ('nup', 'Nupe-Nupe-Tako', NULL, 5161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nupe-Nupe-Tako', [Definition] = NULL, [SortOrder] = 515.00 WHERE [Code] = 'nup' END +SET [Description] = 'Nupe-Nupe-Tako', [Definition] = NULL, [SortOrder] = 5161.00 WHERE [Code] = 'nup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hux', 'Nüpode Huitoto', NULL, 515.10) END +VALUES ('hux', 'Nüpode Huitoto', NULL, 5162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nüpode Huitoto', [Definition] = NULL, [SortOrder] = 515.10 WHERE [Code] = 'hux' END +SET [Description] = 'Nüpode Huitoto', [Definition] = NULL, [SortOrder] = 5162.00 WHERE [Code] = 'hux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nul', 'Nusa Laut', NULL, 515.20) END +VALUES ('nul', 'Nusa Laut', NULL, 5163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nusa Laut', [Definition] = NULL, [SortOrder] = 515.20 WHERE [Code] = 'nul' END +SET [Description] = 'Nusa Laut', [Definition] = NULL, [SortOrder] = 5163.00 WHERE [Code] = 'nul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuf', 'Nusu', NULL, 515.30) END +VALUES ('nuf', 'Nusu', NULL, 5164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nusu', [Definition] = NULL, [SortOrder] = 515.30 WHERE [Code] = 'nuf' END +SET [Description] = 'Nusu', [Definition] = NULL, [SortOrder] = 5164.00 WHERE [Code] = 'nuf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuk', 'Nuu-chah-nulth', NULL, 515.40) END +VALUES ('nuk', 'Nuu-chah-nulth', NULL, 5165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nuu-chah-nulth', [Definition] = NULL, [SortOrder] = 515.40 WHERE [Code] = 'nuk' END +SET [Description] = 'Nuu-chah-nulth', [Definition] = NULL, [SortOrder] = 5165.00 WHERE [Code] = 'nuk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwb', 'Nyabwa', NULL, 515.50) END +VALUES ('nwb', 'Nyabwa', NULL, 5166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyabwa', [Definition] = NULL, [SortOrder] = 515.50 WHERE [Code] = 'nwb' END +SET [Description] = 'Nyabwa', [Definition] = NULL, [SortOrder] = 5166.00 WHERE [Code] = 'nwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nev', 'Nyaheun', NULL, 515.60) END +VALUES ('nev', 'Nyaheun', NULL, 5167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyaheun', [Definition] = NULL, [SortOrder] = 515.60 WHERE [Code] = 'nev' END +SET [Description] = 'Nyaheun', [Definition] = NULL, [SortOrder] = 5167.00 WHERE [Code] = 'nev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbn', 'Nyahkur', NULL, 515.70) END +VALUES ('cbn', 'Nyahkur', NULL, 5168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyahkur', [Definition] = NULL, [SortOrder] = 515.70 WHERE [Code] = 'cbn' END +SET [Description] = 'Nyahkur', [Definition] = NULL, [SortOrder] = 5168.00 WHERE [Code] = 'cbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyy', 'Nyakyusa-Ngonde', NULL, 515.80) END +VALUES ('nyy', 'Nyakyusa-Ngonde', NULL, 5169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyakyusa-Ngonde', [Definition] = NULL, [SortOrder] = 515.80 WHERE [Code] = 'nyy' END +SET [Description] = 'Nyakyusa-Ngonde', [Definition] = NULL, [SortOrder] = 5169.00 WHERE [Code] = 'nyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yly', 'Nyâlayu', NULL, 515.90) END +VALUES ('yly', 'Nyâlayu', NULL, 5170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyâlayu', [Definition] = NULL, [SortOrder] = 515.90 WHERE [Code] = 'yly' END +SET [Description] = 'Nyâlayu', [Definition] = NULL, [SortOrder] = 5170.00 WHERE [Code] = 'yly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlj', 'Nyali', NULL, 516.00) END +VALUES ('nlj', 'Nyali', NULL, 5171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyali', [Definition] = NULL, [SortOrder] = 516.00 WHERE [Code] = 'nlj' END +SET [Description] = 'Nyali', [Definition] = NULL, [SortOrder] = 5171.00 WHERE [Code] = 'nlj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmi', 'Nyam', NULL, 516.10) END +VALUES ('nmi', 'Nyam', NULL, 5172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyam', [Definition] = NULL, [SortOrder] = 516.10 WHERE [Code] = 'nmi' END +SET [Description] = 'Nyam', [Definition] = NULL, [SortOrder] = 5172.00 WHERE [Code] = 'nmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nly', 'Nyamal', NULL, 516.20) END +VALUES ('nly', 'Nyamal', NULL, 5173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyamal', [Definition] = NULL, [SortOrder] = 516.20 WHERE [Code] = 'nly' END +SET [Description] = 'Nyamal', [Definition] = NULL, [SortOrder] = 5173.00 WHERE [Code] = 'nly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'now') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('now', 'Nyambo', NULL, 516.30) END +VALUES ('now', 'Nyambo', NULL, 5174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyambo', [Definition] = NULL, [SortOrder] = 516.30 WHERE [Code] = 'now' END +SET [Description] = 'Nyambo', [Definition] = NULL, [SortOrder] = 5174.00 WHERE [Code] = 'now' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwm', 'Nyamusa-Molo', NULL, 516.40) END +VALUES ('nwm', 'Nyamusa-Molo', NULL, 5175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyamusa-Molo', [Definition] = NULL, [SortOrder] = 516.40 WHERE [Code] = 'nwm' END +SET [Description] = 'Nyamusa-Molo', [Definition] = NULL, [SortOrder] = 5175.00 WHERE [Code] = 'nwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwn', 'Nyamwanga', NULL, 516.50) END +VALUES ('mwn', 'Nyamwanga', NULL, 5176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyamwanga', [Definition] = NULL, [SortOrder] = 516.50 WHERE [Code] = 'mwn' END +SET [Description] = 'Nyamwanga', [Definition] = NULL, [SortOrder] = 5176.00 WHERE [Code] = 'mwn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nym', 'Nyamwezi', NULL, 516.60) END +VALUES ('nym', 'Nyamwezi', NULL, 5177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyamwezi', [Definition] = NULL, [SortOrder] = 516.60 WHERE [Code] = 'nym' END +SET [Description] = 'Nyamwezi', [Definition] = NULL, [SortOrder] = 5177.00 WHERE [Code] = 'nym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyk', 'Nyaneka', NULL, 516.70) END +VALUES ('nyk', 'Nyaneka', NULL, 5178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyaneka', [Definition] = NULL, [SortOrder] = 516.70 WHERE [Code] = 'nyk' END +SET [Description] = 'Nyaneka', [Definition] = NULL, [SortOrder] = 5178.00 WHERE [Code] = 'nyk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyp', 'Nyang''i', NULL, 516.80) END +VALUES ('nyp', 'Nyang''i', NULL, 5179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyang''i', [Definition] = NULL, [SortOrder] = 516.80 WHERE [Code] = 'nyp' END +SET [Description] = 'Nyang''i', [Definition] = NULL, [SortOrder] = 5179.00 WHERE [Code] = 'nyp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyj', 'Nyanga', NULL, 516.90) END +VALUES ('nyj', 'Nyanga', NULL, 5180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyanga', [Definition] = NULL, [SortOrder] = 516.90 WHERE [Code] = 'nyj' END +SET [Description] = 'Nyanga', [Definition] = NULL, [SortOrder] = 5180.00 WHERE [Code] = 'nyj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyc', 'Nyanga-li', NULL, 517.00) END +VALUES ('nyc', 'Nyanga-li', NULL, 5181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyanga-li', [Definition] = NULL, [SortOrder] = 517.00 WHERE [Code] = 'nyc' END +SET [Description] = 'Nyanga-li', [Definition] = NULL, [SortOrder] = 5181.00 WHERE [Code] = 'nyc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnj', 'Nyangatom', NULL, 517.10) END +VALUES ('nnj', 'Nyangatom', NULL, 5182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyangatom', [Definition] = NULL, [SortOrder] = 517.10 WHERE [Code] = 'nnj' END +SET [Description] = 'Nyangatom', [Definition] = NULL, [SortOrder] = 5182.00 WHERE [Code] = 'nnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyb', 'Nyangbo', NULL, 517.20) END +VALUES ('nyb', 'Nyangbo', NULL, 5183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyangbo', [Definition] = NULL, [SortOrder] = 517.20 WHERE [Code] = 'nyb' END +SET [Description] = 'Nyangbo', [Definition] = NULL, [SortOrder] = 5183.00 WHERE [Code] = 'nyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nny', 'Nyangga', NULL, 517.30) END +VALUES ('nny', 'Nyangga', NULL, 5184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyangga', [Definition] = NULL, [SortOrder] = 517.30 WHERE [Code] = 'nny' END +SET [Description] = 'Nyangga', [Definition] = NULL, [SortOrder] = 5184.00 WHERE [Code] = 'nny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nna', 'Nyangumarta', NULL, 517.40) END +VALUES ('nna', 'Nyangumarta', NULL, 5185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyangumarta', [Definition] = NULL, [SortOrder] = 517.40 WHERE [Code] = 'nna' END +SET [Description] = 'Nyangumarta', [Definition] = NULL, [SortOrder] = 5185.00 WHERE [Code] = 'nna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nya', 'Nyanja', NULL, 517.50) END +VALUES ('nya', 'Nyanja', NULL, 5186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyanja', [Definition] = NULL, [SortOrder] = 517.50 WHERE [Code] = 'nya' END +SET [Description] = 'Nyanja', [Definition] = NULL, [SortOrder] = 5186.00 WHERE [Code] = 'nya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyn', 'Nyankole', NULL, 517.60) END +VALUES ('nyn', 'Nyankole', NULL, 5187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyankole', [Definition] = NULL, [SortOrder] = 517.60 WHERE [Code] = 'nyn' END +SET [Description] = 'Nyankole', [Definition] = NULL, [SortOrder] = 5187.00 WHERE [Code] = 'nyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yes', 'Nyankpa', NULL, 517.70) END +VALUES ('yes', 'Nyankpa', NULL, 5188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyankpa', [Definition] = NULL, [SortOrder] = 517.70 WHERE [Code] = 'yes' END +SET [Description] = 'Nyankpa', [Definition] = NULL, [SortOrder] = 5188.00 WHERE [Code] = 'yes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sev', 'Nyarafolo Senoufo', NULL, 517.80) END +VALUES ('sev', 'Nyarafolo Senoufo', NULL, 5189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyarafolo Senoufo', [Definition] = NULL, [SortOrder] = 517.80 WHERE [Code] = 'sev' END +SET [Description] = 'Nyarafolo Senoufo', [Definition] = NULL, [SortOrder] = 5189.00 WHERE [Code] = 'sev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rim', 'Nyaturu', NULL, 517.90) END +VALUES ('rim', 'Nyaturu', NULL, 5190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyaturu', [Definition] = NULL, [SortOrder] = 517.90 WHERE [Code] = 'rim' END +SET [Description] = 'Nyaturu', [Definition] = NULL, [SortOrder] = 5190.00 WHERE [Code] = 'rim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyw', 'Nyaw', NULL, 518.00) END +VALUES ('nyw', 'Nyaw', NULL, 5191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyaw', [Definition] = NULL, [SortOrder] = 518.00 WHERE [Code] = 'nyw' END +SET [Description] = 'Nyaw', [Definition] = NULL, [SortOrder] = 5191.00 WHERE [Code] = 'nyw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyt', 'Nyawaygi', NULL, 518.10) END +VALUES ('nyt', 'Nyawaygi', NULL, 5192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyawaygi', [Definition] = NULL, [SortOrder] = 518.10 WHERE [Code] = 'nyt' END +SET [Description] = 'Nyawaygi', [Definition] = NULL, [SortOrder] = 5192.00 WHERE [Code] = 'nyt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nba', 'Nyemba', NULL, 518.20) END +VALUES ('nba', 'Nyemba', NULL, 5193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyemba', [Definition] = NULL, [SortOrder] = 518.20 WHERE [Code] = 'nba' END +SET [Description] = 'Nyemba', [Definition] = NULL, [SortOrder] = 5193.00 WHERE [Code] = 'nba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nye', 'Nyengo', NULL, 518.30) END +VALUES ('nye', 'Nyengo', NULL, 5194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyengo', [Definition] = NULL, [SortOrder] = 518.30 WHERE [Code] = 'nye' END +SET [Description] = 'Nyengo', [Definition] = NULL, [SortOrder] = 5194.00 WHERE [Code] = 'nye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neh', 'Nyenkha', NULL, 518.40) END +VALUES ('neh', 'Nyenkha', NULL, 5195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyenkha', [Definition] = NULL, [SortOrder] = 518.40 WHERE [Code] = 'neh' END +SET [Description] = 'Nyenkha', [Definition] = NULL, [SortOrder] = 5195.00 WHERE [Code] = 'neh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyl', 'Nyeu', NULL, 518.50) END +VALUES ('nyl', 'Nyeu', NULL, 5196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyeu', [Definition] = NULL, [SortOrder] = 518.50 WHERE [Code] = 'nyl' END +SET [Description] = 'Nyeu', [Definition] = NULL, [SortOrder] = 5196.00 WHERE [Code] = 'nyl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyr', 'Nyiha (Malawi)', NULL, 518.60) END +VALUES ('nyr', 'Nyiha (Malawi)', NULL, 5197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyiha (Malawi)', [Definition] = NULL, [SortOrder] = 518.60 WHERE [Code] = 'nyr' END +SET [Description] = 'Nyiha (Malawi)', [Definition] = NULL, [SortOrder] = 5197.00 WHERE [Code] = 'nyr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nih', 'Nyiha (Tanzania)', NULL, 518.70) END +VALUES ('nih', 'Nyiha (Tanzania)', NULL, 5198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyiha (Tanzania)', [Definition] = NULL, [SortOrder] = 518.70 WHERE [Code] = 'nih' END +SET [Description] = 'Nyiha (Tanzania)', [Definition] = NULL, [SortOrder] = 5198.00 WHERE [Code] = 'nih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkv', 'Nyika (Malawi and Zambia)', NULL, 518.80) END +VALUES ('nkv', 'Nyika (Malawi and Zambia)', NULL, 5199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyika (Malawi and Zambia)', [Definition] = NULL, [SortOrder] = 518.80 WHERE [Code] = 'nkv' END +SET [Description] = 'Nyika (Malawi and Zambia)', [Definition] = NULL, [SortOrder] = 5199.00 WHERE [Code] = 'nkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkt', 'Nyika (Tanzania)', NULL, 518.90) END +VALUES ('nkt', 'Nyika (Tanzania)', NULL, 5200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyika (Tanzania)', [Definition] = NULL, [SortOrder] = 518.90 WHERE [Code] = 'nkt' END +SET [Description] = 'Nyika (Tanzania)', [Definition] = NULL, [SortOrder] = 5200.00 WHERE [Code] = 'nkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyh', 'Nyikina', NULL, 519.00) END +VALUES ('nyh', 'Nyikina', NULL, 5201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyikina', [Definition] = NULL, [SortOrder] = 519.00 WHERE [Code] = 'nyh' END +SET [Description] = 'Nyikina', [Definition] = NULL, [SortOrder] = 5201.00 WHERE [Code] = 'nyh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lid', 'Nyindrou', NULL, 519.10) END +VALUES ('lid', 'Nyindrou', NULL, 5202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyindrou', [Definition] = NULL, [SortOrder] = 519.10 WHERE [Code] = 'lid' END +SET [Description] = 'Nyindrou', [Definition] = NULL, [SortOrder] = 5202.00 WHERE [Code] = 'lid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyg', 'Nyindu', NULL, 519.20) END +VALUES ('nyg', 'Nyindu', NULL, 5203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyindu', [Definition] = NULL, [SortOrder] = 519.20 WHERE [Code] = 'nyg' END +SET [Description] = 'Nyindu', [Definition] = NULL, [SortOrder] = 5203.00 WHERE [Code] = 'nyg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njz', 'Nyishi', NULL, 519.30) END +VALUES ('njz', 'Nyishi', NULL, 5204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyishi', [Definition] = NULL, [SortOrder] = 519.30 WHERE [Code] = 'njz' END +SET [Description] = 'Nyishi', [Definition] = NULL, [SortOrder] = 5204.00 WHERE [Code] = 'njz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xny', 'Nyiyaparli', NULL, 519.40) END +VALUES ('xny', 'Nyiyaparli', NULL, 5205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyiyaparli', [Definition] = NULL, [SortOrder] = 519.40 WHERE [Code] = 'xny' END +SET [Description] = 'Nyiyaparli', [Definition] = NULL, [SortOrder] = 5205.00 WHERE [Code] = 'xny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nvo', 'Nyokon', NULL, 519.50) END +VALUES ('nvo', 'Nyokon', NULL, 5206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyokon', [Definition] = NULL, [SortOrder] = 519.50 WHERE [Code] = 'nvo' END +SET [Description] = 'Nyokon', [Definition] = NULL, [SortOrder] = 5206.00 WHERE [Code] = 'nvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuj', 'Nyole', NULL, 519.60) END +VALUES ('nuj', 'Nyole', NULL, 5207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyole', [Definition] = NULL, [SortOrder] = 519.60 WHERE [Code] = 'nuj' END +SET [Description] = 'Nyole', [Definition] = NULL, [SortOrder] = 5207.00 WHERE [Code] = 'nuj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muo', 'Nyong', NULL, 519.70) END +VALUES ('muo', 'Nyong', NULL, 5208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyong', [Definition] = NULL, [SortOrder] = 519.70 WHERE [Code] = 'muo' END +SET [Description] = 'Nyong', [Definition] = NULL, [SortOrder] = 5208.00 WHERE [Code] = 'muo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyd', 'Nyore', NULL, 519.80) END +VALUES ('nyd', 'Nyore', NULL, 5209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyore', [Definition] = NULL, [SortOrder] = 519.80 WHERE [Code] = 'nyd' END +SET [Description] = 'Nyore', [Definition] = NULL, [SortOrder] = 5209.00 WHERE [Code] = 'nyd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyo', 'Nyoro', NULL, 519.90) END +VALUES ('nyo', 'Nyoro', NULL, 5210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyoro', [Definition] = NULL, [SortOrder] = 519.90 WHERE [Code] = 'nyo' END +SET [Description] = 'Nyoro', [Definition] = NULL, [SortOrder] = 5210.00 WHERE [Code] = 'nyo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyv', 'Nyulnyul', NULL, 520.00) END +VALUES ('nyv', 'Nyulnyul', NULL, 5211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyulnyul', [Definition] = NULL, [SortOrder] = 520.00 WHERE [Code] = 'nyv' END +SET [Description] = 'Nyulnyul', [Definition] = NULL, [SortOrder] = 5211.00 WHERE [Code] = 'nyv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nys', 'Nyungar', NULL, 520.10) END +VALUES ('nys', 'Nyungar', NULL, 5212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyungar', [Definition] = NULL, [SortOrder] = 520.10 WHERE [Code] = 'nys' END +SET [Description] = 'Nyungar', [Definition] = NULL, [SortOrder] = 5212.00 WHERE [Code] = 'nys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyu', 'Nyungwe', NULL, 520.20) END +VALUES ('nyu', 'Nyungwe', NULL, 5213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyungwe', [Definition] = NULL, [SortOrder] = 520.20 WHERE [Code] = 'nyu' END +SET [Description] = 'Nyungwe', [Definition] = NULL, [SortOrder] = 5213.00 WHERE [Code] = 'nyu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzd', 'Nzadi', NULL, 520.30) END +VALUES ('nzd', 'Nzadi', NULL, 5214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzadi', [Definition] = NULL, [SortOrder] = 520.30 WHERE [Code] = 'nzd' END +SET [Description] = 'Nzadi', [Definition] = NULL, [SortOrder] = 5214.00 WHERE [Code] = 'nzd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzy', 'Nzakambay', NULL, 520.40) END +VALUES ('nzy', 'Nzakambay', NULL, 5215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzakambay', [Definition] = NULL, [SortOrder] = 520.40 WHERE [Code] = 'nzy' END +SET [Description] = 'Nzakambay', [Definition] = NULL, [SortOrder] = 5215.00 WHERE [Code] = 'nzy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzk', 'Nzakara', NULL, 520.50) END +VALUES ('nzk', 'Nzakara', NULL, 5216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzakara', [Definition] = NULL, [SortOrder] = 520.50 WHERE [Code] = 'nzk' END +SET [Description] = 'Nzakara', [Definition] = NULL, [SortOrder] = 5216.00 WHERE [Code] = 'nzk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nja', 'Nzanyi', NULL, 520.60) END +VALUES ('nja', 'Nzanyi', NULL, 5217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzanyi', [Definition] = NULL, [SortOrder] = 520.60 WHERE [Code] = 'nja' END +SET [Description] = 'Nzanyi', [Definition] = NULL, [SortOrder] = 5217.00 WHERE [Code] = 'nja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzi', 'Nzima', NULL, 520.70) END +VALUES ('nzi', 'Nzima', NULL, 5218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzima', [Definition] = NULL, [SortOrder] = 520.70 WHERE [Code] = 'nzi' END +SET [Description] = 'Nzima', [Definition] = NULL, [SortOrder] = 5218.00 WHERE [Code] = 'nzi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xoc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xoc', 'O''chi''chi''', NULL, 520.80) END +VALUES ('xoc', 'O''chi''chi''', NULL, 5219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'O''chi''chi''', [Definition] = NULL, [SortOrder] = 520.80 WHERE [Code] = 'xoc' END +SET [Description] = 'O''chi''chi''', [Definition] = NULL, [SortOrder] = 5219.00 WHERE [Code] = 'xoc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyh', 'O''du', NULL, 520.90) END +VALUES ('tyh', 'O''du', NULL, 5220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'O''du', [Definition] = NULL, [SortOrder] = 520.90 WHERE [Code] = 'tyh' END +SET [Description] = 'O''du', [Definition] = NULL, [SortOrder] = 5220.00 WHERE [Code] = 'tyh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzy', 'Obanliku', NULL, 521.00) END +VALUES ('bzy', 'Obanliku', NULL, 5221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obanliku', [Definition] = NULL, [SortOrder] = 521.00 WHERE [Code] = 'bzy' END +SET [Description] = 'Obanliku', [Definition] = NULL, [SortOrder] = 5221.00 WHERE [Code] = 'bzy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obi', 'Obispeño', NULL, 521.10) END +VALUES ('obi', 'Obispeño', NULL, 5222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obispeño', [Definition] = NULL, [SortOrder] = 521.10 WHERE [Code] = 'obi' END +SET [Description] = 'Obispeño', [Definition] = NULL, [SortOrder] = 5222.00 WHERE [Code] = 'obi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obl', 'Oblo', NULL, 521.20) END +VALUES ('obl', 'Oblo', NULL, 5223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oblo', [Definition] = NULL, [SortOrder] = 521.20 WHERE [Code] = 'obl' END +SET [Description] = 'Oblo', [Definition] = NULL, [SortOrder] = 5223.00 WHERE [Code] = 'obl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obo', 'Obo Manobo', NULL, 521.30) END +VALUES ('obo', 'Obo Manobo', NULL, 5224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obo Manobo', [Definition] = NULL, [SortOrder] = 521.30 WHERE [Code] = 'obo' END +SET [Description] = 'Obo Manobo', [Definition] = NULL, [SortOrder] = 5224.00 WHERE [Code] = 'obo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afz', 'Obokuitai', NULL, 521.40) END +VALUES ('afz', 'Obokuitai', NULL, 5225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obokuitai', [Definition] = NULL, [SortOrder] = 521.40 WHERE [Code] = 'afz' END +SET [Description] = 'Obokuitai', [Definition] = NULL, [SortOrder] = 5225.00 WHERE [Code] = 'afz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ann') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ann', 'Obolo', NULL, 521.50) END +VALUES ('ann', 'Obolo', NULL, 5226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obolo', [Definition] = NULL, [SortOrder] = 521.50 WHERE [Code] = 'ann' END +SET [Description] = 'Obolo', [Definition] = NULL, [SortOrder] = 5226.00 WHERE [Code] = 'ann' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obu', 'Obulom', NULL, 521.60) END +VALUES ('obu', 'Obulom', NULL, 5227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obulom', [Definition] = NULL, [SortOrder] = 521.60 WHERE [Code] = 'obu' END +SET [Description] = 'Obulom', [Definition] = NULL, [SortOrder] = 5227.00 WHERE [Code] = 'obu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oca', 'Ocaina', NULL, 521.70) END +VALUES ('oca', 'Ocaina', NULL, 5228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ocaina', [Definition] = NULL, [SortOrder] = 521.70 WHERE [Code] = 'oca' END +SET [Description] = 'Ocaina', [Definition] = NULL, [SortOrder] = 5228.00 WHERE [Code] = 'oca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oci', 'Occitan (post 1500)', NULL, 521.80) END +VALUES ('oci', 'Occitan (post 1500)', NULL, 5229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Occitan (post 1500)', [Definition] = NULL, [SortOrder] = 521.80 WHERE [Code] = 'oci' END +SET [Description] = 'Occitan (post 1500)', [Definition] = NULL, [SortOrder] = 5229.00 WHERE [Code] = 'oci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mie', 'Ocotepec Mixtec', NULL, 521.90) END +VALUES ('mie', 'Ocotepec Mixtec', NULL, 5230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ocotepec Mixtec', [Definition] = NULL, [SortOrder] = 521.90 WHERE [Code] = 'mie' END +SET [Description] = 'Ocotepec Mixtec', [Definition] = NULL, [SortOrder] = 5230.00 WHERE [Code] = 'mie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zac', 'Ocotlán Zapotec', NULL, 522.00) END +VALUES ('zac', 'Ocotlán Zapotec', NULL, 5231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ocotlán Zapotec', [Definition] = NULL, [SortOrder] = 522.00 WHERE [Code] = 'zac' END +SET [Description] = 'Ocotlán Zapotec', [Definition] = NULL, [SortOrder] = 5231.00 WHERE [Code] = 'zac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'odk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('odk', 'Od', NULL, 522.10) END +VALUES ('odk', 'Od', NULL, 5232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Od', [Definition] = NULL, [SortOrder] = 522.10 WHERE [Code] = 'odk' END +SET [Description] = 'Od', [Definition] = NULL, [SortOrder] = 5232.00 WHERE [Code] = 'odk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ory') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ory', 'Odia', NULL, 522.20) END +VALUES ('ory', 'Odia', NULL, 5233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odia', [Definition] = NULL, [SortOrder] = 522.20 WHERE [Code] = 'ory' END +SET [Description] = 'Odia', [Definition] = NULL, [SortOrder] = 5233.00 WHERE [Code] = 'ory' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhf', 'Odiai', NULL, 522.30) END +VALUES ('bhf', 'Odiai', NULL, 5234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odiai', [Definition] = NULL, [SortOrder] = 522.30 WHERE [Code] = 'bhf' END +SET [Description] = 'Odiai', [Definition] = NULL, [SortOrder] = 5234.00 WHERE [Code] = 'bhf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkc', 'Odoodee', NULL, 522.40) END +VALUES ('kkc', 'Odoodee', NULL, 5235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odoodee', [Definition] = NULL, [SortOrder] = 522.40 WHERE [Code] = 'kkc' END +SET [Description] = 'Odoodee', [Definition] = NULL, [SortOrder] = 5235.00 WHERE [Code] = 'kkc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'odu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('odu', 'Odual', NULL, 522.50) END +VALUES ('odu', 'Odual', NULL, 5236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odual', [Definition] = NULL, [SortOrder] = 522.50 WHERE [Code] = 'odu' END +SET [Description] = 'Odual', [Definition] = NULL, [SortOrder] = 5236.00 WHERE [Code] = 'odu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oda', 'Odut', NULL, 522.60) END +VALUES ('oda', 'Odut', NULL, 5237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odut', [Definition] = NULL, [SortOrder] = 522.60 WHERE [Code] = 'oda' END +SET [Description] = 'Odut', [Definition] = NULL, [SortOrder] = 5237.00 WHERE [Code] = 'oda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opy', 'Ofayé', NULL, 522.70) END +VALUES ('opy', 'Ofayé', NULL, 5238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ofayé', [Definition] = NULL, [SortOrder] = 522.70 WHERE [Code] = 'opy' END +SET [Description] = 'Ofayé', [Definition] = NULL, [SortOrder] = 5238.00 WHERE [Code] = 'opy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arc', 'Official Aramaic (700-300 BCE)', NULL, 522.80) END +VALUES ('arc', 'Official Aramaic (700-300 BCE)', NULL, 5239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Official Aramaic (700-300 BCE)', [Definition] = NULL, [SortOrder] = 522.80 WHERE [Code] = 'arc' END +SET [Description] = 'Official Aramaic (700-300 BCE)', [Definition] = NULL, [SortOrder] = 5239.00 WHERE [Code] = 'arc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ofo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ofo', 'Ofo', NULL, 522.90) END +VALUES ('ofo', 'Ofo', NULL, 5240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ofo', [Definition] = NULL, [SortOrder] = 522.90 WHERE [Code] = 'ofo' END +SET [Description] = 'Ofo', [Definition] = NULL, [SortOrder] = 5240.00 WHERE [Code] = 'ofo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogc', 'Ogbah', NULL, 523.00) END +VALUES ('ogc', 'Ogbah', NULL, 5241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogbah', [Definition] = NULL, [SortOrder] = 523.00 WHERE [Code] = 'ogc' END +SET [Description] = 'Ogbah', [Definition] = NULL, [SortOrder] = 5241.00 WHERE [Code] = 'ogc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogb', 'Ogbia', NULL, 523.10) END +VALUES ('ogb', 'Ogbia', NULL, 5242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogbia', [Definition] = NULL, [SortOrder] = 523.10 WHERE [Code] = 'ogb' END +SET [Description] = 'Ogbia', [Definition] = NULL, [SortOrder] = 5242.00 WHERE [Code] = 'ogb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogg', 'Ogbogolo', NULL, 523.20) END +VALUES ('ogg', 'Ogbogolo', NULL, 5243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogbogolo', [Definition] = NULL, [SortOrder] = 523.20 WHERE [Code] = 'ogg' END +SET [Description] = 'Ogbogolo', [Definition] = NULL, [SortOrder] = 5243.00 WHERE [Code] = 'ogg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogu', 'Ogbronuagum', NULL, 523.30) END +VALUES ('ogu', 'Ogbronuagum', NULL, 5244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogbronuagum', [Definition] = NULL, [SortOrder] = 523.30 WHERE [Code] = 'ogu' END +SET [Description] = 'Ogbronuagum', [Definition] = NULL, [SortOrder] = 5244.00 WHERE [Code] = 'ogu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eri', 'Ogea', NULL, 523.40) END +VALUES ('eri', 'Ogea', NULL, 5245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogea', [Definition] = NULL, [SortOrder] = 523.40 WHERE [Code] = 'eri' END +SET [Description] = 'Ogea', [Definition] = NULL, [SortOrder] = 5245.00 WHERE [Code] = 'eri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oia', 'Oirata', NULL, 523.50) END +VALUES ('oia', 'Oirata', NULL, 5246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oirata', [Definition] = NULL, [SortOrder] = 523.50 WHERE [Code] = 'oia' END +SET [Description] = 'Oirata', [Definition] = NULL, [SortOrder] = 5246.00 WHERE [Code] = 'oia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oji', 'Ojibwa', NULL, 523.60) END +VALUES ('oji', 'Ojibwa', NULL, 5247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ojibwa', [Definition] = NULL, [SortOrder] = 523.60 WHERE [Code] = 'oji' END +SET [Description] = 'Ojibwa', [Definition] = NULL, [SortOrder] = 5247.00 WHERE [Code] = 'oji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chj', 'Ojitlán Chinantec', NULL, 523.70) END +VALUES ('chj', 'Ojitlán Chinantec', NULL, 5248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ojitlán Chinantec', [Definition] = NULL, [SortOrder] = 523.70 WHERE [Code] = 'chj' END +SET [Description] = 'Ojitlán Chinantec', [Definition] = NULL, [SortOrder] = 5248.00 WHERE [Code] = 'chj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oka', 'Okanagan', NULL, 523.80) END +VALUES ('oka', 'Okanagan', NULL, 5249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okanagan', [Definition] = NULL, [SortOrder] = 523.80 WHERE [Code] = 'oka' END +SET [Description] = 'Okanagan', [Definition] = NULL, [SortOrder] = 5249.00 WHERE [Code] = 'oka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okn', 'Oki-No-Erabu', NULL, 523.90) END +VALUES ('okn', 'Oki-No-Erabu', NULL, 5250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oki-No-Erabu', [Definition] = NULL, [SortOrder] = 523.90 WHERE [Code] = 'okn' END +SET [Description] = 'Oki-No-Erabu', [Definition] = NULL, [SortOrder] = 5250.00 WHERE [Code] = 'okn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oki', 'Okiek', NULL, 524.00) END +VALUES ('oki', 'Okiek', NULL, 5251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okiek', [Definition] = NULL, [SortOrder] = 524.00 WHERE [Code] = 'oki' END +SET [Description] = 'Okiek', [Definition] = NULL, [SortOrder] = 5251.00 WHERE [Code] = 'oki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oks', 'Oko-Eni-Osayen', NULL, 524.10) END +VALUES ('oks', 'Oko-Eni-Osayen', NULL, 5252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oko-Eni-Osayen', [Definition] = NULL, [SortOrder] = 524.10 WHERE [Code] = 'oks' END +SET [Description] = 'Oko-Eni-Osayen', [Definition] = NULL, [SortOrder] = 5252.00 WHERE [Code] = 'oks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okj', 'Oko-Juwoi', NULL, 524.20) END +VALUES ('okj', 'Oko-Juwoi', NULL, 5253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oko-Juwoi', [Definition] = NULL, [SortOrder] = 524.20 WHERE [Code] = 'okj' END +SET [Description] = 'Oko-Juwoi', [Definition] = NULL, [SortOrder] = 5253.00 WHERE [Code] = 'okj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okb', 'Okobo', NULL, 524.30) END +VALUES ('okb', 'Okobo', NULL, 5254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okobo', [Definition] = NULL, [SortOrder] = 524.30 WHERE [Code] = 'okb' END +SET [Description] = 'Okobo', [Definition] = NULL, [SortOrder] = 5254.00 WHERE [Code] = 'okb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okd', 'Okodia', NULL, 524.40) END +VALUES ('okd', 'Okodia', NULL, 5255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okodia', [Definition] = NULL, [SortOrder] = 524.40 WHERE [Code] = 'okd' END +SET [Description] = 'Okodia', [Definition] = NULL, [SortOrder] = 5255.00 WHERE [Code] = 'okd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oie', 'Okolie', NULL, 524.50) END +VALUES ('oie', 'Okolie', NULL, 5256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okolie', [Definition] = NULL, [SortOrder] = 524.50 WHERE [Code] = 'oie' END +SET [Description] = 'Okolie', [Definition] = NULL, [SortOrder] = 5256.00 WHERE [Code] = 'oie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqv', 'Okolod', NULL, 524.60) END +VALUES ('kqv', 'Okolod', NULL, 5257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okolod', [Definition] = NULL, [SortOrder] = 524.60 WHERE [Code] = 'kqv' END +SET [Description] = 'Okolod', [Definition] = NULL, [SortOrder] = 5257.00 WHERE [Code] = 'kqv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opa', 'Okpamheri', NULL, 524.70) END +VALUES ('opa', 'Okpamheri', NULL, 5258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okpamheri', [Definition] = NULL, [SortOrder] = 524.70 WHERE [Code] = 'opa' END +SET [Description] = 'Okpamheri', [Definition] = NULL, [SortOrder] = 5258.00 WHERE [Code] = 'opa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okx', 'Okpe (Northwestern Edo)', NULL, 524.80) END +VALUES ('okx', 'Okpe (Northwestern Edo)', NULL, 5259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okpe (Northwestern Edo)', [Definition] = NULL, [SortOrder] = 524.80 WHERE [Code] = 'okx' END +SET [Description] = 'Okpe (Northwestern Edo)', [Definition] = NULL, [SortOrder] = 5259.00 WHERE [Code] = 'okx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oke', 'Okpe (Southwestern Edo)', NULL, 524.90) END +VALUES ('oke', 'Okpe (Southwestern Edo)', NULL, 5260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okpe (Southwestern Edo)', [Definition] = NULL, [SortOrder] = 524.90 WHERE [Code] = 'oke' END +SET [Description] = 'Okpe (Southwestern Edo)', [Definition] = NULL, [SortOrder] = 5260.00 WHERE [Code] = 'oke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opm', 'Oksapmin', NULL, 525.00) END +VALUES ('opm', 'Oksapmin', NULL, 5261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oksapmin', [Definition] = NULL, [SortOrder] = 525.00 WHERE [Code] = 'opm' END +SET [Description] = 'Oksapmin', [Definition] = NULL, [SortOrder] = 5261.00 WHERE [Code] = 'opm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oku', 'Oku', NULL, 525.10) END +VALUES ('oku', 'Oku', NULL, 5262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oku', [Definition] = NULL, [SortOrder] = 525.10 WHERE [Code] = 'oku' END +SET [Description] = 'Oku', [Definition] = NULL, [SortOrder] = 5262.00 WHERE [Code] = 'oku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oar', 'Old Aramaic (up to 700 BCE)', NULL, 525.20) END +VALUES ('oar', 'Old Aramaic (up to 700 BCE)', NULL, 5263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Aramaic (up to 700 BCE)', [Definition] = NULL, [SortOrder] = 525.20 WHERE [Code] = 'oar' END +SET [Description] = 'Old Aramaic (up to 700 BCE)', [Definition] = NULL, [SortOrder] = 5263.00 WHERE [Code] = 'oar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oav', 'Old Avar', NULL, 525.30) END +VALUES ('oav', 'Old Avar', NULL, 5264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Avar', [Definition] = NULL, [SortOrder] = 525.30 WHERE [Code] = 'oav' END +SET [Description] = 'Old Avar', [Definition] = NULL, [SortOrder] = 5264.00 WHERE [Code] = 'oav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obt', 'Old Breton', NULL, 525.40) END +VALUES ('obt', 'Old Breton', NULL, 5265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Breton', [Definition] = NULL, [SortOrder] = 525.40 WHERE [Code] = 'obt' END +SET [Description] = 'Old Breton', [Definition] = NULL, [SortOrder] = 5265.00 WHERE [Code] = 'obt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obr', 'Old Burmese', NULL, 525.50) END +VALUES ('obr', 'Old Burmese', NULL, 5266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Burmese', [Definition] = NULL, [SortOrder] = 525.50 WHERE [Code] = 'obr' END +SET [Description] = 'Old Burmese', [Definition] = NULL, [SortOrder] = 5266.00 WHERE [Code] = 'obr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ocm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ocm', 'Old Cham', NULL, 525.60) END +VALUES ('ocm', 'Old Cham', NULL, 5267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Cham', [Definition] = NULL, [SortOrder] = 525.60 WHERE [Code] = 'ocm' END +SET [Description] = 'Old Cham', [Definition] = NULL, [SortOrder] = 5267.00 WHERE [Code] = 'ocm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'och') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('och', 'Old Chinese', NULL, 525.70) END +VALUES ('och', 'Old Chinese', NULL, 5268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Chinese', [Definition] = NULL, [SortOrder] = 525.70 WHERE [Code] = 'och' END +SET [Description] = 'Old Chinese', [Definition] = NULL, [SortOrder] = 5268.00 WHERE [Code] = 'och' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oco', 'Old Cornish', NULL, 525.80) END +VALUES ('oco', 'Old Cornish', NULL, 5269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Cornish', [Definition] = NULL, [SortOrder] = 525.80 WHERE [Code] = 'oco' END +SET [Description] = 'Old Cornish', [Definition] = NULL, [SortOrder] = 5269.00 WHERE [Code] = 'oco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'odt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('odt', 'Old Dutch', NULL, 525.90) END +VALUES ('odt', 'Old Dutch', NULL, 5270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Dutch', [Definition] = NULL, [SortOrder] = 525.90 WHERE [Code] = 'odt' END +SET [Description] = 'Old Dutch', [Definition] = NULL, [SortOrder] = 5270.00 WHERE [Code] = 'odt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ang') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ang', 'Old English (ca. 450-1100)', NULL, 526.00) END +VALUES ('ang', 'Old English (ca. 450-1100)', NULL, 5271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old English (ca. 450-1100)', [Definition] = NULL, [SortOrder] = 526.00 WHERE [Code] = 'ang' END +SET [Description] = 'Old English (ca. 450-1100)', [Definition] = NULL, [SortOrder] = 5271.00 WHERE [Code] = 'ang' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fro', 'Old French (842-ca. 1400)', NULL, 526.10) END +VALUES ('fro', 'Old French (842-ca. 1400)', NULL, 5272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old French (842-ca. 1400)', [Definition] = NULL, [SortOrder] = 526.10 WHERE [Code] = 'fro' END +SET [Description] = 'Old French (842-ca. 1400)', [Definition] = NULL, [SortOrder] = 5272.00 WHERE [Code] = 'fro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ofs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ofs', 'Old Frisian', NULL, 526.20) END +VALUES ('ofs', 'Old Frisian', NULL, 5273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Frisian', [Definition] = NULL, [SortOrder] = 526.20 WHERE [Code] = 'ofs' END +SET [Description] = 'Old Frisian', [Definition] = NULL, [SortOrder] = 5273.00 WHERE [Code] = 'ofs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oge', 'Old Georgian', NULL, 526.30) END +VALUES ('oge', 'Old Georgian', NULL, 5274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Georgian', [Definition] = NULL, [SortOrder] = 526.30 WHERE [Code] = 'oge' END +SET [Description] = 'Old Georgian', [Definition] = NULL, [SortOrder] = 5274.00 WHERE [Code] = 'oge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goh', 'Old High German (ca. 750-1050)', NULL, 526.40) END +VALUES ('goh', 'Old High German (ca. 750-1050)', NULL, 5275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old High German (ca. 750-1050)', [Definition] = NULL, [SortOrder] = 526.40 WHERE [Code] = 'goh' END +SET [Description] = 'Old High German (ca. 750-1050)', [Definition] = NULL, [SortOrder] = 5275.00 WHERE [Code] = 'goh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oht', 'Old Hittite', NULL, 526.50) END +VALUES ('oht', 'Old Hittite', NULL, 5276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Hittite', [Definition] = NULL, [SortOrder] = 526.50 WHERE [Code] = 'oht' END +SET [Description] = 'Old Hittite', [Definition] = NULL, [SortOrder] = 5276.00 WHERE [Code] = 'oht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ohu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ohu', 'Old Hungarian', NULL, 526.60) END +VALUES ('ohu', 'Old Hungarian', NULL, 5277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Hungarian', [Definition] = NULL, [SortOrder] = 526.60 WHERE [Code] = 'ohu' END +SET [Description] = 'Old Hungarian', [Definition] = NULL, [SortOrder] = 5277.00 WHERE [Code] = 'ohu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sga', 'Old Irish (to 900)', NULL, 526.70) END +VALUES ('sga', 'Old Irish (to 900)', NULL, 5278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Irish (to 900)', [Definition] = NULL, [SortOrder] = 526.70 WHERE [Code] = 'sga' END +SET [Description] = 'Old Irish (to 900)', [Definition] = NULL, [SortOrder] = 5278.00 WHERE [Code] = 'sga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojp', 'Old Japanese', NULL, 526.80) END +VALUES ('ojp', 'Old Japanese', NULL, 5279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Japanese', [Definition] = NULL, [SortOrder] = 526.80 WHERE [Code] = 'ojp' END +SET [Description] = 'Old Japanese', [Definition] = NULL, [SortOrder] = 5279.00 WHERE [Code] = 'ojp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okl', 'Old Kentish Sign Language', NULL, 526.90) END +VALUES ('okl', 'Old Kentish Sign Language', NULL, 5280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Kentish Sign Language', [Definition] = NULL, [SortOrder] = 526.90 WHERE [Code] = 'okl' END +SET [Description] = 'Old Kentish Sign Language', [Definition] = NULL, [SortOrder] = 5280.00 WHERE [Code] = 'okl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okz', 'Old Khmer', NULL, 527.00) END +VALUES ('okz', 'Old Khmer', NULL, 5281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Khmer', [Definition] = NULL, [SortOrder] = 527.00 WHERE [Code] = 'okz' END +SET [Description] = 'Old Khmer', [Definition] = NULL, [SortOrder] = 5281.00 WHERE [Code] = 'okz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oko', 'Old Korean (3rd-9th cent.)', NULL, 527.10) END +VALUES ('oko', 'Old Korean (3rd-9th cent.)', NULL, 5282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Korean (3rd-9th cent.)', [Definition] = NULL, [SortOrder] = 527.10 WHERE [Code] = 'oko' END +SET [Description] = 'Old Korean (3rd-9th cent.)', [Definition] = NULL, [SortOrder] = 5282.00 WHERE [Code] = 'oko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olt', 'Old Lithuanian', NULL, 527.20) END +VALUES ('olt', 'Old Lithuanian', NULL, 5283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Lithuanian', [Definition] = NULL, [SortOrder] = 527.20 WHERE [Code] = 'olt' END +SET [Description] = 'Old Lithuanian', [Definition] = NULL, [SortOrder] = 5283.00 WHERE [Code] = 'olt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omy', 'Old Malay', NULL, 527.30) END +VALUES ('omy', 'Old Malay', NULL, 5284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Malay', [Definition] = NULL, [SortOrder] = 527.30 WHERE [Code] = 'omy' END +SET [Description] = 'Old Malay', [Definition] = NULL, [SortOrder] = 5284.00 WHERE [Code] = 'omy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omp', 'Old Manipuri', NULL, 527.40) END +VALUES ('omp', 'Old Manipuri', NULL, 5285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Manipuri', [Definition] = NULL, [SortOrder] = 527.40 WHERE [Code] = 'omp' END +SET [Description] = 'Old Manipuri', [Definition] = NULL, [SortOrder] = 5285.00 WHERE [Code] = 'omp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omr', 'Old Marathi', NULL, 527.50) END +VALUES ('omr', 'Old Marathi', NULL, 5286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Marathi', [Definition] = NULL, [SortOrder] = 527.50 WHERE [Code] = 'omr' END +SET [Description] = 'Old Marathi', [Definition] = NULL, [SortOrder] = 5286.00 WHERE [Code] = 'omr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omx', 'Old Mon', NULL, 527.60) END +VALUES ('omx', 'Old Mon', NULL, 5287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Mon', [Definition] = NULL, [SortOrder] = 527.60 WHERE [Code] = 'omx' END +SET [Description] = 'Old Mon', [Definition] = NULL, [SortOrder] = 5287.00 WHERE [Code] = 'omx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'non') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('non', 'Old Norse', NULL, 527.70) END +VALUES ('non', 'Old Norse', NULL, 5288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Norse', [Definition] = NULL, [SortOrder] = 527.70 WHERE [Code] = 'non' END +SET [Description] = 'Old Norse', [Definition] = NULL, [SortOrder] = 5288.00 WHERE [Code] = 'non' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onw', 'Old Nubian', NULL, 527.80) END +VALUES ('onw', 'Old Nubian', NULL, 5289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Nubian', [Definition] = NULL, [SortOrder] = 527.80 WHERE [Code] = 'onw' END +SET [Description] = 'Old Nubian', [Definition] = NULL, [SortOrder] = 5289.00 WHERE [Code] = 'onw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oos', 'Old Ossetic', NULL, 527.90) END +VALUES ('oos', 'Old Ossetic', NULL, 5290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Ossetic', [Definition] = NULL, [SortOrder] = 527.90 WHERE [Code] = 'oos' END +SET [Description] = 'Old Ossetic', [Definition] = NULL, [SortOrder] = 5290.00 WHERE [Code] = 'oos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peo', 'Old Persian (ca. 600-400 B.C.)', NULL, 528.00) END +VALUES ('peo', 'Old Persian (ca. 600-400 B.C.)', NULL, 5291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Persian (ca. 600-400 B.C.)', [Definition] = NULL, [SortOrder] = 528.00 WHERE [Code] = 'peo' END +SET [Description] = 'Old Persian (ca. 600-400 B.C.)', [Definition] = NULL, [SortOrder] = 5291.00 WHERE [Code] = 'peo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pro', 'Old Provençal (to 1500)', NULL, 528.10) END +VALUES ('pro', 'Old Provençal (to 1500)', NULL, 5292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Provençal (to 1500)', [Definition] = NULL, [SortOrder] = 528.10 WHERE [Code] = 'pro' END +SET [Description] = 'Old Provençal (to 1500)', [Definition] = NULL, [SortOrder] = 5292.00 WHERE [Code] = 'pro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orv', 'Old Russian', NULL, 528.20) END +VALUES ('orv', 'Old Russian', NULL, 5293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Russian', [Definition] = NULL, [SortOrder] = 528.20 WHERE [Code] = 'orv' END +SET [Description] = 'Old Russian', [Definition] = NULL, [SortOrder] = 5293.00 WHERE [Code] = 'orv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osx', 'Old Saxon', NULL, 528.30) END +VALUES ('osx', 'Old Saxon', NULL, 5294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Saxon', [Definition] = NULL, [SortOrder] = 528.30 WHERE [Code] = 'osx' END +SET [Description] = 'Old Saxon', [Definition] = NULL, [SortOrder] = 5294.00 WHERE [Code] = 'osx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osp', 'Old Spanish', NULL, 528.40) END +VALUES ('osp', 'Old Spanish', NULL, 5295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Spanish', [Definition] = NULL, [SortOrder] = 528.40 WHERE [Code] = 'osp' END +SET [Description] = 'Old Spanish', [Definition] = NULL, [SortOrder] = 5295.00 WHERE [Code] = 'osp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osn', 'Old Sundanese', NULL, 528.50) END +VALUES ('osn', 'Old Sundanese', NULL, 5296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Sundanese', [Definition] = NULL, [SortOrder] = 528.50 WHERE [Code] = 'osn' END +SET [Description] = 'Old Sundanese', [Definition] = NULL, [SortOrder] = 5296.00 WHERE [Code] = 'osn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oty', 'Old Tamil', NULL, 528.60) END +VALUES ('oty', 'Old Tamil', NULL, 5297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Tamil', [Definition] = NULL, [SortOrder] = 528.60 WHERE [Code] = 'oty' END +SET [Description] = 'Old Tamil', [Definition] = NULL, [SortOrder] = 5297.00 WHERE [Code] = 'oty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otb', 'Old Tibetan', NULL, 528.70) END +VALUES ('otb', 'Old Tibetan', NULL, 5298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Tibetan', [Definition] = NULL, [SortOrder] = 528.70 WHERE [Code] = 'otb' END +SET [Description] = 'Old Tibetan', [Definition] = NULL, [SortOrder] = 5298.00 WHERE [Code] = 'otb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otk', 'Old Turkish', NULL, 528.80) END +VALUES ('otk', 'Old Turkish', NULL, 5299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Turkish', [Definition] = NULL, [SortOrder] = 528.80 WHERE [Code] = 'otk' END +SET [Description] = 'Old Turkish', [Definition] = NULL, [SortOrder] = 5299.00 WHERE [Code] = 'otk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oui', 'Old Uighur', NULL, 528.90) END +VALUES ('oui', 'Old Uighur', NULL, 5300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Uighur', [Definition] = NULL, [SortOrder] = 528.90 WHERE [Code] = 'oui' END +SET [Description] = 'Old Uighur', [Definition] = NULL, [SortOrder] = 5300.00 WHERE [Code] = 'oui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'owl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('owl', 'Old Welsh', NULL, 529.00) END +VALUES ('owl', 'Old Welsh', NULL, 5301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Welsh', [Definition] = NULL, [SortOrder] = 529.00 WHERE [Code] = 'owl' END +SET [Description] = 'Old Welsh', [Definition] = NULL, [SortOrder] = 5301.00 WHERE [Code] = 'owl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ole') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ole', 'Olekha', NULL, 529.10) END +VALUES ('ole', 'Olekha', NULL, 5302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olekha', [Definition] = NULL, [SortOrder] = 529.10 WHERE [Code] = 'ole' END +SET [Description] = 'Olekha', [Definition] = NULL, [SortOrder] = 5302.00 WHERE [Code] = 'ole' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olk', 'Olkol', NULL, 529.20) END +VALUES ('olk', 'Olkol', NULL, 5303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olkol', [Definition] = NULL, [SortOrder] = 529.20 WHERE [Code] = 'olk' END +SET [Description] = 'Olkol', [Definition] = NULL, [SortOrder] = 5303.00 WHERE [Code] = 'olk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ong') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ong', 'Olo', NULL, 529.30) END +VALUES ('ong', 'Olo', NULL, 5304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olo', [Definition] = NULL, [SortOrder] = 529.30 WHERE [Code] = 'ong' END +SET [Description] = 'Olo', [Definition] = NULL, [SortOrder] = 5304.00 WHERE [Code] = 'ong' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olm', 'Oloma', NULL, 529.40) END +VALUES ('olm', 'Oloma', NULL, 5305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oloma', [Definition] = NULL, [SortOrder] = 529.40 WHERE [Code] = 'olm' END +SET [Description] = 'Oloma', [Definition] = NULL, [SortOrder] = 5305.00 WHERE [Code] = 'olm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olr', 'Olrat', NULL, 529.50) END +VALUES ('olr', 'Olrat', NULL, 5306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olrat', [Definition] = NULL, [SortOrder] = 529.50 WHERE [Code] = 'olr' END +SET [Description] = 'Olrat', [Definition] = NULL, [SortOrder] = 5306.00 WHERE [Code] = 'olr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lul', 'Olu''bo', NULL, 529.60) END +VALUES ('lul', 'Olu''bo', NULL, 5307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olu''bo', [Definition] = NULL, [SortOrder] = 529.60 WHERE [Code] = 'lul' END +SET [Description] = 'Olu''bo', [Definition] = NULL, [SortOrder] = 5307.00 WHERE [Code] = 'lul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iko', 'Olulumo-Ikom', NULL, 529.70) END +VALUES ('iko', 'Olulumo-Ikom', NULL, 5308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olulumo-Ikom', [Definition] = NULL, [SortOrder] = 529.70 WHERE [Code] = 'iko' END +SET [Description] = 'Olulumo-Ikom', [Definition] = NULL, [SortOrder] = 5308.00 WHERE [Code] = 'iko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plo', 'Oluta Popoluca', NULL, 529.80) END +VALUES ('plo', 'Oluta Popoluca', NULL, 5309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oluta Popoluca', [Definition] = NULL, [SortOrder] = 529.80 WHERE [Code] = 'plo' END +SET [Description] = 'Oluta Popoluca', [Definition] = NULL, [SortOrder] = 5309.00 WHERE [Code] = 'plo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omg', 'Omagua', NULL, 529.90) END +VALUES ('omg', 'Omagua', NULL, 5310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omagua', [Definition] = NULL, [SortOrder] = 529.90 WHERE [Code] = 'omg' END +SET [Description] = 'Omagua', [Definition] = NULL, [SortOrder] = 5310.00 WHERE [Code] = 'omg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oma', 'Omaha-Ponca', NULL, 530.00) END +VALUES ('oma', 'Omaha-Ponca', NULL, 5311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omaha-Ponca', [Definition] = NULL, [SortOrder] = 530.00 WHERE [Code] = 'oma' END +SET [Description] = 'Omaha-Ponca', [Definition] = NULL, [SortOrder] = 5311.00 WHERE [Code] = 'oma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acx', 'Omani Arabic', NULL, 530.10) END +VALUES ('acx', 'Omani Arabic', NULL, 5312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omani Arabic', [Definition] = NULL, [SortOrder] = 530.10 WHERE [Code] = 'acx' END +SET [Description] = 'Omani Arabic', [Definition] = NULL, [SortOrder] = 5312.00 WHERE [Code] = 'acx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbm', 'Ombamba', NULL, 530.20) END +VALUES ('mbm', 'Ombamba', NULL, 5313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ombamba', [Definition] = NULL, [SortOrder] = 530.20 WHERE [Code] = 'mbm' END +SET [Description] = 'Ombamba', [Definition] = NULL, [SortOrder] = 5313.00 WHERE [Code] = 'mbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oml', 'Ombo', NULL, 530.30) END +VALUES ('oml', 'Ombo', NULL, 5314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ombo', [Definition] = NULL, [SortOrder] = 530.30 WHERE [Code] = 'oml' END +SET [Description] = 'Ombo', [Definition] = NULL, [SortOrder] = 5314.00 WHERE [Code] = 'oml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nht', 'Ometepec Nahuatl', NULL, 530.40) END +VALUES ('nht', 'Ometepec Nahuatl', NULL, 5315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ometepec Nahuatl', [Definition] = NULL, [SortOrder] = 530.40 WHERE [Code] = 'nht' END +SET [Description] = 'Ometepec Nahuatl', [Definition] = NULL, [SortOrder] = 5315.00 WHERE [Code] = 'nht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omi', 'Omi', NULL, 530.50) END +VALUES ('omi', 'Omi', NULL, 5316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omi', [Definition] = NULL, [SortOrder] = 530.50 WHERE [Code] = 'omi' END +SET [Description] = 'Omi', [Definition] = NULL, [SortOrder] = 5316.00 WHERE [Code] = 'omi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aom', 'Ömie', NULL, 530.60) END +VALUES ('aom', 'Ömie', NULL, 5317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ömie', [Definition] = NULL, [SortOrder] = 530.60 WHERE [Code] = 'aom' END +SET [Description] = 'Ömie', [Definition] = NULL, [SortOrder] = 5317.00 WHERE [Code] = 'aom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omk', 'Omok', NULL, 530.70) END +VALUES ('omk', 'Omok', NULL, 5318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omok', [Definition] = NULL, [SortOrder] = 530.70 WHERE [Code] = 'omk' END +SET [Description] = 'Omok', [Definition] = NULL, [SortOrder] = 5318.00 WHERE [Code] = 'omk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omt', 'Omotik', NULL, 530.80) END +VALUES ('omt', 'Omotik', NULL, 5319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omotik', [Definition] = NULL, [SortOrder] = 530.80 WHERE [Code] = 'omt' END +SET [Description] = 'Omotik', [Definition] = NULL, [SortOrder] = 5319.00 WHERE [Code] = 'omt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omu', 'Omurano', NULL, 530.90) END +VALUES ('omu', 'Omurano', NULL, 5320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omurano', [Definition] = NULL, [SortOrder] = 530.90 WHERE [Code] = 'omu' END +SET [Description] = 'Omurano', [Definition] = NULL, [SortOrder] = 5320.00 WHERE [Code] = 'omu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ona') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ona', 'Ona', NULL, 531.00) END +VALUES ('ona', 'Ona', NULL, 5321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ona', [Definition] = NULL, [SortOrder] = 531.00 WHERE [Code] = 'ona' END +SET [Description] = 'Ona', [Definition] = NULL, [SortOrder] = 5321.00 WHERE [Code] = 'ona' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'one') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('one', 'Oneida', NULL, 531.10) END +VALUES ('one', 'Oneida', NULL, 5322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oneida', [Definition] = NULL, [SortOrder] = 531.10 WHERE [Code] = 'one' END +SET [Description] = 'Oneida', [Definition] = NULL, [SortOrder] = 5322.00 WHERE [Code] = 'one' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oog', 'Ong', NULL, 531.20) END +VALUES ('oog', 'Ong', NULL, 5323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ong', [Definition] = NULL, [SortOrder] = 531.20 WHERE [Code] = 'oog' END +SET [Description] = 'Ong', [Definition] = NULL, [SortOrder] = 5323.00 WHERE [Code] = 'oog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oon', 'Önge', NULL, 531.30) END +VALUES ('oon', 'Önge', NULL, 5324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Önge', [Definition] = NULL, [SortOrder] = 531.30 WHERE [Code] = 'oon' END +SET [Description] = 'Önge', [Definition] = NULL, [SortOrder] = 5324.00 WHERE [Code] = 'oon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oni', 'Onin', NULL, 531.40) END +VALUES ('oni', 'Onin', NULL, 5325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onin', [Definition] = NULL, [SortOrder] = 531.40 WHERE [Code] = 'oni' END +SET [Description] = 'Onin', [Definition] = NULL, [SortOrder] = 5325.00 WHERE [Code] = 'oni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onx', 'Onin Based Pidgin', NULL, 531.50) END +VALUES ('onx', 'Onin Based Pidgin', NULL, 5326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onin Based Pidgin', [Definition] = NULL, [SortOrder] = 531.50 WHERE [Code] = 'onx' END +SET [Description] = 'Onin Based Pidgin', [Definition] = NULL, [SortOrder] = 5326.00 WHERE [Code] = 'onx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onj', 'Onjob', NULL, 531.60) END +VALUES ('onj', 'Onjob', NULL, 5327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onjob', [Definition] = NULL, [SortOrder] = 531.60 WHERE [Code] = 'onj' END +SET [Description] = 'Onjob', [Definition] = NULL, [SortOrder] = 5327.00 WHERE [Code] = 'onj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ons') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ons', 'Ono', NULL, 531.70) END +VALUES ('ons', 'Ono', NULL, 5328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ono', [Definition] = NULL, [SortOrder] = 531.70 WHERE [Code] = 'ons' END +SET [Description] = 'Ono', [Definition] = NULL, [SortOrder] = 5328.00 WHERE [Code] = 'ons' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onn', 'Onobasulu', NULL, 531.80) END +VALUES ('onn', 'Onobasulu', NULL, 5329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onobasulu', [Definition] = NULL, [SortOrder] = 531.80 WHERE [Code] = 'onn' END +SET [Description] = 'Onobasulu', [Definition] = NULL, [SortOrder] = 5329.00 WHERE [Code] = 'onn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ono') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ono', 'Onondaga', NULL, 531.90) END +VALUES ('ono', 'Onondaga', NULL, 5330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onondaga', [Definition] = NULL, [SortOrder] = 531.90 WHERE [Code] = 'ono' END +SET [Description] = 'Onondaga', [Definition] = NULL, [SortOrder] = 5330.00 WHERE [Code] = 'ono' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ont') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ont', 'Ontenu', NULL, 532.00) END +VALUES ('ont', 'Ontenu', NULL, 5331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ontenu', [Definition] = NULL, [SortOrder] = 532.00 WHERE [Code] = 'ont' END +SET [Description] = 'Ontenu', [Definition] = NULL, [SortOrder] = 5331.00 WHERE [Code] = 'ont' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojv', 'Ontong Java', NULL, 532.10) END +VALUES ('ojv', 'Ontong Java', NULL, 5332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ontong Java', [Definition] = NULL, [SortOrder] = 532.10 WHERE [Code] = 'ojv' END +SET [Description] = 'Ontong Java', [Definition] = NULL, [SortOrder] = 5332.00 WHERE [Code] = 'ojv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oor', 'Oorlams', NULL, 532.20) END +VALUES ('oor', 'Oorlams', NULL, 5333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oorlams', [Definition] = NULL, [SortOrder] = 532.20 WHERE [Code] = 'oor' END +SET [Description] = 'Oorlams', [Definition] = NULL, [SortOrder] = 5333.00 WHERE [Code] = 'oor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opo', 'Opao', NULL, 532.30) END +VALUES ('opo', 'Opao', NULL, 5334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Opao', [Definition] = NULL, [SortOrder] = 532.30 WHERE [Code] = 'opo' END +SET [Description] = 'Opao', [Definition] = NULL, [SortOrder] = 5334.00 WHERE [Code] = 'opo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opt', 'Opata', NULL, 532.40) END +VALUES ('opt', 'Opata', NULL, 5335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Opata', [Definition] = NULL, [SortOrder] = 532.40 WHERE [Code] = 'opt' END +SET [Description] = 'Opata', [Definition] = NULL, [SortOrder] = 5335.00 WHERE [Code] = 'opt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orn', 'Orang Kanaq', NULL, 532.50) END +VALUES ('orn', 'Orang Kanaq', NULL, 5336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orang Kanaq', [Definition] = NULL, [SortOrder] = 532.50 WHERE [Code] = 'orn' END +SET [Description] = 'Orang Kanaq', [Definition] = NULL, [SortOrder] = 5336.00 WHERE [Code] = 'orn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ors') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ors', 'Orang Seletar', NULL, 532.60) END +VALUES ('ors', 'Orang Seletar', NULL, 5337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orang Seletar', [Definition] = NULL, [SortOrder] = 532.60 WHERE [Code] = 'ors' END +SET [Description] = 'Orang Seletar', [Definition] = NULL, [SortOrder] = 5337.00 WHERE [Code] = 'ors' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdr', 'Oraon Sadri', NULL, 532.70) END +VALUES ('sdr', 'Oraon Sadri', NULL, 5338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oraon Sadri', [Definition] = NULL, [SortOrder] = 532.70 WHERE [Code] = 'sdr' END +SET [Description] = 'Oraon Sadri', [Definition] = NULL, [SortOrder] = 5338.00 WHERE [Code] = 'sdr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ore') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ore', 'Orejón', NULL, 532.80) END +VALUES ('ore', 'Orejón', NULL, 5339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orejón', [Definition] = NULL, [SortOrder] = 532.80 WHERE [Code] = 'ore' END +SET [Description] = 'Orejón', [Definition] = NULL, [SortOrder] = 5339.00 WHERE [Code] = 'ore' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'org') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('org', 'Oring', NULL, 532.90) END +VALUES ('org', 'Oring', NULL, 5340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oring', [Definition] = NULL, [SortOrder] = 532.90 WHERE [Code] = 'org' END +SET [Description] = 'Oring', [Definition] = NULL, [SortOrder] = 5340.00 WHERE [Code] = 'org' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ori') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ori', 'Oriya (macrolanguage)', NULL, 533.00) END +VALUES ('ori', 'Oriya (macrolanguage)', NULL, 5341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oriya (macrolanguage)', [Definition] = NULL, [SortOrder] = 533.00 WHERE [Code] = 'ori' END +SET [Description] = 'Oriya (macrolanguage)', [Definition] = NULL, [SortOrder] = 5341.00 WHERE [Code] = 'ori' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlv', 'Orizaba Nahuatl', NULL, 533.10) END +VALUES ('nlv', 'Orizaba Nahuatl', NULL, 5342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orizaba Nahuatl', [Definition] = NULL, [SortOrder] = 533.10 WHERE [Code] = 'nlv' END +SET [Description] = 'Orizaba Nahuatl', [Definition] = NULL, [SortOrder] = 5342.00 WHERE [Code] = 'nlv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orc', 'Orma', NULL, 533.20) END +VALUES ('orc', 'Orma', NULL, 5343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orma', [Definition] = NULL, [SortOrder] = 533.20 WHERE [Code] = 'orc' END +SET [Description] = 'Orma', [Definition] = NULL, [SortOrder] = 5343.00 WHERE [Code] = 'orc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orz', 'Ormu', NULL, 533.30) END +VALUES ('orz', 'Ormu', NULL, 5344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ormu', [Definition] = NULL, [SortOrder] = 533.30 WHERE [Code] = 'orz' END +SET [Description] = 'Ormu', [Definition] = NULL, [SortOrder] = 5344.00 WHERE [Code] = 'orz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oru', 'Ormuri', NULL, 533.40) END +VALUES ('oru', 'Ormuri', NULL, 5345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ormuri', [Definition] = NULL, [SortOrder] = 533.40 WHERE [Code] = 'oru' END +SET [Description] = 'Ormuri', [Definition] = NULL, [SortOrder] = 5345.00 WHERE [Code] = 'oru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orx', 'Oro', NULL, 533.50) END +VALUES ('orx', 'Oro', NULL, 5346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oro', [Definition] = NULL, [SortOrder] = 533.50 WHERE [Code] = 'orx' END +SET [Description] = 'Oro', [Definition] = NULL, [SortOrder] = 5346.00 WHERE [Code] = 'orx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orw', 'Oro Win', NULL, 533.60) END +VALUES ('orw', 'Oro Win', NULL, 5347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oro Win', [Definition] = NULL, [SortOrder] = 533.60 WHERE [Code] = 'orw' END +SET [Description] = 'Oro Win', [Definition] = NULL, [SortOrder] = 5347.00 WHERE [Code] = 'orw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oac', 'Oroch', NULL, 533.70) END +VALUES ('oac', 'Oroch', NULL, 5348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oroch', [Definition] = NULL, [SortOrder] = 533.70 WHERE [Code] = 'oac' END +SET [Description] = 'Oroch', [Definition] = NULL, [SortOrder] = 5348.00 WHERE [Code] = 'oac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ora') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ora', 'Oroha', NULL, 533.80) END +VALUES ('ora', 'Oroha', NULL, 5349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oroha', [Definition] = NULL, [SortOrder] = 533.80 WHERE [Code] = 'ora' END +SET [Description] = 'Oroha', [Definition] = NULL, [SortOrder] = 5349.00 WHERE [Code] = 'ora' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oaa', 'Orok', NULL, 533.90) END +VALUES ('oaa', 'Orok', NULL, 5350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orok', [Definition] = NULL, [SortOrder] = 533.90 WHERE [Code] = 'oaa' END +SET [Description] = 'Orok', [Definition] = NULL, [SortOrder] = 5350.00 WHERE [Code] = 'oaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okv', 'Orokaiva', NULL, 534.00) END +VALUES ('okv', 'Orokaiva', NULL, 5351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orokaiva', [Definition] = NULL, [SortOrder] = 534.00 WHERE [Code] = 'okv' END +SET [Description] = 'Orokaiva', [Definition] = NULL, [SortOrder] = 5351.00 WHERE [Code] = 'okv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdu', 'Oroko', NULL, 534.10) END +VALUES ('bdu', 'Oroko', NULL, 5352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oroko', [Definition] = NULL, [SortOrder] = 534.10 WHERE [Code] = 'bdu' END +SET [Description] = 'Oroko', [Definition] = NULL, [SortOrder] = 5352.00 WHERE [Code] = 'bdu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oro', 'Orokolo', NULL, 534.20) END +VALUES ('oro', 'Orokolo', NULL, 5353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orokolo', [Definition] = NULL, [SortOrder] = 534.20 WHERE [Code] = 'oro' END +SET [Description] = 'Orokolo', [Definition] = NULL, [SortOrder] = 5353.00 WHERE [Code] = 'oro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orm', 'Oromo', NULL, 534.30) END +VALUES ('orm', 'Oromo', NULL, 5354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oromo', [Definition] = NULL, [SortOrder] = 534.30 WHERE [Code] = 'orm' END +SET [Description] = 'Oromo', [Definition] = NULL, [SortOrder] = 5354.00 WHERE [Code] = 'orm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orh', 'Oroqen', NULL, 534.40) END +VALUES ('orh', 'Oroqen', NULL, 5355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oroqen', [Definition] = NULL, [SortOrder] = 534.40 WHERE [Code] = 'orh' END +SET [Description] = 'Oroqen', [Definition] = NULL, [SortOrder] = 5355.00 WHERE [Code] = 'orh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpk', 'Orowe', NULL, 534.50) END +VALUES ('bpk', 'Orowe', NULL, 5356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orowe', [Definition] = NULL, [SortOrder] = 534.50 WHERE [Code] = 'bpk' END +SET [Description] = 'Orowe', [Definition] = NULL, [SortOrder] = 5356.00 WHERE [Code] = 'bpk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orr', 'Oruma', NULL, 534.60) END +VALUES ('orr', 'Oruma', NULL, 5357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oruma', [Definition] = NULL, [SortOrder] = 534.60 WHERE [Code] = 'orr' END +SET [Description] = 'Oruma', [Definition] = NULL, [SortOrder] = 5357.00 WHERE [Code] = 'orr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ury') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ury', 'Orya', NULL, 534.70) END +VALUES ('ury', 'Orya', NULL, 5358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orya', [Definition] = NULL, [SortOrder] = 534.70 WHERE [Code] = 'ury' END +SET [Description] = 'Orya', [Definition] = NULL, [SortOrder] = 5358.00 WHERE [Code] = 'ury' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osa', 'Osage', NULL, 534.80) END +VALUES ('osa', 'Osage', NULL, 5359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Osage', [Definition] = NULL, [SortOrder] = 534.80 WHERE [Code] = 'osa' END +SET [Description] = 'Osage', [Definition] = NULL, [SortOrder] = 5359.00 WHERE [Code] = 'osa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ost') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ost', 'Osatu', NULL, 534.90) END +VALUES ('ost', 'Osatu', NULL, 5360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Osatu', [Definition] = NULL, [SortOrder] = 534.90 WHERE [Code] = 'ost' END +SET [Description] = 'Osatu', [Definition] = NULL, [SortOrder] = 5360.00 WHERE [Code] = 'ost' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osc', 'Oscan', NULL, 535.00) END +VALUES ('osc', 'Oscan', NULL, 5361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oscan', [Definition] = NULL, [SortOrder] = 535.00 WHERE [Code] = 'osc' END +SET [Description] = 'Oscan', [Definition] = NULL, [SortOrder] = 5361.00 WHERE [Code] = 'osc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osi', 'Osing', NULL, 535.10) END +VALUES ('osi', 'Osing', NULL, 5362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Osing', [Definition] = NULL, [SortOrder] = 535.10 WHERE [Code] = 'osi' END +SET [Description] = 'Osing', [Definition] = NULL, [SortOrder] = 5362.00 WHERE [Code] = 'osi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oso', 'Ososo', NULL, 535.20) END +VALUES ('oso', 'Ososo', NULL, 5363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ososo', [Definition] = NULL, [SortOrder] = 535.20 WHERE [Code] = 'oso' END +SET [Description] = 'Ososo', [Definition] = NULL, [SortOrder] = 5363.00 WHERE [Code] = 'oso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oss', 'Ossetian', NULL, 535.30) END +VALUES ('oss', 'Ossetian', NULL, 5364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ossetian', [Definition] = NULL, [SortOrder] = 535.30 WHERE [Code] = 'oss' END +SET [Description] = 'Ossetian', [Definition] = NULL, [SortOrder] = 5364.00 WHERE [Code] = 'oss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otd', 'Ot Danum', NULL, 535.40) END +VALUES ('otd', 'Ot Danum', NULL, 5365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ot Danum', [Definition] = NULL, [SortOrder] = 535.40 WHERE [Code] = 'otd' END +SET [Description] = 'Ot Danum', [Definition] = NULL, [SortOrder] = 5365.00 WHERE [Code] = 'otd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uta', 'Otank', NULL, 535.50) END +VALUES ('uta', 'Otank', NULL, 5366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Otank', [Definition] = NULL, [SortOrder] = 535.50 WHERE [Code] = 'uta' END +SET [Description] = 'Otank', [Definition] = NULL, [SortOrder] = 5366.00 WHERE [Code] = 'uta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oti', 'Oti', NULL, 535.60) END +VALUES ('oti', 'Oti', NULL, 5367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oti', [Definition] = NULL, [SortOrder] = 535.60 WHERE [Code] = 'oti' END +SET [Description] = 'Oti', [Definition] = NULL, [SortOrder] = 5367.00 WHERE [Code] = 'oti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otr', 'Otoro', NULL, 535.70) END +VALUES ('otr', 'Otoro', NULL, 5368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Otoro', [Definition] = NULL, [SortOrder] = 535.70 WHERE [Code] = 'otr' END +SET [Description] = 'Otoro', [Definition] = NULL, [SortOrder] = 5368.00 WHERE [Code] = 'otr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otw', 'Ottawa', NULL, 535.80) END +VALUES ('otw', 'Ottawa', NULL, 5369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ottawa', [Definition] = NULL, [SortOrder] = 535.80 WHERE [Code] = 'otw' END +SET [Description] = 'Ottawa', [Definition] = NULL, [SortOrder] = 5369.00 WHERE [Code] = 'otw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ota') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ota', 'Ottoman Turkish (1500-1928)', NULL, 535.90) END +VALUES ('ota', 'Ottoman Turkish (1500-1928)', NULL, 5370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ottoman Turkish (1500-1928)', [Definition] = NULL, [SortOrder] = 535.90 WHERE [Code] = 'ota' END +SET [Description] = 'Ottoman Turkish (1500-1928)', [Definition] = NULL, [SortOrder] = 5370.00 WHERE [Code] = 'ota' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lot', 'Otuho', NULL, 536.00) END +VALUES ('lot', 'Otuho', NULL, 5371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Otuho', [Definition] = NULL, [SortOrder] = 536.00 WHERE [Code] = 'lot' END +SET [Description] = 'Otuho', [Definition] = NULL, [SortOrder] = 5371.00 WHERE [Code] = 'lot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otu', 'Otuke', NULL, 536.10) END +VALUES ('otu', 'Otuke', NULL, 5372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Otuke', [Definition] = NULL, [SortOrder] = 536.10 WHERE [Code] = 'otu' END +SET [Description] = 'Otuke', [Definition] = NULL, [SortOrder] = 5372.00 WHERE [Code] = 'otu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oum', 'Ouma', NULL, 536.20) END +VALUES ('oum', 'Ouma', NULL, 5373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ouma', [Definition] = NULL, [SortOrder] = 536.20 WHERE [Code] = 'oum' END +SET [Description] = 'Ouma', [Definition] = NULL, [SortOrder] = 5373.00 WHERE [Code] = 'oum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oue', 'Oune', NULL, 536.30) END +VALUES ('oue', 'Oune', NULL, 5374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oune', [Definition] = NULL, [SortOrder] = 536.30 WHERE [Code] = 'oue' END +SET [Description] = 'Oune', [Definition] = NULL, [SortOrder] = 5374.00 WHERE [Code] = 'oue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stn', 'Owa', NULL, 536.40) END +VALUES ('stn', 'Owa', NULL, 5375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Owa', [Definition] = NULL, [SortOrder] = 536.40 WHERE [Code] = 'stn' END +SET [Description] = 'Owa', [Definition] = NULL, [SortOrder] = 5375.00 WHERE [Code] = 'stn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsr', 'Owenia', NULL, 536.50) END +VALUES ('wsr', 'Owenia', NULL, 5376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Owenia', [Definition] = NULL, [SortOrder] = 536.50 WHERE [Code] = 'wsr' END +SET [Description] = 'Owenia', [Definition] = NULL, [SortOrder] = 5376.00 WHERE [Code] = 'wsr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'owi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('owi', 'Owiniga', NULL, 536.60) END +VALUES ('owi', 'Owiniga', NULL, 5377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Owiniga', [Definition] = NULL, [SortOrder] = 536.60 WHERE [Code] = 'owi' END +SET [Description] = 'Owiniga', [Definition] = NULL, [SortOrder] = 5377.00 WHERE [Code] = 'owi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oyb', 'Oy', NULL, 536.70) END +VALUES ('oyb', 'Oy', NULL, 5378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oy', [Definition] = NULL, [SortOrder] = 536.70 WHERE [Code] = 'oyb' END +SET [Description] = 'Oy', [Definition] = NULL, [SortOrder] = 5378.00 WHERE [Code] = 'oyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oyy', 'Oya''oya', NULL, 536.80) END +VALUES ('oyy', 'Oya''oya', NULL, 5379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oya''oya', [Definition] = NULL, [SortOrder] = 536.80 WHERE [Code] = 'oyy' END +SET [Description] = 'Oya''oya', [Definition] = NULL, [SortOrder] = 5379.00 WHERE [Code] = 'oyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oyd', 'Oyda', NULL, 536.90) END +VALUES ('oyd', 'Oyda', NULL, 5380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oyda', [Definition] = NULL, [SortOrder] = 536.90 WHERE [Code] = 'oyd' END +SET [Description] = 'Oyda', [Definition] = NULL, [SortOrder] = 5380.00 WHERE [Code] = 'oyd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpd', 'Oyster Bay Tasmanian', NULL, 537.00) END +VALUES ('xpd', 'Oyster Bay Tasmanian', NULL, 5381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oyster Bay Tasmanian', [Definition] = NULL, [SortOrder] = 537.00 WHERE [Code] = 'xpd' END +SET [Description] = 'Oyster Bay Tasmanian', [Definition] = NULL, [SortOrder] = 5381.00 WHERE [Code] = 'xpd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zao', 'Ozolotepec Zapotec', NULL, 537.10) END +VALUES ('zao', 'Ozolotepec Zapotec', NULL, 5382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ozolotepec Zapotec', [Definition] = NULL, [SortOrder] = 537.10 WHERE [Code] = 'zao' END +SET [Description] = 'Ozolotepec Zapotec', [Definition] = NULL, [SortOrder] = 5382.00 WHERE [Code] = 'zao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chz', 'Ozumacín Chinantec', NULL, 537.20) END +VALUES ('chz', 'Ozumacín Chinantec', NULL, 5383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ozumacín Chinantec', [Definition] = NULL, [SortOrder] = 537.20 WHERE [Code] = 'chz' END +SET [Description] = 'Ozumacín Chinantec', [Definition] = NULL, [SortOrder] = 5383.00 WHERE [Code] = 'chz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdi', 'Pa Di', NULL, 537.30) END +VALUES ('pdi', 'Pa Di', NULL, 5384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pa Di', [Definition] = NULL, [SortOrder] = 537.30 WHERE [Code] = 'pdi' END +SET [Description] = 'Pa Di', [Definition] = NULL, [SortOrder] = 5384.00 WHERE [Code] = 'pdi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pqa', 'Pa''a', NULL, 537.40) END +VALUES ('pqa', 'Pa''a', NULL, 5385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pa''a', [Definition] = NULL, [SortOrder] = 537.40 WHERE [Code] = 'pqa' END +SET [Description] = 'Pa''a', [Definition] = NULL, [SortOrder] = 5385.00 WHERE [Code] = 'pqa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blk', 'Pa''o Karen', NULL, 537.50) END +VALUES ('blk', 'Pa''o Karen', NULL, 5386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pa''o Karen', [Definition] = NULL, [SortOrder] = 537.50 WHERE [Code] = 'blk' END +SET [Description] = 'Pa''o Karen', [Definition] = NULL, [SortOrder] = 5386.00 WHERE [Code] = 'blk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pha', 'Pa-Hng', NULL, 537.60) END +VALUES ('pha', 'Pa-Hng', NULL, 5387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pa-Hng', [Definition] = NULL, [SortOrder] = 537.60 WHERE [Code] = 'pha' END +SET [Description] = 'Pa-Hng', [Definition] = NULL, [SortOrder] = 5387.00 WHERE [Code] = 'pha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pfa', 'Pááfang', NULL, 537.70) END +VALUES ('pfa', 'Pááfang', NULL, 5388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pááfang', [Definition] = NULL, [SortOrder] = 537.70 WHERE [Code] = 'pfa' END +SET [Description] = 'Pááfang', [Definition] = NULL, [SortOrder] = 5388.00 WHERE [Code] = 'pfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drl', 'Paakantyi', NULL, 537.80) END +VALUES ('drl', 'Paakantyi', NULL, 5389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paakantyi', [Definition] = NULL, [SortOrder] = 537.80 WHERE [Code] = 'drl' END +SET [Description] = 'Paakantyi', [Definition] = NULL, [SortOrder] = 5389.00 WHERE [Code] = 'drl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pma', 'Paama', NULL, 537.90) END +VALUES ('pma', 'Paama', NULL, 5390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paama', [Definition] = NULL, [SortOrder] = 537.90 WHERE [Code] = 'pma' END +SET [Description] = 'Paama', [Definition] = NULL, [SortOrder] = 5390.00 WHERE [Code] = 'pma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sig', 'Paasaal', NULL, 538.00) END +VALUES ('sig', 'Paasaal', NULL, 5391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paasaal', [Definition] = NULL, [SortOrder] = 538.00 WHERE [Code] = 'sig' END +SET [Description] = 'Paasaal', [Definition] = NULL, [SortOrder] = 5391.00 WHERE [Code] = 'sig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcp', 'Pacahuara', NULL, 538.10) END +VALUES ('pcp', 'Pacahuara', NULL, 5392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pacahuara', [Definition] = NULL, [SortOrder] = 538.10 WHERE [Code] = 'pcp' END +SET [Description] = 'Pacahuara', [Definition] = NULL, [SortOrder] = 5392.00 WHERE [Code] = 'pcp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvp', 'Pacaraos Quechua', NULL, 538.20) END +VALUES ('qvp', 'Pacaraos Quechua', NULL, 5393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pacaraos Quechua', [Definition] = NULL, [SortOrder] = 538.20 WHERE [Code] = 'qvp' END +SET [Description] = 'Pacaraos Quechua', [Definition] = NULL, [SortOrder] = 5393.00 WHERE [Code] = 'qvp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ems') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ems', 'Pacific Gulf Yupik', NULL, 538.30) END +VALUES ('ems', 'Pacific Gulf Yupik', NULL, 5394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pacific Gulf Yupik', [Definition] = NULL, [SortOrder] = 538.30 WHERE [Code] = 'ems' END +SET [Description] = 'Pacific Gulf Yupik', [Definition] = NULL, [SortOrder] = 5394.00 WHERE [Code] = 'ems' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pac', 'Pacoh', NULL, 538.40) END +VALUES ('pac', 'Pacoh', NULL, 5395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pacoh', [Definition] = NULL, [SortOrder] = 538.40 WHERE [Code] = 'pac' END +SET [Description] = 'Pacoh', [Definition] = NULL, [SortOrder] = 5395.00 WHERE [Code] = 'pac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdo', 'Padoe', NULL, 538.50) END +VALUES ('pdo', 'Padoe', NULL, 5396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Padoe', [Definition] = NULL, [SortOrder] = 538.50 WHERE [Code] = 'pdo' END +SET [Description] = 'Padoe', [Definition] = NULL, [SortOrder] = 5396.00 WHERE [Code] = 'pdo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkc', 'Paekche', NULL, 538.60) END +VALUES ('pkc', 'Paekche', NULL, 5397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paekche', [Definition] = NULL, [SortOrder] = 538.60 WHERE [Code] = 'pkc' END +SET [Description] = 'Paekche', [Definition] = NULL, [SortOrder] = 5397.00 WHERE [Code] = 'pkc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgn', 'Paelignian', NULL, 538.70) END +VALUES ('pgn', 'Paelignian', NULL, 5398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paelignian', [Definition] = NULL, [SortOrder] = 538.70 WHERE [Code] = 'pgn' END +SET [Description] = 'Paelignian', [Definition] = NULL, [SortOrder] = 5398.00 WHERE [Code] = 'pgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbb', 'Páez', NULL, 538.80) END +VALUES ('pbb', 'Páez', NULL, 5399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Páez', [Definition] = NULL, [SortOrder] = 538.80 WHERE [Code] = 'pbb' END +SET [Description] = 'Páez', [Definition] = NULL, [SortOrder] = 5399.00 WHERE [Code] = 'pbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgi', 'Pagi', NULL, 538.90) END +VALUES ('pgi', 'Pagi', NULL, 5400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pagi', [Definition] = NULL, [SortOrder] = 538.90 WHERE [Code] = 'pgi' END +SET [Description] = 'Pagi', [Definition] = NULL, [SortOrder] = 5400.00 WHERE [Code] = 'pgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pae', 'Pagibete', NULL, 539.00) END +VALUES ('pae', 'Pagibete', NULL, 5401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pagibete', [Definition] = NULL, [SortOrder] = 539.00 WHERE [Code] = 'pae' END +SET [Description] = 'Pagibete', [Definition] = NULL, [SortOrder] = 5401.00 WHERE [Code] = 'pae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgu', 'Pagu', NULL, 539.10) END +VALUES ('pgu', 'Pagu', NULL, 5402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pagu', [Definition] = NULL, [SortOrder] = 539.10 WHERE [Code] = 'pgu' END +SET [Description] = 'Pagu', [Definition] = NULL, [SortOrder] = 5402.00 WHERE [Code] = 'pgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apf', 'Pahanan Agta', NULL, 539.20) END +VALUES ('apf', 'Pahanan Agta', NULL, 5403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahanan Agta', [Definition] = NULL, [SortOrder] = 539.20 WHERE [Code] = 'apf' END +SET [Description] = 'Pahanan Agta', [Definition] = NULL, [SortOrder] = 5403.00 WHERE [Code] = 'apf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phj', 'Pahari', NULL, 539.30) END +VALUES ('phj', 'Pahari', NULL, 5404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahari', [Definition] = NULL, [SortOrder] = 539.30 WHERE [Code] = 'phj' END +SET [Description] = 'Pahari', [Definition] = NULL, [SortOrder] = 5404.00 WHERE [Code] = 'phj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phr', 'Pahari-Potwari', NULL, 539.40) END +VALUES ('phr', 'Pahari-Potwari', NULL, 5405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahari-Potwari', [Definition] = NULL, [SortOrder] = 539.40 WHERE [Code] = 'phr' END +SET [Description] = 'Pahari-Potwari', [Definition] = NULL, [SortOrder] = 5405.00 WHERE [Code] = 'phr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgt', 'Pahi', NULL, 539.50) END +VALUES ('lgt', 'Pahi', NULL, 5406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahi', [Definition] = NULL, [SortOrder] = 539.50 WHERE [Code] = 'lgt' END +SET [Description] = 'Pahi', [Definition] = NULL, [SortOrder] = 5406.00 WHERE [Code] = 'lgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phv', 'Pahlavani', NULL, 539.60) END +VALUES ('phv', 'Pahlavani', NULL, 5407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahlavani', [Definition] = NULL, [SortOrder] = 539.60 WHERE [Code] = 'phv' END +SET [Description] = 'Pahlavani', [Definition] = NULL, [SortOrder] = 5407.00 WHERE [Code] = 'phv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pal', 'Pahlavi', NULL, 539.70) END +VALUES ('pal', 'Pahlavi', NULL, 5408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahlavi', [Definition] = NULL, [SortOrder] = 539.70 WHERE [Code] = 'pal' END +SET [Description] = 'Pahlavi', [Definition] = NULL, [SortOrder] = 5408.00 WHERE [Code] = 'pal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pta', 'Pai Tavytera', NULL, 539.80) END +VALUES ('pta', 'Pai Tavytera', NULL, 5409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pai Tavytera', [Definition] = NULL, [SortOrder] = 539.80 WHERE [Code] = 'pta' END +SET [Description] = 'Pai Tavytera', [Definition] = NULL, [SortOrder] = 5409.00 WHERE [Code] = 'pta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pri', 'Paicî', NULL, 539.90) END +VALUES ('pri', 'Paicî', NULL, 5410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paicî', [Definition] = NULL, [SortOrder] = 539.90 WHERE [Code] = 'pri' END +SET [Description] = 'Paicî', [Definition] = NULL, [SortOrder] = 5410.00 WHERE [Code] = 'pri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppi', 'Paipai', NULL, 540.00) END +VALUES ('ppi', 'Paipai', NULL, 5411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paipai', [Definition] = NULL, [SortOrder] = 540.00 WHERE [Code] = 'ppi' END +SET [Description] = 'Paipai', [Definition] = NULL, [SortOrder] = 5411.00 WHERE [Code] = 'ppi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pck', 'Paite Chin', NULL, 540.10) END +VALUES ('pck', 'Paite Chin', NULL, 5412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paite Chin', [Definition] = NULL, [SortOrder] = 540.10 WHERE [Code] = 'pck' END +SET [Description] = 'Paite Chin', [Definition] = NULL, [SortOrder] = 5412.00 WHERE [Code] = 'pck' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwn', 'Paiwan', NULL, 540.20) END +VALUES ('pwn', 'Paiwan', NULL, 5413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paiwan', [Definition] = NULL, [SortOrder] = 540.20 WHERE [Code] = 'pwn' END +SET [Description] = 'Paiwan', [Definition] = NULL, [SortOrder] = 5413.00 WHERE [Code] = 'pwn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkg', 'Pak-Tong', NULL, 540.30) END +VALUES ('pkg', 'Pak-Tong', NULL, 5414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pak-Tong', [Definition] = NULL, [SortOrder] = 540.30 WHERE [Code] = 'pkg' END +SET [Description] = 'Pak-Tong', [Definition] = NULL, [SortOrder] = 5414.00 WHERE [Code] = 'pkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pav', 'Pakaásnovos', NULL, 540.40) END +VALUES ('pav', 'Pakaásnovos', NULL, 5415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pakaásnovos', [Definition] = NULL, [SortOrder] = 540.40 WHERE [Code] = 'pav' END +SET [Description] = 'Pakaásnovos', [Definition] = NULL, [SortOrder] = 5415.00 WHERE [Code] = 'pav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkn', 'Pakanha', NULL, 540.50) END +VALUES ('pkn', 'Pakanha', NULL, 5416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pakanha', [Definition] = NULL, [SortOrder] = 540.50 WHERE [Code] = 'pkn' END +SET [Description] = 'Pakanha', [Definition] = NULL, [SortOrder] = 5416.00 WHERE [Code] = 'pkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pks', 'Pakistan Sign Language', NULL, 540.60) END +VALUES ('pks', 'Pakistan Sign Language', NULL, 5417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pakistan Sign Language', [Definition] = NULL, [SortOrder] = 540.60 WHERE [Code] = 'pks' END +SET [Description] = 'Pakistan Sign Language', [Definition] = NULL, [SortOrder] = 5417.00 WHERE [Code] = 'pks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pku', 'Paku', NULL, 540.70) END +VALUES ('pku', 'Paku', NULL, 5418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paku', [Definition] = NULL, [SortOrder] = 540.70 WHERE [Code] = 'pku' END +SET [Description] = 'Paku', [Definition] = NULL, [SortOrder] = 5418.00 WHERE [Code] = 'pku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jkp', 'Paku Karen', NULL, 540.80) END +VALUES ('jkp', 'Paku Karen', NULL, 5419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paku Karen', [Definition] = NULL, [SortOrder] = 540.80 WHERE [Code] = 'jkp' END +SET [Description] = 'Paku Karen', [Definition] = NULL, [SortOrder] = 5419.00 WHERE [Code] = 'jkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abw', 'Pal', NULL, 540.90) END +VALUES ('abw', 'Pal', NULL, 5420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pal', [Definition] = NULL, [SortOrder] = 540.90 WHERE [Code] = 'abw' END +SET [Description] = 'Pal', [Definition] = NULL, [SortOrder] = 5420.00 WHERE [Code] = 'abw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plq', 'Palaic', NULL, 541.00) END +VALUES ('plq', 'Palaic', NULL, 5421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palaic', [Definition] = NULL, [SortOrder] = 541.00 WHERE [Code] = 'plq' END +SET [Description] = 'Palaic', [Definition] = NULL, [SortOrder] = 5421.00 WHERE [Code] = 'plq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plr', 'Palaka Senoufo', NULL, 541.10) END +VALUES ('plr', 'Palaka Senoufo', NULL, 5422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palaka Senoufo', [Definition] = NULL, [SortOrder] = 541.10 WHERE [Code] = 'plr' END +SET [Description] = 'Palaka Senoufo', [Definition] = NULL, [SortOrder] = 5422.00 WHERE [Code] = 'plr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpa', 'Palantla Chinantec', NULL, 541.20) END +VALUES ('cpa', 'Palantla Chinantec', NULL, 5423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palantla Chinantec', [Definition] = NULL, [SortOrder] = 541.20 WHERE [Code] = 'cpa' END +SET [Description] = 'Palantla Chinantec', [Definition] = NULL, [SortOrder] = 5423.00 WHERE [Code] = 'cpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pau', 'Palauan', NULL, 541.30) END +VALUES ('pau', 'Palauan', NULL, 5424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palauan', [Definition] = NULL, [SortOrder] = 541.30 WHERE [Code] = 'pau' END +SET [Description] = 'Palauan', [Definition] = NULL, [SortOrder] = 5424.00 WHERE [Code] = 'pau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnl', 'Paleni', NULL, 541.40) END +VALUES ('pnl', 'Paleni', NULL, 5425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paleni', [Definition] = NULL, [SortOrder] = 541.40 WHERE [Code] = 'pnl' END +SET [Description] = 'Paleni', [Definition] = NULL, [SortOrder] = 5425.00 WHERE [Code] = 'pnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pln', 'Palenquero', NULL, 541.50) END +VALUES ('pln', 'Palenquero', NULL, 5426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palenquero', [Definition] = NULL, [SortOrder] = 541.50 WHERE [Code] = 'pln' END +SET [Description] = 'Palenquero', [Definition] = NULL, [SortOrder] = 5426.00 WHERE [Code] = 'pln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pli', 'Pali', NULL, 541.60) END +VALUES ('pli', 'Pali', NULL, 5427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pali', [Definition] = NULL, [SortOrder] = 541.60 WHERE [Code] = 'pli' END +SET [Description] = 'Pali', [Definition] = NULL, [SortOrder] = 5427.00 WHERE [Code] = 'pli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plu', 'Palikúr', NULL, 541.70) END +VALUES ('plu', 'Palikúr', NULL, 5428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palikúr', [Definition] = NULL, [SortOrder] = 541.70 WHERE [Code] = 'plu' END +SET [Description] = 'Palikúr', [Definition] = NULL, [SortOrder] = 5428.00 WHERE [Code] = 'plu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcf', 'Paliyan', NULL, 541.80) END +VALUES ('pcf', 'Paliyan', NULL, 5429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paliyan', [Definition] = NULL, [SortOrder] = 541.80 WHERE [Code] = 'pcf' END +SET [Description] = 'Paliyan', [Definition] = NULL, [SortOrder] = 5429.00 WHERE [Code] = 'pcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmd', 'Pallanganmiddang', NULL, 541.90) END +VALUES ('pmd', 'Pallanganmiddang', NULL, 5430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pallanganmiddang', [Definition] = NULL, [SortOrder] = 541.90 WHERE [Code] = 'pmd' END +SET [Description] = 'Pallanganmiddang', [Definition] = NULL, [SortOrder] = 5430.00 WHERE [Code] = 'pmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fap', 'Paloor', NULL, 542.00) END +VALUES ('fap', 'Paloor', NULL, 5431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paloor', [Definition] = NULL, [SortOrder] = 542.00 WHERE [Code] = 'fap' END +SET [Description] = 'Paloor', [Definition] = NULL, [SortOrder] = 5431.00 WHERE [Code] = 'fap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ple') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ple', 'Palu''e', NULL, 542.10) END +VALUES ('ple', 'Palu''e', NULL, 5432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palu''e', [Definition] = NULL, [SortOrder] = 542.10 WHERE [Code] = 'ple' END +SET [Description] = 'Palu''e', [Definition] = NULL, [SortOrder] = 5432.00 WHERE [Code] = 'ple' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plz', 'Paluan', NULL, 542.20) END +VALUES ('plz', 'Paluan', NULL, 5433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paluan', [Definition] = NULL, [SortOrder] = 542.20 WHERE [Code] = 'plz' END +SET [Description] = 'Paluan', [Definition] = NULL, [SortOrder] = 5433.00 WHERE [Code] = 'plz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpx', 'Palya Bareli', NULL, 542.30) END +VALUES ('bpx', 'Palya Bareli', NULL, 5434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palya Bareli', [Definition] = NULL, [SortOrder] = 542.30 WHERE [Code] = 'bpx' END +SET [Description] = 'Palya Bareli', [Definition] = NULL, [SortOrder] = 5434.00 WHERE [Code] = 'bpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmn', 'Pam', NULL, 542.40) END +VALUES ('pmn', 'Pam', NULL, 5435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pam', [Definition] = NULL, [SortOrder] = 542.40 WHERE [Code] = 'pmn' END +SET [Description] = 'Pam', [Definition] = NULL, [SortOrder] = 5435.00 WHERE [Code] = 'pmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmb', 'Pambia', NULL, 542.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pambia', [Definition] = NULL, [SortOrder] = 542.50 WHERE [Code] = 'pmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmk', 'Pamlico', NULL, 542.60) END +VALUES ('pmb', 'Pambia', NULL, 5436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pamlico', [Definition] = NULL, [SortOrder] = 542.60 WHERE [Code] = 'pmk' END +SET [Description] = 'Pambia', [Definition] = NULL, [SortOrder] = 5436.00 WHERE [Code] = 'pmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmf', 'Pamona', NULL, 542.70) END +VALUES ('pmf', 'Pamona', NULL, 5437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pamona', [Definition] = NULL, [SortOrder] = 542.70 WHERE [Code] = 'pmf' END +SET [Description] = 'Pamona', [Definition] = NULL, [SortOrder] = 5437.00 WHERE [Code] = 'pmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hih', 'Pamosu', NULL, 542.80) END +VALUES ('hih', 'Pamosu', NULL, 5438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pamosu', [Definition] = NULL, [SortOrder] = 542.80 WHERE [Code] = 'hih' END +SET [Description] = 'Pamosu', [Definition] = NULL, [SortOrder] = 5438.00 WHERE [Code] = 'hih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pam', 'Pampanga', NULL, 542.90) END +VALUES ('pam', 'Pampanga', NULL, 5439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pampanga', [Definition] = NULL, [SortOrder] = 542.90 WHERE [Code] = 'pam' END +SET [Description] = 'Pampanga', [Definition] = NULL, [SortOrder] = 5439.00 WHERE [Code] = 'pam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'att') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('att', 'Pamplona Atta', NULL, 543.00) END +VALUES ('att', 'Pamplona Atta', NULL, 5440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pamplona Atta', [Definition] = NULL, [SortOrder] = 543.00 WHERE [Code] = 'att' END +SET [Description] = 'Pamplona Atta', [Definition] = NULL, [SortOrder] = 5440.00 WHERE [Code] = 'att' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnq', 'Pana (Burkina Faso)', NULL, 543.10) END +VALUES ('pnq', 'Pana (Burkina Faso)', NULL, 5441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pana (Burkina Faso)', [Definition] = NULL, [SortOrder] = 543.10 WHERE [Code] = 'pnq' END +SET [Description] = 'Pana (Burkina Faso)', [Definition] = NULL, [SortOrder] = 5441.00 WHERE [Code] = 'pnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnz', 'Pana (Central African Republic)', NULL, 543.20) END +VALUES ('pnz', 'Pana (Central African Republic)', NULL, 5442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pana (Central African Republic)', [Definition] = NULL, [SortOrder] = 543.20 WHERE [Code] = 'pnz' END +SET [Description] = 'Pana (Central African Republic)', [Definition] = NULL, [SortOrder] = 5442.00 WHERE [Code] = 'pnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsp', 'Panamanian Sign Language', NULL, 543.30) END +VALUES ('lsp', 'Panamanian Sign Language', NULL, 5443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panamanian Sign Language', [Definition] = NULL, [SortOrder] = 543.30 WHERE [Code] = 'lsp' END +SET [Description] = 'Panamanian Sign Language', [Definition] = NULL, [SortOrder] = 5443.00 WHERE [Code] = 'lsp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'par') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('par', 'Panamint', NULL, 543.40) END +VALUES ('par', 'Panamint', NULL, 5444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panamint', [Definition] = NULL, [SortOrder] = 543.40 WHERE [Code] = 'par' END +SET [Description] = 'Panamint', [Definition] = NULL, [SortOrder] = 5444.00 WHERE [Code] = 'par' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxh', 'Panao Huánuco Quechua', NULL, 543.50) END +VALUES ('qxh', 'Panao Huánuco Quechua', NULL, 5445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panao Huánuco Quechua', [Definition] = NULL, [SortOrder] = 543.50 WHERE [Code] = 'qxh' END +SET [Description] = 'Panao Huánuco Quechua', [Definition] = NULL, [SortOrder] = 5445.00 WHERE [Code] = 'qxh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kre', 'Panará', NULL, 543.60) END +VALUES ('kre', 'Panará', NULL, 5446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panará', [Definition] = NULL, [SortOrder] = 543.60 WHERE [Code] = 'kre' END +SET [Description] = 'Panará', [Definition] = NULL, [SortOrder] = 5446.00 WHERE [Code] = 'kre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psn', 'Panasuan', NULL, 543.70) END +VALUES ('psn', 'Panasuan', NULL, 5447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panasuan', [Definition] = NULL, [SortOrder] = 543.70 WHERE [Code] = 'psn' END +SET [Description] = 'Panasuan', [Definition] = NULL, [SortOrder] = 5447.00 WHERE [Code] = 'psn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwb', 'Panawa', NULL, 543.80) END +VALUES ('pwb', 'Panawa', NULL, 5448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panawa', [Definition] = NULL, [SortOrder] = 543.80 WHERE [Code] = 'pwb' END +SET [Description] = 'Panawa', [Definition] = NULL, [SortOrder] = 5448.00 WHERE [Code] = 'pwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnp', 'Pancana', NULL, 543.90) END +VALUES ('pnp', 'Pancana', NULL, 5449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pancana', [Definition] = NULL, [SortOrder] = 543.90 WHERE [Code] = 'pnp' END +SET [Description] = 'Pancana', [Definition] = NULL, [SortOrder] = 5449.00 WHERE [Code] = 'pnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdb', 'Panchpargania', NULL, 544.00) END +VALUES ('tdb', 'Panchpargania', NULL, 5450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panchpargania', [Definition] = NULL, [SortOrder] = 544.00 WHERE [Code] = 'tdb' END +SET [Description] = 'Panchpargania', [Definition] = NULL, [SortOrder] = 5450.00 WHERE [Code] = 'tdb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkj', 'Pande', NULL, 544.10) END +VALUES ('bkj', 'Pande', NULL, 5451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pande', [Definition] = NULL, [SortOrder] = 544.10 WHERE [Code] = 'bkj' END +SET [Description] = 'Pande', [Definition] = NULL, [SortOrder] = 5451.00 WHERE [Code] = 'bkj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pag', 'Pangasinan', NULL, 544.20) END +VALUES ('pag', 'Pangasinan', NULL, 5452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangasinan', [Definition] = NULL, [SortOrder] = 544.20 WHERE [Code] = 'pag' END +SET [Description] = 'Pangasinan', [Definition] = NULL, [SortOrder] = 5452.00 WHERE [Code] = 'pag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgs', 'Pangseng', NULL, 544.30) END +VALUES ('pgs', 'Pangseng', NULL, 5453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangseng', [Definition] = NULL, [SortOrder] = 544.30 WHERE [Code] = 'pgs' END +SET [Description] = 'Pangseng', [Definition] = NULL, [SortOrder] = 5453.00 WHERE [Code] = 'pgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'png') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('png', 'Pangu', NULL, 544.40) END +VALUES ('png', 'Pangu', NULL, 5454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangu', [Definition] = NULL, [SortOrder] = 544.40 WHERE [Code] = 'png' END +SET [Description] = 'Pangu', [Definition] = NULL, [SortOrder] = 5454.00 WHERE [Code] = 'png' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slm', 'Pangutaran Sama', NULL, 544.50) END +VALUES ('slm', 'Pangutaran Sama', NULL, 5455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangutaran Sama', [Definition] = NULL, [SortOrder] = 544.50 WHERE [Code] = 'slm' END +SET [Description] = 'Pangutaran Sama', [Definition] = NULL, [SortOrder] = 5455.00 WHERE [Code] = 'slm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbr', 'Pangwa', NULL, 544.60) END +VALUES ('pbr', 'Pangwa', NULL, 5456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangwa', [Definition] = NULL, [SortOrder] = 544.60 WHERE [Code] = 'pbr' END +SET [Description] = 'Pangwa', [Definition] = NULL, [SortOrder] = 5456.00 WHERE [Code] = 'pbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgg', 'Pangwali', NULL, 544.70) END +VALUES ('pgg', 'Pangwali', NULL, 5457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangwali', [Definition] = NULL, [SortOrder] = 544.70 WHERE [Code] = 'pgg' END +SET [Description] = 'Pangwali', [Definition] = NULL, [SortOrder] = 5457.00 WHERE [Code] = 'pgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnr', 'Panim', NULL, 544.80) END +VALUES ('pnr', 'Panim', NULL, 5458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panim', [Definition] = NULL, [SortOrder] = 544.80 WHERE [Code] = 'pnr' END +SET [Description] = 'Panim', [Definition] = NULL, [SortOrder] = 5458.00 WHERE [Code] = 'pnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcg', 'Paniya', NULL, 544.90) END +VALUES ('pcg', 'Paniya', NULL, 5459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paniya', [Definition] = NULL, [SortOrder] = 544.90 WHERE [Code] = 'pcg' END +SET [Description] = 'Paniya', [Definition] = NULL, [SortOrder] = 5459.00 WHERE [Code] = 'pcg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pan', 'Panjabi', NULL, 545.00) END +VALUES ('pan', 'Panjabi', NULL, 5460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panjabi', [Definition] = NULL, [SortOrder] = 545.00 WHERE [Code] = 'pan' END +SET [Description] = 'Panjabi', [Definition] = NULL, [SortOrder] = 5460.00 WHERE [Code] = 'pan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pax', 'Pankararé', NULL, 545.10) END +VALUES ('pax', 'Pankararé', NULL, 5461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pankararé', [Definition] = NULL, [SortOrder] = 545.10 WHERE [Code] = 'pax' END +SET [Description] = 'Pankararé', [Definition] = NULL, [SortOrder] = 5461.00 WHERE [Code] = 'pax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'paz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paz', 'Pankararú', NULL, 545.20) END +VALUES ('paz', 'Pankararú', NULL, 5462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pankararú', [Definition] = NULL, [SortOrder] = 545.20 WHERE [Code] = 'paz' END +SET [Description] = 'Pankararú', [Definition] = NULL, [SortOrder] = 5462.00 WHERE [Code] = 'paz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkh', 'Pankhu', NULL, 545.30) END +VALUES ('pkh', 'Pankhu', NULL, 5463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pankhu', [Definition] = NULL, [SortOrder] = 545.30 WHERE [Code] = 'pkh' END +SET [Description] = 'Pankhu', [Definition] = NULL, [SortOrder] = 5463.00 WHERE [Code] = 'pkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnc', 'Pannei', NULL, 545.40) END +VALUES ('pnc', 'Pannei', NULL, 5464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pannei', [Definition] = NULL, [SortOrder] = 545.40 WHERE [Code] = 'pnc' END +SET [Description] = 'Pannei', [Definition] = NULL, [SortOrder] = 5464.00 WHERE [Code] = 'pnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqz', 'Pano', NULL, 545.50) END +VALUES ('mqz', 'Pano', NULL, 5465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pano', [Definition] = NULL, [SortOrder] = 545.50 WHERE [Code] = 'mqz' END +SET [Description] = 'Pano', [Definition] = NULL, [SortOrder] = 5465.00 WHERE [Code] = 'mqz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knt', 'Panoan Katukína', NULL, 545.60) END +VALUES ('knt', 'Panoan Katukína', NULL, 5466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panoan Katukína', [Definition] = NULL, [SortOrder] = 545.60 WHERE [Code] = 'knt' END +SET [Description] = 'Panoan Katukína', [Definition] = NULL, [SortOrder] = 5466.00 WHERE [Code] = 'knt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pno', 'Panobo', NULL, 545.70) END +VALUES ('pno', 'Panobo', NULL, 5467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panobo', [Definition] = NULL, [SortOrder] = 545.70 WHERE [Code] = 'pno' END +SET [Description] = 'Panobo', [Definition] = NULL, [SortOrder] = 5467.00 WHERE [Code] = 'pno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfc', 'Panyi Bai', NULL, 545.80) END +VALUES ('bfc', 'Panyi Bai', NULL, 5468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panyi Bai', [Definition] = NULL, [SortOrder] = 545.80 WHERE [Code] = 'bfc' END +SET [Description] = 'Panyi Bai', [Definition] = NULL, [SortOrder] = 5468.00 WHERE [Code] = 'bfc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'top') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('top', 'Papantla Totonac', NULL, 545.90) END +VALUES ('top', 'Papantla Totonac', NULL, 5469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papantla Totonac', [Definition] = NULL, [SortOrder] = 545.90 WHERE [Code] = 'top' END +SET [Description] = 'Papantla Totonac', [Definition] = NULL, [SortOrder] = 5469.00 WHERE [Code] = 'top' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppn', 'Papapana', NULL, 546.00) END +VALUES ('ppn', 'Papapana', NULL, 5470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papapana', [Definition] = NULL, [SortOrder] = 546.00 WHERE [Code] = 'ppn' END +SET [Description] = 'Papapana', [Definition] = NULL, [SortOrder] = 5470.00 WHERE [Code] = 'ppn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dpp', 'Papar', NULL, 546.10) END +VALUES ('dpp', 'Papar', NULL, 5471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papar', [Definition] = NULL, [SortOrder] = 546.10 WHERE [Code] = 'dpp' END +SET [Description] = 'Papar', [Definition] = NULL, [SortOrder] = 5471.00 WHERE [Code] = 'dpp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pas', 'Papasena', NULL, 546.20) END +VALUES ('pas', 'Papasena', NULL, 5472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papasena', [Definition] = NULL, [SortOrder] = 546.20 WHERE [Code] = 'pas' END +SET [Description] = 'Papasena', [Definition] = NULL, [SortOrder] = 5472.00 WHERE [Code] = 'pas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbo', 'Papel', NULL, 546.30) END +VALUES ('pbo', 'Papel', NULL, 5473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papel', [Definition] = NULL, [SortOrder] = 546.30 WHERE [Code] = 'pbo' END +SET [Description] = 'Papel', [Definition] = NULL, [SortOrder] = 5473.00 WHERE [Code] = 'pbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppe', 'Papi', NULL, 546.40) END +VALUES ('ppe', 'Papi', NULL, 5474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papi', [Definition] = NULL, [SortOrder] = 546.40 WHERE [Code] = 'ppe' END +SET [Description] = 'Papi', [Definition] = NULL, [SortOrder] = 5474.00 WHERE [Code] = 'ppe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pap', 'Papiamento', NULL, 546.50) END +VALUES ('pap', 'Papiamento', NULL, 5475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papiamento', [Definition] = NULL, [SortOrder] = 546.50 WHERE [Code] = 'pap' END +SET [Description] = 'Papiamento', [Definition] = NULL, [SortOrder] = 5475.00 WHERE [Code] = 'pap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppu', 'Papora', NULL, 546.60) END +VALUES ('ppu', 'Papora', NULL, 5476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papora', [Definition] = NULL, [SortOrder] = 546.60 WHERE [Code] = 'ppu' END +SET [Description] = 'Papora', [Definition] = NULL, [SortOrder] = 5476.00 WHERE [Code] = 'ppu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgz', 'Papua New Guinean Sign Language', NULL, 546.70) END +VALUES ('pgz', 'Papua New Guinean Sign Language', NULL, 5477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papua New Guinean Sign Language', [Definition] = NULL, [SortOrder] = 546.70 WHERE [Code] = 'pgz' END +SET [Description] = 'Papua New Guinean Sign Language', [Definition] = NULL, [SortOrder] = 5477.00 WHERE [Code] = 'pgz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmy', 'Papuan Malay', NULL, 546.80) END +VALUES ('pmy', 'Papuan Malay', NULL, 5478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papuan Malay', [Definition] = NULL, [SortOrder] = 546.80 WHERE [Code] = 'pmy' END +SET [Description] = 'Papuan Malay', [Definition] = NULL, [SortOrder] = 5478.00 WHERE [Code] = 'pmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppm', 'Papuma', NULL, 546.90) END +VALUES ('ppm', 'Papuma', NULL, 5479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papuma', [Definition] = NULL, [SortOrder] = 546.90 WHERE [Code] = 'ppm' END +SET [Description] = 'Papuma', [Definition] = NULL, [SortOrder] = 5479.00 WHERE [Code] = 'ppm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aap', 'Pará Arára', NULL, 547.00) END +VALUES ('aap', 'Pará Arára', NULL, 5480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pará Arára', [Definition] = NULL, [SortOrder] = 547.00 WHERE [Code] = 'aap' END +SET [Description] = 'Pará Arára', [Definition] = NULL, [SortOrder] = 5480.00 WHERE [Code] = 'aap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvp', 'Pará Gavião', NULL, 547.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pará Gavião', [Definition] = NULL, [SortOrder] = 547.10 WHERE [Code] = 'gvp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pzn', 'Jejarra Naga', NULL, 547.20) END +VALUES ('gvp', 'Pará Gavião', NULL, 5481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jejarra Naga', [Definition] = NULL, [SortOrder] = 547.20 WHERE [Code] = 'pzn' END +SET [Description] = 'Pará Gavião', [Definition] = NULL, [SortOrder] = 5481.00 WHERE [Code] = 'gvp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prc', 'Parachi', NULL, 547.30) END +VALUES ('prc', 'Parachi', NULL, 5482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parachi', [Definition] = NULL, [SortOrder] = 547.30 WHERE [Code] = 'prc' END +SET [Description] = 'Parachi', [Definition] = NULL, [SortOrder] = 5482.00 WHERE [Code] = 'prc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gug', 'Paraguayan Guaraní', NULL, 547.40) END +VALUES ('gug', 'Paraguayan Guaraní', NULL, 5483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paraguayan Guaraní', [Definition] = NULL, [SortOrder] = 547.40 WHERE [Code] = 'gug' END +SET [Description] = 'Paraguayan Guaraní', [Definition] = NULL, [SortOrder] = 5483.00 WHERE [Code] = 'gug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pys', 'Paraguayan Sign Language', NULL, 547.50) END +VALUES ('pys', 'Paraguayan Sign Language', NULL, 5484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paraguayan Sign Language', [Definition] = NULL, [SortOrder] = 547.50 WHERE [Code] = 'pys' END +SET [Description] = 'Paraguayan Sign Language', [Definition] = NULL, [SortOrder] = 5484.00 WHERE [Code] = 'pys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pak', 'Parakanã', NULL, 547.60) END +VALUES ('pak', 'Parakanã', NULL, 5485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parakanã', [Definition] = NULL, [SortOrder] = 547.60 WHERE [Code] = 'pak' END +SET [Description] = 'Parakanã', [Definition] = NULL, [SortOrder] = 5485.00 WHERE [Code] = 'pak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prf', 'Paranan', NULL, 547.70) END +VALUES ('prf', 'Paranan', NULL, 5486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paranan', [Definition] = NULL, [SortOrder] = 547.70 WHERE [Code] = 'prf' END +SET [Description] = 'Paranan', [Definition] = NULL, [SortOrder] = 5486.00 WHERE [Code] = 'prf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'paf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paf', 'Paranawát', NULL, 547.80) END +VALUES ('paf', 'Paranawát', NULL, 5487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paranawát', [Definition] = NULL, [SortOrder] = 547.80 WHERE [Code] = 'paf' END +SET [Description] = 'Paranawát', [Definition] = NULL, [SortOrder] = 5487.00 WHERE [Code] = 'paf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbg', 'Paraujano', NULL, 547.90) END +VALUES ('pbg', 'Paraujano', NULL, 5488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paraujano', [Definition] = NULL, [SortOrder] = 547.90 WHERE [Code] = 'pbg' END +SET [Description] = 'Paraujano', [Definition] = NULL, [SortOrder] = 5488.00 WHERE [Code] = 'pbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prk', 'Parauk', NULL, 548.00) END +VALUES ('prk', 'Parauk', NULL, 5489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parauk', [Definition] = NULL, [SortOrder] = 548.00 WHERE [Code] = 'prk' END +SET [Description] = 'Parauk', [Definition] = NULL, [SortOrder] = 5489.00 WHERE [Code] = 'prk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prw', 'Parawen', NULL, 548.10) END +VALUES ('prw', 'Parawen', NULL, 5490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parawen', [Definition] = NULL, [SortOrder] = 548.10 WHERE [Code] = 'prw' END +SET [Description] = 'Parawen', [Definition] = NULL, [SortOrder] = 5490.00 WHERE [Code] = 'prw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pch', 'Pardhan', NULL, 548.20) END +VALUES ('pch', 'Pardhan', NULL, 5491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pardhan', [Definition] = NULL, [SortOrder] = 548.20 WHERE [Code] = 'pch' END +SET [Description] = 'Pardhan', [Definition] = NULL, [SortOrder] = 5491.00 WHERE [Code] = 'pch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcl', 'Pardhi', NULL, 548.30) END +VALUES ('pcl', 'Pardhi', NULL, 5492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pardhi', [Definition] = NULL, [SortOrder] = 548.30 WHERE [Code] = 'pcl' END +SET [Description] = 'Pardhi', [Definition] = NULL, [SortOrder] = 5492.00 WHERE [Code] = 'pcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppt', 'Pare', NULL, 548.40) END +VALUES ('ppt', 'Pare', NULL, 5493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pare', [Definition] = NULL, [SortOrder] = 548.40 WHERE [Code] = 'ppt' END +SET [Description] = 'Pare', [Definition] = NULL, [SortOrder] = 5493.00 WHERE [Code] = 'ppt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pab', 'Parecís', NULL, 548.50) END +VALUES ('pab', 'Parecís', NULL, 5494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parecís', [Definition] = NULL, [SortOrder] = 548.50 WHERE [Code] = 'pab' END +SET [Description] = 'Parecís', [Definition] = NULL, [SortOrder] = 5494.00 WHERE [Code] = 'pab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcj', 'Parenga', NULL, 548.60) END +VALUES ('pcj', 'Parenga', NULL, 5495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parenga', [Definition] = NULL, [SortOrder] = 548.60 WHERE [Code] = 'pcj' END +SET [Description] = 'Parenga', [Definition] = NULL, [SortOrder] = 5495.00 WHERE [Code] = 'pcj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkr', 'Päri', NULL, 548.70) END +VALUES ('lkr', 'Päri', NULL, 5496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Päri', [Definition] = NULL, [SortOrder] = 548.70 WHERE [Code] = 'lkr' END +SET [Description] = 'Päri', [Definition] = NULL, [SortOrder] = 5496.00 WHERE [Code] = 'lkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvx', 'Parkari Koli', NULL, 548.80) END +VALUES ('kvx', 'Parkari Koli', NULL, 5497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parkari Koli', [Definition] = NULL, [SortOrder] = 548.80 WHERE [Code] = 'kvx' END +SET [Description] = 'Parkari Koli', [Definition] = NULL, [SortOrder] = 5497.00 WHERE [Code] = 'kvx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbi', 'Parkwa', NULL, 548.90) END +VALUES ('pbi', 'Parkwa', NULL, 5498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parkwa', [Definition] = NULL, [SortOrder] = 548.90 WHERE [Code] = 'pbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prp', 'Parsi', NULL, 549.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parsi', [Definition] = NULL, [SortOrder] = 549.00 WHERE [Code] = 'prp' END +SET [Description] = 'Parkwa', [Definition] = NULL, [SortOrder] = 5498.00 WHERE [Code] = 'pbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prd', 'Parsi-Dari', NULL, 549.10) END +VALUES ('prd', 'Parsi-Dari', NULL, 5499.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parsi-Dari', [Definition] = NULL, [SortOrder] = 549.10 WHERE [Code] = 'prd' END +SET [Description] = 'Parsi-Dari', [Definition] = NULL, [SortOrder] = 5499.00 WHERE [Code] = 'prd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpr', 'Parthian', NULL, 549.20) END +VALUES ('xpr', 'Parthian', NULL, 5500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parthian', [Definition] = NULL, [SortOrder] = 549.20 WHERE [Code] = 'xpr' END +SET [Description] = 'Parthian', [Definition] = NULL, [SortOrder] = 5500.00 WHERE [Code] = 'xpr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'paq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paq', 'Parya', NULL, 549.30) END +VALUES ('paq', 'Parya', NULL, 5501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parya', [Definition] = NULL, [SortOrder] = 549.30 WHERE [Code] = 'paq' END +SET [Description] = 'Parya', [Definition] = NULL, [SortOrder] = 5501.00 WHERE [Code] = 'paq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psq', 'Pasi', NULL, 549.40) END +VALUES ('psq', 'Pasi', NULL, 5502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pasi', [Definition] = NULL, [SortOrder] = 549.40 WHERE [Code] = 'psq' END +SET [Description] = 'Pasi', [Definition] = NULL, [SortOrder] = 5502.00 WHERE [Code] = 'psq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yac', 'Pass Valley Yali', NULL, 549.50) END +VALUES ('yac', 'Pass Valley Yali', NULL, 5503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pass Valley Yali', [Definition] = NULL, [SortOrder] = 549.50 WHERE [Code] = 'yac' END +SET [Description] = 'Pass Valley Yali', [Definition] = NULL, [SortOrder] = 5503.00 WHERE [Code] = 'yac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbc', 'Patamona', NULL, 549.60) END +VALUES ('pbc', 'Patamona', NULL, 5504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patamona', [Definition] = NULL, [SortOrder] = 549.60 WHERE [Code] = 'pbc' END +SET [Description] = 'Patamona', [Definition] = NULL, [SortOrder] = 5504.00 WHERE [Code] = 'pbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptn', 'Patani', NULL, 549.70) END +VALUES ('ptn', 'Patani', NULL, 5505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patani', [Definition] = NULL, [SortOrder] = 549.70 WHERE [Code] = 'ptn' END +SET [Description] = 'Patani', [Definition] = NULL, [SortOrder] = 5505.00 WHERE [Code] = 'ptn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pth', 'Pataxó Hã-Ha-Hãe', NULL, 549.80) END +VALUES ('pth', 'Pataxó Hã-Ha-Hãe', NULL, 5506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pataxó Hã-Ha-Hãe', [Definition] = NULL, [SortOrder] = 549.80 WHERE [Code] = 'pth' END +SET [Description] = 'Pataxó Hã-Ha-Hãe', [Definition] = NULL, [SortOrder] = 5506.00 WHERE [Code] = 'pth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptp', 'Patep', NULL, 549.90) END +VALUES ('ptp', 'Patep', NULL, 5507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patep', [Definition] = NULL, [SortOrder] = 549.90 WHERE [Code] = 'ptp' END +SET [Description] = 'Patep', [Definition] = NULL, [SortOrder] = 5507.00 WHERE [Code] = 'ptp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pty', 'Pathiya', NULL, 550.00) END +VALUES ('pty', 'Pathiya', NULL, 5508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pathiya', [Definition] = NULL, [SortOrder] = 550.00 WHERE [Code] = 'pty' END +SET [Description] = 'Pathiya', [Definition] = NULL, [SortOrder] = 5508.00 WHERE [Code] = 'pty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gfk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gfk', 'Patpatar', NULL, 550.10) END +VALUES ('gfk', 'Patpatar', NULL, 5509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patpatar', [Definition] = NULL, [SortOrder] = 550.10 WHERE [Code] = 'gfk' END +SET [Description] = 'Patpatar', [Definition] = NULL, [SortOrder] = 5509.00 WHERE [Code] = 'gfk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lae', 'Pattani', NULL, 550.20) END +VALUES ('lae', 'Pattani', NULL, 5510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pattani', [Definition] = NULL, [SortOrder] = 550.20 WHERE [Code] = 'lae' END +SET [Description] = 'Pattani', [Definition] = NULL, [SortOrder] = 5510.00 WHERE [Code] = 'lae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfa', 'Pattani Malay', NULL, 550.30) END +VALUES ('mfa', 'Pattani Malay', NULL, 5511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pattani Malay', [Definition] = NULL, [SortOrder] = 550.30 WHERE [Code] = 'mfa' END +SET [Description] = 'Pattani Malay', [Definition] = NULL, [SortOrder] = 5511.00 WHERE [Code] = 'mfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptq', 'Pattapu', NULL, 550.40) END +VALUES ('ptq', 'Pattapu', NULL, 5512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pattapu', [Definition] = NULL, [SortOrder] = 550.40 WHERE [Code] = 'ptq' END +SET [Description] = 'Pattapu', [Definition] = NULL, [SortOrder] = 5512.00 WHERE [Code] = 'ptq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwi', 'Patwin', NULL, 550.50) END +VALUES ('pwi', 'Patwin', NULL, 5513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patwin', [Definition] = NULL, [SortOrder] = 550.50 WHERE [Code] = 'pwi' END +SET [Description] = 'Patwin', [Definition] = NULL, [SortOrder] = 5513.00 WHERE [Code] = 'pwi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plh', 'Paulohi', NULL, 550.60) END +VALUES ('plh', 'Paulohi', NULL, 5514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paulohi', [Definition] = NULL, [SortOrder] = 550.60 WHERE [Code] = 'plh' END +SET [Description] = 'Paulohi', [Definition] = NULL, [SortOrder] = 5514.00 WHERE [Code] = 'plh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pad', 'Paumarí', NULL, 550.70) END +VALUES ('pad', 'Paumarí', NULL, 5515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paumarí', [Definition] = NULL, [SortOrder] = 550.70 WHERE [Code] = 'pad' END +SET [Description] = 'Paumarí', [Definition] = NULL, [SortOrder] = 5515.00 WHERE [Code] = 'pad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnk', 'Paunaka', NULL, 550.80) END +VALUES ('pnk', 'Paunaka', NULL, 5516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paunaka', [Definition] = NULL, [SortOrder] = 550.80 WHERE [Code] = 'pnk' END +SET [Description] = 'Paunaka', [Definition] = NULL, [SortOrder] = 5516.00 WHERE [Code] = 'pnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfb', 'Pauri Bareli', NULL, 550.90) END +VALUES ('bfb', 'Pauri Bareli', NULL, 5517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pauri Bareli', [Definition] = NULL, [SortOrder] = 550.90 WHERE [Code] = 'bfb' END +SET [Description] = 'Pauri Bareli', [Definition] = NULL, [SortOrder] = 5517.00 WHERE [Code] = 'bfb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psm', 'Pauserna', NULL, 551.00) END +VALUES ('psm', 'Pauserna', NULL, 5518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pauserna', [Definition] = NULL, [SortOrder] = 551.00 WHERE [Code] = 'psm' END +SET [Description] = 'Pauserna', [Definition] = NULL, [SortOrder] = 5518.00 WHERE [Code] = 'psm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwa', 'Pawaia', NULL, 551.10) END +VALUES ('pwa', 'Pawaia', NULL, 5519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pawaia', [Definition] = NULL, [SortOrder] = 551.10 WHERE [Code] = 'pwa' END +SET [Description] = 'Pawaia', [Definition] = NULL, [SortOrder] = 5519.00 WHERE [Code] = 'pwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'paw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paw', 'Pawnee', NULL, 551.20) END +VALUES ('paw', 'Pawnee', NULL, 5520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pawnee', [Definition] = NULL, [SortOrder] = 551.20 WHERE [Code] = 'paw' END +SET [Description] = 'Pawnee', [Definition] = NULL, [SortOrder] = 5520.00 WHERE [Code] = 'paw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmr', 'Paynamar', NULL, 551.30) END +VALUES ('pmr', 'Paynamar', NULL, 5521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paynamar', [Definition] = NULL, [SortOrder] = 551.30 WHERE [Code] = 'pmr' END +SET [Description] = 'Paynamar', [Definition] = NULL, [SortOrder] = 5521.00 WHERE [Code] = 'pmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pzh', 'Pazeh', NULL, 551.40) END +VALUES ('pzh', 'Pazeh', NULL, 5522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pazeh', [Definition] = NULL, [SortOrder] = 551.40 WHERE [Code] = 'pzh' END +SET [Description] = 'Pazeh', [Definition] = NULL, [SortOrder] = 5522.00 WHERE [Code] = 'pzh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pai', 'Pe', NULL, 551.50) END +VALUES ('pai', 'Pe', NULL, 5523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pe', [Definition] = NULL, [SortOrder] = 551.50 WHERE [Code] = 'pai' END +SET [Description] = 'Pe', [Definition] = NULL, [SortOrder] = 5523.00 WHERE [Code] = 'pai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcb', 'Pear', NULL, 551.60) END +VALUES ('pcb', 'Pear', NULL, 5524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pear', [Definition] = NULL, [SortOrder] = 551.60 WHERE [Code] = 'pcb' END +SET [Description] = 'Pear', [Definition] = NULL, [SortOrder] = 5524.00 WHERE [Code] = 'pcb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pay', 'Pech', NULL, 551.70) END +VALUES ('pay', 'Pech', NULL, 5525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pech', [Definition] = NULL, [SortOrder] = 551.70 WHERE [Code] = 'pay' END +SET [Description] = 'Pech', [Definition] = NULL, [SortOrder] = 5525.00 WHERE [Code] = 'pay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpc', 'Pecheneg', NULL, 551.80) END +VALUES ('xpc', 'Pecheneg', NULL, 5526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pecheneg', [Definition] = NULL, [SortOrder] = 551.80 WHERE [Code] = 'xpc' END +SET [Description] = 'Pecheneg', [Definition] = NULL, [SortOrder] = 5526.00 WHERE [Code] = 'xpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nso', 'Pedi', NULL, 551.90) END +VALUES ('nso', 'Pedi', NULL, 5527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pedi', [Definition] = NULL, [SortOrder] = 551.90 WHERE [Code] = 'nso' END +SET [Description] = 'Pedi', [Definition] = NULL, [SortOrder] = 5527.00 WHERE [Code] = 'nso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppq', 'Pei', NULL, 552.00) END +VALUES ('ppq', 'Pei', NULL, 5528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pei', [Definition] = NULL, [SortOrder] = 552.00 WHERE [Code] = 'ppq' END +SET [Description] = 'Pei', [Definition] = NULL, [SortOrder] = 5528.00 WHERE [Code] = 'ppq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pel', 'Pekal', NULL, 552.10) END +VALUES ('pel', 'Pekal', NULL, 5529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pekal', [Definition] = NULL, [SortOrder] = 552.10 WHERE [Code] = 'pel' END +SET [Description] = 'Pekal', [Definition] = NULL, [SortOrder] = 5529.00 WHERE [Code] = 'pel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxd', 'Pela', NULL, 552.20) END +VALUES ('bxd', 'Pela', NULL, 5530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pela', [Definition] = NULL, [SortOrder] = 552.20 WHERE [Code] = 'bxd' END +SET [Description] = 'Pela', [Definition] = NULL, [SortOrder] = 5530.00 WHERE [Code] = 'bxd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ata') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ata', 'Pele-Ata', NULL, 552.30) END +VALUES ('ata', 'Pele-Ata', NULL, 5531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pele-Ata', [Definition] = NULL, [SortOrder] = 552.30 WHERE [Code] = 'ata' END +SET [Description] = 'Pele-Ata', [Definition] = NULL, [SortOrder] = 5531.00 WHERE [Code] = 'ata' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppp', 'Pelende', NULL, 552.40) END +VALUES ('ppp', 'Pelende', NULL, 5532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pelende', [Definition] = NULL, [SortOrder] = 552.40 WHERE [Code] = 'ppp' END +SET [Description] = 'Pelende', [Definition] = NULL, [SortOrder] = 5532.00 WHERE [Code] = 'ppp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoc', 'Pemon', NULL, 552.50) END +VALUES ('aoc', 'Pemon', NULL, 5533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pemon', [Definition] = NULL, [SortOrder] = 552.50 WHERE [Code] = 'aoc' END +SET [Description] = 'Pemon', [Definition] = NULL, [SortOrder] = 5533.00 WHERE [Code] = 'aoc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pev', 'Pémono', NULL, 552.60) END +VALUES ('pev', 'Pémono', NULL, 5534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pémono', [Definition] = NULL, [SortOrder] = 552.60 WHERE [Code] = 'pev' END +SET [Description] = 'Pémono', [Definition] = NULL, [SortOrder] = 5534.00 WHERE [Code] = 'pev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psg', 'Penang Sign Language', NULL, 552.70) END +VALUES ('psg', 'Penang Sign Language', NULL, 5535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Penang Sign Language', [Definition] = NULL, [SortOrder] = 552.70 WHERE [Code] = 'psg' END +SET [Description] = 'Penang Sign Language', [Definition] = NULL, [SortOrder] = 5535.00 WHERE [Code] = 'psg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pek', 'Penchal', NULL, 552.80) END +VALUES ('pek', 'Penchal', NULL, 5536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Penchal', [Definition] = NULL, [SortOrder] = 552.80 WHERE [Code] = 'pek' END +SET [Description] = 'Penchal', [Definition] = NULL, [SortOrder] = 5536.00 WHERE [Code] = 'pek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ums') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ums', 'Pendau', NULL, 552.90) END +VALUES ('ums', 'Pendau', NULL, 5537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pendau', [Definition] = NULL, [SortOrder] = 552.90 WHERE [Code] = 'ums' END +SET [Description] = 'Pendau', [Definition] = NULL, [SortOrder] = 5537.00 WHERE [Code] = 'ums' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peg', 'Pengo', NULL, 553.00) END +VALUES ('peg', 'Pengo', NULL, 5538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pengo', [Definition] = NULL, [SortOrder] = 553.00 WHERE [Code] = 'peg' END +SET [Description] = 'Pengo', [Definition] = NULL, [SortOrder] = 5538.00 WHERE [Code] = 'peg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdc', 'Pennsylvania German', NULL, 553.10) END +VALUES ('pdc', 'Pennsylvania German', NULL, 5539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pennsylvania German', [Definition] = NULL, [SortOrder] = 553.10 WHERE [Code] = 'pdc' END +SET [Description] = 'Pennsylvania German', [Definition] = NULL, [SortOrder] = 5539.00 WHERE [Code] = 'pdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mil', 'Peñoles Mixtec', NULL, 553.20) END +VALUES ('mil', 'Peñoles Mixtec', NULL, 5540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Peñoles Mixtec', [Definition] = NULL, [SortOrder] = 553.20 WHERE [Code] = 'mil' END +SET [Description] = 'Peñoles Mixtec', [Definition] = NULL, [SortOrder] = 5540.00 WHERE [Code] = 'mil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnh', 'Penrhyn', NULL, 553.30) END +VALUES ('pnh', 'Penrhyn', NULL, 5541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Penrhyn', [Definition] = NULL, [SortOrder] = 553.30 WHERE [Code] = 'pnh' END +SET [Description] = 'Penrhyn', [Definition] = NULL, [SortOrder] = 5541.00 WHERE [Code] = 'pnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptw', 'Pentlatch', NULL, 553.40) END +VALUES ('ptw', 'Pentlatch', NULL, 5542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pentlatch', [Definition] = NULL, [SortOrder] = 553.40 WHERE [Code] = 'ptw' END +SET [Description] = 'Pentlatch', [Definition] = NULL, [SortOrder] = 5542.00 WHERE [Code] = 'ptw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wet', 'Perai', NULL, 553.50) END +VALUES ('wet', 'Perai', NULL, 5543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Perai', [Definition] = NULL, [SortOrder] = 553.50 WHERE [Code] = 'wet' END +SET [Description] = 'Perai', [Definition] = NULL, [SortOrder] = 5543.00 WHERE [Code] = 'wet' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pea', 'Peranakan Indonesian', NULL, 553.60) END +VALUES ('pea', 'Peranakan Indonesian', NULL, 5544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Peranakan Indonesian', [Definition] = NULL, [SortOrder] = 553.60 WHERE [Code] = 'pea' END +SET [Description] = 'Peranakan Indonesian', [Definition] = NULL, [SortOrder] = 5544.00 WHERE [Code] = 'pea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pfe', 'Pere', NULL, 553.70) END +VALUES ('pfe', 'Pere', NULL, 5545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pere', [Definition] = NULL, [SortOrder] = 553.70 WHERE [Code] = 'pfe' END +SET [Description] = 'Pere', [Definition] = NULL, [SortOrder] = 5545.00 WHERE [Code] = 'pfe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvf', 'Peripheral Mongolian', NULL, 553.80) END +VALUES ('mvf', 'Peripheral Mongolian', NULL, 5546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Peripheral Mongolian', [Definition] = NULL, [SortOrder] = 553.80 WHERE [Code] = 'mvf' END +SET [Description] = 'Peripheral Mongolian', [Definition] = NULL, [SortOrder] = 5546.00 WHERE [Code] = 'mvf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pip', 'Pero', NULL, 553.90) END +VALUES ('pip', 'Pero', NULL, 5547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pero', [Definition] = NULL, [SortOrder] = 553.90 WHERE [Code] = 'pip' END +SET [Description] = 'Pero', [Definition] = NULL, [SortOrder] = 5547.00 WHERE [Code] = 'pip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fas', 'Persian', NULL, 554.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Persian', [Definition] = NULL, [SortOrder] = 554.00 WHERE [Code] = 'fas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psc', 'Iranian Sign Language', NULL, 554.10) END +VALUES ('fas', 'Persian', NULL, 5548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iranian Sign Language', [Definition] = NULL, [SortOrder] = 554.10 WHERE [Code] = 'psc' END +SET [Description] = 'Persian', [Definition] = NULL, [SortOrder] = 5548.00 WHERE [Code] = 'fas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prl', 'Peruvian Sign Language', NULL, 554.20) END +VALUES ('prl', 'Peruvian Sign Language', NULL, 5549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Peruvian Sign Language', [Definition] = NULL, [SortOrder] = 554.20 WHERE [Code] = 'prl' END +SET [Description] = 'Peruvian Sign Language', [Definition] = NULL, [SortOrder] = 5549.00 WHERE [Code] = 'prl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpe', 'Petapa Zapotec', NULL, 554.30) END +VALUES ('zpe', 'Petapa Zapotec', NULL, 5550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Petapa Zapotec', [Definition] = NULL, [SortOrder] = 554.30 WHERE [Code] = 'zpe' END +SET [Description] = 'Petapa Zapotec', [Definition] = NULL, [SortOrder] = 5550.00 WHERE [Code] = 'zpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pex', 'Petats', NULL, 554.40) END +VALUES ('pex', 'Petats', NULL, 5551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Petats', [Definition] = NULL, [SortOrder] = 554.40 WHERE [Code] = 'pex' END +SET [Description] = 'Petats', [Definition] = NULL, [SortOrder] = 5551.00 WHERE [Code] = 'pex' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pey', 'Petjo', NULL, 554.50) END +VALUES ('pey', 'Petjo', NULL, 5552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Petjo', [Definition] = NULL, [SortOrder] = 554.50 WHERE [Code] = 'pey' END +SET [Description] = 'Petjo', [Definition] = NULL, [SortOrder] = 5552.00 WHERE [Code] = 'pey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lme', 'Pévé', NULL, 554.60) END +VALUES ('lme', 'Pévé', NULL, 5553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pévé', [Definition] = NULL, [SortOrder] = 554.60 WHERE [Code] = 'lme' END +SET [Description] = 'Pévé', [Definition] = NULL, [SortOrder] = 5553.00 WHERE [Code] = 'lme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pfl', 'Pfaelzisch', NULL, 554.70) END +VALUES ('pfl', 'Pfaelzisch', NULL, 5554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pfaelzisch', [Definition] = NULL, [SortOrder] = 554.70 WHERE [Code] = 'pfl' END +SET [Description] = 'Pfaelzisch', [Definition] = NULL, [SortOrder] = 5554.00 WHERE [Code] = 'pfl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prt', 'Phai', NULL, 554.80) END +VALUES ('prt', 'Phai', NULL, 5555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phai', [Definition] = NULL, [SortOrder] = 554.80 WHERE [Code] = 'prt' END +SET [Description] = 'Phai', [Definition] = NULL, [SortOrder] = 5555.00 WHERE [Code] = 'prt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phk', 'Phake', NULL, 554.90) END +VALUES ('phk', 'Phake', NULL, 5556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phake', [Definition] = NULL, [SortOrder] = 554.90 WHERE [Code] = 'phk' END +SET [Description] = 'Phake', [Definition] = NULL, [SortOrder] = 5556.00 WHERE [Code] = 'phk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypa', 'Phala', NULL, 555.00) END +VALUES ('ypa', 'Phala', NULL, 5557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phala', [Definition] = NULL, [SortOrder] = 555.00 WHERE [Code] = 'ypa' END +SET [Description] = 'Phala', [Definition] = NULL, [SortOrder] = 5557.00 WHERE [Code] = 'ypa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phl', 'Phalura', NULL, 555.10) END +VALUES ('phl', 'Phalura', NULL, 5558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phalura', [Definition] = NULL, [SortOrder] = 555.10 WHERE [Code] = 'phl' END +SET [Description] = 'Phalura', [Definition] = NULL, [SortOrder] = 5558.00 WHERE [Code] = 'phl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phq', 'Phana''', NULL, 555.20) END +VALUES ('phq', 'Phana''', NULL, 5559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phana''', [Definition] = NULL, [SortOrder] = 555.20 WHERE [Code] = 'phq' END +SET [Description] = 'Phana''', [Definition] = NULL, [SortOrder] = 5559.00 WHERE [Code] = 'phq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phw', 'Phangduwali', NULL, 555.30) END +VALUES ('phw', 'Phangduwali', NULL, 5560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phangduwali', [Definition] = NULL, [SortOrder] = 555.30 WHERE [Code] = 'phw' END +SET [Description] = 'Phangduwali', [Definition] = NULL, [SortOrder] = 5560.00 WHERE [Code] = 'phw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pem', 'Phende', NULL, 555.40) END +VALUES ('pem', 'Phende', NULL, 5561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phende', [Definition] = NULL, [SortOrder] = 555.40 WHERE [Code] = 'pem' END +SET [Description] = 'Phende', [Definition] = NULL, [SortOrder] = 5561.00 WHERE [Code] = 'pem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psp', 'Philippine Sign Language', NULL, 555.50) END +VALUES ('psp', 'Philippine Sign Language', NULL, 5562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Philippine Sign Language', [Definition] = NULL, [SortOrder] = 555.50 WHERE [Code] = 'psp' END +SET [Description] = 'Philippine Sign Language', [Definition] = NULL, [SortOrder] = 5562.00 WHERE [Code] = 'psp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phm', 'Phimbi', NULL, 555.60) END +VALUES ('phm', 'Phimbi', NULL, 5563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phimbi', [Definition] = NULL, [SortOrder] = 555.60 WHERE [Code] = 'phm' END +SET [Description] = 'Phimbi', [Definition] = NULL, [SortOrder] = 5563.00 WHERE [Code] = 'phm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phn', 'Phoenician', NULL, 555.70) END +VALUES ('phn', 'Phoenician', NULL, 5564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phoenician', [Definition] = NULL, [SortOrder] = 555.70 WHERE [Code] = 'phn' END +SET [Description] = 'Phoenician', [Definition] = NULL, [SortOrder] = 5564.00 WHERE [Code] = 'phn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypg', 'Phola', NULL, 555.80) END +VALUES ('ypg', 'Phola', NULL, 5565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phola', [Definition] = NULL, [SortOrder] = 555.80 WHERE [Code] = 'ypg' END +SET [Description] = 'Phola', [Definition] = NULL, [SortOrder] = 5565.00 WHERE [Code] = 'ypg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yip', 'Pholo', NULL, 555.90) END +VALUES ('yip', 'Pholo', NULL, 5566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pholo', [Definition] = NULL, [SortOrder] = 555.90 WHERE [Code] = 'yip' END +SET [Description] = 'Pholo', [Definition] = NULL, [SortOrder] = 5566.00 WHERE [Code] = 'yip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nph', 'Phom Naga', NULL, 556.00) END +VALUES ('nph', 'Phom Naga', NULL, 5567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phom Naga', [Definition] = NULL, [SortOrder] = 556.00 WHERE [Code] = 'nph' END +SET [Description] = 'Phom Naga', [Definition] = NULL, [SortOrder] = 5567.00 WHERE [Code] = 'nph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnx', 'Phong-Kniang', NULL, 556.10) END +VALUES ('pnx', 'Phong-Kniang', NULL, 5568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phong-Kniang', [Definition] = NULL, [SortOrder] = 556.10 WHERE [Code] = 'pnx' END +SET [Description] = 'Phong-Kniang', [Definition] = NULL, [SortOrder] = 5568.00 WHERE [Code] = 'pnx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjt', 'Phrae Pwo Karen', NULL, 556.20) END +VALUES ('kjt', 'Phrae Pwo Karen', NULL, 5569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phrae Pwo Karen', [Definition] = NULL, [SortOrder] = 556.20 WHERE [Code] = 'kjt' END +SET [Description] = 'Phrae Pwo Karen', [Definition] = NULL, [SortOrder] = 5569.00 WHERE [Code] = 'kjt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpg', 'Phrygian', NULL, 556.30) END +VALUES ('xpg', 'Phrygian', NULL, 5570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phrygian', [Definition] = NULL, [SortOrder] = 556.30 WHERE [Code] = 'xpg' END +SET [Description] = 'Phrygian', [Definition] = NULL, [SortOrder] = 5570.00 WHERE [Code] = 'xpg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pht', 'Phu Thai', NULL, 556.40) END +VALUES ('pht', 'Phu Thai', NULL, 5571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phu Thai', [Definition] = NULL, [SortOrder] = 556.40 WHERE [Code] = 'pht' END +SET [Description] = 'Phu Thai', [Definition] = NULL, [SortOrder] = 5571.00 WHERE [Code] = 'pht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phu', 'Phuan', NULL, 556.50) END +VALUES ('phu', 'Phuan', NULL, 5572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuan', [Definition] = NULL, [SortOrder] = 556.50 WHERE [Code] = 'phu' END +SET [Description] = 'Phuan', [Definition] = NULL, [SortOrder] = 5572.00 WHERE [Code] = 'phu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phd', 'Phudagi', NULL, 556.60) END +VALUES ('phd', 'Phudagi', NULL, 5573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phudagi', [Definition] = NULL, [SortOrder] = 556.60 WHERE [Code] = 'phd' END +SET [Description] = 'Phudagi', [Definition] = NULL, [SortOrder] = 5573.00 WHERE [Code] = 'phd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pug', 'Phuie', NULL, 556.70) END +VALUES ('pug', 'Phuie', NULL, 5574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuie', [Definition] = NULL, [SortOrder] = 556.70 WHERE [Code] = 'pug' END +SET [Description] = 'Phuie', [Definition] = NULL, [SortOrder] = 5574.00 WHERE [Code] = 'pug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phh', 'Phukha', NULL, 556.80) END +VALUES ('phh', 'Phukha', NULL, 5575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phukha', [Definition] = NULL, [SortOrder] = 556.80 WHERE [Code] = 'phh' END +SET [Description] = 'Phukha', [Definition] = NULL, [SortOrder] = 5575.00 WHERE [Code] = 'phh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypm', 'Phuma', NULL, 556.90) END +VALUES ('ypm', 'Phuma', NULL, 5576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuma', [Definition] = NULL, [SortOrder] = 556.90 WHERE [Code] = 'ypm' END +SET [Description] = 'Phuma', [Definition] = NULL, [SortOrder] = 5576.00 WHERE [Code] = 'ypm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pho', 'Phunoi', NULL, 557.00) END +VALUES ('pho', 'Phunoi', NULL, 5577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phunoi', [Definition] = NULL, [SortOrder] = 557.00 WHERE [Code] = 'pho' END +SET [Description] = 'Phunoi', [Definition] = NULL, [SortOrder] = 5577.00 WHERE [Code] = 'pho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phg', 'Phuong', NULL, 557.10) END +VALUES ('phg', 'Phuong', NULL, 5578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuong', [Definition] = NULL, [SortOrder] = 557.10 WHERE [Code] = 'phg' END +SET [Description] = 'Phuong', [Definition] = NULL, [SortOrder] = 5578.00 WHERE [Code] = 'phg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypp', 'Phupa', NULL, 557.20) END +VALUES ('ypp', 'Phupa', NULL, 5579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phupa', [Definition] = NULL, [SortOrder] = 557.20 WHERE [Code] = 'ypp' END +SET [Description] = 'Phupa', [Definition] = NULL, [SortOrder] = 5579.00 WHERE [Code] = 'ypp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yph', 'Phupha', NULL, 557.30) END +VALUES ('yph', 'Phupha', NULL, 5580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phupha', [Definition] = NULL, [SortOrder] = 557.30 WHERE [Code] = 'yph' END +SET [Description] = 'Phupha', [Definition] = NULL, [SortOrder] = 5580.00 WHERE [Code] = 'yph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypz', 'Phuza', NULL, 557.40) END +VALUES ('ypz', 'Phuza', NULL, 5581.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuza', [Definition] = NULL, [SortOrder] = 557.40 WHERE [Code] = 'ypz' END +SET [Description] = 'Phuza', [Definition] = NULL, [SortOrder] = 5581.00 WHERE [Code] = 'ypz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptr', 'Piamatsina', NULL, 557.50) END +VALUES ('ptr', 'Piamatsina', NULL, 5582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piamatsina', [Definition] = NULL, [SortOrder] = 557.50 WHERE [Code] = 'ptr' END +SET [Description] = 'Piamatsina', [Definition] = NULL, [SortOrder] = 5582.00 WHERE [Code] = 'ptr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pin', 'Piame', NULL, 557.60) END +VALUES ('pin', 'Piame', NULL, 5583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piame', [Definition] = NULL, [SortOrder] = 557.60 WHERE [Code] = 'pin' END +SET [Description] = 'Piame', [Definition] = NULL, [SortOrder] = 5583.00 WHERE [Code] = 'pin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pio', 'Piapoco', NULL, 557.70) END +VALUES ('pio', 'Piapoco', NULL, 5584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piapoco', [Definition] = NULL, [SortOrder] = 557.70 WHERE [Code] = 'pio' END +SET [Description] = 'Piapoco', [Definition] = NULL, [SortOrder] = 5584.00 WHERE [Code] = 'pio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pid', 'Piaroa', NULL, 557.80) END +VALUES ('pid', 'Piaroa', NULL, 5585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piaroa', [Definition] = NULL, [SortOrder] = 557.80 WHERE [Code] = 'pid' END +SET [Description] = 'Piaroa', [Definition] = NULL, [SortOrder] = 5585.00 WHERE [Code] = 'pid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcd', 'Picard', NULL, 557.90) END +VALUES ('pcd', 'Picard', NULL, 5586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Picard', [Definition] = NULL, [SortOrder] = 557.90 WHERE [Code] = 'pcd' END +SET [Description] = 'Picard', [Definition] = NULL, [SortOrder] = 5586.00 WHERE [Code] = 'pcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpu', 'Pichis Ashéninka', NULL, 558.00) END +VALUES ('cpu', 'Pichis Ashéninka', NULL, 5587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pichis Ashéninka', [Definition] = NULL, [SortOrder] = 558.00 WHERE [Code] = 'cpu' END +SET [Description] = 'Pichis Ashéninka', [Definition] = NULL, [SortOrder] = 5587.00 WHERE [Code] = 'cpu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpi', 'Pictish', NULL, 558.10) END +VALUES ('xpi', 'Pictish', NULL, 5588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pictish', [Definition] = NULL, [SortOrder] = 558.10 WHERE [Code] = 'xpi' END +SET [Description] = 'Pictish', [Definition] = NULL, [SortOrder] = 5588.00 WHERE [Code] = 'xpi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dep', 'Pidgin Delaware', NULL, 558.20) END +VALUES ('dep', 'Pidgin Delaware', NULL, 5589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pidgin Delaware', [Definition] = NULL, [SortOrder] = 558.20 WHERE [Code] = 'dep' END +SET [Description] = 'Pidgin Delaware', [Definition] = NULL, [SortOrder] = 5589.00 WHERE [Code] = 'dep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pms', 'Piemontese', NULL, 558.30) END +VALUES ('pms', 'Piemontese', NULL, 5590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piemontese', [Definition] = NULL, [SortOrder] = 558.30 WHERE [Code] = 'pms' END +SET [Description] = 'Piemontese', [Definition] = NULL, [SortOrder] = 5590.00 WHERE [Code] = 'pms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pij', 'Pijao', NULL, 558.40) END +VALUES ('pij', 'Pijao', NULL, 5591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pijao', [Definition] = NULL, [SortOrder] = 558.40 WHERE [Code] = 'pij' END +SET [Description] = 'Pijao', [Definition] = NULL, [SortOrder] = 5591.00 WHERE [Code] = 'pij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piz', 'Pije', NULL, 558.50) END +VALUES ('piz', 'Pije', NULL, 5592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pije', [Definition] = NULL, [SortOrder] = 558.50 WHERE [Code] = 'piz' END +SET [Description] = 'Pije', [Definition] = NULL, [SortOrder] = 5592.00 WHERE [Code] = 'piz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pis', 'Pijin', NULL, 558.60) END +VALUES ('pis', 'Pijin', NULL, 5593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pijin', [Definition] = NULL, [SortOrder] = 558.60 WHERE [Code] = 'pis' END +SET [Description] = 'Pijin', [Definition] = NULL, [SortOrder] = 5593.00 WHERE [Code] = 'pis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plg', 'Pilagá', NULL, 558.70) END +VALUES ('plg', 'Pilagá', NULL, 5594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pilagá', [Definition] = NULL, [SortOrder] = 558.70 WHERE [Code] = 'plg' END +SET [Description] = 'Pilagá', [Definition] = NULL, [SortOrder] = 5594.00 WHERE [Code] = 'plg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piv', 'Pileni', NULL, 558.80) END +VALUES ('piv', 'Pileni', NULL, 5595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pileni', [Definition] = NULL, [SortOrder] = 558.80 WHERE [Code] = 'piv' END +SET [Description] = 'Pileni', [Definition] = NULL, [SortOrder] = 5595.00 WHERE [Code] = 'piv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pia', 'Pima Bajo', NULL, 558.90) END +VALUES ('pia', 'Pima Bajo', NULL, 5596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pima Bajo', [Definition] = NULL, [SortOrder] = 558.90 WHERE [Code] = 'pia' END +SET [Description] = 'Pima Bajo', [Definition] = NULL, [SortOrder] = 5596.00 WHERE [Code] = 'pia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piw', 'Pimbwe', NULL, 559.00) END +VALUES ('piw', 'Pimbwe', NULL, 5597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pimbwe', [Definition] = NULL, [SortOrder] = 559.00 WHERE [Code] = 'piw' END +SET [Description] = 'Pimbwe', [Definition] = NULL, [SortOrder] = 5597.00 WHERE [Code] = 'piw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnn', 'Pinai-Hagahai', NULL, 559.10) END +VALUES ('pnn', 'Pinai-Hagahai', NULL, 5598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinai-Hagahai', [Definition] = NULL, [SortOrder] = 559.10 WHERE [Code] = 'pnn' END +SET [Description] = 'Pinai-Hagahai', [Definition] = NULL, [SortOrder] = 5598.00 WHERE [Code] = 'pnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pti', 'Pindiini', NULL, 559.20) END +VALUES ('pti', 'Pindiini', NULL, 5599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pindiini', [Definition] = NULL, [SortOrder] = 559.20 WHERE [Code] = 'pti' END +SET [Description] = 'Pindiini', [Definition] = NULL, [SortOrder] = 5599.00 WHERE [Code] = 'pti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pif', 'Pingelapese', NULL, 559.30) END +VALUES ('pif', 'Pingelapese', NULL, 5600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pingelapese', [Definition] = NULL, [SortOrder] = 559.30 WHERE [Code] = 'pif' END +SET [Description] = 'Pingelapese', [Definition] = NULL, [SortOrder] = 5600.00 WHERE [Code] = 'pif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnv', 'Pinigura', NULL, 559.40) END +VALUES ('pnv', 'Pinigura', NULL, 5601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinigura', [Definition] = NULL, [SortOrder] = 559.40 WHERE [Code] = 'pnv' END +SET [Description] = 'Pinigura', [Definition] = NULL, [SortOrder] = 5601.00 WHERE [Code] = 'pnv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnj', 'Pinjarup', NULL, 559.50) END +VALUES ('pnj', 'Pinjarup', NULL, 5602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinjarup', [Definition] = NULL, [SortOrder] = 559.50 WHERE [Code] = 'pnj' END +SET [Description] = 'Pinjarup', [Definition] = NULL, [SortOrder] = 5602.00 WHERE [Code] = 'pnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pic', 'Pinji', NULL, 559.60) END +VALUES ('pic', 'Pinji', NULL, 5603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinji', [Definition] = NULL, [SortOrder] = 559.60 WHERE [Code] = 'pic' END +SET [Description] = 'Pinji', [Definition] = NULL, [SortOrder] = 5603.00 WHERE [Code] = 'pic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mio', 'Pinotepa Nacional Mixtec', NULL, 559.70) END +VALUES ('mio', 'Pinotepa Nacional Mixtec', NULL, 5604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinotepa Nacional Mixtec', [Definition] = NULL, [SortOrder] = 559.70 WHERE [Code] = 'mio' END +SET [Description] = 'Pinotepa Nacional Mixtec', [Definition] = NULL, [SortOrder] = 5604.00 WHERE [Code] = 'mio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piu', 'Pintupi-Luritja', NULL, 559.80) END +VALUES ('piu', 'Pintupi-Luritja', NULL, 5605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pintupi-Luritja', [Definition] = NULL, [SortOrder] = 559.80 WHERE [Code] = 'piu' END +SET [Description] = 'Pintupi-Luritja', [Definition] = NULL, [SortOrder] = 5605.00 WHERE [Code] = 'piu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pny', 'Pinyin', NULL, 559.90) END +VALUES ('pny', 'Pinyin', NULL, 5606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinyin', [Definition] = NULL, [SortOrder] = 559.90 WHERE [Code] = 'pny' END +SET [Description] = 'Pinyin', [Definition] = NULL, [SortOrder] = 5606.00 WHERE [Code] = 'pny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppl', 'Pipil', NULL, 560.00) END +VALUES ('ppl', 'Pipil', NULL, 5607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pipil', [Definition] = NULL, [SortOrder] = 560.00 WHERE [Code] = 'ppl' END +SET [Description] = 'Pipil', [Definition] = NULL, [SortOrder] = 5607.00 WHERE [Code] = 'ppl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myp', 'Pirahã', NULL, 560.10) END +VALUES ('myp', 'Pirahã', NULL, 5608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pirahã', [Definition] = NULL, [SortOrder] = 560.10 WHERE [Code] = 'myp' END +SET [Description] = 'Pirahã', [Definition] = NULL, [SortOrder] = 5608.00 WHERE [Code] = 'myp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pir', 'Piratapuyo', NULL, 560.20) END +VALUES ('pir', 'Piratapuyo', NULL, 5609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piratapuyo', [Definition] = NULL, [SortOrder] = 560.20 WHERE [Code] = 'pir' END +SET [Description] = 'Piratapuyo', [Definition] = NULL, [SortOrder] = 5609.00 WHERE [Code] = 'pir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxi', 'Pirlatapa', NULL, 560.30) END +VALUES ('bxi', 'Pirlatapa', NULL, 5610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pirlatapa', [Definition] = NULL, [SortOrder] = 560.30 WHERE [Code] = 'bxi' END +SET [Description] = 'Pirlatapa', [Definition] = NULL, [SortOrder] = 5610.00 WHERE [Code] = 'bxi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pie', 'Piro', NULL, 560.40) END +VALUES ('pie', 'Piro', NULL, 5611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piro', [Definition] = NULL, [SortOrder] = 560.40 WHERE [Code] = 'pie' END +SET [Description] = 'Piro', [Definition] = NULL, [SortOrder] = 5611.00 WHERE [Code] = 'pie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpa', 'Pirriya', NULL, 560.50) END +VALUES ('xpa', 'Pirriya', NULL, 5612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pirriya', [Definition] = NULL, [SortOrder] = 560.50 WHERE [Code] = 'xpa' END +SET [Description] = 'Pirriya', [Definition] = NULL, [SortOrder] = 5612.00 WHERE [Code] = 'xpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pig', 'Pisabo', NULL, 560.60) END +VALUES ('pig', 'Pisabo', NULL, 5613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pisabo', [Definition] = NULL, [SortOrder] = 560.60 WHERE [Code] = 'pig' END +SET [Description] = 'Pisabo', [Definition] = NULL, [SortOrder] = 5613.00 WHERE [Code] = 'pig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpp', 'Pisaflores Tepehua', NULL, 560.70) END +VALUES ('tpp', 'Pisaflores Tepehua', NULL, 5614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pisaflores Tepehua', [Definition] = NULL, [SortOrder] = 560.70 WHERE [Code] = 'tpp' END +SET [Description] = 'Pisaflores Tepehua', [Definition] = NULL, [SortOrder] = 5614.00 WHERE [Code] = 'tpp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psy', 'Piscataway', NULL, 560.80) END +VALUES ('psy', 'Piscataway', NULL, 5615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piscataway', [Definition] = NULL, [SortOrder] = 560.80 WHERE [Code] = 'psy' END +SET [Description] = 'Piscataway', [Definition] = NULL, [SortOrder] = 5615.00 WHERE [Code] = 'psy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xps', 'Pisidian', NULL, 560.90) END +VALUES ('xps', 'Pisidian', NULL, 5616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pisidian', [Definition] = NULL, [SortOrder] = 560.90 WHERE [Code] = 'xps' END +SET [Description] = 'Pisidian', [Definition] = NULL, [SortOrder] = 5616.00 WHERE [Code] = 'xps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pih', 'Pitcairn-Norfolk', NULL, 561.00) END +VALUES ('pih', 'Pitcairn-Norfolk', NULL, 5617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pitcairn-Norfolk', [Definition] = NULL, [SortOrder] = 561.00 WHERE [Code] = 'pih' END +SET [Description] = 'Pitcairn-Norfolk', [Definition] = NULL, [SortOrder] = 5617.00 WHERE [Code] = 'pih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sje', 'Pite Sami', NULL, 561.10) END +VALUES ('sje', 'Pite Sami', NULL, 5618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pite Sami', [Definition] = NULL, [SortOrder] = 561.10 WHERE [Code] = 'sje' END +SET [Description] = 'Pite Sami', [Definition] = NULL, [SortOrder] = 5618.00 WHERE [Code] = 'sje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcn', 'Piti', NULL, 561.20) END +VALUES ('pcn', 'Piti', NULL, 5619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piti', [Definition] = NULL, [SortOrder] = 561.20 WHERE [Code] = 'pcn' END +SET [Description] = 'Piti', [Definition] = NULL, [SortOrder] = 5619.00 WHERE [Code] = 'pcn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pjt', 'Pitjantjatjara', NULL, 561.30) END +VALUES ('pjt', 'Pitjantjatjara', NULL, 5620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pitjantjatjara', [Definition] = NULL, [SortOrder] = 561.30 WHERE [Code] = 'pjt' END +SET [Description] = 'Pitjantjatjara', [Definition] = NULL, [SortOrder] = 5620.00 WHERE [Code] = 'pjt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pit', 'Pitta Pitta', NULL, 561.40) END +VALUES ('pit', 'Pitta Pitta', NULL, 5621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pitta Pitta', [Definition] = NULL, [SortOrder] = 561.40 WHERE [Code] = 'pit' END +SET [Description] = 'Pitta Pitta', [Definition] = NULL, [SortOrder] = 5621.00 WHERE [Code] = 'pit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pix', 'Piu', NULL, 561.50) END +VALUES ('pix', 'Piu', NULL, 5622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piu', [Definition] = NULL, [SortOrder] = 561.50 WHERE [Code] = 'pix' END +SET [Description] = 'Piu', [Definition] = NULL, [SortOrder] = 5622.00 WHERE [Code] = 'pix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piy', 'Piya-Kwonci', NULL, 561.60) END +VALUES ('piy', 'Piya-Kwonci', NULL, 5623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piya-Kwonci', [Definition] = NULL, [SortOrder] = 561.60 WHERE [Code] = 'piy' END +SET [Description] = 'Piya-Kwonci', [Definition] = NULL, [SortOrder] = 5623.00 WHERE [Code] = 'piy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crk', 'Plains Cree', NULL, 561.70) END +VALUES ('crk', 'Plains Cree', NULL, 5624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plains Cree', [Definition] = NULL, [SortOrder] = 561.70 WHERE [Code] = 'crk' END +SET [Description] = 'Plains Cree', [Definition] = NULL, [SortOrder] = 5624.00 WHERE [Code] = 'crk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psd', 'Plains Indian Sign Language', NULL, 561.80) END +VALUES ('psd', 'Plains Indian Sign Language', NULL, 5625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plains Indian Sign Language', [Definition] = NULL, [SortOrder] = 561.80 WHERE [Code] = 'psd' END +SET [Description] = 'Plains Indian Sign Language', [Definition] = NULL, [SortOrder] = 5625.00 WHERE [Code] = 'psd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmw', 'Plains Miwok', NULL, 561.90) END +VALUES ('pmw', 'Plains Miwok', NULL, 5626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plains Miwok', [Definition] = NULL, [SortOrder] = 561.90 WHERE [Code] = 'pmw' END +SET [Description] = 'Plains Miwok', [Definition] = NULL, [SortOrder] = 5626.00 WHERE [Code] = 'pmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktj', 'Plapo Krumen', NULL, 562.00) END +VALUES ('ktj', 'Plapo Krumen', NULL, 5627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plapo Krumen', [Definition] = NULL, [SortOrder] = 562.00 WHERE [Code] = 'ktj' END +SET [Description] = 'Plapo Krumen', [Definition] = NULL, [SortOrder] = 5627.00 WHERE [Code] = 'ktj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plt', 'Plateau Malagasy', NULL, 562.10) END +VALUES ('plt', 'Plateau Malagasy', NULL, 5628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plateau Malagasy', [Definition] = NULL, [SortOrder] = 562.10 WHERE [Code] = 'plt' END +SET [Description] = 'Plateau Malagasy', [Definition] = NULL, [SortOrder] = 5628.00 WHERE [Code] = 'plt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdt', 'Plautdietsch', NULL, 562.20) END +VALUES ('pdt', 'Plautdietsch', NULL, 5629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plautdietsch', [Definition] = NULL, [SortOrder] = 562.20 WHERE [Code] = 'pdt' END +SET [Description] = 'Plautdietsch', [Definition] = NULL, [SortOrder] = 5629.00 WHERE [Code] = 'pdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gob', 'Playero', NULL, 562.30) END +VALUES ('gob', 'Playero', NULL, 5630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Playero', [Definition] = NULL, [SortOrder] = 562.30 WHERE [Code] = 'gob' END +SET [Description] = 'Playero', [Definition] = NULL, [SortOrder] = 5630.00 WHERE [Code] = 'gob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbv', 'Pnar', NULL, 562.40) END +VALUES ('pbv', 'Pnar', NULL, 5631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pnar', [Definition] = NULL, [SortOrder] = 562.40 WHERE [Code] = 'pbv' END +SET [Description] = 'Pnar', [Definition] = NULL, [SortOrder] = 5631.00 WHERE [Code] = 'pbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npo', 'Pochuri Naga', NULL, 562.50) END +VALUES ('npo', 'Pochuri Naga', NULL, 5632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pochuri Naga', [Definition] = NULL, [SortOrder] = 562.50 WHERE [Code] = 'npo' END +SET [Description] = 'Pochuri Naga', [Definition] = NULL, [SortOrder] = 5632.00 WHERE [Code] = 'npo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpo', 'Pochutec', NULL, 562.60) END +VALUES ('xpo', 'Pochutec', NULL, 5633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pochutec', [Definition] = NULL, [SortOrder] = 562.60 WHERE [Code] = 'xpo' END +SET [Description] = 'Pochutec', [Definition] = NULL, [SortOrder] = 5633.00 WHERE [Code] = 'xpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdn', 'Podena', NULL, 562.70) END +VALUES ('pdn', 'Podena', NULL, 5634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Podena', [Definition] = NULL, [SortOrder] = 562.70 WHERE [Code] = 'pdn' END +SET [Description] = 'Podena', [Definition] = NULL, [SortOrder] = 5634.00 WHERE [Code] = 'pdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poy', 'Pogolo', NULL, 562.80) END +VALUES ('poy', 'Pogolo', NULL, 5635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pogolo', [Definition] = NULL, [SortOrder] = 562.80 WHERE [Code] = 'poy' END +SET [Description] = 'Pogolo', [Definition] = NULL, [SortOrder] = 5635.00 WHERE [Code] = 'poy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pon', 'Pohnpeian', NULL, 562.90) END +VALUES ('pon', 'Pohnpeian', NULL, 5636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pohnpeian', [Definition] = NULL, [SortOrder] = 562.90 WHERE [Code] = 'pon' END +SET [Description] = 'Pohnpeian', [Definition] = NULL, [SortOrder] = 5636.00 WHERE [Code] = 'pon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pok', 'Pokangá', NULL, 563.00) END +VALUES ('pok', 'Pokangá', NULL, 5637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pokangá', [Definition] = NULL, [SortOrder] = 563.00 WHERE [Code] = 'pok' END +SET [Description] = 'Pokangá', [Definition] = NULL, [SortOrder] = 5637.00 WHERE [Code] = 'pok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pof', 'Poke', NULL, 563.10) END +VALUES ('pof', 'Poke', NULL, 5638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poke', [Definition] = NULL, [SortOrder] = 563.10 WHERE [Code] = 'pof' END +SET [Description] = 'Poke', [Definition] = NULL, [SortOrder] = 5638.00 WHERE [Code] = 'pof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkb', 'Pokomo', NULL, 563.20) END +VALUES ('pkb', 'Pokomo', NULL, 5639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pokomo', [Definition] = NULL, [SortOrder] = 563.20 WHERE [Code] = 'pkb' END +SET [Description] = 'Pokomo', [Definition] = NULL, [SortOrder] = 5639.00 WHERE [Code] = 'pkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pko', 'Pökoot', NULL, 563.30) END +VALUES ('pko', 'Pökoot', NULL, 5640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pökoot', [Definition] = NULL, [SortOrder] = 563.30 WHERE [Code] = 'pko' END +SET [Description] = 'Pökoot', [Definition] = NULL, [SortOrder] = 5640.00 WHERE [Code] = 'pko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pox', 'Polabian', NULL, 563.40) END +VALUES ('pox', 'Polabian', NULL, 5641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polabian', [Definition] = NULL, [SortOrder] = 563.40 WHERE [Code] = 'pox' END +SET [Description] = 'Polabian', [Definition] = NULL, [SortOrder] = 5641.00 WHERE [Code] = 'pox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pld', 'Polari', NULL, 563.50) END +VALUES ('pld', 'Polari', NULL, 5642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polari', [Definition] = NULL, [SortOrder] = 563.50 WHERE [Code] = 'pld' END +SET [Description] = 'Polari', [Definition] = NULL, [SortOrder] = 5642.00 WHERE [Code] = 'pld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plj', 'Polci', NULL, 563.60) END +VALUES ('plj', 'Polci', NULL, 5643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polci', [Definition] = NULL, [SortOrder] = 563.60 WHERE [Code] = 'plj' END +SET [Description] = 'Polci', [Definition] = NULL, [SortOrder] = 5643.00 WHERE [Code] = 'plj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pol', 'Polish', NULL, 563.70) END +VALUES ('pol', 'Polish', NULL, 5644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polish', [Definition] = NULL, [SortOrder] = 563.70 WHERE [Code] = 'pol' END +SET [Description] = 'Polish', [Definition] = NULL, [SortOrder] = 5644.00 WHERE [Code] = 'pol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pso', 'Polish Sign Language', NULL, 563.80) END +VALUES ('pso', 'Polish Sign Language', NULL, 5645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polish Sign Language', [Definition] = NULL, [SortOrder] = 563.80 WHERE [Code] = 'pso' END +SET [Description] = 'Polish Sign Language', [Definition] = NULL, [SortOrder] = 5645.00 WHERE [Code] = 'pso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plb', 'Polonombauk', NULL, 563.90) END +VALUES ('plb', 'Polonombauk', NULL, 5646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polonombauk', [Definition] = NULL, [SortOrder] = 563.90 WHERE [Code] = 'plb' END +SET [Description] = 'Polonombauk', [Definition] = NULL, [SortOrder] = 5646.00 WHERE [Code] = 'plb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmo', 'Pom', NULL, 564.00) END +VALUES ('pmo', 'Pom', NULL, 5647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pom', [Definition] = NULL, [SortOrder] = 564.00 WHERE [Code] = 'pmo' END +SET [Description] = 'Pom', [Definition] = NULL, [SortOrder] = 5647.00 WHERE [Code] = 'pmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmm', 'Pomo', NULL, 564.10) END +VALUES ('pmm', 'Pomo', NULL, 5648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pomo', [Definition] = NULL, [SortOrder] = 564.10 WHERE [Code] = 'pmm' END +SET [Description] = 'Pomo', [Definition] = NULL, [SortOrder] = 5648.00 WHERE [Code] = 'pmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncc', 'Ponam', NULL, 564.20) END +VALUES ('ncc', 'Ponam', NULL, 5649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ponam', [Definition] = NULL, [SortOrder] = 564.20 WHERE [Code] = 'ncc' END +SET [Description] = 'Ponam', [Definition] = NULL, [SortOrder] = 5649.00 WHERE [Code] = 'ncc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pns', 'Ponosakan', NULL, 564.30) END +VALUES ('pns', 'Ponosakan', NULL, 5650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ponosakan', [Definition] = NULL, [SortOrder] = 564.30 WHERE [Code] = 'pns' END +SET [Description] = 'Ponosakan', [Definition] = NULL, [SortOrder] = 5650.00 WHERE [Code] = 'pns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnt', 'Pontic', NULL, 564.40) END +VALUES ('pnt', 'Pontic', NULL, 5651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pontic', [Definition] = NULL, [SortOrder] = 564.40 WHERE [Code] = 'pnt' END +SET [Description] = 'Pontic', [Definition] = NULL, [SortOrder] = 5651.00 WHERE [Code] = 'pnt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npg', 'Ponyo-Gongwang Naga', NULL, 564.50) END +VALUES ('npg', 'Ponyo-Gongwang Naga', NULL, 5652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ponyo-Gongwang Naga', [Definition] = NULL, [SortOrder] = 564.50 WHERE [Code] = 'npg' END +SET [Description] = 'Ponyo-Gongwang Naga', [Definition] = NULL, [SortOrder] = 5652.00 WHERE [Code] = 'npg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jac', 'Popti''', NULL, 564.60) END +VALUES ('jac', 'Popti''', NULL, 5653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Popti''', [Definition] = NULL, [SortOrder] = 564.60 WHERE [Code] = 'jac' END +SET [Description] = 'Popti''', [Definition] = NULL, [SortOrder] = 5653.00 WHERE [Code] = 'jac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poc', 'Poqomam', NULL, 564.70) END +VALUES ('poc', 'Poqomam', NULL, 5654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poqomam', [Definition] = NULL, [SortOrder] = 564.70 WHERE [Code] = 'poc' END +SET [Description] = 'Poqomam', [Definition] = NULL, [SortOrder] = 5654.00 WHERE [Code] = 'poc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poh', 'Poqomchi''', NULL, 564.80) END +VALUES ('poh', 'Poqomchi''', NULL, 5655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poqomchi''', [Definition] = NULL, [SortOrder] = 564.80 WHERE [Code] = 'poh' END +SET [Description] = 'Poqomchi''', [Definition] = NULL, [SortOrder] = 5655.00 WHERE [Code] = 'poh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prh', 'Porohanon', NULL, 564.90) END +VALUES ('prh', 'Porohanon', NULL, 5656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Porohanon', [Definition] = NULL, [SortOrder] = 564.90 WHERE [Code] = 'prh' END +SET [Description] = 'Porohanon', [Definition] = NULL, [SortOrder] = 5656.00 WHERE [Code] = 'prh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psw', 'Port Sandwich', NULL, 565.00) END +VALUES ('psw', 'Port Sandwich', NULL, 5657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Port Sandwich', [Definition] = NULL, [SortOrder] = 565.00 WHERE [Code] = 'psw' END +SET [Description] = 'Port Sandwich', [Definition] = NULL, [SortOrder] = 5657.00 WHERE [Code] = 'psw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpl', 'Port Sorell Tasmanian', NULL, 565.10) END +VALUES ('xpl', 'Port Sorell Tasmanian', NULL, 5658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Port Sorell Tasmanian', [Definition] = NULL, [SortOrder] = 565.10 WHERE [Code] = 'xpl' END +SET [Description] = 'Port Sorell Tasmanian', [Definition] = NULL, [SortOrder] = 5658.00 WHERE [Code] = 'xpl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptv', 'Port Vato', NULL, 565.20) END +VALUES ('ptv', 'Port Vato', NULL, 5659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Port Vato', [Definition] = NULL, [SortOrder] = 565.20 WHERE [Code] = 'ptv' END +SET [Description] = 'Port Vato', [Definition] = NULL, [SortOrder] = 5659.00 WHERE [Code] = 'ptv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'por') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('por', 'Portuguese', NULL, 565.30) END +VALUES ('por', 'Portuguese', NULL, 5660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Portuguese', [Definition] = NULL, [SortOrder] = 565.30 WHERE [Code] = 'por' END +SET [Description] = 'Portuguese', [Definition] = NULL, [SortOrder] = 5660.00 WHERE [Code] = 'por' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psr', 'Portuguese Sign Language', NULL, 565.40) END +VALUES ('psr', 'Portuguese Sign Language', NULL, 5661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Portuguese Sign Language', [Definition] = NULL, [SortOrder] = 565.40 WHERE [Code] = 'psr' END +SET [Description] = 'Portuguese Sign Language', [Definition] = NULL, [SortOrder] = 5661.00 WHERE [Code] = 'psr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pot', 'Potawatomi', NULL, 565.50) END +VALUES ('pot', 'Potawatomi', NULL, 5662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Potawatomi', [Definition] = NULL, [SortOrder] = 565.50 WHERE [Code] = 'pot' END +SET [Description] = 'Potawatomi', [Definition] = NULL, [SortOrder] = 5662.00 WHERE [Code] = 'pot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pog', 'Potiguára', NULL, 565.60) END +VALUES ('pog', 'Potiguára', NULL, 5663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Potiguára', [Definition] = NULL, [SortOrder] = 565.60 WHERE [Code] = 'pog' END +SET [Description] = 'Potiguára', [Definition] = NULL, [SortOrder] = 5663.00 WHERE [Code] = 'pog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdb', 'Pottangi Ollar Gadaba', NULL, 565.70) END +VALUES ('gdb', 'Pottangi Ollar Gadaba', NULL, 5664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pottangi Ollar Gadaba', [Definition] = NULL, [SortOrder] = 565.70 WHERE [Code] = 'gdb' END +SET [Description] = 'Pottangi Ollar Gadaba', [Definition] = NULL, [SortOrder] = 5664.00 WHERE [Code] = 'gdb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmx', 'Poumei Naga', NULL, 565.80) END +VALUES ('pmx', 'Poumei Naga', NULL, 5665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poumei Naga', [Definition] = NULL, [SortOrder] = 565.80 WHERE [Code] = 'pmx' END +SET [Description] = 'Poumei Naga', [Definition] = NULL, [SortOrder] = 5665.00 WHERE [Code] = 'pmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bye', 'Pouye', NULL, 565.90) END +VALUES ('bye', 'Pouye', NULL, 5666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pouye', [Definition] = NULL, [SortOrder] = 565.90 WHERE [Code] = 'bye' END +SET [Description] = 'Pouye', [Definition] = NULL, [SortOrder] = 5666.00 WHERE [Code] = 'bye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwr', 'Powari', NULL, 566.00) END +VALUES ('pwr', 'Powari', NULL, 5667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Powari', [Definition] = NULL, [SortOrder] = 566.00 WHERE [Code] = 'pwr' END +SET [Description] = 'Powari', [Definition] = NULL, [SortOrder] = 5667.00 WHERE [Code] = 'pwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pim', 'Powhatan', NULL, 566.10) END +VALUES ('pim', 'Powhatan', NULL, 5668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Powhatan', [Definition] = NULL, [SortOrder] = 566.10 WHERE [Code] = 'pim' END +SET [Description] = 'Powhatan', [Definition] = NULL, [SortOrder] = 5668.00 WHERE [Code] = 'pim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pyn', 'Poyanáwa', NULL, 566.20) END +VALUES ('pyn', 'Poyanáwa', NULL, 5669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poyanáwa', [Definition] = NULL, [SortOrder] = 566.20 WHERE [Code] = 'pyn' END +SET [Description] = 'Poyanáwa', [Definition] = NULL, [SortOrder] = 5669.00 WHERE [Code] = 'pyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prn', 'Prasuni', NULL, 566.30) END +VALUES ('prn', 'Prasuni', NULL, 5670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Prasuni', [Definition] = NULL, [SortOrder] = 566.30 WHERE [Code] = 'prn' END +SET [Description] = 'Prasuni', [Definition] = NULL, [SortOrder] = 5670.00 WHERE [Code] = 'prn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgl', 'Primitive Irish', NULL, 566.40) END +VALUES ('pgl', 'Primitive Irish', NULL, 5671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Primitive Irish', [Definition] = NULL, [SortOrder] = 566.40 WHERE [Code] = 'pgl' END +SET [Description] = 'Primitive Irish', [Definition] = NULL, [SortOrder] = 5671.00 WHERE [Code] = 'pgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pre', 'Principense', NULL, 566.50) END +VALUES ('pre', 'Principense', NULL, 5672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Principense', [Definition] = NULL, [SortOrder] = 566.50 WHERE [Code] = 'pre' END +SET [Description] = 'Principense', [Definition] = NULL, [SortOrder] = 5672.00 WHERE [Code] = 'pre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prz', 'Providencia Sign Language', NULL, 566.60) END +VALUES ('prz', 'Providencia Sign Language', NULL, 5673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Providencia Sign Language', [Definition] = NULL, [SortOrder] = 566.60 WHERE [Code] = 'prz' END +SET [Description] = 'Providencia Sign Language', [Definition] = NULL, [SortOrder] = 5673.00 WHERE [Code] = 'prz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prg', 'Prussian', NULL, 566.70) END +VALUES ('prg', 'Prussian', NULL, 5674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Prussian', [Definition] = NULL, [SortOrder] = 566.70 WHERE [Code] = 'prg' END +SET [Description] = 'Prussian', [Definition] = NULL, [SortOrder] = 5674.00 WHERE [Code] = 'prg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvj', 'Psikye', NULL, 566.80) END +VALUES ('kvj', 'Psikye', NULL, 5675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Psikye', [Definition] = NULL, [SortOrder] = 566.80 WHERE [Code] = 'kvj' END +SET [Description] = 'Psikye', [Definition] = NULL, [SortOrder] = 5675.00 WHERE [Code] = 'kvj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpx', 'Pu-Xian Chinese', NULL, 566.90) END +VALUES ('cpx', 'Pu-Xian Chinese', NULL, 5676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pu-Xian Chinese', [Definition] = NULL, [SortOrder] = 566.90 WHERE [Code] = 'cpx' END +SET [Description] = 'Pu-Xian Chinese', [Definition] = NULL, [SortOrder] = 5676.00 WHERE [Code] = 'cpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pux', 'Puare', NULL, 567.00) END +VALUES ('pux', 'Puare', NULL, 5677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puare', [Definition] = NULL, [SortOrder] = 567.00 WHERE [Code] = 'pux' END +SET [Description] = 'Puare', [Definition] = NULL, [SortOrder] = 5677.00 WHERE [Code] = 'pux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atp', 'Pudtol Atta', NULL, 567.10) END +VALUES ('atp', 'Pudtol Atta', NULL, 5678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pudtol Atta', [Definition] = NULL, [SortOrder] = 567.10 WHERE [Code] = 'atp' END +SET [Description] = 'Pudtol Atta', [Definition] = NULL, [SortOrder] = 5678.00 WHERE [Code] = 'atp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbm', 'Puebla Mazatec', NULL, 567.20) END +VALUES ('pbm', 'Puebla Mazatec', NULL, 5679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puebla Mazatec', [Definition] = NULL, [SortOrder] = 567.20 WHERE [Code] = 'pbm' END +SET [Description] = 'Puebla Mazatec', [Definition] = NULL, [SortOrder] = 5679.00 WHERE [Code] = 'pbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pue', 'Puelche', NULL, 567.30) END +VALUES ('pue', 'Puelche', NULL, 5680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puelche', [Definition] = NULL, [SortOrder] = 567.30 WHERE [Code] = 'pue' END +SET [Description] = 'Puelche', [Definition] = NULL, [SortOrder] = 5680.00 WHERE [Code] = 'pue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psl', 'Puerto Rican Sign Language', NULL, 567.40) END +VALUES ('psl', 'Puerto Rican Sign Language', NULL, 5681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puerto Rican Sign Language', [Definition] = NULL, [SortOrder] = 567.40 WHERE [Code] = 'psl' END +SET [Description] = 'Puerto Rican Sign Language', [Definition] = NULL, [SortOrder] = 5681.00 WHERE [Code] = 'psl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npu', 'Puimei Naga', NULL, 567.50) END +VALUES ('npu', 'Puimei Naga', NULL, 5682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puimei Naga', [Definition] = NULL, [SortOrder] = 567.50 WHERE [Code] = 'npu' END +SET [Description] = 'Puimei Naga', [Definition] = NULL, [SortOrder] = 5682.00 WHERE [Code] = 'npu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pui', 'Puinave', NULL, 567.60) END +VALUES ('pui', 'Puinave', NULL, 5683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puinave', [Definition] = NULL, [SortOrder] = 567.60 WHERE [Code] = 'pui' END +SET [Description] = 'Puinave', [Definition] = NULL, [SortOrder] = 5683.00 WHERE [Code] = 'pui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkp', 'Pukapuka', NULL, 567.70) END +VALUES ('pkp', 'Pukapuka', NULL, 5684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pukapuka', [Definition] = NULL, [SortOrder] = 567.70 WHERE [Code] = 'pkp' END +SET [Description] = 'Pukapuka', [Definition] = NULL, [SortOrder] = 5684.00 WHERE [Code] = 'pkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuc', 'Pulaar', NULL, 567.80) END +VALUES ('fuc', 'Pulaar', NULL, 5685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pulaar', [Definition] = NULL, [SortOrder] = 567.80 WHERE [Code] = 'fuc' END +SET [Description] = 'Pulaar', [Definition] = NULL, [SortOrder] = 5685.00 WHERE [Code] = 'fuc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pup', 'Pulabu', NULL, 567.90) END +VALUES ('pup', 'Pulabu', NULL, 5686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pulabu', [Definition] = NULL, [SortOrder] = 567.90 WHERE [Code] = 'pup' END +SET [Description] = 'Pulabu', [Definition] = NULL, [SortOrder] = 5686.00 WHERE [Code] = 'pup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuf', 'Pular', NULL, 568.00) END +VALUES ('fuf', 'Pular', NULL, 5687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pular', [Definition] = NULL, [SortOrder] = 568.00 WHERE [Code] = 'fuf' END +SET [Description] = 'Pular', [Definition] = NULL, [SortOrder] = 5687.00 WHERE [Code] = 'fuf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puw', 'Puluwatese', NULL, 568.10) END +VALUES ('puw', 'Puluwatese', NULL, 5688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puluwatese', [Definition] = NULL, [SortOrder] = 568.10 WHERE [Code] = 'puw' END +SET [Description] = 'Puluwatese', [Definition] = NULL, [SortOrder] = 5688.00 WHERE [Code] = 'puw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pum', 'Puma', NULL, 568.20) END +VALUES ('pum', 'Puma', NULL, 5689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puma', [Definition] = NULL, [SortOrder] = 568.20 WHERE [Code] = 'pum' END +SET [Description] = 'Puma', [Definition] = NULL, [SortOrder] = 5689.00 WHERE [Code] = 'pum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yae', 'Pumé', NULL, 568.30) END +VALUES ('yae', 'Pumé', NULL, 5690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pumé', [Definition] = NULL, [SortOrder] = 568.30 WHERE [Code] = 'yae' END +SET [Description] = 'Pumé', [Definition] = NULL, [SortOrder] = 5690.00 WHERE [Code] = 'yae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpm', 'Pumpokol', NULL, 568.40) END +VALUES ('xpm', 'Pumpokol', NULL, 5691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pumpokol', [Definition] = NULL, [SortOrder] = 568.40 WHERE [Code] = 'xpm' END +SET [Description] = 'Pumpokol', [Definition] = NULL, [SortOrder] = 5691.00 WHERE [Code] = 'xpm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pud', 'Punan Aput', NULL, 568.50) END +VALUES ('pud', 'Punan Aput', NULL, 5692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Aput', [Definition] = NULL, [SortOrder] = 568.50 WHERE [Code] = 'pud' END +SET [Description] = 'Punan Aput', [Definition] = NULL, [SortOrder] = 5692.00 WHERE [Code] = 'pud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pna', 'Punan Bah-Biau', NULL, 568.60) END +VALUES ('pna', 'Punan Bah-Biau', NULL, 5693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Bah-Biau', [Definition] = NULL, [SortOrder] = 568.60 WHERE [Code] = 'pna' END +SET [Description] = 'Punan Bah-Biau', [Definition] = NULL, [SortOrder] = 5693.00 WHERE [Code] = 'pna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnm', 'Punan Batu 1', NULL, 568.70) END +VALUES ('pnm', 'Punan Batu 1', NULL, 5694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Batu 1', [Definition] = NULL, [SortOrder] = 568.70 WHERE [Code] = 'pnm' END +SET [Description] = 'Punan Batu 1', [Definition] = NULL, [SortOrder] = 5694.00 WHERE [Code] = 'pnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puf', 'Punan Merah', NULL, 568.80) END +VALUES ('puf', 'Punan Merah', NULL, 5695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Merah', [Definition] = NULL, [SortOrder] = 568.80 WHERE [Code] = 'puf' END +SET [Description] = 'Punan Merah', [Definition] = NULL, [SortOrder] = 5695.00 WHERE [Code] = 'puf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puc', 'Punan Merap', NULL, 568.90) END +VALUES ('puc', 'Punan Merap', NULL, 5696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Merap', [Definition] = NULL, [SortOrder] = 568.90 WHERE [Code] = 'puc' END +SET [Description] = 'Punan Merap', [Definition] = NULL, [SortOrder] = 5696.00 WHERE [Code] = 'puc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puj', 'Punan Tubu', NULL, 569.00) END +VALUES ('puj', 'Punan Tubu', NULL, 5697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Tubu', [Definition] = NULL, [SortOrder] = 569.00 WHERE [Code] = 'puj' END +SET [Description] = 'Punan Tubu', [Definition] = NULL, [SortOrder] = 5697.00 WHERE [Code] = 'puj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpu', 'Punic', NULL, 569.10) END +VALUES ('xpu', 'Punic', NULL, 5698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punic', [Definition] = NULL, [SortOrder] = 569.10 WHERE [Code] = 'xpu' END +SET [Description] = 'Punic', [Definition] = NULL, [SortOrder] = 5698.00 WHERE [Code] = 'xpu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxp', 'Puno Quechua', NULL, 569.20) END +VALUES ('qxp', 'Puno Quechua', NULL, 5699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puno Quechua', [Definition] = NULL, [SortOrder] = 569.20 WHERE [Code] = 'qxp' END +SET [Description] = 'Puno Quechua', [Definition] = NULL, [SortOrder] = 5699.00 WHERE [Code] = 'qxp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpt', 'Punthamara', NULL, 569.30) END +VALUES ('xpt', 'Punthamara', NULL, 5700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punthamara', [Definition] = NULL, [SortOrder] = 569.30 WHERE [Code] = 'xpt' END +SET [Description] = 'Punthamara', [Definition] = NULL, [SortOrder] = 5700.00 WHERE [Code] = 'xpt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puu', 'Punu', NULL, 569.40) END +VALUES ('puu', 'Punu', NULL, 5701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punu', [Definition] = NULL, [SortOrder] = 569.40 WHERE [Code] = 'puu' END +SET [Description] = 'Punu', [Definition] = NULL, [SortOrder] = 5701.00 WHERE [Code] = 'puu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puo', 'Puoc', NULL, 569.50) END +VALUES ('puo', 'Puoc', NULL, 5702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puoc', [Definition] = NULL, [SortOrder] = 569.50 WHERE [Code] = 'puo' END +SET [Description] = 'Puoc', [Definition] = NULL, [SortOrder] = 5702.00 WHERE [Code] = 'puo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puq', 'Puquina', NULL, 569.60) END +VALUES ('puq', 'Puquina', NULL, 5703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puquina', [Definition] = NULL, [SortOrder] = 569.60 WHERE [Code] = 'puq' END +SET [Description] = 'Puquina', [Definition] = NULL, [SortOrder] = 5703.00 WHERE [Code] = 'puq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pru', 'Puragi', NULL, 569.70) END +VALUES ('pru', 'Puragi', NULL, 5704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puragi', [Definition] = NULL, [SortOrder] = 569.70 WHERE [Code] = 'pru' END +SET [Description] = 'Puragi', [Definition] = NULL, [SortOrder] = 5704.00 WHERE [Code] = 'pru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iar', 'Purari', NULL, 569.80) END +VALUES ('iar', 'Purari', NULL, 5705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purari', [Definition] = NULL, [SortOrder] = 569.80 WHERE [Code] = 'iar' END +SET [Description] = 'Purari', [Definition] = NULL, [SortOrder] = 5705.00 WHERE [Code] = 'iar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsz', 'Purepecha', NULL, 569.90) END +VALUES ('tsz', 'Purepecha', NULL, 5706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purepecha', [Definition] = NULL, [SortOrder] = 569.90 WHERE [Code] = 'tsz' END +SET [Description] = 'Purepecha', [Definition] = NULL, [SortOrder] = 5706.00 WHERE [Code] = 'tsz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prr', 'Puri', NULL, 570.00) END +VALUES ('prr', 'Puri', NULL, 5707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puri', [Definition] = NULL, [SortOrder] = 570.00 WHERE [Code] = 'prr' END +SET [Description] = 'Puri', [Definition] = NULL, [SortOrder] = 5707.00 WHERE [Code] = 'prr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prx', 'Purik', NULL, 570.10) END +VALUES ('prx', 'Purik', NULL, 5708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purik', [Definition] = NULL, [SortOrder] = 570.10 WHERE [Code] = 'prx' END +SET [Description] = 'Purik', [Definition] = NULL, [SortOrder] = 5708.00 WHERE [Code] = 'prx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puy', 'Purisimeño', NULL, 570.20) END +VALUES ('puy', 'Purisimeño', NULL, 5709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purisimeño', [Definition] = NULL, [SortOrder] = 570.20 WHERE [Code] = 'puy' END +SET [Description] = 'Purisimeño', [Definition] = NULL, [SortOrder] = 5709.00 WHERE [Code] = 'puy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suv', 'Puroik', NULL, 570.30) END +VALUES ('suv', 'Puroik', NULL, 5710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puroik', [Definition] = NULL, [SortOrder] = 570.30 WHERE [Code] = 'suv' END +SET [Description] = 'Puroik', [Definition] = NULL, [SortOrder] = 5710.00 WHERE [Code] = 'suv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pur', 'Puruborá', NULL, 570.40) END +VALUES ('pur', 'Puruborá', NULL, 5711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puruborá', [Definition] = NULL, [SortOrder] = 570.40 WHERE [Code] = 'pur' END +SET [Description] = 'Puruborá', [Definition] = NULL, [SortOrder] = 5711.00 WHERE [Code] = 'pur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pub', 'Purum', NULL, 570.50) END +VALUES ('pub', 'Purum', NULL, 5712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purum', [Definition] = NULL, [SortOrder] = 570.50 WHERE [Code] = 'pub' END +SET [Description] = 'Purum', [Definition] = NULL, [SortOrder] = 5712.00 WHERE [Code] = 'pub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pus', 'Pushto', NULL, 570.60) END +VALUES ('pus', 'Pushto', NULL, 5713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pushto', [Definition] = NULL, [SortOrder] = 570.60 WHERE [Code] = 'pus' END +SET [Description] = 'Pushto', [Definition] = NULL, [SortOrder] = 5713.00 WHERE [Code] = 'pus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfl', 'Putai', NULL, 570.70) END +VALUES ('mfl', 'Putai', NULL, 5714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Putai', [Definition] = NULL, [SortOrder] = 570.70 WHERE [Code] = 'mfl' END +SET [Description] = 'Putai', [Definition] = NULL, [SortOrder] = 5714.00 WHERE [Code] = 'mfl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'put') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('put', 'Putoh', NULL, 570.80) END +VALUES ('put', 'Putoh', NULL, 5715.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Putoh', [Definition] = NULL, [SortOrder] = 570.80 WHERE [Code] = 'put' END +SET [Description] = 'Putoh', [Definition] = NULL, [SortOrder] = 5715.00 WHERE [Code] = 'put' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afe', 'Putukwam', NULL, 570.90) END +VALUES ('afe', 'Putukwam', NULL, 5716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Putukwam', [Definition] = NULL, [SortOrder] = 570.90 WHERE [Code] = 'afe' END +SET [Description] = 'Putukwam', [Definition] = NULL, [SortOrder] = 5716.00 WHERE [Code] = 'afe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpy', 'Puyo', NULL, 571.00) END +VALUES ('xpy', 'Puyo', NULL, 5717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puyo', [Definition] = NULL, [SortOrder] = 571.00 WHERE [Code] = 'xpy' END +SET [Description] = 'Puyo', [Definition] = NULL, [SortOrder] = 5717.00 WHERE [Code] = 'xpy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpp', 'Puyo-Paekche', NULL, 571.10) END +VALUES ('xpp', 'Puyo-Paekche', NULL, 5718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puyo-Paekche', [Definition] = NULL, [SortOrder] = 571.10 WHERE [Code] = 'xpp' END +SET [Description] = 'Puyo-Paekche', [Definition] = NULL, [SortOrder] = 5718.00 WHERE [Code] = 'xpp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pyu', 'Puyuma', NULL, 571.20) END +VALUES ('pyu', 'Puyuma', NULL, 5719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puyuma', [Definition] = NULL, [SortOrder] = 571.20 WHERE [Code] = 'pyu' END +SET [Description] = 'Puyuma', [Definition] = NULL, [SortOrder] = 5719.00 WHERE [Code] = 'pyu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pme', 'Pwaamei', NULL, 571.30) END +VALUES ('pme', 'Pwaamei', NULL, 5720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwaamei', [Definition] = NULL, [SortOrder] = 571.30 WHERE [Code] = 'pme' END +SET [Description] = 'Pwaamei', [Definition] = NULL, [SortOrder] = 5720.00 WHERE [Code] = 'pme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pop', 'Pwapwâ', NULL, 571.40) END +VALUES ('pop', 'Pwapwâ', NULL, 5721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwapwâ', [Definition] = NULL, [SortOrder] = 571.40 WHERE [Code] = 'pop' END +SET [Description] = 'Pwapwâ', [Definition] = NULL, [SortOrder] = 5721.00 WHERE [Code] = 'pop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjp', 'Pwo Eastern Karen', NULL, 571.50) END +VALUES ('kjp', 'Pwo Eastern Karen', NULL, 5722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwo Eastern Karen', [Definition] = NULL, [SortOrder] = 571.50 WHERE [Code] = 'kjp' END +SET [Description] = 'Pwo Eastern Karen', [Definition] = NULL, [SortOrder] = 5722.00 WHERE [Code] = 'kjp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pww', 'Pwo Northern Karen', NULL, 571.60) END +VALUES ('pww', 'Pwo Northern Karen', NULL, 5723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwo Northern Karen', [Definition] = NULL, [SortOrder] = 571.60 WHERE [Code] = 'pww' END +SET [Description] = 'Pwo Northern Karen', [Definition] = NULL, [SortOrder] = 5723.00 WHERE [Code] = 'pww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwo', 'Pwo Western Karen', NULL, 571.70) END +VALUES ('pwo', 'Pwo Western Karen', NULL, 5724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwo Western Karen', [Definition] = NULL, [SortOrder] = 571.70 WHERE [Code] = 'pwo' END +SET [Description] = 'Pwo Western Karen', [Definition] = NULL, [SortOrder] = 5724.00 WHERE [Code] = 'pwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcw', 'Pyapun', NULL, 571.80) END +VALUES ('pcw', 'Pyapun', NULL, 5725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pyapun', [Definition] = NULL, [SortOrder] = 571.80 WHERE [Code] = 'pcw' END +SET [Description] = 'Pyapun', [Definition] = NULL, [SortOrder] = 5725.00 WHERE [Code] = 'pcw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pye', 'Pye Krumen', NULL, 571.90) END +VALUES ('pye', 'Pye Krumen', NULL, 5726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pye Krumen', [Definition] = NULL, [SortOrder] = 571.90 WHERE [Code] = 'pye' END +SET [Description] = 'Pye Krumen', [Definition] = NULL, [SortOrder] = 5726.00 WHERE [Code] = 'pye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pyy', 'Pyen', NULL, 572.00) END +VALUES ('pyy', 'Pyen', NULL, 5727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pyen', [Definition] = NULL, [SortOrder] = 572.00 WHERE [Code] = 'pyy' END +SET [Description] = 'Pyen', [Definition] = NULL, [SortOrder] = 5727.00 WHERE [Code] = 'pyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pyx', 'Pyu (Myanmar)', NULL, 572.10) END +VALUES ('pyx', 'Pyu (Myanmar)', NULL, 5728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pyu (Myanmar)', [Definition] = NULL, [SortOrder] = 572.10 WHERE [Code] = 'pyx' END +SET [Description] = 'Pyu (Myanmar)', [Definition] = NULL, [SortOrder] = 5728.00 WHERE [Code] = 'pyx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pby', 'Pyu (Papua New Guinea)', NULL, 572.20) END +VALUES ('pby', 'Pyu (Papua New Guinea)', NULL, 5729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pyu (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 572.20 WHERE [Code] = 'pby' END +SET [Description] = 'Pyu (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 5729.00 WHERE [Code] = 'pby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjb', 'Q''anjob''al', NULL, 572.30) END +VALUES ('kjb', 'Q''anjob''al', NULL, 5730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Q''anjob''al', [Definition] = NULL, [SortOrder] = 572.30 WHERE [Code] = 'kjb' END +SET [Description] = 'Q''anjob''al', [Definition] = NULL, [SortOrder] = 5730.00 WHERE [Code] = 'kjb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laq', 'Qabiao', NULL, 572.40) END +VALUES ('laq', 'Qabiao', NULL, 5731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qabiao', [Definition] = NULL, [SortOrder] = 572.40 WHERE [Code] = 'laq' END +SET [Description] = 'Qabiao', [Definition] = NULL, [SortOrder] = 5731.00 WHERE [Code] = 'laq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byx', 'Qaqet', NULL, 572.50) END +VALUES ('byx', 'Qaqet', NULL, 5732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qaqet', [Definition] = NULL, [SortOrder] = 572.50 WHERE [Code] = 'byx' END +SET [Description] = 'Qaqet', [Definition] = NULL, [SortOrder] = 5732.00 WHERE [Code] = 'byx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxq', 'Qashqa''i', NULL, 572.60) END +VALUES ('qxq', 'Qashqa''i', NULL, 5733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qashqa''i', [Definition] = NULL, [SortOrder] = 572.60 WHERE [Code] = 'qxq' END +SET [Description] = 'Qashqa''i', [Definition] = NULL, [SortOrder] = 5733.00 WHERE [Code] = 'qxq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xqt', 'Qatabanian', NULL, 572.70) END +VALUES ('xqt', 'Qatabanian', NULL, 5734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qatabanian', [Definition] = NULL, [SortOrder] = 572.70 WHERE [Code] = 'xqt' END +SET [Description] = 'Qatabanian', [Definition] = NULL, [SortOrder] = 5734.00 WHERE [Code] = 'xqt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqu', 'Qau', NULL, 572.80) END +VALUES ('gqu', 'Qau', NULL, 5735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qau', [Definition] = NULL, [SortOrder] = 572.80 WHERE [Code] = 'gqu' END +SET [Description] = 'Qau', [Definition] = NULL, [SortOrder] = 5735.00 WHERE [Code] = 'gqu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alc', 'Qawasqar', NULL, 572.90) END +VALUES ('alc', 'Qawasqar', NULL, 5736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qawasqar', [Definition] = NULL, [SortOrder] = 572.90 WHERE [Code] = 'alc' END +SET [Description] = 'Qawasqar', [Definition] = NULL, [SortOrder] = 5736.00 WHERE [Code] = 'alc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymq', 'Qila Muji', NULL, 573.00) END +VALUES ('ymq', 'Qila Muji', NULL, 5737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qila Muji', [Definition] = NULL, [SortOrder] = 573.00 WHERE [Code] = 'ymq' END +SET [Description] = 'Qila Muji', [Definition] = NULL, [SortOrder] = 5737.00 WHERE [Code] = 'ymq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahg', 'Qimant', NULL, 573.10) END +VALUES ('ahg', 'Qimant', NULL, 5738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qimant', [Definition] = NULL, [SortOrder] = 573.10 WHERE [Code] = 'ahg' END +SET [Description] = 'Qimant', [Definition] = NULL, [SortOrder] = 5738.00 WHERE [Code] = 'ahg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zqe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zqe', 'Qiubei Zhuang', NULL, 573.20) END +VALUES ('zqe', 'Qiubei Zhuang', NULL, 5739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qiubei Zhuang', [Definition] = NULL, [SortOrder] = 573.20 WHERE [Code] = 'zqe' END +SET [Description] = 'Qiubei Zhuang', [Definition] = NULL, [SortOrder] = 5739.00 WHERE [Code] = 'zqe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qua', 'Quapaw', NULL, 573.30) END +VALUES ('qua', 'Quapaw', NULL, 5740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quapaw', [Definition] = NULL, [SortOrder] = 573.30 WHERE [Code] = 'qua' END +SET [Description] = 'Quapaw', [Definition] = NULL, [SortOrder] = 5740.00 WHERE [Code] = 'qua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fcs', 'Quebec Sign Language', NULL, 573.40) END +VALUES ('fcs', 'Quebec Sign Language', NULL, 5741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quebec Sign Language', [Definition] = NULL, [SortOrder] = 573.40 WHERE [Code] = 'fcs' END +SET [Description] = 'Quebec Sign Language', [Definition] = NULL, [SortOrder] = 5741.00 WHERE [Code] = 'fcs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yum', 'Quechan', NULL, 573.50) END +VALUES ('yum', 'Quechan', NULL, 5742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quechan', [Definition] = NULL, [SortOrder] = 573.50 WHERE [Code] = 'yum' END +SET [Description] = 'Quechan', [Definition] = NULL, [SortOrder] = 5742.00 WHERE [Code] = 'yum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'que') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('que', 'Quechua', NULL, 573.60) END +VALUES ('que', 'Quechua', NULL, 5743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quechua', [Definition] = NULL, [SortOrder] = 573.60 WHERE [Code] = 'que' END +SET [Description] = 'Quechua', [Definition] = NULL, [SortOrder] = 5743.00 WHERE [Code] = 'que' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qya', 'Quenya', NULL, 573.70) END +VALUES ('qya', 'Quenya', NULL, 5744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quenya', [Definition] = NULL, [SortOrder] = 573.70 WHERE [Code] = 'qya' END +SET [Description] = 'Quenya', [Definition] = NULL, [SortOrder] = 5744.00 WHERE [Code] = 'qya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otq', 'Querétaro Otomi', NULL, 573.80) END +VALUES ('otq', 'Querétaro Otomi', NULL, 5745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Querétaro Otomi', [Definition] = NULL, [SortOrder] = 573.80 WHERE [Code] = 'otq' END +SET [Description] = 'Querétaro Otomi', [Definition] = NULL, [SortOrder] = 5745.00 WHERE [Code] = 'otq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pxm', 'Quetzaltepec Mixe', NULL, 573.90) END +VALUES ('pxm', 'Quetzaltepec Mixe', NULL, 5746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quetzaltepec Mixe', [Definition] = NULL, [SortOrder] = 573.90 WHERE [Code] = 'pxm' END +SET [Description] = 'Quetzaltepec Mixe', [Definition] = NULL, [SortOrder] = 5746.00 WHERE [Code] = 'pxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvy', 'Queyu', NULL, 574.00) END +VALUES ('qvy', 'Queyu', NULL, 5747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Queyu', [Definition] = NULL, [SortOrder] = 574.00 WHERE [Code] = 'qvy' END +SET [Description] = 'Queyu', [Definition] = NULL, [SortOrder] = 5747.00 WHERE [Code] = 'qvy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpj', 'Quiavicuzas Zapotec', NULL, 574.10) END +VALUES ('zpj', 'Quiavicuzas Zapotec', NULL, 5748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quiavicuzas Zapotec', [Definition] = NULL, [SortOrder] = 574.10 WHERE [Code] = 'zpj' END +SET [Description] = 'Quiavicuzas Zapotec', [Definition] = NULL, [SortOrder] = 5748.00 WHERE [Code] = 'zpj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qui', 'Quileute', NULL, 574.20) END +VALUES ('qui', 'Quileute', NULL, 5749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quileute', [Definition] = NULL, [SortOrder] = 574.20 WHERE [Code] = 'qui' END +SET [Description] = 'Quileute', [Definition] = NULL, [SortOrder] = 5749.00 WHERE [Code] = 'qui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qun', 'Quinault', NULL, 574.30) END +VALUES ('qun', 'Quinault', NULL, 5750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quinault', [Definition] = NULL, [SortOrder] = 574.30 WHERE [Code] = 'qun' END +SET [Description] = 'Quinault', [Definition] = NULL, [SortOrder] = 5750.00 WHERE [Code] = 'qun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quq', 'Quinqui', NULL, 574.40) END +VALUES ('quq', 'Quinqui', NULL, 5751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quinqui', [Definition] = NULL, [SortOrder] = 574.40 WHERE [Code] = 'quq' END +SET [Description] = 'Quinqui', [Definition] = NULL, [SortOrder] = 5751.00 WHERE [Code] = 'quq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztq', 'Quioquitani-Quierí Zapotec', NULL, 574.50) END +VALUES ('ztq', 'Quioquitani-Quierí Zapotec', NULL, 5752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quioquitani-Quierí Zapotec', [Definition] = NULL, [SortOrder] = 574.50 WHERE [Code] = 'ztq' END +SET [Description] = 'Quioquitani-Quierí Zapotec', [Definition] = NULL, [SortOrder] = 5752.00 WHERE [Code] = 'ztq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chq', 'Quiotepec Chinantec', NULL, 574.60) END +VALUES ('chq', 'Quiotepec Chinantec', NULL, 5753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quiotepec Chinantec', [Definition] = NULL, [SortOrder] = 574.60 WHERE [Code] = 'chq' END +SET [Description] = 'Quiotepec Chinantec', [Definition] = NULL, [SortOrder] = 5753.00 WHERE [Code] = 'chq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qyp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qyp', 'Quiripi', NULL, 574.70) END +VALUES ('qyp', 'Quiripi', NULL, 5754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quiripi', [Definition] = NULL, [SortOrder] = 574.70 WHERE [Code] = 'qyp' END +SET [Description] = 'Quiripi', [Definition] = NULL, [SortOrder] = 5754.00 WHERE [Code] = 'qyp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rah', 'Rabha', NULL, 574.80) END +VALUES ('rah', 'Rabha', NULL, 5755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rabha', [Definition] = NULL, [SortOrder] = 574.80 WHERE [Code] = 'rah' END +SET [Description] = 'Rabha', [Definition] = NULL, [SortOrder] = 5755.00 WHERE [Code] = 'rah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rad', 'Rade', NULL, 574.90) END +VALUES ('rad', 'Rade', NULL, 5756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rade', [Definition] = NULL, [SortOrder] = 574.90 WHERE [Code] = 'rad' END +SET [Description] = 'Rade', [Definition] = NULL, [SortOrder] = 5756.00 WHERE [Code] = 'rad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrr', 'Raetic', NULL, 575.00) END +VALUES ('xrr', 'Raetic', NULL, 5757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Raetic', [Definition] = NULL, [SortOrder] = 575.00 WHERE [Code] = 'xrr' END +SET [Description] = 'Raetic', [Definition] = NULL, [SortOrder] = 5757.00 WHERE [Code] = 'xrr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raz', 'Rahambuu', NULL, 575.10) END +VALUES ('raz', 'Rahambuu', NULL, 5758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rahambuu', [Definition] = NULL, [SortOrder] = 575.10 WHERE [Code] = 'raz' END +SET [Description] = 'Rahambuu', [Definition] = NULL, [SortOrder] = 5758.00 WHERE [Code] = 'raz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqk', 'Rajah Kabunsuwan Manobo', NULL, 575.20) END +VALUES ('mqk', 'Rajah Kabunsuwan Manobo', NULL, 5759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajah Kabunsuwan Manobo', [Definition] = NULL, [SortOrder] = 575.20 WHERE [Code] = 'mqk' END +SET [Description] = 'Rajah Kabunsuwan Manobo', [Definition] = NULL, [SortOrder] = 5759.00 WHERE [Code] = 'mqk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raj', 'Rajasthani', NULL, 575.30) END +VALUES ('raj', 'Rajasthani', NULL, 5760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajasthani', [Definition] = NULL, [SortOrder] = 575.30 WHERE [Code] = 'raj' END +SET [Description] = 'Rajasthani', [Definition] = NULL, [SortOrder] = 5760.00 WHERE [Code] = 'raj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rjs', 'Rajbanshi', NULL, 575.40) END +VALUES ('rjs', 'Rajbanshi', NULL, 5761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajbanshi', [Definition] = NULL, [SortOrder] = 575.40 WHERE [Code] = 'rjs' END +SET [Description] = 'Rajbanshi', [Definition] = NULL, [SortOrder] = 5761.00 WHERE [Code] = 'rjs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rji', 'Raji', NULL, 575.50) END +VALUES ('rji', 'Raji', NULL, 5762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Raji', [Definition] = NULL, [SortOrder] = 575.50 WHERE [Code] = 'rji' END +SET [Description] = 'Raji', [Definition] = NULL, [SortOrder] = 5762.00 WHERE [Code] = 'rji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rjg', 'Rajong', NULL, 575.60) END +VALUES ('rjg', 'Rajong', NULL, 5763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajong', [Definition] = NULL, [SortOrder] = 575.60 WHERE [Code] = 'rjg' END +SET [Description] = 'Rajong', [Definition] = NULL, [SortOrder] = 5763.00 WHERE [Code] = 'rjg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gra', 'Rajput Garasia', NULL, 575.70) END +VALUES ('gra', 'Rajput Garasia', NULL, 5764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajput Garasia', [Definition] = NULL, [SortOrder] = 575.70 WHERE [Code] = 'gra' END +SET [Description] = 'Rajput Garasia', [Definition] = NULL, [SortOrder] = 5764.00 WHERE [Code] = 'gra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkh', 'Rakahanga-Manihiki', NULL, 575.80) END +VALUES ('rkh', 'Rakahanga-Manihiki', NULL, 5765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rakahanga-Manihiki', [Definition] = NULL, [SortOrder] = 575.80 WHERE [Code] = 'rkh' END +SET [Description] = 'Rakahanga-Manihiki', [Definition] = NULL, [SortOrder] = 5765.00 WHERE [Code] = 'rkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rki', 'Rakhine', NULL, 575.90) END +VALUES ('rki', 'Rakhine', NULL, 5766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rakhine', [Definition] = NULL, [SortOrder] = 575.90 WHERE [Code] = 'rki' END +SET [Description] = 'Rakhine', [Definition] = NULL, [SortOrder] = 5766.00 WHERE [Code] = 'rki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ral') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ral', 'Ralte', NULL, 576.00) END +VALUES ('ral', 'Ralte', NULL, 5767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ralte', [Definition] = NULL, [SortOrder] = 576.00 WHERE [Code] = 'ral' END +SET [Description] = 'Ralte', [Definition] = NULL, [SortOrder] = 5767.00 WHERE [Code] = 'ral' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rma', 'Rama', NULL, 576.10) END +VALUES ('rma', 'Rama', NULL, 5768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rama', [Definition] = NULL, [SortOrder] = 576.10 WHERE [Code] = 'rma' END +SET [Description] = 'Rama', [Definition] = NULL, [SortOrder] = 5768.00 WHERE [Code] = 'rma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rai', 'Ramoaaina', NULL, 576.20) END +VALUES ('rai', 'Ramoaaina', NULL, 5769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ramoaaina', [Definition] = NULL, [SortOrder] = 576.20 WHERE [Code] = 'rai' END +SET [Description] = 'Ramoaaina', [Definition] = NULL, [SortOrder] = 5769.00 WHERE [Code] = 'rai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjx', 'Ramopa', NULL, 576.30) END +VALUES ('kjx', 'Ramopa', NULL, 5770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ramopa', [Definition] = NULL, [SortOrder] = 576.30 WHERE [Code] = 'kjx' END +SET [Description] = 'Ramopa', [Definition] = NULL, [SortOrder] = 5770.00 WHERE [Code] = 'kjx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lje', 'Rampi', NULL, 576.40) END +VALUES ('lje', 'Rampi', NULL, 5771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rampi', [Definition] = NULL, [SortOrder] = 576.40 WHERE [Code] = 'lje' END +SET [Description] = 'Rampi', [Definition] = NULL, [SortOrder] = 5771.00 WHERE [Code] = 'lje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thr', 'Rana Tharu', NULL, 576.50) END +VALUES ('thr', 'Rana Tharu', NULL, 5772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rana Tharu', [Definition] = NULL, [SortOrder] = 576.50 WHERE [Code] = 'thr' END +SET [Description] = 'Rana Tharu', [Definition] = NULL, [SortOrder] = 5772.00 WHERE [Code] = 'thr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rax', 'Rang', NULL, 576.60) END +VALUES ('rax', 'Rang', NULL, 5773.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Rang', [Definition] = NULL, [SortOrder] = 5773.00 WHERE [Code] = 'rax' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('lag', 'Rangi', NULL, 5774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rang', [Definition] = NULL, [SortOrder] = 576.60 WHERE [Code] = 'rax' END +SET [Description] = 'Rangi', [Definition] = NULL, [SortOrder] = 5774.00 WHERE [Code] = 'lag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgk', 'Rangkas', NULL, 576.70) END +VALUES ('rgk', 'Rangkas', NULL, 5775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rangkas', [Definition] = NULL, [SortOrder] = 576.70 WHERE [Code] = 'rgk' END +SET [Description] = 'Rangkas', [Definition] = NULL, [SortOrder] = 5775.00 WHERE [Code] = 'rgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnl', 'Ranglong', NULL, 576.80) END +VALUES ('rnl', 'Ranglong', NULL, 5776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ranglong', [Definition] = NULL, [SortOrder] = 576.80 WHERE [Code] = 'rnl' END +SET [Description] = 'Ranglong', [Definition] = NULL, [SortOrder] = 5776.00 WHERE [Code] = 'rnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkt', 'Rangpuri', NULL, 576.90) END +VALUES ('rkt', 'Rangpuri', NULL, 5777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rangpuri', [Definition] = NULL, [SortOrder] = 576.90 WHERE [Code] = 'rkt' END +SET [Description] = 'Rangpuri', [Definition] = NULL, [SortOrder] = 5777.00 WHERE [Code] = 'rkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rao', 'Rao', NULL, 577.00) END +VALUES ('rao', 'Rao', NULL, 5778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rao', [Definition] = NULL, [SortOrder] = 577.00 WHERE [Code] = 'rao' END +SET [Description] = 'Rao', [Definition] = NULL, [SortOrder] = 5778.00 WHERE [Code] = 'rao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ray') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ray', 'Rapa', NULL, 577.10) END +VALUES ('ray', 'Rapa', NULL, 5779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rapa', [Definition] = NULL, [SortOrder] = 577.10 WHERE [Code] = 'ray' END +SET [Description] = 'Rapa', [Definition] = NULL, [SortOrder] = 5779.00 WHERE [Code] = 'ray' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rap', 'Rapanui', NULL, 577.20) END +VALUES ('rap', 'Rapanui', NULL, 5780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rapanui', [Definition] = NULL, [SortOrder] = 577.20 WHERE [Code] = 'rap' END +SET [Description] = 'Rapanui', [Definition] = NULL, [SortOrder] = 5780.00 WHERE [Code] = 'rap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyx', 'Rapoisi', NULL, 577.30) END +VALUES ('kyx', 'Rapoisi', NULL, 5781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rapoisi', [Definition] = NULL, [SortOrder] = 577.30 WHERE [Code] = 'kyx' END +SET [Description] = 'Rapoisi', [Definition] = NULL, [SortOrder] = 5781.00 WHERE [Code] = 'kyx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rpt', 'Rapting', NULL, 577.40) END +VALUES ('rpt', 'Rapting', NULL, 5782.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rapting', [Definition] = NULL, [SortOrder] = 577.40 WHERE [Code] = 'rpt' END +SET [Description] = 'Rapting', [Definition] = NULL, [SortOrder] = 5782.00 WHERE [Code] = 'rpt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lra', 'Rara Bakati''', NULL, 577.50) END +VALUES ('lra', 'Rara Bakati''', NULL, 5783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rara Bakati''', [Definition] = NULL, [SortOrder] = 577.50 WHERE [Code] = 'lra' END +SET [Description] = 'Rara Bakati''', [Definition] = NULL, [SortOrder] = 5783.00 WHERE [Code] = 'lra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rar', 'Rarotongan', NULL, 577.60) END +VALUES ('rar', 'Rarotongan', NULL, 5784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rarotongan', [Definition] = NULL, [SortOrder] = 577.60 WHERE [Code] = 'rar' END +SET [Description] = 'Rarotongan', [Definition] = NULL, [SortOrder] = 5784.00 WHERE [Code] = 'rar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rac', 'Rasawa', NULL, 577.70) END +VALUES ('rac', 'Rasawa', NULL, 5785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rasawa', [Definition] = NULL, [SortOrder] = 577.70 WHERE [Code] = 'rac' END +SET [Description] = 'Rasawa', [Definition] = NULL, [SortOrder] = 5785.00 WHERE [Code] = 'rac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btn', 'Ratagnon', NULL, 577.80) END +VALUES ('btn', 'Ratagnon', NULL, 5786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ratagnon', [Definition] = NULL, [SortOrder] = 577.80 WHERE [Code] = 'btn' END +SET [Description] = 'Ratagnon', [Definition] = NULL, [SortOrder] = 5786.00 WHERE [Code] = 'btn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rth', 'Ratahan', NULL, 577.90) END +VALUES ('rth', 'Ratahan', NULL, 5787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ratahan', [Definition] = NULL, [SortOrder] = 577.90 WHERE [Code] = 'rth' END +SET [Description] = 'Ratahan', [Definition] = NULL, [SortOrder] = 5787.00 WHERE [Code] = 'rth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rtw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rtw', 'Rathawi', NULL, 578.00) END +VALUES ('rtw', 'Rathawi', NULL, 5788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rathawi', [Definition] = NULL, [SortOrder] = 578.00 WHERE [Code] = 'rtw' END +SET [Description] = 'Rathawi', [Definition] = NULL, [SortOrder] = 5788.00 WHERE [Code] = 'rtw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgd', 'Rathwi Bareli', NULL, 578.10) END +VALUES ('bgd', 'Rathwi Bareli', NULL, 5789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rathwi Bareli', [Definition] = NULL, [SortOrder] = 578.10 WHERE [Code] = 'bgd' END +SET [Description] = 'Rathwi Bareli', [Definition] = NULL, [SortOrder] = 5789.00 WHERE [Code] = 'bgd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rau', 'Raute', NULL, 578.20) END +VALUES ('rau', 'Raute', NULL, 5790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Raute', [Definition] = NULL, [SortOrder] = 578.20 WHERE [Code] = 'rau' END +SET [Description] = 'Raute', [Definition] = NULL, [SortOrder] = 5790.00 WHERE [Code] = 'rau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yea', 'Ravula', NULL, 578.30) END +VALUES ('yea', 'Ravula', NULL, 5791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ravula', [Definition] = NULL, [SortOrder] = 578.30 WHERE [Code] = 'yea' END +SET [Description] = 'Ravula', [Definition] = NULL, [SortOrder] = 5791.00 WHERE [Code] = 'yea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwo', 'Rawa', NULL, 578.40) END +VALUES ('rwo', 'Rawa', NULL, 5792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawa', [Definition] = NULL, [SortOrder] = 578.40 WHERE [Code] = 'rwo' END +SET [Description] = 'Rawa', [Definition] = NULL, [SortOrder] = 5792.00 WHERE [Code] = 'rwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raw', 'Rawang', NULL, 578.50) END +VALUES ('raw', 'Rawang', NULL, 5793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawang', [Definition] = NULL, [SortOrder] = 578.50 WHERE [Code] = 'raw' END +SET [Description] = 'Rawang', [Definition] = NULL, [SortOrder] = 5793.00 WHERE [Code] = 'raw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jnl', 'Rawat', NULL, 578.60) END +VALUES ('jnl', 'Rawat', NULL, 5794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawat', [Definition] = NULL, [SortOrder] = 578.60 WHERE [Code] = 'jnl' END +SET [Description] = 'Rawat', [Definition] = NULL, [SortOrder] = 5794.00 WHERE [Code] = 'jnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'weu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('weu', 'Rawngtu Chin', NULL, 578.70) END +VALUES ('weu', 'Rawngtu Chin', NULL, 5795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawngtu Chin', [Definition] = NULL, [SortOrder] = 578.70 WHERE [Code] = 'weu' END +SET [Description] = 'Rawngtu Chin', [Definition] = NULL, [SortOrder] = 5795.00 WHERE [Code] = 'weu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwa', 'Rawo', NULL, 578.80) END +VALUES ('rwa', 'Rawo', NULL, 5796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawo', [Definition] = NULL, [SortOrder] = 578.80 WHERE [Code] = 'rwa' END +SET [Description] = 'Rawo', [Definition] = NULL, [SortOrder] = 5796.00 WHERE [Code] = 'rwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zor', 'Rayón Zoque', NULL, 578.90) END +VALUES ('zor', 'Rayón Zoque', NULL, 5797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rayón Zoque', [Definition] = NULL, [SortOrder] = 578.90 WHERE [Code] = 'zor' END +SET [Description] = 'Rayón Zoque', [Definition] = NULL, [SortOrder] = 5797.00 WHERE [Code] = 'zor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rat', 'Razajerdi', NULL, 579.00) END +VALUES ('rat', 'Razajerdi', NULL, 5798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Razajerdi', [Definition] = NULL, [SortOrder] = 579.00 WHERE [Code] = 'rat' END +SET [Description] = 'Razajerdi', [Definition] = NULL, [SortOrder] = 5798.00 WHERE [Code] = 'rat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rzh', 'Razihi', NULL, 579.10) END +VALUES ('rzh', 'Razihi', NULL, 5799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Razihi', [Definition] = NULL, [SortOrder] = 579.10 WHERE [Code] = 'rzh' END +SET [Description] = 'Razihi', [Definition] = NULL, [SortOrder] = 5799.00 WHERE [Code] = 'rzh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gir', 'Red Gelao', NULL, 579.20) END +VALUES ('gir', 'Red Gelao', NULL, 5800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Red Gelao', [Definition] = NULL, [SortOrder] = 579.20 WHERE [Code] = 'gir' END +SET [Description] = 'Red Gelao', [Definition] = NULL, [SortOrder] = 5800.00 WHERE [Code] = 'gir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atu', 'Reel', NULL, 579.30) END +VALUES ('atu', 'Reel', NULL, 5801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Reel', [Definition] = NULL, [SortOrder] = 579.30 WHERE [Code] = 'atu' END +SET [Description] = 'Reel', [Definition] = NULL, [SortOrder] = 5801.00 WHERE [Code] = 'atu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rej', 'Rejang', NULL, 579.40) END +VALUES ('rej', 'Rejang', NULL, 5802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rejang', [Definition] = NULL, [SortOrder] = 579.40 WHERE [Code] = 'rej' END +SET [Description] = 'Rejang', [Definition] = NULL, [SortOrder] = 5802.00 WHERE [Code] = 'rej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ree') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ree', 'Rejang Kayan', NULL, 579.50) END +VALUES ('ree', 'Rejang Kayan', NULL, 5803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rejang Kayan', [Definition] = NULL, [SortOrder] = 579.50 WHERE [Code] = 'ree' END +SET [Description] = 'Rejang Kayan', [Definition] = NULL, [SortOrder] = 5803.00 WHERE [Code] = 'ree' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rei', 'Reli', NULL, 579.60) END +VALUES ('rei', 'Reli', NULL, 5804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Reli', [Definition] = NULL, [SortOrder] = 579.60 WHERE [Code] = 'rei' END +SET [Description] = 'Reli', [Definition] = NULL, [SortOrder] = 5804.00 WHERE [Code] = 'rei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bow', 'Rema', NULL, 579.70) END +VALUES ('bow', 'Rema', NULL, 5805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rema', [Definition] = NULL, [SortOrder] = 579.70 WHERE [Code] = 'bow' END +SET [Description] = 'Rema', [Definition] = NULL, [SortOrder] = 5805.00 WHERE [Code] = 'bow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmb', 'Rembarrnga', NULL, 579.80) END +VALUES ('rmb', 'Rembarrnga', NULL, 5806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rembarrnga', [Definition] = NULL, [SortOrder] = 579.80 WHERE [Code] = 'rmb' END +SET [Description] = 'Rembarrnga', [Definition] = NULL, [SortOrder] = 5806.00 WHERE [Code] = 'rmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'reb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('reb', 'Rembong', NULL, 579.90) END +VALUES ('reb', 'Rembong', NULL, 5807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rembong', [Definition] = NULL, [SortOrder] = 579.90 WHERE [Code] = 'reb' END +SET [Description] = 'Rembong', [Definition] = NULL, [SortOrder] = 5807.00 WHERE [Code] = 'reb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rem', 'Remo', NULL, 580.00) END +VALUES ('rem', 'Remo', NULL, 5808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Remo', [Definition] = NULL, [SortOrder] = 580.00 WHERE [Code] = 'rem' END +SET [Description] = 'Remo', [Definition] = NULL, [SortOrder] = 5808.00 WHERE [Code] = 'rem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agv', 'Remontado Dumagat', NULL, 580.10) END +VALUES ('agv', 'Remontado Dumagat', NULL, 5809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Remontado Dumagat', [Definition] = NULL, [SortOrder] = 580.10 WHERE [Code] = 'agv' END +SET [Description] = 'Remontado Dumagat', [Definition] = NULL, [SortOrder] = 5809.00 WHERE [Code] = 'agv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmp', 'Rempi', NULL, 580.20) END +VALUES ('rmp', 'Rempi', NULL, 5810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rempi', [Definition] = NULL, [SortOrder] = 580.20 WHERE [Code] = 'rmp' END +SET [Description] = 'Rempi', [Definition] = NULL, [SortOrder] = 5810.00 WHERE [Code] = 'rmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkj', 'Remun', NULL, 580.30) END +VALUES ('lkj', 'Remun', NULL, 5811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Remun', [Definition] = NULL, [SortOrder] = 580.30 WHERE [Code] = 'lkj' END +SET [Description] = 'Remun', [Definition] = NULL, [SortOrder] = 5811.00 WHERE [Code] = 'lkj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rel', 'Rendille', NULL, 580.40) END +VALUES ('rel', 'Rendille', NULL, 5812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rendille', [Definition] = NULL, [SortOrder] = 580.40 WHERE [Code] = 'rel' END +SET [Description] = 'Rendille', [Definition] = NULL, [SortOrder] = 5812.00 WHERE [Code] = 'rel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ren') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ren', 'Rengao', NULL, 580.50) END +VALUES ('ren', 'Rengao', NULL, 5813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rengao', [Definition] = NULL, [SortOrder] = 580.50 WHERE [Code] = 'ren' END +SET [Description] = 'Rengao', [Definition] = NULL, [SortOrder] = 5813.00 WHERE [Code] = 'ren' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnv', 'Rennell-Bellona', NULL, 580.60) END +VALUES ('mnv', 'Rennell-Bellona', NULL, 5814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rennell-Bellona', [Definition] = NULL, [SortOrder] = 580.60 WHERE [Code] = 'mnv' END +SET [Description] = 'Rennell-Bellona', [Definition] = NULL, [SortOrder] = 5814.00 WHERE [Code] = 'mnv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rpn', 'Repanbitip', NULL, 580.70) END +VALUES ('rpn', 'Repanbitip', NULL, 5815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Repanbitip', [Definition] = NULL, [SortOrder] = 580.70 WHERE [Code] = 'rpn' END +SET [Description] = 'Repanbitip', [Definition] = NULL, [SortOrder] = 5815.00 WHERE [Code] = 'rpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rer', 'Rer Bare', NULL, 580.80) END +VALUES ('rer', 'Rer Bare', NULL, 5816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rer Bare', [Definition] = NULL, [SortOrder] = 580.80 WHERE [Code] = 'rer' END +SET [Description] = 'Rer Bare', [Definition] = NULL, [SortOrder] = 5816.00 WHERE [Code] = 'rer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rea', 'Rerau', NULL, 580.90) END +VALUES ('rea', 'Rerau', NULL, 5817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rerau', [Definition] = NULL, [SortOrder] = 580.90 WHERE [Code] = 'rea' END +SET [Description] = 'Rerau', [Definition] = NULL, [SortOrder] = 5817.00 WHERE [Code] = 'rea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgk', 'Rerep', NULL, 581.00) END +VALUES ('pgk', 'Rerep', NULL, 5818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rerep', [Definition] = NULL, [SortOrder] = 581.00 WHERE [Code] = 'pgk' END +SET [Description] = 'Rerep', [Definition] = NULL, [SortOrder] = 5818.00 WHERE [Code] = 'pgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'res') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('res', 'Reshe', NULL, 581.10) END +VALUES ('res', 'Reshe', NULL, 5819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Reshe', [Definition] = NULL, [SortOrder] = 581.10 WHERE [Code] = 'res' END +SET [Description] = 'Reshe', [Definition] = NULL, [SortOrder] = 5819.00 WHERE [Code] = 'res' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgr', 'Resígaro', NULL, 581.20) END +VALUES ('rgr', 'Resígaro', NULL, 5820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Resígaro', [Definition] = NULL, [SortOrder] = 581.20 WHERE [Code] = 'rgr' END +SET [Description] = 'Resígaro', [Definition] = NULL, [SortOrder] = 5820.00 WHERE [Code] = 'rgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ret') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ret', 'Retta', NULL, 581.30) END +VALUES ('ret', 'Retta', NULL, 5821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Retta', [Definition] = NULL, [SortOrder] = 581.30 WHERE [Code] = 'ret' END +SET [Description] = 'Retta', [Definition] = NULL, [SortOrder] = 5821.00 WHERE [Code] = 'ret' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rcf', 'Réunion Creole French', NULL, 581.40) END +VALUES ('rcf', 'Réunion Creole French', NULL, 5822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Réunion Creole French', [Definition] = NULL, [SortOrder] = 581.40 WHERE [Code] = 'rcf' END +SET [Description] = 'Réunion Creole French', [Definition] = NULL, [SortOrder] = 5822.00 WHERE [Code] = 'rcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rey', 'Reyesano', NULL, 581.50) END +VALUES ('rey', 'Reyesano', NULL, 5823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Reyesano', [Definition] = NULL, [SortOrder] = 581.50 WHERE [Code] = 'rey' END +SET [Description] = 'Reyesano', [Definition] = NULL, [SortOrder] = 5823.00 WHERE [Code] = 'rey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ria') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ria', 'Riang (India)', NULL, 581.60) END +VALUES ('ria', 'Riang (India)', NULL, 5824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riang (India)', [Definition] = NULL, [SortOrder] = 581.60 WHERE [Code] = 'ria' END +SET [Description] = 'Riang (India)', [Definition] = NULL, [SortOrder] = 5824.00 WHERE [Code] = 'ria' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yin', 'Riang Lai', NULL, 581.70) END +VALUES ('yin', 'Riang Lai', NULL, 5825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riang Lai', [Definition] = NULL, [SortOrder] = 581.70 WHERE [Code] = 'yin' END +SET [Description] = 'Riang Lai', [Definition] = NULL, [SortOrder] = 5825.00 WHERE [Code] = 'yin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ril') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ril', 'Riang Lang', NULL, 581.80) END +VALUES ('ril', 'Riang Lang', NULL, 5826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riang Lang', [Definition] = NULL, [SortOrder] = 581.80 WHERE [Code] = 'ril' END +SET [Description] = 'Riang Lang', [Definition] = NULL, [SortOrder] = 5826.00 WHERE [Code] = 'ril' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ran') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ran', 'Riantana', NULL, 581.90) END +VALUES ('ran', 'Riantana', NULL, 5827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riantana', [Definition] = NULL, [SortOrder] = 581.90 WHERE [Code] = 'ran' END +SET [Description] = 'Riantana', [Definition] = NULL, [SortOrder] = 5827.00 WHERE [Code] = 'ran' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rir', 'Ribun', NULL, 582.00) END +VALUES ('rir', 'Ribun', NULL, 5828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ribun', [Definition] = NULL, [SortOrder] = 582.00 WHERE [Code] = 'rir' END +SET [Description] = 'Ribun', [Definition] = NULL, [SortOrder] = 5828.00 WHERE [Code] = 'rir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iri', 'Rigwe', NULL, 582.10) END +VALUES ('iri', 'Rigwe', NULL, 5829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rigwe', [Definition] = NULL, [SortOrder] = 582.10 WHERE [Code] = 'iri' END +SET [Description] = 'Rigwe', [Definition] = NULL, [SortOrder] = 5829.00 WHERE [Code] = 'iri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkb', 'Rikbaktsa', NULL, 582.20) END +VALUES ('rkb', 'Rikbaktsa', NULL, 5830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rikbaktsa', [Definition] = NULL, [SortOrder] = 582.20 WHERE [Code] = 'rkb' END +SET [Description] = 'Rikbaktsa', [Definition] = NULL, [SortOrder] = 5830.00 WHERE [Code] = 'rkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zar', 'Rincón Zapotec', NULL, 582.30) END +VALUES ('zar', 'Rincón Zapotec', NULL, 5831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rincón Zapotec', [Definition] = NULL, [SortOrder] = 582.30 WHERE [Code] = 'zar' END +SET [Description] = 'Rincón Zapotec', [Definition] = NULL, [SortOrder] = 5831.00 WHERE [Code] = 'zar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bto', 'Rinconada Bikol', NULL, 582.40) END +VALUES ('bto', 'Rinconada Bikol', NULL, 5832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rinconada Bikol', [Definition] = NULL, [SortOrder] = 582.40 WHERE [Code] = 'bto' END +SET [Description] = 'Rinconada Bikol', [Definition] = NULL, [SortOrder] = 5832.00 WHERE [Code] = 'bto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgu', 'Ringgou', NULL, 582.50) END +VALUES ('rgu', 'Ringgou', NULL, 5833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ringgou', [Definition] = NULL, [SortOrder] = 582.50 WHERE [Code] = 'rgu' END +SET [Description] = 'Ringgou', [Definition] = NULL, [SortOrder] = 5833.00 WHERE [Code] = 'rgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rri', 'Ririo', NULL, 582.60) END +VALUES ('rri', 'Ririo', NULL, 5834.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Ririo', [Definition] = NULL, [SortOrder] = 5834.00 WHERE [Code] = 'rri' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('rsw', 'Rishiwa', NULL, 5835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ririo', [Definition] = NULL, [SortOrder] = 582.60 WHERE [Code] = 'rri' END +SET [Description] = 'Rishiwa', [Definition] = NULL, [SortOrder] = 5835.00 WHERE [Code] = 'rsw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rit', 'Ritharrngu', NULL, 582.70) END +VALUES ('rit', 'Ritharrngu', NULL, 5836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ritharrngu', [Definition] = NULL, [SortOrder] = 582.70 WHERE [Code] = 'rit' END +SET [Description] = 'Ritharrngu', [Definition] = NULL, [SortOrder] = 5836.00 WHERE [Code] = 'rit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'riu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('riu', 'Riung', NULL, 582.80) END +VALUES ('riu', 'Riung', NULL, 5837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riung', [Definition] = NULL, [SortOrder] = 582.80 WHERE [Code] = 'riu' END +SET [Description] = 'Riung', [Definition] = NULL, [SortOrder] = 5837.00 WHERE [Code] = 'riu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snj', 'Riverain Sango', NULL, 582.90) END +VALUES ('snj', 'Riverain Sango', NULL, 5838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riverain Sango', [Definition] = NULL, [SortOrder] = 582.90 WHERE [Code] = 'snj' END +SET [Description] = 'Riverain Sango', [Definition] = NULL, [SortOrder] = 5838.00 WHERE [Code] = 'snj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbn', 'Rmeet', NULL, 583.00) END +VALUES ('lbn', 'Rmeet', NULL, 5839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rmeet', [Definition] = NULL, [SortOrder] = 583.00 WHERE [Code] = 'lbn' END +SET [Description] = 'Rmeet', [Definition] = NULL, [SortOrder] = 5839.00 WHERE [Code] = 'lbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rod', 'Rogo', NULL, 583.10) END +VALUES ('rod', 'Rogo', NULL, 5840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rogo', [Definition] = NULL, [SortOrder] = 583.10 WHERE [Code] = 'rod' END +SET [Description] = 'Rogo', [Definition] = NULL, [SortOrder] = 5840.00 WHERE [Code] = 'rod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rhg', 'Rohingya', NULL, 583.20) END +VALUES ('rhg', 'Rohingya', NULL, 5841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rohingya', [Definition] = NULL, [SortOrder] = 583.20 WHERE [Code] = 'rhg' END +SET [Description] = 'Rohingya', [Definition] = NULL, [SortOrder] = 5841.00 WHERE [Code] = 'rhg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmm', 'Roma', NULL, 583.30) END +VALUES ('rmm', 'Roma', NULL, 5842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Roma', [Definition] = NULL, [SortOrder] = 583.30 WHERE [Code] = 'rmm' END +SET [Description] = 'Roma', [Definition] = NULL, [SortOrder] = 5842.00 WHERE [Code] = 'rmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgn', 'Romagnol', NULL, 583.40) END +VALUES ('rgn', 'Romagnol', NULL, 5843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romagnol', [Definition] = NULL, [SortOrder] = 583.40 WHERE [Code] = 'rgn' END +SET [Description] = 'Romagnol', [Definition] = NULL, [SortOrder] = 5843.00 WHERE [Code] = 'rgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmx', 'Romam', NULL, 583.50) END +VALUES ('rmx', 'Romam', NULL, 5844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romam', [Definition] = NULL, [SortOrder] = 583.50 WHERE [Code] = 'rmx' END +SET [Description] = 'Romam', [Definition] = NULL, [SortOrder] = 5844.00 WHERE [Code] = 'rmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ron') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ron', 'Romanian', NULL, 583.60) END +VALUES ('ron', 'Romanian', NULL, 5845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romanian', [Definition] = NULL, [SortOrder] = 583.60 WHERE [Code] = 'ron' END +SET [Description] = 'Romanian', [Definition] = NULL, [SortOrder] = 5845.00 WHERE [Code] = 'ron' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rms', 'Romanian Sign Language', NULL, 583.70) END +VALUES ('rms', 'Romanian Sign Language', NULL, 5846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romanian Sign Language', [Definition] = NULL, [SortOrder] = 583.70 WHERE [Code] = 'rms' END +SET [Description] = 'Romanian Sign Language', [Definition] = NULL, [SortOrder] = 5846.00 WHERE [Code] = 'rms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rge', 'Romano-Greek', NULL, 583.80) END +VALUES ('rge', 'Romano-Greek', NULL, 5847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romano-Greek', [Definition] = NULL, [SortOrder] = 583.80 WHERE [Code] = 'rge' END +SET [Description] = 'Romano-Greek', [Definition] = NULL, [SortOrder] = 5847.00 WHERE [Code] = 'rge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsb', 'Romano-Serbian', NULL, 583.90) END +VALUES ('rsb', 'Romano-Serbian', NULL, 5848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romano-Serbian', [Definition] = NULL, [SortOrder] = 583.90 WHERE [Code] = 'rsb' END +SET [Description] = 'Romano-Serbian', [Definition] = NULL, [SortOrder] = 5848.00 WHERE [Code] = 'rsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmv', 'Romanova', NULL, 584.00) END +VALUES ('rmv', 'Romanova', NULL, 5849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romanova', [Definition] = NULL, [SortOrder] = 584.00 WHERE [Code] = 'rmv' END +SET [Description] = 'Romanova', [Definition] = NULL, [SortOrder] = 5849.00 WHERE [Code] = 'rmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'roh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roh', 'Romansh', NULL, 584.10) END +VALUES ('roh', 'Romansh', NULL, 5850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romansh', [Definition] = NULL, [SortOrder] = 584.10 WHERE [Code] = 'roh' END +SET [Description] = 'Romansh', [Definition] = NULL, [SortOrder] = 5850.00 WHERE [Code] = 'roh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rom', 'Romany', NULL, 584.20) END +VALUES ('rom', 'Romany', NULL, 5851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romany', [Definition] = NULL, [SortOrder] = 584.20 WHERE [Code] = 'rom' END +SET [Description] = 'Romany', [Definition] = NULL, [SortOrder] = 5851.00 WHERE [Code] = 'rom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rol', 'Romblomanon', NULL, 584.30) END +VALUES ('rol', 'Romblomanon', NULL, 5852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romblomanon', [Definition] = NULL, [SortOrder] = 584.30 WHERE [Code] = 'rol' END +SET [Description] = 'Romblomanon', [Definition] = NULL, [SortOrder] = 5852.00 WHERE [Code] = 'rol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rof', 'Rombo', NULL, 584.40) END +VALUES ('rof', 'Rombo', NULL, 5853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rombo', [Definition] = NULL, [SortOrder] = 584.40 WHERE [Code] = 'rof' END +SET [Description] = 'Rombo', [Definition] = NULL, [SortOrder] = 5853.00 WHERE [Code] = 'rof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmk', 'Romkun', NULL, 584.50) END +VALUES ('rmk', 'Romkun', NULL, 5854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romkun', [Definition] = NULL, [SortOrder] = 584.50 WHERE [Code] = 'rmk' END +SET [Description] = 'Romkun', [Definition] = NULL, [SortOrder] = 5854.00 WHERE [Code] = 'rmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cla', 'Ron', NULL, 584.60) END +VALUES ('cla', 'Ron', NULL, 5855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ron', [Definition] = NULL, [SortOrder] = 584.60 WHERE [Code] = 'cla' END +SET [Description] = 'Ron', [Definition] = NULL, [SortOrder] = 5855.00 WHERE [Code] = 'cla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rng', 'Ronga', NULL, 584.70) END +VALUES ('rng', 'Ronga', NULL, 5856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ronga', [Definition] = NULL, [SortOrder] = 584.70 WHERE [Code] = 'rng' END +SET [Description] = 'Ronga', [Definition] = NULL, [SortOrder] = 5856.00 WHERE [Code] = 'rng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ror') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ror', 'Rongga', NULL, 584.80) END +VALUES ('ror', 'Rongga', NULL, 5857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rongga', [Definition] = NULL, [SortOrder] = 584.80 WHERE [Code] = 'ror' END +SET [Description] = 'Rongga', [Definition] = NULL, [SortOrder] = 5857.00 WHERE [Code] = 'ror' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbu', 'Rongmei Naga', NULL, 584.90) END +VALUES ('nbu', 'Rongmei Naga', NULL, 5858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rongmei Naga', [Definition] = NULL, [SortOrder] = 584.90 WHERE [Code] = 'nbu' END +SET [Description] = 'Rongmei Naga', [Definition] = NULL, [SortOrder] = 5858.00 WHERE [Code] = 'nbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnp', 'Rongpo', NULL, 585.00) END +VALUES ('rnp', 'Rongpo', NULL, 5859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rongpo', [Definition] = NULL, [SortOrder] = 585.00 WHERE [Code] = 'rnp' END +SET [Description] = 'Rongpo', [Definition] = NULL, [SortOrder] = 5859.00 WHERE [Code] = 'rnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'roe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roe', 'Ronji', NULL, 585.10) END +VALUES ('roe', 'Ronji', NULL, 5860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ronji', [Definition] = NULL, [SortOrder] = 585.10 WHERE [Code] = 'roe' END +SET [Description] = 'Ronji', [Definition] = NULL, [SortOrder] = 5860.00 WHERE [Code] = 'roe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnn', 'Roon', NULL, 585.20) END +VALUES ('rnn', 'Roon', NULL, 5861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Roon', [Definition] = NULL, [SortOrder] = 585.20 WHERE [Code] = 'rnn' END +SET [Description] = 'Roon', [Definition] = NULL, [SortOrder] = 5861.00 WHERE [Code] = 'rnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rga', 'Roria', NULL, 585.30) END +VALUES ('rga', 'Roria', NULL, 5862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Roria', [Definition] = NULL, [SortOrder] = 585.30 WHERE [Code] = 'rga' END +SET [Description] = 'Roria', [Definition] = NULL, [SortOrder] = 5862.00 WHERE [Code] = 'rga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'roo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roo', 'Rotokas', NULL, 585.40) END +VALUES ('roo', 'Rotokas', NULL, 5863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rotokas', [Definition] = NULL, [SortOrder] = 585.40 WHERE [Code] = 'roo' END +SET [Description] = 'Rotokas', [Definition] = NULL, [SortOrder] = 5863.00 WHERE [Code] = 'roo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rtm', 'Rotuman', NULL, 585.50) END +VALUES ('rtm', 'Rotuman', NULL, 5864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rotuman', [Definition] = NULL, [SortOrder] = 585.50 WHERE [Code] = 'rtm' END +SET [Description] = 'Rotuman', [Definition] = NULL, [SortOrder] = 5864.00 WHERE [Code] = 'rtm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rug', 'Roviana', NULL, 585.60) END +VALUES ('rug', 'Roviana', NULL, 5865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Roviana', [Definition] = NULL, [SortOrder] = 585.60 WHERE [Code] = 'rug' END +SET [Description] = 'Roviana', [Definition] = NULL, [SortOrder] = 5865.00 WHERE [Code] = 'rug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pce', 'Ruching Palaung', NULL, 585.70) END +VALUES ('pce', 'Ruching Palaung', NULL, 5866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruching Palaung', [Definition] = NULL, [SortOrder] = 585.70 WHERE [Code] = 'pce' END +SET [Description] = 'Ruching Palaung', [Definition] = NULL, [SortOrder] = 5866.00 WHERE [Code] = 'pce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rdb', 'Rudbari', NULL, 585.80) END +VALUES ('rdb', 'Rudbari', NULL, 5867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rudbari', [Definition] = NULL, [SortOrder] = 585.80 WHERE [Code] = 'rdb' END +SET [Description] = 'Rudbari', [Definition] = NULL, [SortOrder] = 5867.00 WHERE [Code] = 'rdb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rui', 'Rufiji', NULL, 585.90) END +VALUES ('rui', 'Rufiji', NULL, 5868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rufiji', [Definition] = NULL, [SortOrder] = 585.90 WHERE [Code] = 'rui' END +SET [Description] = 'Rufiji', [Definition] = NULL, [SortOrder] = 5868.00 WHERE [Code] = 'rui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruh', 'Ruga', NULL, 586.00) END +VALUES ('ruh', 'Ruga', NULL, 5869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruga', [Definition] = NULL, [SortOrder] = 586.00 WHERE [Code] = 'ruh' END +SET [Description] = 'Ruga', [Definition] = NULL, [SortOrder] = 5869.00 WHERE [Code] = 'ruh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dru', 'Rukai', NULL, 586.10) END +VALUES ('dru', 'Rukai', NULL, 5870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rukai', [Definition] = NULL, [SortOrder] = 586.10 WHERE [Code] = 'dru' END +SET [Description] = 'Rukai', [Definition] = NULL, [SortOrder] = 5870.00 WHERE [Code] = 'dru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruz', 'Ruma', NULL, 586.20) END +VALUES ('ruz', 'Ruma', NULL, 5871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruma', [Definition] = NULL, [SortOrder] = 586.20 WHERE [Code] = 'ruz' END +SET [Description] = 'Ruma', [Definition] = NULL, [SortOrder] = 5871.00 WHERE [Code] = 'ruz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rbb', 'Rumai Palaung', NULL, 586.30) END +VALUES ('rbb', 'Rumai Palaung', NULL, 5872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rumai Palaung', [Definition] = NULL, [SortOrder] = 586.30 WHERE [Code] = 'rbb' END +SET [Description] = 'Rumai Palaung', [Definition] = NULL, [SortOrder] = 5872.00 WHERE [Code] = 'rbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klq', 'Rumu', NULL, 586.40) END +VALUES ('klq', 'Rumu', NULL, 5873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rumu', [Definition] = NULL, [SortOrder] = 586.40 WHERE [Code] = 'klq' END +SET [Description] = 'Rumu', [Definition] = NULL, [SortOrder] = 5873.00 WHERE [Code] = 'klq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'run') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('run', 'Rundi', NULL, 586.50) END +VALUES ('run', 'Rundi', NULL, 5874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rundi', [Definition] = NULL, [SortOrder] = 586.50 WHERE [Code] = 'run' END +SET [Description] = 'Rundi', [Definition] = NULL, [SortOrder] = 5874.00 WHERE [Code] = 'run' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rou', 'Runga', NULL, 586.60) END +VALUES ('rou', 'Runga', NULL, 5875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Runga', [Definition] = NULL, [SortOrder] = 586.60 WHERE [Code] = 'rou' END +SET [Description] = 'Runga', [Definition] = NULL, [SortOrder] = 5875.00 WHERE [Code] = 'rou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rtc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rtc', 'Rungtu Chin', NULL, 586.70) END +VALUES ('rtc', 'Rungtu Chin', NULL, 5876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rungtu Chin', [Definition] = NULL, [SortOrder] = 586.70 WHERE [Code] = 'rtc' END +SET [Description] = 'Rungtu Chin', [Definition] = NULL, [SortOrder] = 5876.00 WHERE [Code] = 'rtc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drg', 'Rungus', NULL, 586.80) END +VALUES ('drg', 'Rungus', NULL, 5877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rungus', [Definition] = NULL, [SortOrder] = 586.80 WHERE [Code] = 'drg' END +SET [Description] = 'Rungus', [Definition] = NULL, [SortOrder] = 5877.00 WHERE [Code] = 'drg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnw', 'Rungwa', NULL, 586.90) END +VALUES ('rnw', 'Rungwa', NULL, 5878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rungwa', [Definition] = NULL, [SortOrder] = 586.90 WHERE [Code] = 'rnw' END +SET [Description] = 'Rungwa', [Definition] = NULL, [SortOrder] = 5878.00 WHERE [Code] = 'rnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxr', 'Russia Buriat', NULL, 587.00) END +VALUES ('bxr', 'Russia Buriat', NULL, 5879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Russia Buriat', [Definition] = NULL, [SortOrder] = 587.00 WHERE [Code] = 'bxr' END +SET [Description] = 'Russia Buriat', [Definition] = NULL, [SortOrder] = 5879.00 WHERE [Code] = 'bxr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rus', 'Russian', NULL, 587.10) END +VALUES ('rus', 'Russian', NULL, 5880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Russian', [Definition] = NULL, [SortOrder] = 587.10 WHERE [Code] = 'rus' END +SET [Description] = 'Russian', [Definition] = NULL, [SortOrder] = 5880.00 WHERE [Code] = 'rus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsl', 'Russian Sign Language', NULL, 587.20) END +VALUES ('rsl', 'Russian Sign Language', NULL, 5881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Russian Sign Language', [Definition] = NULL, [SortOrder] = 587.20 WHERE [Code] = 'rsl' END +SET [Description] = 'Russian Sign Language', [Definition] = NULL, [SortOrder] = 5881.00 WHERE [Code] = 'rsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rue', 'Rusyn', NULL, 587.30) END +VALUES ('rue', 'Rusyn', NULL, 5882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rusyn', [Definition] = NULL, [SortOrder] = 587.30 WHERE [Code] = 'rue' END +SET [Description] = 'Rusyn', [Definition] = NULL, [SortOrder] = 5882.00 WHERE [Code] = 'rue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsk', 'Ruthenian', NULL, 587.40) END +VALUES ('rsk', 'Ruthenian', NULL, 5883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruthenian', [Definition] = NULL, [SortOrder] = 587.40 WHERE [Code] = 'rsk' END +SET [Description] = 'Ruthenian', [Definition] = NULL, [SortOrder] = 5883.00 WHERE [Code] = 'rsk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rut', 'Rutul', NULL, 587.50) END +VALUES ('rut', 'Rutul', NULL, 5884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rutul', [Definition] = NULL, [SortOrder] = 587.50 WHERE [Code] = 'rut' END +SET [Description] = 'Rutul', [Definition] = NULL, [SortOrder] = 5884.00 WHERE [Code] = 'rut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruc', 'Ruuli', NULL, 587.60) END +VALUES ('ruc', 'Ruuli', NULL, 5885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruuli', [Definition] = NULL, [SortOrder] = 587.60 WHERE [Code] = 'ruc' END +SET [Description] = 'Ruuli', [Definition] = NULL, [SortOrder] = 5885.00 WHERE [Code] = 'ruc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnd', 'Ruund', NULL, 587.70) END +VALUES ('rnd', 'Ruund', NULL, 5886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruund', [Definition] = NULL, [SortOrder] = 587.70 WHERE [Code] = 'rnd' END +SET [Description] = 'Ruund', [Definition] = NULL, [SortOrder] = 5886.00 WHERE [Code] = 'rnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwl', 'Ruwila', NULL, 587.80) END +VALUES ('rwl', 'Ruwila', NULL, 5887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruwila', [Definition] = NULL, [SortOrder] = 587.80 WHERE [Code] = 'rwl' END +SET [Description] = 'Ruwila', [Definition] = NULL, [SortOrder] = 5887.00 WHERE [Code] = 'rwl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwk', 'Rwa', NULL, 587.90) END +VALUES ('rwk', 'Rwa', NULL, 5888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rwa', [Definition] = NULL, [SortOrder] = 587.90 WHERE [Code] = 'rwk' END +SET [Description] = 'Rwa', [Definition] = NULL, [SortOrder] = 5888.00 WHERE [Code] = 'rwk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsn', 'Rwandan Sign Language', NULL, 588.00) END +VALUES ('rsn', 'Rwandan Sign Language', NULL, 5889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rwandan Sign Language', [Definition] = NULL, [SortOrder] = 588.00 WHERE [Code] = 'rsn' END +SET [Description] = 'Rwandan Sign Language', [Definition] = NULL, [SortOrder] = 5889.00 WHERE [Code] = 'rsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksw', 'S''gaw Karen', NULL, 588.10) END +VALUES ('ksw', 'S''gaw Karen', NULL, 5890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'S''gaw Karen', [Definition] = NULL, [SortOrder] = 588.10 WHERE [Code] = 'ksw' END +SET [Description] = 'S''gaw Karen', [Definition] = NULL, [SortOrder] = 5890.00 WHERE [Code] = 'ksw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sax', 'Sa', NULL, 588.20) END +VALUES ('sax', 'Sa', NULL, 5891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sa', [Definition] = NULL, [SortOrder] = 588.20 WHERE [Code] = 'sax' END +SET [Description] = 'Sa', [Definition] = NULL, [SortOrder] = 5891.00 WHERE [Code] = 'sax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apb', 'Sa''a', NULL, 588.30) END +VALUES ('apb', 'Sa''a', NULL, 5892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sa''a', [Definition] = NULL, [SortOrder] = 588.30 WHERE [Code] = 'apb' END +SET [Description] = 'Sa''a', [Definition] = NULL, [SortOrder] = 5892.00 WHERE [Code] = 'apb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snv', 'Sa''ban', NULL, 588.40) END +VALUES ('snv', 'Sa''ban', NULL, 5893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sa''ban', [Definition] = NULL, [SortOrder] = 588.40 WHERE [Code] = 'snv' END +SET [Description] = 'Sa''ban', [Definition] = NULL, [SortOrder] = 5893.00 WHERE [Code] = 'snv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scq', 'Sa''och', NULL, 588.50) END +VALUES ('scq', 'Sa''och', NULL, 5894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sa''och', [Definition] = NULL, [SortOrder] = 588.50 WHERE [Code] = 'scq' END +SET [Description] = 'Sa''och', [Definition] = NULL, [SortOrder] = 5894.00 WHERE [Code] = 'scq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sav', 'Saafi-Saafi', NULL, 588.60) END +VALUES ('sav', 'Saafi-Saafi', NULL, 5895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saafi-Saafi', [Definition] = NULL, [SortOrder] = 588.60 WHERE [Code] = 'sav' END +SET [Description] = 'Saafi-Saafi', [Definition] = NULL, [SortOrder] = 5895.00 WHERE [Code] = 'sav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raq', 'Saam', NULL, 588.70) END +VALUES ('raq', 'Saam', NULL, 5896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saam', [Definition] = NULL, [SortOrder] = 588.70 WHERE [Code] = 'raq' END +SET [Description] = 'Saam', [Definition] = NULL, [SortOrder] = 5896.00 WHERE [Code] = 'raq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsm', 'Saamia', NULL, 588.80) END +VALUES ('lsm', 'Saamia', NULL, 5897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saamia', [Definition] = NULL, [SortOrder] = 588.80 WHERE [Code] = 'lsm' END +SET [Description] = 'Saamia', [Definition] = NULL, [SortOrder] = 5897.00 WHERE [Code] = 'lsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxr', 'Saaroa', NULL, 588.90) END +VALUES ('sxr', 'Saaroa', NULL, 5898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saaroa', [Definition] = NULL, [SortOrder] = 588.90 WHERE [Code] = 'sxr' END +SET [Description] = 'Saaroa', [Definition] = NULL, [SortOrder] = 5898.00 WHERE [Code] = 'sxr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saa', 'Saba', NULL, 589.00) END +VALUES ('saa', 'Saba', NULL, 5899.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saba', [Definition] = NULL, [SortOrder] = 589.00 WHERE [Code] = 'saa' END +SET [Description] = 'Saba', [Definition] = NULL, [SortOrder] = 5899.00 WHERE [Code] = 'saa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsa', 'Sabaean', NULL, 589.10) END +VALUES ('xsa', 'Sabaean', NULL, 5900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabaean', [Definition] = NULL, [SortOrder] = 589.10 WHERE [Code] = 'xsa' END +SET [Description] = 'Sabaean', [Definition] = NULL, [SortOrder] = 5900.00 WHERE [Code] = 'xsa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsy', 'Sabah Bisaya', NULL, 589.20) END +VALUES ('bsy', 'Sabah Bisaya', NULL, 5901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabah Bisaya', [Definition] = NULL, [SortOrder] = 589.20 WHERE [Code] = 'bsy' END +SET [Description] = 'Sabah Bisaya', [Definition] = NULL, [SortOrder] = 5901.00 WHERE [Code] = 'bsy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msi', 'Sabah Malay', NULL, 589.30) END +VALUES ('msi', 'Sabah Malay', NULL, 5902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabah Malay', [Definition] = NULL, [SortOrder] = 589.30 WHERE [Code] = 'msi' END +SET [Description] = 'Sabah Malay', [Definition] = NULL, [SortOrder] = 5902.00 WHERE [Code] = 'msi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sae', 'Sabanê', NULL, 589.40) END +VALUES ('sae', 'Sabanê', NULL, 5903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabanê', [Definition] = NULL, [SortOrder] = 589.40 WHERE [Code] = 'sae' END +SET [Description] = 'Sabanê', [Definition] = NULL, [SortOrder] = 5903.00 WHERE [Code] = 'sae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spy', 'Sabaot', NULL, 589.50) END +VALUES ('spy', 'Sabaot', NULL, 5904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabaot', [Definition] = NULL, [SortOrder] = 589.50 WHERE [Code] = 'spy' END +SET [Description] = 'Sabaot', [Definition] = NULL, [SortOrder] = 5904.00 WHERE [Code] = 'spy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbv', 'Sabine', NULL, 589.60) END +VALUES ('sbv', 'Sabine', NULL, 5905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabine', [Definition] = NULL, [SortOrder] = 589.60 WHERE [Code] = 'sbv' END +SET [Description] = 'Sabine', [Definition] = NULL, [SortOrder] = 5905.00 WHERE [Code] = 'sbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hvn', 'Sabu', NULL, 589.70) END +VALUES ('hvn', 'Sabu', NULL, 5906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabu', [Definition] = NULL, [SortOrder] = 589.70 WHERE [Code] = 'hvn' END +SET [Description] = 'Sabu', [Definition] = NULL, [SortOrder] = 5906.00 WHERE [Code] = 'hvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbo', 'Sabüm', NULL, 589.80) END +VALUES ('sbo', 'Sabüm', NULL, 5907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabüm', [Definition] = NULL, [SortOrder] = 589.80 WHERE [Code] = 'sbo' END +SET [Description] = 'Sabüm', [Definition] = NULL, [SortOrder] = 5907.00 WHERE [Code] = 'sbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quv', 'Sacapulteco', NULL, 589.90) END +VALUES ('quv', 'Sacapulteco', NULL, 5908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sacapulteco', [Definition] = NULL, [SortOrder] = 589.90 WHERE [Code] = 'quv' END +SET [Description] = 'Sacapulteco', [Definition] = NULL, [SortOrder] = 5908.00 WHERE [Code] = 'quv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sck', 'Sadri', NULL, 590.00) END +VALUES ('sck', 'Sadri', NULL, 5909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sadri', [Definition] = NULL, [SortOrder] = 590.00 WHERE [Code] = 'sck' END +SET [Description] = 'Sadri', [Definition] = NULL, [SortOrder] = 5909.00 WHERE [Code] = 'sck' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skb', 'Saek', NULL, 590.10) END +VALUES ('skb', 'Saek', NULL, 5910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saek', [Definition] = NULL, [SortOrder] = 590.10 WHERE [Code] = 'skb' END +SET [Description] = 'Saek', [Definition] = NULL, [SortOrder] = 5910.00 WHERE [Code] = 'skb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spd', 'Saep', NULL, 590.20) END +VALUES ('spd', 'Saep', NULL, 5911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saep', [Definition] = NULL, [SortOrder] = 590.20 WHERE [Code] = 'spd' END +SET [Description] = 'Saep', [Definition] = NULL, [SortOrder] = 5911.00 WHERE [Code] = 'spd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saf', 'Safaliba', NULL, 590.30) END +VALUES ('saf', 'Safaliba', NULL, 5912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Safaliba', [Definition] = NULL, [SortOrder] = 590.30 WHERE [Code] = 'saf' END +SET [Description] = 'Safaliba', [Definition] = NULL, [SortOrder] = 5912.00 WHERE [Code] = 'saf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apz', 'Safeyoka', NULL, 590.40) END +VALUES ('apz', 'Safeyoka', NULL, 5913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Safeyoka', [Definition] = NULL, [SortOrder] = 590.40 WHERE [Code] = 'apz' END +SET [Description] = 'Safeyoka', [Definition] = NULL, [SortOrder] = 5913.00 WHERE [Code] = 'apz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbk', 'Safwa', NULL, 590.50) END +VALUES ('sbk', 'Safwa', NULL, 5914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Safwa', [Definition] = NULL, [SortOrder] = 590.50 WHERE [Code] = 'sbk' END +SET [Description] = 'Safwa', [Definition] = NULL, [SortOrder] = 5914.00 WHERE [Code] = 'sbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbm', 'Sagala', NULL, 590.60) END +VALUES ('sbm', 'Sagala', NULL, 5915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sagala', [Definition] = NULL, [SortOrder] = 590.60 WHERE [Code] = 'sbm' END +SET [Description] = 'Sagala', [Definition] = NULL, [SortOrder] = 5915.00 WHERE [Code] = 'sbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tga', 'Sagalla', NULL, 590.70) END +VALUES ('tga', 'Sagalla', NULL, 5916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sagalla', [Definition] = NULL, [SortOrder] = 590.70 WHERE [Code] = 'tga' END +SET [Description] = 'Sagalla', [Definition] = NULL, [SortOrder] = 5916.00 WHERE [Code] = 'tga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssy', 'Saho', NULL, 590.80) END +VALUES ('ssy', 'Saho', NULL, 5917.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saho', [Definition] = NULL, [SortOrder] = 590.80 WHERE [Code] = 'ssy' END +SET [Description] = 'Saho', [Definition] = NULL, [SortOrder] = 5917.00 WHERE [Code] = 'ssy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saj', 'Sahu', NULL, 590.90) END +VALUES ('saj', 'Sahu', NULL, 5918.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sahu', [Definition] = NULL, [SortOrder] = 590.90 WHERE [Code] = 'saj' END +SET [Description] = 'Sahu', [Definition] = NULL, [SortOrder] = 5918.00 WHERE [Code] = 'saj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aec', 'Saidi Arabic', NULL, 591.00) END +VALUES ('aec', 'Saidi Arabic', NULL, 5919.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saidi Arabic', [Definition] = NULL, [SortOrder] = 591.00 WHERE [Code] = 'aec' END +SET [Description] = 'Saidi Arabic', [Definition] = NULL, [SortOrder] = 5919.00 WHERE [Code] = 'aec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acf', 'Saint Lucian Creole French', NULL, 591.10) END +VALUES ('acf', 'Saint Lucian Creole French', NULL, 5920.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saint Lucian Creole French', [Definition] = NULL, [SortOrder] = 591.10 WHERE [Code] = 'acf' END +SET [Description] = 'Saint Lucian Creole French', [Definition] = NULL, [SortOrder] = 5920.00 WHERE [Code] = 'acf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsy', 'Saisiyat', NULL, 591.20) END +VALUES ('xsy', 'Saisiyat', NULL, 5921.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saisiyat', [Definition] = NULL, [SortOrder] = 591.20 WHERE [Code] = 'xsy' END +SET [Description] = 'Saisiyat', [Definition] = NULL, [SortOrder] = 5921.00 WHERE [Code] = 'xsy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjl', 'Sajalong', NULL, 591.30) END +VALUES ('sjl', 'Sajalong', NULL, 5922.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sajalong', [Definition] = NULL, [SortOrder] = 591.30 WHERE [Code] = 'sjl' END +SET [Description] = 'Sajalong', [Definition] = NULL, [SortOrder] = 5922.00 WHERE [Code] = 'sjl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjb', 'Sajau Basap', NULL, 591.40) END +VALUES ('sjb', 'Sajau Basap', NULL, 5923.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sajau Basap', [Definition] = NULL, [SortOrder] = 591.40 WHERE [Code] = 'sjb' END +SET [Description] = 'Sajau Basap', [Definition] = NULL, [SortOrder] = 5923.00 WHERE [Code] = 'sjb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sch', 'Sakachep', NULL, 591.50) END +VALUES ('sch', 'Sakachep', NULL, 5924.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakachep', [Definition] = NULL, [SortOrder] = 591.50 WHERE [Code] = 'sch' END +SET [Description] = 'Sakachep', [Definition] = NULL, [SortOrder] = 5924.00 WHERE [Code] = 'sch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skg', 'Sakalava Malagasy', NULL, 591.60) END +VALUES ('skg', 'Sakalava Malagasy', NULL, 5925.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakalava Malagasy', [Definition] = NULL, [SortOrder] = 591.60 WHERE [Code] = 'skg' END +SET [Description] = 'Sakalava Malagasy', [Definition] = NULL, [SortOrder] = 5925.00 WHERE [Code] = 'skg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sku', 'Sakao', NULL, 591.70) END +VALUES ('sku', 'Sakao', NULL, 5926.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakao', [Definition] = NULL, [SortOrder] = 591.70 WHERE [Code] = 'sku' END +SET [Description] = 'Sakao', [Definition] = NULL, [SortOrder] = 5926.00 WHERE [Code] = 'sku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skt', 'Sakata', NULL, 591.80) END +VALUES ('skt', 'Sakata', NULL, 5927.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakata', [Definition] = NULL, [SortOrder] = 591.80 WHERE [Code] = 'skt' END +SET [Description] = 'Sakata', [Definition] = NULL, [SortOrder] = 5927.00 WHERE [Code] = 'skt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sak', 'Sake', NULL, 591.90) END +VALUES ('sak', 'Sake', NULL, 5928.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sake', [Definition] = NULL, [SortOrder] = 591.90 WHERE [Code] = 'sak' END +SET [Description] = 'Sake', [Definition] = NULL, [SortOrder] = 5928.00 WHERE [Code] = 'sak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skf', 'Sakirabiá', NULL, 592.00) END +VALUES ('skf', 'Sakirabiá', NULL, 5929.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakirabiá', [Definition] = NULL, [SortOrder] = 592.00 WHERE [Code] = 'skf' END +SET [Description] = 'Sakirabiá', [Definition] = NULL, [SortOrder] = 5929.00 WHERE [Code] = 'skf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szy', 'Sakizaya', NULL, 592.10) END +VALUES ('szy', 'Sakizaya', NULL, 5930.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakizaya', [Definition] = NULL, [SortOrder] = 592.10 WHERE [Code] = 'szy' END +SET [Description] = 'Sakizaya', [Definition] = NULL, [SortOrder] = 5930.00 WHERE [Code] = 'szy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shq', 'Sala', NULL, 592.20) END +VALUES ('shq', 'Sala', NULL, 5931.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sala', [Definition] = NULL, [SortOrder] = 592.20 WHERE [Code] = 'shq' END +SET [Description] = 'Sala', [Definition] = NULL, [SortOrder] = 5931.00 WHERE [Code] = 'shq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slx', 'Salampasu', NULL, 592.30) END +VALUES ('slx', 'Salampasu', NULL, 5932.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salampasu', [Definition] = NULL, [SortOrder] = 592.30 WHERE [Code] = 'slx' END +SET [Description] = 'Salampasu', [Definition] = NULL, [SortOrder] = 5932.00 WHERE [Code] = 'slx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slr', 'Salar', NULL, 592.40) END +VALUES ('slr', 'Salar', NULL, 5933.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salar', [Definition] = NULL, [SortOrder] = 592.40 WHERE [Code] = 'slr' END +SET [Description] = 'Salar', [Definition] = NULL, [SortOrder] = 5933.00 WHERE [Code] = 'slr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgu', 'Salas', NULL, 592.50) END +VALUES ('sgu', 'Salas', NULL, 5934.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salas', [Definition] = NULL, [SortOrder] = 592.50 WHERE [Code] = 'sgu' END +SET [Description] = 'Salas', [Definition] = NULL, [SortOrder] = 5934.00 WHERE [Code] = 'sgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxl', 'Salasaca Highland Quichua', NULL, 592.60) END +VALUES ('qxl', 'Salasaca Highland Quichua', NULL, 5935.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salasaca Highland Quichua', [Definition] = NULL, [SortOrder] = 592.60 WHERE [Code] = 'qxl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slq', 'Salchuq', NULL, 592.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salchuq', [Definition] = NULL, [SortOrder] = 592.70 WHERE [Code] = 'slq' END +SET [Description] = 'Salasaca Highland Quichua', [Definition] = NULL, [SortOrder] = 5935.00 WHERE [Code] = 'qxl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sau', 'Saleman', NULL, 592.80) END +VALUES ('sau', 'Saleman', NULL, 5936.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saleman', [Definition] = NULL, [SortOrder] = 592.80 WHERE [Code] = 'sau' END +SET [Description] = 'Saleman', [Definition] = NULL, [SortOrder] = 5936.00 WHERE [Code] = 'sau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbe', 'Saliba', NULL, 592.90) END +VALUES ('sbe', 'Saliba', NULL, 5937.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saliba', [Definition] = NULL, [SortOrder] = 592.90 WHERE [Code] = 'sbe' END +SET [Description] = 'Saliba', [Definition] = NULL, [SortOrder] = 5937.00 WHERE [Code] = 'sbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slc', 'Sáliba', NULL, 593.00) END +VALUES ('slc', 'Sáliba', NULL, 5938.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sáliba', [Definition] = NULL, [SortOrder] = 593.00 WHERE [Code] = 'slc' END +SET [Description] = 'Sáliba', [Definition] = NULL, [SortOrder] = 5938.00 WHERE [Code] = 'slc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sln', 'Salinan', NULL, 593.10) END +VALUES ('sln', 'Salinan', NULL, 5939.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salinan', [Definition] = NULL, [SortOrder] = 593.10 WHERE [Code] = 'sln' END +SET [Description] = 'Salinan', [Definition] = NULL, [SortOrder] = 5939.00 WHERE [Code] = 'sln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdz', 'Sallands', NULL, 593.20) END +VALUES ('sdz', 'Sallands', NULL, 5940.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sallands', [Definition] = NULL, [SortOrder] = 593.20 WHERE [Code] = 'sdz' END +SET [Description] = 'Sallands', [Definition] = NULL, [SortOrder] = 5940.00 WHERE [Code] = 'sdz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sll', 'Salt-Yui', NULL, 593.30) END +VALUES ('sll', 'Salt-Yui', NULL, 5941.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salt-Yui', [Definition] = NULL, [SortOrder] = 593.30 WHERE [Code] = 'sll' END +SET [Description] = 'Salt-Yui', [Definition] = NULL, [SortOrder] = 5941.00 WHERE [Code] = 'sll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loe', 'Saluan', NULL, 593.40) END +VALUES ('loe', 'Saluan', NULL, 5942.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saluan', [Definition] = NULL, [SortOrder] = 593.40 WHERE [Code] = 'loe' END +SET [Description] = 'Saluan', [Definition] = NULL, [SortOrder] = 5942.00 WHERE [Code] = 'loe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slj', 'Salumá', NULL, 593.50) END +VALUES ('slj', 'Salumá', NULL, 5943.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salumá', [Definition] = NULL, [SortOrder] = 593.50 WHERE [Code] = 'slj' END +SET [Description] = 'Salumá', [Definition] = NULL, [SortOrder] = 5943.00 WHERE [Code] = 'slj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esn', 'Salvadoran Sign Language', NULL, 593.60) END +VALUES ('esn', 'Salvadoran Sign Language', NULL, 5944.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salvadoran Sign Language', [Definition] = NULL, [SortOrder] = 593.60 WHERE [Code] = 'esn' END +SET [Description] = 'Salvadoran Sign Language', [Definition] = NULL, [SortOrder] = 5944.00 WHERE [Code] = 'esn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snx', 'Sam', NULL, 593.70) END +VALUES ('snx', 'Sam', NULL, 5945.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sam', [Definition] = NULL, [SortOrder] = 593.70 WHERE [Code] = 'snx' END +SET [Description] = 'Sam', [Definition] = NULL, [SortOrder] = 5945.00 WHERE [Code] = 'snx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smp', 'Samaritan', NULL, 593.80) END +VALUES ('smp', 'Samaritan', NULL, 5946.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samaritan', [Definition] = NULL, [SortOrder] = 593.80 WHERE [Code] = 'smp' END +SET [Description] = 'Samaritan', [Definition] = NULL, [SortOrder] = 5946.00 WHERE [Code] = 'smp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sam', 'Samaritan Aramaic', NULL, 593.90) END +VALUES ('sam', 'Samaritan Aramaic', NULL, 5947.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samaritan Aramaic', [Definition] = NULL, [SortOrder] = 593.90 WHERE [Code] = 'sam' END +SET [Description] = 'Samaritan Aramaic', [Definition] = NULL, [SortOrder] = 5947.00 WHERE [Code] = 'sam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmj', 'Samarokena', NULL, 594.00) END +VALUES ('tmj', 'Samarokena', NULL, 5948.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samarokena', [Definition] = NULL, [SortOrder] = 594.00 WHERE [Code] = 'tmj' END +SET [Description] = 'Samarokena', [Definition] = NULL, [SortOrder] = 5948.00 WHERE [Code] = 'tmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysd', 'Samatao', NULL, 594.10) END +VALUES ('ysd', 'Samatao', NULL, 5949.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samatao', [Definition] = NULL, [SortOrder] = 594.10 WHERE [Code] = 'ysd' END +SET [Description] = 'Samatao', [Definition] = NULL, [SortOrder] = 5949.00 WHERE [Code] = 'ysd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syx', 'Samay', NULL, 594.20) END +VALUES ('syx', 'Samay', NULL, 5950.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samay', [Definition] = NULL, [SortOrder] = 594.20 WHERE [Code] = 'syx' END +SET [Description] = 'Samay', [Definition] = NULL, [SortOrder] = 5950.00 WHERE [Code] = 'syx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smx', 'Samba', NULL, 594.30) END +VALUES ('smx', 'Samba', NULL, 5951.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samba', [Definition] = NULL, [SortOrder] = 594.30 WHERE [Code] = 'smx' END +SET [Description] = 'Samba', [Definition] = NULL, [SortOrder] = 5951.00 WHERE [Code] = 'smx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccg', 'Samba Daka', NULL, 594.40) END +VALUES ('ccg', 'Samba Daka', NULL, 5952.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samba Daka', [Definition] = NULL, [SortOrder] = 594.40 WHERE [Code] = 'ccg' END +SET [Description] = 'Samba Daka', [Definition] = NULL, [SortOrder] = 5952.00 WHERE [Code] = 'ccg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndi', 'Samba Leko', NULL, 594.50) END +VALUES ('ndi', 'Samba Leko', NULL, 5953.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samba Leko', [Definition] = NULL, [SortOrder] = 594.50 WHERE [Code] = 'ndi' END +SET [Description] = 'Samba Leko', [Definition] = NULL, [SortOrder] = 5953.00 WHERE [Code] = 'ndi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsb', 'Sambal', NULL, 594.60) END +VALUES ('xsb', 'Sambal', NULL, 5954.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sambal', [Definition] = NULL, [SortOrder] = 594.60 WHERE [Code] = 'xsb' END +SET [Description] = 'Sambal', [Definition] = NULL, [SortOrder] = 5954.00 WHERE [Code] = 'xsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spv', 'Sambalpuri', NULL, 594.70) END +VALUES ('spv', 'Sambalpuri', NULL, 5955.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sambalpuri', [Definition] = NULL, [SortOrder] = 594.70 WHERE [Code] = 'spv' END +SET [Description] = 'Sambalpuri', [Definition] = NULL, [SortOrder] = 5955.00 WHERE [Code] = 'spv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xab', 'Sambe', NULL, 594.80) END +VALUES ('xab', 'Sambe', NULL, 5956.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sambe', [Definition] = NULL, [SortOrder] = 594.80 WHERE [Code] = 'xab' END +SET [Description] = 'Sambe', [Definition] = NULL, [SortOrder] = 5956.00 WHERE [Code] = 'xab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssx', 'Samberigi', NULL, 594.90) END +VALUES ('ssx', 'Samberigi', NULL, 5957.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samberigi', [Definition] = NULL, [SortOrder] = 594.90 WHERE [Code] = 'ssx' END +SET [Description] = 'Samberigi', [Definition] = NULL, [SortOrder] = 5957.00 WHERE [Code] = 'ssx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saq', 'Samburu', NULL, 595.00) END +VALUES ('saq', 'Samburu', NULL, 5958.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samburu', [Definition] = NULL, [SortOrder] = 595.00 WHERE [Code] = 'saq' END +SET [Description] = 'Samburu', [Definition] = NULL, [SortOrder] = 5958.00 WHERE [Code] = 'saq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smh', 'Samei', NULL, 595.10) END +VALUES ('smh', 'Samei', NULL, 5959.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samei', [Definition] = NULL, [SortOrder] = 595.10 WHERE [Code] = 'smh' END +SET [Description] = 'Samei', [Definition] = NULL, [SortOrder] = 5959.00 WHERE [Code] = 'smh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smq', 'Samo', NULL, 595.20) END +VALUES ('smq', 'Samo', NULL, 5960.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samo', [Definition] = NULL, [SortOrder] = 595.20 WHERE [Code] = 'smq' END +SET [Description] = 'Samo', [Definition] = NULL, [SortOrder] = 5960.00 WHERE [Code] = 'smq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smo', 'Samoan', NULL, 595.30) END +VALUES ('smo', 'Samoan', NULL, 5961.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samoan', [Definition] = NULL, [SortOrder] = 595.30 WHERE [Code] = 'smo' END +SET [Description] = 'Samoan', [Definition] = NULL, [SortOrder] = 5961.00 WHERE [Code] = 'smo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgs', 'Samogitian', NULL, 595.40) END +VALUES ('sgs', 'Samogitian', NULL, 5962.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samogitian', [Definition] = NULL, [SortOrder] = 595.40 WHERE [Code] = 'sgs' END +SET [Description] = 'Samogitian', [Definition] = NULL, [SortOrder] = 5962.00 WHERE [Code] = 'sgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swm', 'Samosa', NULL, 595.50) END +VALUES ('swm', 'Samosa', NULL, 5963.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samosa', [Definition] = NULL, [SortOrder] = 595.50 WHERE [Code] = 'swm' END +SET [Description] = 'Samosa', [Definition] = NULL, [SortOrder] = 5963.00 WHERE [Code] = 'swm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rav', 'Sampang', NULL, 595.60) END +VALUES ('rav', 'Sampang', NULL, 5964.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sampang', [Definition] = NULL, [SortOrder] = 595.60 WHERE [Code] = 'rav' END +SET [Description] = 'Sampang', [Definition] = NULL, [SortOrder] = 5964.00 WHERE [Code] = 'rav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxm', 'Samre', NULL, 595.70) END +VALUES ('sxm', 'Samre', NULL, 5965.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samre', [Definition] = NULL, [SortOrder] = 595.70 WHERE [Code] = 'sxm' END +SET [Description] = 'Samre', [Definition] = NULL, [SortOrder] = 5965.00 WHERE [Code] = 'sxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stu', 'Samtao', NULL, 595.80) END +VALUES ('stu', 'Samtao', NULL, 5966.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samtao', [Definition] = NULL, [SortOrder] = 595.80 WHERE [Code] = 'stu' END +SET [Description] = 'Samtao', [Definition] = NULL, [SortOrder] = 5966.00 WHERE [Code] = 'stu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smv', 'Samvedi', NULL, 595.90) END +VALUES ('smv', 'Samvedi', NULL, 5967.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samvedi', [Definition] = NULL, [SortOrder] = 595.90 WHERE [Code] = 'smv' END +SET [Description] = 'Samvedi', [Definition] = NULL, [SortOrder] = 5967.00 WHERE [Code] = 'smv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztm', 'San Agustín Mixtepec Zapotec', NULL, 596.00) END +VALUES ('ztm', 'San Agustín Mixtepec Zapotec', NULL, 5968.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Agustín Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 596.00 WHERE [Code] = 'ztm' END +SET [Description] = 'San Agustín Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 5968.00 WHERE [Code] = 'ztm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpx', 'San Baltazar Loxicha Zapotec', NULL, 596.10) END +VALUES ('zpx', 'San Baltazar Loxicha Zapotec', NULL, 5969.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Baltazar Loxicha Zapotec', [Definition] = NULL, [SortOrder] = 596.10 WHERE [Code] = 'zpx' END +SET [Description] = 'San Baltazar Loxicha Zapotec', [Definition] = NULL, [SortOrder] = 5969.00 WHERE [Code] = 'zpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuk', 'San Blas Kuna', NULL, 596.20) END +VALUES ('cuk', 'San Blas Kuna', NULL, 5970.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Blas Kuna', [Definition] = NULL, [SortOrder] = 596.20 WHERE [Code] = 'cuk' END +SET [Description] = 'San Blas Kuna', [Definition] = NULL, [SortOrder] = 5970.00 WHERE [Code] = 'cuk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hve', 'San Dionisio Del Mar Huave', NULL, 596.30) END +VALUES ('hve', 'San Dionisio Del Mar Huave', NULL, 5971.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Dionisio Del Mar Huave', [Definition] = NULL, [SortOrder] = 596.30 WHERE [Code] = 'hve' END +SET [Description] = 'San Dionisio Del Mar Huave', [Definition] = NULL, [SortOrder] = 5971.00 WHERE [Code] = 'hve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pow', 'San Felipe Otlaltepec Popoloca', NULL, 596.40) END +VALUES ('pow', 'San Felipe Otlaltepec Popoloca', NULL, 5972.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Felipe Otlaltepec Popoloca', [Definition] = NULL, [SortOrder] = 596.40 WHERE [Code] = 'pow' END +SET [Description] = 'San Felipe Otlaltepec Popoloca', [Definition] = NULL, [SortOrder] = 5972.00 WHERE [Code] = 'pow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hue', 'San Francisco Del Mar Huave', NULL, 596.50) END +VALUES ('hue', 'San Francisco Del Mar Huave', NULL, 5973.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Francisco Del Mar Huave', [Definition] = NULL, [SortOrder] = 596.50 WHERE [Code] = 'hue' END +SET [Description] = 'San Francisco Del Mar Huave', [Definition] = NULL, [SortOrder] = 5973.00 WHERE [Code] = 'hue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mat', 'San Francisco Matlatzinca', NULL, 596.60) END +VALUES ('mat', 'San Francisco Matlatzinca', NULL, 5974.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Francisco Matlatzinca', [Definition] = NULL, [SortOrder] = 596.60 WHERE [Code] = 'mat' END +SET [Description] = 'San Francisco Matlatzinca', [Definition] = NULL, [SortOrder] = 5974.00 WHERE [Code] = 'mat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maa', 'San Jerónimo Tecóatl Mazatec', NULL, 596.70) END +VALUES ('maa', 'San Jerónimo Tecóatl Mazatec', NULL, 5975.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Jerónimo Tecóatl Mazatec', [Definition] = NULL, [SortOrder] = 596.70 WHERE [Code] = 'maa' END +SET [Description] = 'San Jerónimo Tecóatl Mazatec', [Definition] = NULL, [SortOrder] = 5975.00 WHERE [Code] = 'maa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poe', 'San Juan Atzingo Popoloca', NULL, 596.80) END +VALUES ('poe', 'San Juan Atzingo Popoloca', NULL, 5976.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Juan Atzingo Popoloca', [Definition] = NULL, [SortOrder] = 596.80 WHERE [Code] = 'poe' END +SET [Description] = 'San Juan Atzingo Popoloca', [Definition] = NULL, [SortOrder] = 5976.00 WHERE [Code] = 'poe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjc', 'San Juan Colorado Mixtec', NULL, 596.90) END +VALUES ('mjc', 'San Juan Colorado Mixtec', NULL, 5977.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Juan Colorado Mixtec', [Definition] = NULL, [SortOrder] = 596.90 WHERE [Code] = 'mjc' END +SET [Description] = 'San Juan Colorado Mixtec', [Definition] = NULL, [SortOrder] = 5977.00 WHERE [Code] = 'mjc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtj', 'San Juan Teita Mixtec', NULL, 597.00) END +VALUES ('xtj', 'San Juan Teita Mixtec', NULL, 5978.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Juan Teita Mixtec', [Definition] = NULL, [SortOrder] = 597.00 WHERE [Code] = 'xtj' END +SET [Description] = 'San Juan Teita Mixtec', [Definition] = NULL, [SortOrder] = 5978.00 WHERE [Code] = 'xtj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pps', 'San Luís Temalacayuca Popoloca', NULL, 597.10) END +VALUES ('pps', 'San Luís Temalacayuca Popoloca', NULL, 5979.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Luís Temalacayuca Popoloca', [Definition] = NULL, [SortOrder] = 597.10 WHERE [Code] = 'pps' END +SET [Description] = 'San Luís Temalacayuca Popoloca', [Definition] = NULL, [SortOrder] = 5979.00 WHERE [Code] = 'pps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pls', 'San Marcos Tlacoyalco Popoloca', NULL, 597.20) END +VALUES ('pls', 'San Marcos Tlacoyalco Popoloca', NULL, 5980.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Marcos Tlacoyalco Popoloca', [Definition] = NULL, [SortOrder] = 597.20 WHERE [Code] = 'pls' END +SET [Description] = 'San Marcos Tlacoyalco Popoloca', [Definition] = NULL, [SortOrder] = 5980.00 WHERE [Code] = 'pls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trq', 'San Martín Itunyoso Triqui', NULL, 597.30) END +VALUES ('trq', 'San Martín Itunyoso Triqui', NULL, 5981.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Martín Itunyoso Triqui', [Definition] = NULL, [SortOrder] = 597.30 WHERE [Code] = 'trq' END +SET [Description] = 'San Martín Itunyoso Triqui', [Definition] = NULL, [SortOrder] = 5981.00 WHERE [Code] = 'trq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvs', 'San Martín Quechua', NULL, 597.40) END +VALUES ('qvs', 'San Martín Quechua', NULL, 5982.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Martín Quechua', [Definition] = NULL, [SortOrder] = 597.40 WHERE [Code] = 'qvs' END +SET [Description] = 'San Martín Quechua', [Definition] = NULL, [SortOrder] = 5982.00 WHERE [Code] = 'qvs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huv', 'San Mateo Del Mar Huave', NULL, 597.50) END +VALUES ('huv', 'San Mateo Del Mar Huave', NULL, 5983.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Mateo Del Mar Huave', [Definition] = NULL, [SortOrder] = 597.50 WHERE [Code] = 'huv' END +SET [Description] = 'San Mateo Del Mar Huave', [Definition] = NULL, [SortOrder] = 5983.00 WHERE [Code] = 'huv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scf', 'San Miguel Creole French', NULL, 597.60) END +VALUES ('scf', 'San Miguel Creole French', NULL, 5984.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Miguel Creole French', [Definition] = NULL, [SortOrder] = 597.60 WHERE [Code] = 'scf' END +SET [Description] = 'San Miguel Creole French', [Definition] = NULL, [SortOrder] = 5984.00 WHERE [Code] = 'scf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mig', 'San Miguel El Grande Mixtec', NULL, 597.70) END +VALUES ('mig', 'San Miguel El Grande Mixtec', NULL, 5985.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Miguel El Grande Mixtec', [Definition] = NULL, [SortOrder] = 597.70 WHERE [Code] = 'mig' END +SET [Description] = 'San Miguel El Grande Mixtec', [Definition] = NULL, [SortOrder] = 5985.00 WHERE [Code] = 'mig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtp', 'San Miguel Piedras Mixtec', NULL, 597.80) END +VALUES ('xtp', 'San Miguel Piedras Mixtec', NULL, 5986.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Miguel Piedras Mixtec', [Definition] = NULL, [SortOrder] = 597.80 WHERE [Code] = 'xtp' END +SET [Description] = 'San Miguel Piedras Mixtec', [Definition] = NULL, [SortOrder] = 5986.00 WHERE [Code] = 'xtp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azg', 'San Pedro Amuzgos Amuzgo', NULL, 597.90) END +VALUES ('azg', 'San Pedro Amuzgos Amuzgo', NULL, 5987.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Pedro Amuzgos Amuzgo', [Definition] = NULL, [SortOrder] = 597.90 WHERE [Code] = 'azg' END +SET [Description] = 'San Pedro Amuzgos Amuzgo', [Definition] = NULL, [SortOrder] = 5987.00 WHERE [Code] = 'azg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpf', 'San Pedro Quiatoni Zapotec', NULL, 598.00) END +VALUES ('zpf', 'San Pedro Quiatoni Zapotec', NULL, 5988.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Pedro Quiatoni Zapotec', [Definition] = NULL, [SortOrder] = 598.00 WHERE [Code] = 'zpf' END +SET [Description] = 'San Pedro Quiatoni Zapotec', [Definition] = NULL, [SortOrder] = 5988.00 WHERE [Code] = 'zpf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwy', 'San Salvador Kongo', NULL, 598.10) END +VALUES ('kwy', 'San Salvador Kongo', NULL, 5989.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Salvador Kongo', [Definition] = NULL, [SortOrder] = 598.10 WHERE [Code] = 'kwy' END +SET [Description] = 'San Salvador Kongo', [Definition] = NULL, [SortOrder] = 5989.00 WHERE [Code] = 'kwy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpt', 'San Vicente Coatlán Zapotec', NULL, 598.20) END +VALUES ('zpt', 'San Vicente Coatlán Zapotec', NULL, 5990.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Vicente Coatlán Zapotec', [Definition] = NULL, [SortOrder] = 598.20 WHERE [Code] = 'zpt' END +SET [Description] = 'San Vicente Coatlán Zapotec', [Definition] = NULL, [SortOrder] = 5990.00 WHERE [Code] = 'zpt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayn', 'Sanaani Arabic', NULL, 598.30) END +VALUES ('ayn', 'Sanaani Arabic', NULL, 5991.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanaani Arabic', [Definition] = NULL, [SortOrder] = 598.30 WHERE [Code] = 'ayn' END +SET [Description] = 'Sanaani Arabic', [Definition] = NULL, [SortOrder] = 5991.00 WHERE [Code] = 'ayn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spn', 'Sanapaná', NULL, 598.40) END +VALUES ('spn', 'Sanapaná', NULL, 5992.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanapaná', [Definition] = NULL, [SortOrder] = 598.40 WHERE [Code] = 'spn' END +SET [Description] = 'Sanapaná', [Definition] = NULL, [SortOrder] = 5992.00 WHERE [Code] = 'spn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sad', 'Sandawe', NULL, 598.50) END +VALUES ('sad', 'Sandawe', NULL, 5993.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sandawe', [Definition] = NULL, [SortOrder] = 598.50 WHERE [Code] = 'sad' END +SET [Description] = 'Sandawe', [Definition] = NULL, [SortOrder] = 5993.00 WHERE [Code] = 'sad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sng', 'Sanga (Democratic Republic of Congo)', NULL, 598.60) END +VALUES ('sng', 'Sanga (Democratic Republic of Congo)', NULL, 5994.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanga (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 598.60 WHERE [Code] = 'sng' END +SET [Description] = 'Sanga (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 5994.00 WHERE [Code] = 'sng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsn', 'Sanga (Nigeria)', NULL, 598.70) END +VALUES ('xsn', 'Sanga (Nigeria)', NULL, 5995.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanga (Nigeria)', [Definition] = NULL, [SortOrder] = 598.70 WHERE [Code] = 'xsn' END +SET [Description] = 'Sanga (Nigeria)', [Definition] = NULL, [SortOrder] = 5995.00 WHERE [Code] = 'xsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scg', 'Sanggau', NULL, 598.80) END +VALUES ('scg', 'Sanggau', NULL, 5996.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanggau', [Definition] = NULL, [SortOrder] = 598.80 WHERE [Code] = 'scg' END +SET [Description] = 'Sanggau', [Definition] = NULL, [SortOrder] = 5996.00 WHERE [Code] = 'scg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snl', 'Sangil', NULL, 598.90) END +VALUES ('snl', 'Sangil', NULL, 5997.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangil', [Definition] = NULL, [SortOrder] = 598.90 WHERE [Code] = 'snl' END +SET [Description] = 'Sangil', [Definition] = NULL, [SortOrder] = 5997.00 WHERE [Code] = 'snl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxn', 'Sangir', NULL, 599.00) END +VALUES ('sxn', 'Sangir', NULL, 5998.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangir', [Definition] = NULL, [SortOrder] = 599.00 WHERE [Code] = 'sxn' END +SET [Description] = 'Sangir', [Definition] = NULL, [SortOrder] = 5998.00 WHERE [Code] = 'sxn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgr', 'Sangisari', NULL, 599.10) END +VALUES ('sgr', 'Sangisari', NULL, 5999.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangisari', [Definition] = NULL, [SortOrder] = 599.10 WHERE [Code] = 'sgr' END +SET [Description] = 'Sangisari', [Definition] = NULL, [SortOrder] = 5999.00 WHERE [Code] = 'sgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgk', 'Sangkong', NULL, 599.20) END +VALUES ('sgk', 'Sangkong', NULL, 6000.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangkong', [Definition] = NULL, [SortOrder] = 599.20 WHERE [Code] = 'sgk' END +SET [Description] = 'Sangkong', [Definition] = NULL, [SortOrder] = 6000.00 WHERE [Code] = 'sgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgy', 'Sanglechi', NULL, 599.30) END +VALUES ('sgy', 'Sanglechi', NULL, 6001.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanglechi', [Definition] = NULL, [SortOrder] = 599.30 WHERE [Code] = 'sgy' END +SET [Description] = 'Sanglechi', [Definition] = NULL, [SortOrder] = 6001.00 WHERE [Code] = 'sgy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sag', 'Sango', NULL, 599.40) END +VALUES ('sag', 'Sango', NULL, 6002.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sango', [Definition] = NULL, [SortOrder] = 599.40 WHERE [Code] = 'sag' END +SET [Description] = 'Sango', [Definition] = NULL, [SortOrder] = 6002.00 WHERE [Code] = 'sag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsa', 'Sangtam Naga', NULL, 599.50) END +VALUES ('nsa', 'Sangtam Naga', NULL, 6003.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangtam Naga', [Definition] = NULL, [SortOrder] = 599.50 WHERE [Code] = 'nsa' END +SET [Description] = 'Sangtam Naga', [Definition] = NULL, [SortOrder] = 6003.00 WHERE [Code] = 'nsa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snq', 'Sangu (Gabon)', NULL, 599.60) END +VALUES ('snq', 'Sangu (Gabon)', NULL, 6004.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangu (Gabon)', [Definition] = NULL, [SortOrder] = 599.60 WHERE [Code] = 'snq' END +SET [Description] = 'Sangu (Gabon)', [Definition] = NULL, [SortOrder] = 6004.00 WHERE [Code] = 'snq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbp', 'Sangu (Tanzania)', NULL, 599.70) END +VALUES ('sbp', 'Sangu (Tanzania)', NULL, 6005.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangu (Tanzania)', [Definition] = NULL, [SortOrder] = 599.70 WHERE [Code] = 'sbp' END +SET [Description] = 'Sangu (Tanzania)', [Definition] = NULL, [SortOrder] = 6005.00 WHERE [Code] = 'sbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysn', 'Sani', NULL, 599.80) END +VALUES ('ysn', 'Sani', NULL, 6006.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sani', [Definition] = NULL, [SortOrder] = 599.80 WHERE [Code] = 'ysn' END +SET [Description] = 'Sani', [Definition] = NULL, [SortOrder] = 6006.00 WHERE [Code] = 'ysn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysy', 'Sanie', NULL, 599.90) END +VALUES ('ysy', 'Sanie', NULL, 6007.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanie', [Definition] = NULL, [SortOrder] = 599.90 WHERE [Code] = 'ysy' END +SET [Description] = 'Sanie', [Definition] = NULL, [SortOrder] = 6007.00 WHERE [Code] = 'ysy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sny', 'Saniyo-Hiyewe', NULL, 600.00) END +VALUES ('sny', 'Saniyo-Hiyewe', NULL, 6008.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saniyo-Hiyewe', [Definition] = NULL, [SortOrder] = 600.00 WHERE [Code] = 'sny' END +SET [Description] = 'Saniyo-Hiyewe', [Definition] = NULL, [SortOrder] = 6008.00 WHERE [Code] = 'sny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msc', 'Sankaran Maninka', NULL, 600.10) END +VALUES ('msc', 'Sankaran Maninka', NULL, 6009.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sankaran Maninka', [Definition] = NULL, [SortOrder] = 600.10 WHERE [Code] = 'msc' END +SET [Description] = 'Sankaran Maninka', [Definition] = NULL, [SortOrder] = 6009.00 WHERE [Code] = 'msc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssi', 'Sansi', NULL, 600.20) END +VALUES ('ssi', 'Sansi', NULL, 6010.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sansi', [Definition] = NULL, [SortOrder] = 600.20 WHERE [Code] = 'ssi' END +SET [Description] = 'Sansi', [Definition] = NULL, [SortOrder] = 6010.00 WHERE [Code] = 'ssi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'san') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('san', 'Sanskrit', NULL, 600.30) END +VALUES ('san', 'Sanskrit', NULL, 6011.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanskrit', [Definition] = NULL, [SortOrder] = 600.30 WHERE [Code] = 'san' END +SET [Description] = 'Sanskrit', [Definition] = NULL, [SortOrder] = 6011.00 WHERE [Code] = 'san' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxt', 'Santa Ana de Tusi Pasco Quechua', NULL, 600.40) END +VALUES ('qxt', 'Santa Ana de Tusi Pasco Quechua', NULL, 6012.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Ana de Tusi Pasco Quechua', [Definition] = NULL, [SortOrder] = 600.40 WHERE [Code] = 'qxt' END +SET [Description] = 'Santa Ana de Tusi Pasco Quechua', [Definition] = NULL, [SortOrder] = 6012.00 WHERE [Code] = 'qxt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztn', 'Santa Catarina Albarradas Zapotec', NULL, 600.50) END +VALUES ('ztn', 'Santa Catarina Albarradas Zapotec', NULL, 6013.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Catarina Albarradas Zapotec', [Definition] = NULL, [SortOrder] = 600.50 WHERE [Code] = 'ztn' END +SET [Description] = 'Santa Catarina Albarradas Zapotec', [Definition] = NULL, [SortOrder] = 6013.00 WHERE [Code] = 'ztn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pca', 'Santa Inés Ahuatempan Popoloca', NULL, 600.60) END +VALUES ('pca', 'Santa Inés Ahuatempan Popoloca', NULL, 6014.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Inés Ahuatempan Popoloca', [Definition] = NULL, [SortOrder] = 600.60 WHERE [Code] = 'pca' END +SET [Description] = 'Santa Inés Ahuatempan Popoloca', [Definition] = NULL, [SortOrder] = 6014.00 WHERE [Code] = 'pca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpn', 'Santa Inés Yatzechi Zapotec', NULL, 600.70) END +VALUES ('zpn', 'Santa Inés Yatzechi Zapotec', NULL, 6015.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Inés Yatzechi Zapotec', [Definition] = NULL, [SortOrder] = 600.70 WHERE [Code] = 'zpn' END +SET [Description] = 'Santa Inés Yatzechi Zapotec', [Definition] = NULL, [SortOrder] = 6015.00 WHERE [Code] = 'zpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdv', 'Santa Lucía Monteverde Mixtec', NULL, 600.80) END +VALUES ('mdv', 'Santa Lucía Monteverde Mixtec', NULL, 6016.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Lucía Monteverde Mixtec', [Definition] = NULL, [SortOrder] = 600.80 WHERE [Code] = 'mdv' END +SET [Description] = 'Santa Lucía Monteverde Mixtec', [Definition] = NULL, [SortOrder] = 6016.00 WHERE [Code] = 'mdv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hvv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hvv', 'Santa María Del Mar Huave', NULL, 600.90) END +VALUES ('hvv', 'Santa María Del Mar Huave', NULL, 6017.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa María Del Mar Huave', [Definition] = NULL, [SortOrder] = 600.90 WHERE [Code] = 'hvv' END +SET [Description] = 'Santa María Del Mar Huave', [Definition] = NULL, [SortOrder] = 6017.00 WHERE [Code] = 'hvv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhz', 'Santa María La Alta Nahuatl', NULL, 601.00) END +VALUES ('nhz', 'Santa María La Alta Nahuatl', NULL, 6018.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa María La Alta Nahuatl', [Definition] = NULL, [SortOrder] = 601.00 WHERE [Code] = 'nhz' END +SET [Description] = 'Santa María La Alta Nahuatl', [Definition] = NULL, [SortOrder] = 6018.00 WHERE [Code] = 'nhz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpi', 'Santa María Quiegolani Zapotec', NULL, 601.10) END +VALUES ('zpi', 'Santa María Quiegolani Zapotec', NULL, 6019.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa María Quiegolani Zapotec', [Definition] = NULL, [SortOrder] = 601.10 WHERE [Code] = 'zpi' END +SET [Description] = 'Santa María Quiegolani Zapotec', [Definition] = NULL, [SortOrder] = 6019.00 WHERE [Code] = 'zpi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mza', 'Santa María Zacatepec Mixtec', NULL, 601.20) END +VALUES ('mza', 'Santa María Zacatepec Mixtec', NULL, 6020.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa María Zacatepec Mixtec', [Definition] = NULL, [SortOrder] = 601.20 WHERE [Code] = 'mza' END +SET [Description] = 'Santa María Zacatepec Mixtec', [Definition] = NULL, [SortOrder] = 6020.00 WHERE [Code] = 'mza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cok', 'Santa Teresa Cora', NULL, 601.30) END +VALUES ('cok', 'Santa Teresa Cora', NULL, 6021.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Teresa Cora', [Definition] = NULL, [SortOrder] = 601.30 WHERE [Code] = 'cok' END +SET [Description] = 'Santa Teresa Cora', [Definition] = NULL, [SortOrder] = 6021.00 WHERE [Code] = 'cok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sat', 'Santali', NULL, 601.40) END +VALUES ('sat', 'Santali', NULL, 6022.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santali', [Definition] = NULL, [SortOrder] = 601.40 WHERE [Code] = 'sat' END +SET [Description] = 'Santali', [Definition] = NULL, [SortOrder] = 6022.00 WHERE [Code] = 'sat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qus', 'Santiago del Estero Quichua', NULL, 601.50) END +VALUES ('qus', 'Santiago del Estero Quichua', NULL, 6023.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santiago del Estero Quichua', [Definition] = NULL, [SortOrder] = 601.50 WHERE [Code] = 'qus' END +SET [Description] = 'Santiago del Estero Quichua', [Definition] = NULL, [SortOrder] = 6023.00 WHERE [Code] = 'qus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpr', 'Santiago Xanica Zapotec', NULL, 601.60) END +VALUES ('zpr', 'Santiago Xanica Zapotec', NULL, 6024.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santiago Xanica Zapotec', [Definition] = NULL, [SortOrder] = 601.60 WHERE [Code] = 'zpr' END +SET [Description] = 'Santiago Xanica Zapotec', [Definition] = NULL, [SortOrder] = 6024.00 WHERE [Code] = 'zpr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zas', 'Santo Domingo Albarradas Zapotec', NULL, 601.70) END +VALUES ('zas', 'Santo Domingo Albarradas Zapotec', NULL, 6025.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santo Domingo Albarradas Zapotec', [Definition] = NULL, [SortOrder] = 601.70 WHERE [Code] = 'zas' END +SET [Description] = 'Santo Domingo Albarradas Zapotec', [Definition] = NULL, [SortOrder] = 6025.00 WHERE [Code] = 'zas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsu', 'Sanumá', NULL, 601.80) END +VALUES ('xsu', 'Sanumá', NULL, 6026.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanumá', [Definition] = NULL, [SortOrder] = 601.80 WHERE [Code] = 'xsu' END +SET [Description] = 'Sanumá', [Definition] = NULL, [SortOrder] = 6026.00 WHERE [Code] = 'xsu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkp', 'São Paulo Kaingáng', NULL, 601.90) END +VALUES ('zkp', 'São Paulo Kaingáng', NULL, 6027.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'São Paulo Kaingáng', [Definition] = NULL, [SortOrder] = 601.90 WHERE [Code] = 'zkp' END +SET [Description] = 'São Paulo Kaingáng', [Definition] = NULL, [SortOrder] = 6027.00 WHERE [Code] = 'zkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cri', 'Sãotomense', NULL, 602.00) END +VALUES ('cri', 'Sãotomense', NULL, 6028.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sãotomense', [Definition] = NULL, [SortOrder] = 602.00 WHERE [Code] = 'cri' END +SET [Description] = 'Sãotomense', [Definition] = NULL, [SortOrder] = 6028.00 WHERE [Code] = 'cri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spr', 'Saparua', NULL, 602.10) END +VALUES ('spr', 'Saparua', NULL, 6029.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saparua', [Definition] = NULL, [SortOrder] = 602.10 WHERE [Code] = 'spr' END +SET [Description] = 'Saparua', [Definition] = NULL, [SortOrder] = 6029.00 WHERE [Code] = 'spr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spc', 'Sapé', NULL, 602.20) END +VALUES ('spc', 'Sapé', NULL, 6030.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sapé', [Definition] = NULL, [SortOrder] = 602.20 WHERE [Code] = 'spc' END +SET [Description] = 'Sapé', [Definition] = NULL, [SortOrder] = 6030.00 WHERE [Code] = 'spc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krn', 'Sapo', NULL, 602.30) END +VALUES ('krn', 'Sapo', NULL, 6031.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sapo', [Definition] = NULL, [SortOrder] = 602.30 WHERE [Code] = 'krn' END +SET [Description] = 'Sapo', [Definition] = NULL, [SortOrder] = 6031.00 WHERE [Code] = 'krn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spi', 'Saponi', NULL, 602.40) END +VALUES ('spi', 'Saponi', NULL, 6032.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saponi', [Definition] = NULL, [SortOrder] = 602.40 WHERE [Code] = 'spi' END +SET [Description] = 'Saponi', [Definition] = NULL, [SortOrder] = 6032.00 WHERE [Code] = 'spi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sps', 'Saposa', NULL, 602.50) END +VALUES ('sps', 'Saposa', NULL, 6033.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saposa', [Definition] = NULL, [SortOrder] = 602.50 WHERE [Code] = 'sps' END +SET [Description] = 'Saposa', [Definition] = NULL, [SortOrder] = 6033.00 WHERE [Code] = 'sps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spu', 'Sapuan', NULL, 602.60) END +VALUES ('spu', 'Sapuan', NULL, 6034.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sapuan', [Definition] = NULL, [SortOrder] = 602.60 WHERE [Code] = 'spu' END +SET [Description] = 'Sapuan', [Definition] = NULL, [SortOrder] = 6034.00 WHERE [Code] = 'spu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwm', 'Sar', NULL, 602.70) END +VALUES ('mwm', 'Sar', NULL, 6035.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sar', [Definition] = NULL, [SortOrder] = 602.70 WHERE [Code] = 'mwm' END +SET [Description] = 'Sar', [Definition] = NULL, [SortOrder] = 6035.00 WHERE [Code] = 'mwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sre', 'Sara', NULL, 602.80) END +VALUES ('sre', 'Sara', NULL, 6036.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sara', [Definition] = NULL, [SortOrder] = 602.80 WHERE [Code] = 'sre' END +SET [Description] = 'Sara', [Definition] = NULL, [SortOrder] = 6036.00 WHERE [Code] = 'sre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbz', 'Sara Kaba', NULL, 602.90) END +VALUES ('sbz', 'Sara Kaba', NULL, 6037.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sara Kaba', [Definition] = NULL, [SortOrder] = 602.90 WHERE [Code] = 'sbz' END +SET [Description] = 'Sara Kaba', [Definition] = NULL, [SortOrder] = 6037.00 WHERE [Code] = 'sbz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwg', 'Sara Kaba Deme', NULL, 603.00) END +VALUES ('kwg', 'Sara Kaba Deme', NULL, 6038.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sara Kaba Deme', [Definition] = NULL, [SortOrder] = 603.00 WHERE [Code] = 'kwg' END +SET [Description] = 'Sara Kaba Deme', [Definition] = NULL, [SortOrder] = 6038.00 WHERE [Code] = 'kwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwv', 'Sara Kaba Náà', NULL, 603.10) END +VALUES ('kwv', 'Sara Kaba Náà', NULL, 6039.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sara Kaba Náà', [Definition] = NULL, [SortOrder] = 603.10 WHERE [Code] = 'kwv' END +SET [Description] = 'Sara Kaba Náà', [Definition] = NULL, [SortOrder] = 6039.00 WHERE [Code] = 'kwv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skr', 'Saraiki', NULL, 603.20) END +VALUES ('skr', 'Saraiki', NULL, 6040.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saraiki', [Definition] = NULL, [SortOrder] = 603.20 WHERE [Code] = 'skr' END +SET [Description] = 'Saraiki', [Definition] = NULL, [SortOrder] = 6040.00 WHERE [Code] = 'skr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srm', 'Saramaccan', NULL, 603.30) END +VALUES ('srm', 'Saramaccan', NULL, 6041.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saramaccan', [Definition] = NULL, [SortOrder] = 603.30 WHERE [Code] = 'srm' END +SET [Description] = 'Saramaccan', [Definition] = NULL, [SortOrder] = 6041.00 WHERE [Code] = 'srm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bps', 'Sarangani Blaan', NULL, 603.40) END +VALUES ('bps', 'Sarangani Blaan', NULL, 6042.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarangani Blaan', [Definition] = NULL, [SortOrder] = 603.40 WHERE [Code] = 'bps' END +SET [Description] = 'Sarangani Blaan', [Definition] = NULL, [SortOrder] = 6042.00 WHERE [Code] = 'bps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbs', 'Sarangani Manobo', NULL, 603.50) END +VALUES ('mbs', 'Sarangani Manobo', NULL, 6043.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarangani Manobo', [Definition] = NULL, [SortOrder] = 603.50 WHERE [Code] = 'mbs' END +SET [Description] = 'Sarangani Manobo', [Definition] = NULL, [SortOrder] = 6043.00 WHERE [Code] = 'mbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsa', 'Sarasira', NULL, 603.60) END +VALUES ('zsa', 'Sarasira', NULL, 6044.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarasira', [Definition] = NULL, [SortOrder] = 603.60 WHERE [Code] = 'zsa' END +SET [Description] = 'Sarasira', [Definition] = NULL, [SortOrder] = 6044.00 WHERE [Code] = 'zsa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sar', 'Saraveca', NULL, 603.70) END +VALUES ('sar', 'Saraveca', NULL, 6045.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saraveca', [Definition] = NULL, [SortOrder] = 603.70 WHERE [Code] = 'sar' END +SET [Description] = 'Saraveca', [Definition] = NULL, [SortOrder] = 6045.00 WHERE [Code] = 'sar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srd', 'Sardinian', NULL, 603.80) END +VALUES ('srd', 'Sardinian', NULL, 6046.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sardinian', [Definition] = NULL, [SortOrder] = 603.80 WHERE [Code] = 'srd' END +SET [Description] = 'Sardinian', [Definition] = NULL, [SortOrder] = 6046.00 WHERE [Code] = 'srd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asj', 'Sari', NULL, 603.90) END +VALUES ('asj', 'Sari', NULL, 6047.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sari', [Definition] = NULL, [SortOrder] = 603.90 WHERE [Code] = 'asj' END +SET [Description] = 'Sari', [Definition] = NULL, [SortOrder] = 6047.00 WHERE [Code] = 'asj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srh', 'Sarikoli', NULL, 604.00) END +VALUES ('srh', 'Sarikoli', NULL, 6048.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarikoli', [Definition] = NULL, [SortOrder] = 604.00 WHERE [Code] = 'srh' END +SET [Description] = 'Sarikoli', [Definition] = NULL, [SortOrder] = 6048.00 WHERE [Code] = 'srh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdf', 'Sarli', NULL, 604.10) END +VALUES ('sdf', 'Sarli', NULL, 6049.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarli', [Definition] = NULL, [SortOrder] = 604.10 WHERE [Code] = 'sdf' END +SET [Description] = 'Sarli', [Definition] = NULL, [SortOrder] = 6049.00 WHERE [Code] = 'sdf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srs', 'Sarsi', NULL, 604.20) END +VALUES ('srs', 'Sarsi', NULL, 6050.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarsi', [Definition] = NULL, [SortOrder] = 604.20 WHERE [Code] = 'srs' END +SET [Description] = 'Sarsi', [Definition] = NULL, [SortOrder] = 6050.00 WHERE [Code] = 'srs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onp', 'Sartang', NULL, 604.30) END +VALUES ('onp', 'Sartang', NULL, 6051.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sartang', [Definition] = NULL, [SortOrder] = 604.30 WHERE [Code] = 'onp' END +SET [Description] = 'Sartang', [Definition] = NULL, [SortOrder] = 6051.00 WHERE [Code] = 'onp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swy', 'Sarua', NULL, 604.40) END +VALUES ('swy', 'Sarua', NULL, 6052.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarua', [Definition] = NULL, [SortOrder] = 604.40 WHERE [Code] = 'swy' END +SET [Description] = 'Sarua', [Definition] = NULL, [SortOrder] = 6052.00 WHERE [Code] = 'swy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdu', 'Sarudu', NULL, 604.50) END +VALUES ('sdu', 'Sarudu', NULL, 6053.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarudu', [Definition] = NULL, [SortOrder] = 604.50 WHERE [Code] = 'sdu' END +SET [Description] = 'Sarudu', [Definition] = NULL, [SortOrder] = 6053.00 WHERE [Code] = 'sdu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sra', 'Saruga', NULL, 604.60) END +VALUES ('sra', 'Saruga', NULL, 6054.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saruga', [Definition] = NULL, [SortOrder] = 604.60 WHERE [Code] = 'sra' END +SET [Description] = 'Saruga', [Definition] = NULL, [SortOrder] = 6054.00 WHERE [Code] = 'sra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sas', 'Sasak', NULL, 604.70) END +VALUES ('sas', 'Sasak', NULL, 6055.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sasak', [Definition] = NULL, [SortOrder] = 604.70 WHERE [Code] = 'sas' END +SET [Description] = 'Sasak', [Definition] = NULL, [SortOrder] = 6055.00 WHERE [Code] = 'sas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxs', 'Sasaru', NULL, 604.80) END +VALUES ('sxs', 'Sasaru', NULL, 6056.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sasaru', [Definition] = NULL, [SortOrder] = 604.80 WHERE [Code] = 'sxs' END +SET [Description] = 'Sasaru', [Definition] = NULL, [SortOrder] = 6056.00 WHERE [Code] = 'sxs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdc', 'Sassarese Sardinian', NULL, 604.90) END +VALUES ('sdc', 'Sassarese Sardinian', NULL, 6057.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sassarese Sardinian', [Definition] = NULL, [SortOrder] = 604.90 WHERE [Code] = 'sdc' END +SET [Description] = 'Sassarese Sardinian', [Definition] = NULL, [SortOrder] = 6057.00 WHERE [Code] = 'sdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stw', 'Satawalese', NULL, 605.00) END +VALUES ('stw', 'Satawalese', NULL, 6058.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Satawalese', [Definition] = NULL, [SortOrder] = 605.00 WHERE [Code] = 'stw' END +SET [Description] = 'Satawalese', [Definition] = NULL, [SortOrder] = 6058.00 WHERE [Code] = 'stw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mav', 'Sateré-Mawé', NULL, 605.10) END +VALUES ('mav', 'Sateré-Mawé', NULL, 6059.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sateré-Mawé', [Definition] = NULL, [SortOrder] = 605.10 WHERE [Code] = 'mav' END +SET [Description] = 'Sateré-Mawé', [Definition] = NULL, [SortOrder] = 6059.00 WHERE [Code] = 'mav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stq', 'Saterfriesisch', NULL, 605.20) END +VALUES ('stq', 'Saterfriesisch', NULL, 6060.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saterfriesisch', [Definition] = NULL, [SortOrder] = 605.20 WHERE [Code] = 'stq' END +SET [Description] = 'Saterfriesisch', [Definition] = NULL, [SortOrder] = 6060.00 WHERE [Code] = 'stq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdl', 'Saudi Arabian Sign Language', NULL, 605.30) END +VALUES ('sdl', 'Saudi Arabian Sign Language', NULL, 6061.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saudi Arabian Sign Language', [Definition] = NULL, [SortOrder] = 605.30 WHERE [Code] = 'sdl' END +SET [Description] = 'Saudi Arabian Sign Language', [Definition] = NULL, [SortOrder] = 6061.00 WHERE [Code] = 'sdl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psu', 'Sauraseni Prakrit', NULL, 605.40) END +VALUES ('psu', 'Sauraseni Prakrit', NULL, 6062.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sauraseni Prakrit', [Definition] = NULL, [SortOrder] = 605.40 WHERE [Code] = 'psu' END +SET [Description] = 'Sauraseni Prakrit', [Definition] = NULL, [SortOrder] = 6062.00 WHERE [Code] = 'psu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saz', 'Saurashtra', NULL, 605.50) END +VALUES ('saz', 'Saurashtra', NULL, 6063.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saurashtra', [Definition] = NULL, [SortOrder] = 605.50 WHERE [Code] = 'saz' END +SET [Description] = 'Saurashtra', [Definition] = NULL, [SortOrder] = 6063.00 WHERE [Code] = 'saz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srt', 'Sauri', NULL, 605.60) END +VALUES ('srt', 'Sauri', NULL, 6064.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sauri', [Definition] = NULL, [SortOrder] = 605.60 WHERE [Code] = 'srt' END +SET [Description] = 'Sauri', [Definition] = NULL, [SortOrder] = 6064.00 WHERE [Code] = 'srt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjt', 'Sauria Paharia', NULL, 605.70) END +VALUES ('mjt', 'Sauria Paharia', NULL, 6065.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sauria Paharia', [Definition] = NULL, [SortOrder] = 605.70 WHERE [Code] = 'mjt' END +SET [Description] = 'Sauria Paharia', [Definition] = NULL, [SortOrder] = 6065.00 WHERE [Code] = 'mjt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sao', 'Sause', NULL, 605.80) END +VALUES ('sao', 'Sause', NULL, 6066.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sause', [Definition] = NULL, [SortOrder] = 605.80 WHERE [Code] = 'sao' END +SET [Description] = 'Sause', [Definition] = NULL, [SortOrder] = 6066.00 WHERE [Code] = 'sao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssj', 'Sausi', NULL, 605.90) END +VALUES ('ssj', 'Sausi', NULL, 6067.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sausi', [Definition] = NULL, [SortOrder] = 605.90 WHERE [Code] = 'ssj' END +SET [Description] = 'Sausi', [Definition] = NULL, [SortOrder] = 6067.00 WHERE [Code] = 'ssj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdg', 'Savi', NULL, 606.00) END +VALUES ('sdg', 'Savi', NULL, 6068.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Savi', [Definition] = NULL, [SortOrder] = 606.00 WHERE [Code] = 'sdg' END +SET [Description] = 'Savi', [Definition] = NULL, [SortOrder] = 6068.00 WHERE [Code] = 'sdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svs', 'Savosavo', NULL, 606.10) END +VALUES ('svs', 'Savosavo', NULL, 6069.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Savosavo', [Definition] = NULL, [SortOrder] = 606.10 WHERE [Code] = 'svs' END +SET [Description] = 'Savosavo', [Definition] = NULL, [SortOrder] = 6069.00 WHERE [Code] = 'svs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szw', 'Sawai', NULL, 606.20) END +VALUES ('szw', 'Sawai', NULL, 6070.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sawai', [Definition] = NULL, [SortOrder] = 606.20 WHERE [Code] = 'szw' END +SET [Description] = 'Sawai', [Definition] = NULL, [SortOrder] = 6070.00 WHERE [Code] = 'szw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swr', 'Saweru', NULL, 606.30) END +VALUES ('swr', 'Saweru', NULL, 6071.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saweru', [Definition] = NULL, [SortOrder] = 606.30 WHERE [Code] = 'swr' END +SET [Description] = 'Saweru', [Definition] = NULL, [SortOrder] = 6071.00 WHERE [Code] = 'swr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saw', 'Sawi', NULL, 606.40) END +VALUES ('saw', 'Sawi', NULL, 6072.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sawi', [Definition] = NULL, [SortOrder] = 606.40 WHERE [Code] = 'saw' END +SET [Description] = 'Sawi', [Definition] = NULL, [SortOrder] = 6072.00 WHERE [Code] = 'saw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swt', 'Sawila', NULL, 606.50) END +VALUES ('swt', 'Sawila', NULL, 6073.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sawila', [Definition] = NULL, [SortOrder] = 606.50 WHERE [Code] = 'swt' END +SET [Description] = 'Sawila', [Definition] = NULL, [SortOrder] = 6073.00 WHERE [Code] = 'swt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swn', 'Sawknah', NULL, 606.60) END +VALUES ('swn', 'Sawknah', NULL, 6074.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sawknah', [Definition] = NULL, [SortOrder] = 606.60 WHERE [Code] = 'swn' END +SET [Description] = 'Sawknah', [Definition] = NULL, [SortOrder] = 6074.00 WHERE [Code] = 'swn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxw', 'Saxwe Gbe', NULL, 606.70) END +VALUES ('sxw', 'Saxwe Gbe', NULL, 6075.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saxwe Gbe', [Definition] = NULL, [SortOrder] = 606.70 WHERE [Code] = 'sxw' END +SET [Description] = 'Saxwe Gbe', [Definition] = NULL, [SortOrder] = 6075.00 WHERE [Code] = 'sxw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'say') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('say', 'Saya', NULL, 606.80) END +VALUES ('say', 'Saya', NULL, 6076.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saya', [Definition] = NULL, [SortOrder] = 606.80 WHERE [Code] = 'say' END +SET [Description] = 'Saya', [Definition] = NULL, [SortOrder] = 6076.00 WHERE [Code] = 'say' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pos', 'Sayula Popoluca', NULL, 606.90) END +VALUES ('pos', 'Sayula Popoluca', NULL, 6077.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sayula Popoluca', [Definition] = NULL, [SortOrder] = 606.90 WHERE [Code] = 'pos' END +SET [Description] = 'Sayula Popoluca', [Definition] = NULL, [SortOrder] = 6077.00 WHERE [Code] = 'pos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sco', 'Scots', NULL, 607.00) END +VALUES ('sco', 'Scots', NULL, 6078.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Scots', [Definition] = NULL, [SortOrder] = 607.00 WHERE [Code] = 'sco' END +SET [Description] = 'Scots', [Definition] = NULL, [SortOrder] = 6078.00 WHERE [Code] = 'sco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gla', 'Scottish Gaelic', NULL, 607.10) END +VALUES ('gla', 'Scottish Gaelic', NULL, 6079.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Scottish Gaelic', [Definition] = NULL, [SortOrder] = 607.10 WHERE [Code] = 'gla' END +SET [Description] = 'Scottish Gaelic', [Definition] = NULL, [SortOrder] = 6079.00 WHERE [Code] = 'gla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsc', 'Scythian', NULL, 607.20) END +VALUES ('xsc', 'Scythian', NULL, 6080.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Scythian', [Definition] = NULL, [SortOrder] = 607.20 WHERE [Code] = 'xsc' END +SET [Description] = 'Scythian', [Definition] = NULL, [SortOrder] = 6080.00 WHERE [Code] = 'xsc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gul', 'Sea Island Creole English', NULL, 607.30) END +VALUES ('gul', 'Sea Island Creole English', NULL, 6081.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sea Island Creole English', [Definition] = NULL, [SortOrder] = 607.30 WHERE [Code] = 'gul' END +SET [Description] = 'Sea Island Creole English', [Definition] = NULL, [SortOrder] = 6081.00 WHERE [Code] = 'gul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdg', 'Seba', NULL, 607.40) END +VALUES ('kdg', 'Seba', NULL, 6082.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seba', [Definition] = NULL, [SortOrder] = 607.40 WHERE [Code] = 'kdg' END +SET [Description] = 'Seba', [Definition] = NULL, [SortOrder] = 6082.00 WHERE [Code] = 'kdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgw', 'Sebat Bet Gurage', NULL, 607.50) END +VALUES ('sgw', 'Sebat Bet Gurage', NULL, 6083.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sebat Bet Gurage', [Definition] = NULL, [SortOrder] = 607.50 WHERE [Code] = 'sgw' END +SET [Description] = 'Sebat Bet Gurage', [Definition] = NULL, [SortOrder] = 6083.00 WHERE [Code] = 'sgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbx', 'Seberuang', NULL, 607.60) END +VALUES ('sbx', 'Seberuang', NULL, 6084.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seberuang', [Definition] = NULL, [SortOrder] = 607.60 WHERE [Code] = 'sbx' END +SET [Description] = 'Seberuang', [Definition] = NULL, [SortOrder] = 6084.00 WHERE [Code] = 'sbx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sib', 'Sebop', NULL, 607.70) END +VALUES ('sib', 'Sebop', NULL, 6085.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sebop', [Definition] = NULL, [SortOrder] = 607.70 WHERE [Code] = 'sib' END +SET [Description] = 'Sebop', [Definition] = NULL, [SortOrder] = 6085.00 WHERE [Code] = 'sib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sec', 'Sechelt', NULL, 607.80) END +VALUES ('sec', 'Sechelt', NULL, 6086.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sechelt', [Definition] = NULL, [SortOrder] = 607.80 WHERE [Code] = 'sec' END +SET [Description] = 'Sechelt', [Definition] = NULL, [SortOrder] = 6086.00 WHERE [Code] = 'sec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sey', 'Secoya', NULL, 607.90) END +VALUES ('sey', 'Secoya', NULL, 6087.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Secoya', [Definition] = NULL, [SortOrder] = 607.90 WHERE [Code] = 'sey' END +SET [Description] = 'Secoya', [Definition] = NULL, [SortOrder] = 6087.00 WHERE [Code] = 'sey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sed', 'Sedang', NULL, 608.00) END +VALUES ('sed', 'Sedang', NULL, 6088.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Sedang', [Definition] = NULL, [SortOrder] = 6088.00 WHERE [Code] = 'sed' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('trv', 'Sediq', NULL, 6089.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sedang', [Definition] = NULL, [SortOrder] = 608.00 WHERE [Code] = 'sed' END +SET [Description] = 'Sediq', [Definition] = NULL, [SortOrder] = 6089.00 WHERE [Code] = 'trv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvw', 'Sedoa', NULL, 608.10) END +VALUES ('tvw', 'Sedoa', NULL, 6090.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sedoa', [Definition] = NULL, [SortOrder] = 608.10 WHERE [Code] = 'tvw' END +SET [Description] = 'Sedoa', [Definition] = NULL, [SortOrder] = 6090.00 WHERE [Code] = 'tvw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sos', 'Seeku', NULL, 608.20) END +VALUES ('sos', 'Seeku', NULL, 6091.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seeku', [Definition] = NULL, [SortOrder] = 608.20 WHERE [Code] = 'sos' END +SET [Description] = 'Seeku', [Definition] = NULL, [SortOrder] = 6091.00 WHERE [Code] = 'sos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sge', 'Segai', NULL, 608.30) END +VALUES ('sge', 'Segai', NULL, 6092.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Segai', [Definition] = NULL, [SortOrder] = 608.30 WHERE [Code] = 'sge' END +SET [Description] = 'Segai', [Definition] = NULL, [SortOrder] = 6092.00 WHERE [Code] = 'sge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seg', 'Segeju', NULL, 608.40) END +VALUES ('seg', 'Segeju', NULL, 6093.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Segeju', [Definition] = NULL, [SortOrder] = 608.40 WHERE [Code] = 'seg' END +SET [Description] = 'Segeju', [Definition] = NULL, [SortOrder] = 6093.00 WHERE [Code] = 'seg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbg', 'Seget', NULL, 608.50) END +VALUES ('sbg', 'Seget', NULL, 6094.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seget', [Definition] = NULL, [SortOrder] = 608.50 WHERE [Code] = 'sbg' END +SET [Description] = 'Seget', [Definition] = NULL, [SortOrder] = 6094.00 WHERE [Code] = 'sbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfw', 'Sehwi', NULL, 608.60) END +VALUES ('sfw', 'Sehwi', NULL, 6095.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sehwi', [Definition] = NULL, [SortOrder] = 608.60 WHERE [Code] = 'sfw' END +SET [Description] = 'Sehwi', [Definition] = NULL, [SortOrder] = 6095.00 WHERE [Code] = 'sfw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssg', 'Seimat', NULL, 608.70) END +VALUES ('ssg', 'Seimat', NULL, 6096.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seimat', [Definition] = NULL, [SortOrder] = 608.70 WHERE [Code] = 'ssg' END +SET [Description] = 'Seimat', [Definition] = NULL, [SortOrder] = 6096.00 WHERE [Code] = 'ssg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hik', 'Seit-Kaitetu', NULL, 608.80) END +VALUES ('hik', 'Seit-Kaitetu', NULL, 6097.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seit-Kaitetu', [Definition] = NULL, [SortOrder] = 608.80 WHERE [Code] = 'hik' END +SET [Description] = 'Seit-Kaitetu', [Definition] = NULL, [SortOrder] = 6097.00 WHERE [Code] = 'hik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sek', 'Sekani', NULL, 608.90) END +VALUES ('sek', 'Sekani', NULL, 6098.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekani', [Definition] = NULL, [SortOrder] = 608.90 WHERE [Code] = 'sek' END +SET [Description] = 'Sekani', [Definition] = NULL, [SortOrder] = 6098.00 WHERE [Code] = 'sek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skp', 'Sekapan', NULL, 609.00) END +VALUES ('skp', 'Sekapan', NULL, 6099.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekapan', [Definition] = NULL, [SortOrder] = 609.00 WHERE [Code] = 'skp' END +SET [Description] = 'Sekapan', [Definition] = NULL, [SortOrder] = 6099.00 WHERE [Code] = 'skp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skz', 'Sekar', NULL, 609.10) END +VALUES ('skz', 'Sekar', NULL, 6100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekar', [Definition] = NULL, [SortOrder] = 609.10 WHERE [Code] = 'skz' END +SET [Description] = 'Sekar', [Definition] = NULL, [SortOrder] = 6100.00 WHERE [Code] = 'skz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skj', 'Seke (Nepal)', NULL, 609.20) END +VALUES ('skj', 'Seke (Nepal)', NULL, 6101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seke (Nepal)', [Definition] = NULL, [SortOrder] = 609.20 WHERE [Code] = 'skj' END +SET [Description] = 'Seke (Nepal)', [Definition] = NULL, [SortOrder] = 6101.00 WHERE [Code] = 'skj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ske') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ske', 'Seke (Vanuatu)', NULL, 609.30) END +VALUES ('ske', 'Seke (Vanuatu)', NULL, 6102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seke (Vanuatu)', [Definition] = NULL, [SortOrder] = 609.30 WHERE [Code] = 'ske' END +SET [Description] = 'Seke (Vanuatu)', [Definition] = NULL, [SortOrder] = 6102.00 WHERE [Code] = 'ske' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vaj', 'Sekele', NULL, 609.40) END +VALUES ('vaj', 'Sekele', NULL, 6103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekele', [Definition] = NULL, [SortOrder] = 609.40 WHERE [Code] = 'vaj' END +SET [Description] = 'Sekele', [Definition] = NULL, [SortOrder] = 6103.00 WHERE [Code] = 'vaj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syi', 'Seki', NULL, 609.50) END +VALUES ('syi', 'Seki', NULL, 6104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seki', [Definition] = NULL, [SortOrder] = 609.50 WHERE [Code] = 'syi' END +SET [Description] = 'Seki', [Definition] = NULL, [SortOrder] = 6104.00 WHERE [Code] = 'syi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skx', 'Seko Padang', NULL, 609.60) END +VALUES ('skx', 'Seko Padang', NULL, 6105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seko Padang', [Definition] = NULL, [SortOrder] = 609.60 WHERE [Code] = 'skx' END +SET [Description] = 'Seko Padang', [Definition] = NULL, [SortOrder] = 6105.00 WHERE [Code] = 'skx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sko', 'Seko Tengah', NULL, 609.70) END +VALUES ('sko', 'Seko Tengah', NULL, 6106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seko Tengah', [Definition] = NULL, [SortOrder] = 609.70 WHERE [Code] = 'sko' END +SET [Description] = 'Seko Tengah', [Definition] = NULL, [SortOrder] = 6106.00 WHERE [Code] = 'sko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lip', 'Sekpele', NULL, 609.80) END +VALUES ('lip', 'Sekpele', NULL, 6107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekpele', [Definition] = NULL, [SortOrder] = 609.80 WHERE [Code] = 'lip' END +SET [Description] = 'Sekpele', [Definition] = NULL, [SortOrder] = 6107.00 WHERE [Code] = 'lip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgi', 'Selangor Sign Language', NULL, 609.90) END +VALUES ('kgi', 'Selangor Sign Language', NULL, 6108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selangor Sign Language', [Definition] = NULL, [SortOrder] = 609.90 WHERE [Code] = 'kgi' END +SET [Description] = 'Selangor Sign Language', [Definition] = NULL, [SortOrder] = 6108.00 WHERE [Code] = 'kgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slu', 'Selaru', NULL, 610.00) END +VALUES ('slu', 'Selaru', NULL, 6109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selaru', [Definition] = NULL, [SortOrder] = 610.00 WHERE [Code] = 'slu' END +SET [Description] = 'Selaru', [Definition] = NULL, [SortOrder] = 6109.00 WHERE [Code] = 'slu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sly', 'Selayar', NULL, 610.10) END +VALUES ('sly', 'Selayar', NULL, 6110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selayar', [Definition] = NULL, [SortOrder] = 610.10 WHERE [Code] = 'sly' END +SET [Description] = 'Selayar', [Definition] = NULL, [SortOrder] = 6110.00 WHERE [Code] = 'sly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snw', 'Selee', NULL, 610.20) END +VALUES ('snw', 'Selee', NULL, 6111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selee', [Definition] = NULL, [SortOrder] = 610.20 WHERE [Code] = 'snw' END +SET [Description] = 'Selee', [Definition] = NULL, [SortOrder] = 6111.00 WHERE [Code] = 'snw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spl', 'Selepet', NULL, 610.30) END +VALUES ('spl', 'Selepet', NULL, 6112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selepet', [Definition] = NULL, [SortOrder] = 610.30 WHERE [Code] = 'spl' END +SET [Description] = 'Selepet', [Definition] = NULL, [SortOrder] = 6112.00 WHERE [Code] = 'spl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxl', 'Selian', NULL, 610.40) END +VALUES ('sxl', 'Selian', NULL, 6113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selian', [Definition] = NULL, [SortOrder] = 610.40 WHERE [Code] = 'sxl' END +SET [Description] = 'Selian', [Definition] = NULL, [SortOrder] = 6113.00 WHERE [Code] = 'sxl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sel', 'Selkup', NULL, 610.50) END +VALUES ('sel', 'Selkup', NULL, 6114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selkup', [Definition] = NULL, [SortOrder] = 610.50 WHERE [Code] = 'sel' END +SET [Description] = 'Selkup', [Definition] = NULL, [SortOrder] = 6114.00 WHERE [Code] = 'sel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slg', 'Selungai Murut', NULL, 610.60) END +VALUES ('slg', 'Selungai Murut', NULL, 6115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selungai Murut', [Definition] = NULL, [SortOrder] = 610.60 WHERE [Code] = 'slg' END +SET [Description] = 'Selungai Murut', [Definition] = NULL, [SortOrder] = 6115.00 WHERE [Code] = 'slg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sws', 'Seluwasan', NULL, 610.70) END +VALUES ('sws', 'Seluwasan', NULL, 6116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seluwasan', [Definition] = NULL, [SortOrder] = 610.70 WHERE [Code] = 'sws' END +SET [Description] = 'Seluwasan', [Definition] = NULL, [SortOrder] = 6116.00 WHERE [Code] = 'sws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sea', 'Semai', NULL, 610.80) END +VALUES ('sea', 'Semai', NULL, 6117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semai', [Definition] = NULL, [SortOrder] = 610.80 WHERE [Code] = 'sea' END +SET [Description] = 'Semai', [Definition] = NULL, [SortOrder] = 6117.00 WHERE [Code] = 'sea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdq', 'Semandang', NULL, 610.90) END +VALUES ('sdq', 'Semandang', NULL, 6118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semandang', [Definition] = NULL, [SortOrder] = 610.90 WHERE [Code] = 'sdq' END +SET [Description] = 'Semandang', [Definition] = NULL, [SortOrder] = 6118.00 WHERE [Code] = 'sdq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szc', 'Semaq Beri', NULL, 611.00) END +VALUES ('szc', 'Semaq Beri', NULL, 6119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semaq Beri', [Definition] = NULL, [SortOrder] = 611.00 WHERE [Code] = 'szc' END +SET [Description] = 'Semaq Beri', [Definition] = NULL, [SortOrder] = 6119.00 WHERE [Code] = 'szc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbr', 'Sembakung Murut', NULL, 611.10) END +VALUES ('sbr', 'Sembakung Murut', NULL, 6120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sembakung Murut', [Definition] = NULL, [SortOrder] = 611.10 WHERE [Code] = 'sbr' END +SET [Description] = 'Sembakung Murut', [Definition] = NULL, [SortOrder] = 6120.00 WHERE [Code] = 'sbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sza', 'Semelai', NULL, 611.20) END +VALUES ('sza', 'Semelai', NULL, 6121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semelai', [Definition] = NULL, [SortOrder] = 611.20 WHERE [Code] = 'sza' END +SET [Description] = 'Semelai', [Definition] = NULL, [SortOrder] = 6121.00 WHERE [Code] = 'sza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etz', 'Semimi', NULL, 611.30) END +VALUES ('etz', 'Semimi', NULL, 6122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semimi', [Definition] = NULL, [SortOrder] = 611.30 WHERE [Code] = 'etz' END +SET [Description] = 'Semimi', [Definition] = NULL, [SortOrder] = 6122.00 WHERE [Code] = 'etz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssm', 'Semnam', NULL, 611.40) END +VALUES ('ssm', 'Semnam', NULL, 6123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semnam', [Definition] = NULL, [SortOrder] = 611.40 WHERE [Code] = 'ssm' END +SET [Description] = 'Semnam', [Definition] = NULL, [SortOrder] = 6123.00 WHERE [Code] = 'ssm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smy', 'Semnani', NULL, 611.50) END +VALUES ('smy', 'Semnani', NULL, 6124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semnani', [Definition] = NULL, [SortOrder] = 611.50 WHERE [Code] = 'smy' END +SET [Description] = 'Semnani', [Definition] = NULL, [SortOrder] = 6124.00 WHERE [Code] = 'smy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xse', 'Sempan', NULL, 611.60) END +VALUES ('xse', 'Sempan', NULL, 6125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sempan', [Definition] = NULL, [SortOrder] = 611.60 WHERE [Code] = 'xse' END +SET [Description] = 'Sempan', [Definition] = NULL, [SortOrder] = 6125.00 WHERE [Code] = 'xse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seh', 'Sena', NULL, 611.70) END +VALUES ('seh', 'Sena', NULL, 6126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sena', [Definition] = NULL, [SortOrder] = 611.70 WHERE [Code] = 'seh' END +SET [Description] = 'Sena', [Definition] = NULL, [SortOrder] = 6126.00 WHERE [Code] = 'seh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seq', 'Senara Sénoufo', NULL, 611.80) END +VALUES ('seq', 'Senara Sénoufo', NULL, 6127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senara Sénoufo', [Definition] = NULL, [SortOrder] = 611.80 WHERE [Code] = 'seq' END +SET [Description] = 'Senara Sénoufo', [Definition] = NULL, [SortOrder] = 6127.00 WHERE [Code] = 'seq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syn', 'Senaya', NULL, 611.90) END +VALUES ('syn', 'Senaya', NULL, 6128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senaya', [Definition] = NULL, [SortOrder] = 611.90 WHERE [Code] = 'syn' END +SET [Description] = 'Senaya', [Definition] = NULL, [SortOrder] = 6128.00 WHERE [Code] = 'syn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sej', 'Sene', NULL, 612.00) END +VALUES ('sej', 'Sene', NULL, 6129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sene', [Definition] = NULL, [SortOrder] = 612.00 WHERE [Code] = 'sej' END +SET [Description] = 'Sene', [Definition] = NULL, [SortOrder] = 6129.00 WHERE [Code] = 'sej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'see') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('see', 'Seneca', NULL, 612.10) END +VALUES ('see', 'Seneca', NULL, 6130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seneca', [Definition] = NULL, [SortOrder] = 612.10 WHERE [Code] = 'see' END +SET [Description] = 'Seneca', [Definition] = NULL, [SortOrder] = 6130.00 WHERE [Code] = 'see' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sds', 'Sened', NULL, 612.20) END +VALUES ('sds', 'Sened', NULL, 6131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sened', [Definition] = NULL, [SortOrder] = 612.20 WHERE [Code] = 'sds' END +SET [Description] = 'Sened', [Definition] = NULL, [SortOrder] = 6131.00 WHERE [Code] = 'sds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szg', 'Sengele', NULL, 612.30) END +VALUES ('szg', 'Sengele', NULL, 6132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sengele', [Definition] = NULL, [SortOrder] = 612.30 WHERE [Code] = 'szg' END +SET [Description] = 'Sengele', [Definition] = NULL, [SortOrder] = 6132.00 WHERE [Code] = 'szg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snu', 'Senggi', NULL, 612.40) END +VALUES ('snu', 'Senggi', NULL, 6133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senggi', [Definition] = NULL, [SortOrder] = 612.40 WHERE [Code] = 'snu' END +SET [Description] = 'Senggi', [Definition] = NULL, [SortOrder] = 6133.00 WHERE [Code] = 'snu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spk', 'Sengo', NULL, 612.50) END +VALUES ('spk', 'Sengo', NULL, 6134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sengo', [Definition] = NULL, [SortOrder] = 612.50 WHERE [Code] = 'spk' END +SET [Description] = 'Sengo', [Definition] = NULL, [SortOrder] = 6134.00 WHERE [Code] = 'spk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssz', 'Sengseng', NULL, 612.60) END +VALUES ('ssz', 'Sengseng', NULL, 6135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sengseng', [Definition] = NULL, [SortOrder] = 612.60 WHERE [Code] = 'ssz' END +SET [Description] = 'Sengseng', [Definition] = NULL, [SortOrder] = 6135.00 WHERE [Code] = 'ssz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjs', 'Senhaja De Srair', NULL, 612.70) END +VALUES ('sjs', 'Senhaja De Srair', NULL, 6136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senhaja De Srair', [Definition] = NULL, [SortOrder] = 612.70 WHERE [Code] = 'sjs' END +SET [Description] = 'Senhaja De Srair', [Definition] = NULL, [SortOrder] = 6136.00 WHERE [Code] = 'sjs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sni', 'Sensi', NULL, 612.80) END +VALUES ('sni', 'Sensi', NULL, 6137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sensi', [Definition] = NULL, [SortOrder] = 612.80 WHERE [Code] = 'sni' END +SET [Description] = 'Sensi', [Definition] = NULL, [SortOrder] = 6137.00 WHERE [Code] = 'sni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'set') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('set', 'Sentani', NULL, 612.90) END +VALUES ('set', 'Sentani', NULL, 6138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sentani', [Definition] = NULL, [SortOrder] = 612.90 WHERE [Code] = 'set' END +SET [Description] = 'Sentani', [Definition] = NULL, [SortOrder] = 6138.00 WHERE [Code] = 'set' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sez', 'Senthang Chin', NULL, 613.00) END +VALUES ('sez', 'Senthang Chin', NULL, 6139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senthang Chin', [Definition] = NULL, [SortOrder] = 613.00 WHERE [Code] = 'sez' END +SET [Description] = 'Senthang Chin', [Definition] = NULL, [SortOrder] = 6139.00 WHERE [Code] = 'sez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'std') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('std', 'Sentinel', NULL, 613.10) END +VALUES ('std', 'Sentinel', NULL, 6140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sentinel', [Definition] = NULL, [SortOrder] = 613.10 WHERE [Code] = 'std' END +SET [Description] = 'Sentinel', [Definition] = NULL, [SortOrder] = 6140.00 WHERE [Code] = 'std' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spb', 'Sepa (Indonesia)', NULL, 613.20) END +VALUES ('spb', 'Sepa (Indonesia)', NULL, 6141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sepa (Indonesia)', [Definition] = NULL, [SortOrder] = 613.20 WHERE [Code] = 'spb' END +SET [Description] = 'Sepa (Indonesia)', [Definition] = NULL, [SortOrder] = 6141.00 WHERE [Code] = 'spb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spe', 'Sepa (Papua New Guinea)', NULL, 613.30) END +VALUES ('spe', 'Sepa (Papua New Guinea)', NULL, 6142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sepa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 613.30 WHERE [Code] = 'spe' END +SET [Description] = 'Sepa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 6142.00 WHERE [Code] = 'spe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iws', 'Sepik Iwam', NULL, 613.40) END +VALUES ('iws', 'Sepik Iwam', NULL, 6143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sepik Iwam', [Definition] = NULL, [SortOrder] = 613.40 WHERE [Code] = 'iws' END +SET [Description] = 'Sepik Iwam', [Definition] = NULL, [SortOrder] = 6143.00 WHERE [Code] = 'iws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sry', 'Sera', NULL, 613.50) END +VALUES ('sry', 'Sera', NULL, 6144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sera', [Definition] = NULL, [SortOrder] = 613.50 WHERE [Code] = 'sry' END +SET [Description] = 'Sera', [Definition] = NULL, [SortOrder] = 6144.00 WHERE [Code] = 'sry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srp', 'Serbian', NULL, 613.60) END +VALUES ('srp', 'Serbian', NULL, 6145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serbian', [Definition] = NULL, [SortOrder] = 613.60 WHERE [Code] = 'srp' END +SET [Description] = 'Serbian', [Definition] = NULL, [SortOrder] = 6145.00 WHERE [Code] = 'srp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbs', 'Serbo-Croatian', NULL, 613.70) END +VALUES ('hbs', 'Serbo-Croatian', NULL, 6146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serbo-Croatian', [Definition] = NULL, [SortOrder] = 613.70 WHERE [Code] = 'hbs' END +SET [Description] = 'Serbo-Croatian', [Definition] = NULL, [SortOrder] = 6146.00 WHERE [Code] = 'hbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swf', 'Sere', NULL, 613.80) END +VALUES ('swf', 'Sere', NULL, 6147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sere', [Definition] = NULL, [SortOrder] = 613.80 WHERE [Code] = 'swf' END +SET [Description] = 'Sere', [Definition] = NULL, [SortOrder] = 6147.00 WHERE [Code] = 'swf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srr', 'Serer', NULL, 613.90) END +VALUES ('srr', 'Serer', NULL, 6148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serer', [Definition] = NULL, [SortOrder] = 613.90 WHERE [Code] = 'srr' END +SET [Description] = 'Serer', [Definition] = NULL, [SortOrder] = 6148.00 WHERE [Code] = 'srr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sei', 'Seri', NULL, 614.00) END +VALUES ('sei', 'Seri', NULL, 6149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seri', [Definition] = NULL, [SortOrder] = 614.00 WHERE [Code] = 'sei' END +SET [Description] = 'Seri', [Definition] = NULL, [SortOrder] = 6149.00 WHERE [Code] = 'sei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sve', 'Serili', NULL, 614.10) END +VALUES ('sve', 'Serili', NULL, 6150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serili', [Definition] = NULL, [SortOrder] = 614.10 WHERE [Code] = 'sve' END +SET [Description] = 'Serili', [Definition] = NULL, [SortOrder] = 6150.00 WHERE [Code] = 'sve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqu', 'Seroa', NULL, 614.20) END +VALUES ('kqu', 'Seroa', NULL, 6151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seroa', [Definition] = NULL, [SortOrder] = 614.20 WHERE [Code] = 'kqu' END +SET [Description] = 'Seroa', [Definition] = NULL, [SortOrder] = 6151.00 WHERE [Code] = 'kqu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ser') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ser', 'Serrano', NULL, 614.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serrano', [Definition] = NULL, [SortOrder] = 614.30 WHERE [Code] = 'ser' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szd', 'Seru', NULL, 614.40) END +VALUES ('ser', 'Serrano', NULL, 6152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seru', [Definition] = NULL, [SortOrder] = 614.40 WHERE [Code] = 'szd' END +SET [Description] = 'Serrano', [Definition] = NULL, [SortOrder] = 6152.00 WHERE [Code] = 'ser' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srw', 'Serua', NULL, 614.50) END +VALUES ('srw', 'Serua', NULL, 6153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serua', [Definition] = NULL, [SortOrder] = 614.50 WHERE [Code] = 'srw' END +SET [Description] = 'Serua', [Definition] = NULL, [SortOrder] = 6153.00 WHERE [Code] = 'srw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srk', 'Serudung Murut', NULL, 614.60) END +VALUES ('srk', 'Serudung Murut', NULL, 6154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serudung Murut', [Definition] = NULL, [SortOrder] = 614.60 WHERE [Code] = 'srk' END +SET [Description] = 'Serudung Murut', [Definition] = NULL, [SortOrder] = 6154.00 WHERE [Code] = 'srk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seu', 'Serui-Laut', NULL, 614.70) END +VALUES ('seu', 'Serui-Laut', NULL, 6155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serui-Laut', [Definition] = NULL, [SortOrder] = 614.70 WHERE [Code] = 'seu' END +SET [Description] = 'Serui-Laut', [Definition] = NULL, [SortOrder] = 6155.00 WHERE [Code] = 'seu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crs', 'Seselwa Creole French', NULL, 614.80) END +VALUES ('crs', 'Seselwa Creole French', NULL, 6156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seselwa Creole French', [Definition] = NULL, [SortOrder] = 614.80 WHERE [Code] = 'crs' END +SET [Description] = 'Seselwa Creole French', [Definition] = NULL, [SortOrder] = 6156.00 WHERE [Code] = 'crs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stf', 'Seta', NULL, 614.90) END +VALUES ('stf', 'Seta', NULL, 6157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seta', [Definition] = NULL, [SortOrder] = 614.90 WHERE [Code] = 'stf' END +SET [Description] = 'Seta', [Definition] = NULL, [SortOrder] = 6157.00 WHERE [Code] = 'stf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stm', 'Setaman', NULL, 615.00) END +VALUES ('stm', 'Setaman', NULL, 6158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Setaman', [Definition] = NULL, [SortOrder] = 615.00 WHERE [Code] = 'stm' END +SET [Description] = 'Setaman', [Definition] = NULL, [SortOrder] = 6158.00 WHERE [Code] = 'stm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbi', 'Seti', NULL, 615.10) END +VALUES ('sbi', 'Seti', NULL, 6159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seti', [Definition] = NULL, [SortOrder] = 615.10 WHERE [Code] = 'sbi' END +SET [Description] = 'Seti', [Definition] = NULL, [SortOrder] = 6159.00 WHERE [Code] = 'sbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sta', 'Settla', NULL, 615.20) END +VALUES ('sta', 'Settla', NULL, 6160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Settla', [Definition] = NULL, [SortOrder] = 615.20 WHERE [Code] = 'sta' END +SET [Description] = 'Settla', [Definition] = NULL, [SortOrder] = 6160.00 WHERE [Code] = 'sta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojs', 'Severn Ojibwa', NULL, 615.30) END +VALUES ('ojs', 'Severn Ojibwa', NULL, 6161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Severn Ojibwa', [Definition] = NULL, [SortOrder] = 615.30 WHERE [Code] = 'ojs' END +SET [Description] = 'Severn Ojibwa', [Definition] = NULL, [SortOrder] = 6161.00 WHERE [Code] = 'ojs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sew', 'Sewa Bay', NULL, 615.40) END +VALUES ('sew', 'Sewa Bay', NULL, 6162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sewa Bay', [Definition] = NULL, [SortOrder] = 615.40 WHERE [Code] = 'sew' END +SET [Description] = 'Sewa Bay', [Definition] = NULL, [SortOrder] = 6162.00 WHERE [Code] = 'sew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsw', 'Seychelles Sign Language', NULL, 615.50) END +VALUES ('lsw', 'Seychelles Sign Language', NULL, 6163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seychelles Sign Language', [Definition] = NULL, [SortOrder] = 615.50 WHERE [Code] = 'lsw' END +SET [Description] = 'Seychelles Sign Language', [Definition] = NULL, [SortOrder] = 6163.00 WHERE [Code] = 'lsw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sze', 'Seze', NULL, 615.60) END +VALUES ('sze', 'Seze', NULL, 6164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seze', [Definition] = NULL, [SortOrder] = 615.60 WHERE [Code] = 'sze' END +SET [Description] = 'Seze', [Definition] = NULL, [SortOrder] = 6164.00 WHERE [Code] = 'sze' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scw', 'Sha', NULL, 615.70) END +VALUES ('scw', 'Sha', NULL, 6165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sha', [Definition] = NULL, [SortOrder] = 615.70 WHERE [Code] = 'scw' END +SET [Description] = 'Sha', [Definition] = NULL, [SortOrder] = 6165.00 WHERE [Code] = 'scw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdb', 'Shabak', NULL, 615.80) END +VALUES ('sdb', 'Shabak', NULL, 6166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shabak', [Definition] = NULL, [SortOrder] = 615.80 WHERE [Code] = 'sdb' END +SET [Description] = 'Shabak', [Definition] = NULL, [SortOrder] = 6166.00 WHERE [Code] = 'sdb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srz', 'Shahmirzadi', NULL, 615.90) END +VALUES ('srz', 'Shahmirzadi', NULL, 6167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shahmirzadi', [Definition] = NULL, [SortOrder] = 615.90 WHERE [Code] = 'srz' END +SET [Description] = 'Shahmirzadi', [Definition] = NULL, [SortOrder] = 6167.00 WHERE [Code] = 'srz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shm', 'Shahrudi', NULL, 616.00) END +VALUES ('shm', 'Shahrudi', NULL, 6168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shahrudi', [Definition] = NULL, [SortOrder] = 616.00 WHERE [Code] = 'shm' END +SET [Description] = 'Shahrudi', [Definition] = NULL, [SortOrder] = 6168.00 WHERE [Code] = 'shm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sha', 'Shall-Zwall', NULL, 616.10) END +VALUES ('sha', 'Shall-Zwall', NULL, 6169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shall-Zwall', [Definition] = NULL, [SortOrder] = 616.10 WHERE [Code] = 'sha' END +SET [Description] = 'Shall-Zwall', [Definition] = NULL, [SortOrder] = 6169.00 WHERE [Code] = 'sha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqa', 'Shama-Sambuga', NULL, 616.20) END +VALUES ('sqa', 'Shama-Sambuga', NULL, 6170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shama-Sambuga', [Definition] = NULL, [SortOrder] = 616.20 WHERE [Code] = 'sqa' END +SET [Description] = 'Shama-Sambuga', [Definition] = NULL, [SortOrder] = 6170.00 WHERE [Code] = 'sqa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsh', 'Shamang', NULL, 616.30) END +VALUES ('xsh', 'Shamang', NULL, 6171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shamang', [Definition] = NULL, [SortOrder] = 616.30 WHERE [Code] = 'xsh' END +SET [Description] = 'Shamang', [Definition] = NULL, [SortOrder] = 6171.00 WHERE [Code] = 'xsh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksb', 'Shambala', NULL, 616.40) END +VALUES ('ksb', 'Shambala', NULL, 6172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shambala', [Definition] = NULL, [SortOrder] = 616.40 WHERE [Code] = 'ksb' END +SET [Description] = 'Shambala', [Definition] = NULL, [SortOrder] = 6172.00 WHERE [Code] = 'ksb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shn', 'Shan', NULL, 616.50) END +VALUES ('shn', 'Shan', NULL, 6173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shan', [Definition] = NULL, [SortOrder] = 616.50 WHERE [Code] = 'shn' END +SET [Description] = 'Shan', [Definition] = NULL, [SortOrder] = 6173.00 WHERE [Code] = 'shn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swo', 'Shanenawa', NULL, 616.60) END +VALUES ('swo', 'Shanenawa', NULL, 6174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shanenawa', [Definition] = NULL, [SortOrder] = 616.60 WHERE [Code] = 'swo' END +SET [Description] = 'Shanenawa', [Definition] = NULL, [SortOrder] = 6174.00 WHERE [Code] = 'swo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sho', 'Shanga', NULL, 616.70) END +VALUES ('sho', 'Shanga', NULL, 6175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shanga', [Definition] = NULL, [SortOrder] = 616.70 WHERE [Code] = 'sho' END +SET [Description] = 'Shanga', [Definition] = NULL, [SortOrder] = 6175.00 WHERE [Code] = 'sho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcd', 'Sharanahua', NULL, 616.80) END +VALUES ('mcd', 'Sharanahua', NULL, 6176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sharanahua', [Definition] = NULL, [SortOrder] = 616.80 WHERE [Code] = 'mcd' END +SET [Description] = 'Sharanahua', [Definition] = NULL, [SortOrder] = 6176.00 WHERE [Code] = 'mcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssv', 'Shark Bay', NULL, 616.90) END +VALUES ('ssv', 'Shark Bay', NULL, 6177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shark Bay', [Definition] = NULL, [SortOrder] = 616.90 WHERE [Code] = 'ssv' END +SET [Description] = 'Shark Bay', [Definition] = NULL, [SortOrder] = 6177.00 WHERE [Code] = 'ssv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swq', 'Sharwa', NULL, 617.00) END +VALUES ('swq', 'Sharwa', NULL, 6178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sharwa', [Definition] = NULL, [SortOrder] = 617.00 WHERE [Code] = 'swq' END +SET [Description] = 'Sharwa', [Definition] = NULL, [SortOrder] = 6178.00 WHERE [Code] = 'swq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sht', 'Shasta', NULL, 617.10) END +VALUES ('sht', 'Shasta', NULL, 6179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shasta', [Definition] = NULL, [SortOrder] = 617.10 WHERE [Code] = 'sht' END +SET [Description] = 'Shasta', [Definition] = NULL, [SortOrder] = 6179.00 WHERE [Code] = 'sht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shj', 'Shatt', NULL, 617.20) END +VALUES ('shj', 'Shatt', NULL, 6180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shatt', [Definition] = NULL, [SortOrder] = 617.20 WHERE [Code] = 'shj' END +SET [Description] = 'Shatt', [Definition] = NULL, [SortOrder] = 6180.00 WHERE [Code] = 'shj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqh', 'Shau', NULL, 617.30) END +VALUES ('sqh', 'Shau', NULL, 6181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shau', [Definition] = NULL, [SortOrder] = 617.30 WHERE [Code] = 'sqh' END +SET [Description] = 'Shau', [Definition] = NULL, [SortOrder] = 6181.00 WHERE [Code] = 'sqh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjw', 'Shawnee', NULL, 617.40) END +VALUES ('sjw', 'Shawnee', NULL, 6182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shawnee', [Definition] = NULL, [SortOrder] = 617.40 WHERE [Code] = 'sjw' END +SET [Description] = 'Shawnee', [Definition] = NULL, [SortOrder] = 6182.00 WHERE [Code] = 'sjw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shx', 'She', NULL, 617.50) END +VALUES ('shx', 'She', NULL, 6183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'She', [Definition] = NULL, [SortOrder] = 617.50 WHERE [Code] = 'shx' END +SET [Description] = 'She', [Definition] = NULL, [SortOrder] = 6183.00 WHERE [Code] = 'shx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shv', 'Shehri', NULL, 617.60) END +VALUES ('shv', 'Shehri', NULL, 6184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shehri', [Definition] = NULL, [SortOrder] = 617.60 WHERE [Code] = 'shv' END +SET [Description] = 'Shehri', [Definition] = NULL, [SortOrder] = 6184.00 WHERE [Code] = 'shv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swv', 'Shekhawati', NULL, 617.70) END +VALUES ('swv', 'Shekhawati', NULL, 6185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shekhawati', [Definition] = NULL, [SortOrder] = 617.70 WHERE [Code] = 'swv' END +SET [Description] = 'Shekhawati', [Definition] = NULL, [SortOrder] = 6185.00 WHERE [Code] = 'swv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moy', 'Shekkacho', NULL, 617.80) END +VALUES ('moy', 'Shekkacho', NULL, 6186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shekkacho', [Definition] = NULL, [SortOrder] = 617.80 WHERE [Code] = 'moy' END +SET [Description] = 'Shekkacho', [Definition] = NULL, [SortOrder] = 6186.00 WHERE [Code] = 'moy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'she') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('she', 'Sheko', NULL, 617.90) END +VALUES ('she', 'Sheko', NULL, 6187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sheko', [Definition] = NULL, [SortOrder] = 617.90 WHERE [Code] = 'she' END +SET [Description] = 'Sheko', [Definition] = NULL, [SortOrder] = 6187.00 WHERE [Code] = 'she' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sth', 'Shelta', NULL, 618.00) END +VALUES ('sth', 'Shelta', NULL, 6188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shelta', [Definition] = NULL, [SortOrder] = 618.00 WHERE [Code] = 'sth' END +SET [Description] = 'Shelta', [Definition] = NULL, [SortOrder] = 6188.00 WHERE [Code] = 'sth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seb', 'Shempire Senoufo', NULL, 618.10) END +VALUES ('seb', 'Shempire Senoufo', NULL, 6189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shempire Senoufo', [Definition] = NULL, [SortOrder] = 618.10 WHERE [Code] = 'seb' END +SET [Description] = 'Shempire Senoufo', [Definition] = NULL, [SortOrder] = 6189.00 WHERE [Code] = 'seb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shl', 'Shendu', NULL, 618.20) END +VALUES ('shl', 'Shendu', NULL, 6190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shendu', [Definition] = NULL, [SortOrder] = 618.20 WHERE [Code] = 'shl' END +SET [Description] = 'Shendu', [Definition] = NULL, [SortOrder] = 6190.00 WHERE [Code] = 'shl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scv', 'Sheni', NULL, 618.30) END +VALUES ('scv', 'Sheni', NULL, 6191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sheni', [Definition] = NULL, [SortOrder] = 618.30 WHERE [Code] = 'scv' END +SET [Description] = 'Sheni', [Definition] = NULL, [SortOrder] = 6191.00 WHERE [Code] = 'scv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bun', 'Sherbro', NULL, 618.40) END +VALUES ('bun', 'Sherbro', NULL, 6192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sherbro', [Definition] = NULL, [SortOrder] = 618.40 WHERE [Code] = 'bun' END +SET [Description] = 'Sherbro', [Definition] = NULL, [SortOrder] = 6192.00 WHERE [Code] = 'bun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdp', 'Sherdukpen', NULL, 618.50) END +VALUES ('sdp', 'Sherdukpen', NULL, 6193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sherdukpen', [Definition] = NULL, [SortOrder] = 618.50 WHERE [Code] = 'sdp' END +SET [Description] = 'Sherdukpen', [Definition] = NULL, [SortOrder] = 6193.00 WHERE [Code] = 'sdp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsr', 'Sherpa', NULL, 618.60) END +VALUES ('xsr', 'Sherpa', NULL, 6194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sherpa', [Definition] = NULL, [SortOrder] = 618.60 WHERE [Code] = 'xsr' END +SET [Description] = 'Sherpa', [Definition] = NULL, [SortOrder] = 6194.00 WHERE [Code] = 'xsr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kip', 'Sheshi Kham', NULL, 618.70) END +VALUES ('kip', 'Sheshi Kham', NULL, 6195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sheshi Kham', [Definition] = NULL, [SortOrder] = 618.70 WHERE [Code] = 'kip' END +SET [Description] = 'Sheshi Kham', [Definition] = NULL, [SortOrder] = 6195.00 WHERE [Code] = 'kip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shr', 'Shi', NULL, 618.80) END +VALUES ('shr', 'Shi', NULL, 6196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shi', [Definition] = NULL, [SortOrder] = 618.80 WHERE [Code] = 'shr' END +SET [Description] = 'Shi', [Definition] = NULL, [SortOrder] = 6196.00 WHERE [Code] = 'shr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssh', 'Shihhi Arabic', NULL, 618.90) END +VALUES ('ssh', 'Shihhi Arabic', NULL, 6197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shihhi Arabic', [Definition] = NULL, [SortOrder] = 618.90 WHERE [Code] = 'ssh' END +SET [Description] = 'Shihhi Arabic', [Definition] = NULL, [SortOrder] = 6197.00 WHERE [Code] = 'ssh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gua', 'Shiki', NULL, 619.00) END +VALUES ('gua', 'Shiki', NULL, 6198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shiki', [Definition] = NULL, [SortOrder] = 619.00 WHERE [Code] = 'gua' END +SET [Description] = 'Shiki', [Definition] = NULL, [SortOrder] = 6198.00 WHERE [Code] = 'gua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shk', 'Shilluk', NULL, 619.10) END +VALUES ('shk', 'Shilluk', NULL, 6199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shilluk', [Definition] = NULL, [SortOrder] = 619.10 WHERE [Code] = 'shk' END +SET [Description] = 'Shilluk', [Definition] = NULL, [SortOrder] = 6199.00 WHERE [Code] = 'shk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scl', 'Shina', NULL, 619.20) END +VALUES ('scl', 'Shina', NULL, 6200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shina', [Definition] = NULL, [SortOrder] = 619.20 WHERE [Code] = 'scl' END +SET [Description] = 'Shina', [Definition] = NULL, [SortOrder] = 6200.00 WHERE [Code] = 'scl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shp', 'Shipibo-Conibo', NULL, 619.30) END +VALUES ('shp', 'Shipibo-Conibo', NULL, 6201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shipibo-Conibo', [Definition] = NULL, [SortOrder] = 619.30 WHERE [Code] = 'shp' END +SET [Description] = 'Shipibo-Conibo', [Definition] = NULL, [SortOrder] = 6201.00 WHERE [Code] = 'shp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sle', 'Sholaga', NULL, 619.40) END +VALUES ('sle', 'Sholaga', NULL, 6202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sholaga', [Definition] = NULL, [SortOrder] = 619.40 WHERE [Code] = 'sle' END +SET [Description] = 'Sholaga', [Definition] = NULL, [SortOrder] = 6202.00 WHERE [Code] = 'sle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sii', 'Shom Peng', NULL, 619.50) END +VALUES ('sii', 'Shom Peng', NULL, 6203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shom Peng', [Definition] = NULL, [SortOrder] = 619.50 WHERE [Code] = 'sii' END +SET [Description] = 'Shom Peng', [Definition] = NULL, [SortOrder] = 6203.00 WHERE [Code] = 'sii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sna', 'Shona', NULL, 619.60) END +VALUES ('sna', 'Shona', NULL, 6204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shona', [Definition] = NULL, [SortOrder] = 619.60 WHERE [Code] = 'sna' END +SET [Description] = 'Shona', [Definition] = NULL, [SortOrder] = 6204.00 WHERE [Code] = 'sna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcv', 'Shoo-Minda-Nye', NULL, 619.70) END +VALUES ('bcv', 'Shoo-Minda-Nye', NULL, 6205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shoo-Minda-Nye', [Definition] = NULL, [SortOrder] = 619.70 WHERE [Code] = 'bcv' END +SET [Description] = 'Shoo-Minda-Nye', [Definition] = NULL, [SortOrder] = 6205.00 WHERE [Code] = 'bcv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjs', 'Shor', NULL, 619.80) END +VALUES ('cjs', 'Shor', NULL, 6206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shor', [Definition] = NULL, [SortOrder] = 619.80 WHERE [Code] = 'cjs' END +SET [Description] = 'Shor', [Definition] = NULL, [SortOrder] = 6206.00 WHERE [Code] = 'cjs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shh', 'Shoshoni', NULL, 619.90) END +VALUES ('shh', 'Shoshoni', NULL, 6207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shoshoni', [Definition] = NULL, [SortOrder] = 619.90 WHERE [Code] = 'shh' END +SET [Description] = 'Shoshoni', [Definition] = NULL, [SortOrder] = 6207.00 WHERE [Code] = 'shh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shg', 'Shua', NULL, 620.00) END +VALUES ('shg', 'Shua', NULL, 6208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shua', [Definition] = NULL, [SortOrder] = 620.00 WHERE [Code] = 'shg' END +SET [Description] = 'Shua', [Definition] = NULL, [SortOrder] = 6208.00 WHERE [Code] = 'shg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdt', 'Shuadit', NULL, 620.10) END +VALUES ('sdt', 'Shuadit', NULL, 6209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuadit', [Definition] = NULL, [SortOrder] = 620.10 WHERE [Code] = 'sdt' END +SET [Description] = 'Shuadit', [Definition] = NULL, [SortOrder] = 6209.00 WHERE [Code] = 'sdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jiv', 'Shuar', NULL, 620.20) END +VALUES ('jiv', 'Shuar', NULL, 6210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuar', [Definition] = NULL, [SortOrder] = 620.20 WHERE [Code] = 'jiv' END +SET [Description] = 'Shuar', [Definition] = NULL, [SortOrder] = 6210.00 WHERE [Code] = 'jiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suj', 'Shubi', NULL, 620.30) END +VALUES ('suj', 'Shubi', NULL, 6211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shubi', [Definition] = NULL, [SortOrder] = 620.30 WHERE [Code] = 'suj' END +SET [Description] = 'Shubi', [Definition] = NULL, [SortOrder] = 6211.00 WHERE [Code] = 'suj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgh', 'Shughni', NULL, 620.40) END +VALUES ('sgh', 'Shughni', NULL, 6212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shughni', [Definition] = NULL, [SortOrder] = 620.40 WHERE [Code] = 'sgh' END +SET [Description] = 'Shughni', [Definition] = NULL, [SortOrder] = 6212.00 WHERE [Code] = 'sgh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxg', 'Shuhi', NULL, 620.50) END +VALUES ('sxg', 'Shuhi', NULL, 6213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuhi', [Definition] = NULL, [SortOrder] = 620.50 WHERE [Code] = 'sxg' END +SET [Description] = 'Shuhi', [Definition] = NULL, [SortOrder] = 6213.00 WHERE [Code] = 'sxg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sts', 'Shumashti', NULL, 620.60) END +VALUES ('sts', 'Shumashti', NULL, 6214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shumashti', [Definition] = NULL, [SortOrder] = 620.60 WHERE [Code] = 'sts' END +SET [Description] = 'Shumashti', [Definition] = NULL, [SortOrder] = 6214.00 WHERE [Code] = 'sts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scu', 'Shumcho', NULL, 620.70) END +VALUES ('scu', 'Shumcho', NULL, 6215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shumcho', [Definition] = NULL, [SortOrder] = 620.70 WHERE [Code] = 'scu' END +SET [Description] = 'Shumcho', [Definition] = NULL, [SortOrder] = 6215.00 WHERE [Code] = 'scu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shs', 'Shuswap', NULL, 620.80) END +VALUES ('shs', 'Shuswap', NULL, 6216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuswap', [Definition] = NULL, [SortOrder] = 620.80 WHERE [Code] = 'shs' END +SET [Description] = 'Shuswap', [Definition] = NULL, [SortOrder] = 6216.00 WHERE [Code] = 'shs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksa', 'Shuwa-Zamani', NULL, 620.90) END +VALUES ('ksa', 'Shuwa-Zamani', NULL, 6217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuwa-Zamani', [Definition] = NULL, [SortOrder] = 620.90 WHERE [Code] = 'ksa' END +SET [Description] = 'Shuwa-Zamani', [Definition] = NULL, [SortOrder] = 6217.00 WHERE [Code] = 'ksa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shw', 'Shwai', NULL, 621.00) END +VALUES ('shw', 'Shwai', NULL, 6218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shwai', [Definition] = NULL, [SortOrder] = 621.00 WHERE [Code] = 'shw' END +SET [Description] = 'Shwai', [Definition] = NULL, [SortOrder] = 6218.00 WHERE [Code] = 'shw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pll', 'Shwe Palaung', NULL, 621.10) END +VALUES ('pll', 'Shwe Palaung', NULL, 6219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shwe Palaung', [Definition] = NULL, [SortOrder] = 621.10 WHERE [Code] = 'pll' END +SET [Description] = 'Shwe Palaung', [Definition] = NULL, [SortOrder] = 6219.00 WHERE [Code] = 'pll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slw', 'Sialum', NULL, 621.20) END +VALUES ('slw', 'Sialum', NULL, 6220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sialum', [Definition] = NULL, [SortOrder] = 621.20 WHERE [Code] = 'slw' END +SET [Description] = 'Sialum', [Definition] = NULL, [SortOrder] = 6220.00 WHERE [Code] = 'slw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sif', 'Siamou', NULL, 621.30) END +VALUES ('sif', 'Siamou', NULL, 6221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siamou', [Definition] = NULL, [SortOrder] = 621.30 WHERE [Code] = 'sif' END +SET [Description] = 'Siamou', [Definition] = NULL, [SortOrder] = 6221.00 WHERE [Code] = 'sif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spg', 'Sian', NULL, 621.40) END +VALUES ('spg', 'Sian', NULL, 6222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sian', [Definition] = NULL, [SortOrder] = 621.40 WHERE [Code] = 'spg' END +SET [Description] = 'Sian', [Definition] = NULL, [SortOrder] = 6222.00 WHERE [Code] = 'spg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snp', 'Siane', NULL, 621.50) END +VALUES ('snp', 'Siane', NULL, 6223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siane', [Definition] = NULL, [SortOrder] = 621.50 WHERE [Code] = 'snp' END +SET [Description] = 'Siane', [Definition] = NULL, [SortOrder] = 6223.00 WHERE [Code] = 'snp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sya', 'Siang', NULL, 621.60) END +VALUES ('sya', 'Siang', NULL, 6224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siang', [Definition] = NULL, [SortOrder] = 621.60 WHERE [Code] = 'sya' END +SET [Description] = 'Siang', [Definition] = NULL, [SortOrder] = 6224.00 WHERE [Code] = 'sya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjr', 'Siar-Lak', NULL, 621.70) END +VALUES ('sjr', 'Siar-Lak', NULL, 6225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siar-Lak', [Definition] = NULL, [SortOrder] = 621.70 WHERE [Code] = 'sjr' END +SET [Description] = 'Siar-Lak', [Definition] = NULL, [SortOrder] = 6225.00 WHERE [Code] = 'sjr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmp', 'Siawi', NULL, 621.80) END +VALUES ('mmp', 'Siawi', NULL, 6226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siawi', [Definition] = NULL, [SortOrder] = 621.80 WHERE [Code] = 'mmp' END +SET [Description] = 'Siawi', [Definition] = NULL, [SortOrder] = 6226.00 WHERE [Code] = 'mmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nco', 'Sibe', NULL, 621.90) END +VALUES ('nco', 'Sibe', NULL, 6227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sibe', [Definition] = NULL, [SortOrder] = 621.90 WHERE [Code] = 'nco' END +SET [Description] = 'Sibe', [Definition] = NULL, [SortOrder] = 6227.00 WHERE [Code] = 'nco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sty', 'Siberian Tatar', NULL, 622.00) END +VALUES ('sty', 'Siberian Tatar', NULL, 6228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siberian Tatar', [Definition] = NULL, [SortOrder] = 622.00 WHERE [Code] = 'sty' END +SET [Description] = 'Siberian Tatar', [Definition] = NULL, [SortOrder] = 6228.00 WHERE [Code] = 'sty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdx', 'Sibu Melanau', NULL, 622.10) END +VALUES ('sdx', 'Sibu Melanau', NULL, 6229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sibu Melanau', [Definition] = NULL, [SortOrder] = 622.10 WHERE [Code] = 'sdx' END +SET [Description] = 'Sibu Melanau', [Definition] = NULL, [SortOrder] = 6229.00 WHERE [Code] = 'sdx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxc', 'Sicanian', NULL, 622.20) END +VALUES ('sxc', 'Sicanian', NULL, 6230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sicanian', [Definition] = NULL, [SortOrder] = 622.20 WHERE [Code] = 'sxc' END +SET [Description] = 'Sicanian', [Definition] = NULL, [SortOrder] = 6230.00 WHERE [Code] = 'sxc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scx', 'Sicel', NULL, 622.30) END +VALUES ('scx', 'Sicel', NULL, 6231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sicel', [Definition] = NULL, [SortOrder] = 622.30 WHERE [Code] = 'scx' END +SET [Description] = 'Sicel', [Definition] = NULL, [SortOrder] = 6231.00 WHERE [Code] = 'scx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iii', 'Sichuan Yi', NULL, 622.40) END +VALUES ('iii', 'Sichuan Yi', NULL, 6232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sichuan Yi', [Definition] = NULL, [SortOrder] = 622.40 WHERE [Code] = 'iii' END +SET [Description] = 'Sichuan Yi', [Definition] = NULL, [SortOrder] = 6232.00 WHERE [Code] = 'iii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scn', 'Sicilian', NULL, 622.50) END +VALUES ('scn', 'Sicilian', NULL, 6233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sicilian', [Definition] = NULL, [SortOrder] = 622.50 WHERE [Code] = 'scn' END +SET [Description] = 'Sicilian', [Definition] = NULL, [SortOrder] = 6233.00 WHERE [Code] = 'scn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sep', 'Sìcìté Sénoufo', NULL, 622.60) END +VALUES ('sep', 'Sìcìté Sénoufo', NULL, 6234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sìcìté Sénoufo', [Definition] = NULL, [SortOrder] = 622.60 WHERE [Code] = 'sep' END +SET [Description] = 'Sìcìté Sénoufo', [Definition] = NULL, [SortOrder] = 6234.00 WHERE [Code] = 'sep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqr', 'Siculo Arabic', NULL, 622.70) END +VALUES ('sqr', 'Siculo Arabic', NULL, 6235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siculo Arabic', [Definition] = NULL, [SortOrder] = 622.70 WHERE [Code] = 'sqr' END +SET [Description] = 'Siculo Arabic', [Definition] = NULL, [SortOrder] = 6235.00 WHERE [Code] = 'sqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sid', 'Sidamo', NULL, 622.80) END +VALUES ('sid', 'Sidamo', NULL, 6236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sidamo', [Definition] = NULL, [SortOrder] = 622.80 WHERE [Code] = 'sid' END +SET [Description] = 'Sidamo', [Definition] = NULL, [SortOrder] = 6236.00 WHERE [Code] = 'sid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsd', 'Sidetic', NULL, 622.90) END +VALUES ('xsd', 'Sidetic', NULL, 6237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sidetic', [Definition] = NULL, [SortOrder] = 622.90 WHERE [Code] = 'xsd' END +SET [Description] = 'Sidetic', [Definition] = NULL, [SortOrder] = 6237.00 WHERE [Code] = 'xsd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'erg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('erg', 'Sie', NULL, 623.00) END +VALUES ('erg', 'Sie', NULL, 6238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sie', [Definition] = NULL, [SortOrder] = 623.00 WHERE [Code] = 'erg' END +SET [Description] = 'Sie', [Definition] = NULL, [SortOrder] = 6238.00 WHERE [Code] = 'erg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaa', 'Sierra de Juárez Zapotec', NULL, 623.10) END +VALUES ('zaa', 'Sierra de Juárez Zapotec', NULL, 6239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sierra de Juárez Zapotec', [Definition] = NULL, [SortOrder] = 623.10 WHERE [Code] = 'zaa' END +SET [Description] = 'Sierra de Juárez Zapotec', [Definition] = NULL, [SortOrder] = 6239.00 WHERE [Code] = 'zaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgx', 'Sierra Leone Sign Language', NULL, 623.20) END +VALUES ('sgx', 'Sierra Leone Sign Language', NULL, 6240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sierra Leone Sign Language', [Definition] = NULL, [SortOrder] = 623.20 WHERE [Code] = 'sgx' END +SET [Description] = 'Sierra Leone Sign Language', [Definition] = NULL, [SortOrder] = 6240.00 WHERE [Code] = 'sgx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsu', 'Sierra Negra Nahuatl', NULL, 623.30) END +VALUES ('nsu', 'Sierra Negra Nahuatl', NULL, 6241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sierra Negra Nahuatl', [Definition] = NULL, [SortOrder] = 623.30 WHERE [Code] = 'nsu' END +SET [Description] = 'Sierra Negra Nahuatl', [Definition] = NULL, [SortOrder] = 6241.00 WHERE [Code] = 'nsu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxe', 'Sighu', NULL, 623.40) END +VALUES ('sxe', 'Sighu', NULL, 6242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sighu', [Definition] = NULL, [SortOrder] = 623.40 WHERE [Code] = 'sxe' END +SET [Description] = 'Sighu', [Definition] = NULL, [SortOrder] = 6242.00 WHERE [Code] = 'sxe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snr', 'Sihan', NULL, 623.50) END +VALUES ('snr', 'Sihan', NULL, 6243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sihan', [Definition] = NULL, [SortOrder] = 623.50 WHERE [Code] = 'snr' END +SET [Description] = 'Sihan', [Definition] = NULL, [SortOrder] = 6243.00 WHERE [Code] = 'snr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qws', 'Sihuas Ancash Quechua', NULL, 623.60) END +VALUES ('qws', 'Sihuas Ancash Quechua', NULL, 6244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sihuas Ancash Quechua', [Definition] = NULL, [SortOrder] = 623.60 WHERE [Code] = 'qws' END +SET [Description] = 'Sihuas Ancash Quechua', [Definition] = NULL, [SortOrder] = 6244.00 WHERE [Code] = 'qws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ski') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ski', 'Sika', NULL, 623.70) END +VALUES ('ski', 'Sika', NULL, 6245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sika', [Definition] = NULL, [SortOrder] = 623.70 WHERE [Code] = 'ski' END +SET [Description] = 'Sika', [Definition] = NULL, [SortOrder] = 6245.00 WHERE [Code] = 'ski' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sky', 'Sikaiana', NULL, 623.80) END +VALUES ('sky', 'Sikaiana', NULL, 6246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikaiana', [Definition] = NULL, [SortOrder] = 623.80 WHERE [Code] = 'sky' END +SET [Description] = 'Sikaiana', [Definition] = NULL, [SortOrder] = 6246.00 WHERE [Code] = 'sky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tty', 'Sikaritai', NULL, 623.90) END +VALUES ('tty', 'Sikaritai', NULL, 6247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikaritai', [Definition] = NULL, [SortOrder] = 623.90 WHERE [Code] = 'tty' END +SET [Description] = 'Sikaritai', [Definition] = NULL, [SortOrder] = 6247.00 WHERE [Code] = 'tty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sik', 'Sikiana', NULL, 624.00) END +VALUES ('sik', 'Sikiana', NULL, 6248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikiana', [Definition] = NULL, [SortOrder] = 624.00 WHERE [Code] = 'sik' END +SET [Description] = 'Sikiana', [Definition] = NULL, [SortOrder] = 6248.00 WHERE [Code] = 'sik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sip', 'Sikkimese', NULL, 624.10) END +VALUES ('sip', 'Sikkimese', NULL, 6249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikkimese', [Definition] = NULL, [SortOrder] = 624.10 WHERE [Code] = 'sip' END +SET [Description] = 'Sikkimese', [Definition] = NULL, [SortOrder] = 6249.00 WHERE [Code] = 'sip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bla', 'Siksika', NULL, 624.20) END +VALUES ('bla', 'Siksika', NULL, 6250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siksika', [Definition] = NULL, [SortOrder] = 624.20 WHERE [Code] = 'bla' END +SET [Description] = 'Siksika', [Definition] = NULL, [SortOrder] = 6250.00 WHERE [Code] = 'bla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skh', 'Sikule', NULL, 624.30) END +VALUES ('skh', 'Sikule', NULL, 6251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikule', [Definition] = NULL, [SortOrder] = 624.30 WHERE [Code] = 'skh' END +SET [Description] = 'Sikule', [Definition] = NULL, [SortOrder] = 6251.00 WHERE [Code] = 'skh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slt', 'Sila', NULL, 624.40) END +VALUES ('slt', 'Sila', NULL, 6252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sila', [Definition] = NULL, [SortOrder] = 624.40 WHERE [Code] = 'slt' END +SET [Description] = 'Sila', [Definition] = NULL, [SortOrder] = 6252.00 WHERE [Code] = 'slt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mks', 'Silacayoapan Mixtec', NULL, 624.50) END +VALUES ('mks', 'Silacayoapan Mixtec', NULL, 6253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silacayoapan Mixtec', [Definition] = NULL, [SortOrder] = 624.50 WHERE [Code] = 'mks' END +SET [Description] = 'Silacayoapan Mixtec', [Definition] = NULL, [SortOrder] = 6253.00 WHERE [Code] = 'mks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbq', 'Sileibi', NULL, 624.60) END +VALUES ('sbq', 'Sileibi', NULL, 6254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sileibi', [Definition] = NULL, [SortOrder] = 624.60 WHERE [Code] = 'sbq' END +SET [Description] = 'Sileibi', [Definition] = NULL, [SortOrder] = 6254.00 WHERE [Code] = 'sbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szl', 'Silesian', NULL, 624.70) END +VALUES ('szl', 'Silesian', NULL, 6255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silesian', [Definition] = NULL, [SortOrder] = 624.70 WHERE [Code] = 'szl' END +SET [Description] = 'Silesian', [Definition] = NULL, [SortOrder] = 6255.00 WHERE [Code] = 'szl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wul', 'Silimo', NULL, 624.80) END +VALUES ('wul', 'Silimo', NULL, 6256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silimo', [Definition] = NULL, [SortOrder] = 624.80 WHERE [Code] = 'wul' END +SET [Description] = 'Silimo', [Definition] = NULL, [SortOrder] = 6256.00 WHERE [Code] = 'wul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkc', 'Siliput', NULL, 624.90) END +VALUES ('mkc', 'Siliput', NULL, 6257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siliput', [Definition] = NULL, [SortOrder] = 624.90 WHERE [Code] = 'mkc' END +SET [Description] = 'Siliput', [Definition] = NULL, [SortOrder] = 6257.00 WHERE [Code] = 'mkc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsp', 'Silopi', NULL, 625.00) END +VALUES ('xsp', 'Silopi', NULL, 6258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silopi', [Definition] = NULL, [SortOrder] = 625.00 WHERE [Code] = 'xsp' END +SET [Description] = 'Silopi', [Definition] = NULL, [SortOrder] = 6258.00 WHERE [Code] = 'xsp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stv', 'Silt''e', NULL, 625.10) END +VALUES ('stv', 'Silt''e', NULL, 6259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silt''e', [Definition] = NULL, [SortOrder] = 625.10 WHERE [Code] = 'stv' END +SET [Description] = 'Silt''e', [Definition] = NULL, [SortOrder] = 6259.00 WHERE [Code] = 'stv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sie', 'Simaa', NULL, 625.20) END +VALUES ('sie', 'Simaa', NULL, 6260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simaa', [Definition] = NULL, [SortOrder] = 625.20 WHERE [Code] = 'sie' END +SET [Description] = 'Simaa', [Definition] = NULL, [SortOrder] = 6260.00 WHERE [Code] = 'sie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbw', 'Simba', NULL, 625.30) END +VALUES ('sbw', 'Simba', NULL, 6261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simba', [Definition] = NULL, [SortOrder] = 625.30 WHERE [Code] = 'sbw' END +SET [Description] = 'Simba', [Definition] = NULL, [SortOrder] = 6261.00 WHERE [Code] = 'sbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smg', 'Simbali', NULL, 625.40) END +VALUES ('smg', 'Simbali', NULL, 6262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simbali', [Definition] = NULL, [SortOrder] = 625.40 WHERE [Code] = 'smg' END +SET [Description] = 'Simbali', [Definition] = NULL, [SortOrder] = 6262.00 WHERE [Code] = 'smg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smb', 'Simbari', NULL, 625.50) END +VALUES ('smb', 'Simbari', NULL, 6263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simbari', [Definition] = NULL, [SortOrder] = 625.50 WHERE [Code] = 'smb' END +SET [Description] = 'Simbari', [Definition] = NULL, [SortOrder] = 6263.00 WHERE [Code] = 'smb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbb', 'Simbo', NULL, 625.60) END +VALUES ('sbb', 'Simbo', NULL, 6264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simbo', [Definition] = NULL, [SortOrder] = 625.60 WHERE [Code] = 'sbb' END +SET [Description] = 'Simbo', [Definition] = NULL, [SortOrder] = 6264.00 WHERE [Code] = 'sbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smz', 'Simeku', NULL, 625.70) END +VALUES ('smz', 'Simeku', NULL, 6265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simeku', [Definition] = NULL, [SortOrder] = 625.70 WHERE [Code] = 'smz' END +SET [Description] = 'Simeku', [Definition] = NULL, [SortOrder] = 6265.00 WHERE [Code] = 'smz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smr', 'Simeulue', NULL, 625.80) END +VALUES ('smr', 'Simeulue', NULL, 6266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simeulue', [Definition] = NULL, [SortOrder] = 625.80 WHERE [Code] = 'smr' END +SET [Description] = 'Simeulue', [Definition] = NULL, [SortOrder] = 6266.00 WHERE [Code] = 'smr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smt', 'Simte', NULL, 625.90) END +VALUES ('smt', 'Simte', NULL, 6267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simte', [Definition] = NULL, [SortOrder] = 625.90 WHERE [Code] = 'smt' END +SET [Description] = 'Simte', [Definition] = NULL, [SortOrder] = 6267.00 WHERE [Code] = 'smt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siu', 'Sinagen', NULL, 626.00) END +VALUES ('siu', 'Sinagen', NULL, 6268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinagen', [Definition] = NULL, [SortOrder] = 626.00 WHERE [Code] = 'siu' END +SET [Description] = 'Sinagen', [Definition] = NULL, [SortOrder] = 6268.00 WHERE [Code] = 'siu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sst', 'Sinasina', NULL, 626.10) END +VALUES ('sst', 'Sinasina', NULL, 6269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinasina', [Definition] = NULL, [SortOrder] = 626.10 WHERE [Code] = 'sst' END +SET [Description] = 'Sinasina', [Definition] = NULL, [SortOrder] = 6269.00 WHERE [Code] = 'sst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snc', 'Sinaugoro', NULL, 626.20) END +VALUES ('snc', 'Sinaugoro', NULL, 6270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinaugoro', [Definition] = NULL, [SortOrder] = 626.20 WHERE [Code] = 'snc' END +SET [Description] = 'Sinaugoro', [Definition] = NULL, [SortOrder] = 6270.00 WHERE [Code] = 'snc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjn', 'Sindarin', NULL, 626.30) END +VALUES ('sjn', 'Sindarin', NULL, 6271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sindarin', [Definition] = NULL, [SortOrder] = 626.30 WHERE [Code] = 'sjn' END +SET [Description] = 'Sindarin', [Definition] = NULL, [SortOrder] = 6271.00 WHERE [Code] = 'sjn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snd', 'Sindhi', NULL, 626.40) END +VALUES ('snd', 'Sindhi', NULL, 6272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sindhi', [Definition] = NULL, [SortOrder] = 626.40 WHERE [Code] = 'snd' END +SET [Description] = 'Sindhi', [Definition] = NULL, [SortOrder] = 6272.00 WHERE [Code] = 'snd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbn', 'Sindhi Bhil', NULL, 626.50) END +VALUES ('sbn', 'Sindhi Bhil', NULL, 6273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sindhi Bhil', [Definition] = NULL, [SortOrder] = 626.50 WHERE [Code] = 'sbn' END +SET [Description] = 'Sindhi Bhil', [Definition] = NULL, [SortOrder] = 6273.00 WHERE [Code] = 'sbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xts', 'Sindihui Mixtec', NULL, 626.60) END +VALUES ('xts', 'Sindihui Mixtec', NULL, 6274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sindihui Mixtec', [Definition] = NULL, [SortOrder] = 626.60 WHERE [Code] = 'xts' END +SET [Description] = 'Sindihui Mixtec', [Definition] = NULL, [SortOrder] = 6274.00 WHERE [Code] = 'xts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgm', 'Singa', NULL, 626.70) END +VALUES ('sgm', 'Singa', NULL, 6275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Singa', [Definition] = NULL, [SortOrder] = 626.70 WHERE [Code] = 'sgm' END +SET [Description] = 'Singa', [Definition] = NULL, [SortOrder] = 6275.00 WHERE [Code] = 'sgm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sls', 'Singapore Sign Language', NULL, 626.80) END +VALUES ('sls', 'Singapore Sign Language', NULL, 6276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Singapore Sign Language', [Definition] = NULL, [SortOrder] = 626.80 WHERE [Code] = 'sls' END +SET [Description] = 'Singapore Sign Language', [Definition] = NULL, [SortOrder] = 6276.00 WHERE [Code] = 'sls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgp', 'Singpho', NULL, 626.90) END +VALUES ('sgp', 'Singpho', NULL, 6277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Singpho', [Definition] = NULL, [SortOrder] = 626.90 WHERE [Code] = 'sgp' END +SET [Description] = 'Singpho', [Definition] = NULL, [SortOrder] = 6277.00 WHERE [Code] = 'sgp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sin', 'Sinhala', NULL, 627.00) END +VALUES ('sin', 'Sinhala', NULL, 6278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinhala', [Definition] = NULL, [SortOrder] = 627.00 WHERE [Code] = 'sin' END +SET [Description] = 'Sinhala', [Definition] = NULL, [SortOrder] = 6278.00 WHERE [Code] = 'sin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xti', 'Sinicahua Mixtec', NULL, 627.10) END +VALUES ('xti', 'Sinicahua Mixtec', NULL, 6279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinicahua Mixtec', [Definition] = NULL, [SortOrder] = 627.10 WHERE [Code] = 'xti' END +SET [Description] = 'Sinicahua Mixtec', [Definition] = NULL, [SortOrder] = 6279.00 WHERE [Code] = 'xti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skq', 'Sininkere', NULL, 627.20) END +VALUES ('skq', 'Sininkere', NULL, 6280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sininkere', [Definition] = NULL, [SortOrder] = 627.20 WHERE [Code] = 'skq' END +SET [Description] = 'Sininkere', [Definition] = NULL, [SortOrder] = 6280.00 WHERE [Code] = 'skq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmo', 'Sinte Romani', NULL, 627.30) END +VALUES ('rmo', 'Sinte Romani', NULL, 6281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinte Romani', [Definition] = NULL, [SortOrder] = 627.30 WHERE [Code] = 'rmo' END +SET [Description] = 'Sinte Romani', [Definition] = NULL, [SortOrder] = 6281.00 WHERE [Code] = 'rmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sys', 'Sinyar', NULL, 627.40) END +VALUES ('sys', 'Sinyar', NULL, 6282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinyar', [Definition] = NULL, [SortOrder] = 627.40 WHERE [Code] = 'sys' END +SET [Description] = 'Sinyar', [Definition] = NULL, [SortOrder] = 6282.00 WHERE [Code] = 'sys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsi', 'Sio', NULL, 627.50) END +VALUES ('xsi', 'Sio', NULL, 6283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sio', [Definition] = NULL, [SortOrder] = 627.50 WHERE [Code] = 'xsi' END +SET [Description] = 'Sio', [Definition] = NULL, [SortOrder] = 6283.00 WHERE [Code] = 'xsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snn', 'Siona', NULL, 627.60) END +VALUES ('snn', 'Siona', NULL, 6284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siona', [Definition] = NULL, [SortOrder] = 627.60 WHERE [Code] = 'snn' END +SET [Description] = 'Siona', [Definition] = NULL, [SortOrder] = 6284.00 WHERE [Code] = 'snn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qum', 'Sipacapense', NULL, 627.70) END +VALUES ('qum', 'Sipacapense', NULL, 6285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sipacapense', [Definition] = NULL, [SortOrder] = 627.70 WHERE [Code] = 'qum' END +SET [Description] = 'Sipacapense', [Definition] = NULL, [SortOrder] = 6285.00 WHERE [Code] = 'qum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swj', 'Sira', NULL, 627.80) END +VALUES ('swj', 'Sira', NULL, 6286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sira', [Definition] = NULL, [SortOrder] = 627.80 WHERE [Code] = 'swj' END +SET [Description] = 'Sira', [Definition] = NULL, [SortOrder] = 6286.00 WHERE [Code] = 'swj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fos', 'Siraya', NULL, 627.90) END +VALUES ('fos', 'Siraya', NULL, 6287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siraya', [Definition] = NULL, [SortOrder] = 627.90 WHERE [Code] = 'fos' END +SET [Description] = 'Siraya', [Definition] = NULL, [SortOrder] = 6287.00 WHERE [Code] = 'fos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysr', 'Sirenik Yupik', NULL, 628.00) END +VALUES ('ysr', 'Sirenik Yupik', NULL, 6288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sirenik Yupik', [Definition] = NULL, [SortOrder] = 628.00 WHERE [Code] = 'ysr' END +SET [Description] = 'Sirenik Yupik', [Definition] = NULL, [SortOrder] = 6288.00 WHERE [Code] = 'ysr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sir', 'Siri', NULL, 628.10) END +VALUES ('sir', 'Siri', NULL, 6289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siri', [Definition] = NULL, [SortOrder] = 628.10 WHERE [Code] = 'sir' END +SET [Description] = 'Siri', [Definition] = NULL, [SortOrder] = 6289.00 WHERE [Code] = 'sir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sri', 'Siriano', NULL, 628.20) END +VALUES ('sri', 'Siriano', NULL, 6290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siriano', [Definition] = NULL, [SortOrder] = 628.20 WHERE [Code] = 'sri' END +SET [Description] = 'Siriano', [Definition] = NULL, [SortOrder] = 6290.00 WHERE [Code] = 'sri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srq', 'Sirionó', NULL, 628.30) END +VALUES ('srq', 'Sirionó', NULL, 6291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sirionó', [Definition] = NULL, [SortOrder] = 628.30 WHERE [Code] = 'srq' END +SET [Description] = 'Sirionó', [Definition] = NULL, [SortOrder] = 6291.00 WHERE [Code] = 'srq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srx', 'Sirmauri', NULL, 628.40) END +VALUES ('srx', 'Sirmauri', NULL, 6292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sirmauri', [Definition] = NULL, [SortOrder] = 628.40 WHERE [Code] = 'srx' END +SET [Description] = 'Sirmauri', [Definition] = NULL, [SortOrder] = 6292.00 WHERE [Code] = 'srx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssd', 'Siroi', NULL, 628.50) END +VALUES ('ssd', 'Siroi', NULL, 6293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siroi', [Definition] = NULL, [SortOrder] = 628.50 WHERE [Code] = 'ssd' END +SET [Description] = 'Siroi', [Definition] = NULL, [SortOrder] = 6293.00 WHERE [Code] = 'ssd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sld', 'Sissala', NULL, 628.60) END +VALUES ('sld', 'Sissala', NULL, 6294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sissala', [Definition] = NULL, [SortOrder] = 628.60 WHERE [Code] = 'sld' END +SET [Description] = 'Sissala', [Definition] = NULL, [SortOrder] = 6294.00 WHERE [Code] = 'sld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sso', 'Sissano', NULL, 628.70) END +VALUES ('sso', 'Sissano', NULL, 6295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sissano', [Definition] = NULL, [SortOrder] = 628.70 WHERE [Code] = 'sso' END +SET [Description] = 'Sissano', [Definition] = NULL, [SortOrder] = 6295.00 WHERE [Code] = 'sso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sis', 'Siuslaw', NULL, 628.80) END +VALUES ('sis', 'Siuslaw', NULL, 6296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siuslaw', [Definition] = NULL, [SortOrder] = 628.80 WHERE [Code] = 'sis' END +SET [Description] = 'Siuslaw', [Definition] = NULL, [SortOrder] = 6296.00 WHERE [Code] = 'sis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siy', 'Sivandi', NULL, 628.90) END +VALUES ('siy', 'Sivandi', NULL, 6297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sivandi', [Definition] = NULL, [SortOrder] = 628.90 WHERE [Code] = 'siy' END +SET [Description] = 'Sivandi', [Definition] = NULL, [SortOrder] = 6297.00 WHERE [Code] = 'siy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsv', 'Sivia Sign Language', NULL, 629.00) END +VALUES ('lsv', 'Sivia Sign Language', NULL, 6298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sivia Sign Language', [Definition] = NULL, [SortOrder] = 629.00 WHERE [Code] = 'lsv' END +SET [Description] = 'Sivia Sign Language', [Definition] = NULL, [SortOrder] = 6298.00 WHERE [Code] = 'lsv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siw', 'Siwai', NULL, 629.10) END +VALUES ('siw', 'Siwai', NULL, 6299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siwai', [Definition] = NULL, [SortOrder] = 629.10 WHERE [Code] = 'siw' END +SET [Description] = 'Siwai', [Definition] = NULL, [SortOrder] = 6299.00 WHERE [Code] = 'siw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siz', 'Siwi', NULL, 629.20) END +VALUES ('siz', 'Siwi', NULL, 6300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siwi', [Definition] = NULL, [SortOrder] = 629.20 WHERE [Code] = 'siz' END +SET [Description] = 'Siwi', [Definition] = NULL, [SortOrder] = 6300.00 WHERE [Code] = 'siz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akp', 'Siwu', NULL, 629.30) END +VALUES ('akp', 'Siwu', NULL, 6301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siwu', [Definition] = NULL, [SortOrder] = 629.30 WHERE [Code] = 'akp' END +SET [Description] = 'Siwu', [Definition] = NULL, [SortOrder] = 6301.00 WHERE [Code] = 'akp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csy', 'Siyin Chin', NULL, 629.40) END +VALUES ('csy', 'Siyin Chin', NULL, 6302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siyin Chin', [Definition] = NULL, [SortOrder] = 629.40 WHERE [Code] = 'csy' END +SET [Description] = 'Siyin Chin', [Definition] = NULL, [SortOrder] = 6302.00 WHERE [Code] = 'csy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ska') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ska', 'Skagit', NULL, 629.50) END +VALUES ('ska', 'Skagit', NULL, 6303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skagit', [Definition] = NULL, [SortOrder] = 629.50 WHERE [Code] = 'ska' END +SET [Description] = 'Skagit', [Definition] = NULL, [SortOrder] = 6303.00 WHERE [Code] = 'ska' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svx', 'Skalvian', NULL, 629.60) END +VALUES ('svx', 'Skalvian', NULL, 6304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skalvian', [Definition] = NULL, [SortOrder] = 629.60 WHERE [Code] = 'svx' END +SET [Description] = 'Skalvian', [Definition] = NULL, [SortOrder] = 6304.00 WHERE [Code] = 'svx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skw', 'Skepi Creole Dutch', NULL, 629.70) END +VALUES ('skw', 'Skepi Creole Dutch', NULL, 6305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skepi Creole Dutch', [Definition] = NULL, [SortOrder] = 629.70 WHERE [Code] = 'skw' END +SET [Description] = 'Skepi Creole Dutch', [Definition] = NULL, [SortOrder] = 6305.00 WHERE [Code] = 'skw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sms', 'Skolt Sami', NULL, 629.80) END +VALUES ('sms', 'Skolt Sami', NULL, 6306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skolt Sami', [Definition] = NULL, [SortOrder] = 629.80 WHERE [Code] = 'sms' END +SET [Description] = 'Skolt Sami', [Definition] = NULL, [SortOrder] = 6306.00 WHERE [Code] = 'sms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skv', 'Skou', NULL, 629.90) END +VALUES ('skv', 'Skou', NULL, 6307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skou', [Definition] = NULL, [SortOrder] = 629.90 WHERE [Code] = 'skv' END +SET [Description] = 'Skou', [Definition] = NULL, [SortOrder] = 6307.00 WHERE [Code] = 'skv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'den') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('den', 'Slave (Athapascan)', NULL, 630.00) END +VALUES ('den', 'Slave (Athapascan)', NULL, 6308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slave (Athapascan)', [Definition] = NULL, [SortOrder] = 630.00 WHERE [Code] = 'den' END +SET [Description] = 'Slave (Athapascan)', [Definition] = NULL, [SortOrder] = 6308.00 WHERE [Code] = 'den' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svm', 'Slavomolisano', NULL, 630.10) END +VALUES ('svm', 'Slavomolisano', NULL, 6309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slavomolisano', [Definition] = NULL, [SortOrder] = 630.10 WHERE [Code] = 'svm' END +SET [Description] = 'Slavomolisano', [Definition] = NULL, [SortOrder] = 6309.00 WHERE [Code] = 'svm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slk', 'Slovak', NULL, 630.20) END +VALUES ('slk', 'Slovak', NULL, 6310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slovak', [Definition] = NULL, [SortOrder] = 630.20 WHERE [Code] = 'slk' END +SET [Description] = 'Slovak', [Definition] = NULL, [SortOrder] = 6310.00 WHERE [Code] = 'slk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svk', 'Slovakian Sign Language', NULL, 630.30) END +VALUES ('svk', 'Slovakian Sign Language', NULL, 6311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slovakian Sign Language', [Definition] = NULL, [SortOrder] = 630.30 WHERE [Code] = 'svk' END +SET [Description] = 'Slovakian Sign Language', [Definition] = NULL, [SortOrder] = 6311.00 WHERE [Code] = 'svk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slv', 'Slovenian', NULL, 630.40) END +VALUES ('slv', 'Slovenian', NULL, 6312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slovenian', [Definition] = NULL, [SortOrder] = 630.40 WHERE [Code] = 'slv' END +SET [Description] = 'Slovenian', [Definition] = NULL, [SortOrder] = 6312.00 WHERE [Code] = 'slv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfm', 'Small Flowery Miao', NULL, 630.50) END +VALUES ('sfm', 'Small Flowery Miao', NULL, 6313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Small Flowery Miao', [Definition] = NULL, [SortOrder] = 630.50 WHERE [Code] = 'sfm' END +SET [Description] = 'Small Flowery Miao', [Definition] = NULL, [SortOrder] = 6313.00 WHERE [Code] = 'sfm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxq', 'Smärky Kanum', NULL, 630.60) END +VALUES ('kxq', 'Smärky Kanum', NULL, 6314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Smärky Kanum', [Definition] = NULL, [SortOrder] = 630.60 WHERE [Code] = 'kxq' END +SET [Description] = 'Smärky Kanum', [Definition] = NULL, [SortOrder] = 6314.00 WHERE [Code] = 'kxq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sno', 'Snohomish', NULL, 630.70) END +VALUES ('sno', 'Snohomish', NULL, 6315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Snohomish', [Definition] = NULL, [SortOrder] = 630.70 WHERE [Code] = 'sno' END +SET [Description] = 'Snohomish', [Definition] = NULL, [SortOrder] = 6315.00 WHERE [Code] = 'sno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sss', 'Sô', NULL, 630.80) END +VALUES ('sss', 'Sô', NULL, 6316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sô', [Definition] = NULL, [SortOrder] = 630.80 WHERE [Code] = 'sss' END +SET [Description] = 'Sô', [Definition] = NULL, [SortOrder] = 6316.00 WHERE [Code] = 'sss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soc', 'So (Democratic Republic of Congo)', NULL, 630.90) END +VALUES ('soc', 'So (Democratic Republic of Congo)', NULL, 6317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'So (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 630.90 WHERE [Code] = 'soc' END +SET [Description] = 'So (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 6317.00 WHERE [Code] = 'soc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssq', 'So''a', NULL, 631.00) END +VALUES ('ssq', 'So''a', NULL, 6318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'So''a', [Definition] = NULL, [SortOrder] = 631.00 WHERE [Code] = 'ssq' END +SET [Description] = 'So''a', [Definition] = NULL, [SortOrder] = 6318.00 WHERE [Code] = 'ssq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sob', 'Sobei', NULL, 631.10) END +VALUES ('sob', 'Sobei', NULL, 6319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sobei', [Definition] = NULL, [SortOrder] = 631.10 WHERE [Code] = 'sob' END +SET [Description] = 'Sobei', [Definition] = NULL, [SortOrder] = 6319.00 WHERE [Code] = 'sob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cso', 'Sochiapam Chinantec', NULL, 631.20) END +VALUES ('cso', 'Sochiapam Chinantec', NULL, 6320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sochiapam Chinantec', [Definition] = NULL, [SortOrder] = 631.20 WHERE [Code] = 'cso' END +SET [Description] = 'Sochiapam Chinantec', [Definition] = NULL, [SortOrder] = 6320.00 WHERE [Code] = 'cso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xog', 'Soga', NULL, 631.30) END +VALUES ('xog', 'Soga', NULL, 6321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soga', [Definition] = NULL, [SortOrder] = 631.30 WHERE [Code] = 'xog' END +SET [Description] = 'Soga', [Definition] = NULL, [SortOrder] = 6321.00 WHERE [Code] = 'xog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sog', 'Sogdian', NULL, 631.40) END +VALUES ('sog', 'Sogdian', NULL, 6322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sogdian', [Definition] = NULL, [SortOrder] = 631.40 WHERE [Code] = 'sog' END +SET [Description] = 'Sogdian', [Definition] = NULL, [SortOrder] = 6322.00 WHERE [Code] = 'sog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soj', 'Soi', NULL, 631.50) END +VALUES ('soj', 'Soi', NULL, 6323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soi', [Definition] = NULL, [SortOrder] = 631.50 WHERE [Code] = 'soj' END +SET [Description] = 'Soi', [Definition] = NULL, [SortOrder] = 6323.00 WHERE [Code] = 'soj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sok', 'Sokoro', NULL, 631.60) END +VALUES ('sok', 'Sokoro', NULL, 6324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sokoro', [Definition] = NULL, [SortOrder] = 631.60 WHERE [Code] = 'sok' END +SET [Description] = 'Sokoro', [Definition] = NULL, [SortOrder] = 6324.00 WHERE [Code] = 'sok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xso', 'Solano', NULL, 631.70) END +VALUES ('xso', 'Solano', NULL, 6325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Solano', [Definition] = NULL, [SortOrder] = 631.70 WHERE [Code] = 'xso' END +SET [Description] = 'Solano', [Definition] = NULL, [SortOrder] = 6325.00 WHERE [Code] = 'xso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sby', 'Soli', NULL, 631.80) END +VALUES ('sby', 'Soli', NULL, 6326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soli', [Definition] = NULL, [SortOrder] = 631.80 WHERE [Code] = 'sby' END +SET [Description] = 'Soli', [Definition] = NULL, [SortOrder] = 6326.00 WHERE [Code] = 'sby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szs', 'Solomon Islands Sign Language', NULL, 631.90) END +VALUES ('szs', 'Solomon Islands Sign Language', NULL, 6327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Solomon Islands Sign Language', [Definition] = NULL, [SortOrder] = 631.90 WHERE [Code] = 'szs' END +SET [Description] = 'Solomon Islands Sign Language', [Definition] = NULL, [SortOrder] = 6327.00 WHERE [Code] = 'szs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaw', 'Solong', NULL, 632.00) END +VALUES ('aaw', 'Solong', NULL, 6328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Solong', [Definition] = NULL, [SortOrder] = 632.00 WHERE [Code] = 'aaw' END +SET [Description] = 'Solong', [Definition] = NULL, [SortOrder] = 6328.00 WHERE [Code] = 'aaw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sol', 'Solos', NULL, 632.10) END +VALUES ('sol', 'Solos', NULL, 6329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Solos', [Definition] = NULL, [SortOrder] = 632.10 WHERE [Code] = 'sol' END +SET [Description] = 'Solos', [Definition] = NULL, [SortOrder] = 6329.00 WHERE [Code] = 'sol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smc', 'Som', NULL, 632.20) END +VALUES ('smc', 'Som', NULL, 6330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Som', [Definition] = NULL, [SortOrder] = 632.20 WHERE [Code] = 'smc' END +SET [Description] = 'Som', [Definition] = NULL, [SortOrder] = 6330.00 WHERE [Code] = 'smc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'som') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('som', 'Somali', NULL, 632.30) END +VALUES ('som', 'Somali', NULL, 6331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somali', [Definition] = NULL, [SortOrder] = 632.30 WHERE [Code] = 'som' END +SET [Description] = 'Somali', [Definition] = NULL, [SortOrder] = 6331.00 WHERE [Code] = 'som' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmu', 'Somba-Siawari', NULL, 632.40) END +VALUES ('bmu', 'Somba-Siawari', NULL, 6332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somba-Siawari', [Definition] = NULL, [SortOrder] = 632.40 WHERE [Code] = 'bmu' END +SET [Description] = 'Somba-Siawari', [Definition] = NULL, [SortOrder] = 6332.00 WHERE [Code] = 'bmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sor', 'Somrai', NULL, 632.50) END +VALUES ('sor', 'Somrai', NULL, 6333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somrai', [Definition] = NULL, [SortOrder] = 632.50 WHERE [Code] = 'sor' END +SET [Description] = 'Somrai', [Definition] = NULL, [SortOrder] = 6333.00 WHERE [Code] = 'sor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smu', 'Somray', NULL, 632.60) END +VALUES ('smu', 'Somray', NULL, 6334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somray', [Definition] = NULL, [SortOrder] = 632.60 WHERE [Code] = 'smu' END +SET [Description] = 'Somray', [Definition] = NULL, [SortOrder] = 6334.00 WHERE [Code] = 'smu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgt', 'Somyev', NULL, 632.70) END +VALUES ('kgt', 'Somyev', NULL, 6335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somyev', [Definition] = NULL, [SortOrder] = 632.70 WHERE [Code] = 'kgt' END +SET [Description] = 'Somyev', [Definition] = NULL, [SortOrder] = 6335.00 WHERE [Code] = 'kgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysg', 'Sonaga', NULL, 632.80) END +VALUES ('ysg', 'Sonaga', NULL, 6336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonaga', [Definition] = NULL, [SortOrder] = 632.80 WHERE [Code] = 'ysg' END +SET [Description] = 'Sonaga', [Definition] = NULL, [SortOrder] = 6336.00 WHERE [Code] = 'ysg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shc', 'Sonde', NULL, 632.90) END +VALUES ('shc', 'Sonde', NULL, 6337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonde', [Definition] = NULL, [SortOrder] = 632.90 WHERE [Code] = 'shc' END +SET [Description] = 'Sonde', [Definition] = NULL, [SortOrder] = 6337.00 WHERE [Code] = 'shc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sop', 'Songe', NULL, 633.00) END +VALUES ('sop', 'Songe', NULL, 6338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songe', [Definition] = NULL, [SortOrder] = 633.00 WHERE [Code] = 'sop' END +SET [Description] = 'Songe', [Definition] = NULL, [SortOrder] = 6338.00 WHERE [Code] = 'sop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csj', 'Songlai Chin', NULL, 633.10) END +VALUES ('csj', 'Songlai Chin', NULL, 6339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songlai Chin', [Definition] = NULL, [SortOrder] = 633.10 WHERE [Code] = 'csj' END +SET [Description] = 'Songlai Chin', [Definition] = NULL, [SortOrder] = 6339.00 WHERE [Code] = 'csj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soo', 'Songo', NULL, 633.20) END +VALUES ('soo', 'Songo', NULL, 6340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songo', [Definition] = NULL, [SortOrder] = 633.20 WHERE [Code] = 'soo' END +SET [Description] = 'Songo', [Definition] = NULL, [SortOrder] = 6340.00 WHERE [Code] = 'soo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soe', 'Songomeno', NULL, 633.30) END +VALUES ('soe', 'Songomeno', NULL, 6341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songomeno', [Definition] = NULL, [SortOrder] = 633.30 WHERE [Code] = 'soe' END +SET [Description] = 'Songomeno', [Definition] = NULL, [SortOrder] = 6341.00 WHERE [Code] = 'soe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sod', 'Songoora', NULL, 633.40) END +VALUES ('sod', 'Songoora', NULL, 6342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songoora', [Definition] = NULL, [SortOrder] = 633.40 WHERE [Code] = 'sod' END +SET [Description] = 'Songoora', [Definition] = NULL, [SortOrder] = 6342.00 WHERE [Code] = 'sod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soi', 'Sonha', NULL, 633.50) END +VALUES ('soi', 'Sonha', NULL, 6343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonha', [Definition] = NULL, [SortOrder] = 633.50 WHERE [Code] = 'soi' END +SET [Description] = 'Sonha', [Definition] = NULL, [SortOrder] = 6343.00 WHERE [Code] = 'soi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siq', 'Sonia', NULL, 633.60) END +VALUES ('siq', 'Sonia', NULL, 6344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonia', [Definition] = NULL, [SortOrder] = 633.60 WHERE [Code] = 'siq' END +SET [Description] = 'Sonia', [Definition] = NULL, [SortOrder] = 6344.00 WHERE [Code] = 'siq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snk', 'Soninke', NULL, 633.70) END +VALUES ('snk', 'Soninke', NULL, 6345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soninke', [Definition] = NULL, [SortOrder] = 633.70 WHERE [Code] = 'snk' END +SET [Description] = 'Soninke', [Definition] = NULL, [SortOrder] = 6345.00 WHERE [Code] = 'snk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sov', 'Sonsorol', NULL, 633.80) END +VALUES ('sov', 'Sonsorol', NULL, 6346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonsorol', [Definition] = NULL, [SortOrder] = 633.80 WHERE [Code] = 'sov' END +SET [Description] = 'Sonsorol', [Definition] = NULL, [SortOrder] = 6346.00 WHERE [Code] = 'sov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teu', 'Soo', NULL, 633.90) END +VALUES ('teu', 'Soo', NULL, 6347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soo', [Definition] = NULL, [SortOrder] = 633.90 WHERE [Code] = 'teu' END +SET [Description] = 'Soo', [Definition] = NULL, [SortOrder] = 6347.00 WHERE [Code] = 'teu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urw', 'Sop', NULL, 634.00) END +VALUES ('urw', 'Sop', NULL, 6348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sop', [Definition] = NULL, [SortOrder] = 634.00 WHERE [Code] = 'urw' END +SET [Description] = 'Sop', [Definition] = NULL, [SortOrder] = 6348.00 WHERE [Code] = 'urw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqt', 'Soqotri', NULL, 634.10) END +VALUES ('sqt', 'Soqotri', NULL, 6349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soqotri', [Definition] = NULL, [SortOrder] = 634.10 WHERE [Code] = 'sqt' END +SET [Description] = 'Soqotri', [Definition] = NULL, [SortOrder] = 6349.00 WHERE [Code] = 'sqt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srb', 'Sora', NULL, 634.20) END +VALUES ('srb', 'Sora', NULL, 6350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sora', [Definition] = NULL, [SortOrder] = 634.20 WHERE [Code] = 'srb' END +SET [Description] = 'Sora', [Definition] = NULL, [SortOrder] = 6350.00 WHERE [Code] = 'srb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbh', 'Sori-Harengan', NULL, 634.30) END +VALUES ('sbh', 'Sori-Harengan', NULL, 6351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sori-Harengan', [Definition] = NULL, [SortOrder] = 634.30 WHERE [Code] = 'sbh' END +SET [Description] = 'Sori-Harengan', [Definition] = NULL, [SortOrder] = 6351.00 WHERE [Code] = 'sbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqo', 'Sorkhei', NULL, 634.40) END +VALUES ('sqo', 'Sorkhei', NULL, 6352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sorkhei', [Definition] = NULL, [SortOrder] = 634.40 WHERE [Code] = 'sqo' END +SET [Description] = 'Sorkhei', [Definition] = NULL, [SortOrder] = 6352.00 WHERE [Code] = 'sqo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxo', 'Sorothaptic', NULL, 634.50) END +VALUES ('sxo', 'Sorothaptic', NULL, 6353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sorothaptic', [Definition] = NULL, [SortOrder] = 634.50 WHERE [Code] = 'sxo' END +SET [Description] = 'Sorothaptic', [Definition] = NULL, [SortOrder] = 6353.00 WHERE [Code] = 'sxo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ays') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ays', 'Sorsogon Ayta', NULL, 634.60) END +VALUES ('ays', 'Sorsogon Ayta', NULL, 6354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sorsogon Ayta', [Definition] = NULL, [SortOrder] = 634.60 WHERE [Code] = 'ays' END +SET [Description] = 'Sorsogon Ayta', [Definition] = NULL, [SortOrder] = 6354.00 WHERE [Code] = 'ays' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdk', 'Sos Kundi', NULL, 634.70) END +VALUES ('sdk', 'Sos Kundi', NULL, 6355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sos Kundi', [Definition] = NULL, [SortOrder] = 634.70 WHERE [Code] = 'sdk' END +SET [Description] = 'Sos Kundi', [Definition] = NULL, [SortOrder] = 6355.00 WHERE [Code] = 'sdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krz', 'Sota Kanum', NULL, 634.80) END +VALUES ('krz', 'Sota Kanum', NULL, 6356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sota Kanum', [Definition] = NULL, [SortOrder] = 634.80 WHERE [Code] = 'krz' END +SET [Description] = 'Sota Kanum', [Definition] = NULL, [SortOrder] = 6356.00 WHERE [Code] = 'krz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqq', 'Sou', NULL, 634.90) END +VALUES ('sqq', 'Sou', NULL, 6357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sou', [Definition] = NULL, [SortOrder] = 634.90 WHERE [Code] = 'sqq' END +SET [Description] = 'Sou', [Definition] = NULL, [SortOrder] = 6357.00 WHERE [Code] = 'sqq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlt', 'Sou Nama', NULL, 635.00) END +VALUES ('tlt', 'Sou Nama', NULL, 6358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sou Nama', [Definition] = NULL, [SortOrder] = 635.00 WHERE [Code] = 'tlt' END +SET [Description] = 'Sou Nama', [Definition] = NULL, [SortOrder] = 6358.00 WHERE [Code] = 'tlt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wha', 'Sou Upaa', NULL, 635.10) END +VALUES ('wha', 'Sou Upaa', NULL, 6359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sou Upaa', [Definition] = NULL, [SortOrder] = 635.10 WHERE [Code] = 'wha' END +SET [Description] = 'Sou Upaa', [Definition] = NULL, [SortOrder] = 6359.00 WHERE [Code] = 'wha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfs', 'South African Sign Language', NULL, 635.20) END +VALUES ('sfs', 'South African Sign Language', NULL, 6360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South African Sign Language', [Definition] = NULL, [SortOrder] = 635.20 WHERE [Code] = 'sfs' END +SET [Description] = 'South African Sign Language', [Definition] = NULL, [SortOrder] = 6360.00 WHERE [Code] = 'sfs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aws', 'South Awyu', NULL, 635.30) END +VALUES ('aws', 'South Awyu', NULL, 6361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Awyu', [Definition] = NULL, [SortOrder] = 635.30 WHERE [Code] = 'aws' END +SET [Description] = 'South Awyu', [Definition] = NULL, [SortOrder] = 6361.00 WHERE [Code] = 'aws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azb', 'South Azerbaijani', NULL, 635.40) END +VALUES ('azb', 'South Azerbaijani', NULL, 6362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Azerbaijani', [Definition] = NULL, [SortOrder] = 635.40 WHERE [Code] = 'azb' END +SET [Description] = 'South Azerbaijani', [Definition] = NULL, [SortOrder] = 6362.00 WHERE [Code] = 'azb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quh', 'South Bolivian Quechua', NULL, 635.50) END +VALUES ('quh', 'South Bolivian Quechua', NULL, 6363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Bolivian Quechua', [Definition] = NULL, [SortOrder] = 635.50 WHERE [Code] = 'quh' END +SET [Description] = 'South Bolivian Quechua', [Definition] = NULL, [SortOrder] = 6363.00 WHERE [Code] = 'quh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnl', 'South Central Banda', NULL, 635.60) END +VALUES ('lnl', 'South Central Banda', NULL, 6364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Central Banda', [Definition] = NULL, [SortOrder] = 635.60 WHERE [Code] = 'lnl' END +SET [Description] = 'South Central Banda', [Definition] = NULL, [SortOrder] = 6364.00 WHERE [Code] = 'lnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dib', 'South Central Dinka', NULL, 635.70) END +VALUES ('dib', 'South Central Dinka', NULL, 6365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Central Dinka', [Definition] = NULL, [SortOrder] = 635.70 WHERE [Code] = 'dib' END +SET [Description] = 'South Central Dinka', [Definition] = NULL, [SortOrder] = 6365.00 WHERE [Code] = 'dib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'erk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('erk', 'South Efate', NULL, 635.80) END +VALUES ('erk', 'South Efate', NULL, 6366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Efate', [Definition] = NULL, [SortOrder] = 635.80 WHERE [Code] = 'erk' END +SET [Description] = 'South Efate', [Definition] = NULL, [SortOrder] = 6366.00 WHERE [Code] = 'erk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fal', 'South Fali', NULL, 635.90) END +VALUES ('fal', 'South Fali', NULL, 6367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Fali', [Definition] = NULL, [SortOrder] = 635.90 WHERE [Code] = 'fal' END +SET [Description] = 'South Fali', [Definition] = NULL, [SortOrder] = 6367.00 WHERE [Code] = 'fal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giz', 'South Giziga', NULL, 636.00) END +VALUES ('giz', 'South Giziga', NULL, 6368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Giziga', [Definition] = NULL, [SortOrder] = 636.00 WHERE [Code] = 'giz' END +SET [Description] = 'South Giziga', [Definition] = NULL, [SortOrder] = 6368.00 WHERE [Code] = 'giz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmf', 'South Lembata', NULL, 636.10) END +VALUES ('lmf', 'South Lembata', NULL, 6369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Lembata', [Definition] = NULL, [SortOrder] = 636.10 WHERE [Code] = 'lmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajp', 'South Levantine Arabic', NULL, 636.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Levantine Arabic', [Definition] = NULL, [SortOrder] = 636.20 WHERE [Code] = 'ajp' END +SET [Description] = 'South Lembata', [Definition] = NULL, [SortOrder] = 6369.00 WHERE [Code] = 'lmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqm', 'South Marquesan', NULL, 636.30) END +VALUES ('mqm', 'South Marquesan', NULL, 6370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Marquesan', [Definition] = NULL, [SortOrder] = 636.30 WHERE [Code] = 'mqm' END +SET [Description] = 'South Marquesan', [Definition] = NULL, [SortOrder] = 6370.00 WHERE [Code] = 'mqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kts', 'South Muyu', NULL, 636.40) END +VALUES ('kts', 'South Muyu', NULL, 6371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Muyu', [Definition] = NULL, [SortOrder] = 636.40 WHERE [Code] = 'kts' END +SET [Description] = 'South Muyu', [Definition] = NULL, [SortOrder] = 6371.00 WHERE [Code] = 'kts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbl', 'South Ndebele', NULL, 636.50) END +VALUES ('nbl', 'South Ndebele', NULL, 6372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Ndebele', [Definition] = NULL, [SortOrder] = 636.50 WHERE [Code] = 'nbl' END +SET [Description] = 'South Ndebele', [Definition] = NULL, [SortOrder] = 6372.00 WHERE [Code] = 'nbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxl', 'South Nuaulu', NULL, 636.60) END +VALUES ('nxl', 'South Nuaulu', NULL, 6373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Nuaulu', [Definition] = NULL, [SortOrder] = 636.60 WHERE [Code] = 'nxl' END +SET [Description] = 'South Nuaulu', [Definition] = NULL, [SortOrder] = 6373.00 WHERE [Code] = 'nxl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spx', 'South Picene', NULL, 636.70) END +VALUES ('spx', 'South Picene', NULL, 6374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Picene', [Definition] = NULL, [SortOrder] = 636.70 WHERE [Code] = 'spx' END +SET [Description] = 'South Picene', [Definition] = NULL, [SortOrder] = 6374.00 WHERE [Code] = 'spx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsl', 'South Slavey', NULL, 636.80) END +VALUES ('xsl', 'South Slavey', NULL, 6375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Slavey', [Definition] = NULL, [SortOrder] = 636.80 WHERE [Code] = 'xsl' END +SET [Description] = 'South Slavey', [Definition] = NULL, [SortOrder] = 6375.00 WHERE [Code] = 'xsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omw', 'South Tairora', NULL, 636.90) END +VALUES ('omw', 'South Tairora', NULL, 6376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Tairora', [Definition] = NULL, [SortOrder] = 636.90 WHERE [Code] = 'omw' END +SET [Description] = 'South Tairora', [Definition] = NULL, [SortOrder] = 6376.00 WHERE [Code] = 'omw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpy', 'South Ucayali Ashéninka', NULL, 637.00) END +VALUES ('cpy', 'South Ucayali Ashéninka', NULL, 6377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Ucayali Ashéninka', [Definition] = NULL, [SortOrder] = 637.00 WHERE [Code] = 'cpy' END +SET [Description] = 'South Ucayali Ashéninka', [Definition] = NULL, [SortOrder] = 6377.00 WHERE [Code] = 'cpy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcy', 'South Watut', NULL, 637.10) END +VALUES ('mcy', 'South Watut', NULL, 6378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Watut', [Definition] = NULL, [SortOrder] = 637.10 WHERE [Code] = 'mcy' END +SET [Description] = 'South Watut', [Definition] = NULL, [SortOrder] = 6378.00 WHERE [Code] = 'mcy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sns', 'South West Bay', NULL, 637.20) END +VALUES ('sns', 'South West Bay', NULL, 6379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South West Bay', [Definition] = NULL, [SortOrder] = 637.20 WHERE [Code] = 'sns' END +SET [Description] = 'South West Bay', [Definition] = NULL, [SortOrder] = 6379.00 WHERE [Code] = 'sns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvk', 'Southeast Ambrym', NULL, 637.30) END +VALUES ('tvk', 'Southeast Ambrym', NULL, 6380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Ambrym', [Definition] = NULL, [SortOrder] = 637.30 WHERE [Code] = 'tvk' END +SET [Description] = 'Southeast Ambrym', [Definition] = NULL, [SortOrder] = 6380.00 WHERE [Code] = 'tvk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vbb', 'Southeast Babar', NULL, 637.40) END +VALUES ('vbb', 'Southeast Babar', NULL, 6381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Babar', [Definition] = NULL, [SortOrder] = 637.40 WHERE [Code] = 'vbb' END +SET [Description] = 'Southeast Babar', [Definition] = NULL, [SortOrder] = 6381.00 WHERE [Code] = 'vbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ijs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijs', 'Southeast Ijo', NULL, 637.50) END +VALUES ('ijs', 'Southeast Ijo', NULL, 6382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Ijo', [Definition] = NULL, [SortOrder] = 637.50 WHERE [Code] = 'ijs' END +SET [Description] = 'Southeast Ijo', [Definition] = NULL, [SortOrder] = 6382.00 WHERE [Code] = 'ijs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psi', 'Southeast Pashai', NULL, 637.60) END +VALUES ('psi', 'Southeast Pashai', NULL, 6383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Pashai', [Definition] = NULL, [SortOrder] = 637.60 WHERE [Code] = 'psi' END +SET [Description] = 'Southeast Pashai', [Definition] = NULL, [SortOrder] = 6383.00 WHERE [Code] = 'psi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpf', 'Southeast Tasmanian', NULL, 637.70) END +VALUES ('xpf', 'Southeast Tasmanian', NULL, 6384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Tasmanian', [Definition] = NULL, [SortOrder] = 637.70 WHERE [Code] = 'xpf' END +SET [Description] = 'Southeast Tasmanian', [Definition] = NULL, [SortOrder] = 6384.00 WHERE [Code] = 'xpf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dks', 'Southeastern Dinka', NULL, 637.80) END +VALUES ('dks', 'Southeastern Dinka', NULL, 6385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Dinka', [Definition] = NULL, [SortOrder] = 637.80 WHERE [Code] = 'dks' END +SET [Description] = 'Southeastern Dinka', [Definition] = NULL, [SortOrder] = 6385.00 WHERE [Code] = 'dks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpd', 'Southeastern Ixtlán Zapotec', NULL, 637.90) END +VALUES ('zpd', 'Southeastern Ixtlán Zapotec', NULL, 6386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Ixtlán Zapotec', [Definition] = NULL, [SortOrder] = 637.90 WHERE [Code] = 'zpd' END +SET [Description] = 'Southeastern Ixtlán Zapotec', [Definition] = NULL, [SortOrder] = 6386.00 WHERE [Code] = 'zpd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nit', 'Southeastern Kolami', NULL, 638.00) END +VALUES ('nit', 'Southeastern Kolami', NULL, 6387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Kolami', [Definition] = NULL, [SortOrder] = 638.00 WHERE [Code] = 'nit' END +SET [Description] = 'Southeastern Kolami', [Definition] = NULL, [SortOrder] = 6387.00 WHERE [Code] = 'nit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxy', 'Southeastern Nochixtlán Mixtec', NULL, 638.10) END +VALUES ('mxy', 'Southeastern Nochixtlán Mixtec', NULL, 6388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Nochixtlán Mixtec', [Definition] = NULL, [SortOrder] = 638.10 WHERE [Code] = 'mxy' END +SET [Description] = 'Southeastern Nochixtlán Mixtec', [Definition] = NULL, [SortOrder] = 6388.00 WHERE [Code] = 'mxy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pom', 'Southeastern Pomo', NULL, 638.20) END +VALUES ('pom', 'Southeastern Pomo', NULL, 6389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Pomo', [Definition] = NULL, [SortOrder] = 638.20 WHERE [Code] = 'pom' END +SET [Description] = 'Southeastern Pomo', [Definition] = NULL, [SortOrder] = 6389.00 WHERE [Code] = 'pom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npl', 'Southeastern Puebla Nahuatl', NULL, 638.30) END +VALUES ('npl', 'Southeastern Puebla Nahuatl', NULL, 6390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 638.30 WHERE [Code] = 'npl' END +SET [Description] = 'Southeastern Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 6390.00 WHERE [Code] = 'npl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcu', 'Southeastern Tarahumara', NULL, 638.40) END +VALUES ('tcu', 'Southeastern Tarahumara', NULL, 6391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Tarahumara', [Definition] = NULL, [SortOrder] = 638.40 WHERE [Code] = 'tcu' END +SET [Description] = 'Southeastern Tarahumara', [Definition] = NULL, [SortOrder] = 6391.00 WHERE [Code] = 'tcu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stp', 'Southeastern Tepehuan', NULL, 638.50) END +VALUES ('stp', 'Southeastern Tepehuan', NULL, 6392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Tepehuan', [Definition] = NULL, [SortOrder] = 638.50 WHERE [Code] = 'stp' END +SET [Description] = 'Southeastern Tepehuan', [Definition] = NULL, [SortOrder] = 6392.00 WHERE [Code] = 'stp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agy', 'Southern Alta', NULL, 638.60) END +VALUES ('agy', 'Southern Alta', NULL, 6393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Alta', [Definition] = NULL, [SortOrder] = 638.60 WHERE [Code] = 'agy' END +SET [Description] = 'Southern Alta', [Definition] = NULL, [SortOrder] = 6393.00 WHERE [Code] = 'agy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alt', 'Southern Altai', NULL, 638.70) END +VALUES ('alt', 'Southern Altai', NULL, 6394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Altai', [Definition] = NULL, [SortOrder] = 638.70 WHERE [Code] = 'alt' END +SET [Description] = 'Southern Altai', [Definition] = NULL, [SortOrder] = 6394.00 WHERE [Code] = 'alt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ams') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ams', 'Southern Amami-Oshima', NULL, 638.80) END +VALUES ('ams', 'Southern Amami-Oshima', NULL, 6395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Amami-Oshima', [Definition] = NULL, [SortOrder] = 638.80 WHERE [Code] = 'ams' END +SET [Description] = 'Southern Amami-Oshima', [Definition] = NULL, [SortOrder] = 6395.00 WHERE [Code] = 'ams' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayc', 'Southern Aymara', NULL, 638.90) END +VALUES ('ayc', 'Southern Aymara', NULL, 6396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Aymara', [Definition] = NULL, [SortOrder] = 638.90 WHERE [Code] = 'ayc' END +SET [Description] = 'Southern Aymara', [Definition] = NULL, [SortOrder] = 6396.00 WHERE [Code] = 'ayc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfs', 'Southern Bai', NULL, 639.00) END +VALUES ('bfs', 'Southern Bai', NULL, 6397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Bai', [Definition] = NULL, [SortOrder] = 639.00 WHERE [Code] = 'bfs' END +SET [Description] = 'Southern Bai', [Definition] = NULL, [SortOrder] = 6397.00 WHERE [Code] = 'bfs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcc', 'Southern Balochi', NULL, 639.10) END +VALUES ('bcc', 'Southern Balochi', NULL, 6398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Balochi', [Definition] = NULL, [SortOrder] = 639.10 WHERE [Code] = 'bcc' END +SET [Description] = 'Southern Balochi', [Definition] = NULL, [SortOrder] = 6398.00 WHERE [Code] = 'bcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzc', 'Southern Betsimisaraka Malagasy', NULL, 639.20) END +VALUES ('bzc', 'Southern Betsimisaraka Malagasy', NULL, 6399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Betsimisaraka Malagasy', [Definition] = NULL, [SortOrder] = 639.20 WHERE [Code] = 'bzc' END +SET [Description] = 'Southern Betsimisaraka Malagasy', [Definition] = NULL, [SortOrder] = 6399.00 WHERE [Code] = 'bzc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtw', 'Southern Binukidnon', NULL, 639.30) END +VALUES ('mtw', 'Southern Binukidnon', NULL, 6400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Binukidnon', [Definition] = NULL, [SortOrder] = 639.30 WHERE [Code] = 'mtw' END +SET [Description] = 'Southern Binukidnon', [Definition] = NULL, [SortOrder] = 6400.00 WHERE [Code] = 'mtw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biv', 'Southern Birifor', NULL, 639.40) END +VALUES ('biv', 'Southern Birifor', NULL, 6401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Birifor', [Definition] = NULL, [SortOrder] = 639.40 WHERE [Code] = 'biv' END +SET [Description] = 'Southern Birifor', [Definition] = NULL, [SortOrder] = 6401.00 WHERE [Code] = 'biv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwq', 'Southern Bobo Madaré', NULL, 639.50) END +VALUES ('bwq', 'Southern Bobo Madaré', NULL, 6402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Bobo Madaré', [Definition] = NULL, [SortOrder] = 639.50 WHERE [Code] = 'bwq' END +SET [Description] = 'Southern Bobo Madaré', [Definition] = NULL, [SortOrder] = 6402.00 WHERE [Code] = 'bwq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obk', 'Southern Bontok', NULL, 639.60) END +VALUES ('obk', 'Southern Bontok', NULL, 6403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Bontok', [Definition] = NULL, [SortOrder] = 639.60 WHERE [Code] = 'obk' END +SET [Description] = 'Southern Bontok', [Definition] = NULL, [SortOrder] = 6403.00 WHERE [Code] = 'obk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caf', 'Southern Carrier', NULL, 639.70) END +VALUES ('caf', 'Southern Carrier', NULL, 6404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Carrier', [Definition] = NULL, [SortOrder] = 639.70 WHERE [Code] = 'caf' END +SET [Description] = 'Southern Carrier', [Definition] = NULL, [SortOrder] = 6404.00 WHERE [Code] = 'caf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bln', 'Southern Catanduanes Bikol', NULL, 639.80) END +VALUES ('bln', 'Southern Catanduanes Bikol', NULL, 6405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Catanduanes Bikol', [Definition] = NULL, [SortOrder] = 639.80 WHERE [Code] = 'bln' END +SET [Description] = 'Southern Catanduanes Bikol', [Definition] = NULL, [SortOrder] = 6405.00 WHERE [Code] = 'bln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxo', 'Southern Conchucos Ancash Quechua', NULL, 639.90) END +VALUES ('qxo', 'Southern Conchucos Ancash Quechua', NULL, 6406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Conchucos Ancash Quechua', [Definition] = NULL, [SortOrder] = 639.90 WHERE [Code] = 'qxo' END +SET [Description] = 'Southern Conchucos Ancash Quechua', [Definition] = NULL, [SortOrder] = 6406.00 WHERE [Code] = 'qxo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dga', 'Southern Dagaare', NULL, 640.00) END +VALUES ('dga', 'Southern Dagaare', NULL, 6407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Dagaare', [Definition] = NULL, [SortOrder] = 640.00 WHERE [Code] = 'dga' END +SET [Description] = 'Southern Dagaare', [Definition] = NULL, [SortOrder] = 6407.00 WHERE [Code] = 'dga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmc', 'Southern Dong', NULL, 640.10) END +VALUES ('kmc', 'Southern Dong', NULL, 6408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Dong', [Definition] = NULL, [SortOrder] = 640.10 WHERE [Code] = 'kmc' END +SET [Description] = 'Southern Dong', [Definition] = NULL, [SortOrder] = 6408.00 WHERE [Code] = 'kmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crj', 'Southern East Cree', NULL, 640.20) END +VALUES ('crj', 'Southern East Cree', NULL, 6409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern East Cree', [Definition] = NULL, [SortOrder] = 640.20 WHERE [Code] = 'crj' END +SET [Description] = 'Southern East Cree', [Definition] = NULL, [SortOrder] = 6409.00 WHERE [Code] = 'crj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghe', 'Southern Ghale', NULL, 640.30) END +VALUES ('ghe', 'Southern Ghale', NULL, 6410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ghale', [Definition] = NULL, [SortOrder] = 640.30 WHERE [Code] = 'ghe' END +SET [Description] = 'Southern Ghale', [Definition] = NULL, [SortOrder] = 6410.00 WHERE [Code] = 'ghe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grj', 'Southern Grebo', NULL, 640.40) END +VALUES ('grj', 'Southern Grebo', NULL, 6411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Grebo', [Definition] = NULL, [SortOrder] = 640.40 WHERE [Code] = 'grj' END +SET [Description] = 'Southern Grebo', [Definition] = NULL, [SortOrder] = 6411.00 WHERE [Code] = 'grj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmy', 'Southern Guiyang Hmong', NULL, 640.50) END +VALUES ('hmy', 'Southern Guiyang Hmong', NULL, 6412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 640.50 WHERE [Code] = 'hmy' END +SET [Description] = 'Southern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 6412.00 WHERE [Code] = 'hmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hax', 'Southern Haida', NULL, 640.60) END +VALUES ('hax', 'Southern Haida', NULL, 6413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Haida', [Definition] = NULL, [SortOrder] = 640.60 WHERE [Code] = 'hax' END +SET [Description] = 'Southern Haida', [Definition] = NULL, [SortOrder] = 6413.00 WHERE [Code] = 'hax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnd', 'Southern Hindko', NULL, 640.70) END +VALUES ('hnd', 'Southern Hindko', NULL, 6414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Hindko', [Definition] = NULL, [SortOrder] = 640.70 WHERE [Code] = 'hnd' END +SET [Description] = 'Southern Hindko', [Definition] = NULL, [SortOrder] = 6414.00 WHERE [Code] = 'hnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxk', 'Southern Kalapuya', NULL, 640.80) END +VALUES ('sxk', 'Southern Kalapuya', NULL, 6415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kalapuya', [Definition] = NULL, [SortOrder] = 640.80 WHERE [Code] = 'sxk' END +SET [Description] = 'Southern Kalapuya', [Definition] = NULL, [SortOrder] = 6415.00 WHERE [Code] = 'sxk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksc', 'Southern Kalinga', NULL, 640.90) END +VALUES ('ksc', 'Southern Kalinga', NULL, 6416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kalinga', [Definition] = NULL, [SortOrder] = 640.90 WHERE [Code] = 'ksc' END +SET [Description] = 'Southern Kalinga', [Definition] = NULL, [SortOrder] = 6416.00 WHERE [Code] = 'ksc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sct', 'Southern Katang', NULL, 641.00) END +VALUES ('sct', 'Southern Katang', NULL, 6417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Katang', [Definition] = NULL, [SortOrder] = 641.00 WHERE [Code] = 'sct' END +SET [Description] = 'Southern Katang', [Definition] = NULL, [SortOrder] = 6417.00 WHERE [Code] = 'sct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kss', 'Southern Kisi', NULL, 641.10) END +VALUES ('kss', 'Southern Kisi', NULL, 6418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kisi', [Definition] = NULL, [SortOrder] = 641.10 WHERE [Code] = 'kss' END +SET [Description] = 'Southern Kisi', [Definition] = NULL, [SortOrder] = 6418.00 WHERE [Code] = 'kss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjd', 'Southern Kiwai', NULL, 641.20) END +VALUES ('kjd', 'Southern Kiwai', NULL, 6419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kiwai', [Definition] = NULL, [SortOrder] = 641.20 WHERE [Code] = 'kjd' END +SET [Description] = 'Southern Kiwai', [Definition] = NULL, [SortOrder] = 6419.00 WHERE [Code] = 'kjd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdh', 'Southern Kurdish', NULL, 641.30) END +VALUES ('sdh', 'Southern Kurdish', NULL, 6420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kurdish', [Definition] = NULL, [SortOrder] = 641.30 WHERE [Code] = 'sdh' END +SET [Description] = 'Southern Kurdish', [Definition] = NULL, [SortOrder] = 6420.00 WHERE [Code] = 'sdh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysp', 'Southern Lolopo', NULL, 641.40) END +VALUES ('ysp', 'Southern Lolopo', NULL, 6421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Lolopo', [Definition] = NULL, [SortOrder] = 641.40 WHERE [Code] = 'ysp' END +SET [Description] = 'Southern Lolopo', [Definition] = NULL, [SortOrder] = 6421.00 WHERE [Code] = 'ysp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luz', 'Southern Luri', NULL, 641.50) END +VALUES ('luz', 'Southern Luri', NULL, 6422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Luri', [Definition] = NULL, [SortOrder] = 641.50 WHERE [Code] = 'luz' END +SET [Description] = 'Southern Luri', [Definition] = NULL, [SortOrder] = 6422.00 WHERE [Code] = 'luz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snm', 'Southern Ma''di', NULL, 641.60) END +VALUES ('snm', 'Southern Ma''di', NULL, 6423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ma''di', [Definition] = NULL, [SortOrder] = 641.60 WHERE [Code] = 'snm' END +SET [Description] = 'Southern Ma''di', [Definition] = NULL, [SortOrder] = 6423.00 WHERE [Code] = 'snm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hma', 'Southern Mashan Hmong', NULL, 641.70) END +VALUES ('hma', 'Southern Mashan Hmong', NULL, 6424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Mashan Hmong', [Definition] = NULL, [SortOrder] = 641.70 WHERE [Code] = 'hma' END +SET [Description] = 'Southern Mashan Hmong', [Definition] = NULL, [SortOrder] = 6424.00 WHERE [Code] = 'hma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnn', 'Southern Mnong', NULL, 641.80) END +VALUES ('mnn', 'Southern Mnong', NULL, 6425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Mnong', [Definition] = NULL, [SortOrder] = 641.80 WHERE [Code] = 'mnn' END +SET [Description] = 'Southern Mnong', [Definition] = NULL, [SortOrder] = 6425.00 WHERE [Code] = 'mnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymc', 'Southern Muji', NULL, 641.90) END +VALUES ('ymc', 'Southern Muji', NULL, 6426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Muji', [Definition] = NULL, [SortOrder] = 641.90 WHERE [Code] = 'ymc' END +SET [Description] = 'Southern Muji', [Definition] = NULL, [SortOrder] = 6426.00 WHERE [Code] = 'ymc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqg', 'Southern Nago', NULL, 642.00) END +VALUES ('nqg', 'Southern Nago', NULL, 6427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nago', [Definition] = NULL, [SortOrder] = 642.00 WHERE [Code] = 'nqg' END +SET [Description] = 'Southern Nago', [Definition] = NULL, [SortOrder] = 6427.00 WHERE [Code] = 'nqg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nab', 'Southern Nambikuára', NULL, 642.10) END +VALUES ('nab', 'Southern Nambikuára', NULL, 6428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nambikuára', [Definition] = NULL, [SortOrder] = 642.10 WHERE [Code] = 'nab' END +SET [Description] = 'Southern Nambikuára', [Definition] = NULL, [SortOrder] = 6428.00 WHERE [Code] = 'nab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbw', 'Southern Ngbandi', NULL, 642.20) END +VALUES ('nbw', 'Southern Ngbandi', NULL, 6429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ngbandi', [Definition] = NULL, [SortOrder] = 642.20 WHERE [Code] = 'nbw' END +SET [Description] = 'Southern Ngbandi', [Definition] = NULL, [SortOrder] = 6429.00 WHERE [Code] = 'nbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nik', 'Southern Nicobarese', NULL, 642.30) END +VALUES ('nik', 'Southern Nicobarese', NULL, 6430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nicobarese', [Definition] = NULL, [SortOrder] = 642.30 WHERE [Code] = 'nik' END +SET [Description] = 'Southern Nicobarese', [Definition] = NULL, [SortOrder] = 6430.00 WHERE [Code] = 'nik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsd', 'Southern Nisu', NULL, 642.40) END +VALUES ('nsd', 'Southern Nisu', NULL, 6431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nisu', [Definition] = NULL, [SortOrder] = 642.40 WHERE [Code] = 'nsd' END +SET [Description] = 'Southern Nisu', [Definition] = NULL, [SortOrder] = 6431.00 WHERE [Code] = 'nsd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnw', 'Southern Nuni', NULL, 642.50) END +VALUES ('nnw', 'Southern Nuni', NULL, 6432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nuni', [Definition] = NULL, [SortOrder] = 642.50 WHERE [Code] = 'nnw' END +SET [Description] = 'Southern Nuni', [Definition] = NULL, [SortOrder] = 6432.00 WHERE [Code] = 'nnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'css') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('css', 'Southern Ohlone', NULL, 642.60) END +VALUES ('css', 'Southern Ohlone', NULL, 6433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ohlone', [Definition] = NULL, [SortOrder] = 642.60 WHERE [Code] = 'css' END +SET [Description] = 'Southern Ohlone', [Definition] = NULL, [SortOrder] = 6433.00 WHERE [Code] = 'css' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osu', 'Southern One', NULL, 642.70) END +VALUES ('osu', 'Southern One', NULL, 6434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern One', [Definition] = NULL, [SortOrder] = 642.70 WHERE [Code] = 'osu' END +SET [Description] = 'Southern One', [Definition] = NULL, [SortOrder] = 6434.00 WHERE [Code] = 'osu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmz', 'Southern Pame', NULL, 642.80) END +VALUES ('pmz', 'Southern Pame', NULL, 6435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pame', [Definition] = NULL, [SortOrder] = 642.80 WHERE [Code] = 'pmz' END +SET [Description] = 'Southern Pame', [Definition] = NULL, [SortOrder] = 6435.00 WHERE [Code] = 'pmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbt', 'Southern Pashto', NULL, 642.90) END +VALUES ('pbt', 'Southern Pashto', NULL, 6436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pashto', [Definition] = NULL, [SortOrder] = 642.90 WHERE [Code] = 'pbt' END +SET [Description] = 'Southern Pashto', [Definition] = NULL, [SortOrder] = 6436.00 WHERE [Code] = 'pbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qup', 'Southern Pastaza Quechua', NULL, 643.00) END +VALUES ('qup', 'Southern Pastaza Quechua', NULL, 6437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pastaza Quechua', [Definition] = NULL, [SortOrder] = 643.00 WHERE [Code] = 'qup' END +SET [Description] = 'Southern Pastaza Quechua', [Definition] = NULL, [SortOrder] = 6437.00 WHERE [Code] = 'qup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csp', 'Southern Ping Chinese', NULL, 643.10) END +VALUES ('csp', 'Southern Ping Chinese', NULL, 6438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ping Chinese', [Definition] = NULL, [SortOrder] = 643.10 WHERE [Code] = 'csp' END +SET [Description] = 'Southern Ping Chinese', [Definition] = NULL, [SortOrder] = 6438.00 WHERE [Code] = 'csp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peq', 'Southern Pomo', NULL, 643.20) END +VALUES ('peq', 'Southern Pomo', NULL, 6439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pomo', [Definition] = NULL, [SortOrder] = 643.20 WHERE [Code] = 'peq' END +SET [Description] = 'Southern Pomo', [Definition] = NULL, [SortOrder] = 6439.00 WHERE [Code] = 'peq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mit', 'Southern Puebla Mixtec', NULL, 643.30) END +VALUES ('mit', 'Southern Puebla Mixtec', NULL, 6440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Puebla Mixtec', [Definition] = NULL, [SortOrder] = 643.30 WHERE [Code] = 'mit' END +SET [Description] = 'Southern Puebla Mixtec', [Definition] = NULL, [SortOrder] = 6440.00 WHERE [Code] = 'mit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slh', 'Southern Puget Sound Salish', NULL, 643.40) END +VALUES ('slh', 'Southern Puget Sound Salish', NULL, 6441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Puget Sound Salish', [Definition] = NULL, [SortOrder] = 643.40 WHERE [Code] = 'slh' END +SET [Description] = 'Southern Puget Sound Salish', [Definition] = NULL, [SortOrder] = 6441.00 WHERE [Code] = 'slh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmj', 'Southern Pumi', NULL, 643.50) END +VALUES ('pmj', 'Southern Pumi', NULL, 6442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pumi', [Definition] = NULL, [SortOrder] = 643.50 WHERE [Code] = 'pmj' END +SET [Description] = 'Southern Pumi', [Definition] = NULL, [SortOrder] = 6442.00 WHERE [Code] = 'pmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hms', 'Southern Qiandong Miao', NULL, 643.60) END +VALUES ('hms', 'Southern Qiandong Miao', NULL, 6443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Qiandong Miao', [Definition] = NULL, [SortOrder] = 643.60 WHERE [Code] = 'hms' END +SET [Description] = 'Southern Qiandong Miao', [Definition] = NULL, [SortOrder] = 6443.00 WHERE [Code] = 'hms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxs', 'Southern Qiang', NULL, 643.70) END +VALUES ('qxs', 'Southern Qiang', NULL, 6444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Qiang', [Definition] = NULL, [SortOrder] = 643.70 WHERE [Code] = 'qxs' END +SET [Description] = 'Southern Qiang', [Definition] = NULL, [SortOrder] = 6444.00 WHERE [Code] = 'qxs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nre', 'Southern Rengma Naga', NULL, 643.80) END +VALUES ('nre', 'Southern Rengma Naga', NULL, 6445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Rengma Naga', [Definition] = NULL, [SortOrder] = 643.80 WHERE [Code] = 'nre' END +SET [Description] = 'Southern Rengma Naga', [Definition] = NULL, [SortOrder] = 6445.00 WHERE [Code] = 'nre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsr', 'Southern Rincon Zapotec', NULL, 643.90) END +VALUES ('zsr', 'Southern Rincon Zapotec', NULL, 6446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Rincon Zapotec', [Definition] = NULL, [SortOrder] = 643.90 WHERE [Code] = 'zsr' END +SET [Description] = 'Southern Rincon Zapotec', [Definition] = NULL, [SortOrder] = 6446.00 WHERE [Code] = 'zsr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgs', 'Southern Roglai', NULL, 644.00) END +VALUES ('rgs', 'Southern Roglai', NULL, 6447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Roglai', [Definition] = NULL, [SortOrder] = 644.00 WHERE [Code] = 'rgs' END +SET [Description] = 'Southern Roglai', [Definition] = NULL, [SortOrder] = 6447.00 WHERE [Code] = 'rgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssb', 'Southern Sama', NULL, 644.10) END +VALUES ('ssb', 'Southern Sama', NULL, 6448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sama', [Definition] = NULL, [SortOrder] = 644.10 WHERE [Code] = 'ssb' END +SET [Description] = 'Southern Sama', [Definition] = NULL, [SortOrder] = 6448.00 WHERE [Code] = 'ssb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sma', 'Southern Sami', NULL, 644.20) END +VALUES ('sma', 'Southern Sami', NULL, 6449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sami', [Definition] = NULL, [SortOrder] = 644.20 WHERE [Code] = 'sma' END +SET [Description] = 'Southern Sami', [Definition] = NULL, [SortOrder] = 6449.00 WHERE [Code] = 'sma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbd', 'Southern Samo', NULL, 644.30) END +VALUES ('sbd', 'Southern Samo', NULL, 6450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Samo', [Definition] = NULL, [SortOrder] = 644.30 WHERE [Code] = 'sbd' END +SET [Description] = 'Southern Samo', [Definition] = NULL, [SortOrder] = 6450.00 WHERE [Code] = 'sbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skd', 'Southern Sierra Miwok', NULL, 644.40) END +VALUES ('skd', 'Southern Sierra Miwok', NULL, 6451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sierra Miwok', [Definition] = NULL, [SortOrder] = 644.40 WHERE [Code] = 'skd' END +SET [Description] = 'Southern Sierra Miwok', [Definition] = NULL, [SortOrder] = 6451.00 WHERE [Code] = 'skd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srv', 'Southern Sorsoganon', NULL, 644.50) END +VALUES ('srv', 'Southern Sorsoganon', NULL, 6452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sorsoganon', [Definition] = NULL, [SortOrder] = 644.50 WHERE [Code] = 'srv' END +SET [Description] = 'Southern Sorsoganon', [Definition] = NULL, [SortOrder] = 6452.00 WHERE [Code] = 'srv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sot', 'Southern Sotho', NULL, 644.60) END +VALUES ('sot', 'Southern Sotho', NULL, 6453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sotho', [Definition] = NULL, [SortOrder] = 644.60 WHERE [Code] = 'sot' END +SET [Description] = 'Southern Sotho', [Definition] = NULL, [SortOrder] = 6453.00 WHERE [Code] = 'sot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laa', 'Southern Subanen', NULL, 644.70) END +VALUES ('laa', 'Southern Subanen', NULL, 6454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Subanen', [Definition] = NULL, [SortOrder] = 644.70 WHERE [Code] = 'laa' END +SET [Description] = 'Southern Subanen', [Definition] = NULL, [SortOrder] = 6454.00 WHERE [Code] = 'laa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sou', 'Southern Thai', NULL, 644.80) END +VALUES ('sou', 'Southern Thai', NULL, 6455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Thai', [Definition] = NULL, [SortOrder] = 644.80 WHERE [Code] = 'sou' END +SET [Description] = 'Southern Thai', [Definition] = NULL, [SortOrder] = 6455.00 WHERE [Code] = 'sou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itd', 'Southern Tidung', NULL, 644.90) END +VALUES ('itd', 'Southern Tidung', NULL, 6456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Tidung', [Definition] = NULL, [SortOrder] = 644.90 WHERE [Code] = 'itd' END +SET [Description] = 'Southern Tidung', [Definition] = NULL, [SortOrder] = 6456.00 WHERE [Code] = 'itd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tix', 'Southern Tiwa', NULL, 645.00) END +VALUES ('tix', 'Southern Tiwa', NULL, 6457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Tiwa', [Definition] = NULL, [SortOrder] = 645.00 WHERE [Code] = 'tix' END +SET [Description] = 'Southern Tiwa', [Definition] = NULL, [SortOrder] = 6457.00 WHERE [Code] = 'tix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wib', 'Southern Toussian', NULL, 645.10) END +VALUES ('wib', 'Southern Toussian', NULL, 6458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Toussian', [Definition] = NULL, [SortOrder] = 645.10 WHERE [Code] = 'wib' END +SET [Description] = 'Southern Toussian', [Definition] = NULL, [SortOrder] = 6458.00 WHERE [Code] = 'wib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjs', 'Southern Tujia', NULL, 645.20) END +VALUES ('tjs', 'Southern Tujia', NULL, 6459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Tujia', [Definition] = NULL, [SortOrder] = 645.20 WHERE [Code] = 'tjs' END +SET [Description] = 'Southern Tujia', [Definition] = NULL, [SortOrder] = 6459.00 WHERE [Code] = 'tjs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tce', 'Southern Tutchone', NULL, 645.30) END +VALUES ('tce', 'Southern Tutchone', NULL, 6460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Tutchone', [Definition] = NULL, [SortOrder] = 645.30 WHERE [Code] = 'tce' END +SET [Description] = 'Southern Tutchone', [Definition] = NULL, [SortOrder] = 6460.00 WHERE [Code] = 'tce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uzs', 'Southern Uzbek', NULL, 645.40) END +VALUES ('uzs', 'Southern Uzbek', NULL, 6461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Uzbek', [Definition] = NULL, [SortOrder] = 645.40 WHERE [Code] = 'uzs' END +SET [Description] = 'Southern Uzbek', [Definition] = NULL, [SortOrder] = 6461.00 WHERE [Code] = 'uzs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrr', 'Southern Yamphu', NULL, 645.50) END +VALUES ('lrr', 'Southern Yamphu', NULL, 6462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Yamphu', [Definition] = NULL, [SortOrder] = 645.50 WHERE [Code] = 'lrr' END +SET [Description] = 'Southern Yamphu', [Definition] = NULL, [SortOrder] = 6462.00 WHERE [Code] = 'lrr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yux', 'Southern Yukaghir', NULL, 645.60) END +VALUES ('yux', 'Southern Yukaghir', NULL, 6463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Yukaghir', [Definition] = NULL, [SortOrder] = 645.60 WHERE [Code] = 'yux' END +SET [Description] = 'Southern Yukaghir', [Definition] = NULL, [SortOrder] = 6463.00 WHERE [Code] = 'yux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gso', 'Southwest Gbaya', NULL, 645.70) END +VALUES ('gso', 'Southwest Gbaya', NULL, 6464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwest Gbaya', [Definition] = NULL, [SortOrder] = 645.70 WHERE [Code] = 'gso' END +SET [Description] = 'Southwest Gbaya', [Definition] = NULL, [SortOrder] = 6464.00 WHERE [Code] = 'gso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plv', 'Southwest Palawano', NULL, 645.80) END +VALUES ('plv', 'Southwest Palawano', NULL, 6465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwest Palawano', [Definition] = NULL, [SortOrder] = 645.80 WHERE [Code] = 'plv' END +SET [Description] = 'Southwest Palawano', [Definition] = NULL, [SortOrder] = 6465.00 WHERE [Code] = 'plv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psh', 'Southwest Pashai', NULL, 645.90) END +VALUES ('psh', 'Southwest Pashai', NULL, 6466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwest Pashai', [Definition] = NULL, [SortOrder] = 645.90 WHERE [Code] = 'psh' END +SET [Description] = 'Southwest Pashai', [Definition] = NULL, [SortOrder] = 6466.00 WHERE [Code] = 'psh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwi', 'Southwest Tanna', NULL, 646.00) END +VALUES ('nwi', 'Southwest Tanna', NULL, 6467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwest Tanna', [Definition] = NULL, [SortOrder] = 646.00 WHERE [Code] = 'nwi' END +SET [Description] = 'Southwest Tanna', [Definition] = NULL, [SortOrder] = 6467.00 WHERE [Code] = 'nwi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vbk', 'Southwestern Bontok', NULL, 646.10) END +VALUES ('vbk', 'Southwestern Bontok', NULL, 6468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Bontok', [Definition] = NULL, [SortOrder] = 646.10 WHERE [Code] = 'vbk' END +SET [Description] = 'Southwestern Bontok', [Definition] = NULL, [SortOrder] = 6468.00 WHERE [Code] = 'vbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dik', 'Southwestern Dinka', NULL, 646.20) END +VALUES ('dik', 'Southwestern Dinka', NULL, 6469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Dinka', [Definition] = NULL, [SortOrder] = 646.20 WHERE [Code] = 'dik' END +SET [Description] = 'Southwestern Dinka', [Definition] = NULL, [SortOrder] = 6469.00 WHERE [Code] = 'dik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fay', 'Southwestern Fars', NULL, 646.30) END +VALUES ('fay', 'Southwestern Fars', NULL, 6470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Fars', [Definition] = NULL, [SortOrder] = 646.30 WHERE [Code] = 'fay' END +SET [Description] = 'Southwestern Fars', [Definition] = NULL, [SortOrder] = 6470.00 WHERE [Code] = 'fay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmg', 'Southwestern Guiyang Hmong', NULL, 646.40) END +VALUES ('hmg', 'Southwestern Guiyang Hmong', NULL, 6471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 646.40 WHERE [Code] = 'hmg' END +SET [Description] = 'Southwestern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 6471.00 WHERE [Code] = 'hmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmh', 'Southwestern Huishui Hmong', NULL, 646.50) END +VALUES ('hmh', 'Southwestern Huishui Hmong', NULL, 6472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Huishui Hmong', [Definition] = NULL, [SortOrder] = 646.50 WHERE [Code] = 'hmh' END +SET [Description] = 'Southwestern Huishui Hmong', [Definition] = NULL, [SortOrder] = 6472.00 WHERE [Code] = 'hmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsv', 'Southwestern Nisu', NULL, 646.60) END +VALUES ('nsv', 'Southwestern Nisu', NULL, 6473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Nisu', [Definition] = NULL, [SortOrder] = 646.60 WHERE [Code] = 'nsv' END +SET [Description] = 'Southwestern Nisu', [Definition] = NULL, [SortOrder] = 6473.00 WHERE [Code] = 'nsv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twr', 'Southwestern Tarahumara', NULL, 646.70) END +VALUES ('twr', 'Southwestern Tarahumara', NULL, 6474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Tarahumara', [Definition] = NULL, [SortOrder] = 646.70 WHERE [Code] = 'twr' END +SET [Description] = 'Southwestern Tarahumara', [Definition] = NULL, [SortOrder] = 6474.00 WHERE [Code] = 'twr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpx', 'Southwestern Tasmanian', NULL, 646.80) END +VALUES ('xpx', 'Southwestern Tasmanian', NULL, 6475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Tasmanian', [Definition] = NULL, [SortOrder] = 646.80 WHERE [Code] = 'xpx' END +SET [Description] = 'Southwestern Tasmanian', [Definition] = NULL, [SortOrder] = 6475.00 WHERE [Code] = 'xpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tla', 'Southwestern Tepehuan', NULL, 646.90) END +VALUES ('tla', 'Southwestern Tepehuan', NULL, 6476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Tepehuan', [Definition] = NULL, [SortOrder] = 646.90 WHERE [Code] = 'tla' END +SET [Description] = 'Southwestern Tepehuan', [Definition] = NULL, [SortOrder] = 6476.00 WHERE [Code] = 'tla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meh', 'Southwestern Tlaxiaco Mixtec', NULL, 647.00) END +VALUES ('meh', 'Southwestern Tlaxiaco Mixtec', NULL, 6477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Tlaxiaco Mixtec', [Definition] = NULL, [SortOrder] = 647.00 WHERE [Code] = 'meh' END +SET [Description] = 'Southwestern Tlaxiaco Mixtec', [Definition] = NULL, [SortOrder] = 6477.00 WHERE [Code] = 'meh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sww', 'Sowa', NULL, 647.10) END +VALUES ('sww', 'Sowa', NULL, 6478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sowa', [Definition] = NULL, [SortOrder] = 647.10 WHERE [Code] = 'sww' END +SET [Description] = 'Sowa', [Definition] = NULL, [SortOrder] = 6478.00 WHERE [Code] = 'sww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sow', 'Sowanda', NULL, 647.20) END +VALUES ('sow', 'Sowanda', NULL, 6479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sowanda', [Definition] = NULL, [SortOrder] = 647.20 WHERE [Code] = 'sow' END +SET [Description] = 'Sowanda', [Definition] = NULL, [SortOrder] = 6479.00 WHERE [Code] = 'sow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmp', 'Soyaltepec Mazatec', NULL, 647.30) END +VALUES ('vmp', 'Soyaltepec Mazatec', NULL, 6480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soyaltepec Mazatec', [Definition] = NULL, [SortOrder] = 647.30 WHERE [Code] = 'vmp' END +SET [Description] = 'Soyaltepec Mazatec', [Definition] = NULL, [SortOrder] = 6480.00 WHERE [Code] = 'vmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmq', 'Soyaltepec Mixtec', NULL, 647.40) END +VALUES ('vmq', 'Soyaltepec Mixtec', NULL, 6481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soyaltepec Mixtec', [Definition] = NULL, [SortOrder] = 647.40 WHERE [Code] = 'vmq' END +SET [Description] = 'Soyaltepec Mixtec', [Definition] = NULL, [SortOrder] = 6481.00 WHERE [Code] = 'vmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spa', 'Spanish', NULL, 647.50) END +VALUES ('spa', 'Spanish', NULL, 6482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Spanish', [Definition] = NULL, [SortOrder] = 647.50 WHERE [Code] = 'spa' END +SET [Description] = 'Spanish', [Definition] = NULL, [SortOrder] = 6482.00 WHERE [Code] = 'spa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssp', 'Spanish Sign Language', NULL, 647.60) END +VALUES ('ssp', 'Spanish Sign Language', NULL, 6483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Spanish Sign Language', [Definition] = NULL, [SortOrder] = 647.60 WHERE [Code] = 'ssp' END +SET [Description] = 'Spanish Sign Language', [Definition] = NULL, [SortOrder] = 6483.00 WHERE [Code] = 'ssp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spt', 'Spiti Bhoti', NULL, 647.70) END +VALUES ('spt', 'Spiti Bhoti', NULL, 6484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Spiti Bhoti', [Definition] = NULL, [SortOrder] = 647.70 WHERE [Code] = 'spt' END +SET [Description] = 'Spiti Bhoti', [Definition] = NULL, [SortOrder] = 6484.00 WHERE [Code] = 'spt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spo', 'Spokane', NULL, 647.80) END +VALUES ('spo', 'Spokane', NULL, 6485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Spokane', [Definition] = NULL, [SortOrder] = 647.80 WHERE [Code] = 'spo' END +SET [Description] = 'Spokane', [Definition] = NULL, [SortOrder] = 6485.00 WHERE [Code] = 'spo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'squ') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('squ', 'Squamish', NULL, 647.90) END +VALUES ('squ', 'Squamish', NULL, 6486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Squamish', [Definition] = NULL, [SortOrder] = 647.90 WHERE [Code] = 'squ' END +SET [Description] = 'Squamish', [Definition] = NULL, [SortOrder] = 6486.00 WHERE [Code] = 'squ' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srn', 'Sranan Tongo', NULL, 648.00) END +VALUES ('srn', 'Sranan Tongo', NULL, 6487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sranan Tongo', [Definition] = NULL, [SortOrder] = 648.00 WHERE [Code] = 'srn' END +SET [Description] = 'Sranan Tongo', [Definition] = NULL, [SortOrder] = 6487.00 WHERE [Code] = 'srn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sci', 'Sri Lankan Creole Malay', NULL, 648.10) END +VALUES ('sci', 'Sri Lankan Creole Malay', NULL, 6488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sri Lankan Creole Malay', [Definition] = NULL, [SortOrder] = 648.10 WHERE [Code] = 'sci' END +SET [Description] = 'Sri Lankan Creole Malay', [Definition] = NULL, [SortOrder] = 6488.00 WHERE [Code] = 'sci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqs', 'Sri Lankan Sign Language', NULL, 648.20) END +VALUES ('sqs', 'Sri Lankan Sign Language', NULL, 6489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sri Lankan Sign Language', [Definition] = NULL, [SortOrder] = 648.20 WHERE [Code] = 'sqs' END +SET [Description] = 'Sri Lankan Sign Language', [Definition] = NULL, [SortOrder] = 6489.00 WHERE [Code] = 'sqs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arb', 'Standard Arabic', NULL, 648.30) END +VALUES ('arb', 'Standard Arabic', NULL, 6490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Arabic', [Definition] = NULL, [SortOrder] = 648.30 WHERE [Code] = 'arb' END +SET [Description] = 'Standard Arabic', [Definition] = NULL, [SortOrder] = 6490.00 WHERE [Code] = 'arb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekk', 'Standard Estonian', NULL, 648.40) END +VALUES ('ekk', 'Standard Estonian', NULL, 6491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Estonian', [Definition] = NULL, [SortOrder] = 648.40 WHERE [Code] = 'ekk' END +SET [Description] = 'Standard Estonian', [Definition] = NULL, [SortOrder] = 6491.00 WHERE [Code] = 'ekk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lvs', 'Standard Latvian', NULL, 648.50) END +VALUES ('lvs', 'Standard Latvian', NULL, 6492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Latvian', [Definition] = NULL, [SortOrder] = 648.50 WHERE [Code] = 'lvs' END +SET [Description] = 'Standard Latvian', [Definition] = NULL, [SortOrder] = 6492.00 WHERE [Code] = 'lvs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsm', 'Standard Malay', NULL, 648.60) END +VALUES ('zsm', 'Standard Malay', NULL, 6493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Malay', [Definition] = NULL, [SortOrder] = 648.60 WHERE [Code] = 'zsm' END +SET [Description] = 'Standard Malay', [Definition] = NULL, [SortOrder] = 6493.00 WHERE [Code] = 'zsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgh', 'Standard Moroccan Tamazight', NULL, 648.70) END +VALUES ('zgh', 'Standard Moroccan Tamazight', NULL, 6494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Moroccan Tamazight', [Definition] = NULL, [SortOrder] = 648.70 WHERE [Code] = 'zgh' END +SET [Description] = 'Standard Moroccan Tamazight', [Definition] = NULL, [SortOrder] = 6494.00 WHERE [Code] = 'zgh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stl', 'Stellingwerfs', NULL, 648.80) END +VALUES ('stl', 'Stellingwerfs', NULL, 6495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Stellingwerfs', [Definition] = NULL, [SortOrder] = 648.80 WHERE [Code] = 'stl' END +SET [Description] = 'Stellingwerfs', [Definition] = NULL, [SortOrder] = 6495.00 WHERE [Code] = 'stl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbu', 'Stod Bhoti', NULL, 648.90) END +VALUES ('sbu', 'Stod Bhoti', NULL, 6496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Stod Bhoti', [Definition] = NULL, [SortOrder] = 648.90 WHERE [Code] = 'sbu' END +SET [Description] = 'Stod Bhoti', [Definition] = NULL, [SortOrder] = 6496.00 WHERE [Code] = 'sbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jih', 'sTodsde', NULL, 649.00) END +VALUES ('jih', 'sTodsde', NULL, 6497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'sTodsde', [Definition] = NULL, [SortOrder] = 649.00 WHERE [Code] = 'jih' END +SET [Description] = 'sTodsde', [Definition] = NULL, [SortOrder] = 6497.00 WHERE [Code] = 'jih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sto', 'Stoney', NULL, 649.10) END +VALUES ('sto', 'Stoney', NULL, 6498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Stoney', [Definition] = NULL, [SortOrder] = 649.10 WHERE [Code] = 'sto' END +SET [Description] = 'Stoney', [Definition] = NULL, [SortOrder] = 6498.00 WHERE [Code] = 'sto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'str') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('str', 'Straits Salish', NULL, 649.20) END +VALUES ('str', 'Straits Salish', NULL, 6499.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Straits Salish', [Definition] = NULL, [SortOrder] = 649.20 WHERE [Code] = 'str' END +SET [Description] = 'Straits Salish', [Definition] = NULL, [SortOrder] = 6499.00 WHERE [Code] = 'str' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szp', 'Suabo', NULL, 649.30) END +VALUES ('szp', 'Suabo', NULL, 6500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suabo', [Definition] = NULL, [SortOrder] = 649.30 WHERE [Code] = 'szp' END +SET [Description] = 'Suabo', [Definition] = NULL, [SortOrder] = 6500.00 WHERE [Code] = 'szp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seo', 'Suarmin', NULL, 649.40) END +VALUES ('seo', 'Suarmin', NULL, 6501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suarmin', [Definition] = NULL, [SortOrder] = 649.40 WHERE [Code] = 'seo' END +SET [Description] = 'Suarmin', [Definition] = NULL, [SortOrder] = 6501.00 WHERE [Code] = 'seo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swp', 'Suau', NULL, 649.50) END +VALUES ('swp', 'Suau', NULL, 6502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suau', [Definition] = NULL, [SortOrder] = 649.50 WHERE [Code] = 'swp' END +SET [Description] = 'Suau', [Definition] = NULL, [SortOrder] = 6502.00 WHERE [Code] = 'swp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxb', 'Suba', NULL, 649.60) END +VALUES ('sxb', 'Suba', NULL, 6503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suba', [Definition] = NULL, [SortOrder] = 649.60 WHERE [Code] = 'sxb' END +SET [Description] = 'Suba', [Definition] = NULL, [SortOrder] = 6503.00 WHERE [Code] = 'sxb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssc', 'Suba-Simbiti', NULL, 649.70) END +VALUES ('ssc', 'Suba-Simbiti', NULL, 6504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suba-Simbiti', [Definition] = NULL, [SortOrder] = 649.70 WHERE [Code] = 'ssc' END +SET [Description] = 'Suba-Simbiti', [Definition] = NULL, [SortOrder] = 6504.00 WHERE [Code] = 'ssc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsj', 'Subi', NULL, 649.80) END +VALUES ('xsj', 'Subi', NULL, 6505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Subi', [Definition] = NULL, [SortOrder] = 649.80 WHERE [Code] = 'xsj' END +SET [Description] = 'Subi', [Definition] = NULL, [SortOrder] = 6505.00 WHERE [Code] = 'xsj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbs', 'Subiya', NULL, 649.90) END +VALUES ('sbs', 'Subiya', NULL, 6506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Subiya', [Definition] = NULL, [SortOrder] = 649.90 WHERE [Code] = 'sbs' END +SET [Description] = 'Subiya', [Definition] = NULL, [SortOrder] = 6506.00 WHERE [Code] = 'sbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sut', 'Subtiaba', NULL, 650.00) END +VALUES ('sut', 'Subtiaba', NULL, 6507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Subtiaba', [Definition] = NULL, [SortOrder] = 650.00 WHERE [Code] = 'sut' END +SET [Description] = 'Subtiaba', [Definition] = NULL, [SortOrder] = 6507.00 WHERE [Code] = 'sut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apd', 'Sudanese Arabic', NULL, 650.10) END +VALUES ('apd', 'Sudanese Arabic', NULL, 6508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sudanese Arabic', [Definition] = NULL, [SortOrder] = 650.10 WHERE [Code] = 'apd' END +SET [Description] = 'Sudanese Arabic', [Definition] = NULL, [SortOrder] = 6508.00 WHERE [Code] = 'apd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pga', 'Sudanese Creole Arabic', NULL, 650.20) END +VALUES ('pga', 'Sudanese Creole Arabic', NULL, 6509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sudanese Creole Arabic', [Definition] = NULL, [SortOrder] = 650.20 WHERE [Code] = 'pga' END +SET [Description] = 'Sudanese Creole Arabic', [Definition] = NULL, [SortOrder] = 6509.00 WHERE [Code] = 'pga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgo', 'Sudest', NULL, 650.30) END +VALUES ('tgo', 'Sudest', NULL, 6510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sudest', [Definition] = NULL, [SortOrder] = 650.30 WHERE [Code] = 'tgo' END +SET [Description] = 'Sudest', [Definition] = NULL, [SortOrder] = 6510.00 WHERE [Code] = 'tgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsv', 'Sudovian', NULL, 650.40) END +VALUES ('xsv', 'Sudovian', NULL, 6511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sudovian', [Definition] = NULL, [SortOrder] = 650.40 WHERE [Code] = 'xsv' END +SET [Description] = 'Sudovian', [Definition] = NULL, [SortOrder] = 6511.00 WHERE [Code] = 'xsv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sue', 'Suena', NULL, 650.50) END +VALUES ('sue', 'Suena', NULL, 6512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suena', [Definition] = NULL, [SortOrder] = 650.50 WHERE [Code] = 'sue' END +SET [Description] = 'Suena', [Definition] = NULL, [SortOrder] = 6512.00 WHERE [Code] = 'sue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgi', 'Suga', NULL, 650.60) END +VALUES ('sgi', 'Suga', NULL, 6513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suga', [Definition] = NULL, [SortOrder] = 650.60 WHERE [Code] = 'sgi' END +SET [Description] = 'Suga', [Definition] = NULL, [SortOrder] = 6513.00 WHERE [Code] = 'sgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sug', 'Suganga', NULL, 650.70) END +VALUES ('sug', 'Suganga', NULL, 6514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suganga', [Definition] = NULL, [SortOrder] = 650.70 WHERE [Code] = 'sug' END +SET [Description] = 'Suganga', [Definition] = NULL, [SortOrder] = 6514.00 WHERE [Code] = 'sug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzs', 'Sugut Dusun', NULL, 650.80) END +VALUES ('kzs', 'Sugut Dusun', NULL, 6515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sugut Dusun', [Definition] = NULL, [SortOrder] = 650.80 WHERE [Code] = 'kzs' END +SET [Description] = 'Sugut Dusun', [Definition] = NULL, [SortOrder] = 6515.00 WHERE [Code] = 'kzs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swi', 'Sui', NULL, 650.90) END +VALUES ('swi', 'Sui', NULL, 6516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sui', [Definition] = NULL, [SortOrder] = 650.90 WHERE [Code] = 'swi' END +SET [Description] = 'Sui', [Definition] = NULL, [SortOrder] = 6516.00 WHERE [Code] = 'swi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sui', 'Suki', NULL, 651.00) END +VALUES ('sui', 'Suki', NULL, 6517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suki', [Definition] = NULL, [SortOrder] = 651.00 WHERE [Code] = 'sui' END +SET [Description] = 'Suki', [Definition] = NULL, [SortOrder] = 6517.00 WHERE [Code] = 'sui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sub', 'Suku', NULL, 651.10) END +VALUES ('sub', 'Suku', NULL, 6518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suku', [Definition] = NULL, [SortOrder] = 651.10 WHERE [Code] = 'sub' END +SET [Description] = 'Suku', [Definition] = NULL, [SortOrder] = 6518.00 WHERE [Code] = 'sub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suk', 'Sukuma', NULL, 651.20) END +VALUES ('suk', 'Sukuma', NULL, 6519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sukuma', [Definition] = NULL, [SortOrder] = 651.20 WHERE [Code] = 'suk' END +SET [Description] = 'Sukuma', [Definition] = NULL, [SortOrder] = 6519.00 WHERE [Code] = 'suk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syk', 'Sukur', NULL, 651.30) END +VALUES ('syk', 'Sukur', NULL, 6520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sukur', [Definition] = NULL, [SortOrder] = 651.30 WHERE [Code] = 'syk' END +SET [Description] = 'Sukur', [Definition] = NULL, [SortOrder] = 6520.00 WHERE [Code] = 'syk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsu', 'Sukurum', NULL, 651.40) END +VALUES ('zsu', 'Sukurum', NULL, 6521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sukurum', [Definition] = NULL, [SortOrder] = 651.40 WHERE [Code] = 'zsu' END +SET [Description] = 'Sukurum', [Definition] = NULL, [SortOrder] = 6521.00 WHERE [Code] = 'zsu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szn', 'Sula', NULL, 651.50) END +VALUES ('szn', 'Sula', NULL, 6522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sula', [Definition] = NULL, [SortOrder] = 651.50 WHERE [Code] = 'szn' END +SET [Description] = 'Sula', [Definition] = NULL, [SortOrder] = 6522.00 WHERE [Code] = 'szn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sua', 'Sulka', NULL, 651.60) END +VALUES ('sua', 'Sulka', NULL, 6523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sulka', [Definition] = NULL, [SortOrder] = 651.60 WHERE [Code] = 'sua' END +SET [Description] = 'Sulka', [Definition] = NULL, [SortOrder] = 6523.00 WHERE [Code] = 'sua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srg', 'Sulod', NULL, 651.70) END +VALUES ('srg', 'Sulod', NULL, 6524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sulod', [Definition] = NULL, [SortOrder] = 651.70 WHERE [Code] = 'srg' END +SET [Description] = 'Sulod', [Definition] = NULL, [SortOrder] = 6524.00 WHERE [Code] = 'srg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqm', 'Suma', NULL, 651.80) END +VALUES ('sqm', 'Suma', NULL, 6525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suma', [Definition] = NULL, [SortOrder] = 651.80 WHERE [Code] = 'sqm' END +SET [Description] = 'Suma', [Definition] = NULL, [SortOrder] = 6525.00 WHERE [Code] = 'sqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siv', 'Sumariup', NULL, 651.90) END +VALUES ('siv', 'Sumariup', NULL, 6526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumariup', [Definition] = NULL, [SortOrder] = 651.90 WHERE [Code] = 'siv' END +SET [Description] = 'Sumariup', [Definition] = NULL, [SortOrder] = 6526.00 WHERE [Code] = 'siv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'six') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('six', 'Sumau', NULL, 652.00) END +VALUES ('six', 'Sumau', NULL, 6527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumau', [Definition] = NULL, [SortOrder] = 652.00 WHERE [Code] = 'six' END +SET [Description] = 'Sumau', [Definition] = NULL, [SortOrder] = 6527.00 WHERE [Code] = 'six' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smw', 'Sumbawa', NULL, 652.10) END +VALUES ('smw', 'Sumbawa', NULL, 6528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumbawa', [Definition] = NULL, [SortOrder] = 652.10 WHERE [Code] = 'smw' END +SET [Description] = 'Sumbawa', [Definition] = NULL, [SortOrder] = 6528.00 WHERE [Code] = 'smw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suw', 'Sumbwa', NULL, 652.20) END +VALUES ('suw', 'Sumbwa', NULL, 6529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumbwa', [Definition] = NULL, [SortOrder] = 652.20 WHERE [Code] = 'suw' END +SET [Description] = 'Sumbwa', [Definition] = NULL, [SortOrder] = 6529.00 WHERE [Code] = 'suw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sux', 'Sumerian', NULL, 652.30) END +VALUES ('sux', 'Sumerian', NULL, 6530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumerian', [Definition] = NULL, [SortOrder] = 652.30 WHERE [Code] = 'sux' END +SET [Description] = 'Sumerian', [Definition] = NULL, [SortOrder] = 6530.00 WHERE [Code] = 'sux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsm', 'Sumi Naga', NULL, 652.40) END +VALUES ('nsm', 'Sumi Naga', NULL, 6531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumi Naga', [Definition] = NULL, [SortOrder] = 652.40 WHERE [Code] = 'nsm' END +SET [Description] = 'Sumi Naga', [Definition] = NULL, [SortOrder] = 6531.00 WHERE [Code] = 'nsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csv', 'Sumtu Chin', NULL, 652.50) END +VALUES ('csv', 'Sumtu Chin', NULL, 6532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumtu Chin', [Definition] = NULL, [SortOrder] = 652.50 WHERE [Code] = 'csv' END +SET [Description] = 'Sumtu Chin', [Definition] = NULL, [SortOrder] = 6532.00 WHERE [Code] = 'csv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssk', 'Sunam', NULL, 652.60) END +VALUES ('ssk', 'Sunam', NULL, 6533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sunam', [Definition] = NULL, [SortOrder] = 652.60 WHERE [Code] = 'ssk' END +SET [Description] = 'Sunam', [Definition] = NULL, [SortOrder] = 6533.00 WHERE [Code] = 'ssk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sun', 'Sundanese', NULL, 652.70) END +VALUES ('sun', 'Sundanese', NULL, 6534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sundanese', [Definition] = NULL, [SortOrder] = 652.70 WHERE [Code] = 'sun' END +SET [Description] = 'Sundanese', [Definition] = NULL, [SortOrder] = 6534.00 WHERE [Code] = 'sun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suz', 'Sunwar', NULL, 652.80) END +VALUES ('suz', 'Sunwar', NULL, 6535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sunwar', [Definition] = NULL, [SortOrder] = 652.80 WHERE [Code] = 'suz' END +SET [Description] = 'Sunwar', [Definition] = NULL, [SortOrder] = 6535.00 WHERE [Code] = 'suz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syo', 'Suoy', NULL, 652.90) END +VALUES ('syo', 'Suoy', NULL, 6536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suoy', [Definition] = NULL, [SortOrder] = 652.90 WHERE [Code] = 'syo' END +SET [Description] = 'Suoy', [Definition] = NULL, [SortOrder] = 6536.00 WHERE [Code] = 'syo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spp', 'Supyire Senoufo', NULL, 653.00) END +VALUES ('spp', 'Supyire Senoufo', NULL, 6537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Supyire Senoufo', [Definition] = NULL, [SortOrder] = 653.00 WHERE [Code] = 'spp' END +SET [Description] = 'Supyire Senoufo', [Definition] = NULL, [SortOrder] = 6537.00 WHERE [Code] = 'spp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdl', 'Sur', NULL, 653.10) END +VALUES ('tdl', 'Sur', NULL, 6538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sur', [Definition] = NULL, [SortOrder] = 653.10 WHERE [Code] = 'tdl' END +SET [Description] = 'Sur', [Definition] = NULL, [SortOrder] = 6538.00 WHERE [Code] = 'tdl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbj', 'Surbakhal', NULL, 653.20) END +VALUES ('sbj', 'Surbakhal', NULL, 6539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surbakhal', [Definition] = NULL, [SortOrder] = 653.20 WHERE [Code] = 'sbj' END +SET [Description] = 'Surbakhal', [Definition] = NULL, [SortOrder] = 6539.00 WHERE [Code] = 'sbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgj', 'Surgujia', NULL, 653.30) END +VALUES ('sgj', 'Surgujia', NULL, 6540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surgujia', [Definition] = NULL, [SortOrder] = 653.30 WHERE [Code] = 'sgj' END +SET [Description] = 'Surgujia', [Definition] = NULL, [SortOrder] = 6540.00 WHERE [Code] = 'sgj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgd', 'Surigaonon', NULL, 653.40) END +VALUES ('sgd', 'Surigaonon', NULL, 6541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surigaonon', [Definition] = NULL, [SortOrder] = 653.40 WHERE [Code] = 'sgd' END +SET [Description] = 'Surigaonon', [Definition] = NULL, [SortOrder] = 6541.00 WHERE [Code] = 'sgd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjp', 'Surjapuri', NULL, 653.50) END +VALUES ('sjp', 'Surjapuri', NULL, 6542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surjapuri', [Definition] = NULL, [SortOrder] = 653.50 WHERE [Code] = 'sjp' END +SET [Description] = 'Surjapuri', [Definition] = NULL, [SortOrder] = 6542.00 WHERE [Code] = 'sjp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgz', 'Sursurunga', NULL, 653.60) END +VALUES ('sgz', 'Sursurunga', NULL, 6543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sursurunga', [Definition] = NULL, [SortOrder] = 653.60 WHERE [Code] = 'sgz' END +SET [Description] = 'Sursurunga', [Definition] = NULL, [SortOrder] = 6543.00 WHERE [Code] = 'sgz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swx', 'Suruahá', NULL, 653.70) END +VALUES ('swx', 'Suruahá', NULL, 6544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suruahá', [Definition] = NULL, [SortOrder] = 653.70 WHERE [Code] = 'swx' END +SET [Description] = 'Suruahá', [Definition] = NULL, [SortOrder] = 6544.00 WHERE [Code] = 'swx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sde', 'Surubu', NULL, 653.80) END +VALUES ('sde', 'Surubu', NULL, 6545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surubu', [Definition] = NULL, [SortOrder] = 653.80 WHERE [Code] = 'sde' END +SET [Description] = 'Surubu', [Definition] = NULL, [SortOrder] = 6545.00 WHERE [Code] = 'sde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sru', 'Suruí', NULL, 653.90) END +VALUES ('sru', 'Suruí', NULL, 6546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suruí', [Definition] = NULL, [SortOrder] = 653.90 WHERE [Code] = 'sru' END +SET [Description] = 'Suruí', [Definition] = NULL, [SortOrder] = 6546.00 WHERE [Code] = 'sru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdz', 'Suruí Do Pará', NULL, 654.00) END +VALUES ('mdz', 'Suruí Do Pará', NULL, 6547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suruí Do Pará', [Definition] = NULL, [SortOrder] = 654.00 WHERE [Code] = 'mdz' END +SET [Description] = 'Suruí Do Pará', [Definition] = NULL, [SortOrder] = 6547.00 WHERE [Code] = 'mdz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqn', 'Susquehannock', NULL, 654.10) END +VALUES ('sqn', 'Susquehannock', NULL, 6548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Susquehannock', [Definition] = NULL, [SortOrder] = 654.10 WHERE [Code] = 'sqn' END +SET [Description] = 'Susquehannock', [Definition] = NULL, [SortOrder] = 6548.00 WHERE [Code] = 'sqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sus', 'Susu', NULL, 654.20) END +VALUES ('sus', 'Susu', NULL, 6549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Susu', [Definition] = NULL, [SortOrder] = 654.20 WHERE [Code] = 'sus' END +SET [Description] = 'Susu', [Definition] = NULL, [SortOrder] = 6549.00 WHERE [Code] = 'sus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssu', 'Susuami', NULL, 654.30) END +VALUES ('ssu', 'Susuami', NULL, 6550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Susuami', [Definition] = NULL, [SortOrder] = 654.30 WHERE [Code] = 'ssu' END +SET [Description] = 'Susuami', [Definition] = NULL, [SortOrder] = 6550.00 WHERE [Code] = 'ssu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdj', 'Suundi', NULL, 654.40) END +VALUES ('sdj', 'Suundi', NULL, 6551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suundi', [Definition] = NULL, [SortOrder] = 654.40 WHERE [Code] = 'sdj' END +SET [Description] = 'Suundi', [Definition] = NULL, [SortOrder] = 6551.00 WHERE [Code] = 'sdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swu', 'Suwawa', NULL, 654.50) END +VALUES ('swu', 'Suwawa', NULL, 6552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suwawa', [Definition] = NULL, [SortOrder] = 654.50 WHERE [Code] = 'swu' END +SET [Description] = 'Suwawa', [Definition] = NULL, [SortOrder] = 6552.00 WHERE [Code] = 'swu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suy', 'Suyá', NULL, 654.60) END +VALUES ('suy', 'Suyá', NULL, 6553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suyá', [Definition] = NULL, [SortOrder] = 654.60 WHERE [Code] = 'suy' END +SET [Description] = 'Suyá', [Definition] = NULL, [SortOrder] = 6553.00 WHERE [Code] = 'suy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sva', 'Svan', NULL, 654.70) END +VALUES ('sva', 'Svan', NULL, 6554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Svan', [Definition] = NULL, [SortOrder] = 654.70 WHERE [Code] = 'sva' END +SET [Description] = 'Svan', [Definition] = NULL, [SortOrder] = 6554.00 WHERE [Code] = 'sva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swg', 'Swabian', NULL, 654.80) END +VALUES ('swg', 'Swabian', NULL, 6555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swabian', [Definition] = NULL, [SortOrder] = 654.80 WHERE [Code] = 'swg' END +SET [Description] = 'Swabian', [Definition] = NULL, [SortOrder] = 6555.00 WHERE [Code] = 'swg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swh', 'Swahili (individual language)', NULL, 654.90) END +VALUES ('swh', 'Swahili (individual language)', NULL, 6556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swahili (individual language)', [Definition] = NULL, [SortOrder] = 654.90 WHERE [Code] = 'swh' END +SET [Description] = 'Swahili (individual language)', [Definition] = NULL, [SortOrder] = 6556.00 WHERE [Code] = 'swh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swa', 'Swahili (macrolanguage)', NULL, 655.00) END +VALUES ('swa', 'Swahili (macrolanguage)', NULL, 6557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swahili (macrolanguage)', [Definition] = NULL, [SortOrder] = 655.00 WHERE [Code] = 'swa' END +SET [Description] = 'Swahili (macrolanguage)', [Definition] = NULL, [SortOrder] = 6557.00 WHERE [Code] = 'swa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csw', 'Swampy Cree', NULL, 655.10) END +VALUES ('csw', 'Swampy Cree', NULL, 6558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swampy Cree', [Definition] = NULL, [SortOrder] = 655.10 WHERE [Code] = 'csw' END +SET [Description] = 'Swampy Cree', [Definition] = NULL, [SortOrder] = 6558.00 WHERE [Code] = 'csw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssw', 'Swati', NULL, 655.20) END +VALUES ('ssw', 'Swati', NULL, 6559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swati', [Definition] = NULL, [SortOrder] = 655.20 WHERE [Code] = 'ssw' END +SET [Description] = 'Swati', [Definition] = NULL, [SortOrder] = 6559.00 WHERE [Code] = 'ssw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swe', 'Swedish', NULL, 655.30) END +VALUES ('swe', 'Swedish', NULL, 6560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swedish', [Definition] = NULL, [SortOrder] = 655.30 WHERE [Code] = 'swe' END +SET [Description] = 'Swedish', [Definition] = NULL, [SortOrder] = 6560.00 WHERE [Code] = 'swe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swl', 'Swedish Sign Language', NULL, 655.40) END +VALUES ('swl', 'Swedish Sign Language', NULL, 6561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swedish Sign Language', [Definition] = NULL, [SortOrder] = 655.40 WHERE [Code] = 'swl' END +SET [Description] = 'Swedish Sign Language', [Definition] = NULL, [SortOrder] = 6561.00 WHERE [Code] = 'swl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsw', 'Swiss German', NULL, 655.50) END +VALUES ('gsw', 'Swiss German', NULL, 6562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swiss German', [Definition] = NULL, [SortOrder] = 655.50 WHERE [Code] = 'gsw' END +SET [Description] = 'Swiss German', [Definition] = NULL, [SortOrder] = 6562.00 WHERE [Code] = 'gsw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssr', 'Swiss-French Sign Language', NULL, 655.60) END +VALUES ('ssr', 'Swiss-French Sign Language', NULL, 6563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swiss-French Sign Language', [Definition] = NULL, [SortOrder] = 655.60 WHERE [Code] = 'ssr' END +SET [Description] = 'Swiss-French Sign Language', [Definition] = NULL, [SortOrder] = 6563.00 WHERE [Code] = 'ssr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgg', 'Swiss-German Sign Language', NULL, 655.70) END +VALUES ('sgg', 'Swiss-German Sign Language', NULL, 6564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swiss-German Sign Language', [Definition] = NULL, [SortOrder] = 655.70 WHERE [Code] = 'sgg' END +SET [Description] = 'Swiss-German Sign Language', [Definition] = NULL, [SortOrder] = 6564.00 WHERE [Code] = 'sgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slf', 'Swiss-Italian Sign Language', NULL, 655.80) END +VALUES ('slf', 'Swiss-Italian Sign Language', NULL, 6565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swiss-Italian Sign Language', [Definition] = NULL, [SortOrder] = 655.80 WHERE [Code] = 'slf' END +SET [Description] = 'Swiss-Italian Sign Language', [Definition] = NULL, [SortOrder] = 6565.00 WHERE [Code] = 'slf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sox', 'Swo', NULL, 655.90) END +VALUES ('sox', 'Swo', NULL, 6566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swo', [Definition] = NULL, [SortOrder] = 655.90 WHERE [Code] = 'sox' END +SET [Description] = 'Swo', [Definition] = NULL, [SortOrder] = 6566.00 WHERE [Code] = 'sox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shz', 'Syenara Senoufo', NULL, 656.00) END +VALUES ('shz', 'Syenara Senoufo', NULL, 6567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Syenara Senoufo', [Definition] = NULL, [SortOrder] = 656.00 WHERE [Code] = 'shz' END +SET [Description] = 'Syenara Senoufo', [Definition] = NULL, [SortOrder] = 6567.00 WHERE [Code] = 'shz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syl', 'Sylheti', NULL, 656.10) END +VALUES ('syl', 'Sylheti', NULL, 6568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sylheti', [Definition] = NULL, [SortOrder] = 656.10 WHERE [Code] = 'syl' END +SET [Description] = 'Sylheti', [Definition] = NULL, [SortOrder] = 6568.00 WHERE [Code] = 'syl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syr', 'Syriac', NULL, 656.20) END +VALUES ('syr', 'Syriac', NULL, 6569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Syriac', [Definition] = NULL, [SortOrder] = 656.20 WHERE [Code] = 'syr' END +SET [Description] = 'Syriac', [Definition] = NULL, [SortOrder] = 6569.00 WHERE [Code] = 'syr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgn', 'T''apo', NULL, 656.30) END +VALUES ('lgn', 'T''apo', NULL, 6570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'T''apo', [Definition] = NULL, [SortOrder] = 656.30 WHERE [Code] = 'lgn' END +SET [Description] = 'T''apo', [Definition] = NULL, [SortOrder] = 6570.00 WHERE [Code] = 'lgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tct', 'T''en', NULL, 656.40) END +VALUES ('tct', 'T''en', NULL, 6571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'T''en', [Definition] = NULL, [SortOrder] = 656.40 WHERE [Code] = 'tct' END +SET [Description] = 'T''en', [Definition] = NULL, [SortOrder] = 6571.00 WHERE [Code] = 'tct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acq', 'Ta''izzi-Adeni Arabic', NULL, 656.50) END +VALUES ('acq', 'Ta''izzi-Adeni Arabic', NULL, 6572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ta''izzi-Adeni Arabic', [Definition] = NULL, [SortOrder] = 656.50 WHERE [Code] = 'acq' END +SET [Description] = 'Ta''izzi-Adeni Arabic', [Definition] = NULL, [SortOrder] = 6572.00 WHERE [Code] = 'acq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tap', 'Taabwa', NULL, 656.60) END +VALUES ('tap', 'Taabwa', NULL, 6573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taabwa', [Definition] = NULL, [SortOrder] = 656.60 WHERE [Code] = 'tap' END +SET [Description] = 'Taabwa', [Definition] = NULL, [SortOrder] = 6573.00 WHERE [Code] = 'tap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zat', 'Tabaa Zapotec', NULL, 656.70) END +VALUES ('zat', 'Tabaa Zapotec', NULL, 6574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabaa Zapotec', [Definition] = NULL, [SortOrder] = 656.70 WHERE [Code] = 'zat' END +SET [Description] = 'Tabaa Zapotec', [Definition] = NULL, [SortOrder] = 6574.00 WHERE [Code] = 'zat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tby', 'Tabaru', NULL, 656.80) END +VALUES ('tby', 'Tabaru', NULL, 6575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabaru', [Definition] = NULL, [SortOrder] = 656.80 WHERE [Code] = 'tby' END +SET [Description] = 'Tabaru', [Definition] = NULL, [SortOrder] = 6575.00 WHERE [Code] = 'tby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chf', 'Tabasco Chontal', NULL, 656.90) END +VALUES ('chf', 'Tabasco Chontal', NULL, 6576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabasco Chontal', [Definition] = NULL, [SortOrder] = 656.90 WHERE [Code] = 'chf' END +SET [Description] = 'Tabasco Chontal', [Definition] = NULL, [SortOrder] = 6576.00 WHERE [Code] = 'chf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhc', 'Tabasco Nahuatl', NULL, 657.00) END +VALUES ('nhc', 'Tabasco Nahuatl', NULL, 6577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabasco Nahuatl', [Definition] = NULL, [SortOrder] = 657.00 WHERE [Code] = 'nhc' END +SET [Description] = 'Tabasco Nahuatl', [Definition] = NULL, [SortOrder] = 6577.00 WHERE [Code] = 'nhc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zoq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zoq', 'Tabasco Zoque', NULL, 657.10) END +VALUES ('zoq', 'Tabasco Zoque', NULL, 6578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabasco Zoque', [Definition] = NULL, [SortOrder] = 657.10 WHERE [Code] = 'zoq' END +SET [Description] = 'Tabasco Zoque', [Definition] = NULL, [SortOrder] = 6578.00 WHERE [Code] = 'zoq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tab', 'Tabassaran', NULL, 657.20) END +VALUES ('tab', 'Tabassaran', NULL, 6579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabassaran', [Definition] = NULL, [SortOrder] = 657.20 WHERE [Code] = 'tab' END +SET [Description] = 'Tabassaran', [Definition] = NULL, [SortOrder] = 6579.00 WHERE [Code] = 'tab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnm', 'Tabla', NULL, 657.30) END +VALUES ('tnm', 'Tabla', NULL, 6580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabla', [Definition] = NULL, [SortOrder] = 657.30 WHERE [Code] = 'tnm' END +SET [Description] = 'Tabla', [Definition] = NULL, [SortOrder] = 6580.00 WHERE [Code] = 'tnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knv', 'Tabo', NULL, 657.40) END +VALUES ('knv', 'Tabo', NULL, 6581.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabo', [Definition] = NULL, [SortOrder] = 657.40 WHERE [Code] = 'knv' END +SET [Description] = 'Tabo', [Definition] = NULL, [SortOrder] = 6581.00 WHERE [Code] = 'knv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzx', 'Tabriak', NULL, 657.50) END +VALUES ('tzx', 'Tabriak', NULL, 6582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabriak', [Definition] = NULL, [SortOrder] = 657.50 WHERE [Code] = 'tzx' END +SET [Description] = 'Tabriak', [Definition] = NULL, [SortOrder] = 6582.00 WHERE [Code] = 'tzx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtt', 'Tacahua Mixtec', NULL, 657.60) END +VALUES ('xtt', 'Tacahua Mixtec', NULL, 6583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tacahua Mixtec', [Definition] = NULL, [SortOrder] = 657.60 WHERE [Code] = 'xtt' END +SET [Description] = 'Tacahua Mixtec', [Definition] = NULL, [SortOrder] = 6583.00 WHERE [Code] = 'xtt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tna', 'Tacana', NULL, 657.70) END +VALUES ('tna', 'Tacana', NULL, 6584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tacana', [Definition] = NULL, [SortOrder] = 657.70 WHERE [Code] = 'tna' END +SET [Description] = 'Tacana', [Definition] = NULL, [SortOrder] = 6584.00 WHERE [Code] = 'tna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shy', 'Tachawit', NULL, 657.80) END +VALUES ('shy', 'Tachawit', NULL, 6585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tachawit', [Definition] = NULL, [SortOrder] = 657.80 WHERE [Code] = 'shy' END +SET [Description] = 'Tachawit', [Definition] = NULL, [SortOrder] = 6585.00 WHERE [Code] = 'shy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shi', 'Tachelhit', NULL, 657.90) END +VALUES ('shi', 'Tachelhit', NULL, 6586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tachelhit', [Definition] = NULL, [SortOrder] = 657.90 WHERE [Code] = 'shi' END +SET [Description] = 'Tachelhit', [Definition] = NULL, [SortOrder] = 6586.00 WHERE [Code] = 'shi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lts', 'Tachoni', NULL, 658.00) END +VALUES ('lts', 'Tachoni', NULL, 6587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tachoni', [Definition] = NULL, [SortOrder] = 658.00 WHERE [Code] = 'lts' END +SET [Description] = 'Tachoni', [Definition] = NULL, [SortOrder] = 6587.00 WHERE [Code] = 'lts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsq', 'Tadaksahak', NULL, 658.10) END +VALUES ('dsq', 'Tadaksahak', NULL, 6588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tadaksahak', [Definition] = NULL, [SortOrder] = 658.10 WHERE [Code] = 'dsq' END +SET [Description] = 'Tadaksahak', [Definition] = NULL, [SortOrder] = 6588.00 WHERE [Code] = 'dsq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klw', 'Tado', NULL, 658.20) END +VALUES ('klw', 'Tado', NULL, 6589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tado', [Definition] = NULL, [SortOrder] = 658.20 WHERE [Code] = 'klw' END +SET [Description] = 'Tado', [Definition] = NULL, [SortOrder] = 6589.00 WHERE [Code] = 'klw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdy', 'Tadyawan', NULL, 658.30) END +VALUES ('tdy', 'Tadyawan', NULL, 6590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tadyawan', [Definition] = NULL, [SortOrder] = 658.30 WHERE [Code] = 'tdy' END +SET [Description] = 'Tadyawan', [Definition] = NULL, [SortOrder] = 6590.00 WHERE [Code] = 'tdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rob', 'Tae''', NULL, 658.40) END +VALUES ('rob', 'Tae''', NULL, 6591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tae''', [Definition] = NULL, [SortOrder] = 658.40 WHERE [Code] = 'rob' END +SET [Description] = 'Tae''', [Definition] = NULL, [SortOrder] = 6591.00 WHERE [Code] = 'rob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcd', 'Tafi', NULL, 658.50) END +VALUES ('tcd', 'Tafi', NULL, 6592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tafi', [Definition] = NULL, [SortOrder] = 658.50 WHERE [Code] = 'tcd' END +SET [Description] = 'Tafi', [Definition] = NULL, [SortOrder] = 6592.00 WHERE [Code] = 'tcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgs', 'Tagabawa', NULL, 658.60) END +VALUES ('bgs', 'Tagabawa', NULL, 6593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagabawa', [Definition] = NULL, [SortOrder] = 658.60 WHERE [Code] = 'bgs' END +SET [Description] = 'Tagabawa', [Definition] = NULL, [SortOrder] = 6593.00 WHERE [Code] = 'bgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klg', 'Tagakaulo', NULL, 658.70) END +VALUES ('klg', 'Tagakaulo', NULL, 6594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagakaulo', [Definition] = NULL, [SortOrder] = 658.70 WHERE [Code] = 'klg' END +SET [Description] = 'Tagakaulo', [Definition] = NULL, [SortOrder] = 6594.00 WHERE [Code] = 'klg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvv', 'Tagal Murut', NULL, 658.80) END +VALUES ('mvv', 'Tagal Murut', NULL, 6595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagal Murut', [Definition] = NULL, [SortOrder] = 658.80 WHERE [Code] = 'mvv' END +SET [Description] = 'Tagal Murut', [Definition] = NULL, [SortOrder] = 6595.00 WHERE [Code] = 'mvv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgz', 'Tagalaka', NULL, 658.90) END +VALUES ('tgz', 'Tagalaka', NULL, 6596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagalaka', [Definition] = NULL, [SortOrder] = 658.90 WHERE [Code] = 'tgz' END +SET [Description] = 'Tagalaka', [Definition] = NULL, [SortOrder] = 6596.00 WHERE [Code] = 'tgz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgl', 'Tagalog', NULL, 659.00) END +VALUES ('tgl', 'Tagalog', NULL, 6597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagalog', [Definition] = NULL, [SortOrder] = 659.00 WHERE [Code] = 'tgl' END +SET [Description] = 'Tagalog', [Definition] = NULL, [SortOrder] = 6597.00 WHERE [Code] = 'tgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oua', 'Tagargrent', NULL, 659.10) END +VALUES ('oua', 'Tagargrent', NULL, 6598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagargrent', [Definition] = NULL, [SortOrder] = 659.10 WHERE [Code] = 'oua' END +SET [Description] = 'Tagargrent', [Definition] = NULL, [SortOrder] = 6598.00 WHERE [Code] = 'oua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbw', 'Tagbanwa', NULL, 659.20) END +VALUES ('tbw', 'Tagbanwa', NULL, 6599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagbanwa', [Definition] = NULL, [SortOrder] = 659.20 WHERE [Code] = 'tbw' END +SET [Description] = 'Tagbanwa', [Definition] = NULL, [SortOrder] = 6599.00 WHERE [Code] = 'tbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbm', 'Tagbu', NULL, 659.30) END +VALUES ('tbm', 'Tagbu', NULL, 6600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagbu', [Definition] = NULL, [SortOrder] = 659.30 WHERE [Code] = 'tbm' END +SET [Description] = 'Tagbu', [Definition] = NULL, [SortOrder] = 6600.00 WHERE [Code] = 'tbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tda', 'Tagdal', NULL, 659.40) END +VALUES ('tda', 'Tagdal', NULL, 6601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagdal', [Definition] = NULL, [SortOrder] = 659.40 WHERE [Code] = 'tda' END +SET [Description] = 'Tagdal', [Definition] = NULL, [SortOrder] = 6601.00 WHERE [Code] = 'tda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgj', 'Tagin', NULL, 659.50) END +VALUES ('tgj', 'Tagin', NULL, 6602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagin', [Definition] = NULL, [SortOrder] = 659.50 WHERE [Code] = 'tgj' END +SET [Description] = 'Tagin', [Definition] = NULL, [SortOrder] = 6602.00 WHERE [Code] = 'tgj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgx', 'Tagish', NULL, 659.60) END +VALUES ('tgx', 'Tagish', NULL, 6603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagish', [Definition] = NULL, [SortOrder] = 659.60 WHERE [Code] = 'tgx' END +SET [Description] = 'Tagish', [Definition] = NULL, [SortOrder] = 6603.00 WHERE [Code] = 'tgx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tag', 'Tagoi', NULL, 659.70) END +VALUES ('tag', 'Tagoi', NULL, 6604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagoi', [Definition] = NULL, [SortOrder] = 659.70 WHERE [Code] = 'tag' END +SET [Description] = 'Tagoi', [Definition] = NULL, [SortOrder] = 6604.00 WHERE [Code] = 'tag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgw', 'Tagwana Senoufo', NULL, 659.80) END +VALUES ('tgw', 'Tagwana Senoufo', NULL, 6605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagwana Senoufo', [Definition] = NULL, [SortOrder] = 659.80 WHERE [Code] = 'tgw' END +SET [Description] = 'Tagwana Senoufo', [Definition] = NULL, [SortOrder] = 6605.00 WHERE [Code] = 'tgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thv', 'Tahaggart Tamahaq', NULL, 659.90) END +VALUES ('thv', 'Tahaggart Tamahaq', NULL, 6606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tahaggart Tamahaq', [Definition] = NULL, [SortOrder] = 659.90 WHERE [Code] = 'thv' END +SET [Description] = 'Tahaggart Tamahaq', [Definition] = NULL, [SortOrder] = 6606.00 WHERE [Code] = 'thv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tah', 'Tahitian', NULL, 660.00) END +VALUES ('tah', 'Tahitian', NULL, 6607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tahitian', [Definition] = NULL, [SortOrder] = 660.00 WHERE [Code] = 'tah' END +SET [Description] = 'Tahitian', [Definition] = NULL, [SortOrder] = 6607.00 WHERE [Code] = 'tah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tht', 'Tahltan', NULL, 660.10) END +VALUES ('tht', 'Tahltan', NULL, 6608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tahltan', [Definition] = NULL, [SortOrder] = 660.10 WHERE [Code] = 'tht' END +SET [Description] = 'Tahltan', [Definition] = NULL, [SortOrder] = 6608.00 WHERE [Code] = 'tht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taw', 'Tai', NULL, 660.20) END +VALUES ('taw', 'Tai', NULL, 6609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai', [Definition] = NULL, [SortOrder] = 660.20 WHERE [Code] = 'taw' END +SET [Description] = 'Tai', [Definition] = NULL, [SortOrder] = 6609.00 WHERE [Code] = 'taw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyr', 'Tai Daeng', NULL, 660.30) END +VALUES ('tyr', 'Tai Daeng', NULL, 6610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Daeng', [Definition] = NULL, [SortOrder] = 660.30 WHERE [Code] = 'tyr' END +SET [Description] = 'Tai Daeng', [Definition] = NULL, [SortOrder] = 6610.00 WHERE [Code] = 'tyr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blt', 'Tai Dam', NULL, 660.40) END +VALUES ('blt', 'Tai Dam', NULL, 6611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Dam', [Definition] = NULL, [SortOrder] = 660.40 WHERE [Code] = 'blt' END +SET [Description] = 'Tai Dam', [Definition] = NULL, [SortOrder] = 6611.00 WHERE [Code] = 'blt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyj', 'Tai Do', NULL, 660.50) END +VALUES ('tyj', 'Tai Do', NULL, 6612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Do', [Definition] = NULL, [SortOrder] = 660.50 WHERE [Code] = 'tyj' END +SET [Description] = 'Tai Do', [Definition] = NULL, [SortOrder] = 6612.00 WHERE [Code] = 'tyj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twh', 'Tai Dón', NULL, 660.60) END +VALUES ('twh', 'Tai Dón', NULL, 6613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Dón', [Definition] = NULL, [SortOrder] = 660.60 WHERE [Code] = 'twh' END +SET [Description] = 'Tai Dón', [Definition] = NULL, [SortOrder] = 6613.00 WHERE [Code] = 'twh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiz', 'Tai Hongjin', NULL, 660.70) END +VALUES ('tiz', 'Tai Hongjin', NULL, 6614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Hongjin', [Definition] = NULL, [SortOrder] = 660.70 WHERE [Code] = 'tiz' END +SET [Description] = 'Tai Hongjin', [Definition] = NULL, [SortOrder] = 6614.00 WHERE [Code] = 'tiz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjl', 'Tai Laing', NULL, 660.80) END +VALUES ('tjl', 'Tai Laing', NULL, 6615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Laing', [Definition] = NULL, [SortOrder] = 660.80 WHERE [Code] = 'tjl' END +SET [Description] = 'Tai Laing', [Definition] = NULL, [SortOrder] = 6615.00 WHERE [Code] = 'tjl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlq', 'Tai Loi', NULL, 660.90) END +VALUES ('tlq', 'Tai Loi', NULL, 6616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Loi', [Definition] = NULL, [SortOrder] = 660.90 WHERE [Code] = 'tlq' END +SET [Description] = 'Tai Loi', [Definition] = NULL, [SortOrder] = 6616.00 WHERE [Code] = 'tlq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thi', 'Tai Long', NULL, 661.00) END +VALUES ('thi', 'Tai Long', NULL, 6617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Long', [Definition] = NULL, [SortOrder] = 661.00 WHERE [Code] = 'thi' END +SET [Description] = 'Tai Long', [Definition] = NULL, [SortOrder] = 6617.00 WHERE [Code] = 'thi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdd', 'Tai Nüa', NULL, 661.10) END +VALUES ('tdd', 'Tai Nüa', NULL, 6618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Nüa', [Definition] = NULL, [SortOrder] = 661.10 WHERE [Code] = 'tdd' END +SET [Description] = 'Tai Nüa', [Definition] = NULL, [SortOrder] = 6618.00 WHERE [Code] = 'tdd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpo', 'Tai Pao', NULL, 661.20) END +VALUES ('tpo', 'Tai Pao', NULL, 6619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Pao', [Definition] = NULL, [SortOrder] = 661.20 WHERE [Code] = 'tpo' END +SET [Description] = 'Tai Pao', [Definition] = NULL, [SortOrder] = 6619.00 WHERE [Code] = 'tpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmm', 'Tai Thanh', NULL, 661.30) END +VALUES ('tmm', 'Tai Thanh', NULL, 6620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Thanh', [Definition] = NULL, [SortOrder] = 661.30 WHERE [Code] = 'tmm' END +SET [Description] = 'Tai Thanh', [Definition] = NULL, [SortOrder] = 6620.00 WHERE [Code] = 'tmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuu', 'Tai Ya', NULL, 661.40) END +VALUES ('cuu', 'Tai Ya', NULL, 6621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Ya', [Definition] = NULL, [SortOrder] = 661.40 WHERE [Code] = 'cuu' END +SET [Description] = 'Tai Ya', [Definition] = NULL, [SortOrder] = 6621.00 WHERE [Code] = 'cuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gpn', 'Taiap', NULL, 661.50) END +VALUES ('gpn', 'Taiap', NULL, 6622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taiap', [Definition] = NULL, [SortOrder] = 661.50 WHERE [Code] = 'gpn' END +SET [Description] = 'Taiap', [Definition] = NULL, [SortOrder] = 6622.00 WHERE [Code] = 'gpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aos', 'Taikat', NULL, 661.60) END +VALUES ('aos', 'Taikat', NULL, 6623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taikat', [Definition] = NULL, [SortOrder] = 661.60 WHERE [Code] = 'aos' END +SET [Description] = 'Taikat', [Definition] = NULL, [SortOrder] = 6623.00 WHERE [Code] = 'aos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ago') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ago', 'Tainae', NULL, 661.70) END +VALUES ('ago', 'Tainae', NULL, 6624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tainae', [Definition] = NULL, [SortOrder] = 661.70 WHERE [Code] = 'ago' END +SET [Description] = 'Tainae', [Definition] = NULL, [SortOrder] = 6624.00 WHERE [Code] = 'ago' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnq', 'Taino', NULL, 661.80) END +VALUES ('tnq', 'Taino', NULL, 6625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taino', [Definition] = NULL, [SortOrder] = 661.80 WHERE [Code] = 'tnq' END +SET [Description] = 'Taino', [Definition] = NULL, [SortOrder] = 6625.00 WHERE [Code] = 'tnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxa', 'Tairaha', NULL, 661.90) END +VALUES ('bxa', 'Tairaha', NULL, 6626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tairaha', [Definition] = NULL, [SortOrder] = 661.90 WHERE [Code] = 'bxa' END +SET [Description] = 'Tairaha', [Definition] = NULL, [SortOrder] = 6626.00 WHERE [Code] = 'bxa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uar', 'Tairuma', NULL, 662.00) END +VALUES ('uar', 'Tairuma', NULL, 6627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tairuma', [Definition] = NULL, [SortOrder] = 662.00 WHERE [Code] = 'uar' END +SET [Description] = 'Tairuma', [Definition] = NULL, [SortOrder] = 6627.00 WHERE [Code] = 'uar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dav', 'Taita', NULL, 662.10) END +VALUES ('dav', 'Taita', NULL, 6628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taita', [Definition] = NULL, [SortOrder] = 662.10 WHERE [Code] = 'dav' END +SET [Description] = 'Taita', [Definition] = NULL, [SortOrder] = 6628.00 WHERE [Code] = 'dav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvx', 'Taivoan', NULL, 662.20) END +VALUES ('tvx', 'Taivoan', NULL, 6629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taivoan', [Definition] = NULL, [SortOrder] = 662.20 WHERE [Code] = 'tvx' END +SET [Description] = 'Taivoan', [Definition] = NULL, [SortOrder] = 6629.00 WHERE [Code] = 'tvx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tss', 'Taiwan Sign Language', NULL, 662.30) END +VALUES ('tss', 'Taiwan Sign Language', NULL, 6630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taiwan Sign Language', [Definition] = NULL, [SortOrder] = 662.30 WHERE [Code] = 'tss' END +SET [Description] = 'Taiwan Sign Language', [Definition] = NULL, [SortOrder] = 6630.00 WHERE [Code] = 'tss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pee', 'Taje', NULL, 662.40) END +VALUES ('pee', 'Taje', NULL, 6631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taje', [Definition] = NULL, [SortOrder] = 662.40 WHERE [Code] = 'pee' END +SET [Description] = 'Taje', [Definition] = NULL, [SortOrder] = 6631.00 WHERE [Code] = 'pee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgk', 'Tajik', NULL, 662.50) END +VALUES ('tgk', 'Tajik', NULL, 6632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tajik', [Definition] = NULL, [SortOrder] = 662.50 WHERE [Code] = 'tgk' END +SET [Description] = 'Tajik', [Definition] = NULL, [SortOrder] = 6632.00 WHERE [Code] = 'tgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abh', 'Tajiki Arabic', NULL, 662.60) END +VALUES ('abh', 'Tajiki Arabic', NULL, 6633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tajiki Arabic', [Definition] = NULL, [SortOrder] = 662.60 WHERE [Code] = 'abh' END +SET [Description] = 'Tajiki Arabic', [Definition] = NULL, [SortOrder] = 6633.00 WHERE [Code] = 'abh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdj', 'Tajio', NULL, 662.70) END +VALUES ('tdj', 'Tajio', NULL, 6634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tajio', [Definition] = NULL, [SortOrder] = 662.70 WHERE [Code] = 'tdj' END +SET [Description] = 'Tajio', [Definition] = NULL, [SortOrder] = 6634.00 WHERE [Code] = 'tdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tja', 'Tajuasohn', NULL, 662.80) END +VALUES ('tja', 'Tajuasohn', NULL, 6635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tajuasohn', [Definition] = NULL, [SortOrder] = 662.80 WHERE [Code] = 'tja' END +SET [Description] = 'Tajuasohn', [Definition] = NULL, [SortOrder] = 6635.00 WHERE [Code] = 'tja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkm', 'Takelma', NULL, 662.90) END +VALUES ('tkm', 'Takelma', NULL, 6636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takelma', [Definition] = NULL, [SortOrder] = 662.90 WHERE [Code] = 'tkm' END +SET [Description] = 'Takelma', [Definition] = NULL, [SortOrder] = 6636.00 WHERE [Code] = 'tkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tks', 'Takestani', NULL, 663.00) END +VALUES ('tks', 'Takestani', NULL, 6637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takestani', [Definition] = NULL, [SortOrder] = 663.00 WHERE [Code] = 'tks' END +SET [Description] = 'Takestani', [Definition] = NULL, [SortOrder] = 6637.00 WHERE [Code] = 'tks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbc', 'Takia', NULL, 663.10) END +VALUES ('tbc', 'Takia', NULL, 6638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takia', [Definition] = NULL, [SortOrder] = 663.10 WHERE [Code] = 'tbc' END +SET [Description] = 'Takia', [Definition] = NULL, [SortOrder] = 6638.00 WHERE [Code] = 'tbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkz', 'Takua', NULL, 663.20) END +VALUES ('tkz', 'Takua', NULL, 6639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takua', [Definition] = NULL, [SortOrder] = 663.20 WHERE [Code] = 'tkz' END +SET [Description] = 'Takua', [Definition] = NULL, [SortOrder] = 6639.00 WHERE [Code] = 'tkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nho', 'Takuu', NULL, 663.30) END +VALUES ('nho', 'Takuu', NULL, 6640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takuu', [Definition] = NULL, [SortOrder] = 663.30 WHERE [Code] = 'nho' END +SET [Description] = 'Takuu', [Definition] = NULL, [SortOrder] = 6640.00 WHERE [Code] = 'nho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tke', 'Takwane', NULL, 663.40) END +VALUES ('tke', 'Takwane', NULL, 6641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takwane', [Definition] = NULL, [SortOrder] = 663.40 WHERE [Code] = 'tke' END +SET [Description] = 'Takwane', [Definition] = NULL, [SortOrder] = 6641.00 WHERE [Code] = 'tke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tal', 'Tal', NULL, 663.50) END +VALUES ('tal', 'Tal', NULL, 6642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tal', [Definition] = NULL, [SortOrder] = 663.50 WHERE [Code] = 'tal' END +SET [Description] = 'Tal', [Definition] = NULL, [SortOrder] = 6642.00 WHERE [Code] = 'tal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tak', 'Tala', NULL, 663.60) END +VALUES ('tak', 'Tala', NULL, 6643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tala', [Definition] = NULL, [SortOrder] = 663.60 WHERE [Code] = 'tak' END +SET [Description] = 'Tala', [Definition] = NULL, [SortOrder] = 6643.00 WHERE [Code] = 'tak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tld', 'Talaud', NULL, 663.70) END +VALUES ('tld', 'Talaud', NULL, 6644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talaud', [Definition] = NULL, [SortOrder] = 663.70 WHERE [Code] = 'tld' END +SET [Description] = 'Talaud', [Definition] = NULL, [SortOrder] = 6644.00 WHERE [Code] = 'tld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlv', 'Taliabu', NULL, 663.80) END +VALUES ('tlv', 'Taliabu', NULL, 6645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taliabu', [Definition] = NULL, [SortOrder] = 663.80 WHERE [Code] = 'tlv' END +SET [Description] = 'Taliabu', [Definition] = NULL, [SortOrder] = 6645.00 WHERE [Code] = 'tlv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdf', 'Talieng', NULL, 663.90) END +VALUES ('tdf', 'Talieng', NULL, 6646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talieng', [Definition] = NULL, [SortOrder] = 663.90 WHERE [Code] = 'tdf' END +SET [Description] = 'Talieng', [Definition] = NULL, [SortOrder] = 6646.00 WHERE [Code] = 'tdf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlj', 'Talinga-Bwisi', NULL, 664.00) END +VALUES ('tlj', 'Talinga-Bwisi', NULL, 6647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talinga-Bwisi', [Definition] = NULL, [SortOrder] = 664.00 WHERE [Code] = 'tlj' END +SET [Description] = 'Talinga-Bwisi', [Definition] = NULL, [SortOrder] = 6647.00 WHERE [Code] = 'tlj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlr', 'Talise', NULL, 664.10) END +VALUES ('tlr', 'Talise', NULL, 6648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talise', [Definition] = NULL, [SortOrder] = 664.10 WHERE [Code] = 'tlr' END +SET [Description] = 'Talise', [Definition] = NULL, [SortOrder] = 6648.00 WHERE [Code] = 'tlr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlo', 'Talodi', NULL, 664.20) END +VALUES ('tlo', 'Talodi', NULL, 6649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talodi', [Definition] = NULL, [SortOrder] = 664.20 WHERE [Code] = 'tlo' END +SET [Description] = 'Talodi', [Definition] = NULL, [SortOrder] = 6649.00 WHERE [Code] = 'tlo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlk', 'Taloki', NULL, 664.30) END +VALUES ('tlk', 'Taloki', NULL, 6650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taloki', [Definition] = NULL, [SortOrder] = 664.30 WHERE [Code] = 'tlk' END +SET [Description] = 'Taloki', [Definition] = NULL, [SortOrder] = 6650.00 WHERE [Code] = 'tlk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tln', 'Talondo''', NULL, 664.40) END +VALUES ('tln', 'Talondo''', NULL, 6651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talondo''', [Definition] = NULL, [SortOrder] = 664.40 WHERE [Code] = 'tln' END +SET [Description] = 'Talondo''', [Definition] = NULL, [SortOrder] = 6651.00 WHERE [Code] = 'tln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzl', 'Talossan', NULL, 664.50) END +VALUES ('tzl', 'Talossan', NULL, 6652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talossan', [Definition] = NULL, [SortOrder] = 664.50 WHERE [Code] = 'tzl' END +SET [Description] = 'Talossan', [Definition] = NULL, [SortOrder] = 6652.00 WHERE [Code] = 'tzl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yta', 'Talu', NULL, 664.60) END +VALUES ('yta', 'Talu', NULL, 6653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talu', [Definition] = NULL, [SortOrder] = 664.60 WHERE [Code] = 'yta' END +SET [Description] = 'Talu', [Definition] = NULL, [SortOrder] = 6653.00 WHERE [Code] = 'yta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tly', 'Talysh', NULL, 664.70) END +VALUES ('tly', 'Talysh', NULL, 6654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talysh', [Definition] = NULL, [SortOrder] = 664.70 WHERE [Code] = 'tly' END +SET [Description] = 'Talysh', [Definition] = NULL, [SortOrder] = 6654.00 WHERE [Code] = 'tly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tma', 'Tama (Chad)', NULL, 664.80) END +VALUES ('tma', 'Tama (Chad)', NULL, 6655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tama (Chad)', [Definition] = NULL, [SortOrder] = 664.80 WHERE [Code] = 'tma' END +SET [Description] = 'Tama (Chad)', [Definition] = NULL, [SortOrder] = 6655.00 WHERE [Code] = 'tma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ten') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ten', 'Tama (Colombia)', NULL, 664.90) END +VALUES ('ten', 'Tama (Colombia)', NULL, 6656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tama (Colombia)', [Definition] = NULL, [SortOrder] = 664.90 WHERE [Code] = 'ten' END +SET [Description] = 'Tama (Colombia)', [Definition] = NULL, [SortOrder] = 6656.00 WHERE [Code] = 'ten' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcg', 'Tamagario', NULL, 665.00) END +VALUES ('tcg', 'Tamagario', NULL, 6657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamagario', [Definition] = NULL, [SortOrder] = 665.00 WHERE [Code] = 'tcg' END +SET [Description] = 'Tamagario', [Definition] = NULL, [SortOrder] = 6657.00 WHERE [Code] = 'tcg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmn', 'Taman (Indonesia)', NULL, 665.10) END +VALUES ('tmn', 'Taman (Indonesia)', NULL, 6658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taman (Indonesia)', [Definition] = NULL, [SortOrder] = 665.10 WHERE [Code] = 'tmn' END +SET [Description] = 'Taman (Indonesia)', [Definition] = NULL, [SortOrder] = 6658.00 WHERE [Code] = 'tmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcl', 'Taman (Myanmar)', NULL, 665.20) END +VALUES ('tcl', 'Taman (Myanmar)', NULL, 6659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taman (Myanmar)', [Definition] = NULL, [SortOrder] = 665.20 WHERE [Code] = 'tcl' END +SET [Description] = 'Taman (Myanmar)', [Definition] = NULL, [SortOrder] = 6659.00 WHERE [Code] = 'tcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmz', 'Tamanaku', NULL, 665.30) END +VALUES ('tmz', 'Tamanaku', NULL, 6660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamanaku', [Definition] = NULL, [SortOrder] = 665.30 WHERE [Code] = 'tmz' END +SET [Description] = 'Tamanaku', [Definition] = NULL, [SortOrder] = 6660.00 WHERE [Code] = 'tmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmh', 'Tamashek', NULL, 665.40) END +VALUES ('tmh', 'Tamashek', NULL, 6661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamashek', [Definition] = NULL, [SortOrder] = 665.40 WHERE [Code] = 'tmh' END +SET [Description] = 'Tamashek', [Definition] = NULL, [SortOrder] = 6661.00 WHERE [Code] = 'tmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taq', 'Tamasheq', NULL, 665.50) END +VALUES ('taq', 'Tamasheq', NULL, 6662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamasheq', [Definition] = NULL, [SortOrder] = 665.50 WHERE [Code] = 'taq' END +SET [Description] = 'Tamasheq', [Definition] = NULL, [SortOrder] = 6662.00 WHERE [Code] = 'taq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmx', 'Tamazola Mixtec', NULL, 665.60) END +VALUES ('vmx', 'Tamazola Mixtec', NULL, 6663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamazola Mixtec', [Definition] = NULL, [SortOrder] = 665.60 WHERE [Code] = 'vmx' END +SET [Description] = 'Tamazola Mixtec', [Definition] = NULL, [SortOrder] = 6663.00 WHERE [Code] = 'vmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdk', 'Tambas', NULL, 665.70) END +VALUES ('tdk', 'Tambas', NULL, 6664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tambas', [Definition] = NULL, [SortOrder] = 665.70 WHERE [Code] = 'tdk' END +SET [Description] = 'Tambas', [Definition] = NULL, [SortOrder] = 6664.00 WHERE [Code] = 'tdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxt', 'Tambora', NULL, 665.80) END +VALUES ('xxt', 'Tambora', NULL, 6665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tambora', [Definition] = NULL, [SortOrder] = 665.80 WHERE [Code] = 'xxt' END +SET [Description] = 'Tambora', [Definition] = NULL, [SortOrder] = 6665.00 WHERE [Code] = 'xxt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tls', 'Tambotalo', NULL, 665.90) END +VALUES ('tls', 'Tambotalo', NULL, 6666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tambotalo', [Definition] = NULL, [SortOrder] = 665.90 WHERE [Code] = 'tls' END +SET [Description] = 'Tambotalo', [Definition] = NULL, [SortOrder] = 6666.00 WHERE [Code] = 'tls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmy', 'Tami', NULL, 666.00) END +VALUES ('tmy', 'Tami', NULL, 6667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tami', [Definition] = NULL, [SortOrder] = 666.00 WHERE [Code] = 'tmy' END +SET [Description] = 'Tami', [Definition] = NULL, [SortOrder] = 6667.00 WHERE [Code] = 'tmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tam', 'Tamil', NULL, 666.10) END +VALUES ('tam', 'Tamil', NULL, 6668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamil', [Definition] = NULL, [SortOrder] = 666.10 WHERE [Code] = 'tam' END +SET [Description] = 'Tamil', [Definition] = NULL, [SortOrder] = 6668.00 WHERE [Code] = 'tam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tax', 'Tamki', NULL, 666.20) END +VALUES ('tax', 'Tamki', NULL, 6669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamki', [Definition] = NULL, [SortOrder] = 666.20 WHERE [Code] = 'tax' END +SET [Description] = 'Tamki', [Definition] = NULL, [SortOrder] = 6669.00 WHERE [Code] = 'tax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tml', 'Tamnim Citak', NULL, 666.30) END +VALUES ('tml', 'Tamnim Citak', NULL, 6670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamnim Citak', [Definition] = NULL, [SortOrder] = 666.30 WHERE [Code] = 'tml' END +SET [Description] = 'Tamnim Citak', [Definition] = NULL, [SortOrder] = 6670.00 WHERE [Code] = 'tml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'low') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('low', 'Tampias Lobu', NULL, 666.40) END +VALUES ('low', 'Tampias Lobu', NULL, 6671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tampias Lobu', [Definition] = NULL, [SortOrder] = 666.40 WHERE [Code] = 'low' END +SET [Description] = 'Tampias Lobu', [Definition] = NULL, [SortOrder] = 6671.00 WHERE [Code] = 'low' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpu', 'Tampuan', NULL, 666.50) END +VALUES ('tpu', 'Tampuan', NULL, 6672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tampuan', [Definition] = NULL, [SortOrder] = 666.50 WHERE [Code] = 'tpu' END +SET [Description] = 'Tampuan', [Definition] = NULL, [SortOrder] = 6672.00 WHERE [Code] = 'tpu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpm', 'Tampulma', NULL, 666.60) END +VALUES ('tpm', 'Tampulma', NULL, 6673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tampulma', [Definition] = NULL, [SortOrder] = 666.60 WHERE [Code] = 'tpm' END +SET [Description] = 'Tampulma', [Definition] = NULL, [SortOrder] = 6673.00 WHERE [Code] = 'tpm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcb', 'Tanacross', NULL, 666.70) END +VALUES ('tcb', 'Tanacross', NULL, 6674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanacross', [Definition] = NULL, [SortOrder] = 666.70 WHERE [Code] = 'tcb' END +SET [Description] = 'Tanacross', [Definition] = NULL, [SortOrder] = 6674.00 WHERE [Code] = 'tcb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcm', 'Tanahmerah', NULL, 666.80) END +VALUES ('tcm', 'Tanahmerah', NULL, 6675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanahmerah', [Definition] = NULL, [SortOrder] = 666.80 WHERE [Code] = 'tcm' END +SET [Description] = 'Tanahmerah', [Definition] = NULL, [SortOrder] = 6675.00 WHERE [Code] = 'tcm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tfn', 'Tanaina', NULL, 666.90) END +VALUES ('tfn', 'Tanaina', NULL, 6676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanaina', [Definition] = NULL, [SortOrder] = 666.90 WHERE [Code] = 'tfn' END +SET [Description] = 'Tanaina', [Definition] = NULL, [SortOrder] = 6676.00 WHERE [Code] = 'tfn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpv', 'Tanapag', NULL, 667.00) END +VALUES ('tpv', 'Tanapag', NULL, 6677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanapag', [Definition] = NULL, [SortOrder] = 667.00 WHERE [Code] = 'tpv' END +SET [Description] = 'Tanapag', [Definition] = NULL, [SortOrder] = 6677.00 WHERE [Code] = 'tpv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgn', 'Tandaganon', NULL, 667.10) END +VALUES ('tgn', 'Tandaganon', NULL, 6678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tandaganon', [Definition] = NULL, [SortOrder] = 667.10 WHERE [Code] = 'tgn' END +SET [Description] = 'Tandaganon', [Definition] = NULL, [SortOrder] = 6678.00 WHERE [Code] = 'tgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tni', 'Tandia', NULL, 667.20) END +VALUES ('tni', 'Tandia', NULL, 6679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tandia', [Definition] = NULL, [SortOrder] = 667.20 WHERE [Code] = 'tni' END +SET [Description] = 'Tandia', [Definition] = NULL, [SortOrder] = 6679.00 WHERE [Code] = 'tni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdx', 'Tandroy-Mahafaly Malagasy', NULL, 667.30) END +VALUES ('tdx', 'Tandroy-Mahafaly Malagasy', NULL, 6680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tandroy-Mahafaly Malagasy', [Definition] = NULL, [SortOrder] = 667.30 WHERE [Code] = 'tdx' END +SET [Description] = 'Tandroy-Mahafaly Malagasy', [Definition] = NULL, [SortOrder] = 6680.00 WHERE [Code] = 'tdx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnx', 'Tanema', NULL, 667.40) END +VALUES ('tnx', 'Tanema', NULL, 6681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanema', [Definition] = NULL, [SortOrder] = 667.40 WHERE [Code] = 'tnx' END +SET [Description] = 'Tanema', [Definition] = NULL, [SortOrder] = 6681.00 WHERE [Code] = 'tnx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tan', 'Tangale', NULL, 667.50) END +VALUES ('tan', 'Tangale', NULL, 6682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangale', [Definition] = NULL, [SortOrder] = 667.50 WHERE [Code] = 'tan' END +SET [Description] = 'Tangale', [Definition] = NULL, [SortOrder] = 6682.00 WHERE [Code] = 'tan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnv', 'Tangchangya', NULL, 667.60) END +VALUES ('tnv', 'Tangchangya', NULL, 6683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangchangya', [Definition] = NULL, [SortOrder] = 667.60 WHERE [Code] = 'tnv' END +SET [Description] = 'Tangchangya', [Definition] = NULL, [SortOrder] = 6683.00 WHERE [Code] = 'tnv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgu', 'Tanggu', NULL, 667.70) END +VALUES ('tgu', 'Tanggu', NULL, 6684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanggu', [Definition] = NULL, [SortOrder] = 667.70 WHERE [Code] = 'tgu' END +SET [Description] = 'Tanggu', [Definition] = NULL, [SortOrder] = 6684.00 WHERE [Code] = 'tgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmf', 'Tangkhul Naga (India)', NULL, 667.80) END +VALUES ('nmf', 'Tangkhul Naga (India)', NULL, 6685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangkhul Naga (India)', [Definition] = NULL, [SortOrder] = 667.80 WHERE [Code] = 'nmf' END +SET [Description] = 'Tangkhul Naga (India)', [Definition] = NULL, [SortOrder] = 6685.00 WHERE [Code] = 'nmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntx', 'Tangkhul Naga (Myanmar)', NULL, 667.90) END +VALUES ('ntx', 'Tangkhul Naga (Myanmar)', NULL, 6686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangkhul Naga (Myanmar)', [Definition] = NULL, [SortOrder] = 667.90 WHERE [Code] = 'ntx' END +SET [Description] = 'Tangkhul Naga (Myanmar)', [Definition] = NULL, [SortOrder] = 6686.00 WHERE [Code] = 'ntx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkx', 'Tangko', NULL, 668.00) END +VALUES ('tkx', 'Tangko', NULL, 6687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangko', [Definition] = NULL, [SortOrder] = 668.00 WHERE [Code] = 'tkx' END +SET [Description] = 'Tangko', [Definition] = NULL, [SortOrder] = 6687.00 WHERE [Code] = 'tkx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ytl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ytl', 'Tanglang', NULL, 668.10) END +VALUES ('ytl', 'Tanglang', NULL, 6688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanglang', [Definition] = NULL, [SortOrder] = 668.10 WHERE [Code] = 'ytl' END +SET [Description] = 'Tanglang', [Definition] = NULL, [SortOrder] = 6688.00 WHERE [Code] = 'ytl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgp', 'Tangoa', NULL, 668.20) END +VALUES ('tgp', 'Tangoa', NULL, 6689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangoa', [Definition] = NULL, [SortOrder] = 668.20 WHERE [Code] = 'tgp' END +SET [Description] = 'Tangoa', [Definition] = NULL, [SortOrder] = 6689.00 WHERE [Code] = 'tgp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbs', 'Tanguat', NULL, 668.30) END +VALUES ('tbs', 'Tanguat', NULL, 6690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanguat', [Definition] = NULL, [SortOrder] = 668.30 WHERE [Code] = 'tbs' END +SET [Description] = 'Tanguat', [Definition] = NULL, [SortOrder] = 6690.00 WHERE [Code] = 'tbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txg', 'Tangut', NULL, 668.40) END +VALUES ('txg', 'Tangut', NULL, 6691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangut', [Definition] = NULL, [SortOrder] = 668.40 WHERE [Code] = 'txg' END +SET [Description] = 'Tangut', [Definition] = NULL, [SortOrder] = 6691.00 WHERE [Code] = 'txg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbe', 'Tanimbili', NULL, 668.50) END +VALUES ('tbe', 'Tanimbili', NULL, 6692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanimbili', [Definition] = NULL, [SortOrder] = 668.50 WHERE [Code] = 'tbe' END +SET [Description] = 'Tanimbili', [Definition] = NULL, [SortOrder] = 6692.00 WHERE [Code] = 'tbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnc', 'Tanimuca-Retuarã', NULL, 668.60) END +VALUES ('tnc', 'Tanimuca-Retuarã', NULL, 6693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanimuca-Retuarã', [Definition] = NULL, [SortOrder] = 668.60 WHERE [Code] = 'tnc' END +SET [Description] = 'Tanimuca-Retuarã', [Definition] = NULL, [SortOrder] = 6693.00 WHERE [Code] = 'tnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uji', 'Tanjijili', NULL, 668.70) END +VALUES ('uji', 'Tanjijili', NULL, 6694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanjijili', [Definition] = NULL, [SortOrder] = 668.70 WHERE [Code] = 'uji' END +SET [Description] = 'Tanjijili', [Definition] = NULL, [SortOrder] = 6694.00 WHERE [Code] = 'uji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txy', 'Tanosy Malagasy', NULL, 668.80) END +VALUES ('txy', 'Tanosy Malagasy', NULL, 6695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanosy Malagasy', [Definition] = NULL, [SortOrder] = 668.80 WHERE [Code] = 'txy' END +SET [Description] = 'Tanosy Malagasy', [Definition] = NULL, [SortOrder] = 6695.00 WHERE [Code] = 'txy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kml', 'Tanudan Kalinga', NULL, 668.90) END +VALUES ('kml', 'Tanudan Kalinga', NULL, 6696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanudan Kalinga', [Definition] = NULL, [SortOrder] = 668.90 WHERE [Code] = 'kml' END +SET [Description] = 'Tanudan Kalinga', [Definition] = NULL, [SortOrder] = 6696.00 WHERE [Code] = 'kml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tza', 'Tanzanian Sign Language', NULL, 669.00) END +VALUES ('tza', 'Tanzanian Sign Language', NULL, 6697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanzanian Sign Language', [Definition] = NULL, [SortOrder] = 669.00 WHERE [Code] = 'tza' END +SET [Description] = 'Tanzanian Sign Language', [Definition] = NULL, [SortOrder] = 6697.00 WHERE [Code] = 'tza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afp', 'Tapei', NULL, 669.10) END +VALUES ('afp', 'Tapei', NULL, 6698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tapei', [Definition] = NULL, [SortOrder] = 669.10 WHERE [Code] = 'afp' END +SET [Description] = 'Tapei', [Definition] = NULL, [SortOrder] = 6698.00 WHERE [Code] = 'afp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpj', 'Tapieté', NULL, 669.20) END +VALUES ('tpj', 'Tapieté', NULL, 6699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tapieté', [Definition] = NULL, [SortOrder] = 669.20 WHERE [Code] = 'tpj' END +SET [Description] = 'Tapieté', [Definition] = NULL, [SortOrder] = 6699.00 WHERE [Code] = 'tpj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taf', 'Tapirapé', NULL, 669.30) END +VALUES ('taf', 'Tapirapé', NULL, 6700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tapirapé', [Definition] = NULL, [SortOrder] = 669.30 WHERE [Code] = 'taf' END +SET [Description] = 'Tapirapé', [Definition] = NULL, [SortOrder] = 6700.00 WHERE [Code] = 'taf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tro', 'Tarao Naga', NULL, 669.40) END +VALUES ('tro', 'Tarao Naga', NULL, 6701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarao Naga', [Definition] = NULL, [SortOrder] = 669.40 WHERE [Code] = 'tro' END +SET [Description] = 'Tarao Naga', [Definition] = NULL, [SortOrder] = 6701.00 WHERE [Code] = 'tro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgr', 'Tareng', NULL, 669.50) END +VALUES ('tgr', 'Tareng', NULL, 6702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tareng', [Definition] = NULL, [SortOrder] = 669.50 WHERE [Code] = 'tgr' END +SET [Description] = 'Tareng', [Definition] = NULL, [SortOrder] = 6702.00 WHERE [Code] = 'tgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tae', 'Tariana', NULL, 669.60) END +VALUES ('tae', 'Tariana', NULL, 6703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tariana', [Definition] = NULL, [SortOrder] = 669.60 WHERE [Code] = 'tae' END +SET [Description] = 'Tariana', [Definition] = NULL, [SortOrder] = 6703.00 WHERE [Code] = 'tae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rif', 'Tarifit', NULL, 669.70) END +VALUES ('rif', 'Tarifit', NULL, 6704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarifit', [Definition] = NULL, [SortOrder] = 669.70 WHERE [Code] = 'rif' END +SET [Description] = 'Tarifit', [Definition] = NULL, [SortOrder] = 6704.00 WHERE [Code] = 'rif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txj', 'Tarjumo', NULL, 669.80) END +VALUES ('txj', 'Tarjumo', NULL, 6705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarjumo', [Definition] = NULL, [SortOrder] = 669.80 WHERE [Code] = 'txj' END +SET [Description] = 'Tarjumo', [Definition] = NULL, [SortOrder] = 6705.00 WHERE [Code] = 'txj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yer', 'Tarok', NULL, 669.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarok', [Definition] = NULL, [SortOrder] = 669.90 WHERE [Code] = 'yer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trv', 'Sediq', NULL, 670.00) END +VALUES ('yer', 'Tarok', NULL, 6706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sediq', [Definition] = NULL, [SortOrder] = 670.00 WHERE [Code] = 'trv' END +SET [Description] = 'Tarok', [Definition] = NULL, [SortOrder] = 6706.00 WHERE [Code] = 'yer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpf', 'Tarpia', NULL, 670.10) END +VALUES ('tpf', 'Tarpia', NULL, 6707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarpia', [Definition] = NULL, [SortOrder] = 670.10 WHERE [Code] = 'tpf' END +SET [Description] = 'Tarpia', [Definition] = NULL, [SortOrder] = 6707.00 WHERE [Code] = 'tpf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txr', 'Tartessian', NULL, 670.20) END +VALUES ('txr', 'Tartessian', NULL, 6708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tartessian', [Definition] = NULL, [SortOrder] = 670.20 WHERE [Code] = 'txr' END +SET [Description] = 'Tartessian', [Definition] = NULL, [SortOrder] = 6708.00 WHERE [Code] = 'txr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdm', 'Taruma', NULL, 670.30) END +VALUES ('tdm', 'Taruma', NULL, 6709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taruma', [Definition] = NULL, [SortOrder] = 670.30 WHERE [Code] = 'tdm' END +SET [Description] = 'Taruma', [Definition] = NULL, [SortOrder] = 6709.00 WHERE [Code] = 'tdm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twq', 'Tasawaq', NULL, 670.40) END +VALUES ('twq', 'Tasawaq', NULL, 6710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tasawaq', [Definition] = NULL, [SortOrder] = 670.40 WHERE [Code] = 'twq' END +SET [Description] = 'Tasawaq', [Definition] = NULL, [SortOrder] = 6710.00 WHERE [Code] = 'twq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nst', 'Tase Naga', NULL, 670.50) END +VALUES ('nst', 'Tase Naga', NULL, 6711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tase Naga', [Definition] = NULL, [SortOrder] = 670.50 WHERE [Code] = 'nst' END +SET [Description] = 'Tase Naga', [Definition] = NULL, [SortOrder] = 6711.00 WHERE [Code] = 'nst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmt', 'Tasmate', NULL, 670.60) END +VALUES ('tmt', 'Tasmate', NULL, 6712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tasmate', [Definition] = NULL, [SortOrder] = 670.60 WHERE [Code] = 'tmt' END +SET [Description] = 'Tasmate', [Definition] = NULL, [SortOrder] = 6712.00 WHERE [Code] = 'tmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cta', 'Tataltepec Chatino', NULL, 670.70) END +VALUES ('cta', 'Tataltepec Chatino', NULL, 6713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tataltepec Chatino', [Definition] = NULL, [SortOrder] = 670.70 WHERE [Code] = 'cta' END +SET [Description] = 'Tataltepec Chatino', [Definition] = NULL, [SortOrder] = 6713.00 WHERE [Code] = 'cta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txx', 'Tatana', NULL, 670.80) END +VALUES ('txx', 'Tatana', NULL, 6714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tatana', [Definition] = NULL, [SortOrder] = 670.80 WHERE [Code] = 'txx' END +SET [Description] = 'Tatana', [Definition] = NULL, [SortOrder] = 6714.00 WHERE [Code] = 'txx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tat', 'Tatar', NULL, 670.90) END +VALUES ('tat', 'Tatar', NULL, 6715.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tatar', [Definition] = NULL, [SortOrder] = 670.90 WHERE [Code] = 'tat' END +SET [Description] = 'Tatar', [Definition] = NULL, [SortOrder] = 6715.00 WHERE [Code] = 'tat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tav', 'Tatuyo', NULL, 671.00) END +VALUES ('tav', 'Tatuyo', NULL, 6716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tatuyo', [Definition] = NULL, [SortOrder] = 671.00 WHERE [Code] = 'tav' END +SET [Description] = 'Tatuyo', [Definition] = NULL, [SortOrder] = 6716.00 WHERE [Code] = 'tav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttd', 'Tauade', NULL, 671.10) END +VALUES ('ttd', 'Tauade', NULL, 6717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tauade', [Definition] = NULL, [SortOrder] = 671.10 WHERE [Code] = 'ttd' END +SET [Description] = 'Tauade', [Definition] = NULL, [SortOrder] = 6717.00 WHERE [Code] = 'ttd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuh', 'Taulil', NULL, 671.20) END +VALUES ('tuh', 'Taulil', NULL, 6718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taulil', [Definition] = NULL, [SortOrder] = 671.20 WHERE [Code] = 'tuh' END +SET [Description] = 'Taulil', [Definition] = NULL, [SortOrder] = 6718.00 WHERE [Code] = 'tuh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tco', 'Taungyo', NULL, 671.30) END +VALUES ('tco', 'Taungyo', NULL, 6719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taungyo', [Definition] = NULL, [SortOrder] = 671.30 WHERE [Code] = 'tco' END +SET [Description] = 'Taungyo', [Definition] = NULL, [SortOrder] = 6719.00 WHERE [Code] = 'tco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpa', 'Taupota', NULL, 671.40) END +VALUES ('tpa', 'Taupota', NULL, 6720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taupota', [Definition] = NULL, [SortOrder] = 671.40 WHERE [Code] = 'tpa' END +SET [Description] = 'Taupota', [Definition] = NULL, [SortOrder] = 6720.00 WHERE [Code] = 'tpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tad', 'Tause', NULL, 671.50) END +VALUES ('tad', 'Tause', NULL, 6721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tause', [Definition] = NULL, [SortOrder] = 671.50 WHERE [Code] = 'tad' END +SET [Description] = 'Tause', [Definition] = NULL, [SortOrder] = 6721.00 WHERE [Code] = 'tad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trr', 'Taushiro', NULL, 671.60) END +VALUES ('trr', 'Taushiro', NULL, 6722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taushiro', [Definition] = NULL, [SortOrder] = 671.60 WHERE [Code] = 'trr' END +SET [Description] = 'Taushiro', [Definition] = NULL, [SortOrder] = 6722.00 WHERE [Code] = 'trr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsg', 'Tausug', NULL, 671.70) END +VALUES ('tsg', 'Tausug', NULL, 6723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tausug', [Definition] = NULL, [SortOrder] = 671.70 WHERE [Code] = 'tsg' END +SET [Description] = 'Tausug', [Definition] = NULL, [SortOrder] = 6723.00 WHERE [Code] = 'tsg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tya', 'Tauya', NULL, 671.80) END +VALUES ('tya', 'Tauya', NULL, 6724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tauya', [Definition] = NULL, [SortOrder] = 671.80 WHERE [Code] = 'tya' END +SET [Description] = 'Tauya', [Definition] = NULL, [SortOrder] = 6724.00 WHERE [Code] = 'tya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvs', 'Taveta', NULL, 671.90) END +VALUES ('tvs', 'Taveta', NULL, 6725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taveta', [Definition] = NULL, [SortOrder] = 671.90 WHERE [Code] = 'tvs' END +SET [Description] = 'Taveta', [Definition] = NULL, [SortOrder] = 6725.00 WHERE [Code] = 'tvs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvn', 'Tavoyan', NULL, 672.00) END +VALUES ('tvn', 'Tavoyan', NULL, 6726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tavoyan', [Definition] = NULL, [SortOrder] = 672.00 WHERE [Code] = 'tvn' END +SET [Description] = 'Tavoyan', [Definition] = NULL, [SortOrder] = 6726.00 WHERE [Code] = 'tvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmu', 'Tavringer Romani', NULL, 672.10) END +VALUES ('rmu', 'Tavringer Romani', NULL, 6727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tavringer Romani', [Definition] = NULL, [SortOrder] = 672.10 WHERE [Code] = 'rmu' END +SET [Description] = 'Tavringer Romani', [Definition] = NULL, [SortOrder] = 6727.00 WHERE [Code] = 'rmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbo', 'Tawala', NULL, 672.20) END +VALUES ('tbo', 'Tawala', NULL, 6728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawala', [Definition] = NULL, [SortOrder] = 672.20 WHERE [Code] = 'tbo' END +SET [Description] = 'Tawala', [Definition] = NULL, [SortOrder] = 6728.00 WHERE [Code] = 'tbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttq', 'Tawallammat Tamajaq', NULL, 672.30) END +VALUES ('ttq', 'Tawallammat Tamajaq', NULL, 6729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawallammat Tamajaq', [Definition] = NULL, [SortOrder] = 672.30 WHERE [Code] = 'ttq' END +SET [Description] = 'Tawallammat Tamajaq', [Definition] = NULL, [SortOrder] = 6729.00 WHERE [Code] = 'ttq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtw', 'Tawandê', NULL, 672.40) END +VALUES ('xtw', 'Tawandê', NULL, 6730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawandê', [Definition] = NULL, [SortOrder] = 672.40 WHERE [Code] = 'xtw' END +SET [Description] = 'Tawandê', [Definition] = NULL, [SortOrder] = 6730.00 WHERE [Code] = 'xtw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twm', 'Tawang Monpa', NULL, 672.50) END +VALUES ('twm', 'Tawang Monpa', NULL, 6731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawang Monpa', [Definition] = NULL, [SortOrder] = 672.50 WHERE [Code] = 'twm' END +SET [Description] = 'Tawang Monpa', [Definition] = NULL, [SortOrder] = 6731.00 WHERE [Code] = 'twm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twl', 'Tawara', NULL, 672.60) END +VALUES ('twl', 'Tawara', NULL, 6732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawara', [Definition] = NULL, [SortOrder] = 672.60 WHERE [Code] = 'twl' END +SET [Description] = 'Tawara', [Definition] = NULL, [SortOrder] = 6732.00 WHERE [Code] = 'twl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbp', 'Taworta', NULL, 672.70) END +VALUES ('tbp', 'Taworta', NULL, 6733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taworta', [Definition] = NULL, [SortOrder] = 672.70 WHERE [Code] = 'tbp' END +SET [Description] = 'Taworta', [Definition] = NULL, [SortOrder] = 6733.00 WHERE [Code] = 'tbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twy', 'Tawoyan', NULL, 672.80) END +VALUES ('twy', 'Tawoyan', NULL, 6734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawoyan', [Definition] = NULL, [SortOrder] = 672.80 WHERE [Code] = 'twy' END +SET [Description] = 'Tawoyan', [Definition] = NULL, [SortOrder] = 6734.00 WHERE [Code] = 'twy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcp', 'Tawr Chin', NULL, 672.90) END +VALUES ('tcp', 'Tawr Chin', NULL, 6735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawr Chin', [Definition] = NULL, [SortOrder] = 672.90 WHERE [Code] = 'tcp' END +SET [Description] = 'Tawr Chin', [Definition] = NULL, [SortOrder] = 6735.00 WHERE [Code] = 'tcp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyz', 'Tày', NULL, 673.00) END +VALUES ('tyz', 'Tày', NULL, 6736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tày', [Definition] = NULL, [SortOrder] = 673.00 WHERE [Code] = 'tyz' END +SET [Description] = 'Tày', [Definition] = NULL, [SortOrder] = 6736.00 WHERE [Code] = 'tyz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tas', 'Tay Boi', NULL, 673.10) END +VALUES ('tas', 'Tay Boi', NULL, 6737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tay Boi', [Definition] = NULL, [SortOrder] = 673.10 WHERE [Code] = 'tas' END +SET [Description] = 'Tay Boi', [Definition] = NULL, [SortOrder] = 6737.00 WHERE [Code] = 'tas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnu', 'Tay Khang', NULL, 673.20) END +VALUES ('tnu', 'Tay Khang', NULL, 6738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tay Khang', [Definition] = NULL, [SortOrder] = 673.20 WHERE [Code] = 'tnu' END +SET [Description] = 'Tay Khang', [Definition] = NULL, [SortOrder] = 6738.00 WHERE [Code] = 'tnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tys', 'Tày Sa Pa', NULL, 673.30) END +VALUES ('tys', 'Tày Sa Pa', NULL, 6739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tày Sa Pa', [Definition] = NULL, [SortOrder] = 673.30 WHERE [Code] = 'tys' END +SET [Description] = 'Tày Sa Pa', [Definition] = NULL, [SortOrder] = 6739.00 WHERE [Code] = 'tys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyt', 'Tày Tac', NULL, 673.40) END +VALUES ('tyt', 'Tày Tac', NULL, 6740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tày Tac', [Definition] = NULL, [SortOrder] = 673.40 WHERE [Code] = 'tyt' END +SET [Description] = 'Tày Tac', [Definition] = NULL, [SortOrder] = 6740.00 WHERE [Code] = 'tyt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thz', 'Tayart Tamajeq', NULL, 673.50) END +VALUES ('thz', 'Tayart Tamajeq', NULL, 6741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tayart Tamajeq', [Definition] = NULL, [SortOrder] = 673.50 WHERE [Code] = 'thz' END +SET [Description] = 'Tayart Tamajeq', [Definition] = NULL, [SortOrder] = 6741.00 WHERE [Code] = 'thz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cks', 'Tayo', NULL, 673.60) END +VALUES ('cks', 'Tayo', NULL, 6742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tayo', [Definition] = NULL, [SortOrder] = 673.60 WHERE [Code] = 'cks' END +SET [Description] = 'Tayo', [Definition] = NULL, [SortOrder] = 6742.00 WHERE [Code] = 'cks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grr', 'Taznatit', NULL, 673.70) END +VALUES ('grr', 'Taznatit', NULL, 6743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taznatit', [Definition] = NULL, [SortOrder] = 673.70 WHERE [Code] = 'grr' END +SET [Description] = 'Taznatit', [Definition] = NULL, [SortOrder] = 6743.00 WHERE [Code] = 'grr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbl', 'Tboli', NULL, 673.80) END +VALUES ('tbl', 'Tboli', NULL, 6744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tboli', [Definition] = NULL, [SortOrder] = 673.80 WHERE [Code] = 'tbl' END +SET [Description] = 'Tboli', [Definition] = NULL, [SortOrder] = 6744.00 WHERE [Code] = 'tbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tck', 'Tchitchege', NULL, 673.90) END +VALUES ('tck', 'Tchitchege', NULL, 6745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tchitchege', [Definition] = NULL, [SortOrder] = 673.90 WHERE [Code] = 'tck' END +SET [Description] = 'Tchitchege', [Definition] = NULL, [SortOrder] = 6745.00 WHERE [Code] = 'tck' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqa', 'Tchumbuli', NULL, 674.00) END +VALUES ('bqa', 'Tchumbuli', NULL, 6746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tchumbuli', [Definition] = NULL, [SortOrder] = 674.00 WHERE [Code] = 'bqa' END +SET [Description] = 'Tchumbuli', [Definition] = NULL, [SortOrder] = 6746.00 WHERE [Code] = 'bqa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tve', 'Te''un', NULL, 674.10) END +VALUES ('tve', 'Te''un', NULL, 6747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Te''un', [Definition] = NULL, [SortOrder] = 674.10 WHERE [Code] = 'tve' END +SET [Description] = 'Te''un', [Definition] = NULL, [SortOrder] = 6747.00 WHERE [Code] = 'tve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkw', 'Teanu', NULL, 674.20) END +VALUES ('tkw', 'Teanu', NULL, 6748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teanu', [Definition] = NULL, [SortOrder] = 674.20 WHERE [Code] = 'tkw' END +SET [Description] = 'Teanu', [Definition] = NULL, [SortOrder] = 6748.00 WHERE [Code] = 'tkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsy', 'Tebul Sign Language', NULL, 674.30) END +VALUES ('tsy', 'Tebul Sign Language', NULL, 6749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tebul Sign Language', [Definition] = NULL, [SortOrder] = 674.30 WHERE [Code] = 'tsy' END +SET [Description] = 'Tebul Sign Language', [Definition] = NULL, [SortOrder] = 6749.00 WHERE [Code] = 'tsy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtu', 'Tebul Ure Dogon', NULL, 674.40) END +VALUES ('dtu', 'Tebul Ure Dogon', NULL, 6750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tebul Ure Dogon', [Definition] = NULL, [SortOrder] = 674.40 WHERE [Code] = 'dtu' END +SET [Description] = 'Tebul Ure Dogon', [Definition] = NULL, [SortOrder] = 6750.00 WHERE [Code] = 'dtu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcw', 'Tecpatlán Totonac', NULL, 674.50) END +VALUES ('tcw', 'Tecpatlán Totonac', NULL, 6751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tecpatlán Totonac', [Definition] = NULL, [SortOrder] = 674.50 WHERE [Code] = 'tcw' END +SET [Description] = 'Tecpatlán Totonac', [Definition] = NULL, [SortOrder] = 6751.00 WHERE [Code] = 'tcw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuq', 'Tedaga', NULL, 674.60) END +VALUES ('tuq', 'Tedaga', NULL, 6752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tedaga', [Definition] = NULL, [SortOrder] = 674.60 WHERE [Code] = 'tuq' END +SET [Description] = 'Tedaga', [Definition] = NULL, [SortOrder] = 6752.00 WHERE [Code] = 'tuq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctd', 'Tedim Chin', NULL, 674.70) END +VALUES ('ctd', 'Tedim Chin', NULL, 6753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tedim Chin', [Definition] = NULL, [SortOrder] = 674.70 WHERE [Code] = 'ctd' END +SET [Description] = 'Tedim Chin', [Definition] = NULL, [SortOrder] = 6753.00 WHERE [Code] = 'ctd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkq', 'Tee', NULL, 674.80) END +VALUES ('tkq', 'Tee', NULL, 6754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tee', [Definition] = NULL, [SortOrder] = 674.80 WHERE [Code] = 'tkq' END +SET [Description] = 'Tee', [Definition] = NULL, [SortOrder] = 6754.00 WHERE [Code] = 'tkq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lor', 'Téén', NULL, 674.90) END +VALUES ('lor', 'Téén', NULL, 6755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Téén', [Definition] = NULL, [SortOrder] = 674.90 WHERE [Code] = 'lor' END +SET [Description] = 'Téén', [Definition] = NULL, [SortOrder] = 6755.00 WHERE [Code] = 'lor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tfo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tfo', 'Tefaro', NULL, 675.00) END +VALUES ('tfo', 'Tefaro', NULL, 6756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tefaro', [Definition] = NULL, [SortOrder] = 675.00 WHERE [Code] = 'tfo' END +SET [Description] = 'Tefaro', [Definition] = NULL, [SortOrder] = 6756.00 WHERE [Code] = 'tfo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ras') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ras', 'Tegali', NULL, 675.10) END +VALUES ('ras', 'Tegali', NULL, 6757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tegali', [Definition] = NULL, [SortOrder] = 675.10 WHERE [Code] = 'ras' END +SET [Description] = 'Tegali', [Definition] = NULL, [SortOrder] = 6757.00 WHERE [Code] = 'ras' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kps', 'Tehit', NULL, 675.20) END +VALUES ('kps', 'Tehit', NULL, 6758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tehit', [Definition] = NULL, [SortOrder] = 675.20 WHERE [Code] = 'kps' END +SET [Description] = 'Tehit', [Definition] = NULL, [SortOrder] = 6758.00 WHERE [Code] = 'kps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teh', 'Tehuelche', NULL, 675.30) END +VALUES ('teh', 'Tehuelche', NULL, 6759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tehuelche', [Definition] = NULL, [SortOrder] = 675.30 WHERE [Code] = 'teh' END +SET [Description] = 'Tehuelche', [Definition] = NULL, [SortOrder] = 6759.00 WHERE [Code] = 'teh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztt', 'Tejalapan Zapotec', NULL, 675.40) END +VALUES ('ztt', 'Tejalapan Zapotec', NULL, 6760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tejalapan Zapotec', [Definition] = NULL, [SortOrder] = 675.40 WHERE [Code] = 'ztt' END +SET [Description] = 'Tejalapan Zapotec', [Definition] = NULL, [SortOrder] = 6760.00 WHERE [Code] = 'ztt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebo', 'Teke-Ebo', NULL, 675.50) END +VALUES ('ebo', 'Teke-Ebo', NULL, 6761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Ebo', [Definition] = NULL, [SortOrder] = 675.50 WHERE [Code] = 'ebo' END +SET [Description] = 'Teke-Ebo', [Definition] = NULL, [SortOrder] = 6761.00 WHERE [Code] = 'ebo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifm', 'Teke-Fuumu', NULL, 675.60) END +VALUES ('ifm', 'Teke-Fuumu', NULL, 6762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Fuumu', [Definition] = NULL, [SortOrder] = 675.60 WHERE [Code] = 'ifm' END +SET [Description] = 'Teke-Fuumu', [Definition] = NULL, [SortOrder] = 6762.00 WHERE [Code] = 'ifm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkw', 'Teke-Kukuya', NULL, 675.70) END +VALUES ('kkw', 'Teke-Kukuya', NULL, 6763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Kukuya', [Definition] = NULL, [SortOrder] = 675.70 WHERE [Code] = 'kkw' END +SET [Description] = 'Teke-Kukuya', [Definition] = NULL, [SortOrder] = 6763.00 WHERE [Code] = 'kkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lli', 'Teke-Laali', NULL, 675.80) END +VALUES ('lli', 'Teke-Laali', NULL, 6764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Laali', [Definition] = NULL, [SortOrder] = 675.80 WHERE [Code] = 'lli' END +SET [Description] = 'Teke-Laali', [Definition] = NULL, [SortOrder] = 6764.00 WHERE [Code] = 'lli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzu', 'Teke-Nzikou', NULL, 675.90) END +VALUES ('nzu', 'Teke-Nzikou', NULL, 6765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Nzikou', [Definition] = NULL, [SortOrder] = 675.90 WHERE [Code] = 'nzu' END +SET [Description] = 'Teke-Nzikou', [Definition] = NULL, [SortOrder] = 6765.00 WHERE [Code] = 'nzu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teg', 'Teke-Tege', NULL, 676.00) END +VALUES ('teg', 'Teke-Tege', NULL, 6766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Tege', [Definition] = NULL, [SortOrder] = 676.00 WHERE [Code] = 'teg' END +SET [Description] = 'Teke-Tege', [Definition] = NULL, [SortOrder] = 6766.00 WHERE [Code] = 'teg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyi', 'Teke-Tsaayi', NULL, 676.10) END +VALUES ('tyi', 'Teke-Tsaayi', NULL, 6767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Tsaayi', [Definition] = NULL, [SortOrder] = 676.10 WHERE [Code] = 'tyi' END +SET [Description] = 'Teke-Tsaayi', [Definition] = NULL, [SortOrder] = 6767.00 WHERE [Code] = 'tyi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyx', 'Teke-Tyee', NULL, 676.20) END +VALUES ('tyx', 'Teke-Tyee', NULL, 6768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Tyee', [Definition] = NULL, [SortOrder] = 676.20 WHERE [Code] = 'tyx' END +SET [Description] = 'Teke-Tyee', [Definition] = NULL, [SortOrder] = 6768.00 WHERE [Code] = 'tyx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttc', 'Tektiteko', NULL, 676.30) END +VALUES ('ttc', 'Tektiteko', NULL, 6769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tektiteko', [Definition] = NULL, [SortOrder] = 676.30 WHERE [Code] = 'ttc' END +SET [Description] = 'Tektiteko', [Definition] = NULL, [SortOrder] = 6769.00 WHERE [Code] = 'ttc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvm', 'Tela-Masbuar', NULL, 676.40) END +VALUES ('tvm', 'Tela-Masbuar', NULL, 6770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tela-Masbuar', [Definition] = NULL, [SortOrder] = 676.40 WHERE [Code] = 'tvm' END +SET [Description] = 'Tela-Masbuar', [Definition] = NULL, [SortOrder] = 6770.00 WHERE [Code] = 'tvm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlf', 'Telefol', NULL, 676.50) END +VALUES ('tlf', 'Telefol', NULL, 6771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Telefol', [Definition] = NULL, [SortOrder] = 676.50 WHERE [Code] = 'tlf' END +SET [Description] = 'Telefol', [Definition] = NULL, [SortOrder] = 6771.00 WHERE [Code] = 'tlf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tel', 'Telugu', NULL, 676.60) END +VALUES ('tel', 'Telugu', NULL, 6772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Telugu', [Definition] = NULL, [SortOrder] = 676.60 WHERE [Code] = 'tel' END +SET [Description] = 'Telugu', [Definition] = NULL, [SortOrder] = 6772.00 WHERE [Code] = 'tel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdh', 'Tem', NULL, 676.70) END +VALUES ('kdh', 'Tem', NULL, 6773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tem', [Definition] = NULL, [SortOrder] = 676.70 WHERE [Code] = 'kdh' END +SET [Description] = 'Tem', [Definition] = NULL, [SortOrder] = 6773.00 WHERE [Code] = 'kdh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjo', 'Temacine Tamazight', NULL, 676.80) END +VALUES ('tjo', 'Temacine Tamazight', NULL, 6774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temacine Tamazight', [Definition] = NULL, [SortOrder] = 676.80 WHERE [Code] = 'tjo' END +SET [Description] = 'Temacine Tamazight', [Definition] = NULL, [SortOrder] = 6774.00 WHERE [Code] = 'tjo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhv', 'Temascaltepec Nahuatl', NULL, 676.90) END +VALUES ('nhv', 'Temascaltepec Nahuatl', NULL, 6775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temascaltepec Nahuatl', [Definition] = NULL, [SortOrder] = 676.90 WHERE [Code] = 'nhv' END +SET [Description] = 'Temascaltepec Nahuatl', [Definition] = NULL, [SortOrder] = 6775.00 WHERE [Code] = 'nhv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqb', 'Tembé', NULL, 677.00) END +VALUES ('tqb', 'Tembé', NULL, 6776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tembé', [Definition] = NULL, [SortOrder] = 677.00 WHERE [Code] = 'tqb' END +SET [Description] = 'Tembé', [Definition] = NULL, [SortOrder] = 6776.00 WHERE [Code] = 'tqb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbt', 'Tembo (Kitembo)', NULL, 677.10) END +VALUES ('tbt', 'Tembo (Kitembo)', NULL, 6777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tembo (Kitembo)', [Definition] = NULL, [SortOrder] = 677.10 WHERE [Code] = 'tbt' END +SET [Description] = 'Tembo (Kitembo)', [Definition] = NULL, [SortOrder] = 6777.00 WHERE [Code] = 'tbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmv', 'Tembo (Motembo)', NULL, 677.20) END +VALUES ('tmv', 'Tembo (Motembo)', NULL, 6778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tembo (Motembo)', [Definition] = NULL, [SortOrder] = 677.20 WHERE [Code] = 'tmv' END +SET [Description] = 'Tembo (Motembo)', [Definition] = NULL, [SortOrder] = 6778.00 WHERE [Code] = 'tmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdo', 'Teme', NULL, 677.30) END +VALUES ('tdo', 'Teme', NULL, 6779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teme', [Definition] = NULL, [SortOrder] = 677.30 WHERE [Code] = 'tdo' END +SET [Description] = 'Teme', [Definition] = NULL, [SortOrder] = 6779.00 WHERE [Code] = 'tdo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teq', 'Temein', NULL, 677.40) END +VALUES ('teq', 'Temein', NULL, 6780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temein', [Definition] = NULL, [SortOrder] = 677.40 WHERE [Code] = 'teq' END +SET [Description] = 'Temein', [Definition] = NULL, [SortOrder] = 6780.00 WHERE [Code] = 'teq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soz', 'Temi', NULL, 677.50) END +VALUES ('soz', 'Temi', NULL, 6781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temi', [Definition] = NULL, [SortOrder] = 677.50 WHERE [Code] = 'soz' END +SET [Description] = 'Temi', [Definition] = NULL, [SortOrder] = 6781.00 WHERE [Code] = 'soz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tea', 'Temiar', NULL, 677.60) END +VALUES ('tea', 'Temiar', NULL, 6782.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temiar', [Definition] = NULL, [SortOrder] = 677.60 WHERE [Code] = 'tea' END +SET [Description] = 'Temiar', [Definition] = NULL, [SortOrder] = 6782.00 WHERE [Code] = 'tea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ott') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ott', 'Temoaya Otomi', NULL, 677.70) END +VALUES ('ott', 'Temoaya Otomi', NULL, 6783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temoaya Otomi', [Definition] = NULL, [SortOrder] = 677.70 WHERE [Code] = 'ott' END +SET [Description] = 'Temoaya Otomi', [Definition] = NULL, [SortOrder] = 6783.00 WHERE [Code] = 'ott' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmo', 'Temoq', NULL, 677.80) END +VALUES ('tmo', 'Temoq', NULL, 6784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temoq', [Definition] = NULL, [SortOrder] = 677.80 WHERE [Code] = 'tmo' END +SET [Description] = 'Temoq', [Definition] = NULL, [SortOrder] = 6784.00 WHERE [Code] = 'tmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmw', 'Temuan', NULL, 677.90) END +VALUES ('tmw', 'Temuan', NULL, 6785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temuan', [Definition] = NULL, [SortOrder] = 677.90 WHERE [Code] = 'tmw' END +SET [Description] = 'Temuan', [Definition] = NULL, [SortOrder] = 6785.00 WHERE [Code] = 'tmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnz', 'Ten''edn', NULL, 678.00) END +VALUES ('tnz', 'Ten''edn', NULL, 6786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ten''edn', [Definition] = NULL, [SortOrder] = 678.00 WHERE [Code] = 'tnz' END +SET [Description] = 'Ten''edn', [Definition] = NULL, [SortOrder] = 6786.00 WHERE [Code] = 'tnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quw', 'Tena Lowland Quichua', NULL, 678.10) END +VALUES ('quw', 'Tena Lowland Quichua', NULL, 6787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tena Lowland Quichua', [Definition] = NULL, [SortOrder] = 678.10 WHERE [Code] = 'quw' END +SET [Description] = 'Tena Lowland Quichua', [Definition] = NULL, [SortOrder] = 6787.00 WHERE [Code] = 'quw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otn', 'Tenango Otomi', NULL, 678.20) END +VALUES ('otn', 'Tenango Otomi', NULL, 6788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenango Otomi', [Definition] = NULL, [SortOrder] = 678.20 WHERE [Code] = 'otn' END +SET [Description] = 'Tenango Otomi', [Definition] = NULL, [SortOrder] = 6788.00 WHERE [Code] = 'otn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtk', 'Tene Kan Dogon', NULL, 678.30) END +VALUES ('dtk', 'Tene Kan Dogon', NULL, 6789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tene Kan Dogon', [Definition] = NULL, [SortOrder] = 678.30 WHERE [Code] = 'dtk' END +SET [Description] = 'Tene Kan Dogon', [Definition] = NULL, [SortOrder] = 6789.00 WHERE [Code] = 'dtk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkt', 'Tenggarong Kutai Malay', NULL, 678.40) END +VALUES ('vkt', 'Tenggarong Kutai Malay', NULL, 6790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenggarong Kutai Malay', [Definition] = NULL, [SortOrder] = 678.40 WHERE [Code] = 'vkt' END +SET [Description] = 'Tenggarong Kutai Malay', [Definition] = NULL, [SortOrder] = 6790.00 WHERE [Code] = 'vkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tes', 'Tengger', NULL, 678.50) END +VALUES ('tes', 'Tengger', NULL, 6791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tengger', [Definition] = NULL, [SortOrder] = 678.50 WHERE [Code] = 'tes' END +SET [Description] = 'Tengger', [Definition] = NULL, [SortOrder] = 6791.00 WHERE [Code] = 'tes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pah', 'Tenharim', NULL, 678.60) END +VALUES ('pah', 'Tenharim', NULL, 6792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenharim', [Definition] = NULL, [SortOrder] = 678.60 WHERE [Code] = 'pah' END +SET [Description] = 'Tenharim', [Definition] = NULL, [SortOrder] = 6792.00 WHERE [Code] = 'pah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqn', 'Tenino', NULL, 678.70) END +VALUES ('tqn', 'Tenino', NULL, 6793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenino', [Definition] = NULL, [SortOrder] = 678.70 WHERE [Code] = 'tqn' END +SET [Description] = 'Tenino', [Definition] = NULL, [SortOrder] = 6793.00 WHERE [Code] = 'tqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tns', 'Tenis', NULL, 678.80) END +VALUES ('tns', 'Tenis', NULL, 6794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenis', [Definition] = NULL, [SortOrder] = 678.80 WHERE [Code] = 'tns' END +SET [Description] = 'Tenis', [Definition] = NULL, [SortOrder] = 6794.00 WHERE [Code] = 'tns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tex', 'Tennet', NULL, 678.90) END +VALUES ('tex', 'Tennet', NULL, 6795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tennet', [Definition] = NULL, [SortOrder] = 678.90 WHERE [Code] = 'tex' END +SET [Description] = 'Tennet', [Definition] = NULL, [SortOrder] = 6795.00 WHERE [Code] = 'tex' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tio', 'Teop', NULL, 679.00) END +VALUES ('tio', 'Teop', NULL, 6796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teop', [Definition] = NULL, [SortOrder] = 679.00 WHERE [Code] = 'tio' END +SET [Description] = 'Teop', [Definition] = NULL, [SortOrder] = 6796.00 WHERE [Code] = 'tio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tev', 'Teor', NULL, 679.10) END +VALUES ('tev', 'Teor', NULL, 6797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teor', [Definition] = NULL, [SortOrder] = 679.10 WHERE [Code] = 'tev' END +SET [Description] = 'Teor', [Definition] = NULL, [SortOrder] = 6797.00 WHERE [Code] = 'tev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tep', 'Tepecano', NULL, 679.20) END +VALUES ('tep', 'Tepecano', NULL, 6798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepecano', [Definition] = NULL, [SortOrder] = 679.20 WHERE [Code] = 'tep' END +SET [Description] = 'Tepecano', [Definition] = NULL, [SortOrder] = 6798.00 WHERE [Code] = 'tep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnt', 'Tepetotutla Chinantec', NULL, 679.30) END +VALUES ('cnt', 'Tepetotutla Chinantec', NULL, 6799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepetotutla Chinantec', [Definition] = NULL, [SortOrder] = 679.30 WHERE [Code] = 'cnt' END +SET [Description] = 'Tepetotutla Chinantec', [Definition] = NULL, [SortOrder] = 6799.00 WHERE [Code] = 'cnt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cux', 'Tepeuxila Cuicatec', NULL, 679.40) END +VALUES ('cux', 'Tepeuxila Cuicatec', NULL, 6800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepeuxila Cuicatec', [Definition] = NULL, [SortOrder] = 679.40 WHERE [Code] = 'cux' END +SET [Description] = 'Tepeuxila Cuicatec', [Definition] = NULL, [SortOrder] = 6800.00 WHERE [Code] = 'cux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cte', 'Tepinapa Chinantec', NULL, 679.50) END +VALUES ('cte', 'Tepinapa Chinantec', NULL, 6801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepinapa Chinantec', [Definition] = NULL, [SortOrder] = 679.50 WHERE [Code] = 'cte' END +SET [Description] = 'Tepinapa Chinantec', [Definition] = NULL, [SortOrder] = 6801.00 WHERE [Code] = 'cte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ted') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ted', 'Tepo Krumen', NULL, 679.60) END +VALUES ('ted', 'Tepo Krumen', NULL, 6802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepo Krumen', [Definition] = NULL, [SortOrder] = 679.60 WHERE [Code] = 'ted' END +SET [Description] = 'Tepo Krumen', [Definition] = NULL, [SortOrder] = 6802.00 WHERE [Code] = 'ted' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjt', 'Ter Sami', NULL, 679.70) END +VALUES ('sjt', 'Ter Sami', NULL, 6803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ter Sami', [Definition] = NULL, [SortOrder] = 679.70 WHERE [Code] = 'sjt' END +SET [Description] = 'Ter Sami', [Definition] = NULL, [SortOrder] = 6803.00 WHERE [Code] = 'sjt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttr', 'Tera', NULL, 679.80) END +VALUES ('ttr', 'Tera', NULL, 6804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tera', [Definition] = NULL, [SortOrder] = 679.80 WHERE [Code] = 'ttr' END +SET [Description] = 'Tera', [Definition] = NULL, [SortOrder] = 6804.00 WHERE [Code] = 'ttr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trb', 'Terebu', NULL, 679.90) END +VALUES ('trb', 'Terebu', NULL, 6805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Terebu', [Definition] = NULL, [SortOrder] = 679.90 WHERE [Code] = 'trb' END +SET [Description] = 'Terebu', [Definition] = NULL, [SortOrder] = 6805.00 WHERE [Code] = 'trb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buo', 'Terei', NULL, 680.00) END +VALUES ('buo', 'Terei', NULL, 6806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Terei', [Definition] = NULL, [SortOrder] = 680.00 WHERE [Code] = 'buo' END +SET [Description] = 'Terei', [Definition] = NULL, [SortOrder] = 6806.00 WHERE [Code] = 'buo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ter') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ter', 'Tereno', NULL, 680.10) END +VALUES ('ter', 'Tereno', NULL, 6807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tereno', [Definition] = NULL, [SortOrder] = 680.10 WHERE [Code] = 'ter' END +SET [Description] = 'Tereno', [Definition] = NULL, [SortOrder] = 6807.00 WHERE [Code] = 'ter' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tef', 'Teressa', NULL, 680.20) END +VALUES ('tef', 'Teressa', NULL, 6808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teressa', [Definition] = NULL, [SortOrder] = 680.20 WHERE [Code] = 'tef' END +SET [Description] = 'Teressa', [Definition] = NULL, [SortOrder] = 6808.00 WHERE [Code] = 'tef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twg', 'Tereweng', NULL, 680.30) END +VALUES ('twg', 'Tereweng', NULL, 6809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tereweng', [Definition] = NULL, [SortOrder] = 680.30 WHERE [Code] = 'twg' END +SET [Description] = 'Tereweng', [Definition] = NULL, [SortOrder] = 6809.00 WHERE [Code] = 'twg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tfr', 'Teribe', NULL, 680.40) END +VALUES ('tfr', 'Teribe', NULL, 6810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teribe', [Definition] = NULL, [SortOrder] = 680.40 WHERE [Code] = 'tfr' END +SET [Description] = 'Teribe', [Definition] = NULL, [SortOrder] = 6810.00 WHERE [Code] = 'tfr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tec', 'Terik', NULL, 680.50) END +VALUES ('tec', 'Terik', NULL, 6811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Terik', [Definition] = NULL, [SortOrder] = 680.50 WHERE [Code] = 'tec' END +SET [Description] = 'Terik', [Definition] = NULL, [SortOrder] = 6811.00 WHERE [Code] = 'tec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twu', 'Termanu', NULL, 680.60) END +VALUES ('twu', 'Termanu', NULL, 6812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Termanu', [Definition] = NULL, [SortOrder] = 680.60 WHERE [Code] = 'twu' END +SET [Description] = 'Termanu', [Definition] = NULL, [SortOrder] = 6812.00 WHERE [Code] = 'twu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tft', 'Ternate', NULL, 680.70) END +VALUES ('tft', 'Ternate', NULL, 6813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ternate', [Definition] = NULL, [SortOrder] = 680.70 WHERE [Code] = 'tft' END +SET [Description] = 'Ternate', [Definition] = NULL, [SortOrder] = 6813.00 WHERE [Code] = 'tft' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmg', 'Ternateño', NULL, 680.80) END +VALUES ('tmg', 'Ternateño', NULL, 6814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ternateño', [Definition] = NULL, [SortOrder] = 680.80 WHERE [Code] = 'tmg' END +SET [Description] = 'Ternateño', [Definition] = NULL, [SortOrder] = 6814.00 WHERE [Code] = 'tmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkg', 'Tesaka Malagasy', NULL, 680.90) END +VALUES ('tkg', 'Tesaka Malagasy', NULL, 6815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tesaka Malagasy', [Definition] = NULL, [SortOrder] = 680.90 WHERE [Code] = 'tkg' END +SET [Description] = 'Tesaka Malagasy', [Definition] = NULL, [SortOrder] = 6815.00 WHERE [Code] = 'tkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keg', 'Tese', NULL, 681.00) END +VALUES ('keg', 'Tese', NULL, 6816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tese', [Definition] = NULL, [SortOrder] = 681.00 WHERE [Code] = 'keg' END +SET [Description] = 'Tese', [Definition] = NULL, [SortOrder] = 6816.00 WHERE [Code] = 'keg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twc', 'Teshenawa', NULL, 681.10) END +VALUES ('twc', 'Teshenawa', NULL, 6817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teshenawa', [Definition] = NULL, [SortOrder] = 681.10 WHERE [Code] = 'twc' END +SET [Description] = 'Teshenawa', [Definition] = NULL, [SortOrder] = 6817.00 WHERE [Code] = 'twc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teo', 'Teso', NULL, 681.20) END +VALUES ('teo', 'Teso', NULL, 6818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teso', [Definition] = NULL, [SortOrder] = 681.20 WHERE [Code] = 'teo' END +SET [Description] = 'Teso', [Definition] = NULL, [SortOrder] = 6818.00 WHERE [Code] = 'teo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tll', 'Tetela', NULL, 681.30) END +VALUES ('tll', 'Tetela', NULL, 6819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetela', [Definition] = NULL, [SortOrder] = 681.30 WHERE [Code] = 'tll' END +SET [Description] = 'Tetela', [Definition] = NULL, [SortOrder] = 6819.00 WHERE [Code] = 'tll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhg', 'Tetelcingo Nahuatl', NULL, 681.40) END +VALUES ('nhg', 'Tetelcingo Nahuatl', NULL, 6820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetelcingo Nahuatl', [Definition] = NULL, [SortOrder] = 681.40 WHERE [Code] = 'nhg' END +SET [Description] = 'Tetelcingo Nahuatl', [Definition] = NULL, [SortOrder] = 6820.00 WHERE [Code] = 'nhg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teb', 'Tetete', NULL, 681.50) END +VALUES ('teb', 'Tetete', NULL, 6821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetete', [Definition] = NULL, [SortOrder] = 681.50 WHERE [Code] = 'teb' END +SET [Description] = 'Tetete', [Definition] = NULL, [SortOrder] = 6821.00 WHERE [Code] = 'teb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tez', 'Tetserret', NULL, 681.60) END +VALUES ('tez', 'Tetserret', NULL, 6822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetserret', [Definition] = NULL, [SortOrder] = 681.60 WHERE [Code] = 'tez' END +SET [Description] = 'Tetserret', [Definition] = NULL, [SortOrder] = 6822.00 WHERE [Code] = 'tez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tet', 'Tetum', NULL, 681.70) END +VALUES ('tet', 'Tetum', NULL, 6823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetum', [Definition] = NULL, [SortOrder] = 681.70 WHERE [Code] = 'tet' END +SET [Description] = 'Tetum', [Definition] = NULL, [SortOrder] = 6823.00 WHERE [Code] = 'tet' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdt', 'Tetun Dili', NULL, 681.80) END +VALUES ('tdt', 'Tetun Dili', NULL, 6824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetun Dili', [Definition] = NULL, [SortOrder] = 681.80 WHERE [Code] = 'tdt' END +SET [Description] = 'Tetun Dili', [Definition] = NULL, [SortOrder] = 6824.00 WHERE [Code] = 'tdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cut', 'Teutila Cuicatec', NULL, 681.90) END +VALUES ('cut', 'Teutila Cuicatec', NULL, 6825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teutila Cuicatec', [Definition] = NULL, [SortOrder] = 681.90 WHERE [Code] = 'cut' END +SET [Description] = 'Teutila Cuicatec', [Definition] = NULL, [SortOrder] = 6825.00 WHERE [Code] = 'cut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twe', 'Tewa (Indonesia)', NULL, 682.00) END +VALUES ('twe', 'Tewa (Indonesia)', NULL, 6826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tewa (Indonesia)', [Definition] = NULL, [SortOrder] = 682.00 WHERE [Code] = 'twe' END +SET [Description] = 'Tewa (Indonesia)', [Definition] = NULL, [SortOrder] = 6826.00 WHERE [Code] = 'twe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tew', 'Tewa (USA)', NULL, 682.10) END +VALUES ('tew', 'Tewa (USA)', NULL, 6827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tewa (USA)', [Definition] = NULL, [SortOrder] = 682.10 WHERE [Code] = 'tew' END +SET [Description] = 'Tewa (USA)', [Definition] = NULL, [SortOrder] = 6827.00 WHERE [Code] = 'tew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twx', 'Tewe', NULL, 682.20) END +VALUES ('twx', 'Tewe', NULL, 6828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tewe', [Definition] = NULL, [SortOrder] = 682.20 WHERE [Code] = 'twx' END +SET [Description] = 'Tewe', [Definition] = NULL, [SortOrder] = 6828.00 WHERE [Code] = 'twx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otx', 'Texcatepec Otomi', NULL, 682.30) END +VALUES ('otx', 'Texcatepec Otomi', NULL, 6829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Texcatepec Otomi', [Definition] = NULL, [SortOrder] = 682.30 WHERE [Code] = 'otx' END +SET [Description] = 'Texcatepec Otomi', [Definition] = NULL, [SortOrder] = 6829.00 WHERE [Code] = 'otx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poq', 'Texistepec Popoluca', NULL, 682.40) END +VALUES ('poq', 'Texistepec Popoluca', NULL, 6830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Texistepec Popoluca', [Definition] = NULL, [SortOrder] = 682.40 WHERE [Code] = 'poq' END +SET [Description] = 'Texistepec Popoluca', [Definition] = NULL, [SortOrder] = 6830.00 WHERE [Code] = 'poq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpz', 'Texmelucan Zapotec', NULL, 682.50) END +VALUES ('zpz', 'Texmelucan Zapotec', NULL, 6831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Texmelucan Zapotec', [Definition] = NULL, [SortOrder] = 682.50 WHERE [Code] = 'zpz' END +SET [Description] = 'Texmelucan Zapotec', [Definition] = NULL, [SortOrder] = 6831.00 WHERE [Code] = 'zpz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxb', 'Tezoatlán Mixtec', NULL, 682.60) END +VALUES ('mxb', 'Tezoatlán Mixtec', NULL, 6832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tezoatlán Mixtec', [Definition] = NULL, [SortOrder] = 682.60 WHERE [Code] = 'mxb' END +SET [Description] = 'Tezoatlán Mixtec', [Definition] = NULL, [SortOrder] = 6832.00 WHERE [Code] = 'mxb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thy', 'Tha', NULL, 682.70) END +VALUES ('thy', 'Tha', NULL, 6833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tha', [Definition] = NULL, [SortOrder] = 682.70 WHERE [Code] = 'thy' END +SET [Description] = 'Tha', [Definition] = NULL, [SortOrder] = 6833.00 WHERE [Code] = 'thy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thn', 'Thachanadan', NULL, 682.80) END +VALUES ('thn', 'Thachanadan', NULL, 6834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thachanadan', [Definition] = NULL, [SortOrder] = 682.80 WHERE [Code] = 'thn' END +SET [Description] = 'Thachanadan', [Definition] = NULL, [SortOrder] = 6834.00 WHERE [Code] = 'thn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcz', 'Thado Chin', NULL, 682.90) END +VALUES ('tcz', 'Thado Chin', NULL, 6835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thado Chin', [Definition] = NULL, [SortOrder] = 682.90 WHERE [Code] = 'tcz' END +SET [Description] = 'Thado Chin', [Definition] = NULL, [SortOrder] = 6835.00 WHERE [Code] = 'tcz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tha', 'Thai', NULL, 683.00) END +VALUES ('tha', 'Thai', NULL, 6836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thai', [Definition] = NULL, [SortOrder] = 683.00 WHERE [Code] = 'tha' END +SET [Description] = 'Thai', [Definition] = NULL, [SortOrder] = 6836.00 WHERE [Code] = 'tha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsq', 'Thai Sign Language', NULL, 683.10) END +VALUES ('tsq', 'Thai Sign Language', NULL, 6837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thai Sign Language', [Definition] = NULL, [SortOrder] = 683.10 WHERE [Code] = 'tsq' END +SET [Description] = 'Thai Sign Language', [Definition] = NULL, [SortOrder] = 6837.00 WHERE [Code] = 'tsq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soa', 'Thai Song', NULL, 683.20) END +VALUES ('soa', 'Thai Song', NULL, 6838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thai Song', [Definition] = NULL, [SortOrder] = 683.20 WHERE [Code] = 'soa' END +SET [Description] = 'Thai Song', [Definition] = NULL, [SortOrder] = 6838.00 WHERE [Code] = 'soa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cth', 'Thaiphum Chin', NULL, 683.30) END +VALUES ('cth', 'Thaiphum Chin', NULL, 6839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thaiphum Chin', [Definition] = NULL, [SortOrder] = 683.30 WHERE [Code] = 'cth' END +SET [Description] = 'Thaiphum Chin', [Definition] = NULL, [SortOrder] = 6839.00 WHERE [Code] = 'cth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ths') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ths', 'Thakali', NULL, 683.40) END +VALUES ('ths', 'Thakali', NULL, 6840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thakali', [Definition] = NULL, [SortOrder] = 683.40 WHERE [Code] = 'ths' END +SET [Description] = 'Thakali', [Definition] = NULL, [SortOrder] = 6840.00 WHERE [Code] = 'ths' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nki', 'Thangal Naga', NULL, 683.50) END +VALUES ('nki', 'Thangal Naga', NULL, 6841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thangal Naga', [Definition] = NULL, [SortOrder] = 683.50 WHERE [Code] = 'nki' END +SET [Description] = 'Thangal Naga', [Definition] = NULL, [SortOrder] = 6841.00 WHERE [Code] = 'nki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thf', 'Thangmi', NULL, 683.60) END +VALUES ('thf', 'Thangmi', NULL, 6842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thangmi', [Definition] = NULL, [SortOrder] = 683.60 WHERE [Code] = 'thf' END +SET [Description] = 'Thangmi', [Definition] = NULL, [SortOrder] = 6842.00 WHERE [Code] = 'thf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssf', 'Thao', NULL, 683.70) END +VALUES ('ssf', 'Thao', NULL, 6843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thao', [Definition] = NULL, [SortOrder] = 683.70 WHERE [Code] = 'ssf' END +SET [Description] = 'Thao', [Definition] = NULL, [SortOrder] = 6843.00 WHERE [Code] = 'ssf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thk', 'Tharaka', NULL, 683.80) END +VALUES ('thk', 'Tharaka', NULL, 6844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tharaka', [Definition] = NULL, [SortOrder] = 683.80 WHERE [Code] = 'thk' END +SET [Description] = 'Tharaka', [Definition] = NULL, [SortOrder] = 6844.00 WHERE [Code] = 'thk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtv', 'Thawa', NULL, 683.90) END +VALUES ('xtv', 'Thawa', NULL, 6845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thawa', [Definition] = NULL, [SortOrder] = 683.90 WHERE [Code] = 'xtv' END +SET [Description] = 'Thawa', [Definition] = NULL, [SortOrder] = 6845.00 WHERE [Code] = 'xtv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'typ') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('typ', 'Thaypan', NULL, 684.00) END +VALUES ('typ', 'Thaypan', NULL, 6846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thaypan', [Definition] = NULL, [SortOrder] = 684.00 WHERE [Code] = 'typ' END +SET [Description] = 'Thaypan', [Definition] = NULL, [SortOrder] = 6846.00 WHERE [Code] = 'typ' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iin', 'Thiin', NULL, 684.10) END +VALUES ('iin', 'Thiin', NULL, 6847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thiin', [Definition] = NULL, [SortOrder] = 684.10 WHERE [Code] = 'iin' END +SET [Description] = 'Thiin', [Definition] = NULL, [SortOrder] = 6847.00 WHERE [Code] = 'iin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tou', 'Tho', NULL, 684.20) END +VALUES ('tou', 'Tho', NULL, 6848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tho', [Definition] = NULL, [SortOrder] = 684.20 WHERE [Code] = 'tou' END +SET [Description] = 'Tho', [Definition] = NULL, [SortOrder] = 6848.00 WHERE [Code] = 'tou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thp', 'Thompson', NULL, 684.30) END +VALUES ('thp', 'Thompson', NULL, 6849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thompson', [Definition] = NULL, [SortOrder] = 684.30 WHERE [Code] = 'thp' END +SET [Description] = 'Thompson', [Definition] = NULL, [SortOrder] = 6849.00 WHERE [Code] = 'thp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ytp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ytp', 'Thopho', NULL, 684.40) END +VALUES ('ytp', 'Thopho', NULL, 6850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thopho', [Definition] = NULL, [SortOrder] = 684.40 WHERE [Code] = 'ytp' END +SET [Description] = 'Thopho', [Definition] = NULL, [SortOrder] = 6850.00 WHERE [Code] = 'ytp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txh', 'Thracian', NULL, 684.50) END +VALUES ('txh', 'Thracian', NULL, 6851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thracian', [Definition] = NULL, [SortOrder] = 684.50 WHERE [Code] = 'txh' END +SET [Description] = 'Thracian', [Definition] = NULL, [SortOrder] = 6851.00 WHERE [Code] = 'txh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyl', 'Thu Lao', NULL, 684.60) END +VALUES ('tyl', 'Thu Lao', NULL, 6852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thu Lao', [Definition] = NULL, [SortOrder] = 684.60 WHERE [Code] = 'tyl' END +SET [Description] = 'Thu Lao', [Definition] = NULL, [SortOrder] = 6852.00 WHERE [Code] = 'tyl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdh', 'Thulung', NULL, 684.70) END +VALUES ('tdh', 'Thulung', NULL, 6853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thulung', [Definition] = NULL, [SortOrder] = 684.70 WHERE [Code] = 'tdh' END +SET [Description] = 'Thulung', [Definition] = NULL, [SortOrder] = 6853.00 WHERE [Code] = 'tdh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lth', 'Thur', NULL, 684.80) END +VALUES ('lth', 'Thur', NULL, 6854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thur', [Definition] = NULL, [SortOrder] = 684.80 WHERE [Code] = 'lth' END +SET [Description] = 'Thur', [Definition] = NULL, [SortOrder] = 6854.00 WHERE [Code] = 'lth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thu', 'Thuri', NULL, 684.90) END +VALUES ('thu', 'Thuri', NULL, 6855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thuri', [Definition] = NULL, [SortOrder] = 684.90 WHERE [Code] = 'thu' END +SET [Description] = 'Thuri', [Definition] = NULL, [SortOrder] = 6855.00 WHERE [Code] = 'thu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahi', 'Tiagbamrin Aizi', NULL, 685.00) END +VALUES ('ahi', 'Tiagbamrin Aizi', NULL, 6856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiagbamrin Aizi', [Definition] = NULL, [SortOrder] = 685.00 WHERE [Code] = 'ahi' END +SET [Description] = 'Tiagbamrin Aizi', [Definition] = NULL, [SortOrder] = 6856.00 WHERE [Code] = 'ahi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnl', 'Tiale', NULL, 685.10) END +VALUES ('mnl', 'Tiale', NULL, 6857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiale', [Definition] = NULL, [SortOrder] = 685.10 WHERE [Code] = 'mnl' END +SET [Description] = 'Tiale', [Definition] = NULL, [SortOrder] = 6857.00 WHERE [Code] = 'mnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbj', 'Tiang', NULL, 685.20) END +VALUES ('tbj', 'Tiang', NULL, 6858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiang', [Definition] = NULL, [SortOrder] = 685.20 WHERE [Code] = 'tbj' END +SET [Description] = 'Tiang', [Definition] = NULL, [SortOrder] = 6858.00 WHERE [Code] = 'tbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngy', 'Tibea', NULL, 685.30) END +VALUES ('ngy', 'Tibea', NULL, 6859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tibea', [Definition] = NULL, [SortOrder] = 685.30 WHERE [Code] = 'ngy' END +SET [Description] = 'Tibea', [Definition] = NULL, [SortOrder] = 6859.00 WHERE [Code] = 'ngy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bod', 'Tibetan', NULL, 685.40) END +VALUES ('bod', 'Tibetan', NULL, 6860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tibetan', [Definition] = NULL, [SortOrder] = 685.40 WHERE [Code] = 'bod' END +SET [Description] = 'Tibetan', [Definition] = NULL, [SortOrder] = 6860.00 WHERE [Code] = 'bod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsn', 'Tibetan Sign Language', NULL, 685.50) END +VALUES ('lsn', 'Tibetan Sign Language', NULL, 6861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tibetan Sign Language', [Definition] = NULL, [SortOrder] = 685.50 WHERE [Code] = 'lsn' END +SET [Description] = 'Tibetan Sign Language', [Definition] = NULL, [SortOrder] = 6861.00 WHERE [Code] = 'lsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcn', 'Tichurong', NULL, 685.60) END +VALUES ('tcn', 'Tichurong', NULL, 6862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tichurong', [Definition] = NULL, [SortOrder] = 685.60 WHERE [Code] = 'tcn' END +SET [Description] = 'Tichurong', [Definition] = NULL, [SortOrder] = 6862.00 WHERE [Code] = 'tcn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tca', 'Ticuna', NULL, 685.70) END +VALUES ('tca', 'Ticuna', NULL, 6863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ticuna', [Definition] = NULL, [SortOrder] = 685.70 WHERE [Code] = 'tca' END +SET [Description] = 'Ticuna', [Definition] = NULL, [SortOrder] = 6863.00 WHERE [Code] = 'tca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtx', 'Tidaá Mixtec', NULL, 685.80) END +VALUES ('mtx', 'Tidaá Mixtec', NULL, 6864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tidaá Mixtec', [Definition] = NULL, [SortOrder] = 685.80 WHERE [Code] = 'mtx' END +SET [Description] = 'Tidaá Mixtec', [Definition] = NULL, [SortOrder] = 6864.00 WHERE [Code] = 'mtx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tia', 'Tidikelt Tamazight', NULL, 685.90) END +VALUES ('tia', 'Tidikelt Tamazight', NULL, 6865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tidikelt Tamazight', [Definition] = NULL, [SortOrder] = 685.90 WHERE [Code] = 'tia' END +SET [Description] = 'Tidikelt Tamazight', [Definition] = NULL, [SortOrder] = 6865.00 WHERE [Code] = 'tia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvo', 'Tidore', NULL, 686.00) END +VALUES ('tvo', 'Tidore', NULL, 6866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tidore', [Definition] = NULL, [SortOrder] = 686.00 WHERE [Code] = 'tvo' END +SET [Description] = 'Tidore', [Definition] = NULL, [SortOrder] = 6866.00 WHERE [Code] = 'tvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiq', 'Tiéfo', NULL, 686.10) END +VALUES ('tiq', 'Tiéfo', NULL, 6867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiéfo', [Definition] = NULL, [SortOrder] = 686.10 WHERE [Code] = 'tiq' END +SET [Description] = 'Tiéfo', [Definition] = NULL, [SortOrder] = 6867.00 WHERE [Code] = 'tiq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boo', 'Tiemacèwè Bozo', NULL, 686.20) END +VALUES ('boo', 'Tiemacèwè Bozo', NULL, 6868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiemacèwè Bozo', [Definition] = NULL, [SortOrder] = 686.20 WHERE [Code] = 'boo' END +SET [Description] = 'Tiemacèwè Bozo', [Definition] = NULL, [SortOrder] = 6868.00 WHERE [Code] = 'boo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tii', 'Tiene', NULL, 686.30) END +VALUES ('tii', 'Tiene', NULL, 6869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiene', [Definition] = NULL, [SortOrder] = 686.30 WHERE [Code] = 'tii' END +SET [Description] = 'Tiene', [Definition] = NULL, [SortOrder] = 6869.00 WHERE [Code] = 'tii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boz', 'Tiéyaxo Bozo', NULL, 686.40) END +VALUES ('boz', 'Tiéyaxo Bozo', NULL, 6870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiéyaxo Bozo', [Definition] = NULL, [SortOrder] = 686.40 WHERE [Code] = 'boz' END +SET [Description] = 'Tiéyaxo Bozo', [Definition] = NULL, [SortOrder] = 6870.00 WHERE [Code] = 'boz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tif', 'Tifal', NULL, 686.50) END +VALUES ('tif', 'Tifal', NULL, 6871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tifal', [Definition] = NULL, [SortOrder] = 686.50 WHERE [Code] = 'tif' END +SET [Description] = 'Tifal', [Definition] = NULL, [SortOrder] = 6871.00 WHERE [Code] = 'tif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgc', 'Tigak', NULL, 686.60) END +VALUES ('tgc', 'Tigak', NULL, 6872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tigak', [Definition] = NULL, [SortOrder] = 686.60 WHERE [Code] = 'tgc' END +SET [Description] = 'Tigak', [Definition] = NULL, [SortOrder] = 6872.00 WHERE [Code] = 'tgc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nza', 'Tigon Mbembe', NULL, 686.70) END +VALUES ('nza', 'Tigon Mbembe', NULL, 6873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tigon Mbembe', [Definition] = NULL, [SortOrder] = 686.70 WHERE [Code] = 'nza' END +SET [Description] = 'Tigon Mbembe', [Definition] = NULL, [SortOrder] = 6873.00 WHERE [Code] = 'nza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tig', 'Tigre', NULL, 686.80) END +VALUES ('tig', 'Tigre', NULL, 6874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tigre', [Definition] = NULL, [SortOrder] = 686.80 WHERE [Code] = 'tig' END +SET [Description] = 'Tigre', [Definition] = NULL, [SortOrder] = 6874.00 WHERE [Code] = 'tig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tir', 'Tigrinya', NULL, 686.90) END +VALUES ('tir', 'Tigrinya', NULL, 6875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tigrinya', [Definition] = NULL, [SortOrder] = 686.90 WHERE [Code] = 'tir' END +SET [Description] = 'Tigrinya', [Definition] = NULL, [SortOrder] = 6875.00 WHERE [Code] = 'tir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txq', 'Tii', NULL, 687.00) END +VALUES ('txq', 'Tii', NULL, 6876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tii', [Definition] = NULL, [SortOrder] = 687.00 WHERE [Code] = 'txq' END +SET [Description] = 'Tii', [Definition] = NULL, [SortOrder] = 6876.00 WHERE [Code] = 'txq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtl', 'Tijaltepec Mixtec', NULL, 687.10) END +VALUES ('xtl', 'Tijaltepec Mixtec', NULL, 6877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tijaltepec Mixtec', [Definition] = NULL, [SortOrder] = 687.10 WHERE [Code] = 'xtl' END +SET [Description] = 'Tijaltepec Mixtec', [Definition] = NULL, [SortOrder] = 6877.00 WHERE [Code] = 'xtl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tik', 'Tikar', NULL, 687.20) END +VALUES ('tik', 'Tikar', NULL, 6878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tikar', [Definition] = NULL, [SortOrder] = 687.20 WHERE [Code] = 'tik' END +SET [Description] = 'Tikar', [Definition] = NULL, [SortOrder] = 6878.00 WHERE [Code] = 'tik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkp', 'Tikopia', NULL, 687.30) END +VALUES ('tkp', 'Tikopia', NULL, 6879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tikopia', [Definition] = NULL, [SortOrder] = 687.30 WHERE [Code] = 'tkp' END +SET [Description] = 'Tikopia', [Definition] = NULL, [SortOrder] = 6879.00 WHERE [Code] = 'tkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otl', 'Tilapa Otomi', NULL, 687.40) END +VALUES ('otl', 'Tilapa Otomi', NULL, 6880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tilapa Otomi', [Definition] = NULL, [SortOrder] = 687.40 WHERE [Code] = 'otl' END +SET [Description] = 'Tilapa Otomi', [Definition] = NULL, [SortOrder] = 6880.00 WHERE [Code] = 'otl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'til') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('til', 'Tillamook', NULL, 687.50) END +VALUES ('til', 'Tillamook', NULL, 6881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tillamook', [Definition] = NULL, [SortOrder] = 687.50 WHERE [Code] = 'til' END +SET [Description] = 'Tillamook', [Definition] = NULL, [SortOrder] = 6881.00 WHERE [Code] = 'til' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zts', 'Tilquiapan Zapotec', NULL, 687.60) END +VALUES ('zts', 'Tilquiapan Zapotec', NULL, 6882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tilquiapan Zapotec', [Definition] = NULL, [SortOrder] = 687.60 WHERE [Code] = 'zts' END +SET [Description] = 'Tilquiapan Zapotec', [Definition] = NULL, [SortOrder] = 6882.00 WHERE [Code] = 'zts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tij', 'Tilung', NULL, 687.70) END +VALUES ('tij', 'Tilung', NULL, 6883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tilung', [Definition] = NULL, [SortOrder] = 687.70 WHERE [Code] = 'tij' END +SET [Description] = 'Tilung', [Definition] = NULL, [SortOrder] = 6883.00 WHERE [Code] = 'tij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tms', 'Tima', NULL, 687.80) END +VALUES ('tms', 'Tima', NULL, 6884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tima', [Definition] = NULL, [SortOrder] = 687.80 WHERE [Code] = 'tms' END +SET [Description] = 'Tima', [Definition] = NULL, [SortOrder] = 6884.00 WHERE [Code] = 'tms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tim', 'Timbe', NULL, 687.90) END +VALUES ('tim', 'Timbe', NULL, 6885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timbe', [Definition] = NULL, [SortOrder] = 687.90 WHERE [Code] = 'tim' END +SET [Description] = 'Timbe', [Definition] = NULL, [SortOrder] = 6885.00 WHERE [Code] = 'tim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tem', 'Timne', NULL, 688.00) END +VALUES ('tem', 'Timne', NULL, 6886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timne', [Definition] = NULL, [SortOrder] = 688.00 WHERE [Code] = 'tem' END +SET [Description] = 'Timne', [Definition] = NULL, [SortOrder] = 6886.00 WHERE [Code] = 'tem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvy', 'Timor Pidgin', NULL, 688.10) END +VALUES ('tvy', 'Timor Pidgin', NULL, 6887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timor Pidgin', [Definition] = NULL, [SortOrder] = 688.10 WHERE [Code] = 'tvy' END +SET [Description] = 'Timor Pidgin', [Definition] = NULL, [SortOrder] = 6887.00 WHERE [Code] = 'tvy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjm', 'Timucua', NULL, 688.20) END +VALUES ('tjm', 'Timucua', NULL, 6888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timucua', [Definition] = NULL, [SortOrder] = 688.20 WHERE [Code] = 'tjm' END +SET [Description] = 'Timucua', [Definition] = NULL, [SortOrder] = 6888.00 WHERE [Code] = 'tjm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tih', 'Timugon Murut', NULL, 688.30) END +VALUES ('tih', 'Timugon Murut', NULL, 6889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timugon Murut', [Definition] = NULL, [SortOrder] = 688.30 WHERE [Code] = 'tih' END +SET [Description] = 'Timugon Murut', [Definition] = NULL, [SortOrder] = 6889.00 WHERE [Code] = 'tih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbf', 'Tinani', NULL, 688.40) END +VALUES ('lbf', 'Tinani', NULL, 6890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tinani', [Definition] = NULL, [SortOrder] = 688.40 WHERE [Code] = 'lbf' END +SET [Description] = 'Tinani', [Definition] = NULL, [SortOrder] = 6890.00 WHERE [Code] = 'lbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tin', 'Tindi', NULL, 688.50) END +VALUES ('tin', 'Tindi', NULL, 6891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tindi', [Definition] = NULL, [SortOrder] = 688.50 WHERE [Code] = 'tin' END +SET [Description] = 'Tindi', [Definition] = NULL, [SortOrder] = 6891.00 WHERE [Code] = 'tin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgv', 'Tingui-Boto', NULL, 688.60) END +VALUES ('tgv', 'Tingui-Boto', NULL, 6892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tingui-Boto', [Definition] = NULL, [SortOrder] = 688.60 WHERE [Code] = 'tgv' END +SET [Description] = 'Tingui-Boto', [Definition] = NULL, [SortOrder] = 6892.00 WHERE [Code] = 'tgv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tit', 'Tinigua', NULL, 688.70) END +VALUES ('tit', 'Tinigua', NULL, 6893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tinigua', [Definition] = NULL, [SortOrder] = 688.70 WHERE [Code] = 'tit' END +SET [Description] = 'Tinigua', [Definition] = NULL, [SortOrder] = 6893.00 WHERE [Code] = 'tit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpz', 'Tinputz', NULL, 688.80) END +VALUES ('tpz', 'Tinputz', NULL, 6894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tinputz', [Definition] = NULL, [SortOrder] = 688.80 WHERE [Code] = 'tpz' END +SET [Description] = 'Tinputz', [Definition] = NULL, [SortOrder] = 6894.00 WHERE [Code] = 'tpz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpe', 'Tippera', NULL, 688.90) END +VALUES ('tpe', 'Tippera', NULL, 6895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tippera', [Definition] = NULL, [SortOrder] = 688.90 WHERE [Code] = 'tpe' END +SET [Description] = 'Tippera', [Definition] = NULL, [SortOrder] = 6895.00 WHERE [Code] = 'tpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tic', 'Tira', NULL, 689.00) END +VALUES ('tic', 'Tira', NULL, 6896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tira', [Definition] = NULL, [SortOrder] = 689.00 WHERE [Code] = 'tic' END +SET [Description] = 'Tira', [Definition] = NULL, [SortOrder] = 6896.00 WHERE [Code] = 'tic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tra', 'Tirahi', NULL, 689.10) END +VALUES ('tra', 'Tirahi', NULL, 6897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tirahi', [Definition] = NULL, [SortOrder] = 689.10 WHERE [Code] = 'tra' END +SET [Description] = 'Tirahi', [Definition] = NULL, [SortOrder] = 6897.00 WHERE [Code] = 'tra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tde', 'Tiranige Diga Dogon', NULL, 689.20) END +VALUES ('tde', 'Tiranige Diga Dogon', NULL, 6898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiranige Diga Dogon', [Definition] = NULL, [SortOrder] = 689.20 WHERE [Code] = 'tde' END +SET [Description] = 'Tiranige Diga Dogon', [Definition] = NULL, [SortOrder] = 6898.00 WHERE [Code] = 'tde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cir', 'Tiri', NULL, 689.30) END +VALUES ('cir', 'Tiri', NULL, 6899.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiri', [Definition] = NULL, [SortOrder] = 689.30 WHERE [Code] = 'cir' END +SET [Description] = 'Tiri', [Definition] = NULL, [SortOrder] = 6899.00 WHERE [Code] = 'cir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suq', 'Tirmaga-Chai Suri', NULL, 689.40) END +VALUES ('suq', 'Tirmaga-Chai Suri', NULL, 6900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tirmaga-Chai Suri', [Definition] = NULL, [SortOrder] = 689.40 WHERE [Code] = 'suq' END +SET [Description] = 'Tirmaga-Chai Suri', [Definition] = NULL, [SortOrder] = 6900.00 WHERE [Code] = 'suq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiy', 'Tiruray', NULL, 689.50) END +VALUES ('tiy', 'Tiruray', NULL, 6901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiruray', [Definition] = NULL, [SortOrder] = 689.50 WHERE [Code] = 'tiy' END +SET [Description] = 'Tiruray', [Definition] = NULL, [SortOrder] = 6901.00 WHERE [Code] = 'tiy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdq', 'Tita', NULL, 689.60) END +VALUES ('tdq', 'Tita', NULL, 6902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tita', [Definition] = NULL, [SortOrder] = 689.60 WHERE [Code] = 'tdq' END +SET [Description] = 'Tita', [Definition] = NULL, [SortOrder] = 6902.00 WHERE [Code] = 'tdq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttv', 'Titan', NULL, 689.70) END +VALUES ('ttv', 'Titan', NULL, 6903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Titan', [Definition] = NULL, [SortOrder] = 689.70 WHERE [Code] = 'ttv' END +SET [Description] = 'Titan', [Definition] = NULL, [SortOrder] = 6903.00 WHERE [Code] = 'ttv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiv', 'Tiv', NULL, 689.80) END +VALUES ('tiv', 'Tiv', NULL, 6904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiv', [Definition] = NULL, [SortOrder] = 689.80 WHERE [Code] = 'tiv' END +SET [Description] = 'Tiv', [Definition] = NULL, [SortOrder] = 6904.00 WHERE [Code] = 'tiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lax', 'Tiwa', NULL, 689.90) END +VALUES ('lax', 'Tiwa', NULL, 6905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiwa', [Definition] = NULL, [SortOrder] = 689.90 WHERE [Code] = 'lax' END +SET [Description] = 'Tiwa', [Definition] = NULL, [SortOrder] = 6905.00 WHERE [Code] = 'lax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiw', 'Tiwi', NULL, 690.00) END +VALUES ('tiw', 'Tiwi', NULL, 6906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiwi', [Definition] = NULL, [SortOrder] = 690.00 WHERE [Code] = 'tiw' END +SET [Description] = 'Tiwi', [Definition] = NULL, [SortOrder] = 6906.00 WHERE [Code] = 'tiw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyy', 'Tiyaa', NULL, 690.10) END +VALUES ('tyy', 'Tiyaa', NULL, 6907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiyaa', [Definition] = NULL, [SortOrder] = 690.10 WHERE [Code] = 'tyy' END +SET [Description] = 'Tiyaa', [Definition] = NULL, [SortOrder] = 6907.00 WHERE [Code] = 'tyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjj', 'Tjungundji', NULL, 690.20) END +VALUES ('tjj', 'Tjungundji', NULL, 6908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tjungundji', [Definition] = NULL, [SortOrder] = 690.20 WHERE [Code] = 'tjj' END +SET [Description] = 'Tjungundji', [Definition] = NULL, [SortOrder] = 6908.00 WHERE [Code] = 'tjj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjp', 'Tjupany', NULL, 690.30) END +VALUES ('tjp', 'Tjupany', NULL, 6909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tjupany', [Definition] = NULL, [SortOrder] = 690.30 WHERE [Code] = 'tjp' END +SET [Description] = 'Tjupany', [Definition] = NULL, [SortOrder] = 6909.00 WHERE [Code] = 'tjp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tju', 'Tjurruru', NULL, 690.40) END +VALUES ('tju', 'Tjurruru', NULL, 6910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tjurruru', [Definition] = NULL, [SortOrder] = 690.40 WHERE [Code] = 'tju' END +SET [Description] = 'Tjurruru', [Definition] = NULL, [SortOrder] = 6910.00 WHERE [Code] = 'tju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpt', 'Tlachichilco Tepehua', NULL, 690.50) END +VALUES ('tpt', 'Tlachichilco Tepehua', NULL, 6911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlachichilco Tepehua', [Definition] = NULL, [SortOrder] = 690.50 WHERE [Code] = 'tpt' END +SET [Description] = 'Tlachichilco Tepehua', [Definition] = NULL, [SortOrder] = 6911.00 WHERE [Code] = 'tpt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpl', 'Tlacoapa Me''phaa', NULL, 690.60) END +VALUES ('tpl', 'Tlacoapa Me''phaa', NULL, 6912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlacoapa Me''phaa', [Definition] = NULL, [SortOrder] = 690.60 WHERE [Code] = 'tpl' END +SET [Description] = 'Tlacoapa Me''phaa', [Definition] = NULL, [SortOrder] = 6912.00 WHERE [Code] = 'tpl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctl', 'Tlacoatzintepec Chinantec', NULL, 690.70) END +VALUES ('ctl', 'Tlacoatzintepec Chinantec', NULL, 6913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlacoatzintepec Chinantec', [Definition] = NULL, [SortOrder] = 690.70 WHERE [Code] = 'ctl' END +SET [Description] = 'Tlacoatzintepec Chinantec', [Definition] = NULL, [SortOrder] = 6913.00 WHERE [Code] = 'ctl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpk', 'Tlacolulita Zapotec', NULL, 690.80) END +VALUES ('zpk', 'Tlacolulita Zapotec', NULL, 6914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlacolulita Zapotec', [Definition] = NULL, [SortOrder] = 690.80 WHERE [Code] = 'zpk' END +SET [Description] = 'Tlacolulita Zapotec', [Definition] = NULL, [SortOrder] = 6914.00 WHERE [Code] = 'zpk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxp', 'Tlahuitoltepec Mixe', NULL, 690.90) END +VALUES ('mxp', 'Tlahuitoltepec Mixe', NULL, 6915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlahuitoltepec Mixe', [Definition] = NULL, [SortOrder] = 690.90 WHERE [Code] = 'mxp' END +SET [Description] = 'Tlahuitoltepec Mixe', [Definition] = NULL, [SortOrder] = 6915.00 WHERE [Code] = 'mxp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuz', 'Tlamacazapa Nahuatl', NULL, 691.00) END +VALUES ('nuz', 'Tlamacazapa Nahuatl', NULL, 6916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlamacazapa Nahuatl', [Definition] = NULL, [SortOrder] = 691.00 WHERE [Code] = 'nuz' END +SET [Description] = 'Tlamacazapa Nahuatl', [Definition] = NULL, [SortOrder] = 6916.00 WHERE [Code] = 'nuz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqh', 'Tlazoyaltepec Mixtec', NULL, 691.10) END +VALUES ('mqh', 'Tlazoyaltepec Mixtec', NULL, 6917.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlazoyaltepec Mixtec', [Definition] = NULL, [SortOrder] = 691.10 WHERE [Code] = 'mqh' END +SET [Description] = 'Tlazoyaltepec Mixtec', [Definition] = NULL, [SortOrder] = 6917.00 WHERE [Code] = 'mqh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tli', 'Tlingit', NULL, 691.20) END +VALUES ('tli', 'Tlingit', NULL, 6918.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlingit', [Definition] = NULL, [SortOrder] = 691.20 WHERE [Code] = 'tli' END +SET [Description] = 'Tlingit', [Definition] = NULL, [SortOrder] = 6918.00 WHERE [Code] = 'tli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toz', 'To', NULL, 691.30) END +VALUES ('toz', 'To', NULL, 6919.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'To', [Definition] = NULL, [SortOrder] = 691.30 WHERE [Code] = 'toz' END +SET [Description] = 'To', [Definition] = NULL, [SortOrder] = 6919.00 WHERE [Code] = 'toz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlu', 'To''abaita', NULL, 691.40) END +VALUES ('mlu', 'To''abaita', NULL, 6920.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'To''abaita', [Definition] = NULL, [SortOrder] = 691.40 WHERE [Code] = 'mlu' END +SET [Description] = 'To''abaita', [Definition] = NULL, [SortOrder] = 6920.00 WHERE [Code] = 'mlu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqo', 'Toaripi', NULL, 691.50) END +VALUES ('tqo', 'Toaripi', NULL, 6921.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toaripi', [Definition] = NULL, [SortOrder] = 691.50 WHERE [Code] = 'tqo' END +SET [Description] = 'Toaripi', [Definition] = NULL, [SortOrder] = 6921.00 WHERE [Code] = 'tqo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tob', 'Toba', NULL, 691.60) END +VALUES ('tob', 'Toba', NULL, 6922.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toba', [Definition] = NULL, [SortOrder] = 691.60 WHERE [Code] = 'tob' END +SET [Description] = 'Toba', [Definition] = NULL, [SortOrder] = 6922.00 WHERE [Code] = 'tob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmf', 'Toba-Maskoy', NULL, 691.70) END +VALUES ('tmf', 'Toba-Maskoy', NULL, 6923.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toba-Maskoy', [Definition] = NULL, [SortOrder] = 691.70 WHERE [Code] = 'tmf' END +SET [Description] = 'Toba-Maskoy', [Definition] = NULL, [SortOrder] = 6923.00 WHERE [Code] = 'tmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgh', 'Tobagonian Creole English', NULL, 691.80) END +VALUES ('tgh', 'Tobagonian Creole English', NULL, 6924.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobagonian Creole English', [Definition] = NULL, [SortOrder] = 691.80 WHERE [Code] = 'tgh' END +SET [Description] = 'Tobagonian Creole English', [Definition] = NULL, [SortOrder] = 6924.00 WHERE [Code] = 'tgh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tng', 'Tobanga', NULL, 691.90) END +VALUES ('tng', 'Tobanga', NULL, 6925.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobanga', [Definition] = NULL, [SortOrder] = 691.90 WHERE [Code] = 'tng' END +SET [Description] = 'Tobanga', [Definition] = NULL, [SortOrder] = 6925.00 WHERE [Code] = 'tng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tti', 'Tobati', NULL, 692.00) END +VALUES ('tti', 'Tobati', NULL, 6926.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobati', [Definition] = NULL, [SortOrder] = 692.00 WHERE [Code] = 'tti' END +SET [Description] = 'Tobati', [Definition] = NULL, [SortOrder] = 6926.00 WHERE [Code] = 'tti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlb', 'Tobelo', NULL, 692.10) END +VALUES ('tlb', 'Tobelo', NULL, 6927.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobelo', [Definition] = NULL, [SortOrder] = 692.10 WHERE [Code] = 'tlb' END +SET [Description] = 'Tobelo', [Definition] = NULL, [SortOrder] = 6927.00 WHERE [Code] = 'tlb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tox', 'Tobian', NULL, 692.20) END +VALUES ('tox', 'Tobian', NULL, 6928.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobian', [Definition] = NULL, [SortOrder] = 692.20 WHERE [Code] = 'tox' END +SET [Description] = 'Tobian', [Definition] = NULL, [SortOrder] = 6928.00 WHERE [Code] = 'tox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgb', 'Tobilung', NULL, 692.30) END +VALUES ('tgb', 'Tobilung', NULL, 6929.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobilung', [Definition] = NULL, [SortOrder] = 692.30 WHERE [Code] = 'tgb' END +SET [Description] = 'Tobilung', [Definition] = NULL, [SortOrder] = 6929.00 WHERE [Code] = 'tgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbv', 'Tobo', NULL, 692.40) END +VALUES ('tbv', 'Tobo', NULL, 6930.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobo', [Definition] = NULL, [SortOrder] = 692.40 WHERE [Code] = 'tbv' END +SET [Description] = 'Tobo', [Definition] = NULL, [SortOrder] = 6930.00 WHERE [Code] = 'tbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asu', 'Tocantins Asurini', NULL, 692.50) END +VALUES ('asu', 'Tocantins Asurini', NULL, 6931.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tocantins Asurini', [Definition] = NULL, [SortOrder] = 692.50 WHERE [Code] = 'asu' END +SET [Description] = 'Tocantins Asurini', [Definition] = NULL, [SortOrder] = 6931.00 WHERE [Code] = 'asu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taz', 'Tocho', NULL, 692.60) END +VALUES ('taz', 'Tocho', NULL, 6932.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tocho', [Definition] = NULL, [SortOrder] = 692.60 WHERE [Code] = 'taz' END +SET [Description] = 'Tocho', [Definition] = NULL, [SortOrder] = 6932.00 WHERE [Code] = 'taz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcx', 'Toda', NULL, 692.70) END +VALUES ('tcx', 'Toda', NULL, 6933.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toda', [Definition] = NULL, [SortOrder] = 692.70 WHERE [Code] = 'tcx' END +SET [Description] = 'Toda', [Definition] = NULL, [SortOrder] = 6933.00 WHERE [Code] = 'tcx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdr', 'Todrah', NULL, 692.80) END +VALUES ('tdr', 'Todrah', NULL, 6934.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Todrah', [Definition] = NULL, [SortOrder] = 692.80 WHERE [Code] = 'tdr' END +SET [Description] = 'Todrah', [Definition] = NULL, [SortOrder] = 6934.00 WHERE [Code] = 'tdr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlg', 'Tofanma', NULL, 692.90) END +VALUES ('tlg', 'Tofanma', NULL, 6935.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tofanma', [Definition] = NULL, [SortOrder] = 692.90 WHERE [Code] = 'tlg' END +SET [Description] = 'Tofanma', [Definition] = NULL, [SortOrder] = 6935.00 WHERE [Code] = 'tlg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tfi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tfi', 'Tofin Gbe', NULL, 693.00) END +VALUES ('tfi', 'Tofin Gbe', NULL, 6936.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tofin Gbe', [Definition] = NULL, [SortOrder] = 693.00 WHERE [Code] = 'tfi' END +SET [Description] = 'Tofin Gbe', [Definition] = NULL, [SortOrder] = 6936.00 WHERE [Code] = 'tfi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tor', 'Togbo-Vara Banda', NULL, 693.10) END +VALUES ('tor', 'Togbo-Vara Banda', NULL, 6937.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Togbo-Vara Banda', [Definition] = NULL, [SortOrder] = 693.10 WHERE [Code] = 'tor' END +SET [Description] = 'Togbo-Vara Banda', [Definition] = NULL, [SortOrder] = 6937.00 WHERE [Code] = 'tor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgy', 'Togoyo', NULL, 693.20) END +VALUES ('tgy', 'Togoyo', NULL, 6938.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Togoyo', [Definition] = NULL, [SortOrder] = 693.20 WHERE [Code] = 'tgy' END +SET [Description] = 'Togoyo', [Definition] = NULL, [SortOrder] = 6938.00 WHERE [Code] = 'tgy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ood') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ood', 'Tohono O''odham', NULL, 693.30) END +VALUES ('ood', 'Tohono O''odham', NULL, 6939.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tohono O''odham', [Definition] = NULL, [SortOrder] = 693.30 WHERE [Code] = 'ood' END +SET [Description] = 'Tohono O''odham', [Definition] = NULL, [SortOrder] = 6939.00 WHERE [Code] = 'ood' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toj', 'Tojolabal', NULL, 693.40) END +VALUES ('toj', 'Tojolabal', NULL, 6940.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tojolabal', [Definition] = NULL, [SortOrder] = 693.40 WHERE [Code] = 'toj' END +SET [Description] = 'Tojolabal', [Definition] = NULL, [SortOrder] = 6940.00 WHERE [Code] = 'toj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpi', 'Tok Pisin', NULL, 693.50) END +VALUES ('tpi', 'Tok Pisin', NULL, 6941.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tok Pisin', [Definition] = NULL, [SortOrder] = 693.50 WHERE [Code] = 'tpi' END +SET [Description] = 'Tok Pisin', [Definition] = NULL, [SortOrder] = 6941.00 WHERE [Code] = 'tpi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zuh', 'Tokano', NULL, 693.60) END +VALUES ('zuh', 'Tokano', NULL, 6942.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tokano', [Definition] = NULL, [SortOrder] = 693.60 WHERE [Code] = 'zuh' END +SET [Description] = 'Tokano', [Definition] = NULL, [SortOrder] = 6942.00 WHERE [Code] = 'zuh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkl', 'Tokelau', NULL, 693.70) END +VALUES ('tkl', 'Tokelau', NULL, 6943.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tokelau', [Definition] = NULL, [SortOrder] = 693.70 WHERE [Code] = 'tkl' END +SET [Description] = 'Tokelau', [Definition] = NULL, [SortOrder] = 6943.00 WHERE [Code] = 'tkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xto', 'Tokharian A', NULL, 693.80) END +VALUES ('xto', 'Tokharian A', NULL, 6944.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tokharian A', [Definition] = NULL, [SortOrder] = 693.80 WHERE [Code] = 'xto' END +SET [Description] = 'Tokharian A', [Definition] = NULL, [SortOrder] = 6944.00 WHERE [Code] = 'xto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txb', 'Tokharian B', NULL, 693.90) END +VALUES ('txb', 'Tokharian B', NULL, 6945.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tokharian B', [Definition] = NULL, [SortOrder] = 693.90 WHERE [Code] = 'txb' END +SET [Description] = 'Tokharian B', [Definition] = NULL, [SortOrder] = 6945.00 WHERE [Code] = 'txb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tok', 'Toki Pona', NULL, 694.00) END +VALUES ('tok', 'Toki Pona', NULL, 6946.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toki Pona', [Definition] = NULL, [SortOrder] = 694.00 WHERE [Code] = 'tok' END +SET [Description] = 'Toki Pona', [Definition] = NULL, [SortOrder] = 6946.00 WHERE [Code] = 'tok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkn', 'Toku-No-Shima', NULL, 694.10) END +VALUES ('tkn', 'Toku-No-Shima', NULL, 6947.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toku-No-Shima', [Definition] = NULL, [SortOrder] = 694.10 WHERE [Code] = 'tkn' END +SET [Description] = 'Toku-No-Shima', [Definition] = NULL, [SortOrder] = 6947.00 WHERE [Code] = 'tkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jic', 'Tol', NULL, 694.20) END +VALUES ('jic', 'Tol', NULL, 6948.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tol', [Definition] = NULL, [SortOrder] = 694.20 WHERE [Code] = 'jic' END +SET [Description] = 'Tol', [Definition] = NULL, [SortOrder] = 6948.00 WHERE [Code] = 'jic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbw', 'Tolaki', NULL, 694.30) END +VALUES ('lbw', 'Tolaki', NULL, 6949.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tolaki', [Definition] = NULL, [SortOrder] = 694.30 WHERE [Code] = 'lbw' END +SET [Description] = 'Tolaki', [Definition] = NULL, [SortOrder] = 6949.00 WHERE [Code] = 'lbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlm', 'Tolomako', NULL, 694.40) END +VALUES ('tlm', 'Tolomako', NULL, 6950.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tolomako', [Definition] = NULL, [SortOrder] = 694.40 WHERE [Code] = 'tlm' END +SET [Description] = 'Tolomako', [Definition] = NULL, [SortOrder] = 6950.00 WHERE [Code] = 'tlm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tol', 'Tolowa', NULL, 694.50) END +VALUES ('tol', 'Tolowa', NULL, 6951.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tolowa', [Definition] = NULL, [SortOrder] = 694.50 WHERE [Code] = 'tol' END +SET [Description] = 'Tolowa', [Definition] = NULL, [SortOrder] = 6951.00 WHERE [Code] = 'tol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tod', 'Toma', NULL, 694.60) END +VALUES ('tod', 'Toma', NULL, 6952.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toma', [Definition] = NULL, [SortOrder] = 694.60 WHERE [Code] = 'tod' END +SET [Description] = 'Toma', [Definition] = NULL, [SortOrder] = 6952.00 WHERE [Code] = 'tod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdi', 'Tomadino', NULL, 694.70) END +VALUES ('tdi', 'Tomadino', NULL, 6953.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tomadino', [Definition] = NULL, [SortOrder] = 694.70 WHERE [Code] = 'tdi' END +SET [Description] = 'Tomadino', [Definition] = NULL, [SortOrder] = 6953.00 WHERE [Code] = 'tdi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttp', 'Tombelala', NULL, 694.80) END +VALUES ('ttp', 'Tombelala', NULL, 6954.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tombelala', [Definition] = NULL, [SortOrder] = 694.80 WHERE [Code] = 'ttp' END +SET [Description] = 'Tombelala', [Definition] = NULL, [SortOrder] = 6954.00 WHERE [Code] = 'ttp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txa', 'Tombonuo', NULL, 694.90) END +VALUES ('txa', 'Tombonuo', NULL, 6955.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tombonuo', [Definition] = NULL, [SortOrder] = 694.90 WHERE [Code] = 'txa' END +SET [Description] = 'Tombonuo', [Definition] = NULL, [SortOrder] = 6955.00 WHERE [Code] = 'txa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tom', 'Tombulu', NULL, 695.00) END +VALUES ('tom', 'Tombulu', NULL, 6956.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tombulu', [Definition] = NULL, [SortOrder] = 695.00 WHERE [Code] = 'tom' END +SET [Description] = 'Tombulu', [Definition] = NULL, [SortOrder] = 6956.00 WHERE [Code] = 'tom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txm', 'Tomini', NULL, 695.10) END +VALUES ('txm', 'Tomini', NULL, 6957.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tomini', [Definition] = NULL, [SortOrder] = 695.10 WHERE [Code] = 'txm' END +SET [Description] = 'Tomini', [Definition] = NULL, [SortOrder] = 6957.00 WHERE [Code] = 'txm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dto', 'Tommo So Dogon', NULL, 695.20) END +VALUES ('dto', 'Tommo So Dogon', NULL, 6958.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tommo So Dogon', [Definition] = NULL, [SortOrder] = 695.20 WHERE [Code] = 'dto' END +SET [Description] = 'Tommo So Dogon', [Definition] = NULL, [SortOrder] = 6958.00 WHERE [Code] = 'dto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtm', 'Tomo Kan Dogon', NULL, 695.30) END +VALUES ('dtm', 'Tomo Kan Dogon', NULL, 6959.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tomo Kan Dogon', [Definition] = NULL, [SortOrder] = 695.30 WHERE [Code] = 'dtm' END +SET [Description] = 'Tomo Kan Dogon', [Definition] = NULL, [SortOrder] = 6959.00 WHERE [Code] = 'dtm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqp', 'Tomoip', NULL, 695.40) END +VALUES ('tqp', 'Tomoip', NULL, 6960.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tomoip', [Definition] = NULL, [SortOrder] = 695.40 WHERE [Code] = 'tqp' END +SET [Description] = 'Tomoip', [Definition] = NULL, [SortOrder] = 6960.00 WHERE [Code] = 'tqp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdn', 'Tondano', NULL, 695.50) END +VALUES ('tdn', 'Tondano', NULL, 6961.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tondano', [Definition] = NULL, [SortOrder] = 695.50 WHERE [Code] = 'tdn' END +SET [Description] = 'Tondano', [Definition] = NULL, [SortOrder] = 6961.00 WHERE [Code] = 'tdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tst', 'Tondi Songway Kiini', NULL, 695.60) END +VALUES ('tst', 'Tondi Songway Kiini', NULL, 6962.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tondi Songway Kiini', [Definition] = NULL, [SortOrder] = 695.60 WHERE [Code] = 'tst' END +SET [Description] = 'Tondi Songway Kiini', [Definition] = NULL, [SortOrder] = 6962.00 WHERE [Code] = 'tst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tog', 'Tonga (Nyasa)', NULL, 695.70) END +VALUES ('tog', 'Tonga (Nyasa)', NULL, 6963.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonga (Nyasa)', [Definition] = NULL, [SortOrder] = 695.70 WHERE [Code] = 'tog' END +SET [Description] = 'Tonga (Nyasa)', [Definition] = NULL, [SortOrder] = 6963.00 WHERE [Code] = 'tog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ton') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ton', 'Tonga (Tonga Islands)', NULL, 695.80) END +VALUES ('ton', 'Tonga (Tonga Islands)', NULL, 6964.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonga (Tonga Islands)', [Definition] = NULL, [SortOrder] = 695.80 WHERE [Code] = 'ton' END +SET [Description] = 'Tonga (Tonga Islands)', [Definition] = NULL, [SortOrder] = 6964.00 WHERE [Code] = 'ton' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toi', 'Tonga (Zambia)', NULL, 695.90) END +VALUES ('toi', 'Tonga (Zambia)', NULL, 6965.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonga (Zambia)', [Definition] = NULL, [SortOrder] = 695.90 WHERE [Code] = 'toi' END +SET [Description] = 'Tonga (Zambia)', [Definition] = NULL, [SortOrder] = 6965.00 WHERE [Code] = 'toi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tny', 'Tongwe', NULL, 696.00) END +VALUES ('tny', 'Tongwe', NULL, 6966.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tongwe', [Definition] = NULL, [SortOrder] = 696.00 WHERE [Code] = 'tny' END +SET [Description] = 'Tongwe', [Definition] = NULL, [SortOrder] = 6966.00 WHERE [Code] = 'tny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjn', 'Tonjon', NULL, 696.10) END +VALUES ('tjn', 'Tonjon', NULL, 6967.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonjon', [Definition] = NULL, [SortOrder] = 696.10 WHERE [Code] = 'tjn' END +SET [Description] = 'Tonjon', [Definition] = NULL, [SortOrder] = 6967.00 WHERE [Code] = 'tjn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqw', 'Tonkawa', NULL, 696.20) END +VALUES ('tqw', 'Tonkawa', NULL, 6968.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonkawa', [Definition] = NULL, [SortOrder] = 696.20 WHERE [Code] = 'tqw' END +SET [Description] = 'Tonkawa', [Definition] = NULL, [SortOrder] = 6968.00 WHERE [Code] = 'tqw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnw', 'Tonsawang', NULL, 696.30) END +VALUES ('tnw', 'Tonsawang', NULL, 6969.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonsawang', [Definition] = NULL, [SortOrder] = 696.30 WHERE [Code] = 'tnw' END +SET [Description] = 'Tonsawang', [Definition] = NULL, [SortOrder] = 6969.00 WHERE [Code] = 'tnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txs', 'Tonsea', NULL, 696.40) END +VALUES ('txs', 'Tonsea', NULL, 6970.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonsea', [Definition] = NULL, [SortOrder] = 696.40 WHERE [Code] = 'txs' END +SET [Description] = 'Tonsea', [Definition] = NULL, [SortOrder] = 6970.00 WHERE [Code] = 'txs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnt', 'Tontemboan', NULL, 696.50) END +VALUES ('tnt', 'Tontemboan', NULL, 6971.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tontemboan', [Definition] = NULL, [SortOrder] = 696.50 WHERE [Code] = 'tnt' END +SET [Description] = 'Tontemboan', [Definition] = NULL, [SortOrder] = 6971.00 WHERE [Code] = 'tnt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttj', 'Tooro', NULL, 696.60) END +VALUES ('ttj', 'Tooro', NULL, 6972.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tooro', [Definition] = NULL, [SortOrder] = 696.60 WHERE [Code] = 'ttj' END +SET [Description] = 'Tooro', [Definition] = NULL, [SortOrder] = 6972.00 WHERE [Code] = 'ttj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toy', 'Topoiyo', NULL, 696.70) END +VALUES ('toy', 'Topoiyo', NULL, 6973.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Topoiyo', [Definition] = NULL, [SortOrder] = 696.70 WHERE [Code] = 'toy' END +SET [Description] = 'Topoiyo', [Definition] = NULL, [SortOrder] = 6973.00 WHERE [Code] = 'toy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toq', 'Toposa', NULL, 696.80) END +VALUES ('toq', 'Toposa', NULL, 6974.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toposa', [Definition] = NULL, [SortOrder] = 696.80 WHERE [Code] = 'toq' END +SET [Description] = 'Toposa', [Definition] = NULL, [SortOrder] = 6974.00 WHERE [Code] = 'toq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trz', 'Torá', NULL, 696.90) END +VALUES ('trz', 'Torá', NULL, 6975.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torá', [Definition] = NULL, [SortOrder] = 696.90 WHERE [Code] = 'trz' END +SET [Description] = 'Torá', [Definition] = NULL, [SortOrder] = 6975.00 WHERE [Code] = 'trz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sda', 'Toraja-Sa''dan', NULL, 697.00) END +VALUES ('sda', 'Toraja-Sa''dan', NULL, 6976.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toraja-Sa''dan', [Definition] = NULL, [SortOrder] = 697.00 WHERE [Code] = 'sda' END +SET [Description] = 'Toraja-Sa''dan', [Definition] = NULL, [SortOrder] = 6976.00 WHERE [Code] = 'sda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trj', 'Toram', NULL, 697.10) END +VALUES ('trj', 'Toram', NULL, 6977.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toram', [Definition] = NULL, [SortOrder] = 697.10 WHERE [Code] = 'trj' END +SET [Description] = 'Toram', [Definition] = NULL, [SortOrder] = 6977.00 WHERE [Code] = 'trj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttu', 'Torau', NULL, 697.20) END +VALUES ('ttu', 'Torau', NULL, 6978.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torau', [Definition] = NULL, [SortOrder] = 697.20 WHERE [Code] = 'ttu' END +SET [Description] = 'Torau', [Definition] = NULL, [SortOrder] = 6978.00 WHERE [Code] = 'ttu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdv', 'Toro', NULL, 697.30) END +VALUES ('tdv', 'Toro', NULL, 6979.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toro', [Definition] = NULL, [SortOrder] = 697.30 WHERE [Code] = 'tdv' END +SET [Description] = 'Toro', [Definition] = NULL, [SortOrder] = 6979.00 WHERE [Code] = 'tdv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dts', 'Toro So Dogon', NULL, 697.40) END +VALUES ('dts', 'Toro So Dogon', NULL, 6980.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toro So Dogon', [Definition] = NULL, [SortOrder] = 697.40 WHERE [Code] = 'dts' END +SET [Description] = 'Toro So Dogon', [Definition] = NULL, [SortOrder] = 6980.00 WHERE [Code] = 'dts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtt', 'Toro Tegu Dogon', NULL, 697.50) END +VALUES ('dtt', 'Toro Tegu Dogon', NULL, 6981.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toro Tegu Dogon', [Definition] = NULL, [SortOrder] = 697.50 WHERE [Code] = 'dtt' END +SET [Description] = 'Toro Tegu Dogon', [Definition] = NULL, [SortOrder] = 6981.00 WHERE [Code] = 'dtt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tno', 'Toromono', NULL, 697.60) END +VALUES ('tno', 'Toromono', NULL, 6982.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toromono', [Definition] = NULL, [SortOrder] = 697.60 WHERE [Code] = 'tno' END +SET [Description] = 'Toromono', [Definition] = NULL, [SortOrder] = 6982.00 WHERE [Code] = 'tno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqr', 'Torona', NULL, 697.70) END +VALUES ('tqr', 'Torona', NULL, 6983.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torona', [Definition] = NULL, [SortOrder] = 697.70 WHERE [Code] = 'tqr' END +SET [Description] = 'Torona', [Definition] = NULL, [SortOrder] = 6983.00 WHERE [Code] = 'tqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcs', 'Torres Strait Creole', NULL, 697.80) END +VALUES ('tcs', 'Torres Strait Creole', NULL, 6984.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torres Strait Creole', [Definition] = NULL, [SortOrder] = 697.80 WHERE [Code] = 'tcs' END +SET [Description] = 'Torres Strait Creole', [Definition] = NULL, [SortOrder] = 6984.00 WHERE [Code] = 'tcs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tei', 'Torricelli', NULL, 697.90) END +VALUES ('tei', 'Torricelli', NULL, 6985.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torricelli', [Definition] = NULL, [SortOrder] = 697.90 WHERE [Code] = 'tei' END +SET [Description] = 'Torricelli', [Definition] = NULL, [SortOrder] = 6985.00 WHERE [Code] = 'tei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trw', 'Torwali', NULL, 698.00) END +VALUES ('trw', 'Torwali', NULL, 6986.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torwali', [Definition] = NULL, [SortOrder] = 698.00 WHERE [Code] = 'trw' END +SET [Description] = 'Torwali', [Definition] = NULL, [SortOrder] = 6986.00 WHERE [Code] = 'trw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'als') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('als', 'Tosk Albanian', NULL, 698.10) END +VALUES ('als', 'Tosk Albanian', NULL, 6987.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tosk Albanian', [Definition] = NULL, [SortOrder] = 698.10 WHERE [Code] = 'als' END +SET [Description] = 'Tosk Albanian', [Definition] = NULL, [SortOrder] = 6987.00 WHERE [Code] = 'als' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttl', 'Totela', NULL, 698.20) END +VALUES ('ttl', 'Totela', NULL, 6988.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totela', [Definition] = NULL, [SortOrder] = 698.20 WHERE [Code] = 'ttl' END +SET [Description] = 'Totela', [Definition] = NULL, [SortOrder] = 6988.00 WHERE [Code] = 'ttl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txo', 'Toto', NULL, 698.30) END +VALUES ('txo', 'Toto', NULL, 6989.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toto', [Definition] = NULL, [SortOrder] = 698.30 WHERE [Code] = 'txo' END +SET [Description] = 'Toto', [Definition] = NULL, [SortOrder] = 6989.00 WHERE [Code] = 'txo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txe', 'Totoli', NULL, 698.40) END +VALUES ('txe', 'Totoli', NULL, 6990.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totoli', [Definition] = NULL, [SortOrder] = 698.40 WHERE [Code] = 'txe' END +SET [Description] = 'Totoli', [Definition] = NULL, [SortOrder] = 6990.00 WHERE [Code] = 'txe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zph', 'Totomachapan Zapotec', NULL, 698.50) END +VALUES ('zph', 'Totomachapan Zapotec', NULL, 6991.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totomachapan Zapotec', [Definition] = NULL, [SortOrder] = 698.50 WHERE [Code] = 'zph' END +SET [Description] = 'Totomachapan Zapotec', [Definition] = NULL, [SortOrder] = 6991.00 WHERE [Code] = 'zph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mto', 'Totontepec Mixe', NULL, 698.60) END +VALUES ('mto', 'Totontepec Mixe', NULL, 6992.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totontepec Mixe', [Definition] = NULL, [SortOrder] = 698.60 WHERE [Code] = 'mto' END +SET [Description] = 'Totontepec Mixe', [Definition] = NULL, [SortOrder] = 6992.00 WHERE [Code] = 'mto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttk', 'Totoro', NULL, 698.70) END +VALUES ('ttk', 'Totoro', NULL, 6993.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totoro', [Definition] = NULL, [SortOrder] = 698.70 WHERE [Code] = 'ttk' END +SET [Description] = 'Totoro', [Definition] = NULL, [SortOrder] = 6993.00 WHERE [Code] = 'ttk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqu', 'Touo', NULL, 698.80) END +VALUES ('tqu', 'Touo', NULL, 6994.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Touo', [Definition] = NULL, [SortOrder] = 698.80 WHERE [Code] = 'tqu' END +SET [Description] = 'Touo', [Definition] = NULL, [SortOrder] = 6994.00 WHERE [Code] = 'tqu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neb', 'Toura (Côte d''Ivoire)', NULL, 698.90) END +VALUES ('neb', 'Toura (Côte d''Ivoire)', NULL, 6995.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toura (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 698.90 WHERE [Code] = 'neb' END +SET [Description] = 'Toura (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 6995.00 WHERE [Code] = 'neb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'don') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('don', 'Toura (Papua New Guinea)', NULL, 699.00) END +VALUES ('don', 'Toura (Papua New Guinea)', NULL, 6996.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toura (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 699.00 WHERE [Code] = 'don' END +SET [Description] = 'Toura (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 6996.00 WHERE [Code] = 'don' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttn', 'Towei', NULL, 699.10) END +VALUES ('ttn', 'Towei', NULL, 6997.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Towei', [Definition] = NULL, [SortOrder] = 699.10 WHERE [Code] = 'ttn' END +SET [Description] = 'Towei', [Definition] = NULL, [SortOrder] = 6997.00 WHERE [Code] = 'ttn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtg', 'Transalpine Gaulish', NULL, 699.20) END +VALUES ('xtg', 'Transalpine Gaulish', NULL, 6998.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Transalpine Gaulish', [Definition] = NULL, [SortOrder] = 699.20 WHERE [Code] = 'xtg' END +SET [Description] = 'Transalpine Gaulish', [Definition] = NULL, [SortOrder] = 6998.00 WHERE [Code] = 'xtg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmd', 'Traveller Danish', NULL, 699.30) END +VALUES ('rmd', 'Traveller Danish', NULL, 6999.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Traveller Danish', [Definition] = NULL, [SortOrder] = 699.30 WHERE [Code] = 'rmd' END +SET [Description] = 'Traveller Danish', [Definition] = NULL, [SortOrder] = 6999.00 WHERE [Code] = 'rmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmg', 'Traveller Norwegian', NULL, 699.40) END +VALUES ('rmg', 'Traveller Norwegian', NULL, 7000.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Traveller Norwegian', [Definition] = NULL, [SortOrder] = 699.40 WHERE [Code] = 'rmg' END +SET [Description] = 'Traveller Norwegian', [Definition] = NULL, [SortOrder] = 7000.00 WHERE [Code] = 'rmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trl', 'Traveller Scottish', NULL, 699.50) END +VALUES ('trl', 'Traveller Scottish', NULL, 7001.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Traveller Scottish', [Definition] = NULL, [SortOrder] = 699.50 WHERE [Code] = 'trl' END +SET [Description] = 'Traveller Scottish', [Definition] = NULL, [SortOrder] = 7001.00 WHERE [Code] = 'trl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trm', 'Tregami', NULL, 699.60) END +VALUES ('trm', 'Tregami', NULL, 7002.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tregami', [Definition] = NULL, [SortOrder] = 699.60 WHERE [Code] = 'trm' END +SET [Description] = 'Tregami', [Definition] = NULL, [SortOrder] = 7002.00 WHERE [Code] = 'trm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tme', 'Tremembé', NULL, 699.70) END +VALUES ('tme', 'Tremembé', NULL, 7003.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tremembé', [Definition] = NULL, [SortOrder] = 699.70 WHERE [Code] = 'tme' END +SET [Description] = 'Tremembé', [Definition] = NULL, [SortOrder] = 7003.00 WHERE [Code] = 'tme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stg', 'Trieng', NULL, 699.80) END +VALUES ('stg', 'Trieng', NULL, 7004.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trieng', [Definition] = NULL, [SortOrder] = 699.80 WHERE [Code] = 'stg' END +SET [Description] = 'Trieng', [Definition] = NULL, [SortOrder] = 7004.00 WHERE [Code] = 'stg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tip', 'Trimuris', NULL, 699.90) END +VALUES ('tip', 'Trimuris', NULL, 7005.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trimuris', [Definition] = NULL, [SortOrder] = 699.90 WHERE [Code] = 'tip' END +SET [Description] = 'Trimuris', [Definition] = NULL, [SortOrder] = 7005.00 WHERE [Code] = 'tip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgq', 'Tring', NULL, 700.00) END +VALUES ('tgq', 'Tring', NULL, 7006.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tring', [Definition] = NULL, [SortOrder] = 700.00 WHERE [Code] = 'tgq' END +SET [Description] = 'Tring', [Definition] = NULL, [SortOrder] = 7006.00 WHERE [Code] = 'tgq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trx', 'Tringgus-Sembaan Bidayuh', NULL, 700.10) END +VALUES ('trx', 'Tringgus-Sembaan Bidayuh', NULL, 7007.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tringgus-Sembaan Bidayuh', [Definition] = NULL, [SortOrder] = 700.10 WHERE [Code] = 'trx' END +SET [Description] = 'Tringgus-Sembaan Bidayuh', [Definition] = NULL, [SortOrder] = 7007.00 WHERE [Code] = 'trx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lst', 'Trinidad and Tobago Sign Language', NULL, 700.20) END +VALUES ('lst', 'Trinidad and Tobago Sign Language', NULL, 7008.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trinidad and Tobago Sign Language', [Definition] = NULL, [SortOrder] = 700.20 WHERE [Code] = 'lst' END +SET [Description] = 'Trinidad and Tobago Sign Language', [Definition] = NULL, [SortOrder] = 7008.00 WHERE [Code] = 'lst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trf', 'Trinidadian Creole English', NULL, 700.30) END +VALUES ('trf', 'Trinidadian Creole English', NULL, 7009.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trinidadian Creole English', [Definition] = NULL, [SortOrder] = 700.30 WHERE [Code] = 'trf' END +SET [Description] = 'Trinidadian Creole English', [Definition] = NULL, [SortOrder] = 7009.00 WHERE [Code] = 'trf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trn', 'Trinitario', NULL, 700.40) END +VALUES ('trn', 'Trinitario', NULL, 7010.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trinitario', [Definition] = NULL, [SortOrder] = 700.40 WHERE [Code] = 'trn' END +SET [Description] = 'Trinitario', [Definition] = NULL, [SortOrder] = 7010.00 WHERE [Code] = 'trn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tri', 'Trió', NULL, 700.50) END +VALUES ('tri', 'Trió', NULL, 7011.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trió', [Definition] = NULL, [SortOrder] = 700.50 WHERE [Code] = 'tri' END +SET [Description] = 'Trió', [Definition] = NULL, [SortOrder] = 7011.00 WHERE [Code] = 'tri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tka', 'Truká', NULL, 700.60) END +VALUES ('tka', 'Truká', NULL, 7012.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Truká', [Definition] = NULL, [SortOrder] = 700.60 WHERE [Code] = 'tka' END +SET [Description] = 'Truká', [Definition] = NULL, [SortOrder] = 7012.00 WHERE [Code] = 'tka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpy', 'Trumai', NULL, 700.70) END +VALUES ('tpy', 'Trumai', NULL, 7013.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trumai', [Definition] = NULL, [SortOrder] = 700.70 WHERE [Code] = 'tpy' END +SET [Description] = 'Trumai', [Definition] = NULL, [SortOrder] = 7013.00 WHERE [Code] = 'tpy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsl', 'Ts''ün-Lao', NULL, 700.80) END +VALUES ('tsl', 'Ts''ün-Lao', NULL, 7014.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ts''ün-Lao', [Definition] = NULL, [SortOrder] = 700.80 WHERE [Code] = 'tsl' END +SET [Description] = 'Ts''ün-Lao', [Definition] = NULL, [SortOrder] = 7014.00 WHERE [Code] = 'tsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsa', 'Tsaangi', NULL, 700.90) END +VALUES ('tsa', 'Tsaangi', NULL, 7015.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsaangi', [Definition] = NULL, [SortOrder] = 700.90 WHERE [Code] = 'tsa' END +SET [Description] = 'Tsaangi', [Definition] = NULL, [SortOrder] = 7015.00 WHERE [Code] = 'tsa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkr', 'Tsakhur', NULL, 701.00) END +VALUES ('tkr', 'Tsakhur', NULL, 7016.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsakhur', [Definition] = NULL, [SortOrder] = 701.00 WHERE [Code] = 'tkr' END +SET [Description] = 'Tsakhur', [Definition] = NULL, [SortOrder] = 7016.00 WHERE [Code] = 'tkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsd', 'Tsakonian', NULL, 701.10) END +VALUES ('tsd', 'Tsakonian', NULL, 7017.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsakonian', [Definition] = NULL, [SortOrder] = 701.10 WHERE [Code] = 'tsd' END +SET [Description] = 'Tsakonian', [Definition] = NULL, [SortOrder] = 7017.00 WHERE [Code] = 'tsd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvz', 'Tsakwambo', NULL, 701.20) END +VALUES ('kvz', 'Tsakwambo', NULL, 7018.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsakwambo', [Definition] = NULL, [SortOrder] = 701.20 WHERE [Code] = 'kvz' END +SET [Description] = 'Tsakwambo', [Definition] = NULL, [SortOrder] = 7018.00 WHERE [Code] = 'kvz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsb', 'Tsamai', NULL, 701.30) END +VALUES ('tsb', 'Tsamai', NULL, 7019.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsamai', [Definition] = NULL, [SortOrder] = 701.30 WHERE [Code] = 'tsb' END +SET [Description] = 'Tsamai', [Definition] = NULL, [SortOrder] = 7019.00 WHERE [Code] = 'tsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huq', 'Tsat', NULL, 701.40) END +VALUES ('huq', 'Tsat', NULL, 7020.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsat', [Definition] = NULL, [SortOrder] = 701.40 WHERE [Code] = 'huq' END +SET [Description] = 'Tsat', [Definition] = NULL, [SortOrder] = 7020.00 WHERE [Code] = 'huq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsk', 'Tseku', NULL, 701.50) END +VALUES ('tsk', 'Tseku', NULL, 7021.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tseku', [Definition] = NULL, [SortOrder] = 701.50 WHERE [Code] = 'tsk' END +SET [Description] = 'Tseku', [Definition] = NULL, [SortOrder] = 7021.00 WHERE [Code] = 'tsk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txc', 'Tsetsaut', NULL, 701.60) END +VALUES ('txc', 'Tsetsaut', NULL, 7022.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsetsaut', [Definition] = NULL, [SortOrder] = 701.60 WHERE [Code] = 'txc' END +SET [Description] = 'Tsetsaut', [Definition] = NULL, [SortOrder] = 7022.00 WHERE [Code] = 'txc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsj', 'Tshangla', NULL, 701.70) END +VALUES ('tsj', 'Tshangla', NULL, 7023.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tshangla', [Definition] = NULL, [SortOrder] = 701.70 WHERE [Code] = 'tsj' END +SET [Description] = 'Tshangla', [Definition] = NULL, [SortOrder] = 7023.00 WHERE [Code] = 'tsj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdl', 'Tsikimba', NULL, 701.80) END +VALUES ('kdl', 'Tsikimba', NULL, 7024.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsikimba', [Definition] = NULL, [SortOrder] = 701.80 WHERE [Code] = 'kdl' END +SET [Description] = 'Tsikimba', [Definition] = NULL, [SortOrder] = 7024.00 WHERE [Code] = 'kdl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cas', 'Tsimané', NULL, 701.90) END +VALUES ('cas', 'Tsimané', NULL, 7025.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsimané', [Definition] = NULL, [SortOrder] = 701.90 WHERE [Code] = 'cas' END +SET [Description] = 'Tsimané', [Definition] = NULL, [SortOrder] = 7025.00 WHERE [Code] = 'cas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmw', 'Tsimihety Malagasy', NULL, 702.00) END +VALUES ('xmw', 'Tsimihety Malagasy', NULL, 7026.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsimihety Malagasy', [Definition] = NULL, [SortOrder] = 702.00 WHERE [Code] = 'xmw' END +SET [Description] = 'Tsimihety Malagasy', [Definition] = NULL, [SortOrder] = 7026.00 WHERE [Code] = 'xmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsi', 'Tsimshian', NULL, 702.10) END +VALUES ('tsi', 'Tsimshian', NULL, 7027.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsimshian', [Definition] = NULL, [SortOrder] = 702.10 WHERE [Code] = 'tsi' END +SET [Description] = 'Tsimshian', [Definition] = NULL, [SortOrder] = 7027.00 WHERE [Code] = 'tsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsw', 'Tsishingini', NULL, 702.20) END +VALUES ('tsw', 'Tsishingini', NULL, 7028.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsishingini', [Definition] = NULL, [SortOrder] = 702.20 WHERE [Code] = 'tsw' END +SET [Description] = 'Tsishingini', [Definition] = NULL, [SortOrder] = 7028.00 WHERE [Code] = 'tsw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldp', 'Tso', NULL, 702.30) END +VALUES ('ldp', 'Tso', NULL, 7029.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tso', [Definition] = NULL, [SortOrder] = 702.30 WHERE [Code] = 'ldp' END +SET [Description] = 'Tso', [Definition] = NULL, [SortOrder] = 7029.00 WHERE [Code] = 'ldp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hio', 'Tsoa', NULL, 702.40) END +VALUES ('hio', 'Tsoa', NULL, 7030.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsoa', [Definition] = NULL, [SortOrder] = 702.40 WHERE [Code] = 'hio' END +SET [Description] = 'Tsoa', [Definition] = NULL, [SortOrder] = 7030.00 WHERE [Code] = 'hio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsv', 'Tsogo', NULL, 702.50) END +VALUES ('tsv', 'Tsogo', NULL, 7031.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsogo', [Definition] = NULL, [SortOrder] = 702.50 WHERE [Code] = 'tsv' END +SET [Description] = 'Tsogo', [Definition] = NULL, [SortOrder] = 7031.00 WHERE [Code] = 'tsv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tso', 'Tsonga', NULL, 702.60) END +VALUES ('tso', 'Tsonga', NULL, 7032.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsonga', [Definition] = NULL, [SortOrder] = 702.60 WHERE [Code] = 'tso' END +SET [Description] = 'Tsonga', [Definition] = NULL, [SortOrder] = 7032.00 WHERE [Code] = 'tso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lto', 'Tsotso', NULL, 702.70) END +VALUES ('lto', 'Tsotso', NULL, 7033.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsotso', [Definition] = NULL, [SortOrder] = 702.70 WHERE [Code] = 'lto' END +SET [Description] = 'Tsotso', [Definition] = NULL, [SortOrder] = 7033.00 WHERE [Code] = 'lto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsu', 'Tsou', NULL, 702.80) END +VALUES ('tsu', 'Tsou', NULL, 7034.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsou', [Definition] = NULL, [SortOrder] = 702.80 WHERE [Code] = 'tsu' END +SET [Description] = 'Tsou', [Definition] = NULL, [SortOrder] = 7034.00 WHERE [Code] = 'tsu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbq', 'Tsucuba', NULL, 702.90) END +VALUES ('cbq', 'Tsucuba', NULL, 7035.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsucuba', [Definition] = NULL, [SortOrder] = 702.90 WHERE [Code] = 'cbq' END +SET [Description] = 'Tsucuba', [Definition] = NULL, [SortOrder] = 7035.00 WHERE [Code] = 'cbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttz', 'Tsum', NULL, 703.00) END +VALUES ('ttz', 'Tsum', NULL, 7036.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsum', [Definition] = NULL, [SortOrder] = 703.00 WHERE [Code] = 'ttz' END +SET [Description] = 'Tsum', [Definition] = NULL, [SortOrder] = 7036.00 WHERE [Code] = 'ttz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvd', 'Tsuvadi', NULL, 703.10) END +VALUES ('tvd', 'Tsuvadi', NULL, 7037.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsuvadi', [Definition] = NULL, [SortOrder] = 703.10 WHERE [Code] = 'tvd' END +SET [Description] = 'Tsuvadi', [Definition] = NULL, [SortOrder] = 7037.00 WHERE [Code] = 'tvd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsh', 'Tsuvan', NULL, 703.20) END +VALUES ('tsh', 'Tsuvan', NULL, 7038.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsuvan', [Definition] = NULL, [SortOrder] = 703.20 WHERE [Code] = 'tsh' END +SET [Description] = 'Tsuvan', [Definition] = NULL, [SortOrder] = 7038.00 WHERE [Code] = 'tsh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsc', 'Tswa', NULL, 703.30) END +VALUES ('tsc', 'Tswa', NULL, 7039.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tswa', [Definition] = NULL, [SortOrder] = 703.30 WHERE [Code] = 'tsc' END +SET [Description] = 'Tswa', [Definition] = NULL, [SortOrder] = 7039.00 WHERE [Code] = 'tsc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsn', 'Tswana', NULL, 703.40) END +VALUES ('tsn', 'Tswana', NULL, 7040.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tswana', [Definition] = NULL, [SortOrder] = 703.40 WHERE [Code] = 'tsn' END +SET [Description] = 'Tswana', [Definition] = NULL, [SortOrder] = 7040.00 WHERE [Code] = 'tsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'two') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('two', 'Tswapong', NULL, 703.50) END +VALUES ('two', 'Tswapong', NULL, 7041.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tswapong', [Definition] = NULL, [SortOrder] = 703.50 WHERE [Code] = 'two' END +SET [Description] = 'Tswapong', [Definition] = NULL, [SortOrder] = 7041.00 WHERE [Code] = 'two' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjg', 'Tu', NULL, 703.60) END +VALUES ('mjg', 'Tu', NULL, 7042.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tu', [Definition] = NULL, [SortOrder] = 703.60 WHERE [Code] = 'mjg' END +SET [Description] = 'Tu', [Definition] = NULL, [SortOrder] = 7042.00 WHERE [Code] = 'mjg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmt', 'Tuamotuan', NULL, 703.70) END +VALUES ('pmt', 'Tuamotuan', NULL, 7043.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuamotuan', [Definition] = NULL, [SortOrder] = 703.70 WHERE [Code] = 'pmt' END +SET [Description] = 'Tuamotuan', [Definition] = NULL, [SortOrder] = 7043.00 WHERE [Code] = 'pmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbu', 'Tubar', NULL, 703.80) END +VALUES ('tbu', 'Tubar', NULL, 7044.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tubar', [Definition] = NULL, [SortOrder] = 703.80 WHERE [Code] = 'tbu' END +SET [Description] = 'Tubar', [Definition] = NULL, [SortOrder] = 7044.00 WHERE [Code] = 'tbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tub', 'Tübatulabal', NULL, 703.90) END +VALUES ('tub', 'Tübatulabal', NULL, 7045.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tübatulabal', [Definition] = NULL, [SortOrder] = 703.90 WHERE [Code] = 'tub' END +SET [Description] = 'Tübatulabal', [Definition] = NULL, [SortOrder] = 7045.00 WHERE [Code] = 'tub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuo', 'Tucano', NULL, 704.00) END +VALUES ('tuo', 'Tucano', NULL, 7046.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tucano', [Definition] = NULL, [SortOrder] = 704.00 WHERE [Code] = 'tuo' END +SET [Description] = 'Tucano', [Definition] = NULL, [SortOrder] = 7046.00 WHERE [Code] = 'tuo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuy', 'Tugen', NULL, 704.10) END +VALUES ('tuy', 'Tugen', NULL, 7047.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tugen', [Definition] = NULL, [SortOrder] = 704.10 WHERE [Code] = 'tuy' END +SET [Description] = 'Tugen', [Definition] = NULL, [SortOrder] = 7047.00 WHERE [Code] = 'tuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzn', 'Tugun', NULL, 704.20) END +VALUES ('tzn', 'Tugun', NULL, 7048.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tugun', [Definition] = NULL, [SortOrder] = 704.20 WHERE [Code] = 'tzn' END +SET [Description] = 'Tugun', [Definition] = NULL, [SortOrder] = 7048.00 WHERE [Code] = 'tzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuj', 'Tugutil', NULL, 704.30) END +VALUES ('tuj', 'Tugutil', NULL, 7049.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tugutil', [Definition] = NULL, [SortOrder] = 704.30 WHERE [Code] = 'tuj' END +SET [Description] = 'Tugutil', [Definition] = NULL, [SortOrder] = 7049.00 WHERE [Code] = 'tuj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khc', 'Tukang Besi North', NULL, 704.40) END +VALUES ('khc', 'Tukang Besi North', NULL, 7050.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukang Besi North', [Definition] = NULL, [SortOrder] = 704.40 WHERE [Code] = 'khc' END +SET [Description] = 'Tukang Besi North', [Definition] = NULL, [SortOrder] = 7050.00 WHERE [Code] = 'khc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhq', 'Tukang Besi South', NULL, 704.50) END +VALUES ('bhq', 'Tukang Besi South', NULL, 7051.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukang Besi South', [Definition] = NULL, [SortOrder] = 704.50 WHERE [Code] = 'bhq' END +SET [Description] = 'Tukang Besi South', [Definition] = NULL, [SortOrder] = 7051.00 WHERE [Code] = 'bhq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bag', 'Tuki', NULL, 704.60) END +VALUES ('bag', 'Tuki', NULL, 7052.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuki', [Definition] = NULL, [SortOrder] = 704.60 WHERE [Code] = 'bag' END +SET [Description] = 'Tuki', [Definition] = NULL, [SortOrder] = 7052.00 WHERE [Code] = 'bag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpq', 'Tukpa', NULL, 704.70) END +VALUES ('tpq', 'Tukpa', NULL, 7053.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukpa', [Definition] = NULL, [SortOrder] = 704.70 WHERE [Code] = 'tpq' END +SET [Description] = 'Tukpa', [Definition] = NULL, [SortOrder] = 7053.00 WHERE [Code] = 'tpq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkd', 'Tukudede', NULL, 704.80) END +VALUES ('tkd', 'Tukudede', NULL, 7054.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukudede', [Definition] = NULL, [SortOrder] = 704.80 WHERE [Code] = 'tkd' END +SET [Description] = 'Tukudede', [Definition] = NULL, [SortOrder] = 7054.00 WHERE [Code] = 'tkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkf', 'Tukumanféd', NULL, 704.90) END +VALUES ('tkf', 'Tukumanféd', NULL, 7055.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukumanféd', [Definition] = NULL, [SortOrder] = 704.90 WHERE [Code] = 'tkf' END +SET [Description] = 'Tukumanféd', [Definition] = NULL, [SortOrder] = 7055.00 WHERE [Code] = 'tkf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tul', 'Tula', NULL, 705.00) END +VALUES ('tul', 'Tula', NULL, 7056.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Tula', [Definition] = NULL, [SortOrder] = 7056.00 WHERE [Code] = 'tul' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('tvi', 'Tulai', NULL, 7057.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tula', [Definition] = NULL, [SortOrder] = 705.00 WHERE [Code] = 'tul' END +SET [Description] = 'Tulai', [Definition] = NULL, [SortOrder] = 7057.00 WHERE [Code] = 'tvi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlu', 'Tulehu', NULL, 705.10) END +VALUES ('tlu', 'Tulehu', NULL, 7058.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tulehu', [Definition] = NULL, [SortOrder] = 705.10 WHERE [Code] = 'tlu' END +SET [Description] = 'Tulehu', [Definition] = NULL, [SortOrder] = 7058.00 WHERE [Code] = 'tlu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tey', 'Tulishi', NULL, 705.20) END +VALUES ('tey', 'Tulishi', NULL, 7059.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tulishi', [Definition] = NULL, [SortOrder] = 705.20 WHERE [Code] = 'tey' END +SET [Description] = 'Tulishi', [Definition] = NULL, [SortOrder] = 7059.00 WHERE [Code] = 'tey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcy', 'Tulu', NULL, 705.30) END +VALUES ('tcy', 'Tulu', NULL, 7060.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tulu', [Definition] = NULL, [SortOrder] = 705.30 WHERE [Code] = 'tcy' END +SET [Description] = 'Tulu', [Definition] = NULL, [SortOrder] = 7060.00 WHERE [Code] = 'tcy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rak', 'Tulu-Bohuai', NULL, 705.40) END +VALUES ('rak', 'Tulu-Bohuai', NULL, 7061.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tulu-Bohuai', [Definition] = NULL, [SortOrder] = 705.40 WHERE [Code] = 'rak' END +SET [Description] = 'Tulu-Bohuai', [Definition] = NULL, [SortOrder] = 7061.00 WHERE [Code] = 'rak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iou', 'Tuma-Irumu', NULL, 705.50) END +VALUES ('iou', 'Tuma-Irumu', NULL, 7062.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuma-Irumu', [Definition] = NULL, [SortOrder] = 705.50 WHERE [Code] = 'iou' END +SET [Description] = 'Tuma-Irumu', [Definition] = NULL, [SortOrder] = 7062.00 WHERE [Code] = 'iou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmc', 'Tumak', NULL, 705.60) END +VALUES ('tmc', 'Tumak', NULL, 7063.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumak', [Definition] = NULL, [SortOrder] = 705.60 WHERE [Code] = 'tmc' END +SET [Description] = 'Tumak', [Definition] = NULL, [SortOrder] = 7063.00 WHERE [Code] = 'tmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krt', 'Tumari Kanuri', NULL, 705.70) END +VALUES ('krt', 'Tumari Kanuri', NULL, 7064.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumari Kanuri', [Definition] = NULL, [SortOrder] = 705.70 WHERE [Code] = 'krt' END +SET [Description] = 'Tumari Kanuri', [Definition] = NULL, [SortOrder] = 7064.00 WHERE [Code] = 'krt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tum', 'Tumbuka', NULL, 705.80) END +VALUES ('tum', 'Tumbuka', NULL, 7065.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumbuka', [Definition] = NULL, [SortOrder] = 705.80 WHERE [Code] = 'tum' END +SET [Description] = 'Tumbuka', [Definition] = NULL, [SortOrder] = 7065.00 WHERE [Code] = 'tum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kku', 'Tumi', NULL, 705.90) END +VALUES ('kku', 'Tumi', NULL, 7066.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumi', [Definition] = NULL, [SortOrder] = 705.90 WHERE [Code] = 'kku' END +SET [Description] = 'Tumi', [Definition] = NULL, [SortOrder] = 7066.00 WHERE [Code] = 'kku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmq', 'Tumleo', NULL, 706.00) END +VALUES ('tmq', 'Tumleo', NULL, 7067.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumleo', [Definition] = NULL, [SortOrder] = 706.00 WHERE [Code] = 'tmq' END +SET [Description] = 'Tumleo', [Definition] = NULL, [SortOrder] = 7067.00 WHERE [Code] = 'tmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtq', 'Tumshuqese', NULL, 706.10) END +VALUES ('xtq', 'Tumshuqese', NULL, 7068.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumshuqese', [Definition] = NULL, [SortOrder] = 706.10 WHERE [Code] = 'xtq' END +SET [Description] = 'Tumshuqese', [Definition] = NULL, [SortOrder] = 7068.00 WHERE [Code] = 'xtq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbr', 'Tumtum', NULL, 706.20) END +VALUES ('tbr', 'Tumtum', NULL, 7069.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumtum', [Definition] = NULL, [SortOrder] = 706.20 WHERE [Code] = 'tbr' END +SET [Description] = 'Tumtum', [Definition] = NULL, [SortOrder] = 7069.00 WHERE [Code] = 'tbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sil', 'Tumulung Sisaala', NULL, 706.30) END +VALUES ('sil', 'Tumulung Sisaala', NULL, 7070.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumulung Sisaala', [Definition] = NULL, [SortOrder] = 706.30 WHERE [Code] = 'sil' END +SET [Description] = 'Tumulung Sisaala', [Definition] = NULL, [SortOrder] = 7070.00 WHERE [Code] = 'sil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzb', 'Tumzabt', NULL, 706.40) END +VALUES ('mzb', 'Tumzabt', NULL, 7071.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumzabt', [Definition] = NULL, [SortOrder] = 706.40 WHERE [Code] = 'mzb' END +SET [Description] = 'Tumzabt', [Definition] = NULL, [SortOrder] = 7071.00 WHERE [Code] = 'mzb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enh', 'Tundra Enets', NULL, 706.50) END +VALUES ('enh', 'Tundra Enets', NULL, 7072.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tundra Enets', [Definition] = NULL, [SortOrder] = 706.50 WHERE [Code] = 'enh' END +SET [Description] = 'Tundra Enets', [Definition] = NULL, [SortOrder] = 7072.00 WHERE [Code] = 'enh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvu', 'Tunen', NULL, 706.60) END +VALUES ('tvu', 'Tunen', NULL, 7073.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunen', [Definition] = NULL, [SortOrder] = 706.60 WHERE [Code] = 'tvu' END +SET [Description] = 'Tunen', [Definition] = NULL, [SortOrder] = 7073.00 WHERE [Code] = 'tvu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcm', 'Tungag', NULL, 706.70) END +VALUES ('lcm', 'Tungag', NULL, 7074.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tungag', [Definition] = NULL, [SortOrder] = 706.70 WHERE [Code] = 'lcm' END +SET [Description] = 'Tungag', [Definition] = NULL, [SortOrder] = 7074.00 WHERE [Code] = 'lcm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trt', 'Tunggare', NULL, 706.80) END +VALUES ('trt', 'Tunggare', NULL, 7075.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunggare', [Definition] = NULL, [SortOrder] = 706.80 WHERE [Code] = 'trt' END +SET [Description] = 'Tunggare', [Definition] = NULL, [SortOrder] = 7075.00 WHERE [Code] = 'trt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tug', 'Tunia', NULL, 706.90) END +VALUES ('tug', 'Tunia', NULL, 7076.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunia', [Definition] = NULL, [SortOrder] = 706.90 WHERE [Code] = 'tug' END +SET [Description] = 'Tunia', [Definition] = NULL, [SortOrder] = 7076.00 WHERE [Code] = 'tug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tun', 'Tunica', NULL, 707.00) END +VALUES ('tun', 'Tunica', NULL, 7077.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunica', [Definition] = NULL, [SortOrder] = 707.00 WHERE [Code] = 'tun' END +SET [Description] = 'Tunica', [Definition] = NULL, [SortOrder] = 7077.00 WHERE [Code] = 'tun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aeb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aeb', 'Tunisian Arabic', NULL, 707.10) END +VALUES ('aeb', 'Tunisian Arabic', NULL, 7078.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunisian Arabic', [Definition] = NULL, [SortOrder] = 707.10 WHERE [Code] = 'aeb' END +SET [Description] = 'Tunisian Arabic', [Definition] = NULL, [SortOrder] = 7078.00 WHERE [Code] = 'aeb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tse', 'Tunisian Sign Language', NULL, 707.20) END +VALUES ('tse', 'Tunisian Sign Language', NULL, 7079.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunisian Sign Language', [Definition] = NULL, [SortOrder] = 707.20 WHERE [Code] = 'tse' END +SET [Description] = 'Tunisian Sign Language', [Definition] = NULL, [SortOrder] = 7079.00 WHERE [Code] = 'tse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjg', 'Tunjung', NULL, 707.30) END +VALUES ('tjg', 'Tunjung', NULL, 7080.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunjung', [Definition] = NULL, [SortOrder] = 707.30 WHERE [Code] = 'tjg' END +SET [Description] = 'Tunjung', [Definition] = NULL, [SortOrder] = 7080.00 WHERE [Code] = 'tjg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqq', 'Tunni', NULL, 707.40) END +VALUES ('tqq', 'Tunni', NULL, 7081.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunni', [Definition] = NULL, [SortOrder] = 707.40 WHERE [Code] = 'tqq' END +SET [Description] = 'Tunni', [Definition] = NULL, [SortOrder] = 7081.00 WHERE [Code] = 'tqq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dza', 'Tunzu', NULL, 707.50) END +VALUES ('dza', 'Tunzu', NULL, 7082.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunzu', [Definition] = NULL, [SortOrder] = 707.50 WHERE [Code] = 'dza' END +SET [Description] = 'Tunzu', [Definition] = NULL, [SortOrder] = 7082.00 WHERE [Code] = 'dza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttf', 'Tuotomb', NULL, 707.60) END +VALUES ('ttf', 'Tuotomb', NULL, 7083.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuotomb', [Definition] = NULL, [SortOrder] = 707.60 WHERE [Code] = 'ttf' END +SET [Description] = 'Tuotomb', [Definition] = NULL, [SortOrder] = 7083.00 WHERE [Code] = 'ttf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpr', 'Tuparí', NULL, 707.70) END +VALUES ('tpr', 'Tuparí', NULL, 7084.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuparí', [Definition] = NULL, [SortOrder] = 707.70 WHERE [Code] = 'tpr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpw', 'Tupí', NULL, 707.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tupí', [Definition] = NULL, [SortOrder] = 707.80 WHERE [Code] = 'tpw' END +SET [Description] = 'Tuparí', [Definition] = NULL, [SortOrder] = 7084.00 WHERE [Code] = 'tpr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpn', 'Tupinambá', NULL, 707.90) END +VALUES ('tpn', 'Tupinambá', NULL, 7085.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tupinambá', [Definition] = NULL, [SortOrder] = 707.90 WHERE [Code] = 'tpn' END +SET [Description] = 'Tupinambá', [Definition] = NULL, [SortOrder] = 7085.00 WHERE [Code] = 'tpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpk', 'Tupinikin', NULL, 708.00) END +VALUES ('tpk', 'Tupinikin', NULL, 7086.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tupinikin', [Definition] = NULL, [SortOrder] = 708.00 WHERE [Code] = 'tpk' END +SET [Description] = 'Tupinikin', [Definition] = NULL, [SortOrder] = 7086.00 WHERE [Code] = 'tpk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tui', 'Tupuri', NULL, 708.10) END +VALUES ('tui', 'Tupuri', NULL, 7087.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tupuri', [Definition] = NULL, [SortOrder] = 708.10 WHERE [Code] = 'tui' END +SET [Description] = 'Tupuri', [Definition] = NULL, [SortOrder] = 7087.00 WHERE [Code] = 'tui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trh', 'Turaka', NULL, 708.20) END +VALUES ('trh', 'Turaka', NULL, 7088.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turaka', [Definition] = NULL, [SortOrder] = 708.20 WHERE [Code] = 'trh' END +SET [Description] = 'Turaka', [Definition] = NULL, [SortOrder] = 7088.00 WHERE [Code] = 'trh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trd', 'Turi', NULL, 708.30) END +VALUES ('trd', 'Turi', NULL, 7089.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turi', [Definition] = NULL, [SortOrder] = 708.30 WHERE [Code] = 'trd' END +SET [Description] = 'Turi', [Definition] = NULL, [SortOrder] = 7089.00 WHERE [Code] = 'trd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twt', 'Turiwára', NULL, 708.40) END +VALUES ('twt', 'Turiwára', NULL, 7090.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turiwára', [Definition] = NULL, [SortOrder] = 708.40 WHERE [Code] = 'twt' END +SET [Description] = 'Turiwára', [Definition] = NULL, [SortOrder] = 7090.00 WHERE [Code] = 'twt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuz', 'Turka', NULL, 708.50) END +VALUES ('tuz', 'Turka', NULL, 7091.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turka', [Definition] = NULL, [SortOrder] = 708.50 WHERE [Code] = 'tuz' END +SET [Description] = 'Turka', [Definition] = NULL, [SortOrder] = 7091.00 WHERE [Code] = 'tuz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuv', 'Turkana', NULL, 708.60) END +VALUES ('tuv', 'Turkana', NULL, 7092.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turkana', [Definition] = NULL, [SortOrder] = 708.60 WHERE [Code] = 'tuv' END +SET [Description] = 'Turkana', [Definition] = NULL, [SortOrder] = 7092.00 WHERE [Code] = 'tuv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tur', 'Turkish', NULL, 708.70) END +VALUES ('tur', 'Turkish', NULL, 7093.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turkish', [Definition] = NULL, [SortOrder] = 708.70 WHERE [Code] = 'tur' END +SET [Description] = 'Turkish', [Definition] = NULL, [SortOrder] = 7093.00 WHERE [Code] = 'tur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsm', 'Turkish Sign Language', NULL, 708.80) END +VALUES ('tsm', 'Turkish Sign Language', NULL, 7094.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turkish Sign Language', [Definition] = NULL, [SortOrder] = 708.80 WHERE [Code] = 'tsm' END +SET [Description] = 'Turkish Sign Language', [Definition] = NULL, [SortOrder] = 7094.00 WHERE [Code] = 'tsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuk', 'Turkmen', NULL, 708.90) END +VALUES ('tuk', 'Turkmen', NULL, 7095.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turkmen', [Definition] = NULL, [SortOrder] = 708.90 WHERE [Code] = 'tuk' END +SET [Description] = 'Turkmen', [Definition] = NULL, [SortOrder] = 7095.00 WHERE [Code] = 'tuk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tch', 'Turks And Caicos Creole English', NULL, 709.00) END +VALUES ('tch', 'Turks And Caicos Creole English', NULL, 7096.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turks And Caicos Creole English', [Definition] = NULL, [SortOrder] = 709.00 WHERE [Code] = 'tch' END +SET [Description] = 'Turks And Caicos Creole English', [Definition] = NULL, [SortOrder] = 7096.00 WHERE [Code] = 'tch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tru', 'Turoyo', NULL, 709.10) END +VALUES ('tru', 'Turoyo', NULL, 7097.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turoyo', [Definition] = NULL, [SortOrder] = 709.10 WHERE [Code] = 'tru' END +SET [Description] = 'Turoyo', [Definition] = NULL, [SortOrder] = 7097.00 WHERE [Code] = 'tru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqm', 'Turumsa', NULL, 709.20) END +VALUES ('tqm', 'Turumsa', NULL, 7098.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turumsa', [Definition] = NULL, [SortOrder] = 709.20 WHERE [Code] = 'tqm' END +SET [Description] = 'Turumsa', [Definition] = NULL, [SortOrder] = 7098.00 WHERE [Code] = 'tqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'try') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('try', 'Turung', NULL, 709.30) END +VALUES ('try', 'Turung', NULL, 7099.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turung', [Definition] = NULL, [SortOrder] = 709.30 WHERE [Code] = 'try' END +SET [Description] = 'Turung', [Definition] = NULL, [SortOrder] = 7099.00 WHERE [Code] = 'try' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tus', 'Tuscarora', NULL, 709.40) END +VALUES ('tus', 'Tuscarora', NULL, 7100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuscarora', [Definition] = NULL, [SortOrder] = 709.40 WHERE [Code] = 'tus' END +SET [Description] = 'Tuscarora', [Definition] = NULL, [SortOrder] = 7100.00 WHERE [Code] = 'tus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tta', 'Tutelo', NULL, 709.50) END +VALUES ('tta', 'Tutelo', NULL, 7101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tutelo', [Definition] = NULL, [SortOrder] = 709.50 WHERE [Code] = 'tta' END +SET [Description] = 'Tutelo', [Definition] = NULL, [SortOrder] = 7101.00 WHERE [Code] = 'tta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttg', 'Tutong', NULL, 709.60) END +VALUES ('ttg', 'Tutong', NULL, 7102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tutong', [Definition] = NULL, [SortOrder] = 709.60 WHERE [Code] = 'ttg' END +SET [Description] = 'Tutong', [Definition] = NULL, [SortOrder] = 7102.00 WHERE [Code] = 'ttg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvt', 'Tutsa Naga', NULL, 709.70) END +VALUES ('tvt', 'Tutsa Naga', NULL, 7103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tutsa Naga', [Definition] = NULL, [SortOrder] = 709.70 WHERE [Code] = 'tvt' END +SET [Description] = 'Tutsa Naga', [Definition] = NULL, [SortOrder] = 7103.00 WHERE [Code] = 'tvt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmi', 'Tutuba', NULL, 709.80) END +VALUES ('tmi', 'Tutuba', NULL, 7104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tutuba', [Definition] = NULL, [SortOrder] = 709.80 WHERE [Code] = 'tmi' END +SET [Description] = 'Tutuba', [Definition] = NULL, [SortOrder] = 7104.00 WHERE [Code] = 'tmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtu', 'Tututepec Mixtec', NULL, 709.90) END +VALUES ('mtu', 'Tututepec Mixtec', NULL, 7105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tututepec Mixtec', [Definition] = NULL, [SortOrder] = 709.90 WHERE [Code] = 'mtu' END +SET [Description] = 'Tututepec Mixtec', [Definition] = NULL, [SortOrder] = 7105.00 WHERE [Code] = 'mtu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuu', 'Tututni', NULL, 710.00) END +VALUES ('tuu', 'Tututni', NULL, 7106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tututni', [Definition] = NULL, [SortOrder] = 710.00 WHERE [Code] = 'tuu' END +SET [Description] = 'Tututni', [Definition] = NULL, [SortOrder] = 7106.00 WHERE [Code] = 'tuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvl', 'Tuvalu', NULL, 710.10) END +VALUES ('tvl', 'Tuvalu', NULL, 7107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuvalu', [Definition] = NULL, [SortOrder] = 710.10 WHERE [Code] = 'tvl' END +SET [Description] = 'Tuvalu', [Definition] = NULL, [SortOrder] = 7107.00 WHERE [Code] = 'tvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyv', 'Tuvinian', NULL, 710.20) END +VALUES ('tyv', 'Tuvinian', NULL, 7108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuvinian', [Definition] = NULL, [SortOrder] = 710.20 WHERE [Code] = 'tyv' END +SET [Description] = 'Tuvinian', [Definition] = NULL, [SortOrder] = 7108.00 WHERE [Code] = 'tyv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifk', 'Tuwali Ifugao', NULL, 710.30) END +VALUES ('ifk', 'Tuwali Ifugao', NULL, 7109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuwali Ifugao', [Definition] = NULL, [SortOrder] = 710.30 WHERE [Code] = 'ifk' END +SET [Description] = 'Tuwali Ifugao', [Definition] = NULL, [SortOrder] = 7109.00 WHERE [Code] = 'ifk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tww', 'Tuwari', NULL, 710.40) END +VALUES ('tww', 'Tuwari', NULL, 7110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuwari', [Definition] = NULL, [SortOrder] = 710.40 WHERE [Code] = 'tww' END +SET [Description] = 'Tuwari', [Definition] = NULL, [SortOrder] = 7110.00 WHERE [Code] = 'tww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bov', 'Tuwuli', NULL, 710.50) END +VALUES ('bov', 'Tuwuli', NULL, 7111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuwuli', [Definition] = NULL, [SortOrder] = 710.50 WHERE [Code] = 'bov' END +SET [Description] = 'Tuwuli', [Definition] = NULL, [SortOrder] = 7111.00 WHERE [Code] = 'bov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tud', 'Tuxá', NULL, 710.60) END +VALUES ('tud', 'Tuxá', NULL, 7112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuxá', [Definition] = NULL, [SortOrder] = 710.60 WHERE [Code] = 'tud' END +SET [Description] = 'Tuxá', [Definition] = NULL, [SortOrder] = 7112.00 WHERE [Code] = 'tud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tux', 'Tuxináwa', NULL, 710.70) END +VALUES ('tux', 'Tuxináwa', NULL, 7113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuxináwa', [Definition] = NULL, [SortOrder] = 710.70 WHERE [Code] = 'tux' END +SET [Description] = 'Tuxináwa', [Definition] = NULL, [SortOrder] = 7113.00 WHERE [Code] = 'tux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tue', 'Tuyuca', NULL, 710.80) END +VALUES ('tue', 'Tuyuca', NULL, 7114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuyuca', [Definition] = NULL, [SortOrder] = 710.80 WHERE [Code] = 'tue' END +SET [Description] = 'Tuyuca', [Definition] = NULL, [SortOrder] = 7114.00 WHERE [Code] = 'tue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twa', 'Twana', NULL, 710.90) END +VALUES ('twa', 'Twana', NULL, 7115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Twana', [Definition] = NULL, [SortOrder] = 710.90 WHERE [Code] = 'twa' END +SET [Description] = 'Twana', [Definition] = NULL, [SortOrder] = 7115.00 WHERE [Code] = 'twa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twn', 'Twendi', NULL, 711.00) END +VALUES ('twn', 'Twendi', NULL, 7116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Twendi', [Definition] = NULL, [SortOrder] = 711.00 WHERE [Code] = 'twn' END +SET [Description] = 'Twendi', [Definition] = NULL, [SortOrder] = 7116.00 WHERE [Code] = 'twn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twd', 'Twents', NULL, 711.10) END +VALUES ('twd', 'Twents', NULL, 7117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Twents', [Definition] = NULL, [SortOrder] = 711.10 WHERE [Code] = 'twd' END +SET [Description] = 'Twents', [Definition] = NULL, [SortOrder] = 7117.00 WHERE [Code] = 'twd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twi', 'Twi', NULL, 711.20) END +VALUES ('twi', 'Twi', NULL, 7118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Twi', [Definition] = NULL, [SortOrder] = 711.20 WHERE [Code] = 'twi' END +SET [Description] = 'Twi', [Definition] = NULL, [SortOrder] = 7118.00 WHERE [Code] = 'twi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcg', 'Tyap', NULL, 711.30) END +VALUES ('kcg', 'Tyap', NULL, 7119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tyap', [Definition] = NULL, [SortOrder] = 711.30 WHERE [Code] = 'kcg' END +SET [Description] = 'Tyap', [Definition] = NULL, [SortOrder] = 7119.00 WHERE [Code] = 'kcg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzj', 'Tz''utujil', NULL, 711.40) END +VALUES ('tzj', 'Tz''utujil', NULL, 7120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tz''utujil', [Definition] = NULL, [SortOrder] = 711.40 WHERE [Code] = 'tzj' END +SET [Description] = 'Tz''utujil', [Definition] = NULL, [SortOrder] = 7120.00 WHERE [Code] = 'tzj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzh', 'Tzeltal', NULL, 711.50) END +VALUES ('tzh', 'Tzeltal', NULL, 7121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tzeltal', [Definition] = NULL, [SortOrder] = 711.50 WHERE [Code] = 'tzh' END +SET [Description] = 'Tzeltal', [Definition] = NULL, [SortOrder] = 7121.00 WHERE [Code] = 'tzh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzo', 'Tzotzil', NULL, 711.60) END +VALUES ('tzo', 'Tzotzil', NULL, 7122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tzotzil', [Definition] = NULL, [SortOrder] = 711.60 WHERE [Code] = 'tzo' END +SET [Description] = 'Tzotzil', [Definition] = NULL, [SortOrder] = 7122.00 WHERE [Code] = 'tzo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uuu', 'U', NULL, 711.70) END +VALUES ('uuu', 'U', NULL, 7123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'U', [Definition] = NULL, [SortOrder] = 711.70 WHERE [Code] = 'uuu' END +SET [Description] = 'U', [Definition] = NULL, [SortOrder] = 7123.00 WHERE [Code] = 'uuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoz', 'Uab Meto', NULL, 711.80) END +VALUES ('aoz', 'Uab Meto', NULL, 7124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uab Meto', [Definition] = NULL, [SortOrder] = 711.80 WHERE [Code] = 'aoz' END +SET [Description] = 'Uab Meto', [Definition] = NULL, [SortOrder] = 7124.00 WHERE [Code] = 'aoz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uam', 'Uamué', NULL, 711.90) END +VALUES ('uam', 'Uamué', NULL, 7125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uamué', [Definition] = NULL, [SortOrder] = 711.90 WHERE [Code] = 'uam' END +SET [Description] = 'Uamué', [Definition] = NULL, [SortOrder] = 7125.00 WHERE [Code] = 'uam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksj', 'Uare', NULL, 712.00) END +VALUES ('ksj', 'Uare', NULL, 7126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uare', [Definition] = NULL, [SortOrder] = 712.00 WHERE [Code] = 'ksj' END +SET [Description] = 'Uare', [Definition] = NULL, [SortOrder] = 7126.00 WHERE [Code] = 'ksj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byc', 'Ubaghara', NULL, 712.10) END +VALUES ('byc', 'Ubaghara', NULL, 7127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubaghara', [Definition] = NULL, [SortOrder] = 712.10 WHERE [Code] = 'byc' END +SET [Description] = 'Ubaghara', [Definition] = NULL, [SortOrder] = 7127.00 WHERE [Code] = 'byc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uba', 'Ubang', NULL, 712.20) END +VALUES ('uba', 'Ubang', NULL, 7128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubang', [Definition] = NULL, [SortOrder] = 712.20 WHERE [Code] = 'uba' END +SET [Description] = 'Ubang', [Definition] = NULL, [SortOrder] = 7128.00 WHERE [Code] = 'uba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ubi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ubi', 'Ubi', NULL, 712.30) END +VALUES ('ubi', 'Ubi', NULL, 7129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubi', [Definition] = NULL, [SortOrder] = 712.30 WHERE [Code] = 'ubi' END +SET [Description] = 'Ubi', [Definition] = NULL, [SortOrder] = 7129.00 WHERE [Code] = 'ubi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ubr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ubr', 'Ubir', NULL, 712.40) END +VALUES ('ubr', 'Ubir', NULL, 7130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubir', [Definition] = NULL, [SortOrder] = 712.40 WHERE [Code] = 'ubr' END +SET [Description] = 'Ubir', [Definition] = NULL, [SortOrder] = 7130.00 WHERE [Code] = 'ubr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uby', 'Ubykh', NULL, 712.50) END +VALUES ('uby', 'Ubykh', NULL, 7131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubykh', [Definition] = NULL, [SortOrder] = 712.50 WHERE [Code] = 'uby' END +SET [Description] = 'Ubykh', [Definition] = NULL, [SortOrder] = 7131.00 WHERE [Code] = 'uby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpb', 'Ucayali-Yurúa Ashéninka', NULL, 712.60) END +VALUES ('cpb', 'Ucayali-Yurúa Ashéninka', NULL, 7132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ucayali-Yurúa Ashéninka', [Definition] = NULL, [SortOrder] = 712.60 WHERE [Code] = 'cpb' END +SET [Description] = 'Ucayali-Yurúa Ashéninka', [Definition] = NULL, [SortOrder] = 7132.00 WHERE [Code] = 'cpb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uda', 'Uda', NULL, 712.70) END +VALUES ('uda', 'Uda', NULL, 7133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uda', [Definition] = NULL, [SortOrder] = 712.70 WHERE [Code] = 'uda' END +SET [Description] = 'Uda', [Definition] = NULL, [SortOrder] = 7133.00 WHERE [Code] = 'uda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udi', 'Udi', NULL, 712.80) END +VALUES ('udi', 'Udi', NULL, 7134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Udi', [Definition] = NULL, [SortOrder] = 712.80 WHERE [Code] = 'udi' END +SET [Description] = 'Udi', [Definition] = NULL, [SortOrder] = 7134.00 WHERE [Code] = 'udi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ude') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ude', 'Udihe', NULL, 712.90) END +VALUES ('ude', 'Udihe', NULL, 7135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Udihe', [Definition] = NULL, [SortOrder] = 712.90 WHERE [Code] = 'ude' END +SET [Description] = 'Udihe', [Definition] = NULL, [SortOrder] = 7135.00 WHERE [Code] = 'ude' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udm', 'Udmurt', NULL, 713.00) END +VALUES ('udm', 'Udmurt', NULL, 7136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Udmurt', [Definition] = NULL, [SortOrder] = 713.00 WHERE [Code] = 'udm' END +SET [Description] = 'Udmurt', [Definition] = NULL, [SortOrder] = 7136.00 WHERE [Code] = 'udm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udu', 'Uduk', NULL, 713.10) END +VALUES ('udu', 'Uduk', NULL, 7137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uduk', [Definition] = NULL, [SortOrder] = 713.10 WHERE [Code] = 'udu' END +SET [Description] = 'Uduk', [Definition] = NULL, [SortOrder] = 7137.00 WHERE [Code] = 'udu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ufi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ufi', 'Ufim', NULL, 713.20) END +VALUES ('ufi', 'Ufim', NULL, 7138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ufim', [Definition] = NULL, [SortOrder] = 713.20 WHERE [Code] = 'ufi' END +SET [Description] = 'Ufim', [Definition] = NULL, [SortOrder] = 7138.00 WHERE [Code] = 'ufi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugn', 'Ugandan Sign Language', NULL, 713.30) END +VALUES ('ugn', 'Ugandan Sign Language', NULL, 7139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ugandan Sign Language', [Definition] = NULL, [SortOrder] = 713.30 WHERE [Code] = 'ugn' END +SET [Description] = 'Ugandan Sign Language', [Definition] = NULL, [SortOrder] = 7139.00 WHERE [Code] = 'ugn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uga', 'Ugaritic', NULL, 713.40) END +VALUES ('uga', 'Ugaritic', NULL, 7140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ugaritic', [Definition] = NULL, [SortOrder] = 713.40 WHERE [Code] = 'uga' END +SET [Description] = 'Ugaritic', [Definition] = NULL, [SortOrder] = 7140.00 WHERE [Code] = 'uga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uge', 'Ughele', NULL, 713.50) END +VALUES ('uge', 'Ughele', NULL, 7141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ughele', [Definition] = NULL, [SortOrder] = 713.50 WHERE [Code] = 'uge' END +SET [Description] = 'Ughele', [Definition] = NULL, [SortOrder] = 7141.00 WHERE [Code] = 'uge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugo', 'Ugong', NULL, 713.60) END +VALUES ('ugo', 'Ugong', NULL, 7142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ugong', [Definition] = NULL, [SortOrder] = 713.60 WHERE [Code] = 'ugo' END +SET [Description] = 'Ugong', [Definition] = NULL, [SortOrder] = 7142.00 WHERE [Code] = 'ugo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uha', 'Uhami', NULL, 713.70) END +VALUES ('uha', 'Uhami', NULL, 7143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uhami', [Definition] = NULL, [SortOrder] = 713.70 WHERE [Code] = 'uha' END +SET [Description] = 'Uhami', [Definition] = NULL, [SortOrder] = 7143.00 WHERE [Code] = 'uha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uig', 'Uighur', NULL, 713.80) END +VALUES ('uig', 'Uighur', NULL, 7144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uighur', [Definition] = NULL, [SortOrder] = 713.80 WHERE [Code] = 'uig' END +SET [Description] = 'Uighur', [Definition] = NULL, [SortOrder] = 7144.00 WHERE [Code] = 'uig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uis', 'Uisai', NULL, 713.90) END +VALUES ('uis', 'Uisai', NULL, 7145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uisai', [Definition] = NULL, [SortOrder] = 713.90 WHERE [Code] = 'uis' END +SET [Description] = 'Uisai', [Definition] = NULL, [SortOrder] = 7145.00 WHERE [Code] = 'uis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udj', 'Ujir', NULL, 714.00) END +VALUES ('udj', 'Ujir', NULL, 7146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ujir', [Definition] = NULL, [SortOrder] = 714.00 WHERE [Code] = 'udj' END +SET [Description] = 'Ujir', [Definition] = NULL, [SortOrder] = 7146.00 WHERE [Code] = 'udj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcf', 'Ukaan', NULL, 714.10) END +VALUES ('kcf', 'Ukaan', NULL, 7147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukaan', [Definition] = NULL, [SortOrder] = 714.10 WHERE [Code] = 'kcf' END +SET [Description] = 'Ukaan', [Definition] = NULL, [SortOrder] = 7147.00 WHERE [Code] = 'kcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukh', 'Ukhwejo', NULL, 714.20) END +VALUES ('ukh', 'Ukhwejo', NULL, 7148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukhwejo', [Definition] = NULL, [SortOrder] = 714.20 WHERE [Code] = 'ukh' END +SET [Description] = 'Ukhwejo', [Definition] = NULL, [SortOrder] = 7148.00 WHERE [Code] = 'ukh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umi', 'Ukit', NULL, 714.30) END +VALUES ('umi', 'Ukit', NULL, 7149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukit', [Definition] = NULL, [SortOrder] = 714.30 WHERE [Code] = 'umi' END +SET [Description] = 'Ukit', [Definition] = NULL, [SortOrder] = 7149.00 WHERE [Code] = 'umi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukp', 'Ukpe-Bayobiri', NULL, 714.40) END +VALUES ('ukp', 'Ukpe-Bayobiri', NULL, 7150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukpe-Bayobiri', [Definition] = NULL, [SortOrder] = 714.40 WHERE [Code] = 'ukp' END +SET [Description] = 'Ukpe-Bayobiri', [Definition] = NULL, [SortOrder] = 7150.00 WHERE [Code] = 'ukp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akd', 'Ukpet-Ehom', NULL, 714.50) END +VALUES ('akd', 'Ukpet-Ehom', NULL, 7151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukpet-Ehom', [Definition] = NULL, [SortOrder] = 714.50 WHERE [Code] = 'akd' END +SET [Description] = 'Ukpet-Ehom', [Definition] = NULL, [SortOrder] = 7151.00 WHERE [Code] = 'akd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukr', 'Ukrainian', NULL, 714.60) END +VALUES ('ukr', 'Ukrainian', NULL, 7152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukrainian', [Definition] = NULL, [SortOrder] = 714.60 WHERE [Code] = 'ukr' END +SET [Description] = 'Ukrainian', [Definition] = NULL, [SortOrder] = 7152.00 WHERE [Code] = 'ukr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukl', 'Ukrainian Sign Language', NULL, 714.70) END +VALUES ('ukl', 'Ukrainian Sign Language', NULL, 7153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukrainian Sign Language', [Definition] = NULL, [SortOrder] = 714.70 WHERE [Code] = 'ukl' END +SET [Description] = 'Ukrainian Sign Language', [Definition] = NULL, [SortOrder] = 7153.00 WHERE [Code] = 'ukl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uku', 'Ukue', NULL, 714.80) END +VALUES ('uku', 'Ukue', NULL, 7154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukue', [Definition] = NULL, [SortOrder] = 714.80 WHERE [Code] = 'uku' END +SET [Description] = 'Ukue', [Definition] = NULL, [SortOrder] = 7154.00 WHERE [Code] = 'uku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukg', 'Ukuriguma', NULL, 714.90) END +VALUES ('ukg', 'Ukuriguma', NULL, 7155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukuriguma', [Definition] = NULL, [SortOrder] = 714.90 WHERE [Code] = 'ukg' END +SET [Description] = 'Ukuriguma', [Definition] = NULL, [SortOrder] = 7155.00 WHERE [Code] = 'ukg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukq', 'Ukwa', NULL, 715.00) END +VALUES ('ukq', 'Ukwa', NULL, 7156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukwa', [Definition] = NULL, [SortOrder] = 715.00 WHERE [Code] = 'ukq' END +SET [Description] = 'Ukwa', [Definition] = NULL, [SortOrder] = 7156.00 WHERE [Code] = 'ukq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukw', 'Ukwuani-Aboh-Ndoni', NULL, 715.10) END +VALUES ('ukw', 'Ukwuani-Aboh-Ndoni', NULL, 7157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukwuani-Aboh-Ndoni', [Definition] = NULL, [SortOrder] = 715.10 WHERE [Code] = 'ukw' END +SET [Description] = 'Ukwuani-Aboh-Ndoni', [Definition] = NULL, [SortOrder] = 7157.00 WHERE [Code] = 'ukw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svb', 'Ulau-Suain', NULL, 715.20) END +VALUES ('svb', 'Ulau-Suain', NULL, 7158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulau-Suain', [Definition] = NULL, [SortOrder] = 715.20 WHERE [Code] = 'svb' END +SET [Description] = 'Ulau-Suain', [Definition] = NULL, [SortOrder] = 7158.00 WHERE [Code] = 'svb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulc', 'Ulch', NULL, 715.30) END +VALUES ('ulc', 'Ulch', NULL, 7159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulch', [Definition] = NULL, [SortOrder] = 715.30 WHERE [Code] = 'ulc' END +SET [Description] = 'Ulch', [Definition] = NULL, [SortOrder] = 7159.00 WHERE [Code] = 'ulc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uli', 'Ulithian', NULL, 715.40) END +VALUES ('uli', 'Ulithian', NULL, 7160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulithian', [Definition] = NULL, [SortOrder] = 715.40 WHERE [Code] = 'uli' END +SET [Description] = 'Ulithian', [Definition] = NULL, [SortOrder] = 7160.00 WHERE [Code] = 'uli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ull') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ull', 'Ullatan', NULL, 715.50) END +VALUES ('ull', 'Ullatan', NULL, 7161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ullatan', [Definition] = NULL, [SortOrder] = 715.50 WHERE [Code] = 'ull' END +SET [Description] = 'Ullatan', [Definition] = NULL, [SortOrder] = 7161.00 WHERE [Code] = 'ull' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulb', 'Ulukwumi', NULL, 715.60) END +VALUES ('ulb', 'Ulukwumi', NULL, 7162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulukwumi', [Definition] = NULL, [SortOrder] = 715.60 WHERE [Code] = 'ulb' END +SET [Description] = 'Ulukwumi', [Definition] = NULL, [SortOrder] = 7162.00 WHERE [Code] = 'ulb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulm', 'Ulumanda''', NULL, 715.70) END +VALUES ('ulm', 'Ulumanda''', NULL, 7163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulumanda''', [Definition] = NULL, [SortOrder] = 715.70 WHERE [Code] = 'ulm' END +SET [Description] = 'Ulumanda''', [Definition] = NULL, [SortOrder] = 7163.00 WHERE [Code] = 'ulm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulw', 'Ulwa', NULL, 715.80) END +VALUES ('ulw', 'Ulwa', NULL, 7164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulwa', [Definition] = NULL, [SortOrder] = 715.80 WHERE [Code] = 'ulw' END +SET [Description] = 'Ulwa', [Definition] = NULL, [SortOrder] = 7164.00 WHERE [Code] = 'ulw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppk', 'Uma', NULL, 715.90) END +VALUES ('ppk', 'Uma', NULL, 7165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uma', [Definition] = NULL, [SortOrder] = 715.90 WHERE [Code] = 'ppk' END +SET [Description] = 'Uma', [Definition] = NULL, [SortOrder] = 7165.00 WHERE [Code] = 'ppk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xky', 'Uma'' Lasan', NULL, 716.00) END +VALUES ('xky', 'Uma'' Lasan', NULL, 7166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uma'' Lasan', [Definition] = NULL, [SortOrder] = 716.00 WHERE [Code] = 'xky' END +SET [Description] = 'Uma'' Lasan', [Definition] = NULL, [SortOrder] = 7166.00 WHERE [Code] = 'xky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulu', 'Uma'' Lung', NULL, 716.10) END +VALUES ('ulu', 'Uma'' Lung', NULL, 7167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uma'' Lung', [Definition] = NULL, [SortOrder] = 716.10 WHERE [Code] = 'ulu' END +SET [Description] = 'Uma'' Lung', [Definition] = NULL, [SortOrder] = 7167.00 WHERE [Code] = 'ulu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdn', 'Umanakaina', NULL, 716.20) END +VALUES ('gdn', 'Umanakaina', NULL, 7168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umanakaina', [Definition] = NULL, [SortOrder] = 716.20 WHERE [Code] = 'gdn' END +SET [Description] = 'Umanakaina', [Definition] = NULL, [SortOrder] = 7168.00 WHERE [Code] = 'gdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uma', 'Umatilla', NULL, 716.30) END +VALUES ('uma', 'Umatilla', NULL, 7169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umatilla', [Definition] = NULL, [SortOrder] = 716.30 WHERE [Code] = 'uma' END +SET [Description] = 'Umatilla', [Definition] = NULL, [SortOrder] = 7169.00 WHERE [Code] = 'uma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umd', 'Umbindhamu', NULL, 716.40) END +VALUES ('umd', 'Umbindhamu', NULL, 7170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbindhamu', [Definition] = NULL, [SortOrder] = 716.40 WHERE [Code] = 'umd' END +SET [Description] = 'Umbindhamu', [Definition] = NULL, [SortOrder] = 7170.00 WHERE [Code] = 'umd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xum', 'Umbrian', NULL, 716.50) END +VALUES ('xum', 'Umbrian', NULL, 7171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbrian', [Definition] = NULL, [SortOrder] = 716.50 WHERE [Code] = 'xum' END +SET [Description] = 'Umbrian', [Definition] = NULL, [SortOrder] = 7171.00 WHERE [Code] = 'xum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ubu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ubu', 'Umbu-Ungu', NULL, 716.60) END +VALUES ('ubu', 'Umbu-Ungu', NULL, 7172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbu-Ungu', [Definition] = NULL, [SortOrder] = 716.60 WHERE [Code] = 'ubu' END +SET [Description] = 'Umbu-Ungu', [Definition] = NULL, [SortOrder] = 7172.00 WHERE [Code] = 'ubu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umr', 'Umbugarla', NULL, 716.70) END +VALUES ('umr', 'Umbugarla', NULL, 7173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbugarla', [Definition] = NULL, [SortOrder] = 716.70 WHERE [Code] = 'umr' END +SET [Description] = 'Umbugarla', [Definition] = NULL, [SortOrder] = 7173.00 WHERE [Code] = 'umr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umb', 'Umbundu', NULL, 716.80) END +VALUES ('umb', 'Umbundu', NULL, 7174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbundu', [Definition] = NULL, [SortOrder] = 716.80 WHERE [Code] = 'umb' END +SET [Description] = 'Umbundu', [Definition] = NULL, [SortOrder] = 7174.00 WHERE [Code] = 'umb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sju', 'Ume Sami', NULL, 716.90) END +VALUES ('sju', 'Ume Sami', NULL, 7175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ume Sami', [Definition] = NULL, [SortOrder] = 716.90 WHERE [Code] = 'sju' END +SET [Description] = 'Ume Sami', [Definition] = NULL, [SortOrder] = 7175.00 WHERE [Code] = 'sju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'upi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('upi', 'Umeda', NULL, 717.00) END +VALUES ('upi', 'Umeda', NULL, 7176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umeda', [Definition] = NULL, [SortOrder] = 717.00 WHERE [Code] = 'upi' END +SET [Description] = 'Umeda', [Definition] = NULL, [SortOrder] = 7176.00 WHERE [Code] = 'upi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xud', 'Umiida', NULL, 717.10) END +VALUES ('xud', 'Umiida', NULL, 7177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umiida', [Definition] = NULL, [SortOrder] = 717.10 WHERE [Code] = 'xud' END +SET [Description] = 'Umiida', [Definition] = NULL, [SortOrder] = 7177.00 WHERE [Code] = 'xud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'due') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('due', 'Umiray Dumaget Agta', NULL, 717.20) END +VALUES ('due', 'Umiray Dumaget Agta', NULL, 7178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umiray Dumaget Agta', [Definition] = NULL, [SortOrder] = 717.20 WHERE [Code] = 'due' END +SET [Description] = 'Umiray Dumaget Agta', [Definition] = NULL, [SortOrder] = 7178.00 WHERE [Code] = 'due' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umm', 'Umon', NULL, 717.30) END +VALUES ('umm', 'Umon', NULL, 7179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umon', [Definition] = NULL, [SortOrder] = 717.30 WHERE [Code] = 'umm' END +SET [Description] = 'Umon', [Definition] = NULL, [SortOrder] = 7179.00 WHERE [Code] = 'umm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umo', 'Umotína', NULL, 717.40) END +VALUES ('umo', 'Umotína', NULL, 7180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umotína', [Definition] = NULL, [SortOrder] = 717.40 WHERE [Code] = 'umo' END +SET [Description] = 'Umotína', [Definition] = NULL, [SortOrder] = 7180.00 WHERE [Code] = 'umo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ump') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ump', 'Umpila', NULL, 717.50) END +VALUES ('ump', 'Umpila', NULL, 7181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umpila', [Definition] = NULL, [SortOrder] = 717.50 WHERE [Code] = 'ump' END +SET [Description] = 'Umpila', [Definition] = NULL, [SortOrder] = 7181.00 WHERE [Code] = 'ump' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtg', 'Una', NULL, 717.60) END +VALUES ('mtg', 'Una', NULL, 7182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Una', [Definition] = NULL, [SortOrder] = 717.60 WHERE [Code] = 'mtg' END +SET [Description] = 'Una', [Definition] = NULL, [SortOrder] = 7182.00 WHERE [Code] = 'mtg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unm', 'Unami', NULL, 717.70) END +VALUES ('unm', 'Unami', NULL, 7183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unami', [Definition] = NULL, [SortOrder] = 717.70 WHERE [Code] = 'unm' END +SET [Description] = 'Unami', [Definition] = NULL, [SortOrder] = 7183.00 WHERE [Code] = 'unm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mis', 'Uncoded languages', NULL, 717.80) END +VALUES ('mis', 'Uncoded languages', NULL, 7184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uncoded languages', [Definition] = NULL, [SortOrder] = 717.80 WHERE [Code] = 'mis' END +SET [Description] = 'Uncoded languages', [Definition] = NULL, [SortOrder] = 7184.00 WHERE [Code] = 'mis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unz', 'Unde Kaili', NULL, 717.90) END +VALUES ('unz', 'Unde Kaili', NULL, 7185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unde Kaili', [Definition] = NULL, [SortOrder] = 717.90 WHERE [Code] = 'unz' END +SET [Description] = 'Unde Kaili', [Definition] = NULL, [SortOrder] = 7185.00 WHERE [Code] = 'unz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'und') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('und', 'Undetermined', NULL, 718.00) END +VALUES ('und', 'Undetermined', NULL, 7186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Undetermined', [Definition] = NULL, [SortOrder] = 718.00 WHERE [Code] = 'und' END +SET [Description] = 'Undetermined', [Definition] = NULL, [SortOrder] = 7186.00 WHERE [Code] = 'und' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbn', 'Uneapa', NULL, 718.10) END +VALUES ('bbn', 'Uneapa', NULL, 7187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uneapa', [Definition] = NULL, [SortOrder] = 718.10 WHERE [Code] = 'bbn' END +SET [Description] = 'Uneapa', [Definition] = NULL, [SortOrder] = 7187.00 WHERE [Code] = 'bbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'une') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('une', 'Uneme', NULL, 718.20) END +VALUES ('une', 'Uneme', NULL, 7188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uneme', [Definition] = NULL, [SortOrder] = 718.20 WHERE [Code] = 'une' END +SET [Description] = 'Uneme', [Definition] = NULL, [SortOrder] = 7188.00 WHERE [Code] = 'une' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xun', 'Unggaranggu', NULL, 718.30) END +VALUES ('xun', 'Unggaranggu', NULL, 7189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unggaranggu', [Definition] = NULL, [SortOrder] = 718.30 WHERE [Code] = 'xun' END +SET [Description] = 'Unggaranggu', [Definition] = NULL, [SortOrder] = 7189.00 WHERE [Code] = 'xun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgu', 'Unggumi', NULL, 718.40) END +VALUES ('xgu', 'Unggumi', NULL, 7190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unggumi', [Definition] = NULL, [SortOrder] = 718.40 WHERE [Code] = 'xgu' END +SET [Description] = 'Unggumi', [Definition] = NULL, [SortOrder] = 7190.00 WHERE [Code] = 'xgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gku', 'Ungkue', NULL, 718.50) END +VALUES ('gku', 'Ungkue', NULL, 7191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ungkue', [Definition] = NULL, [SortOrder] = 718.50 WHERE [Code] = 'gku' END +SET [Description] = 'Ungkue', [Definition] = NULL, [SortOrder] = 7191.00 WHERE [Code] = 'gku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uni', 'Uni', NULL, 718.60) END +VALUES ('uni', 'Uni', NULL, 7192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uni', [Definition] = NULL, [SortOrder] = 718.60 WHERE [Code] = 'uni' END +SET [Description] = 'Uni', [Definition] = NULL, [SortOrder] = 7192.00 WHERE [Code] = 'uni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uln', 'Unserdeutsch', NULL, 718.70) END +VALUES ('uln', 'Unserdeutsch', NULL, 7193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unserdeutsch', [Definition] = NULL, [SortOrder] = 718.70 WHERE [Code] = 'uln' END +SET [Description] = 'Unserdeutsch', [Definition] = NULL, [SortOrder] = 7193.00 WHERE [Code] = 'uln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onu', 'Unua', NULL, 718.80) END +VALUES ('onu', 'Unua', NULL, 7194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unua', [Definition] = NULL, [SortOrder] = 718.80 WHERE [Code] = 'onu' END +SET [Description] = 'Unua', [Definition] = NULL, [SortOrder] = 7194.00 WHERE [Code] = 'onu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unu', 'Unubahe', NULL, 718.90) END +VALUES ('unu', 'Unubahe', NULL, 7195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unubahe', [Definition] = NULL, [SortOrder] = 718.90 WHERE [Code] = 'unu' END +SET [Description] = 'Unubahe', [Definition] = NULL, [SortOrder] = 7195.00 WHERE [Code] = 'unu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjh', 'Upper Chehalis', NULL, 719.00) END +VALUES ('cjh', 'Upper Chehalis', NULL, 7196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Chehalis', [Definition] = NULL, [SortOrder] = 719.00 WHERE [Code] = 'cjh' END +SET [Description] = 'Upper Chehalis', [Definition] = NULL, [SortOrder] = 7196.00 WHERE [Code] = 'cjh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dna', 'Upper Grand Valley Dani', NULL, 719.10) END +VALUES ('dna', 'Upper Grand Valley Dani', NULL, 7197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Grand Valley Dani', [Definition] = NULL, [SortOrder] = 719.10 WHERE [Code] = 'dna' END +SET [Description] = 'Upper Grand Valley Dani', [Definition] = NULL, [SortOrder] = 7197.00 WHERE [Code] = 'dna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pov', 'Upper Guinea Crioulo', NULL, 719.20) END +VALUES ('pov', 'Upper Guinea Crioulo', NULL, 7198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Guinea Crioulo', [Definition] = NULL, [SortOrder] = 719.20 WHERE [Code] = 'pov' END +SET [Description] = 'Upper Guinea Crioulo', [Definition] = NULL, [SortOrder] = 7198.00 WHERE [Code] = 'pov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmg', 'Upper Kinabatangan', NULL, 719.30) END +VALUES ('dmg', 'Upper Kinabatangan', NULL, 7199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Kinabatangan', [Definition] = NULL, [SortOrder] = 719.30 WHERE [Code] = 'dmg' END +SET [Description] = 'Upper Kinabatangan', [Definition] = NULL, [SortOrder] = 7199.00 WHERE [Code] = 'dmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuu', 'Upper Kuskokwim', NULL, 719.40) END +VALUES ('kuu', 'Upper Kuskokwim', NULL, 7200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Kuskokwim', [Definition] = NULL, [SortOrder] = 719.40 WHERE [Code] = 'kuu' END +SET [Description] = 'Upper Kuskokwim', [Definition] = NULL, [SortOrder] = 7200.00 WHERE [Code] = 'kuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tku', 'Upper Necaxa Totonac', NULL, 719.50) END +VALUES ('tku', 'Upper Necaxa Totonac', NULL, 7201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Necaxa Totonac', [Definition] = NULL, [SortOrder] = 719.50 WHERE [Code] = 'tku' END +SET [Description] = 'Upper Necaxa Totonac', [Definition] = NULL, [SortOrder] = 7201.00 WHERE [Code] = 'tku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxu', 'Upper Saxon', NULL, 719.60) END +VALUES ('sxu', 'Upper Saxon', NULL, 7202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Saxon', [Definition] = NULL, [SortOrder] = 719.60 WHERE [Code] = 'sxu' END +SET [Description] = 'Upper Saxon', [Definition] = NULL, [SortOrder] = 7202.00 WHERE [Code] = 'sxu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsb', 'Upper Sorbian', NULL, 719.70) END +VALUES ('hsb', 'Upper Sorbian', NULL, 7203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Sorbian', [Definition] = NULL, [SortOrder] = 719.70 WHERE [Code] = 'hsb' END +SET [Description] = 'Upper Sorbian', [Definition] = NULL, [SortOrder] = 7203.00 WHERE [Code] = 'hsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tth', 'Upper Ta''oih', NULL, 719.80) END +VALUES ('tth', 'Upper Ta''oih', NULL, 7204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Ta''oih', [Definition] = NULL, [SortOrder] = 719.80 WHERE [Code] = 'tth' END +SET [Description] = 'Upper Ta''oih', [Definition] = NULL, [SortOrder] = 7204.00 WHERE [Code] = 'tth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tau', 'Upper Tanana', NULL, 719.90) END +VALUES ('tau', 'Upper Tanana', NULL, 7205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Tanana', [Definition] = NULL, [SortOrder] = 719.90 WHERE [Code] = 'tau' END +SET [Description] = 'Upper Tanana', [Definition] = NULL, [SortOrder] = 7205.00 WHERE [Code] = 'tau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tov', 'Upper Taromi', NULL, 720.00) END +VALUES ('tov', 'Upper Taromi', NULL, 7206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Taromi', [Definition] = NULL, [SortOrder] = 720.00 WHERE [Code] = 'tov' END +SET [Description] = 'Upper Taromi', [Definition] = NULL, [SortOrder] = 7206.00 WHERE [Code] = 'tov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xup', 'Upper Umpqua', NULL, 720.10) END +VALUES ('xup', 'Upper Umpqua', NULL, 7207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Umpqua', [Definition] = NULL, [SortOrder] = 720.10 WHERE [Code] = 'xup' END +SET [Description] = 'Upper Umpqua', [Definition] = NULL, [SortOrder] = 7207.00 WHERE [Code] = 'xup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uro', 'Ura (Papua New Guinea)', NULL, 720.20) END +VALUES ('uro', 'Ura (Papua New Guinea)', NULL, 7208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ura (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 720.20 WHERE [Code] = 'uro' END +SET [Description] = 'Ura (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 7208.00 WHERE [Code] = 'uro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uur', 'Ura (Vanuatu)', NULL, 720.30) END +VALUES ('uur', 'Ura (Vanuatu)', NULL, 7209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ura (Vanuatu)', [Definition] = NULL, [SortOrder] = 720.30 WHERE [Code] = 'uur' END +SET [Description] = 'Ura (Vanuatu)', [Definition] = NULL, [SortOrder] = 7209.00 WHERE [Code] = 'uur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urf', 'Uradhi', NULL, 720.40) END +VALUES ('urf', 'Uradhi', NULL, 7210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uradhi', [Definition] = NULL, [SortOrder] = 720.40 WHERE [Code] = 'urf' END +SET [Description] = 'Uradhi', [Definition] = NULL, [SortOrder] = 7210.00 WHERE [Code] = 'urf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urk', 'Urak Lawoi''', NULL, 720.50) END +VALUES ('urk', 'Urak Lawoi''', NULL, 7211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urak Lawoi''', [Definition] = NULL, [SortOrder] = 720.50 WHERE [Code] = 'urk' END +SET [Description] = 'Urak Lawoi''', [Definition] = NULL, [SortOrder] = 7211.00 WHERE [Code] = 'urk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'url') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('url', 'Urali', NULL, 720.60) END +VALUES ('url', 'Urali', NULL, 7212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urali', [Definition] = NULL, [SortOrder] = 720.60 WHERE [Code] = 'url' END +SET [Description] = 'Urali', [Definition] = NULL, [SortOrder] = 7212.00 WHERE [Code] = 'url' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urm', 'Urapmin', NULL, 720.70) END +VALUES ('urm', 'Urapmin', NULL, 7213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urapmin', [Definition] = NULL, [SortOrder] = 720.70 WHERE [Code] = 'urm' END +SET [Description] = 'Urapmin', [Definition] = NULL, [SortOrder] = 7213.00 WHERE [Code] = 'urm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ura') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ura', 'Urarina', NULL, 720.80) END +VALUES ('ura', 'Urarina', NULL, 7214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urarina', [Definition] = NULL, [SortOrder] = 720.80 WHERE [Code] = 'ura' END +SET [Description] = 'Urarina', [Definition] = NULL, [SortOrder] = 7214.00 WHERE [Code] = 'ura' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xur', 'Urartian', NULL, 720.90) END +VALUES ('xur', 'Urartian', NULL, 7215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urartian', [Definition] = NULL, [SortOrder] = 720.90 WHERE [Code] = 'xur' END +SET [Description] = 'Urartian', [Definition] = NULL, [SortOrder] = 7215.00 WHERE [Code] = 'xur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urt', 'Urat', NULL, 721.00) END +VALUES ('urt', 'Urat', NULL, 7216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urat', [Definition] = NULL, [SortOrder] = 721.00 WHERE [Code] = 'urt' END +SET [Description] = 'Urat', [Definition] = NULL, [SortOrder] = 7216.00 WHERE [Code] = 'urt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urd', 'Urdu', NULL, 721.10) END +VALUES ('urd', 'Urdu', NULL, 7217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urdu', [Definition] = NULL, [SortOrder] = 721.10 WHERE [Code] = 'urd' END +SET [Description] = 'Urdu', [Definition] = NULL, [SortOrder] = 7217.00 WHERE [Code] = 'urd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urh', 'Urhobo', NULL, 721.20) END +VALUES ('urh', 'Urhobo', NULL, 7218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urhobo', [Definition] = NULL, [SortOrder] = 721.20 WHERE [Code] = 'urh' END +SET [Description] = 'Urhobo', [Definition] = NULL, [SortOrder] = 7218.00 WHERE [Code] = 'urh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uvh', 'Uri', NULL, 721.30) END +VALUES ('uvh', 'Uri', NULL, 7219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uri', [Definition] = NULL, [SortOrder] = 721.30 WHERE [Code] = 'uvh' END +SET [Description] = 'Uri', [Definition] = NULL, [SortOrder] = 7219.00 WHERE [Code] = 'uvh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urg', 'Urigina', NULL, 721.40) END +VALUES ('urg', 'Urigina', NULL, 7220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urigina', [Definition] = NULL, [SortOrder] = 721.40 WHERE [Code] = 'urg' END +SET [Description] = 'Urigina', [Definition] = NULL, [SortOrder] = 7220.00 WHERE [Code] = 'urg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uri', 'Urim', NULL, 721.50) END +VALUES ('uri', 'Urim', NULL, 7221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urim', [Definition] = NULL, [SortOrder] = 721.50 WHERE [Code] = 'uri' END +SET [Description] = 'Urim', [Definition] = NULL, [SortOrder] = 7221.00 WHERE [Code] = 'uri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urx', 'Urimo', NULL, 721.60) END +VALUES ('urx', 'Urimo', NULL, 7222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urimo', [Definition] = NULL, [SortOrder] = 721.60 WHERE [Code] = 'urx' END +SET [Description] = 'Urimo', [Definition] = NULL, [SortOrder] = 7222.00 WHERE [Code] = 'urx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'upv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('upv', 'Uripiv-Wala-Rano-Atchin', NULL, 721.70) END +VALUES ('upv', 'Uripiv-Wala-Rano-Atchin', NULL, 7223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uripiv-Wala-Rano-Atchin', [Definition] = NULL, [SortOrder] = 721.70 WHERE [Code] = 'upv' END +SET [Description] = 'Uripiv-Wala-Rano-Atchin', [Definition] = NULL, [SortOrder] = 7223.00 WHERE [Code] = 'upv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urc', 'Urningangg', NULL, 721.80) END +VALUES ('urc', 'Urningangg', NULL, 7224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urningangg', [Definition] = NULL, [SortOrder] = 721.80 WHERE [Code] = 'urc' END +SET [Description] = 'Urningangg', [Definition] = NULL, [SortOrder] = 7224.00 WHERE [Code] = 'urc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ure') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ure', 'Uru', NULL, 721.90) END +VALUES ('ure', 'Uru', NULL, 7225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uru', [Definition] = NULL, [SortOrder] = 721.90 WHERE [Code] = 'ure' END +SET [Description] = 'Uru', [Definition] = NULL, [SortOrder] = 7225.00 WHERE [Code] = 'ure' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urz', 'Uru-Eu-Wau-Wau', NULL, 722.00) END +VALUES ('urz', 'Uru-Eu-Wau-Wau', NULL, 7226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uru-Eu-Wau-Wau', [Definition] = NULL, [SortOrder] = 722.00 WHERE [Code] = 'urz' END +SET [Description] = 'Uru-Eu-Wau-Wau', [Definition] = NULL, [SortOrder] = 7226.00 WHERE [Code] = 'urz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urp', 'Uru-Pa-In', NULL, 722.10) END +VALUES ('urp', 'Uru-Pa-In', NULL, 7227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uru-Pa-In', [Definition] = NULL, [SortOrder] = 722.10 WHERE [Code] = 'urp' END +SET [Description] = 'Uru-Pa-In', [Definition] = NULL, [SortOrder] = 7227.00 WHERE [Code] = 'urp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urn', 'Uruangnirin', NULL, 722.20) END +VALUES ('urn', 'Uruangnirin', NULL, 7228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uruangnirin', [Definition] = NULL, [SortOrder] = 722.20 WHERE [Code] = 'urn' END +SET [Description] = 'Uruangnirin', [Definition] = NULL, [SortOrder] = 7228.00 WHERE [Code] = 'urn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urv', 'Uruava', NULL, 722.30) END +VALUES ('urv', 'Uruava', NULL, 7229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uruava', [Definition] = NULL, [SortOrder] = 722.30 WHERE [Code] = 'urv' END +SET [Description] = 'Uruava', [Definition] = NULL, [SortOrder] = 7229.00 WHERE [Code] = 'urv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urb', 'Urubú-Kaapor', NULL, 722.40) END +VALUES ('urb', 'Urubú-Kaapor', NULL, 7230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urubú-Kaapor', [Definition] = NULL, [SortOrder] = 722.40 WHERE [Code] = 'urb' END +SET [Description] = 'Urubú-Kaapor', [Definition] = NULL, [SortOrder] = 7230.00 WHERE [Code] = 'urb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uks', 'Urubú-Kaapor Sign Language', NULL, 722.50) END +VALUES ('uks', 'Urubú-Kaapor Sign Language', NULL, 7231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urubú-Kaapor Sign Language', [Definition] = NULL, [SortOrder] = 722.50 WHERE [Code] = 'uks' END +SET [Description] = 'Urubú-Kaapor Sign Language', [Definition] = NULL, [SortOrder] = 7231.00 WHERE [Code] = 'uks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugy', 'Uruguayan Sign Language', NULL, 722.60) END +VALUES ('ugy', 'Uruguayan Sign Language', NULL, 7232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uruguayan Sign Language', [Definition] = NULL, [SortOrder] = 722.60 WHERE [Code] = 'ugy' END +SET [Description] = 'Uruguayan Sign Language', [Definition] = NULL, [SortOrder] = 7232.00 WHERE [Code] = 'ugy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uum', 'Urum', NULL, 722.70) END +VALUES ('uum', 'Urum', NULL, 7233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urum', [Definition] = NULL, [SortOrder] = 722.70 WHERE [Code] = 'uum' END +SET [Description] = 'Urum', [Definition] = NULL, [SortOrder] = 7233.00 WHERE [Code] = 'uum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uru', 'Urumi', NULL, 722.80) END +VALUES ('uru', 'Urumi', NULL, 7234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urumi', [Definition] = NULL, [SortOrder] = 722.80 WHERE [Code] = 'uru' END +SET [Description] = 'Urumi', [Definition] = NULL, [SortOrder] = 7234.00 WHERE [Code] = 'uru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uss', 'us-Saare', NULL, 722.90) END +VALUES ('uss', 'us-Saare', NULL, 7235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'us-Saare', [Definition] = NULL, [SortOrder] = 722.90 WHERE [Code] = 'uss' END +SET [Description] = 'us-Saare', [Definition] = NULL, [SortOrder] = 7235.00 WHERE [Code] = 'uss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usk', 'Usaghade', NULL, 723.00) END +VALUES ('usk', 'Usaghade', NULL, 7236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usaghade', [Definition] = NULL, [SortOrder] = 723.00 WHERE [Code] = 'usk' END +SET [Description] = 'Usaghade', [Definition] = NULL, [SortOrder] = 7236.00 WHERE [Code] = 'usk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnu', 'Usan', NULL, 723.10) END +VALUES ('wnu', 'Usan', NULL, 7237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usan', [Definition] = NULL, [SortOrder] = 723.10 WHERE [Code] = 'wnu' END +SET [Description] = 'Usan', [Definition] = NULL, [SortOrder] = 7237.00 WHERE [Code] = 'wnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usa', 'Usarufa', NULL, 723.20) END +VALUES ('usa', 'Usarufa', NULL, 7238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usarufa', [Definition] = NULL, [SortOrder] = 723.20 WHERE [Code] = 'usa' END +SET [Description] = 'Usarufa', [Definition] = NULL, [SortOrder] = 7238.00 WHERE [Code] = 'usa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ush') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ush', 'Ushojo', NULL, 723.30) END +VALUES ('ush', 'Ushojo', NULL, 7239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ushojo', [Definition] = NULL, [SortOrder] = 723.30 WHERE [Code] = 'ush' END +SET [Description] = 'Ushojo', [Definition] = NULL, [SortOrder] = 7239.00 WHERE [Code] = 'ush' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuc', 'Usila Chinantec', NULL, 723.40) END +VALUES ('cuc', 'Usila Chinantec', NULL, 7240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usila Chinantec', [Definition] = NULL, [SortOrder] = 723.40 WHERE [Code] = 'cuc' END +SET [Description] = 'Usila Chinantec', [Definition] = NULL, [SortOrder] = 7240.00 WHERE [Code] = 'cuc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulf', 'Usku', NULL, 723.50) END +VALUES ('ulf', 'Usku', NULL, 7241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usku', [Definition] = NULL, [SortOrder] = 723.50 WHERE [Code] = 'ulf' END +SET [Description] = 'Usku', [Definition] = NULL, [SortOrder] = 7241.00 WHERE [Code] = 'ulf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usp', 'Uspanteco', NULL, 723.60) END +VALUES ('usp', 'Uspanteco', NULL, 7242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uspanteco', [Definition] = NULL, [SortOrder] = 723.60 WHERE [Code] = 'usp' END +SET [Description] = 'Uspanteco', [Definition] = NULL, [SortOrder] = 7242.00 WHERE [Code] = 'usp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usi', 'Usui', NULL, 723.70) END +VALUES ('usi', 'Usui', NULL, 7243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usui', [Definition] = NULL, [SortOrder] = 723.70 WHERE [Code] = 'usi' END +SET [Description] = 'Usui', [Definition] = NULL, [SortOrder] = 7243.00 WHERE [Code] = 'usi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uth', 'ut-Hun', NULL, 723.80) END +VALUES ('uth', 'ut-Hun', NULL, 7244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'ut-Hun', [Definition] = NULL, [SortOrder] = 723.80 WHERE [Code] = 'uth' END +SET [Description] = 'ut-Hun', [Definition] = NULL, [SortOrder] = 7244.00 WHERE [Code] = 'uth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gel', 'ut-Ma''in', NULL, 723.90) END +VALUES ('gel', 'ut-Ma''in', NULL, 7245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'ut-Ma''in', [Definition] = NULL, [SortOrder] = 723.90 WHERE [Code] = 'gel' END +SET [Description] = 'ut-Ma''in', [Definition] = NULL, [SortOrder] = 7245.00 WHERE [Code] = 'gel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omo', 'Utarmbung', NULL, 724.00) END +VALUES ('omo', 'Utarmbung', NULL, 7246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Utarmbung', [Definition] = NULL, [SortOrder] = 724.00 WHERE [Code] = 'omo' END +SET [Description] = 'Utarmbung', [Definition] = NULL, [SortOrder] = 7246.00 WHERE [Code] = 'omo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ute') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ute', 'Ute-Southern Paiute', NULL, 724.10) END +VALUES ('ute', 'Ute-Southern Paiute', NULL, 7247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ute-Southern Paiute', [Definition] = NULL, [SortOrder] = 724.10 WHERE [Code] = 'ute' END +SET [Description] = 'Ute-Southern Paiute', [Definition] = NULL, [SortOrder] = 7247.00 WHERE [Code] = 'ute' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'utu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('utu', 'Utu', NULL, 724.20) END +VALUES ('utu', 'Utu', NULL, 7248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Utu', [Definition] = NULL, [SortOrder] = 724.20 WHERE [Code] = 'utu' END +SET [Description] = 'Utu', [Definition] = NULL, [SortOrder] = 7248.00 WHERE [Code] = 'utu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'evh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('evh', 'Uvbie', NULL, 724.30) END +VALUES ('evh', 'Uvbie', NULL, 7249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uvbie', [Definition] = NULL, [SortOrder] = 724.30 WHERE [Code] = 'evh' END +SET [Description] = 'Uvbie', [Definition] = NULL, [SortOrder] = 7249.00 WHERE [Code] = 'evh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usu', 'Uya', NULL, 724.40) END +VALUES ('usu', 'Uya', NULL, 7250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uya', [Definition] = NULL, [SortOrder] = 724.40 WHERE [Code] = 'usu' END +SET [Description] = 'Uya', [Definition] = NULL, [SortOrder] = 7250.00 WHERE [Code] = 'usu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duk', 'Uyajitaya', NULL, 724.50) END +VALUES ('duk', 'Uyajitaya', NULL, 7251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uyajitaya', [Definition] = NULL, [SortOrder] = 724.50 WHERE [Code] = 'duk' END +SET [Description] = 'Uyajitaya', [Definition] = NULL, [SortOrder] = 7251.00 WHERE [Code] = 'duk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uzb', 'Uzbek', NULL, 724.60) END +VALUES ('uzb', 'Uzbek', NULL, 7252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uzbek', [Definition] = NULL, [SortOrder] = 724.60 WHERE [Code] = 'uzb' END +SET [Description] = 'Uzbek', [Definition] = NULL, [SortOrder] = 7252.00 WHERE [Code] = 'uzb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auz', 'Uzbeki Arabic', NULL, 724.70) END +VALUES ('auz', 'Uzbeki Arabic', NULL, 7253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uzbeki Arabic', [Definition] = NULL, [SortOrder] = 724.70 WHERE [Code] = 'auz' END +SET [Description] = 'Uzbeki Arabic', [Definition] = NULL, [SortOrder] = 7253.00 WHERE [Code] = 'auz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eze', 'Uzekwe', NULL, 724.80) END +VALUES ('eze', 'Uzekwe', NULL, 7254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uzekwe', [Definition] = NULL, [SortOrder] = 724.80 WHERE [Code] = 'eze' END +SET [Description] = 'Uzekwe', [Definition] = NULL, [SortOrder] = 7254.00 WHERE [Code] = 'eze' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vaa', 'Vaagri Booli', NULL, 724.90) END +VALUES ('vaa', 'Vaagri Booli', NULL, 7255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vaagri Booli', [Definition] = NULL, [SortOrder] = 724.90 WHERE [Code] = 'vaa' END +SET [Description] = 'Vaagri Booli', [Definition] = NULL, [SortOrder] = 7255.00 WHERE [Code] = 'vaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vaf', 'Vafsi', NULL, 725.00) END +VALUES ('vaf', 'Vafsi', NULL, 7256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vafsi', [Definition] = NULL, [SortOrder] = 725.00 WHERE [Code] = 'vaf' END +SET [Description] = 'Vafsi', [Definition] = NULL, [SortOrder] = 7256.00 WHERE [Code] = 'vaf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vgr', 'Vaghri', NULL, 725.10) END +VALUES ('vgr', 'Vaghri', NULL, 7257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vaghri', [Definition] = NULL, [SortOrder] = 725.10 WHERE [Code] = 'vgr' END +SET [Description] = 'Vaghri', [Definition] = NULL, [SortOrder] = 7257.00 WHERE [Code] = 'vgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tva', 'Vaghua', NULL, 725.20) END +VALUES ('tva', 'Vaghua', NULL, 7258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vaghua', [Definition] = NULL, [SortOrder] = 725.20 WHERE [Code] = 'tva' END +SET [Description] = 'Vaghua', [Definition] = NULL, [SortOrder] = 7258.00 WHERE [Code] = 'tva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vag', 'Vagla', NULL, 725.30) END +VALUES ('vag', 'Vagla', NULL, 7259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vagla', [Definition] = NULL, [SortOrder] = 725.30 WHERE [Code] = 'vag' END +SET [Description] = 'Vagla', [Definition] = NULL, [SortOrder] = 7259.00 WHERE [Code] = 'vag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vai', 'Vai', NULL, 725.40) END +VALUES ('vai', 'Vai', NULL, 7260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vai', [Definition] = NULL, [SortOrder] = 725.40 WHERE [Code] = 'vai' END +SET [Description] = 'Vai', [Definition] = NULL, [SortOrder] = 7260.00 WHERE [Code] = 'vai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vap', 'Vaiphei', NULL, 725.50) END +VALUES ('vap', 'Vaiphei', NULL, 7261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vaiphei', [Definition] = NULL, [SortOrder] = 725.50 WHERE [Code] = 'vap' END +SET [Description] = 'Vaiphei', [Definition] = NULL, [SortOrder] = 7261.00 WHERE [Code] = 'vap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vae', 'Vale', NULL, 725.60) END +VALUES ('vae', 'Vale', NULL, 7262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vale', [Definition] = NULL, [SortOrder] = 725.60 WHERE [Code] = 'vae' END +SET [Description] = 'Vale', [Definition] = NULL, [SortOrder] = 7262.00 WHERE [Code] = 'vae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vsv', 'Valencian Sign Language', NULL, 725.70) END +VALUES ('vsv', 'Valencian Sign Language', NULL, 7263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valencian Sign Language', [Definition] = NULL, [SortOrder] = 725.70 WHERE [Code] = 'vsv' END +SET [Description] = 'Valencian Sign Language', [Definition] = NULL, [SortOrder] = 7263.00 WHERE [Code] = 'vsv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cvn', 'Valle Nacional Chinantec', NULL, 725.80) END +VALUES ('cvn', 'Valle Nacional Chinantec', NULL, 7264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valle Nacional Chinantec', [Definition] = NULL, [SortOrder] = 725.80 WHERE [Code] = 'cvn' END +SET [Description] = 'Valle Nacional Chinantec', [Definition] = NULL, [SortOrder] = 7264.00 WHERE [Code] = 'cvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmv', 'Valley Maidu', NULL, 725.90) END +VALUES ('vmv', 'Valley Maidu', NULL, 7265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valley Maidu', [Definition] = NULL, [SortOrder] = 725.90 WHERE [Code] = 'vmv' END +SET [Description] = 'Valley Maidu', [Definition] = NULL, [SortOrder] = 7265.00 WHERE [Code] = 'vmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'van') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('van', 'Valman', NULL, 726.00) END +VALUES ('van', 'Valman', NULL, 7266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valman', [Definition] = NULL, [SortOrder] = 726.00 WHERE [Code] = 'van' END +SET [Description] = 'Valman', [Definition] = NULL, [SortOrder] = 7266.00 WHERE [Code] = 'van' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vlp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vlp', 'Valpei', NULL, 726.10) END +VALUES ('vlp', 'Valpei', NULL, 7267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valpei', [Definition] = NULL, [SortOrder] = 726.10 WHERE [Code] = 'vlp' END +SET [Description] = 'Valpei', [Definition] = NULL, [SortOrder] = 7267.00 WHERE [Code] = 'vlp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkt', 'Vamale', NULL, 726.20) END +VALUES ('mkt', 'Vamale', NULL, 7268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vamale', [Definition] = NULL, [SortOrder] = 726.20 WHERE [Code] = 'mkt' END +SET [Description] = 'Vamale', [Definition] = NULL, [SortOrder] = 7268.00 WHERE [Code] = 'mkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlr', 'Vame', NULL, 726.30) END +VALUES ('mlr', 'Vame', NULL, 7269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vame', [Definition] = NULL, [SortOrder] = 726.30 WHERE [Code] = 'mlr' END +SET [Description] = 'Vame', [Definition] = NULL, [SortOrder] = 7269.00 WHERE [Code] = 'mlr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xvn', 'Vandalic', NULL, 726.40) END +VALUES ('xvn', 'Vandalic', NULL, 7270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vandalic', [Definition] = NULL, [SortOrder] = 726.40 WHERE [Code] = 'xvn' END +SET [Description] = 'Vandalic', [Definition] = NULL, [SortOrder] = 7270.00 WHERE [Code] = 'xvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpr', 'Vangunu', NULL, 726.50) END +VALUES ('mpr', 'Vangunu', NULL, 7271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vangunu', [Definition] = NULL, [SortOrder] = 726.50 WHERE [Code] = 'mpr' END +SET [Description] = 'Vangunu', [Definition] = NULL, [SortOrder] = 7271.00 WHERE [Code] = 'mpr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vam', 'Vanimo', NULL, 726.60) END +VALUES ('vam', 'Vanimo', NULL, 7272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vanimo', [Definition] = NULL, [SortOrder] = 726.60 WHERE [Code] = 'vam' END +SET [Description] = 'Vanimo', [Definition] = NULL, [SortOrder] = 7272.00 WHERE [Code] = 'vam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vnk', 'Vano', NULL, 726.70) END +VALUES ('vnk', 'Vano', NULL, 7273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vano', [Definition] = NULL, [SortOrder] = 726.70 WHERE [Code] = 'vnk' END +SET [Description] = 'Vano', [Definition] = NULL, [SortOrder] = 7273.00 WHERE [Code] = 'vnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vau', 'Vanuma', NULL, 726.80) END +VALUES ('vau', 'Vanuma', NULL, 7274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vanuma', [Definition] = NULL, [SortOrder] = 726.80 WHERE [Code] = 'vau' END +SET [Description] = 'Vanuma', [Definition] = NULL, [SortOrder] = 7274.00 WHERE [Code] = 'vau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vao', 'Vao', NULL, 726.90) END +VALUES ('vao', 'Vao', NULL, 7275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vao', [Definition] = NULL, [SortOrder] = 726.90 WHERE [Code] = 'vao' END +SET [Description] = 'Vao', [Definition] = NULL, [SortOrder] = 7275.00 WHERE [Code] = 'vao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vah', 'Varhadi-Nagpuri', NULL, 727.00) END +VALUES ('vah', 'Varhadi-Nagpuri', NULL, 7276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Varhadi-Nagpuri', [Definition] = NULL, [SortOrder] = 727.00 WHERE [Code] = 'vah' END +SET [Description] = 'Varhadi-Nagpuri', [Definition] = NULL, [SortOrder] = 7276.00 WHERE [Code] = 'vah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vrs', 'Varisi', NULL, 727.10) END +VALUES ('vrs', 'Varisi', NULL, 7277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Varisi', [Definition] = NULL, [SortOrder] = 727.10 WHERE [Code] = 'vrs' END +SET [Description] = 'Varisi', [Definition] = NULL, [SortOrder] = 7277.00 WHERE [Code] = 'vrs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vav', 'Varli', NULL, 727.20) END +VALUES ('vav', 'Varli', NULL, 7278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Varli', [Definition] = NULL, [SortOrder] = 727.20 WHERE [Code] = 'vav' END +SET [Description] = 'Varli', [Definition] = NULL, [SortOrder] = 7278.00 WHERE [Code] = 'vav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vas', 'Vasavi', NULL, 727.30) END +VALUES ('vas', 'Vasavi', NULL, 7279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vasavi', [Definition] = NULL, [SortOrder] = 727.30 WHERE [Code] = 'vas' END +SET [Description] = 'Vasavi', [Definition] = NULL, [SortOrder] = 7279.00 WHERE [Code] = 'vas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ved') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ved', 'Veddah', NULL, 727.40) END +VALUES ('ved', 'Veddah', NULL, 7280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Veddah', [Definition] = NULL, [SortOrder] = 727.40 WHERE [Code] = 'ved' END +SET [Description] = 'Veddah', [Definition] = NULL, [SortOrder] = 7280.00 WHERE [Code] = 'ved' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'val') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('val', 'Vehes', NULL, 727.50) END +VALUES ('val', 'Vehes', NULL, 7281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vehes', [Definition] = NULL, [SortOrder] = 727.50 WHERE [Code] = 'val' END +SET [Description] = 'Vehes', [Definition] = NULL, [SortOrder] = 7281.00 WHERE [Code] = 'val' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vel', 'Veluws', NULL, 727.60) END +VALUES ('vel', 'Veluws', NULL, 7282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Veluws', [Definition] = NULL, [SortOrder] = 727.60 WHERE [Code] = 'vel' END +SET [Description] = 'Veluws', [Definition] = NULL, [SortOrder] = 7282.00 WHERE [Code] = 'vel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vem', 'Vemgo-Mabas', NULL, 727.70) END +VALUES ('vem', 'Vemgo-Mabas', NULL, 7283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vemgo-Mabas', [Definition] = NULL, [SortOrder] = 727.70 WHERE [Code] = 'vem' END +SET [Description] = 'Vemgo-Mabas', [Definition] = NULL, [SortOrder] = 7283.00 WHERE [Code] = 'vem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ven') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ven', 'Venda', NULL, 727.80) END +VALUES ('ven', 'Venda', NULL, 7284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Venda', [Definition] = NULL, [SortOrder] = 727.80 WHERE [Code] = 'ven' END +SET [Description] = 'Venda', [Definition] = NULL, [SortOrder] = 7284.00 WHERE [Code] = 'ven' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vec', 'Venetian', NULL, 727.90) END +VALUES ('vec', 'Venetian', NULL, 7285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Venetian', [Definition] = NULL, [SortOrder] = 727.90 WHERE [Code] = 'vec' END +SET [Description] = 'Venetian', [Definition] = NULL, [SortOrder] = 7285.00 WHERE [Code] = 'vec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xve', 'Venetic', NULL, 728.00) END +VALUES ('xve', 'Venetic', NULL, 7286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Venetic', [Definition] = NULL, [SortOrder] = 728.00 WHERE [Code] = 'xve' END +SET [Description] = 'Venetic', [Definition] = NULL, [SortOrder] = 7286.00 WHERE [Code] = 'xve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vsl', 'Venezuelan Sign Language', NULL, 728.10) END +VALUES ('vsl', 'Venezuelan Sign Language', NULL, 7287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Venezuelan Sign Language', [Definition] = NULL, [SortOrder] = 728.10 WHERE [Code] = 'vsl' END +SET [Description] = 'Venezuelan Sign Language', [Definition] = NULL, [SortOrder] = 7287.00 WHERE [Code] = 'vsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bav', 'Vengo', NULL, 728.20) END +VALUES ('bav', 'Vengo', NULL, 7288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vengo', [Definition] = NULL, [SortOrder] = 728.20 WHERE [Code] = 'bav' END +SET [Description] = 'Vengo', [Definition] = NULL, [SortOrder] = 7288.00 WHERE [Code] = 'bav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'veo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('veo', 'Ventureño', NULL, 728.30) END +VALUES ('veo', 'Ventureño', NULL, 7289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ventureño', [Definition] = NULL, [SortOrder] = 728.30 WHERE [Code] = 'veo' END +SET [Description] = 'Ventureño', [Definition] = NULL, [SortOrder] = 7289.00 WHERE [Code] = 'veo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vep', 'Veps', NULL, 728.40) END +VALUES ('vep', 'Veps', NULL, 7290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Veps', [Definition] = NULL, [SortOrder] = 728.40 WHERE [Code] = 'vep' END +SET [Description] = 'Veps', [Definition] = NULL, [SortOrder] = 7290.00 WHERE [Code] = 'vep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vra', 'Vera''a', NULL, 728.50) END +VALUES ('vra', 'Vera''a', NULL, 7291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vera''a', [Definition] = NULL, [SortOrder] = 728.50 WHERE [Code] = 'vra' END +SET [Description] = 'Vera''a', [Definition] = NULL, [SortOrder] = 7291.00 WHERE [Code] = 'vra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xvs', 'Vestinian', NULL, 728.60) END +VALUES ('xvs', 'Vestinian', NULL, 7292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vestinian', [Definition] = NULL, [SortOrder] = 728.60 WHERE [Code] = 'xvs' END +SET [Description] = 'Vestinian', [Definition] = NULL, [SortOrder] = 7292.00 WHERE [Code] = 'xvs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vid', 'Vidunda', NULL, 728.70) END +VALUES ('vid', 'Vidunda', NULL, 7293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vidunda', [Definition] = NULL, [SortOrder] = 728.70 WHERE [Code] = 'vid' END +SET [Description] = 'Vidunda', [Definition] = NULL, [SortOrder] = 7293.00 WHERE [Code] = 'vid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vig', 'Viemo', NULL, 728.80) END +VALUES ('vig', 'Viemo', NULL, 7294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Viemo', [Definition] = NULL, [SortOrder] = 728.80 WHERE [Code] = 'vig' END +SET [Description] = 'Viemo', [Definition] = NULL, [SortOrder] = 7294.00 WHERE [Code] = 'vig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vie', 'Vietnamese', NULL, 728.90) END +VALUES ('vie', 'Vietnamese', NULL, 7295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vietnamese', [Definition] = NULL, [SortOrder] = 728.90 WHERE [Code] = 'vie' END +SET [Description] = 'Vietnamese', [Definition] = NULL, [SortOrder] = 7295.00 WHERE [Code] = 'vie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vil', 'Vilela', NULL, 729.00) END +VALUES ('vil', 'Vilela', NULL, 7296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vilela', [Definition] = NULL, [SortOrder] = 729.00 WHERE [Code] = 'vil' END +SET [Description] = 'Vilela', [Definition] = NULL, [SortOrder] = 7296.00 WHERE [Code] = 'vil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vif', 'Vili', NULL, 729.10) END +VALUES ('vif', 'Vili', NULL, 7297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vili', [Definition] = NULL, [SortOrder] = 729.10 WHERE [Code] = 'vif' END +SET [Description] = 'Vili', [Definition] = NULL, [SortOrder] = 7297.00 WHERE [Code] = 'vif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyg', 'Villa Viciosa Agta', NULL, 729.20) END +VALUES ('dyg', 'Villa Viciosa Agta', NULL, 7298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Villa Viciosa Agta', [Definition] = NULL, [SortOrder] = 729.20 WHERE [Code] = 'dyg' END +SET [Description] = 'Villa Viciosa Agta', [Definition] = NULL, [SortOrder] = 7298.00 WHERE [Code] = 'dyg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svc', 'Vincentian Creole English', NULL, 729.30) END +VALUES ('svc', 'Vincentian Creole English', NULL, 7299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vincentian Creole English', [Definition] = NULL, [SortOrder] = 729.30 WHERE [Code] = 'svc' END +SET [Description] = 'Vincentian Creole English', [Definition] = NULL, [SortOrder] = 7299.00 WHERE [Code] = 'svc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vnm', 'Vinmavis', NULL, 729.40) END +VALUES ('vnm', 'Vinmavis', NULL, 7300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vinmavis', [Definition] = NULL, [SortOrder] = 729.40 WHERE [Code] = 'vnm' END +SET [Description] = 'Vinmavis', [Definition] = NULL, [SortOrder] = 7300.00 WHERE [Code] = 'vnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vin', 'Vinza', NULL, 729.50) END +VALUES ('vin', 'Vinza', NULL, 7301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vinza', [Definition] = NULL, [SortOrder] = 729.50 WHERE [Code] = 'vin' END +SET [Description] = 'Vinza', [Definition] = NULL, [SortOrder] = 7301.00 WHERE [Code] = 'vin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vic', 'Virgin Islands Creole English', NULL, 729.60) END +VALUES ('vic', 'Virgin Islands Creole English', NULL, 7302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Virgin Islands Creole English', [Definition] = NULL, [SortOrder] = 729.60 WHERE [Code] = 'vic' END +SET [Description] = 'Virgin Islands Creole English', [Definition] = NULL, [SortOrder] = 7302.00 WHERE [Code] = 'vic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vis', 'Vishavan', NULL, 729.70) END +VALUES ('vis', 'Vishavan', NULL, 7303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vishavan', [Definition] = NULL, [SortOrder] = 729.70 WHERE [Code] = 'vis' END +SET [Description] = 'Vishavan', [Definition] = NULL, [SortOrder] = 7303.00 WHERE [Code] = 'vis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vit', 'Viti', NULL, 729.80) END +VALUES ('vit', 'Viti', NULL, 7304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Viti', [Definition] = NULL, [SortOrder] = 729.80 WHERE [Code] = 'vit' END +SET [Description] = 'Viti', [Definition] = NULL, [SortOrder] = 7304.00 WHERE [Code] = 'vit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vto', 'Vitou', NULL, 729.90) END +VALUES ('vto', 'Vitou', NULL, 7305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vitou', [Definition] = NULL, [SortOrder] = 729.90 WHERE [Code] = 'vto' END +SET [Description] = 'Vitou', [Definition] = NULL, [SortOrder] = 7305.00 WHERE [Code] = 'vto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wiv', 'Vitu', NULL, 730.00) END +VALUES ('wiv', 'Vitu', NULL, 7306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vitu', [Definition] = NULL, [SortOrder] = 730.00 WHERE [Code] = 'wiv' END +SET [Description] = 'Vitu', [Definition] = NULL, [SortOrder] = 7306.00 WHERE [Code] = 'wiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vls', 'Vlaams', NULL, 730.10) END +VALUES ('vls', 'Vlaams', NULL, 7307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vlaams', [Definition] = NULL, [SortOrder] = 730.10 WHERE [Code] = 'vls' END +SET [Description] = 'Vlaams', [Definition] = NULL, [SortOrder] = 7307.00 WHERE [Code] = 'vls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vgt', 'Vlaamse Gebarentaal', NULL, 730.20) END +VALUES ('vgt', 'Vlaamse Gebarentaal', NULL, 7308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vlaamse Gebarentaal', [Definition] = NULL, [SortOrder] = 730.20 WHERE [Code] = 'vgt' END +SET [Description] = 'Vlaamse Gebarentaal', [Definition] = NULL, [SortOrder] = 7308.00 WHERE [Code] = 'vgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmy', 'Vlax Romani', NULL, 730.30) END +VALUES ('rmy', 'Vlax Romani', NULL, 7309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vlax Romani', [Definition] = NULL, [SortOrder] = 730.30 WHERE [Code] = 'rmy' END +SET [Description] = 'Vlax Romani', [Definition] = NULL, [SortOrder] = 7309.00 WHERE [Code] = 'rmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vol', 'Volapük', NULL, 730.40) END +VALUES ('vol', 'Volapük', NULL, 7310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Volapük', [Definition] = NULL, [SortOrder] = 730.40 WHERE [Code] = 'vol' END +SET [Description] = 'Volapük', [Definition] = NULL, [SortOrder] = 7310.00 WHERE [Code] = 'vol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xvo', 'Volscian', NULL, 730.50) END +VALUES ('xvo', 'Volscian', NULL, 7311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Volscian', [Definition] = NULL, [SortOrder] = 730.50 WHERE [Code] = 'xvo' END +SET [Description] = 'Volscian', [Definition] = NULL, [SortOrder] = 7311.00 WHERE [Code] = 'xvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kch', 'Vono', NULL, 730.60) END +VALUES ('kch', 'Vono', NULL, 7312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vono', [Definition] = NULL, [SortOrder] = 730.60 WHERE [Code] = 'kch' END +SET [Description] = 'Vono', [Definition] = NULL, [SortOrder] = 7312.00 WHERE [Code] = 'kch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vor', 'Voro', NULL, 730.70) END +VALUES ('vor', 'Voro', NULL, 7313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Voro', [Definition] = NULL, [SortOrder] = 730.70 WHERE [Code] = 'vor' END +SET [Description] = 'Voro', [Definition] = NULL, [SortOrder] = 7313.00 WHERE [Code] = 'vor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vro', 'Võro', NULL, 730.80) END +VALUES ('vro', 'Võro', NULL, 7314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Võro', [Definition] = NULL, [SortOrder] = 730.80 WHERE [Code] = 'vro' END +SET [Description] = 'Võro', [Definition] = NULL, [SortOrder] = 7314.00 WHERE [Code] = 'vro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vot', 'Votic', NULL, 730.90) END +VALUES ('vot', 'Votic', NULL, 7315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Votic', [Definition] = NULL, [SortOrder] = 730.90 WHERE [Code] = 'vot' END +SET [Description] = 'Votic', [Definition] = NULL, [SortOrder] = 7315.00 WHERE [Code] = 'vot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vum', 'Vumbu', NULL, 731.00) END +VALUES ('vum', 'Vumbu', NULL, 7316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vumbu', [Definition] = NULL, [SortOrder] = 731.00 WHERE [Code] = 'vum' END +SET [Description] = 'Vumbu', [Definition] = NULL, [SortOrder] = 7316.00 WHERE [Code] = 'vum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vnp', 'Vunapu', NULL, 731.10) END +VALUES ('vnp', 'Vunapu', NULL, 7317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vunapu', [Definition] = NULL, [SortOrder] = 731.10 WHERE [Code] = 'vnp' END +SET [Description] = 'Vunapu', [Definition] = NULL, [SortOrder] = 7317.00 WHERE [Code] = 'vnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vun', 'Vunjo', NULL, 731.20) END +VALUES ('vun', 'Vunjo', NULL, 7318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vunjo', [Definition] = NULL, [SortOrder] = 731.20 WHERE [Code] = 'vun' END +SET [Description] = 'Vunjo', [Definition] = NULL, [SortOrder] = 7318.00 WHERE [Code] = 'vun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msn', 'Vurës', NULL, 731.30) END +VALUES ('msn', 'Vurës', NULL, 7319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vurës', [Definition] = NULL, [SortOrder] = 731.30 WHERE [Code] = 'msn' END +SET [Description] = 'Vurës', [Definition] = NULL, [SortOrder] = 7319.00 WHERE [Code] = 'msn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vut', 'Vute', NULL, 731.40) END +VALUES ('vut', 'Vute', NULL, 7320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vute', [Definition] = NULL, [SortOrder] = 731.40 WHERE [Code] = 'vut' END +SET [Description] = 'Vute', [Definition] = NULL, [SortOrder] = 7320.00 WHERE [Code] = 'vut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbi', 'Vwanji', NULL, 731.50) END +VALUES ('wbi', 'Vwanji', NULL, 7321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vwanji', [Definition] = NULL, [SortOrder] = 731.50 WHERE [Code] = 'wbi' END +SET [Description] = 'Vwanji', [Definition] = NULL, [SortOrder] = 7321.00 WHERE [Code] = 'wbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbm', 'Wa', NULL, 731.60) END +VALUES ('wbm', 'Wa', NULL, 7322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wa', [Definition] = NULL, [SortOrder] = 731.60 WHERE [Code] = 'wbm' END +SET [Description] = 'Wa', [Definition] = NULL, [SortOrder] = 7322.00 WHERE [Code] = 'wbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wag', 'Wa''ema', NULL, 731.70) END +VALUES ('wag', 'Wa''ema', NULL, 7323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wa''ema', [Definition] = NULL, [SortOrder] = 731.70 WHERE [Code] = 'wag' END +SET [Description] = 'Wa''ema', [Definition] = NULL, [SortOrder] = 7323.00 WHERE [Code] = 'wag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wwa', 'Waama', NULL, 731.80) END +VALUES ('wwa', 'Waama', NULL, 7324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waama', [Definition] = NULL, [SortOrder] = 731.80 WHERE [Code] = 'wwa' END +SET [Description] = 'Waama', [Definition] = NULL, [SortOrder] = 7324.00 WHERE [Code] = 'wwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmn', 'Waamwang', NULL, 731.90) END +VALUES ('wmn', 'Waamwang', NULL, 7325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waamwang', [Definition] = NULL, [SortOrder] = 731.90 WHERE [Code] = 'wmn' END +SET [Description] = 'Waamwang', [Definition] = NULL, [SortOrder] = 7325.00 WHERE [Code] = 'wmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssn', 'Waata', NULL, 732.00) END +VALUES ('ssn', 'Waata', NULL, 7326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waata', [Definition] = NULL, [SortOrder] = 732.00 WHERE [Code] = 'ssn' END +SET [Description] = 'Waata', [Definition] = NULL, [SortOrder] = 7326.00 WHERE [Code] = 'ssn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wab', 'Wab', NULL, 732.10) END +VALUES ('wab', 'Wab', NULL, 7327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wab', [Definition] = NULL, [SortOrder] = 732.10 WHERE [Code] = 'wab' END +SET [Description] = 'Wab', [Definition] = NULL, [SortOrder] = 7327.00 WHERE [Code] = 'wab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbb', 'Wabo', NULL, 732.20) END +VALUES ('wbb', 'Wabo', NULL, 7328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wabo', [Definition] = NULL, [SortOrder] = 732.20 WHERE [Code] = 'wbb' END +SET [Description] = 'Wabo', [Definition] = NULL, [SortOrder] = 7328.00 WHERE [Code] = 'wbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmx', 'Waboda', NULL, 732.30) END +VALUES ('kmx', 'Waboda', NULL, 7329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waboda', [Definition] = NULL, [SortOrder] = 732.30 WHERE [Code] = 'kmx' END +SET [Description] = 'Waboda', [Definition] = NULL, [SortOrder] = 7329.00 WHERE [Code] = 'kmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wci', 'Waci Gbe', NULL, 732.40) END +VALUES ('wci', 'Waci Gbe', NULL, 7330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waci Gbe', [Definition] = NULL, [SortOrder] = 732.40 WHERE [Code] = 'wci' END +SET [Description] = 'Waci Gbe', [Definition] = NULL, [SortOrder] = 7330.00 WHERE [Code] = 'wci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdg', 'Wadaginam', NULL, 732.50) END +VALUES ('wdg', 'Wadaginam', NULL, 7331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadaginam', [Definition] = NULL, [SortOrder] = 732.50 WHERE [Code] = 'wdg' END +SET [Description] = 'Wadaginam', [Definition] = NULL, [SortOrder] = 7331.00 WHERE [Code] = 'wdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbq', 'Waddar', NULL, 732.60) END +VALUES ('wbq', 'Waddar', NULL, 7332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waddar', [Definition] = NULL, [SortOrder] = 732.60 WHERE [Code] = 'wbq' END +SET [Description] = 'Waddar', [Definition] = NULL, [SortOrder] = 7332.00 WHERE [Code] = 'wbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwd', 'Wadi Wadi', NULL, 732.70) END +VALUES ('xwd', 'Wadi Wadi', NULL, 7333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadi Wadi', [Definition] = NULL, [SortOrder] = 732.70 WHERE [Code] = 'xwd' END +SET [Description] = 'Wadi Wadi', [Definition] = NULL, [SortOrder] = 7333.00 WHERE [Code] = 'xwd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdk', 'Wadikali', NULL, 732.80) END +VALUES ('wdk', 'Wadikali', NULL, 7334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadikali', [Definition] = NULL, [SortOrder] = 732.80 WHERE [Code] = 'wdk' END +SET [Description] = 'Wadikali', [Definition] = NULL, [SortOrder] = 7334.00 WHERE [Code] = 'wdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxp', 'Wadiyara Koli', NULL, 732.90) END +VALUES ('kxp', 'Wadiyara Koli', NULL, 7335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadiyara Koli', [Definition] = NULL, [SortOrder] = 732.90 WHERE [Code] = 'kxp' END +SET [Description] = 'Wadiyara Koli', [Definition] = NULL, [SortOrder] = 7335.00 WHERE [Code] = 'kxp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdy', 'Wadjabangayi', NULL, 733.00) END +VALUES ('wdy', 'Wadjabangayi', NULL, 7336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadjabangayi', [Definition] = NULL, [SortOrder] = 733.00 WHERE [Code] = 'wdy' END +SET [Description] = 'Wadjabangayi', [Definition] = NULL, [SortOrder] = 7336.00 WHERE [Code] = 'wdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdj', 'Wadjiginy', NULL, 733.10) END +VALUES ('wdj', 'Wadjiginy', NULL, 7337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadjiginy', [Definition] = NULL, [SortOrder] = 733.10 WHERE [Code] = 'wdj' END +SET [Description] = 'Wadjiginy', [Definition] = NULL, [SortOrder] = 7337.00 WHERE [Code] = 'wdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdu', 'Wadjigu', NULL, 733.20) END +VALUES ('wdu', 'Wadjigu', NULL, 7338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadjigu', [Definition] = NULL, [SortOrder] = 733.20 WHERE [Code] = 'wdu' END +SET [Description] = 'Wadjigu', [Definition] = NULL, [SortOrder] = 7338.00 WHERE [Code] = 'wdu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrx', 'Wae Rana', NULL, 733.30) END +VALUES ('wrx', 'Wae Rana', NULL, 7339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wae Rana', [Definition] = NULL, [SortOrder] = 733.30 WHERE [Code] = 'wrx' END +SET [Description] = 'Wae Rana', [Definition] = NULL, [SortOrder] = 7339.00 WHERE [Code] = 'wrx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waj', 'Waffa', NULL, 733.40) END +VALUES ('waj', 'Waffa', NULL, 7340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waffa', [Definition] = NULL, [SortOrder] = 733.40 WHERE [Code] = 'waj' END +SET [Description] = 'Waffa', [Definition] = NULL, [SortOrder] = 7340.00 WHERE [Code] = 'waj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgb', 'Wagawaga', NULL, 733.50) END +VALUES ('wgb', 'Wagawaga', NULL, 7341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagawaga', [Definition] = NULL, [SortOrder] = 733.50 WHERE [Code] = 'wgb' END +SET [Description] = 'Wagawaga', [Definition] = NULL, [SortOrder] = 7341.00 WHERE [Code] = 'wgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wga', 'Wagaya', NULL, 733.60) END +VALUES ('wga', 'Wagaya', NULL, 7342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagaya', [Definition] = NULL, [SortOrder] = 733.60 WHERE [Code] = 'wga' END +SET [Description] = 'Wagaya', [Definition] = NULL, [SortOrder] = 7342.00 WHERE [Code] = 'wga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbr', 'Wagdi', NULL, 733.70) END +VALUES ('wbr', 'Wagdi', NULL, 7343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagdi', [Definition] = NULL, [SortOrder] = 733.70 WHERE [Code] = 'wbr' END +SET [Description] = 'Wagdi', [Definition] = NULL, [SortOrder] = 7343.00 WHERE [Code] = 'wbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fad', 'Wagi', NULL, 733.80) END +VALUES ('fad', 'Wagi', NULL, 7344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagi', [Definition] = NULL, [SortOrder] = 733.80 WHERE [Code] = 'fad' END +SET [Description] = 'Wagi', [Definition] = NULL, [SortOrder] = 7344.00 WHERE [Code] = 'fad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waq', 'Wagiman', NULL, 733.90) END +VALUES ('waq', 'Wagiman', NULL, 7345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagiman', [Definition] = NULL, [SortOrder] = 733.90 WHERE [Code] = 'waq' END +SET [Description] = 'Wagiman', [Definition] = NULL, [SortOrder] = 7345.00 WHERE [Code] = 'waq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'whu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('whu', 'Wahau Kayan', NULL, 734.00) END +VALUES ('whu', 'Wahau Kayan', NULL, 7346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wahau Kayan', [Definition] = NULL, [SortOrder] = 734.00 WHERE [Code] = 'whu' END +SET [Description] = 'Wahau Kayan', [Definition] = NULL, [SortOrder] = 7346.00 WHERE [Code] = 'whu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'whk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('whk', 'Wahau Kenyah', NULL, 734.10) END +VALUES ('whk', 'Wahau Kenyah', NULL, 7347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wahau Kenyah', [Definition] = NULL, [SortOrder] = 734.10 WHERE [Code] = 'whk' END +SET [Description] = 'Wahau Kenyah', [Definition] = NULL, [SortOrder] = 7347.00 WHERE [Code] = 'whk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgi', 'Wahgi', NULL, 734.20) END +VALUES ('wgi', 'Wahgi', NULL, 7348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wahgi', [Definition] = NULL, [SortOrder] = 734.20 WHERE [Code] = 'wgi' END +SET [Description] = 'Wahgi', [Definition] = NULL, [SortOrder] = 7348.00 WHERE [Code] = 'wgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbk', 'Waigali', NULL, 734.30) END +VALUES ('wbk', 'Waigali', NULL, 7349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waigali', [Definition] = NULL, [SortOrder] = 734.30 WHERE [Code] = 'wbk' END +SET [Description] = 'Waigali', [Definition] = NULL, [SortOrder] = 7349.00 WHERE [Code] = 'wbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgo', 'Waigeo', NULL, 734.40) END +VALUES ('wgo', 'Waigeo', NULL, 7350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waigeo', [Definition] = NULL, [SortOrder] = 734.40 WHERE [Code] = 'wgo' END +SET [Description] = 'Waigeo', [Definition] = NULL, [SortOrder] = 7350.00 WHERE [Code] = 'wgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlk', 'Wailaki', NULL, 734.50) END +VALUES ('wlk', 'Wailaki', NULL, 7351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wailaki', [Definition] = NULL, [SortOrder] = 734.50 WHERE [Code] = 'wlk' END +SET [Description] = 'Wailaki', [Definition] = NULL, [SortOrder] = 7351.00 WHERE [Code] = 'wlk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlr', 'Wailapa', NULL, 734.60) END +VALUES ('wlr', 'Wailapa', NULL, 7352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wailapa', [Definition] = NULL, [SortOrder] = 734.60 WHERE [Code] = 'wlr' END +SET [Description] = 'Wailapa', [Definition] = NULL, [SortOrder] = 7352.00 WHERE [Code] = 'wlr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rro', 'Waima', NULL, 734.70) END +VALUES ('rro', 'Waima', NULL, 7353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waima', [Definition] = NULL, [SortOrder] = 734.70 WHERE [Code] = 'rro' END +SET [Description] = 'Waima', [Definition] = NULL, [SortOrder] = 7353.00 WHERE [Code] = 'rro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmh', 'Waima''a', NULL, 734.80) END +VALUES ('wmh', 'Waima''a', NULL, 7354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waima''a', [Definition] = NULL, [SortOrder] = 734.80 WHERE [Code] = 'wmh' END +SET [Description] = 'Waima''a', [Definition] = NULL, [SortOrder] = 7354.00 WHERE [Code] = 'wmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bao', 'Waimaha', NULL, 734.90) END +VALUES ('bao', 'Waimaha', NULL, 7355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waimaha', [Definition] = NULL, [SortOrder] = 734.90 WHERE [Code] = 'bao' END +SET [Description] = 'Waimaha', [Definition] = NULL, [SortOrder] = 7355.00 WHERE [Code] = 'bao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atr', 'Waimiri-Atroari', NULL, 735.00) END +VALUES ('atr', 'Waimiri-Atroari', NULL, 7356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waimiri-Atroari', [Definition] = NULL, [SortOrder] = 735.00 WHERE [Code] = 'atr' END +SET [Description] = 'Waimiri-Atroari', [Definition] = NULL, [SortOrder] = 7356.00 WHERE [Code] = 'atr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wli', 'Waioli', NULL, 735.10) END +VALUES ('wli', 'Waioli', NULL, 7357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waioli', [Definition] = NULL, [SortOrder] = 735.10 WHERE [Code] = 'wli' END +SET [Description] = 'Waioli', [Definition] = NULL, [SortOrder] = 7357.00 WHERE [Code] = 'wli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waw', 'Waiwai', NULL, 735.20) END +VALUES ('waw', 'Waiwai', NULL, 7358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waiwai', [Definition] = NULL, [SortOrder] = 735.20 WHERE [Code] = 'waw' END +SET [Description] = 'Waiwai', [Definition] = NULL, [SortOrder] = 7358.00 WHERE [Code] = 'waw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wja', 'Waja', NULL, 735.30) END +VALUES ('wja', 'Waja', NULL, 7359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waja', [Definition] = NULL, [SortOrder] = 735.30 WHERE [Code] = 'wja' END +SET [Description] = 'Waja', [Definition] = NULL, [SortOrder] = 7359.00 WHERE [Code] = 'wja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbv', 'Wajarri', NULL, 735.40) END +VALUES ('wbv', 'Wajarri', NULL, 7360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wajarri', [Definition] = NULL, [SortOrder] = 735.40 WHERE [Code] = 'wbv' END +SET [Description] = 'Wajarri', [Definition] = NULL, [SortOrder] = 7360.00 WHERE [Code] = 'wbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwj', 'Wajuk', NULL, 735.50) END +VALUES ('xwj', 'Wajuk', NULL, 7361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wajuk', [Definition] = NULL, [SortOrder] = 735.50 WHERE [Code] = 'xwj' END +SET [Description] = 'Wajuk', [Definition] = NULL, [SortOrder] = 7361.00 WHERE [Code] = 'xwj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wav', 'Waka', NULL, 735.60) END +VALUES ('wav', 'Waka', NULL, 7362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waka', [Definition] = NULL, [SortOrder] = 735.60 WHERE [Code] = 'wav' END +SET [Description] = 'Waka', [Definition] = NULL, [SortOrder] = 7362.00 WHERE [Code] = 'wav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wwb', 'Wakabunga', NULL, 735.70) END +VALUES ('wwb', 'Wakabunga', NULL, 7363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakabunga', [Definition] = NULL, [SortOrder] = 735.70 WHERE [Code] = 'wwb' END +SET [Description] = 'Wakabunga', [Definition] = NULL, [SortOrder] = 7363.00 WHERE [Code] = 'wwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkw', 'Wakawaka', NULL, 735.80) END +VALUES ('wkw', 'Wakawaka', NULL, 7364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakawaka', [Definition] = NULL, [SortOrder] = 735.80 WHERE [Code] = 'wkw' END +SET [Description] = 'Wakawaka', [Definition] = NULL, [SortOrder] = 7364.00 WHERE [Code] = 'wkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkd', 'Wakde', NULL, 735.90) END +VALUES ('wkd', 'Wakde', NULL, 7365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakde', [Definition] = NULL, [SortOrder] = 735.90 WHERE [Code] = 'wkd' END +SET [Description] = 'Wakde', [Definition] = NULL, [SortOrder] = 7365.00 WHERE [Code] = 'wkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbl', 'Wakhi', NULL, 736.00) END +VALUES ('wbl', 'Wakhi', NULL, 7366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakhi', [Definition] = NULL, [SortOrder] = 736.00 WHERE [Code] = 'wbl' END +SET [Description] = 'Wakhi', [Definition] = NULL, [SortOrder] = 7366.00 WHERE [Code] = 'wbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waf', 'Wakoná', NULL, 736.10) END +VALUES ('waf', 'Wakoná', NULL, 7367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakoná', [Definition] = NULL, [SortOrder] = 736.10 WHERE [Code] = 'waf' END +SET [Description] = 'Wakoná', [Definition] = NULL, [SortOrder] = 7367.00 WHERE [Code] = 'waf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgl', 'Wala', NULL, 736.20) END +VALUES ('lgl', 'Wala', NULL, 7368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wala', [Definition] = NULL, [SortOrder] = 736.20 WHERE [Code] = 'lgl' END +SET [Description] = 'Wala', [Definition] = NULL, [SortOrder] = 7368.00 WHERE [Code] = 'lgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlw', 'Walak', NULL, 736.30) END +VALUES ('wlw', 'Walak', NULL, 7369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walak', [Definition] = NULL, [SortOrder] = 736.30 WHERE [Code] = 'wlw' END +SET [Description] = 'Walak', [Definition] = NULL, [SortOrder] = 7369.00 WHERE [Code] = 'wlw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlw', 'Walangama', NULL, 736.40) END +VALUES ('nlw', 'Walangama', NULL, 7370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walangama', [Definition] = NULL, [SortOrder] = 736.40 WHERE [Code] = 'nlw' END +SET [Description] = 'Walangama', [Definition] = NULL, [SortOrder] = 7370.00 WHERE [Code] = 'nlw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlx', 'Wali (Ghana)', NULL, 736.50) END +VALUES ('wlx', 'Wali (Ghana)', NULL, 7371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wali (Ghana)', [Definition] = NULL, [SortOrder] = 736.50 WHERE [Code] = 'wlx' END +SET [Description] = 'Wali (Ghana)', [Definition] = NULL, [SortOrder] = 7371.00 WHERE [Code] = 'wlx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wll', 'Wali (Sudan)', NULL, 736.60) END +VALUES ('wll', 'Wali (Sudan)', NULL, 7372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wali (Sudan)', [Definition] = NULL, [SortOrder] = 736.60 WHERE [Code] = 'wll' END +SET [Description] = 'Wali (Sudan)', [Definition] = NULL, [SortOrder] = 7372.00 WHERE [Code] = 'wll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wly', 'Waling', NULL, 736.70) END +VALUES ('wly', 'Waling', NULL, 7373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waling', [Definition] = NULL, [SortOrder] = 736.70 WHERE [Code] = 'wly' END +SET [Description] = 'Waling', [Definition] = NULL, [SortOrder] = 7373.00 WHERE [Code] = 'wly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wla', 'Walio', NULL, 736.80) END +VALUES ('wla', 'Walio', NULL, 7374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walio', [Definition] = NULL, [SortOrder] = 736.80 WHERE [Code] = 'wla' END +SET [Description] = 'Walio', [Definition] = NULL, [SortOrder] = 7374.00 WHERE [Code] = 'wla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waa', 'Walla Walla', NULL, 736.90) END +VALUES ('waa', 'Walla Walla', NULL, 7375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walla Walla', [Definition] = NULL, [SortOrder] = 736.90 WHERE [Code] = 'waa' END +SET [Description] = 'Walla Walla', [Definition] = NULL, [SortOrder] = 7375.00 WHERE [Code] = 'waa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wls', 'Wallisian', NULL, 737.00) END +VALUES ('wls', 'Wallisian', NULL, 7376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wallisian', [Definition] = NULL, [SortOrder] = 737.00 WHERE [Code] = 'wls' END +SET [Description] = 'Wallisian', [Definition] = NULL, [SortOrder] = 7376.00 WHERE [Code] = 'wls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wln', 'Walloon', NULL, 737.10) END +VALUES ('wln', 'Walloon', NULL, 7377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walloon', [Definition] = NULL, [SortOrder] = 737.10 WHERE [Code] = 'wln' END +SET [Description] = 'Walloon', [Definition] = NULL, [SortOrder] = 7377.00 WHERE [Code] = 'wln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmt', 'Walmajarri', NULL, 737.20) END +VALUES ('wmt', 'Walmajarri', NULL, 7378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walmajarri', [Definition] = NULL, [SortOrder] = 737.20 WHERE [Code] = 'wmt' END +SET [Description] = 'Walmajarri', [Definition] = NULL, [SortOrder] = 7378.00 WHERE [Code] = 'wmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wae', 'Walser', NULL, 737.30) END +VALUES ('wae', 'Walser', NULL, 7379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walser', [Definition] = NULL, [SortOrder] = 737.30 WHERE [Code] = 'wae' END +SET [Description] = 'Walser', [Definition] = NULL, [SortOrder] = 7379.00 WHERE [Code] = 'wae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ola') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ola', 'Walungge', NULL, 737.40) END +VALUES ('ola', 'Walungge', NULL, 7380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walungge', [Definition] = NULL, [SortOrder] = 737.40 WHERE [Code] = 'ola' END +SET [Description] = 'Walungge', [Definition] = NULL, [SortOrder] = 7380.00 WHERE [Code] = 'ola' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrb', 'Waluwarra', NULL, 737.50) END +VALUES ('wrb', 'Waluwarra', NULL, 7381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waluwarra', [Definition] = NULL, [SortOrder] = 737.50 WHERE [Code] = 'wrb' END +SET [Description] = 'Waluwarra', [Definition] = NULL, [SortOrder] = 7381.00 WHERE [Code] = 'wrb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmc', 'Wamas', NULL, 737.60) END +VALUES ('wmc', 'Wamas', NULL, 7382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wamas', [Definition] = NULL, [SortOrder] = 737.60 WHERE [Code] = 'wmc' END +SET [Description] = 'Wamas', [Definition] = NULL, [SortOrder] = 7382.00 WHERE [Code] = 'wmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmb', 'Wambaya', NULL, 737.70) END +VALUES ('wmb', 'Wambaya', NULL, 7383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wambaya', [Definition] = NULL, [SortOrder] = 737.70 WHERE [Code] = 'wmb' END +SET [Description] = 'Wambaya', [Definition] = NULL, [SortOrder] = 7383.00 WHERE [Code] = 'wmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wms', 'Wambon', NULL, 737.80) END +VALUES ('wms', 'Wambon', NULL, 7384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wambon', [Definition] = NULL, [SortOrder] = 737.80 WHERE [Code] = 'wms' END +SET [Description] = 'Wambon', [Definition] = NULL, [SortOrder] = 7384.00 WHERE [Code] = 'wms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wme', 'Wambule', NULL, 737.90) END +VALUES ('wme', 'Wambule', NULL, 7385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wambule', [Definition] = NULL, [SortOrder] = 737.90 WHERE [Code] = 'wme' END +SET [Description] = 'Wambule', [Definition] = NULL, [SortOrder] = 7385.00 WHERE [Code] = 'wme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wad', 'Wamesa', NULL, 738.00) END +VALUES ('wad', 'Wamesa', NULL, 7386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wamesa', [Definition] = NULL, [SortOrder] = 738.00 WHERE [Code] = 'wad' END +SET [Description] = 'Wamesa', [Definition] = NULL, [SortOrder] = 7386.00 WHERE [Code] = 'wad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cou', 'Wamey', NULL, 738.10) END +VALUES ('cou', 'Wamey', NULL, 7387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wamey', [Definition] = NULL, [SortOrder] = 738.10 WHERE [Code] = 'cou' END +SET [Description] = 'Wamey', [Definition] = NULL, [SortOrder] = 7387.00 WHERE [Code] = 'cou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmi', 'Wamin', NULL, 738.20) END +VALUES ('wmi', 'Wamin', NULL, 7388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wamin', [Definition] = NULL, [SortOrder] = 738.20 WHERE [Code] = 'wmi' END +SET [Description] = 'Wamin', [Definition] = NULL, [SortOrder] = 7388.00 WHERE [Code] = 'wmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wam', 'Wampanoag', NULL, 738.30) END +VALUES ('wam', 'Wampanoag', NULL, 7389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wampanoag', [Definition] = NULL, [SortOrder] = 738.30 WHERE [Code] = 'wam' END +SET [Description] = 'Wampanoag', [Definition] = NULL, [SortOrder] = 7389.00 WHERE [Code] = 'wam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbq', 'Wampar', NULL, 738.40) END +VALUES ('lbq', 'Wampar', NULL, 7390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wampar', [Definition] = NULL, [SortOrder] = 738.40 WHERE [Code] = 'lbq' END +SET [Description] = 'Wampar', [Definition] = NULL, [SortOrder] = 7390.00 WHERE [Code] = 'lbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waz', 'Wampur', NULL, 738.50) END +VALUES ('waz', 'Wampur', NULL, 7391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wampur', [Definition] = NULL, [SortOrder] = 738.50 WHERE [Code] = 'waz' END +SET [Description] = 'Wampur', [Definition] = NULL, [SortOrder] = 7391.00 WHERE [Code] = 'waz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wan', 'Wan', NULL, 738.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wan', [Definition] = NULL, [SortOrder] = 738.60 WHERE [Code] = 'wan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnb', 'Wanambre', NULL, 738.70) END +VALUES ('wan', 'Wan', NULL, 7392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanambre', [Definition] = NULL, [SortOrder] = 738.70 WHERE [Code] = 'wnb' END +SET [Description] = 'Wan', [Definition] = NULL, [SortOrder] = 7392.00 WHERE [Code] = 'wan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnp', 'Wanap', NULL, 738.80) END +VALUES ('wnp', 'Wanap', NULL, 7393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanap', [Definition] = NULL, [SortOrder] = 738.80 WHERE [Code] = 'wnp' END +SET [Description] = 'Wanap', [Definition] = NULL, [SortOrder] = 7393.00 WHERE [Code] = 'wnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnp', 'Wancho Naga', NULL, 738.90) END +VALUES ('nnp', 'Wancho Naga', NULL, 7394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wancho Naga', [Definition] = NULL, [SortOrder] = 738.90 WHERE [Code] = 'nnp' END +SET [Description] = 'Wancho Naga', [Definition] = NULL, [SortOrder] = 7394.00 WHERE [Code] = 'nnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbh', 'Wanda', NULL, 739.00) END +VALUES ('wbh', 'Wanda', NULL, 7395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanda', [Definition] = NULL, [SortOrder] = 739.00 WHERE [Code] = 'wbh' END +SET [Description] = 'Wanda', [Definition] = NULL, [SortOrder] = 7395.00 WHERE [Code] = 'wbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfi', 'Wandala', NULL, 739.10) END +VALUES ('mfi', 'Wandala', NULL, 7396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wandala', [Definition] = NULL, [SortOrder] = 739.10 WHERE [Code] = 'mfi' END +SET [Description] = 'Wandala', [Definition] = NULL, [SortOrder] = 7396.00 WHERE [Code] = 'mfi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnd', 'Wandarang', NULL, 739.20) END +VALUES ('wnd', 'Wandarang', NULL, 7397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wandarang', [Definition] = NULL, [SortOrder] = 739.20 WHERE [Code] = 'wnd' END +SET [Description] = 'Wandarang', [Definition] = NULL, [SortOrder] = 7397.00 WHERE [Code] = 'wnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdd', 'Wandji', NULL, 739.30) END +VALUES ('wdd', 'Wandji', NULL, 7398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wandji', [Definition] = NULL, [SortOrder] = 739.30 WHERE [Code] = 'wdd' END +SET [Description] = 'Wandji', [Definition] = NULL, [SortOrder] = 7398.00 WHERE [Code] = 'wdd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hwa', 'Wané', NULL, 739.40) END +VALUES ('hwa', 'Wané', NULL, 7399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wané', [Definition] = NULL, [SortOrder] = 739.40 WHERE [Code] = 'hwa' END +SET [Description] = 'Wané', [Definition] = NULL, [SortOrder] = 7399.00 WHERE [Code] = 'hwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wne', 'Waneci', NULL, 739.50) END +VALUES ('wne', 'Waneci', NULL, 7400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waneci', [Definition] = NULL, [SortOrder] = 739.50 WHERE [Code] = 'wne' END +SET [Description] = 'Waneci', [Definition] = NULL, [SortOrder] = 7400.00 WHERE [Code] = 'wne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwg', 'Wanga', NULL, 739.60) END +VALUES ('lwg', 'Wanga', NULL, 7401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanga', [Definition] = NULL, [SortOrder] = 739.60 WHERE [Code] = 'lwg' END +SET [Description] = 'Wanga', [Definition] = NULL, [SortOrder] = 7401.00 WHERE [Code] = 'lwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyb', 'Wangaaybuwan-Ngiyambaa', NULL, 739.70) END +VALUES ('wyb', 'Wangaaybuwan-Ngiyambaa', NULL, 7402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wangaaybuwan-Ngiyambaa', [Definition] = NULL, [SortOrder] = 739.70 WHERE [Code] = 'wyb' END +SET [Description] = 'Wangaaybuwan-Ngiyambaa', [Definition] = NULL, [SortOrder] = 7402.00 WHERE [Code] = 'wyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnm', 'Wanggamala', NULL, 739.80) END +VALUES ('wnm', 'Wanggamala', NULL, 7403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanggamala', [Definition] = NULL, [SortOrder] = 739.80 WHERE [Code] = 'wnm' END +SET [Description] = 'Wanggamala', [Definition] = NULL, [SortOrder] = 7403.00 WHERE [Code] = 'wnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wng', 'Wanggom', NULL, 739.90) END +VALUES ('wng', 'Wanggom', NULL, 7404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanggom', [Definition] = NULL, [SortOrder] = 739.90 WHERE [Code] = 'wng' END +SET [Description] = 'Wanggom', [Definition] = NULL, [SortOrder] = 7404.00 WHERE [Code] = 'wng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgg', 'Wangkangurru', NULL, 740.00) END +VALUES ('wgg', 'Wangkangurru', NULL, 7405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wangkangurru', [Definition] = NULL, [SortOrder] = 740.00 WHERE [Code] = 'wgg' END +SET [Description] = 'Wangkangurru', [Definition] = NULL, [SortOrder] = 7405.00 WHERE [Code] = 'wgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wky', 'Wangkayutyuru', NULL, 740.10) END +VALUES ('wky', 'Wangkayutyuru', NULL, 7406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wangkayutyuru', [Definition] = NULL, [SortOrder] = 740.10 WHERE [Code] = 'wky' END +SET [Description] = 'Wangkayutyuru', [Definition] = NULL, [SortOrder] = 7406.00 WHERE [Code] = 'wky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwk', 'Wangkumara', NULL, 740.20) END +VALUES ('xwk', 'Wangkumara', NULL, 7407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wangkumara', [Definition] = NULL, [SortOrder] = 740.20 WHERE [Code] = 'xwk' END +SET [Description] = 'Wangkumara', [Definition] = NULL, [SortOrder] = 7407.00 WHERE [Code] = 'xwk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jub', 'Wannu', NULL, 740.30) END +VALUES ('jub', 'Wannu', NULL, 7408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wannu', [Definition] = NULL, [SortOrder] = 740.30 WHERE [Code] = 'jub' END +SET [Description] = 'Wannu', [Definition] = NULL, [SortOrder] = 7408.00 WHERE [Code] = 'jub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wno', 'Wano', NULL, 740.40) END +VALUES ('wno', 'Wano', NULL, 7409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wano', [Definition] = NULL, [SortOrder] = 740.40 WHERE [Code] = 'wno' END +SET [Description] = 'Wano', [Definition] = NULL, [SortOrder] = 7409.00 WHERE [Code] = 'wno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnc', 'Wantoat', NULL, 740.50) END +VALUES ('wnc', 'Wantoat', NULL, 7410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wantoat', [Definition] = NULL, [SortOrder] = 740.50 WHERE [Code] = 'wnc' END +SET [Description] = 'Wantoat', [Definition] = NULL, [SortOrder] = 7410.00 WHERE [Code] = 'wnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnk', 'Wanukaka', NULL, 740.60) END +VALUES ('wnk', 'Wanukaka', NULL, 7411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanukaka', [Definition] = NULL, [SortOrder] = 740.60 WHERE [Code] = 'wnk' END +SET [Description] = 'Wanukaka', [Definition] = NULL, [SortOrder] = 7411.00 WHERE [Code] = 'wnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wny', 'Wanyi', NULL, 740.70) END +VALUES ('wny', 'Wanyi', NULL, 7412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanyi', [Definition] = NULL, [SortOrder] = 740.70 WHERE [Code] = 'wny' END +SET [Description] = 'Wanyi', [Definition] = NULL, [SortOrder] = 7412.00 WHERE [Code] = 'wny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auc', 'Waorani', NULL, 740.80) END +VALUES ('auc', 'Waorani', NULL, 7413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waorani', [Definition] = NULL, [SortOrder] = 740.80 WHERE [Code] = 'auc' END +SET [Description] = 'Waorani', [Definition] = NULL, [SortOrder] = 7413.00 WHERE [Code] = 'auc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juk', 'Wapan', NULL, 740.90) END +VALUES ('juk', 'Wapan', NULL, 7414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wapan', [Definition] = NULL, [SortOrder] = 740.90 WHERE [Code] = 'juk' END +SET [Description] = 'Wapan', [Definition] = NULL, [SortOrder] = 7414.00 WHERE [Code] = 'juk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juw', 'Wãpha', NULL, 741.00) END +VALUES ('juw', 'Wãpha', NULL, 7415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wãpha', [Definition] = NULL, [SortOrder] = 741.00 WHERE [Code] = 'juw' END +SET [Description] = 'Wãpha', [Definition] = NULL, [SortOrder] = 7415.00 WHERE [Code] = 'juw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wap', 'Wapishana', NULL, 741.10) END +VALUES ('wap', 'Wapishana', NULL, 7416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wapishana', [Definition] = NULL, [SortOrder] = 741.10 WHERE [Code] = 'wap' END +SET [Description] = 'Wapishana', [Definition] = NULL, [SortOrder] = 7416.00 WHERE [Code] = 'wap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wao', 'Wappo', NULL, 741.20) END +VALUES ('wao', 'Wappo', NULL, 7417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wappo', [Definition] = NULL, [SortOrder] = 741.20 WHERE [Code] = 'wao' END +SET [Description] = 'Wappo', [Definition] = NULL, [SortOrder] = 7417.00 WHERE [Code] = 'wao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aml', 'War-Jaintia', NULL, 741.30) END +VALUES ('aml', 'War-Jaintia', NULL, 7418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'War-Jaintia', [Definition] = NULL, [SortOrder] = 741.30 WHERE [Code] = 'aml' END +SET [Description] = 'War-Jaintia', [Definition] = NULL, [SortOrder] = 7418.00 WHERE [Code] = 'aml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbf', 'Wara', NULL, 741.40) END +VALUES ('wbf', 'Wara', NULL, 7419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wara', [Definition] = NULL, [SortOrder] = 741.40 WHERE [Code] = 'wbf' END +SET [Description] = 'Wara', [Definition] = NULL, [SortOrder] = 7419.00 WHERE [Code] = 'wbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tci', 'Wára', NULL, 741.50) END +VALUES ('tci', 'Wára', NULL, 7420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wára', [Definition] = NULL, [SortOrder] = 741.50 WHERE [Code] = 'tci' END +SET [Description] = 'Wára', [Definition] = NULL, [SortOrder] = 7420.00 WHERE [Code] = 'tci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wba', 'Warao', NULL, 741.60) END +VALUES ('wba', 'Warao', NULL, 7421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warao', [Definition] = NULL, [SortOrder] = 741.60 WHERE [Code] = 'wba' END +SET [Description] = 'Warao', [Definition] = NULL, [SortOrder] = 7421.00 WHERE [Code] = 'wba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrz', 'Waray (Australia)', NULL, 741.70) END +VALUES ('wrz', 'Waray (Australia)', NULL, 7422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waray (Australia)', [Definition] = NULL, [SortOrder] = 741.70 WHERE [Code] = 'wrz' END +SET [Description] = 'Waray (Australia)', [Definition] = NULL, [SortOrder] = 7422.00 WHERE [Code] = 'wrz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'war') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('war', 'Waray (Philippines)', NULL, 741.80) END +VALUES ('war', 'Waray (Philippines)', NULL, 7423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waray (Philippines)', [Definition] = NULL, [SortOrder] = 741.80 WHERE [Code] = 'war' END +SET [Description] = 'Waray (Philippines)', [Definition] = NULL, [SortOrder] = 7423.00 WHERE [Code] = 'war' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrr', 'Wardaman', NULL, 741.90) END +VALUES ('wrr', 'Wardaman', NULL, 7424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wardaman', [Definition] = NULL, [SortOrder] = 741.90 WHERE [Code] = 'wrr' END +SET [Description] = 'Wardaman', [Definition] = NULL, [SortOrder] = 7424.00 WHERE [Code] = 'wrr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wxw', 'Wardandi', NULL, 742.00) END +VALUES ('wxw', 'Wardandi', NULL, 7425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wardandi', [Definition] = NULL, [SortOrder] = 742.00 WHERE [Code] = 'wxw' END +SET [Description] = 'Wardandi', [Definition] = NULL, [SortOrder] = 7425.00 WHERE [Code] = 'wxw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsa', 'Warembori', NULL, 742.10) END +VALUES ('wsa', 'Warembori', NULL, 7426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warembori', [Definition] = NULL, [SortOrder] = 742.10 WHERE [Code] = 'wsa' END +SET [Description] = 'Warembori', [Definition] = NULL, [SortOrder] = 7426.00 WHERE [Code] = 'wsa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wai', 'Wares', NULL, 742.20) END +VALUES ('wai', 'Wares', NULL, 7427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wares', [Definition] = NULL, [SortOrder] = 742.20 WHERE [Code] = 'wai' END +SET [Description] = 'Wares', [Definition] = NULL, [SortOrder] = 7427.00 WHERE [Code] = 'wai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrs', 'Waris', NULL, 742.30) END +VALUES ('wrs', 'Waris', NULL, 7428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waris', [Definition] = NULL, [SortOrder] = 742.30 WHERE [Code] = 'wrs' END +SET [Description] = 'Waris', [Definition] = NULL, [SortOrder] = 7428.00 WHERE [Code] = 'wrs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbe', 'Waritai', NULL, 742.40) END +VALUES ('wbe', 'Waritai', NULL, 7429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waritai', [Definition] = NULL, [SortOrder] = 742.40 WHERE [Code] = 'wbe' END +SET [Description] = 'Waritai', [Definition] = NULL, [SortOrder] = 7429.00 WHERE [Code] = 'wbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wri', 'Wariyangga', NULL, 742.50) END +VALUES ('wri', 'Wariyangga', NULL, 7430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wariyangga', [Definition] = NULL, [SortOrder] = 742.50 WHERE [Code] = 'wri' END +SET [Description] = 'Wariyangga', [Definition] = NULL, [SortOrder] = 7430.00 WHERE [Code] = 'wri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wji', 'Warji', NULL, 742.60) END +VALUES ('wji', 'Warji', NULL, 7431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warji', [Definition] = NULL, [SortOrder] = 742.60 WHERE [Code] = 'wji' END +SET [Description] = 'Warji', [Definition] = NULL, [SortOrder] = 7431.00 WHERE [Code] = 'wji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgv', 'Warkay-Bipim', NULL, 742.70) END +VALUES ('bgv', 'Warkay-Bipim', NULL, 7432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warkay-Bipim', [Definition] = NULL, [SortOrder] = 742.70 WHERE [Code] = 'bgv' END +SET [Description] = 'Warkay-Bipim', [Definition] = NULL, [SortOrder] = 7432.00 WHERE [Code] = 'bgv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrl', 'Warlmanpa', NULL, 742.80) END +VALUES ('wrl', 'Warlmanpa', NULL, 7433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warlmanpa', [Definition] = NULL, [SortOrder] = 742.80 WHERE [Code] = 'wrl' END +SET [Description] = 'Warlmanpa', [Definition] = NULL, [SortOrder] = 7433.00 WHERE [Code] = 'wrl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbp', 'Warlpiri', NULL, 742.90) END +VALUES ('wbp', 'Warlpiri', NULL, 7434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warlpiri', [Definition] = NULL, [SortOrder] = 742.90 WHERE [Code] = 'wbp' END +SET [Description] = 'Warlpiri', [Definition] = NULL, [SortOrder] = 7434.00 WHERE [Code] = 'wbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrn', 'Warnang', NULL, 743.00) END +VALUES ('wrn', 'Warnang', NULL, 7435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warnang', [Definition] = NULL, [SortOrder] = 743.00 WHERE [Code] = 'wrn' END +SET [Description] = 'Warnang', [Definition] = NULL, [SortOrder] = 7435.00 WHERE [Code] = 'wrn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbt', 'Warnman', NULL, 743.10) END +VALUES ('wbt', 'Warnman', NULL, 7436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warnman', [Definition] = NULL, [SortOrder] = 743.10 WHERE [Code] = 'wbt' END +SET [Description] = 'Warnman', [Definition] = NULL, [SortOrder] = 7436.00 WHERE [Code] = 'wbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrp', 'Waropen', NULL, 743.20) END +VALUES ('wrp', 'Waropen', NULL, 7437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waropen', [Definition] = NULL, [SortOrder] = 743.20 WHERE [Code] = 'wrp' END +SET [Description] = 'Waropen', [Definition] = NULL, [SortOrder] = 7437.00 WHERE [Code] = 'wrp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgy', 'Warrgamay', NULL, 743.30) END +VALUES ('wgy', 'Warrgamay', NULL, 7438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warrgamay', [Definition] = NULL, [SortOrder] = 743.30 WHERE [Code] = 'wgy' END +SET [Description] = 'Warrgamay', [Definition] = NULL, [SortOrder] = 7438.00 WHERE [Code] = 'wgy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wwr', 'Warrwa', NULL, 743.40) END +VALUES ('wwr', 'Warrwa', NULL, 7439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warrwa', [Definition] = NULL, [SortOrder] = 743.40 WHERE [Code] = 'wwr' END +SET [Description] = 'Warrwa', [Definition] = NULL, [SortOrder] = 7439.00 WHERE [Code] = 'wwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wru', 'Waru', NULL, 743.50) END +VALUES ('wru', 'Waru', NULL, 7440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waru', [Definition] = NULL, [SortOrder] = 743.50 WHERE [Code] = 'wru' END +SET [Description] = 'Waru', [Definition] = NULL, [SortOrder] = 7440.00 WHERE [Code] = 'wru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrm', 'Warumungu', NULL, 743.60) END +VALUES ('wrm', 'Warumungu', NULL, 7441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warumungu', [Definition] = NULL, [SortOrder] = 743.60 WHERE [Code] = 'wrm' END +SET [Description] = 'Warumungu', [Definition] = NULL, [SortOrder] = 7441.00 WHERE [Code] = 'wrm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrv', 'Waruna', NULL, 743.70) END +VALUES ('wrv', 'Waruna', NULL, 7442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waruna', [Definition] = NULL, [SortOrder] = 743.70 WHERE [Code] = 'wrv' END +SET [Description] = 'Waruna', [Definition] = NULL, [SortOrder] = 7442.00 WHERE [Code] = 'wrv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrg', 'Warungu', NULL, 743.80) END +VALUES ('wrg', 'Warungu', NULL, 7443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warungu', [Definition] = NULL, [SortOrder] = 743.80 WHERE [Code] = 'wrg' END +SET [Description] = 'Warungu', [Definition] = NULL, [SortOrder] = 7443.00 WHERE [Code] = 'wrg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrw', 'Warwar Feni', NULL, 743.90) END +VALUES ('hrw', 'Warwar Feni', NULL, 7444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warwar Feni', [Definition] = NULL, [SortOrder] = 743.90 WHERE [Code] = 'hrw' END +SET [Description] = 'Warwar Feni', [Definition] = NULL, [SortOrder] = 7444.00 WHERE [Code] = 'hrw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wss', 'Wasa', NULL, 744.00) END +VALUES ('wss', 'Wasa', NULL, 7445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wasa', [Definition] = NULL, [SortOrder] = 744.00 WHERE [Code] = 'wss' END +SET [Description] = 'Wasa', [Definition] = NULL, [SortOrder] = 7445.00 WHERE [Code] = 'wss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wac', 'Wasco-Wishram', NULL, 744.10) END +VALUES ('wac', 'Wasco-Wishram', NULL, 7446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wasco-Wishram', [Definition] = NULL, [SortOrder] = 744.10 WHERE [Code] = 'wac' END +SET [Description] = 'Wasco-Wishram', [Definition] = NULL, [SortOrder] = 7446.00 WHERE [Code] = 'wac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsp', 'Wasembo', NULL, 744.20) END +VALUES ('gsp', 'Wasembo', NULL, 7447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wasembo', [Definition] = NULL, [SortOrder] = 744.20 WHERE [Code] = 'gsp' END +SET [Description] = 'Wasembo', [Definition] = NULL, [SortOrder] = 7447.00 WHERE [Code] = 'gsp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'was') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('was', 'Washo', NULL, 744.30) END +VALUES ('was', 'Washo', NULL, 7448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Washo', [Definition] = NULL, [SortOrder] = 744.30 WHERE [Code] = 'was' END +SET [Description] = 'Washo', [Definition] = NULL, [SortOrder] = 7448.00 WHERE [Code] = 'was' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsk', 'Waskia', NULL, 744.40) END +VALUES ('wsk', 'Waskia', NULL, 7449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waskia', [Definition] = NULL, [SortOrder] = 744.40 WHERE [Code] = 'wsk' END +SET [Description] = 'Waskia', [Definition] = NULL, [SortOrder] = 7449.00 WHERE [Code] = 'wsk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsu', 'Wasu', NULL, 744.50) END +VALUES ('wsu', 'Wasu', NULL, 7450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wasu', [Definition] = NULL, [SortOrder] = 744.50 WHERE [Code] = 'wsu' END +SET [Description] = 'Wasu', [Definition] = NULL, [SortOrder] = 7450.00 WHERE [Code] = 'wsu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wtk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wtk', 'Watakataui', NULL, 744.60) END +VALUES ('wtk', 'Watakataui', NULL, 7451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Watakataui', [Definition] = NULL, [SortOrder] = 744.60 WHERE [Code] = 'wtk' END +SET [Description] = 'Watakataui', [Definition] = NULL, [SortOrder] = 7451.00 WHERE [Code] = 'wtk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wax', 'Watam', NULL, 744.70) END +VALUES ('wax', 'Watam', NULL, 7452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Watam', [Definition] = NULL, [SortOrder] = 744.70 WHERE [Code] = 'wax' END +SET [Description] = 'Watam', [Definition] = NULL, [SortOrder] = 7452.00 WHERE [Code] = 'wax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wth', 'Wathawurrung', NULL, 744.80) END +VALUES ('wth', 'Wathawurrung', NULL, 7453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wathawurrung', [Definition] = NULL, [SortOrder] = 744.80 WHERE [Code] = 'wth' END +SET [Description] = 'Wathawurrung', [Definition] = NULL, [SortOrder] = 7453.00 WHERE [Code] = 'wth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wtf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wtf', 'Watiwa', NULL, 744.90) END +VALUES ('wtf', 'Watiwa', NULL, 7454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Watiwa', [Definition] = NULL, [SortOrder] = 744.90 WHERE [Code] = 'wtf' END +SET [Description] = 'Watiwa', [Definition] = NULL, [SortOrder] = 7454.00 WHERE [Code] = 'wtf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wah', 'Watubela', NULL, 745.00) END +VALUES ('wah', 'Watubela', NULL, 7455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Watubela', [Definition] = NULL, [SortOrder] = 745.00 WHERE [Code] = 'wah' END +SET [Description] = 'Watubela', [Definition] = NULL, [SortOrder] = 7455.00 WHERE [Code] = 'wah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kop', 'Waube', NULL, 745.10) END +VALUES ('kop', 'Waube', NULL, 7456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waube', [Definition] = NULL, [SortOrder] = 745.10 WHERE [Code] = 'kop' END +SET [Description] = 'Waube', [Definition] = NULL, [SortOrder] = 7456.00 WHERE [Code] = 'kop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wau', 'Waurá', NULL, 745.20) END +VALUES ('wau', 'Waurá', NULL, 7457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waurá', [Definition] = NULL, [SortOrder] = 745.20 WHERE [Code] = 'wau' END +SET [Description] = 'Waurá', [Definition] = NULL, [SortOrder] = 7457.00 WHERE [Code] = 'wau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wuy', 'Wauyai', NULL, 745.30) END +VALUES ('wuy', 'Wauyai', NULL, 7458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wauyai', [Definition] = NULL, [SortOrder] = 745.30 WHERE [Code] = 'wuy' END +SET [Description] = 'Wauyai', [Definition] = NULL, [SortOrder] = 7458.00 WHERE [Code] = 'wuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'www') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('www', 'Wawa', NULL, 745.40) END +VALUES ('www', 'Wawa', NULL, 7459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wawa', [Definition] = NULL, [SortOrder] = 745.40 WHERE [Code] = 'www' END +SET [Description] = 'Wawa', [Definition] = NULL, [SortOrder] = 7459.00 WHERE [Code] = 'www' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wow', 'Wawonii', NULL, 745.50) END +VALUES ('wow', 'Wawonii', NULL, 7460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wawonii', [Definition] = NULL, [SortOrder] = 745.50 WHERE [Code] = 'wow' END +SET [Description] = 'Wawonii', [Definition] = NULL, [SortOrder] = 7460.00 WHERE [Code] = 'wow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wxa', 'Waxianghua', NULL, 745.60) END +VALUES ('wxa', 'Waxianghua', NULL, 7461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waxianghua', [Definition] = NULL, [SortOrder] = 745.60 WHERE [Code] = 'wxa' END +SET [Description] = 'Waxianghua', [Definition] = NULL, [SortOrder] = 7461.00 WHERE [Code] = 'wxa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oym', 'Wayampi', NULL, 745.70) END +VALUES ('oym', 'Wayampi', NULL, 7462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayampi', [Definition] = NULL, [SortOrder] = 745.70 WHERE [Code] = 'oym' END +SET [Description] = 'Wayampi', [Definition] = NULL, [SortOrder] = 7462.00 WHERE [Code] = 'oym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'way') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('way', 'Wayana', NULL, 745.80) END +VALUES ('way', 'Wayana', NULL, 7463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayana', [Definition] = NULL, [SortOrder] = 745.80 WHERE [Code] = 'way' END +SET [Description] = 'Wayana', [Definition] = NULL, [SortOrder] = 7463.00 WHERE [Code] = 'way' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctt', 'Wayanad Chetti', NULL, 745.90) END +VALUES ('ctt', 'Wayanad Chetti', NULL, 7464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayanad Chetti', [Definition] = NULL, [SortOrder] = 745.90 WHERE [Code] = 'ctt' END +SET [Description] = 'Wayanad Chetti', [Definition] = NULL, [SortOrder] = 7464.00 WHERE [Code] = 'ctt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyr', 'Wayoró', NULL, 746.00) END +VALUES ('wyr', 'Wayoró', NULL, 7465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayoró', [Definition] = NULL, [SortOrder] = 746.00 WHERE [Code] = 'wyr' END +SET [Description] = 'Wayoró', [Definition] = NULL, [SortOrder] = 7465.00 WHERE [Code] = 'wyr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vay', 'Wayu', NULL, 746.10) END +VALUES ('vay', 'Wayu', NULL, 7466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayu', [Definition] = NULL, [SortOrder] = 746.10 WHERE [Code] = 'vay' END +SET [Description] = 'Wayu', [Definition] = NULL, [SortOrder] = 7466.00 WHERE [Code] = 'vay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guc', 'Wayuu', NULL, 746.20) END +VALUES ('guc', 'Wayuu', NULL, 7467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayuu', [Definition] = NULL, [SortOrder] = 746.20 WHERE [Code] = 'guc' END +SET [Description] = 'Wayuu', [Definition] = NULL, [SortOrder] = 7467.00 WHERE [Code] = 'guc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wob', 'Wè Northern', NULL, 746.30) END +VALUES ('wob', 'Wè Northern', NULL, 7468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wè Northern', [Definition] = NULL, [SortOrder] = 746.30 WHERE [Code] = 'wob' END +SET [Description] = 'Wè Northern', [Definition] = NULL, [SortOrder] = 7468.00 WHERE [Code] = 'wob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gxx', 'Wè Southern', NULL, 746.40) END +VALUES ('gxx', 'Wè Southern', NULL, 7469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wè Southern', [Definition] = NULL, [SortOrder] = 746.40 WHERE [Code] = 'gxx' END +SET [Description] = 'Wè Southern', [Definition] = NULL, [SortOrder] = 7469.00 WHERE [Code] = 'gxx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wec', 'Wè Western', NULL, 746.50) END +VALUES ('wec', 'Wè Western', NULL, 7470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wè Western', [Definition] = NULL, [SortOrder] = 746.50 WHERE [Code] = 'wec' END +SET [Description] = 'Wè Western', [Definition] = NULL, [SortOrder] = 7470.00 WHERE [Code] = 'wec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wed', 'Wedau', NULL, 746.60) END +VALUES ('wed', 'Wedau', NULL, 7471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wedau', [Definition] = NULL, [SortOrder] = 746.60 WHERE [Code] = 'wed' END +SET [Description] = 'Wedau', [Definition] = NULL, [SortOrder] = 7471.00 WHERE [Code] = 'wed' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'weh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('weh', 'Weh', NULL, 746.70) END +VALUES ('weh', 'Weh', NULL, 7472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weh', [Definition] = NULL, [SortOrder] = 746.70 WHERE [Code] = 'weh' END +SET [Description] = 'Weh', [Definition] = NULL, [SortOrder] = 7472.00 WHERE [Code] = 'weh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wew', 'Wejewa', NULL, 746.80) END +VALUES ('wew', 'Wejewa', NULL, 7473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wejewa', [Definition] = NULL, [SortOrder] = 746.80 WHERE [Code] = 'wew' END +SET [Description] = 'Wejewa', [Definition] = NULL, [SortOrder] = 7473.00 WHERE [Code] = 'wew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlh', 'Welaun', NULL, 746.90) END +VALUES ('wlh', 'Welaun', NULL, 7474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Welaun', [Definition] = NULL, [SortOrder] = 746.90 WHERE [Code] = 'wlh' END +SET [Description] = 'Welaun', [Definition] = NULL, [SortOrder] = 7474.00 WHERE [Code] = 'wlh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klh', 'Weliki', NULL, 747.00) END +VALUES ('klh', 'Weliki', NULL, 7475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weliki', [Definition] = NULL, [SortOrder] = 747.00 WHERE [Code] = 'klh' END +SET [Description] = 'Weliki', [Definition] = NULL, [SortOrder] = 7475.00 WHERE [Code] = 'klh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cym', 'Welsh', NULL, 747.10) END +VALUES ('cym', 'Welsh', NULL, 7476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Welsh', [Definition] = NULL, [SortOrder] = 747.10 WHERE [Code] = 'cym' END +SET [Description] = 'Welsh', [Definition] = NULL, [SortOrder] = 7476.00 WHERE [Code] = 'cym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmw', 'Welsh Romani', NULL, 747.20) END +VALUES ('rmw', 'Welsh Romani', NULL, 7477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Welsh Romani', [Definition] = NULL, [SortOrder] = 747.20 WHERE [Code] = 'rmw' END +SET [Description] = 'Welsh Romani', [Definition] = NULL, [SortOrder] = 7477.00 WHERE [Code] = 'rmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'weo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('weo', 'Wemale', NULL, 747.30) END +VALUES ('weo', 'Wemale', NULL, 7478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wemale', [Definition] = NULL, [SortOrder] = 747.30 WHERE [Code] = 'weo' END +SET [Description] = 'Wemale', [Definition] = NULL, [SortOrder] = 7478.00 WHERE [Code] = 'weo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xww', 'Wemba Wemba', NULL, 747.40) END +VALUES ('xww', 'Wemba Wemba', NULL, 7479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wemba Wemba', [Definition] = NULL, [SortOrder] = 747.40 WHERE [Code] = 'xww' END +SET [Description] = 'Wemba Wemba', [Definition] = NULL, [SortOrder] = 7479.00 WHERE [Code] = 'xww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wem', 'Weme Gbe', NULL, 747.50) END +VALUES ('wem', 'Weme Gbe', NULL, 7480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weme Gbe', [Definition] = NULL, [SortOrder] = 747.50 WHERE [Code] = 'wem' END +SET [Description] = 'Weme Gbe', [Definition] = NULL, [SortOrder] = 7480.00 WHERE [Code] = 'wem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdt', 'Wendat', NULL, 747.60) END +VALUES ('wdt', 'Wendat', NULL, 7481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wendat', [Definition] = NULL, [SortOrder] = 747.60 WHERE [Code] = 'wdt' END +SET [Description] = 'Wendat', [Definition] = NULL, [SortOrder] = 7481.00 WHERE [Code] = 'wdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'weg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('weg', 'Wergaia', NULL, 747.70) END +VALUES ('weg', 'Wergaia', NULL, 7482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wergaia', [Definition] = NULL, [SortOrder] = 747.70 WHERE [Code] = 'weg' END +SET [Description] = 'Wergaia', [Definition] = NULL, [SortOrder] = 7482.00 WHERE [Code] = 'weg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wer', 'Weri', NULL, 747.80) END +VALUES ('wer', 'Weri', NULL, 7483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weri', [Definition] = NULL, [SortOrder] = 747.80 WHERE [Code] = 'wer' END +SET [Description] = 'Weri', [Definition] = NULL, [SortOrder] = 7483.00 WHERE [Code] = 'wer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvw', 'Wersing', NULL, 747.90) END +VALUES ('kvw', 'Wersing', NULL, 7484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wersing', [Definition] = NULL, [SortOrder] = 747.90 WHERE [Code] = 'kvw' END +SET [Description] = 'Wersing', [Definition] = NULL, [SortOrder] = 7484.00 WHERE [Code] = 'kvw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fbl', 'West Albay Bikol', NULL, 748.00) END +VALUES ('fbl', 'West Albay Bikol', NULL, 7485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Albay Bikol', [Definition] = NULL, [SortOrder] = 748.00 WHERE [Code] = 'fbl' END +SET [Description] = 'West Albay Bikol', [Definition] = NULL, [SortOrder] = 7485.00 WHERE [Code] = 'fbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnd', 'West Ambae', NULL, 748.10) END +VALUES ('nnd', 'West Ambae', NULL, 7486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Ambae', [Definition] = NULL, [SortOrder] = 748.10 WHERE [Code] = 'nnd' END +SET [Description] = 'West Ambae', [Definition] = NULL, [SortOrder] = 7486.00 WHERE [Code] = 'nnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbs', 'West Bengal Sign Language', NULL, 748.20) END +VALUES ('wbs', 'West Bengal Sign Language', NULL, 7487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Bengal Sign Language', [Definition] = NULL, [SortOrder] = 748.20 WHERE [Code] = 'wbs' END +SET [Description] = 'West Bengal Sign Language', [Definition] = NULL, [SortOrder] = 7487.00 WHERE [Code] = 'wbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbw', 'West Berawan', NULL, 748.30) END +VALUES ('zbw', 'West Berawan', NULL, 7488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Berawan', [Definition] = NULL, [SortOrder] = 748.30 WHERE [Code] = 'zbw' END +SET [Description] = 'West Berawan', [Definition] = NULL, [SortOrder] = 7488.00 WHERE [Code] = 'zbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbp', 'West Central Banda', NULL, 748.40) END +VALUES ('bbp', 'West Central Banda', NULL, 7489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Central Banda', [Definition] = NULL, [SortOrder] = 748.40 WHERE [Code] = 'bbp' END +SET [Description] = 'West Central Banda', [Definition] = NULL, [SortOrder] = 7489.00 WHERE [Code] = 'bbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaz', 'West Central Oromo', NULL, 748.50) END +VALUES ('gaz', 'West Central Oromo', NULL, 7490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Central Oromo', [Definition] = NULL, [SortOrder] = 748.50 WHERE [Code] = 'gaz' END +SET [Description] = 'West Central Oromo', [Definition] = NULL, [SortOrder] = 7490.00 WHERE [Code] = 'gaz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdr', 'West Coast Bajau', NULL, 748.60) END +VALUES ('bdr', 'West Coast Bajau', NULL, 7491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Coast Bajau', [Definition] = NULL, [SortOrder] = 748.60 WHERE [Code] = 'bdr' END +SET [Description] = 'West Coast Bajau', [Definition] = NULL, [SortOrder] = 7491.00 WHERE [Code] = 'bdr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drn', 'West Damar', NULL, 748.70) END +VALUES ('drn', 'West Damar', NULL, 7492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Damar', [Definition] = NULL, [SortOrder] = 748.70 WHERE [Code] = 'drn' END +SET [Description] = 'West Damar', [Definition] = NULL, [SortOrder] = 7492.00 WHERE [Code] = 'drn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddi', 'West Goodenough', NULL, 748.80) END +VALUES ('ddi', 'West Goodenough', NULL, 7493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Goodenough', [Definition] = NULL, [SortOrder] = 748.80 WHERE [Code] = 'ddi' END +SET [Description] = 'West Goodenough', [Definition] = NULL, [SortOrder] = 7493.00 WHERE [Code] = 'ddi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kew', 'West Kewa', NULL, 748.90) END +VALUES ('kew', 'West Kewa', NULL, 7494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Kewa', [Definition] = NULL, [SortOrder] = 748.90 WHERE [Code] = 'kew' END +SET [Description] = 'West Kewa', [Definition] = NULL, [SortOrder] = 7494.00 WHERE [Code] = 'kew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmj', 'West Lembata', NULL, 749.00) END +VALUES ('lmj', 'West Lembata', NULL, 7495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Lembata', [Definition] = NULL, [SortOrder] = 749.00 WHERE [Code] = 'lmj' END +SET [Description] = 'West Lembata', [Definition] = NULL, [SortOrder] = 7495.00 WHERE [Code] = 'lmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqs', 'West Makian', NULL, 749.10) END +VALUES ('mqs', 'West Makian', NULL, 7496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Makian', [Definition] = NULL, [SortOrder] = 749.10 WHERE [Code] = 'mqs' END +SET [Description] = 'West Makian', [Definition] = NULL, [SortOrder] = 7496.00 WHERE [Code] = 'mqs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mss', 'West Masela', NULL, 749.20) END +VALUES ('mss', 'West Masela', NULL, 7497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Masela', [Definition] = NULL, [SortOrder] = 749.20 WHERE [Code] = 'mss' END +SET [Description] = 'West Masela', [Definition] = NULL, [SortOrder] = 7497.00 WHERE [Code] = 'mss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txn', 'West Tarangan', NULL, 749.30) END +VALUES ('txn', 'West Tarangan', NULL, 7498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Tarangan', [Definition] = NULL, [SortOrder] = 749.30 WHERE [Code] = 'txn' END +SET [Description] = 'West Tarangan', [Definition] = NULL, [SortOrder] = 7498.00 WHERE [Code] = 'txn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uve', 'West Uvean', NULL, 749.40) END +VALUES ('uve', 'West Uvean', NULL, 7499.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Uvean', [Definition] = NULL, [SortOrder] = 749.40 WHERE [Code] = 'uve' END +SET [Description] = 'West Uvean', [Definition] = NULL, [SortOrder] = 7499.00 WHERE [Code] = 'uve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybe', 'West Yugur', NULL, 749.50) END +VALUES ('ybe', 'West Yugur', NULL, 7500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Yugur', [Definition] = NULL, [SortOrder] = 749.50 WHERE [Code] = 'ybe' END +SET [Description] = 'West Yugur', [Definition] = NULL, [SortOrder] = 7500.00 WHERE [Code] = 'ybe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lia', 'West-Central Limba', NULL, 749.60) END +VALUES ('lia', 'West-Central Limba', NULL, 7501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West-Central Limba', [Definition] = NULL, [SortOrder] = 749.60 WHERE [Code] = 'lia' END +SET [Description] = 'West-Central Limba', [Definition] = NULL, [SortOrder] = 7501.00 WHERE [Code] = 'lia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abe', 'Western Abnaki', NULL, 749.70) END +VALUES ('abe', 'Western Abnaki', NULL, 7502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Abnaki', [Definition] = NULL, [SortOrder] = 749.70 WHERE [Code] = 'abe' END +SET [Description] = 'Western Abnaki', [Definition] = NULL, [SortOrder] = 7502.00 WHERE [Code] = 'abe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apw', 'Western Apache', NULL, 749.80) END +VALUES ('apw', 'Western Apache', NULL, 7503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Apache', [Definition] = NULL, [SortOrder] = 749.80 WHERE [Code] = 'apw' END +SET [Description] = 'Western Apache', [Definition] = NULL, [SortOrder] = 7503.00 WHERE [Code] = 'apw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hyw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hyw', 'Western Armenian', NULL, 749.90) END +VALUES ('hyw', 'Western Armenian', NULL, 7504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Armenian', [Definition] = NULL, [SortOrder] = 749.90 WHERE [Code] = 'hyw' END +SET [Description] = 'Western Armenian', [Definition] = NULL, [SortOrder] = 7504.00 WHERE [Code] = 'hyw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'are') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('are', 'Western Arrarnta', NULL, 750.00) END +VALUES ('are', 'Western Arrarnta', NULL, 7505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Arrarnta', [Definition] = NULL, [SortOrder] = 750.00 WHERE [Code] = 'are' END +SET [Description] = 'Western Arrarnta', [Definition] = NULL, [SortOrder] = 7505.00 WHERE [Code] = 'are' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgn', 'Western Balochi', NULL, 750.10) END +VALUES ('bgn', 'Western Balochi', NULL, 7506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Balochi', [Definition] = NULL, [SortOrder] = 750.10 WHERE [Code] = 'bgn' END +SET [Description] = 'Western Balochi', [Definition] = NULL, [SortOrder] = 7506.00 WHERE [Code] = 'bgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnw', 'Western Bolivian Guaraní', NULL, 750.20) END +VALUES ('gnw', 'Western Bolivian Guaraní', NULL, 7507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Bolivian Guaraní', [Definition] = NULL, [SortOrder] = 750.20 WHERE [Code] = 'gnw' END +SET [Description] = 'Western Bolivian Guaraní', [Definition] = NULL, [SortOrder] = 7507.00 WHERE [Code] = 'gnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brv', 'Western Bru', NULL, 750.30) END +VALUES ('brv', 'Western Bru', NULL, 7508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Bru', [Definition] = NULL, [SortOrder] = 750.30 WHERE [Code] = 'brv' END +SET [Description] = 'Western Bru', [Definition] = NULL, [SortOrder] = 7508.00 WHERE [Code] = 'brv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbb', 'Western Bukidnon Manobo', NULL, 750.40) END +VALUES ('mbb', 'Western Bukidnon Manobo', NULL, 7509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Bukidnon Manobo', [Definition] = NULL, [SortOrder] = 750.40 WHERE [Code] = 'mbb' END +SET [Description] = 'Western Bukidnon Manobo', [Definition] = NULL, [SortOrder] = 7509.00 WHERE [Code] = 'mbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cja', 'Western Cham', NULL, 750.50) END +VALUES ('cja', 'Western Cham', NULL, 7510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Cham', [Definition] = NULL, [SortOrder] = 750.50 WHERE [Code] = 'cja' END +SET [Description] = 'Western Cham', [Definition] = NULL, [SortOrder] = 7510.00 WHERE [Code] = 'cja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnw', 'Western Dani', NULL, 750.60) END +VALUES ('dnw', 'Western Dani', NULL, 7511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Dani', [Definition] = NULL, [SortOrder] = 750.60 WHERE [Code] = 'dnw' END +SET [Description] = 'Western Dani', [Definition] = NULL, [SortOrder] = 7511.00 WHERE [Code] = 'dnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azn', 'Western Durango Nahuatl', NULL, 750.70) END +VALUES ('azn', 'Western Durango Nahuatl', NULL, 7512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Durango Nahuatl', [Definition] = NULL, [SortOrder] = 750.70 WHERE [Code] = 'azn' END +SET [Description] = 'Western Durango Nahuatl', [Definition] = NULL, [SortOrder] = 7512.00 WHERE [Code] = 'azn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyy', 'Western Fijian', NULL, 750.80) END +VALUES ('wyy', 'Western Fijian', NULL, 7513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Fijian', [Definition] = NULL, [SortOrder] = 750.80 WHERE [Code] = 'wyy' END +SET [Description] = 'Western Fijian', [Definition] = NULL, [SortOrder] = 7513.00 WHERE [Code] = 'wyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fry', 'Western Frisian', NULL, 750.90) END +VALUES ('fry', 'Western Frisian', NULL, 7514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Frisian', [Definition] = NULL, [SortOrder] = 750.90 WHERE [Code] = 'fry' END +SET [Description] = 'Western Frisian', [Definition] = NULL, [SortOrder] = 7514.00 WHERE [Code] = 'fry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctp', 'Western Highland Chatino', NULL, 751.00) END +VALUES ('ctp', 'Western Highland Chatino', NULL, 7515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Highland Chatino', [Definition] = NULL, [SortOrder] = 751.00 WHERE [Code] = 'ctp' END +SET [Description] = 'Western Highland Chatino', [Definition] = NULL, [SortOrder] = 7515.00 WHERE [Code] = 'ctp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pua', 'Western Highland Purepecha', NULL, 751.10) END +VALUES ('pua', 'Western Highland Purepecha', NULL, 7516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Highland Purepecha', [Definition] = NULL, [SortOrder] = 751.10 WHERE [Code] = 'pua' END +SET [Description] = 'Western Highland Purepecha', [Definition] = NULL, [SortOrder] = 7516.00 WHERE [Code] = 'pua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhw', 'Western Huasteca Nahuatl', NULL, 751.20) END +VALUES ('nhw', 'Western Huasteca Nahuatl', NULL, 7517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 751.20 WHERE [Code] = 'nhw' END +SET [Description] = 'Western Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 7517.00 WHERE [Code] = 'nhw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmx', 'Western Juxtlahuaca Mixtec', NULL, 751.30) END +VALUES ('jmx', 'Western Juxtlahuaca Mixtec', NULL, 7518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Juxtlahuaca Mixtec', [Definition] = NULL, [SortOrder] = 751.30 WHERE [Code] = 'jmx' END +SET [Description] = 'Western Juxtlahuaca Mixtec', [Definition] = NULL, [SortOrder] = 7518.00 WHERE [Code] = 'jmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knj', 'Western Kanjobal', NULL, 751.40) END +VALUES ('knj', 'Western Kanjobal', NULL, 7519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Kanjobal', [Definition] = NULL, [SortOrder] = 751.40 WHERE [Code] = 'knj' END +SET [Description] = 'Western Kanjobal', [Definition] = NULL, [SortOrder] = 7519.00 WHERE [Code] = 'knj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kza', 'Western Karaboro', NULL, 751.50) END +VALUES ('kza', 'Western Karaboro', NULL, 7520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Karaboro', [Definition] = NULL, [SortOrder] = 751.50 WHERE [Code] = 'kza' END +SET [Description] = 'Western Karaboro', [Definition] = NULL, [SortOrder] = 7520.00 WHERE [Code] = 'kza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuf', 'Western Katu', NULL, 751.60) END +VALUES ('kuf', 'Western Katu', NULL, 7521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Katu', [Definition] = NULL, [SortOrder] = 751.60 WHERE [Code] = 'kuf' END +SET [Description] = 'Western Katu', [Definition] = NULL, [SortOrder] = 7521.00 WHERE [Code] = 'kuf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyu', 'Western Kayah', NULL, 751.70) END +VALUES ('kyu', 'Western Kayah', NULL, 7522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Kayah', [Definition] = NULL, [SortOrder] = 751.70 WHERE [Code] = 'kyu' END +SET [Description] = 'Western Kayah', [Definition] = NULL, [SortOrder] = 7522.00 WHERE [Code] = 'kyu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjq', 'Western Keres', NULL, 751.80) END +VALUES ('kjq', 'Western Keres', NULL, 7523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Keres', [Definition] = NULL, [SortOrder] = 751.80 WHERE [Code] = 'kjq' END +SET [Description] = 'Western Keres', [Definition] = NULL, [SortOrder] = 7523.00 WHERE [Code] = 'kjq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krw', 'Western Krahn', NULL, 751.90) END +VALUES ('krw', 'Western Krahn', NULL, 7524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Krahn', [Definition] = NULL, [SortOrder] = 751.90 WHERE [Code] = 'krw' END +SET [Description] = 'Western Krahn', [Definition] = NULL, [SortOrder] = 7524.00 WHERE [Code] = 'krw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywl', 'Western Lalu', NULL, 752.00) END +VALUES ('ywl', 'Western Lalu', NULL, 7525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Lalu', [Definition] = NULL, [SortOrder] = 752.00 WHERE [Code] = 'ywl' END +SET [Description] = 'Western Lalu', [Definition] = NULL, [SortOrder] = 7525.00 WHERE [Code] = 'ywl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcp', 'Western Lawa', NULL, 752.10) END +VALUES ('lcp', 'Western Lawa', NULL, 7526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Lawa', [Definition] = NULL, [SortOrder] = 752.10 WHERE [Code] = 'lcp' END +SET [Description] = 'Western Lawa', [Definition] = NULL, [SortOrder] = 7526.00 WHERE [Code] = 'lcp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrd', 'Western Magar', NULL, 752.20) END +VALUES ('mrd', 'Western Magar', NULL, 7527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Magar', [Definition] = NULL, [SortOrder] = 752.20 WHERE [Code] = 'mrd' END +SET [Description] = 'Western Magar', [Definition] = NULL, [SortOrder] = 7527.00 WHERE [Code] = 'mrd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlq', 'Western Maninkakan', NULL, 752.30) END +VALUES ('mlq', 'Western Maninkakan', NULL, 7528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Maninkakan', [Definition] = NULL, [SortOrder] = 752.30 WHERE [Code] = 'mlq' END +SET [Description] = 'Western Maninkakan', [Definition] = NULL, [SortOrder] = 7528.00 WHERE [Code] = 'mlq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrj', 'Western Mari', NULL, 752.40) END +VALUES ('mrj', 'Western Mari', NULL, 7529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Mari', [Definition] = NULL, [SortOrder] = 752.40 WHERE [Code] = 'mrj' END +SET [Description] = 'Western Mari', [Definition] = NULL, [SortOrder] = 7529.00 WHERE [Code] = 'mrj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmw', 'Western Mashan Hmong', NULL, 752.50) END +VALUES ('hmw', 'Western Mashan Hmong', NULL, 7530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Mashan Hmong', [Definition] = NULL, [SortOrder] = 752.50 WHERE [Code] = 'hmw' END +SET [Description] = 'Western Mashan Hmong', [Definition] = NULL, [SortOrder] = 7530.00 WHERE [Code] = 'hmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raf', 'Western Meohang', NULL, 752.60) END +VALUES ('raf', 'Western Meohang', NULL, 7531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Meohang', [Definition] = NULL, [SortOrder] = 752.60 WHERE [Code] = 'raf' END +SET [Description] = 'Western Meohang', [Definition] = NULL, [SortOrder] = 7531.00 WHERE [Code] = 'raf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmg', 'Western Minyag', NULL, 752.70) END +VALUES ('wmg', 'Western Minyag', NULL, 7532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Minyag', [Definition] = NULL, [SortOrder] = 752.70 WHERE [Code] = 'wmg' END +SET [Description] = 'Western Minyag', [Definition] = NULL, [SortOrder] = 7532.00 WHERE [Code] = 'wmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mut', 'Western Muria', NULL, 752.80) END +VALUES ('mut', 'Western Muria', NULL, 7533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Muria', [Definition] = NULL, [SortOrder] = 752.80 WHERE [Code] = 'mut' END +SET [Description] = 'Western Muria', [Definition] = NULL, [SortOrder] = 7533.00 WHERE [Code] = 'mut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amw', 'Western Neo-Aramaic', NULL, 752.90) END +VALUES ('amw', 'Western Neo-Aramaic', NULL, 7534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Neo-Aramaic', [Definition] = NULL, [SortOrder] = 752.90 WHERE [Code] = 'amw' END +SET [Description] = 'Western Neo-Aramaic', [Definition] = NULL, [SortOrder] = 7534.00 WHERE [Code] = 'amw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuh', 'Western Niger Fulfulde', NULL, 753.00) END +VALUES ('fuh', 'Western Niger Fulfulde', NULL, 7535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Niger Fulfulde', [Definition] = NULL, [SortOrder] = 753.00 WHERE [Code] = 'fuh' END +SET [Description] = 'Western Niger Fulfulde', [Definition] = NULL, [SortOrder] = 7535.00 WHERE [Code] = 'fuh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojw', 'Western Ojibwa', NULL, 753.10) END +VALUES ('ojw', 'Western Ojibwa', NULL, 7536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Ojibwa', [Definition] = NULL, [SortOrder] = 753.10 WHERE [Code] = 'ojw' END +SET [Description] = 'Western Ojibwa', [Definition] = NULL, [SortOrder] = 7536.00 WHERE [Code] = 'ojw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnb', 'Western Panjabi', NULL, 753.20) END +VALUES ('pnb', 'Western Panjabi', NULL, 7537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Panjabi', [Definition] = NULL, [SortOrder] = 753.20 WHERE [Code] = 'pnb' END +SET [Description] = 'Western Panjabi', [Definition] = NULL, [SortOrder] = 7537.00 WHERE [Code] = 'pnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjl', 'Western Parbate Kham', NULL, 753.30) END +VALUES ('kjl', 'Western Parbate Kham', NULL, 7538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Parbate Kham', [Definition] = NULL, [SortOrder] = 753.30 WHERE [Code] = 'kjl' END +SET [Description] = 'Western Parbate Kham', [Definition] = NULL, [SortOrder] = 7538.00 WHERE [Code] = 'kjl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pne', 'Western Penan', NULL, 753.40) END +VALUES ('pne', 'Western Penan', NULL, 7539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Penan', [Definition] = NULL, [SortOrder] = 753.40 WHERE [Code] = 'pne' END +SET [Description] = 'Western Penan', [Definition] = NULL, [SortOrder] = 7539.00 WHERE [Code] = 'pne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssl', 'Western Sisaala', NULL, 753.50) END +VALUES ('ssl', 'Western Sisaala', NULL, 7540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Sisaala', [Definition] = NULL, [SortOrder] = 753.50 WHERE [Code] = 'ssl' END +SET [Description] = 'Western Sisaala', [Definition] = NULL, [SortOrder] = 7540.00 WHERE [Code] = 'ssl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suc', 'Western Subanon', NULL, 753.60) END +VALUES ('suc', 'Western Subanon', NULL, 7541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Subanon', [Definition] = NULL, [SortOrder] = 753.60 WHERE [Code] = 'suc' END +SET [Description] = 'Western Subanon', [Definition] = NULL, [SortOrder] = 7541.00 WHERE [Code] = 'suc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdg', 'Western Tamang', NULL, 753.70) END +VALUES ('tdg', 'Western Tamang', NULL, 7542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Tamang', [Definition] = NULL, [SortOrder] = 753.70 WHERE [Code] = 'tdg' END +SET [Description] = 'Western Tamang', [Definition] = NULL, [SortOrder] = 7542.00 WHERE [Code] = 'tdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twb', 'Western Tawbuid', NULL, 753.80) END +VALUES ('twb', 'Western Tawbuid', NULL, 7543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Tawbuid', [Definition] = NULL, [SortOrder] = 753.80 WHERE [Code] = 'twb' END +SET [Description] = 'Western Tawbuid', [Definition] = NULL, [SortOrder] = 7543.00 WHERE [Code] = 'twb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zab', 'Western Tlacolula Valley Zapotec', NULL, 753.90) END +VALUES ('zab', 'Western Tlacolula Valley Zapotec', NULL, 7544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Tlacolula Valley Zapotec', [Definition] = NULL, [SortOrder] = 753.90 WHERE [Code] = 'zab' END +SET [Description] = 'Western Tlacolula Valley Zapotec', [Definition] = NULL, [SortOrder] = 7544.00 WHERE [Code] = 'zab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqt', 'Western Totonac', NULL, 754.00) END +VALUES ('tqt', 'Western Totonac', NULL, 7545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Totonac', [Definition] = NULL, [SortOrder] = 754.00 WHERE [Code] = 'tqt' END +SET [Description] = 'Western Totonac', [Definition] = NULL, [SortOrder] = 7545.00 WHERE [Code] = 'tqt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnb', 'Western Tunebo', NULL, 754.10) END +VALUES ('tnb', 'Western Tunebo', NULL, 7546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Tunebo', [Definition] = NULL, [SortOrder] = 754.10 WHERE [Code] = 'tnb' END +SET [Description] = 'Western Tunebo', [Definition] = NULL, [SortOrder] = 7546.00 WHERE [Code] = 'tnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmr', 'Western Xiangxi Miao', NULL, 754.20) END +VALUES ('mmr', 'Western Xiangxi Miao', NULL, 7547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Xiangxi Miao', [Definition] = NULL, [SortOrder] = 754.20 WHERE [Code] = 'mmr' END +SET [Description] = 'Western Xiangxi Miao', [Definition] = NULL, [SortOrder] = 7547.00 WHERE [Code] = 'mmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwl', 'Western Xwla Gbe', NULL, 754.30) END +VALUES ('xwl', 'Western Xwla Gbe', NULL, 7548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Xwla Gbe', [Definition] = NULL, [SortOrder] = 754.30 WHERE [Code] = 'xwl' END +SET [Description] = 'Western Xwla Gbe', [Definition] = NULL, [SortOrder] = 7548.00 WHERE [Code] = 'xwl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yih', 'Western Yiddish', NULL, 754.40) END +VALUES ('yih', 'Western Yiddish', NULL, 7549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Yiddish', [Definition] = NULL, [SortOrder] = 754.40 WHERE [Code] = 'yih' END +SET [Description] = 'Western Yiddish', [Definition] = NULL, [SortOrder] = 7549.00 WHERE [Code] = 'yih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wep', 'Westphalien', NULL, 754.50) END +VALUES ('wep', 'Westphalien', NULL, 7550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Westphalien', [Definition] = NULL, [SortOrder] = 754.50 WHERE [Code] = 'wep' END +SET [Description] = 'Westphalien', [Definition] = NULL, [SortOrder] = 7550.00 WHERE [Code] = 'wep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wwo', 'Wetamut', NULL, 754.60) END +VALUES ('wwo', 'Wetamut', NULL, 7551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wetamut', [Definition] = NULL, [SortOrder] = 754.60 WHERE [Code] = 'wwo' END +SET [Description] = 'Wetamut', [Definition] = NULL, [SortOrder] = 7551.00 WHERE [Code] = 'wwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wea', 'Wewaw', NULL, 754.70) END +VALUES ('wea', 'Wewaw', NULL, 7552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wewaw', [Definition] = NULL, [SortOrder] = 754.70 WHERE [Code] = 'wea' END +SET [Description] = 'Wewaw', [Definition] = NULL, [SortOrder] = 7552.00 WHERE [Code] = 'wea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woy', 'Weyto', NULL, 754.80) END +VALUES ('woy', 'Weyto', NULL, 7553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weyto', [Definition] = NULL, [SortOrder] = 754.80 WHERE [Code] = 'woy' END +SET [Description] = 'Weyto', [Definition] = NULL, [SortOrder] = 7553.00 WHERE [Code] = 'woy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giw', 'White Gelao', NULL, 754.90) END +VALUES ('giw', 'White Gelao', NULL, 7554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'White Gelao', [Definition] = NULL, [SortOrder] = 754.90 WHERE [Code] = 'giw' END +SET [Description] = 'White Gelao', [Definition] = NULL, [SortOrder] = 7554.00 WHERE [Code] = 'giw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwh', 'White Lachi', NULL, 755.00) END +VALUES ('lwh', 'White Lachi', NULL, 7555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'White Lachi', [Definition] = NULL, [SortOrder] = 755.00 WHERE [Code] = 'lwh' END +SET [Description] = 'White Lachi', [Definition] = NULL, [SortOrder] = 7555.00 WHERE [Code] = 'lwh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnp', 'Whitesands', NULL, 755.10) END +VALUES ('tnp', 'Whitesands', NULL, 7556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Whitesands', [Definition] = NULL, [SortOrder] = 755.10 WHERE [Code] = 'tnp' END +SET [Description] = 'Whitesands', [Definition] = NULL, [SortOrder] = 7556.00 WHERE [Code] = 'tnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tua', 'Wiarumus', NULL, 755.20) END +VALUES ('tua', 'Wiarumus', NULL, 7557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiarumus', [Definition] = NULL, [SortOrder] = 755.20 WHERE [Code] = 'tua' END +SET [Description] = 'Wiarumus', [Definition] = NULL, [SortOrder] = 7557.00 WHERE [Code] = 'tua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzh', 'Wichí Lhamtés Güisnay', NULL, 755.30) END +VALUES ('mzh', 'Wichí Lhamtés Güisnay', NULL, 7558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wichí Lhamtés Güisnay', [Definition] = NULL, [SortOrder] = 755.30 WHERE [Code] = 'mzh' END +SET [Description] = 'Wichí Lhamtés Güisnay', [Definition] = NULL, [SortOrder] = 7558.00 WHERE [Code] = 'mzh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtp', 'Wichí Lhamtés Nocten', NULL, 755.40) END +VALUES ('mtp', 'Wichí Lhamtés Nocten', NULL, 7559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wichí Lhamtés Nocten', [Definition] = NULL, [SortOrder] = 755.40 WHERE [Code] = 'mtp' END +SET [Description] = 'Wichí Lhamtés Nocten', [Definition] = NULL, [SortOrder] = 7559.00 WHERE [Code] = 'mtp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlv', 'Wichí Lhamtés Vejoz', NULL, 755.50) END +VALUES ('wlv', 'Wichí Lhamtés Vejoz', NULL, 7560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wichí Lhamtés Vejoz', [Definition] = NULL, [SortOrder] = 755.50 WHERE [Code] = 'wlv' END +SET [Description] = 'Wichí Lhamtés Vejoz', [Definition] = NULL, [SortOrder] = 7560.00 WHERE [Code] = 'wlv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wic', 'Wichita', NULL, 755.60) END +VALUES ('wic', 'Wichita', NULL, 7561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wichita', [Definition] = NULL, [SortOrder] = 755.60 WHERE [Code] = 'wic' END +SET [Description] = 'Wichita', [Definition] = NULL, [SortOrder] = 7561.00 WHERE [Code] = 'wic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wig', 'Wik Ngathan', NULL, 755.70) END +VALUES ('wig', 'Wik Ngathan', NULL, 7562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik Ngathan', [Definition] = NULL, [SortOrder] = 755.70 WHERE [Code] = 'wig' END +SET [Description] = 'Wik Ngathan', [Definition] = NULL, [SortOrder] = 7562.00 WHERE [Code] = 'wig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wie', 'Wik-Epa', NULL, 755.80) END +VALUES ('wie', 'Wik-Epa', NULL, 7563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Epa', [Definition] = NULL, [SortOrder] = 755.80 WHERE [Code] = 'wie' END +SET [Description] = 'Wik-Epa', [Definition] = NULL, [SortOrder] = 7563.00 WHERE [Code] = 'wie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wij', 'Wik-Iiyanh', NULL, 755.90) END +VALUES ('wij', 'Wik-Iiyanh', NULL, 7564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Iiyanh', [Definition] = NULL, [SortOrder] = 755.90 WHERE [Code] = 'wij' END +SET [Description] = 'Wik-Iiyanh', [Definition] = NULL, [SortOrder] = 7564.00 WHERE [Code] = 'wij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wif', 'Wik-Keyangan', NULL, 756.00) END +VALUES ('wif', 'Wik-Keyangan', NULL, 7565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Keyangan', [Definition] = NULL, [SortOrder] = 756.00 WHERE [Code] = 'wif' END +SET [Description] = 'Wik-Keyangan', [Definition] = NULL, [SortOrder] = 7565.00 WHERE [Code] = 'wif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wih', 'Wik-Me''anha', NULL, 756.10) END +VALUES ('wih', 'Wik-Me''anha', NULL, 7566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Me''anha', [Definition] = NULL, [SortOrder] = 756.10 WHERE [Code] = 'wih' END +SET [Description] = 'Wik-Me''anha', [Definition] = NULL, [SortOrder] = 7566.00 WHERE [Code] = 'wih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wim', 'Wik-Mungkan', NULL, 756.20) END +VALUES ('wim', 'Wik-Mungkan', NULL, 7567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Mungkan', [Definition] = NULL, [SortOrder] = 756.20 WHERE [Code] = 'wim' END +SET [Description] = 'Wik-Mungkan', [Definition] = NULL, [SortOrder] = 7567.00 WHERE [Code] = 'wim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wik', 'Wikalkan', NULL, 756.30) END +VALUES ('wik', 'Wikalkan', NULL, 7568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wikalkan', [Definition] = NULL, [SortOrder] = 756.30 WHERE [Code] = 'wik' END +SET [Description] = 'Wikalkan', [Definition] = NULL, [SortOrder] = 7568.00 WHERE [Code] = 'wik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wua', 'Wikngenchera', NULL, 756.40) END +VALUES ('wua', 'Wikngenchera', NULL, 7569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wikngenchera', [Definition] = NULL, [SortOrder] = 756.40 WHERE [Code] = 'wua' END +SET [Description] = 'Wikngenchera', [Definition] = NULL, [SortOrder] = 7569.00 WHERE [Code] = 'wua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wil', 'Wilawila', NULL, 756.50) END +VALUES ('wil', 'Wilawila', NULL, 7570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wilawila', [Definition] = NULL, [SortOrder] = 756.50 WHERE [Code] = 'wil' END +SET [Description] = 'Wilawila', [Definition] = NULL, [SortOrder] = 7570.00 WHERE [Code] = 'wil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnw', 'Wintu', NULL, 756.60) END +VALUES ('wnw', 'Wintu', NULL, 7571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wintu', [Definition] = NULL, [SortOrder] = 756.60 WHERE [Code] = 'wnw' END +SET [Description] = 'Wintu', [Definition] = NULL, [SortOrder] = 7571.00 WHERE [Code] = 'wnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kst', 'Winyé', NULL, 756.70) END +VALUES ('kst', 'Winyé', NULL, 7572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Winyé', [Definition] = NULL, [SortOrder] = 756.70 WHERE [Code] = 'kst' END +SET [Description] = 'Winyé', [Definition] = NULL, [SortOrder] = 7572.00 WHERE [Code] = 'kst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdr', 'Wipi', NULL, 756.80) END +VALUES ('gdr', 'Wipi', NULL, 7573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wipi', [Definition] = NULL, [SortOrder] = 756.80 WHERE [Code] = 'gdr' END +SET [Description] = 'Wipi', [Definition] = NULL, [SortOrder] = 7573.00 WHERE [Code] = 'gdr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrh', 'Wiradjuri', NULL, 756.90) END +VALUES ('wrh', 'Wiradjuri', NULL, 7574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiradjuri', [Definition] = NULL, [SortOrder] = 756.90 WHERE [Code] = 'wrh' END +SET [Description] = 'Wiradjuri', [Definition] = NULL, [SortOrder] = 7574.00 WHERE [Code] = 'wrh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wir', 'Wiraféd', NULL, 757.00) END +VALUES ('wir', 'Wiraféd', NULL, 7575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiraféd', [Definition] = NULL, [SortOrder] = 757.00 WHERE [Code] = 'wir' END +SET [Description] = 'Wiraféd', [Definition] = NULL, [SortOrder] = 7575.00 WHERE [Code] = 'wir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgu', 'Wirangu', NULL, 757.10) END +VALUES ('wgu', 'Wirangu', NULL, 7576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wirangu', [Definition] = NULL, [SortOrder] = 757.10 WHERE [Code] = 'wgu' END +SET [Description] = 'Wirangu', [Definition] = NULL, [SortOrder] = 7576.00 WHERE [Code] = 'wgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wiu', 'Wiru', NULL, 757.20) END +VALUES ('wiu', 'Wiru', NULL, 7577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiru', [Definition] = NULL, [SortOrder] = 757.20 WHERE [Code] = 'wiu' END +SET [Description] = 'Wiru', [Definition] = NULL, [SortOrder] = 7577.00 WHERE [Code] = 'wiu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wiy', 'Wiyot', NULL, 757.30) END +VALUES ('wiy', 'Wiyot', NULL, 7578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiyot', [Definition] = NULL, [SortOrder] = 757.30 WHERE [Code] = 'wiy' END +SET [Description] = 'Wiyot', [Definition] = NULL, [SortOrder] = 7578.00 WHERE [Code] = 'wiy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwc', 'Woccon', NULL, 757.40) END +VALUES ('xwc', 'Woccon', NULL, 7579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woccon', [Definition] = NULL, [SortOrder] = 757.40 WHERE [Code] = 'xwc' END +SET [Description] = 'Woccon', [Definition] = NULL, [SortOrder] = 7579.00 WHERE [Code] = 'xwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wog', 'Wogamusin', NULL, 757.50) END +VALUES ('wog', 'Wogamusin', NULL, 7580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wogamusin', [Definition] = NULL, [SortOrder] = 757.50 WHERE [Code] = 'wog' END +SET [Description] = 'Wogamusin', [Definition] = NULL, [SortOrder] = 7580.00 WHERE [Code] = 'wog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woc', 'Wogeo', NULL, 757.60) END +VALUES ('woc', 'Wogeo', NULL, 7581.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wogeo', [Definition] = NULL, [SortOrder] = 757.60 WHERE [Code] = 'woc' END +SET [Description] = 'Wogeo', [Definition] = NULL, [SortOrder] = 7581.00 WHERE [Code] = 'woc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbw', 'Woi', NULL, 757.70) END +VALUES ('wbw', 'Woi', NULL, 7582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woi', [Definition] = NULL, [SortOrder] = 757.70 WHERE [Code] = 'wbw' END +SET [Description] = 'Woi', [Definition] = NULL, [SortOrder] = 7582.00 WHERE [Code] = 'wbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyi', 'Woiwurrung', NULL, 757.80) END +VALUES ('wyi', 'Woiwurrung', NULL, 7583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woiwurrung', [Definition] = NULL, [SortOrder] = 757.80 WHERE [Code] = 'wyi' END +SET [Description] = 'Woiwurrung', [Definition] = NULL, [SortOrder] = 7583.00 WHERE [Code] = 'wyi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jod', 'Wojenaka', NULL, 757.90) END +VALUES ('jod', 'Wojenaka', NULL, 7584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wojenaka', [Definition] = NULL, [SortOrder] = 757.90 WHERE [Code] = 'jod' END +SET [Description] = 'Wojenaka', [Definition] = NULL, [SortOrder] = 7584.00 WHERE [Code] = 'jod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wle', 'Wolane', NULL, 758.00) END +VALUES ('wle', 'Wolane', NULL, 7585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolane', [Definition] = NULL, [SortOrder] = 758.00 WHERE [Code] = 'wle' END +SET [Description] = 'Wolane', [Definition] = NULL, [SortOrder] = 7585.00 WHERE [Code] = 'wle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wod', 'Wolani', NULL, 758.10) END +VALUES ('wod', 'Wolani', NULL, 7586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolani', [Definition] = NULL, [SortOrder] = 758.10 WHERE [Code] = 'wod' END +SET [Description] = 'Wolani', [Definition] = NULL, [SortOrder] = 7586.00 WHERE [Code] = 'wod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wal', 'Wolaytta', NULL, 758.20) END +VALUES ('wal', 'Wolaytta', NULL, 7587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolaytta', [Definition] = NULL, [SortOrder] = 758.20 WHERE [Code] = 'wal' END +SET [Description] = 'Wolaytta', [Definition] = NULL, [SortOrder] = 7587.00 WHERE [Code] = 'wal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woe', 'Woleaian', NULL, 758.30) END +VALUES ('woe', 'Woleaian', NULL, 7588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woleaian', [Definition] = NULL, [SortOrder] = 758.30 WHERE [Code] = 'woe' END +SET [Description] = 'Woleaian', [Definition] = NULL, [SortOrder] = 7588.00 WHERE [Code] = 'woe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlo', 'Wolio', NULL, 758.40) END +VALUES ('wlo', 'Wolio', NULL, 7589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolio', [Definition] = NULL, [SortOrder] = 758.40 WHERE [Code] = 'wlo' END +SET [Description] = 'Wolio', [Definition] = NULL, [SortOrder] = 7589.00 WHERE [Code] = 'wlo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wol', 'Wolof', NULL, 758.50) END +VALUES ('wol', 'Wolof', NULL, 7590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolof', [Definition] = NULL, [SortOrder] = 758.50 WHERE [Code] = 'wol' END +SET [Description] = 'Wolof', [Definition] = NULL, [SortOrder] = 7590.00 WHERE [Code] = 'wol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wom', 'Wom (Nigeria)', NULL, 758.60) END +VALUES ('wom', 'Wom (Nigeria)', NULL, 7591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wom (Nigeria)', [Definition] = NULL, [SortOrder] = 758.60 WHERE [Code] = 'wom' END +SET [Description] = 'Wom (Nigeria)', [Definition] = NULL, [SortOrder] = 7591.00 WHERE [Code] = 'wom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmo', 'Wom (Papua New Guinea)', NULL, 758.70) END +VALUES ('wmo', 'Wom (Papua New Guinea)', NULL, 7592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wom (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 758.70 WHERE [Code] = 'wmo' END +SET [Description] = 'Wom (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 7592.00 WHERE [Code] = 'wmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmx', 'Womo', NULL, 758.80) END +VALUES ('wmx', 'Womo', NULL, 7593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Womo', [Definition] = NULL, [SortOrder] = 758.80 WHERE [Code] = 'wmx' END +SET [Description] = 'Womo', [Definition] = NULL, [SortOrder] = 7593.00 WHERE [Code] = 'wmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'won') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('won', 'Wongo', NULL, 758.90) END +VALUES ('won', 'Wongo', NULL, 7594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wongo', [Definition] = NULL, [SortOrder] = 758.90 WHERE [Code] = 'won' END +SET [Description] = 'Wongo', [Definition] = NULL, [SortOrder] = 7594.00 WHERE [Code] = 'won' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwd', 'Woods Cree', NULL, 759.00) END +VALUES ('cwd', 'Woods Cree', NULL, 7595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woods Cree', [Definition] = NULL, [SortOrder] = 759.00 WHERE [Code] = 'cwd' END +SET [Description] = 'Woods Cree', [Definition] = NULL, [SortOrder] = 7595.00 WHERE [Code] = 'cwd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wor', 'Woria', NULL, 759.10) END +VALUES ('wor', 'Woria', NULL, 7596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woria', [Definition] = NULL, [SortOrder] = 759.10 WHERE [Code] = 'wor' END +SET [Description] = 'Woria', [Definition] = NULL, [SortOrder] = 7596.00 WHERE [Code] = 'wor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kda', 'Worimi', NULL, 759.20) END +VALUES ('kda', 'Worimi', NULL, 7597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Worimi', [Definition] = NULL, [SortOrder] = 759.20 WHERE [Code] = 'kda' END +SET [Description] = 'Worimi', [Definition] = NULL, [SortOrder] = 7597.00 WHERE [Code] = 'kda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jud', 'Worodougou', NULL, 759.30) END +VALUES ('jud', 'Worodougou', NULL, 7598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Worodougou', [Definition] = NULL, [SortOrder] = 759.30 WHERE [Code] = 'jud' END +SET [Description] = 'Worodougou', [Definition] = NULL, [SortOrder] = 7598.00 WHERE [Code] = 'jud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wro', 'Worrorra', NULL, 759.40) END +VALUES ('wro', 'Worrorra', NULL, 7599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Worrorra', [Definition] = NULL, [SortOrder] = 759.40 WHERE [Code] = 'wro' END +SET [Description] = 'Worrorra', [Definition] = NULL, [SortOrder] = 7599.00 WHERE [Code] = 'wro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsv', 'Wotapuri-Katarqalai', NULL, 759.50) END +VALUES ('wsv', 'Wotapuri-Katarqalai', NULL, 7600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wotapuri-Katarqalai', [Definition] = NULL, [SortOrder] = 759.50 WHERE [Code] = 'wsv' END +SET [Description] = 'Wotapuri-Katarqalai', [Definition] = NULL, [SortOrder] = 7600.00 WHERE [Code] = 'wsv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwt', 'Wotjobaluk', NULL, 759.60) END +VALUES ('xwt', 'Wotjobaluk', NULL, 7601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wotjobaluk', [Definition] = NULL, [SortOrder] = 759.60 WHERE [Code] = 'xwt' END +SET [Description] = 'Wotjobaluk', [Definition] = NULL, [SortOrder] = 7601.00 WHERE [Code] = 'xwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wtw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wtw', 'Wotu', NULL, 759.70) END +VALUES ('wtw', 'Wotu', NULL, 7602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wotu', [Definition] = NULL, [SortOrder] = 759.70 WHERE [Code] = 'wtw' END +SET [Description] = 'Wotu', [Definition] = NULL, [SortOrder] = 7602.00 WHERE [Code] = 'wtw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noa', 'Woun Meu', NULL, 759.80) END +VALUES ('noa', 'Woun Meu', NULL, 7603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woun Meu', [Definition] = NULL, [SortOrder] = 759.80 WHERE [Code] = 'noa' END +SET [Description] = 'Woun Meu', [Definition] = NULL, [SortOrder] = 7603.00 WHERE [Code] = 'noa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwo', 'Written Oirat', NULL, 759.90) END +VALUES ('xwo', 'Written Oirat', NULL, 7604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Written Oirat', [Definition] = NULL, [SortOrder] = 759.90 WHERE [Code] = 'xwo' END +SET [Description] = 'Written Oirat', [Definition] = NULL, [SortOrder] = 7604.00 WHERE [Code] = 'xwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wuu', 'Wu Chinese', NULL, 760.00) END +VALUES ('wuu', 'Wu Chinese', NULL, 7605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wu Chinese', [Definition] = NULL, [SortOrder] = 760.00 WHERE [Code] = 'wuu' END +SET [Description] = 'Wu Chinese', [Definition] = NULL, [SortOrder] = 7605.00 WHERE [Code] = 'wuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywq', 'Wuding-Luquan Yi', NULL, 760.10) END +VALUES ('ywq', 'Wuding-Luquan Yi', NULL, 7606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wuding-Luquan Yi', [Definition] = NULL, [SortOrder] = 760.10 WHERE [Code] = 'ywq' END +SET [Description] = 'Wuding-Luquan Yi', [Definition] = NULL, [SortOrder] = 7606.00 WHERE [Code] = 'ywq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wud', 'Wudu', NULL, 760.20) END +VALUES ('wud', 'Wudu', NULL, 7607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wudu', [Definition] = NULL, [SortOrder] = 760.20 WHERE [Code] = 'wud' END +SET [Description] = 'Wudu', [Definition] = NULL, [SortOrder] = 7607.00 WHERE [Code] = 'wud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlu', 'Wuliwuli', NULL, 760.30) END +VALUES ('wlu', 'Wuliwuli', NULL, 7608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wuliwuli', [Definition] = NULL, [SortOrder] = 760.30 WHERE [Code] = 'wlu' END +SET [Description] = 'Wuliwuli', [Definition] = NULL, [SortOrder] = 7608.00 WHERE [Code] = 'wlu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wux', 'Wulna', NULL, 760.40) END +VALUES ('wux', 'Wulna', NULL, 7609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wulna', [Definition] = NULL, [SortOrder] = 760.40 WHERE [Code] = 'wux' END +SET [Description] = 'Wulna', [Definition] = NULL, [SortOrder] = 7609.00 WHERE [Code] = 'wux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqm', 'Wumboko', NULL, 760.50) END +VALUES ('bqm', 'Wumboko', NULL, 7610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wumboko', [Definition] = NULL, [SortOrder] = 760.50 WHERE [Code] = 'bqm' END +SET [Description] = 'Wumboko', [Definition] = NULL, [SortOrder] = 7610.00 WHERE [Code] = 'bqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wum', 'Wumbvu', NULL, 760.60) END +VALUES ('wum', 'Wumbvu', NULL, 7611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wumbvu', [Definition] = NULL, [SortOrder] = 760.60 WHERE [Code] = 'wum' END +SET [Description] = 'Wumbvu', [Definition] = NULL, [SortOrder] = 7611.00 WHERE [Code] = 'wum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywu', 'Wumeng Nasu', NULL, 760.70) END +VALUES ('ywu', 'Wumeng Nasu', NULL, 7612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wumeng Nasu', [Definition] = NULL, [SortOrder] = 760.70 WHERE [Code] = 'ywu' END +SET [Description] = 'Wumeng Nasu', [Definition] = NULL, [SortOrder] = 7612.00 WHERE [Code] = 'ywu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwn', 'Wunai Bunu', NULL, 760.80) END +VALUES ('bwn', 'Wunai Bunu', NULL, 7613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wunai Bunu', [Definition] = NULL, [SortOrder] = 760.80 WHERE [Code] = 'bwn' END +SET [Description] = 'Wunai Bunu', [Definition] = NULL, [SortOrder] = 7613.00 WHERE [Code] = 'bwn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wub', 'Wunambal', NULL, 760.90) END +VALUES ('wub', 'Wunambal', NULL, 7614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wunambal', [Definition] = NULL, [SortOrder] = 760.90 WHERE [Code] = 'wub' END +SET [Description] = 'Wunambal', [Definition] = NULL, [SortOrder] = 7614.00 WHERE [Code] = 'wub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnn', 'Wunumara', NULL, 761.00) END +VALUES ('wnn', 'Wunumara', NULL, 7615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wunumara', [Definition] = NULL, [SortOrder] = 761.00 WHERE [Code] = 'wnn' END +SET [Description] = 'Wunumara', [Definition] = NULL, [SortOrder] = 7615.00 WHERE [Code] = 'wnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wur', 'Wurrugu', NULL, 761.10) END +VALUES ('wur', 'Wurrugu', NULL, 7616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wurrugu', [Definition] = NULL, [SortOrder] = 761.10 WHERE [Code] = 'wur' END +SET [Description] = 'Wurrugu', [Definition] = NULL, [SortOrder] = 7616.00 WHERE [Code] = 'wur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yig', 'Wusa Nasu', NULL, 761.20) END +VALUES ('yig', 'Wusa Nasu', NULL, 7617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wusa Nasu', [Definition] = NULL, [SortOrder] = 761.20 WHERE [Code] = 'yig' END +SET [Description] = 'Wusa Nasu', [Definition] = NULL, [SortOrder] = 7617.00 WHERE [Code] = 'yig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bse', 'Wushi', NULL, 761.30) END +VALUES ('bse', 'Wushi', NULL, 7618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wushi', [Definition] = NULL, [SortOrder] = 761.30 WHERE [Code] = 'bse' END +SET [Description] = 'Wushi', [Definition] = NULL, [SortOrder] = 7618.00 WHERE [Code] = 'bse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsi', 'Wusi', NULL, 761.40) END +VALUES ('wsi', 'Wusi', NULL, 7619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wusi', [Definition] = NULL, [SortOrder] = 761.40 WHERE [Code] = 'wsi' END +SET [Description] = 'Wusi', [Definition] = NULL, [SortOrder] = 7619.00 WHERE [Code] = 'wsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wut', 'Wutung', NULL, 761.50) END +VALUES ('wut', 'Wutung', NULL, 7620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wutung', [Definition] = NULL, [SortOrder] = 761.50 WHERE [Code] = 'wut' END +SET [Description] = 'Wutung', [Definition] = NULL, [SortOrder] = 7620.00 WHERE [Code] = 'wut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wuh', 'Wutunhua', NULL, 761.60) END +VALUES ('wuh', 'Wutunhua', NULL, 7621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wutunhua', [Definition] = NULL, [SortOrder] = 761.60 WHERE [Code] = 'wuh' END +SET [Description] = 'Wutunhua', [Definition] = NULL, [SortOrder] = 7621.00 WHERE [Code] = 'wuh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wuv', 'Wuvulu-Aua', NULL, 761.70) END +VALUES ('wuv', 'Wuvulu-Aua', NULL, 7622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wuvulu-Aua', [Definition] = NULL, [SortOrder] = 761.70 WHERE [Code] = 'wuv' END +SET [Description] = 'Wuvulu-Aua', [Definition] = NULL, [SortOrder] = 7622.00 WHERE [Code] = 'wuv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udl', 'Wuzlam', NULL, 761.80) END +VALUES ('udl', 'Wuzlam', NULL, 7623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wuzlam', [Definition] = NULL, [SortOrder] = 761.80 WHERE [Code] = 'udl' END +SET [Description] = 'Wuzlam', [Definition] = NULL, [SortOrder] = 7623.00 WHERE [Code] = 'udl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyn', 'Wyandot', NULL, 761.90) END +VALUES ('wyn', 'Wyandot', NULL, 7624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wyandot', [Definition] = NULL, [SortOrder] = 761.90 WHERE [Code] = 'wyn' END +SET [Description] = 'Wyandot', [Definition] = NULL, [SortOrder] = 7624.00 WHERE [Code] = 'wyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wym', 'Wymysorys', NULL, 762.00) END +VALUES ('wym', 'Wymysorys', NULL, 7625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wymysorys', [Definition] = NULL, [SortOrder] = 762.00 WHERE [Code] = 'wym' END +SET [Description] = 'Wymysorys', [Definition] = NULL, [SortOrder] = 7625.00 WHERE [Code] = 'wym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kao', 'Xaasongaxango', NULL, 762.10) END +VALUES ('kao', 'Xaasongaxango', NULL, 7626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xaasongaxango', [Definition] = NULL, [SortOrder] = 762.10 WHERE [Code] = 'kao' END +SET [Description] = 'Xaasongaxango', [Definition] = NULL, [SortOrder] = 7626.00 WHERE [Code] = 'kao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zax', 'Xadani Zapotec', NULL, 762.20) END +VALUES ('zax', 'Xadani Zapotec', NULL, 7627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xadani Zapotec', [Definition] = NULL, [SortOrder] = 762.20 WHERE [Code] = 'zax' END +SET [Description] = 'Xadani Zapotec', [Definition] = NULL, [SortOrder] = 7627.00 WHERE [Code] = 'zax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkr', 'Xakriabá', NULL, 762.30) END +VALUES ('xkr', 'Xakriabá', NULL, 7628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xakriabá', [Definition] = NULL, [SortOrder] = 762.30 WHERE [Code] = 'xkr' END +SET [Description] = 'Xakriabá', [Definition] = NULL, [SortOrder] = 7628.00 WHERE [Code] = 'xkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xan', 'Xamtanga', NULL, 762.40) END +VALUES ('xan', 'Xamtanga', NULL, 7629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xamtanga', [Definition] = NULL, [SortOrder] = 762.40 WHERE [Code] = 'xan' END +SET [Description] = 'Xamtanga', [Definition] = NULL, [SortOrder] = 7629.00 WHERE [Code] = 'xan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztg', 'Xanaguía Zapotec', NULL, 762.50) END +VALUES ('ztg', 'Xanaguía Zapotec', NULL, 7630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xanaguía Zapotec', [Definition] = NULL, [SortOrder] = 762.50 WHERE [Code] = 'ztg' END +SET [Description] = 'Xanaguía Zapotec', [Definition] = NULL, [SortOrder] = 7630.00 WHERE [Code] = 'ztg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ane') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ane', 'Xârâcùù', NULL, 762.60) END +VALUES ('ane', 'Xârâcùù', NULL, 7631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xârâcùù', [Definition] = NULL, [SortOrder] = 762.60 WHERE [Code] = 'ane' END +SET [Description] = 'Xârâcùù', [Definition] = NULL, [SortOrder] = 7631.00 WHERE [Code] = 'ane' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axx', 'Xârâgurè', NULL, 762.70) END +VALUES ('axx', 'Xârâgurè', NULL, 7632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xârâgurè', [Definition] = NULL, [SortOrder] = 762.70 WHERE [Code] = 'axx' END +SET [Description] = 'Xârâgurè', [Definition] = NULL, [SortOrder] = 7632.00 WHERE [Code] = 'axx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xav', 'Xavánte', NULL, 762.80) END +VALUES ('xav', 'Xavánte', NULL, 7633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xavánte', [Definition] = NULL, [SortOrder] = 762.80 WHERE [Code] = 'xav' END +SET [Description] = 'Xavánte', [Definition] = NULL, [SortOrder] = 7633.00 WHERE [Code] = 'xav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xer', 'Xerénte', NULL, 762.90) END +VALUES ('xer', 'Xerénte', NULL, 7634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xerénte', [Definition] = NULL, [SortOrder] = 762.90 WHERE [Code] = 'xer' END +SET [Description] = 'Xerénte', [Definition] = NULL, [SortOrder] = 7634.00 WHERE [Code] = 'xer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xet', 'Xetá', NULL, 763.00) END +VALUES ('xet', 'Xetá', NULL, 7635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xetá', [Definition] = NULL, [SortOrder] = 763.00 WHERE [Code] = 'xet' END +SET [Description] = 'Xetá', [Definition] = NULL, [SortOrder] = 7635.00 WHERE [Code] = 'xet' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xho', 'Xhosa', NULL, 763.10) END +VALUES ('xho', 'Xhosa', NULL, 7636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xhosa', [Definition] = NULL, [SortOrder] = 763.10 WHERE [Code] = 'xho' END +SET [Description] = 'Xhosa', [Definition] = NULL, [SortOrder] = 7636.00 WHERE [Code] = 'xho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsn', 'Xiang Chinese', NULL, 763.20) END +VALUES ('hsn', 'Xiang Chinese', NULL, 7637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xiang Chinese', [Definition] = NULL, [SortOrder] = 763.20 WHERE [Code] = 'hsn' END +SET [Description] = 'Xiang Chinese', [Definition] = NULL, [SortOrder] = 7637.00 WHERE [Code] = 'hsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjo', 'Xibe', NULL, 763.30) END +VALUES ('sjo', 'Xibe', NULL, 7638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xibe', [Definition] = NULL, [SortOrder] = 763.30 WHERE [Code] = 'sjo' END +SET [Description] = 'Xibe', [Definition] = NULL, [SortOrder] = 7638.00 WHERE [Code] = 'sjo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'too') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('too', 'Xicotepec De Juárez Totonac', NULL, 763.40) END +VALUES ('too', 'Xicotepec De Juárez Totonac', NULL, 7639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xicotepec De Juárez Totonac', [Definition] = NULL, [SortOrder] = 763.40 WHERE [Code] = 'too' END +SET [Description] = 'Xicotepec De Juárez Totonac', [Definition] = NULL, [SortOrder] = 7639.00 WHERE [Code] = 'too' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xin', 'Xinca', NULL, 763.50) END +VALUES ('xin', 'Xinca', NULL, 7640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xinca', [Definition] = NULL, [SortOrder] = 763.50 WHERE [Code] = 'xin' END +SET [Description] = 'Xinca', [Definition] = NULL, [SortOrder] = 7640.00 WHERE [Code] = 'xin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asn', 'Xingú Asuriní', NULL, 763.60) END +VALUES ('asn', 'Xingú Asuriní', NULL, 7641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xingú Asuriní', [Definition] = NULL, [SortOrder] = 763.60 WHERE [Code] = 'asn' END +SET [Description] = 'Xingú Asuriní', [Definition] = NULL, [SortOrder] = 7641.00 WHERE [Code] = 'asn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xiy', 'Xipaya', NULL, 763.70) END +VALUES ('xiy', 'Xipaya', NULL, 7642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xipaya', [Definition] = NULL, [SortOrder] = 763.70 WHERE [Code] = 'xiy' END +SET [Description] = 'Xipaya', [Definition] = NULL, [SortOrder] = 7642.00 WHERE [Code] = 'xiy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xii', 'Xiri', NULL, 763.80) END +VALUES ('xii', 'Xiri', NULL, 7643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xiri', [Definition] = NULL, [SortOrder] = 763.80 WHERE [Code] = 'xii' END +SET [Description] = 'Xiri', [Definition] = NULL, [SortOrder] = 7643.00 WHERE [Code] = 'xii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xir', 'Xiriâna', NULL, 763.90) END +VALUES ('xir', 'Xiriâna', NULL, 7644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xiriâna', [Definition] = NULL, [SortOrder] = 763.90 WHERE [Code] = 'xir' END +SET [Description] = 'Xiriâna', [Definition] = NULL, [SortOrder] = 7644.00 WHERE [Code] = 'xir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywt', 'Xishanba Lalo', NULL, 764.00) END +VALUES ('ywt', 'Xishanba Lalo', NULL, 7645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xishanba Lalo', [Definition] = NULL, [SortOrder] = 764.00 WHERE [Code] = 'ywt' END +SET [Description] = 'Xishanba Lalo', [Definition] = NULL, [SortOrder] = 7645.00 WHERE [Code] = 'ywt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xok', 'Xokleng', NULL, 764.10) END +VALUES ('xok', 'Xokleng', NULL, 7646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xokleng', [Definition] = NULL, [SortOrder] = 764.10 WHERE [Code] = 'xok' END +SET [Description] = 'Xokleng', [Definition] = NULL, [SortOrder] = 7646.00 WHERE [Code] = 'xok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xoo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xoo', 'Xukurú', NULL, 764.20) END +VALUES ('xoo', 'Xukurú', NULL, 7647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xukurú', [Definition] = NULL, [SortOrder] = 764.20 WHERE [Code] = 'xoo' END +SET [Description] = 'Xukurú', [Definition] = NULL, [SortOrder] = 7647.00 WHERE [Code] = 'xoo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwe', 'Xwela Gbe', NULL, 764.30) END +VALUES ('xwe', 'Xwela Gbe', NULL, 7648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xwela Gbe', [Definition] = NULL, [SortOrder] = 764.30 WHERE [Code] = 'xwe' END +SET [Description] = 'Xwela Gbe', [Definition] = NULL, [SortOrder] = 7648.00 WHERE [Code] = 'xwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muu', 'Yaaku', NULL, 764.40) END +VALUES ('muu', 'Yaaku', NULL, 7649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaaku', [Definition] = NULL, [SortOrder] = 764.40 WHERE [Code] = 'muu' END +SET [Description] = 'Yaaku', [Definition] = NULL, [SortOrder] = 7649.00 WHERE [Code] = 'muu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybn', 'Yabaâna', NULL, 764.50) END +VALUES ('ybn', 'Yabaâna', NULL, 7650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabaâna', [Definition] = NULL, [SortOrder] = 764.50 WHERE [Code] = 'ybn' END +SET [Description] = 'Yabaâna', [Definition] = NULL, [SortOrder] = 7650.00 WHERE [Code] = 'ybn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yar', 'Yabarana', NULL, 764.60) END +VALUES ('yar', 'Yabarana', NULL, 7651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabarana', [Definition] = NULL, [SortOrder] = 764.60 WHERE [Code] = 'yar' END +SET [Description] = 'Yabarana', [Definition] = NULL, [SortOrder] = 7651.00 WHERE [Code] = 'yar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jae', 'Yabem', NULL, 764.70) END +VALUES ('jae', 'Yabem', NULL, 7652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabem', [Definition] = NULL, [SortOrder] = 764.70 WHERE [Code] = 'jae' END +SET [Description] = 'Yabem', [Definition] = NULL, [SortOrder] = 7652.00 WHERE [Code] = 'jae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybm', 'Yaben', NULL, 764.80) END +VALUES ('ybm', 'Yaben', NULL, 7653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaben', [Definition] = NULL, [SortOrder] = 764.80 WHERE [Code] = 'ybm' END +SET [Description] = 'Yaben', [Definition] = NULL, [SortOrder] = 7653.00 WHERE [Code] = 'ybm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybo', 'Yabong', NULL, 764.90) END +VALUES ('ybo', 'Yabong', NULL, 7654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabong', [Definition] = NULL, [SortOrder] = 764.90 WHERE [Code] = 'ybo' END +SET [Description] = 'Yabong', [Definition] = NULL, [SortOrder] = 7654.00 WHERE [Code] = 'ybo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxy', 'Yabula Yabula', NULL, 765.00) END +VALUES ('yxy', 'Yabula Yabula', NULL, 7655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabula Yabula', [Definition] = NULL, [SortOrder] = 765.00 WHERE [Code] = 'yxy' END +SET [Description] = 'Yabula Yabula', [Definition] = NULL, [SortOrder] = 7655.00 WHERE [Code] = 'yxy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekr', 'Yace', NULL, 765.10) END +VALUES ('ekr', 'Yace', NULL, 7656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yace', [Definition] = NULL, [SortOrder] = 765.10 WHERE [Code] = 'ekr' END +SET [Description] = 'Yace', [Definition] = NULL, [SortOrder] = 7656.00 WHERE [Code] = 'ekr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rys', 'Yaeyama', NULL, 765.20) END +VALUES ('rys', 'Yaeyama', NULL, 7657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaeyama', [Definition] = NULL, [SortOrder] = 765.20 WHERE [Code] = 'rys' END +SET [Description] = 'Yaeyama', [Definition] = NULL, [SortOrder] = 7657.00 WHERE [Code] = 'rys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wfg', 'Yafi', NULL, 765.30) END +VALUES ('wfg', 'Yafi', NULL, 7658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yafi', [Definition] = NULL, [SortOrder] = 765.30 WHERE [Code] = 'wfg' END +SET [Description] = 'Yafi', [Definition] = NULL, [SortOrder] = 7658.00 WHERE [Code] = 'wfg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxg', 'Yagara', NULL, 765.40) END +VALUES ('yxg', 'Yagara', NULL, 7659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagara', [Definition] = NULL, [SortOrder] = 765.40 WHERE [Code] = 'yxg' END +SET [Description] = 'Yagara', [Definition] = NULL, [SortOrder] = 7659.00 WHERE [Code] = 'yxg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygr', 'Yagaria', NULL, 765.50) END +VALUES ('ygr', 'Yagaria', NULL, 7660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagaria', [Definition] = NULL, [SortOrder] = 765.50 WHERE [Code] = 'ygr' END +SET [Description] = 'Yagaria', [Definition] = NULL, [SortOrder] = 7660.00 WHERE [Code] = 'ygr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yai', 'Yagnobi', NULL, 765.60) END +VALUES ('yai', 'Yagnobi', NULL, 7661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagnobi', [Definition] = NULL, [SortOrder] = 765.60 WHERE [Code] = 'yai' END +SET [Description] = 'Yagnobi', [Definition] = NULL, [SortOrder] = 7661.00 WHERE [Code] = 'yai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygm', 'Yagomi', NULL, 765.70) END +VALUES ('ygm', 'Yagomi', NULL, 7662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagomi', [Definition] = NULL, [SortOrder] = 765.70 WHERE [Code] = 'ygm' END +SET [Description] = 'Yagomi', [Definition] = NULL, [SortOrder] = 7662.00 WHERE [Code] = 'ygm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yad', 'Yagua', NULL, 765.80) END +VALUES ('yad', 'Yagua', NULL, 7663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagua', [Definition] = NULL, [SortOrder] = 765.80 WHERE [Code] = 'yad' END +SET [Description] = 'Yagua', [Definition] = NULL, [SortOrder] = 7663.00 WHERE [Code] = 'yad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygw', 'Yagwoia', NULL, 765.90) END +VALUES ('ygw', 'Yagwoia', NULL, 7664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagwoia', [Definition] = NULL, [SortOrder] = 765.90 WHERE [Code] = 'ygw' END +SET [Description] = 'Yagwoia', [Definition] = NULL, [SortOrder] = 7664.00 WHERE [Code] = 'ygw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ner') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ner', 'Yahadian', NULL, 766.00) END +VALUES ('ner', 'Yahadian', NULL, 7665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yahadian', [Definition] = NULL, [SortOrder] = 766.00 WHERE [Code] = 'ner' END +SET [Description] = 'Yahadian', [Definition] = NULL, [SortOrder] = 7665.00 WHERE [Code] = 'ner' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rhp', 'Yahang', NULL, 766.10) END +VALUES ('rhp', 'Yahang', NULL, 7666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yahang', [Definition] = NULL, [SortOrder] = 766.10 WHERE [Code] = 'rhp' END +SET [Description] = 'Yahang', [Definition] = NULL, [SortOrder] = 7666.00 WHERE [Code] = 'rhp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynu', 'Yahuna', NULL, 766.20) END +VALUES ('ynu', 'Yahuna', NULL, 7667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yahuna', [Definition] = NULL, [SortOrder] = 766.20 WHERE [Code] = 'ynu' END +SET [Description] = 'Yahuna', [Definition] = NULL, [SortOrder] = 7667.00 WHERE [Code] = 'ynu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axk', 'Yaka (Central African Republic)', NULL, 766.30) END +VALUES ('axk', 'Yaka (Central African Republic)', NULL, 7668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaka (Central African Republic)', [Definition] = NULL, [SortOrder] = 766.30 WHERE [Code] = 'axk' END +SET [Description] = 'Yaka (Central African Republic)', [Definition] = NULL, [SortOrder] = 7668.00 WHERE [Code] = 'axk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iyx', 'Yaka (Congo)', NULL, 766.40) END +VALUES ('iyx', 'Yaka (Congo)', NULL, 7669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaka (Congo)', [Definition] = NULL, [SortOrder] = 766.40 WHERE [Code] = 'iyx' END +SET [Description] = 'Yaka (Congo)', [Definition] = NULL, [SortOrder] = 7669.00 WHERE [Code] = 'iyx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaf', 'Yaka (Democratic Republic of Congo)', NULL, 766.50) END +VALUES ('yaf', 'Yaka (Democratic Republic of Congo)', NULL, 7670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaka (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 766.50 WHERE [Code] = 'yaf' END +SET [Description] = 'Yaka (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 7670.00 WHERE [Code] = 'yaf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykk', 'Yakaikeke', NULL, 766.60) END +VALUES ('ykk', 'Yakaikeke', NULL, 7671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakaikeke', [Definition] = NULL, [SortOrder] = 766.60 WHERE [Code] = 'ykk' END +SET [Description] = 'Yakaikeke', [Definition] = NULL, [SortOrder] = 7671.00 WHERE [Code] = 'ykk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yak', 'Yakama', NULL, 766.70) END +VALUES ('yak', 'Yakama', NULL, 7672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakama', [Definition] = NULL, [SortOrder] = 766.70 WHERE [Code] = 'yak' END +SET [Description] = 'Yakama', [Definition] = NULL, [SortOrder] = 7672.00 WHERE [Code] = 'yak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yka', 'Yakan', NULL, 766.80) END +VALUES ('yka', 'Yakan', NULL, 7673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakan', [Definition] = NULL, [SortOrder] = 766.80 WHERE [Code] = 'yka' END +SET [Description] = 'Yakan', [Definition] = NULL, [SortOrder] = 7673.00 WHERE [Code] = 'yka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybh', 'Yakha', NULL, 766.90) END +VALUES ('ybh', 'Yakha', NULL, 7674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakha', [Definition] = NULL, [SortOrder] = 766.90 WHERE [Code] = 'ybh' END +SET [Description] = 'Yakha', [Definition] = NULL, [SortOrder] = 7674.00 WHERE [Code] = 'ybh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yky', 'Yakoma', NULL, 767.00) END +VALUES ('yky', 'Yakoma', NULL, 7675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakoma', [Definition] = NULL, [SortOrder] = 767.00 WHERE [Code] = 'yky' END +SET [Description] = 'Yakoma', [Definition] = NULL, [SortOrder] = 7675.00 WHERE [Code] = 'yky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sah', 'Yakut', NULL, 767.10) END +VALUES ('sah', 'Yakut', NULL, 7676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakut', [Definition] = NULL, [SortOrder] = 767.10 WHERE [Code] = 'sah' END +SET [Description] = 'Yakut', [Definition] = NULL, [SortOrder] = 7676.00 WHERE [Code] = 'sah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yba', 'Yala', NULL, 767.20) END +VALUES ('yba', 'Yala', NULL, 7677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yala', [Definition] = NULL, [SortOrder] = 767.20 WHERE [Code] = 'yba' END +SET [Description] = 'Yala', [Definition] = NULL, [SortOrder] = 7677.00 WHERE [Code] = 'yba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jal', 'Yalahatan', NULL, 767.30) END +VALUES ('jal', 'Yalahatan', NULL, 7678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalahatan', [Definition] = NULL, [SortOrder] = 767.30 WHERE [Code] = 'jal' END +SET [Description] = 'Yalahatan', [Definition] = NULL, [SortOrder] = 7678.00 WHERE [Code] = 'jal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyl', 'Yalakalore', NULL, 767.40) END +VALUES ('xyl', 'Yalakalore', NULL, 7679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalakalore', [Definition] = NULL, [SortOrder] = 767.40 WHERE [Code] = 'xyl' END +SET [Description] = 'Yalakalore', [Definition] = NULL, [SortOrder] = 7679.00 WHERE [Code] = 'xyl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpu', 'Yalálag Zapotec', NULL, 767.50) END +VALUES ('zpu', 'Yalálag Zapotec', NULL, 7680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalálag Zapotec', [Definition] = NULL, [SortOrder] = 767.50 WHERE [Code] = 'zpu' END +SET [Description] = 'Yalálag Zapotec', [Definition] = NULL, [SortOrder] = 7680.00 WHERE [Code] = 'zpu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylr', 'Yalarnnga', NULL, 767.60) END +VALUES ('ylr', 'Yalarnnga', NULL, 7681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalarnnga', [Definition] = NULL, [SortOrder] = 767.60 WHERE [Code] = 'ylr' END +SET [Description] = 'Yalarnnga', [Definition] = NULL, [SortOrder] = 7681.00 WHERE [Code] = 'ylr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nce', 'Yale', NULL, 767.70) END +VALUES ('nce', 'Yale', NULL, 7682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yale', [Definition] = NULL, [SortOrder] = 767.70 WHERE [Code] = 'nce' END +SET [Description] = 'Yale', [Definition] = NULL, [SortOrder] = 7682.00 WHERE [Code] = 'nce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylb', 'Yaleba', NULL, 767.80) END +VALUES ('ylb', 'Yaleba', NULL, 7683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaleba', [Definition] = NULL, [SortOrder] = 767.80 WHERE [Code] = 'ylb' END +SET [Description] = 'Yaleba', [Definition] = NULL, [SortOrder] = 7683.00 WHERE [Code] = 'ylb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yal', 'Yalunka', NULL, 767.90) END +VALUES ('yal', 'Yalunka', NULL, 7684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalunka', [Definition] = NULL, [SortOrder] = 767.90 WHERE [Code] = 'yal' END +SET [Description] = 'Yalunka', [Definition] = NULL, [SortOrder] = 7684.00 WHERE [Code] = 'yal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yag', 'Yámana', NULL, 768.00) END +VALUES ('yag', 'Yámana', NULL, 7685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yámana', [Definition] = NULL, [SortOrder] = 768.00 WHERE [Code] = 'yag' END +SET [Description] = 'Yámana', [Definition] = NULL, [SortOrder] = 7685.00 WHERE [Code] = 'yag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymp', 'Yamap', NULL, 768.10) END +VALUES ('ymp', 'Yamap', NULL, 7686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamap', [Definition] = NULL, [SortOrder] = 768.10 WHERE [Code] = 'ymp' END +SET [Description] = 'Yamap', [Definition] = NULL, [SortOrder] = 7686.00 WHERE [Code] = 'ymp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yam', 'Yamba', NULL, 768.20) END +VALUES ('yam', 'Yamba', NULL, 7687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamba', [Definition] = NULL, [SortOrder] = 768.20 WHERE [Code] = 'yam' END +SET [Description] = 'Yamba', [Definition] = NULL, [SortOrder] = 7687.00 WHERE [Code] = 'yam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymb', 'Yambes', NULL, 768.30) END +VALUES ('ymb', 'Yambes', NULL, 7688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yambes', [Definition] = NULL, [SortOrder] = 768.30 WHERE [Code] = 'ymb' END +SET [Description] = 'Yambes', [Definition] = NULL, [SortOrder] = 7688.00 WHERE [Code] = 'ymb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yat', 'Yambeta', NULL, 768.40) END +VALUES ('yat', 'Yambeta', NULL, 7689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yambeta', [Definition] = NULL, [SortOrder] = 768.40 WHERE [Code] = 'yat' END +SET [Description] = 'Yambeta', [Definition] = NULL, [SortOrder] = 7689.00 WHERE [Code] = 'yat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmd', 'Yamdena', NULL, 768.50) END +VALUES ('jmd', 'Yamdena', NULL, 7690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamdena', [Definition] = NULL, [SortOrder] = 768.50 WHERE [Code] = 'jmd' END +SET [Description] = 'Yamdena', [Definition] = NULL, [SortOrder] = 7690.00 WHERE [Code] = 'jmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yme', 'Yameo', NULL, 768.60) END +VALUES ('yme', 'Yameo', NULL, 7691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yameo', [Definition] = NULL, [SortOrder] = 768.60 WHERE [Code] = 'yme' END +SET [Description] = 'Yameo', [Definition] = NULL, [SortOrder] = 7691.00 WHERE [Code] = 'yme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tao', 'Yami', NULL, 768.70) END +VALUES ('tao', 'Yami', NULL, 7692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yami', [Definition] = NULL, [SortOrder] = 768.70 WHERE [Code] = 'tao' END +SET [Description] = 'Yami', [Definition] = NULL, [SortOrder] = 7692.00 WHERE [Code] = 'tao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaa', 'Yaminahua', NULL, 768.80) END +VALUES ('yaa', 'Yaminahua', NULL, 7693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaminahua', [Definition] = NULL, [SortOrder] = 768.80 WHERE [Code] = 'yaa' END +SET [Description] = 'Yaminahua', [Definition] = NULL, [SortOrder] = 7693.00 WHERE [Code] = 'yaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymn', 'Yamna', NULL, 768.90) END +VALUES ('ymn', 'Yamna', NULL, 7694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamna', [Definition] = NULL, [SortOrder] = 768.90 WHERE [Code] = 'ymn' END +SET [Description] = 'Yamna', [Definition] = NULL, [SortOrder] = 7694.00 WHERE [Code] = 'ymn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymg', 'Yamongeri', NULL, 769.00) END +VALUES ('ymg', 'Yamongeri', NULL, 7695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamongeri', [Definition] = NULL, [SortOrder] = 769.00 WHERE [Code] = 'ymg' END +SET [Description] = 'Yamongeri', [Definition] = NULL, [SortOrder] = 7695.00 WHERE [Code] = 'ymg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybi', 'Yamphu', NULL, 769.10) END +VALUES ('ybi', 'Yamphu', NULL, 7696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamphu', [Definition] = NULL, [SortOrder] = 769.10 WHERE [Code] = 'ybi' END +SET [Description] = 'Yamphu', [Definition] = NULL, [SortOrder] = 7696.00 WHERE [Code] = 'ybi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jay', 'Yan-nhangu', NULL, 769.20) END +VALUES ('jay', 'Yan-nhangu', NULL, 7697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yan-nhangu', [Definition] = NULL, [SortOrder] = 769.20 WHERE [Code] = 'jay' END +SET [Description] = 'Yan-nhangu', [Definition] = NULL, [SortOrder] = 7697.00 WHERE [Code] = 'jay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yhs', 'Yan-nhangu Sign Language', NULL, 769.30) END +VALUES ('yhs', 'Yan-nhangu Sign Language', NULL, 7698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yan-nhangu Sign Language', [Definition] = NULL, [SortOrder] = 769.30 WHERE [Code] = 'yhs' END +SET [Description] = 'Yan-nhangu Sign Language', [Definition] = NULL, [SortOrder] = 7698.00 WHERE [Code] = 'yhs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynn', 'Yana', NULL, 769.40) END +VALUES ('ynn', 'Yana', NULL, 7699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yana', [Definition] = NULL, [SortOrder] = 769.40 WHERE [Code] = 'ynn' END +SET [Description] = 'Yana', [Definition] = NULL, [SortOrder] = 7699.00 WHERE [Code] = 'ynn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qur', 'Yanahuanca Pasco Quechua', NULL, 769.50) END +VALUES ('qur', 'Yanahuanca Pasco Quechua', NULL, 7700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanahuanca Pasco Quechua', [Definition] = NULL, [SortOrder] = 769.50 WHERE [Code] = 'qur' END +SET [Description] = 'Yanahuanca Pasco Quechua', [Definition] = NULL, [SortOrder] = 7700.00 WHERE [Code] = 'qur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yda', 'Yanda', NULL, 769.60) END +VALUES ('yda', 'Yanda', NULL, 7701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanda', [Definition] = NULL, [SortOrder] = 769.60 WHERE [Code] = 'yda' END +SET [Description] = 'Yanda', [Definition] = NULL, [SortOrder] = 7701.00 WHERE [Code] = 'yda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dym', 'Yanda Dom Dogon', NULL, 769.70) END +VALUES ('dym', 'Yanda Dom Dogon', NULL, 7702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanda Dom Dogon', [Definition] = NULL, [SortOrder] = 769.70 WHERE [Code] = 'dym' END +SET [Description] = 'Yanda Dom Dogon', [Definition] = NULL, [SortOrder] = 7702.00 WHERE [Code] = 'dym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyb', 'Yandjibara', NULL, 769.80) END +VALUES ('xyb', 'Yandjibara', NULL, 7703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yandjibara', [Definition] = NULL, [SortOrder] = 769.80 WHERE [Code] = 'xyb' END +SET [Description] = 'Yandjibara', [Definition] = NULL, [SortOrder] = 7703.00 WHERE [Code] = 'xyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynd', 'Yandruwandha', NULL, 769.90) END +VALUES ('ynd', 'Yandruwandha', NULL, 7704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yandruwandha', [Definition] = NULL, [SortOrder] = 769.90 WHERE [Code] = 'ynd' END +SET [Description] = 'Yandruwandha', [Definition] = NULL, [SortOrder] = 7704.00 WHERE [Code] = 'ynd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ame') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ame', 'Yanesha''', NULL, 770.00) END +VALUES ('ame', 'Yanesha''', NULL, 7705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanesha''', [Definition] = NULL, [SortOrder] = 770.00 WHERE [Code] = 'ame' END +SET [Description] = 'Yanesha''', [Definition] = NULL, [SortOrder] = 7705.00 WHERE [Code] = 'ame' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyg', 'Yang Zhuang', NULL, 770.10) END +VALUES ('zyg', 'Yang Zhuang', NULL, 7706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yang Zhuang', [Definition] = NULL, [SortOrder] = 770.10 WHERE [Code] = 'zyg' END +SET [Description] = 'Yang Zhuang', [Definition] = NULL, [SortOrder] = 7706.00 WHERE [Code] = 'zyg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yav', 'Yangben', NULL, 770.20) END +VALUES ('yav', 'Yangben', NULL, 7707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangben', [Definition] = NULL, [SortOrder] = 770.20 WHERE [Code] = 'yav' END +SET [Description] = 'Yangben', [Definition] = NULL, [SortOrder] = 7707.00 WHERE [Code] = 'yav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsx', 'Yangkam', NULL, 770.30) END +VALUES ('bsx', 'Yangkam', NULL, 7708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangkam', [Definition] = NULL, [SortOrder] = 770.30 WHERE [Code] = 'bsx' END +SET [Description] = 'Yangkam', [Definition] = NULL, [SortOrder] = 7708.00 WHERE [Code] = 'bsx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jng', 'Yangman', NULL, 770.40) END +VALUES ('jng', 'Yangman', NULL, 7709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangman', [Definition] = NULL, [SortOrder] = 770.40 WHERE [Code] = 'jng' END +SET [Description] = 'Yangman', [Definition] = NULL, [SortOrder] = 7709.00 WHERE [Code] = 'jng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yng', 'Yango', NULL, 770.50) END +VALUES ('yng', 'Yango', NULL, 7710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yango', [Definition] = NULL, [SortOrder] = 770.50 WHERE [Code] = 'yng' END +SET [Description] = 'Yango', [Definition] = NULL, [SortOrder] = 7710.00 WHERE [Code] = 'yng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynl', 'Yangulam', NULL, 770.60) END +VALUES ('ynl', 'Yangulam', NULL, 7711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangulam', [Definition] = NULL, [SortOrder] = 770.60 WHERE [Code] = 'ynl' END +SET [Description] = 'Yangulam', [Definition] = NULL, [SortOrder] = 7711.00 WHERE [Code] = 'ynl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yde', 'Yangum Dey', NULL, 770.70) END +VALUES ('yde', 'Yangum Dey', NULL, 7712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangum Dey', [Definition] = NULL, [SortOrder] = 770.70 WHERE [Code] = 'yde' END +SET [Description] = 'Yangum Dey', [Definition] = NULL, [SortOrder] = 7712.00 WHERE [Code] = 'yde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygl', 'Yangum Gel', NULL, 770.80) END +VALUES ('ygl', 'Yangum Gel', NULL, 7713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangum Gel', [Definition] = NULL, [SortOrder] = 770.80 WHERE [Code] = 'ygl' END +SET [Description] = 'Yangum Gel', [Definition] = NULL, [SortOrder] = 7713.00 WHERE [Code] = 'ygl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymo', 'Yangum Mon', NULL, 770.90) END +VALUES ('ymo', 'Yangum Mon', NULL, 7714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangum Mon', [Definition] = NULL, [SortOrder] = 770.90 WHERE [Code] = 'ymo' END +SET [Description] = 'Yangum Mon', [Definition] = NULL, [SortOrder] = 7714.00 WHERE [Code] = 'ymo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdd', 'Yankunytjatjara', NULL, 771.00) END +VALUES ('kdd', 'Yankunytjatjara', NULL, 7715.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yankunytjatjara', [Definition] = NULL, [SortOrder] = 771.00 WHERE [Code] = 'kdd' END +SET [Description] = 'Yankunytjatjara', [Definition] = NULL, [SortOrder] = 7715.00 WHERE [Code] = 'kdd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wca', 'Yanomámi', NULL, 771.10) END +VALUES ('wca', 'Yanomámi', NULL, 7716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanomámi', [Definition] = NULL, [SortOrder] = 771.10 WHERE [Code] = 'wca' END +SET [Description] = 'Yanomámi', [Definition] = NULL, [SortOrder] = 7716.00 WHERE [Code] = 'wca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guu', 'Yanomamö', NULL, 771.20) END +VALUES ('guu', 'Yanomamö', NULL, 7717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanomamö', [Definition] = NULL, [SortOrder] = 771.20 WHERE [Code] = 'guu' END +SET [Description] = 'Yanomamö', [Definition] = NULL, [SortOrder] = 7717.00 WHERE [Code] = 'guu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yns', 'Yansi', NULL, 771.30) END +VALUES ('yns', 'Yansi', NULL, 7718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yansi', [Definition] = NULL, [SortOrder] = 771.30 WHERE [Code] = 'yns' END +SET [Description] = 'Yansi', [Definition] = NULL, [SortOrder] = 7718.00 WHERE [Code] = 'yns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jao', 'Yanyuwa', NULL, 771.40) END +VALUES ('jao', 'Yanyuwa', NULL, 7719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanyuwa', [Definition] = NULL, [SortOrder] = 771.40 WHERE [Code] = 'jao' END +SET [Description] = 'Yanyuwa', [Definition] = NULL, [SortOrder] = 7719.00 WHERE [Code] = 'jao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yao', 'Yao', NULL, 771.50) END +VALUES ('yao', 'Yao', NULL, 7720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yao', [Definition] = NULL, [SortOrder] = 771.50 WHERE [Code] = 'yao' END +SET [Description] = 'Yao', [Definition] = NULL, [SortOrder] = 7720.00 WHERE [Code] = 'yao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asy', 'Yaosakor Asmat', NULL, 771.60) END +VALUES ('asy', 'Yaosakor Asmat', NULL, 7721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaosakor Asmat', [Definition] = NULL, [SortOrder] = 771.60 WHERE [Code] = 'asy' END +SET [Description] = 'Yaosakor Asmat', [Definition] = NULL, [SortOrder] = 7721.00 WHERE [Code] = 'asy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yre', 'Yaouré', NULL, 771.70) END +VALUES ('yre', 'Yaouré', NULL, 7722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaouré', [Definition] = NULL, [SortOrder] = 771.70 WHERE [Code] = 'yre' END +SET [Description] = 'Yaouré', [Definition] = NULL, [SortOrder] = 7722.00 WHERE [Code] = 'yre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yap', 'Yapese', NULL, 771.80) END +VALUES ('yap', 'Yapese', NULL, 7723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yapese', [Definition] = NULL, [SortOrder] = 771.80 WHERE [Code] = 'yap' END +SET [Description] = 'Yapese', [Definition] = NULL, [SortOrder] = 7723.00 WHERE [Code] = 'yap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yev', 'Yapunda', NULL, 771.90) END +VALUES ('yev', 'Yapunda', NULL, 7724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yapunda', [Definition] = NULL, [SortOrder] = 771.90 WHERE [Code] = 'yev' END +SET [Description] = 'Yapunda', [Definition] = NULL, [SortOrder] = 7724.00 WHERE [Code] = 'yev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaq', 'Yaqay', NULL, 772.00) END +VALUES ('jaq', 'Yaqay', NULL, 7725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaqay', [Definition] = NULL, [SortOrder] = 772.00 WHERE [Code] = 'jaq' END +SET [Description] = 'Yaqay', [Definition] = NULL, [SortOrder] = 7725.00 WHERE [Code] = 'jaq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaq', 'Yaqui', NULL, 772.10) END +VALUES ('yaq', 'Yaqui', NULL, 7726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaqui', [Definition] = NULL, [SortOrder] = 772.10 WHERE [Code] = 'yaq' END +SET [Description] = 'Yaqui', [Definition] = NULL, [SortOrder] = 7726.00 WHERE [Code] = 'yaq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrw', 'Yarawata', NULL, 772.20) END +VALUES ('yrw', 'Yarawata', NULL, 7727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yarawata', [Definition] = NULL, [SortOrder] = 772.20 WHERE [Code] = 'yrw' END +SET [Description] = 'Yarawata', [Definition] = NULL, [SortOrder] = 7727.00 WHERE [Code] = 'yrw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxl', 'Yardliyawarra', NULL, 772.30) END +VALUES ('yxl', 'Yardliyawarra', NULL, 7728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yardliyawarra', [Definition] = NULL, [SortOrder] = 772.30 WHERE [Code] = 'yxl' END +SET [Description] = 'Yardliyawarra', [Definition] = NULL, [SortOrder] = 7728.00 WHERE [Code] = 'yxl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrb', 'Yareba', NULL, 772.40) END +VALUES ('yrb', 'Yareba', NULL, 7729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yareba', [Definition] = NULL, [SortOrder] = 772.40 WHERE [Code] = 'yrb' END +SET [Description] = 'Yareba', [Definition] = NULL, [SortOrder] = 7729.00 WHERE [Code] = 'yrb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zae', 'Yareni Zapotec', NULL, 772.50) END +VALUES ('zae', 'Yareni Zapotec', NULL, 7730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yareni Zapotec', [Definition] = NULL, [SortOrder] = 772.50 WHERE [Code] = 'zae' END +SET [Description] = 'Yareni Zapotec', [Definition] = NULL, [SortOrder] = 7730.00 WHERE [Code] = 'zae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yry', 'Yarluyandi', NULL, 772.60) END +VALUES ('yry', 'Yarluyandi', NULL, 7731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yarluyandi', [Definition] = NULL, [SortOrder] = 772.60 WHERE [Code] = 'yry' END +SET [Description] = 'Yarluyandi', [Definition] = NULL, [SortOrder] = 7731.00 WHERE [Code] = 'yry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yro', 'Yaroame', NULL, 772.70) END +VALUES ('yro', 'Yaroame', NULL, 7732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaroame', [Definition] = NULL, [SortOrder] = 772.70 WHERE [Code] = 'yro' END +SET [Description] = 'Yaroame', [Definition] = NULL, [SortOrder] = 7732.00 WHERE [Code] = 'yro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrs', 'Yarsun', NULL, 772.80) END +VALUES ('yrs', 'Yarsun', NULL, 7733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yarsun', [Definition] = NULL, [SortOrder] = 772.80 WHERE [Code] = 'yrs' END +SET [Description] = 'Yarsun', [Definition] = NULL, [SortOrder] = 7733.00 WHERE [Code] = 'yrs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yko', 'Yasa', NULL, 772.90) END +VALUES ('yko', 'Yasa', NULL, 7734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yasa', [Definition] = NULL, [SortOrder] = 772.90 WHERE [Code] = 'yko' END +SET [Description] = 'Yasa', [Definition] = NULL, [SortOrder] = 7734.00 WHERE [Code] = 'yko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysc', 'Yassic', NULL, 773.00) END +VALUES ('ysc', 'Yassic', NULL, 7735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yassic', [Definition] = NULL, [SortOrder] = 773.00 WHERE [Code] = 'ysc' END +SET [Description] = 'Yassic', [Definition] = NULL, [SortOrder] = 7735.00 WHERE [Code] = 'ysc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yty', 'Yatay', NULL, 773.10) END +VALUES ('yty', 'Yatay', NULL, 7736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yatay', [Definition] = NULL, [SortOrder] = 773.10 WHERE [Code] = 'yty' END +SET [Description] = 'Yatay', [Definition] = NULL, [SortOrder] = 7736.00 WHERE [Code] = 'yty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zty', 'Yatee Zapotec', NULL, 773.20) END +VALUES ('zty', 'Yatee Zapotec', NULL, 7737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yatee Zapotec', [Definition] = NULL, [SortOrder] = 773.20 WHERE [Code] = 'zty' END +SET [Description] = 'Yatee Zapotec', [Definition] = NULL, [SortOrder] = 7737.00 WHERE [Code] = 'zty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zav', 'Yatzachi Zapotec', NULL, 773.30) END +VALUES ('zav', 'Yatzachi Zapotec', NULL, 7738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yatzachi Zapotec', [Definition] = NULL, [SortOrder] = 773.30 WHERE [Code] = 'zav' END +SET [Description] = 'Yatzachi Zapotec', [Definition] = NULL, [SortOrder] = 7738.00 WHERE [Code] = 'zav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuw', 'Yau (Morobe Province)', NULL, 773.40) END +VALUES ('yuw', 'Yau (Morobe Province)', NULL, 7739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yau (Morobe Province)', [Definition] = NULL, [SortOrder] = 773.40 WHERE [Code] = 'yuw' END +SET [Description] = 'Yau (Morobe Province)', [Definition] = NULL, [SortOrder] = 7739.00 WHERE [Code] = 'yuw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yyu', 'Yau (Sandaun Province)', NULL, 773.50) END +VALUES ('yyu', 'Yau (Sandaun Province)', NULL, 7740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yau (Sandaun Province)', [Definition] = NULL, [SortOrder] = 773.50 WHERE [Code] = 'yyu' END +SET [Description] = 'Yau (Sandaun Province)', [Definition] = NULL, [SortOrder] = 7740.00 WHERE [Code] = 'yyu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yla', 'Yaul', NULL, 773.60) END +VALUES ('yla', 'Yaul', NULL, 7741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaul', [Definition] = NULL, [SortOrder] = 773.60 WHERE [Code] = 'yla' END +SET [Description] = 'Yaul', [Definition] = NULL, [SortOrder] = 7741.00 WHERE [Code] = 'yla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yax', 'Yauma', NULL, 773.70) END +VALUES ('yax', 'Yauma', NULL, 7742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yauma', [Definition] = NULL, [SortOrder] = 773.70 WHERE [Code] = 'yax' END +SET [Description] = 'Yauma', [Definition] = NULL, [SortOrder] = 7742.00 WHERE [Code] = 'yax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jau', 'Yaur', NULL, 773.80) END +VALUES ('jau', 'Yaur', NULL, 7743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaur', [Definition] = NULL, [SortOrder] = 773.80 WHERE [Code] = 'jau' END +SET [Description] = 'Yaur', [Definition] = NULL, [SortOrder] = 7743.00 WHERE [Code] = 'jau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpb', 'Yautepec Zapotec', NULL, 773.90) END +VALUES ('zpb', 'Yautepec Zapotec', NULL, 7744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yautepec Zapotec', [Definition] = NULL, [SortOrder] = 773.90 WHERE [Code] = 'zpb' END +SET [Description] = 'Yautepec Zapotec', [Definition] = NULL, [SortOrder] = 7744.00 WHERE [Code] = 'zpb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qux', 'Yauyos Quechua', NULL, 774.00) END +VALUES ('qux', 'Yauyos Quechua', NULL, 7745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yauyos Quechua', [Definition] = NULL, [SortOrder] = 774.00 WHERE [Code] = 'qux' END +SET [Description] = 'Yauyos Quechua', [Definition] = NULL, [SortOrder] = 7745.00 WHERE [Code] = 'qux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yvt', 'Yavitero', NULL, 774.10) END +VALUES ('yvt', 'Yavitero', NULL, 7746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yavitero', [Definition] = NULL, [SortOrder] = 774.10 WHERE [Code] = 'yvt' END +SET [Description] = 'Yavitero', [Definition] = NULL, [SortOrder] = 7746.00 WHERE [Code] = 'yvt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yva', 'Yawa', NULL, 774.20) END +VALUES ('yva', 'Yawa', NULL, 7747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawa', [Definition] = NULL, [SortOrder] = 774.20 WHERE [Code] = 'yva' END +SET [Description] = 'Yawa', [Definition] = NULL, [SortOrder] = 7747.00 WHERE [Code] = 'yva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaw', 'Yawalapití', NULL, 774.30) END +VALUES ('yaw', 'Yawalapití', NULL, 7748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawalapití', [Definition] = NULL, [SortOrder] = 774.30 WHERE [Code] = 'yaw' END +SET [Description] = 'Yawalapití', [Definition] = NULL, [SortOrder] = 7748.00 WHERE [Code] = 'yaw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywn', 'Yawanawa', NULL, 774.40) END +VALUES ('ywn', 'Yawanawa', NULL, 7749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawanawa', [Definition] = NULL, [SortOrder] = 774.40 WHERE [Code] = 'ywn' END +SET [Description] = 'Yawanawa', [Definition] = NULL, [SortOrder] = 7749.00 WHERE [Code] = 'ywn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yww', 'Yawarawarga', NULL, 774.50) END +VALUES ('yww', 'Yawarawarga', NULL, 7750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawarawarga', [Definition] = NULL, [SortOrder] = 774.50 WHERE [Code] = 'yww' END +SET [Description] = 'Yawarawarga', [Definition] = NULL, [SortOrder] = 7750.00 WHERE [Code] = 'yww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yby', 'Yaweyuha', NULL, 774.60) END +VALUES ('yby', 'Yaweyuha', NULL, 7751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaweyuha', [Definition] = NULL, [SortOrder] = 774.60 WHERE [Code] = 'yby' END +SET [Description] = 'Yaweyuha', [Definition] = NULL, [SortOrder] = 7751.00 WHERE [Code] = 'yby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbw', 'Yawijibaya', NULL, 774.70) END +VALUES ('jbw', 'Yawijibaya', NULL, 7752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawijibaya', [Definition] = NULL, [SortOrder] = 774.70 WHERE [Code] = 'jbw' END +SET [Description] = 'Yawijibaya', [Definition] = NULL, [SortOrder] = 7752.00 WHERE [Code] = 'jbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybx', 'Yawiyo', NULL, 774.80) END +VALUES ('ybx', 'Yawiyo', NULL, 7753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawiyo', [Definition] = NULL, [SortOrder] = 774.80 WHERE [Code] = 'ybx' END +SET [Description] = 'Yawiyo', [Definition] = NULL, [SortOrder] = 7753.00 WHERE [Code] = 'ybx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywr', 'Yawuru', NULL, 774.90) END +VALUES ('ywr', 'Yawuru', NULL, 7754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawuru', [Definition] = NULL, [SortOrder] = 774.90 WHERE [Code] = 'ywr' END +SET [Description] = 'Yawuru', [Definition] = NULL, [SortOrder] = 7754.00 WHERE [Code] = 'ywr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xya', 'Yaygir', NULL, 775.00) END +VALUES ('xya', 'Yaygir', NULL, 7755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaygir', [Definition] = NULL, [SortOrder] = 775.00 WHERE [Code] = 'xya' END +SET [Description] = 'Yaygir', [Definition] = NULL, [SortOrder] = 7755.00 WHERE [Code] = 'xya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yah', 'Yazgulyam', NULL, 775.10) END +VALUES ('yah', 'Yazgulyam', NULL, 7756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yazgulyam', [Definition] = NULL, [SortOrder] = 775.10 WHERE [Code] = 'yah' END +SET [Description] = 'Yazgulyam', [Definition] = NULL, [SortOrder] = 7756.00 WHERE [Code] = 'yah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlc', 'Yecuatla Totonac', NULL, 775.20) END +VALUES ('tlc', 'Yecuatla Totonac', NULL, 7757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yecuatla Totonac', [Definition] = NULL, [SortOrder] = 775.20 WHERE [Code] = 'tlc' END +SET [Description] = 'Yecuatla Totonac', [Definition] = NULL, [SortOrder] = 7757.00 WHERE [Code] = 'tlc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jei', 'Yei', NULL, 775.30) END +VALUES ('jei', 'Yei', NULL, 7758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yei', [Definition] = NULL, [SortOrder] = 775.30 WHERE [Code] = 'jei' END +SET [Description] = 'Yei', [Definition] = NULL, [SortOrder] = 7758.00 WHERE [Code] = 'jei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ets') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ets', 'Yekhee', NULL, 775.40) END +VALUES ('ets', 'Yekhee', NULL, 7759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yekhee', [Definition] = NULL, [SortOrder] = 775.40 WHERE [Code] = 'ets' END +SET [Description] = 'Yekhee', [Definition] = NULL, [SortOrder] = 7759.00 WHERE [Code] = 'ets' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykr', 'Yekora', NULL, 775.50) END +VALUES ('ykr', 'Yekora', NULL, 7760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yekora', [Definition] = NULL, [SortOrder] = 775.50 WHERE [Code] = 'ykr' END +SET [Description] = 'Yekora', [Definition] = NULL, [SortOrder] = 7760.00 WHERE [Code] = 'ykr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yel', 'Yela', NULL, 775.60) END +VALUES ('yel', 'Yela', NULL, 7761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yela', [Definition] = NULL, [SortOrder] = 775.60 WHERE [Code] = 'yel' END +SET [Description] = 'Yela', [Definition] = NULL, [SortOrder] = 7761.00 WHERE [Code] = 'yel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yle', 'Yele', NULL, 775.70) END +VALUES ('yle', 'Yele', NULL, 7762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yele', [Definition] = NULL, [SortOrder] = 775.70 WHERE [Code] = 'yle' END +SET [Description] = 'Yele', [Definition] = NULL, [SortOrder] = 7762.00 WHERE [Code] = 'yle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jel', 'Yelmek', NULL, 775.80) END +VALUES ('jel', 'Yelmek', NULL, 7763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yelmek', [Definition] = NULL, [SortOrder] = 775.80 WHERE [Code] = 'jel' END +SET [Description] = 'Yelmek', [Definition] = NULL, [SortOrder] = 7763.00 WHERE [Code] = 'jel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylg', 'Yelogu', NULL, 775.90) END +VALUES ('ylg', 'Yelogu', NULL, 7764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yelogu', [Definition] = NULL, [SortOrder] = 775.90 WHERE [Code] = 'ylg' END +SET [Description] = 'Yelogu', [Definition] = NULL, [SortOrder] = 7764.00 WHERE [Code] = 'ylg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybb', 'Yemba', NULL, 776.00) END +VALUES ('ybb', 'Yemba', NULL, 7765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yemba', [Definition] = NULL, [SortOrder] = 776.00 WHERE [Code] = 'ybb' END +SET [Description] = 'Yemba', [Definition] = NULL, [SortOrder] = 7765.00 WHERE [Code] = 'ybb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jnj', 'Yemsa', NULL, 776.10) END +VALUES ('jnj', 'Yemsa', NULL, 7766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yemsa', [Definition] = NULL, [SortOrder] = 776.10 WHERE [Code] = 'jnj' END +SET [Description] = 'Yemsa', [Definition] = NULL, [SortOrder] = 7766.00 WHERE [Code] = 'jnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynq', 'Yendang', NULL, 776.20) END +VALUES ('ynq', 'Yendang', NULL, 7767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yendang', [Definition] = NULL, [SortOrder] = 776.20 WHERE [Code] = 'ynq' END +SET [Description] = 'Yendang', [Definition] = NULL, [SortOrder] = 7767.00 WHERE [Code] = 'ynq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yei', 'Yeni', NULL, 776.30) END +VALUES ('yei', 'Yeni', NULL, 7768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yeni', [Definition] = NULL, [SortOrder] = 776.30 WHERE [Code] = 'yei' END +SET [Description] = 'Yeni', [Definition] = NULL, [SortOrder] = 7768.00 WHERE [Code] = 'yei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yec', 'Yeniche', NULL, 776.40) END +VALUES ('yec', 'Yeniche', NULL, 7769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yeniche', [Definition] = NULL, [SortOrder] = 776.40 WHERE [Code] = 'yec' END +SET [Description] = 'Yeniche', [Definition] = NULL, [SortOrder] = 7769.00 WHERE [Code] = 'yec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yra', 'Yerakai', NULL, 776.50) END +VALUES ('yra', 'Yerakai', NULL, 7770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yerakai', [Definition] = NULL, [SortOrder] = 776.50 WHERE [Code] = 'yra' END +SET [Description] = 'Yerakai', [Definition] = NULL, [SortOrder] = 7770.00 WHERE [Code] = 'yra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gop', 'Yeretuar', NULL, 776.60) END +VALUES ('gop', 'Yeretuar', NULL, 7771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yeretuar', [Definition] = NULL, [SortOrder] = 776.60 WHERE [Code] = 'gop' END +SET [Description] = 'Yeretuar', [Definition] = NULL, [SortOrder] = 7771.00 WHERE [Code] = 'gop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrn', 'Yerong', NULL, 776.70) END +VALUES ('yrn', 'Yerong', NULL, 7772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yerong', [Definition] = NULL, [SortOrder] = 776.70 WHERE [Code] = 'yrn' END +SET [Description] = 'Yerong', [Definition] = NULL, [SortOrder] = 7772.00 WHERE [Code] = 'yrn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yeu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yeu', 'Yerukula', NULL, 776.80) END +VALUES ('yeu', 'Yerukula', NULL, 7773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yerukula', [Definition] = NULL, [SortOrder] = 776.80 WHERE [Code] = 'yeu' END +SET [Description] = 'Yerukula', [Definition] = NULL, [SortOrder] = 7773.00 WHERE [Code] = 'yeu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yss', 'Yessan-Mayo', NULL, 776.90) END +VALUES ('yss', 'Yessan-Mayo', NULL, 7774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yessan-Mayo', [Definition] = NULL, [SortOrder] = 776.90 WHERE [Code] = 'yss' END +SET [Description] = 'Yessan-Mayo', [Definition] = NULL, [SortOrder] = 7774.00 WHERE [Code] = 'yss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yet', 'Yetfa', NULL, 777.00) END +VALUES ('yet', 'Yetfa', NULL, 7775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yetfa', [Definition] = NULL, [SortOrder] = 777.00 WHERE [Code] = 'yet' END +SET [Description] = 'Yetfa', [Definition] = NULL, [SortOrder] = 7775.00 WHERE [Code] = 'yet' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yej', 'Yevanic', NULL, 777.10) END +VALUES ('yej', 'Yevanic', NULL, 7776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yevanic', [Definition] = NULL, [SortOrder] = 777.10 WHERE [Code] = 'yej' END +SET [Description] = 'Yevanic', [Definition] = NULL, [SortOrder] = 7776.00 WHERE [Code] = 'yej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yey', 'Yeyi', NULL, 777.20) END +VALUES ('yey', 'Yeyi', NULL, 7777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yeyi', [Definition] = NULL, [SortOrder] = 777.20 WHERE [Code] = 'yey' END +SET [Description] = 'Yeyi', [Definition] = NULL, [SortOrder] = 7777.00 WHERE [Code] = 'yey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yid', 'Yiddish', NULL, 777.30) END +VALUES ('yid', 'Yiddish', NULL, 7778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yiddish', [Definition] = NULL, [SortOrder] = 777.30 WHERE [Code] = 'yid' END +SET [Description] = 'Yiddish', [Definition] = NULL, [SortOrder] = 7778.00 WHERE [Code] = 'yid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ydg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ydg', 'Yidgha', NULL, 777.40) END +VALUES ('ydg', 'Yidgha', NULL, 7779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yidgha', [Definition] = NULL, [SortOrder] = 777.40 WHERE [Code] = 'ydg' END +SET [Description] = 'Yidgha', [Definition] = NULL, [SortOrder] = 7779.00 WHERE [Code] = 'ydg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yii', 'Yidiny', NULL, 777.50) END +VALUES ('yii', 'Yidiny', NULL, 7780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yidiny', [Definition] = NULL, [SortOrder] = 777.50 WHERE [Code] = 'yii' END +SET [Description] = 'Yidiny', [Definition] = NULL, [SortOrder] = 7780.00 WHERE [Code] = 'yii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yll', 'Yil', NULL, 777.60) END +VALUES ('yll', 'Yil', NULL, 7781.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Yil', [Definition] = NULL, [SortOrder] = 7781.00 WHERE [Code] = 'yll' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ycr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('ycr', 'Yilan Creole', NULL, 7782.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yil', [Definition] = NULL, [SortOrder] = 777.60 WHERE [Code] = 'yll' END +SET [Description] = 'Yilan Creole', [Definition] = NULL, [SortOrder] = 7782.00 WHERE [Code] = 'ycr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yee', 'Yimas', NULL, 777.70) END +VALUES ('yee', 'Yimas', NULL, 7783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yimas', [Definition] = NULL, [SortOrder] = 777.70 WHERE [Code] = 'yee' END +SET [Description] = 'Yimas', [Definition] = NULL, [SortOrder] = 7783.00 WHERE [Code] = 'yee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yim', 'Yimchungru Naga', NULL, 777.80) END +VALUES ('yim', 'Yimchungru Naga', NULL, 7784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yimchungru Naga', [Definition] = NULL, [SortOrder] = 777.80 WHERE [Code] = 'yim' END +SET [Description] = 'Yimchungru Naga', [Definition] = NULL, [SortOrder] = 7784.00 WHERE [Code] = 'yim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvu', 'Yinbaw Karen', NULL, 777.90) END +VALUES ('kvu', 'Yinbaw Karen', NULL, 7785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yinbaw Karen', [Definition] = NULL, [SortOrder] = 777.90 WHERE [Code] = 'kvu' END +SET [Description] = 'Yinbaw Karen', [Definition] = NULL, [SortOrder] = 7785.00 WHERE [Code] = 'kvu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yij', 'Yindjibarndi', NULL, 778.00) END +VALUES ('yij', 'Yindjibarndi', NULL, 7786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yindjibarndi', [Definition] = NULL, [SortOrder] = 778.00 WHERE [Code] = 'yij' END +SET [Description] = 'Yindjibarndi', [Definition] = NULL, [SortOrder] = 7786.00 WHERE [Code] = 'yij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yil', 'Yindjilandji', NULL, 778.10) END +VALUES ('yil', 'Yindjilandji', NULL, 7787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yindjilandji', [Definition] = NULL, [SortOrder] = 778.10 WHERE [Code] = 'yil' END +SET [Description] = 'Yindjilandji', [Definition] = NULL, [SortOrder] = 7787.00 WHERE [Code] = 'yil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pib', 'Yine', NULL, 778.20) END +VALUES ('pib', 'Yine', NULL, 7788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yine', [Definition] = NULL, [SortOrder] = 778.20 WHERE [Code] = 'pib' END +SET [Description] = 'Yine', [Definition] = NULL, [SortOrder] = 7788.00 WHERE [Code] = 'pib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yia', 'Yinggarda', NULL, 778.30) END +VALUES ('yia', 'Yinggarda', NULL, 7789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yinggarda', [Definition] = NULL, [SortOrder] = 778.30 WHERE [Code] = 'yia' END +SET [Description] = 'Yinggarda', [Definition] = NULL, [SortOrder] = 7789.00 WHERE [Code] = 'yia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywg', 'Yinhawangka', NULL, 778.40) END +VALUES ('ywg', 'Yinhawangka', NULL, 7790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yinhawangka', [Definition] = NULL, [SortOrder] = 778.40 WHERE [Code] = 'ywg' END +SET [Description] = 'Yinhawangka', [Definition] = NULL, [SortOrder] = 7790.00 WHERE [Code] = 'ywg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygi', 'Yiningayi', NULL, 778.50) END +VALUES ('ygi', 'Yiningayi', NULL, 7791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yiningayi', [Definition] = NULL, [SortOrder] = 778.50 WHERE [Code] = 'ygi' END +SET [Description] = 'Yiningayi', [Definition] = NULL, [SortOrder] = 7791.00 WHERE [Code] = 'ygi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvy', 'Yintale Karen', NULL, 778.60) END +VALUES ('kvy', 'Yintale Karen', NULL, 7792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yintale Karen', [Definition] = NULL, [SortOrder] = 778.60 WHERE [Code] = 'kvy' END +SET [Description] = 'Yintale Karen', [Definition] = NULL, [SortOrder] = 7792.00 WHERE [Code] = 'kvy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxm', 'Yinwum', NULL, 778.70) END +VALUES ('yxm', 'Yinwum', NULL, 7793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yinwum', [Definition] = NULL, [SortOrder] = 778.70 WHERE [Code] = 'yxm' END +SET [Description] = 'Yinwum', [Definition] = NULL, [SortOrder] = 7793.00 WHERE [Code] = 'yxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yyr', 'Yir Yoront', NULL, 778.80) END +VALUES ('yyr', 'Yir Yoront', NULL, 7794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yir Yoront', [Definition] = NULL, [SortOrder] = 778.80 WHERE [Code] = 'yyr' END +SET [Description] = 'Yir Yoront', [Definition] = NULL, [SortOrder] = 7794.00 WHERE [Code] = 'yyr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ljw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ljw', 'Yirandali', NULL, 778.90) END +VALUES ('ljw', 'Yirandali', NULL, 7795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yirandali', [Definition] = NULL, [SortOrder] = 778.90 WHERE [Code] = 'ljw' END +SET [Description] = 'Yirandali', [Definition] = NULL, [SortOrder] = 7795.00 WHERE [Code] = 'ljw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrm', 'Yirrk-Mel', NULL, 779.00) END +VALUES ('yrm', 'Yirrk-Mel', NULL, 7796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yirrk-Mel', [Definition] = NULL, [SortOrder] = 779.00 WHERE [Code] = 'yrm' END +SET [Description] = 'Yirrk-Mel', [Definition] = NULL, [SortOrder] = 7796.00 WHERE [Code] = 'yrm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yis', 'Yis', NULL, 779.10) END +VALUES ('yis', 'Yis', NULL, 7797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yis', [Definition] = NULL, [SortOrder] = 779.10 WHERE [Code] = 'yis' END +SET [Description] = 'Yis', [Definition] = NULL, [SortOrder] = 7797.00 WHERE [Code] = 'yis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xth', 'Yitha Yitha', NULL, 779.20) END +VALUES ('xth', 'Yitha Yitha', NULL, 7798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yitha Yitha', [Definition] = NULL, [SortOrder] = 779.20 WHERE [Code] = 'xth' END +SET [Description] = 'Yitha Yitha', [Definition] = NULL, [SortOrder] = 7798.00 WHERE [Code] = 'xth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yob', 'Yoba', NULL, 779.30) END +VALUES ('yob', 'Yoba', NULL, 7799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoba', [Definition] = NULL, [SortOrder] = 779.30 WHERE [Code] = 'yob' END +SET [Description] = 'Yoba', [Definition] = NULL, [SortOrder] = 7799.00 WHERE [Code] = 'yob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gud', 'Yocoboué Dida', NULL, 779.40) END +VALUES ('gud', 'Yocoboué Dida', NULL, 7800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yocoboué Dida', [Definition] = NULL, [SortOrder] = 779.40 WHERE [Code] = 'gud' END +SET [Description] = 'Yocoboué Dida', [Definition] = NULL, [SortOrder] = 7800.00 WHERE [Code] = 'gud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yog', 'Yogad', NULL, 779.50) END +VALUES ('yog', 'Yogad', NULL, 7801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yogad', [Definition] = NULL, [SortOrder] = 779.50 WHERE [Code] = 'yog' END +SET [Description] = 'Yogad', [Definition] = NULL, [SortOrder] = 7801.00 WHERE [Code] = 'yog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ydk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ydk', 'Yoidik', NULL, 779.60) END +VALUES ('ydk', 'Yoidik', NULL, 7802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoidik', [Definition] = NULL, [SortOrder] = 779.60 WHERE [Code] = 'ydk' END +SET [Description] = 'Yoidik', [Definition] = NULL, [SortOrder] = 7802.00 WHERE [Code] = 'ydk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yki', 'Yoke', NULL, 779.70) END +VALUES ('yki', 'Yoke', NULL, 7803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoke', [Definition] = NULL, [SortOrder] = 779.70 WHERE [Code] = 'yki' END +SET [Description] = 'Yoke', [Definition] = NULL, [SortOrder] = 7803.00 WHERE [Code] = 'yki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yok', 'Yokuts', NULL, 779.80) END +VALUES ('yok', 'Yokuts', NULL, 7804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yokuts', [Definition] = NULL, [SortOrder] = 779.80 WHERE [Code] = 'yok' END +SET [Description] = 'Yokuts', [Definition] = NULL, [SortOrder] = 7804.00 WHERE [Code] = 'yok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygs', 'Yol?u Sign Language', NULL, 779.90) END +VALUES ('ygs', 'Yol?u Sign Language', NULL, 7805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yol?u Sign Language', [Definition] = NULL, [SortOrder] = 779.90 WHERE [Code] = 'ygs' END +SET [Description] = 'Yol?u Sign Language', [Definition] = NULL, [SortOrder] = 7805.00 WHERE [Code] = 'ygs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yol', 'Yola', NULL, 780.00) END +VALUES ('yol', 'Yola', NULL, 7806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yola', [Definition] = NULL, [SortOrder] = 780.00 WHERE [Code] = 'yol' END +SET [Description] = 'Yola', [Definition] = NULL, [SortOrder] = 7806.00 WHERE [Code] = 'yol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xty', 'Yoloxochitl Mixtec', NULL, 780.10) END +VALUES ('xty', 'Yoloxochitl Mixtec', NULL, 7807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoloxochitl Mixtec', [Definition] = NULL, [SortOrder] = 780.10 WHERE [Code] = 'xty' END +SET [Description] = 'Yoloxochitl Mixtec', [Definition] = NULL, [SortOrder] = 7807.00 WHERE [Code] = 'xty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pil', 'Yom', NULL, 780.20) END +VALUES ('pil', 'Yom', NULL, 7808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yom', [Definition] = NULL, [SortOrder] = 780.20 WHERE [Code] = 'pil' END +SET [Description] = 'Yom', [Definition] = NULL, [SortOrder] = 7808.00 WHERE [Code] = 'pil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yom', 'Yombe', NULL, 780.30) END +VALUES ('yom', 'Yombe', NULL, 7809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yombe', [Definition] = NULL, [SortOrder] = 780.30 WHERE [Code] = 'yom' END +SET [Description] = 'Yombe', [Definition] = NULL, [SortOrder] = 7809.00 WHERE [Code] = 'yom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yoi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yoi', 'Yonaguni', NULL, 780.40) END +VALUES ('yoi', 'Yonaguni', NULL, 7810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yonaguni', [Definition] = NULL, [SortOrder] = 780.40 WHERE [Code] = 'yoi' END +SET [Description] = 'Yonaguni', [Definition] = NULL, [SortOrder] = 7810.00 WHERE [Code] = 'yoi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yno', 'Yong', NULL, 780.50) END +VALUES ('yno', 'Yong', NULL, 7811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yong', [Definition] = NULL, [SortOrder] = 780.50 WHERE [Code] = 'yno' END +SET [Description] = 'Yong', [Definition] = NULL, [SortOrder] = 7811.00 WHERE [Code] = 'yno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyb', 'Yongbei Zhuang', NULL, 780.60) END +VALUES ('zyb', 'Yongbei Zhuang', NULL, 7812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yongbei Zhuang', [Definition] = NULL, [SortOrder] = 780.60 WHERE [Code] = 'zyb' END +SET [Description] = 'Yongbei Zhuang', [Definition] = NULL, [SortOrder] = 7812.00 WHERE [Code] = 'zyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yon', 'Yongkom', NULL, 780.70) END +VALUES ('yon', 'Yongkom', NULL, 7813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yongkom', [Definition] = NULL, [SortOrder] = 780.70 WHERE [Code] = 'yon' END +SET [Description] = 'Yongkom', [Definition] = NULL, [SortOrder] = 7813.00 WHERE [Code] = 'yon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyn', 'Yongnan Zhuang', NULL, 780.80) END +VALUES ('zyn', 'Yongnan Zhuang', NULL, 7814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yongnan Zhuang', [Definition] = NULL, [SortOrder] = 780.80 WHERE [Code] = 'zyn' END +SET [Description] = 'Yongnan Zhuang', [Definition] = NULL, [SortOrder] = 7814.00 WHERE [Code] = 'zyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yut', 'Yopno', NULL, 780.90) END +VALUES ('yut', 'Yopno', NULL, 7815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yopno', [Definition] = NULL, [SortOrder] = 780.90 WHERE [Code] = 'yut' END +SET [Description] = 'Yopno', [Definition] = NULL, [SortOrder] = 7815.00 WHERE [Code] = 'yut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mts', 'Yora', NULL, 781.00) END +VALUES ('mts', 'Yora', NULL, 7816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yora', [Definition] = NULL, [SortOrder] = 781.00 WHERE [Code] = 'mts' END +SET [Description] = 'Yora', [Definition] = NULL, [SortOrder] = 7816.00 WHERE [Code] = 'mts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yox', 'Yoron', NULL, 781.10) END +VALUES ('yox', 'Yoron', NULL, 7817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoron', [Definition] = NULL, [SortOrder] = 781.10 WHERE [Code] = 'yox' END +SET [Description] = 'Yoron', [Definition] = NULL, [SortOrder] = 7817.00 WHERE [Code] = 'yox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyy', 'Yorta Yorta', NULL, 781.20) END +VALUES ('xyy', 'Yorta Yorta', NULL, 7818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yorta Yorta', [Definition] = NULL, [SortOrder] = 781.20 WHERE [Code] = 'xyy' END +SET [Description] = 'Yorta Yorta', [Definition] = NULL, [SortOrder] = 7818.00 WHERE [Code] = 'xyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yor', 'Yoruba', NULL, 781.30) END +VALUES ('yor', 'Yoruba', NULL, 7819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoruba', [Definition] = NULL, [SortOrder] = 781.30 WHERE [Code] = 'yor' END +SET [Description] = 'Yoruba', [Definition] = NULL, [SortOrder] = 7819.00 WHERE [Code] = 'yor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpm', 'Yosondúa Mixtec', NULL, 781.40) END +VALUES ('mpm', 'Yosondúa Mixtec', NULL, 7820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yosondúa Mixtec', [Definition] = NULL, [SortOrder] = 781.40 WHERE [Code] = 'mpm' END +SET [Description] = 'Yosondúa Mixtec', [Definition] = NULL, [SortOrder] = 7820.00 WHERE [Code] = 'mpm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yot', 'Yotti', NULL, 781.50) END +VALUES ('yot', 'Yotti', NULL, 7821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yotti', [Definition] = NULL, [SortOrder] = 781.50 WHERE [Code] = 'yot' END +SET [Description] = 'Yotti', [Definition] = NULL, [SortOrder] = 7821.00 WHERE [Code] = 'yot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyj', 'Youjiang Zhuang', NULL, 781.60) END +VALUES ('zyj', 'Youjiang Zhuang', NULL, 7822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Youjiang Zhuang', [Definition] = NULL, [SortOrder] = 781.60 WHERE [Code] = 'zyj' END +SET [Description] = 'Youjiang Zhuang', [Definition] = NULL, [SortOrder] = 7822.00 WHERE [Code] = 'zyj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jiu', 'Youle Jinuo', NULL, 781.70) END +VALUES ('jiu', 'Youle Jinuo', NULL, 7823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Youle Jinuo', [Definition] = NULL, [SortOrder] = 781.70 WHERE [Code] = 'jiu' END +SET [Description] = 'Youle Jinuo', [Definition] = NULL, [SortOrder] = 7823.00 WHERE [Code] = 'jiu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buh', 'Younuo Bunu', NULL, 781.80) END +VALUES ('buh', 'Younuo Bunu', NULL, 7824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Younuo Bunu', [Definition] = NULL, [SortOrder] = 781.80 WHERE [Code] = 'buh' END +SET [Description] = 'Younuo Bunu', [Definition] = NULL, [SortOrder] = 7824.00 WHERE [Code] = 'buh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ytw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ytw', 'Yout Wam', NULL, 781.90) END +VALUES ('ytw', 'Yout Wam', NULL, 7825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yout Wam', [Definition] = NULL, [SortOrder] = 781.90 WHERE [Code] = 'ytw' END +SET [Description] = 'Yout Wam', [Definition] = NULL, [SortOrder] = 7825.00 WHERE [Code] = 'ytw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yoy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yoy', 'Yoy', NULL, 782.00) END +VALUES ('yoy', 'Yoy', NULL, 7826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoy', [Definition] = NULL, [SortOrder] = 782.00 WHERE [Code] = 'yoy' END +SET [Description] = 'Yoy', [Definition] = NULL, [SortOrder] = 7826.00 WHERE [Code] = 'yoy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nua', 'Yuanga', NULL, 782.10) END +VALUES ('nua', 'Yuanga', NULL, 7827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuanga', [Definition] = NULL, [SortOrder] = 782.10 WHERE [Code] = 'nua' END +SET [Description] = 'Yuanga', [Definition] = NULL, [SortOrder] = 7827.00 WHERE [Code] = 'nua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msd', 'Yucatec Maya Sign Language', NULL, 782.20) END +VALUES ('msd', 'Yucatec Maya Sign Language', NULL, 7828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yucatec Maya Sign Language', [Definition] = NULL, [SortOrder] = 782.20 WHERE [Code] = 'msd' END +SET [Description] = 'Yucatec Maya Sign Language', [Definition] = NULL, [SortOrder] = 7828.00 WHERE [Code] = 'msd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yua', 'Yucateco', NULL, 782.30) END +VALUES ('yua', 'Yucateco', NULL, 7829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yucateco', [Definition] = NULL, [SortOrder] = 782.30 WHERE [Code] = 'yua' END +SET [Description] = 'Yucateco', [Definition] = NULL, [SortOrder] = 7829.00 WHERE [Code] = 'yua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuc', 'Yuchi', NULL, 782.40) END +VALUES ('yuc', 'Yuchi', NULL, 7830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuchi', [Definition] = NULL, [SortOrder] = 782.40 WHERE [Code] = 'yuc' END +SET [Description] = 'Yuchi', [Definition] = NULL, [SortOrder] = 7830.00 WHERE [Code] = 'yuc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvg', 'Yucuañe Mixtec', NULL, 782.50) END +VALUES ('mvg', 'Yucuañe Mixtec', NULL, 7831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yucuañe Mixtec', [Definition] = NULL, [SortOrder] = 782.50 WHERE [Code] = 'mvg' END +SET [Description] = 'Yucuañe Mixtec', [Definition] = NULL, [SortOrder] = 7831.00 WHERE [Code] = 'mvg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ycn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ycn', 'Yucuna', NULL, 782.60) END +VALUES ('ycn', 'Yucuna', NULL, 7832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yucuna', [Definition] = NULL, [SortOrder] = 782.60 WHERE [Code] = 'ycn' END +SET [Description] = 'Yucuna', [Definition] = NULL, [SortOrder] = 7832.00 WHERE [Code] = 'ycn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yue', 'Yue Chinese', NULL, 782.70) END +VALUES ('yue', 'Yue Chinese', NULL, 7833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yue Chinese', [Definition] = NULL, [SortOrder] = 782.70 WHERE [Code] = 'yue' END +SET [Description] = 'Yue Chinese', [Definition] = NULL, [SortOrder] = 7833.00 WHERE [Code] = 'yue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yug', 'Yug', NULL, 782.80) END +VALUES ('yug', 'Yug', NULL, 7834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yug', [Definition] = NULL, [SortOrder] = 782.80 WHERE [Code] = 'yug' END +SET [Description] = 'Yug', [Definition] = NULL, [SortOrder] = 7834.00 WHERE [Code] = 'yug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yub', 'Yugambal', NULL, 782.90) END +VALUES ('yub', 'Yugambal', NULL, 7835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yugambal', [Definition] = NULL, [SortOrder] = 782.90 WHERE [Code] = 'yub' END +SET [Description] = 'Yugambal', [Definition] = NULL, [SortOrder] = 7835.00 WHERE [Code] = 'yub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysl', 'Yugoslavian Sign Language', NULL, 783.00) END +VALUES ('ysl', 'Yugoslavian Sign Language', NULL, 7836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yugoslavian Sign Language', [Definition] = NULL, [SortOrder] = 783.00 WHERE [Code] = 'ysl' END +SET [Description] = 'Yugoslavian Sign Language', [Definition] = NULL, [SortOrder] = 7836.00 WHERE [Code] = 'ysl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygu', 'Yugul', NULL, 783.10) END +VALUES ('ygu', 'Yugul', NULL, 7837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yugul', [Definition] = NULL, [SortOrder] = 783.10 WHERE [Code] = 'ygu' END +SET [Description] = 'Yugul', [Definition] = NULL, [SortOrder] = 7837.00 WHERE [Code] = 'ygu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yab', 'Yuhup', NULL, 783.20) END +VALUES ('yab', 'Yuhup', NULL, 7838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuhup', [Definition] = NULL, [SortOrder] = 783.20 WHERE [Code] = 'yab' END +SET [Description] = 'Yuhup', [Definition] = NULL, [SortOrder] = 7838.00 WHERE [Code] = 'yab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuk', 'Yuki', NULL, 783.30) END +VALUES ('yuk', 'Yuki', NULL, 7839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuki', [Definition] = NULL, [SortOrder] = 783.30 WHERE [Code] = 'yuk' END +SET [Description] = 'Yuki', [Definition] = NULL, [SortOrder] = 7839.00 WHERE [Code] = 'yuk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yup', 'Yukpa', NULL, 783.40) END +VALUES ('yup', 'Yukpa', NULL, 7840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yukpa', [Definition] = NULL, [SortOrder] = 783.40 WHERE [Code] = 'yup' END +SET [Description] = 'Yukpa', [Definition] = NULL, [SortOrder] = 7840.00 WHERE [Code] = 'yup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybl', 'Yukuben', NULL, 783.50) END +VALUES ('ybl', 'Yukuben', NULL, 7841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yukuben', [Definition] = NULL, [SortOrder] = 783.50 WHERE [Code] = 'ybl' END +SET [Description] = 'Yukuben', [Definition] = NULL, [SortOrder] = 7841.00 WHERE [Code] = 'ybl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yul', 'Yulu', NULL, 783.60) END +VALUES ('yul', 'Yulu', NULL, 7842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yulu', [Definition] = NULL, [SortOrder] = 783.60 WHERE [Code] = 'yul' END +SET [Description] = 'Yulu', [Definition] = NULL, [SortOrder] = 7842.00 WHERE [Code] = 'yul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuq', 'Yuqui', NULL, 783.70) END +VALUES ('yuq', 'Yuqui', NULL, 7843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuqui', [Definition] = NULL, [SortOrder] = 783.70 WHERE [Code] = 'yuq' END +SET [Description] = 'Yuqui', [Definition] = NULL, [SortOrder] = 7843.00 WHERE [Code] = 'yuq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuz', 'Yuracare', NULL, 783.80) END +VALUES ('yuz', 'Yuracare', NULL, 7844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuracare', [Definition] = NULL, [SortOrder] = 783.80 WHERE [Code] = 'yuz' END +SET [Description] = 'Yuracare', [Definition] = NULL, [SortOrder] = 7844.00 WHERE [Code] = 'yuz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rts', 'Yurats', NULL, 783.90) END +VALUES ('rts', 'Yurats', NULL, 7845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yurats', [Definition] = NULL, [SortOrder] = 783.90 WHERE [Code] = 'rts' END +SET [Description] = 'Yurats', [Definition] = NULL, [SortOrder] = 7845.00 WHERE [Code] = 'rts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yur', 'Yurok', NULL, 784.00) END +VALUES ('yur', 'Yurok', NULL, 7846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yurok', [Definition] = NULL, [SortOrder] = 784.00 WHERE [Code] = 'yur' END +SET [Description] = 'Yurok', [Definition] = NULL, [SortOrder] = 7846.00 WHERE [Code] = 'yur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ljx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ljx', 'Yuru', NULL, 784.10) END +VALUES ('ljx', 'Yuru', NULL, 7847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuru', [Definition] = NULL, [SortOrder] = 784.10 WHERE [Code] = 'ljx' END +SET [Description] = 'Yuru', [Definition] = NULL, [SortOrder] = 7847.00 WHERE [Code] = 'ljx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yui', 'Yurutí', NULL, 784.20) END +VALUES ('yui', 'Yurutí', NULL, 7848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yurutí', [Definition] = NULL, [SortOrder] = 784.20 WHERE [Code] = 'yui' END +SET [Description] = 'Yurutí', [Definition] = NULL, [SortOrder] = 7848.00 WHERE [Code] = 'yui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mab', 'Yutanduchi Mixtec', NULL, 784.30) END +VALUES ('mab', 'Yutanduchi Mixtec', NULL, 7849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yutanduchi Mixtec', [Definition] = NULL, [SortOrder] = 784.30 WHERE [Code] = 'mab' END +SET [Description] = 'Yutanduchi Mixtec', [Definition] = NULL, [SortOrder] = 7849.00 WHERE [Code] = 'mab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yau', 'Yuwana', NULL, 784.40) END +VALUES ('yau', 'Yuwana', NULL, 7850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuwana', [Definition] = NULL, [SortOrder] = 784.40 WHERE [Code] = 'yau' END +SET [Description] = 'Yuwana', [Definition] = NULL, [SortOrder] = 7850.00 WHERE [Code] = 'yau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxu', 'Yuyu', NULL, 784.50) END +VALUES ('yxu', 'Yuyu', NULL, 7851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuyu', [Definition] = NULL, [SortOrder] = 784.50 WHERE [Code] = 'yxu' END +SET [Description] = 'Yuyu', [Definition] = NULL, [SortOrder] = 7851.00 WHERE [Code] = 'yxu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gek', 'Ywom', NULL, 784.60) END +VALUES ('gek', 'Ywom', NULL, 7852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ywom', [Definition] = NULL, [SortOrder] = 784.60 WHERE [Code] = 'gek' END +SET [Description] = 'Ywom', [Definition] = NULL, [SortOrder] = 7852.00 WHERE [Code] = 'gek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztx', 'Zaachila Zapotec', NULL, 784.70) END +VALUES ('ztx', 'Zaachila Zapotec', NULL, 7853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaachila Zapotec', [Definition] = NULL, [SortOrder] = 784.70 WHERE [Code] = 'ztx' END +SET [Description] = 'Zaachila Zapotec', [Definition] = NULL, [SortOrder] = 7853.00 WHERE [Code] = 'ztx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kji', 'Zabana', NULL, 784.80) END +VALUES ('kji', 'Zabana', NULL, 7854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zabana', [Definition] = NULL, [SortOrder] = 784.80 WHERE [Code] = 'kji' END +SET [Description] = 'Zabana', [Definition] = NULL, [SortOrder] = 7854.00 WHERE [Code] = 'kji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctz', 'Zacatepec Chatino', NULL, 784.90) END +VALUES ('ctz', 'Zacatepec Chatino', NULL, 7855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zacatepec Chatino', [Definition] = NULL, [SortOrder] = 784.90 WHERE [Code] = 'ctz' END +SET [Description] = 'Zacatepec Chatino', [Definition] = NULL, [SortOrder] = 7855.00 WHERE [Code] = 'ctz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhi', 'Zacatlán-Ahuacatlán-Tepetzintla Nahuatl', NULL, 785.00) END +VALUES ('nhi', 'Zacatlán-Ahuacatlán-Tepetzintla Nahuatl', NULL, 7856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zacatlán-Ahuacatlán-Tepetzintla Nahuatl', [Definition] = NULL, [SortOrder] = 785.00 WHERE [Code] = 'nhi' END +SET [Description] = 'Zacatlán-Ahuacatlán-Tepetzintla Nahuatl', [Definition] = NULL, [SortOrder] = 7856.00 WHERE [Code] = 'nhi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zag', 'Zaghawa', NULL, 785.10) END +VALUES ('zag', 'Zaghawa', NULL, 7857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaghawa', [Definition] = NULL, [SortOrder] = 785.10 WHERE [Code] = 'zag' END +SET [Description] = 'Zaghawa', [Definition] = NULL, [SortOrder] = 7857.00 WHERE [Code] = 'zag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atb', 'Zaiwa', NULL, 785.20) END +VALUES ('atb', 'Zaiwa', NULL, 7858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaiwa', [Definition] = NULL, [SortOrder] = 785.20 WHERE [Code] = 'atb' END +SET [Description] = 'Zaiwa', [Definition] = NULL, [SortOrder] = 7858.00 WHERE [Code] = 'atb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkr', 'Zakhring', NULL, 785.30) END +VALUES ('zkr', 'Zakhring', NULL, 7859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zakhring', [Definition] = NULL, [SortOrder] = 785.30 WHERE [Code] = 'zkr' END +SET [Description] = 'Zakhring', [Definition] = NULL, [SortOrder] = 7859.00 WHERE [Code] = 'zkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsl', 'Zambian Sign Language', NULL, 785.40) END +VALUES ('zsl', 'Zambian Sign Language', NULL, 7860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zambian Sign Language', [Definition] = NULL, [SortOrder] = 785.40 WHERE [Code] = 'zsl' END +SET [Description] = 'Zambian Sign Language', [Definition] = NULL, [SortOrder] = 7860.00 WHERE [Code] = 'zsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zna', 'Zan Gula', NULL, 785.50) END +VALUES ('zna', 'Zan Gula', NULL, 7861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zan Gula', [Definition] = NULL, [SortOrder] = 785.50 WHERE [Code] = 'zna' END +SET [Description] = 'Zan Gula', [Definition] = NULL, [SortOrder] = 7861.00 WHERE [Code] = 'zna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zak', 'Zanaki', NULL, 785.60) END +VALUES ('zak', 'Zanaki', NULL, 7862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zanaki', [Definition] = NULL, [SortOrder] = 785.60 WHERE [Code] = 'zak' END +SET [Description] = 'Zanaki', [Definition] = NULL, [SortOrder] = 7862.00 WHERE [Code] = 'zak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zne', 'Zande (individual language)', NULL, 785.70) END +VALUES ('zne', 'Zande (individual language)', NULL, 7863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zande (individual language)', [Definition] = NULL, [SortOrder] = 785.70 WHERE [Code] = 'zne' END +SET [Description] = 'Zande (individual language)', [Definition] = NULL, [SortOrder] = 7863.00 WHERE [Code] = 'zne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zau', 'Zangskari', NULL, 785.80) END +VALUES ('zau', 'Zangskari', NULL, 7864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zangskari', [Definition] = NULL, [SortOrder] = 785.80 WHERE [Code] = 'zau' END +SET [Description] = 'Zangskari', [Definition] = NULL, [SortOrder] = 7864.00 WHERE [Code] = 'zau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zah', 'Zangwal', NULL, 785.90) END +VALUES ('zah', 'Zangwal', NULL, 7865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zangwal', [Definition] = NULL, [SortOrder] = 785.90 WHERE [Code] = 'zah' END +SET [Description] = 'Zangwal', [Definition] = NULL, [SortOrder] = 7865.00 WHERE [Code] = 'zah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpw', 'Zaniza Zapotec', NULL, 786.00) END +VALUES ('zpw', 'Zaniza Zapotec', NULL, 7866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaniza Zapotec', [Definition] = NULL, [SortOrder] = 786.00 WHERE [Code] = 'zpw' END +SET [Description] = 'Zaniza Zapotec', [Definition] = NULL, [SortOrder] = 7866.00 WHERE [Code] = 'zpw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zro', 'Záparo', NULL, 786.10) END +VALUES ('zro', 'Záparo', NULL, 7867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Záparo', [Definition] = NULL, [SortOrder] = 786.10 WHERE [Code] = 'zro' END +SET [Description] = 'Záparo', [Definition] = NULL, [SortOrder] = 7867.00 WHERE [Code] = 'zro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zap', 'Zapotec', NULL, 786.20) END +VALUES ('zap', 'Zapotec', NULL, 7868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zapotec', [Definition] = NULL, [SortOrder] = 786.20 WHERE [Code] = 'zap' END +SET [Description] = 'Zapotec', [Definition] = NULL, [SortOrder] = 7868.00 WHERE [Code] = 'zap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaj', 'Zaramo', NULL, 786.30) END +VALUES ('zaj', 'Zaramo', NULL, 7869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaramo', [Definition] = NULL, [SortOrder] = 786.30 WHERE [Code] = 'zaj' END +SET [Description] = 'Zaramo', [Definition] = NULL, [SortOrder] = 7869.00 WHERE [Code] = 'zaj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaz', 'Zari', NULL, 786.40) END +VALUES ('zaz', 'Zari', NULL, 7870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zari', [Definition] = NULL, [SortOrder] = 786.40 WHERE [Code] = 'zaz' END +SET [Description] = 'Zari', [Definition] = NULL, [SortOrder] = 7870.00 WHERE [Code] = 'zaz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dje', 'Zarma', NULL, 786.50) END +VALUES ('dje', 'Zarma', NULL, 7871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zarma', [Definition] = NULL, [SortOrder] = 786.50 WHERE [Code] = 'dje' END +SET [Description] = 'Zarma', [Definition] = NULL, [SortOrder] = 7871.00 WHERE [Code] = 'dje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zrp', 'Zarphatic', NULL, 786.60) END +VALUES ('zrp', 'Zarphatic', NULL, 7872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zarphatic', [Definition] = NULL, [SortOrder] = 786.60 WHERE [Code] = 'zrp' END +SET [Description] = 'Zarphatic', [Definition] = NULL, [SortOrder] = 7872.00 WHERE [Code] = 'zrp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zal', 'Zauzou', NULL, 786.70) END +VALUES ('zal', 'Zauzou', NULL, 7873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zauzou', [Definition] = NULL, [SortOrder] = 786.70 WHERE [Code] = 'zal' END +SET [Description] = 'Zauzou', [Definition] = NULL, [SortOrder] = 7873.00 WHERE [Code] = 'zal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zwa', 'Zay', NULL, 786.80) END +VALUES ('zwa', 'Zay', NULL, 7874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zay', [Definition] = NULL, [SortOrder] = 786.80 WHERE [Code] = 'zwa' END +SET [Description] = 'Zay', [Definition] = NULL, [SortOrder] = 7874.00 WHERE [Code] = 'zwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxk', 'Zayein Karen', NULL, 786.90) END +VALUES ('kxk', 'Zayein Karen', NULL, 7875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zayein Karen', [Definition] = NULL, [SortOrder] = 786.90 WHERE [Code] = 'kxk' END +SET [Description] = 'Zayein Karen', [Definition] = NULL, [SortOrder] = 7875.00 WHERE [Code] = 'kxk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zay', 'Zayse-Zergulla', NULL, 787.00) END +VALUES ('zay', 'Zayse-Zergulla', NULL, 7876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zayse-Zergulla', [Definition] = NULL, [SortOrder] = 787.00 WHERE [Code] = 'zay' END +SET [Description] = 'Zayse-Zergulla', [Definition] = NULL, [SortOrder] = 7876.00 WHERE [Code] = 'zay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zza', 'Zaza', NULL, 787.10) END +VALUES ('zza', 'Zaza', NULL, 7877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaza', [Definition] = NULL, [SortOrder] = 787.10 WHERE [Code] = 'zza' END +SET [Description] = 'Zaza', [Definition] = NULL, [SortOrder] = 7877.00 WHERE [Code] = 'zza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaj', 'Zazao', NULL, 787.20) END +VALUES ('jaj', 'Zazao', NULL, 7878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zazao', [Definition] = NULL, [SortOrder] = 787.20 WHERE [Code] = 'jaj' END +SET [Description] = 'Zazao', [Definition] = NULL, [SortOrder] = 7878.00 WHERE [Code] = 'jaj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zua', 'Zeem', NULL, 787.30) END +VALUES ('zua', 'Zeem', NULL, 7879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zeem', [Definition] = NULL, [SortOrder] = 787.30 WHERE [Code] = 'zua' END +SET [Description] = 'Zeem', [Definition] = NULL, [SortOrder] = 7879.00 WHERE [Code] = 'zua' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('zem', 'Zeem', NULL, 7880.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Zeem', [Definition] = NULL, [SortOrder] = 7880.00 WHERE [Code] = 'zem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zea', 'Zeeuws', NULL, 787.40) END +VALUES ('zea', 'Zeeuws', NULL, 7881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zeeuws', [Definition] = NULL, [SortOrder] = 787.40 WHERE [Code] = 'zea' END +SET [Description] = 'Zeeuws', [Definition] = NULL, [SortOrder] = 7881.00 WHERE [Code] = 'zea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhm', 'Zemba', NULL, 787.50) END +VALUES ('dhm', 'Zemba', NULL, 7882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zemba', [Definition] = NULL, [SortOrder] = 787.50 WHERE [Code] = 'dhm' END +SET [Description] = 'Zemba', [Definition] = NULL, [SortOrder] = 7882.00 WHERE [Code] = 'dhm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzm', 'Zeme Naga', NULL, 787.60) END +VALUES ('nzm', 'Zeme Naga', NULL, 7883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zeme Naga', [Definition] = NULL, [SortOrder] = 787.60 WHERE [Code] = 'nzm' END +SET [Description] = 'Zeme Naga', [Definition] = NULL, [SortOrder] = 7883.00 WHERE [Code] = 'nzm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xzm', 'Zemgalian', NULL, 787.70) END +VALUES ('xzm', 'Zemgalian', NULL, 7884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zemgalian', [Definition] = NULL, [SortOrder] = 787.70 WHERE [Code] = 'xzm' END +SET [Description] = 'Zemgalian', [Definition] = NULL, [SortOrder] = 7884.00 WHERE [Code] = 'xzm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zeg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zeg', 'Zenag', NULL, 787.80) END +VALUES ('zeg', 'Zenag', NULL, 7885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zenag', [Definition] = NULL, [SortOrder] = 787.80 WHERE [Code] = 'zeg' END +SET [Description] = 'Zenag', [Definition] = NULL, [SortOrder] = 7885.00 WHERE [Code] = 'zeg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zen', 'Zenaga', NULL, 787.90) END +VALUES ('zen', 'Zenaga', NULL, 7886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zenaga', [Definition] = NULL, [SortOrder] = 787.90 WHERE [Code] = 'zen' END +SET [Description] = 'Zenaga', [Definition] = NULL, [SortOrder] = 7886.00 WHERE [Code] = 'zen' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czn', 'Zenzontepec Chatino', NULL, 788.00) END +VALUES ('czn', 'Zenzontepec Chatino', NULL, 7887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zenzontepec Chatino', [Definition] = NULL, [SortOrder] = 788.00 WHERE [Code] = 'czn' END +SET [Description] = 'Zenzontepec Chatino', [Definition] = NULL, [SortOrder] = 7887.00 WHERE [Code] = 'czn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zrn', 'Zerenkel', NULL, 788.10) END +VALUES ('zrn', 'Zerenkel', NULL, 7888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zerenkel', [Definition] = NULL, [SortOrder] = 788.10 WHERE [Code] = 'zrn' END +SET [Description] = 'Zerenkel', [Definition] = NULL, [SortOrder] = 7888.00 WHERE [Code] = 'zrn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhb', 'Zhaba', NULL, 788.20) END +VALUES ('zhb', 'Zhaba', NULL, 7889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhaba', [Definition] = NULL, [SortOrder] = 788.20 WHERE [Code] = 'zhb' END +SET [Description] = 'Zhaba', [Definition] = NULL, [SortOrder] = 7889.00 WHERE [Code] = 'zhb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xzh', 'Zhang-Zhung', NULL, 788.30) END +VALUES ('xzh', 'Zhang-Zhung', NULL, 7890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhang-Zhung', [Definition] = NULL, [SortOrder] = 788.30 WHERE [Code] = 'xzh' END +SET [Description] = 'Zhang-Zhung', [Definition] = NULL, [SortOrder] = 7890.00 WHERE [Code] = 'xzh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhi', 'Zhire', NULL, 788.40) END +VALUES ('zhi', 'Zhire', NULL, 7891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhire', [Definition] = NULL, [SortOrder] = 788.40 WHERE [Code] = 'zhi' END +SET [Description] = 'Zhire', [Definition] = NULL, [SortOrder] = 7891.00 WHERE [Code] = 'zhi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhw', 'Zhoa', NULL, 788.50) END +VALUES ('zhw', 'Zhoa', NULL, 7892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhoa', [Definition] = NULL, [SortOrder] = 788.50 WHERE [Code] = 'zhw' END +SET [Description] = 'Zhoa', [Definition] = NULL, [SortOrder] = 7892.00 WHERE [Code] = 'zhw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zha', 'Zhuang', NULL, 788.60) END +VALUES ('zha', 'Zhuang', NULL, 7893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhuang', [Definition] = NULL, [SortOrder] = 788.60 WHERE [Code] = 'zha' END +SET [Description] = 'Zhuang', [Definition] = NULL, [SortOrder] = 7893.00 WHERE [Code] = 'zha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zia', 'Zia', NULL, 788.70) END +VALUES ('zia', 'Zia', NULL, 7894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zia', [Definition] = NULL, [SortOrder] = 788.70 WHERE [Code] = 'zia' END +SET [Description] = 'Zia', [Definition] = NULL, [SortOrder] = 7894.00 WHERE [Code] = 'zia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zil', 'Zialo', NULL, 788.80) END +VALUES ('zil', 'Zialo', NULL, 7895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zialo', [Definition] = NULL, [SortOrder] = 788.80 WHERE [Code] = 'zil' END +SET [Description] = 'Zialo', [Definition] = NULL, [SortOrder] = 7895.00 WHERE [Code] = 'zil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ziw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ziw', 'Zigula', NULL, 788.90) END +VALUES ('ziw', 'Zigula', NULL, 7896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zigula', [Definition] = NULL, [SortOrder] = 788.90 WHERE [Code] = 'ziw' END +SET [Description] = 'Zigula', [Definition] = NULL, [SortOrder] = 7896.00 WHERE [Code] = 'ziw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zik', 'Zimakani', NULL, 789.00) END +VALUES ('zik', 'Zimakani', NULL, 7897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zimakani', [Definition] = NULL, [SortOrder] = 789.00 WHERE [Code] = 'zik' END +SET [Description] = 'Zimakani', [Definition] = NULL, [SortOrder] = 7897.00 WHERE [Code] = 'zik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmb', 'Zimba', NULL, 789.10) END +VALUES ('zmb', 'Zimba', NULL, 7898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zimba', [Definition] = NULL, [SortOrder] = 789.10 WHERE [Code] = 'zmb' END +SET [Description] = 'Zimba', [Definition] = NULL, [SortOrder] = 7898.00 WHERE [Code] = 'zmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zib', 'Zimbabwe Sign Language', NULL, 789.20) END +VALUES ('zib', 'Zimbabwe Sign Language', NULL, 7899.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zimbabwe Sign Language', [Definition] = NULL, [SortOrder] = 789.20 WHERE [Code] = 'zib' END +SET [Description] = 'Zimbabwe Sign Language', [Definition] = NULL, [SortOrder] = 7899.00 WHERE [Code] = 'zib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zin', 'Zinza', NULL, 789.30) END +VALUES ('zin', 'Zinza', NULL, 7900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zinza', [Definition] = NULL, [SortOrder] = 789.30 WHERE [Code] = 'zin' END +SET [Description] = 'Zinza', [Definition] = NULL, [SortOrder] = 7900.00 WHERE [Code] = 'zin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sih', 'Zire', NULL, 789.40) END +VALUES ('sih', 'Zire', NULL, 7901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zire', [Definition] = NULL, [SortOrder] = 789.40 WHERE [Code] = 'sih' END +SET [Description] = 'Zire', [Definition] = NULL, [SortOrder] = 7901.00 WHERE [Code] = 'sih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ziz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ziz', 'Zizilivakan', NULL, 789.50) END +VALUES ('ziz', 'Zizilivakan', NULL, 7902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zizilivakan', [Definition] = NULL, [SortOrder] = 789.50 WHERE [Code] = 'ziz' END +SET [Description] = 'Zizilivakan', [Definition] = NULL, [SortOrder] = 7902.00 WHERE [Code] = 'ziz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pto', 'Zo''é', NULL, 789.60) END +VALUES ('pto', 'Zo''é', NULL, 7903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zo''é', [Definition] = NULL, [SortOrder] = 789.60 WHERE [Code] = 'pto' END +SET [Description] = 'Zo''é', [Definition] = NULL, [SortOrder] = 7903.00 WHERE [Code] = 'pto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yzk', 'Zokhuo', NULL, 789.70) END +VALUES ('yzk', 'Zokhuo', NULL, 7904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zokhuo', [Definition] = NULL, [SortOrder] = 789.70 WHERE [Code] = 'yzk' END +SET [Description] = 'Zokhuo', [Definition] = NULL, [SortOrder] = 7904.00 WHERE [Code] = 'yzk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpq', 'Zoogocho Zapotec', NULL, 789.80) END +VALUES ('zpq', 'Zoogocho Zapotec', NULL, 7905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zoogocho Zapotec', [Definition] = NULL, [SortOrder] = 789.80 WHERE [Code] = 'zpq' END +SET [Description] = 'Zoogocho Zapotec', [Definition] = NULL, [SortOrder] = 7905.00 WHERE [Code] = 'zpq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbz', 'Zoroastrian Dari', NULL, 789.90) END +VALUES ('gbz', 'Zoroastrian Dari', NULL, 7906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zoroastrian Dari', [Definition] = NULL, [SortOrder] = 789.90 WHERE [Code] = 'gbz' END +SET [Description] = 'Zoroastrian Dari', [Definition] = NULL, [SortOrder] = 7906.00 WHERE [Code] = 'gbz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czt', 'Zotung Chin', NULL, 790.00) END +VALUES ('czt', 'Zotung Chin', NULL, 7907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zotung Chin', [Definition] = NULL, [SortOrder] = 790.00 WHERE [Code] = 'czt' END +SET [Description] = 'Zotung Chin', [Definition] = NULL, [SortOrder] = 7907.00 WHERE [Code] = 'czt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zom', 'Zou', NULL, 790.10) END +VALUES ('zom', 'Zou', NULL, 7908.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Zou', [Definition] = NULL, [SortOrder] = 7908.00 WHERE [Code] = 'zom' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('zul', 'Zul', NULL, 7909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zou', [Definition] = NULL, [SortOrder] = 790.10 WHERE [Code] = 'zom' END +SET [Description] = 'Zul', [Definition] = NULL, [SortOrder] = 7909.00 WHERE [Code] = 'zul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zla', 'Zula', NULL, 790.20) END +VALUES ('zla', 'Zula', NULL, 7910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zula', [Definition] = NULL, [SortOrder] = 790.20 WHERE [Code] = 'zla' END +SET [Description] = 'Zula', [Definition] = NULL, [SortOrder] = 7910.00 WHERE [Code] = 'zla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnd', 'Zulgo-Gemzek', NULL, 790.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zulgo-Gemzek', [Definition] = NULL, [SortOrder] = 790.30 WHERE [Code] = 'gnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zul', 'Zulu', NULL, 790.40) END +VALUES ('gnd', 'Zulgo-Gemzek', NULL, 7911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zulu', [Definition] = NULL, [SortOrder] = 790.40 WHERE [Code] = 'zul' END +SET [Description] = 'Zulgo-Gemzek', [Definition] = NULL, [SortOrder] = 7911.00 WHERE [Code] = 'gnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zuy', 'Zumaya', NULL, 790.50) END +VALUES ('zuy', 'Zumaya', NULL, 7912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zumaya', [Definition] = NULL, [SortOrder] = 790.50 WHERE [Code] = 'zuy' END +SET [Description] = 'Zumaya', [Definition] = NULL, [SortOrder] = 7912.00 WHERE [Code] = 'zuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmb', 'Zumbun', NULL, 790.60) END +VALUES ('jmb', 'Zumbun', NULL, 7913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zumbun', [Definition] = NULL, [SortOrder] = 790.60 WHERE [Code] = 'jmb' END +SET [Description] = 'Zumbun', [Definition] = NULL, [SortOrder] = 7913.00 WHERE [Code] = 'jmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zun', 'Zuni', NULL, 790.70) END +VALUES ('zun', 'Zuni', NULL, 7914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zuni', [Definition] = NULL, [SortOrder] = 790.70 WHERE [Code] = 'zun' END +SET [Description] = 'Zuni', [Definition] = NULL, [SortOrder] = 7914.00 WHERE [Code] = 'zun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zzj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zzj', 'Zuojiang Zhuang', NULL, 790.80) END +VALUES ('zzj', 'Zuojiang Zhuang', NULL, 7915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zuojiang Zhuang', [Definition] = NULL, [SortOrder] = 790.80 WHERE [Code] = 'zzj' END +SET [Description] = 'Zuojiang Zhuang', [Definition] = NULL, [SortOrder] = 7915.00 WHERE [Code] = 'zzj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyp', 'Zyphe Chin', NULL, 790.90) END +VALUES ('zyp', 'Zyphe Chin', NULL, 7916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zyphe Chin', [Definition] = NULL, [SortOrder] = 790.90 WHERE [Code] = 'zyp' END +SET [Description] = 'Zyphe Chin', [Definition] = NULL, [SortOrder] = 7916.00 WHERE [Code] = 'zyp' END END PRINT N'Populate RefISO6395LanguageFamily table' @@ -55299,6 +55474,18 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'IEPS VALUES ('IEPServiceProvider', 'Individualized education program service provider', 'The role/relationship type assigned to an organization, institution, or agency responsible for providing services to meet the requirements of the student''s Individualized Education Program (IEP).', 7.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] SET [Description] = 'Individualized education program service provider', [Definition] = 'The role/relationship type assigned to an organization, institution, or agency responsible for providing services to meet the requirements of the student''s Individualized Education Program (IEP).', [SortOrder] = 7.00 WHERE [Code] = 'IEPServiceProvider' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'Assessment') BEGIN INSERT INTO dbo.[RefK12ResponsibilityType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Assessment', 'Assessment', 'The role/relationship type assigned to an organization, institution, or agency responsible for assessing the student.', 8.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] +SET [Description] = 'Assessment', [Definition] = 'The role/relationship type assigned to an organization, institution, or agency responsible for assessing the student.', [SortOrder] = 8.00 WHERE [Code] = 'Assessment' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'Instruction') BEGIN INSERT INTO dbo.[RefK12ResponsibilityType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Instruction', 'Instruction', 'The role/relationship type assigned to an organization, institution, or agency responsible for providing instruction to the student.', 9.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] +SET [Description] = 'Instruction', [Definition] = 'The role/relationship type assigned to an organization, institution, or agency responsible for providing instruction to the student.', [SortOrder] = 9.00 WHERE [Code] = 'Instruction' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'Resident') BEGIN INSERT INTO dbo.[RefK12ResponsibilityType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Resident', 'Resident', 'The role/relationship type assigned to an organization, institution, or agency in which the student resides.', 10.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] +SET [Description] = 'Resident', [Definition] = 'The role/relationship type assigned to an organization, institution, or agency in which the student resides.', [SortOrder] = 10.00 WHERE [Code] = 'Resident' END END PRINT N'Populate RefK12StaffClassification table' @@ -58731,24 +58918,6 @@ ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMethodOfServiceDelivery] SET [Description] = 'Group', [Definition] = 'The services will be provided in a group.', [SortOrder] = 4.00 WHERE [Code] = 'Group' END END -PRINT N'Populate RefMilitaryActiveStudentIndicator table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMilitaryActiveStudentIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryActiveStudentIndicator] WHERE [Code] = 'NotActive') BEGIN INSERT INTO dbo.[RefMilitaryActiveStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotActive', 'Not Active', 'Student is not active in the military.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryActiveStudentIndicator] -SET [Description] = 'Not Active', [Definition] = 'Student is not active in the military.', [SortOrder] = 1.00 WHERE [Code] = 'NotActive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryActiveStudentIndicator] WHERE [Code] = 'Active') BEGIN INSERT INTO dbo.[RefMilitaryActiveStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Active', 'Active', 'Student is an Active member of the Active Duty Forces, National Guard, or Reserve Forces.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryActiveStudentIndicator] -SET [Description] = 'Active', [Definition] = 'Student is an Active member of the Active Duty Forces, National Guard, or Reserve Forces.', [SortOrder] = 3.00 WHERE [Code] = 'Active' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryActiveStudentIndicator] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefMilitaryActiveStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'It is unknown whether or not the Student is active in the military.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryActiveStudentIndicator] -SET [Description] = 'Unknown', [Definition] = 'It is unknown whether or not the Student is active in the military.', [SortOrder] = 5.00 WHERE [Code] = 'Unknown' END -END - PRINT N'Populate RefMilitaryBranch table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMilitaryBranch]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) @@ -58801,22 +58970,22 @@ ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryConnectedStudentIndicat SET [Description] = 'Unknown', [Definition] = 'It is unknown whether or not the student is military-connected.', [SortOrder] = 7.00 WHERE [Code] = 'Unknown' END END -PRINT N'Populate RefMilitaryVeteranStudentIndicator table' +PRINT N'Populate RefMilitaryVeteranStatusIndicator table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMilitaryVeteranStudentIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) +IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMilitaryVeteranStatusIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStudentIndicator] WHERE [Code] = 'NotVeteran') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotVeteran', 'Not a Veteran', 'Student is not a veteran of the military.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStudentIndicator] -SET [Description] = 'Not a Veteran', [Definition] = 'Student is not a veteran of the military.', [SortOrder] = 1.00 WHERE [Code] = 'NotVeteran' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStudentIndicator] WHERE [Code] = 'Veteran') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Veteran', 'Veteran', 'Student is a Veteran of the Active Duty Forces, National Guard, or Reserve Forces.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStudentIndicator] -SET [Description] = 'Veteran', [Definition] = 'Student is a Veteran of the Active Duty Forces, National Guard, or Reserve Forces.', [SortOrder] = 3.00 WHERE [Code] = 'Veteran' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStudentIndicator] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'It is unknown whether or not the Student is a veteran of the military.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStudentIndicator] -SET [Description] = 'Unknown', [Definition] = 'It is unknown whether or not the Student is a veteran of the military.', [SortOrder] = 5.00 WHERE [Code] = 'Unknown' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStatusIndicator] WHERE [Code] = 'NotVeteran') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStatusIndicator]([Code], [Description], [Definition], [SortOrder]) +VALUES ('NotVeteran', 'Not a Veteran', 'Person is not a veteran of the military.', 1.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStatusIndicator] +SET [Description] = 'Not a Veteran', [Definition] = 'Person is not a veteran of the military.', [SortOrder] = 1.00 WHERE [Code] = 'NotVeteran' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStatusIndicator] WHERE [Code] = 'Veteran') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStatusIndicator]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Veteran', 'Veteran', 'Person is a Veteran of the Active Duty Forces, National Guard, or Reserve Forces.', 3.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStatusIndicator] +SET [Description] = 'Veteran', [Definition] = 'Person is a Veteran of the Active Duty Forces, National Guard, or Reserve Forces.', [SortOrder] = 3.00 WHERE [Code] = 'Veteran' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStatusIndicator] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStatusIndicator]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Unknown', 'Unknown', 'It is unknown whether the Person is a veteran of the military.', 5.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStatusIndicator] +SET [Description] = 'Unknown', [Definition] = 'It is unknown whether the Person is a veteran of the military.', [SortOrder] = 5.00 WHERE [Code] = 'Unknown' END END PRINT N'Populate RefMultipleIntelligenceType table' @@ -58937,36 +59106,6 @@ ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeedDeterminationMethod] SET [Description] = 'Institutional', [Definition] = 'Institutional', [SortOrder] = 2.00 WHERE [Code] = 'Institutional' END END -PRINT N'Populate RefNeglectedProgramType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefNeglectedProgramType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'NeglectedPrograms') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NeglectedPrograms', 'Neglected programs', 'Neglected programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Neglected programs', [Definition] = 'Neglected programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 1.00 WHERE [Code] = 'NeglectedPrograms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'JuvenileDetention') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JuvenileDetention', 'Juvenile Detention', 'Juvenile Detention is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Juvenile Detention', [Definition] = 'Juvenile Detention is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 2.00 WHERE [Code] = 'JuvenileDetention' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'JuvenileCorrection') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JuvenileCorrection', 'Juvenile Correction', 'Juvenile Correction is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Juvenile Correction', [Definition] = 'Juvenile Correction is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 3.00 WHERE [Code] = 'JuvenileCorrection' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'AdultCorrection') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdultCorrection', 'Adult Correction', 'Adult Correction is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Adult Correction', [Definition] = 'Adult Correction is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 4.00 WHERE [Code] = 'AdultCorrection' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'AtRiskPrograms') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AtRiskPrograms', 'At-risk programs', 'At-risk programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'At-risk programs', [Definition] = 'At-risk programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 5.00 WHERE [Code] = 'AtRiskPrograms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'OtherPrograms') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherPrograms', 'Other Programs', 'Other Programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Other Programs', [Definition] = 'Other Programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 6.00 WHERE [Code] = 'OtherPrograms' END -END - PRINT N'Populate RefNonPromotionReason table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefNonPromotionReason]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) @@ -61283,6 +61422,14 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '77000') BEGIN VALUES ('77000', 'Title III LIEP', 'Title III language instruction educational program (LIEP)', 89.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] SET [Description] = 'Title III LIEP', [Definition] = 'Title III language instruction educational program (LIEP)', [SortOrder] = 89.00 WHERE [Code] = '77000' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75019') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75019', 'Neglected or delinquent', 'Neglected or delinquent is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA)', 90.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] +SET [Description] = 'Neglected or delinquent', [Definition] = 'Neglected or delinquent is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA)', [SortOrder] = 90.00 WHERE [Code] = '75019' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75020') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75020', 'TANF', 'Temporary Assistance for Needy Families', 91.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] +SET [Description] = 'TANF', [Definition] = 'Temporary Assistance for Needy Families', [SortOrder] = 91.00 WHERE [Code] = '75020' END END PRINT N'Populate RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus table' @@ -61959,6 +62106,10 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'ChiefStateSchoolOffic VALUES ('ChiefStateSchoolOfficer', 'Chief State School Officer', 'A public official who heads the department of elementary and secondary education in either a state, the District of Columbia, the Department of Defense Education Activity, the Bureau of Indian Education or one of the U.S. extra-state jurisdictions.', 14.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] SET [Description] = 'Chief State School Officer', [Definition] = 'A public official who heads the department of elementary and secondary education in either a state, the District of Columbia, the Department of Defense Education Activity, the Bureau of Indian Education or one of the U.S. extra-state jurisdictions.', [SortOrder] = 14.00 WHERE [Code] = 'ChiefStateSchoolOfficer' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'SchoolBoardMember') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) +VALUES ('SchoolBoardMember', 'School Board Member', 'A person who serves as a member of the organization''s school board.', 15.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] +SET [Description] = 'School Board Member', [Definition] = 'A person who serves as a member of the organization''s school board.', [SortOrder] = 15.00 WHERE [Code] = 'SchoolBoardMember' END END PRINT N'Populate RefSCEDCourseLevel table' @@ -62869,14 +63020,6 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = VALUES ('PartBEligibleContinuingPartC', 'Part B eligible, continuing in Part C.', 'Part B eligible, continuing in Part C is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 13.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] SET [Description] = 'Part B eligible, continuing in Part C.', [Definition] = 'Part B eligible, continuing in Part C is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 13.00 WHERE [Code] = 'PartBEligibleContinuingPartC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'NotPartBEligibleExitingPartCWithReferrrals') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotPartBEligibleExitingPartCWithReferrrals', 'Not eligible for Part B, exit with referrals to other programs.', 'Not eligible for Part B, exit with referrals to other programs is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Not eligible for Part B, exit with referrals to other programs.', [Definition] = 'Not eligible for Part B, exit with referrals to other programs is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 15.00 WHERE [Code] = 'NotPartBEligibleExitingPartCWithReferrrals' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'NotPartBEligibleExitingPartCWithoutReferrrals') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotPartBEligibleExitingPartCWithoutReferrrals', 'Not eligible for Part B, exit with no referrals.', 'Not eligible for Part B, exit with no referrals is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Not eligible for Part B, exit with no referrals.', [Definition] = 'Not eligible for Part B, exit with no referrals is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 17.00 WHERE [Code] = 'NotPartBEligibleExitingPartCWithoutReferrrals' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'PartBEligibilityNotDeterminedExitingPartC') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) VALUES ('PartBEligibilityNotDeterminedExitingPartC', 'Part B eligibility not determined.', 'Part B eligibility not determined is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 19.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] @@ -62897,6 +63040,14 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = VALUES ('GraduatedAlternateDiploma', 'Graduated with an alternate diploma', 'Graduated with an alternate diploma is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 26.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] SET [Description] = 'Graduated with an alternate diploma', [Definition] = 'Graduated with an alternate diploma is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 26.00 WHERE [Code] = 'GraduatedAlternateDiploma' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'NotPartBEligibleExitingPartCWithoutReferrals') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) +VALUES ('NotPartBEligibleExitingPartCWithoutReferrals', 'Not eligible for Part B, exit with no referrals.', 'Not eligible for Part B, exit with no referrals is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 27.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] +SET [Description] = 'Not eligible for Part B, exit with no referrals.', [Definition] = 'Not eligible for Part B, exit with no referrals is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 27.00 WHERE [Code] = 'NotPartBEligibleExitingPartCWithoutReferrals' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'NotPartBEligibleExitingPartCWithReferrals') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) +VALUES ('NotPartBEligibleExitingPartCWithReferrals', 'Not eligible for Part B, exit with referrals to other programs.', 'Not eligible for Part B, exit with referrals to other programs is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 28.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] +SET [Description] = 'Not eligible for Part B, exit with referrals to other programs.', [Definition] = 'Not eligible for Part B, exit with referrals to other programs is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 28.00 WHERE [Code] = 'NotPartBEligibleExitingPartCWithReferrals' END END PRINT N'Populate RefSpecialEducationStaffCategory table' @@ -64005,6 +64156,10 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = ' VALUES ('73055', 'Work-based Learning', 'Sustained interactions with industry or community professionals in real workplace settings, to the extent practicable, or simulated environments at an educational institution that foster in-depth, firsthand engagement with the tasks required in a given career field, that are aligned to curriculum and instruction.', 77.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] SET [Description] = 'Work-based Learning', [Definition] = 'Sustained interactions with industry or community professionals in real workplace settings, to the extent practicable, or simulated environments at an educational institution that foster in-depth, firsthand engagement with the tasks required in a given career field, that are aligned to curriculum and instruction.', [SortOrder] = 77.00 WHERE [Code] = '73055' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73070') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('73070', 'Extended school year services', 'Special education and related services, provided to a child with a disability, beyond the normal school year of the public agency, in accordance with the child''s Individualized Education Program (IEP), at no cost to the parents of the child, and meet the standards of the state education agency.', 78.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] +SET [Description] = 'Extended school year services', [Definition] = 'Special education and related services, provided to a child with a disability, beyond the normal school year of the public agency, in accordance with the child''s Individualized Education Program (IEP), at no cost to the parents of the child, and meet the standards of the state education agency.', [SortOrder] = 78.00 WHERE [Code] = '73070' END END PRINT N'Populate RefSupervisedClinicalExperience table' @@ -67370,9 +67525,9 @@ VALUES ('OtherSharpObject', 'Other sharp object', 'The weapon involved was anoth ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] SET [Description] = 'Other sharp object', [Definition] = 'The weapon involved was another type of sharp object, (e.g., razor blade, ice pick, dirk, Chinese star, other pointed instrument [used as a weapon]).', [SortOrder] = 18.00 WHERE [Code] = 'OtherSharpObject' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'OtherObject') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherObject', 'Other object', 'The weapon involved was another known object (e.g., chain, nunchakus, brass knuckle, billy club, electrical weapon or device [stun gun], BB or pellet gun).', 20.00) END +VALUES ('OtherObject', 'Other object', 'The weapon involved was another known object.', 20.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Other object', [Definition] = 'The weapon involved was another known object (e.g., chain, nunchakus, brass knuckle, billy club, electrical weapon or device [stun gun], BB or pellet gun).', [SortOrder] = 20.00 WHERE [Code] = 'OtherObject' END +SET [Description] = 'Other object', [Definition] = 'The weapon involved was another known object.', [SortOrder] = 20.00 WHERE [Code] = 'OtherObject' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'Substance') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) VALUES ('Substance', 'Substance used as weapon', 'The weapon involved was a substance (e.g., mace, tear gas) that was used as a weapon.', 22.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] @@ -67389,6 +67544,18 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'Unknown') BEGIN VALUES ('Unknown', 'Unknown weapon', 'A weapon was used in the incident, but the type is unknown.', 28.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] SET [Description] = 'Unknown weapon', [Definition] = 'A weapon was used in the incident, but the type is unknown.', [SortOrder] = 28.00 WHERE [Code] = 'Unknown' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'BBGun') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('BBGun', 'BB Gun', 'The weapon involved was a BB gun.', 29.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] +SET [Description] = 'BB Gun', [Definition] = 'The weapon involved was a BB gun.', [SortOrder] = 29.00 WHERE [Code] = 'BBGun' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'DestructiveDevice') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('DestructiveDevice', 'Destructive Device', 'Any explosive, incendiary (e.g., bomb, grenade), or poison gas; any weapon which may expel a projectile by explosive or another propellant with the barrel bore is more than one-half inch in diameter.', 30.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] +SET [Description] = 'Destructive Device', [Definition] = 'Any explosive, incendiary (e.g., bomb, grenade), or poison gas; any weapon which may expel a projectile by explosive or another propellant with the barrel bore is more than one-half inch in diameter.', [SortOrder] = 30.00 WHERE [Code] = 'DestructiveDevice' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'IEPServiceProvider') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('IEPServiceProvider', 'Individualized education program service provider', 'The role/relationship type assigned to an organization, institution, or agency responsible for providing services to meet the requirements of the student''s Individualized Education Program (IEP).', 31.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] +SET [Description] = 'Individualized education program service provider', [Definition] = 'The role/relationship type assigned to an organization, institution, or agency responsible for providing services to meet the requirements of the student''s Individualized Education Program (IEP).', [SortOrder] = 31.00 WHERE [Code] = 'IEPServiceProvider' END END PRINT N'Populate RefWfProgramParticipation table' @@ -67475,6 +67642,10 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '99' VALUES ('99', 'No identified services', 'No identified services are related to the person''s workforce and employment development program participation. ', 28.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] SET [Description] = 'No identified services', [Definition] = 'No identified services are related to the person''s workforce and employment development program participation. ', [SortOrder] = 28.00 WHERE [Code] = '99' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '20') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) +VALUES ('20', 'Reentry workforce and education program', 'The person''s workforce and employment development program participation is with Juvenile and/or Adult courses/programs/activities delivered to enhance life skills, academic and/or employability success to reduce recidivism. Including persons who may have had a touch point with the criminal justice system or have been a resident of a county (parish), state, federal or private confinement, rehabilitation, and/or correctional facility. This may also include but not be limited to persons on any county (parish), state, or federally mandated supervision.', 29.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] +SET [Description] = 'Reentry workforce and education program', [Definition] = 'The person''s workforce and employment development program participation is with Juvenile and/or Adult courses/programs/activities delivered to enhance life skills, academic and/or employability success to reduce recidivism. Including persons who may have had a touch point with the criminal justice system or have been a resident of a county (parish), state, federal or private confinement, rehabilitation, and/or correctional facility. This may also include but not be limited to persons on any county (parish), state, or federally mandated supervision.', [SortOrder] = 29.00 WHERE [Code] = '20' END END PRINT N'Populate RefWIOABarrierstoEmployment table' @@ -67486,9 +67657,9 @@ VALUES ('805', 'Cultural barriers', 'The participant has a perception of him-or ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] SET [Description] = 'Cultural barriers', [Definition] = 'The participant has a perception of him-or herself as possessing attitudes, beliefs, customs, or practices that influence a way of thinking, acting, or working that may serve as a hindrance to employment.', [SortOrder] = 1.00 WHERE [Code] = '805' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '807') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('807', 'Displaced homemaker', 'The participant has been providing unpaid services to family members in the home and (a) has been dependent on the income of another family member but is no longer supported by that income; (b) is the dependent spouse of a member of the armed forces on active duty whose family income is significantly reduced because of (i) a deployment or a call or order to active duty pursuant to a provision of law, (ii) a permanent change of station, or (iii) the service-connected death or disability of the member; and (c) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', 2.00) END +VALUES ('807', 'Displaced Caregiver', 'The participant has been providing unpaid services to family members in the home and (a) has been dependent on the income of another family member but is no longer supported by that income; (b) is the dependent spouse of a member of the armed forces on active duty whose family income is significantly reduced because of (i) a deployment or a call or order to active duty pursuant to a provision of law, (ii) a permanent change of station, or (iii) the service-connected death or disability of the member; and (c) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', 2.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Displaced homemaker', [Definition] = 'The participant has been providing unpaid services to family members in the home and (a) has been dependent on the income of another family member but is no longer supported by that income; (b) is the dependent spouse of a member of the armed forces on active duty whose family income is significantly reduced because of (i) a deployment or a call or order to active duty pursuant to a provision of law, (ii) a permanent change of station, or (iii) the service-connected death or disability of the member; and (c) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', [SortOrder] = 2.00 WHERE [Code] = '807' END +SET [Description] = 'Displaced Caregiver', [Definition] = 'The participant has been providing unpaid services to family members in the home and (a) has been dependent on the income of another family member but is no longer supported by that income; (b) is the dependent spouse of a member of the armed forces on active duty whose family income is significantly reduced because of (i) a deployment or a call or order to active duty pursuant to a provision of law, (ii) a permanent change of station, or (iii) the service-connected death or disability of the member; and (c) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', [SortOrder] = 2.00 WHERE [Code] = '807' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '803') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) VALUES ('803', 'English language learner', 'The participant has limited ability in speaking, reading, writing, or understanding the English language that may serve as a hindrance to employment.', 3.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] @@ -67529,10 +67700,14 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '8 VALUES ('806', 'Single parent', 'The participant is a single, separated, divorced, or widowed individual who has primary responsibility for one or more dependent children under age 18 (including single pregnant women).', 12.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] SET [Description] = 'Single parent', [Definition] = 'The participant is a single, separated, divorced, or widowed individual who has primary responsibility for one or more dependent children under age 18 (including single pregnant women).', [SortOrder] = 12.00 WHERE [Code] = '806' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '704') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('704', 'Youth in foster care or who has aged out of system', 'The participant is a person who is currently in foster care or has aged out of the foster care system.', 13.00) END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '798') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) +VALUES ('798', 'Current Foster Care Youth', 'The participant is a person who is currently in foster care.', 14.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Youth in foster care or who has aged out of system', [Definition] = 'The participant is a person who is currently in foster care or has aged out of the foster care system.', [SortOrder] = 13.00 WHERE [Code] = '704' END +SET [Description] = 'Current Foster Care Youth', [Definition] = 'The participant is a person who is currently in foster care.', [SortOrder] = 14.00 WHERE [Code] = '798' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '799') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) +VALUES ('799', 'Former Foster Care Youth', 'The participant is a person who has aged out of the foster care system or who has attained 16 years of age and left foster care for kinship, guardianship or adoption, or an individual who were formerly in foster care, but returned to their families before turning 18.', 15.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] +SET [Description] = 'Former Foster Care Youth', [Definition] = 'The participant is a person who has aged out of the foster care system or who has attained 16 years of age and left foster care for kinship, guardianship or adoption, or an individual who were formerly in foster care, but returned to their families before turning 18.', [SortOrder] = 15.00 WHERE [Code] = '799' END END PRINT N'Populate RefWorkbasedLearningOpportunityType table' @@ -67583,11 +67758,27 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Co VALUES ('UnpaidInternship', 'Unpaid internship', 'Unpaid internship is the type of work-based learning opportunity the student participated in.', 30.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] SET [Description] = 'Unpaid internship', [Definition] = 'Unpaid internship is the type of work-based learning opportunity the student participated in.', [SortOrder] = 30.00 WHERE [Code] = 'UnpaidInternship' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'Entrepreneurship') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Entrepreneurship', 'Entrepreneurship', 'Entrepreneurship is the type of work-based learning opportunity the student participated in.', 31.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] +SET [Description] = 'Entrepreneurship', [Definition] = 'Entrepreneurship is the type of work-based learning opportunity the student participated in.', [SortOrder] = 31.00 WHERE [Code] = 'Entrepreneurship' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'SchoolBasedEnterprise') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('SchoolBasedEnterprise', 'School-Based Enterprise', 'School-Based Enterprise is the type of work-based learning opportunity the student participated in.', 32.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] +SET [Description] = 'School-Based Enterprise', [Definition] = 'School-Based Enterprise is the type of work-based learning opportunity the student participated in.', [SortOrder] = 32.00 WHERE [Code] = 'SchoolBasedEnterprise' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'SimulatedWorksite') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('SimulatedWorksite', 'Simulated Worksite', 'Simulated Worksite is the type of work-based learning opportunity the student participated in.', 33.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] +SET [Description] = 'Simulated Worksite', [Definition] = 'Simulated Worksite is the type of work-based learning opportunity the student participated in.', [SortOrder] = 33.00 WHERE [Code] = 'SimulatedWorksite' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) VALUES ('Other', 'Other', 'The type of work-based learning opportunity the student participated in is in a category not yet defined in CEDS.', 99.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] SET [Description] = 'Other', [Definition] = 'The type of work-based learning opportunity the student participated in is in a category not yet defined in CEDS.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END END +GO + +DECLARE @updateExisting bit = 0 + PRINT N'Populate RefOrganizationIdentifierType table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationIdentifierType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN @@ -67721,10 +67912,14 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '001057') BE VALUES ('001057', 'Assessment Registration Grade Level to Be Assessed') END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevelType] SET [Description] = 'Assessment Registration Grade Level to Be Assessed' WHERE [Code] = '001057' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '001210') BEGIN INSERT INTO dbo.[RefGradeLevelType]([Code], [Description]) -VALUES ('001210', 'Exit Grade Level') END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '002082') BEGIN INSERT INTO dbo.[RefGradeLevelType]([Code], [Description]) +VALUES ('002082', 'Low Grade Level') END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevelType] -SET [Description] = 'Exit Grade Level' WHERE [Code] = '001210' END +SET [Description] = 'Low Grade Level' WHERE [Code] = '002082' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '002083') BEGIN INSERT INTO dbo.[RefGradeLevelType]([Code], [Description]) +VALUES ('002083', 'High Grade Level') END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevelType] +SET [Description] = 'High Grade Level' WHERE [Code] = '002083' END END @@ -67991,68 +68186,64 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'Diff VALUES ('DifferentialShiftPay', 'Differential Shift Pay') END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] SET [Description] = 'Differential Shift Pay' WHERE [Code] = 'DifferentialShiftPay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'Interdisciplinary') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('Interdisciplinary', 'Interdisciplinary') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Interdisciplinary' WHERE [Code] = 'Interdisciplinary' END END PRINT N'Populate RefEntityType table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEntityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12000') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12000', 'Early Learning', 10.00) END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13000') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13000', 'Early Learning', 10.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Early Learning', [SortOrder] = 10.00 WHERE [Code] = '12000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12001') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12001', 'K12', 20.00) END +SET [Description] = 'Early Learning', [SortOrder] = 10.00 WHERE [Code] = '13000' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13001') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13001', 'K12', 20.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'K12', [SortOrder] = 20.00 WHERE [Code] = '12001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12002') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12002', 'Postsecondary', 30.00) END +SET [Description] = 'K12', [SortOrder] = 20.00 WHERE [Code] = '13001' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13002') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13002', 'Postsecondary', 30.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Postsecondary', [SortOrder] = 30.00 WHERE [Code] = '12002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12112') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12112', 'Career and Technical', 40.00) END +SET [Description] = 'Postsecondary', [SortOrder] = 30.00 WHERE [Code] = '13002' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13112') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13112', 'Career and Technical', 40.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Career and Technical', [SortOrder] = 40.00 WHERE [Code] = '12112' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12113') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12113', 'Adult Education', 50.00) END +SET [Description] = 'Career and Technical', [SortOrder] = 40.00 WHERE [Code] = '13112' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13113') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13113', 'Adult Education', 50.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Adult Education', [SortOrder] = 50.00 WHERE [Code] = '12113' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12114') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12114', 'Workforce', 60.00) END +SET [Description] = 'Adult Education', [SortOrder] = 50.00 WHERE [Code] = '13113' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13114') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13114', 'Workforce', 60.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Workforce', [SortOrder] = 60.00 WHERE [Code] = '12114' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12089') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12089', 'Assessments', 70.00) END +SET [Description] = 'Workforce', [SortOrder] = 60.00 WHERE [Code] = '13114' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13089') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13089', 'Assessments', 70.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Assessments', [SortOrder] = 70.00 WHERE [Code] = '12089' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12482') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12482', 'Credentials', 80.00) END +SET [Description] = 'Assessments', [SortOrder] = 70.00 WHERE [Code] = '13089' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13482') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13482', 'Credentials', 80.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Credentials', [SortOrder] = 80.00 WHERE [Code] = '12482' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12104') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12104', 'Competencies', 90.00) END +SET [Description] = 'Credentials', [SortOrder] = 80.00 WHERE [Code] = '13482' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13104') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13104', 'Competencies', 90.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Competencies', [SortOrder] = 90.00 WHERE [Code] = '12104' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12123') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12123', 'Learning Resources', 100.00) END +SET [Description] = 'Competencies', [SortOrder] = 90.00 WHERE [Code] = '13104' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13123') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13123', 'Learning Resources', 100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Learning Resources', [SortOrder] = 100.00 WHERE [Code] = '12123' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12571') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12571', 'Facilities', 110.00) END +SET [Description] = 'Learning Resources', [SortOrder] = 100.00 WHERE [Code] = '13123' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13571') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13571', 'Facilities', 110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Facilities', [SortOrder] = 110.00 WHERE [Code] = '12571' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12566') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12566', 'Implementation Variables', 120.00) END +SET [Description] = 'Facilities', [SortOrder] = 110.00 WHERE [Code] = '13571' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13566') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13566', 'Implementation Variables', 120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Implementation Variables', [SortOrder] = 120.00 WHERE [Code] = '12566' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12440') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12440', 'Authentication and Authorization', 130.00) END +SET [Description] = 'Implementation Variables', [SortOrder] = 120.00 WHERE [Code] = '13566' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13440') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13440', 'Authentication and Authorization', 130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Authentication and Authorization', [SortOrder] = 130.00 WHERE [Code] = '12440' END +SET [Description] = 'Authentication and Authorization', [SortOrder] = 130.00 WHERE [Code] = '13440' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = 'Course') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) VALUES ('Course', 'Course Table', 1) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] @@ -68070,6 +68261,11 @@ VALUES ('RubricCriterion', 'RubricCriterion Table', 4) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] SET [Description] = 'RubricCriterion Table', [SortOrder] = 4 WHERE [Code] = 'RubricCriterion' END END +GO + +DECLARE @updateExisting bit = 0 + + PRINT N'Populate RefOrganizationIdentificationSystem table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationIdentificationSystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN @@ -68519,6 +68715,13 @@ END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] SET [Definition] = 'The related Child Identifier uses the child''s Program-assigned number.', [SortOrder] = 10.00 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'Program' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'BirthCertificate') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) +SELECT 'BirthCertificate', 'Birth certificate number', 'The related Child Identifier uses the child''s birth certificate number.', 11.00, [RefPersonIdentifierTypeId] +FROM dbo.RefPersonIdentifierType WHERE Description = 'Child Identification System' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] +SET [Definition] = 'The related Child Identifier uses the child''s birth certificate number.', [SortOrder] = 11.00 +FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'BirthCertificate' END END PRINT N'Populate RefPersonIdentificationSystem table' @@ -68622,6 +68825,13 @@ END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] SET [Definition] = 'The related Staff Identifier uses the staff member''s Canadian Social Insurance Number.', [SortOrder] = 14.00 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'CanadianSIN' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'BirthCertificate') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) +SELECT 'BirthCertificate', 'Birth certificate number', 'The related Staff Identifier uses the staff''s birth certificate number.', 15.00, [RefPersonIdentifierTypeId] +FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] +SET [Definition] = 'The related Staff Identifier uses the staff''s birth certificate number.', [SortOrder] = 15.00 +FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'BirthCertificate' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) SELECT 'Other', 'Other', 'The related Staff Identifier is from an identification system not yet defined in CEDS.', 15.00, [RefPersonIdentifierTypeId] FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' @@ -68697,6 +68907,13 @@ END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] SET [Definition] = 'The related Student Identifier uses the student''s State migrant number.', [SortOrder] = 9.00 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'StateMigrant' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'BirthCertificate') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) +SELECT 'BirthCertificate', 'Birth certificate number', 'The related Student Identifier uses the student''s birth certificate number.', 10.00, [RefPersonIdentifierTypeId] +FROM dbo.RefPersonIdentifierType WHERE Description = 'Student Identification System' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] +SET [Definition] = 'The related Student Identifier uses the student''s birth certificate number.', [SortOrder] = 10.00 +FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'BirthCertificate' END END @@ -70501,163 +70718,325 @@ SET [Definition] = 'The extent of formal instruction a person has received is in FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'Other' END END + + +PRINT N'Populate RefGradeLevel table' +IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGradeLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) +BEGIN +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'IT') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'IT', 'Infant/toddler', NULL, 1.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 1.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'IT' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'PR') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'PR', 'Preschool', NULL, 2.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 2.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'PR' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'PK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'PK', 'Prekindergarten', NULL, 3.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 3.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'PK' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'TK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'TK', 'Transitional Kindergarten', NULL, 4.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 4.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'TK' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'KG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'KG', 'Kindergarten', NULL, 5.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 5.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'KG' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '01', 'First grade', NULL, 6.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 6.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '01' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '02', 'Second grade', NULL, 7.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 7.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '02' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '03', 'Third grade', NULL, 8.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 8.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '03' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '04', 'Fourth grade', NULL, 9.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 9.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '04' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '05', 'Fifth grade', NULL, 10.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 10.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '05' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '06', 'Sixth grade', NULL, 11.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 11.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '06' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '07', 'Seventh grade', NULL, 12.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 12.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '07' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '08', 'Eighth grade', NULL, 13.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 13.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '08' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '09', 'Ninth grade', NULL, 14.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 14.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '09' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '10') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '10', 'Tenth grade', NULL, 15.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 15.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '10' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '11') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '11', 'Eleventh grade', NULL, 16.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 16.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '11' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '12') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '12', 'Twelfth grade', NULL, 17.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 17.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '12' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '13') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '13', 'Grade 13', NULL, 18.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 18.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '13' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'PS') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'PS', 'Postsecondary', NULL, 19.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 19.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'PS' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'UG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'UG', 'Ungraded', NULL, 21.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 21.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'UG' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'AE') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'AE', 'Adult Education', NULL, 22.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 22.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'AE' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'Other', 'Other', NULL, 22.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 22.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'Other' END +END + + PRINT N'Populate RefGradeLevel table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGradeLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'IT') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'IT') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'IT', 'Infant/toddler', NULL, 1.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 1.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'IT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PR') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'IT' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'PR') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'PR', 'Preschool', NULL, 2.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 2.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'PR' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'PK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'PK', 'Prekindergarten', NULL, 3.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 3.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'TK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'PK' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'TK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'TK', 'Transitional Kindergarten', NULL, 4.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 4.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'TK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'KG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'TK' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'KG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'KG', 'Kindergarten', NULL, 5.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 5.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'KG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'KG' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '01', 'First grade', NULL, 6.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 6.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '01' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '02', 'Second grade', NULL, 7.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 7.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '02' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '03', 'Third grade', NULL, 8.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 8.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '03' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '04', 'Fourth grade', NULL, 9.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 9.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '04' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '05', 'Fifth grade', NULL, 10.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 10.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '05' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '06', 'Sixth grade', NULL, 11.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 11.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '06' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '07', 'Seventh grade', NULL, 12.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 12.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '07' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '08', 'Eighth grade', NULL, 13.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 13.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '08' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '09', 'Ninth grade', NULL, 14.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 14.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '10') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '09' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '10') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '10', 'Tenth grade', NULL, 15.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 15.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '11') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '10' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '11') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '11', 'Eleventh grade', NULL, 16.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 16.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '12') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '11' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '12') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '12', 'Twelfth grade', NULL, 17.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 17.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '13') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '12' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '13') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '13', 'Grade 13', NULL, 18.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 18.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PS') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '13' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'PS') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'PS', 'Postsecondary', NULL, 19.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 19.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'UG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'PS' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'UG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'UG', 'Ungraded', NULL, 21.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 21.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'UG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'AE') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'UG' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'AE') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'AE', 'Adult Education', NULL, 22.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 22.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'AE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'AE' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'Other', 'Other', NULL, 22.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 22.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'Other' END +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'Other' END END @@ -71084,57 +71463,6 @@ SET [Definition] = 'Volunteer/no contract is the condition under which a person FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01382' END END -PRINT N'Populate RefRace table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefRace]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceAmericanIndianorAlaskaNative') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'AmericanIndianorAlaskaNative', [Definition] = 'A person having origins in any of the original peoples of North and South America (including Central America), and who maintains cultural identification through tribal affiliation or community attachment.', [Description] = 'American Indian or Alaska Native' WHERE [Code] = 'RaceAmericanIndianorAlaskaNative' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'AmericanIndianorAlaskaNative') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('AmericanIndianorAlaskaNative', 'American Indian or Alaska Native', 'A person having origins in any of the original peoples of North and South America (including Central America), and who maintains cultural identification through tribal affiliation or community attachment.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'American Indian or Alaska Native', [Definition] = 'A person having origins in any of the original peoples of North and South America (including Central America), and who maintains cultural identification through tribal affiliation or community attachment.' WHERE [Code] = 'AmericanIndianOrAlaskaNative' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceAsian') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'Asian', [Description] = 'Asian', [Definition] = 'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian Subcontinent. This area includes, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.' WHERE [Code] = 'RaceAsian' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'Asian') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('Asian', 'Asian', 'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian Subcontinent. This area includes, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Asian', [Definition] = 'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian Subcontinent. This area includes, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.' WHERE [Code] = 'Asian' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceBlackorAfricanAmerican') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'BlackOrAfricanAmerican', [Description] = 'Black or African American', [Definition] = 'A person having origins in any of the black racial groups of Africa.' WHERE [Code] = 'RaceBlackorAfricanAmerican' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'BlackOrAfricanAmerican') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('BlackOrAfricanAmerican', 'Black or African American', 'A person having origins in any of the black racial groups of Africa.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Black or African American', [Definition] = 'A person having origins in any of the black racial groups of Africa.' WHERE [Code] = 'BlackOrAfricanAmerican' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceNativeHawaiianorOtherPacificIslander') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'NativeHawaiianOrOtherPacificIslander', [Description] = 'Native Hawaiian or Other Pacific Islander', [Definition] = 'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.' WHERE [Code] = 'RaceNativeHawaiianorOtherPacificIslander' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'NativeHawaiianOrOtherPacificIslander') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('NativeHawaiianOrOtherPacificIslander', 'Native Hawaiian or Other Pacific Islander', 'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Native Hawaiian or Other Pacific Islander', [Definition] = 'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.' WHERE [Code] = 'NativeHawaiianOrOtherPacificIslander' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceDemographicRaceTwoOrMoreRaces') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'DemographicRaceTwoOrMoreRaces', [Description] = 'Demographic Race Two or More Races', [Definition] = 'A person having origins in any of more than one of the racial groups.' WHERE [Code] = 'RaceDemographicRaceTwoOrMoreRaces' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'DemographicRaceTwoOrMoreRaces') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('DemographicRaceTwoOrMoreRaces', 'Demographic Race Two Or More Races', 'A person having origins in any of more than one of the racial groups.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Demographic Race Two Or More Races', [Definition] = 'A person having origins in any of more than one of the racial groups.' WHERE [Code] = 'DemographicRaceTwoOrMoreRaces' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceAndEthnicityUnknown') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('RaceAndEthnicityUnknown', 'Race And Ethnicity Unknown', 'The category used to report a person whose race and ethnicity are not known.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Race And Ethnicity Unknown', [Definition] = 'The category used to report a person whose race and ethnicity are not known.' WHERE [Code] = 'RaceAndEthnicityUnknown' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceWhite') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'White', [Description] = 'White', [Definition] = 'A person having origins in any of the original peoples of Europe, Middle East, or North Africa.' WHERE [Code] = 'RaceWhite' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'White') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('White', 'White', 'A person having origins in any of the original peoples of Europe, Middle East, or North Africa.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'White', [Definition] = 'A person having origins in any of the original peoples of Europe, Middle East, or North Africa.' WHERE [Code] = 'White' END -END - PRINT N'Populate RefRoleStatus table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefRoleStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN diff --git a/src/upgrade/V10.0.0.0-to-V11.0.0.0.sql b/src/upgrade/V10.0.0.0-to-V11.0.0.0.sql deleted file mode 100644 index 8277020..0000000 --- a/src/upgrade/V10.0.0.0-to-V11.0.0.0.sql +++ /dev/null @@ -1,98269 +0,0 @@ -/* - - Copyright 2023 Common Education Data Standards - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - - Common Education Data Standards (CEDS) - Version 11.0.0.0 - Integration Data Schema (IDS) - - Model database update script - - This script updates a IDS version 10.0.0.0 model database to version 11.0.0.0. - - - WARNING!!!! - This script is intended for use on a model database and should not - be used on a database that contains data. - - This script contains potentially breaking changes. Queries are included to preserve data. - However, programming logic should be adjusted were necessary for these changes. - - Search for "WARNING!!!!" through this update script to see said changes and make necessary adjustments before executing. - - - The script was generated from a model database - hosted on a Microsoft SQL Server 2019 platform. - - Questions on this script can be sent to ceds@ed.gov - - More information on the data model is available at the CEDS website, - http://ceds.ed.gov, and the CEDS Open Source Community (OSC) site, - https://github.com/CEDStandards/CEDS-IDS. - -*/ - --- Uncomment next two lines to update a database named CEDS-IDS-V10_0_0_0 or specify appropriate DB name for your server. ---USE [CEDS-IDS-V10_0_0_0] ---GO - ------------------------------------------------- -----Section 1 Create New Tables ---------------- ------------------------------------------------- - -PRINT N'--Create new table statements' - -/****** Object: Table [dbo].[RefSCEDCourseCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefSCEDCourseCode]( - [RefSCEDCourseCodeId] [int] IDENTITY(1,1) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefSCEDCourseCode] PRIMARY KEY CLUSTERED ( [RefSCEDCourseCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[FinancialAccountLocal] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[FinancialAccountLocal]( - [FinancialAccountLocalId] [int] IDENTITY(1,1) NOT NULL, - [RefFinancialAccountLocalBalanceSheetCodeId] int NULL, - [RefFinancialAccountLocalFundClassificationId] int NULL, - [RefFinancialAccountLocalProgramCodeId] int NULL, - [RefFinancialAccountLocalRevenueCodeId] int NULL, - [RefFinancialExpenditureLocalFunctionCodeId] int NULL, - [RefFinancialExpenditureLocalLevelOfInstructionCodeId] int NULL, - [RefFinancialExpenditureLocalObjectCodeId] int NULL, - [Name] nvarchar(100) NULL, - [AccountNumber] nvarchar(30) NULL, - [Description] nvarchar(150) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - [RecordStatusId] int NULL, - [DataCollectionId] int NULL, - CONSTRAINT [PK_FinancialAccountLocal] PRIMARY KEY CLUSTERED ( [FinancialAccountLocalId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[OrganizationFinancialFinancialAccountLocal] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[OrganizationFinancialFinancialAccountLocal]( - [OrganizationFinancialFinancialAccountLocalId] [int] IDENTITY(1,1) NOT NULL, - [OrganizationFinancialId] int NOT NULL, - [FinancialAccountLocalId] int NOT NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - [RecordStatusId] int NULL, - [DataCollectionId] int NULL, - CONSTRAINT [PK_OrganizationFinancialFinancialAccountLocal] PRIMARY KEY CLUSTERED ( [OrganizationFinancialFinancialAccountLocalId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[ELCourse] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[ELCourse]( - [ELCourseId] [int] IDENTITY(1,1) NOT NULL, - [CourseId] int NOT NULL, - [RefBlendedLearningModelTypeId] int NULL, - [RefSCEDCourseLevelId] int NULL, - [RefSCEDCourseSubjectAreaId] int NULL, - [RefSCEDCourseCodeId] int NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - [RecordStatusId] int NULL, - [DataCollectionId] int NULL, - CONSTRAINT [PK_ELCourse] PRIMARY KEY CLUSTERED ( [ELCourseId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[ELOrganizationStudentResponsibility] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[ELOrganizationStudentResponsibility]( - [ELOrganizationStudentResponsibilityId] [int] IDENTITY(1,1) NOT NULL, - [OrganizationPersonRoleId] int NOT NULL, - [RefK12ResponsibilityTypeId] int NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - [RecordStatusId] int NULL, - [DataCollectionId] int NULL, - CONSTRAINT [PK_ELOrganizationStudentResponsibility] PRIMARY KEY CLUSTERED ( [ELOrganizationStudentResponsibilityId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefAssessmentTypeAdministeredToEnglishLearners] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefAssessmentTypeAdministeredToEnglishLearners]( - [RefAssessmentTypeAdministeredToEnglishLearnersId] [int] IDENTITY(1,1) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefAssessmentTypeAdministeredToEnglishLearners] PRIMARY KEY CLUSTERED ( [RefAssessmentTypeAdministeredToEnglishLearnersId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefEdFactsCertificationStatus] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefEdFactsCertificationStatus]( - [RefEdFactsCertificationStatusId] [int] IDENTITY(1,1) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefEdFactsCertificationStatus] PRIMARY KEY CLUSTERED ( [RefEdFactsCertificationStatusId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[OrganizationEnrollmentCapacity] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[OrganizationEnrollmentCapacity]( - [OrganizationEnrollmentCapacityId] [int] IDENTITY(1,1) NOT NULL, - [RefAdjustedCapacityReasonTypeId] int NULL, - [OrganizationCalendarSessionId] int NULL, - [EarlyLearningAge2AndOlderCapacity] int NULL, - [EarlyLearningAgeUnder2Capacity] int NULL, - [EnrollmentCapacity] int NULL, - [AdjustedCapacity] int NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - [RecordStatusId] int NULL, - [DataCollectionId] int NULL, - CONSTRAINT [PK_OrganizationEnrollmentCapacity] PRIMARY KEY CLUSTERED ( [OrganizationEnrollmentCapacityId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefFederalProgramCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFederalProgramCode]( - [RefFederalProgramCodeId] [int] IDENTITY(1,1) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFederalProgramCode] PRIMARY KEY CLUSTERED ( [RefFederalProgramCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefFederalProgramSubgrantCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFederalProgramSubgrantCode]( - [RefFederalProgramSubgrantCodeId] [int] IDENTITY(1,1) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFederalProgramSubgrantCode] PRIMARY KEY CLUSTERED ( [RefFederalProgramSubgrantCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefFinancialAccountCodingSystemOrganizationType] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialAccountCodingSystemOrganizationType]( - [RefFinancialAccountCodingSystemOrganizationTypeId] [int] IDENTITY(1,1) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialAccountCodingSystemOrganizationType] PRIMARY KEY CLUSTERED ( [RefFinancialAccountCodingSystemOrganizationTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefFinancialAccountLocalBalanceSheetCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialAccountLocalBalanceSheetCode]( - [RefFinancialAccountLocalBalanceSheetCodeId] [int] IDENTITY(1,1) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [RefFinancialAccountCodingSystemOrganizationTypeId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialAccountLocalBalanceSheetCode] PRIMARY KEY CLUSTERED ( [RefFinancialAccountLocalBalanceSheetCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefFinancialAccountLocalFundClassification] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialAccountLocalFundClassification]( - [RefFinancialAccountLocalFundClassificationId] [int] IDENTITY(1,1) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [RefFinancialAccountCodingSystemOrganizationTypeId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialAccountLocalFundClassification] PRIMARY KEY CLUSTERED ( [RefFinancialAccountLocalFundClassificationId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefFinancialAccountLocalProgramCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialAccountLocalProgramCode]( - [RefFinancialAccountLocalProgramCodeId] [int] IDENTITY(1,1) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [RefFinancialAccountCodingSystemOrganizationTypeId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialAccountLocalProgramCode] PRIMARY KEY CLUSTERED ( [RefFinancialAccountLocalProgramCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefFinancialAccountLocalRevenueCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialAccountLocalRevenueCode]( - [RefFinancialAccountLocalRevenueCodeId] [int] IDENTITY(1,1) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [RefFinancialAccountCodingSystemOrganizationTypeId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialAccountLocalRevenueCode] PRIMARY KEY CLUSTERED ( [RefFinancialAccountLocalRevenueCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefFinancialExpenditureLocalFunctionCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialExpenditureLocalFunctionCode]( - [RefFinancialExpenditureLocalFunctionCodeId] [int] IDENTITY(1,1) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [RefFinancialAccountCodingSystemOrganizationTypeId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialExpenditureLocalFunctionCode] PRIMARY KEY CLUSTERED ( [RefFinancialExpenditureLocalFunctionCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode]( - [RefFinancialExpenditureLocalLevelOfInstructionCodeId] [int] IDENTITY(1,1) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [RefFinancialAccountCodingSystemOrganizationTypeId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialExpenditureLocalLevelOfInstructionCode] PRIMARY KEY CLUSTERED ( [RefFinancialExpenditureLocalLevelOfInstructionCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefFinancialExpenditureLocalObjectCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialExpenditureLocalObjectCode]( - [RefFinancialExpenditureLocalObjectCodeId] [int] IDENTITY(1,1) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [RefFinancialAccountCodingSystemOrganizationTypeId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialExpenditureLocalObjectCode] PRIMARY KEY CLUSTERED ( [RefFinancialExpenditureLocalObjectCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[OrganizationProjectBasedLearning] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[OrganizationProjectBasedLearning]( - [OrganizationProjectBasedLearningId] [int] IDENTITY(1,1) NOT NULL, - [OrganizationId] int NOT NULL, - [RefProjectBasedLearningTypeId] int NULL, - [ProjectBasedLearningIndicator] bit NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - [RecordStatusId] int NULL, - [DataCollectionId] int NULL, - CONSTRAINT [PK_OrganizationProjectBasedLearning] PRIMARY KEY CLUSTERED ( [OrganizationProjectBasedLearningId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefSpecialEducationTeacherQualificationStatus] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefSpecialEducationTeacherQualificationStatus]( - [RefSpecialEducationTeacherQualificationStatusId] [int] IDENTITY(1,1) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefSpecialEducationTeacherQualificationStatus] PRIMARY KEY CLUSTERED ( [RefSpecialEducationTeacherQualificationStatusId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefStudentSupportServiceAvailabilityType] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefStudentSupportServiceAvailabilityType]( - [RefStudentSupportServiceAvailabilityTypeId] [int] IDENTITY(1,1) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefStudentSupportServiceAvailabilityType] PRIMARY KEY CLUSTERED ( [RefStudentSupportServiceAvailabilityTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefAdjustedCapacityReasonType] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefAdjustedCapacityReasonType]( - [RefAdjustedCapacityReasonTypeId] [int] IDENTITY(1,1) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefAdjustedCapacityReasonType] PRIMARY KEY CLUSTERED ( [RefAdjustedCapacityReasonTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[RefProjectBasedLearningType] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefProjectBasedLearningType]( - [RefProjectBasedLearningTypeId] [int] IDENTITY(1,1) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Description] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [SortOrder] decimal(5,2) NULL, - [RecordStartDateTime] datetime NULL, - [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefProjectBasedLearningType] PRIMARY KEY CLUSTERED ( [RefProjectBasedLearningTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO - - -/****** Object: Table [dbo].[OrganizationPersonRoleRelationship] Script Date: 5/26/2022 8:56:58 AM ******/ - CREATE TABLE [dbo].[OrganizationPersonRoleRelationship]( - [OrganizationPersonRoleRelationshipId] [int] IDENTITY(1,1) NOT NULL, - [OrganizationPersonRoleId] [int] NOT NULL, - [OrganizationPersonRoleId_Parent] [int] NOT NULL, - [RecordStartDateTime] [datetime] NULL, - [RecordEndDateTime] [datetime] NULL, - [DataCollectionId] [int] NULL, - [RecordStatusId] int NULL, - CONSTRAINT [PK_OrganizationPersonRoleRelationship] PRIMARY KEY CLUSTERED - ( - [OrganizationPersonRoleRelationshipId] ASC - )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] - ) ON [PRIMARY] - GO - - --------------------------------------------------- -----Sction 2 When a column is moved -------------- --------------------------------------------------- - ---No updates this time where data will be moved - - ----------------------------------------------------------- -----Section 3 Drop/Create/Alter Existing Table Columns---- ---------------------------------------------------------- - -PRINT N'--Drop and Create or Alter existing table statements' - -ALTER TABLE FinancialAccount ADD RefFederalProgramCodeId int NULL; -GO -ALTER TABLE CteCourse ADD RefSCEDCourseCodeId int NULL; -GO -ALTER TABLE K12Course ADD RefSCEDCourseCodeId int NULL; -GO -ALTER TABLE ELStaffAssignment ADD RefClassroomPositionTypeId int NULL; -GO -ALTER TABLE ELStaffAssignment ADD ItinerantTeacher bit NULL; -GO -ALTER TABLE ELStaffAssignment ADD RefK12StaffClassificationId int NULL; -GO -ALTER TABLE ELStaffAssignment ADD RefProfessionalEducationJobClassificationId int NULL; -GO -ALTER TABLE ELStaffAssignment ADD RefSpecialEducationAgeGroupTaughtId int NULL; -GO -ALTER TABLE ELStaffAssignment ADD SpecialEducationParaprofessional bit NULL; -GO -ALTER TABLE ELStaffAssignment ADD SpecialEducationRelatedServicesPersonnel bit NULL; -GO -ALTER TABLE ELStaffAssignment ADD RefSpecialEducationStaffCategoryId int NULL; -GO -ALTER TABLE ELStaffAssignment ADD SpecialEducationTeacher bit NULL; -GO -ALTER TABLE ELStaffAssignment ADD FullTimeEquivalency decimal(5,4) NULL; -GO -ALTER TABLE ELStaffAssignment ADD ContributionPercentage decimal(5,2) NULL; -GO -ALTER TABLE ELStaffAssignment ADD RefTeachingAssignmentRoleId int NULL; -GO -ALTER TABLE ELStaffAssignment ADD RefTitleIProgramStaffCategoryId int NULL; -GO -ALTER TABLE ELOrganizationFunds ADD RefAdministrativeFundingControlId int NULL; -GO -ALTER TABLE ELStaffEmployment ADD AnnualBaseContractualSalary decimal(9,2) NULL; -GO -ALTER TABLE Assessment ADD RefAssessmentTypeAdministeredToEnglishLearnersId int NULL; -GO -ALTER TABLE ELStaffEmployment ADD ContractDaysOfServicePerYear decimal(5,2) NULL; -GO -ALTER TABLE ELStaffEmployment ADD RefEmploymentContractTypeId int NULL; -GO -ALTER TABLE ELOrganization ADD RefControlOfInstitutionId int NULL; -GO -ALTER TABLE Course ADD CourseLevelApprovalIndicator bit NULL; -GO -ALTER TABLE Course ADD RefCourseLevelTypeId int NULL; -GO -ALTER TABLE K12StaffAssignment ADD RefEdFactsCertificationStatusId int NULL; -GO -ALTER TABLE FacilityUtilization ADD EnrollmentCapacity int NULL; -GO -ALTER TABLE ELEnrollment ADD RefExitOrWithdrawalStatusId int NULL; -GO -ALTER TABLE FinancialAccount ADD RefFederalProgramSubgrantCodeId int NULL; -GO -ALTER TABLE ELStaffEmployment ADD RefFullTimeStatusId int NULL; -GO -ALTER TABLE ELStaffEmployment ADD RefInstructionalStaffContractLengthId int NULL; -GO -ALTER TABLE ELOrganization ADD RefInternetAccessId int NULL; -GO -ALTER TABLE ELStaffEmployment ADD RefIpedsOccupationalCategoryId int NULL; -GO -ALTER TABLE ELOrganization ADD RefLeaTypeId int NULL; -GO -ALTER TABLE ELStaffEmployment ADD MepPersonnelIndicator bit NULL; -GO -ALTER TABLE ELOrganization ADD RefNationalSchoolLunchProgramStatusId int NULL; -GO -ALTER TABLE ELOrganization ADD RefPredominantCalendarSystemId int NULL; -GO -ALTER TABLE OrganizationProgramType ADD PrimaryProgramIndicator bit NULL; -GO -ALTER TABLE ELEnrollment ADD RefPublicSchoolResidenceId int NULL; -GO -ALTER TABLE ELOrganization ADD RefSchoolLevelId int NULL; -GO -ALTER TABLE K12StaffAssignment ADD RefSpecialEducationTeacherQualificationStatusId int NULL; -GO -ALTER TABLE ELOrganization ADD RefStatePovertyDesignationId int NULL; -GO -ALTER TABLE OrganizationPopulationServed ADD RefStudentSupportServiceAvailabilityTypeId int NULL; -GO -ALTER TABLE ELStaffEmployment ADD TitleITargetedAssistanceStaffFunded bit NULL; -GO -ALTER TABLE ELOrganization ADD RefVirtualSchoolStatusId int NULL; -GO -ALTER TABLE TeacherEducationCredentialExam ADD AssessmentResultId int NULL; -GO - - -----Altering datatype - increasing size---- -----WARNING!! - We are altering the data size to increase the capacity, this is likely not an issue to any existing data or processes---- - -ALTER TABLE Assessment ALTER COLUMN Identifier nvarchar(100); -GO -----Dropping Foreign Key Constraints----- - -ALTER TABLE Assessment DROP CONSTRAINT FK_Assessment_RefAssessmentTypeChildrenWithDisabilities; -GO -ALTER TABLE K12StudentEnrollment DROP CONSTRAINT FK_K12StudentEnrollment_RefPublicSchoolResidence; -GO -ALTER TABLE OrganizationFederalAccountability DROP CONSTRAINT FK_OrganizationFedAccountability_RefAMAOAttainmentLEPStudents; -GO -ALTER TABLE OrganizationFederalAccountability DROP CONSTRAINT FK_OrganizationFedAccountability_RefAMAOAttainmentLEPStudents1; -GO -ALTER TABLE OrganizationFederalAccountability DROP CONSTRAINT FK_OrganizationFedAccountability_RefAMAOAttainmentLEPStudents2; -GO -ALTER TABLE PsStudentDemographic DROP CONSTRAINT FK_PsStudentDemographic_RefPostsecondaryLEPType; -GO - -----Dropping Columns---- -----WARNING!! This will remove the columns entirely and will not retain the data---- -ALTER TABLE OrganizationFederalAccountability DROP COLUMN AmaoAypProgressAttainmentLepStudents; -GO -ALTER TABLE OrganizationFederalAccountability DROP COLUMN AmaoProficiencyAttainmentLepStudents; -GO -ALTER TABLE OrganizationFederalAccountability DROP COLUMN AmaoProgressAttainmentLepStudents; -GO -ALTER TABLE PsStudentDemographic DROP COLUMN RefPsLepTypeId; -GO - -----Dropping Reference Tables---- -----WARNING!! This will remove the tables entirely and will not retain the data---- -DROP TABLE RefPsLepType; -GO -DROP TABLE RefAmaoAttainmentStatus; -GO - -----Renaming columns---- -----WARNING!! This is renaming columns, it will retain the data and the foreign key references but any other process for ingesting or using data that references these columns will need to be edited---- -EXEC sp_rename 'Assessment.RefAssessmentTypeChildrenWithDisabilitiesId', 'RefAssessmentTypeAdministeredId', 'column'; -GO -EXEC sp_rename 'K12StudentEnrollment.RefPublicSchoolResidence', 'RefPublicSchoolResidenceId', 'column'; -GO -EXEC sp_rename 'RefAssessmentTypeChildrenWithDisabilities.RefAssessmentTypeChildrenWithDisabilitiesId', 'RefAssessmentTypeAdministeredId', 'column'; -GO -----Renaming tables---- -----WARNING!! This is renaming tables, it will retain the data and the foreign key references but any other process for ingesting or using data that references these tables will need to be edited---- -EXEC sp_rename 'RefAssessmentTypeChildrenWithDisabilities', 'RefAssessmentTypeAdministered'; -GO - - -ALTER TABLE [dbo].[FinancialAccount] WITH CHECK ADD CONSTRAINT [FK_FinancialAccount_RefFederalProgramCode] FOREIGN KEY([RefFederalProgramCodeId]) -REFERENCES [dbo].[RefFederalProgramCode] ([RefFederalProgramCodeId]); -GO -ALTER TABLE [dbo].[FinancialAccount] CHECK CONSTRAINT [FK_FinancialAccount_RefFederalProgramCode]; -GO - -ALTER TABLE [dbo].[ELEnrollment] WITH CHECK ADD CONSTRAINT [FK_ELEnrollment_RefExitOrWithdrawalStatus] FOREIGN KEY([RefExitOrWithdrawalStatusId]) -REFERENCES [dbo].[RefExitOrWithdrawalStatus] ([RefExitOrWithdrawalStatusId]); -GO -ALTER TABLE [dbo].[ELEnrollment] CHECK CONSTRAINT [FK_ELEnrollment_RefExitOrWithdrawalStatus]; -GO - -ALTER TABLE [dbo].[RefFederalProgramCode] WITH CHECK ADD CONSTRAINT [FK_RefFederalProgramCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefFederalProgramCode] CHECK CONSTRAINT [FK_RefFederalProgramCode_Organization]; -GO - -ALTER TABLE [dbo].[RefFederalProgramSubgrantCode] WITH CHECK ADD CONSTRAINT [FK_RefFederalProgramSubgrantCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefFederalProgramSubgrantCode] CHECK CONSTRAINT [FK_RefFederalProgramSubgrantCode_Organization]; -GO - -ALTER TABLE [dbo].[FinancialAccount] WITH CHECK ADD CONSTRAINT [FK_FinancialAccount_RefFederalProgramSubgrantCode] FOREIGN KEY([RefFederalProgramSubgrantCodeId]) -REFERENCES [dbo].[RefFederalProgramSubgrantCode] ([RefFederalProgramSubgrantCodeId]); -GO -ALTER TABLE [dbo].[FinancialAccount] CHECK CONSTRAINT [FK_FinancialAccount_RefFederalProgramSubgrantCode]; -GO - -ALTER TABLE [dbo].[RefFinancialAccountCodingSystemOrganizationType] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountCodingSystemOrganizationType_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefFinancialAccountCodingSystemOrganizationType] CHECK CONSTRAINT [FK_RefFinancialAccountCodingSystemOrganizationType_Organization]; -GO - -ALTER TABLE [dbo].[RefFinancialAccountLocalBalanceSheetCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalBalanceSheetCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefFinancialAccountLocalBalanceSheetCode] CHECK CONSTRAINT [FK_RefFinancialAccountLocalBalanceSheetCode_Organization]; -GO - -ALTER TABLE [dbo].[RefFinancialAccountLocalBalanceSheetCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalBalanceSheetCode_RefFinancialAccountCodingSystemOrganizationType] FOREIGN KEY([RefFinancialAccountCodingSystemOrganizationTypeId]) -REFERENCES [dbo].[RefFinancialAccountCodingSystemOrganizationType] ([RefFinancialAccountCodingSystemOrganizationTypeId]); -GO -ALTER TABLE [dbo].[RefFinancialAccountLocalBalanceSheetCode] CHECK CONSTRAINT [FK_RefFinancialAccountLocalBalanceSheetCode_RefFinancialAccountCodingSystemOrganizationType]; -GO - -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalBalanceSheetCode] FOREIGN KEY([RefFinancialAccountLocalBalanceSheetCodeId]) -REFERENCES [dbo].[RefFinancialAccountLocalBalanceSheetCode] ([RefFinancialAccountLocalBalanceSheetCodeId]); -GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalBalanceSheetCode]; -GO - -ALTER TABLE [dbo].[RefFinancialAccountLocalFundClassification] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalFundClassification_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefFinancialAccountLocalFundClassification] CHECK CONSTRAINT [FK_RefFinancialAccountLocalFundClassification_Organization]; -GO - -ALTER TABLE [dbo].[RefFinancialAccountLocalFundClassification] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalFundClassification_RefFinancialAccountCodingSystemOrganizationType] FOREIGN KEY([RefFinancialAccountCodingSystemOrganizationTypeId]) -REFERENCES [dbo].[RefFinancialAccountCodingSystemOrganizationType] ([RefFinancialAccountCodingSystemOrganizationTypeId]); -GO -ALTER TABLE [dbo].[RefFinancialAccountLocalFundClassification] CHECK CONSTRAINT [FK_RefFinancialAccountLocalFundClassification_RefFinancialAccountCodingSystemOrganizationType]; -GO - -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalFundClassification] FOREIGN KEY([RefFinancialAccountLocalFundClassificationId]) -REFERENCES [dbo].[RefFinancialAccountLocalFundClassification] ([RefFinancialAccountLocalFundClassificationId]); -GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalFundClassification]; -GO - -ALTER TABLE [dbo].[RefFinancialAccountLocalProgramCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalProgramCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefFinancialAccountLocalProgramCode] CHECK CONSTRAINT [FK_RefFinancialAccountLocalProgramCode_Organization]; -GO - -ALTER TABLE [dbo].[RefFinancialAccountLocalProgramCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalProgramCode_RefFinancialAccountCodingSystemOrganizationType] FOREIGN KEY([RefFinancialAccountCodingSystemOrganizationTypeId]) -REFERENCES [dbo].[RefFinancialAccountCodingSystemOrganizationType] ([RefFinancialAccountCodingSystemOrganizationTypeId]); -GO -ALTER TABLE [dbo].[RefFinancialAccountLocalProgramCode] CHECK CONSTRAINT [FK_RefFinancialAccountLocalProgramCode_RefFinancialAccountCodingSystemOrganizationType]; -GO - -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalProgramCode] FOREIGN KEY([RefFinancialAccountLocalProgramCodeId]) -REFERENCES [dbo].[RefFinancialAccountLocalProgramCode] ([RefFinancialAccountLocalProgramCodeId]); -GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalProgramCode]; -GO - -ALTER TABLE [dbo].[RefFinancialAccountLocalRevenueCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalRevenueCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefFinancialAccountLocalRevenueCode] CHECK CONSTRAINT [FK_RefFinancialAccountLocalRevenueCode_Organization]; -GO - -ALTER TABLE [dbo].[RefFinancialAccountLocalRevenueCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalRevenueCode_RefFinancialAccountCodingSystemOrganizationType] FOREIGN KEY([RefFinancialAccountCodingSystemOrganizationTypeId]) -REFERENCES [dbo].[RefFinancialAccountCodingSystemOrganizationType] ([RefFinancialAccountCodingSystemOrganizationTypeId]); -GO -ALTER TABLE [dbo].[RefFinancialAccountLocalRevenueCode] CHECK CONSTRAINT [FK_RefFinancialAccountLocalRevenueCode_RefFinancialAccountCodingSystemOrganizationType]; -GO - -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalRevenueCode] FOREIGN KEY([RefFinancialAccountLocalRevenueCodeId]) -REFERENCES [dbo].[RefFinancialAccountLocalRevenueCode] ([RefFinancialAccountLocalRevenueCodeId]); -GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalRevenueCode]; -GO - -ALTER TABLE [dbo].[RefFinancialExpenditureLocalFunctionCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialExpenditureLocalFunctionCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalFunctionCode] CHECK CONSTRAINT [FK_RefFinancialExpenditureLocalFunctionCode_Organization]; -GO - -ALTER TABLE [dbo].[RefFinancialExpenditureLocalFunctionCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialExpenditureLocalFunctionCode_RefFinancialAccountCodingSystemOrganizationType] FOREIGN KEY([RefFinancialAccountCodingSystemOrganizationTypeId]) -REFERENCES [dbo].[RefFinancialAccountCodingSystemOrganizationType] ([RefFinancialAccountCodingSystemOrganizationTypeId]); -GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalFunctionCode] CHECK CONSTRAINT [FK_RefFinancialExpenditureLocalFunctionCode_RefFinancialAccountCodingSystemOrganizationType]; -GO - -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialExpenditureLocalFunctionCode] FOREIGN KEY([RefFinancialExpenditureLocalFunctionCodeId]) -REFERENCES [dbo].[RefFinancialExpenditureLocalFunctionCode] ([RefFinancialExpenditureLocalFunctionCodeId]); -GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialExpenditureLocalFunctionCode]; -GO - -ALTER TABLE [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialExpenditureLocalLevelOfInstructionCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode] CHECK CONSTRAINT [FK_RefFinancialExpenditureLocalLevelOfInstructionCode_Organization]; -GO - -ALTER TABLE [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialExpenditureLocalLevelOfInstructionCode_RefFinancialAccountCodingSystemOrganizationType] FOREIGN KEY([RefFinancialAccountCodingSystemOrganizationTypeId]) -REFERENCES [dbo].[RefFinancialAccountCodingSystemOrganizationType] ([RefFinancialAccountCodingSystemOrganizationTypeId]); -GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode] CHECK CONSTRAINT [FK_RefFinancialExpenditureLocalLevelOfInstructionCode_RefFinancialAccountCodingSystemOrganizationType]; -GO - -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialExpenditureLocalLevelOfInstructionCode] FOREIGN KEY([RefFinancialExpenditureLocalLevelOfInstructionCodeId]) -REFERENCES [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode] ([RefFinancialExpenditureLocalLevelOfInstructionCodeId]); -GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialExpenditureLocalLevelOfInstructionCode]; -GO - -ALTER TABLE [dbo].[RefFinancialExpenditureLocalObjectCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialExpenditureLocalObjectCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalObjectCode] CHECK CONSTRAINT [FK_RefFinancialExpenditureLocalObjectCode_Organization]; -GO - -ALTER TABLE [dbo].[RefFinancialExpenditureLocalObjectCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialExpenditureLocalObjectCode_RefFinancialAccountCodingSystemOrganizationType] FOREIGN KEY([RefFinancialAccountCodingSystemOrganizationTypeId]) -REFERENCES [dbo].[RefFinancialAccountCodingSystemOrganizationType] ([RefFinancialAccountCodingSystemOrganizationTypeId]); -GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalObjectCode] CHECK CONSTRAINT [FK_RefFinancialExpenditureLocalObjectCode_RefFinancialAccountCodingSystemOrganizationType]; -GO - -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialExpenditureLocalObjectCode] FOREIGN KEY([RefFinancialExpenditureLocalObjectCodeId]) -REFERENCES [dbo].[RefFinancialExpenditureLocalObjectCode] ([RefFinancialExpenditureLocalObjectCodeId]); -GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialExpenditureLocalObjectCode]; -GO - -ALTER TABLE [dbo].[ELStaffEmployment] WITH CHECK ADD CONSTRAINT [FK_ELStaffEmployment_RefFullTimeStatus] FOREIGN KEY([RefFullTimeStatusId]) -REFERENCES [dbo].[RefFullTimeStatus] ([RefFullTimeStatusId]); -GO -ALTER TABLE [dbo].[ELStaffEmployment] CHECK CONSTRAINT [FK_ELStaffEmployment_RefFullTimeStatus]; -GO - -ALTER TABLE [dbo].[ELStaffEmployment] WITH CHECK ADD CONSTRAINT [FK_ELStaffEmployment_RefInstructionalStaffContractLength] FOREIGN KEY([RefInstructionalStaffContractLengthId]) -REFERENCES [dbo].[RefInstructionalStaffContractLength] ([RefInstructionalStaffContractLengthId]); -GO -ALTER TABLE [dbo].[ELStaffEmployment] CHECK CONSTRAINT [FK_ELStaffEmployment_RefInstructionalStaffContractLength]; -GO - -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefInternetAccess] FOREIGN KEY([RefInternetAccessId]) -REFERENCES [dbo].[RefInternetAccess] ([RefInternetAccessId]); -GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefInternetAccess]; -GO - -ALTER TABLE [dbo].[Assessment] WITH CHECK ADD CONSTRAINT [FK_Assessment_RefAssessmentTypeAdministered] FOREIGN KEY([RefAssessmentTypeAdministeredId]) -REFERENCES [dbo].[RefAssessmentTypeAdministered] ([RefAssessmentTypeAdministeredId]); -GO -ALTER TABLE [dbo].[Assessment] CHECK CONSTRAINT [FK_Assessment_RefAssessmentTypeAdministered]; -GO - -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_DataCollection] FOREIGN KEY([DataCollectionId]) -REFERENCES [dbo].[DataCollection] ([DataCollectionId]); -GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_DataCollection]; -GO - -ALTER TABLE [dbo].[ELStaffEmployment] WITH CHECK ADD CONSTRAINT [FK_ELStaffEmployment_RefIpedsOccupationalCategory] FOREIGN KEY([RefIpedsOccupationalCategoryId]) -REFERENCES [dbo].[RefIpedsOccupationalCategory] ([RefIpedsOccupationalCategoryId]); -GO -ALTER TABLE [dbo].[ELStaffEmployment] CHECK CONSTRAINT [FK_ELStaffEmployment_RefIpedsOccupationalCategory]; -GO - -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefLeaType] FOREIGN KEY([RefLeaTypeId]) -REFERENCES [dbo].[RefLeaType] ([RefLeaTypeId]); -GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefLeaType]; -GO - -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefNationalSchoolLunchProgramStatus] FOREIGN KEY([RefNationalSchoolLunchProgramStatusId]) -REFERENCES [dbo].[RefNationalSchoolLunchProgramStatus] ([RefNationalSchoolLunchProgramStatusId]); -GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefNationalSchoolLunchProgramStatus]; -GO - -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefPredominantCalendarSystem] FOREIGN KEY([RefPredominantCalendarSystemId]) -REFERENCES [dbo].[RefPredominantCalendarSystem] ([RefPredominantCalendarSystemId]); -GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefPredominantCalendarSystem]; -GO - -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] WITH CHECK ADD CONSTRAINT [FK_OrganizationProjectBasedLearning_RefProjectBasedLearningType] FOREIGN KEY([RefProjectBasedLearningTypeId]) -REFERENCES [dbo].[RefProjectBasedLearningType] ([RefProjectBasedLearningTypeId]); -GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] CHECK CONSTRAINT [FK_OrganizationProjectBasedLearning_RefProjectBasedLearningType]; -GO - -ALTER TABLE [dbo].[K12StudentEnrollment] WITH CHECK ADD CONSTRAINT [FK_K12StudentEnrollment_RefPublicSchoolResidence] FOREIGN KEY([RefPublicSchoolResidenceId]) -REFERENCES [dbo].[RefPublicSchoolResidence] ([RefPublicSchoolResidenceId]); -GO -ALTER TABLE [dbo].[K12StudentEnrollment] CHECK CONSTRAINT [FK_K12StudentEnrollment_RefPublicSchoolResidence]; -GO - -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_FinancialAccountLocal] FOREIGN KEY([FinancialAccountLocalId]) -REFERENCES [dbo].[FinancialAccountLocal] ([FinancialAccountLocalId]); -GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] CHECK CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_FinancialAccountLocal]; -GO - -ALTER TABLE [dbo].[ELEnrollment] WITH CHECK ADD CONSTRAINT [FK_ELEnrollment_RefPublicSchoolResidence] FOREIGN KEY([RefPublicSchoolResidenceId]) -REFERENCES [dbo].[RefPublicSchoolResidence] ([RefPublicSchoolResidenceId]); -GO -ALTER TABLE [dbo].[ELEnrollment] CHECK CONSTRAINT [FK_ELEnrollment_RefPublicSchoolResidence]; -GO - -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefSchoolLevel] FOREIGN KEY([RefSchoolLevelId]) -REFERENCES [dbo].[RefSchoolLevel] ([RefSchoolLevelId]); -GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefSchoolLevel]; -GO - -ALTER TABLE [dbo].[RefSpecialEducationTeacherQualificationStatus] WITH CHECK ADD CONSTRAINT [FK_RefSpecialEducationTeacherQualificationStatus_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefSpecialEducationTeacherQualificationStatus] CHECK CONSTRAINT [FK_RefSpecialEducationTeacherQualificationStatus_Organization]; -GO - -ALTER TABLE [dbo].[K12StaffAssignment] WITH CHECK ADD CONSTRAINT [FK_K12StaffAssignment_RefSpecialEducationTeacherQualificationStatus] FOREIGN KEY([RefSpecialEducationTeacherQualificationStatusId]) -REFERENCES [dbo].[RefSpecialEducationTeacherQualificationStatus] ([RefSpecialEducationTeacherQualificationStatusId]); -GO -ALTER TABLE [dbo].[K12StaffAssignment] CHECK CONSTRAINT [FK_K12StaffAssignment_RefSpecialEducationTeacherQualificationStatus]; -GO - -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_OrganizationFinancial] FOREIGN KEY([OrganizationFinancialId]) -REFERENCES [dbo].[OrganizationFinancial] ([OrganizationFinancialId]); -GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] CHECK CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_OrganizationFinancial]; -GO - -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefStatePovertyDesignation] FOREIGN KEY([RefStatePovertyDesignationId]) -REFERENCES [dbo].[RefStatePovertyDesignation] ([RefStatePovertyDesignationId]); -GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefStatePovertyDesignation]; -GO - -ALTER TABLE [dbo].[RefStudentSupportServiceAvailabilityType] WITH CHECK ADD CONSTRAINT [FK_RefStudentSupportServiceAvailabilityType_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefStudentSupportServiceAvailabilityType] CHECK CONSTRAINT [FK_RefStudentSupportServiceAvailabilityType_Organization]; -GO - -ALTER TABLE [dbo].[OrganizationPopulationServed] WITH CHECK ADD CONSTRAINT [FK_OrganizationPopulationServed_RefStudentSupportServiceAvailabilityType] FOREIGN KEY([RefStudentSupportServiceAvailabilityTypeId]) -REFERENCES [dbo].[RefStudentSupportServiceAvailabilityType] ([RefStudentSupportServiceAvailabilityTypeId]); -GO -ALTER TABLE [dbo].[OrganizationPopulationServed] CHECK CONSTRAINT [FK_OrganizationPopulationServed_RefStudentSupportServiceAvailabilityType]; -GO - -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); -GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RecordStatus]; -GO - -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefVirtualSchoolStatus] FOREIGN KEY([RefVirtualSchoolStatusId]) -REFERENCES [dbo].[RefVirtualSchoolStatus] ([RefVirtualSchoolStatusId]); -GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefVirtualSchoolStatus]; -GO - -ALTER TABLE [dbo].[RefAdjustedCapacityReasonType] WITH CHECK ADD CONSTRAINT [FK_RefAdjustedCapacityReasonType_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefAdjustedCapacityReasonType] CHECK CONSTRAINT [FK_RefAdjustedCapacityReasonType_Organization]; -GO - -ALTER TABLE [dbo].[RefProjectBasedLearningType] WITH CHECK ADD CONSTRAINT [FK_RefProjectBasedLearningType_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefProjectBasedLearningType] CHECK CONSTRAINT [FK_RefProjectBasedLearningType_Organization]; -GO - -ALTER TABLE [dbo].[TeacherEducationCredentialExam] WITH CHECK ADD CONSTRAINT [FK_TeacherEducationCredentialExam_AssessmentResult] FOREIGN KEY([AssessmentResultId]) -REFERENCES [dbo].[AssessmentResult] ([AssessmentResultId]); -GO -ALTER TABLE [dbo].[TeacherEducationCredentialExam] CHECK CONSTRAINT [FK_TeacherEducationCredentialExam_AssessmentResult]; -GO - -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] WITH CHECK ADD CONSTRAINT [FK_OrganizationProjectBasedLearning_Organization] FOREIGN KEY([OrganizationId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] CHECK CONSTRAINT [FK_OrganizationProjectBasedLearning_Organization]; -GO - -ALTER TABLE [dbo].[ELCourse] WITH CHECK ADD CONSTRAINT [FK_ELCourse_RefBlendedLearningModelType] FOREIGN KEY([RefBlendedLearningModelTypeId]) -REFERENCES [dbo].[RefBlendedLearningModelType] ([RefBlendedLearningModelTypeId]); -GO -ALTER TABLE [dbo].[ELCourse] CHECK CONSTRAINT [FK_ELCourse_RefBlendedLearningModelType]; -GO - -ALTER TABLE [dbo].[ELStaffAssignment] WITH CHECK ADD CONSTRAINT [FK_ELStaffAssignment_RefClassroomPositionType] FOREIGN KEY([RefClassroomPositionTypeId]) -REFERENCES [dbo].[RefClassroomPositionType] ([RefClassroomPositionTypeId]); -GO -ALTER TABLE [dbo].[ELStaffAssignment] CHECK CONSTRAINT [FK_ELStaffAssignment_RefClassroomPositionType]; -GO - -ALTER TABLE [dbo].[ELStaffAssignment] WITH CHECK ADD CONSTRAINT [FK_ELStaffAssignment_RefK12StaffClassification] FOREIGN KEY([RefK12StaffClassificationId]) -REFERENCES [dbo].[RefK12StaffClassification] ([RefK12StaffClassificationId]); -GO -ALTER TABLE [dbo].[ELStaffAssignment] CHECK CONSTRAINT [FK_ELStaffAssignment_RefK12StaffClassification]; -GO - -ALTER TABLE [dbo].[ELStaffAssignment] WITH CHECK ADD CONSTRAINT [FK_ELStaffAssignment_RefProfessionalEducationJobClassification] FOREIGN KEY([RefProfessionalEducationJobClassificationId]) -REFERENCES [dbo].[RefProfessionalEducationJobClassification] ([RefProfessionalEducationJobClassificationId]); -GO -ALTER TABLE [dbo].[ELStaffAssignment] CHECK CONSTRAINT [FK_ELStaffAssignment_RefProfessionalEducationJobClassification]; -GO - -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] WITH CHECK ADD CONSTRAINT [FK_ELOrganizationStudentResponsibility_RefK12ResponsibilityType] FOREIGN KEY([RefK12ResponsibilityTypeId]) -REFERENCES [dbo].[RefK12ResponsibilityType] ([RefK12ResponsibilityTypeId]); -GO -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] CHECK CONSTRAINT [FK_ELOrganizationStudentResponsibility_RefK12ResponsibilityType]; -GO - -ALTER TABLE [dbo].[ELCourse] WITH CHECK ADD CONSTRAINT [FK_ELCourse_RefSCEDCourseCode] FOREIGN KEY([RefSCEDCourseCodeId]) -REFERENCES [dbo].[RefSCEDCourseCode] ([RefSCEDCourseCodeId]); -GO -ALTER TABLE [dbo].[ELCourse] CHECK CONSTRAINT [FK_ELCourse_RefSCEDCourseCode]; -GO - -ALTER TABLE [dbo].[ELCourse] WITH CHECK ADD CONSTRAINT [FK_ELCourse_RefSCEDCourseLevel] FOREIGN KEY([RefSCEDCourseLevelId]) -REFERENCES [dbo].[RefSCEDCourseLevel] ([RefSCEDCourseLevelId]); -GO -ALTER TABLE [dbo].[ELCourse] CHECK CONSTRAINT [FK_ELCourse_RefSCEDCourseLevel]; -GO - -ALTER TABLE [dbo].[ELCourse] WITH CHECK ADD CONSTRAINT [FK_ELCourse_RefSCEDCourseSubjectArea] FOREIGN KEY([RefSCEDCourseSubjectAreaId]) -REFERENCES [dbo].[RefSCEDCourseSubjectArea] ([RefSCEDCourseSubjectAreaId]); -GO -ALTER TABLE [dbo].[ELCourse] CHECK CONSTRAINT [FK_ELCourse_RefSCEDCourseSubjectArea]; -GO - -ALTER TABLE [dbo].[ELStaffAssignment] WITH CHECK ADD CONSTRAINT [FK_ELStaffAssignment_RefSpecialEducationAgeGroupTaught] FOREIGN KEY([RefSpecialEducationAgeGroupTaughtId]) -REFERENCES [dbo].[RefSpecialEducationAgeGroupTaught] ([RefSpecialEducationAgeGroupTaughtId]); -GO -ALTER TABLE [dbo].[ELStaffAssignment] CHECK CONSTRAINT [FK_ELStaffAssignment_RefSpecialEducationAgeGroupTaught]; -GO - -ALTER TABLE [dbo].[ELStaffAssignment] WITH CHECK ADD CONSTRAINT [FK_ELStaffAssignment_RefSpecialEducationStaffCategory] FOREIGN KEY([RefSpecialEducationStaffCategoryId]) -REFERENCES [dbo].[RefSpecialEducationStaffCategory] ([RefSpecialEducationStaffCategoryId]); -GO -ALTER TABLE [dbo].[ELStaffAssignment] CHECK CONSTRAINT [FK_ELStaffAssignment_RefSpecialEducationStaffCategory]; -GO - -ALTER TABLE [dbo].[RefSCEDCourseCode] WITH CHECK ADD CONSTRAINT [FK_RefSCEDCourseCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefSCEDCourseCode] CHECK CONSTRAINT [FK_RefSCEDCourseCode_Organization]; -GO - -ALTER TABLE [dbo].[ELStaffAssignment] WITH CHECK ADD CONSTRAINT [FK_ELStaffAssignment_RefTeachingAssignmentRole] FOREIGN KEY([RefTeachingAssignmentRoleId]) -REFERENCES [dbo].[RefTeachingAssignmentRole] ([RefTeachingAssignmentRoleId]); -GO -ALTER TABLE [dbo].[ELStaffAssignment] CHECK CONSTRAINT [FK_ELStaffAssignment_RefTeachingAssignmentRole]; -GO - -ALTER TABLE [dbo].[ELStaffAssignment] WITH CHECK ADD CONSTRAINT [FK_ELStaffAssignment_RefTitleIProgramStaffCategory] FOREIGN KEY([RefTitleIProgramStaffCategoryId]) -REFERENCES [dbo].[RefTitleIProgramStaffCategory] ([RefTitleIProgramStaffCategoryId]); -GO -ALTER TABLE [dbo].[ELStaffAssignment] CHECK CONSTRAINT [FK_ELStaffAssignment_RefTitleIProgramStaffCategory]; -GO - -ALTER TABLE [dbo].[ELCourse] WITH CHECK ADD CONSTRAINT [FK_ELCourse_Course] FOREIGN KEY([CourseId]) -REFERENCES [dbo].[Course] ([CourseId]); -GO -ALTER TABLE [dbo].[ELCourse] CHECK CONSTRAINT [FK_ELCourse_Course]; -GO - -ALTER TABLE [dbo].[ELCourse] WITH CHECK ADD CONSTRAINT [FK_ELCourse_DataCollection] FOREIGN KEY([DataCollectionId]) -REFERENCES [dbo].[DataCollection] ([DataCollectionId]); -GO -ALTER TABLE [dbo].[ELCourse] CHECK CONSTRAINT [FK_ELCourse_DataCollection]; -GO - -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] WITH CHECK ADD CONSTRAINT [FK_ELOrganizationStudentResponsibility_DataCollection] FOREIGN KEY([DataCollectionId]) -REFERENCES [dbo].[DataCollection] ([DataCollectionId]); -GO -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] CHECK CONSTRAINT [FK_ELOrganizationStudentResponsibility_DataCollection]; -GO - -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] WITH CHECK ADD CONSTRAINT [FK_ELOrganizationStudentResponsibility_OrganizationPersonRole] FOREIGN KEY([OrganizationPersonRoleId]) -REFERENCES [dbo].[OrganizationPersonRole] ([OrganizationPersonRoleId]); -GO -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] CHECK CONSTRAINT [FK_ELOrganizationStudentResponsibility_OrganizationPersonRole]; -GO - -ALTER TABLE [dbo].[ELCourse] WITH CHECK ADD CONSTRAINT [FK_ELCourse_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); -GO -ALTER TABLE [dbo].[ELCourse] CHECK CONSTRAINT [FK_ELCourse_RecordStatus]; -GO - -ALTER TABLE [dbo].[CteCourse] WITH CHECK ADD CONSTRAINT [FK_CteCourse_RefSCEDCourseCode] FOREIGN KEY([RefSCEDCourseCodeId]) -REFERENCES [dbo].[RefSCEDCourseCode] ([RefSCEDCourseCodeId]); -GO -ALTER TABLE [dbo].[CteCourse] CHECK CONSTRAINT [FK_CteCourse_RefSCEDCourseCode]; -GO - -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] WITH CHECK ADD CONSTRAINT [FK_ELOrganizationStudentResponsibility_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); -GO -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] CHECK CONSTRAINT [FK_ELOrganizationStudentResponsibility_RecordStatus]; -GO - -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] WITH CHECK ADD CONSTRAINT [FK_OrganizationEnrollmentCapacity_RefAdjustedCapacityReasonType] FOREIGN KEY([RefAdjustedCapacityReasonTypeId]) -REFERENCES [dbo].[RefAdjustedCapacityReasonType] ([RefAdjustedCapacityReasonTypeId]); -GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] CHECK CONSTRAINT [FK_OrganizationEnrollmentCapacity_RefAdjustedCapacityReasonType]; -GO - -ALTER TABLE [dbo].[ELOrganizationFunds] WITH CHECK ADD CONSTRAINT [FK_ELOrganizationFunds_RefAdministrativeFundingControl] FOREIGN KEY([RefAdministrativeFundingControlId]) -REFERENCES [dbo].[RefAdministrativeFundingControl] ([RefAdministrativeFundingControlId]); -GO -ALTER TABLE [dbo].[ELOrganizationFunds] CHECK CONSTRAINT [FK_ELOrganizationFunds_RefAdministrativeFundingControl]; -GO - -ALTER TABLE [dbo].[K12Course] WITH CHECK ADD CONSTRAINT [FK_K12Course_RefSCEDCourseCode] FOREIGN KEY([RefSCEDCourseCodeId]) -REFERENCES [dbo].[RefSCEDCourseCode] ([RefSCEDCourseCodeId]); -GO -ALTER TABLE [dbo].[K12Course] CHECK CONSTRAINT [FK_K12Course_RefSCEDCourseCode]; -GO - -ALTER TABLE [dbo].[RefAssessmentTypeAdministeredToEnglishLearners] WITH CHECK ADD CONSTRAINT [FK_RefAssessmentTypeAdministeredToEnglishLearners_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefAssessmentTypeAdministeredToEnglishLearners] CHECK CONSTRAINT [FK_RefAssessmentTypeAdministeredToEnglishLearners_Organization]; -GO - -ALTER TABLE [dbo].[Assessment] WITH CHECK ADD CONSTRAINT [FK_Assessment_RefAssessmentTypeAdministeredToEnglishLearners] FOREIGN KEY([RefAssessmentTypeAdministeredToEnglishLearnersId]) -REFERENCES [dbo].[RefAssessmentTypeAdministeredToEnglishLearners] ([RefAssessmentTypeAdministeredToEnglishLearnersId]); -GO -ALTER TABLE [dbo].[Assessment] CHECK CONSTRAINT [FK_Assessment_RefAssessmentTypeAdministeredToEnglishLearners]; -GO - -ALTER TABLE [dbo].[ELStaffEmployment] WITH CHECK ADD CONSTRAINT [FK_ELStaffEmployment_RefEmploymentContractType] FOREIGN KEY([RefEmploymentContractTypeId]) -REFERENCES [dbo].[RefEmploymentContractType] ([RefEmploymentContractTypeId]); -GO -ALTER TABLE [dbo].[ELStaffEmployment] CHECK CONSTRAINT [FK_ELStaffEmployment_RefEmploymentContractType]; -GO - -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefControlOfInstitution] FOREIGN KEY([RefControlOfInstitutionId]) -REFERENCES [dbo].[RefControlOfInstitution] ([RefControlOfInstitutionId]); -GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefControlOfInstitution]; -GO - -ALTER TABLE [dbo].[Course] WITH CHECK ADD CONSTRAINT [FK_Course_RefCourseLevelType] FOREIGN KEY([RefCourseLevelTypeId]) -REFERENCES [dbo].[RefCourseLevelType] ([RefCourseLevelTypeId]); -GO -ALTER TABLE [dbo].[Course] CHECK CONSTRAINT [FK_Course_RefCourseLevelType]; -GO - -ALTER TABLE [dbo].[RefEdFactsCertificationStatus] WITH CHECK ADD CONSTRAINT [FK_RefEdFactsCertificationStatus_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); -GO -ALTER TABLE [dbo].[RefEdFactsCertificationStatus] CHECK CONSTRAINT [FK_RefEdFactsCertificationStatus_Organization]; -GO - -ALTER TABLE [dbo].[K12StaffAssignment] WITH CHECK ADD CONSTRAINT [FK_K12StaffAssignment_RefEdFactsCertificationStatus] FOREIGN KEY([RefEdFactsCertificationStatusId]) -REFERENCES [dbo].[RefEdFactsCertificationStatus] ([RefEdFactsCertificationStatusId]); -GO -ALTER TABLE [dbo].[K12StaffAssignment] CHECK CONSTRAINT [FK_K12StaffAssignment_RefEdFactsCertificationStatus]; -GO - -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] WITH CHECK ADD CONSTRAINT [FK_OrganizationEnrollmentCapacity_OrganizationCalendarSession] FOREIGN KEY([OrganizationCalendarSessionId]) -REFERENCES [dbo].[OrganizationCalendarSession] ([OrganizationCalendarSessionId]); -GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] CHECK CONSTRAINT [FK_OrganizationEnrollmentCapacity_OrganizationCalendarSession]; -GO - -ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] WITH CHECK ADD CONSTRAINT [FK_OrganizationPersonRoleRelationship_DataCollection] FOREIGN KEY([DataCollectionId]) -REFERENCES [dbo].[DataCollection] ([DataCollectionId]) -GO - -ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] CHECK CONSTRAINT [FK_OrganizationPersonRoleRelationship_DataCollection] -GO - -ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] WITH CHECK ADD CONSTRAINT [FK_OrganizationPersonRoleRelationship_OrganizationPersonRole] FOREIGN KEY([OrganizationPersonRoleId]) -REFERENCES [dbo].[OrganizationPersonRole] ([OrganizationPersonRoleId]) -GO - -ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] CHECK CONSTRAINT [FK_OrganizationPersonRoleRelationship_OrganizationPersonRole] -GO - -ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] WITH CHECK ADD CONSTRAINT [FK_OrganizationPersonRoleRelationship_OrganizationPersonRole_Parent] FOREIGN KEY([OrganizationPersonRoleId_Parent]) -REFERENCES [dbo].[OrganizationPersonRole] ([OrganizationPersonRoleId]) -GO - -ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] CHECK CONSTRAINT [FK_OrganizationPersonRoleRelationship_OrganizationPersonRole_Parent] -GO - -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) -GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] CHECK CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_RecordStatus] -GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_DataCollection] FOREIGN KEY([DataCollectionId]) -REFERENCES [dbo].[DataCollection] ([DataCollectionId]) -GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] CHECK CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_DataCollection] -GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] WITH CHECK ADD CONSTRAINT [FK_OrganizationEnrollmentCapacity_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) -GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] CHECK CONSTRAINT [FK_OrganizationEnrollmentCapacity_RecordStatus] -GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] WITH CHECK ADD CONSTRAINT [FK_OrganizationEnrollmentCapacity_DataCollection] FOREIGN KEY([DataCollectionId]) -REFERENCES [dbo].[DataCollection] ([DataCollectionId]) -GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] CHECK CONSTRAINT [FK_OrganizationEnrollmentCapacity_DataCollection] -GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] WITH CHECK ADD CONSTRAINT [FK_OrganizationProjectBasedLearning_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) -GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] CHECK CONSTRAINT [FK_OrganizationProjectBasedLearning_RecordStatus] -GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] WITH CHECK ADD CONSTRAINT [FK_OrganizationProjectBasedLearning_DataCollection] FOREIGN KEY([DataCollectionId]) -REFERENCES [dbo].[DataCollection] ([DataCollectionId]) -GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] CHECK CONSTRAINT [FK_OrganizationProjectBasedLearning_DataCollection] -GO -ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] WITH CHECK ADD CONSTRAINT [FK_OrganizationPersonRoleRelationship_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) -GO -ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] CHECK CONSTRAINT [FK_OrganizationPersonRoleRelationship_RecordStatus] -GO - - ------------------------------------------------- ------Section 4 Rebuilding a Table -------------- ------------------------------------------------- - ---No table rebuilds in this update. - ----------------------------------------------------- -----Section 5 Update the reference tables ---------- ----------------------------------------------------- -DECLARE @updateExisting bit = 1 - -PRINT N'Populate RefAbsentAttendanceCategory table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAbsentAttendanceCategory]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAbsentAttendanceCategory] WHERE [Code] = '13297') BEGIN INSERT INTO dbo.[RefAbsentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13297', 'Absent - Disciplinary action, not receiving instruction', 'The student has been removed from the regular instructional setting for disciplinary reasons and is not receiving instruction. This may include either in-school or out-of-school suspension if instructional services are not provided. It does not include expulsion since expelled students are not enrolled in school.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAbsentAttendanceCategory] -SET [Description] = 'Absent - Disciplinary action, not receiving instruction', [Definition] = 'The student has been removed from the regular instructional setting for disciplinary reasons and is not receiving instruction. This may include either in-school or out-of-school suspension if instructional services are not provided. It does not include expulsion since expelled students are not enrolled in school.', [SortOrder] = 1.00 WHERE [Code] = '13297' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAbsentAttendanceCategory] WHERE [Code] = '13299') BEGIN INSERT INTO dbo.[RefAbsentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13299', 'Absent - Family activity', 'The student is out of school because of a family vacation or other activity. This also includes family time related to a parent being deployed to, or returning from, military duty.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAbsentAttendanceCategory] -SET [Description] = 'Absent - Family activity', [Definition] = 'The student is out of school because of a family vacation or other activity. This also includes family time related to a parent being deployed to, or returning from, military duty.', [SortOrder] = 2.00 WHERE [Code] = '13299' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAbsentAttendanceCategory] WHERE [Code] = '13296') BEGIN INSERT INTO dbo.[RefAbsentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13296', 'Absent - Family emergency or bereavement', 'The student is out of school for unexpected family reasons. Examples include lack of child care for a student with child(ren), care for a sick relative, and bereavement for a family member.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAbsentAttendanceCategory] -SET [Description] = 'Absent - Family emergency or bereavement', [Definition] = 'The student is out of school for unexpected family reasons. Examples include lack of child care for a student with child(ren), care for a sick relative, and bereavement for a family member.', [SortOrder] = 3.00 WHERE [Code] = '13296' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAbsentAttendanceCategory] WHERE [Code] = '13295') BEGIN INSERT INTO dbo.[RefAbsentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13295', 'Absent - Illness, injury, health treatment, or examination', 'The student is out of school because of personal physical or mental illness or injury, including health-related appointments. This may include more unusual situations, such as quarantine.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAbsentAttendanceCategory] -SET [Description] = 'Absent - Illness, injury, health treatment, or examination', [Definition] = 'The student is out of school because of personal physical or mental illness or injury, including health-related appointments. This may include more unusual situations, such as quarantine.', [SortOrder] = 4.00 WHERE [Code] = '13295' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAbsentAttendanceCategory] WHERE [Code] = '13298') BEGIN INSERT INTO dbo.[RefAbsentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13298', 'Absent - Legal or judicial requirement', 'The student is out of school due to a legal obligation to attend judicial proceedings, required appointments, or trial or hearing dates. Or, the student is serving time in jail or is in the custody of the court and is not receiving instruction.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAbsentAttendanceCategory] -SET [Description] = 'Absent - Legal or judicial requirement', [Definition] = 'The student is out of school due to a legal obligation to attend judicial proceedings, required appointments, or trial or hearing dates. Or, the student is serving time in jail or is in the custody of the court and is not receiving instruction.', [SortOrder] = 5.00 WHERE [Code] = '13298' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAbsentAttendanceCategory] WHERE [Code] = '13293') BEGIN INSERT INTO dbo.[RefAbsentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13293', 'Absent - Noninstructional activity recognized by state, district, or school', 'The student is out of school and involved in a noninstructional activity recognized by the school, district, and/or state. Examples include such civic activities as involvement with the National Guard, service as a legislative page, jury duty, or participation on an election board. Note that "recognized activities" are not necessarily considered "excused" absences.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAbsentAttendanceCategory] -SET [Description] = 'Absent - Noninstructional activity recognized by state, district, or school', [Definition] = 'The student is out of school and involved in a noninstructional activity recognized by the school, district, and/or state. Examples include such civic activities as involvement with the National Guard, service as a legislative page, jury duty, or participation on an election board. Note that "recognized activities" are not necessarily considered "excused" absences.', [SortOrder] = 6.00 WHERE [Code] = '13293' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAbsentAttendanceCategory] WHERE [Code] = '13294') BEGIN INSERT INTO dbo.[RefAbsentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13294', 'Absent - Religious observation', 'The student is out of school observing a religious holiday or participating in religious instruction.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAbsentAttendanceCategory] -SET [Description] = 'Absent - Religious observation', [Definition] = 'The student is out of school observing a religious holiday or participating in religious instruction.', [SortOrder] = 7.00 WHERE [Code] = '13294' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAbsentAttendanceCategory] WHERE [Code] = '13303') BEGIN INSERT INTO dbo.[RefAbsentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13303', 'Absent - Situation unknown', 'The student is not present and the reason for the absence is not known. "Situation unknown" is a default category to be used only until the correct attendance category is determined.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAbsentAttendanceCategory] -SET [Description] = 'Absent - Situation unknown', [Definition] = 'The student is not present and the reason for the absence is not known. "Situation unknown" is a default category to be used only until the correct attendance category is determined.', [SortOrder] = 8.00 WHERE [Code] = '13303' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAbsentAttendanceCategory] WHERE [Code] = '13300') BEGIN INSERT INTO dbo.[RefAbsentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13300', 'Absent - Student employment', 'The student is out of school for employment purposes. This does not include work-study or school-related employment.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAbsentAttendanceCategory] -SET [Description] = 'Absent - Student employment', [Definition] = 'The student is out of school for employment purposes. This does not include work-study or school-related employment.', [SortOrder] = 9.00 WHERE [Code] = '13300' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAbsentAttendanceCategory] WHERE [Code] = '13302') BEGIN INSERT INTO dbo.[RefAbsentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13302', 'Absent - Student is skipping school', 'The student is willfully not attending school without parent or school approval.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAbsentAttendanceCategory] -SET [Description] = 'Absent - Student is skipping school', [Definition] = 'The student is willfully not attending school without parent or school approval.', [SortOrder] = 10.00 WHERE [Code] = '13302' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAbsentAttendanceCategory] WHERE [Code] = '13301') BEGIN INSERT INTO dbo.[RefAbsentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13301', 'Absent - Transportation not available', 'The student is not in school because transportation is not available. For example, roads have been closed due to flooding. This category includes school-provided transportation and the student’s personal transportation.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAbsentAttendanceCategory] -SET [Description] = 'Absent - Transportation not available', [Definition] = 'The student is not in school because transportation is not available. For example, roads have been closed due to flooding. This category includes school-provided transportation and the student’s personal transportation.', [SortOrder] = 11.00 WHERE [Code] = '13301' END -END - -PRINT N'Populate RefAcademicAwardLevel table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAcademicAwardLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardLevel] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefAcademicAwardLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Postsecondary award, certificate, or diploma of less than 1 academic year', 'Postsecondary award, certificate, or diploma of less than 1 academic year is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardLevel] -SET [Description] = 'Postsecondary award, certificate, or diploma of less than 1 academic year', [Definition] = 'Postsecondary award, certificate, or diploma of less than 1 academic year is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardLevel] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefAcademicAwardLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Postsecondary award, certificate, or diploma of at least 1 but less than 2 academic years', 'Postsecondary award, certificate, or diploma of at least 1 but less than 2 academic years is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardLevel] -SET [Description] = 'Postsecondary award, certificate, or diploma of at least 1 but less than 2 academic years', [Definition] = 'Postsecondary award, certificate, or diploma of at least 1 but less than 2 academic years is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardLevel] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefAcademicAwardLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Associate''s Degree', 'Associate''s Degree is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardLevel] -SET [Description] = 'Associate''s Degree', [Definition] = 'Associate''s Degree is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardLevel] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefAcademicAwardLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Postsecondary award, certificate, or diploma of at least 2 but less than 4 academic years', 'Postsecondary award, certificate, or diploma of at least 2 but less than 4 academic years is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardLevel] -SET [Description] = 'Postsecondary award, certificate, or diploma of at least 2 but less than 4 academic years', [Definition] = 'Postsecondary award, certificate, or diploma of at least 2 but less than 4 academic years is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardLevel] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefAcademicAwardLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Bachelor''s Degree', 'Bachelor''s Degree is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardLevel] -SET [Description] = 'Bachelor''s Degree', [Definition] = 'Bachelor''s Degree is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', [SortOrder] = 5.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardLevel] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefAcademicAwardLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Postbaccalaureate Certificate', 'Postbaccalaureate Certificate is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardLevel] -SET [Description] = 'Postbaccalaureate Certificate', [Definition] = 'Postbaccalaureate Certificate is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', [SortOrder] = 6.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardLevel] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefAcademicAwardLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Master''s Degree', 'Master''s Degree is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardLevel] -SET [Description] = 'Master''s Degree', [Definition] = 'Master''s Degree is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', [SortOrder] = 7.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardLevel] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefAcademicAwardLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Post-Master''s Certificate', 'Post-Master''s Certificate is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardLevel] -SET [Description] = 'Post-Master''s Certificate', [Definition] = 'Post-Master''s Certificate is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', [SortOrder] = 8.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardLevel] WHERE [Code] = '17') BEGIN INSERT INTO dbo.[RefAcademicAwardLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('17', 'Doctor''s Degree-Research/Scholarship', 'Doctor''s Degree-Research/Scholarship is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardLevel] -SET [Description] = 'Doctor''s Degree-Research/Scholarship', [Definition] = 'Doctor''s Degree-Research/Scholarship is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', [SortOrder] = 9.00 WHERE [Code] = '17' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardLevel] WHERE [Code] = '18') BEGIN INSERT INTO dbo.[RefAcademicAwardLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('18', 'Doctor''s Degree-Professional Practice', 'Doctor''s Degree-Professional Practice is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardLevel] -SET [Description] = 'Doctor''s Degree-Professional Practice', [Definition] = 'Doctor''s Degree-Professional Practice is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', [SortOrder] = 10.00 WHERE [Code] = '18' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardLevel] WHERE [Code] = '19') BEGIN INSERT INTO dbo.[RefAcademicAwardLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('19', 'Doctor''s Degree-Other', 'Doctor''s Degree-Other is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardLevel] -SET [Description] = 'Doctor''s Degree-Other', [Definition] = 'Doctor''s Degree-Other is the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', [SortOrder] = 11.00 WHERE [Code] = '19' END -END - -PRINT N'Populate RefAcademicAwardPrerequisiteType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAcademicAwardPrerequisiteType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardPrerequisiteType] WHERE [Code] = 'Achievement') BEGIN INSERT INTO dbo.[RefAcademicAwardPrerequisiteType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Achievement', 'Achievement', 'Achievement is a prerequisite condition for earning an academic award.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardPrerequisiteType] -SET [Description] = 'Achievement', [Definition] = 'Achievement is a prerequisite condition for earning an academic award.', [SortOrder] = NULL WHERE [Code] = 'Achievement' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardPrerequisiteType] WHERE [Code] = 'Course') BEGIN INSERT INTO dbo.[RefAcademicAwardPrerequisiteType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Course', 'Course', 'Course is a prerequisite condition for earning an academic award.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardPrerequisiteType] -SET [Description] = 'Course', [Definition] = 'Course is a prerequisite condition for earning an academic award.', [SortOrder] = NULL WHERE [Code] = 'Course' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardPrerequisiteType] WHERE [Code] = 'Experience') BEGIN INSERT INTO dbo.[RefAcademicAwardPrerequisiteType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Experience', 'Experience', 'Experience is a prerequisite condition for earning an academic award.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardPrerequisiteType] -SET [Description] = 'Experience', [Definition] = 'Experience is a prerequisite condition for earning an academic award.', [SortOrder] = NULL WHERE [Code] = 'Experience' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardPrerequisiteType] WHERE [Code] = 'Score') BEGIN INSERT INTO dbo.[RefAcademicAwardPrerequisiteType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Score', 'Score', 'Score is a prerequisite condition for earning an academic award.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardPrerequisiteType] -SET [Description] = 'Score', [Definition] = 'Score is a prerequisite condition for earning an academic award.', [SortOrder] = NULL WHERE [Code] = 'Score' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicAwardPrerequisiteType] WHERE [Code] = 'Status') BEGIN INSERT INTO dbo.[RefAcademicAwardPrerequisiteType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Status', 'Status', 'Status is a prerequisite condition for earning an academic award.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicAwardPrerequisiteType] -SET [Description] = 'Status', [Definition] = 'Status is a prerequisite condition for earning an academic award.', [SortOrder] = NULL WHERE [Code] = 'Status' END -END - -PRINT N'Populate RefAcademicHonorType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAcademicHonorType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '01985') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01985', 'Honor roll', 'Honor roll is specified as the type of academic distinctions earned by or awarded to the student.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Honor roll', [Definition] = 'Honor roll is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 1.00 WHERE [Code] = '01985' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '01986') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01986', 'Honor society', 'Honor society is specified as the type of academic distinctions earned by or awarded to the student.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Honor society', [Definition] = 'Honor society is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 2.00 WHERE [Code] = '01986' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '01987') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01987', 'Honorable mention', 'Honorable mention is specified as the type of academic distinctions earned by or awarded to the student.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Honorable mention', [Definition] = 'Honorable mention is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 3.00 WHERE [Code] = '01987' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '01988') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01988', 'Honors program', 'Honors program is specified as the type of academic distinctions earned by or awarded to the student.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Honors program', [Definition] = 'Honors program is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 4.00 WHERE [Code] = '01988' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '73064') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73064', 'National Technical Education Honor Society', 'National Technical Education Honor Society is specified as the type of academic distinctions earned by or awarded to the student.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'National Technical Education Honor Society', [Definition] = 'National Technical Education Honor Society is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 4.00 WHERE [Code] = '73064' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '01989') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01989', 'Prize awards', 'Prize awards is specified as the type of academic distinctions earned by or awarded to the student.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Prize awards', [Definition] = 'Prize awards is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 5.00 WHERE [Code] = '01989' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '01991') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01991', 'Scholarships', 'Scholarships is specified as the type of academic distinctions earned by or awarded to the student.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Scholarships', [Definition] = 'Scholarships is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 6.00 WHERE [Code] = '01991' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '00738') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00738', 'Awarding of units of value', 'Awarding of units of value is specified as the type of academic distinctions earned by or awarded to the student.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Awarding of units of value', [Definition] = 'Awarding of units of value is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 7.00 WHERE [Code] = '00738' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '00740') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00740', 'Citizenship award/recognition', 'Citizenship award/recognition is specified as the type of academic distinctions earned by or awarded to the student.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Citizenship award/recognition', [Definition] = 'Citizenship award/recognition is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 8.00 WHERE [Code] = '00740' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '00741') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00741', 'Completion of requirement, but no units of value awarded', 'Completion of requirement, but no units of value awarded is specified as the type of academic distinctions earned by or awarded to the student.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Completion of requirement, but no units of value awarded', [Definition] = 'Completion of requirement, but no units of value awarded is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 9.00 WHERE [Code] = '00741' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '08692') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08692', 'Attendance award', 'Attendance award is specified as the type of academic distinctions earned by or awarded to the student.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Attendance award', [Definition] = 'Attendance award is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 10.00 WHERE [Code] = '08692' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '00742') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00742', 'Certificate', 'Certificate is specified as the type of academic distinctions earned by or awarded to the student.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Certificate', [Definition] = 'Certificate is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 11.00 WHERE [Code] = '00742' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '02047') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02047', 'Honor award', 'Honor award is specified as the type of academic distinctions earned by or awarded to the student.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Honor award', [Definition] = 'Honor award is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 12.00 WHERE [Code] = '02047' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '00744') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00744', 'Letter of student commendation', 'Letter of student commendation is specified as the type of academic distinctions earned by or awarded to the student.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Letter of student commendation', [Definition] = 'Letter of student commendation is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 13.00 WHERE [Code] = '00744' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '00745') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00745', 'Medals', 'Medals is specified as the type of academic distinctions earned by or awarded to the student.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Medals', [Definition] = 'Medals is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 14.00 WHERE [Code] = '00745' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '08693') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08693', 'National Merit scholar', 'National Merit scholar is specified as the type of academic distinctions earned by or awarded to the student.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'National Merit scholar', [Definition] = 'National Merit scholar is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 15.00 WHERE [Code] = '08693' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '00747') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00747', 'Points', 'Points is specified as the type of academic distinctions earned by or awarded to the student.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Points', [Definition] = 'Points is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 16.00 WHERE [Code] = '00747' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '00748') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00748', 'Promotion or advancement', 'Promotion or advancement is specified as the type of academic distinctions earned by or awarded to the student.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Promotion or advancement', [Definition] = 'Promotion or advancement is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 17.00 WHERE [Code] = '00748' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicHonorType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefAcademicHonorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of academic distinctions earned by or awarded to the student.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicHonorType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of academic distinctions earned by or awarded to the student.', [SortOrder] = 18.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefAcademicRank table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAcademicRank]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicRank] WHERE [Code] = 'Professor') BEGIN INSERT INTO dbo.[RefAcademicRank]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Professor', 'Professor', 'Professor is specified as the academic rank of staff whose primary responsibility is instruction, research, and/or public service.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicRank] -SET [Description] = 'Professor', [Definition] = 'Professor is specified as the academic rank of staff whose primary responsibility is instruction, research, and/or public service.', [SortOrder] = 1.00 WHERE [Code] = 'Professor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicRank] WHERE [Code] = 'AssociateProfessor') BEGIN INSERT INTO dbo.[RefAcademicRank]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssociateProfessor', 'Associate Professor', 'Associate Professor is specified as the academic rank of staff whose primary responsibility is instruction, research, and/or public service.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicRank] -SET [Description] = 'Associate Professor', [Definition] = 'Associate Professor is specified as the academic rank of staff whose primary responsibility is instruction, research, and/or public service.', [SortOrder] = 2.00 WHERE [Code] = 'AssociateProfessor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicRank] WHERE [Code] = 'AssistantProfessor') BEGIN INSERT INTO dbo.[RefAcademicRank]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssistantProfessor', 'Assistant Professor', 'Assistant Professor is specified as the academic rank of staff whose primary responsibility is instruction, research, and/or public service.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicRank] -SET [Description] = 'Assistant Professor', [Definition] = 'Assistant Professor is specified as the academic rank of staff whose primary responsibility is instruction, research, and/or public service.', [SortOrder] = 3.00 WHERE [Code] = 'AssistantProfessor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicRank] WHERE [Code] = 'Instructor') BEGIN INSERT INTO dbo.[RefAcademicRank]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Instructor', 'Instructor', 'Instructor is specified as the academic rank of staff whose primary responsibility is instruction, research, and/or public service.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicRank] -SET [Description] = 'Instructor', [Definition] = 'Instructor is specified as the academic rank of staff whose primary responsibility is instruction, research, and/or public service.', [SortOrder] = 4.00 WHERE [Code] = 'Instructor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicRank] WHERE [Code] = 'Lecturer') BEGIN INSERT INTO dbo.[RefAcademicRank]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Lecturer', 'Lecturer', 'Lecturer is specified as the academic rank of staff whose primary responsibility is instruction, research, and/or public service.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicRank] -SET [Description] = 'Lecturer', [Definition] = 'Lecturer is specified as the academic rank of staff whose primary responsibility is instruction, research, and/or public service.', [SortOrder] = 5.00 WHERE [Code] = 'Lecturer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicRank] WHERE [Code] = 'NoAcademicRank') BEGIN INSERT INTO dbo.[RefAcademicRank]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoAcademicRank', 'No Academic Rank', 'No Academic Rank is specified as the academic rank of staff whose primary responsibility is instruction, research, and/or public service.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicRank] -SET [Description] = 'No Academic Rank', [Definition] = 'No Academic Rank is specified as the academic rank of staff whose primary responsibility is instruction, research, and/or public service.', [SortOrder] = 6.00 WHERE [Code] = 'NoAcademicRank' END -END - -PRINT N'Populate RefAcademicSubject table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAcademicSubject]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '13371') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13371', 'Arts', 'Arts is specified as the academic content or subject area being evaluated.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'Arts', [Definition] = 'Arts is specified as the academic content or subject area being evaluated.', [SortOrder] = 1.00 WHERE [Code] = '13371' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '73065') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73065', 'Career and Technical Education', 'Career and Technical Education is specified as the academic content or subject area being evaluated.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'Career and Technical Education', [Definition] = 'Career and Technical Education is specified as the academic content or subject area being evaluated.', [SortOrder] = 2.00 WHERE [Code] = '73065' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '13372') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13372', 'English', 'English is specified as the academic content or subject area being evaluated.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'English', [Definition] = 'English is specified as the academic content or subject area being evaluated.', [SortOrder] = 3.00 WHERE [Code] = '13372' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '00256') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00256', 'English as a second language (ESL)', 'English as a second language (ESL) is specified as the academic content or subject area being evaluated.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'English as a second language (ESL)', [Definition] = 'English as a second language (ESL) is specified as the academic content or subject area being evaluated.', [SortOrder] = 4.00 WHERE [Code] = '00256' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '00546') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00546', 'Foreign Languages', 'Foreign Languages is specified as the academic content or subject area being evaluated.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'Foreign Languages', [Definition] = 'Foreign Languages is specified as the academic content or subject area being evaluated.', [SortOrder] = 5.00 WHERE [Code] = '00546' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '73088') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73088', 'History Government - US', 'History Government - US is specified as the academic content or subject area being evaluated.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'History Government - US', [Definition] = 'History Government - US is specified as the academic content or subject area being evaluated.', [SortOrder] = 7.00 WHERE [Code] = '73088' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '73089') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73089', 'History Government - World', 'History Government - World is specified as the academic content or subject area being evaluated.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'History Government - World', [Definition] = 'History Government - World is specified as the academic content or subject area being evaluated.', [SortOrder] = 8.00 WHERE [Code] = '73089' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '00554') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00554', 'Language arts', 'Language arts is specified as the academic content or subject area being evaluated.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'Language arts', [Definition] = 'Language arts is specified as the academic content or subject area being evaluated.', [SortOrder] = 9.00 WHERE [Code] = '00554' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '01166') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01166', 'Mathematics', 'Mathematics is specified as the academic content or subject area being evaluated.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'Mathematics', [Definition] = 'Mathematics is specified as the academic content or subject area being evaluated.', [SortOrder] = 12.00 WHERE [Code] = '01166' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '00560') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00560', 'Reading', 'Reading is specified as the academic content or subject area being evaluated.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'Reading', [Definition] = 'Reading is specified as the academic content or subject area being evaluated.', [SortOrder] = 14.00 WHERE [Code] = '00560' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '13373') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13373', 'Reading/Language Arts', 'Reading/Language Arts is specified as the academic content or subject area being evaluated.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'Reading/Language Arts', [Definition] = 'Reading/Language Arts is specified as the academic content or subject area being evaluated.', [SortOrder] = 16.00 WHERE [Code] = '13373' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '00562') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00562', 'Science', 'Science is specified as the academic content or subject area being evaluated.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'Science', [Definition] = 'Science is specified as the academic content or subject area being evaluated.', [SortOrder] = 18.00 WHERE [Code] = '00562' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '73086') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73086', 'Science - Life', 'Science - Life is specified as the academic content or subject area being evaluated.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'Science - Life', [Definition] = 'Science - Life is specified as the academic content or subject area being evaluated.', [SortOrder] = 20.00 WHERE [Code] = '73086' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '73087') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73087', 'Science - Physical', 'Science - Physical is specified as the academic content or subject area being evaluated.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'Science - Physical', [Definition] = 'Science - Physical is specified as the academic content or subject area being evaluated.', [SortOrder] = 22.00 WHERE [Code] = '73087' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '13374') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13374', 'Social Sciences (History, Geography, Economics, Civics and Government)', 'Social Sciences (History, Geography, Economics, Civics and Government) is specified as the academic content or subject area being evaluated.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'Social Sciences (History, Geography, Economics, Civics and Government)', [Definition] = 'Social Sciences (History, Geography, Economics, Civics and Government) is specified as the academic content or subject area being evaluated.', [SortOrder] = 24.00 WHERE [Code] = '13374' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '02043') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02043', 'Special education', 'Special education is specified as the academic content or subject area being evaluated.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'Special education', [Definition] = 'Special education is specified as the academic content or subject area being evaluated.', [SortOrder] = 26.00 WHERE [Code] = '02043' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '01287') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01287', 'Writing', 'Writing is specified as the academic content or subject area being evaluated.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'Writing', [Definition] = 'Writing is specified as the academic content or subject area being evaluated.', [SortOrder] = 28.00 WHERE [Code] = '01287' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicSubject] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefAcademicSubject]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the academic content or subject area being evaluated.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicSubject] -SET [Description] = 'Other', [Definition] = 'Other is specified as the academic content or subject area being evaluated.', [SortOrder] = 30.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefAcademicTermDesignator table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAcademicTermDesignator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicTermDesignator] WHERE [Code] = 'Fall') BEGIN INSERT INTO dbo.[RefAcademicTermDesignator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Fall', 'Fall', 'Fall is the academic term for which the data apply.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicTermDesignator] -SET [Description] = 'Fall', [Definition] = 'Fall is the academic term for which the data apply.', [SortOrder] = 0.00 WHERE [Code] = 'Fall' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicTermDesignator] WHERE [Code] = 'Winter') BEGIN INSERT INTO dbo.[RefAcademicTermDesignator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Winter', 'Winter', 'Winter is the academic term for which the data apply.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicTermDesignator] -SET [Description] = 'Winter', [Definition] = 'Winter is the academic term for which the data apply.', [SortOrder] = 2.00 WHERE [Code] = 'Winter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicTermDesignator] WHERE [Code] = 'WinterIntersession') BEGIN INSERT INTO dbo.[RefAcademicTermDesignator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WinterIntersession', 'Winter Intersession', 'Winter Intersession is the academic term for which the data apply.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicTermDesignator] -SET [Description] = 'Winter Intersession', [Definition] = 'Winter Intersession is the academic term for which the data apply.', [SortOrder] = 4.00 WHERE [Code] = 'WinterIntersession' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicTermDesignator] WHERE [Code] = 'Spring') BEGIN INSERT INTO dbo.[RefAcademicTermDesignator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Spring', 'Spring', 'Spring is the academic term for which the data apply.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicTermDesignator] -SET [Description] = 'Spring', [Definition] = 'Spring is the academic term for which the data apply.', [SortOrder] = 6.00 WHERE [Code] = 'Spring' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicTermDesignator] WHERE [Code] = 'Summer') BEGIN INSERT INTO dbo.[RefAcademicTermDesignator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Summer', 'Summer', 'Summer is the academic term for which the data apply.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicTermDesignator] -SET [Description] = 'Summer', [Definition] = 'Summer is the academic term for which the data apply.', [SortOrder] = 8.00 WHERE [Code] = 'Summer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicTermDesignator] WHERE [Code] = 'Summer1') BEGIN INSERT INTO dbo.[RefAcademicTermDesignator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Summer1', 'Summer 1', 'Summer 1 is the academic term for which the data apply.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicTermDesignator] -SET [Description] = 'Summer 1', [Definition] = 'Summer 1 is the academic term for which the data apply.', [SortOrder] = 10.00 WHERE [Code] = 'Summer1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicTermDesignator] WHERE [Code] = 'Summer2') BEGIN INSERT INTO dbo.[RefAcademicTermDesignator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Summer2', 'Summer 2', 'Summer 2 is the academic term for which the data apply.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicTermDesignator] -SET [Description] = 'Summer 2', [Definition] = 'Summer 2 is the academic term for which the data apply.', [SortOrder] = 12.00 WHERE [Code] = 'Summer2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicTermDesignator] WHERE [Code] = 'SpringIntersession') BEGIN INSERT INTO dbo.[RefAcademicTermDesignator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpringIntersession', 'Spring Intersession', 'Spring Intersession is the academic term for which the data apply.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicTermDesignator] -SET [Description] = 'Spring Intersession', [Definition] = 'Spring Intersession is the academic term for which the data apply.', [SortOrder] = 14.00 WHERE [Code] = 'SpringIntersession' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAcademicTermDesignator] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAcademicTermDesignator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is the academic term for which the data apply.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAcademicTermDesignator] -SET [Description] = 'Other', [Definition] = 'Other is the academic term for which the data apply.', [SortOrder] = 16.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefAccommodationsNeededType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAccommodationsNeededType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Materials in Braille', 'Materials in Braille is specified as a health accommodation for the student.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Materials in Braille', [Definition] = 'Materials in Braille is specified as a health accommodation for the student.', [SortOrder] = 2.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Closed caption decoder', 'Closed caption decoder is specified as a health accommodation for the student.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Closed caption decoder', [Definition] = 'Closed caption decoder is specified as a health accommodation for the student.', [SortOrder] = 4.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Computer-based instruction or other assistive technological devices', 'Computer-based instruction or other assistive technological devices is specified as a health accommodation for the student.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Computer-based instruction or other assistive technological devices', [Definition] = 'Computer-based instruction or other assistive technological devices is specified as a health accommodation for the student.', [SortOrder] = 6.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Listening devices', 'Listening devices is specified as a health accommodation for the student.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Listening devices', [Definition] = 'Listening devices is specified as a health accommodation for the student.', [SortOrder] = 8.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Low vision readers', 'Low vision readers is specified as a health accommodation for the student.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Low vision readers', [Definition] = 'Low vision readers is specified as a health accommodation for the student.', [SortOrder] = 10.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Notetakers', 'Note takers is specified as a health accommodation for the student.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Notetakers', [Definition] = 'Note takers is specified as a health accommodation for the student.', [SortOrder] = 12.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Readers', 'Readers is specified as a health accommodation for the student.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Readers', [Definition] = 'Readers is specified as a health accommodation for the student.', [SortOrder] = 14.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Sign language interpreters', 'Sign language interpreters is specified as a health accommodation for the student.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Sign language interpreters', [Definition] = 'Sign language interpreters is specified as a health accommodation for the student.', [SortOrder] = 16.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Special housing accommodations', 'Special housing accommodations is specified as a health accommodation for the student.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Special housing accommodations', [Definition] = 'Special housing accommodations is specified as a health accommodation for the student.', [SortOrder] = 18.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Recorded text', 'Recorded text is specified as a health accommodation for the student.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Recorded text', [Definition] = 'Recorded text is specified as a health accommodation for the student.', [SortOrder] = 20.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Telecommunication Devices (TDDs) for Hearing Impaired', 'Telecommunication Devices (TDDs) for Hearing Impaired is specified as a health accommodation for the student.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Telecommunication Devices (TDDs) for Hearing Impaired', [Definition] = 'Telecommunication Devices (TDDs) for Hearing Impaired is specified as a health accommodation for the student.', [SortOrder] = 22.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Telephone handset amplifiers', 'Telephone handset amplifiers is specified as a health accommodation for the student.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Telephone handset amplifiers', [Definition] = 'Telephone handset amplifiers is specified as a health accommodation for the student.', [SortOrder] = 24.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '13') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13', 'Test assistants', 'Test assistants is specified as a health accommodation for the student.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Test assistants', [Definition] = 'Test assistants is specified as a health accommodation for the student.', [SortOrder] = 26.00 WHERE [Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '14') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14', 'Test modifications', 'Test modifications, such as alternative testing location, oral response to taped questions, exams read orally, or extra time to complete an exam, is specified as a health accommodation for the student.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Test modifications', [Definition] = 'Test modifications, such as alternative testing location, oral response to taped questions, exams read orally, or extra time to complete an exam, is specified as a health accommodation for the student.', [SortOrder] = 28.00 WHERE [Code] = '14' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '15') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('15', 'Transportation services (e.g., handicapped parking spaces)', 'Transportation services, such as handicapped parking spaces, is specified as a health accommodation for the student.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Transportation services (e.g., handicapped parking spaces)', [Definition] = 'Transportation services, such as handicapped parking spaces, is specified as a health accommodation for the student.', [SortOrder] = 30.00 WHERE [Code] = '15' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '16') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('16', 'Tutors', 'Tutors is specified as a health accommodation for the student.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Tutors', [Definition] = 'Tutors is specified as a health accommodation for the student.', [SortOrder] = 32.00 WHERE [Code] = '16' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '17') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('17', 'Voice synthesizer speech programs, equipment', 'Voice synthesizer speech programs, equipment is specified as a health accommodation for the student.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Voice synthesizer speech programs, equipment', [Definition] = 'Voice synthesizer speech programs, equipment is specified as a health accommodation for the student.', [SortOrder] = 34.00 WHERE [Code] = '17' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '18') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('18', 'Wheel chair accessibility', 'Wheel chair accessibility is specified as a health accommodation for the student.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Wheel chair accessibility', [Definition] = 'Wheel chair accessibility is specified as a health accommodation for the student.', [SortOrder] = 36.00 WHERE [Code] = '18' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '19') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('19', 'Wheel chair', 'Wheel chair is specified as a health accommodation for the student.', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Wheel chair', [Definition] = 'Wheel chair is specified as a health accommodation for the student.', [SortOrder] = 38.00 WHERE [Code] = '19' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationsNeededType] WHERE [Code] = '99') BEGIN INSERT INTO dbo.[RefAccommodationsNeededType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('99', 'Other type of accommodation', 'Other type of accommodation is specified as a health accommodation for the student.', 198.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationsNeededType] -SET [Description] = 'Other type of accommodation', [Definition] = 'Other type of accommodation is specified as a health accommodation for the student.', [SortOrder] = 198.00 WHERE [Code] = '99' END -END - -PRINT N'Populate RefAccommodationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAccommodationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03513') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03513', 'Additional example items/tasks', 'Additional example items/tasks is specified as the specific accommodation necessary for assessment or instruction.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Additional example items/tasks', [Definition] = 'Additional example items/tasks is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 1.00 WHERE [Code] = '03513' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '00461') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00461', 'Adjustable swivel arm', 'Adjustable swivel arm is specified as the specific accommodation necessary for assessment or instruction.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Adjustable swivel arm', [Definition] = 'Adjustable swivel arm is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 2.00 WHERE [Code] = '00461' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '00462') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00462', 'Adjustable table height', 'Adjustable table height is specified as the specific accommodation necessary for assessment or instruction.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Adjustable table height', [Definition] = 'Adjustable table height is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 3.00 WHERE [Code] = '00462' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03514') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03514', 'Administration in several sessions', 'Administration in several sessions is specified as the specific accommodation necessary for assessment.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Administration in several sessions', [Definition] = 'Administration in several sessions is specified as the specific accommodation necessary for assessment.', [SortOrder] = 4.00 WHERE [Code] = '03514' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13803') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13803', 'Alternate representation', 'Alternate representation is specified as the specific accommodation necessary for assessment or instruction.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Alternate representation', [Definition] = 'Alternate representation is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 5.00 WHERE [Code] = '13803' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13793') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13793', 'Answer masking', 'Answer masking is specified as the specific accommodation necessary for assessment or instruction.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Answer masking', [Definition] = 'Answer masking is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 6.00 WHERE [Code] = '13793' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03515') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03515', 'Answers written directly in test booklet', 'Answers written directly in test booklet is specified as the specific accommodation necessary for assessment.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Answers written directly in test booklet', [Definition] = 'Answers written directly in test booklet is specified as the specific accommodation necessary for assessment.', [SortOrder] = 7.00 WHERE [Code] = '03515' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03517') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03517', 'Arithmetic table (math or science)', 'Arithmetic table (math or science) is specified as the specific accommodation necessary for assessment or instruction.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Arithmetic table (math or science)', [Definition] = 'Arithmetic table (math or science) is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 8.00 WHERE [Code] = '03517' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75005') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75005', 'Native language', 'Native language is specified as the specific accommodation necessary for assessment or instruction.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Native language', [Definition] = 'Native language is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 9.00 WHERE [Code] = '75005' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03519') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03519', 'Assistive device that does interfere with independent work of the student', 'Assistive device that does interfere with independent work of the student is specified as the specific accommodation necessary for assessment or instruction.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Assistive device that does interfere with independent work of the student', [Definition] = 'Assistive device that does interfere with independent work of the student is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 10.00 WHERE [Code] = '03519' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03518') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03518', 'Assistive device that does not interfere with independent work of the student', 'Assistive device that does not interfere with independent work of the student is specified as the specific accommodation necessary for assessment or instruction.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Assistive device that does not interfere with independent work of the student', [Definition] = 'Assistive device that does not interfere with independent work of the student is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 11.00 WHERE [Code] = '03518' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75006') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75006', 'Audio recordings', 'Audio recordings is specified as the specific accommodation necessary for assessment or instruction.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Audio recordings', [Definition] = 'Audio recordings is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 13.00 WHERE [Code] = '75006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13791') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13791', 'Auditory calming', 'Auditory calming is specified as the specific accommodation necessary for assessment or instruction.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Auditory calming', [Definition] = 'Auditory calming is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 14.00 WHERE [Code] = '13791' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '00463') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00463', 'Braille', 'Braille is specified as the specific accommodation necessary for assessment or instruction.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Braille', [Definition] = 'Braille is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 15.00 WHERE [Code] = '00463' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03522') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03522', 'Braille writer, no thesaurus, spell- or grammar-checker', 'Braille writer, no thesaurus, spell- or grammar-checker is specified as the specific accommodation necessary for assessment or instruction.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Braille writer, no thesaurus, spell- or grammar-checker', [Definition] = 'Braille writer, no thesaurus, spell- or grammar-checker is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 16.00 WHERE [Code] = '03522' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75007') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75007', 'Breaks', 'Breaks is specified as the specific accommodation necessary for assessment or instruction.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Breaks', [Definition] = 'Breaks is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 17.00 WHERE [Code] = '75007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03524') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03524', 'Calculator (math or science)', 'Calculator (math or science) is specified as the specific accommodation necessary for assessment or instruction.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Calculator (math or science)', [Definition] = 'Calculator (math or science) is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 18.00 WHERE [Code] = '03524' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13800') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13800', 'Chunking', 'Chunking is specified as the specific accommodation necessary for assessment or instruction.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Chunking', [Definition] = 'Chunking is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 19.00 WHERE [Code] = '13800' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03525') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03525', 'Clarify directions', 'Clarify directions is specified as the specific accommodation necessary for assessment or instruction.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Clarify directions', [Definition] = 'Clarify directions is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 20.00 WHERE [Code] = '03525' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03526') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03526', 'Colored lenses', 'Colored lenses is specified as the specific accommodation necessary for assessment or instruction.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Colored lenses', [Definition] = 'Colored lenses is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 21.00 WHERE [Code] = '03526' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03527') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03527', 'Computer administration', 'Computer administration is specified as the specific accommodation necessary for assessment or instruction.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Computer administration', [Definition] = 'Computer administration is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 22.00 WHERE [Code] = '03527' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03528') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03528', 'Cranmer abacus', 'Cranmer abacus is specified as the specific accommodation necessary for assessment or instruction.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Cranmer abacus', [Definition] = 'Cranmer abacus is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 23.00 WHERE [Code] = '03528' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03529') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03529', 'Cueing', 'Cueing is specified as the specific accommodation necessary for assessment or instruction.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Cueing', [Definition] = 'Cueing is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 24.00 WHERE [Code] = '03529' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75008') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75008', 'Dictated oral response', 'Dictated oral response is specified as the specific accommodation necessary for assessment or instruction.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Dictated oral response', [Definition] = 'Dictated oral response is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 25.00 WHERE [Code] = '75008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03530') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03530', 'Dictionary in English', 'Dictionary in English is specified as the specific accommodation necessary for assessment or instruction.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Dictionary in English', [Definition] = 'Dictionary in English is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 26.00 WHERE [Code] = '03530' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03531') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03531', 'Dictionary in native language', 'Dictionary in native language is specified as the specific accommodation necessary for assessment or instruction.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Dictionary in native language', [Definition] = 'Dictionary in native language is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 27.00 WHERE [Code] = '03531' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03533') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03533', 'Directions read aloud or explained', 'Directions read aloud or explained is specified as the specific accommodation necessary for assessment or instruction.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Directions read aloud or explained', [Definition] = 'Directions read aloud or explained is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 28.00 WHERE [Code] = '03533' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13795') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13795', 'Encouraging prompts', 'Encouraging prompts is specified as the specific accommodation necessary for assessment or instruction.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Encouraging prompts', [Definition] = 'Encouraging prompts is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 29.00 WHERE [Code] = '13795' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '00937') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00937', 'Enlarged keyboard', 'Enlarged keyboard is specified as the specific accommodation necessary for assessment or instruction.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Enlarged keyboard', [Definition] = 'Enlarged keyboard is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 30.00 WHERE [Code] = '00937' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '00464') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00464', 'Enlarged monitor view', 'Enlarged monitor view is specified as the specific accommodation necessary for assessment or instruction.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Enlarged monitor view', [Definition] = 'Enlarged monitor view is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 31.00 WHERE [Code] = '00464' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03534') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03534', 'Examiner familiarity', 'Examiner familiarity is specified as the specific accommodation necessary for assessment.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Examiner familiarity', [Definition] = 'Examiner familiarity is specified as the specific accommodation necessary for assessment.', [SortOrder] = 32.00 WHERE [Code] = '03534' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '00465') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00465', 'Extra time', 'Extra time is specified as the specific accommodation necessary for assessment or instruction.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Extra time', [Definition] = 'Extra time is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 33.00 WHERE [Code] = '00465' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13797') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13797', 'Flagging', 'Flagging is specified as the specific accommodation necessary for assessment or instruction.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Flagging', [Definition] = 'Flagging is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 34.00 WHERE [Code] = '13797' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03535') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03535', 'Font enlarged beyond print version requirements', 'Font enlarged beyond print version requirements is specified as the specific accommodation necessary for assessment or instruction.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Font enlarged beyond print version requirements', [Definition] = 'Font enlarged beyond print version requirements is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 35.00 WHERE [Code] = '03535' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13789') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13789', 'Foreground/Background colors', 'Foreground/Background colors is specified as the specific accommodation necessary for assessment or instruction.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Foreground/Background colors', [Definition] = 'Foreground/Background colors is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 36.00 WHERE [Code] = '13789' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03536') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03536', 'Foreign language interpreter', 'Foreign language interpreter is specified as the specific accommodation necessary for assessment or instruction.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Foreign language interpreter', [Definition] = 'Foreign language interpreter is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 37.00 WHERE [Code] = '03536' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03537') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03537', 'Foreign language interpreter for instructions, ask questions', 'Foreign language interpreter for instructions, ask questions is specified as the specific accommodation necessary for assessment or instruction.', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Foreign language interpreter for instructions, ask questions', [Definition] = 'Foreign language interpreter for instructions, ask questions is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 38.00 WHERE [Code] = '03537' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03538') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03538', 'Format', 'Format is specified as the specific accommodation necessary for assessment or instruction.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Format', [Definition] = 'Format is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 39.00 WHERE [Code] = '03538' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03539') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03539', 'Hospital/home testing', 'Hospital/home testing is specified as the specific accommodation necessary for assessment.', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Hospital/home testing', [Definition] = 'Hospital/home testing is specified as the specific accommodation necessary for assessment.', [SortOrder] = 40.00 WHERE [Code] = '03539' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13790') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13790', 'Increase white space', 'Increase white space is specified as the specific accommodation necessary for assessment or instruction.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Increase white space', [Definition] = 'Increase white space is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 41.00 WHERE [Code] = '13790' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13805') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13805', 'Item translation', 'Item translation is specified as the specific accommodation necessary for assessment items or instructional items.', 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Item translation', [Definition] = 'Item translation is specified as the specific accommodation necessary for assessment items or instructional items.', [SortOrder] = 42.00 WHERE [Code] = '13805' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13798') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13798', 'Keyword highlighting', 'Keyword highlighting is specified as the specific accommodation necessary for assessment or instruction.', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Keyword highlighting', [Definition] = 'Keyword highlighting is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 43.00 WHERE [Code] = '13798' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13804') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13804', 'Keyword translation', 'Keyword translation is specified as the specific accommodation necessary for assessment or instruction.', 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Keyword translation', [Definition] = 'Keyword translation is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 44.00 WHERE [Code] = '13804' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75009') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75009', 'Large print', 'Large print is specified as the specific accommodation necessary for assessment or instruction.', 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Large print', [Definition] = 'Large print is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 45.00 WHERE [Code] = '75009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13796') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13796', 'Line reader', 'Line reader is specified as the specific accommodation necessary for assessment or instruction.', 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Line reader', [Definition] = 'Line reader is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 46.00 WHERE [Code] = '13796' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75010') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75010', 'Linguistic modification of directions', 'Linguistic modification of directions is specified as the specific accommodation necessary for assessment or instruction.', 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Linguistic modification of directions', [Definition] = 'Linguistic modification of directions is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 47.00 WHERE [Code] = '75010' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03541') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03541', 'Magnification device', 'Magnification device is specified as the specific accommodation necessary for assessment or instruction.', 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Magnification device', [Definition] = 'Magnification device is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 48.00 WHERE [Code] = '03541' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75011') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75011', 'Manually coded English or American Sign Language to present questions', 'Manually coded English or American Sign Language to present questions is specified as the specific accommodation necessary for assessment or instruction.', 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Manually coded English or American Sign Language to present questions', [Definition] = 'Manually coded English or American Sign Language to present questions is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 49.00 WHERE [Code] = '75011' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13792') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13792', 'Masking', 'Masking is specified as the specific accommodation necessary for assessment or instruction.', 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Masking', [Definition] = 'Masking is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 50.00 WHERE [Code] = '13792' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03543') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03543', 'Math manipulatives (math or science)', 'Math manipulative (math or science) is specified as the specific accommodation necessary for assessment or instruction.', 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Math manipulatives (math or science)', [Definition] = 'Math manipulative (math or science) is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 51.00 WHERE [Code] = '03543' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03544') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03544', 'Modification of linguistic complexity', 'Modification of linguistic complexity is specified as the specific accommodation necessary for assessment or instruction.', 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Modification of linguistic complexity', [Definition] = 'Modification of linguistic complexity is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 52.00 WHERE [Code] = '03544' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '00469') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00469', 'Multi-day administration', 'Multi-day administration is specified as the specific accommodation necessary for assessment.', 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Multi-day administration', [Definition] = 'Multi-day administration is specified as the specific accommodation necessary for assessment.', [SortOrder] = 53.00 WHERE [Code] = '00469' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03545') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03545', 'Multiple test sessions', 'Multiple test sessions is specified as the specific accommodation necessary for assessment.', 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Multiple test sessions', [Definition] = 'Multiple test sessions is specified as the specific accommodation necessary for assessment.', [SortOrder] = 54.00 WHERE [Code] = '03545' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13802') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13802', 'Negatives removed', 'Negatives removed is specified as the specific accommodation necessary for assessment or instruction.', 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Negatives removed', [Definition] = 'Negatives removed is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 55.00 WHERE [Code] = '13802' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03546') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03546', 'Oral directions in the native language', 'Oral directions in the native language is specified as the specific accommodation necessary for assessment or instruction.', 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Oral directions in the native language', [Definition] = 'Oral directions in the native language is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 56.00 WHERE [Code] = '03546' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the specific accommodation necessary for assessment or instruction.', 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 57.00 WHERE [Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03547') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03547', 'Paraphrasing', 'Paraphrasing is specified as the specific accommodation necessary for assessment or instruction.', 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Paraphrasing', [Definition] = 'Paraphrasing is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 58.00 WHERE [Code] = '03547' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03548') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03548', 'Physical supports', 'Physical supports is specified as the specific accommodation necessary for assessment or instruction.', 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Physical supports', [Definition] = 'Physical supports is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 59.00 WHERE [Code] = '03548' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '00471') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00471', 'Recorder or amanuensis', 'Recorder or amanuensis is specified as the specific accommodation necessary for assessment or instruction.', 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Recorder or amanuensis', [Definition] = 'Recorder or amanuensis is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 60.00 WHERE [Code] = '00471' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13801') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13801', 'Reduced answer choices', 'Reduced answer choices is specified as the specific accommodation necessary for assessment or instruction.', 61.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Reduced answer choices', [Definition] = 'Reduced answer choices is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 61.00 WHERE [Code] = '13801' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03549') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03549', 'Response dictated in American Sign Language', 'Response dictated in American Sign Language is specified as the specific accommodation necessary for assessment or instruction.', 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Response dictated in American Sign Language', [Definition] = 'Response dictated in American Sign Language is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 62.00 WHERE [Code] = '03549' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03550') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03550', 'Response in native language', 'Response in native language is specified as the specific accommodation necessary for assessment or instruction.', 63.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Response in native language', [Definition] = 'Response in native language is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 63.00 WHERE [Code] = '03550' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13788') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13788', 'Reverse contrast', 'Reverse contrast is specified as the specific accommodation necessary for assessment or instruction.', 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Reverse contrast', [Definition] = 'Reverse contrast is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 64.00 WHERE [Code] = '13788' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13799') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13799', 'Scaffolding', 'Scaffolding is specified as the specific accommodation necessary for assessment or instruction.', 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Scaffolding', [Definition] = 'Scaffolding is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 65.00 WHERE [Code] = '13799' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03551') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03551', 'Scheduled extended time', 'Scheduled extended time is specified as the specific accommodation necessary for assessment or instruction.', 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Scheduled extended time', [Definition] = 'Scheduled extended time is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 66.00 WHERE [Code] = '03551' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '00473') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00473', 'Separate room', 'Separate room is specified as the specific accommodation necessary for assessment or instruction.', 67.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Separate room', [Definition] = 'Separate room is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 67.00 WHERE [Code] = '00473' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03552') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03552', 'Separate room with other English Learners under supervision of district employee', 'Separate room with other English Learners under supervision of district employee is specified as the specific accommodation necessary for assessment or instruction.', 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Separate room with other English Learners under supervision of district employee', [Definition] = 'Separate room with other English Learners under supervision of district employee is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 68.00 WHERE [Code] = '03552' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '73070') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73070', 'Sign Language Video', 'Sign Language Video is specified as the specific accommodation necessary for assessment or instruction.', 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Sign Language Video', [Definition] = 'Sign Language Video is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 68.00 WHERE [Code] = '73070' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03553') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03553', 'Signer/sign language for instructions, ask questions', 'Signer/sign language for instructions, ask questions is specified as the specific accommodation necessary for assessment or instruction.', 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Signer/sign language for instructions, ask questions', [Definition] = 'Signer/sign language for instructions, ask questions is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 69.00 WHERE [Code] = '03553' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '00474') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00474', 'Signer/sign language interpreter', 'Signer/sign language interpreter is specified as the specific accommodation necessary for assessment or instruction.', 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Signer/sign language interpreter', [Definition] = 'Signer/sign language interpreter is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 70.00 WHERE [Code] = '00474' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03554') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03554', 'Simplified language', 'Simplified language is specified as the specific accommodation necessary for assessment or instruction.', 71.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Simplified language', [Definition] = 'Simplified language is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 71.00 WHERE [Code] = '03554' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03555') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03555', 'Small-group or individual administration', 'Small-group or individual administration is specified as the specific accommodation necessary for assessment or instruction.', 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Small-group or individual administration', [Definition] = 'Small-group or individual administration is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 72.00 WHERE [Code] = '03555' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '00475') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00475', 'Special furniture', 'Special furniture is specified as the specific accommodation necessary for assessment or instruction.', 73.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Special furniture', [Definition] = 'Special furniture is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 73.00 WHERE [Code] = '00475' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '00476') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00476', 'Special lighting', 'Special lighting is specified as the specific accommodation necessary for assessment or instruction.', 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Special lighting', [Definition] = 'Special lighting is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 74.00 WHERE [Code] = '00476' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03558') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03558', 'Specialized setting', 'Specialized setting is specified as the specific accommodation necessary for assessment or instruction.', 75.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Specialized setting', [Definition] = 'Specialized setting is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 75.00 WHERE [Code] = '03558' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03556') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03556', 'Speech recognition system', 'Speech recognition system is specified as the specific accommodation necessary for assessment or instruction.', 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Speech recognition system', [Definition] = 'Speech recognition system is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 76.00 WHERE [Code] = '03556' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03557') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03557', 'Spell-checker', 'Spell-checker is specified as the specific accommodation necessary for assessment or instruction.', 77.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Spell-checker', [Definition] = 'Spell-checker is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 77.00 WHERE [Code] = '03557' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13794') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13794', 'Structured masking', 'Structured masking is specified as the specific accommodation necessary for assessment or instruction.', 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Structured masking', [Definition] = 'Structured masking is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 78.00 WHERE [Code] = '13794' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03559') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03559', 'Student read aloud', 'Student read aloud is specified as the specific accommodation necessary for assessment or instruction.', 79.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Student read aloud', [Definition] = 'Student read aloud is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 79.00 WHERE [Code] = '03559' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03560') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03560', 'Student-requested extended time', 'Student-requested extended time is specified as the specific accommodation necessary for assessment or instruction.', 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Student-requested extended time', [Definition] = 'Student-requested extended time is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 80.00 WHERE [Code] = '03560' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75012') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75012', 'Supervised breaks', 'Supervised breaks is specified as the specific accommodation necessary for assessment or instruction.', 81.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Supervised breaks', [Definition] = 'Supervised breaks is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 81.00 WHERE [Code] = '75012' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '13806') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13806', 'Tactile', 'Tactile is specified as the specific accommodation necessary for assessment or instruction.', 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Tactile', [Definition] = 'Tactile is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 82.00 WHERE [Code] = '13806' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03562') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03562', 'Technological aid', 'Technological aid is specified as the specific accommodation necessary for assessment or instruction.', 83.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Technological aid', [Definition] = 'Technological aid is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 83.00 WHERE [Code] = '03562' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75013') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75013', 'Test administered at best time of day for student', 'Test administered at best time of day for student is specified as the specific accommodation necessary for assessment.', 84.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Test administered at best time of day for student', [Definition] = 'Test administered at best time of day for student is specified as the specific accommodation necessary for assessment.', [SortOrder] = 84.00 WHERE [Code] = '75013' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03563') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03563', 'Test administrator marked / wrote test at student''s direction', 'Test administrator marked / wrote test at student''s direction is specified as the specific accommodation necessary for assessment.', 85.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Test administrator marked / wrote test at student''s direction', [Definition] = 'Test administrator marked / wrote test at student''s direction is specified as the specific accommodation necessary for assessment.', [SortOrder] = 85.00 WHERE [Code] = '03563' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03564') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03564', 'Test administrator read questions aloud', 'Test administrator read questions aloud is specified as the specific accommodation necessary for assessment.', 86.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Test administrator read questions aloud', [Definition] = 'Test administrator read questions aloud is specified as the specific accommodation necessary for assessment.', [SortOrder] = 86.00 WHERE [Code] = '03564' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03566') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03566', 'Text changes in vocabulary', 'Text changes in vocabulary is specified as the specific accommodation necessary for assessment or instruction.', 87.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Text changes in vocabulary', [Definition] = 'Text changes in vocabulary is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 87.00 WHERE [Code] = '03566' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '00477') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00477', 'Track ball', 'Track ball is specified as the specific accommodation necessary for assessment or instruction.', 88.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Track ball', [Definition] = 'Track ball is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 88.00 WHERE [Code] = '00477' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03567') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03567', 'Translation dictionary', 'Translation dictionary is specified as the specific accommodation necessary for assessment or instruction.', 89.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Translation dictionary', [Definition] = 'Translation dictionary is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 89.00 WHERE [Code] = '03567' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '09997') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09997', 'Unknown', 'Unknown accommodation is used for assessment.', 90.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Unknown', [Definition] = 'Unknown accommodation is used for assessment.', [SortOrder] = 90.00 WHERE [Code] = '09997' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '00479') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00479', 'Untimed', 'Untimed is specified as the specific accommodation necessary for assessment or instruction.', 91.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Untimed', [Definition] = 'Untimed is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 91.00 WHERE [Code] = '00479' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03568') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03568', 'Verbalized problem-solving', 'Verbalized problem-solving is specified as the specific accommodation necessary for assessment or instruction.', 92.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Verbalized problem-solving', [Definition] = 'Verbalized problem-solving is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 92.00 WHERE [Code] = '03568' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75014') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75014', 'Video recordings', 'Video recordings is specified as the specific accommodation necessary for assessment or instruction.', 93.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Video recordings', [Definition] = 'Video recordings is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 93.00 WHERE [Code] = '75014' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03570') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03570', 'Visual cues', 'Visual cues is specified as the specific accommodation necessary for assessment or instruction.', 94.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Visual cues', [Definition] = 'Visual cues is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 94.00 WHERE [Code] = '03570' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03571') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03571', 'Word processor', 'Word processor is specified as the specific accommodation necessary for assessment or instruction.', 95.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Word processor', [Definition] = 'Word processor is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 95.00 WHERE [Code] = '03571' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03572') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03572', 'Word processor - grammar-checker turned off', 'Word processor / typewriter / computer with thesaurus / spell-checker / grammar-checker turned off is specified as the specific accommodation necessary for assessment or instruction.', 96.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Word processor - grammar-checker turned off', [Definition] = 'Word processor / typewriter / computer with thesaurus / spell-checker / grammar-checker turned off is specified as the specific accommodation necessary for assessment or instruction.', [SortOrder] = 96.00 WHERE [Code] = '03572' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '03573') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03573', 'Word processor - grammar-checker enabled on essay response portion of test', 'Word processor / typewriter / computer with thesaurus/ spell-checker/ grammar-checker enabled on essay response portion of test is specified as the specific accommodation necessary for assessment.', 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Word processor - grammar-checker enabled on essay response portion of test', [Definition] = 'Word processor / typewriter / computer with thesaurus/ spell-checker/ grammar-checker enabled on essay response portion of test is specified as the specific accommodation necessary for assessment.', [SortOrder] = 97.00 WHERE [Code] = '03573' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75015') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75015', 'Alternate assignments or goals', 'Alternate assignments or goals is specified as the specific accommodation necessary for instruction.', 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Alternate assignments or goals', [Definition] = 'Alternate assignments or goals is specified as the specific accommodation necessary for instruction.', [SortOrder] = 97.00 WHERE [Code] = '75015' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75016') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75016', 'Behavior management program', 'Behavior management program is specified as the specific accommodation necessary for instruction.', 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Behavior management program', [Definition] = 'Behavior management program is specified as the specific accommodation necessary for instruction.', [SortOrder] = 97.00 WHERE [Code] = '75016' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75017') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75017', 'Check for understanding', 'Check for understanding is specified as the specific accommodation necessary for instruction.', 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Check for understanding', [Definition] = 'Check for understanding is specified as the specific accommodation necessary for instruction.', [SortOrder] = 97.00 WHERE [Code] = '75017' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75018') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75018', 'Frequent feedback', 'Frequent feedback is specified as the specific accommodation necessary for instruction.', 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Frequent feedback', [Definition] = 'Frequent feedback is specified as the specific accommodation necessary for instruction.', [SortOrder] = 97.00 WHERE [Code] = '75018' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccommodationType] WHERE [Code] = '75019') BEGIN INSERT INTO dbo.[RefAccommodationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75019', 'Peer support', 'Peer support is specified as the specific accommodation necessary for instruction.', 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccommodationType] -SET [Description] = 'Peer support', [Definition] = 'Peer support is specified as the specific accommodation necessary for instruction.', [SortOrder] = 97.00 WHERE [Code] = '75019' END -END - -PRINT N'Populate RefAccreditationAgency table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAccreditationAgency]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccreditationAgency] WHERE [Code] = 'NAEYC') BEGIN INSERT INTO dbo.[RefAccreditationAgency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NAEYC', 'National Association for the Education of Young Children', 'National Association for the Education of Young Children', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccreditationAgency] -SET [Description] = 'National Association for the Education of Young Children', [Definition] = 'National Association for the Education of Young Children', [SortOrder] = 1.00 WHERE [Code] = 'NAEYC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccreditationAgency] WHERE [Code] = 'NECPA') BEGIN INSERT INTO dbo.[RefAccreditationAgency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NECPA', 'National Early Childhood Program Accreditation', 'National Early Childhood Program Accreditation', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccreditationAgency] -SET [Description] = 'National Early Childhood Program Accreditation', [Definition] = 'National Early Childhood Program Accreditation', [SortOrder] = 2.00 WHERE [Code] = 'NECPA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccreditationAgency] WHERE [Code] = 'NAC') BEGIN INSERT INTO dbo.[RefAccreditationAgency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NAC', 'National Accreditation Commission', 'National Accreditation Commission', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccreditationAgency] -SET [Description] = 'National Accreditation Commission', [Definition] = 'National Accreditation Commission', [SortOrder] = 3.00 WHERE [Code] = 'NAC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccreditationAgency] WHERE [Code] = 'COA') BEGIN INSERT INTO dbo.[RefAccreditationAgency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('COA', 'Council on Accreditation', 'Council on Accreditation', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccreditationAgency] -SET [Description] = 'Council on Accreditation', [Definition] = 'Council on Accreditation', [SortOrder] = 4.00 WHERE [Code] = 'COA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccreditationAgency] WHERE [Code] = 'NAFCC') BEGIN INSERT INTO dbo.[RefAccreditationAgency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NAFCC', 'National Association for Family Child Care', 'National Association for Family Child Care', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccreditationAgency] -SET [Description] = 'National Association for Family Child Care', [Definition] = 'National Association for Family Child Care', [SortOrder] = 5.00 WHERE [Code] = 'NAFCC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccreditationAgency] WHERE [Code] = 'SACS') BEGIN INSERT INTO dbo.[RefAccreditationAgency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SACS', 'Southern Association of Colleges and Schools', 'Southern Association of Colleges and Schools', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccreditationAgency] -SET [Description] = 'Southern Association of Colleges and Schools', [Definition] = 'Southern Association of Colleges and Schools', [SortOrder] = 6.00 WHERE [Code] = 'SACS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccreditationAgency] WHERE [Code] = 'NotAccredited') BEGIN INSERT INTO dbo.[RefAccreditationAgency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotAccredited', 'Not accredited', 'Not accredited', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccreditationAgency] -SET [Description] = 'Not accredited', [Definition] = 'Not accredited', [SortOrder] = 7.00 WHERE [Code] = 'NotAccredited' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAccreditationAgency] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAccreditationAgency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other Accreditation Agency', 'Other Accreditation Agency', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccreditationAgency] -SET [Description] = 'Other Accreditation Agency', [Definition] = 'Other Accreditation Agency', [SortOrder] = 10.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefActivityRecognitionType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefActivityRecognitionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefActivityRecognitionType] WHERE [Code] = '00737') BEGIN INSERT INTO dbo.[RefActivityRecognitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00737', 'Athletic awards', 'Athletic award was given to the student for accomplishments in a co-curricular, or extra-curricular activity.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActivityRecognitionType] -SET [Description] = 'Athletic awards', [Definition] = 'Athletic award was given to the student for accomplishments in a co-curricular, or extra-curricular activity.', [SortOrder] = 1.00 WHERE [Code] = '00737' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefActivityRecognitionType] WHERE [Code] = '00738') BEGIN INSERT INTO dbo.[RefActivityRecognitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00738', 'Awarding of units of value', 'Awarding of units of value was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActivityRecognitionType] -SET [Description] = 'Awarding of units of value', [Definition] = 'Awarding of units of value was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', [SortOrder] = 2.00 WHERE [Code] = '00738' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefActivityRecognitionType] WHERE [Code] = '00740') BEGIN INSERT INTO dbo.[RefActivityRecognitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00740', 'Citizenship award/recognition', 'Citizenship award/recognition was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActivityRecognitionType] -SET [Description] = 'Citizenship award/recognition', [Definition] = 'Citizenship award/recognition was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', [SortOrder] = 3.00 WHERE [Code] = '00740' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefActivityRecognitionType] WHERE [Code] = '00741') BEGIN INSERT INTO dbo.[RefActivityRecognitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00741', 'Completion of requirement, but no units of value awarded', 'Completion of requirement, but no units of value awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActivityRecognitionType] -SET [Description] = 'Completion of requirement, but no units of value awarded', [Definition] = 'Completion of requirement, but no units of value awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', [SortOrder] = 4.00 WHERE [Code] = '00741' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefActivityRecognitionType] WHERE [Code] = '00742') BEGIN INSERT INTO dbo.[RefActivityRecognitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00742', 'Certificate', 'Certificate was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActivityRecognitionType] -SET [Description] = 'Certificate', [Definition] = 'Certificate was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', [SortOrder] = 5.00 WHERE [Code] = '00742' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefActivityRecognitionType] WHERE [Code] = '00743') BEGIN INSERT INTO dbo.[RefActivityRecognitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00743', 'Honor award', 'Honor award was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActivityRecognitionType] -SET [Description] = 'Honor award', [Definition] = 'Honor award was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', [SortOrder] = 6.00 WHERE [Code] = '00743' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefActivityRecognitionType] WHERE [Code] = '02048') BEGIN INSERT INTO dbo.[RefActivityRecognitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02048', 'Letter of commendation', 'Letter of commendation was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActivityRecognitionType] -SET [Description] = 'Letter of commendation', [Definition] = 'Letter of commendation was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', [SortOrder] = 7.00 WHERE [Code] = '02048' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefActivityRecognitionType] WHERE [Code] = '00745') BEGIN INSERT INTO dbo.[RefActivityRecognitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00745', 'Medals', 'A medal was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActivityRecognitionType] -SET [Description] = 'Medals', [Definition] = 'A medal was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', [SortOrder] = 8.00 WHERE [Code] = '00745' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefActivityRecognitionType] WHERE [Code] = '00746') BEGIN INSERT INTO dbo.[RefActivityRecognitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00746', 'Monogram/letter', 'A monogram/letter was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActivityRecognitionType] -SET [Description] = 'Monogram/letter', [Definition] = 'A monogram/letter was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', [SortOrder] = 9.00 WHERE [Code] = '00746' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefActivityRecognitionType] WHERE [Code] = '00747') BEGIN INSERT INTO dbo.[RefActivityRecognitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00747', 'Points', 'Points were awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActivityRecognitionType] -SET [Description] = 'Points', [Definition] = 'Points were awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', [SortOrder] = 10.00 WHERE [Code] = '00747' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefActivityRecognitionType] WHERE [Code] = '00748') BEGIN INSERT INTO dbo.[RefActivityRecognitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00748', 'Promotion or advancement', 'Promotion or advancement was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActivityRecognitionType] -SET [Description] = 'Promotion or advancement', [Definition] = 'Promotion or advancement was awarded to the student for accomplishments in a co-curricular, or extra-curricular activity.', [SortOrder] = 11.00 WHERE [Code] = '00748' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefActivityRecognitionType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefActivityRecognitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'The nature of recognition given to the student for accomplishments in a co-curricular, or extra-curricular activity is in a category not yet defined in CEDS.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActivityRecognitionType] -SET [Description] = 'Other', [Definition] = 'The nature of recognition given to the student for accomplishments in a co-curricular, or extra-curricular activity is in a category not yet defined in CEDS.', [SortOrder] = 12.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefActivityTimeMeasurementType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefActivityTimeMeasurementType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefActivityTimeMeasurementType] WHERE [Code] = 'WeeklyHours') BEGIN INSERT INTO dbo.[RefActivityTimeMeasurementType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WeeklyHours', 'Weekly hours', 'Weekly hours is specified as the type of measurement for the amount of time the student participated in the events and procedures of an activity.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActivityTimeMeasurementType] -SET [Description] = 'Weekly hours', [Definition] = 'Weekly hours is specified as the type of measurement for the amount of time the student participated in the events and procedures of an activity.', [SortOrder] = 1.00 WHERE [Code] = 'WeeklyHours' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefActivityTimeMeasurementType] WHERE [Code] = 'YearlyWeeks') BEGIN INSERT INTO dbo.[RefActivityTimeMeasurementType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YearlyWeeks', 'Yearly weeks', 'Yearly weeks is specified as the type of measurement for the amount of time the student participated in the events and procedures of an activity.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActivityTimeMeasurementType] -SET [Description] = 'Yearly weeks', [Definition] = 'Yearly weeks is specified as the type of measurement for the amount of time the student participated in the events and procedures of an activity.', [SortOrder] = 2.00 WHERE [Code] = 'YearlyWeeks' END -END - -PRINT N'Populate RefAdditionalCreditType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAdditionalCreditType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdditionalCreditType] WHERE [Code] = 'AdvancedPlacement') BEGIN INSERT INTO dbo.[RefAdditionalCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdvancedPlacement', 'Advanced Placement', 'Advanced Placement is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdditionalCreditType] -SET [Description] = 'Advanced Placement', [Definition] = 'Advanced Placement is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', [SortOrder] = 0.00 WHERE [Code] = 'AdvancedPlacement' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdditionalCreditType] WHERE [Code] = 'ApprenticeshipCredit') BEGIN INSERT INTO dbo.[RefAdditionalCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ApprenticeshipCredit', 'Apprenticeship Credit', 'Apprenticeship Credit is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdditionalCreditType] -SET [Description] = 'Apprenticeship Credit', [Definition] = 'Apprenticeship Credit is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', [SortOrder] = 1.00 WHERE [Code] = 'ApprenticeshipCredit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdditionalCreditType] WHERE [Code] = 'CTE') BEGIN INSERT INTO dbo.[RefAdditionalCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CTE', 'Career and Technical Education', 'Career and Technical Education is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdditionalCreditType] -SET [Description] = 'Career and Technical Education', [Definition] = 'Career and Technical Education is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', [SortOrder] = 2.00 WHERE [Code] = 'CTE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdditionalCreditType] WHERE [Code] = 'DualCredit') BEGIN INSERT INTO dbo.[RefAdditionalCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DualCredit', 'Dual Credit', 'Dual Credit is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdditionalCreditType] -SET [Description] = 'Dual Credit', [Definition] = 'Dual Credit is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', [SortOrder] = 3.00 WHERE [Code] = 'DualCredit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdditionalCreditType] WHERE [Code] = 'InternationalBaccalaureate') BEGIN INSERT INTO dbo.[RefAdditionalCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InternationalBaccalaureate', 'International Baccalaureate', 'International Baccalaureate is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdditionalCreditType] -SET [Description] = 'International Baccalaureate', [Definition] = 'International Baccalaureate is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', [SortOrder] = 4.00 WHERE [Code] = 'InternationalBaccalaureate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdditionalCreditType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAdditionalCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdditionalCreditType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', [SortOrder] = 5.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdditionalCreditType] WHERE [Code] = 'QualifiedAdmission') BEGIN INSERT INTO dbo.[RefAdditionalCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('QualifiedAdmission', 'Qualified Admission', 'Qualified Admission is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdditionalCreditType] -SET [Description] = 'Qualified Admission', [Definition] = 'Qualified Admission is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', [SortOrder] = 10.00 WHERE [Code] = 'QualifiedAdmission' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdditionalCreditType] WHERE [Code] = 'STEM') BEGIN INSERT INTO dbo.[RefAdditionalCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('STEM', 'Science, Technology, Engineering and Mathematics', 'Science, Technology, Engineering and Mathematics is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdditionalCreditType] -SET [Description] = 'Science, Technology, Engineering and Mathematics', [Definition] = 'Science, Technology, Engineering and Mathematics is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', [SortOrder] = 14.00 WHERE [Code] = 'STEM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdditionalCreditType] WHERE [Code] = 'CTEAndAcademic') BEGIN INSERT INTO dbo.[RefAdditionalCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CTEAndAcademic', 'Simultaneous CTE and Academic Credit', 'Simultaneous CTE and Academic Credit is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdditionalCreditType] -SET [Description] = 'Simultaneous CTE and Academic Credit', [Definition] = 'Simultaneous CTE and Academic Credit is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', [SortOrder] = 16.00 WHERE [Code] = 'CTEAndAcademic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdditionalCreditType] WHERE [Code] = 'StateScholarship') BEGIN INSERT INTO dbo.[RefAdditionalCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateScholarship', 'State Scholarship', 'State Scholarship is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdditionalCreditType] -SET [Description] = 'State Scholarship', [Definition] = 'State Scholarship is specified as the type of credits or units of value available for the completion of a course in addition to Carnegie Units.', [SortOrder] = 18.00 WHERE [Code] = 'StateScholarship' END -END - -PRINT N'Populate RefAdditionalTargetedSupportAndImprovementStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAdditionalTargetedSupportAndImprovementStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdditionalTargetedSupportAndImprovementStatus] WHERE [Code] = 'ADDLTSI') BEGIN INSERT INTO dbo.[RefAdditionalTargetedSupportAndImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ADDLTSI', 'Additional targeted support and improvement', 'Additional targeted support and improvement is the designation given to a school by the state for additional targeted support and improvement as part of its statewide system of annual meaningful differentiation.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdditionalTargetedSupportAndImprovementStatus] -SET [Description] = 'Additional targeted support and improvement', [Definition] = 'Additional targeted support and improvement is the designation given to a school by the state for additional targeted support and improvement as part of its statewide system of annual meaningful differentiation.', [SortOrder] = 1.00 WHERE [Code] = 'ADDLTSI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdditionalTargetedSupportAndImprovementStatus] WHERE [Code] = 'NOTADDLTSI') BEGIN INSERT INTO dbo.[RefAdditionalTargetedSupportAndImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NOTADDLTSI', 'Not additional targeted support and improvement', 'Not additional targeted support and improvement is the designation given to a school by the state for additional targeted support and improvement as part of its statewide system of annual meaningful differentiation.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdditionalTargetedSupportAndImprovementStatus] -SET [Description] = 'Not additional targeted support and improvement', [Definition] = 'Not additional targeted support and improvement is the designation given to a school by the state for additional targeted support and improvement as part of its statewide system of annual meaningful differentiation.', [SortOrder] = 2.00 WHERE [Code] = 'NOTADDLTSI' END -END - -PRINT N'Populate RefAdjustedCapacityReasonType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAdjustedCapacityReasonType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdjustedCapacityReasonType] WHERE [Code] = '100') BEGIN INSERT INTO dbo.[RefAdjustedCapacityReasonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('100', 'COVID-19', 'COVID-19 is the reason for adjusted capacity.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdjustedCapacityReasonType] -SET [Description] = 'COVID-19', [Definition] = 'COVID-19 is the reason for adjusted capacity.', [SortOrder] = 1.00 WHERE [Code] = '100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdjustedCapacityReasonType] WHERE [Code] = '999') BEGIN INSERT INTO dbo.[RefAdjustedCapacityReasonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('999', 'Other', 'The reason for adjusted capacity is not yet defined in CEDS.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdjustedCapacityReasonType] -SET [Description] = 'Other', [Definition] = 'The reason for adjusted capacity is not yet defined in CEDS.', [SortOrder] = 99.00 WHERE [Code] = '999' END -END - -PRINT N'Populate RefAdministrativeFundingControl table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAdministrativeFundingControl]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdministrativeFundingControl] WHERE [Code] = 'Public') BEGIN INSERT INTO dbo.[RefAdministrativeFundingControl]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Public', 'Public School', 'Public School is specified as the type of education institution as classified by its funding source.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdministrativeFundingControl] -SET [Description] = 'Public School', [Definition] = 'Public School is specified as the type of education institution as classified by its funding source.', [SortOrder] = 1.00 WHERE [Code] = 'Public' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdministrativeFundingControl] WHERE [Code] = 'Private') BEGIN INSERT INTO dbo.[RefAdministrativeFundingControl]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Private', 'Private School', 'Private School is specified as the type of education institution as classified by its funding source.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdministrativeFundingControl] -SET [Description] = 'Private School', [Definition] = 'Private School is specified as the type of education institution as classified by its funding source.', [SortOrder] = 2.00 WHERE [Code] = 'Private' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdministrativeFundingControl] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAdministrativeFundingControl]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is specified as the type of education institution as classified by its funding source.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdministrativeFundingControl] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of education institution as classified by its funding source.', [SortOrder] = 3.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefAdmissionConsiderationLevel table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAdmissionConsiderationLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmissionConsiderationLevel] WHERE [Code] = 'Required') BEGIN INSERT INTO dbo.[RefAdmissionConsiderationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Required', 'Required', 'This admission criteria is Required.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmissionConsiderationLevel] -SET [Description] = 'Required', [Definition] = 'This admission criteria is Required.', [SortOrder] = 1.00 WHERE [Code] = 'Required' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmissionConsiderationLevel] WHERE [Code] = 'Recommended') BEGIN INSERT INTO dbo.[RefAdmissionConsiderationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Recommended', 'Recommended', 'This admission criteria is Recommended.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmissionConsiderationLevel] -SET [Description] = 'Recommended', [Definition] = 'This admission criteria is Recommended.', [SortOrder] = 3.00 WHERE [Code] = 'Recommended' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmissionConsiderationLevel] WHERE [Code] = 'NeitherRequiredRecommended') BEGIN INSERT INTO dbo.[RefAdmissionConsiderationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NeitherRequiredRecommended', 'Neither Required nor Recommended', 'This admission criteria is Neither Required nor Recommended.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmissionConsiderationLevel] -SET [Description] = 'Neither Required nor Recommended', [Definition] = 'This admission criteria is Neither Required nor Recommended.', [SortOrder] = 5.00 WHERE [Code] = 'NeitherRequiredRecommended' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmissionConsiderationLevel] WHERE [Code] = 'DontKnow') BEGIN INSERT INTO dbo.[RefAdmissionConsiderationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DontKnow', 'Don''t Know', 'The consideration level for this admission criteria is unknown.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmissionConsiderationLevel] -SET [Description] = 'Don''t Know', [Definition] = 'The consideration level for this admission criteria is unknown.', [SortOrder] = 7.00 WHERE [Code] = 'DontKnow' END -END - -PRINT N'Populate RefAdmissionConsiderationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAdmissionConsiderationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmissionConsiderationType] WHERE [Code] = 'SecondarySchoolGPA') BEGIN INSERT INTO dbo.[RefAdmissionConsiderationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SecondarySchoolGPA', 'Secondary school GPA', 'Secondary school GPA is specified as a type of admission consideration used at an institution during the selection process.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmissionConsiderationType] -SET [Description] = 'Secondary school GPA', [Definition] = 'Secondary school GPA is specified as a type of admission consideration used at an institution during the selection process.', [SortOrder] = 1.00 WHERE [Code] = 'SecondarySchoolGPA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmissionConsiderationType] WHERE [Code] = 'SecondarySchoolRank') BEGIN INSERT INTO dbo.[RefAdmissionConsiderationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SecondarySchoolRank', 'Secondary school rank', 'Secondary school rank is specified as a type of admission consideration used at an institution during the selection process.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmissionConsiderationType] -SET [Description] = 'Secondary school rank', [Definition] = 'Secondary school rank is specified as a type of admission consideration used at an institution during the selection process.', [SortOrder] = 2.00 WHERE [Code] = 'SecondarySchoolRank' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmissionConsiderationType] WHERE [Code] = 'SecondarySchoolRecord') BEGIN INSERT INTO dbo.[RefAdmissionConsiderationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SecondarySchoolRecord', 'Secondary school record', 'Secondary school record is specified as a type of admission consideration used at an institution during the selection process.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmissionConsiderationType] -SET [Description] = 'Secondary school record', [Definition] = 'Secondary school record is specified as a type of admission consideration used at an institution during the selection process.', [SortOrder] = 3.00 WHERE [Code] = 'SecondarySchoolRecord' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmissionConsiderationType] WHERE [Code] = 'CompletionOfCollegePrepProgram') BEGIN INSERT INTO dbo.[RefAdmissionConsiderationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CompletionOfCollegePrepProgram', 'Completion of college-preparatory program', 'Completion of college-preparatory program is specified as a type of admission consideration used at an institution during the selection process.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmissionConsiderationType] -SET [Description] = 'Completion of college-preparatory program', [Definition] = 'Completion of college-preparatory program is specified as a type of admission consideration used at an institution during the selection process.', [SortOrder] = 5.00 WHERE [Code] = 'CompletionOfCollegePrepProgram' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmissionConsiderationType] WHERE [Code] = 'Recommendations') BEGIN INSERT INTO dbo.[RefAdmissionConsiderationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Recommendations', 'Recommendations', 'Recommendations is specified as a type of admission consideration used at an institution during the selection process.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmissionConsiderationType] -SET [Description] = 'Recommendations', [Definition] = 'Recommendations is specified as a type of admission consideration used at an institution during the selection process.', [SortOrder] = 7.00 WHERE [Code] = 'Recommendations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmissionConsiderationType] WHERE [Code] = 'FormalDemonstrationOfCompetencies') BEGIN INSERT INTO dbo.[RefAdmissionConsiderationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FormalDemonstrationOfCompetencies', 'Formal demonstration of competencies (e.g., portfolios, certificates of mastery, assessment instruments)', 'Formal demonstration of competencies (e.g., portfolios, certificates of mastery, assessment instruments) is specified as a type of admission consideration used at an institution during the selection process.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmissionConsiderationType] -SET [Description] = 'Formal demonstration of competencies (e.g., portfolios, certificates of mastery, assessment instruments)', [Definition] = 'Formal demonstration of competencies (e.g., portfolios, certificates of mastery, assessment instruments) is specified as a type of admission consideration used at an institution during the selection process.', [SortOrder] = 9.00 WHERE [Code] = 'FormalDemonstrationOfCompetencies' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmissionConsiderationType] WHERE [Code] = 'AdmissionTestScores') BEGIN INSERT INTO dbo.[RefAdmissionConsiderationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdmissionTestScores', 'Admission test scores', 'Admission test scores is specified as a type of admission consideration used at an institution during the selection process.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmissionConsiderationType] -SET [Description] = 'Admission test scores', [Definition] = 'Admission test scores is specified as a type of admission consideration used at an institution during the selection process.', [SortOrder] = 11.00 WHERE [Code] = 'AdmissionTestScores' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmissionConsiderationType] WHERE [Code] = 'SAT_ACT') BEGIN INSERT INTO dbo.[RefAdmissionConsiderationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SAT_ACT', 'SAT / ACT', 'SAT / ACT is specified as a type of admission consideration used at an institution during the selection process.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmissionConsiderationType] -SET [Description] = 'SAT / ACT', [Definition] = 'SAT / ACT is specified as a type of admission consideration used at an institution during the selection process.', [SortOrder] = 13.00 WHERE [Code] = 'SAT_ACT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmissionConsiderationType] WHERE [Code] = 'TOEFL') BEGIN INSERT INTO dbo.[RefAdmissionConsiderationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TOEFL', 'Test of English as a Foreign Language', 'Test of English as a Foreign Language is specified as a type of admission consideration used at an institution during the selection process.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmissionConsiderationType] -SET [Description] = 'Test of English as a Foreign Language', [Definition] = 'Test of English as a Foreign Language is specified as a type of admission consideration used at an institution during the selection process.', [SortOrder] = 15.00 WHERE [Code] = 'TOEFL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmissionConsiderationType] WHERE [Code] = 'OtherTest') BEGIN INSERT INTO dbo.[RefAdmissionConsiderationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherTest', 'Other Test (ABT, Wonderlic, WISC-III, etc.)', 'Other Test (ABT, Wonderlic, WISC-III, etc.) is specified as a type of admission consideration used at an institution during the selection process.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmissionConsiderationType] -SET [Description] = 'Other Test (ABT, Wonderlic, WISC-III, etc.)', [Definition] = 'Other Test (ABT, Wonderlic, WISC-III, etc.) is specified as a type of admission consideration used at an institution during the selection process.', [SortOrder] = 17.00 WHERE [Code] = 'OtherTest' END -END - -PRINT N'Populate RefAdmittedStudent table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAdmittedStudent]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmittedStudent] WHERE [Code] = 'Conditional') BEGIN INSERT INTO dbo.[RefAdmittedStudent]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Conditional', 'Conditional Admit', 'Conditional Admit is specified as the category under which an applicant has been granted an official offer to enroll in a postsecondary institution.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmittedStudent] -SET [Description] = 'Conditional Admit', [Definition] = 'Conditional Admit is specified as the category under which an applicant has been granted an official offer to enroll in a postsecondary institution.', [SortOrder] = 0.00 WHERE [Code] = 'Conditional' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmittedStudent] WHERE [Code] = 'EarlyAction') BEGIN INSERT INTO dbo.[RefAdmittedStudent]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EarlyAction', 'Early Action', 'Early Action is specified as the category under which an applicant has been granted an official offer to enroll in a postsecondary institution.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmittedStudent] -SET [Description] = 'Early Action', [Definition] = 'Early Action is specified as the category under which an applicant has been granted an official offer to enroll in a postsecondary institution.', [SortOrder] = 2.00 WHERE [Code] = 'EarlyAction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmittedStudent] WHERE [Code] = 'EarlyAdmit') BEGIN INSERT INTO dbo.[RefAdmittedStudent]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EarlyAdmit', 'Early Admit', 'Early Admit is specified as the category under which an applicant has been granted an official offer to enroll in a postsecondary institution.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmittedStudent] -SET [Description] = 'Early Admit', [Definition] = 'Early Admit is specified as the category under which an applicant has been granted an official offer to enroll in a postsecondary institution.', [SortOrder] = 4.00 WHERE [Code] = 'EarlyAdmit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmittedStudent] WHERE [Code] = 'EarlyDecision') BEGIN INSERT INTO dbo.[RefAdmittedStudent]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EarlyDecision', 'Early Decision', 'Early Decision is specified as the category under which an applicant has been granted an official offer to enroll in a postsecondary institution.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmittedStudent] -SET [Description] = 'Early Decision', [Definition] = 'Early Decision is specified as the category under which an applicant has been granted an official offer to enroll in a postsecondary institution.', [SortOrder] = 6.00 WHERE [Code] = 'EarlyDecision' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmittedStudent] WHERE [Code] = 'Regular') BEGIN INSERT INTO dbo.[RefAdmittedStudent]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Regular', 'Regular Admit', 'Regular Admit is specified as the category under which an applicant has been granted an official offer to enroll in a postsecondary institution.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmittedStudent] -SET [Description] = 'Regular Admit', [Definition] = 'Regular Admit is specified as the category under which an applicant has been granted an official offer to enroll in a postsecondary institution.', [SortOrder] = 8.00 WHERE [Code] = 'Regular' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmittedStudent] WHERE [Code] = 'Waitlist') BEGIN INSERT INTO dbo.[RefAdmittedStudent]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Waitlist', 'Waitlist Admit', 'Waitlist Admit is specified as the category under which an applicant has been granted an official offer to enroll in a postsecondary institution.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmittedStudent] -SET [Description] = 'Waitlist Admit', [Definition] = 'Waitlist Admit is specified as the category under which an applicant has been granted an official offer to enroll in a postsecondary institution.', [SortOrder] = 10.00 WHERE [Code] = 'Waitlist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmittedStudent] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAdmittedStudent]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other Admit', 'Other Admit is specified as the category under which an applicant has been granted an official offer to enroll in a postsecondary institution.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmittedStudent] -SET [Description] = 'Other Admit', [Definition] = 'Other Admit is specified as the category under which an applicant has been granted an official offer to enroll in a postsecondary institution.', [SortOrder] = 12.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdmittedStudent] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefAdmittedStudent]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', 'Then applicant has NOT been granted an official offer to enroll in the postsecondary institution.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdmittedStudent] -SET [Description] = 'No', [Definition] = 'Then applicant has NOT been granted an official offer to enroll in the postsecondary institution.', [SortOrder] = 14.00 WHERE [Code] = 'No' END -END - -PRINT N'Populate RefAdultEducationProgramExitReason table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAdultEducationProgramExitReason]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdultEducationProgramExitReason] WHERE [Code] = '1003') BEGIN INSERT INTO dbo.[RefAdultEducationProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1003', 'Deceased', 'The participant is deceased.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdultEducationProgramExitReason] -SET [Description] = 'Deceased', [Definition] = 'The participant is deceased.', [SortOrder] = 1.00 WHERE [Code] = '1003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdultEducationProgramExitReason] WHERE [Code] = '1000') BEGIN INSERT INTO dbo.[RefAdultEducationProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1000', 'Incarceration in a correctional institution or resident of 24-hour support facility', 'The participant exits the program because he or she has become incarcerated in a correctional institution or has become a resident of an institution or facility providing 24-hour support such as a hospital or treatment center during the course of receiving services as a participant.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdultEducationProgramExitReason] -SET [Description] = 'Incarceration in a correctional institution or resident of 24-hour support facility', [Definition] = 'The participant exits the program because he or she has become incarcerated in a correctional institution or has become a resident of an institution or facility providing 24-hour support such as a hospital or treatment center during the course of receiving services as a participant.', [SortOrder] = 2.00 WHERE [Code] = '1000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdultEducationProgramExitReason] WHERE [Code] = '1001') BEGIN INSERT INTO dbo.[RefAdultEducationProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1001', 'Medical treatment', 'The participant exits the program because of medical treatment and that treatment is expected to last longer than 90 days and precludes entry into unsubsidized employment or continued participation in the program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdultEducationProgramExitReason] -SET [Description] = 'Medical treatment', [Definition] = 'The participant exits the program because of medical treatment and that treatment is expected to last longer than 90 days and precludes entry into unsubsidized employment or continued participation in the program.', [SortOrder] = 3.00 WHERE [Code] = '1001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdultEducationProgramExitReason] WHERE [Code] = '1006') BEGIN INSERT INTO dbo.[RefAdultEducationProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1006', 'Moved out of state', 'The participant moved out of state.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdultEducationProgramExitReason] -SET [Description] = 'Moved out of state', [Definition] = 'The participant moved out of state.', [SortOrder] = 4.00 WHERE [Code] = '1006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdultEducationProgramExitReason] WHERE [Code] = '1002') BEGIN INSERT INTO dbo.[RefAdultEducationProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1002', 'National guard or other reserve active duty', 'The participant exits the program because the participant is a member of the National Guard or other reserve military unit of the armed forces and is called to active duty for at least 90 days.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdultEducationProgramExitReason] -SET [Description] = 'National guard or other reserve active duty', [Definition] = 'The participant exits the program because the participant is a member of the National Guard or other reserve military unit of the armed forces and is called to active duty for at least 90 days.', [SortOrder] = 5.00 WHERE [Code] = '1002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdultEducationProgramExitReason] WHERE [Code] = '1004') BEGIN INSERT INTO dbo.[RefAdultEducationProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1004', 'Permanently incapacitated', 'The participant is permanently incapacitated.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdultEducationProgramExitReason] -SET [Description] = 'Permanently incapacitated', [Definition] = 'The participant is permanently incapacitated.', [SortOrder] = 6.00 WHERE [Code] = '1004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdultEducationProgramExitReason] WHERE [Code] = '1010') BEGIN INSERT INTO dbo.[RefAdultEducationProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1010', 'Program completion with credential or certification', 'The participant completed the program with one or more credentials or certifications.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdultEducationProgramExitReason] -SET [Description] = 'Program completion with credential or certification', [Definition] = 'The participant completed the program with one or more credentials or certifications.', [SortOrder] = 7.00 WHERE [Code] = '1010' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdultEducationProgramExitReason] WHERE [Code] = '1007') BEGIN INSERT INTO dbo.[RefAdultEducationProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1007', 'Program completion without credential or certification', 'The participant completed the program without credentials or certifications.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdultEducationProgramExitReason] -SET [Description] = 'Program completion without credential or certification', [Definition] = 'The participant completed the program without credentials or certifications.', [SortOrder] = 8.00 WHERE [Code] = '1007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdultEducationProgramExitReason] WHERE [Code] = '1008') BEGIN INSERT INTO dbo.[RefAdultEducationProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1008', 'Program discontinued', 'The participant exited the program because the program was discontinued.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdultEducationProgramExitReason] -SET [Description] = 'Program discontinued', [Definition] = 'The participant exited the program because the program was discontinued.', [SortOrder] = 9.00 WHERE [Code] = '1008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdultEducationProgramExitReason] WHERE [Code] = '1009') BEGIN INSERT INTO dbo.[RefAdultEducationProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1009', 'Unknown', 'It is unknown why the participant exited the program.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdultEducationProgramExitReason] -SET [Description] = 'Unknown', [Definition] = 'It is unknown why the participant exited the program.', [SortOrder] = 10.00 WHERE [Code] = '1009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdultEducationProgramExitReason] WHERE [Code] = '1005') BEGIN INSERT INTO dbo.[RefAdultEducationProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1005', 'Voluntary exit', 'The participant voluntarily exited the program without completing.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdultEducationProgramExitReason] -SET [Description] = 'Voluntary exit', [Definition] = 'The participant voluntarily exited the program without completing.', [SortOrder] = 11.00 WHERE [Code] = '1005' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdultEducationProgramExitReason] WHERE [Code] = '1999') BEGIN INSERT INTO dbo.[RefAdultEducationProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1999', 'Other', 'The reason why the person is no longer being served in the adult education program is not yet defined in CEDS.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdultEducationProgramExitReason] -SET [Description] = 'Other', [Definition] = 'The reason why the person is no longer being served in the adult education program is not yet defined in CEDS.', [SortOrder] = 99.00 WHERE [Code] = '1999' END -END - -PRINT N'Populate RefAdvancedPlacementCourseCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAdvancedPlacementCourseCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'ArtHistory') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ArtHistory', 'Art History', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Art History', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'ArtHistory' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'Biology') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Biology', 'Biology', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Biology', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'Biology' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'CalculusAB') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CalculusAB', 'Calculus AB', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Calculus AB', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = 'CalculusAB' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'CalculusBC') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CalculusBC', 'Calculus BC', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Calculus BC', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = 'CalculusBC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'Chemistry') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Chemistry', 'Chemistry', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Chemistry', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = 'Chemistry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'ComputerScienceA') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ComputerScienceA', 'Computer Science A', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Computer Science A', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = 'ComputerScienceA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'ComputerScienceAB') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ComputerScienceAB', 'Computer Science AB', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Computer Science AB', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = 'ComputerScienceAB' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'Macroeconomics') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Macroeconomics', 'Macroeconomics', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Macroeconomics', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = 'Macroeconomics' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'Microeconomics') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Microeconomics', 'Microeconomics', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Microeconomics', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = 'Microeconomics' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'EnglishLanguage') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EnglishLanguage', 'English Language', NULL, 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'English Language', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = 'EnglishLanguage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'EnglishLiterature') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EnglishLiterature', 'English Literature', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'English Literature', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = 'EnglishLiterature' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'EnvironmentalScience') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EnvironmentalScience', 'Environmental Science', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Environmental Science', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = 'EnvironmentalScience' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'EuropeanHistory') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EuropeanHistory', 'European History', NULL, 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'European History', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = 'EuropeanHistory' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'FrenchLanguage') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FrenchLanguage', 'French Language', NULL, 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'French Language', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = 'FrenchLanguage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'FrenchLiterature') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FrenchLiterature', 'French Literature', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'French Literature', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = 'FrenchLiterature' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'GermanLanguage') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GermanLanguage', 'German Language', NULL, 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'German Language', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = 'GermanLanguage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'CompGovernmentAndPolitics') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CompGovernmentAndPolitics', 'Comp Government And Politics', NULL, 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Comp Government And Politics', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = 'CompGovernmentAndPolitics' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'USGovernmentAndPolitics') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('USGovernmentAndPolitics', 'US Government And Politics', NULL, 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'US Government And Politics', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = 'USGovernmentAndPolitics' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'HumanGeography') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HumanGeography', 'Human Geography', NULL, 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Human Geography', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = 'HumanGeography' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'ItalianLanguageAndCulture') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ItalianLanguageAndCulture', 'Italian Language And Culture', NULL, 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Italian Language And Culture', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = 'ItalianLanguageAndCulture' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'LatinLiterature') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LatinLiterature', 'Latin Literature', NULL, 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Latin Literature', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = 'LatinLiterature' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'LatinVergil') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LatinVergil', 'Latin Vergil', NULL, 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Latin Vergil', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = 'LatinVergil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'MusicTheory') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MusicTheory', 'Music Theory', NULL, 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Music Theory', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = 'MusicTheory' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'PhysicsB') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PhysicsB', 'Physics B', NULL, 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Physics B', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = 'PhysicsB' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'PhysicsC') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PhysicsC', 'Physics C', NULL, 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Physics C', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = 'PhysicsC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'Psychology') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Psychology', 'Psychology', NULL, 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Psychology', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = 'Psychology' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'SpanishLanguage') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpanishLanguage', 'Spanish Language', NULL, 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Spanish Language', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = 'SpanishLanguage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'SpanishLiterature') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpanishLiterature', 'Spanish Literature', NULL, 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Spanish Literature', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = 'SpanishLiterature' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'Statistics') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Statistics', 'Statistics', NULL, 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Statistics', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = 'Statistics' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'StudioArt') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StudioArt', 'Studio Art', NULL, 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'Studio Art', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = 'StudioArt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'USHistory') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('USHistory', 'US History', NULL, 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'US History', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = 'USHistory' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAdvancedPlacementCourseCode] WHERE [Code] = 'WorldHistory') BEGIN INSERT INTO dbo.[RefAdvancedPlacementCourseCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WorldHistory', 'World History', NULL, 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAdvancedPlacementCourseCode] -SET [Description] = 'World History', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = 'WorldHistory' END -END - -PRINT N'Populate RefAeCertificationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAeCertificationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeCertificationType] WHERE [Code] = 'AdultEducationCertification') BEGIN INSERT INTO dbo.[RefAeCertificationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdultEducationCertification', 'Adult Education Certification', 'Adult Education Certification is specified as the category of certification a person holds.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeCertificationType] -SET [Description] = 'Adult Education Certification', [Definition] = 'Adult Education Certification is specified as the category of certification a person holds.', [SortOrder] = 1.00 WHERE [Code] = 'AdultEducationCertification' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeCertificationType] WHERE [Code] = 'K-12Certification') BEGIN INSERT INTO dbo.[RefAeCertificationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('K-12Certification', 'K-12 Certification', 'K-12 Certification is specified as the category of certification a person holds.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeCertificationType] -SET [Description] = 'K-12 Certification', [Definition] = 'K-12 Certification is specified as the category of certification a person holds.', [SortOrder] = 2.00 WHERE [Code] = 'K-12Certification' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeCertificationType] WHERE [Code] = 'SpecialEducationCertification') BEGIN INSERT INTO dbo.[RefAeCertificationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpecialEducationCertification', 'Special Education Certification', 'Special Education Certification is specified as the category of certification a person holds.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeCertificationType] -SET [Description] = 'Special Education Certification', [Definition] = 'Special Education Certification is specified as the category of certification a person holds.', [SortOrder] = 3.00 WHERE [Code] = 'SpecialEducationCertification' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeCertificationType] WHERE [Code] = 'TESOLCertification') BEGIN INSERT INTO dbo.[RefAeCertificationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TESOLCertification', 'Teachers of English to Speakers of Other Languages (TESOL) Certification', 'Teachers of English to Speakers of Other Languages (TESOL) Certification is specified as the category of certification a person holds.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeCertificationType] -SET [Description] = 'Teachers of English to Speakers of Other Languages (TESOL) Certification', [Definition] = 'Teachers of English to Speakers of Other Languages (TESOL) Certification is specified as the category of certification a person holds.', [SortOrder] = 4.00 WHERE [Code] = 'TESOLCertification' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeCertificationType] WHERE [Code] = 'None') BEGIN INSERT INTO dbo.[RefAeCertificationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('None', 'None', 'None is specified as the category of certification a person holds.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeCertificationType] -SET [Description] = 'None', [Definition] = 'None is specified as the category of certification a person holds.', [SortOrder] = 5.00 WHERE [Code] = 'None' END -END - -PRINT N'Populate RefAeFunctioningLevelAtIntake table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAeFunctioningLevelAtIntake]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtIntake] WHERE [Code] = 'ABEBegLit') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtIntake]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ABEBegLit', 'ABE Beginning Literacy', 'ABE Beginning Literacy is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtIntake] -SET [Description] = 'ABE Beginning Literacy', [Definition] = 'ABE Beginning Literacy is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', [SortOrder] = 1.00 WHERE [Code] = 'ABEBegLit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtIntake] WHERE [Code] = 'ABEBegBasic') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtIntake]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ABEBegBasic', 'Beginning Basic Education', 'Beginning Basic Education is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtIntake] -SET [Description] = 'Beginning Basic Education', [Definition] = 'Beginning Basic Education is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', [SortOrder] = 2.00 WHERE [Code] = 'ABEBegBasic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtIntake] WHERE [Code] = 'ABEIntLow') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtIntake]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ABEIntLow', 'Low Intermediate Basic Education', 'Low Intermediate Basic Education is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtIntake] -SET [Description] = 'Low Intermediate Basic Education', [Definition] = 'Low Intermediate Basic Education is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', [SortOrder] = 3.00 WHERE [Code] = 'ABEIntLow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtIntake] WHERE [Code] = 'ABEIntHigh') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtIntake]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ABEIntHigh', 'High Intermediate Basic Education', 'High Intermediate Basic Education is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtIntake] -SET [Description] = 'High Intermediate Basic Education', [Definition] = 'High Intermediate Basic Education is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', [SortOrder] = 4.00 WHERE [Code] = 'ABEIntHigh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtIntake] WHERE [Code] = 'ASELow') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtIntake]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ASELow', 'Adult Secondary Education Low', 'Adult Secondary Education Lowy is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtIntake] -SET [Description] = 'Adult Secondary Education Low', [Definition] = 'Adult Secondary Education Lowy is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', [SortOrder] = 5.00 WHERE [Code] = 'ASELow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtIntake] WHERE [Code] = 'ASEHigh') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtIntake]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ASEHigh', 'Adult Secondary Education High', 'Adult Secondary Education High is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtIntake] -SET [Description] = 'Adult Secondary Education High', [Definition] = 'Adult Secondary Education High is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', [SortOrder] = 6.00 WHERE [Code] = 'ASEHigh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtIntake] WHERE [Code] = 'ESLBegLit') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtIntake]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ESLBegLit', 'Beginning ESL Literacy', 'Beginning ESL Literacy is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtIntake] -SET [Description] = 'Beginning ESL Literacy', [Definition] = 'Beginning ESL Literacy is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', [SortOrder] = 7.00 WHERE [Code] = 'ESLBegLit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtIntake] WHERE [Code] = 'ESLBegLow') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtIntake]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ESLBegLow', 'ESL Low Beginning', 'ESL Low Beginning is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtIntake] -SET [Description] = 'ESL Low Beginning', [Definition] = 'ESL Low Beginning is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', [SortOrder] = 8.00 WHERE [Code] = 'ESLBegLow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtIntake] WHERE [Code] = 'ESLBegHigh') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtIntake]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ESLBegHigh', 'ESL High Beginning', 'ESL High Beginning is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtIntake] -SET [Description] = 'ESL High Beginning', [Definition] = 'ESL High Beginning is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', [SortOrder] = 9.00 WHERE [Code] = 'ESLBegHigh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtIntake] WHERE [Code] = 'ESLIntLow') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtIntake]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ESLIntLow', 'ESL Low Intermediate', 'ESL Low Intermediate is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtIntake] -SET [Description] = 'ESL Low Intermediate', [Definition] = 'ESL Low Intermediate is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', [SortOrder] = 10.00 WHERE [Code] = 'ESLIntLow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtIntake] WHERE [Code] = 'ESLIntHigh') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtIntake]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ESLIntHigh', 'ESL Intermediate High', 'ESL Intermediate High is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtIntake] -SET [Description] = 'ESL Intermediate High', [Definition] = 'ESL Intermediate High is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', [SortOrder] = 11.00 WHERE [Code] = 'ESLIntHigh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtIntake] WHERE [Code] = 'ESLAdv') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtIntake]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ESLAdv', 'ESL Advanced', 'ESL Advanced is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtIntake] -SET [Description] = 'ESL Advanced', [Definition] = 'ESL Advanced is specified as the individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', [SortOrder] = 12.00 WHERE [Code] = 'ESLAdv' END -END - -PRINT N'Populate RefAeFunctioningLevelAtPosttest table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAeFunctioningLevelAtPosttest]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtPosttest] WHERE [Code] = 'ABEBegLit') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtPosttest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ABEBegLit', 'ABE Beginning Literacy', 'ABE Beginning Literacy is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtPosttest] -SET [Description] = 'ABE Beginning Literacy', [Definition] = 'ABE Beginning Literacy is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', [SortOrder] = 1.00 WHERE [Code] = 'ABEBegLit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtPosttest] WHERE [Code] = 'ABEBegBasic') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtPosttest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ABEBegBasic', 'Beginning Basic Education', 'Beginning Basic Education is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtPosttest] -SET [Description] = 'Beginning Basic Education', [Definition] = 'Beginning Basic Education is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', [SortOrder] = 2.00 WHERE [Code] = 'ABEBegBasic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtPosttest] WHERE [Code] = 'ABEIntLow') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtPosttest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ABEIntLow', 'Low Intermediate Basic Education', 'Low Intermediate Basic Education is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtPosttest] -SET [Description] = 'Low Intermediate Basic Education', [Definition] = 'Low Intermediate Basic Education is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', [SortOrder] = 3.00 WHERE [Code] = 'ABEIntLow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtPosttest] WHERE [Code] = 'ABEIntHigh') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtPosttest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ABEIntHigh', 'High Intermediate Basic Education', 'High Intermediate Basic Education is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtPosttest] -SET [Description] = 'High Intermediate Basic Education', [Definition] = 'High Intermediate Basic Education is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', [SortOrder] = 4.00 WHERE [Code] = 'ABEIntHigh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtPosttest] WHERE [Code] = 'ASELow') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtPosttest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ASELow', 'Adult Secondary Education Low', 'Adult Secondary Education Low is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtPosttest] -SET [Description] = 'Adult Secondary Education Low', [Definition] = 'Adult Secondary Education Low is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', [SortOrder] = 5.00 WHERE [Code] = 'ASELow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtPosttest] WHERE [Code] = 'ASEHigh') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtPosttest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ASEHigh', 'Adult Secondary Education High', 'Adult Secondary Education High is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtPosttest] -SET [Description] = 'Adult Secondary Education High', [Definition] = 'Adult Secondary Education High is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', [SortOrder] = 6.00 WHERE [Code] = 'ASEHigh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtPosttest] WHERE [Code] = 'ESLBegLit') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtPosttest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ESLBegLit', 'Beginning ESL Literacy', 'Beginning ESL Literacy is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtPosttest] -SET [Description] = 'Beginning ESL Literacy', [Definition] = 'Beginning ESL Literacy is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', [SortOrder] = 7.00 WHERE [Code] = 'ESLBegLit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtPosttest] WHERE [Code] = 'ESLBegLow') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtPosttest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ESLBegLow', 'ESL Low Beginning', 'ESL Low Beginning is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtPosttest] -SET [Description] = 'ESL Low Beginning', [Definition] = 'ESL Low Beginning is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', [SortOrder] = 8.00 WHERE [Code] = 'ESLBegLow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtPosttest] WHERE [Code] = 'ESLBegHigh') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtPosttest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ESLBegHigh', 'ESL High Beginning', 'ESL High Beginning is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtPosttest] -SET [Description] = 'ESL High Beginning', [Definition] = 'ESL High Beginning is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', [SortOrder] = 9.00 WHERE [Code] = 'ESLBegHigh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtPosttest] WHERE [Code] = 'ESLIntLow') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtPosttest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ESLIntLow', 'ESL Low Intermediate', 'ESL Low Intermediate is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtPosttest] -SET [Description] = 'ESL Low Intermediate', [Definition] = 'ESL Low Intermediate is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', [SortOrder] = 10.00 WHERE [Code] = 'ESLIntLow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtPosttest] WHERE [Code] = 'ESLIntHigh') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtPosttest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ESLIntHigh', 'ESL Intermediate High', 'ESL Intermediate High is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtPosttest] -SET [Description] = 'ESL Intermediate High', [Definition] = 'ESL Intermediate High is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', [SortOrder] = 11.00 WHERE [Code] = 'ESLIntHigh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeFunctioningLevelAtPosttest] WHERE [Code] = 'ESLAdv') BEGIN INSERT INTO dbo.[RefAeFunctioningLevelAtPosttest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ESLAdv', 'ESL Advanced', 'ESL Advanced is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeFunctioningLevelAtPosttest] -SET [Description] = 'ESL Advanced', [Definition] = 'ESL Advanced is specified as the individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', [SortOrder] = 12.00 WHERE [Code] = 'ESLAdv' END -END - -PRINT N'Populate RefAeInstructionalProgramType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAeInstructionalProgramType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeInstructionalProgramType] WHERE [Code] = 'ABE') BEGIN INSERT INTO dbo.[RefAeInstructionalProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ABE', 'Adult Basic Education', 'A program of academic instruction and education services below the secondary level that increases an individual''s ability to read, write, and speak in English and perform mathematics necessary to attain a secondary school diploma or its recognized equivalent, transition to postsecondary education or training, and obtain employment.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeInstructionalProgramType] -SET [Description] = 'Adult Basic Education', [Definition] = 'A program of academic instruction and education services below the secondary level that increases an individual''s ability to read, write, and speak in English and perform mathematics necessary to attain a secondary school diploma or its recognized equivalent, transition to postsecondary education or training, and obtain employment.', [SortOrder] = 1.00 WHERE [Code] = 'ABE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeInstructionalProgramType] WHERE [Code] = 'ASE') BEGIN INSERT INTO dbo.[RefAeInstructionalProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ASE', 'Adult Secondary Education', 'A program of academic instruction and education services at the secondary level that increases an individual''s ability to read, write, and perform mathematics necessary to attain a secondary school diploma or its recognized equivalent, transition to postsecondary education or training, and obtain employment.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeInstructionalProgramType] -SET [Description] = 'Adult Secondary Education', [Definition] = 'A program of academic instruction and education services at the secondary level that increases an individual''s ability to read, write, and perform mathematics necessary to attain a secondary school diploma or its recognized equivalent, transition to postsecondary education or training, and obtain employment.', [SortOrder] = 2.00 WHERE [Code] = 'ASE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeInstructionalProgramType] WHERE [Code] = 'ELA') BEGIN INSERT INTO dbo.[RefAeInstructionalProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ELA', 'English as a Second Language/English Language Acquisition Program', 'A program of instruction designed to help eligible individuals who are English language learners (ELLs) achieve competence in reading, writing, speaking, and comprehension of the English language, and that leads to attainment of a secondary school diploma or its recognized equivalent and transition to postsecondary education and training or employment.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeInstructionalProgramType] -SET [Description] = 'English as a Second Language/English Language Acquisition Program', [Definition] = 'A program of instruction designed to help eligible individuals who are English language learners (ELLs) achieve competence in reading, writing, speaking, and comprehension of the English language, and that leads to attainment of a secondary school diploma or its recognized equivalent and transition to postsecondary education and training or employment.', [SortOrder] = 3.00 WHERE [Code] = 'ELA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeInstructionalProgramType] WHERE [Code] = 'IEL') BEGIN INSERT INTO dbo.[RefAeInstructionalProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IEL', 'Integrated English Literacy and Civics Education', 'A program of instruction funded under WIOA, Section 243, which includes education services provided to English language learners who are adults, including professionals with degrees and credentials in their native countries, that enables such adults to achieve competency in the English language and acquire the basic and more advanced skills needed to function effectively as parents, workers, and citizens in the United States. It includes instruction in literacy and English language acquisition and instruction on the rights and responsibilities of citizenship and civic participation and may include workforce training. In addition, the program must be provided in combination with Integrated Education and Training (IET).', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeInstructionalProgramType] -SET [Description] = 'Integrated English Literacy and Civics Education', [Definition] = 'A program of instruction funded under WIOA, Section 243, which includes education services provided to English language learners who are adults, including professionals with degrees and credentials in their native countries, that enables such adults to achieve competency in the English language and acquire the basic and more advanced skills needed to function effectively as parents, workers, and citizens in the United States. It includes instruction in literacy and English language acquisition and instruction on the rights and responsibilities of citizenship and civic participation and may include workforce training. In addition, the program must be provided in combination with Integrated Education and Training (IET).', [SortOrder] = 4.00 WHERE [Code] = 'IEL' END -END - -PRINT N'Populate RefAePostsecondaryTransitionAction table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAePostsecondaryTransitionAction]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAePostsecondaryTransitionAction] WHERE [Code] = 'NoInformation') BEGIN INSERT INTO dbo.[RefAePostsecondaryTransitionAction]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoInformation', 'No information', 'No information is available with respect to postsecondary enrollment by the learner after program exit or when co-enrolled in ABE and postsecondary.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAePostsecondaryTransitionAction] -SET [Description] = 'No information', [Definition] = 'No information is available with respect to postsecondary enrollment by the learner after program exit or when co-enrolled in ABE and postsecondary.', [SortOrder] = 1.00 WHERE [Code] = 'NoInformation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAePostsecondaryTransitionAction] WHERE [Code] = 'Enrolled') BEGIN INSERT INTO dbo.[RefAePostsecondaryTransitionAction]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Enrolled', 'Enrolled', 'The learner enrolled in a postsecondary educational or occupational skills program building on prior services or training received.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAePostsecondaryTransitionAction] -SET [Description] = 'Enrolled', [Definition] = 'The learner enrolled in a postsecondary educational or occupational skills program building on prior services or training received.', [SortOrder] = 2.00 WHERE [Code] = 'Enrolled' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAePostsecondaryTransitionAction] WHERE [Code] = 'NotEnrolled') BEGIN INSERT INTO dbo.[RefAePostsecondaryTransitionAction]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotEnrolled', 'Not enrolled', 'The learner has not enrolled in a postsecondary educational or occupational skills program building on prior services or training received.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAePostsecondaryTransitionAction] -SET [Description] = 'Not enrolled', [Definition] = 'The learner has not enrolled in a postsecondary educational or occupational skills program building on prior services or training received.', [SortOrder] = 3.00 WHERE [Code] = 'NotEnrolled' END -END - -PRINT N'Populate RefAeSpecialProgramType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAeSpecialProgramType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeSpecialProgramType] WHERE [Code] = 'CorrectionalEducation') BEGIN INSERT INTO dbo.[RefAeSpecialProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CorrectionalEducation', 'Correctional education program', 'A program of Adult Basic Education (ABE), Adult Secondary Education (ASE), or English Language Learner (ELL) instruction for adult criminal offenders in correctional institutions.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeSpecialProgramType] -SET [Description] = 'Correctional education program', [Definition] = 'A program of Adult Basic Education (ABE), Adult Secondary Education (ASE), or English Language Learner (ELL) instruction for adult criminal offenders in correctional institutions.', [SortOrder] = 1.00 WHERE [Code] = 'CorrectionalEducation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeSpecialProgramType] WHERE [Code] = 'FamilyLiteracy') BEGIN INSERT INTO dbo.[RefAeSpecialProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FamilyLiteracy', 'Family Literacy Program', 'A program with a literacy component for parents and children or other intergenerational literacy components.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeSpecialProgramType] -SET [Description] = 'Family Literacy Program', [Definition] = 'A program with a literacy component for parents and children or other intergenerational literacy components.', [SortOrder] = 2.00 WHERE [Code] = 'FamilyLiteracy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeSpecialProgramType] WHERE [Code] = 'WorkplaceLiteracy') BEGIN INSERT INTO dbo.[RefAeSpecialProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WorkplaceLiteracy', 'Workplace Adult Education and Literacy Activities', 'Adult education and literacy activities offered by an eligible provider in collaboration with an employer or employee organization at a workplace or an off-site location that is designed to improve the productivity of the workforce.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeSpecialProgramType] -SET [Description] = 'Workplace Adult Education and Literacy Activities', [Definition] = 'Adult education and literacy activities offered by an eligible provider in collaboration with an employer or employee organization at a workplace or an off-site location that is designed to improve the productivity of the workforce.', [SortOrder] = 3.00 WHERE [Code] = 'WorkplaceLiteracy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeSpecialProgramType] WHERE [Code] = 'Homeless') BEGIN INSERT INTO dbo.[RefAeSpecialProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Homeless', 'Program for the Homeless', 'Program for the Homeless is specified as the type, by location or delivery mode, of adult education instruction program in which an adult participates.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeSpecialProgramType] -SET [Description] = 'Program for the Homeless', [Definition] = 'Program for the Homeless is specified as the type, by location or delivery mode, of adult education instruction program in which an adult participates.', [SortOrder] = 4.00 WHERE [Code] = 'Homeless' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeSpecialProgramType] WHERE [Code] = 'Co-enrollment') BEGIN INSERT INTO dbo.[RefAeSpecialProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Co-enrollment', 'Co-enrollment in adult education and postsecondary education', 'Co-enrollment in adult education and postsecondary education is specified as the type, by location or delivery mode, of adult education instruction program in which an adult participates.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeSpecialProgramType] -SET [Description] = 'Co-enrollment in adult education and postsecondary education', [Definition] = 'Co-enrollment in adult education and postsecondary education is specified as the type, by location or delivery mode, of adult education instruction program in which an adult participates.', [SortOrder] = 5.00 WHERE [Code] = 'Co-enrollment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeSpecialProgramType] WHERE [Code] = 'DistanceEducation') BEGIN INSERT INTO dbo.[RefAeSpecialProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DistanceEducation', 'Distance Education', 'Formal learning activity where students and instructors are separated by geography, time, or both for the majority of the instructional period. Distance learning materials are delivered through a variety of media, including but not limited to, print, audio recording, videotape, broadcasts, computer software, web-based programs, and other online technology. Teachers support distance learners through communication by mail, telephone, e-mail, or online technologies and software.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeSpecialProgramType] -SET [Description] = 'Distance Education', [Definition] = 'Formal learning activity where students and instructors are separated by geography, time, or both for the majority of the instructional period. Distance learning materials are delivered through a variety of media, including but not limited to, print, audio recording, videotape, broadcasts, computer software, web-based programs, and other online technology. Teachers support distance learners through communication by mail, telephone, e-mail, or online technologies and software.', [SortOrder] = 8.00 WHERE [Code] = 'DistanceEducation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeSpecialProgramType] WHERE [Code] = 'CommunityCorrections') BEGIN INSERT INTO dbo.[RefAeSpecialProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CommunityCorrections', 'Community Corrections Programs', 'A community-based rehabilitation facility or halfway house.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeSpecialProgramType] -SET [Description] = 'Community Corrections Programs', [Definition] = 'A community-based rehabilitation facility or halfway house.', [SortOrder] = 9.00 WHERE [Code] = 'CommunityCorrections' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeSpecialProgramType] WHERE [Code] = 'IntegratedEducationTraining') BEGIN INSERT INTO dbo.[RefAeSpecialProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IntegratedEducationTraining', 'Integrated Education and Training (IET)', 'A service approach that provides adult education and literacy activities concurrently and contextually with workforce preparation activities and workforce training for a specific occupation or occupational cluster for the purpose of educational and career advancement.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeSpecialProgramType] -SET [Description] = 'Integrated Education and Training (IET)', [Definition] = 'A service approach that provides adult education and literacy activities concurrently and contextually with workforce preparation activities and workforce training for a specific occupation or occupational cluster for the purpose of educational and career advancement.', [SortOrder] = 10.00 WHERE [Code] = 'IntegratedEducationTraining' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeSpecialProgramType] WHERE [Code] = 'OtherInstitutional') BEGIN INSERT INTO dbo.[RefAeSpecialProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherInstitutional', 'Other Institutional Programs', 'Any other medical or special institution.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeSpecialProgramType] -SET [Description] = 'Other Institutional Programs', [Definition] = 'Any other medical or special institution.', [SortOrder] = 11.00 WHERE [Code] = 'OtherInstitutional' END -END - -PRINT N'Populate RefAeStaffClassification table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAeStaffClassification]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeStaffClassification] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefAeStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'State-level administrative/supervisory/ancillary services', 'State-level administrative/supervisory/ancillary services is specified as the classification for the adult education staff member.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeStaffClassification] -SET [Description] = 'State-level administrative/supervisory/ancillary services', [Definition] = 'State-level administrative/supervisory/ancillary services is specified as the classification for the adult education staff member.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeStaffClassification] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefAeStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Local-level administrative/supervisory/ancillary services', 'Local-level administrative/supervisory/ancillary services is specified as the classification for the adult education staff member.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeStaffClassification] -SET [Description] = 'Local-level administrative/supervisory/ancillary services', [Definition] = 'Local-level administrative/supervisory/ancillary services is specified as the classification for the adult education staff member.', [SortOrder] = 3.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeStaffClassification] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefAeStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Local teacher', 'Local teacher is specified as the classification for the adult education staff member.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeStaffClassification] -SET [Description] = 'Local teacher', [Definition] = 'Local teacher is specified as the classification for the adult education staff member.', [SortOrder] = 5.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeStaffClassification] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefAeStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Local counselor', 'Local counselor is specified as the classification for the adult education staff member.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeStaffClassification] -SET [Description] = 'Local counselor', [Definition] = 'Local counselor is specified as the classification for the adult education staff member.', [SortOrder] = 7.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeStaffClassification] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefAeStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Local paraprofessional', 'Local paraprofessional is specified as the classification for the adult education staff member.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeStaffClassification] -SET [Description] = 'Local paraprofessional', [Definition] = 'Local paraprofessional is specified as the classification for the adult education staff member.', [SortOrder] = 9.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeStaffClassification] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefAeStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'State Professional Development Staff', 'State Professional Development Staff is specified as the classification for the adult education staff member.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeStaffClassification] -SET [Description] = 'State Professional Development Staff', [Definition] = 'State Professional Development Staff is specified as the classification for the adult education staff member.', [SortOrder] = 11.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeStaffClassification] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefAeStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Regional Professional Development Staff', 'Regional Professional Development Staff is specified as the classification for the adult education staff member.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeStaffClassification] -SET [Description] = 'Regional Professional Development Staff', [Definition] = 'Regional Professional Development Staff is specified as the classification for the adult education staff member.', [SortOrder] = 13.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeStaffClassification] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefAeStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Local Professional Development Staff', 'Local Professional Development Staff is specified as the classification for the adult education staff member.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeStaffClassification] -SET [Description] = 'Local Professional Development Staff', [Definition] = 'Local Professional Development Staff is specified as the classification for the adult education staff member.', [SortOrder] = 15.00 WHERE [Code] = '08' END -END - -PRINT N'Populate RefAeStaffEmploymentStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAeStaffEmploymentStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeStaffEmploymentStatus] WHERE [Code] = 'FullTimePaid') BEGIN INSERT INTO dbo.[RefAeStaffEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullTimePaid', 'Full-time paid', 'Full-time paid is specified as the condition under which a person has agreed to serve as an employee.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeStaffEmploymentStatus] -SET [Description] = 'Full-time paid', [Definition] = 'Full-time paid is specified as the condition under which a person has agreed to serve as an employee.', [SortOrder] = 1.00 WHERE [Code] = 'FullTimePaid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeStaffEmploymentStatus] WHERE [Code] = 'PartTimePaid') BEGIN INSERT INTO dbo.[RefAeStaffEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartTimePaid', 'Part-time paid', 'Part-time paid is specified as the condition under which a person has agreed to serve as an employee.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeStaffEmploymentStatus] -SET [Description] = 'Part-time paid', [Definition] = 'Part-time paid is specified as the condition under which a person has agreed to serve as an employee.', [SortOrder] = 2.00 WHERE [Code] = 'PartTimePaid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeStaffEmploymentStatus] WHERE [Code] = 'FullTimeVolunteer') BEGIN INSERT INTO dbo.[RefAeStaffEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullTimeVolunteer', 'Full-time volunteer', 'Full-time volunteer is specified as the condition under which a person has agreed to serve as an employee.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeStaffEmploymentStatus] -SET [Description] = 'Full-time volunteer', [Definition] = 'Full-time volunteer is specified as the condition under which a person has agreed to serve as an employee.', [SortOrder] = 3.00 WHERE [Code] = 'FullTimeVolunteer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAeStaffEmploymentStatus] WHERE [Code] = 'PartTimeVolunteer') BEGIN INSERT INTO dbo.[RefAeStaffEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartTimeVolunteer', 'Part-time volunteer', 'Part-time volunteer is specified as the condition under which a person has agreed to serve as an employee.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAeStaffEmploymentStatus] -SET [Description] = 'Part-time volunteer', [Definition] = 'Part-time volunteer is specified as the condition under which a person has agreed to serve as an employee.', [SortOrder] = 4.00 WHERE [Code] = 'PartTimeVolunteer' END -END - -PRINT N'Populate RefAllergySeverity table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAllergySeverity]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergySeverity] WHERE [Code] = 'Mild') BEGIN INSERT INTO dbo.[RefAllergySeverity]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Mild', 'Mild allergic reaction', 'The level of severity of a person''s reaction to an allergen is mild.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergySeverity] -SET [Description] = 'Mild allergic reaction', [Definition] = 'The level of severity of a person''s reaction to an allergen is mild.', [SortOrder] = 1.00 WHERE [Code] = 'Mild' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergySeverity] WHERE [Code] = 'Severe') BEGIN INSERT INTO dbo.[RefAllergySeverity]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Severe', 'Severe allergic reaction', 'The level of severity of a person''s reaction to an allergen is severe.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergySeverity] -SET [Description] = 'Severe allergic reaction', [Definition] = 'The level of severity of a person''s reaction to an allergen is severe.', [SortOrder] = 2.00 WHERE [Code] = 'Severe' END -END - -PRINT N'Populate RefAllergyType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAllergyType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '417930000') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('417930000', 'Allergy to adhesive', 'Allergy to adhesive is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to adhesive', [Definition] = 'Allergy to adhesive is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 2.00 WHERE [Code] = '417930000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419238009') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419238009', 'Allergy to adhesive bandage', 'Allergy to adhesive bandage is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to adhesive bandage', [Definition] = 'Allergy to adhesive bandage is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 4.00 WHERE [Code] = '419238009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '420140004') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('420140004', 'Allergy to alcohol', 'Allergy to alcohol is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to alcohol', [Definition] = 'Allergy to alcohol is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 6.00 WHERE [Code] = '420140004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418606003') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418606003', 'Allergy to almond oil', 'Allergy to almond oil is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to almond oil', [Definition] = 'Allergy to almond oil is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 8.00 WHERE [Code] = '418606003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '439109008') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('439109008', 'Allergy to alpha glucoside inhibitor', 'Allergy to alpha glucoside inhibitor is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to alpha glucoside inhibitor', [Definition] = 'Allergy to alpha glucoside inhibitor is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 10.00 WHERE [Code] = '439109008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '402306009') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('402306009', 'Allergy to aluminum', 'Allergy to aluminum is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to aluminum', [Definition] = 'Allergy to aluminum is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 12.00 WHERE [Code] = '402306009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '439405005') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('439405005', 'Allergy to angiotensin II receptor antagonist', 'Allergy to angiotensin II receptor antagonist is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to angiotensin II receptor antagonist', [Definition] = 'Allergy to angiotensin II receptor antagonist is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 14.00 WHERE [Code] = '439405005' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '232347008') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('232347008', 'Allergy to animal', 'Allergy to animal is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to animal', [Definition] = 'Allergy to animal is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 16.00 WHERE [Code] = '232347008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '300911008') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('300911008', 'Allergy to animal hair', 'Allergy to animal hair is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to animal hair', [Definition] = 'Allergy to animal hair is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 18.00 WHERE [Code] = '300911008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '91929009') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('91929009', 'Allergy to anti-infective agent', 'Allergy to anti-infective agent is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to anti-infective agent', [Definition] = 'Allergy to anti-infective agent is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 20.00 WHERE [Code] = '91929009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418314004') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418314004', 'Allergy to apple juice', 'Allergy to apple juice is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to apple juice', [Definition] = 'Allergy to apple juice is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 22.00 WHERE [Code] = '418314004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419180003') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419180003', 'Allergy to aspartame', 'Allergy to aspartame is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to aspartame', [Definition] = 'Allergy to aspartame is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 24.00 WHERE [Code] = '419180003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '294314002') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('294314002', 'Allergy to bases and inactive substances', 'Allergy to bases and inactive substances is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to bases and inactive substances', [Definition] = 'Allergy to bases and inactive substances is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 26.00 WHERE [Code] = '294314002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '424213003') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('424213003', 'Allergy to bee venom', 'Allergy to bee venom is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to bee venom', [Definition] = 'Allergy to bee venom is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 28.00 WHERE [Code] = '424213003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '402591008') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('402591008', 'Allergy to biocide', 'Allergy to biocide is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to biocide', [Definition] = 'Allergy to biocide is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 30.00 WHERE [Code] = '402591008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '402590009') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('402590009', 'Allergy to biocide in cosmetic', 'Allergy to biocide in cosmetic is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to biocide in cosmetic', [Definition] = 'Allergy to biocide in cosmetic is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 32.00 WHERE [Code] = '402590009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418344001') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418344001', 'Allergy to caffeine', 'Allergy to caffeine is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to caffeine', [Definition] = 'Allergy to caffeine is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 34.00 WHERE [Code] = '418344001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '420080006') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('420080006', 'Allergy to carrot', 'Allergy to carrot is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to carrot', [Definition] = 'Allergy to carrot is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 36.00 WHERE [Code] = '420080006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '232346004') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('232346004', 'Allergy to cat dander', 'Allergy to cat dander is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to cat dander', [Definition] = 'Allergy to cat dander is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 38.00 WHERE [Code] = '232346004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418051002') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418051002', 'Allergy to cherry', 'Allergy to cherry is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to cherry', [Definition] = 'Allergy to cherry is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 40.00 WHERE [Code] = '418051002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '441931002') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('441931002', 'Allergy to chloroprocaine', 'Allergy to chloroprocaine is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to chloroprocaine', [Definition] = 'Allergy to chloroprocaine is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 42.00 WHERE [Code] = '441931002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418397007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418397007', 'Allergy to cinnamon', 'Allergy to cinnamon is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to cinnamon', [Definition] = 'Allergy to cinnamon is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 44.00 WHERE [Code] = '418397007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '448438007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('448438007', 'Allergy to cisatracurium', 'Allergy to cisatracurium is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to cisatracurium', [Definition] = 'Allergy to cisatracurium is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 46.00 WHERE [Code] = '448438007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418085001') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418085001', 'Allergy to citrus fruit', 'Allergy to citrus fruit is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to citrus fruit', [Definition] = 'Allergy to citrus fruit is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 48.00 WHERE [Code] = '418085001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419814004') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419814004', 'Allergy to coconut oil', 'Allergy to coconut oil is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to coconut oil', [Definition] = 'Allergy to coconut oil is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 50.00 WHERE [Code] = '419814004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419573007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419573007', 'Allergy to corn', 'Allergy to corn is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to corn', [Definition] = 'Allergy to corn is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 52.00 WHERE [Code] = '419573007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '417982003') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('417982003', 'Allergy to cosmetic', 'Allergy to cosmetic is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to cosmetic', [Definition] = 'Allergy to cosmetic is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 54.00 WHERE [Code] = '417982003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '425525006') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('425525006', 'Allergy to dairy product', 'Allergy to dairy product is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to dairy product', [Definition] = 'Allergy to dairy product is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 56.00 WHERE [Code] = '425525006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '447961002') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('447961002', 'Allergy to dietary mushroom', 'Allergy to dietary mushroom is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to dietary mushroom', [Definition] = 'Allergy to dietary mushroom is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 58.00 WHERE [Code] = '447961002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419271008') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419271008', 'Allergy to dog dander', 'Allergy to dog dander is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to dog dander', [Definition] = 'Allergy to dog dander is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 60.00 WHERE [Code] = '419271008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '449324007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('449324007', 'Allergy to doxacurium', 'Allergy to doxacurium is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to doxacurium', [Definition] = 'Allergy to doxacurium is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 62.00 WHERE [Code] = '449324007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '416098002') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('416098002', 'Allergy to drug', 'Allergy to drug is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to drug', [Definition] = 'Allergy to drug is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 64.00 WHERE [Code] = '416098002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '402592001') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('402592001', 'Allergy to drug in contact with skin', 'Allergy to drug in contact with skin is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to drug in contact with skin', [Definition] = 'Allergy to drug in contact with skin is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 66.00 WHERE [Code] = '402592001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '402593006') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('402593006', 'Allergy to drug vehicle', 'Allergy to drug vehicle is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to drug vehicle', [Definition] = 'Allergy to drug vehicle is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 68.00 WHERE [Code] = '402593006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418545001') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418545001', 'Allergy to dye', 'Allergy to dye is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to dye', [Definition] = 'Allergy to dye is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 70.00 WHERE [Code] = '418545001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '91930004') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('91930004', 'Allergy to eggs', 'Allergy to eggs is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to eggs', [Definition] = 'Allergy to eggs is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 72.00 WHERE [Code] = '91930004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '441725009') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('441725009', 'Allergy to ertapenem', 'Allergy to ertapenem is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to ertapenem', [Definition] = 'Allergy to ertapenem is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 74.00 WHERE [Code] = '441725009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '91931000') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('91931000', 'Allergy to erythromycin', 'Allergy to erythromycin is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to erythromycin', [Definition] = 'Allergy to erythromycin is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 76.00 WHERE [Code] = '91931000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '420140004') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('420140004', 'Allergy to ethanol', 'Allergy to ethanol is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to ethanol', [Definition] = 'Allergy to ethanol is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 78.00 WHERE [Code] = '420140004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '420140004') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('420140004', 'Allergy to ethyl alcohol', 'Allergy to ethyl alcohol is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to ethyl alcohol', [Definition] = 'Allergy to ethyl alcohol is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 80.00 WHERE [Code] = '420140004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '417532002') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('417532002', 'Allergy to fish', 'Allergy to fish is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to fish', [Definition] = 'Allergy to fish is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 82.00 WHERE [Code] = '417532002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '402598002') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('402598002', 'Allergy to flavor', 'Allergy to flavor is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 84.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to flavor', [Definition] = 'Allergy to flavor is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 84.00 WHERE [Code] = '402598002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '91932007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('91932007', 'Allergy to fruit', 'Allergy to fruit is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 86.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to fruit', [Definition] = 'Allergy to fruit is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 86.00 WHERE [Code] = '91932007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418968001') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418968001', 'Allergy to gauze', 'Allergy to gauze is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 88.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to gauze', [Definition] = 'Allergy to gauze is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 88.00 WHERE [Code] = '418968001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418689008') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418689008', 'Allergy to grass pollen', 'Allergy to grass pollen is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 90.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to grass pollen', [Definition] = 'Allergy to grass pollen is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 90.00 WHERE [Code] = '418689008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418689008') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418689008', 'Allergy to hay', 'Allergy to hay is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 92.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to hay', [Definition] = 'Allergy to hay is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 92.00 WHERE [Code] = '418689008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419063004') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419063004', 'Allergy to horse dander', 'Allergy to horse dander is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 94.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to horse dander', [Definition] = 'Allergy to horse dander is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 94.00 WHERE [Code] = '419063004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '442408006') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('442408006', 'Allergy to imipenem', 'Allergy to imipenem is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 96.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to imipenem', [Definition] = 'Allergy to imipenem is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 96.00 WHERE [Code] = '442408006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '294162002') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('294162002', 'Allergy to inhaled corticosteroids', 'Allergy to inhaled corticosteroids is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 98.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to inhaled corticosteroids', [Definition] = 'Allergy to inhaled corticosteroids is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 98.00 WHERE [Code] = '294162002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '409136006') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('409136006', 'Allergy to legumes', 'Allergy to legumes is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 100.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to legumes', [Definition] = 'Allergy to legumes is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 100.00 WHERE [Code] = '409136006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '402596003') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('402596003', 'Allergy to lichen', 'Allergy to lichen is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 102.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to lichen', [Definition] = 'Allergy to lichen is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 102.00 WHERE [Code] = '402596003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418626004') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418626004', 'Allergy to lobster', 'Allergy to lobster is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 104.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to lobster', [Definition] = 'Allergy to lobster is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 104.00 WHERE [Code] = '418626004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '91933002') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('91933002', 'Allergy to macrolide antibiotic', 'Allergy to macrolide antibiotic is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 106.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to macrolide antibiotic', [Definition] = 'Allergy to macrolide antibiotic is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 106.00 WHERE [Code] = '91933002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '439406006') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('439406006', 'Allergy to meglitinide', 'Allergy to meglitinide is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 108.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to meglitinide', [Definition] = 'Allergy to meglitinide is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 108.00 WHERE [Code] = '439406006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '442022002') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('442022002', 'Allergy to meropenem', 'Allergy to meropenem is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 110.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to meropenem', [Definition] = 'Allergy to meropenem is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 110.00 WHERE [Code] = '442022002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419474003') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419474003', 'Allergy to mildew', 'Allergy to mildew is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 112.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to mildew', [Definition] = 'Allergy to mildew is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 112.00 WHERE [Code] = '419474003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419474003') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419474003', 'Allergy to mold', 'Allergy to mold is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 114.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to mold', [Definition] = 'Allergy to mold is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 114.00 WHERE [Code] = '419474003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419474003') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419474003', 'Allergy to mould', 'Allergy to mould is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 116.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to mould', [Definition] = 'Allergy to mould is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 116.00 WHERE [Code] = '419474003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '445395006') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('445395006', 'Allergy to Myroxylon pereirae', 'Allergy to Myroxylon pereirae is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 118.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to Myroxylon pereirae', [Definition] = 'Allergy to Myroxylon pereirae is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 118.00 WHERE [Code] = '445395006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419788000') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419788000', 'Allergy to nickel', 'Allergy to nickel is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 120.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to nickel', [Definition] = 'Allergy to nickel is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 120.00 WHERE [Code] = '419788000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '91934008') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('91934008', 'Allergy to nuts', 'Allergy to nuts is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 122.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to nuts', [Definition] = 'Allergy to nuts is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 122.00 WHERE [Code] = '91934008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419342009') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419342009', 'Allergy to oats', 'Allergy to oats is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 124.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to oats', [Definition] = 'Allergy to oats is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 124.00 WHERE [Code] = '419342009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '293580007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('293580007', 'Allergy to over-the-counter drug', 'Allergy to over-the-counter drug is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 126.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to over-the-counter drug', [Definition] = 'Allergy to over-the-counter drug is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 126.00 WHERE [Code] = '293580007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419967000') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419967000', 'Allergy to oyster', 'Allergy to oyster is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 128.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to oyster', [Definition] = 'Allergy to oyster is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 128.00 WHERE [Code] = '419967000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '91935009') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('91935009', 'Allergy to peanuts', 'Allergy to peanuts is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 130.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to peanuts', [Definition] = 'Allergy to peanuts is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 130.00 WHERE [Code] = '91935009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '91936005') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('91936005', 'Allergy to penicillin', 'Allergy to penicillin is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 132.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to penicillin', [Definition] = 'Allergy to penicillin is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 132.00 WHERE [Code] = '91936005' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '448690007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('448690007', 'Allergy to phosphodiesterase 5 inhibitor', 'Allergy to phosphodiesterase 5 inhibitor is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 134.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to phosphodiesterase 5 inhibitor', [Definition] = 'Allergy to phosphodiesterase 5 inhibitor is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 134.00 WHERE [Code] = '448690007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '402594000') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('402594000', 'Allergy to plant', 'Allergy to plant is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 136.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to plant', [Definition] = 'Allergy to plant is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 136.00 WHERE [Code] = '402594000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '300910009') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('300910009', 'Allergy to pollen', 'Allergy to pollen is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 138.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to pollen', [Definition] = 'Allergy to pollen is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 138.00 WHERE [Code] = '300910009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '417918006') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('417918006', 'Allergy to pork', 'Allergy to pork is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 140.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to pork', [Definition] = 'Allergy to pork is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 140.00 WHERE [Code] = '417918006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419619007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419619007', 'Allergy to potato', 'Allergy to potato is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 142.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to potato', [Definition] = 'Allergy to potato is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 142.00 WHERE [Code] = '419619007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '409136006') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('409136006', 'Allergy to pulse vegetables', 'Allergy to pulse vegetables is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 144.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to pulse vegetables', [Definition] = 'Allergy to pulse vegetables is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 144.00 WHERE [Code] = '409136006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418561004') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418561004', 'Allergy to ragweed pollen', 'Allergy to ragweed pollen is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 146.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to ragweed pollen', [Definition] = 'Allergy to ragweed pollen is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 146.00 WHERE [Code] = '418561004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '473078001') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('473078001', 'Allergy to raloxifene', 'Allergy to raloxifene is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 148.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to raloxifene', [Definition] = 'Allergy to raloxifene is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 148.00 WHERE [Code] = '473078001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '449414003') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('449414003', 'Allergy to rapacuronium', 'Allergy to rapacuronium is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 150.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to rapacuronium', [Definition] = 'Allergy to rapacuronium is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 150.00 WHERE [Code] = '449414003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418815008') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418815008', 'Allergy to red meat', 'Allergy to red meat is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 152.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to red meat', [Definition] = 'Allergy to red meat is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 152.00 WHERE [Code] = '418815008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '441992007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('441992007', 'Allergy to remifentanil', 'Allergy to remifentanil is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 154.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to remifentanil', [Definition] = 'Allergy to remifentanil is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 154.00 WHERE [Code] = '441992007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419412007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419412007', 'Allergy to rubber', 'Allergy to rubber is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 156.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to rubber', [Definition] = 'Allergy to rubber is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 156.00 WHERE [Code] = '419412007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418184004') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418184004', 'Allergy to rye', 'Allergy to rye is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 158.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to rye', [Definition] = 'Allergy to rye is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 158.00 WHERE [Code] = '418184004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '422921000') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('422921000', 'Allergy to scorpion venom', 'Allergy to scorpion venom is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 160.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to scorpion venom', [Definition] = 'Allergy to scorpion venom is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 160.00 WHERE [Code] = '422921000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '91937001') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('91937001', 'Allergy to seafood', 'Allergy to seafood is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 162.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to seafood', [Definition] = 'Allergy to seafood is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 162.00 WHERE [Code] = '91937001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419101002') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419101002', 'Allergy to seed', 'Allergy to seed is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 164.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to seed', [Definition] = 'Allergy to seed is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 164.00 WHERE [Code] = '419101002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '441954006') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('441954006', 'Allergy to sevoflurane', 'Allergy to sevoflurane is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 166.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to sevoflurane', [Definition] = 'Allergy to sevoflurane is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 166.00 WHERE [Code] = '441954006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419972009') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419972009', 'Allergy to shrimp', 'Allergy to shrimp is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 168.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to shrimp', [Definition] = 'Allergy to shrimp is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 168.00 WHERE [Code] = '419972009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '427487000') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('427487000', 'Allergy to spider venom', 'Allergy to spider venom is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 170.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to spider venom', [Definition] = 'Allergy to spider venom is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 170.00 WHERE [Code] = '427487000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '91938006') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('91938006', 'Allergy to strawberries', 'Allergy to strawberries is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 172.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to strawberries', [Definition] = 'Allergy to strawberries is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 172.00 WHERE [Code] = '91938006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419199007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419199007', 'Allergy to substance', 'Allergy to substance is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 174.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to substance', [Definition] = 'Allergy to substance is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 174.00 WHERE [Code] = '419199007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '441955007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('441955007', 'Allergy to sufentanil', 'Allergy to sufentanil is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 176.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to sufentanil', [Definition] = 'Allergy to sufentanil is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 176.00 WHERE [Code] = '441955007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419421008') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419421008', 'Allergy to sulfite based food preservative', 'Allergy to sulfite based food preservative is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 178.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to sulfite based food preservative', [Definition] = 'Allergy to sulfite based food preservative is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 178.00 WHERE [Code] = '419421008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '429239002') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('429239002', 'Allergy to sulfonamide antibiotic', 'Allergy to sulfonamide antibiotic is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 180.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to sulfonamide antibiotic', [Definition] = 'Allergy to sulfonamide antibiotic is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 180.00 WHERE [Code] = '429239002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '91939003') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('91939003', 'Allergy to sulfonamides', 'Allergy to sulfonamides is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 182.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to sulfonamides', [Definition] = 'Allergy to sulfonamides is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 182.00 WHERE [Code] = '91939003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419421008') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419421008', 'Allergy to sulphite based food preservative', 'Allergy to sulphite based food preservative is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 184.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to sulphite based food preservative', [Definition] = 'Allergy to sulphite based food preservative is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 184.00 WHERE [Code] = '419421008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '429239002') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('429239002', 'Allergy to sulphonamide antibiotic', 'Allergy to sulphonamide antibiotic is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 186.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to sulphonamide antibiotic', [Definition] = 'Allergy to sulphonamide antibiotic is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 186.00 WHERE [Code] = '429239002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '91939003') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('91939003', 'Allergy to sulphonamides', 'Allergy to sulphonamides is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 188.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to sulphonamides', [Definition] = 'Allergy to sulphonamides is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 188.00 WHERE [Code] = '91939003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '258155009') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('258155009', 'Allergy to sunlight', 'Allergy to sunlight is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 190.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to sunlight', [Definition] = 'Allergy to sunlight is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 190.00 WHERE [Code] = '258155009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '473077006') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('473077006', 'Allergy to teriparatide', 'Allergy to teriparatide is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 192.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to teriparatide', [Definition] = 'Allergy to teriparatide is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 192.00 WHERE [Code] = '473077006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '439954005') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('439954005', 'Allergy to thiazolidinedione', 'Allergy to thiazolidinedione is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 194.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to thiazolidinedione', [Definition] = 'Allergy to thiazolidinedione is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 194.00 WHERE [Code] = '439954005' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '418779002') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('418779002', 'Allergy to tomato', 'Allergy to tomato is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 196.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to tomato', [Definition] = 'Allergy to tomato is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 196.00 WHERE [Code] = '418779002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '450767000') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('450767000', 'Allergy to tramadol', 'Allergy to tramadol is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 198.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to tramadol', [Definition] = 'Allergy to tramadol is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 198.00 WHERE [Code] = '450767000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419263009') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419263009', 'Allergy to tree pollen', 'Allergy to tree pollen is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 200.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to tree pollen', [Definition] = 'Allergy to tree pollen is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 200.00 WHERE [Code] = '419263009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '402597007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('402597007', 'Allergy to tree resin', 'Allergy to tree resin is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 202.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to tree resin', [Definition] = 'Allergy to tree resin is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 202.00 WHERE [Code] = '402597007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '91940001') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('91940001', 'Allergy to walnuts', 'Allergy to walnuts is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 204.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to walnuts', [Definition] = 'Allergy to walnuts is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 204.00 WHERE [Code] = '91940001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '423058007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('423058007', 'Allergy to wasp venom', 'Allergy to wasp venom is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 206.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to wasp venom', [Definition] = 'Allergy to wasp venom is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 206.00 WHERE [Code] = '423058007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419298007') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419298007', 'Allergy to watermelon', 'Allergy to watermelon is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 208.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to watermelon', [Definition] = 'Allergy to watermelon is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 208.00 WHERE [Code] = '419298007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '419210001') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('419210001', 'Allergy to weed pollen', 'Allergy to weed pollen is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 210.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to weed pollen', [Definition] = 'Allergy to weed pollen is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 210.00 WHERE [Code] = '419210001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '420174000') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('420174000', 'Allergy to wheat', 'Allergy to wheat is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 212.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to wheat', [Definition] = 'Allergy to wheat is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 212.00 WHERE [Code] = '420174000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '402595004') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('402595004', 'Allergy to wood', 'Allergy to wood is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 214.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to wood', [Definition] = 'Allergy to wood is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 214.00 WHERE [Code] = '402595004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAllergyType] WHERE [Code] = '425605001') BEGIN INSERT INTO dbo.[RefAllergyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('425605001', 'Allergy to wool', 'Allergy to wool is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', 216.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAllergyType] -SET [Description] = 'Allergy to wool', [Definition] = 'Allergy to wool is specified as the type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', [SortOrder] = 216.00 WHERE [Code] = '425605001' END -END - -PRINT N'Populate RefAlternativeSchoolFocus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAlternativeSchoolFocus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAlternativeSchoolFocus] WHERE [Code] = 'Academic') BEGIN INSERT INTO dbo.[RefAlternativeSchoolFocus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Academic', 'Alternative school for students with academic difficulties', 'Students with academic difficulties is specified as the specific group of students whose needs the alternative school is designed to meet.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAlternativeSchoolFocus] -SET [Description] = 'Alternative school for students with academic difficulties', [Definition] = 'Students with academic difficulties is specified as the specific group of students whose needs the alternative school is designed to meet.', [SortOrder] = 1.00 WHERE [Code] = 'Academic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAlternativeSchoolFocus] WHERE [Code] = 'Discipline') BEGIN INSERT INTO dbo.[RefAlternativeSchoolFocus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Discipline', 'Alternative school for students with discipline problems', 'Students with discipline problems is specified as the specific group of students whose needs the alternative school is designed to meet.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAlternativeSchoolFocus] -SET [Description] = 'Alternative school for students with discipline problems', [Definition] = 'Students with discipline problems is specified as the specific group of students whose needs the alternative school is designed to meet.', [SortOrder] = 2.00 WHERE [Code] = 'Discipline' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAlternativeSchoolFocus] WHERE [Code] = 'Both') BEGIN INSERT INTO dbo.[RefAlternativeSchoolFocus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Both', 'Alternative school for students with both discipline and academic problems ', 'Students with both discipline and academic problems is specified as the specific group of students whose needs the alternative school is designed to meet.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAlternativeSchoolFocus] -SET [Description] = 'Alternative school for students with both discipline and academic problems ', [Definition] = 'Students with both discipline and academic problems is specified as the specific group of students whose needs the alternative school is designed to meet.', [SortOrder] = 3.00 WHERE [Code] = 'Both' END -END - -PRINT N'Populate RefAltRouteToCertificationOrLicensure table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAltRouteToCertificationOrLicensure]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAltRouteToCertificationOrLicensure] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefAltRouteToCertificationOrLicensure]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAltRouteToCertificationOrLicensure] -SET [Description] = 'Yes', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAltRouteToCertificationOrLicensure] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefAltRouteToCertificationOrLicensure]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAltRouteToCertificationOrLicensure] -SET [Description] = 'No', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAltRouteToCertificationOrLicensure] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefAltRouteToCertificationOrLicensure]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAltRouteToCertificationOrLicensure] -SET [Description] = 'Not applicable', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefApipInteractionType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefApipInteractionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'CustomInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CustomInteraction', 'Custom Interaction', 'The custom interaction provides an opportunity for extensibility of this specification to include support for interactions not currently documented.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Custom Interaction', [Definition] = 'The custom interaction provides an opportunity for extensibility of this specification to include support for interactions not currently documented.', [SortOrder] = 1.00 WHERE [Code] = 'CustomInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'DrawingInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DrawingInteraction', 'Drawing Interaction', 'The drawing interaction allows the candidate to use a common set of drawing tools to modify a given graphical image (the canvas). It must be bound to a response variable with base-type file and single cardinality. The result is a file in the same format as the original image.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Drawing Interaction', [Definition] = 'The drawing interaction allows the candidate to use a common set of drawing tools to modify a given graphical image (the canvas). It must be bound to a response variable with base-type file and single cardinality. The result is a file in the same format as the original image.', [SortOrder] = 2.00 WHERE [Code] = 'DrawingInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'GapMatchInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GapMatchInteraction', 'Gap Match Interaction', 'A gap match interaction contains a number gaps that the candidate can fill from an associated set of choices. The candidate must be able to review the content with the gaps filled in context, as indicated by their choices.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Gap Match Interaction', [Definition] = 'A gap match interaction contains a number gaps that the candidate can fill from an associated set of choices. The candidate must be able to review the content with the gaps filled in context, as indicated by their choices.', [SortOrder] = 3.00 WHERE [Code] = 'GapMatchInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'MatchInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MatchInteraction', 'Match Interaction', 'A match interaction presents candidates with two sets of choices and allows them to create associates between pairs of choices in the two sets, but not between pairs of choices in the same set. Further restrictions can still be placed on the allowable associations using the matchMax attribute of the choices.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Match Interaction', [Definition] = 'A match interaction presents candidates with two sets of choices and allows them to create associates between pairs of choices in the two sets, but not between pairs of choices in the same set. Further restrictions can still be placed on the allowable associations using the matchMax attribute of the choices.', [SortOrder] = 4.00 WHERE [Code] = 'MatchInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'GraphicGapMatchInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GraphicGapMatchInteraction', 'Graphic Gap Match Interaction', 'A graphic gap-match interaction is a graphical interaction with a set of gaps that are defined as areas (hotspots) of the graphic image and an additional set of gap choices that are defined outside the image. The candidate must associate the gap choices with the gaps in the image and be able to review the image with the gaps filled in context, as indicated by their choices. Care should be taken when designing these interactions to ensure that the gaps in the image are a suitable size to receive the required gap choices. It must be clear to the candidate which hotspot each choice has been associated with. When associated, choices must appear wholly inside the gaps if at all possible and, where overlaps are required, should not hide each other completely. If the candidate indicates the association by positioning the choice over the gap (e.g., drag and drop) the system should ''snap'' it to the nearest position that satisfies these requirements.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Graphic Gap Match Interaction', [Definition] = 'A graphic gap-match interaction is a graphical interaction with a set of gaps that are defined as areas (hotspots) of the graphic image and an additional set of gap choices that are defined outside the image. The candidate must associate the gap choices with the gaps in the image and be able to review the image with the gaps filled in context, as indicated by their choices. Care should be taken when designing these interactions to ensure that the gaps in the image are a suitable size to receive the required gap choices. It must be clear to the candidate which hotspot each choice has been associated with. When associated, choices must appear wholly inside the gaps if at all possible and, where overlaps are required, should not hide each other completely. If the candidate indicates the association by positioning the choice over the gap (e.g., drag and drop) the system should ''snap'' it to the nearest position that satisfies these requirements.', [SortOrder] = 5.00 WHERE [Code] = 'GraphicGapMatchInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'HotspotInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HotspotInteraction', 'Hotspot Interaction', 'A hotspot interaction is a graphical interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to select one or more of the areas (hotspots). The hotspot interaction should only be used when the spatial relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, choiceInteraction should be used instead with separate material for each option.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Hotspot Interaction', [Definition] = 'A hotspot interaction is a graphical interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to select one or more of the areas (hotspots). The hotspot interaction should only be used when the spatial relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, choiceInteraction should be used instead with separate material for each option.', [SortOrder] = 6.00 WHERE [Code] = 'HotspotInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'GraphicOrderInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GraphicOrderInteraction', 'Graphic Order Interaction', 'A graphic order interaction is a graphic interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to impose an ordering on the areas (hotspots). The order hotspot interaction should only be used when the spatial relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, orderInteraction should be used instead with separate material for each option.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Graphic Order Interaction', [Definition] = 'A graphic order interaction is a graphic interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to impose an ordering on the areas (hotspots). The order hotspot interaction should only be used when the spatial relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, orderInteraction should be used instead with separate material for each option.', [SortOrder] = 7.00 WHERE [Code] = 'GraphicOrderInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'GraphicAssociateInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GraphicAssociateInteraction', 'Graphic Associate Interaction', 'A graphic associate interaction is a graphic interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to associate the areas (hotspots) with each other. The graphic associate interaction should only be used when the graphical relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, associateInteraction should be used instead with separate Material for each option. -SliderInteraction -- The slider interaction presents the candidate with a control for selecting a numerical value between a lower and upper bound. It must be bound to a response variable with single cardinality with a base-type of either integer or float.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Graphic Associate Interaction', [Definition] = 'A graphic associate interaction is a graphic interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to associate the areas (hotspots) with each other. The graphic associate interaction should only be used when the graphical relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, associateInteraction should be used instead with separate Material for each option. -SliderInteraction -- The slider interaction presents the candidate with a control for selecting a numerical value between a lower and upper bound. It must be bound to a response variable with single cardinality with a base-type of either integer or float.', [SortOrder] = 8.00 WHERE [Code] = 'GraphicAssociateInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'ChoiceInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChoiceInteraction', 'Choice Interaction', 'The choice interaction presents a set of choices to the candidate. The candidate''s task is to select one or more of the choices, up to a maximum of maxChoices. The interaction is always initialized with no choices selected.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Choice Interaction', [Definition] = 'The choice interaction presents a set of choices to the candidate. The candidate''s task is to select one or more of the choices, up to a maximum of maxChoices. The interaction is always initialized with no choices selected.', [SortOrder] = 9.00 WHERE [Code] = 'ChoiceInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'InlineChoiceInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InlineChoiceInteraction', 'Inline Choice Interaction', 'A inline choice is an inlineInteraction that presents the user with a set of choices, each of which is a simple piece of text. The candidate''s task is to select one of the choices. Unlike the choiceInteraction, the delivery engine must allow the candidate to review their choice within the context of the surrounding text.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Inline Choice Interaction', [Definition] = 'A inline choice is an inlineInteraction that presents the user with a set of choices, each of which is a simple piece of text. The candidate''s task is to select one of the choices. Unlike the choiceInteraction, the delivery engine must allow the candidate to review their choice within the context of the surrounding text.', [SortOrder] = 10.00 WHERE [Code] = 'InlineChoiceInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'MediaInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MediaInteraction', 'Media Interaction', 'The media interaction allows more control over the way the candidate interacts with a time-based media object and allows the number of times the media object was experienced to be reported in the value of the associated response variable, which must be of base-type integer and single cardinality.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Media Interaction', [Definition] = 'The media interaction allows more control over the way the candidate interacts with a time-based media object and allows the number of times the media object was experienced to be reported in the value of the associated response variable, which must be of base-type integer and single cardinality.', [SortOrder] = 11.00 WHERE [Code] = 'MediaInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'HottextInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HottextInteraction', 'Hottext Interaction', 'The hottext interaction presents a set of choices to the candidate represented as selectable runs of text embedded within a surrounding context, such as a simple passage of text. Like choiceInteraction, the candidate''s task is to select one or more of the choices, up to a maximum of maxChoices. The interaction is initialized from the defaultValue of the associated response variable, a NULL value indicating that no choices are selected (the usual case).', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Hottext Interaction', [Definition] = 'The hottext interaction presents a set of choices to the candidate represented as selectable runs of text embedded within a surrounding context, such as a simple passage of text. Like choiceInteraction, the candidate''s task is to select one or more of the choices, up to a maximum of maxChoices. The interaction is initialized from the defaultValue of the associated response variable, a NULL value indicating that no choices are selected (the usual case).', [SortOrder] = 12.00 WHERE [Code] = 'HottextInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'OrderInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OrderInteraction', 'Order Interaction', 'In an order interaction the candidate''s task is to reorder the choices, the order in which the choices are displayed initially is significant. By default the candidate''s task is to order all of the choices but a subset of the choices can be requested using the maxChoices and minChoices attributes. When specified the candidate must select a subset of the choices and impose an ordering on them.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Order Interaction', [Definition] = 'In an order interaction the candidate''s task is to reorder the choices, the order in which the choices are displayed initially is significant. By default the candidate''s task is to order all of the choices but a subset of the choices can be requested using the maxChoices and minChoices attributes. When specified the candidate must select a subset of the choices and impose an ordering on them.', [SortOrder] = 13.00 WHERE [Code] = 'OrderInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'PositionObjectInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PositionObjectInteraction', 'Position Object Interaction', 'The position object interaction consists of a single image which must be positioned on another graphic image (the stage) by the candidate. Like selectPointInteraction, the associated response may have an areaMapping that scores the response on the basis of comparing it against predefined areas but the delivery engine must not indicate these areas of the stage. Only the actual position(s) selected by the candidate shall be indicated.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Position Object Interaction', [Definition] = 'The position object interaction consists of a single image which must be positioned on another graphic image (the stage) by the candidate. Like selectPointInteraction, the associated response may have an areaMapping that scores the response on the basis of comparing it against predefined areas but the delivery engine must not indicate these areas of the stage. Only the actual position(s) selected by the candidate shall be indicated.', [SortOrder] = 14.00 WHERE [Code] = 'PositionObjectInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'TextEntryInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TextEntryInteraction', 'Text Entry Interaction', 'A textEntry interaction obtains a simple piece of text from the candidate. Like inlineChoiceInteraction, the delivery engine must allow the candidate to review their choice within the context of the surrounding text.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Text Entry Interaction', [Definition] = 'A textEntry interaction obtains a simple piece of text from the candidate. Like inlineChoiceInteraction, the delivery engine must allow the candidate to review their choice within the context of the surrounding text.', [SortOrder] = 15.00 WHERE [Code] = 'TextEntryInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'ExtendedTextInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ExtendedTextInteraction', 'Extended Text Interaction', 'An extended text interaction allows the candidate to enter an extended amount of text.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Extended Text Interaction', [Definition] = 'An extended text interaction allows the candidate to enter an extended amount of text.', [SortOrder] = 16.00 WHERE [Code] = 'ExtendedTextInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'EndAttemptInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EndAttemptInteraction', 'End Attempt Interaction', 'The end attempt interaction is a special type of interaction which allows item authors to provide the candidate with control over the way in which the candidate terminates an attempt. The candidate can use the interaction to terminate the attempt (triggering response processing) immediately, typically to request a hint. It must be bound to a response variable with base-type boolean and single cardinality.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'End Attempt Interaction', [Definition] = 'The end attempt interaction is a special type of interaction which allows item authors to provide the candidate with control over the way in which the candidate terminates an attempt. The candidate can use the interaction to terminate the attempt (triggering response processing) immediately, typically to request a hint. It must be bound to a response variable with base-type boolean and single cardinality.', [SortOrder] = 17.00 WHERE [Code] = 'EndAttemptInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'UploadInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UploadInteraction', 'Upload Interaction', 'The upload interaction allows the candidate to upload a pre-prepared file representing their response. It must be bound to a response variable with base-type file and single cardinality.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Upload Interaction', [Definition] = 'The upload interaction allows the candidate to upload a pre-prepared file representing their response. It must be bound to a response variable with base-type file and single cardinality.', [SortOrder] = 18.00 WHERE [Code] = 'UploadInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefApipInteractionType] WHERE [Code] = 'AssociateInteraction') BEGIN INSERT INTO dbo.[RefApipInteractionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssociateInteraction', 'Associate Interaction', 'An associate interaction presents candidates with a number of choices and allows them to create associations between them.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefApipInteractionType] -SET [Description] = 'Associate Interaction', [Definition] = 'An associate interaction presents candidates with a number of choices and allows them to create associations between them.', [SortOrder] = 19.00 WHERE [Code] = 'AssociateInteraction' END -END - -PRINT N'Populate RefAssessmentAccommodationCategory table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentAccommodationCategory]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAccommodationCategory] WHERE [Code] = 'Scheduling') BEGIN INSERT INTO dbo.[RefAssessmentAccommodationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Scheduling', 'Scheduling accommodations', 'Scheduling accommodations is specified as the category of accommodations needed for a given assessment.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAccommodationCategory] -SET [Description] = 'Scheduling accommodations', [Definition] = 'Scheduling accommodations is specified as the category of accommodations needed for a given assessment.', [SortOrder] = 1.00 WHERE [Code] = 'Scheduling' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAccommodationCategory] WHERE [Code] = 'Setting') BEGIN INSERT INTO dbo.[RefAssessmentAccommodationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Setting', 'Settings accommodations', 'Settings accommodations is specified as the category of accommodations needed for a given assessment.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAccommodationCategory] -SET [Description] = 'Settings accommodations', [Definition] = 'Settings accommodations is specified as the category of accommodations needed for a given assessment.', [SortOrder] = 2.00 WHERE [Code] = 'Setting' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAccommodationCategory] WHERE [Code] = 'EquipmentOrTechnology') BEGIN INSERT INTO dbo.[RefAssessmentAccommodationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EquipmentOrTechnology', 'Student equipment/technology', 'Student equipment/technology is specified as the category of accommodations needed for a given assessment.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAccommodationCategory] -SET [Description] = 'Student equipment/technology', [Definition] = 'Student equipment/technology is specified as the category of accommodations needed for a given assessment.', [SortOrder] = 3.00 WHERE [Code] = 'EquipmentOrTechnology' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAccommodationCategory] WHERE [Code] = 'TestAdministration') BEGIN INSERT INTO dbo.[RefAssessmentAccommodationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TestAdministration', 'Test administration accommodation', 'Test administration accommodations is specified as the category of accommodations needed for a given assessment.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAccommodationCategory] -SET [Description] = 'Test administration accommodation', [Definition] = 'Test administration accommodations is specified as the category of accommodations needed for a given assessment.', [SortOrder] = 4.00 WHERE [Code] = 'TestAdministration' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAccommodationCategory] WHERE [Code] = 'TestMaterial') BEGIN INSERT INTO dbo.[RefAssessmentAccommodationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TestMaterial', 'Test material accommodations', 'Test material accommodations is specified as the category of accommodations needed for a given assessment.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAccommodationCategory] -SET [Description] = 'Test material accommodations', [Definition] = 'Test material accommodations is specified as the category of accommodations needed for a given assessment.', [SortOrder] = 5.00 WHERE [Code] = 'TestMaterial' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAccommodationCategory] WHERE [Code] = 'TestResponse') BEGIN INSERT INTO dbo.[RefAssessmentAccommodationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TestResponse', 'Test response accommodation', 'Test response accommodations is specified as the category of accommodations needed for a given assessment.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAccommodationCategory] -SET [Description] = 'Test response accommodation', [Definition] = 'Test response accommodations is specified as the category of accommodations needed for a given assessment.', [SortOrder] = 6.00 WHERE [Code] = 'TestResponse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAccommodationCategory] WHERE [Code] = 'EnglishLearner') BEGIN INSERT INTO dbo.[RefAssessmentAccommodationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EnglishLearner', 'English learner accommodation', 'English learner accommodations is specified as the category of accommodations needed for a given assessment.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAccommodationCategory] -SET [Description] = 'English learner accommodation', [Definition] = 'English learner accommodations is specified as the category of accommodations needed for a given assessment.', [SortOrder] = 7.00 WHERE [Code] = 'EnglishLearner' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAccommodationCategory] WHERE [Code] = '504') BEGIN INSERT INTO dbo.[RefAssessmentAccommodationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('504', '504 accommodation', '504 accommodations is specified as the category of accommodations needed for a given assessment.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAccommodationCategory] -SET [Description] = '504 accommodation', [Definition] = '504 accommodations is specified as the category of accommodations needed for a given assessment.', [SortOrder] = 8.00 WHERE [Code] = '504' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAccommodationCategory] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAssessmentAccommodationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Others is specified as the category of accommodations needed for a given assessment.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAccommodationCategory] -SET [Description] = 'Other', [Definition] = 'Others is specified as the category of accommodations needed for a given assessment.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefAssessmentAssetIdentifierType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentAssetIdentifierType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetIdentifierType] WHERE [Code] = 'Client') BEGIN INSERT INTO dbo.[RefAssessmentAssetIdentifierType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Client', 'Assigned by the client', 'Assigned by the client is specified as the type of identifier that is provided for this assessment asset.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetIdentifierType] -SET [Description] = 'Assigned by the client', [Definition] = 'Assigned by the client is specified as the type of identifier that is provided for this assessment asset.', [SortOrder] = 1.00 WHERE [Code] = 'Client' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetIdentifierType] WHERE [Code] = 'Publisher') BEGIN INSERT INTO dbo.[RefAssessmentAssetIdentifierType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Publisher', 'Assigned by the asset owner', 'Assigned by the asset owner is specified as the type of identifier that is provided for this assessment asset.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetIdentifierType] -SET [Description] = 'Assigned by the asset owner', [Definition] = 'Assigned by the asset owner is specified as the type of identifier that is provided for this assessment asset.', [SortOrder] = 2.00 WHERE [Code] = 'Publisher' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetIdentifierType] WHERE [Code] = 'Internal') BEGIN INSERT INTO dbo.[RefAssessmentAssetIdentifierType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Internal', 'Provided by an internal assessment service', 'Provided by an internal assessment serviced is specified as the type of identifier that is provided for this assessment asset.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetIdentifierType] -SET [Description] = 'Provided by an internal assessment service', [Definition] = 'Provided by an internal assessment serviced is specified as the type of identifier that is provided for this assessment asset.', [SortOrder] = 3.00 WHERE [Code] = 'Internal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetIdentifierType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAssessmentAssetIdentifierType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Custom identifier', 'Custom identifier is specified as the type of identifier that is provided for this assessment asset.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetIdentifierType] -SET [Description] = 'Custom identifier', [Definition] = 'Custom identifier is specified as the type of identifier that is provided for this assessment asset.', [SortOrder] = 4.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefAssessmentAssetType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentAssetType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'ReadingPassage') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReadingPassage', 'Reading passage', 'Reading passage is specified as the predominant type of assessment asset represented by the Learning Resource. ', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Reading passage', [Definition] = 'Reading passage is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 2.00 WHERE [Code] = 'ReadingPassage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'GraphicArt') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GraphicArt', 'Graphic art', 'Graphic art is specified as the predominant type of assessment asset represented by the Learning Resource. ', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Graphic art', [Definition] = 'Graphic art is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 4.00 WHERE [Code] = 'GraphicArt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'Map') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Map', 'Map', 'Map is specified as the predominant type of assessment asset represented by the Learning Resource. ', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Map', [Definition] = 'Map is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 6.00 WHERE [Code] = 'Map' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'FormulaSheet') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FormulaSheet', 'Formula sheet', 'Formula sheet is specified as the predominant type of assessment asset represented by the Learning Resource. ', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Formula sheet', [Definition] = 'Formula sheet is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 8.00 WHERE [Code] = 'FormulaSheet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'Table') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Table', 'Table', 'Table is specified as the predominant type of assessment asset represented by the Learning Resource. ', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Table', [Definition] = 'Table is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 10.00 WHERE [Code] = 'Table' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'Chart') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Chart', 'Chart', 'Chart is specified as the predominant type of assessment asset represented by the Learning Resource. ', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Chart', [Definition] = 'Chart is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 12.00 WHERE [Code] = 'Chart' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'Audio') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Audio', 'Audio', 'Audio is specified as the predominant type of assessment asset represented by the Learning Resource. ', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Audio', [Definition] = 'Audio is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 14.00 WHERE [Code] = 'Audio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'Video') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Video', 'Video', 'Video is specified as the predominant type of assessment asset represented by the Learning Resource. ', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Video', [Definition] = 'Video is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 16.00 WHERE [Code] = 'Video' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'Scenario') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Scenario', 'Scenario', 'Scenario is specified as the predominant type of assessment asset represented by the Learning Resource. ', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Scenario', [Definition] = 'Scenario is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 18.00 WHERE [Code] = 'Scenario' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'Simulation') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Simulation', 'Simulation', 'Simulation is specified as the predominant type of assessment asset represented by the Learning Resource. ', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Simulation', [Definition] = 'Simulation is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 20.00 WHERE [Code] = 'Simulation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'StoryBoard') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StoryBoard', 'Story board', 'Story board is specified as the predominant type of assessment asset represented by the Learning Resource. ', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Story board', [Definition] = 'Story board is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 22.00 WHERE [Code] = 'StoryBoard' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'LabSet') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LabSet', 'Lab set', 'Lab set is specified as the predominant type of assessment asset represented by the Learning Resource. ', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Lab set', [Definition] = 'Lab set is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 24.00 WHERE [Code] = 'LabSet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'PeriodicTable') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PeriodicTable', 'Periodic table', 'Periodic table is specified as the predominant type of assessment asset represented by the Learning Resource. ', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Periodic table', [Definition] = 'Periodic table is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 26.00 WHERE [Code] = 'PeriodicTable' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'TranslationDictionary') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TranslationDictionary', 'Translation dictionary', 'Translation dictionary is specified as the predominant type of assessment asset represented by the Learning Resource. ', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Translation dictionary', [Definition] = 'Translation dictionary is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 28.00 WHERE [Code] = 'TranslationDictionary' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'BasicCalculator') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BasicCalculator', 'Basic calculator', 'Basic calculator is specified as the predominant type of assessment asset represented by the Learning Resource. ', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Basic calculator', [Definition] = 'Basic calculator is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 30.00 WHERE [Code] = 'BasicCalculator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'StandardCalculator') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StandardCalculator', 'Standard calculator', 'Standard calculator is specified as the predominant type of assessment asset represented by the Learning Resource.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Standard calculator', [Definition] = 'Standard calculator is specified as the predominant type of assessment asset represented by the Learning Resource.', [SortOrder] = 32.00 WHERE [Code] = 'StandardCalculator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'ScientificCalculator') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ScientificCalculator', 'Scientific calculator', 'Scientific calculator is specified as the predominant type of assessment asset represented by the Learning Resource. ', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Scientific calculator', [Definition] = 'Scientific calculator is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 34.00 WHERE [Code] = 'ScientificCalculator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'GraphingCalculator') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GraphingCalculator', 'Graphing calculator', 'Graphing calculator is specified as the predominant type of assessment asset represented by the Learning Resource. ', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Graphing calculator', [Definition] = 'Graphing calculator is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 36.00 WHERE [Code] = 'GraphingCalculator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'Protractor') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Protractor', 'Protractor', 'Protractor is specified as the predominant type of assessment asset represented by the Learning Resource. ', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Protractor', [Definition] = 'Protractor is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 38.00 WHERE [Code] = 'Protractor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'MetricRuler') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MetricRuler', 'Metric ruler', 'Metric ruler is specified as the predominant type of assessment asset represented by the Learning Resource. ', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Metric ruler', [Definition] = 'Metric ruler is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 40.00 WHERE [Code] = 'MetricRuler' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'EnglishRuler') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EnglishRuler', 'English ruler', 'English ruler is specified as the predominant type of assessment asset represented by the Learning Resource. ', 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'English ruler', [Definition] = 'English ruler is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 42.00 WHERE [Code] = 'EnglishRuler' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'UnitsRuler') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UnitsRuler', 'Units ruler', 'Units ruler is specified as the predominant type of assessment asset represented by the Learning Resource. ', 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Units ruler', [Definition] = 'Units ruler is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 44.00 WHERE [Code] = 'UnitsRuler' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'ReadingLine') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReadingLine', 'Reading line', 'Reading line is specified as the predominant type of assessment asset represented by the Learning Resource. ', 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Reading line', [Definition] = 'Reading line is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 46.00 WHERE [Code] = 'ReadingLine' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'LineDraw') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LineDraw', 'Line draw', 'Line draw is specified as the predominant type of assessment asset represented by the Learning Resource. ', 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Line draw', [Definition] = 'Line draw is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 48.00 WHERE [Code] = 'LineDraw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'Highlighter') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Highlighter', 'Highlighter', 'Highlighter is specified as the predominant type of assessment asset represented by the Learning Resource. ', 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Highlighter', [Definition] = 'Highlighter is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 50.00 WHERE [Code] = 'Highlighter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'OtherInteractive') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherInteractive', 'Other interactive', 'Other interactive is specified as the predominant type of assessment asset represented by the Learning Resource. ', 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Other interactive', [Definition] = 'Other interactive is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 52.00 WHERE [Code] = 'OtherInteractive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'OtherNonInteractive') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherNonInteractive', 'Other non-interactive', 'Other non-interactive is specified as the predominant type of assessment asset represented by the Learning Resource. ', 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Other non-interactive', [Definition] = 'Other non-interactive is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 54.00 WHERE [Code] = 'OtherNonInteractive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentAssetType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAssessmentAssetType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is specified as the predominant type of assessment asset represented by the Learning Resource. ', 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentAssetType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the predominant type of assessment asset represented by the Learning Resource. ', [SortOrder] = 56.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefAssessmentELDevelopmentalDomain table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentELDevelopmentalDomain]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentELDevelopmentalDomain] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefAssessmentELDevelopmentalDomain]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Language and Literacy', 'Domain related to a child''s language and literacy development.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentELDevelopmentalDomain] -SET [Description] = 'Language and Literacy', [Definition] = 'Domain related to a child''s language and literacy development.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentELDevelopmentalDomain] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefAssessmentELDevelopmentalDomain]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Cognition and General Knowledge', 'Domain related to a child''s cognition and general knowledge (including early mathematics and early scientific development).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentELDevelopmentalDomain] -SET [Description] = 'Cognition and General Knowledge', [Definition] = 'Domain related to a child''s cognition and general knowledge (including early mathematics and early scientific development).', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentELDevelopmentalDomain] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefAssessmentELDevelopmentalDomain]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Approaches Toward Learning', 'Domain related to a child''s approaches toward learning (including the utilization of the arts).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentELDevelopmentalDomain] -SET [Description] = 'Approaches Toward Learning', [Definition] = 'Domain related to a child''s approaches toward learning (including the utilization of the arts).', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentELDevelopmentalDomain] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefAssessmentELDevelopmentalDomain]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Physical Well-being and Motor', 'Domain related to a child''s physical well-being and motor development (including adaptive skills).', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentELDevelopmentalDomain] -SET [Description] = 'Physical Well-being and Motor', [Definition] = 'Domain related to a child''s physical well-being and motor development (including adaptive skills).', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentELDevelopmentalDomain] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefAssessmentELDevelopmentalDomain]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Social and Emotional Development', 'Domain related to a child''s social and emotional development.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentELDevelopmentalDomain] -SET [Description] = 'Social and Emotional Development', [Definition] = 'Domain related to a child''s social and emotional development.', [SortOrder] = 5.00 WHERE [Code] = '05' END -END - -PRINT N'Populate RefAssessmentFormSectionIdentificationSystem table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentFormSectionIdentificationSystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentFormSectionIdentificationSystem] WHERE [Code] = 'Client') BEGIN INSERT INTO dbo.[RefAssessmentFormSectionIdentificationSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Client', 'Client', 'The related Assessment Form Section Identifier is based on the identification system defined by the Client.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentFormSectionIdentificationSystem] -SET [Description] = 'Client', [Definition] = 'The related Assessment Form Section Identifier is based on the identification system defined by the Client.', [SortOrder] = 1.00 WHERE [Code] = 'Client' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentFormSectionIdentificationSystem] WHERE [Code] = 'Publisher') BEGIN INSERT INTO dbo.[RefAssessmentFormSectionIdentificationSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Publisher', 'Publisher', 'The related Assessment Form Section Identifier is based on the identification system defined by the Publisher.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentFormSectionIdentificationSystem] -SET [Description] = 'Publisher', [Definition] = 'The related Assessment Form Section Identifier is based on the identification system defined by the Publisher.', [SortOrder] = 2.00 WHERE [Code] = 'Publisher' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentFormSectionIdentificationSystem] WHERE [Code] = 'Internal') BEGIN INSERT INTO dbo.[RefAssessmentFormSectionIdentificationSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Internal', 'Internal', 'The related Assessment Form Section Identifier is based on the identification system defined internally.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentFormSectionIdentificationSystem] -SET [Description] = 'Internal', [Definition] = 'The related Assessment Form Section Identifier is based on the identification system defined internally.', [SortOrder] = 3.00 WHERE [Code] = 'Internal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentFormSectionIdentificationSystem] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAssessmentFormSectionIdentificationSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The related Assessment Form Section Identifier is based on an identification system in a category not yet defined in CEDS.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentFormSectionIdentificationSystem] -SET [Description] = 'Other', [Definition] = 'The related Assessment Form Section Identifier is based on an identification system in a category not yet defined in CEDS.', [SortOrder] = 4.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefAssessmentItemCharacteristicType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentItemCharacteristicType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'MeanSquareFit') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MeanSquareFit', 'Mean Square Fit', 'Mean Square Fit is specified as a type of psychometric measure provided for assessment item.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Mean Square Fit', [Definition] = 'Mean Square Fit is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 10.00 WHERE [Code] = 'MeanSquareFit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'WeightedMeanSquareFit') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WeightedMeanSquareFit', 'Weighted Mean Square Fit', 'Weighted Mean Square Fit is specified as a type of psychometric measure provided for assessment item.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Weighted Mean Square Fit', [Definition] = 'Weighted Mean Square Fit is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 11.00 WHERE [Code] = 'WeightedMeanSquareFit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'RevisedMeanSquareFit') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RevisedMeanSquareFit', 'Revised Mean Square Fit', 'Revised Mean Square Fit is specified as a type of psychometric measure provided for assessment item.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Revised Mean Square Fit', [Definition] = 'Revised Mean Square Fit is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 12.00 WHERE [Code] = 'RevisedMeanSquareFit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'RevisedPointBiserial') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RevisedPointBiserial', 'Revised Point Biserial Measure', 'Revised Point Biserial Measure is specified as a type of psychometric measure provided for assessment item.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Revised Point Biserial Measure', [Definition] = 'Revised Point Biserial Measure is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 13.00 WHERE [Code] = 'RevisedPointBiserial' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'RaschItemScore') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RaschItemScore', 'Rasch Item Score', 'Rasch Item Score is specified as a type of psychometric measure provided for assessment item.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Rasch Item Score', [Definition] = 'Rasch Item Score is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 14.00 WHERE [Code] = 'RaschItemScore' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'ResponseCorrelation') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ResponseCorrelation', 'Response Correlation', 'Response Correlation is specified as a type of psychometric measure provided for assessment item.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Response Correlation', [Definition] = 'Response Correlation is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 15.00 WHERE [Code] = 'ResponseCorrelation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'ResponseCorrelationSquared') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ResponseCorrelationSquared', 'Response Correlation Squared', 'Response Correlation Squared is specified as a type of psychometric measure provided for assessment item.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Response Correlation Squared', [Definition] = 'Response Correlation Squared is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 16.00 WHERE [Code] = 'ResponseCorrelationSquared' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'ZCHISquare') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ZCHISquare', 'Z CHI Square', 'Z CHI Square is specified as a type of psychometric measure provided for assessment item.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Z CHI Square', [Definition] = 'Z CHI Square is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 17.00 WHERE [Code] = 'ZCHISquare' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'Pval') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Pval', 'Pval', 'Pval is specified as a type of psychometric measure provided for assessment item.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Pval', [Definition] = 'Pval is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 18.00 WHERE [Code] = 'Pval' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'PointBiserial') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PointBiserial', 'Point Biserial', 'Point Biserial is specified as a type of psychometric measure provided for assessment item.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Point Biserial', [Definition] = 'Point Biserial is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 19.00 WHERE [Code] = 'PointBiserial' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'Biserial') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Biserial', 'Biserial', 'Biserial is specified as a type of psychometric measure provided for assessment item.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Biserial', [Definition] = 'Biserial is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 20.00 WHERE [Code] = 'Biserial' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'DiscriminationIndex') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DiscriminationIndex', 'Discrimination Index', 'Discrimination Index is specified as a type of psychometric measure provided for assessment item.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Discrimination Index', [Definition] = 'Discrimination Index is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 21.00 WHERE [Code] = 'DiscriminationIndex' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'ReliabilityCoefficient') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReliabilityCoefficient', 'Reliability Coefficient', 'Reliability Coefficient is specified as a type of psychometric measure provided for assessment item.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Reliability Coefficient', [Definition] = 'Reliability Coefficient is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 22.00 WHERE [Code] = 'ReliabilityCoefficient' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'CoefficientAlpha') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CoefficientAlpha', 'Coefficient Alpha', 'Coefficient Alpha is specified as a type of psychometric measure provided for assessment item.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Coefficient Alpha', [Definition] = 'Coefficient Alpha is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 23.00 WHERE [Code] = 'CoefficientAlpha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'ItemTestCorrelation') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ItemTestCorrelation', 'Item Test Correlation', 'Item Test Correlation is specified as a type of psychometric measure provided for assessment item.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Item Test Correlation', [Definition] = 'Item Test Correlation is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 24.00 WHERE [Code] = 'ItemTestCorrelation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'ItemVariance') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ItemVariance', 'Item Variance', 'Item Variance is specified as a type of psychometric measure provided for assessment item.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Item Variance', [Definition] = 'Item Variance is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 25.00 WHERE [Code] = 'ItemVariance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemCharacteristicType] WHERE [Code] = 'ScaleValue') BEGIN INSERT INTO dbo.[RefAssessmentItemCharacteristicType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ScaleValue', 'Scale Value', 'Scale Value is specified as a type of psychometric measure provided for assessment item.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemCharacteristicType] -SET [Description] = 'Scale Value', [Definition] = 'Scale Value is specified as a type of psychometric measure provided for assessment item.', [SortOrder] = 26.00 WHERE [Code] = 'ScaleValue' END -END - -PRINT N'Populate RefAssessmentItemResponseScoreStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentItemResponseScoreStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseScoreStatus] WHERE [Code] = 'NotScored') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseScoreStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotScored', ' Not Scored', 'The assessment item has not yet been scored.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseScoreStatus] -SET [Description] = ' Not Scored', [Definition] = 'The assessment item has not yet been scored.', [SortOrder] = 1.00 WHERE [Code] = 'NotScored' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseScoreStatus] WHERE [Code] = 'Scored') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseScoreStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Scored', 'Scored', ' The assessment item has been scored.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseScoreStatus] -SET [Description] = 'Scored', [Definition] = ' The assessment item has been scored.', [SortOrder] = 3.00 WHERE [Code] = 'Scored' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseScoreStatus] WHERE [Code] = 'ScoringError') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseScoreStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ScoringError', 'Scoring error', ' An attempt to score the assessment item resulted in a scoring error.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseScoreStatus] -SET [Description] = 'Scoring error', [Definition] = ' An attempt to score the assessment item resulted in a scoring error.', [SortOrder] = 5.00 WHERE [Code] = 'ScoringError' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseScoreStatus] WHERE [Code] = 'WaitingForMachineScore') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseScoreStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WaitingForMachineScore', 'Waiting For Machine Score', 'The assessment item has not yet been scored and is waiting to be machine scored.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseScoreStatus] -SET [Description] = 'Waiting For Machine Score', [Definition] = 'The assessment item has not yet been scored and is waiting to be machine scored.', [SortOrder] = 7.00 WHERE [Code] = 'WaitingForMachineScore' END -END - -PRINT N'Populate RefAssessmentItemResponseStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentItemResponseStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseStatus] WHERE [Code] = 'Correct') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Correct', 'Correct', 'Correct is specified as the status of the response for a given item.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseStatus] -SET [Description] = 'Correct', [Definition] = 'Correct is specified as the status of the response for a given item.', [SortOrder] = 1.00 WHERE [Code] = 'Correct' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseStatus] WHERE [Code] = 'Incorrect') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Incorrect', 'Incorrect', 'Incorrect is specified as the status of the response for a given item.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseStatus] -SET [Description] = 'Incorrect', [Definition] = 'Incorrect is specified as the status of the response for a given item.', [SortOrder] = 2.00 WHERE [Code] = 'Incorrect' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseStatus] WHERE [Code] = 'Complete') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Complete', 'Complete', 'Complete is specified as the status of the response for a given item.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseStatus] -SET [Description] = 'Complete', [Definition] = 'Complete is specified as the status of the response for a given item.', [SortOrder] = 3.00 WHERE [Code] = 'Complete' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseStatus] WHERE [Code] = 'PartialComplete') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartialComplete', 'Partial Complete', 'Partial Complete is specified as the status of the response for a given item.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseStatus] -SET [Description] = 'Partial Complete', [Definition] = 'Partial Complete is specified as the status of the response for a given item.', [SortOrder] = 4.00 WHERE [Code] = 'PartialComplete' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseStatus] WHERE [Code] = 'Viewed') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Viewed', 'Viewed', 'Viewed is specified as the status of the response for a given item.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseStatus] -SET [Description] = 'Viewed', [Definition] = 'Viewed is specified as the status of the response for a given item.', [SortOrder] = 5.00 WHERE [Code] = 'Viewed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseStatus] WHERE [Code] = 'NotViewed') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotViewed', 'Not Viewed', 'Not Viewed is specified as the status of the response for a given item.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseStatus] -SET [Description] = 'Not Viewed', [Definition] = 'Not Viewed is specified as the status of the response for a given item.', [SortOrder] = 6.00 WHERE [Code] = 'NotViewed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseStatus] WHERE [Code] = 'Attempted') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Attempted', 'Attempted', 'Attempted is specified as the status of the response for a given item.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseStatus] -SET [Description] = 'Attempted', [Definition] = 'Attempted is specified as the status of the response for a given item.', [SortOrder] = 7.00 WHERE [Code] = 'Attempted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseStatus] WHERE [Code] = 'Incomplete') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Incomplete', 'Incomplete', 'Incomplete is specified as the status of the response for a given item.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseStatus] -SET [Description] = 'Incomplete', [Definition] = 'Incomplete is specified as the status of the response for a given item.', [SortOrder] = 8.00 WHERE [Code] = 'Incomplete' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseStatus] WHERE [Code] = 'InProgress') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InProgress', 'In Progress', 'In Progress is specified as the status of the response for a given item.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseStatus] -SET [Description] = 'In Progress', [Definition] = 'In Progress is specified as the status of the response for a given item.', [SortOrder] = 10.00 WHERE [Code] = 'InProgress' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseStatus] WHERE [Code] = 'NotProficient') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotProficient', 'Not Yet Proficient', 'Not Yet Proficient is specified as the status of the response for a given item.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseStatus] -SET [Description] = 'Not Yet Proficient', [Definition] = 'Not Yet Proficient is specified as the status of the response for a given item.', [SortOrder] = 12.00 WHERE [Code] = 'NotProficient' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemResponseStatus] WHERE [Code] = 'Proficient') BEGIN INSERT INTO dbo.[RefAssessmentItemResponseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Proficient', 'Proficient', 'Proficient is specified as the status of the response for a given item.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemResponseStatus] -SET [Description] = 'Proficient', [Definition] = 'Proficient is specified as the status of the response for a given item.', [SortOrder] = 14.00 WHERE [Code] = 'Proficient' END -END - -PRINT N'Populate RefAssessmentItemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentItemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'MultipleChoice') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MultipleChoice', 'Multiple-choice', 'A forced-choice assessment item featuring a stem (which is a prompt) and two or more choices, one of which is the correct answer, and the remainder are distractors.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Multiple-choice', [Definition] = 'A forced-choice assessment item featuring a stem (which is a prompt) and two or more choices, one of which is the correct answer, and the remainder are distractors.', [SortOrder] = 1.00 WHERE [Code] = 'MultipleChoice' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'FillInTheBlank') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FillInTheBlank', 'Fill-in-the-blank', 'A short-answer item in which examinees are presented with a sentence in which a word or words is missing, and are asked to provide the missing word(s).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Fill-in-the-blank', [Definition] = 'A short-answer item in which examinees are presented with a sentence in which a word or words is missing, and are asked to provide the missing word(s).', [SortOrder] = 2.00 WHERE [Code] = 'FillInTheBlank' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'TrueFalse') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TrueFalse', 'True/False', 'A declarative statement that examinees judge true or false. Variants of the true/false item have examinees identify: fact/opinion, supported by the narrative or not, etc.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'True/False', [Definition] = 'A declarative statement that examinees judge true or false. Variants of the true/false item have examinees identify: fact/opinion, supported by the narrative or not, etc.', [SortOrder] = 3.00 WHERE [Code] = 'TrueFalse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'MultipleResponse') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MultipleResponse', 'Multiple Response', 'A multiple choice assessment item that directs examinees to select all of the options that apply.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Multiple Response', [Definition] = 'A multiple choice assessment item that directs examinees to select all of the options that apply.', [SortOrder] = 4.00 WHERE [Code] = 'MultipleResponse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'Matching') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Matching', 'Matching', 'An assessment item in which examinees are presented with a set of premises and are asked to link them to a set of responses, via directions for identifying the correspondences.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Matching', [Definition] = 'An assessment item in which examinees are presented with a set of premises and are asked to link them to a set of responses, via directions for identifying the correspondences.', [SortOrder] = 5.00 WHERE [Code] = 'Matching' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'ShortAnswer') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ShortAnswer', 'Short answer', 'An assessment item that asks examinees to provide a very short response, such as an item asking for a correct computational or text-based answer, or a closed item.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Short answer', [Definition] = 'An assessment item that asks examinees to provide a very short response, such as an item asking for a correct computational or text-based answer, or a closed item.', [SortOrder] = 6.00 WHERE [Code] = 'ShortAnswer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'Labeling') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Labeling', 'Labeling', 'An assessment item that presents an image or object, such as a graph, diagram, or geometric shape, and asks examinees to apply one or more descriptive, symbolic, or quantitative labels.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Labeling', [Definition] = 'An assessment item that presents an image or object, such as a graph, diagram, or geometric shape, and asks examinees to apply one or more descriptive, symbolic, or quantitative labels.', [SortOrder] = 7.00 WHERE [Code] = 'Labeling' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'VisualRepresentation') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VisualRepresentation', 'Visual representation', 'An assessment item that asks examinees to create simple graphics (e.g., sketches, schematics, diagrams) to generate evidence of understanding a key concept or its application.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Visual representation', [Definition] = 'An assessment item that asks examinees to create simple graphics (e.g., sketches, schematics, diagrams) to generate evidence of understanding a key concept or its application.', [SortOrder] = 8.00 WHERE [Code] = 'VisualRepresentation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'ShowYourWork') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ShowYourWork', 'Show your work', 'An assessment item that asks examinees to show preparatory work for the creation of a product, performance, or extended text. The item may be treated as one component of a task leading to a final product or may be stand-alone, as evidence of preliminary thinking and problem-solving.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Show your work', [Definition] = 'An assessment item that asks examinees to show preparatory work for the creation of a product, performance, or extended text. The item may be treated as one component of a task leading to a final product or may be stand-alone, as evidence of preliminary thinking and problem-solving.', [SortOrder] = 9.00 WHERE [Code] = 'ShowYourWork' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'OtherConstructedResponse') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherConstructedResponse', 'Other constructed response', 'Any assessment item that asks the examinee to develop answers without suggested answer choices and that does not fit the definition of the other assessment item types.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Other constructed response', [Definition] = 'Any assessment item that asks the examinee to develop answers without suggested answer choices and that does not fit the definition of the other assessment item types.', [SortOrder] = 10.00 WHERE [Code] = 'OtherConstructedResponse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'PerformanceTask') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PerformanceTask', 'Performance task', 'An item or set of items that directs examinees to demonstrate what they know and can do via a performance, given a set of conditions and expectations for the task(s). The range of possible performances is long, and may include oral, written, procedural, artistic, and/or psychomotor performances such as conducting science experiments, developing informational materials, or participating in a recital, to name a few. An extended constructed response or essay item is a specific instance of a performance task.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Performance task', [Definition] = 'An item or set of items that directs examinees to demonstrate what they know and can do via a performance, given a set of conditions and expectations for the task(s). The range of possible performances is long, and may include oral, written, procedural, artistic, and/or psychomotor performances such as conducting science experiments, developing informational materials, or participating in a recital, to name a few. An extended constructed response or essay item is a specific instance of a performance task.', [SortOrder] = 11.00 WHERE [Code] = 'PerformanceTask' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'ExtendedResponse') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ExtendedResponse', 'Extended Response (Essay)', 'An assessment item type that asks examinees to prepare and deliver an organized, cohesive response to an item prompt. The essay item is one type of extended constructed response. Others include the development and sequencing of mathematical proofs, extended analytical papers, and research papers.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Extended Response (Essay)', [Definition] = 'An assessment item type that asks examinees to prepare and deliver an organized, cohesive response to an item prompt. The essay item is one type of extended constructed response. Others include the development and sequencing of mathematical proofs, extended analytical papers, and research papers.', [SortOrder] = 12.00 WHERE [Code] = 'ExtendedResponse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'TechnologyEnhancedInteractive') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TechnologyEnhancedInteractive', 'Technology Enhanced / Interactive', 'An interactive assessment item delivered in an online or computerized testing environment such that the manipulation of the stem, options, or other facet of the item by the examinees becomes part of the item prompt or part of the item response. Scalise and Gifford (2006**) present a taxonomy of 28 innovative item types that include: Drag and Drop, Reordering, and other experiential items.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Technology Enhanced / Interactive', [Definition] = 'An interactive assessment item delivered in an online or computerized testing environment such that the manipulation of the stem, options, or other facet of the item by the examinees becomes part of the item prompt or part of the item response. Scalise and Gifford (2006**) present a taxonomy of 28 innovative item types that include: Drag and Drop, Reordering, and other experiential items.', [SortOrder] = 13.00 WHERE [Code] = 'TechnologyEnhancedInteractive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'Reordering') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Reordering', 'Reordering', 'An assessment item that asks examinees to reorder items, such as pictures of events within a chronological sequence, items forming a pattern, or text within a passage.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Reordering', [Definition] = 'An assessment item that asks examinees to reorder items, such as pictures of events within a chronological sequence, items forming a pattern, or text within a passage.', [SortOrder] = 14.00 WHERE [Code] = 'Reordering' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'Substitution') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Substitution', 'Substitution', 'An assessment item that presents visual or written stimulus with incomplete or incorrect information and asks examinees to correct or complete the information.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Substitution', [Definition] = 'An assessment item that presents visual or written stimulus with incomplete or incorrect information and asks examinees to correct or complete the information.', [SortOrder] = 15.00 WHERE [Code] = 'Substitution' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentItemType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAssessmentItemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other assessment item type.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentItemType] -SET [Description] = 'Other', [Definition] = 'Other assessment item type.', [SortOrder] = 16.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefAssessmentNeedAlternativeRepresentationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedAlternativeRepresentationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedAlternativeRepresentationType] WHERE [Code] = 'Audio') BEGIN INSERT INTO dbo.[RefAssessmentNeedAlternativeRepresentationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Audio', 'Audio', 'Audio is specified as part of an Assessment Personal Needs Profile to be the default presentation mode of the associated Alternative Representations accessibility.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedAlternativeRepresentationType] -SET [Description] = 'Audio', [Definition] = 'Audio is specified as part of an Assessment Personal Needs Profile to be the default presentation mode of the associated Alternative Representations accessibility.', [SortOrder] = 1.00 WHERE [Code] = 'Audio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedAlternativeRepresentationType] WHERE [Code] = 'Video') BEGIN INSERT INTO dbo.[RefAssessmentNeedAlternativeRepresentationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Video', 'Video', 'Video is specified as part of an Assessment Personal Needs Profile to be the default presentation mode of the associated Alternative Representations accessibility.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedAlternativeRepresentationType] -SET [Description] = 'Video', [Definition] = 'Video is specified as part of an Assessment Personal Needs Profile to be the default presentation mode of the associated Alternative Representations accessibility.', [SortOrder] = 2.00 WHERE [Code] = 'Video' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedAlternativeRepresentationType] WHERE [Code] = 'Graphic') BEGIN INSERT INTO dbo.[RefAssessmentNeedAlternativeRepresentationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Graphic', 'Graphic', 'Graphic is specified as part of an Assessment Personal Needs Profile to be the default presentation mode of the associated Alternative Representations accessibility.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedAlternativeRepresentationType] -SET [Description] = 'Graphic', [Definition] = 'Graphic is specified as part of an Assessment Personal Needs Profile to be the default presentation mode of the associated Alternative Representations accessibility.', [SortOrder] = 3.00 WHERE [Code] = 'Graphic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedAlternativeRepresentationType] WHERE [Code] = 'Text') BEGIN INSERT INTO dbo.[RefAssessmentNeedAlternativeRepresentationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Text', 'Text', 'Text is specified as part of an Assessment Personal Needs Profile to be the default presentation mode of the associated Alternative Representations accessibility.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedAlternativeRepresentationType] -SET [Description] = 'Text', [Definition] = 'Text is specified as part of an Assessment Personal Needs Profile to be the default presentation mode of the associated Alternative Representations accessibility.', [SortOrder] = 4.00 WHERE [Code] = 'Text' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedAlternativeRepresentationType] WHERE [Code] = 'Interactive') BEGIN INSERT INTO dbo.[RefAssessmentNeedAlternativeRepresentationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Interactive', 'Interactive', 'Interactive is specified as part of an Assessment Personal Needs Profile to be the default presentation mode of the associated Alternative Representations accessibility.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedAlternativeRepresentationType] -SET [Description] = 'Interactive', [Definition] = 'Interactive is specified as part of an Assessment Personal Needs Profile to be the default presentation mode of the associated Alternative Representations accessibility.', [SortOrder] = 5.00 WHERE [Code] = 'Interactive' END -END - -PRINT N'Populate RefAssessmentNeedBrailleGradeType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedBrailleGradeType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedBrailleGradeType] WHERE [Code] = 'Contracted') BEGIN INSERT INTO dbo.[RefAssessmentNeedBrailleGradeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Contracted', 'Contracted', 'Contracted is defined as part of an Assessment Personal Needs Profile to be the grade of Braille to use when using a Braille display.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedBrailleGradeType] -SET [Description] = 'Contracted', [Definition] = 'Contracted is defined as part of an Assessment Personal Needs Profile to be the grade of Braille to use when using a Braille display.', [SortOrder] = 1.00 WHERE [Code] = 'Contracted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedBrailleGradeType] WHERE [Code] = 'Uncontracted') BEGIN INSERT INTO dbo.[RefAssessmentNeedBrailleGradeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Uncontracted', 'Uncontracted', 'Uncontracted is defined as part of an Assessment Personal Needs Profile to be the grade of Braille to use when using a Braille display.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedBrailleGradeType] -SET [Description] = 'Uncontracted', [Definition] = 'Uncontracted is defined as part of an Assessment Personal Needs Profile to be the grade of Braille to use when using a Braille display.', [SortOrder] = 2.00 WHERE [Code] = 'Uncontracted' END -END - -PRINT N'Populate RefAssessmentNeedBrailleMarkType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedBrailleMarkType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedBrailleMarkType] WHERE [Code] = 'Highlight') BEGIN INSERT INTO dbo.[RefAssessmentNeedBrailleMarkType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Highlight', 'Highlight', 'Highlight is defined as part of an Assessment Personal Needs Profile as a textual property to mark when using a Braille display. -', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedBrailleMarkType] -SET [Description] = 'Highlight', [Definition] = 'Highlight is defined as part of an Assessment Personal Needs Profile as a textual property to mark when using a Braille display. -', [SortOrder] = 1.00 WHERE [Code] = 'Highlight' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedBrailleMarkType] WHERE [Code] = 'Bold') BEGIN INSERT INTO dbo.[RefAssessmentNeedBrailleMarkType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Bold', 'Bold', 'Bold is defined as part of an Assessment Personal Needs Profile as a textual property to mark when using a Braille display.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedBrailleMarkType] -SET [Description] = 'Bold', [Definition] = 'Bold is defined as part of an Assessment Personal Needs Profile as a textual property to mark when using a Braille display.', [SortOrder] = 2.00 WHERE [Code] = 'Bold' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedBrailleMarkType] WHERE [Code] = 'Underline') BEGIN INSERT INTO dbo.[RefAssessmentNeedBrailleMarkType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Underline', 'Underline', 'Underline is defined as part of an Assessment Personal Needs Profile as a textual property to mark when using a Braille display.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedBrailleMarkType] -SET [Description] = 'Underline', [Definition] = 'Underline is defined as part of an Assessment Personal Needs Profile as a textual property to mark when using a Braille display.', [SortOrder] = 3.00 WHERE [Code] = 'Underline' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedBrailleMarkType] WHERE [Code] = 'Italic') BEGIN INSERT INTO dbo.[RefAssessmentNeedBrailleMarkType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Italic', 'Italic', 'Italic is defined as part of an Assessment Personal Needs Profile as a textual property to mark when using a Braille display.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedBrailleMarkType] -SET [Description] = 'Italic', [Definition] = 'Italic is defined as part of an Assessment Personal Needs Profile as a textual property to mark when using a Braille display.', [SortOrder] = 4.00 WHERE [Code] = 'Italic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedBrailleMarkType] WHERE [Code] = 'Strikeout') BEGIN INSERT INTO dbo.[RefAssessmentNeedBrailleMarkType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Strikeout', 'Strikeout', 'Strikeout is defined as part of an Assessment Personal Needs Profile as a textual property to mark when using a Braille display.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedBrailleMarkType] -SET [Description] = 'Strikeout', [Definition] = 'Strikeout is defined as part of an Assessment Personal Needs Profile as a textual property to mark when using a Braille display.', [SortOrder] = 5.00 WHERE [Code] = 'Strikeout' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedBrailleMarkType] WHERE [Code] = 'Color') BEGIN INSERT INTO dbo.[RefAssessmentNeedBrailleMarkType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Color', 'Color', 'Color is defined as part of an Assessment Personal Needs Profile as a textual property to mark when using a Braille display.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedBrailleMarkType] -SET [Description] = 'Color', [Definition] = 'Color is defined as part of an Assessment Personal Needs Profile as a textual property to mark when using a Braille display.', [SortOrder] = 6.00 WHERE [Code] = 'Color' END -END - -PRINT N'Populate RefAssessmentNeedBrailleStatusCellType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedBrailleStatusCellType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedBrailleStatusCellType] WHERE [Code] = 'Off') BEGIN INSERT INTO dbo.[RefAssessmentNeedBrailleStatusCellType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Off', 'Off', 'Defines as part of an Assessment Personal Needs Profile the preferred presence of a Braille display status cell set to Off.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedBrailleStatusCellType] -SET [Description] = 'Off', [Definition] = 'Defines as part of an Assessment Personal Needs Profile the preferred presence of a Braille display status cell set to Off.', [SortOrder] = 1.00 WHERE [Code] = 'Off' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedBrailleStatusCellType] WHERE [Code] = 'Left') BEGIN INSERT INTO dbo.[RefAssessmentNeedBrailleStatusCellType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Left', 'Left', 'Defines as part of an Assessment Personal Needs Profile the preferred location of a Braille display status cell set to Left.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedBrailleStatusCellType] -SET [Description] = 'Left', [Definition] = 'Defines as part of an Assessment Personal Needs Profile the preferred location of a Braille display status cell set to Left.', [SortOrder] = 2.00 WHERE [Code] = 'Left' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedBrailleStatusCellType] WHERE [Code] = 'Right') BEGIN INSERT INTO dbo.[RefAssessmentNeedBrailleStatusCellType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Right', 'Right', 'Defines as part of an Assessment Personal Needs Profile the preferred location of a Braille display status cell Right.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedBrailleStatusCellType] -SET [Description] = 'Right', [Definition] = 'Defines as part of an Assessment Personal Needs Profile the preferred location of a Braille display status cell Right.', [SortOrder] = 3.00 WHERE [Code] = 'Right' END -END - -PRINT N'Populate RefAssessmentNeedHazardType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedHazardType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedHazardType] WHERE [Code] = 'Flashing') BEGIN INSERT INTO dbo.[RefAssessmentNeedHazardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Flashing', 'Flashing', 'Flashing is specified as part of an Assessment Personal Needs Profile as a characteristic of a digital resource that may be dangerous to a user.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedHazardType] -SET [Description] = 'Flashing', [Definition] = 'Flashing is specified as part of an Assessment Personal Needs Profile as a characteristic of a digital resource that may be dangerous to a user.', [SortOrder] = 1.00 WHERE [Code] = 'Flashing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedHazardType] WHERE [Code] = 'Sound') BEGIN INSERT INTO dbo.[RefAssessmentNeedHazardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Sound', 'Sound', 'Sound is specified as part of an Assessment Personal Needs Profile as a characteristic of a digital resource that may be dangerous to a user.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedHazardType] -SET [Description] = 'Sound', [Definition] = 'Sound is specified as part of an Assessment Personal Needs Profile as a characteristic of a digital resource that may be dangerous to a user.', [SortOrder] = 2.00 WHERE [Code] = 'Sound' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedHazardType] WHERE [Code] = 'Olfactory') BEGIN INSERT INTO dbo.[RefAssessmentNeedHazardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Olfactory', 'Olfactory', 'Olfactory is specified as part of an Assessment Personal Needs Profile as a characteristic of a digital resource that may be dangerous to a user.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedHazardType] -SET [Description] = 'Olfactory', [Definition] = 'Olfactory is specified as part of an Assessment Personal Needs Profile as a characteristic of a digital resource that may be dangerous to a user.', [SortOrder] = 3.00 WHERE [Code] = 'Olfactory' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedHazardType] WHERE [Code] = 'MotionSimulation') BEGIN INSERT INTO dbo.[RefAssessmentNeedHazardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MotionSimulation', 'Motion simulation', 'Motion simulation is specified as part of an Assessment Personal Needs Profile as a characteristic of a digital resource that may be dangerous to a user.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedHazardType] -SET [Description] = 'Motion simulation', [Definition] = 'Motion simulation is specified as part of an Assessment Personal Needs Profile as a characteristic of a digital resource that may be dangerous to a user.', [SortOrder] = 4.00 WHERE [Code] = 'MotionSimulation' END -END - -PRINT N'Populate RefAssessmentNeedIncreasedWhitespacingType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedIncreasedWhitespacingType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedIncreasedWhitespacingType] WHERE [Code] = 'Line') BEGIN INSERT INTO dbo.[RefAssessmentNeedIncreasedWhitespacingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Line', 'Line', 'Line is specified as the user preferences for increased white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedIncreasedWhitespacingType] -SET [Description] = 'Line', [Definition] = 'Line is specified as the user preferences for increased white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', [SortOrder] = 1.00 WHERE [Code] = 'Line' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedIncreasedWhitespacingType] WHERE [Code] = 'Word') BEGIN INSERT INTO dbo.[RefAssessmentNeedIncreasedWhitespacingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Word', 'Word', 'Word is specified as the user preferences for increased white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedIncreasedWhitespacingType] -SET [Description] = 'Word', [Definition] = 'Word is specified as the user preferences for increased white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', [SortOrder] = 2.00 WHERE [Code] = 'Word' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedIncreasedWhitespacingType] WHERE [Code] = 'Character') BEGIN INSERT INTO dbo.[RefAssessmentNeedIncreasedWhitespacingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Character', 'Character', 'Character is specified as the user preferences for increased white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedIncreasedWhitespacingType] -SET [Description] = 'Character', [Definition] = 'Character is specified as the user preferences for increased white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', [SortOrder] = 3.00 WHERE [Code] = 'Character' END -END - -PRINT N'Populate RefAssessmentNeedLanguageLearnerType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedLanguageLearnerType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'abk') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abk', 'Abkhazian', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Abkhazian', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'abk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ace') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ace', 'Achinese', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Achinese', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'ace' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ach') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ach', 'Acoli', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Acoli', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'ach' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ada') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ada', 'Adangme', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Adangme', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'ada' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ady') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ady', 'Adyghe; Adygei', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Adyghe; Adygei', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = 'ady' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'aar') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aar', 'Afar', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Afar', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = 'aar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'afh') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afh', 'Afrihili', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Afrihili', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = 'afh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'afr') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afr', 'Afrikaans', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Afrikaans', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = 'afr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'afa') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afa', 'Afro-Asiatic languages', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Afro-Asiatic languages', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = 'afa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ain') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ain', 'Ainu', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ainu', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = 'ain' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'aka') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aka', 'Akan', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Akan', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = 'aka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'akk') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akk', 'Akkadian', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Akkadian', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = 'akk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'alb') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alb', 'Albanian', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Albanian', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = 'alb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ale') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ale', 'Aleut', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Aleut', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = 'ale' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'alg') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alg', 'Algonquian languages', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Algonquian languages', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = 'alg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tut') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tut', 'Altaic languages', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Altaic languages', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = 'tut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'amh') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amh', 'Amharic', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Amharic', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = 'amh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'anp') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anp', 'Angika', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Angika', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = 'anp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'apa') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apa', 'Apache languages', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Apache languages', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = 'apa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ara') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ara', 'Arabic', NULL, 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Arabic', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = 'ara' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'arg') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arg', 'Aragonese', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Aragonese', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = 'arg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'arp') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arp', 'Arapaho', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Arapaho', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = 'arp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'arw') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arw', 'Arawak', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Arawak', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = 'arw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'arm') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arm', 'Armenian', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Armenian', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = 'arm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'rup') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rup', 'Aromanian; Arumanian; Macedo-Romanian', NULL, 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Aromanian; Arumanian; Macedo-Romanian', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = 'rup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'art') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('art', 'Artificial languages', NULL, 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Artificial languages', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = 'art' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'asm') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asm', 'Assamese', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Assamese', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = 'asm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ast') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ast', 'Asturian; Bable; Leonese; Asturleonese', NULL, 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Asturian; Bable; Leonese; Asturleonese', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = 'ast' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ath') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ath', 'Athapascan languages', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Athapascan languages', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = 'ath' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'aus') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aus', 'Australian languages', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Australian languages', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = 'aus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'map') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('map', 'Austronesian languages', NULL, 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Austronesian languages', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = 'map' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ava') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ava', 'Avaric', NULL, 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Avaric', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = 'ava' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ave') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ave', 'Avestan', NULL, 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Avestan', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = 'ave' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'awa') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awa', 'Awadhi', NULL, 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Awadhi', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = 'awa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'aym') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aym', 'Aymara', NULL, 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Aymara', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = 'aym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'aze') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aze', 'Azerbaijani', NULL, 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Azerbaijani', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = 'aze' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ban') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ban', 'Balinese', NULL, 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Balinese', [Definition] = NULL, [SortOrder] = 37.00 WHERE [Code] = 'ban' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bat') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bat', 'Baltic languages', NULL, 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Baltic languages', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = 'bat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bal') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bal', 'Baluchi', NULL, 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Baluchi', [Definition] = NULL, [SortOrder] = 39.00 WHERE [Code] = 'bal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bam') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bam', 'Bambara', NULL, 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Bambara', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = 'bam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bai') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bai', 'Bamileke languages', NULL, 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Bamileke languages', [Definition] = NULL, [SortOrder] = 41.00 WHERE [Code] = 'bai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bad') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bad', 'Banda languages', NULL, 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Banda languages', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = 'bad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bnt') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnt', 'Bantu languages', NULL, 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Bantu languages', [Definition] = NULL, [SortOrder] = 43.00 WHERE [Code] = 'bnt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bas') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bas', 'Basa', NULL, 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Basa', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = 'bas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bak') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bak', 'Bashkir', NULL, 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Bashkir', [Definition] = NULL, [SortOrder] = 45.00 WHERE [Code] = 'bak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'baq') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baq', 'Basque', NULL, 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Basque', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = 'baq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'btk') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btk', 'Batak languages', NULL, 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Batak languages', [Definition] = NULL, [SortOrder] = 47.00 WHERE [Code] = 'btk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bej') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bej', 'Beja; Bedawiyet', NULL, 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Beja; Bedawiyet', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = 'bej' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bel') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bel', 'Belarusian', NULL, 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Belarusian', [Definition] = NULL, [SortOrder] = 49.00 WHERE [Code] = 'bel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bem') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bem', 'Bemba', NULL, 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Bemba', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = 'bem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ben') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ben', 'Bengali', NULL, 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Bengali', [Definition] = NULL, [SortOrder] = 51.00 WHERE [Code] = 'ben' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ber') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ber', 'Berber languages', NULL, 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Berber languages', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = 'ber' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bho') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bho', 'Bhojpuri', NULL, 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Bhojpuri', [Definition] = NULL, [SortOrder] = 53.00 WHERE [Code] = 'bho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bih') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bih', 'Bihari languages', NULL, 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Bihari languages', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = 'bih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bik') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bik', 'Bikol', NULL, 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Bikol', [Definition] = NULL, [SortOrder] = 55.00 WHERE [Code] = 'bik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bin') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bin', 'Bini; Edo', NULL, 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Bini; Edo', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = 'bin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bis') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bis', 'Bislama', NULL, 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Bislama', [Definition] = NULL, [SortOrder] = 57.00 WHERE [Code] = 'bis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'byn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byn', 'Blin; Bilin', NULL, 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Blin; Bilin', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = 'byn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'zbl') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbl', 'Blissymbols; Blissymbolics; Bliss', NULL, 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Blissymbols; Blissymbolics; Bliss', [Definition] = NULL, [SortOrder] = 59.00 WHERE [Code] = 'zbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nob') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nob', 'Bokmål, Norwegian; Norwegian Bokmål', NULL, 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Bokmål, Norwegian; Norwegian Bokmål', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = 'nob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bos') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bos', 'Bosnian', NULL, 61.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Bosnian', [Definition] = NULL, [SortOrder] = 61.00 WHERE [Code] = 'bos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bra') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bra', 'Braj', NULL, 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Braj', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = 'bra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bre') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bre', 'Breton', NULL, 63.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Breton', [Definition] = NULL, [SortOrder] = 63.00 WHERE [Code] = 'bre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bug') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bug', 'Buginese', NULL, 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Buginese', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = 'bug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bul') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bul', 'Bulgarian', NULL, 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Bulgarian', [Definition] = NULL, [SortOrder] = 65.00 WHERE [Code] = 'bul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bua') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bua', 'Buriat', NULL, 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Buriat', [Definition] = NULL, [SortOrder] = 66.00 WHERE [Code] = 'bua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bur') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bur', 'Burmese', NULL, 67.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Burmese', [Definition] = NULL, [SortOrder] = 67.00 WHERE [Code] = 'bur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cad') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cad', 'Caddo', NULL, 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Caddo', [Definition] = NULL, [SortOrder] = 68.00 WHERE [Code] = 'cad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cat') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cat', 'Catalan; Valencian', NULL, 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Catalan; Valencian', [Definition] = NULL, [SortOrder] = 69.00 WHERE [Code] = 'cat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cau') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cau', 'Caucasian languages', NULL, 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Caucasian languages', [Definition] = NULL, [SortOrder] = 70.00 WHERE [Code] = 'cau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ceb') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ceb', 'Cebuano', NULL, 71.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Cebuano', [Definition] = NULL, [SortOrder] = 71.00 WHERE [Code] = 'ceb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cel') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cel', 'Celtic languages', NULL, 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Celtic languages', [Definition] = NULL, [SortOrder] = 72.00 WHERE [Code] = 'cel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cai') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cai', 'Central American Indian languages', NULL, 73.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Central American Indian languages', [Definition] = NULL, [SortOrder] = 73.00 WHERE [Code] = 'cai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'khm') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khm', 'Central Khmer', NULL, 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Central Khmer', [Definition] = NULL, [SortOrder] = 74.00 WHERE [Code] = 'khm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'chg') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chg', 'Chagatai', NULL, 75.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Chagatai', [Definition] = NULL, [SortOrder] = 75.00 WHERE [Code] = 'chg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cmc') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmc', 'Chamic languages', NULL, 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Chamic languages', [Definition] = NULL, [SortOrder] = 76.00 WHERE [Code] = 'cmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cha') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cha', 'Chamorro', NULL, 77.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Chamorro', [Definition] = NULL, [SortOrder] = 77.00 WHERE [Code] = 'cha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'che') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('che', 'Chechen', NULL, 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Chechen', [Definition] = NULL, [SortOrder] = 78.00 WHERE [Code] = 'che' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'chr') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chr', 'Cherokee', NULL, 79.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Cherokee', [Definition] = NULL, [SortOrder] = 79.00 WHERE [Code] = 'chr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'chy') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chy', 'Cheyenne', NULL, 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Cheyenne', [Definition] = NULL, [SortOrder] = 80.00 WHERE [Code] = 'chy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'chb') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chb', 'Chibcha', NULL, 81.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Chibcha', [Definition] = NULL, [SortOrder] = 81.00 WHERE [Code] = 'chb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nya') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nya', 'Chichewa; Chewa; Nyanja', NULL, 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Chichewa; Chewa; Nyanja', [Definition] = NULL, [SortOrder] = 82.00 WHERE [Code] = 'nya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'chi') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chi', 'Chinese', NULL, 83.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Chinese', [Definition] = NULL, [SortOrder] = 83.00 WHERE [Code] = 'chi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'chn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chn', 'Chinook jargon', NULL, 84.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Chinook jargon', [Definition] = NULL, [SortOrder] = 84.00 WHERE [Code] = 'chn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'chp') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chp', 'Chipewyan; Dene Suline', NULL, 85.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Chipewyan; Dene Suline', [Definition] = NULL, [SortOrder] = 85.00 WHERE [Code] = 'chp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cho') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cho', 'Choctaw', NULL, 86.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Choctaw', [Definition] = NULL, [SortOrder] = 86.00 WHERE [Code] = 'cho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'chu') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chu', 'Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic', NULL, 87.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic', [Definition] = NULL, [SortOrder] = 87.00 WHERE [Code] = 'chu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'chk') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chk', 'Chuukese', NULL, 88.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Chuukese', [Definition] = NULL, [SortOrder] = 88.00 WHERE [Code] = 'chk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'chv') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chv', 'Chuvash', NULL, 89.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Chuvash', [Definition] = NULL, [SortOrder] = 89.00 WHERE [Code] = 'chv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nwc') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwc', 'Classical Newari; Old Newari; Classical Nepal Bhasa', NULL, 90.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Classical Newari; Old Newari; Classical Nepal Bhasa', [Definition] = NULL, [SortOrder] = 90.00 WHERE [Code] = 'nwc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'syc') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syc', 'Classical Syriac', NULL, 91.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Classical Syriac', [Definition] = NULL, [SortOrder] = 91.00 WHERE [Code] = 'syc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cop') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cop', 'Coptic', NULL, 92.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Coptic', [Definition] = NULL, [SortOrder] = 92.00 WHERE [Code] = 'cop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cor') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cor', 'Cornish', NULL, 93.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Cornish', [Definition] = NULL, [SortOrder] = 93.00 WHERE [Code] = 'cor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cos') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cos', 'Corsican', NULL, 94.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Corsican', [Definition] = NULL, [SortOrder] = 94.00 WHERE [Code] = 'cos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cre') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cre', 'Cree', NULL, 95.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Cree', [Definition] = NULL, [SortOrder] = 95.00 WHERE [Code] = 'cre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mus') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mus', 'Creek', NULL, 96.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Creek', [Definition] = NULL, [SortOrder] = 96.00 WHERE [Code] = 'mus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'crp') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crp', 'Creoles and pidgins ', NULL, 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Creoles and pidgins ', [Definition] = NULL, [SortOrder] = 97.00 WHERE [Code] = 'crp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cpe') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpe', 'Creoles and pidgins, English based', NULL, 98.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Creoles and pidgins, English based', [Definition] = NULL, [SortOrder] = 98.00 WHERE [Code] = 'cpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cpf') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpf', 'Creoles and pidgins, French-based', NULL, 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Creoles and pidgins, French-based', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = 'cpf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cpp') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpp', 'Creoles and pidgins, Portuguese-based', NULL, 100.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Creoles and pidgins, Portuguese-based', [Definition] = NULL, [SortOrder] = 100.00 WHERE [Code] = 'cpp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'crh') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crh', 'Crimean Tatar; Crimean Turkish', NULL, 101.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Crimean Tatar; Crimean Turkish', [Definition] = NULL, [SortOrder] = 101.00 WHERE [Code] = 'crh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'hrv') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrv', 'Croatian', NULL, 102.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Croatian', [Definition] = NULL, [SortOrder] = 102.00 WHERE [Code] = 'hrv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cus') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cus', 'Cushitic languages', NULL, 103.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Cushitic languages', [Definition] = NULL, [SortOrder] = 103.00 WHERE [Code] = 'cus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cze') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cze', 'Czech', NULL, 104.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Czech', [Definition] = NULL, [SortOrder] = 104.00 WHERE [Code] = 'cze' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'dak') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dak', 'Dakota', NULL, 105.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Dakota', [Definition] = NULL, [SortOrder] = 105.00 WHERE [Code] = 'dak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'dan') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dan', 'Danish', NULL, 106.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Danish', [Definition] = NULL, [SortOrder] = 106.00 WHERE [Code] = 'dan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'dar') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dar', 'Dargwa', NULL, 107.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Dargwa', [Definition] = NULL, [SortOrder] = 107.00 WHERE [Code] = 'dar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'del') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('del', 'Delaware', NULL, 108.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Delaware', [Definition] = NULL, [SortOrder] = 108.00 WHERE [Code] = 'del' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'din') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('din', 'Dinka', NULL, 109.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Dinka', [Definition] = NULL, [SortOrder] = 109.00 WHERE [Code] = 'din' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'div') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('div', 'Divehi; Dhivehi; Maldivian', NULL, 110.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Divehi; Dhivehi; Maldivian', [Definition] = NULL, [SortOrder] = 110.00 WHERE [Code] = 'div' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'doi') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doi', 'Dogri', NULL, 111.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Dogri', [Definition] = NULL, [SortOrder] = 111.00 WHERE [Code] = 'doi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'dgr') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgr', 'Dogrib', NULL, 112.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Dogrib', [Definition] = NULL, [SortOrder] = 112.00 WHERE [Code] = 'dgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'dra') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dra', 'Dravidian languages', NULL, 113.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Dravidian languages', [Definition] = NULL, [SortOrder] = 113.00 WHERE [Code] = 'dra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'dua') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dua', 'Duala', NULL, 114.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Duala', [Definition] = NULL, [SortOrder] = 114.00 WHERE [Code] = 'dua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'dum') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dum', 'Dutch, Middle (ca.1050-1350)', NULL, 115.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Dutch, Middle (ca.1050-1350)', [Definition] = NULL, [SortOrder] = 115.00 WHERE [Code] = 'dum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'dut') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dut', 'Dutch; Flemish', NULL, 116.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Dutch; Flemish', [Definition] = NULL, [SortOrder] = 116.00 WHERE [Code] = 'dut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'dyu') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyu', 'Dyula', NULL, 117.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Dyula', [Definition] = NULL, [SortOrder] = 117.00 WHERE [Code] = 'dyu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'dzo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzo', 'Dzongkha', NULL, 118.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Dzongkha', [Definition] = NULL, [SortOrder] = 118.00 WHERE [Code] = 'dzo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'frs') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frs', 'Eastern Frisian', NULL, 119.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Eastern Frisian', [Definition] = NULL, [SortOrder] = 119.00 WHERE [Code] = 'frs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'efi') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('efi', 'Efik', NULL, 120.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Efik', [Definition] = NULL, [SortOrder] = 120.00 WHERE [Code] = 'efi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'egy') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('egy', 'Egyptian (Ancient)', NULL, 121.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Egyptian (Ancient)', [Definition] = NULL, [SortOrder] = 121.00 WHERE [Code] = 'egy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'eka') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eka', 'Ekajuk', NULL, 122.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ekajuk', [Definition] = NULL, [SortOrder] = 122.00 WHERE [Code] = 'eka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'elx') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elx', 'Elamite', NULL, 123.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Elamite', [Definition] = NULL, [SortOrder] = 123.00 WHERE [Code] = 'elx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'eng') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eng', 'English', NULL, 124.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'English', [Definition] = NULL, [SortOrder] = 124.00 WHERE [Code] = 'eng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'enm') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enm', 'English, Middle (1100-1500)', NULL, 125.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'English, Middle (1100-1500)', [Definition] = NULL, [SortOrder] = 125.00 WHERE [Code] = 'enm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ang') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ang', 'English, Old (ca.450-1100)', NULL, 126.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'English, Old (ca.450-1100)', [Definition] = NULL, [SortOrder] = 126.00 WHERE [Code] = 'ang' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'myv') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myv', 'Erzya', NULL, 127.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Erzya', [Definition] = NULL, [SortOrder] = 127.00 WHERE [Code] = 'myv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'epo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('epo', 'Esperanto', NULL, 128.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Esperanto', [Definition] = NULL, [SortOrder] = 128.00 WHERE [Code] = 'epo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'est') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('est', 'Estonian', NULL, 129.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Estonian', [Definition] = NULL, [SortOrder] = 129.00 WHERE [Code] = 'est' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ewe') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ewe', 'Ewe', NULL, 130.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ewe', [Definition] = NULL, [SortOrder] = 130.00 WHERE [Code] = 'ewe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ewo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ewo', 'Ewondo', NULL, 131.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ewondo', [Definition] = NULL, [SortOrder] = 131.00 WHERE [Code] = 'ewo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'fan') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fan', 'Fang', NULL, 132.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Fang', [Definition] = NULL, [SortOrder] = 132.00 WHERE [Code] = 'fan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'fat') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fat', 'Fanti', NULL, 133.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Fanti', [Definition] = NULL, [SortOrder] = 133.00 WHERE [Code] = 'fat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'fao') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fao', 'Faroese', NULL, 134.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Faroese', [Definition] = NULL, [SortOrder] = 134.00 WHERE [Code] = 'fao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'fij') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fij', 'Fijian', NULL, 135.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Fijian', [Definition] = NULL, [SortOrder] = 135.00 WHERE [Code] = 'fij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'fil') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fil', 'Filipino; Pilipino', NULL, 136.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Filipino; Pilipino', [Definition] = NULL, [SortOrder] = 136.00 WHERE [Code] = 'fil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'fin') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fin', 'Finnish', NULL, 137.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Finnish', [Definition] = NULL, [SortOrder] = 137.00 WHERE [Code] = 'fin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'fiu') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fiu', 'Finno-Ugrian languages', NULL, 138.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Finno-Ugrian languages', [Definition] = NULL, [SortOrder] = 138.00 WHERE [Code] = 'fiu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'fon') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fon', 'Fon', NULL, 139.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Fon', [Definition] = NULL, [SortOrder] = 139.00 WHERE [Code] = 'fon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'fre') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fre', 'French', NULL, 140.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'French', [Definition] = NULL, [SortOrder] = 140.00 WHERE [Code] = 'fre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'frm') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frm', 'French, Middle (ca.1400-1600)', NULL, 141.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'French, Middle (ca.1400-1600)', [Definition] = NULL, [SortOrder] = 141.00 WHERE [Code] = 'frm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'fro') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fro', 'French, Old (842-ca.1400)', NULL, 142.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'French, Old (842-ca.1400)', [Definition] = NULL, [SortOrder] = 142.00 WHERE [Code] = 'fro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'fur') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fur', 'Friulian', NULL, 143.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Friulian', [Definition] = NULL, [SortOrder] = 143.00 WHERE [Code] = 'fur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ful') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ful', 'Fulah', NULL, 144.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Fulah', [Definition] = NULL, [SortOrder] = 144.00 WHERE [Code] = 'ful' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'gaa') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaa', 'Ga', NULL, 145.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ga', [Definition] = NULL, [SortOrder] = 145.00 WHERE [Code] = 'gaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'gla') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gla', 'Gaelic; Scottish Gaelic', NULL, 146.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Gaelic; Scottish Gaelic', [Definition] = NULL, [SortOrder] = 146.00 WHERE [Code] = 'gla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'car') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('car', 'Galibi Carib', NULL, 147.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Galibi Carib', [Definition] = NULL, [SortOrder] = 147.00 WHERE [Code] = 'car' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'glg') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glg', 'Galician', NULL, 148.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Galician', [Definition] = NULL, [SortOrder] = 148.00 WHERE [Code] = 'glg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lug') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lug', 'Ganda', NULL, 149.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ganda', [Definition] = NULL, [SortOrder] = 149.00 WHERE [Code] = 'lug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'gay') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gay', 'Gayo', NULL, 150.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Gayo', [Definition] = NULL, [SortOrder] = 150.00 WHERE [Code] = 'gay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'gba') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gba', 'Gbaya', NULL, 151.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Gbaya', [Definition] = NULL, [SortOrder] = 151.00 WHERE [Code] = 'gba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'gez') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gez', 'Geez', NULL, 152.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Geez', [Definition] = NULL, [SortOrder] = 152.00 WHERE [Code] = 'gez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'geo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geo', 'Georgian', NULL, 153.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Georgian', [Definition] = NULL, [SortOrder] = 153.00 WHERE [Code] = 'geo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ger') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ger', 'German', NULL, 154.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'German', [Definition] = NULL, [SortOrder] = 154.00 WHERE [Code] = 'ger' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'gmh') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmh', 'German, Middle High (ca.1050-1500)', NULL, 155.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'German, Middle High (ca.1050-1500)', [Definition] = NULL, [SortOrder] = 155.00 WHERE [Code] = 'gmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'goh') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goh', 'German, Old High (ca.750-1050)', NULL, 156.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'German, Old High (ca.750-1050)', [Definition] = NULL, [SortOrder] = 156.00 WHERE [Code] = 'goh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'gem') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gem', 'Germanic languages', NULL, 157.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Germanic languages', [Definition] = NULL, [SortOrder] = 157.00 WHERE [Code] = 'gem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'gil') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gil', 'Gilbertese', NULL, 158.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Gilbertese', [Definition] = NULL, [SortOrder] = 158.00 WHERE [Code] = 'gil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'gon') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gon', 'Gondi', NULL, 159.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Gondi', [Definition] = NULL, [SortOrder] = 159.00 WHERE [Code] = 'gon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'gor') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gor', 'Gorontalo', NULL, 160.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Gorontalo', [Definition] = NULL, [SortOrder] = 160.00 WHERE [Code] = 'gor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'got') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('got', 'Gothic', NULL, 161.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Gothic', [Definition] = NULL, [SortOrder] = 161.00 WHERE [Code] = 'got' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'grb') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grb', 'Grebo', NULL, 162.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Grebo', [Definition] = NULL, [SortOrder] = 162.00 WHERE [Code] = 'grb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'grc') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grc', 'Greek, Ancient (to 1453)', NULL, 163.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Greek, Ancient (to 1453)', [Definition] = NULL, [SortOrder] = 163.00 WHERE [Code] = 'grc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'gre') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gre', 'Greek, Modern (1453-)', NULL, 164.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Greek, Modern (1453-)', [Definition] = NULL, [SortOrder] = 164.00 WHERE [Code] = 'gre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'grn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grn', 'Guarani', NULL, 165.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Guarani', [Definition] = NULL, [SortOrder] = 165.00 WHERE [Code] = 'grn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'guj') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guj', 'Gujarati', NULL, 166.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Gujarati', [Definition] = NULL, [SortOrder] = 166.00 WHERE [Code] = 'guj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'gwi') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwi', 'Gwich''in', NULL, 167.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Gwich''in', [Definition] = NULL, [SortOrder] = 167.00 WHERE [Code] = 'gwi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'hai') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hai', 'Haida', NULL, 168.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Haida', [Definition] = NULL, [SortOrder] = 168.00 WHERE [Code] = 'hai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'hat') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hat', 'Haitian; Haitian Creole', NULL, 169.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Haitian; Haitian Creole', [Definition] = NULL, [SortOrder] = 169.00 WHERE [Code] = 'hat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'hau') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hau', 'Hausa', NULL, 170.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Hausa', [Definition] = NULL, [SortOrder] = 170.00 WHERE [Code] = 'hau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'haw') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haw', 'Hawaiian', NULL, 171.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Hawaiian', [Definition] = NULL, [SortOrder] = 171.00 WHERE [Code] = 'haw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'heb') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('heb', 'Hebrew', NULL, 172.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Hebrew', [Definition] = NULL, [SortOrder] = 172.00 WHERE [Code] = 'heb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'her') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('her', 'Herero', NULL, 173.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Herero', [Definition] = NULL, [SortOrder] = 173.00 WHERE [Code] = 'her' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'hil') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hil', 'Hiligaynon', NULL, 174.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Hiligaynon', [Definition] = NULL, [SortOrder] = 174.00 WHERE [Code] = 'hil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'him') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('him', 'Himachali languages; Western Pahari languages', NULL, 175.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Himachali languages; Western Pahari languages', [Definition] = NULL, [SortOrder] = 175.00 WHERE [Code] = 'him' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'hin') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hin', 'Hindi', NULL, 176.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Hindi', [Definition] = NULL, [SortOrder] = 176.00 WHERE [Code] = 'hin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'hmo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmo', 'Hiri Motu', NULL, 177.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Hiri Motu', [Definition] = NULL, [SortOrder] = 177.00 WHERE [Code] = 'hmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'hit') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hit', 'Hittite', NULL, 178.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Hittite', [Definition] = NULL, [SortOrder] = 178.00 WHERE [Code] = 'hit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'hmn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmn', 'Hmong; Mong', NULL, 179.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Hmong; Mong', [Definition] = NULL, [SortOrder] = 179.00 WHERE [Code] = 'hmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'hun') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hun', 'Hungarian', NULL, 180.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Hungarian', [Definition] = NULL, [SortOrder] = 180.00 WHERE [Code] = 'hun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'hup') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hup', 'Hupa', NULL, 181.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Hupa', [Definition] = NULL, [SortOrder] = 181.00 WHERE [Code] = 'hup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'iba') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iba', 'Iban', NULL, 182.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Iban', [Definition] = NULL, [SortOrder] = 182.00 WHERE [Code] = 'iba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ice') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ice', 'Icelandic', NULL, 183.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Icelandic', [Definition] = NULL, [SortOrder] = 183.00 WHERE [Code] = 'ice' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ido') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ido', 'Ido', NULL, 184.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ido', [Definition] = NULL, [SortOrder] = 184.00 WHERE [Code] = 'ido' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ibo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibo', 'Igbo', NULL, 185.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Igbo', [Definition] = NULL, [SortOrder] = 185.00 WHERE [Code] = 'ibo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ijo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijo', 'Ijo languages', NULL, 186.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ijo languages', [Definition] = NULL, [SortOrder] = 186.00 WHERE [Code] = 'ijo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ilo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilo', 'Iloko', NULL, 187.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Iloko', [Definition] = NULL, [SortOrder] = 187.00 WHERE [Code] = 'ilo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'smn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smn', 'Inari Sami', NULL, 188.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Inari Sami', [Definition] = NULL, [SortOrder] = 188.00 WHERE [Code] = 'smn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'inc') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inc', 'Indic languages', NULL, 189.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Indic languages', [Definition] = NULL, [SortOrder] = 189.00 WHERE [Code] = 'inc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ine') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ine', 'Indo-European languages', NULL, 190.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Indo-European languages', [Definition] = NULL, [SortOrder] = 190.00 WHERE [Code] = 'ine' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ind') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ind', 'Indonesian', NULL, 191.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Indonesian', [Definition] = NULL, [SortOrder] = 191.00 WHERE [Code] = 'ind' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'inh') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inh', 'Ingush', NULL, 192.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ingush', [Definition] = NULL, [SortOrder] = 192.00 WHERE [Code] = 'inh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ina') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ina', 'Interlingua (International Auxiliary Language Association)', NULL, 193.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Interlingua (International Auxiliary Language Association)', [Definition] = NULL, [SortOrder] = 193.00 WHERE [Code] = 'ina' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ile') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ile', 'Interlingue; Occidental', NULL, 194.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Interlingue; Occidental', [Definition] = NULL, [SortOrder] = 194.00 WHERE [Code] = 'ile' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'iku') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iku', 'Inuktitut', NULL, 195.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Inuktitut', [Definition] = NULL, [SortOrder] = 195.00 WHERE [Code] = 'iku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ipk') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ipk', 'Inupiaq', NULL, 196.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Inupiaq', [Definition] = NULL, [SortOrder] = 196.00 WHERE [Code] = 'ipk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ira') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ira', 'Iranian languages', NULL, 197.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Iranian languages', [Definition] = NULL, [SortOrder] = 197.00 WHERE [Code] = 'ira' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'gle') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gle', 'Irish', NULL, 198.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Irish', [Definition] = NULL, [SortOrder] = 198.00 WHERE [Code] = 'gle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mga') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mga', 'Irish, Middle (900-1200)', NULL, 199.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Irish, Middle (900-1200)', [Definition] = NULL, [SortOrder] = 199.00 WHERE [Code] = 'mga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sga') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sga', 'Irish, Old (to 900)', NULL, 200.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Irish, Old (to 900)', [Definition] = NULL, [SortOrder] = 200.00 WHERE [Code] = 'sga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'iro') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iro', 'Iroquoian languages', NULL, 201.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Iroquoian languages', [Definition] = NULL, [SortOrder] = 201.00 WHERE [Code] = 'iro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ita') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ita', 'Italian', NULL, 202.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Italian', [Definition] = NULL, [SortOrder] = 202.00 WHERE [Code] = 'ita' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'jpn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpn', 'Japanese', NULL, 203.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Japanese', [Definition] = NULL, [SortOrder] = 203.00 WHERE [Code] = 'jpn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'jav') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jav', 'Javanese', NULL, 204.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Javanese', [Definition] = NULL, [SortOrder] = 204.00 WHERE [Code] = 'jav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'jrb') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jrb', 'Judeo-Arabic', NULL, 205.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Judeo-Arabic', [Definition] = NULL, [SortOrder] = 205.00 WHERE [Code] = 'jrb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'jpr') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpr', 'Judeo-Persian', NULL, 206.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Judeo-Persian', [Definition] = NULL, [SortOrder] = 206.00 WHERE [Code] = 'jpr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kbd') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbd', 'Kabardian', NULL, 207.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kabardian', [Definition] = NULL, [SortOrder] = 207.00 WHERE [Code] = 'kbd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kab') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kab', 'Kabyle', NULL, 208.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kabyle', [Definition] = NULL, [SortOrder] = 208.00 WHERE [Code] = 'kab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kac') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kac', 'Kachin; Jingpho', NULL, 209.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kachin; Jingpho', [Definition] = NULL, [SortOrder] = 209.00 WHERE [Code] = 'kac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kal') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kal', 'Kalaallisut; Greenlandic', NULL, 210.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kalaallisut; Greenlandic', [Definition] = NULL, [SortOrder] = 210.00 WHERE [Code] = 'kal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'xal') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xal', 'Kalmyk; Oirat', NULL, 211.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kalmyk; Oirat', [Definition] = NULL, [SortOrder] = 211.00 WHERE [Code] = 'xal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kam') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kam', 'Kamba', NULL, 212.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kamba', [Definition] = NULL, [SortOrder] = 212.00 WHERE [Code] = 'kam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kan') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kan', 'Kannada', NULL, 213.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kannada', [Definition] = NULL, [SortOrder] = 213.00 WHERE [Code] = 'kan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kau') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kau', 'Kanuri', NULL, 214.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kanuri', [Definition] = NULL, [SortOrder] = 214.00 WHERE [Code] = 'kau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kaa') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaa', 'Kara-Kalpak', NULL, 215.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kara-Kalpak', [Definition] = NULL, [SortOrder] = 215.00 WHERE [Code] = 'kaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'krc') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krc', 'Karachay-Balkar', NULL, 216.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Karachay-Balkar', [Definition] = NULL, [SortOrder] = 216.00 WHERE [Code] = 'krc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'krl') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krl', 'Karelian', NULL, 217.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Karelian', [Definition] = NULL, [SortOrder] = 217.00 WHERE [Code] = 'krl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kar') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kar', 'Karen languages', NULL, 218.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Karen languages', [Definition] = NULL, [SortOrder] = 218.00 WHERE [Code] = 'kar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kas') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kas', 'Kashmiri', NULL, 219.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kashmiri', [Definition] = NULL, [SortOrder] = 219.00 WHERE [Code] = 'kas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'csb') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csb', 'Kashubian', NULL, 220.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kashubian', [Definition] = NULL, [SortOrder] = 220.00 WHERE [Code] = 'csb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kaw') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaw', 'Kawi', NULL, 221.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kawi', [Definition] = NULL, [SortOrder] = 221.00 WHERE [Code] = 'kaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kaz') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaz', 'Kazakh', NULL, 222.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kazakh', [Definition] = NULL, [SortOrder] = 222.00 WHERE [Code] = 'kaz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kha') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kha', 'Khasi', NULL, 223.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Khasi', [Definition] = NULL, [SortOrder] = 223.00 WHERE [Code] = 'kha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'khi') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khi', 'Khoisan languages', NULL, 224.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Khoisan languages', [Definition] = NULL, [SortOrder] = 224.00 WHERE [Code] = 'khi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kho') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kho', 'Khotanese; Sakan', NULL, 225.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Khotanese; Sakan', [Definition] = NULL, [SortOrder] = 225.00 WHERE [Code] = 'kho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kik') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kik', 'Kikuyu; Gikuyu', NULL, 226.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kikuyu; Gikuyu', [Definition] = NULL, [SortOrder] = 226.00 WHERE [Code] = 'kik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kmb') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmb', 'Kimbundu', NULL, 227.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kimbundu', [Definition] = NULL, [SortOrder] = 227.00 WHERE [Code] = 'kmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kin') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kin', 'Kinyarwanda', NULL, 228.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kinyarwanda', [Definition] = NULL, [SortOrder] = 228.00 WHERE [Code] = 'kin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kir') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kir', 'Kirghiz; Kyrgyz', NULL, 229.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kirghiz; Kyrgyz', [Definition] = NULL, [SortOrder] = 229.00 WHERE [Code] = 'kir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tlh') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlh', 'Klingon; tlhIngan-Hol', NULL, 230.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Klingon; tlhIngan-Hol', [Definition] = NULL, [SortOrder] = 230.00 WHERE [Code] = 'tlh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kom') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kom', 'Komi', NULL, 231.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Komi', [Definition] = NULL, [SortOrder] = 231.00 WHERE [Code] = 'kom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kon') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kon', 'Kongo', NULL, 232.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kongo', [Definition] = NULL, [SortOrder] = 232.00 WHERE [Code] = 'kon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kok') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kok', 'Konkani', NULL, 233.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Konkani', [Definition] = NULL, [SortOrder] = 233.00 WHERE [Code] = 'kok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kor') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kor', 'Korean', NULL, 234.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Korean', [Definition] = NULL, [SortOrder] = 234.00 WHERE [Code] = 'kor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kos') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kos', 'Kosraean', NULL, 235.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kosraean', [Definition] = NULL, [SortOrder] = 235.00 WHERE [Code] = 'kos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kpe') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpe', 'Kpelle', NULL, 236.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kpelle', [Definition] = NULL, [SortOrder] = 236.00 WHERE [Code] = 'kpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kro') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kro', 'Kru languages', NULL, 237.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kru languages', [Definition] = NULL, [SortOrder] = 237.00 WHERE [Code] = 'kro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kua') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kua', 'Kuanyama; Kwanyama', NULL, 238.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kuanyama; Kwanyama', [Definition] = NULL, [SortOrder] = 238.00 WHERE [Code] = 'kua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kum') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kum', 'Kumyk', NULL, 239.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kumyk', [Definition] = NULL, [SortOrder] = 239.00 WHERE [Code] = 'kum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kur') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kur', 'Kurdish', NULL, 240.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kurdish', [Definition] = NULL, [SortOrder] = 240.00 WHERE [Code] = 'kur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kru') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kru', 'Kurukh', NULL, 241.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kurukh', [Definition] = NULL, [SortOrder] = 241.00 WHERE [Code] = 'kru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'kut') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kut', 'Kutenai', NULL, 242.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Kutenai', [Definition] = NULL, [SortOrder] = 242.00 WHERE [Code] = 'kut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lad') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lad', 'Ladino', NULL, 243.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ladino', [Definition] = NULL, [SortOrder] = 243.00 WHERE [Code] = 'lad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lah') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lah', 'Lahnda', NULL, 244.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Lahnda', [Definition] = NULL, [SortOrder] = 244.00 WHERE [Code] = 'lah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lam') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lam', 'Lamba', NULL, 245.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Lamba', [Definition] = NULL, [SortOrder] = 245.00 WHERE [Code] = 'lam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'day') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('day', 'Land Dayak languages', NULL, 246.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Land Dayak languages', [Definition] = NULL, [SortOrder] = 246.00 WHERE [Code] = 'day' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lao') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lao', 'Lao', NULL, 247.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Lao', [Definition] = NULL, [SortOrder] = 247.00 WHERE [Code] = 'lao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lat') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lat', 'Latin', NULL, 248.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Latin', [Definition] = NULL, [SortOrder] = 248.00 WHERE [Code] = 'lat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lav') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lav', 'Latvian', NULL, 249.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Latvian', [Definition] = NULL, [SortOrder] = 249.00 WHERE [Code] = 'lav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lez') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lez', 'Lezghian', NULL, 250.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Lezghian', [Definition] = NULL, [SortOrder] = 250.00 WHERE [Code] = 'lez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lim') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lim', 'Limburgan; Limburger; Limburgish', NULL, 251.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Limburgan; Limburger; Limburgish', [Definition] = NULL, [SortOrder] = 251.00 WHERE [Code] = 'lim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lin') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lin', 'Lingala', NULL, 252.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Lingala', [Definition] = NULL, [SortOrder] = 252.00 WHERE [Code] = 'lin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lit') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lit', 'Lithuanian', NULL, 253.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Lithuanian', [Definition] = NULL, [SortOrder] = 253.00 WHERE [Code] = 'lit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'jbo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbo', 'Lojban', NULL, 254.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Lojban', [Definition] = NULL, [SortOrder] = 254.00 WHERE [Code] = 'jbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nds') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nds', 'Low German; Low Saxon; German, Low; Saxon, Low', NULL, 255.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Low German; Low Saxon; German, Low; Saxon, Low', [Definition] = NULL, [SortOrder] = 255.00 WHERE [Code] = 'nds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'dsb') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsb', 'Lower Sorbian', NULL, 256.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Lower Sorbian', [Definition] = NULL, [SortOrder] = 256.00 WHERE [Code] = 'dsb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'loz') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loz', 'Lozi', NULL, 257.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Lozi', [Definition] = NULL, [SortOrder] = 257.00 WHERE [Code] = 'loz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lub') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lub', 'Luba-Katanga', NULL, 258.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Luba-Katanga', [Definition] = NULL, [SortOrder] = 258.00 WHERE [Code] = 'lub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lua') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lua', 'Luba-Lulua', NULL, 259.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Luba-Lulua', [Definition] = NULL, [SortOrder] = 259.00 WHERE [Code] = 'lua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lui') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lui', 'Luiseno', NULL, 260.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Luiseno', [Definition] = NULL, [SortOrder] = 260.00 WHERE [Code] = 'lui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'smj') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smj', 'Lule Sami', NULL, 261.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Lule Sami', [Definition] = NULL, [SortOrder] = 261.00 WHERE [Code] = 'smj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lun') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lun', 'Lunda', NULL, 262.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Lunda', [Definition] = NULL, [SortOrder] = 262.00 WHERE [Code] = 'lun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'luo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luo', 'Luo (Kenya and Tanzania)', NULL, 263.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Luo (Kenya and Tanzania)', [Definition] = NULL, [SortOrder] = 263.00 WHERE [Code] = 'luo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lus') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lus', 'Lushai', NULL, 264.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Lushai', [Definition] = NULL, [SortOrder] = 264.00 WHERE [Code] = 'lus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ltz') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltz', 'Luxembourgish; Letzeburgesch', NULL, 265.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Luxembourgish; Letzeburgesch', [Definition] = NULL, [SortOrder] = 265.00 WHERE [Code] = 'ltz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mac') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mac', 'Macedonian', NULL, 266.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Macedonian', [Definition] = NULL, [SortOrder] = 266.00 WHERE [Code] = 'mac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mad') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mad', 'Madurese', NULL, 267.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Madurese', [Definition] = NULL, [SortOrder] = 267.00 WHERE [Code] = 'mad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mag') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mag', 'Magahi', NULL, 268.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Magahi', [Definition] = NULL, [SortOrder] = 268.00 WHERE [Code] = 'mag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mai') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mai', 'Maithili', NULL, 269.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Maithili', [Definition] = NULL, [SortOrder] = 269.00 WHERE [Code] = 'mai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mak') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mak', 'Makasar', NULL, 270.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Makasar', [Definition] = NULL, [SortOrder] = 270.00 WHERE [Code] = 'mak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mlg') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlg', 'Malagasy', NULL, 271.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Malagasy', [Definition] = NULL, [SortOrder] = 271.00 WHERE [Code] = 'mlg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'may') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('may', 'Malay', NULL, 272.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Malay', [Definition] = NULL, [SortOrder] = 272.00 WHERE [Code] = 'may' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mal') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mal', 'Malayalam', NULL, 273.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Malayalam', [Definition] = NULL, [SortOrder] = 273.00 WHERE [Code] = 'mal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mlt') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlt', 'Maltese', NULL, 274.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Maltese', [Definition] = NULL, [SortOrder] = 274.00 WHERE [Code] = 'mlt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mnc') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnc', 'Manchu', NULL, 275.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Manchu', [Definition] = NULL, [SortOrder] = 275.00 WHERE [Code] = 'mnc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mdr') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdr', 'Mandar', NULL, 276.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Mandar', [Definition] = NULL, [SortOrder] = 276.00 WHERE [Code] = 'mdr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'man') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('man', 'Mandingo', NULL, 277.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Mandingo', [Definition] = NULL, [SortOrder] = 277.00 WHERE [Code] = 'man' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mni') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mni', 'Manipuri', NULL, 278.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Manipuri', [Definition] = NULL, [SortOrder] = 278.00 WHERE [Code] = 'mni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mno') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mno', 'Manobo languages', NULL, 279.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Manobo languages', [Definition] = NULL, [SortOrder] = 279.00 WHERE [Code] = 'mno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'glv') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glv', 'Manx', NULL, 280.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Manx', [Definition] = NULL, [SortOrder] = 280.00 WHERE [Code] = 'glv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mao') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mao', 'Maori', NULL, 281.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Maori', [Definition] = NULL, [SortOrder] = 281.00 WHERE [Code] = 'mao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'arn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arn', 'Mapudungun; Mapuche', NULL, 282.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Mapudungun; Mapuche', [Definition] = NULL, [SortOrder] = 282.00 WHERE [Code] = 'arn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mar') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mar', 'Marathi', NULL, 283.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Marathi', [Definition] = NULL, [SortOrder] = 283.00 WHERE [Code] = 'mar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'chm') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chm', 'Mari', NULL, 284.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Mari', [Definition] = NULL, [SortOrder] = 284.00 WHERE [Code] = 'chm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mah') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mah', 'Marshallese', NULL, 285.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Marshallese', [Definition] = NULL, [SortOrder] = 285.00 WHERE [Code] = 'mah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mwr') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwr', 'Marwari', NULL, 286.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Marwari', [Definition] = NULL, [SortOrder] = 286.00 WHERE [Code] = 'mwr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mas') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mas', 'Masai', NULL, 287.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Masai', [Definition] = NULL, [SortOrder] = 287.00 WHERE [Code] = 'mas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'myn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myn', 'Mayan languages', NULL, 288.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Mayan languages', [Definition] = NULL, [SortOrder] = 288.00 WHERE [Code] = 'myn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'men') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('men', 'Mende', NULL, 289.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Mende', [Definition] = NULL, [SortOrder] = 289.00 WHERE [Code] = 'men' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mic') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mic', 'Mi''kmaq; Micmac', NULL, 290.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Mi''kmaq; Micmac', [Definition] = NULL, [SortOrder] = 290.00 WHERE [Code] = 'mic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'min') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('min', 'Minangkabau', NULL, 291.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Minangkabau', [Definition] = NULL, [SortOrder] = 291.00 WHERE [Code] = 'min' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mwl') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwl', 'Mirandese', NULL, 292.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Mirandese', [Definition] = NULL, [SortOrder] = 292.00 WHERE [Code] = 'mwl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'moh') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moh', 'Mohawk', NULL, 293.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Mohawk', [Definition] = NULL, [SortOrder] = 293.00 WHERE [Code] = 'moh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mdf') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdf', 'Moksha', NULL, 294.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Moksha', [Definition] = NULL, [SortOrder] = 294.00 WHERE [Code] = 'mdf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mkh') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkh', 'Mon-Khmer languages', NULL, 295.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Mon-Khmer languages', [Definition] = NULL, [SortOrder] = 295.00 WHERE [Code] = 'mkh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'lol') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lol', 'Mongo', NULL, 296.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Mongo', [Definition] = NULL, [SortOrder] = 296.00 WHERE [Code] = 'lol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mon') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mon', 'Mongolian', NULL, 297.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Mongolian', [Definition] = NULL, [SortOrder] = 297.00 WHERE [Code] = 'mon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'cnr') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnr', 'Montenegrin', NULL, 298.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Montenegrin', [Definition] = NULL, [SortOrder] = 298.00 WHERE [Code] = 'cnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mos') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mos', 'Mossi', NULL, 299.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Mossi', [Definition] = NULL, [SortOrder] = 299.00 WHERE [Code] = 'mos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mul') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mul', 'Multiple languages', NULL, 300.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Multiple languages', [Definition] = NULL, [SortOrder] = 300.00 WHERE [Code] = 'mul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mun') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mun', 'Munda languages', NULL, 301.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Munda languages', [Definition] = NULL, [SortOrder] = 301.00 WHERE [Code] = 'mun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nqo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqo', 'N''Ko', NULL, 302.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'N''Ko', [Definition] = NULL, [SortOrder] = 302.00 WHERE [Code] = 'nqo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nah') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nah', 'Nahuatl languages', NULL, 303.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Nahuatl languages', [Definition] = NULL, [SortOrder] = 303.00 WHERE [Code] = 'nah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nau') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nau', 'Nauru', NULL, 304.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Nauru', [Definition] = NULL, [SortOrder] = 304.00 WHERE [Code] = 'nau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nav') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nav', 'Navajo; Navaho', NULL, 305.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Navajo; Navaho', [Definition] = NULL, [SortOrder] = 305.00 WHERE [Code] = 'nav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nde') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nde', 'Ndebele, North; North Ndebele', NULL, 306.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ndebele, North; North Ndebele', [Definition] = NULL, [SortOrder] = 306.00 WHERE [Code] = 'nde' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nbl') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbl', 'Ndebele, South; South Ndebele', NULL, 307.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ndebele, South; South Ndebele', [Definition] = NULL, [SortOrder] = 307.00 WHERE [Code] = 'nbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ndo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndo', 'Ndonga', NULL, 308.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ndonga', [Definition] = NULL, [SortOrder] = 308.00 WHERE [Code] = 'ndo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nap') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nap', 'Neapolitan', NULL, 309.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Neapolitan', [Definition] = NULL, [SortOrder] = 309.00 WHERE [Code] = 'nap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'new') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('new', 'Nepal Bhasa; Newari', NULL, 310.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Nepal Bhasa; Newari', [Definition] = NULL, [SortOrder] = 310.00 WHERE [Code] = 'new' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nep') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nep', 'Nepali', NULL, 311.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Nepali', [Definition] = NULL, [SortOrder] = 311.00 WHERE [Code] = 'nep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nia') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nia', 'Nias', NULL, 312.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Nias', [Definition] = NULL, [SortOrder] = 312.00 WHERE [Code] = 'nia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nic') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nic', 'Niger-Kordofanian languages', NULL, 313.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Niger-Kordofanian languages', [Definition] = NULL, [SortOrder] = 313.00 WHERE [Code] = 'nic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ssa') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssa', 'Nilo-Saharan languages', NULL, 314.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Nilo-Saharan languages', [Definition] = NULL, [SortOrder] = 314.00 WHERE [Code] = 'ssa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'niu') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niu', 'Niuean', NULL, 315.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Niuean', [Definition] = NULL, [SortOrder] = 315.00 WHERE [Code] = 'niu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'zxx') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zxx', 'No linguistic content; Not applicable', NULL, 316.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'No linguistic content; Not applicable', [Definition] = NULL, [SortOrder] = 316.00 WHERE [Code] = 'zxx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nog') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nog', 'Nogai', NULL, 317.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Nogai', [Definition] = NULL, [SortOrder] = 317.00 WHERE [Code] = 'nog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'non') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('non', 'Norse, Old', NULL, 318.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Norse, Old', [Definition] = NULL, [SortOrder] = 318.00 WHERE [Code] = 'non' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nai') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nai', 'North American Indian languages', NULL, 319.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'North American Indian languages', [Definition] = NULL, [SortOrder] = 319.00 WHERE [Code] = 'nai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'frr') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frr', 'Northern Frisian', NULL, 320.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Northern Frisian', [Definition] = NULL, [SortOrder] = 320.00 WHERE [Code] = 'frr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sme') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sme', 'Northern Sami', NULL, 321.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Northern Sami', [Definition] = NULL, [SortOrder] = 321.00 WHERE [Code] = 'sme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nor') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nor', 'Norwegian', NULL, 322.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Norwegian', [Definition] = NULL, [SortOrder] = 322.00 WHERE [Code] = 'nor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nno') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nno', 'Norwegian Nynorsk; Nynorsk, Norwegian', NULL, 323.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Norwegian Nynorsk; Nynorsk, Norwegian', [Definition] = NULL, [SortOrder] = 323.00 WHERE [Code] = 'nno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nub') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nub', 'Nubian languages', NULL, 324.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Nubian languages', [Definition] = NULL, [SortOrder] = 324.00 WHERE [Code] = 'nub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nym') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nym', 'Nyamwezi', NULL, 325.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Nyamwezi', [Definition] = NULL, [SortOrder] = 325.00 WHERE [Code] = 'nym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nyn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyn', 'Nyankole', NULL, 326.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Nyankole', [Definition] = NULL, [SortOrder] = 326.00 WHERE [Code] = 'nyn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nyo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyo', 'Nyoro', NULL, 327.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Nyoro', [Definition] = NULL, [SortOrder] = 327.00 WHERE [Code] = 'nyo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nzi') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzi', 'Nzima', NULL, 328.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Nzima', [Definition] = NULL, [SortOrder] = 328.00 WHERE [Code] = 'nzi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'oci') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oci', 'Occitan (post 1500)', NULL, 329.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Occitan (post 1500)', [Definition] = NULL, [SortOrder] = 329.00 WHERE [Code] = 'oci' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'arc') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arc', 'Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)', NULL, 330.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)', [Definition] = NULL, [SortOrder] = 330.00 WHERE [Code] = 'arc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'oji') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oji', 'Ojibwa', NULL, 331.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ojibwa', [Definition] = NULL, [SortOrder] = 331.00 WHERE [Code] = 'oji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ori') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ori', 'Oriya', NULL, 332.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Oriya', [Definition] = NULL, [SortOrder] = 332.00 WHERE [Code] = 'ori' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'orm') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orm', 'Oromo', NULL, 333.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Oromo', [Definition] = NULL, [SortOrder] = 333.00 WHERE [Code] = 'orm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'osa') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osa', 'Osage', NULL, 334.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Osage', [Definition] = NULL, [SortOrder] = 334.00 WHERE [Code] = 'osa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'oss') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oss', 'Ossetian; Ossetic', NULL, 335.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ossetian; Ossetic', [Definition] = NULL, [SortOrder] = 335.00 WHERE [Code] = 'oss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'oto') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oto', 'Otomian languages', NULL, 336.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Otomian languages', [Definition] = NULL, [SortOrder] = 336.00 WHERE [Code] = 'oto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'pal') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pal', 'Pahlavi', NULL, 337.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Pahlavi', [Definition] = NULL, [SortOrder] = 337.00 WHERE [Code] = 'pal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'pau') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pau', 'Palauan', NULL, 338.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Palauan', [Definition] = NULL, [SortOrder] = 338.00 WHERE [Code] = 'pau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'pli') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pli', 'Pali', NULL, 339.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Pali', [Definition] = NULL, [SortOrder] = 339.00 WHERE [Code] = 'pli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'pam') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pam', 'Pampanga; Kapampangan', NULL, 340.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Pampanga; Kapampangan', [Definition] = NULL, [SortOrder] = 340.00 WHERE [Code] = 'pam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'pag') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pag', 'Pangasinan', NULL, 341.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Pangasinan', [Definition] = NULL, [SortOrder] = 341.00 WHERE [Code] = 'pag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'pan') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pan', 'Panjabi; Punjabi', NULL, 342.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Panjabi; Punjabi', [Definition] = NULL, [SortOrder] = 342.00 WHERE [Code] = 'pan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'pap') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pap', 'Papiamento', NULL, 343.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Papiamento', [Definition] = NULL, [SortOrder] = 343.00 WHERE [Code] = 'pap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'paa') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paa', 'Papuan languages', NULL, 344.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Papuan languages', [Definition] = NULL, [SortOrder] = 344.00 WHERE [Code] = 'paa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'nso') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nso', 'Pedi; Sepedi; Northern Sotho', NULL, 345.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Pedi; Sepedi; Northern Sotho', [Definition] = NULL, [SortOrder] = 345.00 WHERE [Code] = 'nso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'per') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('per', 'Persian', NULL, 346.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Persian', [Definition] = NULL, [SortOrder] = 346.00 WHERE [Code] = 'per' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'peo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peo', 'Persian, Old (ca.600-400 B.C.)', NULL, 347.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Persian, Old (ca.600-400 B.C.)', [Definition] = NULL, [SortOrder] = 347.00 WHERE [Code] = 'peo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'phi') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phi', 'Philippine languages', NULL, 348.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Philippine languages', [Definition] = NULL, [SortOrder] = 348.00 WHERE [Code] = 'phi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'phn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phn', 'Phoenician', NULL, 349.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Phoenician', [Definition] = NULL, [SortOrder] = 349.00 WHERE [Code] = 'phn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'pon') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pon', 'Pohnpeian', NULL, 350.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Pohnpeian', [Definition] = NULL, [SortOrder] = 350.00 WHERE [Code] = 'pon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'pol') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pol', 'Polish', NULL, 351.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Polish', [Definition] = NULL, [SortOrder] = 351.00 WHERE [Code] = 'pol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'por') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('por', 'Portuguese', NULL, 352.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Portuguese', [Definition] = NULL, [SortOrder] = 352.00 WHERE [Code] = 'por' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'pra') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pra', 'Prakrit languages', NULL, 353.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Prakrit languages', [Definition] = NULL, [SortOrder] = 353.00 WHERE [Code] = 'pra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'pro') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pro', 'Provençal, Old (to 1500); Occitan, Old (to 1500)', NULL, 354.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Provençal, Old (to 1500); Occitan, Old (to 1500)', [Definition] = NULL, [SortOrder] = 354.00 WHERE [Code] = 'pro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'pus') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pus', 'Pushto; Pashto', NULL, 355.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Pushto; Pashto', [Definition] = NULL, [SortOrder] = 355.00 WHERE [Code] = 'pus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'que') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('que', 'Quechua', NULL, 356.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Quechua', [Definition] = NULL, [SortOrder] = 356.00 WHERE [Code] = 'que' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'raj') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raj', 'Rajasthani', NULL, 357.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Rajasthani', [Definition] = NULL, [SortOrder] = 357.00 WHERE [Code] = 'raj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'rap') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rap', 'Rapanui', NULL, 358.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Rapanui', [Definition] = NULL, [SortOrder] = 358.00 WHERE [Code] = 'rap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'rar') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rar', 'Rarotongan; Cook Islands Maori', NULL, 359.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Rarotongan; Cook Islands Maori', [Definition] = NULL, [SortOrder] = 359.00 WHERE [Code] = 'rar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'roa') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roa', 'Romance languages', NULL, 360.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Romance languages', [Definition] = NULL, [SortOrder] = 360.00 WHERE [Code] = 'roa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'rum') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rum', 'Romanian; Moldavian; Moldovan', NULL, 361.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Romanian; Moldavian; Moldovan', [Definition] = NULL, [SortOrder] = 361.00 WHERE [Code] = 'rum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'roh') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roh', 'Romansh', NULL, 362.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Romansh', [Definition] = NULL, [SortOrder] = 362.00 WHERE [Code] = 'roh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'rom') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rom', 'Romany', NULL, 363.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Romany', [Definition] = NULL, [SortOrder] = 363.00 WHERE [Code] = 'rom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'run') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('run', 'Rundi', NULL, 364.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Rundi', [Definition] = NULL, [SortOrder] = 364.00 WHERE [Code] = 'run' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'rus') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rus', 'Russian', NULL, 365.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Russian', [Definition] = NULL, [SortOrder] = 365.00 WHERE [Code] = 'rus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sal') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sal', 'Salishan languages', NULL, 366.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Salishan languages', [Definition] = NULL, [SortOrder] = 366.00 WHERE [Code] = 'sal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sam') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sam', 'Samaritan Aramaic', NULL, 367.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Samaritan Aramaic', [Definition] = NULL, [SortOrder] = 367.00 WHERE [Code] = 'sam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'smi') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smi', 'Sami languages', NULL, 368.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sami languages', [Definition] = NULL, [SortOrder] = 368.00 WHERE [Code] = 'smi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'smo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smo', 'Samoan', NULL, 369.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Samoan', [Definition] = NULL, [SortOrder] = 369.00 WHERE [Code] = 'smo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sad') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sad', 'Sandawe', NULL, 370.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sandawe', [Definition] = NULL, [SortOrder] = 370.00 WHERE [Code] = 'sad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sag') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sag', 'Sango', NULL, 371.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sango', [Definition] = NULL, [SortOrder] = 371.00 WHERE [Code] = 'sag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'san') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('san', 'Sanskrit', NULL, 372.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sanskrit', [Definition] = NULL, [SortOrder] = 372.00 WHERE [Code] = 'san' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sat') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sat', 'Santali', NULL, 373.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Santali', [Definition] = NULL, [SortOrder] = 373.00 WHERE [Code] = 'sat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'srd') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srd', 'Sardinian', NULL, 374.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sardinian', [Definition] = NULL, [SortOrder] = 374.00 WHERE [Code] = 'srd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sas') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sas', 'Sasak', NULL, 375.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sasak', [Definition] = NULL, [SortOrder] = 375.00 WHERE [Code] = 'sas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sco') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sco', 'Scots', NULL, 376.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Scots', [Definition] = NULL, [SortOrder] = 376.00 WHERE [Code] = 'sco' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sel') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sel', 'Selkup', NULL, 377.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Selkup', [Definition] = NULL, [SortOrder] = 377.00 WHERE [Code] = 'sel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sem') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sem', 'Semitic languages', NULL, 378.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Semitic languages', [Definition] = NULL, [SortOrder] = 378.00 WHERE [Code] = 'sem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'srp') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srp', 'Serbian', NULL, 379.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Serbian', [Definition] = NULL, [SortOrder] = 379.00 WHERE [Code] = 'srp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'srr') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srr', 'Serer', NULL, 380.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Serer', [Definition] = NULL, [SortOrder] = 380.00 WHERE [Code] = 'srr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'shn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shn', 'Shan', NULL, 381.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Shan', [Definition] = NULL, [SortOrder] = 381.00 WHERE [Code] = 'shn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sna') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sna', 'Shona', NULL, 382.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Shona', [Definition] = NULL, [SortOrder] = 382.00 WHERE [Code] = 'sna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'iii') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iii', 'Sichuan Yi; Nuosu', NULL, 383.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sichuan Yi; Nuosu', [Definition] = NULL, [SortOrder] = 383.00 WHERE [Code] = 'iii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'scn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scn', 'Sicilian', NULL, 384.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sicilian', [Definition] = NULL, [SortOrder] = 384.00 WHERE [Code] = 'scn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sid') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sid', 'Sidamo', NULL, 385.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sidamo', [Definition] = NULL, [SortOrder] = 385.00 WHERE [Code] = 'sid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sgn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgn', 'Sign Languages', NULL, 386.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sign Languages', [Definition] = NULL, [SortOrder] = 386.00 WHERE [Code] = 'sgn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'bla') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bla', 'Siksika', NULL, 387.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Siksika', [Definition] = NULL, [SortOrder] = 387.00 WHERE [Code] = 'bla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'snd') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snd', 'Sindhi', NULL, 388.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sindhi', [Definition] = NULL, [SortOrder] = 388.00 WHERE [Code] = 'snd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sin') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sin', 'Sinhala; Sinhalese', NULL, 389.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sinhala; Sinhalese', [Definition] = NULL, [SortOrder] = 389.00 WHERE [Code] = 'sin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sit') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sit', 'Sino-Tibetan languages', NULL, 390.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sino-Tibetan languages', [Definition] = NULL, [SortOrder] = 390.00 WHERE [Code] = 'sit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sio') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sio', 'Siouan languages', NULL, 391.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Siouan languages', [Definition] = NULL, [SortOrder] = 391.00 WHERE [Code] = 'sio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sms') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sms', 'Skolt Sami', NULL, 392.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Skolt Sami', [Definition] = NULL, [SortOrder] = 392.00 WHERE [Code] = 'sms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'den') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('den', 'Slave (Athapascan)', NULL, 393.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Slave (Athapascan)', [Definition] = NULL, [SortOrder] = 393.00 WHERE [Code] = 'den' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sla') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sla', 'Slavic languages', NULL, 394.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Slavic languages', [Definition] = NULL, [SortOrder] = 394.00 WHERE [Code] = 'sla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'slo') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slo', 'Slovak', NULL, 395.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Slovak', [Definition] = NULL, [SortOrder] = 395.00 WHERE [Code] = 'slo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'slv') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slv', 'Slovenian', NULL, 396.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Slovenian', [Definition] = NULL, [SortOrder] = 396.00 WHERE [Code] = 'slv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sog') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sog', 'Sogdian', NULL, 397.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sogdian', [Definition] = NULL, [SortOrder] = 397.00 WHERE [Code] = 'sog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'som') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('som', 'Somali', NULL, 398.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Somali', [Definition] = NULL, [SortOrder] = 398.00 WHERE [Code] = 'som' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'son') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('son', 'Songhai languages', NULL, 399.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Songhai languages', [Definition] = NULL, [SortOrder] = 399.00 WHERE [Code] = 'son' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'snk') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snk', 'Soninke', NULL, 400.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Soninke', [Definition] = NULL, [SortOrder] = 400.00 WHERE [Code] = 'snk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'wen') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wen', 'Sorbian languages', NULL, 401.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sorbian languages', [Definition] = NULL, [SortOrder] = 401.00 WHERE [Code] = 'wen' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sot') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sot', 'Sotho, Southern', NULL, 402.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sotho, Southern', [Definition] = NULL, [SortOrder] = 402.00 WHERE [Code] = 'sot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sai') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sai', 'South American Indian languages', NULL, 403.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'South American Indian languages', [Definition] = NULL, [SortOrder] = 403.00 WHERE [Code] = 'sai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'alt') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alt', 'Southern Altai', NULL, 404.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Southern Altai', [Definition] = NULL, [SortOrder] = 404.00 WHERE [Code] = 'alt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sma') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sma', 'Southern Sami', NULL, 405.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Southern Sami', [Definition] = NULL, [SortOrder] = 405.00 WHERE [Code] = 'sma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'spa') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spa', 'Spanish; Castilian', NULL, 406.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Spanish; Castilian', [Definition] = NULL, [SortOrder] = 406.00 WHERE [Code] = 'spa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'srn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srn', 'Sranan Tongo', NULL, 407.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sranan Tongo', [Definition] = NULL, [SortOrder] = 407.00 WHERE [Code] = 'srn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'zgh') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgh', 'Standard Moroccan Tamazight', NULL, 408.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Standard Moroccan Tamazight', [Definition] = NULL, [SortOrder] = 408.00 WHERE [Code] = 'zgh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'suk') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suk', 'Sukuma', NULL, 409.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sukuma', [Definition] = NULL, [SortOrder] = 409.00 WHERE [Code] = 'suk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sux') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sux', 'Sumerian', NULL, 410.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sumerian', [Definition] = NULL, [SortOrder] = 410.00 WHERE [Code] = 'sux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sun') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sun', 'Sundanese', NULL, 411.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Sundanese', [Definition] = NULL, [SortOrder] = 411.00 WHERE [Code] = 'sun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sus') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sus', 'Susu', NULL, 412.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Susu', [Definition] = NULL, [SortOrder] = 412.00 WHERE [Code] = 'sus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'swa') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swa', 'Swahili', NULL, 413.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Swahili', [Definition] = NULL, [SortOrder] = 413.00 WHERE [Code] = 'swa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ssw') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssw', 'Swati', NULL, 414.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Swati', [Definition] = NULL, [SortOrder] = 414.00 WHERE [Code] = 'ssw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'swe') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swe', 'Swedish', NULL, 415.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Swedish', [Definition] = NULL, [SortOrder] = 415.00 WHERE [Code] = 'swe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'gsw') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsw', 'Swiss German; Alemannic; Alsatian', NULL, 416.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Swiss German; Alemannic; Alsatian', [Definition] = NULL, [SortOrder] = 416.00 WHERE [Code] = 'gsw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'syr') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syr', 'Syriac', NULL, 417.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Syriac', [Definition] = NULL, [SortOrder] = 417.00 WHERE [Code] = 'syr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tgl') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgl', 'Tagalog', NULL, 418.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tagalog', [Definition] = NULL, [SortOrder] = 418.00 WHERE [Code] = 'tgl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tah') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tah', 'Tahitian', NULL, 419.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tahitian', [Definition] = NULL, [SortOrder] = 419.00 WHERE [Code] = 'tah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tai') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tai', 'Tai languages', NULL, 420.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tai languages', [Definition] = NULL, [SortOrder] = 420.00 WHERE [Code] = 'tai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tgk') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgk', 'Tajik', NULL, 421.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tajik', [Definition] = NULL, [SortOrder] = 421.00 WHERE [Code] = 'tgk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tmh') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmh', 'Tamashek', NULL, 422.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tamashek', [Definition] = NULL, [SortOrder] = 422.00 WHERE [Code] = 'tmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tam') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tam', 'Tamil', NULL, 423.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tamil', [Definition] = NULL, [SortOrder] = 423.00 WHERE [Code] = 'tam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tat') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tat', 'Tatar', NULL, 424.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tatar', [Definition] = NULL, [SortOrder] = 424.00 WHERE [Code] = 'tat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tel') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tel', 'Telugu', NULL, 425.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Telugu', [Definition] = NULL, [SortOrder] = 425.00 WHERE [Code] = 'tel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ter') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ter', 'Tereno', NULL, 426.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tereno', [Definition] = NULL, [SortOrder] = 426.00 WHERE [Code] = 'ter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tet') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tet', 'Tetum', NULL, 427.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tetum', [Definition] = NULL, [SortOrder] = 427.00 WHERE [Code] = 'tet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tha') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tha', 'Thai', NULL, 428.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Thai', [Definition] = NULL, [SortOrder] = 428.00 WHERE [Code] = 'tha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tib') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tib', 'Tibetan', NULL, 429.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tibetan', [Definition] = NULL, [SortOrder] = 429.00 WHERE [Code] = 'tib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tig') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tig', 'Tigre', NULL, 430.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tigre', [Definition] = NULL, [SortOrder] = 430.00 WHERE [Code] = 'tig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tir') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tir', 'Tigrinya', NULL, 431.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tigrinya', [Definition] = NULL, [SortOrder] = 431.00 WHERE [Code] = 'tir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tem') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tem', 'Timne', NULL, 432.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Timne', [Definition] = NULL, [SortOrder] = 432.00 WHERE [Code] = 'tem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tiv') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiv', 'Tiv', NULL, 433.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tiv', [Definition] = NULL, [SortOrder] = 433.00 WHERE [Code] = 'tiv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tli') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tli', 'Tlingit', NULL, 434.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tlingit', [Definition] = NULL, [SortOrder] = 434.00 WHERE [Code] = 'tli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tpi') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpi', 'Tok Pisin', NULL, 435.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tok Pisin', [Definition] = NULL, [SortOrder] = 435.00 WHERE [Code] = 'tpi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tkl') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkl', 'Tokelau', NULL, 436.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tokelau', [Definition] = NULL, [SortOrder] = 436.00 WHERE [Code] = 'tkl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tog') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tog', 'Tonga (Nyasa)', NULL, 437.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tonga (Nyasa)', [Definition] = NULL, [SortOrder] = 437.00 WHERE [Code] = 'tog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ton') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ton', 'Tonga (Tonga Islands)', NULL, 438.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tonga (Tonga Islands)', [Definition] = NULL, [SortOrder] = 438.00 WHERE [Code] = 'ton' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tsi') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsi', 'Tsimshian', NULL, 439.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tsimshian', [Definition] = NULL, [SortOrder] = 439.00 WHERE [Code] = 'tsi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tso') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tso', 'Tsonga', NULL, 440.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tsonga', [Definition] = NULL, [SortOrder] = 440.00 WHERE [Code] = 'tso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tsn') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsn', 'Tswana', NULL, 441.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tswana', [Definition] = NULL, [SortOrder] = 441.00 WHERE [Code] = 'tsn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tum') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tum', 'Tumbuka', NULL, 442.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tumbuka', [Definition] = NULL, [SortOrder] = 442.00 WHERE [Code] = 'tum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tup') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tup', 'Tupi languages', NULL, 443.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tupi languages', [Definition] = NULL, [SortOrder] = 443.00 WHERE [Code] = 'tup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tur') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tur', 'Turkish', NULL, 444.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Turkish', [Definition] = NULL, [SortOrder] = 444.00 WHERE [Code] = 'tur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ota') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ota', 'Turkish, Ottoman (1500-1928)', NULL, 445.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Turkish, Ottoman (1500-1928)', [Definition] = NULL, [SortOrder] = 445.00 WHERE [Code] = 'ota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tuk') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuk', 'Turkmen', NULL, 446.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Turkmen', [Definition] = NULL, [SortOrder] = 446.00 WHERE [Code] = 'tuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tvl') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvl', 'Tuvalu', NULL, 447.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tuvalu', [Definition] = NULL, [SortOrder] = 447.00 WHERE [Code] = 'tvl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'tyv') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyv', 'Tuvinian', NULL, 448.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Tuvinian', [Definition] = NULL, [SortOrder] = 448.00 WHERE [Code] = 'tyv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'twi') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twi', 'Twi', NULL, 449.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Twi', [Definition] = NULL, [SortOrder] = 449.00 WHERE [Code] = 'twi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'udm') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udm', 'Udmurt', NULL, 450.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Udmurt', [Definition] = NULL, [SortOrder] = 450.00 WHERE [Code] = 'udm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'uga') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uga', 'Ugaritic', NULL, 451.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ugaritic', [Definition] = NULL, [SortOrder] = 451.00 WHERE [Code] = 'uga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'uig') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uig', 'Uighur; Uyghur', NULL, 452.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Uighur; Uyghur', [Definition] = NULL, [SortOrder] = 452.00 WHERE [Code] = 'uig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ukr') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukr', 'Ukrainian', NULL, 453.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Ukrainian', [Definition] = NULL, [SortOrder] = 453.00 WHERE [Code] = 'ukr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'umb') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umb', 'Umbundu', NULL, 454.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Umbundu', [Definition] = NULL, [SortOrder] = 454.00 WHERE [Code] = 'umb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'mis') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mis', 'Uncoded languages', NULL, 455.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Uncoded languages', [Definition] = NULL, [SortOrder] = 455.00 WHERE [Code] = 'mis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'und') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('und', 'Undetermined', NULL, 456.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Undetermined', [Definition] = NULL, [SortOrder] = 456.00 WHERE [Code] = 'und' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'hsb') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsb', 'Upper Sorbian', NULL, 457.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Upper Sorbian', [Definition] = NULL, [SortOrder] = 457.00 WHERE [Code] = 'hsb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'urd') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urd', 'Urdu', NULL, 458.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Urdu', [Definition] = NULL, [SortOrder] = 458.00 WHERE [Code] = 'urd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'uzb') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uzb', 'Uzbek', NULL, 459.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Uzbek', [Definition] = NULL, [SortOrder] = 459.00 WHERE [Code] = 'uzb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'vai') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vai', 'Vai', NULL, 460.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Vai', [Definition] = NULL, [SortOrder] = 460.00 WHERE [Code] = 'vai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ven') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ven', 'Venda', NULL, 461.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Venda', [Definition] = NULL, [SortOrder] = 461.00 WHERE [Code] = 'ven' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'vie') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vie', 'Vietnamese', NULL, 462.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Vietnamese', [Definition] = NULL, [SortOrder] = 462.00 WHERE [Code] = 'vie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'vol') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vol', 'Volapük', NULL, 463.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Volapük', [Definition] = NULL, [SortOrder] = 463.00 WHERE [Code] = 'vol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'vot') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vot', 'Votic', NULL, 464.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Votic', [Definition] = NULL, [SortOrder] = 464.00 WHERE [Code] = 'vot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'wak') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wak', 'Wakashan languages', NULL, 465.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Wakashan languages', [Definition] = NULL, [SortOrder] = 465.00 WHERE [Code] = 'wak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'wln') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wln', 'Walloon', NULL, 466.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Walloon', [Definition] = NULL, [SortOrder] = 466.00 WHERE [Code] = 'wln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'war') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('war', 'Waray', NULL, 467.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Waray', [Definition] = NULL, [SortOrder] = 467.00 WHERE [Code] = 'war' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'was') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('was', 'Washo', NULL, 468.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Washo', [Definition] = NULL, [SortOrder] = 468.00 WHERE [Code] = 'was' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'wel') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wel', 'Welsh', NULL, 469.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Welsh', [Definition] = NULL, [SortOrder] = 469.00 WHERE [Code] = 'wel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'fry') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fry', 'Western Frisian', NULL, 470.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Western Frisian', [Definition] = NULL, [SortOrder] = 470.00 WHERE [Code] = 'fry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'wal') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wal', 'Wolaitta; Wolaytta', NULL, 471.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Wolaitta; Wolaytta', [Definition] = NULL, [SortOrder] = 471.00 WHERE [Code] = 'wal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'wol') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wol', 'Wolof', NULL, 472.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Wolof', [Definition] = NULL, [SortOrder] = 472.00 WHERE [Code] = 'wol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'xho') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xho', 'Xhosa', NULL, 473.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Xhosa', [Definition] = NULL, [SortOrder] = 473.00 WHERE [Code] = 'xho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'sah') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sah', 'Yakut', NULL, 474.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Yakut', [Definition] = NULL, [SortOrder] = 474.00 WHERE [Code] = 'sah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'yao') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yao', 'Yao', NULL, 475.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Yao', [Definition] = NULL, [SortOrder] = 475.00 WHERE [Code] = 'yao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'yap') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yap', 'Yapese', NULL, 476.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Yapese', [Definition] = NULL, [SortOrder] = 476.00 WHERE [Code] = 'yap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'yid') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yid', 'Yiddish', NULL, 477.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Yiddish', [Definition] = NULL, [SortOrder] = 477.00 WHERE [Code] = 'yid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'yor') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yor', 'Yoruba', NULL, 478.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Yoruba', [Definition] = NULL, [SortOrder] = 478.00 WHERE [Code] = 'yor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'ypk') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypk', 'Yupik languages', NULL, 479.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Yupik languages', [Definition] = NULL, [SortOrder] = 479.00 WHERE [Code] = 'ypk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'znd') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('znd', 'Zande languages', NULL, 480.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Zande languages', [Definition] = NULL, [SortOrder] = 480.00 WHERE [Code] = 'znd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'zap') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zap', 'Zapotec', NULL, 481.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Zapotec', [Definition] = NULL, [SortOrder] = 481.00 WHERE [Code] = 'zap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'zza') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zza', 'Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki', NULL, 482.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki', [Definition] = NULL, [SortOrder] = 482.00 WHERE [Code] = 'zza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'zen') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zen', 'Zenaga', NULL, 483.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Zenaga', [Definition] = NULL, [SortOrder] = 483.00 WHERE [Code] = 'zen' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'zha') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zha', 'Zhuang; Chuang', NULL, 484.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Zhuang; Chuang', [Definition] = NULL, [SortOrder] = 484.00 WHERE [Code] = 'zha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'zul') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zul', 'Zulu', NULL, 485.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Zulu', [Definition] = NULL, [SortOrder] = 485.00 WHERE [Code] = 'zul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLanguageLearnerType] WHERE [Code] = 'zun') BEGIN INSERT INTO dbo.[RefAssessmentNeedLanguageLearnerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zun', 'Zuni', NULL, 486.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLanguageLearnerType] -SET [Description] = 'Zuni', [Definition] = NULL, [SortOrder] = 486.00 WHERE [Code] = 'zun' END -END - -PRINT N'Populate RefAssessmentNeedLinkIndicationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedLinkIndicationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLinkIndicationType] WHERE [Code] = 'SpeakLink') BEGIN INSERT INTO dbo.[RefAssessmentNeedLinkIndicationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpeakLink', 'Speak link', 'Speak link is specified as part of an Assessment Personal Needs Profile as the characteristics of presentation for a hyperlink when using a screen reader.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLinkIndicationType] -SET [Description] = 'Speak link', [Definition] = 'Speak link is specified as part of an Assessment Personal Needs Profile as the characteristics of presentation for a hyperlink when using a screen reader.', [SortOrder] = 1.00 WHERE [Code] = 'SpeakLink' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLinkIndicationType] WHERE [Code] = 'DifferentVoice') BEGIN INSERT INTO dbo.[RefAssessmentNeedLinkIndicationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DifferentVoice', 'Different voice', 'Different voice is specified as part of an Assessment Personal Needs Profile as the characteristics of presentation for a hyperlink when using a screen reader.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLinkIndicationType] -SET [Description] = 'Different voice', [Definition] = 'Different voice is specified as part of an Assessment Personal Needs Profile as the characteristics of presentation for a hyperlink when using a screen reader.', [SortOrder] = 2.00 WHERE [Code] = 'DifferentVoice' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLinkIndicationType] WHERE [Code] = 'SoundEffect') BEGIN INSERT INTO dbo.[RefAssessmentNeedLinkIndicationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SoundEffect', 'Sound effect', 'Sound effect is specified as part of an Assessment Personal Needs Profile as the characteristics of presentation for a hyperlink when using a screen reader.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLinkIndicationType] -SET [Description] = 'Sound effect', [Definition] = 'Sound effect is specified as part of an Assessment Personal Needs Profile as the characteristics of presentation for a hyperlink when using a screen reader.', [SortOrder] = 3.00 WHERE [Code] = 'SoundEffect' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedLinkIndicationType] WHERE [Code] = 'None') BEGIN INSERT INTO dbo.[RefAssessmentNeedLinkIndicationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('None', 'None', 'None is specified as part of an Assessment Personal Needs Profile as the characteristics of presentation for a hyperlink when using a screen reader.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedLinkIndicationType] -SET [Description] = 'None', [Definition] = 'None is specified as part of an Assessment Personal Needs Profile as the characteristics of presentation for a hyperlink when using a screen reader.', [SortOrder] = 4.00 WHERE [Code] = 'None' END -END - -PRINT N'Populate RefAssessmentNeedMaskingType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedMaskingType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedMaskingType] WHERE [Code] = 'CustomMask') BEGIN INSERT INTO dbo.[RefAssessmentNeedMaskingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CustomMask', 'Custom mask', 'Custom mask is specified as part of an Assessment Personal Needs Profile as the type of masks the user is able to create to cover portions of the question until needed.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedMaskingType] -SET [Description] = 'Custom mask', [Definition] = 'Custom mask is specified as part of an Assessment Personal Needs Profile as the type of masks the user is able to create to cover portions of the question until needed.', [SortOrder] = 1.00 WHERE [Code] = 'CustomMask' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedMaskingType] WHERE [Code] = 'AnswerMask') BEGIN INSERT INTO dbo.[RefAssessmentNeedMaskingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AnswerMask', 'Answer mask', 'Answer mask is specified as part of an Assessment Personal Needs Profile as the type of masks the user is able to create to cover portions of the question until needed.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedMaskingType] -SET [Description] = 'Answer mask', [Definition] = 'Answer mask is specified as part of an Assessment Personal Needs Profile as the type of masks the user is able to create to cover portions of the question until needed.', [SortOrder] = 2.00 WHERE [Code] = 'AnswerMask' END -END - -PRINT N'Populate RefAssessmentNeedNumberOfBrailleDots table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedNumberOfBrailleDots]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedNumberOfBrailleDots] WHERE [Code] = '6') BEGIN INSERT INTO dbo.[RefAssessmentNeedNumberOfBrailleDots]([Code], [Description], [Definition], [SortOrder]) -VALUES ('6', 'Six Braille Dots', 'Six dots in a Braille cell is specified as part of an Assessment Personal Needs Profile.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedNumberOfBrailleDots] -SET [Description] = 'Six Braille Dots', [Definition] = 'Six dots in a Braille cell is specified as part of an Assessment Personal Needs Profile.', [SortOrder] = 1.00 WHERE [Code] = '6' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedNumberOfBrailleDots] WHERE [Code] = '8') BEGIN INSERT INTO dbo.[RefAssessmentNeedNumberOfBrailleDots]([Code], [Description], [Definition], [SortOrder]) -VALUES ('8', 'Eight Braille Dots', 'Eight dots in a Braille cell is specified as part of an Assessment Personal Needs Profile.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedNumberOfBrailleDots] -SET [Description] = 'Eight Braille Dots', [Definition] = 'Eight dots in a Braille cell is specified as part of an Assessment Personal Needs Profile.', [SortOrder] = 2.00 WHERE [Code] = '8' END -END - -PRINT N'Populate RefAssessmentNeedSigningType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedSigningType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedSigningType] WHERE [Code] = 'ASL') BEGIN INSERT INTO dbo.[RefAssessmentNeedSigningType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ASL', 'American Sign Language', 'American Sign Language is specified as part of an Assessment Personal Needs Profile as the type of signing preferred by the user.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedSigningType] -SET [Description] = 'American Sign Language', [Definition] = 'American Sign Language is specified as part of an Assessment Personal Needs Profile as the type of signing preferred by the user.', [SortOrder] = 1.00 WHERE [Code] = 'ASL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedSigningType] WHERE [Code] = 'SignedEnglish') BEGIN INSERT INTO dbo.[RefAssessmentNeedSigningType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SignedEnglish', 'Signed English', 'Signed English is specified as part of an Assessment Personal Needs Profile as the type of signing preferred by the user.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedSigningType] -SET [Description] = 'Signed English', [Definition] = 'Signed English is specified as part of an Assessment Personal Needs Profile as the type of signing preferred by the user.', [SortOrder] = 2.00 WHERE [Code] = 'SignedEnglish' END -END - -PRINT N'Populate RefAssessmentNeedSpokenSourcePreferenceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedSpokenSourcePreferenceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedSpokenSourcePreferenceType] WHERE [Code] = 'Human') BEGIN INSERT INTO dbo.[RefAssessmentNeedSpokenSourcePreferenceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Human', 'Human', 'Human is specified as the preferred spoken audio form as part of an Assessment Personal Needs Profile.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedSpokenSourcePreferenceType] -SET [Description] = 'Human', [Definition] = 'Human is specified as the preferred spoken audio form as part of an Assessment Personal Needs Profile.', [SortOrder] = 1.00 WHERE [Code] = 'Human' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedSpokenSourcePreferenceType] WHERE [Code] = 'Synthetic') BEGIN INSERT INTO dbo.[RefAssessmentNeedSpokenSourcePreferenceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Synthetic', 'Synthetic', 'Synthetic is specified as the preferred spoken audio form as part of an Assessment Personal Needs Profile.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedSpokenSourcePreferenceType] -SET [Description] = 'Synthetic', [Definition] = 'Synthetic is specified as the preferred spoken audio form as part of an Assessment Personal Needs Profile.', [SortOrder] = 2.00 WHERE [Code] = 'Synthetic' END -END - -PRINT N'Populate RefAssessmentNeedSupportTool table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedSupportTool]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedSupportTool] WHERE [Code] = 'Dictionary') BEGIN INSERT INTO dbo.[RefAssessmentNeedSupportTool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Dictionary', 'Dictionary', 'Dictionary is specified as an assessment resource as part of an Assessment Personal Needs Profile.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedSupportTool] -SET [Description] = 'Dictionary', [Definition] = 'Dictionary is specified as an assessment resource as part of an Assessment Personal Needs Profile.', [SortOrder] = 1.00 WHERE [Code] = 'Dictionary' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedSupportTool] WHERE [Code] = 'Calculator') BEGIN INSERT INTO dbo.[RefAssessmentNeedSupportTool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Calculator', 'Calculator', 'Calculator is specified as an assessment resource as part of an Assessment Personal Needs Profile.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedSupportTool] -SET [Description] = 'Calculator', [Definition] = 'Calculator is specified as an assessment resource as part of an Assessment Personal Needs Profile.', [SortOrder] = 2.00 WHERE [Code] = 'Calculator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedSupportTool] WHERE [Code] = 'NoteTaking') BEGIN INSERT INTO dbo.[RefAssessmentNeedSupportTool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoteTaking', 'Note taking', 'Note taking is specified as an assessment resource as part of an Assessment Personal Needs Profile.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedSupportTool] -SET [Description] = 'Note taking', [Definition] = 'Note taking is specified as an assessment resource as part of an Assessment Personal Needs Profile.', [SortOrder] = 3.00 WHERE [Code] = 'NoteTaking' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedSupportTool] WHERE [Code] = 'PeerInteraction') BEGIN INSERT INTO dbo.[RefAssessmentNeedSupportTool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PeerInteraction', 'Peer interaction', 'Peer interaction is specified as an assessment resource as part of an Assessment Personal Needs Profile.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedSupportTool] -SET [Description] = 'Peer interaction', [Definition] = 'Peer interaction is specified as an assessment resource as part of an Assessment Personal Needs Profile.', [SortOrder] = 4.00 WHERE [Code] = 'PeerInteraction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedSupportTool] WHERE [Code] = 'Thesaurus') BEGIN INSERT INTO dbo.[RefAssessmentNeedSupportTool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Thesaurus', 'Thesaurus', 'Thesaurus is specified as an assessment resource as part of an Assessment Personal Needs Profile.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedSupportTool] -SET [Description] = 'Thesaurus', [Definition] = 'Thesaurus is specified as an assessment resource as part of an Assessment Personal Needs Profile.', [SortOrder] = 5.00 WHERE [Code] = 'Thesaurus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedSupportTool] WHERE [Code] = 'Abacus') BEGIN INSERT INTO dbo.[RefAssessmentNeedSupportTool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Abacus', 'Abacus', 'Abacus is specified as an assessment resource as part of an Assessment Personal Needs Profile.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedSupportTool] -SET [Description] = 'Abacus', [Definition] = 'Abacus is specified as an assessment resource as part of an Assessment Personal Needs Profile.', [SortOrder] = 6.00 WHERE [Code] = 'Abacus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedSupportTool] WHERE [Code] = 'SpellChecker') BEGIN INSERT INTO dbo.[RefAssessmentNeedSupportTool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpellChecker', 'Spell checker', 'Spell checker is specified as an assessment resource as part of an Assessment Personal Needs Profile.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedSupportTool] -SET [Description] = 'Spell checker', [Definition] = 'Spell checker is specified as an assessment resource as part of an Assessment Personal Needs Profile.', [SortOrder] = 7.00 WHERE [Code] = 'SpellChecker' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedSupportTool] WHERE [Code] = 'Homophone') BEGIN INSERT INTO dbo.[RefAssessmentNeedSupportTool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Homophone', 'Homophone checker', 'Homophone checker is specified as an assessment resource as part of an Assessment Personal Needs Profile.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedSupportTool] -SET [Description] = 'Homophone checker', [Definition] = 'Homophone checker is specified as an assessment resource as part of an Assessment Personal Needs Profile.', [SortOrder] = 8.00 WHERE [Code] = 'Homophone' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedSupportTool] WHERE [Code] = 'MindMapping') BEGIN INSERT INTO dbo.[RefAssessmentNeedSupportTool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MindMapping', 'Mind mapping software', 'Mind mapping software is specified as an assessment resource as part of an Assessment Personal Needs Profile.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedSupportTool] -SET [Description] = 'Mind mapping software', [Definition] = 'Mind mapping software is specified as an assessment resource as part of an Assessment Personal Needs Profile.', [SortOrder] = 9.00 WHERE [Code] = 'MindMapping' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedSupportTool] WHERE [Code] = 'OutlineTool') BEGIN INSERT INTO dbo.[RefAssessmentNeedSupportTool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OutlineTool', 'Outline tool', 'Outline tool is specified as an assessment resource as part of an Assessment Personal Needs Profile.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedSupportTool] -SET [Description] = 'Outline tool', [Definition] = 'Outline tool is specified as an assessment resource as part of an Assessment Personal Needs Profile.', [SortOrder] = 10.00 WHERE [Code] = 'OutlineTool' END -END - -PRINT N'Populate RefAssessmentNeedUsageType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedUsageType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedUsageType] WHERE [Code] = 'Required') BEGIN INSERT INTO dbo.[RefAssessmentNeedUsageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Required', 'Required', 'Required is specified as the rating for the collection of Access for All (AfA) needs and preferences.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedUsageType] -SET [Description] = 'Required', [Definition] = 'Required is specified as the rating for the collection of Access for All (AfA) needs and preferences.', [SortOrder] = 1.00 WHERE [Code] = 'Required' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedUsageType] WHERE [Code] = 'Preferred') BEGIN INSERT INTO dbo.[RefAssessmentNeedUsageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Preferred', 'Preferred', 'Preferred is specified as the rating for the collection of Access for All (AfA) needs and preferences.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedUsageType] -SET [Description] = 'Preferred', [Definition] = 'Preferred is specified as the rating for the collection of Access for All (AfA) needs and preferences.', [SortOrder] = 2.00 WHERE [Code] = 'Preferred' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedUsageType] WHERE [Code] = 'OptionallyUse') BEGIN INSERT INTO dbo.[RefAssessmentNeedUsageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OptionallyUse', 'Optionally use', 'Optionally use is specified as the rating for the collection of Access for All (AfA) needs and preferences.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedUsageType] -SET [Description] = 'Optionally use', [Definition] = 'Optionally use is specified as the rating for the collection of Access for All (AfA) needs and preferences.', [SortOrder] = 3.00 WHERE [Code] = 'OptionallyUse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedUsageType] WHERE [Code] = 'Prohibited') BEGIN INSERT INTO dbo.[RefAssessmentNeedUsageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Prohibited', 'Prohibited', 'Prohibited is specified as the rating for the collection of Access for All (AfA) needs and preferences.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedUsageType] -SET [Description] = 'Prohibited', [Definition] = 'Prohibited is specified as the rating for the collection of Access for All (AfA) needs and preferences.', [SortOrder] = 4.00 WHERE [Code] = 'Prohibited' END -END - -PRINT N'Populate RefAssessmentNeedUserSpokenPreferenceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentNeedUserSpokenPreferenceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedUserSpokenPreferenceType] WHERE [Code] = 'TextOnly') BEGIN INSERT INTO dbo.[RefAssessmentNeedUserSpokenPreferenceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TextOnly', 'Text only', 'Text only is specified as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedUserSpokenPreferenceType] -SET [Description] = 'Text only', [Definition] = 'Text only is specified as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', [SortOrder] = 1.00 WHERE [Code] = 'TextOnly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedUserSpokenPreferenceType] WHERE [Code] = 'TextGraphics') BEGIN INSERT INTO dbo.[RefAssessmentNeedUserSpokenPreferenceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TextGraphics', 'Text and graphics', 'Text and graphics is specified as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedUserSpokenPreferenceType] -SET [Description] = 'Text and graphics', [Definition] = 'Text and graphics is specified as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', [SortOrder] = 2.00 WHERE [Code] = 'TextGraphics' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedUserSpokenPreferenceType] WHERE [Code] = 'GraphicsOnly') BEGIN INSERT INTO dbo.[RefAssessmentNeedUserSpokenPreferenceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GraphicsOnly', 'Graphics only', 'Graphics only is specified as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedUserSpokenPreferenceType] -SET [Description] = 'Graphics only', [Definition] = 'Graphics only is specified as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', [SortOrder] = 3.00 WHERE [Code] = 'GraphicsOnly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentNeedUserSpokenPreferenceType] WHERE [Code] = 'NonVisual') BEGIN INSERT INTO dbo.[RefAssessmentNeedUserSpokenPreferenceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NonVisual', 'Non-visual', 'Non-visual is specified as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentNeedUserSpokenPreferenceType] -SET [Description] = 'Non-visual', [Definition] = 'Non-visual is specified as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', [SortOrder] = 4.00 WHERE [Code] = 'NonVisual' END -END - -PRINT N'Populate RefAssessmentParticipationIndicator table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentParticipationIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentParticipationIndicator] WHERE [Code] = 'Participated') BEGIN INSERT INTO dbo.[RefAssessmentParticipationIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Participated', 'Participated', 'The student participated in the assessment.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentParticipationIndicator] -SET [Description] = 'Participated', [Definition] = 'The student participated in the assessment.', [SortOrder] = 1.00 WHERE [Code] = 'Participated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentParticipationIndicator] WHERE [Code] = 'DidNotParticipate') BEGIN INSERT INTO dbo.[RefAssessmentParticipationIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DidNotParticipate', 'Did Not Participate', 'The student did not participate in the assessment.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentParticipationIndicator] -SET [Description] = 'Did Not Participate', [Definition] = 'The student did not participate in the assessment.', [SortOrder] = 2.00 WHERE [Code] = 'DidNotParticipate' END -END - -PRINT N'Populate RefAssessmentPlatformType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentPlatformType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPlatformType] WHERE [Code] = 'Paper') BEGIN INSERT INTO dbo.[RefAssessmentPlatformType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Paper', 'Paper', 'Paper is specified as the platform with which the assessment was delivered to the student during the assessment session.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPlatformType] -SET [Description] = 'Paper', [Definition] = 'Paper is specified as the platform with which the assessment was delivered to the student during the assessment session.', [SortOrder] = 1.00 WHERE [Code] = 'Paper' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPlatformType] WHERE [Code] = 'Computer') BEGIN INSERT INTO dbo.[RefAssessmentPlatformType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Computer', 'Computer', 'Computer is specified as the platform with which the assessment was delivered to the student during the assessment session.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPlatformType] -SET [Description] = 'Computer', [Definition] = 'Computer is specified as the platform with which the assessment was delivered to the student during the assessment session.', [SortOrder] = 2.00 WHERE [Code] = 'Computer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPlatformType] WHERE [Code] = 'Mobile') BEGIN INSERT INTO dbo.[RefAssessmentPlatformType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Mobile', 'Mobile', 'Mobile is specified as the platform with which the assessment was delivered to the student during the assessment session.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPlatformType] -SET [Description] = 'Mobile', [Definition] = 'Mobile is specified as the platform with which the assessment was delivered to the student during the assessment session.', [SortOrder] = 3.00 WHERE [Code] = 'Mobile' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPlatformType] WHERE [Code] = 'Clicker') BEGIN INSERT INTO dbo.[RefAssessmentPlatformType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Clicker', 'Clicker', 'Clicker is specified as the platform with which the assessment was delivered to the student during the assessment session.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPlatformType] -SET [Description] = 'Clicker', [Definition] = 'Clicker is specified as the platform with which the assessment was delivered to the student during the assessment session.', [SortOrder] = 4.00 WHERE [Code] = 'Clicker' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPlatformType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAssessmentPlatformType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is specified as the platform with which the assessment was delivered to the student during the assessment session.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPlatformType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the platform with which the assessment was delivered to the student during the assessment session.', [SortOrder] = 5.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPlatformType] WHERE [Code] = 'Handheld') BEGIN INSERT INTO dbo.[RefAssessmentPlatformType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Handheld', 'Handheld', 'Handheld is specified as the platform with which the assessment was delivered to the student during the assessment session.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPlatformType] -SET [Description] = 'Handheld', [Definition] = 'Handheld is specified as the platform with which the assessment was delivered to the student during the assessment session.', [SortOrder] = 6.00 WHERE [Code] = 'Handheld' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPlatformType] WHERE [Code] = 'Tablet') BEGIN INSERT INTO dbo.[RefAssessmentPlatformType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Tablet', 'Tablet', 'Tablet is specified as the platform with which the assessment was delivered to the student during the assessment session.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPlatformType] -SET [Description] = 'Tablet', [Definition] = 'Tablet is specified as the platform with which the assessment was delivered to the student during the assessment session.', [SortOrder] = 7.00 WHERE [Code] = 'Tablet' END -END - -PRINT N'Populate RefAssessmentPretestOutcome table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentPretestOutcome]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPretestOutcome] WHERE [Code] = 'GradeLevel') BEGIN INSERT INTO dbo.[RefAssessmentPretestOutcome]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GradeLevel', 'At or above Grade Level', 'At or above Grade Level is specified as the results of a pre-test in academic subjects.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPretestOutcome] -SET [Description] = 'At or above Grade Level', [Definition] = 'At or above Grade Level is specified as the results of a pre-test in academic subjects.', [SortOrder] = 1.00 WHERE [Code] = 'GradeLevel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPretestOutcome] WHERE [Code] = 'BelowGradeLevel') BEGIN INSERT INTO dbo.[RefAssessmentPretestOutcome]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BelowGradeLevel', 'Below Grade Level', 'Below Grade Level is specified as the results of a pre-test in academic subjects.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPretestOutcome] -SET [Description] = 'Below Grade Level', [Definition] = 'Below Grade Level is specified as the results of a pre-test in academic subjects.', [SortOrder] = 2.00 WHERE [Code] = 'BelowGradeLevel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPretestOutcome] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefAssessmentPretestOutcome]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', 'Not applicable is specified as the results of a pre-test in academic subjects.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPretestOutcome] -SET [Description] = 'Not applicable', [Definition] = 'Not applicable is specified as the results of a pre-test in academic subjects.', [SortOrder] = 3.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefAssessmentPurpose table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentPurpose]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '00050') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00050', 'Admission', 'Admission is specified as the reason for which an assessment is designed or delivered.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Admission', [Definition] = 'Admission is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 2.00 WHERE [Code] = '00050' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '00051') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00051', 'Assessment of student''s progress', 'Assessment of student''s progress is specified as the reason for which an assessment is designed or delivered.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Assessment of student''s progress', [Definition] = 'Assessment of student''s progress is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 4.00 WHERE [Code] = '00051' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '73055') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73055', 'College Readiness', 'College Readiness is specified as the reason for which an assessment is designed or delivered.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'College Readiness', [Definition] = 'College Readiness is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 5.00 WHERE [Code] = '73055' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '00063') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00063', 'Course credit', 'Course credit is specified as the reason for which an assessment is designed or delivered.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Course credit', [Definition] = 'Course credit is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 6.00 WHERE [Code] = '00063' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '00064') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00064', 'Course requirement', 'Course requirement is specified as the reason for which an assessment is designed or delivered.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Course requirement', [Definition] = 'Course requirement is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 8.00 WHERE [Code] = '00064' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '73069') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73069', 'Diagnosis', 'Diagnosis is specified as the reason for which an assessment is designed or delivered.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Diagnosis', [Definition] = 'Diagnosis is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 9.00 WHERE [Code] = '73069' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '03459') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03459', 'Federal accountability', 'Federal accountability is specified as the reason for which an assessment is designed or delivered.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Federal accountability', [Definition] = 'Federal accountability is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 10.00 WHERE [Code] = '03459' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '73068') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73068', 'Inform local or state policy', 'Inform local or state policy is specified as the reason for which an assessment is designed or delivered.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Inform local or state policy', [Definition] = 'Inform local or state policy is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 11.00 WHERE [Code] = '73068' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '00055') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00055', 'Instructional decision', 'Instructional decision is specified as the reason for which an assessment is designed or delivered.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Instructional decision', [Definition] = 'Instructional decision is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 12.00 WHERE [Code] = '00055' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '03457') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03457', 'Local accountability', 'Local accountability is specified as the reason for which an assessment is designed or delivered.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Local accountability', [Definition] = 'Local accountability is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 14.00 WHERE [Code] = '03457' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '02404') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02404', 'Local graduation requirement', 'Local graduation requirement is specified as the reason for which an assessment is designed or delivered.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Local graduation requirement', [Definition] = 'Local graduation requirement is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 16.00 WHERE [Code] = '02404' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '73042') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73042', 'Obtain a state- or industry-recognized certificate or license', 'Obtain a state- or industry-recognized certificate or license is specified as the reason for which an assessment is designed or delivered.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Obtain a state- or industry-recognized certificate or license', [Definition] = 'Obtain a state- or industry-recognized certificate or license is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 18.00 WHERE [Code] = '73042' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '73043') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73043', 'Obtain postsecondary credit for the course', 'Obtain postsecondary credit for the course is specified as the reason for which an assessment is designed or delivered.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Obtain postsecondary credit for the course', [Definition] = 'Obtain postsecondary credit for the course is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 20.00 WHERE [Code] = '73043' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '73067') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73067', 'Program eligibility', 'Program eligibility is specified as the reason for which an assessment is designed or delivered.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Program eligibility', [Definition] = 'Program eligibility is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 21.00 WHERE [Code] = '73067' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '00057') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00057', 'Program evaluation', 'Program evaluation is specified as the reason for which an assessment is designed or delivered.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Program evaluation', [Definition] = 'Program evaluation is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 22.00 WHERE [Code] = '00057' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '00058') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00058', 'Program placement', 'Program placement is specified as the reason for which an assessment is designed or delivered.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Program placement', [Definition] = 'Program placement is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 24.00 WHERE [Code] = '00058' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '00062') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00062', 'Promotion to or retention in a grade or program', 'Promotion to or retention in a grade or program is specified as the reason for which an assessment is designed or delivered.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Promotion to or retention in a grade or program', [Definition] = 'Promotion to or retention in a grade or program is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 26.00 WHERE [Code] = '00062' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '00061') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00061', 'Screening', 'Screening is specified as the reason for which an assessment is designed or delivered.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Screening', [Definition] = 'Screening is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 28.00 WHERE [Code] = '00061' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '03458') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03458', 'State accountability', 'State accountability is specified as the reason for which an assessment is designed or delivered.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'State accountability', [Definition] = 'State accountability is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 30.00 WHERE [Code] = '03458' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the reason for which an assessment is designed or delivered.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'Other', [Definition] = 'Other is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 30.00 WHERE [Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentPurpose] WHERE [Code] = '00054') BEGIN INSERT INTO dbo.[RefAssessmentPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00054', 'State graduation requirement', 'State graduation requirement is specified as the reason for which an assessment is designed or delivered.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentPurpose] -SET [Description] = 'State graduation requirement', [Definition] = 'State graduation requirement is specified as the reason for which an assessment is designed or delivered.', [SortOrder] = 32.00 WHERE [Code] = '00054' END -END - -PRINT N'Populate RefAssessmentReasonNotCompleting table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentReasonNotCompleting]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotCompleting] WHERE [Code] = 'ParentsOptOut') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotCompleting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ParentsOptOut', 'Parents opt out', 'Parents opt out is specified as the primary reason a participant did not complete an assessment.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotCompleting] -SET [Description] = 'Parents opt out', [Definition] = 'Parents opt out is specified as the primary reason a participant did not complete an assessment.', [SortOrder] = 1.00 WHERE [Code] = 'ParentsOptOut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotCompleting] WHERE [Code] = 'Absent') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotCompleting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Absent', 'Absent during', 'Absent during is specified as the primary reason a participant did not complete an assessment.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotCompleting] -SET [Description] = 'Absent during', [Definition] = 'Absent during is specified as the primary reason a participant did not complete an assessment.', [SortOrder] = 2.00 WHERE [Code] = 'Absent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotCompleting] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotCompleting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Did not participate for other reason', 'Did not participate for other reason is specified as the primary reason a participant did not complete an assessment.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotCompleting] -SET [Description] = 'Did not participate for other reason', [Definition] = 'Did not participate for other reason is specified as the primary reason a participant did not complete an assessment.', [SortOrder] = 3.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotCompleting] WHERE [Code] = 'OutOfLevelTest') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotCompleting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OutOfLevelTest', 'Participated in an out of level test', 'Student participated in an out of level test is specified as the primary reason a participant did not complete an assessment. (may not be in accordance with accountability measures for summative assessments)', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotCompleting] -SET [Description] = 'Participated in an out of level test', [Definition] = 'Student participated in an out of level test is specified as the primary reason a participant did not complete an assessment. (may not be in accordance with accountability measures for summative assessments)', [SortOrder] = 4.00 WHERE [Code] = 'OutOfLevelTest' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotCompleting] WHERE [Code] = 'NoValidScore') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotCompleting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoValidScore', 'No valid score', 'No valid score is specified as the primary reason a participant did not complete an assessment.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotCompleting] -SET [Description] = 'No valid score', [Definition] = 'No valid score is specified as the primary reason a participant did not complete an assessment.', [SortOrder] = 5.00 WHERE [Code] = 'NoValidScore' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotCompleting] WHERE [Code] = 'Medical') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotCompleting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Medical', 'Medical emergency', 'Medical emergency is specified as the primary reason a participant did not complete an assessment.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotCompleting] -SET [Description] = 'Medical emergency', [Definition] = 'Medical emergency is specified as the primary reason a participant did not complete an assessment.', [SortOrder] = 6.00 WHERE [Code] = 'Medical' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotCompleting] WHERE [Code] = 'Moved') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotCompleting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Moved', 'Moved', 'Moved is specified as the primary reason a participant did not complete an assessment.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotCompleting] -SET [Description] = 'Moved', [Definition] = 'Moved is specified as the primary reason a participant did not complete an assessment.', [SortOrder] = 8.00 WHERE [Code] = 'Moved' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotCompleting] WHERE [Code] = 'LeftProgram') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotCompleting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LeftProgram', 'Person left program - unable to locate', 'Person left program - unable to locate is specified as the primary reason a participant did not complete an assessment.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotCompleting] -SET [Description] = 'Person left program - unable to locate', [Definition] = 'Person left program - unable to locate is specified as the primary reason a participant did not complete an assessment.', [SortOrder] = 10.00 WHERE [Code] = 'LeftProgram' END -END - -PRINT N'Populate RefAssessmentReasonNotTested table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentReasonNotTested]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotTested] WHERE [Code] = '03451') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotTested]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03451', 'Absent', 'Absent is the primary reason the student was not tested.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotTested] -SET [Description] = 'Absent', [Definition] = 'Absent is the primary reason the student was not tested.', [SortOrder] = 1.00 WHERE [Code] = '03451' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotTested] WHERE [Code] = '03455') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotTested]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03455', 'Disruptive behavior', 'Disruptive behavior is the primary reason the student was not tested.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotTested] -SET [Description] = 'Disruptive behavior', [Definition] = 'Disruptive behavior is the primary reason the student was not tested.', [SortOrder] = 2.00 WHERE [Code] = '03455' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotTested] WHERE [Code] = '03454') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotTested]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03454', 'Medical waiver', 'Medical waiver is the primary reason the student was not tested.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotTested] -SET [Description] = 'Medical waiver', [Definition] = 'Medical waiver is the primary reason the student was not tested.', [SortOrder] = 3.00 WHERE [Code] = '03454' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotTested] WHERE [Code] = '03456') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotTested]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03456', 'Previously passed the examination', 'Previously passed the examination is the primary reason the student was not tested.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotTested] -SET [Description] = 'Previously passed the examination', [Definition] = 'Previously passed the examination is the primary reason the student was not tested.', [SortOrder] = 4.00 WHERE [Code] = '03456' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotTested] WHERE [Code] = '03452') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotTested]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03452', 'Refusal by parent', 'Refusal by parent is the primary reason the student was not tested.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotTested] -SET [Description] = 'Refusal by parent', [Definition] = 'Refusal by parent is the primary reason the student was not tested.', [SortOrder] = 5.00 WHERE [Code] = '03452' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotTested] WHERE [Code] = '03453') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotTested]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03453', 'Refusal by student', 'Refusal by student is the primary reason the student was not tested.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotTested] -SET [Description] = 'Refusal by student', [Definition] = 'Refusal by student is the primary reason the student was not tested.', [SortOrder] = 6.00 WHERE [Code] = '03453' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentReasonNotTested] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefAssessmentReasonNotTested]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'The primary reason the student was not tested is in a category not yet defined in CEDS.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentReasonNotTested] -SET [Description] = 'Other', [Definition] = 'The primary reason the student was not tested is in a category not yet defined in CEDS.', [SortOrder] = 7.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefAssessmentRegistrationCompletionStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentRegistrationCompletionStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentRegistrationCompletionStatus] WHERE [Code] = 'Appeal') BEGIN INSERT INTO dbo.[RefAssessmentRegistrationCompletionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Appeal', 'Appeal', 'Appeal is specified as the completion and scoring status for an instance of a person taking an assessment.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentRegistrationCompletionStatus] -SET [Description] = 'Appeal', [Definition] = 'Appeal is specified as the completion and scoring status for an instance of a person taking an assessment.', [SortOrder] = 1.00 WHERE [Code] = 'Appeal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentRegistrationCompletionStatus] WHERE [Code] = 'Completed') BEGIN INSERT INTO dbo.[RefAssessmentRegistrationCompletionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Completed', 'Completed', 'Completed is specified as the completion and scoring status for an instance of a person taking an assessment.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentRegistrationCompletionStatus] -SET [Description] = 'Completed', [Definition] = 'Completed is specified as the completion and scoring status for an instance of a person taking an assessment.', [SortOrder] = 3.00 WHERE [Code] = 'Completed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentRegistrationCompletionStatus] WHERE [Code] = 'Expired') BEGIN INSERT INTO dbo.[RefAssessmentRegistrationCompletionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Expired', 'Expired', 'Expired is specified as the completion and scoring status for an instance of a person taking an assessment.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentRegistrationCompletionStatus] -SET [Description] = 'Expired', [Definition] = 'Expired is specified as the completion and scoring status for an instance of a person taking an assessment.', [SortOrder] = 5.00 WHERE [Code] = 'Expired' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentRegistrationCompletionStatus] WHERE [Code] = 'Handscoring') BEGIN INSERT INTO dbo.[RefAssessmentRegistrationCompletionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Handscoring', 'Handscoring', 'Hand scoring is specified as the completion and scoring status for an instance of a person taking an assessment.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentRegistrationCompletionStatus] -SET [Description] = 'Handscoring', [Definition] = 'Hand scoring is specified as the completion and scoring status for an instance of a person taking an assessment.', [SortOrder] = 7.00 WHERE [Code] = 'Handscoring' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentRegistrationCompletionStatus] WHERE [Code] = 'Invalidated') BEGIN INSERT INTO dbo.[RefAssessmentRegistrationCompletionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Invalidated', 'Invalidated', 'Invalidated is specified as the completion and scoring status for an instance of a person taking an assessment.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentRegistrationCompletionStatus] -SET [Description] = 'Invalidated', [Definition] = 'Invalidated is specified as the completion and scoring status for an instance of a person taking an assessment.', [SortOrder] = 9.00 WHERE [Code] = 'Invalidated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentRegistrationCompletionStatus] WHERE [Code] = 'Paused') BEGIN INSERT INTO dbo.[RefAssessmentRegistrationCompletionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Paused', 'Paused', 'Paused is specified as the completion and scoring status for an instance of a person taking an assessment.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentRegistrationCompletionStatus] -SET [Description] = 'Paused', [Definition] = 'Paused is specified as the completion and scoring status for an instance of a person taking an assessment.', [SortOrder] = 11.00 WHERE [Code] = 'Paused' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentRegistrationCompletionStatus] WHERE [Code] = 'Reported') BEGIN INSERT INTO dbo.[RefAssessmentRegistrationCompletionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Reported', 'Reported', 'Reported is specified as the completion and scoring status for an instance of a person taking an assessment.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentRegistrationCompletionStatus] -SET [Description] = 'Reported', [Definition] = 'Reported is specified as the completion and scoring status for an instance of a person taking an assessment.', [SortOrder] = 13.00 WHERE [Code] = 'Reported' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentRegistrationCompletionStatus] WHERE [Code] = 'Reset') BEGIN INSERT INTO dbo.[RefAssessmentRegistrationCompletionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Reset', 'Reset', 'Reset is specified as the completion and scoring status for an instance of a person taking an assessment.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentRegistrationCompletionStatus] -SET [Description] = 'Reset', [Definition] = 'Reset is specified as the completion and scoring status for an instance of a person taking an assessment.', [SortOrder] = 15.00 WHERE [Code] = 'Reset' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentRegistrationCompletionStatus] WHERE [Code] = 'Scored') BEGIN INSERT INTO dbo.[RefAssessmentRegistrationCompletionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Scored', 'Scored', 'Scored is specified as the completion and scoring status for an instance of a person taking an assessment.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentRegistrationCompletionStatus] -SET [Description] = 'Scored', [Definition] = 'Scored is specified as the completion and scoring status for an instance of a person taking an assessment.', [SortOrder] = 17.00 WHERE [Code] = 'Scored' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentRegistrationCompletionStatus] WHERE [Code] = 'Submitted') BEGIN INSERT INTO dbo.[RefAssessmentRegistrationCompletionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Submitted', 'Submitted', 'Submitted is specified as the completion and scoring status for an instance of a person taking an assessment.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentRegistrationCompletionStatus] -SET [Description] = 'Submitted', [Definition] = 'Submitted is specified as the completion and scoring status for an instance of a person taking an assessment.', [SortOrder] = 19.00 WHERE [Code] = 'Submitted' END -END - -PRINT N'Populate RefAssessmentResultDataType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentResultDataType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentResultDataType] WHERE [Code] = 'Integer') BEGIN INSERT INTO dbo.[RefAssessmentResultDataType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Integer', 'Integer', ' A positive or negative whole number or zero such as -2, 4, 4567.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentResultDataType] -SET [Description] = 'Integer', [Definition] = ' A positive or negative whole number or zero such as -2, 4, 4567.', [SortOrder] = 1.00 WHERE [Code] = 'Integer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentResultDataType] WHERE [Code] = 'Decimal') BEGIN INSERT INTO dbo.[RefAssessmentResultDataType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Decimal', 'Decimal', 'A representation of a real number using the base ten and decimal notation, such as 201.4, -3.89, or 0.0006', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentResultDataType] -SET [Description] = 'Decimal', [Definition] = 'A representation of a real number using the base ten and decimal notation, such as 201.4, -3.89, or 0.0006', [SortOrder] = 3.00 WHERE [Code] = 'Decimal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentResultDataType] WHERE [Code] = 'Percentile') BEGIN INSERT INTO dbo.[RefAssessmentResultDataType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Percentile', 'Percentile', 'Any of 100 equal parts into which the range of the values of a set of data can be divided in order to show the distribution of those values. The part may be represented as an integer between 0 and 100, or further broken down into tenths or hundredths. (e.g. 87, 5.2, 45.74)', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentResultDataType] -SET [Description] = 'Percentile', [Definition] = 'Any of 100 equal parts into which the range of the values of a set of data can be divided in order to show the distribution of those values. The part may be represented as an integer between 0 and 100, or further broken down into tenths or hundredths. (e.g. 87, 5.2, 45.74)', [SortOrder] = 5.00 WHERE [Code] = 'Percentile' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentResultDataType] WHERE [Code] = 'String') BEGIN INSERT INTO dbo.[RefAssessmentResultDataType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('String', 'String', 'A string representative of a non-numeric or numeric range value.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentResultDataType] -SET [Description] = 'String', [Definition] = 'A string representative of a non-numeric or numeric range value.', [SortOrder] = 7.00 WHERE [Code] = 'String' END -END - -PRINT N'Populate RefAssessmentResultScoreType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentResultScoreType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentResultScoreType] WHERE [Code] = 'Initial') BEGIN INSERT INTO dbo.[RefAssessmentResultScoreType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Initial', 'An initial assessment score instance.', 'An initial assessment score instance.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentResultScoreType] -SET [Description] = 'An initial assessment score instance.', [Definition] = 'An initial assessment score instance.', [SortOrder] = 1.00 WHERE [Code] = 'Initial' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentResultScoreType] WHERE [Code] = 'Reliability') BEGIN INSERT INTO dbo.[RefAssessmentResultScoreType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Reliability', 'An assessment score instance recorded as a measure of reliability', 'An assessment score instance recorded as a measure of reliability', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentResultScoreType] -SET [Description] = 'An assessment score instance recorded as a measure of reliability', [Definition] = 'An assessment score instance recorded as a measure of reliability', [SortOrder] = 3.00 WHERE [Code] = 'Reliability' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentResultScoreType] WHERE [Code] = 'Resolution') BEGIN INSERT INTO dbo.[RefAssessmentResultScoreType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Resolution', ' An assessment score instance recorded after resolution of scoring or data issues.', ' An assessment score instance recorded after resolution of scoring or data issues.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentResultScoreType] -SET [Description] = ' An assessment score instance recorded after resolution of scoring or data issues.', [Definition] = ' An assessment score instance recorded after resolution of scoring or data issues.', [SortOrder] = 5.00 WHERE [Code] = 'Resolution' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentResultScoreType] WHERE [Code] = 'Backread') BEGIN INSERT INTO dbo.[RefAssessmentResultScoreType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Backread', 'An assessment score recorded to determine whether or not each individual scorer is correctly applying the scoring guide to student responses.', 'An assessment score recorded to determine whether or not each individual scorer is correctly applying the scoring guide to student responses.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentResultScoreType] -SET [Description] = 'An assessment score recorded to determine whether or not each individual scorer is correctly applying the scoring guide to student responses.', [Definition] = 'An assessment score recorded to determine whether or not each individual scorer is correctly applying the scoring guide to student responses.', [SortOrder] = 7.00 WHERE [Code] = 'Backread' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentResultScoreType] WHERE [Code] = 'Final') BEGIN INSERT INTO dbo.[RefAssessmentResultScoreType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Final', 'The final assessment score instance.', 'The final assessment score instance.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentResultScoreType] -SET [Description] = 'The final assessment score instance.', [Definition] = 'The final assessment score instance.', [SortOrder] = 9.00 WHERE [Code] = 'Final' END -END - -PRINT N'Populate RefAssessmentSessionSpecialCircumstanceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentSessionSpecialCircumstanceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13807') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13807', 'Long-term suspension - non-special education', 'Long-term suspension - non-special education is specified as an unusual event occurred during the administration of the assessment. ', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Long-term suspension - non-special education', [Definition] = 'Long-term suspension - non-special education is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 1.00 WHERE [Code] = '13807' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13808') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13808', 'Short-term suspension - non-special education', 'Short-term suspension - non-special education is specified as an unusual event occurred during the administration of the assessment. ', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Short-term suspension - non-special education', [Definition] = 'Short-term suspension - non-special education is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 2.00 WHERE [Code] = '13808' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13809') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13809', 'Suspension - special education', 'Suspension - special education is specified as an unusual event occurred during the administration of the assessment. ', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Suspension - special education', [Definition] = 'Suspension - special education is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 3.00 WHERE [Code] = '13809' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13810') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13810', 'Truancy - paperwork filed', 'Truancy - paperwork filed is specified as an unusual event occurred during the administration of the assessment. ', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Truancy - paperwork filed', [Definition] = 'Truancy - paperwork filed is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 4.00 WHERE [Code] = '13810' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13811') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13811', 'Truancy - no paperwork filed', 'Truancy - no paperwork filed is specified as an unusual event occurred during the administration of the assessment. ', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Truancy - no paperwork filed', [Definition] = 'Truancy - no paperwork filed is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 5.00 WHERE [Code] = '13811' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13812') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13812', 'Earlier truancy', 'Earlier truancy is specified as an unusual event occurred during the administration of the assessment. ', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Earlier truancy', [Definition] = 'Earlier truancy is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 6.00 WHERE [Code] = '13812' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13813') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13813', 'Chronic absences', 'Chronic absences is specified as an unusual event occurred during the administration of the assessment. ', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Chronic absences', [Definition] = 'Chronic absences is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 7.00 WHERE [Code] = '13813' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13814') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13814', 'Catastrophic illness or accident', 'Catastrophic illness or accident is specified as an unusual event occurred during the administration of the assessment. ', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Catastrophic illness or accident', [Definition] = 'Catastrophic illness or accident is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 8.00 WHERE [Code] = '13814' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13815') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13815', 'Home schooled for assessed subjects', 'Home schooled for assessed subjects is specified as an unusual event occurred during the administration of the assessment. ', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Home schooled for assessed subjects', [Definition] = 'Home schooled for assessed subjects is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 9.00 WHERE [Code] = '13815' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13816') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13816', 'Student took this grade level assessment last year', 'Student took this grade level assessment last year is specified as an unusual event occurred during the administration of the assessment. ', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Student took this grade level assessment last year', [Definition] = 'Student took this grade level assessment last year is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 10.00 WHERE [Code] = '13816' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13817') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13817', 'Incarcerated at adult facility', 'Incarcerated at adult facility is specified as an unusual event occurred during the administration of the assessment. ', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Incarcerated at adult facility', [Definition] = 'Incarcerated at adult facility is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 11.00 WHERE [Code] = '13817' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13818') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13818', 'Special treatment center', 'Special treatment center is specified as an unusual event occurred during the administration of the assessment. ', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Special treatment center', [Definition] = 'Special treatment center is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 12.00 WHERE [Code] = '13818' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13819') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13819', 'Special detention center', 'Special detention center is specified as an unusual event occurred during the administration of the assessment. ', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Special detention center', [Definition] = 'Special detention center is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 13.00 WHERE [Code] = '13819' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13820') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13820', 'Parent refusal', 'Parent refusal is specified as an unusual event occurred during the administration of the assessment. ', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Parent refusal', [Definition] = 'Parent refusal is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 14.00 WHERE [Code] = '13820' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13821') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13821', 'Cheating', 'Cheating is specified as an unusual event occurred during the administration of the assessment. ', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Cheating', [Definition] = 'Cheating is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 15.00 WHERE [Code] = '13821' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13822') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13822', 'Psychological factors of emotional trauma', 'Psychological factors of emotional trauma is specified as an unusual event occurred during the administration of the assessment. ', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Psychological factors of emotional trauma', [Definition] = 'Psychological factors of emotional trauma is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 16.00 WHERE [Code] = '13822' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13823') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13823', 'Student not showing adequate effort', 'Student not showing adequate effort is specified as an unusual event occurred during the administration of the assessment. ', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Student not showing adequate effort', [Definition] = 'Student not showing adequate effort is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 17.00 WHERE [Code] = '13823' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13824') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13824', 'Homebound', 'Homebound is specified as an unusual event occurred during the administration of the assessment. ', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Homebound', [Definition] = 'Homebound is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 18.00 WHERE [Code] = '13824' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13825') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13825', 'Foreign exchange student', 'Foreign exchange student is specified as an unusual event occurred during the administration of the assessment. ', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Foreign exchange student', [Definition] = 'Foreign exchange student is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 19.00 WHERE [Code] = '13825' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13826') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13826', 'Student refusal', 'Student refusal is specified as an unusual event occurred during the administration of the assessment. ', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Student refusal', [Definition] = 'Student refusal is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 20.00 WHERE [Code] = '13826' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13827') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13827', 'Reading passage read to student (IEP)', 'Reading passage read to student (IEP) is specified as an unusual event occurred during the administration of the assessment. ', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Reading passage read to student (IEP)', [Definition] = 'Reading passage read to student (IEP) is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 21.00 WHERE [Code] = '13827' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13828') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13828', 'Non-special education student used calculator on non-calculator items', 'Non-special education student used calculator on non-calculator items is specified as an unusual event occurred during the administration of the assessment. ', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Non-special education student used calculator on non-calculator items', [Definition] = 'Non-special education student used calculator on non-calculator items is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 22.00 WHERE [Code] = '13828' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13829') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13829', 'Student used math journal (non-IEP)', 'Student used math journal (non-IEP) is specified as an unusual event occurred during the administration of the assessment. ', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Student used math journal (non-IEP)', [Definition] = 'Student used math journal (non-IEP) is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 23.00 WHERE [Code] = '13829' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13830') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13830', 'Other reason for ineligibility', 'Other reason for ineligibility is specified as an unusual event occurred during the administration of the assessment. ', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Other reason for ineligibility', [Definition] = 'Other reason for ineligibility is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 24.00 WHERE [Code] = '13830' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13831') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13831', 'Other reason for nonparticipation', 'Other reason for nonparticipation is specified as an unusual event occurred during the administration of the assessment. ', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Other reason for nonparticipation', [Definition] = 'Other reason for nonparticipation is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 25.00 WHERE [Code] = '13831' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13832') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13832', 'Left testing', 'Left testing is specified as an unusual event occurred during the administration of the assessment. ', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Left testing', [Definition] = 'Left testing is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 26.00 WHERE [Code] = '13832' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13833') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13833', 'Cross-enrolled', 'Cross-enrolled is specified as an unusual event occurred during the administration of the assessment. ', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Cross-enrolled', [Definition] = 'Cross-enrolled is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 27.00 WHERE [Code] = '13833' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13834') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13834', 'Only for writing', 'Only for writing is specified as an unusual event occurred during the administration of the assessment. ', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Only for writing', [Definition] = 'Only for writing is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 28.00 WHERE [Code] = '13834' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13835') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13835', 'Administration or system failure', 'Administration or system failure is specified as an unusual event occurred during the administration of the assessment. ', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Administration or system failure', [Definition] = 'Administration or system failure is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 29.00 WHERE [Code] = '13835' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13836') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13836', 'Teacher cheating or mis-admin', 'Teacher cheating or mis-admin is specified as an unusual event occurred during the administration of the assessment. ', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Teacher cheating or mis-admin', [Definition] = 'Teacher cheating or mis-admin is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 30.00 WHERE [Code] = '13836' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '13837') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13837', 'Fire alarm', 'Fire alarm is specified as an unusual event occurred during the administration of the assessment. ', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Fire alarm', [Definition] = 'Fire alarm is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 31.00 WHERE [Code] = '13837' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionSpecialCircumstanceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefAssessmentSessionSpecialCircumstanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as an unusual event occurred during the administration of the assessment. ', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionSpecialCircumstanceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as an unusual event occurred during the administration of the assessment. ', [SortOrder] = 32.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefAssessmentSessionStaffRoleType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentSessionStaffRoleType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionStaffRoleType] WHERE [Code] = 'Teacher') BEGIN INSERT INTO dbo.[RefAssessmentSessionStaffRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Teacher', 'Teacher', 'Teacher is specified as the staff role the person served in related to the administration of an assessment session.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionStaffRoleType] -SET [Description] = 'Teacher', [Definition] = 'Teacher is specified as the staff role the person served in related to the administration of an assessment session.', [SortOrder] = 0.00 WHERE [Code] = 'Teacher' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionStaffRoleType] WHERE [Code] = 'Principal') BEGIN INSERT INTO dbo.[RefAssessmentSessionStaffRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Principal', 'Principal', 'Principal is specified as the staff role the person served in related to the administration of an assessment session.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionStaffRoleType] -SET [Description] = 'Principal', [Definition] = 'Principal is specified as the staff role the person served in related to the administration of an assessment session.', [SortOrder] = 2.00 WHERE [Code] = 'Principal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionStaffRoleType] WHERE [Code] = 'Administrator') BEGIN INSERT INTO dbo.[RefAssessmentSessionStaffRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Administrator', 'Administrator', 'Administrator is specified as the staff role the person served in related to the administration of an assessment session.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionStaffRoleType] -SET [Description] = 'Administrator', [Definition] = 'Administrator is specified as the staff role the person served in related to the administration of an assessment session.', [SortOrder] = 4.00 WHERE [Code] = 'Administrator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionStaffRoleType] WHERE [Code] = 'Proctor') BEGIN INSERT INTO dbo.[RefAssessmentSessionStaffRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Proctor', 'Proctor', 'Proctor is specified as the staff role the person served in related to the administration of an assessment session.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionStaffRoleType] -SET [Description] = 'Proctor', [Definition] = 'Proctor is specified as the staff role the person served in related to the administration of an assessment session.', [SortOrder] = 6.00 WHERE [Code] = 'Proctor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionStaffRoleType] WHERE [Code] = 'Observer') BEGIN INSERT INTO dbo.[RefAssessmentSessionStaffRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Observer', 'Observer', 'Observer is specified as the staff role the person served in related to the administration of an assessment session.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionStaffRoleType] -SET [Description] = 'Observer', [Definition] = 'Observer is specified as the staff role the person served in related to the administration of an assessment session.', [SortOrder] = 8.00 WHERE [Code] = 'Observer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionStaffRoleType] WHERE [Code] = 'Scorer') BEGIN INSERT INTO dbo.[RefAssessmentSessionStaffRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Scorer', 'Scorer', 'Scorer is specified as the staff role the person served in related to the administration of an assessment session.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionStaffRoleType] -SET [Description] = 'Scorer', [Definition] = 'Scorer is specified as the staff role the person served in related to the administration of an assessment session.', [SortOrder] = 10.00 WHERE [Code] = 'Scorer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionStaffRoleType] WHERE [Code] = 'Registrar') BEGIN INSERT INTO dbo.[RefAssessmentSessionStaffRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Registrar', 'Registrar', 'Registrar is specified as the staff role the person served in related to the administration of an assessment session.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionStaffRoleType] -SET [Description] = 'Registrar', [Definition] = 'Registrar is specified as the staff role the person served in related to the administration of an assessment session.', [SortOrder] = 12.00 WHERE [Code] = 'Registrar' END -END - -PRINT N'Populate RefAssessmentSessionType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentSessionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionType] WHERE [Code] = 'Standard') BEGIN INSERT INTO dbo.[RefAssessmentSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Standard', 'Standard', 'Standard is specified as the type of assessment session that is scheduled.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionType] -SET [Description] = 'Standard', [Definition] = 'Standard is specified as the type of assessment session that is scheduled.', [SortOrder] = 1.00 WHERE [Code] = 'Standard' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSessionType] WHERE [Code] = 'Accommodation') BEGIN INSERT INTO dbo.[RefAssessmentSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Accommodation', 'Accommodation', 'Accommodation is specified as the type of assessment session that is scheduled.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSessionType] -SET [Description] = 'Accommodation', [Definition] = 'Accommodation is specified as the type of assessment session that is scheduled.', [SortOrder] = 2.00 WHERE [Code] = 'Accommodation' END -END - -PRINT N'Populate RefAssessmentSubtestIdentifierType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentSubtestIdentifierType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSubtestIdentifierType] WHERE [Code] = 'Client') BEGIN INSERT INTO dbo.[RefAssessmentSubtestIdentifierType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Client', 'Client', 'Client is specified as the type of identifier that is provided for a Subtest.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSubtestIdentifierType] -SET [Description] = 'Client', [Definition] = 'Client is specified as the type of identifier that is provided for a Subtest.', [SortOrder] = 1.00 WHERE [Code] = 'Client' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSubtestIdentifierType] WHERE [Code] = 'Publisher') BEGIN INSERT INTO dbo.[RefAssessmentSubtestIdentifierType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Publisher', 'Publisher', 'Publisher is specified as the type of identifier that is provided for a Subtest.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSubtestIdentifierType] -SET [Description] = 'Publisher', [Definition] = 'Publisher is specified as the type of identifier that is provided for a Subtest.', [SortOrder] = 2.00 WHERE [Code] = 'Publisher' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSubtestIdentifierType] WHERE [Code] = 'Internal') BEGIN INSERT INTO dbo.[RefAssessmentSubtestIdentifierType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Internal', 'Internal', 'Internal is specified as the type of identifier that is provided for a Subtest.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSubtestIdentifierType] -SET [Description] = 'Internal', [Definition] = 'Internal is specified as the type of identifier that is provided for a Subtest.', [SortOrder] = 3.00 WHERE [Code] = 'Internal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentSubtestIdentifierType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAssessmentSubtestIdentifierType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is specified as the type of identifier that is provided for a Subtest.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentSubtestIdentifierType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of identifier that is provided for a Subtest.', [SortOrder] = 4.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefAssessmentType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'AchievementTest') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AchievementTest', 'Achievement test', 'Achievement test is specified as the category of an assessment based on format and content.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Achievement test', [Definition] = 'Achievement test is specified as the category of an assessment based on format and content.', [SortOrder] = 1.00 WHERE [Code] = 'AchievementTest' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'AdvancedPlacementTest') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdvancedPlacementTest', 'Advanced placement test', 'Advanced placement test is specified as the category of an assessment based on format and content.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Advanced placement test', [Definition] = 'Advanced placement test is specified as the category of an assessment based on format and content.', [SortOrder] = 2.00 WHERE [Code] = 'AdvancedPlacementTest' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'AlternateAssessmentELL') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AlternateAssessmentELL', 'Alternate assessment/ELL', 'Alternate assessment/ELL is specified as the category of an assessment based on format and content.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Alternate assessment/ELL', [Definition] = 'Alternate assessment/ELL is specified as the category of an assessment based on format and content.', [SortOrder] = 4.00 WHERE [Code] = 'AlternateAssessmentELL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'AlternateAssessmentGradeLevelStandards') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AlternateAssessmentGradeLevelStandards', 'Alternate assessment/grade-level standards', 'Alternate assessment/grade-level standards is specified as the category of an assessment based on format and content.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Alternate assessment/grade-level standards', [Definition] = 'Alternate assessment/grade-level standards is specified as the category of an assessment based on format and content.', [SortOrder] = 6.00 WHERE [Code] = 'AlternateAssessmentGradeLevelStandards' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'AlternativeAssessmentModifiedStandards') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AlternativeAssessmentModifiedStandards', 'Alternative assessment/modified standards', 'Alternative assessment/modified standards is specified as the category of an assessment based on format and content.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Alternative assessment/modified standards', [Definition] = 'Alternative assessment/modified standards is specified as the category of an assessment based on format and content.', [SortOrder] = 8.00 WHERE [Code] = 'AlternativeAssessmentModifiedStandards' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'AptitudeTest') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AptitudeTest', 'Aptitude Test', 'Aptitude Test is specified as the category of an assessment based on format and content.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Aptitude Test', [Definition] = 'Aptitude Test is specified as the category of an assessment based on format and content.', [SortOrder] = 10.00 WHERE [Code] = 'AptitudeTest' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'Benchmark') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Benchmark', 'Benchmark', 'Benchmark is specified as the category of an assessment based on format and content.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Benchmark', [Definition] = 'Benchmark is specified as the category of an assessment based on format and content.', [SortOrder] = 12.00 WHERE [Code] = 'Benchmark' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'CognitiveAndPerceptualSkills') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CognitiveAndPerceptualSkills', 'Cognitive and perceptual skills test', 'Cognitive and perceptual skills test is specified as the category of an assessment based on format and content.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Cognitive and perceptual skills test', [Definition] = 'Cognitive and perceptual skills test is specified as the category of an assessment based on format and content.', [SortOrder] = 14.00 WHERE [Code] = 'CognitiveAndPerceptualSkills' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'ComputerAdaptiveTest') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ComputerAdaptiveTest', 'Computer Adaptive Test', 'Computer Adaptive Test is specified as the category of an assessment based on format and content.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Computer Adaptive Test', [Definition] = 'Computer Adaptive Test is specified as the category of an assessment based on format and content.', [SortOrder] = 15.00 WHERE [Code] = 'ComputerAdaptiveTest' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'DevelopmentalObservation') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DevelopmentalObservation', 'Developmental observation', 'Developmental observation is specified as the category of an assessment based on format and content.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Developmental observation', [Definition] = 'Developmental observation is specified as the category of an assessment based on format and content.', [SortOrder] = 16.00 WHERE [Code] = 'DevelopmentalObservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'Diagnostic') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Diagnostic', 'Diagnostic', 'Diagnostic is specified as the category of an assessment based on format and content.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Diagnostic', [Definition] = 'Diagnostic is specified as the category of an assessment based on format and content.', [SortOrder] = 18.00 WHERE [Code] = 'Diagnostic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'DirectAssessment') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DirectAssessment', 'Direct Assessment', 'Direct Assessment is specified as the category of an assessment based on format and content.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Direct Assessment', [Definition] = 'Direct Assessment is specified as the category of an assessment based on format and content.', [SortOrder] = 20.00 WHERE [Code] = 'DirectAssessment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'Formative') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Formative', 'Formative', 'Formative is specified as the category of an assessment based on format and content.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Formative', [Definition] = 'Formative is specified as the category of an assessment based on format and content.', [SortOrder] = 22.00 WHERE [Code] = 'Formative' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'GrowthMeasure') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GrowthMeasure', 'Growth Measure', 'Growth Measure is specified as the category of an assessment based on format and content.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Growth Measure', [Definition] = 'Growth Measure is specified as the category of an assessment based on format and content.', [SortOrder] = 23.00 WHERE [Code] = 'GrowthMeasure' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'Interim') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Interim', 'Interim', 'Interim is specified as the category of an assessment based on format and content.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Interim', [Definition] = 'Interim is specified as the category of an assessment based on format and content.', [SortOrder] = 24.00 WHERE [Code] = 'Interim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'KindergartenReadiness') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KindergartenReadiness', 'Kindergarten Readiness', 'Kindergarten Readiness is specified as the category of an assessment based on format and content.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Kindergarten Readiness', [Definition] = 'Kindergarten Readiness is specified as the category of an assessment based on format and content.', [SortOrder] = 26.00 WHERE [Code] = 'KindergartenReadiness' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'LanguageProficiency') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LanguageProficiency', 'Language proficiency test', 'Language proficiency test is specified as the category of an assessment based on format and content.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Language proficiency test', [Definition] = 'Language proficiency test is specified as the category of an assessment based on format and content.', [SortOrder] = 28.00 WHERE [Code] = 'LanguageProficiency' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'MentalAbility') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MentalAbility', 'Mental ability (intelligence) test', 'Mental ability (intelligence) test is specified as the category of an assessment based on format and content.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Mental ability (intelligence) test', [Definition] = 'Mental ability (intelligence) test is specified as the category of an assessment based on format and content.', [SortOrder] = 30.00 WHERE [Code] = 'MentalAbility' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'Observation') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Observation', 'Observation', 'Observation is specified as the category of an assessment based on format and content.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Observation', [Definition] = 'Observation is specified as the category of an assessment based on format and content.', [SortOrder] = 32.00 WHERE [Code] = 'Observation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'ParentReport') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ParentReport', 'Parent Report', 'Parent Report is specified as the category of an assessment based on format and content.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Parent Report', [Definition] = 'Parent Report is specified as the category of an assessment based on format and content.', [SortOrder] = 34.00 WHERE [Code] = 'ParentReport' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'PerformanceAssessment') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PerformanceAssessment', 'Performance assessment', 'Performance assessment is specified as the category of an assessment based on format and content.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Performance assessment', [Definition] = 'Performance assessment is specified as the category of an assessment based on format and content.', [SortOrder] = 36.00 WHERE [Code] = 'PerformanceAssessment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'PortfolioAssessment') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PortfolioAssessment', 'Portfolio assessment', 'Portfolio assessment is specified as the category of an assessment based on format and content.', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Portfolio assessment', [Definition] = 'Portfolio assessment is specified as the category of an assessment based on format and content.', [SortOrder] = 38.00 WHERE [Code] = 'PortfolioAssessment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'PrekindergartenReadiness') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrekindergartenReadiness', 'Prekindergarten Readiness', 'Prekindergarten Readiness is specified as the category of an assessment based on format and content.', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Prekindergarten Readiness', [Definition] = 'Prekindergarten Readiness is specified as the category of an assessment based on format and content.', [SortOrder] = 40.00 WHERE [Code] = 'PrekindergartenReadiness' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'ReadingReadiness') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReadingReadiness', 'Reading readiness test', 'Reading readiness test is specified as the category of an assessment based on format and content.', 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Reading readiness test', [Definition] = 'Reading readiness test is specified as the category of an assessment based on format and content.', [SortOrder] = 42.00 WHERE [Code] = 'ReadingReadiness' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'Screening') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Screening', 'Screening', 'Screening is specified as the category of an assessment based on format and content.', 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Screening', [Definition] = 'Screening is specified as the category of an assessment based on format and content.', [SortOrder] = 44.00 WHERE [Code] = 'Screening' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'TeacherReport') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TeacherReport', 'Teacher Report', 'Teacher Report is specified as the category of an assessment based on format and content.', 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Teacher Report', [Definition] = 'Teacher Report is specified as the category of an assessment based on format and content.', [SortOrder] = 46.00 WHERE [Code] = 'TeacherReport' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is specified as the category of an assessment based on format and content.', 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the category of an assessment based on format and content.', [SortOrder] = 48.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefAssessmentTypeAdministered table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentTypeAdministered]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentTypeAdministered] WHERE [Code] = 'REGASSWOACC') BEGIN INSERT INTO dbo.[RefAssessmentTypeAdministered]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REGASSWOACC', 'Regular assessments based on grade-level achievement standards without accommodations', 'Regular assessment based on grade-level achievement standards without accommodations is specified as a type of assessment administered.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentTypeAdministered] -SET [Description] = 'Regular assessments based on grade-level achievement standards without accommodations', [Definition] = 'Regular assessment based on grade-level achievement standards without accommodations is specified as a type of assessment administered.', [SortOrder] = 1.00 WHERE [Code] = 'REGASSWOACC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentTypeAdministered] WHERE [Code] = 'REGASSWACC') BEGIN INSERT INTO dbo.[RefAssessmentTypeAdministered]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REGASSWACC', 'Regular assessments based on grade-level achievement standards with accommodations', 'Regular assessment based on grade-level achievement standards with accommodations is specified as a type of assessment administered.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentTypeAdministered] -SET [Description] = 'Regular assessments based on grade-level achievement standards with accommodations', [Definition] = 'Regular assessment based on grade-level achievement standards with accommodations is specified as a type of assessment administered.', [SortOrder] = 2.00 WHERE [Code] = 'REGASSWACC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentTypeAdministered] WHERE [Code] = 'ALTASSGRADELVL') BEGIN INSERT INTO dbo.[RefAssessmentTypeAdministered]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ALTASSGRADELVL', 'Alternate assessments based on grade-level achievement standards', 'Alternate assessment based on grade-level achievement standards is specified as a type of assessment administered.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentTypeAdministered] -SET [Description] = 'Alternate assessments based on grade-level achievement standards', [Definition] = 'Alternate assessment based on grade-level achievement standards is specified as a type of assessment administered.', [SortOrder] = 3.00 WHERE [Code] = 'ALTASSGRADELVL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentTypeAdministered] WHERE [Code] = 'ALTASSMODACH') BEGIN INSERT INTO dbo.[RefAssessmentTypeAdministered]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ALTASSMODACH', 'Alternate assessments based on modified achievement standards', 'Alternate assessment based on modified achievement standards is specified as a type of assessment administered.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentTypeAdministered] -SET [Description] = 'Alternate assessments based on modified achievement standards', [Definition] = 'Alternate assessment based on modified achievement standards is specified as a type of assessment administered.', [SortOrder] = 4.00 WHERE [Code] = 'ALTASSMODACH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentTypeAdministered] WHERE [Code] = 'ALTASSALTACH') BEGIN INSERT INTO dbo.[RefAssessmentTypeAdministered]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ALTASSALTACH', 'Alternate assessments based on alternate achievement standards', 'Alternate assessment based on alternate achievement standards is specified as a type of assessment administered.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentTypeAdministered] -SET [Description] = 'Alternate assessments based on alternate achievement standards', [Definition] = 'Alternate assessment based on alternate achievement standards is specified as a type of assessment administered.', [SortOrder] = 5.00 WHERE [Code] = 'ALTASSALTACH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentTypeAdministered] WHERE [Code] = 'AgeLevelWithoutAccommodations') BEGIN INSERT INTO dbo.[RefAssessmentTypeAdministered]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AgeLevelWithoutAccommodations', 'Assessment based on age level standards without accommodations', 'Assessment based on age level standards without accommodations is specified as a type of assessment administered.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentTypeAdministered] -SET [Description] = 'Assessment based on age level standards without accommodations', [Definition] = 'Assessment based on age level standards without accommodations is specified as a type of assessment administered.', [SortOrder] = 6.00 WHERE [Code] = 'AgeLevelWithoutAccommodations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentTypeAdministered] WHERE [Code] = 'AgeLevelWithAccommodations') BEGIN INSERT INTO dbo.[RefAssessmentTypeAdministered]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AgeLevelWithAccommodations', 'Assessment based on age level standards with accommodations', 'Assessment based on age level standards without accommodations is specified as a type of assessment administered.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentTypeAdministered] -SET [Description] = 'Assessment based on age level standards with accommodations', [Definition] = 'Assessment based on age level standards without accommodations is specified as a type of assessment administered.', [SortOrder] = 7.00 WHERE [Code] = 'AgeLevelWithAccommodations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentTypeAdministered] WHERE [Code] = 'BelowAgeLevelWithoutAccommodations') BEGIN INSERT INTO dbo.[RefAssessmentTypeAdministered]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BelowAgeLevelWithoutAccommodations', 'Assessment based on standards below age level without accommodations', 'Assessment based on standards below age level without accommodations is specified as a type of assessment administered.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentTypeAdministered] -SET [Description] = 'Assessment based on standards below age level without accommodations', [Definition] = 'Assessment based on standards below age level without accommodations is specified as a type of assessment administered.', [SortOrder] = 8.00 WHERE [Code] = 'BelowAgeLevelWithoutAccommodations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentTypeAdministered] WHERE [Code] = 'BelowAgeLevelWithAccommodations') BEGIN INSERT INTO dbo.[RefAssessmentTypeAdministered]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BelowAgeLevelWithAccommodations', 'Assessment based on standards below age level with accommodations', 'Assessment based on standards below age level with accommodations is specified as a type of assessment administered.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentTypeAdministered] -SET [Description] = 'Assessment based on standards below age level with accommodations', [Definition] = 'Assessment based on standards below age level with accommodations is specified as a type of assessment administered.', [SortOrder] = 9.00 WHERE [Code] = 'BelowAgeLevelWithAccommodations' END -END - -PRINT N'Populate RefAssessmentTypeAdministeredToEnglishLearners table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAssessmentTypeAdministeredToEnglishLearners]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentTypeAdministeredToEnglishLearners] WHERE [Code] = 'ALTELPASMNTALT') BEGIN INSERT INTO dbo.[RefAssessmentTypeAdministeredToEnglishLearners]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ALTELPASMNTALT', 'Alternate English language proficiency (ELP) based on alternate ELP achievement standards', 'Alternate English language proficiency (ELP) assessment based on alternate ELP achievement standards is specified as a type of assessment administered to English Learners.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentTypeAdministeredToEnglishLearners] -SET [Description] = 'Alternate English language proficiency (ELP) based on alternate ELP achievement standards', [Definition] = 'Alternate English language proficiency (ELP) assessment based on alternate ELP achievement standards is specified as a type of assessment administered to English Learners.', [SortOrder] = 1.00 WHERE [Code] = 'ALTELPASMNTALT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentTypeAdministeredToEnglishLearners] WHERE [Code] = 'REGELPASMNT') BEGIN INSERT INTO dbo.[RefAssessmentTypeAdministeredToEnglishLearners]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REGELPASMNT', 'Regular English language proficiency (ELP) assessment', 'Regular English language proficiency (ELP) assessment is specified as a type of assessment administered to English Learners.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentTypeAdministeredToEnglishLearners] -SET [Description] = 'Regular English language proficiency (ELP) assessment', [Definition] = 'Regular English language proficiency (ELP) assessment is specified as a type of assessment administered to English Learners.', [SortOrder] = 2.00 WHERE [Code] = 'REGELPASMNT' END -END - -PRINT N'Populate RefAttendanceEventType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAttendanceEventType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAttendanceEventType] WHERE [Code] = 'DailyAttendance') BEGIN INSERT INTO dbo.[RefAttendanceEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DailyAttendance', 'Daily attendance', 'Daily attendance is specified as the type of attendance event.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAttendanceEventType] -SET [Description] = 'Daily attendance', [Definition] = 'Daily attendance is specified as the type of attendance event.', [SortOrder] = 1.00 WHERE [Code] = 'DailyAttendance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAttendanceEventType] WHERE [Code] = 'ClassSectionAttendance') BEGIN INSERT INTO dbo.[RefAttendanceEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ClassSectionAttendance', 'Class/section attendance', 'Class/section attendance is specified as the type of attendance event.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAttendanceEventType] -SET [Description] = 'Class/section attendance', [Definition] = 'Class/section attendance is specified as the type of attendance event.', [SortOrder] = 2.00 WHERE [Code] = 'ClassSectionAttendance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAttendanceEventType] WHERE [Code] = 'ProgramAttendance') BEGIN INSERT INTO dbo.[RefAttendanceEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ProgramAttendance', 'Program attendance', 'Program attendance is specified as the type of attendance event.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAttendanceEventType] -SET [Description] = 'Program attendance', [Definition] = 'Program attendance is specified as the type of attendance event.', [SortOrder] = 4.00 WHERE [Code] = 'ProgramAttendance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAttendanceEventType] WHERE [Code] = 'ExtracurricularAttendance') BEGIN INSERT INTO dbo.[RefAttendanceEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ExtracurricularAttendance', 'Extracurricular attendance', 'Extracurricular attendance is specified as the type of attendance event.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAttendanceEventType] -SET [Description] = 'Extracurricular attendance', [Definition] = 'Extracurricular attendance is specified as the type of attendance event.', [SortOrder] = 5.00 WHERE [Code] = 'ExtracurricularAttendance' END -END - -PRINT N'Populate RefAttendanceStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAttendanceStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAttendanceStatus] WHERE [Code] = 'Present') BEGIN INSERT INTO dbo.[RefAttendanceStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Present', 'Present', 'Present is specified as the status of a person''s attendance associated with an Attendance Event Type, Calendar Event Date, in an organization-person-role context.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAttendanceStatus] -SET [Description] = 'Present', [Definition] = 'Present is specified as the status of a person''s attendance associated with an Attendance Event Type, Calendar Event Date, in an organization-person-role context.', [SortOrder] = 2.00 WHERE [Code] = 'Present' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAttendanceStatus] WHERE [Code] = 'ExcusedAbsence') BEGIN INSERT INTO dbo.[RefAttendanceStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ExcusedAbsence', 'Excused Absence', 'Not present but is temporarily excused from attendance because the person is: 1) is ill and attendance would endanger his or her health or the health of others; 2) has an immediate family member who is seriously ill or has died; 3) is observing a recognized religious holiday of his or her faith; or 4) is otherwise excused in accordance with policies.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAttendanceStatus] -SET [Description] = 'Excused Absence', [Definition] = 'Not present but is temporarily excused from attendance because the person is: 1) is ill and attendance would endanger his or her health or the health of others; 2) has an immediate family member who is seriously ill or has died; 3) is observing a recognized religious holiday of his or her faith; or 4) is otherwise excused in accordance with policies.', [SortOrder] = 4.00 WHERE [Code] = 'ExcusedAbsence' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAttendanceStatus] WHERE [Code] = 'UnexcusedAbsence') BEGIN INSERT INTO dbo.[RefAttendanceStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UnexcusedAbsence', 'Unexcused Absence', 'Not present without acceptable cause or authorization.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAttendanceStatus] -SET [Description] = 'Unexcused Absence', [Definition] = 'Not present without acceptable cause or authorization.', [SortOrder] = 6.00 WHERE [Code] = 'UnexcusedAbsence' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAttendanceStatus] WHERE [Code] = 'Tardy') BEGIN INSERT INTO dbo.[RefAttendanceStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Tardy', 'Tardy', 'Is absent at the time a given schedule when attendance begins but is present before the close of that time period.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAttendanceStatus] -SET [Description] = 'Tardy', [Definition] = 'Is absent at the time a given schedule when attendance begins but is present before the close of that time period.', [SortOrder] = 8.00 WHERE [Code] = 'Tardy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAttendanceStatus] WHERE [Code] = 'EarlyDeparture') BEGIN INSERT INTO dbo.[RefAttendanceStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EarlyDeparture', 'Early Departure', 'Leaves before the official close of the daily session. Reasons may include a special activity for curricular enrichment, doctor''s appointment, and family emergency. State, local, and school regulations may distinguish excused and unexcused early departures. When officially approved on a regular basis, early departures immediately prior to the close of the session are considered to be released time.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAttendanceStatus] -SET [Description] = 'Early Departure', [Definition] = 'Leaves before the official close of the daily session. Reasons may include a special activity for curricular enrichment, doctor''s appointment, and family emergency. State, local, and school regulations may distinguish excused and unexcused early departures. When officially approved on a regular basis, early departures immediately prior to the close of the session are considered to be released time.', [SortOrder] = 10.00 WHERE [Code] = 'EarlyDeparture' END -END - -PRINT N'Populate RefAuthorizerType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAuthorizerType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAuthorizerType] WHERE [Code] = 'LEARepresentative') BEGIN INSERT INTO dbo.[RefAuthorizerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LEARepresentative', 'LEA Representative', 'LEA Representative is specified as the type of person who authorized the decision or document.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAuthorizerType] -SET [Description] = 'LEA Representative', [Definition] = 'LEA Representative is specified as the type of person who authorized the decision or document.', [SortOrder] = NULL WHERE [Code] = 'LEARepresentative' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAuthorizerType] WHERE [Code] = 'OutsideAgencySupportRepresentative') BEGIN INSERT INTO dbo.[RefAuthorizerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OutsideAgencySupportRepresentative', 'Outside Agency Support Representative', 'Outside Agency Support Representative is specified as the type of person who authorized the decision or document.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAuthorizerType] -SET [Description] = 'Outside Agency Support Representative', [Definition] = 'Outside Agency Support Representative is specified as the type of person who authorized the decision or document.', [SortOrder] = NULL WHERE [Code] = 'OutsideAgencySupportRepresentative' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAuthorizerType] WHERE [Code] = 'Parent/Guardian') BEGIN INSERT INTO dbo.[RefAuthorizerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Parent/Guardian', 'Parent/Guardian', 'Parent/Guardian is specified as the type of person who authorized the decision or document.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAuthorizerType] -SET [Description] = 'Parent/Guardian', [Definition] = 'Parent/Guardian is specified as the type of person who authorized the decision or document.', [SortOrder] = NULL WHERE [Code] = 'Parent/Guardian' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAuthorizerType] WHERE [Code] = 'Staff') BEGIN INSERT INTO dbo.[RefAuthorizerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Staff', 'Staff', 'Staff is specified as the type of person who authorized the decision or document.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAuthorizerType] -SET [Description] = 'Staff', [Definition] = 'Staff is specified as the type of person who authorized the decision or document.', [SortOrder] = NULL WHERE [Code] = 'Staff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAuthorizerType] WHERE [Code] = 'Student') BEGIN INSERT INTO dbo.[RefAuthorizerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Student', 'Student', 'Student is specified as the type of person who authorized the decision or document.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAuthorizerType] -SET [Description] = 'Student', [Definition] = 'Student is specified as the type of person who authorized the decision or document.', [SortOrder] = NULL WHERE [Code] = 'Student' END -END - -PRINT N'Populate RefAypStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAypStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAypStatus] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefAypStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', 'The school met the AYP requirements as determined by the state-established criteria (by method other than growth model).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAypStatus] -SET [Description] = 'Yes', [Definition] = 'The school met the AYP requirements as determined by the state-established criteria (by method other than growth model).', [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAypStatus] WHERE [Code] = 'YesGrowth') BEGIN INSERT INTO dbo.[RefAypStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YesGrowth', 'Yes Growth', 'The school met the AYP requirements as determined by the state-established criteria (by growth model). States need approval from the U.S. Department of Education to use growth models to determine AYP status.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAypStatus] -SET [Description] = 'Yes Growth', [Definition] = 'The school met the AYP requirements as determined by the state-established criteria (by growth model). States need approval from the U.S. Department of Education to use growth models to determine AYP status.', [SortOrder] = 2.00 WHERE [Code] = 'YesGrowth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAypStatus] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefAypStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', 'The school did not meet the AYP requirements as determined by the state-established criteria.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAypStatus] -SET [Description] = 'No', [Definition] = 'The school did not meet the AYP requirements as determined by the state-established criteria.', [SortOrder] = 3.00 WHERE [Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAypStatus] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefAypStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', 'Adequate Yearly Progress Status is not applicable for the school.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAypStatus] -SET [Description] = 'Not applicable', [Definition] = 'Adequate Yearly Progress Status is not applicable for the school.', [SortOrder] = 4.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefBarrierToEducatingHomeless table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBarrierToEducatingHomeless]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBarrierToEducatingHomeless] WHERE [Code] = 'Eligibility') BEGIN INSERT INTO dbo.[RefBarrierToEducatingHomeless]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Eligibility', 'Eligibility for homeless services', 'Eligibility for homeless services is specified as a barrier to the enrollment and success of a homeless child or youth.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBarrierToEducatingHomeless] -SET [Description] = 'Eligibility for homeless services', [Definition] = 'Eligibility for homeless services is specified as a barrier to the enrollment and success of a homeless child or youth.', [SortOrder] = 1.00 WHERE [Code] = 'Eligibility' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBarrierToEducatingHomeless] WHERE [Code] = 'SchoolSelection') BEGIN INSERT INTO dbo.[RefBarrierToEducatingHomeless]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SchoolSelection', 'School selection', 'School selection is specified as a barrier to the enrollment and success of a homeless child or youth.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBarrierToEducatingHomeless] -SET [Description] = 'School selection', [Definition] = 'School selection is specified as a barrier to the enrollment and success of a homeless child or youth.', [SortOrder] = 2.00 WHERE [Code] = 'SchoolSelection' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBarrierToEducatingHomeless] WHERE [Code] = 'Transportation') BEGIN INSERT INTO dbo.[RefBarrierToEducatingHomeless]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Transportation', 'Transportation', 'Transportation is specified as a barrier to the enrollment and success of a homeless child or youth.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBarrierToEducatingHomeless] -SET [Description] = 'Transportation', [Definition] = 'Transportation is specified as a barrier to the enrollment and success of a homeless child or youth.', [SortOrder] = 3.00 WHERE [Code] = 'Transportation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBarrierToEducatingHomeless] WHERE [Code] = 'SchoolRecords') BEGIN INSERT INTO dbo.[RefBarrierToEducatingHomeless]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SchoolRecords', 'School records', 'School records is specified as a barrier to the enrollment and success of a homeless child or youth.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBarrierToEducatingHomeless] -SET [Description] = 'School records', [Definition] = 'School records is specified as a barrier to the enrollment and success of a homeless child or youth.', [SortOrder] = 4.00 WHERE [Code] = 'SchoolRecords' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBarrierToEducatingHomeless] WHERE [Code] = 'Immunizations') BEGIN INSERT INTO dbo.[RefBarrierToEducatingHomeless]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Immunizations', 'Immunizations', 'Immunizations is specified as a barrier to the enrollment and success of a homeless child or youth.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBarrierToEducatingHomeless] -SET [Description] = 'Immunizations', [Definition] = 'Immunizations is specified as a barrier to the enrollment and success of a homeless child or youth.', [SortOrder] = 5.00 WHERE [Code] = 'Immunizations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBarrierToEducatingHomeless] WHERE [Code] = 'OtherMedicalRecords') BEGIN INSERT INTO dbo.[RefBarrierToEducatingHomeless]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherMedicalRecords', 'Other medical records', 'Other medical records is specified as a barrier to the enrollment and success of a homeless child or youth.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBarrierToEducatingHomeless] -SET [Description] = 'Other medical records', [Definition] = 'Other medical records is specified as a barrier to the enrollment and success of a homeless child or youth.', [SortOrder] = 6.00 WHERE [Code] = 'OtherMedicalRecords' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBarrierToEducatingHomeless] WHERE [Code] = 'OtherBarriers') BEGIN INSERT INTO dbo.[RefBarrierToEducatingHomeless]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherBarriers', 'Other barriers', 'Other barriers is specified as a barrier to the enrollment and success of a homeless child or youth.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBarrierToEducatingHomeless] -SET [Description] = 'Other barriers', [Definition] = 'Other barriers is specified as a barrier to the enrollment and success of a homeless child or youth.', [SortOrder] = 7.00 WHERE [Code] = 'OtherBarriers' END -END - -PRINT N'Populate RefBarrierToInternetAccessInResidence table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBarrierToInternetAccessInResidence]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBarrierToInternetAccessInResidence] WHERE [Code] = 'NotAffordable') BEGIN INSERT INTO dbo.[RefBarrierToInternetAccessInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotAffordable', 'Not Affordable', 'The student cannot access the internet in their primary place of residence because internet service is not affordable.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBarrierToInternetAccessInResidence] -SET [Description] = 'Not Affordable', [Definition] = 'The student cannot access the internet in their primary place of residence because internet service is not affordable.', [SortOrder] = 1.00 WHERE [Code] = 'NotAffordable' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBarrierToInternetAccessInResidence] WHERE [Code] = 'NotAvailable') BEGIN INSERT INTO dbo.[RefBarrierToInternetAccessInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotAvailable', 'Not Available', 'The student cannot access the internet in their primary place of residence because internet service is not available.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBarrierToInternetAccessInResidence] -SET [Description] = 'Not Available', [Definition] = 'The student cannot access the internet in their primary place of residence because internet service is not available.', [SortOrder] = 2.00 WHERE [Code] = 'NotAvailable' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBarrierToInternetAccessInResidence] WHERE [Code] = 'NotDesired') BEGIN INSERT INTO dbo.[RefBarrierToInternetAccessInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotDesired', 'Not Desired', 'The student cannot access the internet in their primary place of residence because the parent or guardian chooses not to subscribe to internet service.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBarrierToInternetAccessInResidence] -SET [Description] = 'Not Desired', [Definition] = 'The student cannot access the internet in their primary place of residence because the parent or guardian chooses not to subscribe to internet service.', [SortOrder] = 3.00 WHERE [Code] = 'NotDesired' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBarrierToInternetAccessInResidence] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefBarrierToInternetAccessInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The reason why a student cannot access the internet in their primary place of residence is not yet defined.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBarrierToInternetAccessInResidence] -SET [Description] = 'Other', [Definition] = 'The reason why a student cannot access the internet in their primary place of residence is not yet defined.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefBillableBasisType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBillableBasisType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBillableBasisType] WHERE [Code] = 'FaceToFaceContact') BEGIN INSERT INTO dbo.[RefBillableBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FaceToFaceContact', 'Face-to-Face Contact', 'Face-to-Face Contact is specified as the event/action that results in a billable action.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBillableBasisType] -SET [Description] = 'Face-to-Face Contact', [Definition] = 'Face-to-Face Contact is specified as the event/action that results in a billable action.', [SortOrder] = 1.00 WHERE [Code] = 'FaceToFaceContact' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBillableBasisType] WHERE [Code] = 'EventBased') BEGIN INSERT INTO dbo.[RefBillableBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EventBased', 'Event-based', 'Event-based is specified as the event/action that results in a billable action.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBillableBasisType] -SET [Description] = 'Event-based', [Definition] = 'Event-based is specified as the event/action that results in a billable action.', [SortOrder] = 2.00 WHERE [Code] = 'EventBased' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBillableBasisType] WHERE [Code] = 'TimeBased') BEGIN INSERT INTO dbo.[RefBillableBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TimeBased', 'Time-based', 'Time-based is specified as the event/action that results in a billable action.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBillableBasisType] -SET [Description] = 'Time-based', [Definition] = 'Time-based is specified as the event/action that results in a billable action.', [SortOrder] = 3.00 WHERE [Code] = 'TimeBased' END -END - -PRINT N'Populate RefBlendedLearningModelType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBlendedLearningModelType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBlendedLearningModelType] WHERE [Code] = 'Rotation') BEGIN INSERT INTO dbo.[RefBlendedLearningModelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Rotation', 'Rotation model', 'A model in which within a given course or subject, students rotate between learning modalities, at least one of which is online learning. Other modalities might include activities such as small-group or full-class instruction, group projects, individual tutoring, and pencil-and-paper assignments.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBlendedLearningModelType] -SET [Description] = 'Rotation model', [Definition] = 'A model in which within a given course or subject, students rotate between learning modalities, at least one of which is online learning. Other modalities might include activities such as small-group or full-class instruction, group projects, individual tutoring, and pencil-and-paper assignments.', [SortOrder] = 1.00 WHERE [Code] = 'Rotation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBlendedLearningModelType] WHERE [Code] = 'FlexModel') BEGIN INSERT INTO dbo.[RefBlendedLearningModelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FlexModel', 'Flex model', 'A model in which online learning is the backbone of student learning, even if it directs students to offline activities at times. Students move on an individually customized, fluid schedule among learning modalities, and the teacher of record is on-site. The teacher-of-record or other adults provide face-to-face support on a flexible and adaptive as-needed basis through activities such as small-group instruction, group projects, and individual tutoring.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBlendedLearningModelType] -SET [Description] = 'Flex model', [Definition] = 'A model in which online learning is the backbone of student learning, even if it directs students to offline activities at times. Students move on an individually customized, fluid schedule among learning modalities, and the teacher of record is on-site. The teacher-of-record or other adults provide face-to-face support on a flexible and adaptive as-needed basis through activities such as small-group instruction, group projects, and individual tutoring.', [SortOrder] = 3.00 WHERE [Code] = 'FlexModel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBlendedLearningModelType] WHERE [Code] = 'ALaCarte') BEGIN INSERT INTO dbo.[RefBlendedLearningModelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ALaCarte', 'A La Carte model', 'A model in which students take one or more courses entirely online with an online teacher of record and at the same time continue to have brick-and-mortar educational experiences. Students may take the online courses either on the brick-and-mortar campus or off-site. This differs from full-time online learning and the Enriched Virtual model because it is not a whole-school experience.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBlendedLearningModelType] -SET [Description] = 'A La Carte model', [Definition] = 'A model in which students take one or more courses entirely online with an online teacher of record and at the same time continue to have brick-and-mortar educational experiences. Students may take the online courses either on the brick-and-mortar campus or off-site. This differs from full-time online learning and the Enriched Virtual model because it is not a whole-school experience.', [SortOrder] = 5.00 WHERE [Code] = 'ALaCarte' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBlendedLearningModelType] WHERE [Code] = 'EnrichedVirtual') BEGIN INSERT INTO dbo.[RefBlendedLearningModelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EnrichedVirtual', 'Enriched Virtual model', 'A whole-school experience in which within each course, students divide their time between attending a brick-and-mortar campus and learning remotely, off-site, using online delivery of content and instruction.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBlendedLearningModelType] -SET [Description] = 'Enriched Virtual model', [Definition] = 'A whole-school experience in which within each course, students divide their time between attending a brick-and-mortar campus and learning remotely, off-site, using online delivery of content and instruction.', [SortOrder] = 7.00 WHERE [Code] = 'EnrichedVirtual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBlendedLearningModelType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefBlendedLearningModelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'A model for implementing blended learning that does not fit the definition of the other blended learning model types', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBlendedLearningModelType] -SET [Description] = 'Other', [Definition] = 'A model for implementing blended learning that does not fit the definition of the other blended learning model types', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefBloomsTaxonomyDomain table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBloomsTaxonomyDomain]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBloomsTaxonomyDomain] WHERE [Code] = 'Cognitive') BEGIN INSERT INTO dbo.[RefBloomsTaxonomyDomain]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Cognitive', 'Cognitive', 'mental skills (knowledge)', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBloomsTaxonomyDomain] -SET [Description] = 'Cognitive', [Definition] = 'mental skills (knowledge)', [SortOrder] = 1.00 WHERE [Code] = 'Cognitive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBloomsTaxonomyDomain] WHERE [Code] = 'Affective') BEGIN INSERT INTO dbo.[RefBloomsTaxonomyDomain]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Affective', 'Affective', 'growth in feelings or emotional areas (attitude or self)', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBloomsTaxonomyDomain] -SET [Description] = 'Affective', [Definition] = 'growth in feelings or emotional areas (attitude or self)', [SortOrder] = 2.00 WHERE [Code] = 'Affective' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBloomsTaxonomyDomain] WHERE [Code] = 'Psychomotor') BEGIN INSERT INTO dbo.[RefBloomsTaxonomyDomain]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Psychomotor', 'Psychomotor', 'manual or physical skills (skills)', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBloomsTaxonomyDomain] -SET [Description] = 'Psychomotor', [Definition] = 'manual or physical skills (skills)', [SortOrder] = 3.00 WHERE [Code] = 'Psychomotor' END -END - -PRINT N'Populate RefBuildingAdministrativeSpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingAdministrativeSpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02986') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02986', 'Administrative office/room', 'Administrative office/room is specified as the space designed primarily for conducting administrative and business functions.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Administrative office/room', [Definition] = 'Administrative office/room is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 1.00 WHERE [Code] = '02986' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02747') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02747', 'Attendance reception', 'Attendance reception is specified as the space designed primarily for conducting administrative and business functions.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Attendance reception', [Definition] = 'Attendance reception is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 2.00 WHERE [Code] = '02747' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02744') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02744', 'Clerical areas', 'Clerical areas is specified as the space designed primarily for conducting administrative and business functions.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Clerical areas', [Definition] = 'Clerical areas is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 3.00 WHERE [Code] = '02744' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02746') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02746', 'Conference room', 'Conference room is specified as the space designed primarily for conducting administrative and business functions.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Conference room', [Definition] = 'Conference room is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 4.00 WHERE [Code] = '02746' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02748') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02748', 'General reception', 'General reception is specified as the space designed primarily for conducting administrative and business functions.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'General reception', [Definition] = 'General reception is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 5.00 WHERE [Code] = '02748' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '75032') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75032', 'IT center', 'IT center is specified as the space designed primarily for conducting administrative and business functions.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'IT center', [Definition] = 'IT center is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 6.00 WHERE [Code] = '75032' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02745') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02745', 'Mail room', 'Mail room is specified as the space designed primarily for conducting administrative and business functions.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Mail room', [Definition] = 'Mail room is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 7.00 WHERE [Code] = '02745' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02742') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02742', 'Principal''s office', 'Principal''s office is specified as the space designed primarily for conducting administrative and business functions.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Principal''s office', [Definition] = 'Principal''s office is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 8.00 WHERE [Code] = '02742' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02754') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02754', 'PTO/PTA spaces', 'PTO/PTA spaces is specified as the space designed primarily for conducting administrative and business functions.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'PTO/PTA spaces', [Definition] = 'PTO/PTA spaces is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 9.00 WHERE [Code] = '02754' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02756') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02756', 'Records room/vault', 'Records room/vault is specified as the space designed primarily for conducting administrative and business functions.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Records room/vault', [Definition] = 'Records room/vault is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 10.00 WHERE [Code] = '02756' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02753') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02753', 'School bank', 'School bank is specified as the space designed primarily for conducting administrative and business functions.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'School bank', [Definition] = 'School bank is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 11.00 WHERE [Code] = '02753' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02752') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02752', 'School store', 'School store is specified as the space designed primarily for conducting administrative and business functions.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'School store', [Definition] = 'School store is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 12.00 WHERE [Code] = '02752' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02749') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02749', 'Security/police/probation office', 'Security/police/probation office is specified as the space designed primarily for conducting administrative and business functions.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Security/police/probation office', [Definition] = 'Security/police/probation office is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 13.00 WHERE [Code] = '02749' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02755') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02755', 'Site-based council office', 'Site-based council office is specified as the space designed primarily for conducting administrative and business functions.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Site-based council office', [Definition] = 'Site-based council office is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 14.00 WHERE [Code] = '02755' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02750') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02750', 'Staff lounge', 'Staff lounge is specified as the space designed primarily for conducting administrative and business functions.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Staff lounge', [Definition] = 'Staff lounge is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 15.00 WHERE [Code] = '02750' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02751') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02751', 'Staff work room', 'Staff work room is specified as the space designed primarily for conducting administrative and business functions.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Staff work room', [Definition] = 'Staff work room is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 16.00 WHERE [Code] = '02751' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02759') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02759', 'Storage - instructional equipment', 'Storage for instructional equipment is specified as the space designed primarily for conducting administrative and business functions.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Storage - instructional equipment', [Definition] = 'Storage for instructional equipment is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 17.00 WHERE [Code] = '02759' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02758') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02758', 'Storage - resource materials', 'Storage for resource materials is specified as the space designed primarily for conducting administrative and business functions.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Storage - resource materials', [Definition] = 'Storage for resource materials is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 18.00 WHERE [Code] = '02758' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02757') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02757', 'Storage - textbook', 'Storage for textbook is specified as the space designed primarily for conducting administrative and business functions.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Storage - textbook', [Definition] = 'Storage for textbook is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 19.00 WHERE [Code] = '02757' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '02743') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02743', 'Vice-principal/assistant principal''s office', 'Vice-principal/assistant principal''s office is specified as the space designed primarily for conducting administrative and business functions.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Vice-principal/assistant principal''s office', [Definition] = 'Vice-principal/assistant principal''s office is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 20.00 WHERE [Code] = '02743' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAdministrativeSpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingAdministrativeSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the space designed primarily for conducting administrative and business functions.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAdministrativeSpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the space designed primarily for conducting administrative and business functions.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingAirDistributionSystemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingAirDistributionSystemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAirDistributionSystemType] WHERE [Code] = '02497') BEGIN INSERT INTO dbo.[RefBuildingAirDistributionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02497', 'Air handler units', 'Air handler units is specified as the primary means by which air is circulated, freshened, and exhausted.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAirDistributionSystemType] -SET [Description] = 'Air handler units', [Definition] = 'Air handler units is specified as the primary means by which air is circulated, freshened, and exhausted.', [SortOrder] = 1.00 WHERE [Code] = '02497' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAirDistributionSystemType] WHERE [Code] = '02496') BEGIN INSERT INTO dbo.[RefBuildingAirDistributionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02496', 'Both mechanical exhaust and supply units', 'Both mechanical exhaust and supply units is specified as the primary means by which air is circulated, freshened, and exhausted.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAirDistributionSystemType] -SET [Description] = 'Both mechanical exhaust and supply units', [Definition] = 'Both mechanical exhaust and supply units is specified as the primary means by which air is circulated, freshened, and exhausted.', [SortOrder] = 2.00 WHERE [Code] = '02496' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAirDistributionSystemType] WHERE [Code] = '02493') BEGIN INSERT INTO dbo.[RefBuildingAirDistributionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02493', 'Gravity ventilation units', 'Gravity ventilation units is specified as the primary means by which air is circulated, freshened, and exhausted.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAirDistributionSystemType] -SET [Description] = 'Gravity ventilation units', [Definition] = 'Gravity ventilation units is specified as the primary means by which air is circulated, freshened, and exhausted.', [SortOrder] = 3.00 WHERE [Code] = '02493' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAirDistributionSystemType] WHERE [Code] = '02494') BEGIN INSERT INTO dbo.[RefBuildingAirDistributionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02494', 'Mechanical exhaust units', 'Mechanical exhaust units is specified as the primary means by which air is circulated, freshened, and exhausted.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAirDistributionSystemType] -SET [Description] = 'Mechanical exhaust units', [Definition] = 'Mechanical exhaust units is specified as the primary means by which air is circulated, freshened, and exhausted.', [SortOrder] = 4.00 WHERE [Code] = '02494' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAirDistributionSystemType] WHERE [Code] = '02495') BEGIN INSERT INTO dbo.[RefBuildingAirDistributionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02495', 'Mechanical supply units', 'Mechanical supply units is specified as the primary means by which air is circulated, freshened, and exhausted.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAirDistributionSystemType] -SET [Description] = 'Mechanical supply units', [Definition] = 'Mechanical supply units is specified as the primary means by which air is circulated, freshened, and exhausted.', [SortOrder] = 5.00 WHERE [Code] = '02495' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAirDistributionSystemType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingAirDistributionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other units', 'Other units is specified as the primary means by which air is circulated, freshened, and exhausted.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAirDistributionSystemType] -SET [Description] = 'Other units', [Definition] = 'Other units is specified as the primary means by which air is circulated, freshened, and exhausted.', [SortOrder] = 6.00 WHERE [Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAirDistributionSystemType] WHERE [Code] = '02492') BEGIN INSERT INTO dbo.[RefBuildingAirDistributionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02492', 'Window ventilation units', 'Window ventilation units is specified as the primary means by which air is circulated, freshened, and exhausted.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAirDistributionSystemType] -SET [Description] = 'Window ventilation units', [Definition] = 'Window ventilation units is specified as the primary means by which air is circulated, freshened, and exhausted.', [SortOrder] = 7.00 WHERE [Code] = '02492' END -END - -PRINT N'Populate RefBuildingArtSpecialtySpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingArtSpecialtySpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingArtSpecialtySpaceType] WHERE [Code] = '02644') BEGIN INSERT INTO dbo.[RefBuildingArtSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02644', '2-dimensional art classroom', 'A space for drawing and painting.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingArtSpecialtySpaceType] -SET [Description] = '2-dimensional art classroom', [Definition] = 'A space for drawing and painting.', [SortOrder] = 1.00 WHERE [Code] = '02644' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingArtSpecialtySpaceType] WHERE [Code] = '02645') BEGIN INSERT INTO dbo.[RefBuildingArtSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02645', '3-dimensional art classroom', 'A space for sculpture or three-dimensional art work.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingArtSpecialtySpaceType] -SET [Description] = '3-dimensional art classroom', [Definition] = 'A space for sculpture or three-dimensional art work.', [SortOrder] = 2.00 WHERE [Code] = '02645' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingArtSpecialtySpaceType] WHERE [Code] = '02647') BEGIN INSERT INTO dbo.[RefBuildingArtSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02647', 'Ceramic studio', 'A space with built-in equipment for creating pottery.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingArtSpecialtySpaceType] -SET [Description] = 'Ceramic studio', [Definition] = 'A space with built-in equipment for creating pottery.', [SortOrder] = 3.00 WHERE [Code] = '02647' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingArtSpecialtySpaceType] WHERE [Code] = '02646') BEGIN INSERT INTO dbo.[RefBuildingArtSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02646', 'Darkroom', 'A space with built-in equipment for printing and processing photographic films and papers.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingArtSpecialtySpaceType] -SET [Description] = 'Darkroom', [Definition] = 'A space with built-in equipment for printing and processing photographic films and papers.', [SortOrder] = 4.00 WHERE [Code] = '02646' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingArtSpecialtySpaceType] WHERE [Code] = '02649') BEGIN INSERT INTO dbo.[RefBuildingArtSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02649', 'Kiln room', 'A space with a built-in oven or furnace for pottery making.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingArtSpecialtySpaceType] -SET [Description] = 'Kiln room', [Definition] = 'A space with a built-in oven or furnace for pottery making.', [SortOrder] = 5.00 WHERE [Code] = '02649' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingArtSpecialtySpaceType] WHERE [Code] = '02648') BEGIN INSERT INTO dbo.[RefBuildingArtSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02648', 'Photography studio/graphic arts', 'A space with built-in equipment for producing images.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingArtSpecialtySpaceType] -SET [Description] = 'Photography studio/graphic arts', [Definition] = 'A space with built-in equipment for producing images.', [SortOrder] = 6.00 WHERE [Code] = '02648' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingArtSpecialtySpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingArtSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the space designed to support the teaching and learning of 2 dimensional or 3 dimensional visual arts.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingArtSpecialtySpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the space designed to support the teaching and learning of 2 dimensional or 3 dimensional visual arts.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingAssemblySpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingAssemblySpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAssemblySpaceType] WHERE [Code] = '02768') BEGIN INSERT INTO dbo.[RefBuildingAssemblySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02768', 'Auditorium (fixed seats)', 'A space with a stage and audience seating to accommodate performing arts or other activities for a large audience.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAssemblySpaceType] -SET [Description] = 'Auditorium (fixed seats)', [Definition] = 'A space with a stage and audience seating to accommodate performing arts or other activities for a large audience.', [SortOrder] = 1.00 WHERE [Code] = '02768' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAssemblySpaceType] WHERE [Code] = '02772') BEGIN INSERT INTO dbo.[RefBuildingAssemblySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02772', 'Backstage room/green room', 'A space for actors and actresses to use before and during performances.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAssemblySpaceType] -SET [Description] = 'Backstage room/green room', [Definition] = 'A space for actors and actresses to use before and during performances.', [SortOrder] = 2.00 WHERE [Code] = '02772' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAssemblySpaceType] WHERE [Code] = '02769') BEGIN INSERT INTO dbo.[RefBuildingAssemblySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02769', 'Control room', 'A space adjacent to the auditorium and equipped with a viewing area and built-in projection equipment.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAssemblySpaceType] -SET [Description] = 'Control room', [Definition] = 'A space adjacent to the auditorium and equipped with a viewing area and built-in projection equipment.', [SortOrder] = 3.00 WHERE [Code] = '02769' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAssemblySpaceType] WHERE [Code] = '02770') BEGIN INSERT INTO dbo.[RefBuildingAssemblySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02770', 'Costume storage area', 'A space for costume storage.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAssemblySpaceType] -SET [Description] = 'Costume storage area', [Definition] = 'A space for costume storage.', [SortOrder] = 4.00 WHERE [Code] = '02770' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAssemblySpaceType] WHERE [Code] = '03108') BEGIN INSERT INTO dbo.[RefBuildingAssemblySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03108', 'Disaster shelter area', 'A space that provides temporary shelter for individuals whose residences have been made uninhabitable by fire, flood, earthquake, or other major disaster.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAssemblySpaceType] -SET [Description] = 'Disaster shelter area', [Definition] = 'A space that provides temporary shelter for individuals whose residences have been made uninhabitable by fire, flood, earthquake, or other major disaster.', [SortOrder] = 5.00 WHERE [Code] = '03108' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAssemblySpaceType] WHERE [Code] = '02773') BEGIN INSERT INTO dbo.[RefBuildingAssemblySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02773', 'Multi-purpose Room', 'A space with a stage and movable chairs designed for assemblies, but also usable for other purposes.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAssemblySpaceType] -SET [Description] = 'Multi-purpose Room', [Definition] = 'A space with a stage and movable chairs designed for assemblies, but also usable for other purposes.', [SortOrder] = 6.00 WHERE [Code] = '02773' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAssemblySpaceType] WHERE [Code] = '02771') BEGIN INSERT INTO dbo.[RefBuildingAssemblySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02771', 'Set storage area', 'A space for set storage.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAssemblySpaceType] -SET [Description] = 'Set storage area', [Definition] = 'A space for set storage.', [SortOrder] = 7.00 WHERE [Code] = '02771' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingAssemblySpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingAssemblySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as an area designed primarily for theater productions, assemblies, and other large gatherings.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingAssemblySpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as an area designed primarily for theater productions, assemblies, and other large gatherings.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingBasicClassroomDesignType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingBasicClassroomDesignType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingBasicClassroomDesignType] WHERE [Code] = '01304') BEGIN INSERT INTO dbo.[RefBuildingBasicClassroomDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01304', 'Elementary', 'Elementary is specified as the particular age group for which a classroom is designed for instruction.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingBasicClassroomDesignType] -SET [Description] = 'Elementary', [Definition] = 'Elementary is specified as the particular age group for which a classroom is designed for instruction.', [SortOrder] = 1.00 WHERE [Code] = '01304' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingBasicClassroomDesignType] WHERE [Code] = '01981') BEGIN INSERT INTO dbo.[RefBuildingBasicClassroomDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01981', 'Preschool/early childhood', 'Preschool/early childhood is specified as the particular age group for which a classroom is designed for instruction.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingBasicClassroomDesignType] -SET [Description] = 'Preschool/early childhood', [Definition] = 'Preschool/early childhood is specified as the particular age group for which a classroom is designed for instruction.', [SortOrder] = 2.00 WHERE [Code] = '01981' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingBasicClassroomDesignType] WHERE [Code] = '03495') BEGIN INSERT INTO dbo.[RefBuildingBasicClassroomDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03495', 'Resource', 'Resource is specified as the particular age group for which a classroom is designed for instruction.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingBasicClassroomDesignType] -SET [Description] = 'Resource', [Definition] = 'Resource is specified as the particular age group for which a classroom is designed for instruction.', [SortOrder] = 3.00 WHERE [Code] = '03495' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingBasicClassroomDesignType] WHERE [Code] = '02403') BEGIN INSERT INTO dbo.[RefBuildingBasicClassroomDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02403', 'Secondary', 'Secondary is specified as the particular age group for which a classroom is designed for instruction.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingBasicClassroomDesignType] -SET [Description] = 'Secondary', [Definition] = 'Secondary is specified as the particular age group for which a classroom is designed for instruction.', [SortOrder] = 4.00 WHERE [Code] = '02403' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingBasicClassroomDesignType] WHERE [Code] = '14906') BEGIN INSERT INTO dbo.[RefBuildingBasicClassroomDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14906', 'Skills center', 'Skills center is specified as the particular age group for which a classroom is designed for instruction.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingBasicClassroomDesignType] -SET [Description] = 'Skills center', [Definition] = 'Skills center is specified as the particular age group for which a classroom is designed for instruction.', [SortOrder] = 5.00 WHERE [Code] = '14906' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingBasicClassroomDesignType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingBasicClassroomDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the particular age group for which a classroom is designed for instruction.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingBasicClassroomDesignType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the particular age group for which a classroom is designed for instruction.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingCareerTechEducationSpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingCareerTechEducationSpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02691') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02691', 'Aeronautical technology classroom', 'Aeronautical technology classroom is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Aeronautical technology classroom', [Definition] = 'Aeronautical technology classroom is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 1.00 WHERE [Code] = '02691' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02685') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02685', 'Agricultural/natural resources shop', 'Agricultural/natural resources shop is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Agricultural/natural resources shop', [Definition] = 'Agricultural/natural resources shop is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 2.00 WHERE [Code] = '02685' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02682') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02682', 'Automotive/avionics technology shop', 'Automotive/avionics technology shop is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Automotive/avionics technology shop', [Definition] = 'Automotive/avionics technology shop is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 3.00 WHERE [Code] = '02682' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02687') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02687', 'Barbering and cosmetology shop', 'Barbering and cosmetology shop is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Barbering and cosmetology shop', [Definition] = 'Barbering and cosmetology shop is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 4.00 WHERE [Code] = '02687' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02702') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02702', 'Biotechnology laboratory', 'Biotechnology laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Biotechnology laboratory', [Definition] = 'Biotechnology laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 5.00 WHERE [Code] = '02702' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02692') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02692', 'Building construction technology shop', 'Building construction technology shop is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Building construction technology shop', [Definition] = 'Building construction technology shop is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 6.00 WHERE [Code] = '02692' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02697') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02697', 'Business and administrative services/office management laboratory', 'Business and administrative services/office management laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Business and administrative services/office management laboratory', [Definition] = 'Business and administrative services/office management laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 7.00 WHERE [Code] = '02697' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02678') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02678', 'Computer/information technology laboratory', 'Computer/information technology laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Computer/information technology laboratory', [Definition] = 'Computer/information technology laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 8.00 WHERE [Code] = '02678' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02680') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02680', 'Consumer science - clothing classroom', 'Consumer science, clothing classroom, is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Consumer science - clothing classroom', [Definition] = 'Consumer science, clothing classroom, is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 9.00 WHERE [Code] = '02680' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02679') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02679', 'Consumer science - food classroom', 'Consumer science, food classroom, is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Consumer science - food classroom', [Definition] = 'Consumer science, food classroom, is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 10.00 WHERE [Code] = '02679' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02690') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02690', 'Dental science classroom', 'Dental science classroom is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Dental science classroom', [Definition] = 'Dental science classroom is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 11.00 WHERE [Code] = '02690' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02684') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02684', 'Drafting room/CAD/CAM', 'Drafting room/CAD/CAM is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Drafting room/CAD/CAM', [Definition] = 'Drafting room/CAD/CAM is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 12.00 WHERE [Code] = '02684' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02699') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02699', 'Early childhood laboratory/child care center', 'Early childhood laboratory/child care center is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Early childhood laboratory/child care center', [Definition] = 'Early childhood laboratory/child care center is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 13.00 WHERE [Code] = '02699' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02683') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02683', 'Electronics/engineering technology laboratory', 'Electronics/engineering technology laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Electronics/engineering technology laboratory', [Definition] = 'Electronics/engineering technology laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 14.00 WHERE [Code] = '02683' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02681') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02681', 'Family and consumer science', 'Family and consumer science is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Family and consumer science', [Definition] = 'Family and consumer science is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 15.00 WHERE [Code] = '02681' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02695') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02695', 'Financial services center/bank', 'Financial services center/bank is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Financial services center/bank', [Definition] = 'Financial services center/bank is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 16.00 WHERE [Code] = '02695' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02696') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02696', 'Food services/hospitality laboratory', 'Food services/hospitality laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Food services/hospitality laboratory', [Definition] = 'Food services/hospitality laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 17.00 WHERE [Code] = '02696' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02700') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02700', 'Graphic/digital arts and design studio', 'Graphic/digital arts and design studio is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Graphic/digital arts and design studio', [Definition] = 'Graphic/digital arts and design studio is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 18.00 WHERE [Code] = '02700' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02686') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02686', 'Greenhouse', 'Greenhouse is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Greenhouse', [Definition] = 'Greenhouse is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 19.00 WHERE [Code] = '02686' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02698') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02698', 'Health occupations laboratory', 'Health occupations laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Health occupations laboratory', [Definition] = 'Health occupations laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 20.00 WHERE [Code] = '02698' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02701') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02701', 'Law enforcement/fire technology/protective services laboratory', 'Law enforcement/fire technology/protective services laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Law enforcement/fire technology/protective services laboratory', [Definition] = 'Law enforcement/fire technology/protective services laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 21.00 WHERE [Code] = '02701' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02688') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02688', 'Multimedia production studio/communications', 'Multimedia production studio/communications is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Multimedia production studio/communications', [Definition] = 'Multimedia production studio/communications is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 22.00 WHERE [Code] = '02688' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02693') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02693', 'Precision manufacturing laboratory/metalworking shop', 'Precision manufacturing laboratory/metalworking shop is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Precision manufacturing laboratory/metalworking shop', [Definition] = 'Precision manufacturing laboratory/metalworking shop is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 23.00 WHERE [Code] = '02693' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02694') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02694', 'Retail store/entrepreneurship laboratory', 'Retail store/entrepreneurship laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Retail store/entrepreneurship laboratory', [Definition] = 'Retail store/entrepreneurship laboratory is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 24.00 WHERE [Code] = '02694' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '02689') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02689', 'Wood shop', 'Wood shop is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Wood shop', [Definition] = 'Wood shop is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 25.00 WHERE [Code] = '02689' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCareerTechEducationSpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingCareerTechEducationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCareerTechEducationSpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingCharterSchoolRealtyAccessType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingCharterSchoolRealtyAccessType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCharterSchoolRealtyAccessType] WHERE [Code] = '13691') BEGIN INSERT INTO dbo.[RefBuildingCharterSchoolRealtyAccessType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13691', 'Leasehold', 'Legal interest in real property acquired by a tenant (lessee) when he/she enters into a rental agreement with the owner of the property (landlord or lessor). Normally for a fixed period of time at a specified price, without transfer of ownership.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCharterSchoolRealtyAccessType] -SET [Description] = 'Leasehold', [Definition] = 'Legal interest in real property acquired by a tenant (lessee) when he/she enters into a rental agreement with the owner of the property (landlord or lessor). Normally for a fixed period of time at a specified price, without transfer of ownership.', [SortOrder] = 1.00 WHERE [Code] = '13691' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCharterSchoolRealtyAccessType] WHERE [Code] = '13692') BEGIN INSERT INTO dbo.[RefBuildingCharterSchoolRealtyAccessType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13692', 'Ownership by Charter Non-Profit Corporation', 'The charter non-profit corporation owns the facility and pays for the expenses, including the mortgage payments, utilities, maintenance, and repairs.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCharterSchoolRealtyAccessType] -SET [Description] = 'Ownership by Charter Non-Profit Corporation', [Definition] = 'The charter non-profit corporation owns the facility and pays for the expenses, including the mortgage payments, utilities, maintenance, and repairs.', [SortOrder] = 2.00 WHERE [Code] = '13692' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCharterSchoolRealtyAccessType] WHERE [Code] = '13693') BEGIN INSERT INTO dbo.[RefBuildingCharterSchoolRealtyAccessType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13693', 'Third Party Non-Profit Ownership', 'A third party non-profit corporation owns the facility where the charter school operates in.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCharterSchoolRealtyAccessType] -SET [Description] = 'Third Party Non-Profit Ownership', [Definition] = 'A third party non-profit corporation owns the facility where the charter school operates in.', [SortOrder] = 3.00 WHERE [Code] = '13693' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCharterSchoolRealtyAccessType] WHERE [Code] = '14907') BEGIN INSERT INTO dbo.[RefBuildingCharterSchoolRealtyAccessType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14907', 'Third-party public sector ownership', 'Third-party public sector ownership is specified as the type of real estate vehicle through which a public charter school has access and control of its building space.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCharterSchoolRealtyAccessType] -SET [Description] = 'Third-party public sector ownership', [Definition] = 'Third-party public sector ownership is specified as the type of real estate vehicle through which a public charter school has access and control of its building space.', [SortOrder] = 4.00 WHERE [Code] = '14907' END -END - -PRINT N'Populate RefBuildingCirculationSpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingCirculationSpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCirculationSpaceType] WHERE [Code] = '02516') BEGIN INSERT INTO dbo.[RefBuildingCirculationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02516', 'Elevator', 'Elevator is specified as a space designed to enable people to move within the building.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCirculationSpaceType] -SET [Description] = 'Elevator', [Definition] = 'Elevator is specified as a space designed to enable people to move within the building.', [SortOrder] = 1.00 WHERE [Code] = '02516' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCirculationSpaceType] WHERE [Code] = '02517') BEGIN INSERT INTO dbo.[RefBuildingCirculationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02517', 'Escalator', 'Escalator is specified as a space designed to enable people to move within the building.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCirculationSpaceType] -SET [Description] = 'Escalator', [Definition] = 'Escalator is specified as a space designed to enable people to move within the building.', [SortOrder] = 2.00 WHERE [Code] = '02517' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCirculationSpaceType] WHERE [Code] = '02774') BEGIN INSERT INTO dbo.[RefBuildingCirculationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02774', 'Hallway', 'Hallway is specified as a space designed to enable people to move within the building.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCirculationSpaceType] -SET [Description] = 'Hallway', [Definition] = 'Hallway is specified as a space designed to enable people to move within the building.', [SortOrder] = 3.00 WHERE [Code] = '02774' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCirculationSpaceType] WHERE [Code] = '13619') BEGIN INSERT INTO dbo.[RefBuildingCirculationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13619', 'Handicap Access Ramp', 'Handicap access ramp is specified as a space designed to enable people to move within the building.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCirculationSpaceType] -SET [Description] = 'Handicap Access Ramp', [Definition] = 'Handicap access ramp is specified as a space designed to enable people to move within the building.', [SortOrder] = 4.00 WHERE [Code] = '13619' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCirculationSpaceType] WHERE [Code] = '13593') BEGIN INSERT INTO dbo.[RefBuildingCirculationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13593', 'Lift', 'Lift is specified as a space designed to enable people to move within the building.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCirculationSpaceType] -SET [Description] = 'Lift', [Definition] = 'Lift is specified as a space designed to enable people to move within the building.', [SortOrder] = 5.00 WHERE [Code] = '13593' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCirculationSpaceType] WHERE [Code] = '02776') BEGIN INSERT INTO dbo.[RefBuildingCirculationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02776', 'Lobby', 'Lobby is specified as a space designed to enable people to move within the building.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCirculationSpaceType] -SET [Description] = 'Lobby', [Definition] = 'Lobby is specified as a space designed to enable people to move within the building.', [SortOrder] = 6.00 WHERE [Code] = '02776' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCirculationSpaceType] WHERE [Code] = '13594') BEGIN INSERT INTO dbo.[RefBuildingCirculationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13594', 'Moving Walk', 'Moving walk is specified as a space designed to enable people to move within the building.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCirculationSpaceType] -SET [Description] = 'Moving Walk', [Definition] = 'Moving walk is specified as a space designed to enable people to move within the building.', [SortOrder] = 7.00 WHERE [Code] = '13594' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCirculationSpaceType] WHERE [Code] = '02775') BEGIN INSERT INTO dbo.[RefBuildingCirculationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02775', 'Stairway', 'Stairway is specified as a space designed to enable people to move within the building.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCirculationSpaceType] -SET [Description] = 'Stairway', [Definition] = 'Stairway is specified as a space designed to enable people to move within the building.', [SortOrder] = 8.00 WHERE [Code] = '02775' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCirculationSpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingCirculationSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as a space designed to enable people to move within the building.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCirculationSpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as a space designed to enable people to move within the building.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingCleaningStandardType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingCleaningStandardType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCleaningStandardType] WHERE [Code] = '02831') BEGIN INSERT INTO dbo.[RefBuildingCleaningStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02831', 'Level 1 cleaning', '`Spotless` cleaning, such as might be found in a hospital or corporate suite. One custodian, properly supplied and equipped, should be able to clean 10,000 square feet in an 8-hour period, depending upon the condition and level of utilization of the facility.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCleaningStandardType] -SET [Description] = 'Level 1 cleaning', [Definition] = '`Spotless` cleaning, such as might be found in a hospital or corporate suite. One custodian, properly supplied and equipped, should be able to clean 10,000 square feet in an 8-hour period, depending upon the condition and level of utilization of the facility.', [SortOrder] = 1.00 WHERE [Code] = '02831' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCleaningStandardType] WHERE [Code] = '02832') BEGIN INSERT INTO dbo.[RefBuildingCleaningStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02832', 'Level 2 cleaning', 'Intensive cleaning, reserved for areas such as restrooms, special education areas, kindergarten areas, or food service areas. One custodian, properly supplied and equipped, can clean approximately 11,000-18,000 square feet in an 8-hour period, depending upon the condition and level of utilization of the facility.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCleaningStandardType] -SET [Description] = 'Level 2 cleaning', [Definition] = 'Intensive cleaning, reserved for areas such as restrooms, special education areas, kindergarten areas, or food service areas. One custodian, properly supplied and equipped, can clean approximately 11,000-18,000 square feet in an 8-hour period, depending upon the condition and level of utilization of the facility.', [SortOrder] = 2.00 WHERE [Code] = '02832' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCleaningStandardType] WHERE [Code] = '02833') BEGIN INSERT INTO dbo.[RefBuildingCleaningStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02833', 'Level 3 cleaning', 'Cleaning required to ensure the health and comfort of building users. One custodian, properly supplied and equipped, should be able to clean 19,000-25,000 square feet of space in 8 hours to this standard, depending upon the condition and utilization of the facility.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCleaningStandardType] -SET [Description] = 'Level 3 cleaning', [Definition] = 'Cleaning required to ensure the health and comfort of building users. One custodian, properly supplied and equipped, should be able to clean 19,000-25,000 square feet of space in 8 hours to this standard, depending upon the condition and utilization of the facility.', [SortOrder] = 3.00 WHERE [Code] = '02833' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCleaningStandardType] WHERE [Code] = '02834') BEGIN INSERT INTO dbo.[RefBuildingCleaningStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02834', 'Level 4 cleaning', 'Not generally acceptable for a school environment. One custodian cleans 26,000-46,000 square feet in an 8-hour period.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCleaningStandardType] -SET [Description] = 'Level 4 cleaning', [Definition] = 'Not generally acceptable for a school environment. One custodian cleans 26,000-46,000 square feet in an 8-hour period.', [SortOrder] = 4.00 WHERE [Code] = '02834' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCleaningStandardType] WHERE [Code] = '02835') BEGIN INSERT INTO dbo.[RefBuildingCleaningStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02835', 'Level 5 cleaning', 'Not considered healthy. One custodian, even properly supplied and equipped, will not be able to clean 47,000-80,000 square feet in an 8-hour period, to a healthy standard, whatever the underlying condition or utilization of the facility.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCleaningStandardType] -SET [Description] = 'Level 5 cleaning', [Definition] = 'Not considered healthy. One custodian, even properly supplied and equipped, will not be able to clean 47,000-80,000 square feet in an 8-hour period, to a healthy standard, whatever the underlying condition or utilization of the facility.', [SortOrder] = 5.00 WHERE [Code] = '02835' END -END - -PRINT N'Populate RefBuildingCommMgmtComponentSystemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingCommMgmtComponentSystemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommMgmtComponentSystemType] WHERE [Code] = '02500') BEGIN INSERT INTO dbo.[RefBuildingCommMgmtComponentSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02500', 'Data', 'Data is specified as the type of system, interface, and management components for carrying voice, video, and data throughout a building.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommMgmtComponentSystemType] -SET [Description] = 'Data', [Definition] = 'Data is specified as the type of system, interface, and management components for carrying voice, video, and data throughout a building.', [SortOrder] = 1.00 WHERE [Code] = '02500' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommMgmtComponentSystemType] WHERE [Code] = '14905') BEGIN INSERT INTO dbo.[RefBuildingCommMgmtComponentSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14905', 'Integrated (voice, data, video, etc.)', 'Integrated (voice, data, video, etc.) is specified as the type of system, interface, and management components for carrying voice, video, and data throughout a building.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommMgmtComponentSystemType] -SET [Description] = 'Integrated (voice, data, video, etc.)', [Definition] = 'Integrated (voice, data, video, etc.) is specified as the type of system, interface, and management components for carrying voice, video, and data throughout a building.', [SortOrder] = 2.00 WHERE [Code] = '14905' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommMgmtComponentSystemType] WHERE [Code] = '02501') BEGIN INSERT INTO dbo.[RefBuildingCommMgmtComponentSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02501', 'Public address system', 'Public address system is specified as the type of system, interface, and management components for carrying voice, video, and data throughout a building.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommMgmtComponentSystemType] -SET [Description] = 'Public address system', [Definition] = 'Public address system is specified as the type of system, interface, and management components for carrying voice, video, and data throughout a building.', [SortOrder] = 3.00 WHERE [Code] = '02501' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommMgmtComponentSystemType] WHERE [Code] = '02499') BEGIN INSERT INTO dbo.[RefBuildingCommMgmtComponentSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02499', 'Video', 'Video is specified as the type of system, interface, and management components for carrying voice, video, and data throughout a building.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommMgmtComponentSystemType] -SET [Description] = 'Video', [Definition] = 'Video is specified as the type of system, interface, and management components for carrying voice, video, and data throughout a building.', [SortOrder] = 4.00 WHERE [Code] = '02499' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommMgmtComponentSystemType] WHERE [Code] = '02498') BEGIN INSERT INTO dbo.[RefBuildingCommMgmtComponentSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02498', 'Voice', 'Voice is specified as the type of system, interface, and management components for carrying voice, video, and data throughout a building.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommMgmtComponentSystemType] -SET [Description] = 'Voice', [Definition] = 'Voice is specified as the type of system, interface, and management components for carrying voice, video, and data throughout a building.', [SortOrder] = 5.00 WHERE [Code] = '02498' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommMgmtComponentSystemType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingCommMgmtComponentSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of system, interface, and management components for carrying voice, video, and data throughout a building.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommMgmtComponentSystemType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of system, interface, and management components for carrying voice, video, and data throughout a building.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingCommunityUseSpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingCommunityUseSpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommunityUseSpaceType] WHERE [Code] = '02764') BEGIN INSERT INTO dbo.[RefBuildingCommunityUseSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02764', 'Before- and after-school care', 'Before- and after-school care is specified as the space designed primarily for community or shared use.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommunityUseSpaceType] -SET [Description] = 'Before- and after-school care', [Definition] = 'Before- and after-school care is specified as the space designed primarily for community or shared use.', [SortOrder] = 1.00 WHERE [Code] = '02764' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommunityUseSpaceType] WHERE [Code] = '02760') BEGIN INSERT INTO dbo.[RefBuildingCommunityUseSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02760', 'Before- and after-school office', 'Before- and after-school office is specified as the space designed primarily for community or shared use.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommunityUseSpaceType] -SET [Description] = 'Before- and after-school office', [Definition] = 'Before- and after-school office is specified as the space designed primarily for community or shared use.', [SortOrder] = 2.00 WHERE [Code] = '02760' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommunityUseSpaceType] WHERE [Code] = '02761') BEGIN INSERT INTO dbo.[RefBuildingCommunityUseSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02761', 'Child care and development space', 'Child care and development space is specified as the space designed primarily for community or shared use.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommunityUseSpaceType] -SET [Description] = 'Child care and development space', [Definition] = 'Child care and development space is specified as the space designed primarily for community or shared use.', [SortOrder] = 3.00 WHERE [Code] = '02761' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommunityUseSpaceType] WHERE [Code] = '02765') BEGIN INSERT INTO dbo.[RefBuildingCommunityUseSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02765', 'Community room', 'Community room is specified as the space designed primarily for community or shared use.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommunityUseSpaceType] -SET [Description] = 'Community room', [Definition] = 'Community room is specified as the space designed primarily for community or shared use.', [SortOrder] = 4.00 WHERE [Code] = '02765' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommunityUseSpaceType] WHERE [Code] = '02767') BEGIN INSERT INTO dbo.[RefBuildingCommunityUseSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02767', 'Family resource center', 'Family resource center is specified as the space designed primarily for community or shared use.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommunityUseSpaceType] -SET [Description] = 'Family resource center', [Definition] = 'Family resource center is specified as the space designed primarily for community or shared use.', [SortOrder] = 5.00 WHERE [Code] = '02767' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommunityUseSpaceType] WHERE [Code] = '02766') BEGIN INSERT INTO dbo.[RefBuildingCommunityUseSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02766', 'Full-service health clinic', 'Full-service health clinic is specified as the space designed primarily for community or shared use.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommunityUseSpaceType] -SET [Description] = 'Full-service health clinic', [Definition] = 'Full-service health clinic is specified as the space designed primarily for community or shared use.', [SortOrder] = 6.00 WHERE [Code] = '02766' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommunityUseSpaceType] WHERE [Code] = '02987') BEGIN INSERT INTO dbo.[RefBuildingCommunityUseSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02987', 'Head Start space', 'Head Start space is specified as the space designed primarily for community or shared use.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommunityUseSpaceType] -SET [Description] = 'Head Start space', [Definition] = 'Head Start space is specified as the space designed primarily for community or shared use.', [SortOrder] = 7.00 WHERE [Code] = '02987' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommunityUseSpaceType] WHERE [Code] = '02762') BEGIN INSERT INTO dbo.[RefBuildingCommunityUseSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02762', 'Health clinic', 'Health clinic is specified as the space designed primarily for community or shared use.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommunityUseSpaceType] -SET [Description] = 'Health clinic', [Definition] = 'Health clinic is specified as the space designed primarily for community or shared use.', [SortOrder] = 8.00 WHERE [Code] = '02762' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommunityUseSpaceType] WHERE [Code] = '02763') BEGIN INSERT INTO dbo.[RefBuildingCommunityUseSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02763', 'Parent room', 'Parent room is specified as the space designed primarily for community or shared use.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommunityUseSpaceType] -SET [Description] = 'Parent room', [Definition] = 'Parent room is specified as the space designed primarily for community or shared use.', [SortOrder] = 9.00 WHERE [Code] = '02763' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCommunityUseSpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingCommunityUseSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the space designed primarily for community or shared use.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCommunityUseSpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the space designed primarily for community or shared use.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingCoolingGenerationSystemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingCoolingGenerationSystemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCoolingGenerationSystemType] WHERE [Code] = '02490') BEGIN INSERT INTO dbo.[RefBuildingCoolingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02490', 'Ceiling fans or ventilation fans', 'Ceiling fans or ventilation fans is specified as the type of mechanical systems and building designs used for cooling.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCoolingGenerationSystemType] -SET [Description] = 'Ceiling fans or ventilation fans', [Definition] = 'Ceiling fans or ventilation fans is specified as the type of mechanical systems and building designs used for cooling.', [SortOrder] = 1.00 WHERE [Code] = '02490' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCoolingGenerationSystemType] WHERE [Code] = '02486') BEGIN INSERT INTO dbo.[RefBuildingCoolingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02486', 'Central cooling system', 'Central cooling system is specified as the type of mechanical systems and building designs used for cooling.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCoolingGenerationSystemType] -SET [Description] = 'Central cooling system', [Definition] = 'Central cooling system is specified as the type of mechanical systems and building designs used for cooling.', [SortOrder] = 2.00 WHERE [Code] = '02486' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCoolingGenerationSystemType] WHERE [Code] = '02489') BEGIN INSERT INTO dbo.[RefBuildingCoolingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02489', 'Combination cooling systems', 'Combination cooling systems is specified as the type of mechanical systems and building designs used for cooling.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCoolingGenerationSystemType] -SET [Description] = 'Combination cooling systems', [Definition] = 'Combination cooling systems is specified as the type of mechanical systems and building designs used for cooling.', [SortOrder] = 3.00 WHERE [Code] = '02489' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCoolingGenerationSystemType] WHERE [Code] = '02488') BEGIN INSERT INTO dbo.[RefBuildingCoolingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02488', 'Individual (room) unit cooling system', 'Individual (room) unit cooling system is specified as the type of mechanical systems and building designs used for cooling.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCoolingGenerationSystemType] -SET [Description] = 'Individual (room) unit cooling system', [Definition] = 'Individual (room) unit cooling system is specified as the type of mechanical systems and building designs used for cooling.', [SortOrder] = 4.00 WHERE [Code] = '02488' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCoolingGenerationSystemType] WHERE [Code] = '02487') BEGIN INSERT INTO dbo.[RefBuildingCoolingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02487', 'Local zone cooling system', 'Local zone cooling system is specified as the type of mechanical systems and building designs used for cooling.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCoolingGenerationSystemType] -SET [Description] = 'Local zone cooling system', [Definition] = 'Local zone cooling system is specified as the type of mechanical systems and building designs used for cooling.', [SortOrder] = 5.00 WHERE [Code] = '02487' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCoolingGenerationSystemType] WHERE [Code] = '02491') BEGIN INSERT INTO dbo.[RefBuildingCoolingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02491', 'Natural systems', 'Natural systems is specified as the type of mechanical systems and building designs used for cooling.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCoolingGenerationSystemType] -SET [Description] = 'Natural systems', [Definition] = 'Natural systems is specified as the type of mechanical systems and building designs used for cooling.', [SortOrder] = 6.00 WHERE [Code] = '02491' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCoolingGenerationSystemType] WHERE [Code] = '09998') BEGIN INSERT INTO dbo.[RefBuildingCoolingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09998', 'None', 'No type of mechanical systems and building designs used for cooling is specified.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCoolingGenerationSystemType] -SET [Description] = 'None', [Definition] = 'No type of mechanical systems and building designs used for cooling is specified.', [SortOrder] = 7.00 WHERE [Code] = '09998' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingCoolingGenerationSystemType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingCoolingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of mechanical systems and building designs used for cooling.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingCoolingGenerationSystemType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of mechanical systems and building designs used for cooling.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingDesignType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingDesignType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingDesignType] WHERE [Code] = '02621') BEGIN INSERT INTO dbo.[RefBuildingDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02621', 'Assembly building', 'A free-standing building used for large gatherings for school or agency-related activities of students, staff, and public.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingDesignType] -SET [Description] = 'Assembly building', [Definition] = 'A free-standing building used for large gatherings for school or agency-related activities of students, staff, and public.', [SortOrder] = 1.00 WHERE [Code] = '02621' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingDesignType] WHERE [Code] = '02614') BEGIN INSERT INTO dbo.[RefBuildingDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02614', 'Central kitchen building', 'A building designed to accommodate storage and preparation of food.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingDesignType] -SET [Description] = 'Central kitchen building', [Definition] = 'A building designed to accommodate storage and preparation of food.', [SortOrder] = 2.00 WHERE [Code] = '02614' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingDesignType] WHERE [Code] = '02619') BEGIN INSERT INTO dbo.[RefBuildingDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02619', 'Dormitory building', 'A building that houses student residences.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingDesignType] -SET [Description] = 'Dormitory building', [Definition] = 'A building that houses student residences.', [SortOrder] = 3.00 WHERE [Code] = '02619' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingDesignType] WHERE [Code] = '02616') BEGIN INSERT INTO dbo.[RefBuildingDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02616', 'Field house building', 'A free-standing building designed to service athletic facilities, athletes, and athletic events.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingDesignType] -SET [Description] = 'Field house building', [Definition] = 'A free-standing building designed to service athletic facilities, athletes, and athletic events.', [SortOrder] = 4.00 WHERE [Code] = '02616' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingDesignType] WHERE [Code] = '02613') BEGIN INSERT INTO dbo.[RefBuildingDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02613', 'Garage building', 'A building that houses the storage and repair of vehicles.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingDesignType] -SET [Description] = 'Garage building', [Definition] = 'A building that houses the storage and repair of vehicles.', [SortOrder] = 5.00 WHERE [Code] = '02613' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingDesignType] WHERE [Code] = '02620') BEGIN INSERT INTO dbo.[RefBuildingDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02620', 'Gymnasium building', 'A free-standing building for athletic practices and events.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingDesignType] -SET [Description] = 'Gymnasium building', [Definition] = 'A free-standing building for athletic practices and events.', [SortOrder] = 6.00 WHERE [Code] = '02620' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingDesignType] WHERE [Code] = '02617') BEGIN INSERT INTO dbo.[RefBuildingDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02617', 'Media production center building', 'A building that houses support communications activities, including newspaper, radio, or television productions.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingDesignType] -SET [Description] = 'Media production center building', [Definition] = 'A building that houses support communications activities, including newspaper, radio, or television productions.', [SortOrder] = 7.00 WHERE [Code] = '02617' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingDesignType] WHERE [Code] = '02618') BEGIN INSERT INTO dbo.[RefBuildingDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02618', 'Natatorium', 'A building that houses swimming and diving activities, including supporting requirements such as lockers and changing areas.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingDesignType] -SET [Description] = 'Natatorium', [Definition] = 'A building that houses swimming and diving activities, including supporting requirements such as lockers and changing areas.', [SortOrder] = 8.00 WHERE [Code] = '02618' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingDesignType] WHERE [Code] = '02611') BEGIN INSERT INTO dbo.[RefBuildingDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02611', 'Office building', 'A building that houses administrative functions.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingDesignType] -SET [Description] = 'Office building', [Definition] = 'A building that houses administrative functions.', [SortOrder] = 9.00 WHERE [Code] = '02611' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingDesignType] WHERE [Code] = '03106') BEGIN INSERT INTO dbo.[RefBuildingDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03106', 'School building', 'A building that houses instructional and related activities associated with the education of students.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingDesignType] -SET [Description] = 'School building', [Definition] = 'A building that houses instructional and related activities associated with the education of students.', [SortOrder] = 10.00 WHERE [Code] = '03106' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingDesignType] WHERE [Code] = '02610') BEGIN INSERT INTO dbo.[RefBuildingDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02610', 'Service center building', 'A building that houses support services to students and their families, not direct instruction.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingDesignType] -SET [Description] = 'Service center building', [Definition] = 'A building that houses support services to students and their families, not direct instruction.', [SortOrder] = 11.00 WHERE [Code] = '02610' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingDesignType] WHERE [Code] = '02615') BEGIN INSERT INTO dbo.[RefBuildingDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02615', 'Stadium building', 'An outdoor building designed for athletic events with large audiences.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingDesignType] -SET [Description] = 'Stadium building', [Definition] = 'An outdoor building designed for athletic events with large audiences.', [SortOrder] = 12.00 WHERE [Code] = '02615' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingDesignType] WHERE [Code] = '02612') BEGIN INSERT INTO dbo.[RefBuildingDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02612', 'Warehouse building', 'A building that houses the storage of materials and supplies.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingDesignType] -SET [Description] = 'Warehouse building', [Definition] = 'A building that houses the storage of materials and supplies.', [SortOrder] = 13.00 WHERE [Code] = '02612' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingDesignType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the primary design or purpose of a building, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingDesignType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the primary design or purpose of a building, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingElectricalSystemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingElectricalSystemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingElectricalSystemType] WHERE [Code] = '02476') BEGIN INSERT INTO dbo.[RefBuildingElectricalSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02476', 'Circuit breakers', 'Circuit breakers is specified as the component and system required to distribute electricity throughout the building or site.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingElectricalSystemType] -SET [Description] = 'Circuit breakers', [Definition] = 'Circuit breakers is specified as the component and system required to distribute electricity throughout the building or site.', [SortOrder] = 1.00 WHERE [Code] = '02476' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingElectricalSystemType] WHERE [Code] = '13570') BEGIN INSERT INTO dbo.[RefBuildingElectricalSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13570', 'Communications and security', 'Communications and security is specified as the component and system required to distribute electricity throughout the building or site.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingElectricalSystemType] -SET [Description] = 'Communications and security', [Definition] = 'Communications and security is specified as the component and system required to distribute electricity throughout the building or site.', [SortOrder] = 2.00 WHERE [Code] = '13570' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingElectricalSystemType] WHERE [Code] = '02473') BEGIN INSERT INTO dbo.[RefBuildingElectricalSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02473', 'Electrical distribution', 'Electrical distribution is specified as the component and system required to distribute electricity throughout the building or site.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingElectricalSystemType] -SET [Description] = 'Electrical distribution', [Definition] = 'Electrical distribution is specified as the component and system required to distribute electricity throughout the building or site.', [SortOrder] = 3.00 WHERE [Code] = '02473' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingElectricalSystemType] WHERE [Code] = '02475') BEGIN INSERT INTO dbo.[RefBuildingElectricalSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02475', 'Electrical interface', 'Electrical interface is specified as the component and system required to distribute electricity throughout the building or site.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingElectricalSystemType] -SET [Description] = 'Electrical interface', [Definition] = 'Electrical interface is specified as the component and system required to distribute electricity throughout the building or site.', [SortOrder] = 4.00 WHERE [Code] = '02475' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingElectricalSystemType] WHERE [Code] = '13571') BEGIN INSERT INTO dbo.[RefBuildingElectricalSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13571', 'Electrical service and distribution', 'Electrical service and distribution is specified as the component and system required to distribute electricity throughout the building or site.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingElectricalSystemType] -SET [Description] = 'Electrical service and distribution', [Definition] = 'Electrical service and distribution is specified as the component and system required to distribute electricity throughout the building or site.', [SortOrder] = 5.00 WHERE [Code] = '13571' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingElectricalSystemType] WHERE [Code] = '02472') BEGIN INSERT INTO dbo.[RefBuildingElectricalSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02472', 'Electrical supply', 'Electrical supply is specified as the component and system required to distribute electricity throughout the building or site.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingElectricalSystemType] -SET [Description] = 'Electrical supply', [Definition] = 'Electrical supply is specified as the component and system required to distribute electricity throughout the building or site.', [SortOrder] = 6.00 WHERE [Code] = '02472' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingElectricalSystemType] WHERE [Code] = '02474') BEGIN INSERT INTO dbo.[RefBuildingElectricalSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02474', 'Emergency generator', 'Emergency generator is specified as the component and system required to distribute electricity throughout the building or site.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingElectricalSystemType] -SET [Description] = 'Emergency generator', [Definition] = 'Emergency generator is specified as the component and system required to distribute electricity throughout the building or site.', [SortOrder] = 7.00 WHERE [Code] = '02474' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingElectricalSystemType] WHERE [Code] = '13572') BEGIN INSERT INTO dbo.[RefBuildingElectricalSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13572', 'Lighting and branch wiring', 'Lighting and branch wiring is specified as the component and system required to distribute electricity throughout the building or site.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingElectricalSystemType] -SET [Description] = 'Lighting and branch wiring', [Definition] = 'Lighting and branch wiring is specified as the component and system required to distribute electricity throughout the building or site.', [SortOrder] = 8.00 WHERE [Code] = '13572' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingElectricalSystemType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingElectricalSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the component and system required to distribute electricity throughout the building or site.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingElectricalSystemType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the component and system required to distribute electricity throughout the building or site.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingEnergyConservationMeasureType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingEnergyConservationMeasureType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergyConservationMeasureType] WHERE [Code] = '13653') BEGIN INSERT INTO dbo.[RefBuildingEnergyConservationMeasureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13653', 'Daylighting', 'Practice of using natural light, rather than electric lights, to illuminate a space.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergyConservationMeasureType] -SET [Description] = 'Daylighting', [Definition] = 'Practice of using natural light, rather than electric lights, to illuminate a space.', [SortOrder] = 1.00 WHERE [Code] = '13653' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergyConservationMeasureType] WHERE [Code] = '13654') BEGIN INSERT INTO dbo.[RefBuildingEnergyConservationMeasureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13654', 'Delamping', 'Process of removing lamps from a light fixture--for example, using only 2 fluorescent tubes in a 3-tube fixture--wherever there is extra light.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergyConservationMeasureType] -SET [Description] = 'Delamping', [Definition] = 'Process of removing lamps from a light fixture--for example, using only 2 fluorescent tubes in a 3-tube fixture--wherever there is extra light.', [SortOrder] = 2.00 WHERE [Code] = '13654' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergyConservationMeasureType] WHERE [Code] = '02848') BEGIN INSERT INTO dbo.[RefBuildingEnergyConservationMeasureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02848', 'HVAC replacement', 'The replacement of a HVAC system with one that is more energy efficient.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergyConservationMeasureType] -SET [Description] = 'HVAC replacement', [Definition] = 'The replacement of a HVAC system with one that is more energy efficient.', [SortOrder] = 3.00 WHERE [Code] = '02848' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergyConservationMeasureType] WHERE [Code] = '02847') BEGIN INSERT INTO dbo.[RefBuildingEnergyConservationMeasureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02847', 'Installation of energy controls', 'The installation of energy controls that increase the energy efficiency of a building.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergyConservationMeasureType] -SET [Description] = 'Installation of energy controls', [Definition] = 'The installation of energy controls that increase the energy efficiency of a building.', [SortOrder] = 4.00 WHERE [Code] = '02847' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergyConservationMeasureType] WHERE [Code] = '14904') BEGIN INSERT INTO dbo.[RefBuildingEnergyConservationMeasureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14904', 'Installation of solar equipment', 'Installation of solar equipment is specified as the type of modification to, or replacement of, a piece of equipment or building shell/system that increases energy efficiency.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergyConservationMeasureType] -SET [Description] = 'Installation of solar equipment', [Definition] = 'Installation of solar equipment is specified as the type of modification to, or replacement of, a piece of equipment or building shell/system that increases energy efficiency.', [SortOrder] = 5.00 WHERE [Code] = '14904' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergyConservationMeasureType] WHERE [Code] = '02850') BEGIN INSERT INTO dbo.[RefBuildingEnergyConservationMeasureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02850', 'Insulation improvements', 'The replacement or addition of insulation to a building to make it more energy efficient.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergyConservationMeasureType] -SET [Description] = 'Insulation improvements', [Definition] = 'The replacement or addition of insulation to a building to make it more energy efficient.', [SortOrder] = 6.00 WHERE [Code] = '02850' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergyConservationMeasureType] WHERE [Code] = '02849') BEGIN INSERT INTO dbo.[RefBuildingEnergyConservationMeasureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02849', 'Lighting replacement', 'The replacement of lighting systems or fixtures with those that are more energy efficient.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergyConservationMeasureType] -SET [Description] = 'Lighting replacement', [Definition] = 'The replacement of lighting systems or fixtures with those that are more energy efficient.', [SortOrder] = 7.00 WHERE [Code] = '02849' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergyConservationMeasureType] WHERE [Code] = '14903') BEGIN INSERT INTO dbo.[RefBuildingEnergyConservationMeasureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14903', 'Relamping', 'The replacement of lamps that are not performing at peak performance.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergyConservationMeasureType] -SET [Description] = 'Relamping', [Definition] = 'The replacement of lamps that are not performing at peak performance.', [SortOrder] = 8.00 WHERE [Code] = '14903' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergyConservationMeasureType] WHERE [Code] = '02846') BEGIN INSERT INTO dbo.[RefBuildingEnergyConservationMeasureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02846', 'Window replacement', 'The replacement of windows in a building with those that increase energy efficiency.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergyConservationMeasureType] -SET [Description] = 'Window replacement', [Definition] = 'The replacement of windows in a building with those that increase energy efficiency.', [SortOrder] = 9.00 WHERE [Code] = '02846' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergyConservationMeasureType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingEnergyConservationMeasureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of modification to, or replacement of, a piece of equipment or building shell/system that increases energy efficiency.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergyConservationMeasureType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of modification to, or replacement of, a piece of equipment or building shell/system that increases energy efficiency.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingEnergySourceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingEnergySourceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergySourceType] WHERE [Code] = '13655') BEGIN INSERT INTO dbo.[RefBuildingEnergySourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13655', 'Biomass', 'Biomass is specified as the source of energy that directly powers a school district facility or building system.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergySourceType] -SET [Description] = 'Biomass', [Definition] = 'Biomass is specified as the source of energy that directly powers a school district facility or building system.', [SortOrder] = 1.00 WHERE [Code] = '13655' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergySourceType] WHERE [Code] = '02858') BEGIN INSERT INTO dbo.[RefBuildingEnergySourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02858', 'Coal', 'Coal is specified as the source of energy that directly powers a school district facility or building system.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergySourceType] -SET [Description] = 'Coal', [Definition] = 'Coal is specified as the source of energy that directly powers a school district facility or building system.', [SortOrder] = 2.00 WHERE [Code] = '02858' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergySourceType] WHERE [Code] = '02854') BEGIN INSERT INTO dbo.[RefBuildingEnergySourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02854', 'Electric', 'Electric is specified as the source of energy that directly powers a school district facility or building system.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergySourceType] -SET [Description] = 'Electric', [Definition] = 'Electric is specified as the source of energy that directly powers a school district facility or building system.', [SortOrder] = 3.00 WHERE [Code] = '02854' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergySourceType] WHERE [Code] = '02853') BEGIN INSERT INTO dbo.[RefBuildingEnergySourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02853', 'Gas', 'Gas is specified as the source of energy that directly powers a school district facility or building system.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergySourceType] -SET [Description] = 'Gas', [Definition] = 'Gas is specified as the source of energy that directly powers a school district facility or building system.', [SortOrder] = 4.00 WHERE [Code] = '02853' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergySourceType] WHERE [Code] = '02857') BEGIN INSERT INTO dbo.[RefBuildingEnergySourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02857', 'Geothermal', 'Geothermal is specified as the source of energy that directly powers a school district facility or building system.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergySourceType] -SET [Description] = 'Geothermal', [Definition] = 'Geothermal is specified as the source of energy that directly powers a school district facility or building system.', [SortOrder] = 5.00 WHERE [Code] = '02857' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergySourceType] WHERE [Code] = '02859') BEGIN INSERT INTO dbo.[RefBuildingEnergySourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02859', 'Nuclear', 'Nuclear is specified as the source of energy that directly powers a school district facility or building system.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergySourceType] -SET [Description] = 'Nuclear', [Definition] = 'Nuclear is specified as the source of energy that directly powers a school district facility or building system.', [SortOrder] = 6.00 WHERE [Code] = '02859' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergySourceType] WHERE [Code] = '02842') BEGIN INSERT INTO dbo.[RefBuildingEnergySourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02842', 'Oil', 'Oil is specified as the source of energy that directly powers a school district facility or building system.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergySourceType] -SET [Description] = 'Oil', [Definition] = 'Oil is specified as the source of energy that directly powers a school district facility or building system.', [SortOrder] = 7.00 WHERE [Code] = '02842' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergySourceType] WHERE [Code] = '02855') BEGIN INSERT INTO dbo.[RefBuildingEnergySourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02855', 'Solar', 'Solar is specified as the source of energy that directly powers a school district facility or building system.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergySourceType] -SET [Description] = 'Solar', [Definition] = 'Solar is specified as the source of energy that directly powers a school district facility or building system.', [SortOrder] = 8.00 WHERE [Code] = '02855' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergySourceType] WHERE [Code] = '02843') BEGIN INSERT INTO dbo.[RefBuildingEnergySourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02843', 'Water', 'Water is specified as the source of energy that directly powers a school district facility or building system.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergySourceType] -SET [Description] = 'Water', [Definition] = 'Water is specified as the source of energy that directly powers a school district facility or building system.', [SortOrder] = 9.00 WHERE [Code] = '02843' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergySourceType] WHERE [Code] = '02856') BEGIN INSERT INTO dbo.[RefBuildingEnergySourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02856', 'Wind', 'Wind is specified as the source of energy that directly powers a school district facility or building system.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergySourceType] -SET [Description] = 'Wind', [Definition] = 'Wind is specified as the source of energy that directly powers a school district facility or building system.', [SortOrder] = 10.00 WHERE [Code] = '02856' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnergySourceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingEnergySourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the source of energy that directly powers a school district facility or building system.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnergySourceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the source of energy that directly powers a school district facility or building system.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingEnvOrEnergyPerformanceRatingCat table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingEnvOrEnergyPerformanceRatingCat]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] WHERE [Code] = '13620') BEGIN INSERT INTO dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13620', 'Climate/Emissions', 'CHPS and Green Globes have climate/emissions as a credit category. Credits/prerequisites include greenhouse gas emission reduction.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] -SET [Description] = 'Climate/Emissions', [Definition] = 'CHPS and Green Globes have climate/emissions as a credit category. Credits/prerequisites include greenhouse gas emission reduction.', [SortOrder] = 1.00 WHERE [Code] = '13620' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] WHERE [Code] = '13621') BEGIN INSERT INTO dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13621', 'Energy', 'Emissions Reduction Reporting', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] -SET [Description] = 'Energy', [Definition] = 'Emissions Reduction Reporting', [SortOrder] = 2.00 WHERE [Code] = '13621' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] WHERE [Code] = '13622') BEGIN INSERT INTO dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13622', 'Indoor Environmental Quality', 'Thermal Comfort', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] -SET [Description] = 'Indoor Environmental Quality', [Definition] = 'Thermal Comfort', [SortOrder] = 3.00 WHERE [Code] = '13622' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] WHERE [Code] = '13623') BEGIN INSERT INTO dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13623', 'Innovations in Operations/ Project/ Environmental Management', 'LEED and Green Globes have innovations in operations/ project/ environmental management as a credit category. Credits recognize projects for innovative and exemplary technologies, methods, project planning, and project execution.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] -SET [Description] = 'Innovations in Operations/ Project/ Environmental Management', [Definition] = 'LEED and Green Globes have innovations in operations/ project/ environmental management as a credit category. Credits recognize projects for innovative and exemplary technologies, methods, project planning, and project execution.', [SortOrder] = 4.00 WHERE [Code] = '13623' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] WHERE [Code] = '13624') BEGIN INSERT INTO dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13624', 'Leadership, Education and Innovation', 'Schools as Learning Tools', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] -SET [Description] = 'Leadership, Education and Innovation', [Definition] = 'Schools as Learning Tools', [SortOrder] = 5.00 WHERE [Code] = '13624' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] WHERE [Code] = '13625') BEGIN INSERT INTO dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13625', 'Materials and Resources', 'Building Reuse', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] -SET [Description] = 'Materials and Resources', [Definition] = 'Building Reuse', [SortOrder] = 6.00 WHERE [Code] = '13625' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] WHERE [Code] = '13626') BEGIN INSERT INTO dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13626', 'Regional Priority', 'LEED has regional priority as a credit category. Credits address environmental concerns that are local priorities for each region of the country, as identified by USGBC''''s regional councils, chapters and affiliates.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] -SET [Description] = 'Regional Priority', [Definition] = 'LEED has regional priority as a credit category. Credits address environmental concerns that are local priorities for each region of the country, as identified by USGBC''''s regional councils, chapters and affiliates.', [SortOrder] = 7.00 WHERE [Code] = '13626' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] WHERE [Code] = '13627') BEGIN INSERT INTO dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13627', 'Sustainable Sites', 'LEED, CHPS, and Green Globes have sustainable sites as a credit category. Credits/prerequisites promote responsible, innovative and practical site maintenance strategies that are sensitive to plants, wildlife and water and air quality.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingEnvOrEnergyPerformanceRatingCat] -SET [Description] = 'Sustainable Sites', [Definition] = 'LEED, CHPS, and Green Globes have sustainable sites as a credit category. Credits/prerequisites promote responsible, innovative and practical site maintenance strategies that are sensitive to plants, wildlife and water and air quality.', [SortOrder] = 8.00 WHERE [Code] = '13627' END -END - -PRINT N'Populate RefBuildingFireProtectionSystemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingFireProtectionSystemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFireProtectionSystemType] WHERE [Code] = '02513') BEGIN INSERT INTO dbo.[RefBuildingFireProtectionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02513', 'Alarms', 'Alarms is specified as the type of system that protects the facility against fire.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFireProtectionSystemType] -SET [Description] = 'Alarms', [Definition] = 'Alarms is specified as the type of system that protects the facility against fire.', [SortOrder] = 1.00 WHERE [Code] = '02513' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFireProtectionSystemType] WHERE [Code] = '02511') BEGIN INSERT INTO dbo.[RefBuildingFireProtectionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02511', 'Automatic sprinkler', 'Automatic sprinkler is specified as the type of system that protects the facility against fire.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFireProtectionSystemType] -SET [Description] = 'Automatic sprinkler', [Definition] = 'Automatic sprinkler is specified as the type of system that protects the facility against fire.', [SortOrder] = 2.00 WHERE [Code] = '02511' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFireProtectionSystemType] WHERE [Code] = '13579') BEGIN INSERT INTO dbo.[RefBuildingFireProtectionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13579', 'Fire protection specialists', 'Fire protection specialists is specified as the type of system that protects the facility against fire.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFireProtectionSystemType] -SET [Description] = 'Fire protection specialists', [Definition] = 'Fire protection specialists is specified as the type of system that protects the facility against fire.', [SortOrder] = 3.00 WHERE [Code] = '13579' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFireProtectionSystemType] WHERE [Code] = '02512') BEGIN INSERT INTO dbo.[RefBuildingFireProtectionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02512', 'Fire pump/extinguishers', 'Fire pump/extinguishers is specified as the type of system that protects the facility against fire.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFireProtectionSystemType] -SET [Description] = 'Fire pump/extinguishers', [Definition] = 'Fire pump/extinguishers is specified as the type of system that protects the facility against fire.', [SortOrder] = 4.00 WHERE [Code] = '02512' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFireProtectionSystemType] WHERE [Code] = '02514') BEGIN INSERT INTO dbo.[RefBuildingFireProtectionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02514', 'Kitchen fire suppressor system', 'Kitchen fire suppressor system is specified as the type of system that protects the facility against fire.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFireProtectionSystemType] -SET [Description] = 'Kitchen fire suppressor system', [Definition] = 'Kitchen fire suppressor system is specified as the type of system that protects the facility against fire.', [SortOrder] = 5.00 WHERE [Code] = '02514' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFireProtectionSystemType] WHERE [Code] = '13580') BEGIN INSERT INTO dbo.[RefBuildingFireProtectionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13580', 'Other fire protection systems', 'Other fire protection systems is specified as the type of system that protects the facility against fire.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFireProtectionSystemType] -SET [Description] = 'Other fire protection systems', [Definition] = 'Other fire protection systems is specified as the type of system that protects the facility against fire.', [SortOrder] = 6.00 WHERE [Code] = '13580' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFireProtectionSystemType] WHERE [Code] = '13581') BEGIN INSERT INTO dbo.[RefBuildingFireProtectionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13581', 'Standpipes', 'Standpipes is specified as the type of system that protects the facility against fire.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFireProtectionSystemType] -SET [Description] = 'Standpipes', [Definition] = 'Standpipes is specified as the type of system that protects the facility against fire.', [SortOrder] = 7.00 WHERE [Code] = '13581' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFireProtectionSystemType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingFireProtectionSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of system that protects the facility against fire.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFireProtectionSystemType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of system that protects the facility against fire.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingFoodServiceSpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingFoodServiceSpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '02792') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02792', 'Cafeteria', 'A space equipped primarily for the preparation, serving, consumption and clean-up of food.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Cafeteria', [Definition] = 'A space equipped primarily for the preparation, serving, consumption and clean-up of food.', [SortOrder] = 1.00 WHERE [Code] = '02792' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '02793') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02793', 'Cafetorium', 'A space for the combined functions of a cafeteria and auditorium.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Cafetorium', [Definition] = 'A space for the combined functions of a cafeteria and auditorium.', [SortOrder] = 2.00 WHERE [Code] = '02793' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '02797') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02797', 'Convenience kitchen', 'A space for a small noncommercial kitchen, such as found in a teacher''s lounge or early childhood area.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Convenience kitchen', [Definition] = 'A space for a small noncommercial kitchen, such as found in a teacher''s lounge or early childhood area.', [SortOrder] = 3.00 WHERE [Code] = '02797' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '03251') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03251', 'Dish return area', 'A space for waste disposal, dishwashing, dish racking, and general cleanup of materials used in the preparation, serving, and consumption of food.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Dish return area', [Definition] = 'A space for waste disposal, dishwashing, dish racking, and general cleanup of materials used in the preparation, serving, and consumption of food.', [SortOrder] = 4.00 WHERE [Code] = '03251' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '02799') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02799', 'Dry food/non-hazardous supplies storage area', 'A storage area for dry, nonperishable food, and non-hazardous supplies such as paper products.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Dry food/non-hazardous supplies storage area', [Definition] = 'A storage area for dry, nonperishable food, and non-hazardous supplies such as paper products.', [SortOrder] = 5.00 WHERE [Code] = '02799' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '02794') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02794', 'Faculty dining room', 'A space for teacher and staff dining.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Faculty dining room', [Definition] = 'A space for teacher and staff dining.', [SortOrder] = 6.00 WHERE [Code] = '02794' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '02798') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02798', 'Finishing/satellite kitchen', 'A commercial kitchen to maintain prepared food, or complete preparation of food for student lunch and breakfast programs. Preparation may include refrigeration, rethermalization, and final preparation of food.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Finishing/satellite kitchen', [Definition] = 'A commercial kitchen to maintain prepared food, or complete preparation of food for student lunch and breakfast programs. Preparation may include refrigeration, rethermalization, and final preparation of food.', [SortOrder] = 7.00 WHERE [Code] = '02798' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '03254') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03254', 'Food receiving area', 'The area in which food is received from the central kitchen or food service vendors.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Food receiving area', [Definition] = 'The area in which food is received from the central kitchen or food service vendors.', [SortOrder] = 8.00 WHERE [Code] = '03254' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '02800') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02800', 'Food serving area', 'A space for serving food.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Food serving area', [Definition] = 'A space for serving food.', [SortOrder] = 9.00 WHERE [Code] = '02800' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '02796') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02796', 'Full-service kitchen', 'A space for a full-service commercial kitchen for preparation of food for student lunches or breakfast programs.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Full-service kitchen', [Definition] = 'A space for a full-service commercial kitchen for preparation of food for student lunches or breakfast programs.', [SortOrder] = 10.00 WHERE [Code] = '02796' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '13629') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13629', 'Kitchen garden', 'A garden in which plants for the use in the kitchen are cultivated.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Kitchen garden', [Definition] = 'A garden in which plants for the use in the kitchen are cultivated.', [SortOrder] = 11.00 WHERE [Code] = '13629' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '02988') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02988', 'Multipurpose room', 'A space for food service, physical education, general gathering, such as a foyer, and/or school assembly.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Multipurpose room', [Definition] = 'A space for food service, physical education, general gathering, such as a foyer, and/or school assembly.', [SortOrder] = 12.00 WHERE [Code] = '02988' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '03253') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03253', 'Recyclable materials area', 'A space for the separation and disposal of recyclable materials.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Recyclable materials area', [Definition] = 'A space for the separation and disposal of recyclable materials.', [SortOrder] = 13.00 WHERE [Code] = '03253' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '03109') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03109', 'Refrigerated/freezer storage area', 'A walk-in storage area for perishable food.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Refrigerated/freezer storage area', [Definition] = 'A walk-in storage area for perishable food.', [SortOrder] = 14.00 WHERE [Code] = '03109' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '02801') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02801', 'Storage of tables and chairs', 'A space for storing cafeteria tables and chairs.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Storage of tables and chairs', [Definition] = 'A space for storing cafeteria tables and chairs.', [SortOrder] = 15.00 WHERE [Code] = '02801' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '02795') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02795', 'Student dining room', 'A space for student dining.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Student dining room', [Definition] = 'A space for student dining.', [SortOrder] = 16.00 WHERE [Code] = '02795' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '03252') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03252', 'Trash disposal area', 'A space for the disposal of trash.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Trash disposal area', [Definition] = 'A space for the disposal of trash.', [SortOrder] = 17.00 WHERE [Code] = '03252' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFoodServiceSpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingFoodServiceSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the space located, designed, furnished and equipped to support meal programs.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFoodServiceSpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the space located, designed, furnished and equipped to support meal programs.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingFullServiceKitchenType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingFullServiceKitchenType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFullServiceKitchenType] WHERE [Code] = '03247') BEGIN INSERT INTO dbo.[RefBuildingFullServiceKitchenType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03247', 'Central kitchen', 'A kitchen used for the production of food (full meals or parts of meals such as bakeries) for facilities other than that of the central kitchen.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFullServiceKitchenType] -SET [Description] = 'Central kitchen', [Definition] = 'A kitchen used for the production of food (full meals or parts of meals such as bakeries) for facilities other than that of the central kitchen.', [SortOrder] = 1.00 WHERE [Code] = '03247' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFullServiceKitchenType] WHERE [Code] = '03250') BEGIN INSERT INTO dbo.[RefBuildingFullServiceKitchenType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03250', 'Non-production kitchen', 'A kitchen that is used for the instruction of the culinary arts. This type of kitchen does not produce food to be served.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFullServiceKitchenType] -SET [Description] = 'Non-production kitchen', [Definition] = 'A kitchen that is used for the instruction of the culinary arts. This type of kitchen does not produce food to be served.', [SortOrder] = 2.00 WHERE [Code] = '03250' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFullServiceKitchenType] WHERE [Code] = '03248') BEGIN INSERT INTO dbo.[RefBuildingFullServiceKitchenType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03248', 'Production kitchen', 'A kitchen used for the production of food (full meals or parts of meals such as bakeries) for that facility and for other facilities.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFullServiceKitchenType] -SET [Description] = 'Production kitchen', [Definition] = 'A kitchen used for the production of food (full meals or parts of meals such as bakeries) for that facility and for other facilities.', [SortOrder] = 3.00 WHERE [Code] = '03248' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingFullServiceKitchenType] WHERE [Code] = '03249') BEGIN INSERT INTO dbo.[RefBuildingFullServiceKitchenType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03249', 'Self-contained kitchen', 'A kitchen used for the production of food for that facility only.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingFullServiceKitchenType] -SET [Description] = 'Self-contained kitchen', [Definition] = 'A kitchen used for the production of food for that facility only.', [SortOrder] = 4.00 WHERE [Code] = '03249' END -END - -PRINT N'Populate RefBuildingHeatingGenerationSystemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingHeatingGenerationSystemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHeatingGenerationSystemType] WHERE [Code] = '02482') BEGIN INSERT INTO dbo.[RefBuildingHeatingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02482', 'Central duct system', 'Central duct system is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHeatingGenerationSystemType] -SET [Description] = 'Central duct system', [Definition] = 'Central duct system is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', [SortOrder] = 1.00 WHERE [Code] = '02482' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHeatingGenerationSystemType] WHERE [Code] = '02485') BEGIN INSERT INTO dbo.[RefBuildingHeatingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02485', 'Displacement ventilation', 'Displacement ventilation is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHeatingGenerationSystemType] -SET [Description] = 'Displacement ventilation', [Definition] = 'Displacement ventilation is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', [SortOrder] = 2.00 WHERE [Code] = '02485' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHeatingGenerationSystemType] WHERE [Code] = '02484') BEGIN INSERT INTO dbo.[RefBuildingHeatingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02484', 'Forced air', 'Forced air is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHeatingGenerationSystemType] -SET [Description] = 'Forced air', [Definition] = 'Forced air is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', [SortOrder] = 3.00 WHERE [Code] = '02484' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHeatingGenerationSystemType] WHERE [Code] = '02479') BEGIN INSERT INTO dbo.[RefBuildingHeatingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02479', 'Heat pump', 'Heat pump is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHeatingGenerationSystemType] -SET [Description] = 'Heat pump', [Definition] = 'Heat pump is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', [SortOrder] = 4.00 WHERE [Code] = '02479' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHeatingGenerationSystemType] WHERE [Code] = '02478') BEGIN INSERT INTO dbo.[RefBuildingHeatingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02478', 'Hot water radiator', 'Hot water radiator is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHeatingGenerationSystemType] -SET [Description] = 'Hot water radiator', [Definition] = 'Hot water radiator is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', [SortOrder] = 5.00 WHERE [Code] = '02478' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHeatingGenerationSystemType] WHERE [Code] = '02483') BEGIN INSERT INTO dbo.[RefBuildingHeatingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02483', 'Open plenum system', 'Open plenum system is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHeatingGenerationSystemType] -SET [Description] = 'Open plenum system', [Definition] = 'Open plenum system is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', [SortOrder] = 6.00 WHERE [Code] = '02483' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHeatingGenerationSystemType] WHERE [Code] = '02477') BEGIN INSERT INTO dbo.[RefBuildingHeatingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02477', 'Steam radiator', 'Steam radiator is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHeatingGenerationSystemType] -SET [Description] = 'Steam radiator', [Definition] = 'Steam radiator is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', [SortOrder] = 7.00 WHERE [Code] = '02477' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHeatingGenerationSystemType] WHERE [Code] = '02481') BEGIN INSERT INTO dbo.[RefBuildingHeatingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02481', 'Unit heaters/baseboard heaters', 'Unit heaters/baseboard heaters is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHeatingGenerationSystemType] -SET [Description] = 'Unit heaters/baseboard heaters', [Definition] = 'Unit heaters/baseboard heaters is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', [SortOrder] = 8.00 WHERE [Code] = '02481' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHeatingGenerationSystemType] WHERE [Code] = '02480') BEGIN INSERT INTO dbo.[RefBuildingHeatingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02480', 'Unit ventilators', 'Unit ventilators is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHeatingGenerationSystemType] -SET [Description] = 'Unit ventilators', [Definition] = 'Unit ventilators is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', [SortOrder] = 9.00 WHERE [Code] = '02480' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHeatingGenerationSystemType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingHeatingGenerationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHeatingGenerationSystemType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the method by which the heat is distributed and delivered throughout the room(s) or building.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingHistoricStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingHistoricStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHistoricStatus] WHERE [Code] = '02415') BEGIN INSERT INTO dbo.[RefBuildingHistoricStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02415', 'Ineligible', 'Building is ineligible to be declared a landmark or historic building.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHistoricStatus] -SET [Description] = 'Ineligible', [Definition] = 'Building is ineligible to be declared a landmark or historic building.', [SortOrder] = 1.00 WHERE [Code] = '02415' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHistoricStatus] WHERE [Code] = '02417') BEGIN INSERT INTO dbo.[RefBuildingHistoricStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02417', 'Locally designated', 'Building has been locally designated a landmark or historic building.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHistoricStatus] -SET [Description] = 'Locally designated', [Definition] = 'Building has been locally designated a landmark or historic building.', [SortOrder] = 2.00 WHERE [Code] = '02417' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHistoricStatus] WHERE [Code] = '02412') BEGIN INSERT INTO dbo.[RefBuildingHistoricStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02412', 'Locally eligible, not yet designated', 'Building is locally eligible to be but has not yet been designated a landmark or historic building.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHistoricStatus] -SET [Description] = 'Locally eligible, not yet designated', [Definition] = 'Building is locally eligible to be but has not yet been designated a landmark or historic building.', [SortOrder] = 3.00 WHERE [Code] = '02412' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHistoricStatus] WHERE [Code] = '75020') BEGIN INSERT INTO dbo.[RefBuildingHistoricStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75020', 'Located in historic district', 'Building is located in a historic district.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHistoricStatus] -SET [Description] = 'Located in historic district', [Definition] = 'Building is located in a historic district.', [SortOrder] = 4.00 WHERE [Code] = '75020' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHistoricStatus] WHERE [Code] = '02419') BEGIN INSERT INTO dbo.[RefBuildingHistoricStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02419', 'Nationally designated', 'Building has been nationally designated a landmark or historic building.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHistoricStatus] -SET [Description] = 'Nationally designated', [Definition] = 'Building has been nationally designated a landmark or historic building.', [SortOrder] = 5.00 WHERE [Code] = '02419' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHistoricStatus] WHERE [Code] = '02414') BEGIN INSERT INTO dbo.[RefBuildingHistoricStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02414', 'Nationally eligible, not yet designated', 'Building is nationally eligible to be but has not yet been designated a landmark or historic building.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHistoricStatus] -SET [Description] = 'Nationally eligible, not yet designated', [Definition] = 'Building is nationally eligible to be but has not yet been designated a landmark or historic building.', [SortOrder] = 6.00 WHERE [Code] = '02414' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHistoricStatus] WHERE [Code] = '02416') BEGIN INSERT INTO dbo.[RefBuildingHistoricStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02416', 'Not evaluated', 'Building is not been evaluated for eligibility to be declared a landmark or historic building.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHistoricStatus] -SET [Description] = 'Not evaluated', [Definition] = 'Building is not been evaluated for eligibility to be declared a landmark or historic building.', [SortOrder] = 7.00 WHERE [Code] = '02416' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHistoricStatus] WHERE [Code] = '02418') BEGIN INSERT INTO dbo.[RefBuildingHistoricStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02418', 'State designated', 'Building has been state designated a landmark or historic building.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHistoricStatus] -SET [Description] = 'State designated', [Definition] = 'Building has been state designated a landmark or historic building.', [SortOrder] = 8.00 WHERE [Code] = '02418' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHistoricStatus] WHERE [Code] = '02413') BEGIN INSERT INTO dbo.[RefBuildingHistoricStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02413', 'State eligible, not yet designated', 'Building is state eligible to be but has not yet been designated a landmark or historic building.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHistoricStatus] -SET [Description] = 'State eligible, not yet designated', [Definition] = 'Building is state eligible to be but has not yet been designated a landmark or historic building.', [SortOrder] = 9.00 WHERE [Code] = '02413' END -END - -PRINT N'Populate RefBuildingHVACSystemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingHVACSystemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHVACSystemType] WHERE [Code] = '13585') BEGIN INSERT INTO dbo.[RefBuildingHVACSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13585', 'Air distribution system', 'Air distribution system is specified as the building service system that provides for heating, ventilation and air-conditioning.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHVACSystemType] -SET [Description] = 'Air distribution system', [Definition] = 'Air distribution system is specified as the building service system that provides for heating, ventilation and air-conditioning.', [SortOrder] = 1.00 WHERE [Code] = '13585' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHVACSystemType] WHERE [Code] = '13586') BEGIN INSERT INTO dbo.[RefBuildingHVACSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13586', 'Controls and instrumentation', 'Controls and instrumentation is specified as the building service system that provides for heating, ventilation and air-conditioning.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHVACSystemType] -SET [Description] = 'Controls and instrumentation', [Definition] = 'Controls and instrumentation is specified as the building service system that provides for heating, ventilation and air-conditioning.', [SortOrder] = 2.00 WHERE [Code] = '13586' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHVACSystemType] WHERE [Code] = '13587') BEGIN INSERT INTO dbo.[RefBuildingHVACSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13587', 'Cooling generation systems', 'Cooling generation systems is specified as the building service system that provides for heating, ventilation and air-conditioning.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHVACSystemType] -SET [Description] = 'Cooling generation systems', [Definition] = 'Cooling generation systems is specified as the building service system that provides for heating, ventilation and air-conditioning.', [SortOrder] = 3.00 WHERE [Code] = '13587' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHVACSystemType] WHERE [Code] = '13588') BEGIN INSERT INTO dbo.[RefBuildingHVACSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13588', 'Energy supply', 'Energy supply is specified as the building service system that provides for heating, ventilation and air-conditioning.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHVACSystemType] -SET [Description] = 'Energy supply', [Definition] = 'Energy supply is specified as the building service system that provides for heating, ventilation and air-conditioning.', [SortOrder] = 4.00 WHERE [Code] = '13588' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHVACSystemType] WHERE [Code] = '13589') BEGIN INSERT INTO dbo.[RefBuildingHVACSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13589', 'Heat generating system', 'Heat generating system is specified as the building service system that provides for heating, ventilation and air-conditioning.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHVACSystemType] -SET [Description] = 'Heat generating system', [Definition] = 'Heat generating system is specified as the building service system that provides for heating, ventilation and air-conditioning.', [SortOrder] = 5.00 WHERE [Code] = '13589' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHVACSystemType] WHERE [Code] = '13590') BEGIN INSERT INTO dbo.[RefBuildingHVACSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13590', 'Other HVAC systems and equipment', 'Other HVAC systems and equipment is specified as the building service system that provides for heating, ventilation and air-conditioning.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHVACSystemType] -SET [Description] = 'Other HVAC systems and equipment', [Definition] = 'Other HVAC systems and equipment is specified as the building service system that provides for heating, ventilation and air-conditioning.', [SortOrder] = 6.00 WHERE [Code] = '13590' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHVACSystemType] WHERE [Code] = '13591') BEGIN INSERT INTO dbo.[RefBuildingHVACSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13591', 'Systems testing and balancing', 'Systems testing and balancing is specified as the building service system that provides for heating, ventilation and air-conditioning.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHVACSystemType] -SET [Description] = 'Systems testing and balancing', [Definition] = 'Systems testing and balancing is specified as the building service system that provides for heating, ventilation and air-conditioning.', [SortOrder] = 7.00 WHERE [Code] = '13591' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingHVACSystemType] WHERE [Code] = '13592') BEGIN INSERT INTO dbo.[RefBuildingHVACSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13592', 'Terminal and package units', 'Terminal and package units is specified as the building service system that provides for heating, ventilation and air-conditioning.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingHVACSystemType] -SET [Description] = 'Terminal and package units', [Definition] = 'Terminal and package units is specified as the building service system that provides for heating, ventilation and air-conditioning.', [SortOrder] = 8.00 WHERE [Code] = '13592' END -END - -PRINT N'Populate RefBuildingIndoorAthleticOrPhysEdSpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingIndoorAthleticOrPhysEdSpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02709') BEGIN INSERT INTO dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02709', 'Auxiliary gymnasium', 'Auxiliary gymnasium is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Auxiliary gymnasium', [Definition] = 'Auxiliary gymnasium is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 1.00 WHERE [Code] = '02709' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02712') BEGIN INSERT INTO dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02712', 'Dance studio', 'Dance studio is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Dance studio', [Definition] = 'Dance studio is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 2.00 WHERE [Code] = '02712' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02716') BEGIN INSERT INTO dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02716', 'Equipment storage', 'Equipment storage is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Equipment storage', [Definition] = 'Equipment storage is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 3.00 WHERE [Code] = '02716' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02984') BEGIN INSERT INTO dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02984', 'Gymnasium', 'Gymnasium is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Gymnasium', [Definition] = 'Gymnasium is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 4.00 WHERE [Code] = '02984' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02719') BEGIN INSERT INTO dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02719', 'Health classroom', 'Health classroom is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Health classroom', [Definition] = 'Health classroom is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 5.00 WHERE [Code] = '02719' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02715') BEGIN INSERT INTO dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02715', 'Locker room', 'Locker room is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Locker room', [Definition] = 'Locker room is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 6.00 WHERE [Code] = '02715' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02718') BEGIN INSERT INTO dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02718', 'Multipurpose space', 'Multipurpose space is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Multipurpose space', [Definition] = 'Multipurpose space is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 7.00 WHERE [Code] = '02718' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02720') BEGIN INSERT INTO dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02720', 'Playtorium (auditorium/gymnasium)', 'Playtorium (auditorium/gymnasium) is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Playtorium (auditorium/gymnasium)', [Definition] = 'Playtorium (auditorium/gymnasium) is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 8.00 WHERE [Code] = '02720' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02714') BEGIN INSERT INTO dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02714', 'Pool/natatorium', 'Pool/natatorium is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Pool/natatorium', [Definition] = 'Pool/natatorium is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 9.00 WHERE [Code] = '02714' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02717') BEGIN INSERT INTO dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02717', 'Press box', 'Press box is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Press box', [Definition] = 'Press box is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 10.00 WHERE [Code] = '02717' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02713') BEGIN INSERT INTO dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02713', 'Team room', 'Team room is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Team room', [Definition] = 'Team room is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 11.00 WHERE [Code] = '02713' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02710') BEGIN INSERT INTO dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02710', 'Weight training room', 'Weight training room is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Weight training room', [Definition] = 'Weight training room is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 12.00 WHERE [Code] = '02710' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02711') BEGIN INSERT INTO dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02711', 'Wrestling room', 'Wrestling room is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Wrestling room', [Definition] = 'Wrestling room is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 13.00 WHERE [Code] = '02711' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingIndoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingInstructionalSpaceFactorType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingInstructionalSpaceFactorType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingInstructionalSpaceFactorType] WHERE [Code] = '02811') BEGIN INSERT INTO dbo.[RefBuildingInstructionalSpaceFactorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02811', 'Instructional space', 'A space designed and used primarily or exclusively for instruction and direct instructional support, including basic and specialty classrooms, laboratories, studios, science prep rooms, library/media center spaces, and indoor physical education spaces.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingInstructionalSpaceFactorType] -SET [Description] = 'Instructional space', [Definition] = 'A space designed and used primarily or exclusively for instruction and direct instructional support, including basic and specialty classrooms, laboratories, studios, science prep rooms, library/media center spaces, and indoor physical education spaces.', [SortOrder] = 1.00 WHERE [Code] = '02811' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingInstructionalSpaceFactorType] WHERE [Code] = '02812') BEGIN INSERT INTO dbo.[RefBuildingInstructionalSpaceFactorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02812', 'Noninstructional space', 'Any space that is not classified as instructional, including areas designed primarily for administration and student services, common areas used by students, such as cafeteria and auditorium, but that are generally not used for instruction, as well as required for the general operation of the building (such as hallways, stairwells, custodial, mechanical, and storage areas).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingInstructionalSpaceFactorType] -SET [Description] = 'Noninstructional space', [Definition] = 'Any space that is not classified as instructional, including areas designed primarily for administration and student services, common areas used by students, such as cafeteria and auditorium, but that are generally not used for instruction, as well as required for the general operation of the building (such as hallways, stairwells, custodial, mechanical, and storage areas).', [SortOrder] = 2.00 WHERE [Code] = '02812' END -END - -PRINT N'Populate RefBuildingJointUseRationaleType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingJointUseRationaleType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingJointUseRationaleType] WHERE [Code] = '13710') BEGIN INSERT INTO dbo.[RefBuildingJointUseRationaleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13710', 'Increase programs and services for students', 'Increase programs and services for students is specified as the reasons for permitting and participating in joint-use.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingJointUseRationaleType] -SET [Description] = 'Increase programs and services for students', [Definition] = 'Increase programs and services for students is specified as the reasons for permitting and participating in joint-use.', [SortOrder] = 1.00 WHERE [Code] = '13710' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingJointUseRationaleType] WHERE [Code] = '13711') BEGIN INSERT INTO dbo.[RefBuildingJointUseRationaleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13711', 'Increase programs and services for the community', 'Increase programs and services for the community is specified as the reasons for permitting and participating in joint-use.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingJointUseRationaleType] -SET [Description] = 'Increase programs and services for the community', [Definition] = 'Increase programs and services for the community is specified as the reasons for permitting and participating in joint-use.', [SortOrder] = 2.00 WHERE [Code] = '13711' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingJointUseRationaleType] WHERE [Code] = '13712') BEGIN INSERT INTO dbo.[RefBuildingJointUseRationaleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13712', 'Increase utilization of under used space', 'Increase utilization of under used space is specified as the reasons for permitting and participating in joint-use.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingJointUseRationaleType] -SET [Description] = 'Increase utilization of under used space', [Definition] = 'Increase utilization of under used space is specified as the reasons for permitting and participating in joint-use.', [SortOrder] = 3.00 WHERE [Code] = '13712' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingJointUseRationaleType] WHERE [Code] = '13709') BEGIN INSERT INTO dbo.[RefBuildingJointUseRationaleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13709', 'Raise revenue', 'Raise revenue is specified as the reasons for permitting and participating in joint-use.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingJointUseRationaleType] -SET [Description] = 'Raise revenue', [Definition] = 'Raise revenue is specified as the reasons for permitting and participating in joint-use.', [SortOrder] = 4.00 WHERE [Code] = '13709' END -END - -PRINT N'Populate RefBuildingJointUserType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingJointUserType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingJointUserType] WHERE [Code] = '13705') BEGIN INSERT INTO dbo.[RefBuildingJointUserType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13705', 'Civic groups', 'Individuals, groups, or organizations, who seek occasional use of school buildings and grounds for activities or events such as polling stations, community meetings, and special events.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingJointUserType] -SET [Description] = 'Civic groups', [Definition] = 'Individuals, groups, or organizations, who seek occasional use of school buildings and grounds for activities or events such as polling stations, community meetings, and special events.', [SortOrder] = 1.00 WHERE [Code] = '13705' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingJointUserType] WHERE [Code] = '13704') BEGIN INSERT INTO dbo.[RefBuildingJointUserType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13704', 'Individuals', 'Persons, generally residents of a community, who have access to exterior spaces, such as play equipment, athletic fields or courts, and open space for personal use.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingJointUserType] -SET [Description] = 'Individuals', [Definition] = 'Persons, generally residents of a community, who have access to exterior spaces, such as play equipment, athletic fields or courts, and open space for personal use.', [SortOrder] = 2.00 WHERE [Code] = '13704' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingJointUserType] WHERE [Code] = '13706') BEGIN INSERT INTO dbo.[RefBuildingJointUserType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13706', 'Other public agencies', 'A public agency that is not part of the school district that may offer programs, need to lease space and offer no program connection to the school, and/or may seek joint development with ongoing joint programming.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingJointUserType] -SET [Description] = 'Other public agencies', [Definition] = 'A public agency that is not part of the school district that may offer programs, need to lease space and offer no program connection to the school, and/or may seek joint development with ongoing joint programming.', [SortOrder] = 3.00 WHERE [Code] = '13706' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingJointUserType] WHERE [Code] = '13708') BEGIN INSERT INTO dbo.[RefBuildingJointUserType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13708', 'Private for-profit corporations', 'The use of school building and/or grounds by a private for-profit corporation, either for education-related work such as a private testing service or unrelated work such as private offices.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingJointUserType] -SET [Description] = 'Private for-profit corporations', [Definition] = 'The use of school building and/or grounds by a private for-profit corporation, either for education-related work such as a private testing service or unrelated work such as private offices.', [SortOrder] = 4.00 WHERE [Code] = '13708' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingJointUserType] WHERE [Code] = '13707') BEGIN INSERT INTO dbo.[RefBuildingJointUserType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13707', 'Private non-profit organizations', 'The use of school buildings and/or grounds by a non-profit organization such as after-school programs, health clinics, or adult education classes.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingJointUserType] -SET [Description] = 'Private non-profit organizations', [Definition] = 'The use of school buildings and/or grounds by a non-profit organization such as after-school programs, health clinics, or adult education classes.', [SortOrder] = 5.00 WHERE [Code] = '13707' END -END - -PRINT N'Populate RefBuildingJointUseSchedulingType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingJointUseSchedulingType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingJointUseSchedulingType] WHERE [Code] = '13694') BEGIN INSERT INTO dbo.[RefBuildingJointUseSchedulingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13694', 'Drop-in use', 'When the space is made available for informal, drop-in activities. In this case, the user does not reserve the space in advance. Usually, spaces are made available for drop-in use during specified hours and often the spaces available for drop-in use are outside the school building on the school grounds.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingJointUseSchedulingType] -SET [Description] = 'Drop-in use', [Definition] = 'When the space is made available for informal, drop-in activities. In this case, the user does not reserve the space in advance. Usually, spaces are made available for drop-in use during specified hours and often the spaces available for drop-in use are outside the school building on the school grounds.', [SortOrder] = 1.00 WHERE [Code] = '13694' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingJointUseSchedulingType] WHERE [Code] = '13697') BEGIN INSERT INTO dbo.[RefBuildingJointUseSchedulingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13697', 'Long term lease', 'When a school space is shared or dedicated in a contractual lease to provide exclusive access to an outside entity for a period of time of at least five years and if associated with joint development may be over 20 years.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingJointUseSchedulingType] -SET [Description] = 'Long term lease', [Definition] = 'When a school space is shared or dedicated in a contractual lease to provide exclusive access to an outside entity for a period of time of at least five years and if associated with joint development may be over 20 years.', [SortOrder] = 2.00 WHERE [Code] = '13697' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingJointUseSchedulingType] WHERE [Code] = '13695') BEGIN INSERT INTO dbo.[RefBuildingJointUseSchedulingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13695', 'One-time event use', 'When a non-district entity utilizes a school space through a one time written use agreement.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingJointUseSchedulingType] -SET [Description] = 'One-time event use', [Definition] = 'When a non-district entity utilizes a school space through a one time written use agreement.', [SortOrder] = 3.00 WHERE [Code] = '13695' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingJointUseSchedulingType] WHERE [Code] = '13696') BEGIN INSERT INTO dbo.[RefBuildingJointUseSchedulingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13696', 'Short-term lease', 'When a non-district entity enters into a written agreement for the use of school space for a specified number of hours over a period of time of less than 5 years.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingJointUseSchedulingType] -SET [Description] = 'Short-term lease', [Definition] = 'When a non-district entity enters into a written agreement for the use of school space for a specified number of hours over a period of time of less than 5 years.', [SortOrder] = 4.00 WHERE [Code] = '13696' END -END - -PRINT N'Populate RefBuildingLibMediaCenterSpecialtySpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingLibMediaCenterSpecialtySpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] WHERE [Code] = '02703') BEGIN INSERT INTO dbo.[RefBuildingLibMediaCenterSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02703', 'Collections room', 'Collections room is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] -SET [Description] = 'Collections room', [Definition] = 'Collections room is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', [SortOrder] = 1.00 WHERE [Code] = '02703' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] WHERE [Code] = '02706') BEGIN INSERT INTO dbo.[RefBuildingLibMediaCenterSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02706', 'Copy center', 'Copy center is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] -SET [Description] = 'Copy center', [Definition] = 'Copy center is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', [SortOrder] = 2.00 WHERE [Code] = '02706' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] WHERE [Code] = '02705') BEGIN INSERT INTO dbo.[RefBuildingLibMediaCenterSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02705', 'Distance learning lab', 'Distance learning lab is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] -SET [Description] = 'Distance learning lab', [Definition] = 'Distance learning lab is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', [SortOrder] = 3.00 WHERE [Code] = '02705' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] WHERE [Code] = '02704') BEGIN INSERT INTO dbo.[RefBuildingLibMediaCenterSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02704', 'Reading room', 'Reading room is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] -SET [Description] = 'Reading room', [Definition] = 'Reading room is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', [SortOrder] = 4.00 WHERE [Code] = '02704' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] WHERE [Code] = '13632') BEGIN INSERT INTO dbo.[RefBuildingLibMediaCenterSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13632', 'Reception/checkout desk', 'Reception/checkout desk is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] -SET [Description] = 'Reception/checkout desk', [Definition] = 'Reception/checkout desk is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', [SortOrder] = 5.00 WHERE [Code] = '13632' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] WHERE [Code] = '02707') BEGIN INSERT INTO dbo.[RefBuildingLibMediaCenterSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02707', 'Study room', 'Study room is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] -SET [Description] = 'Study room', [Definition] = 'Study room is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', [SortOrder] = 6.00 WHERE [Code] = '02707' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] WHERE [Code] = '02708') BEGIN INSERT INTO dbo.[RefBuildingLibMediaCenterSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02708', 'Workroom', 'Workroom is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] -SET [Description] = 'Workroom', [Definition] = 'Workroom is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', [SortOrder] = 7.00 WHERE [Code] = '02708' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingLibMediaCenterSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingLibMediaCenterSpecialtySpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingMechanicalConveyingSystemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingMechanicalConveyingSystemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingMechanicalConveyingSystemType] WHERE [Code] = '02516') BEGIN INSERT INTO dbo.[RefBuildingMechanicalConveyingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02516', 'Elevator', 'Elevator is specified as a mechanical means for moving people and equipment within buildings.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingMechanicalConveyingSystemType] -SET [Description] = 'Elevator', [Definition] = 'Elevator is specified as a mechanical means for moving people and equipment within buildings.', [SortOrder] = 1.00 WHERE [Code] = '02516' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingMechanicalConveyingSystemType] WHERE [Code] = '02517') BEGIN INSERT INTO dbo.[RefBuildingMechanicalConveyingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02517', 'Escalator', 'Escalator is specified as a mechanical means for moving people and equipment within buildings.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingMechanicalConveyingSystemType] -SET [Description] = 'Escalator', [Definition] = 'Escalator is specified as a mechanical means for moving people and equipment within buildings.', [SortOrder] = 2.00 WHERE [Code] = '02517' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingMechanicalConveyingSystemType] WHERE [Code] = '13593') BEGIN INSERT INTO dbo.[RefBuildingMechanicalConveyingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13593', 'Lift', 'Lift is specified as a mechanical means for moving people and equipment within buildings.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingMechanicalConveyingSystemType] -SET [Description] = 'Lift', [Definition] = 'Lift is specified as a mechanical means for moving people and equipment within buildings.', [SortOrder] = 3.00 WHERE [Code] = '13593' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingMechanicalConveyingSystemType] WHERE [Code] = '13594') BEGIN INSERT INTO dbo.[RefBuildingMechanicalConveyingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13594', 'Moving Walk', 'Moving Walk is specified as a mechanical means for moving people and equipment within buildings.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingMechanicalConveyingSystemType] -SET [Description] = 'Moving Walk', [Definition] = 'Moving Walk is specified as a mechanical means for moving people and equipment within buildings.', [SortOrder] = 4.00 WHERE [Code] = '13594' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingMechanicalConveyingSystemType] WHERE [Code] = '13595') BEGIN INSERT INTO dbo.[RefBuildingMechanicalConveyingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13595', 'Other conveying system', 'Other conveying system is specified as a mechanical means for moving people and equipment within buildings.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingMechanicalConveyingSystemType] -SET [Description] = 'Other conveying system', [Definition] = 'Other conveying system is specified as a mechanical means for moving people and equipment within buildings.', [SortOrder] = 5.00 WHERE [Code] = '13595' END -END - -PRINT N'Populate RefBuildingMechanicalSystemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingMechanicalSystemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingMechanicalSystemType] WHERE [Code] = '02455') BEGIN INSERT INTO dbo.[RefBuildingMechanicalSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02455', 'Air distribution system', 'The primary means by which air is circulated, freshened, and exhausted.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingMechanicalSystemType] -SET [Description] = 'Air distribution system', [Definition] = 'The primary means by which air is circulated, freshened, and exhausted.', [SortOrder] = 1.00 WHERE [Code] = '02455' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingMechanicalSystemType] WHERE [Code] = '02454') BEGIN INSERT INTO dbo.[RefBuildingMechanicalSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02454', 'Cooling generation system', 'The type of mechanical systems and building designs used for cooling.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingMechanicalSystemType] -SET [Description] = 'Cooling generation system', [Definition] = 'The type of mechanical systems and building designs used for cooling.', [SortOrder] = 2.00 WHERE [Code] = '02454' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingMechanicalSystemType] WHERE [Code] = '02453') BEGIN INSERT INTO dbo.[RefBuildingMechanicalSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02453', 'Heating generation system', 'The method by which the heat is distributed and delivered throughout the room(s) or building.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingMechanicalSystemType] -SET [Description] = 'Heating generation system', [Definition] = 'The method by which the heat is distributed and delivered throughout the room(s) or building.', [SortOrder] = 3.00 WHERE [Code] = '02453' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingMechanicalSystemType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingMechanicalSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the major manufactured systems required to operate a building.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingMechanicalSystemType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the major manufactured systems required to operate a building.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingOperationsOrMaintSpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingOperationsOrMaintSpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02780') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02780', 'Boiler room', 'Boiler room is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Boiler room', [Definition] = 'Boiler room is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 1.00 WHERE [Code] = '02780' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02784') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02784', 'Communications closet', 'Communications closet is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Communications closet', [Definition] = 'Communications closet is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 2.00 WHERE [Code] = '02784' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02778') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02778', 'Custodial closet', 'Custodial closet is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Custodial closet', [Definition] = 'Custodial closet is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 3.00 WHERE [Code] = '02778' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02777') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02777', 'Custodian office', 'Custodian office is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Custodian office', [Definition] = 'Custodian office is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 4.00 WHERE [Code] = '02777' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02783') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02783', 'Electrical closet', 'Electrical closet is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Electrical closet', [Definition] = 'Electrical closet is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 5.00 WHERE [Code] = '02783' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02781') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02781', 'Fan room', 'Fan room is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Fan room', [Definition] = 'Fan room is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 6.00 WHERE [Code] = '02781' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02779') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02779', 'Mechanical room', 'Mechanical room is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Mechanical room', [Definition] = 'Mechanical room is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 7.00 WHERE [Code] = '02779' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02790') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02790', 'Public toilet', 'Public toilet is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Public toilet', [Definition] = 'Public toilet is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 8.00 WHERE [Code] = '02790' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02785') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02785', 'Server room', 'Server room is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Server room', [Definition] = 'Server room is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 9.00 WHERE [Code] = '02785' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02791') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02791', 'Staff toilet', 'Staff toilet is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Staff toilet', [Definition] = 'Staff toilet is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 10.00 WHERE [Code] = '02791' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02786') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02786', 'Storage - flammable materials', 'Storage for flammable materials is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Storage - flammable materials', [Definition] = 'Storage for flammable materials is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 11.00 WHERE [Code] = '02786' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02788') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02788', 'Storage - hazardous materials', 'Storage for hazardous materials is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Storage - hazardous materials', [Definition] = 'Storage for hazardous materials is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 12.00 WHERE [Code] = '02788' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02787') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02787', 'Storage - maintenance equipment', 'Storage for maintenance equipment is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Storage - maintenance equipment', [Definition] = 'Storage for maintenance equipment is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 13.00 WHERE [Code] = '02787' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02789') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02789', 'Student toilet', 'Student toilet is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Student toilet', [Definition] = 'Student toilet is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 14.00 WHERE [Code] = '02789' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '02782') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02782', 'Systems control room', 'Systems control room is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Systems control room', [Definition] = 'Systems control room is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 15.00 WHERE [Code] = '02782' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOperationsOrMaintSpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingOperationsOrMaintSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOperationsOrMaintSpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingOutdoorAthleticOrPhysEdSpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingOutdoorAthleticOrPhysEdSpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02728') BEGIN INSERT INTO dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02728', 'Baseball field', 'Baseball field is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Baseball field', [Definition] = 'Baseball field is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 1.00 WHERE [Code] = '02728' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02724') BEGIN INSERT INTO dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02724', 'Bleacher seating', 'Bleacher seating is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Bleacher seating', [Definition] = 'Bleacher seating is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 2.00 WHERE [Code] = '02724' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02722') BEGIN INSERT INTO dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02722', 'Concessions/restrooms', 'Concessions/restrooms is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Concessions/restrooms', [Definition] = 'Concessions/restrooms is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 3.00 WHERE [Code] = '02722' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02985') BEGIN INSERT INTO dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02985', 'Field house', 'Field house is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Field house', [Definition] = 'Field house is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 4.00 WHERE [Code] = '02985' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02727') BEGIN INSERT INTO dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02727', 'Fitness trail', 'Fitness trail is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Fitness trail', [Definition] = 'Fitness trail is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 5.00 WHERE [Code] = '02727' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02730') BEGIN INSERT INTO dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02730', 'Football field', 'Football field is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Football field', [Definition] = 'Football field is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 6.00 WHERE [Code] = '02730' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02721') BEGIN INSERT INTO dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02721', 'Multipurpose grassy play field', 'Multipurpose grassy play field is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Multipurpose grassy play field', [Definition] = 'Multipurpose grassy play field is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 7.00 WHERE [Code] = '02721' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02732') BEGIN INSERT INTO dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02732', 'Other sports field', 'Other sports field is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Other sports field', [Definition] = 'Other sports field is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 8.00 WHERE [Code] = '02732' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02726') BEGIN INSERT INTO dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02726', 'Paved outdoor basketball courts', 'Paved outdoor basketball courts is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Paved outdoor basketball courts', [Definition] = 'Paved outdoor basketball courts is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 9.00 WHERE [Code] = '02726' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02731') BEGIN INSERT INTO dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02731', 'Soccer field', 'Soccer field is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Soccer field', [Definition] = 'Soccer field is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 10.00 WHERE [Code] = '02731' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02729') BEGIN INSERT INTO dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02729', 'Softball field', 'Softball field is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Softball field', [Definition] = 'Softball field is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 11.00 WHERE [Code] = '02729' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02725') BEGIN INSERT INTO dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02725', 'Tennis courts', 'Tennis courts is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Tennis courts', [Definition] = 'Tennis courts is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 12.00 WHERE [Code] = '02725' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] WHERE [Code] = '02723') BEGIN INSERT INTO dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02723', 'Track/fields', 'Track/fields is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Track/fields', [Definition] = 'Track/fields is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 13.00 WHERE [Code] = '02723' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorAthleticOrPhysEdSpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingOutdoorOrNonathleticSpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingOutdoorOrNonathleticSpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorOrNonathleticSpaceType] WHERE [Code] = '13629') BEGIN INSERT INTO dbo.[RefBuildingOutdoorOrNonathleticSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13629', 'Kitchen garden', 'A garden in which plants for the use in the kitchen are cultivated.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorOrNonathleticSpaceType] -SET [Description] = 'Kitchen garden', [Definition] = 'A garden in which plants for the use in the kitchen are cultivated.', [SortOrder] = 1.00 WHERE [Code] = '13629' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorOrNonathleticSpaceType] WHERE [Code] = '13635') BEGIN INSERT INTO dbo.[RefBuildingOutdoorOrNonathleticSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13635', 'Natural habitat area', 'An area planted with native shrubs, trees and plants for instruction in science, social studies, art and literature and for general recreation; provides a safe habitat for birds, butterflies, insects and small animals.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorOrNonathleticSpaceType] -SET [Description] = 'Natural habitat area', [Definition] = 'An area planted with native shrubs, trees and plants for instruction in science, social studies, art and literature and for general recreation; provides a safe habitat for birds, butterflies, insects and small animals.', [SortOrder] = 2.00 WHERE [Code] = '13635' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorOrNonathleticSpaceType] WHERE [Code] = '13633') BEGIN INSERT INTO dbo.[RefBuildingOutdoorOrNonathleticSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13633', 'Outdoor classroom', 'An exterior area with seating for a class, shade, work-tables and access to water for informal or formal instruction, particularly for science, art, and nutrition, often in conjunction with a school garden or natural habitat area.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorOrNonathleticSpaceType] -SET [Description] = 'Outdoor classroom', [Definition] = 'An exterior area with seating for a class, shade, work-tables and access to water for informal or formal instruction, particularly for science, art, and nutrition, often in conjunction with a school garden or natural habitat area.', [SortOrder] = 3.00 WHERE [Code] = '13633' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorOrNonathleticSpaceType] WHERE [Code] = '13634') BEGIN INSERT INTO dbo.[RefBuildingOutdoorOrNonathleticSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13634', 'Outdoor seating', 'An exterior area with seating for a class, shade, work-tables and access to water for informal or formal instruction, particularly for science, art, and nutrition, often in conjunction with a school garden or natural habitat area.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorOrNonathleticSpaceType] -SET [Description] = 'Outdoor seating', [Definition] = 'An exterior area with seating for a class, shade, work-tables and access to water for informal or formal instruction, particularly for science, art, and nutrition, often in conjunction with a school garden or natural habitat area.', [SortOrder] = 4.00 WHERE [Code] = '13634' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorOrNonathleticSpaceType] WHERE [Code] = '02433') BEGIN INSERT INTO dbo.[RefBuildingOutdoorOrNonathleticSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02433', 'Playground', 'A piece of land used for and usually equipped with facilities for recreation especially by children.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorOrNonathleticSpaceType] -SET [Description] = 'Playground', [Definition] = 'A piece of land used for and usually equipped with facilities for recreation especially by children.', [SortOrder] = 5.00 WHERE [Code] = '02433' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorOrNonathleticSpaceType] WHERE [Code] = '03409') BEGIN INSERT INTO dbo.[RefBuildingOutdoorOrNonathleticSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03409', 'Sandbox', 'A box that contains sand for children to play in.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorOrNonathleticSpaceType] -SET [Description] = 'Sandbox', [Definition] = 'A box that contains sand for children to play in.', [SortOrder] = 6.00 WHERE [Code] = '03409' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorOrNonathleticSpaceType] WHERE [Code] = '03407') BEGIN INSERT INTO dbo.[RefBuildingOutdoorOrNonathleticSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03407', 'Schoolyard Garden', 'Defined garden beds in a sunny, flat or terraced area, small enough for children to reach into; access to water; storage for tools, equipment and supplies; preferably a compost area. Proximity to outdoor classroom is optimal.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorOrNonathleticSpaceType] -SET [Description] = 'Schoolyard Garden', [Definition] = 'Defined garden beds in a sunny, flat or terraced area, small enough for children to reach into; access to water; storage for tools, equipment and supplies; preferably a compost area. Proximity to outdoor classroom is optimal.', [SortOrder] = 7.00 WHERE [Code] = '03407' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingOutdoorOrNonathleticSpaceType] WHERE [Code] = '13636') BEGIN INSERT INTO dbo.[RefBuildingOutdoorOrNonathleticSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13636', 'Splash play area', 'A playground area designed for safe water play with small moving streams, fine spray and/or mist.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingOutdoorOrNonathleticSpaceType] -SET [Description] = 'Splash play area', [Definition] = 'A playground area designed for safe water play with small moving streams, fine spray and/or mist.', [SortOrder] = 8.00 WHERE [Code] = '13636' END -END - -PRINT N'Populate RefBuildingPerformingArtsSpecialtySpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingPerformingArtsSpecialtySpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02768') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02768', 'Auditorium (fixed seats)', 'A space with a stage and audience seating to accommodate performing arts or other activities for a large audience.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Auditorium (fixed seats)', [Definition] = 'A space with a stage and audience seating to accommodate performing arts or other activities for a large audience.', [SortOrder] = 1.00 WHERE [Code] = '02768' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02772') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02772', 'Backstage room/green room', 'A space for actors and actresses to use before and during performances.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Backstage room/green room', [Definition] = 'A space for actors and actresses to use before and during performances.', [SortOrder] = 2.00 WHERE [Code] = '02772' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '13637') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13637', 'Balcony', 'The a partial upper story of a fixed seat auditorium that includes added fixed seating for a theatre or assembly hall.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Balcony', [Definition] = 'The a partial upper story of a fixed seat auditorium that includes added fixed seating for a theatre or assembly hall.', [SortOrder] = 3.00 WHERE [Code] = '13637' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02650') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02650', 'Band room', 'A space for the band to practice and rehearse their music.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Band room', [Definition] = 'A space for the band to practice and rehearse their music.', [SortOrder] = 4.00 WHERE [Code] = '02650' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02654') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02654', 'Blackbox theater', 'A space consisting of a simple, somewhat unadorned performance space, usually a large square room with black walls and a flat floor for artists to explore theater.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Blackbox theater', [Definition] = 'A space consisting of a simple, somewhat unadorned performance space, usually a large square room with black walls and a flat floor for artists to explore theater.', [SortOrder] = 5.00 WHERE [Code] = '02654' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02652') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02652', 'Choral room', 'A space for students in the choir to practice and rehearse.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Choral room', [Definition] = 'A space for students in the choir to practice and rehearse.', [SortOrder] = 6.00 WHERE [Code] = '02652' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02769') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02769', 'Control room', 'A space adjacent to the auditorium and equipped with a viewing area and built-in projection equipment.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Control room', [Definition] = 'A space adjacent to the auditorium and equipped with a viewing area and built-in projection equipment.', [SortOrder] = 7.00 WHERE [Code] = '02769' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02770') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02770', 'Costume storage area', 'A space for costume storage.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Costume storage area', [Definition] = 'A space for costume storage.', [SortOrder] = 8.00 WHERE [Code] = '02770' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02653') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02653', 'Drama classroom', 'A space for students to take drama classes and practice theater.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Drama classroom', [Definition] = 'A space for students to take drama classes and practice theater.', [SortOrder] = 9.00 WHERE [Code] = '02653' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02655') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02655', 'Instrument storage', 'A space to store musical instruments.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Instrument storage', [Definition] = 'A space to store musical instruments.', [SortOrder] = 10.00 WHERE [Code] = '02655' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02656') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02656', 'Keyboard laboratory', 'A space to play the keyboard.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Keyboard laboratory', [Definition] = 'A space to play the keyboard.', [SortOrder] = 11.00 WHERE [Code] = '02656' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02659') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02659', 'Multimedia production center', 'A space that allows for the production of different content forms.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Multimedia production center', [Definition] = 'A space that allows for the production of different content forms.', [SortOrder] = 12.00 WHERE [Code] = '02659' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02658') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02658', 'Multipurpose music room', 'A space that is used for a variety of musical activities.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Multipurpose music room', [Definition] = 'A space that is used for a variety of musical activities.', [SortOrder] = 13.00 WHERE [Code] = '02658' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02651') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02651', 'Practice room', 'A space for students to practice and rehearse their music.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Practice room', [Definition] = 'A space for students to practice and rehearse their music.', [SortOrder] = 14.00 WHERE [Code] = '02651' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02660') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02660', 'Radio/television broadcast studios', 'A space in which radio and/or television broadcasts take place.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Radio/television broadcast studios', [Definition] = 'A space in which radio and/or television broadcasts take place.', [SortOrder] = 15.00 WHERE [Code] = '02660' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02771') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02771', 'Set storage area', 'A space for set storage.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Set storage area', [Definition] = 'A space for set storage.', [SortOrder] = 16.00 WHERE [Code] = '02771' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '02657') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02657', 'Television studio', 'A space in which television or video productions take place, either for live television, for recording live to tape, or for the acquisition of raw footage for postproduction.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Television studio', [Definition] = 'A space in which television or video productions take place, either for live television, for recording live to tape, or for the acquisition of raw footage for postproduction.', [SortOrder] = 17.00 WHERE [Code] = '02657' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPerformingArtsSpecialtySpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingPerformingArtsSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the space designed, located, furnished, and equipped for instruction and support of music and drama curricula and productions.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPerformingArtsSpecialtySpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the space designed, located, furnished, and equipped for instruction and support of music and drama curricula and productions.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingPlumbingSystemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingPlumbingSystemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '02470') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02470', 'Detention ponds', 'Detention ponds is specified as the component of an on-site system for supplying, eliminating, and treating water.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Detention ponds', [Definition] = 'Detention ponds is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 1.00 WHERE [Code] = '02470' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '13596') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13596', 'Domestic water distribution', 'Domestic water distribution is specified as the component of an on-site system for supplying, eliminating, and treating water.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Domestic water distribution', [Definition] = 'Domestic water distribution is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 2.00 WHERE [Code] = '13596' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '02463') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02463', 'Drains', 'Drains is specified as the component of an on-site system for supplying, eliminating, and treating water.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Drains', [Definition] = 'Drains is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 3.00 WHERE [Code] = '02463' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '02471') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02471', 'Filtration system', 'Filtration system is specified as the component of an on-site system for supplying, eliminating, and treating water.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Filtration system', [Definition] = 'Filtration system is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 4.00 WHERE [Code] = '02471' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '02467') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02467', 'Parcel drainage', 'Parcel drainage is specified as the component of an on-site system for supplying, eliminating, and treating water.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Parcel drainage', [Definition] = 'Parcel drainage is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 5.00 WHERE [Code] = '02467' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '02468') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02468', 'Piping', 'Piping is specified as the component of an on-site system for supplying, eliminating, and treating water.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Piping', [Definition] = 'Piping is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 6.00 WHERE [Code] = '02468' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '13597') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13597', 'Plumbing fixtures', 'Plumbing fixtures is specified as the component of an on-site system for supplying, eliminating, and treating water.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Plumbing fixtures', [Definition] = 'Plumbing fixtures is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 7.00 WHERE [Code] = '13597' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '13598') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13598', 'Rain water drainage', 'Rain water drainage is specified as the component of an on-site system for supplying, eliminating, and treating water.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Rain water drainage', [Definition] = 'Rain water drainage is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 8.00 WHERE [Code] = '13598' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '13599') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13599', 'Sanitary waste', 'Sanitary waste is specified as the component of an on-site system for supplying, eliminating, and treating water.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Sanitary waste', [Definition] = 'Sanitary waste is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 9.00 WHERE [Code] = '13599' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '02465') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02465', 'Sewage treatment', 'Sewage treatment is specified as the component of an on-site system for supplying, eliminating, and treating water.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Sewage treatment', [Definition] = 'Sewage treatment is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 10.00 WHERE [Code] = '02465' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '02464') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02464', 'Vents', 'Vents is specified as the component of an on-site system for supplying, eliminating, and treating water.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Vents', [Definition] = 'Vents is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 11.00 WHERE [Code] = '02464' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '02469') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02469', 'Water softeners', 'Water softeners is specified as the component of an on-site system for supplying, eliminating, and treating water.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Water softeners', [Definition] = 'Water softeners is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 12.00 WHERE [Code] = '02469' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '02466') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02466', 'Water source', 'Water source is specified as the component of an on-site system for supplying, eliminating, and treating water.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Water source', [Definition] = 'Water source is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 13.00 WHERE [Code] = '02466' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '02462') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02462', 'Water supply', 'Water supply is specified as the component of an on-site system for supplying, eliminating, and treating water.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Water supply', [Definition] = 'Water supply is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 14.00 WHERE [Code] = '02462' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPlumbingSystemType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingPlumbingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the component of an on-site system for supplying, eliminating, and treating water.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPlumbingSystemType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingPrimaryUseType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingPrimaryUseType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPrimaryUseType] WHERE [Code] = '13561') BEGIN INSERT INTO dbo.[RefBuildingPrimaryUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13561', 'Church', 'Church is specified as the primary use type of the building in which a school is located.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPrimaryUseType] -SET [Description] = 'Church', [Definition] = 'Church is specified as the primary use type of the building in which a school is located.', [SortOrder] = 1.00 WHERE [Code] = '13561' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPrimaryUseType] WHERE [Code] = '13562') BEGIN INSERT INTO dbo.[RefBuildingPrimaryUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13562', 'Commercial office building', 'Commercial office building is specified as the primary use type of the building in which a school is located.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPrimaryUseType] -SET [Description] = 'Commercial office building', [Definition] = 'Commercial office building is specified as the primary use type of the building in which a school is located.', [SortOrder] = 2.00 WHERE [Code] = '13562' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPrimaryUseType] WHERE [Code] = '13563') BEGIN INSERT INTO dbo.[RefBuildingPrimaryUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13563', 'Commercial warehouse', 'Commercial warehouse is specified as the primary use type of the building in which a school is located.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPrimaryUseType] -SET [Description] = 'Commercial warehouse', [Definition] = 'Commercial warehouse is specified as the primary use type of the building in which a school is located.', [SortOrder] = 3.00 WHERE [Code] = '13563' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPrimaryUseType] WHERE [Code] = '13564') BEGIN INSERT INTO dbo.[RefBuildingPrimaryUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13564', 'Community center', 'Community center is specified as the primary use type of the building in which a school is located.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPrimaryUseType] -SET [Description] = 'Community center', [Definition] = 'Community center is specified as the primary use type of the building in which a school is located.', [SortOrder] = 4.00 WHERE [Code] = '13564' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingPrimaryUseType] WHERE [Code] = '13565') BEGIN INSERT INTO dbo.[RefBuildingPrimaryUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13565', 'Public school building', 'Public school building is specified as the primary use type of the building in which a school is located.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingPrimaryUseType] -SET [Description] = 'Public school building', [Definition] = 'Public school building is specified as the primary use type of the building in which a school is located.', [SortOrder] = 5.00 WHERE [Code] = '13565' END -END - -PRINT N'Populate RefBuildingSchoolDesignType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingSchoolDesignType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSchoolDesignType] WHERE [Code] = '02608') BEGIN INSERT INTO dbo.[RefBuildingSchoolDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02608', '6-12 school', '6-12 school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSchoolDesignType] -SET [Description] = '6-12 school', [Definition] = '6-12 school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', [SortOrder] = 1.00 WHERE [Code] = '02608' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSchoolDesignType] WHERE [Code] = '02605') BEGIN INSERT INTO dbo.[RefBuildingSchoolDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02605', 'Adult education school', 'Adult education school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSchoolDesignType] -SET [Description] = 'Adult education school', [Definition] = 'Adult education school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', [SortOrder] = 2.00 WHERE [Code] = '02605' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSchoolDesignType] WHERE [Code] = '02609') BEGIN INSERT INTO dbo.[RefBuildingSchoolDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02609', 'Alternative school', 'Alternative school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSchoolDesignType] -SET [Description] = 'Alternative school', [Definition] = 'Alternative school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', [SortOrder] = 3.00 WHERE [Code] = '02609' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSchoolDesignType] WHERE [Code] = '02604') BEGIN INSERT INTO dbo.[RefBuildingSchoolDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02604', 'Career-technology education center', 'Career-technology education center is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSchoolDesignType] -SET [Description] = 'Career-technology education center', [Definition] = 'Career-technology education center is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', [SortOrder] = 4.00 WHERE [Code] = '02604' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSchoolDesignType] WHERE [Code] = '02599') BEGIN INSERT INTO dbo.[RefBuildingSchoolDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02599', 'Early childhood center', 'Early childhood center is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSchoolDesignType] -SET [Description] = 'Early childhood center', [Definition] = 'Early childhood center is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', [SortOrder] = 5.00 WHERE [Code] = '02599' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSchoolDesignType] WHERE [Code] = '02600') BEGIN INSERT INTO dbo.[RefBuildingSchoolDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02600', 'Elementary school', 'Elementary school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSchoolDesignType] -SET [Description] = 'Elementary school', [Definition] = 'Elementary school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', [SortOrder] = 6.00 WHERE [Code] = '02600' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSchoolDesignType] WHERE [Code] = '02602') BEGIN INSERT INTO dbo.[RefBuildingSchoolDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02602', 'Junior high school', 'Junior high school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSchoolDesignType] -SET [Description] = 'Junior high school', [Definition] = 'Junior high school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', [SortOrder] = 7.00 WHERE [Code] = '02602' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSchoolDesignType] WHERE [Code] = '02607') BEGIN INSERT INTO dbo.[RefBuildingSchoolDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02607', 'K-8 school', 'K-8 school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSchoolDesignType] -SET [Description] = 'K-8 school', [Definition] = 'K-8 school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', [SortOrder] = 8.00 WHERE [Code] = '02607' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSchoolDesignType] WHERE [Code] = '02601') BEGIN INSERT INTO dbo.[RefBuildingSchoolDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02601', 'Middle school', 'Middle school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSchoolDesignType] -SET [Description] = 'Middle school', [Definition] = 'Middle school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', [SortOrder] = 9.00 WHERE [Code] = '02601' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSchoolDesignType] WHERE [Code] = '13638') BEGIN INSERT INTO dbo.[RefBuildingSchoolDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13638', 'Performing arts school', 'Performing arts school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSchoolDesignType] -SET [Description] = 'Performing arts school', [Definition] = 'Performing arts school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', [SortOrder] = 10.00 WHERE [Code] = '13638' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSchoolDesignType] WHERE [Code] = '13639') BEGIN INSERT INTO dbo.[RefBuildingSchoolDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13639', 'Science, technology, engineering and math (STEM) school', 'Science, technology, engineering and math (STEM) school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSchoolDesignType] -SET [Description] = 'Science, technology, engineering and math (STEM) school', [Definition] = 'Science, technology, engineering and math (STEM) school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', [SortOrder] = 11.00 WHERE [Code] = '13639' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSchoolDesignType] WHERE [Code] = '02603') BEGIN INSERT INTO dbo.[RefBuildingSchoolDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02603', 'Senior high school', 'Senior high school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSchoolDesignType] -SET [Description] = 'Senior high school', [Definition] = 'Senior high school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', [SortOrder] = 12.00 WHERE [Code] = '02603' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSchoolDesignType] WHERE [Code] = '02606') BEGIN INSERT INTO dbo.[RefBuildingSchoolDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02606', 'Special education school', 'Special education school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSchoolDesignType] -SET [Description] = 'Special education school', [Definition] = 'Special education school is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', [SortOrder] = 13.00 WHERE [Code] = '02606' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSchoolDesignType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingSchoolDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSchoolDesignType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the physical layout and character of a school facility, as determined by age groups served and educational programs provided.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingScienceSpecialtySpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingScienceSpecialtySpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingScienceSpecialtySpaceType] WHERE [Code] = '02661') BEGIN INSERT INTO dbo.[RefBuildingScienceSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02661', 'Biology laboratory', 'Biology laboratory is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingScienceSpecialtySpaceType] -SET [Description] = 'Biology laboratory', [Definition] = 'Biology laboratory is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', [SortOrder] = 1.00 WHERE [Code] = '02661' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingScienceSpecialtySpaceType] WHERE [Code] = '02668') BEGIN INSERT INTO dbo.[RefBuildingScienceSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02668', 'Chemical storage room', 'Chemical storage room is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingScienceSpecialtySpaceType] -SET [Description] = 'Chemical storage room', [Definition] = 'Chemical storage room is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', [SortOrder] = 2.00 WHERE [Code] = '02668' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingScienceSpecialtySpaceType] WHERE [Code] = '02662') BEGIN INSERT INTO dbo.[RefBuildingScienceSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02662', 'Chemistry laboratory', 'Chemistry laboratory is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingScienceSpecialtySpaceType] -SET [Description] = 'Chemistry laboratory', [Definition] = 'Chemistry laboratory is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', [SortOrder] = 3.00 WHERE [Code] = '02662' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingScienceSpecialtySpaceType] WHERE [Code] = '02663') BEGIN INSERT INTO dbo.[RefBuildingScienceSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02663', 'Environmental science laboratory', 'Environmental science laboratory is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingScienceSpecialtySpaceType] -SET [Description] = 'Environmental science laboratory', [Definition] = 'Environmental science laboratory is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', [SortOrder] = 4.00 WHERE [Code] = '02663' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingScienceSpecialtySpaceType] WHERE [Code] = '02670') BEGIN INSERT INTO dbo.[RefBuildingScienceSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02670', 'General science laboratory', 'General science laboratory is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingScienceSpecialtySpaceType] -SET [Description] = 'General science laboratory', [Definition] = 'General science laboratory is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', [SortOrder] = 5.00 WHERE [Code] = '02670' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingScienceSpecialtySpaceType] WHERE [Code] = '02669') BEGIN INSERT INTO dbo.[RefBuildingScienceSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02669', 'Miscellaneous storage room', 'Miscellaneous storage room is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingScienceSpecialtySpaceType] -SET [Description] = 'Miscellaneous storage room', [Definition] = 'Miscellaneous storage room is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', [SortOrder] = 6.00 WHERE [Code] = '02669' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingScienceSpecialtySpaceType] WHERE [Code] = '02435') BEGIN INSERT INTO dbo.[RefBuildingScienceSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02435', 'Outdoor classroom', 'Outdoor classroom is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingScienceSpecialtySpaceType] -SET [Description] = 'Outdoor classroom', [Definition] = 'Outdoor classroom is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', [SortOrder] = 7.00 WHERE [Code] = '02435' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingScienceSpecialtySpaceType] WHERE [Code] = '02664') BEGIN INSERT INTO dbo.[RefBuildingScienceSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02664', 'Physics laboratory', 'Physics laboratory is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingScienceSpecialtySpaceType] -SET [Description] = 'Physics laboratory', [Definition] = 'Physics laboratory is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', [SortOrder] = 8.00 WHERE [Code] = '02664' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingScienceSpecialtySpaceType] WHERE [Code] = '02665') BEGIN INSERT INTO dbo.[RefBuildingScienceSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02665', 'Planetarium', 'Planetarium is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingScienceSpecialtySpaceType] -SET [Description] = 'Planetarium', [Definition] = 'Planetarium is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', [SortOrder] = 9.00 WHERE [Code] = '02665' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingScienceSpecialtySpaceType] WHERE [Code] = '02666') BEGIN INSERT INTO dbo.[RefBuildingScienceSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02666', 'Prep room', 'Prep room is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingScienceSpecialtySpaceType] -SET [Description] = 'Prep room', [Definition] = 'Prep room is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', [SortOrder] = 10.00 WHERE [Code] = '02666' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingScienceSpecialtySpaceType] WHERE [Code] = '02667') BEGIN INSERT INTO dbo.[RefBuildingScienceSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02667', 'Science lecture room', 'Science lecture room is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingScienceSpecialtySpaceType] -SET [Description] = 'Science lecture room', [Definition] = 'Science lecture room is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', [SortOrder] = 11.00 WHERE [Code] = '02667' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingScienceSpecialtySpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingScienceSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingScienceSpecialtySpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the space designed, located, furnished, and equipped for instruction and experimentation in science.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingSecuritySystemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingSecuritySystemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSecuritySystemType] WHERE [Code] = '02508') BEGIN INSERT INTO dbo.[RefBuildingSecuritySystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02508', 'Card access control system', 'Card access control system is specified as the type of system that protects the facility from intrusion.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSecuritySystemType] -SET [Description] = 'Card access control system', [Definition] = 'Card access control system is specified as the type of system that protects the facility from intrusion.', [SortOrder] = 1.00 WHERE [Code] = '02508' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSecuritySystemType] WHERE [Code] = '02507') BEGIN INSERT INTO dbo.[RefBuildingSecuritySystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02507', 'Intrusion detection system', 'Intrusion detection system is specified as the type of system that protects the facility from intrusion.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSecuritySystemType] -SET [Description] = 'Intrusion detection system', [Definition] = 'Intrusion detection system is specified as the type of system that protects the facility from intrusion.', [SortOrder] = 2.00 WHERE [Code] = '02507' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSecuritySystemType] WHERE [Code] = '02509') BEGIN INSERT INTO dbo.[RefBuildingSecuritySystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02509', 'Keypad access control system', 'Keypad access control system is specified as the type of system that protects the facility from intrusion.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSecuritySystemType] -SET [Description] = 'Keypad access control system', [Definition] = 'Keypad access control system is specified as the type of system that protects the facility from intrusion.', [SortOrder] = 3.00 WHERE [Code] = '02509' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSecuritySystemType] WHERE [Code] = '02510') BEGIN INSERT INTO dbo.[RefBuildingSecuritySystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02510', 'Metal detector', 'Metal detector is specified as the type of system that protects the facility from intrusion.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSecuritySystemType] -SET [Description] = 'Metal detector', [Definition] = 'Metal detector is specified as the type of system that protects the facility from intrusion.', [SortOrder] = 4.00 WHERE [Code] = '02510' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSecuritySystemType] WHERE [Code] = '02499') BEGIN INSERT INTO dbo.[RefBuildingSecuritySystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02499', 'Video', 'Video is specified as the type of system that protects the facility from intrusion.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSecuritySystemType] -SET [Description] = 'Video', [Definition] = 'Video is specified as the type of system that protects the facility from intrusion.', [SortOrder] = 5.00 WHERE [Code] = '02499' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSecuritySystemType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingSecuritySystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of system that protects the facility from intrusion.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSecuritySystemType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of system that protects the facility from intrusion.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingSiteUseRestrictionsType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingSiteUseRestrictionsType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSiteUseRestrictionsType] WHERE [Code] = '02446') BEGIN INSERT INTO dbo.[RefBuildingSiteUseRestrictionsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02446', 'Enterprise zone', 'The government identification for special funding opportunities based on income of residents of the area.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSiteUseRestrictionsType] -SET [Description] = 'Enterprise zone', [Definition] = 'The government identification for special funding opportunities based on income of residents of the area.', [SortOrder] = 1.00 WHERE [Code] = '02446' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSiteUseRestrictionsType] WHERE [Code] = '02449') BEGIN INSERT INTO dbo.[RefBuildingSiteUseRestrictionsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02449', 'Environmental contamination', 'All or a portion of the site is subject to any environmental contamination such as oil or toxic soil conditions.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSiteUseRestrictionsType] -SET [Description] = 'Environmental contamination', [Definition] = 'All or a portion of the site is subject to any environmental contamination such as oil or toxic soil conditions.', [SortOrder] = 2.00 WHERE [Code] = '02449' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSiteUseRestrictionsType] WHERE [Code] = '02448') BEGIN INSERT INTO dbo.[RefBuildingSiteUseRestrictionsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02448', 'Environmental protection', 'All or a portion of the site is protected under any environmental restrictions for development, such as wetlands.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSiteUseRestrictionsType] -SET [Description] = 'Environmental protection', [Definition] = 'All or a portion of the site is protected under any environmental restrictions for development, such as wetlands.', [SortOrder] = 3.00 WHERE [Code] = '02448' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSiteUseRestrictionsType] WHERE [Code] = '02447') BEGIN INSERT INTO dbo.[RefBuildingSiteUseRestrictionsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02447', 'Historic district', 'The school or LEA facility is located in a publicly designated historic district, whether or not the facility itself is historic.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSiteUseRestrictionsType] -SET [Description] = 'Historic district', [Definition] = 'The school or LEA facility is located in a publicly designated historic district, whether or not the facility itself is historic.', [SortOrder] = 4.00 WHERE [Code] = '02447' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSiteUseRestrictionsType] WHERE [Code] = '02445') BEGIN INSERT INTO dbo.[RefBuildingSiteUseRestrictionsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02445', 'Land use', 'The underlying municipal zoning regulation which guides the potential development of a site.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSiteUseRestrictionsType] -SET [Description] = 'Land use', [Definition] = 'The underlying municipal zoning regulation which guides the potential development of a site.', [SortOrder] = 5.00 WHERE [Code] = '02445' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSiteUseRestrictionsType] WHERE [Code] = '02450') BEGIN INSERT INTO dbo.[RefBuildingSiteUseRestrictionsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02450', 'Site easements', 'The covenants legally attached to a site, including agreements allowing other parties to use the site and agreements allowing the LEA to use sites belonging to others.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSiteUseRestrictionsType] -SET [Description] = 'Site easements', [Definition] = 'The covenants legally attached to a site, including agreements allowing other parties to use the site and agreements allowing the LEA to use sites belonging to others.', [SortOrder] = 6.00 WHERE [Code] = '02450' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSiteUseRestrictionsType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingSiteUseRestrictionsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as a characterization of a site that would define restrictions or opportunities.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSiteUseRestrictionsType] -SET [Description] = 'Other', [Definition] = 'Other is specified as a characterization of a site that would define restrictions or opportunities.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingSpaceDesignType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingSpaceDesignType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '02633') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02633', 'Administration', 'A space primarily for conducting overall administrative and business functions of a school, building, program, or service.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Administration', [Definition] = 'A space primarily for conducting overall administrative and business functions of a school, building, program, or service.', [SortOrder] = 1.00 WHERE [Code] = '02633' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '02634') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02634', 'Assembly', 'A space primarily for formal and informal gathering, where school and community related activities are conducted by students, staff, and the public.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Assembly', [Definition] = 'A space primarily for formal and informal gathering, where school and community related activities are conducted by students, staff, and the public.', [SortOrder] = 2.00 WHERE [Code] = '02634' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '02631') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02631', 'Athletic', 'A space primarily or exclusively for physical education and athletic activities, often with specialized floor, walls, size, equipment, lighting, and auxiliary spaces.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Athletic', [Definition] = 'A space primarily or exclusively for physical education and athletic activities, often with specialized floor, walls, size, equipment, lighting, and auxiliary spaces.', [SortOrder] = 3.00 WHERE [Code] = '02631' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '02628') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02628', 'Basic classroom', 'A space for the activities dealing directly with the interaction between teachers and students that does not require content specialized furniture, fixtures, or equipment.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Basic classroom', [Definition] = 'A space for the activities dealing directly with the interaction between teachers and students that does not require content specialized furniture, fixtures, or equipment.', [SortOrder] = 4.00 WHERE [Code] = '02628' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '02635') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02635', 'Corridors', 'A space for traveling throughout the building.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Corridors', [Definition] = 'A space for traveling throughout the building.', [SortOrder] = 5.00 WHERE [Code] = '02635' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '02639') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02639', 'Dormitory room', 'A space specially designed for residence of students.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Dormitory room', [Definition] = 'A space specially designed for residence of students.', [SortOrder] = 6.00 WHERE [Code] = '02639' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '02638') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02638', 'Food service', 'A space to store food.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Food service', [Definition] = 'A space to store food.', [SortOrder] = 7.00 WHERE [Code] = '02638' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '02630') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02630', 'Library/media', 'A space for reading, reference, and research in various media, including books, periodicals, and electronic communications.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Library/media', [Definition] = 'A space for reading, reference, and research in various media, including books, periodicals, and electronic communications.', [SortOrder] = 8.00 WHERE [Code] = '02630' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '02773') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02773', 'Multi-purpose Room', 'A space with a stage and movable chairs designed for assemblies, but also usable for other purposes.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Multi-purpose Room', [Definition] = 'A space with a stage and movable chairs designed for assemblies, but also usable for other purposes.', [SortOrder] = 9.00 WHERE [Code] = '02773' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '02636') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02636', 'Operational support', 'A space to support building systems and components and to operate the physical plant.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Operational support', [Definition] = 'A space to support building systems and components and to operate the physical plant.', [SortOrder] = 10.00 WHERE [Code] = '02636' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '03017') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03017', 'Restroom', 'A location on campus designated as a bathroom facility.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Restroom', [Definition] = 'A location on campus designated as a bathroom facility.', [SortOrder] = 11.00 WHERE [Code] = '03017' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '02629') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02629', 'Specialty classroom', 'A space with special elements including furniture, fixtures, equipment, and sometimes size to support instruction in a particular content area.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Specialty classroom', [Definition] = 'A space with special elements including furniture, fixtures, equipment, and sometimes size to support instruction in a particular content area.', [SortOrder] = 12.00 WHERE [Code] = '02629' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '02637') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02637', 'Storage', 'A space to provide safekeeping for materials and supplies.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Storage', [Definition] = 'A space to provide safekeeping for materials and supplies.', [SortOrder] = 13.00 WHERE [Code] = '02637' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '02788') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02788', 'Storage - hazardous materials', 'Storage for hazardous materials is specified as the primary design or purpose of a space, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Storage - hazardous materials', [Definition] = 'Storage for hazardous materials is specified as the primary design or purpose of a space, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', [SortOrder] = 14.00 WHERE [Code] = '02788' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '02632') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02632', 'Student support', 'A space for providing specialized support services to students such as health care or physical therapy.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Student support', [Definition] = 'A space for providing specialized support services to students such as health care or physical therapy.', [SortOrder] = 15.00 WHERE [Code] = '02632' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpaceDesignType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingSpaceDesignType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the primary design or purpose of a space, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpaceDesignType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the primary design or purpose of a space, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingSpecEdSpecialtySpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingSpecEdSpecialtySpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpecEdSpecialtySpaceType] WHERE [Code] = '02674') BEGIN INSERT INTO dbo.[RefBuildingSpecEdSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02674', 'IEP conference room', 'IEP conference room is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpecEdSpecialtySpaceType] -SET [Description] = 'IEP conference room', [Definition] = 'IEP conference room is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', [SortOrder] = 1.00 WHERE [Code] = '02674' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpecEdSpecialtySpaceType] WHERE [Code] = '02675') BEGIN INSERT INTO dbo.[RefBuildingSpecEdSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02675', 'Itinerant staff room', 'Itinerant staff room is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpecEdSpecialtySpaceType] -SET [Description] = 'Itinerant staff room', [Definition] = 'Itinerant staff room is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', [SortOrder] = 2.00 WHERE [Code] = '02675' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpecEdSpecialtySpaceType] WHERE [Code] = '02671') BEGIN INSERT INTO dbo.[RefBuildingSpecEdSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02671', 'Occupational therapy room', 'Occupational therapy room is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpecEdSpecialtySpaceType] -SET [Description] = 'Occupational therapy room', [Definition] = 'Occupational therapy room is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', [SortOrder] = 3.00 WHERE [Code] = '02671' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpecEdSpecialtySpaceType] WHERE [Code] = '02673') BEGIN INSERT INTO dbo.[RefBuildingSpecEdSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02673', 'Physical therapy room', 'Physical therapy room is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpecEdSpecialtySpaceType] -SET [Description] = 'Physical therapy room', [Definition] = 'Physical therapy room is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', [SortOrder] = 4.00 WHERE [Code] = '02673' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpecEdSpecialtySpaceType] WHERE [Code] = '03107') BEGIN INSERT INTO dbo.[RefBuildingSpecEdSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03107', 'Resource room', 'Resource room is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpecEdSpecialtySpaceType] -SET [Description] = 'Resource room', [Definition] = 'Resource room is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', [SortOrder] = 5.00 WHERE [Code] = '03107' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpecEdSpecialtySpaceType] WHERE [Code] = '02676') BEGIN INSERT INTO dbo.[RefBuildingSpecEdSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02676', 'Self-contained classroom', 'Self-contained classroom is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpecEdSpecialtySpaceType] -SET [Description] = 'Self-contained classroom', [Definition] = 'Self-contained classroom is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', [SortOrder] = 6.00 WHERE [Code] = '02676' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpecEdSpecialtySpaceType] WHERE [Code] = '02672') BEGIN INSERT INTO dbo.[RefBuildingSpecEdSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02672', 'Speech and hearing room', 'Speech and hearing room is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpecEdSpecialtySpaceType] -SET [Description] = 'Speech and hearing room', [Definition] = 'Speech and hearing room is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', [SortOrder] = 7.00 WHERE [Code] = '02672' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSpecEdSpecialtySpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingSpecEdSpecialtySpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSpecEdSpecialtySpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingStudentSupportSpaceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingStudentSupportSpaceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingStudentSupportSpaceType] WHERE [Code] = '02738') BEGIN INSERT INTO dbo.[RefBuildingStudentSupportSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02738', 'Career center', 'Career center is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingStudentSupportSpaceType] -SET [Description] = 'Career center', [Definition] = 'Career center is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', [SortOrder] = 1.00 WHERE [Code] = '02738' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingStudentSupportSpaceType] WHERE [Code] = '02739') BEGIN INSERT INTO dbo.[RefBuildingStudentSupportSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02739', 'College center', 'College center is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingStudentSupportSpaceType] -SET [Description] = 'College center', [Definition] = 'College center is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', [SortOrder] = 2.00 WHERE [Code] = '02739' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingStudentSupportSpaceType] WHERE [Code] = '02737') BEGIN INSERT INTO dbo.[RefBuildingStudentSupportSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02737', 'Guidance/counseling room', 'Guidance/counseling room is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingStudentSupportSpaceType] -SET [Description] = 'Guidance/counseling room', [Definition] = 'Guidance/counseling room is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', [SortOrder] = 3.00 WHERE [Code] = '02737' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingStudentSupportSpaceType] WHERE [Code] = '02736') BEGIN INSERT INTO dbo.[RefBuildingStudentSupportSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02736', 'Health room lavatory', 'Health room lavatory is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingStudentSupportSpaceType] -SET [Description] = 'Health room lavatory', [Definition] = 'Health room lavatory is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', [SortOrder] = 4.00 WHERE [Code] = '02736' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingStudentSupportSpaceType] WHERE [Code] = '02735') BEGIN INSERT INTO dbo.[RefBuildingStudentSupportSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02735', 'Health suite', 'Health suite is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingStudentSupportSpaceType] -SET [Description] = 'Health suite', [Definition] = 'Health suite is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', [SortOrder] = 5.00 WHERE [Code] = '02735' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingStudentSupportSpaceType] WHERE [Code] = '02733') BEGIN INSERT INTO dbo.[RefBuildingStudentSupportSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02733', 'In-school suspension room', 'In-school suspension room is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingStudentSupportSpaceType] -SET [Description] = 'In-school suspension room', [Definition] = 'In-school suspension room is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', [SortOrder] = 6.00 WHERE [Code] = '02733' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingStudentSupportSpaceType] WHERE [Code] = '02740') BEGIN INSERT INTO dbo.[RefBuildingStudentSupportSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02740', 'Internship center', 'Internship center is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingStudentSupportSpaceType] -SET [Description] = 'Internship center', [Definition] = 'Internship center is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', [SortOrder] = 7.00 WHERE [Code] = '02740' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingStudentSupportSpaceType] WHERE [Code] = '02734') BEGIN INSERT INTO dbo.[RefBuildingStudentSupportSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02734', 'Nurse''s station', 'Nurse''s station is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingStudentSupportSpaceType] -SET [Description] = 'Nurse''s station', [Definition] = 'Nurse''s station is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', [SortOrder] = 8.00 WHERE [Code] = '02734' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingStudentSupportSpaceType] WHERE [Code] = '02741') BEGIN INSERT INTO dbo.[RefBuildingStudentSupportSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02741', 'Student club space', 'Student club space is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingStudentSupportSpaceType] -SET [Description] = 'Student club space', [Definition] = 'Student club space is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', [SortOrder] = 9.00 WHERE [Code] = '02741' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingStudentSupportSpaceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingStudentSupportSpaceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingStudentSupportSpaceType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingSystemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingSystemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSystemType] WHERE [Code] = '02455') BEGIN INSERT INTO dbo.[RefBuildingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02455', 'Air distribution system', 'The primary means by which air is circulated, freshened, and exhausted.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSystemType] -SET [Description] = 'Air distribution system', [Definition] = 'The primary means by which air is circulated, freshened, and exhausted.', [SortOrder] = 1.00 WHERE [Code] = '02455' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSystemType] WHERE [Code] = '02456') BEGIN INSERT INTO dbo.[RefBuildingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02456', 'Communications system', 'The types of systems, interface, and management components for carrying voice, video, and data throughout a building.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSystemType] -SET [Description] = 'Communications system', [Definition] = 'The types of systems, interface, and management components for carrying voice, video, and data throughout a building.', [SortOrder] = 2.00 WHERE [Code] = '02456' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSystemType] WHERE [Code] = '02454') BEGIN INSERT INTO dbo.[RefBuildingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02454', 'Cooling generation system', 'The type of mechanical systems and building designs used for cooling.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSystemType] -SET [Description] = 'Cooling generation system', [Definition] = 'The type of mechanical systems and building designs used for cooling.', [SortOrder] = 3.00 WHERE [Code] = '02454' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSystemType] WHERE [Code] = '02452') BEGIN INSERT INTO dbo.[RefBuildingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02452', 'Electrical system', 'The type of system that collects and distributes electricity throughout the building or site.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSystemType] -SET [Description] = 'Electrical system', [Definition] = 'The type of system that collects and distributes electricity throughout the building or site.', [SortOrder] = 4.00 WHERE [Code] = '02452' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSystemType] WHERE [Code] = '02459') BEGIN INSERT INTO dbo.[RefBuildingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02459', 'Fire protection system', 'The type of system that protects the facility against fire.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSystemType] -SET [Description] = 'Fire protection system', [Definition] = 'The type of system that protects the facility against fire.', [SortOrder] = 5.00 WHERE [Code] = '02459' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSystemType] WHERE [Code] = '02453') BEGIN INSERT INTO dbo.[RefBuildingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02453', 'Heating generation system', 'The method by which the heat is distributed and delivered throughout the room(s) or building.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSystemType] -SET [Description] = 'Heating generation system', [Definition] = 'The method by which the heat is distributed and delivered throughout the room(s) or building.', [SortOrder] = 6.00 WHERE [Code] = '02453' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSystemType] WHERE [Code] = '02460') BEGIN INSERT INTO dbo.[RefBuildingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02460', 'Mechanical system', 'The major manufactured systems required to operated in a building to achieve thermal and air quality comfort.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSystemType] -SET [Description] = 'Mechanical system', [Definition] = 'The major manufactured systems required to operated in a building to achieve thermal and air quality comfort.', [SortOrder] = 7.00 WHERE [Code] = '02460' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSystemType] WHERE [Code] = '02451') BEGIN INSERT INTO dbo.[RefBuildingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02451', 'Plumbing system', 'The component of an on-site system for supplying, eliminating, and treating water.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSystemType] -SET [Description] = 'Plumbing system', [Definition] = 'The component of an on-site system for supplying, eliminating, and treating water.', [SortOrder] = 8.00 WHERE [Code] = '02451' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSystemType] WHERE [Code] = '02458') BEGIN INSERT INTO dbo.[RefBuildingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02458', 'Security system', 'The type of system that protects the facility from intrusion.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSystemType] -SET [Description] = 'Security system', [Definition] = 'The type of system that protects the facility from intrusion.', [SortOrder] = 9.00 WHERE [Code] = '02458' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSystemType] WHERE [Code] = '02457') BEGIN INSERT INTO dbo.[RefBuildingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02457', 'Technology wiring', 'The means through which voice, video, audio, and data information are conveyed.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSystemType] -SET [Description] = 'Technology wiring', [Definition] = 'The means through which voice, video, audio, and data information are conveyed.', [SortOrder] = 10.00 WHERE [Code] = '02457' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingSystemType] WHERE [Code] = '02461') BEGIN INSERT INTO dbo.[RefBuildingSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02461', 'Vertical transportation', 'The type of system used to convey persons or freight between floors.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingSystemType] -SET [Description] = 'Vertical transportation', [Definition] = 'The type of system used to convey persons or freight between floors.', [SortOrder] = 11.00 WHERE [Code] = '02461' END -END - -PRINT N'Populate RefBuildingTechnologyWiringSystemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingTechnologyWiringSystemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingTechnologyWiringSystemType] WHERE [Code] = '02504') BEGIN INSERT INTO dbo.[RefBuildingTechnologyWiringSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02504', 'Coaxial cable', 'Coaxial cable is specified as the means through which voice, video, audio, and data information are conveyed.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingTechnologyWiringSystemType] -SET [Description] = 'Coaxial cable', [Definition] = 'Coaxial cable is specified as the means through which voice, video, audio, and data information are conveyed.', [SortOrder] = 1.00 WHERE [Code] = '02504' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingTechnologyWiringSystemType] WHERE [Code] = '02503') BEGIN INSERT INTO dbo.[RefBuildingTechnologyWiringSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02503', 'Fiber optic cable', 'Fiber optic cable is specified as the means through which voice, video, audio, and data information are conveyed.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingTechnologyWiringSystemType] -SET [Description] = 'Fiber optic cable', [Definition] = 'Fiber optic cable is specified as the means through which voice, video, audio, and data information are conveyed.', [SortOrder] = 2.00 WHERE [Code] = '02503' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingTechnologyWiringSystemType] WHERE [Code] = '02506') BEGIN INSERT INTO dbo.[RefBuildingTechnologyWiringSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02506', 'Twisted pair', 'Twisted pair is specified as the means through which voice, video, audio, and data information are conveyed.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingTechnologyWiringSystemType] -SET [Description] = 'Twisted pair', [Definition] = 'Twisted pair is specified as the means through which voice, video, audio, and data information are conveyed.', [SortOrder] = 3.00 WHERE [Code] = '02506' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingTechnologyWiringSystemType] WHERE [Code] = '02502') BEGIN INSERT INTO dbo.[RefBuildingTechnologyWiringSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02502', 'Wire cable', 'Wire cable is specified as the means through which voice, video, audio, and data information are conveyed.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingTechnologyWiringSystemType] -SET [Description] = 'Wire cable', [Definition] = 'Wire cable is specified as the means through which voice, video, audio, and data information are conveyed.', [SortOrder] = 4.00 WHERE [Code] = '02502' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingTechnologyWiringSystemType] WHERE [Code] = '02505') BEGIN INSERT INTO dbo.[RefBuildingTechnologyWiringSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02505', 'Wireless', 'Wireless is specified as the means through which voice, video, audio, and data information are conveyed.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingTechnologyWiringSystemType] -SET [Description] = 'Wireless', [Definition] = 'Wireless is specified as the means through which voice, video, audio, and data information are conveyed.', [SortOrder] = 5.00 WHERE [Code] = '02505' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingTechnologyWiringSystemType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingTechnologyWiringSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the means through which voice, video, audio, and data information are conveyed.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingTechnologyWiringSystemType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the means through which voice, video, audio, and data information are conveyed.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingUseType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingUseType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '13700') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13700', 'Administration building', 'Administration building is specified as the principal use of a building, regardless of its original design.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Administration building', [Definition] = 'Administration building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 0.00 WHERE [Code] = '13700' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '13699') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13699', 'Alternative school', 'Alternative school is specified as the principal use of a building, regardless of its original design.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Alternative school', [Definition] = 'Alternative school is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 2.00 WHERE [Code] = '13699' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02621') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02621', 'Assembly building', 'Assembly building is specified as the principal use of a building, regardless of its original design.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Assembly building', [Definition] = 'Assembly building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 4.00 WHERE [Code] = '02621' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02614') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02614', 'Central kitchen building', 'Central kitchen building is specified as the principal use of a building, regardless of its original design.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Central kitchen building', [Definition] = 'Central kitchen building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 6.00 WHERE [Code] = '02614' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02803') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02803', 'Chapel building', 'Chapel building is specified as the principal use of a building, regardless of its original design.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Chapel building', [Definition] = 'Chapel building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 8.00 WHERE [Code] = '02803' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02619') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02619', 'Dormitory building', 'Dormitory building is specified as the principal use of a building, regardless of its original design.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Dormitory building', [Definition] = 'Dormitory building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 10.00 WHERE [Code] = '02619' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02616') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02616', 'Field house building', 'Field house building is specified as the principal use of a building, regardless of its original design.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Field house building', [Definition] = 'Field house building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 12.00 WHERE [Code] = '02616' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02613') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02613', 'Garage building', 'Garage building is specified as the principal use of a building, regardless of its original design.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Garage building', [Definition] = 'Garage building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 14.00 WHERE [Code] = '02613' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '13698') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13698', 'Grade level school', 'Grade level school is specified as the principal use of a building, regardless of its original design.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Grade level school', [Definition] = 'Grade level school is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 16.00 WHERE [Code] = '13698' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02620') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02620', 'Gymnasium building', 'Gymnasium building is specified as the principal use of a building, regardless of its original design.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Gymnasium building', [Definition] = 'Gymnasium building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 18.00 WHERE [Code] = '02620' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02806') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02806', 'Holding school', 'Holding school is specified as the principal use of a building, regardless of its original design.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Holding school', [Definition] = 'Holding school is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 20.00 WHERE [Code] = '02806' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02804') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02804', 'Investment', 'Investment is specified as the principal use of a building, regardless of its original design.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Investment', [Definition] = 'Investment is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 22.00 WHERE [Code] = '02804' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02617') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02617', 'Media production center building', 'Media production center building is specified as the principal use of a building, regardless of its original design.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Media production center building', [Definition] = 'Media production center building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 24.00 WHERE [Code] = '02617' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02618') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02618', 'Natatorium', 'Natatorium is specified as the principal use of a building, regardless of its original design.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Natatorium', [Definition] = 'Natatorium is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 26.00 WHERE [Code] = '02618' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02805') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02805', 'Not in use', 'Not in use is specified as the principal use of a building, regardless of its original design.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Not in use', [Definition] = 'Not in use is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 28.00 WHERE [Code] = '02805' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02611') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02611', 'Office building', 'Office building is specified as the principal use of a building, regardless of its original design.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Office building', [Definition] = 'Office building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 30.00 WHERE [Code] = '02611' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02802') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02802', 'Operations building', 'Operations building is specified as the principal use of a building, regardless of its original design.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Operations building', [Definition] = 'Operations building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 32.00 WHERE [Code] = '02802' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '03106') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03106', 'School building', 'School building is specified as the principal use of a building, regardless of its original design.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'School building', [Definition] = 'School building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 34.00 WHERE [Code] = '03106' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02610') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02610', 'Service center building', 'Service center building is specified as the principal use of a building, regardless of its original design.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Service center building', [Definition] = 'Service center building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 36.00 WHERE [Code] = '02610' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02615') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02615', 'Stadium building', 'Stadium building is specified as the principal use of a building, regardless of its original design.', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Stadium building', [Definition] = 'Stadium building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 38.00 WHERE [Code] = '02615' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '02612') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02612', 'Warehouse building', 'Warehouse building is specified as the principal use of a building, regardless of its original design.', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Warehouse building', [Definition] = 'Warehouse building is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 40.00 WHERE [Code] = '02612' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingUseType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the principal use of a building, regardless of its original design.', 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingUseType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the principal use of a building, regardless of its original design.', [SortOrder] = 42.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefBuildingVerticalTransportationSystemType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefBuildingVerticalTransportationSystemType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingVerticalTransportationSystemType] WHERE [Code] = '02516') BEGIN INSERT INTO dbo.[RefBuildingVerticalTransportationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02516', 'Elevator', 'Elevator is specified as the type of system used to convey persons or freight between floors.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingVerticalTransportationSystemType] -SET [Description] = 'Elevator', [Definition] = 'Elevator is specified as the type of system used to convey persons or freight between floors.', [SortOrder] = 1.00 WHERE [Code] = '02516' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingVerticalTransportationSystemType] WHERE [Code] = '02517') BEGIN INSERT INTO dbo.[RefBuildingVerticalTransportationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02517', 'Escalator', 'Escalator is specified as the type of system used to convey persons or freight between floors.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingVerticalTransportationSystemType] -SET [Description] = 'Escalator', [Definition] = 'Escalator is specified as the type of system used to convey persons or freight between floors.', [SortOrder] = 2.00 WHERE [Code] = '02517' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingVerticalTransportationSystemType] WHERE [Code] = '02515') BEGIN INSERT INTO dbo.[RefBuildingVerticalTransportationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02515', 'Stairs', 'Stairs is specified as the type of system used to convey persons or freight between floors.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingVerticalTransportationSystemType] -SET [Description] = 'Stairs', [Definition] = 'Stairs is specified as the type of system used to convey persons or freight between floors.', [SortOrder] = 3.00 WHERE [Code] = '02515' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefBuildingVerticalTransportationSystemType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefBuildingVerticalTransportationSystemType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of system used to convey persons or freight between floors.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefBuildingVerticalTransportationSystemType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of system used to convey persons or freight between floors.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefCalendarEventType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCalendarEventType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCalendarEventType] WHERE [Code] = 'EmergencyDay') BEGIN INSERT INTO dbo.[RefCalendarEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EmergencyDay', 'Emergency day', 'Emergency day is specified as the type of scheduled or unscheduled calendar event.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCalendarEventType] -SET [Description] = 'Emergency day', [Definition] = 'Emergency day is specified as the type of scheduled or unscheduled calendar event.', [SortOrder] = 1.00 WHERE [Code] = 'EmergencyDay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCalendarEventType] WHERE [Code] = 'Holiday') BEGIN INSERT INTO dbo.[RefCalendarEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Holiday', 'Holiday', 'Holiday is specified as the type of scheduled or unscheduled calendar event.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCalendarEventType] -SET [Description] = 'Holiday', [Definition] = 'Holiday is specified as the type of scheduled or unscheduled calendar event.', [SortOrder] = 2.00 WHERE [Code] = 'Holiday' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCalendarEventType] WHERE [Code] = 'InstructionalDay') BEGIN INSERT INTO dbo.[RefCalendarEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InstructionalDay', 'Instructional day', 'Instructional day is specified as the type of scheduled or unscheduled calendar event.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCalendarEventType] -SET [Description] = 'Instructional day', [Definition] = 'Instructional day is specified as the type of scheduled or unscheduled calendar event.', [SortOrder] = 3.00 WHERE [Code] = 'InstructionalDay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCalendarEventType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefCalendarEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is specified as the type of scheduled or unscheduled calendar event.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCalendarEventType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of scheduled or unscheduled calendar event.', [SortOrder] = 4.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCalendarEventType] WHERE [Code] = 'Strike') BEGIN INSERT INTO dbo.[RefCalendarEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Strike', 'Strike', 'Strike is specified as the type of scheduled or unscheduled calendar event.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCalendarEventType] -SET [Description] = 'Strike', [Definition] = 'Strike is specified as the type of scheduled or unscheduled calendar event.', [SortOrder] = 5.00 WHERE [Code] = 'Strike' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCalendarEventType] WHERE [Code] = 'LateArrivalEarlyDismissal') BEGIN INSERT INTO dbo.[RefCalendarEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LateArrivalEarlyDismissal', 'Student late arrival/early dismissal', 'Student late arrival/early dismissal is specified as the type of scheduled or unscheduled calendar event.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCalendarEventType] -SET [Description] = 'Student late arrival/early dismissal', [Definition] = 'Student late arrival/early dismissal is specified as the type of scheduled or unscheduled calendar event.', [SortOrder] = 6.00 WHERE [Code] = 'LateArrivalEarlyDismissal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCalendarEventType] WHERE [Code] = 'TeacherOnlyDay') BEGIN INSERT INTO dbo.[RefCalendarEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TeacherOnlyDay', 'Teacher only day', 'Teacher only day is specified as the type of scheduled or unscheduled calendar event.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCalendarEventType] -SET [Description] = 'Teacher only day', [Definition] = 'Teacher only day is specified as the type of scheduled or unscheduled calendar event.', [SortOrder] = 7.00 WHERE [Code] = 'TeacherOnlyDay' END -END - -PRINT N'Populate RefCampusResidencyType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCampusResidencyType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCampusResidencyType] WHERE [Code] = 'OnCampus') BEGIN INSERT INTO dbo.[RefCampusResidencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OnCampus', 'On campus', 'On campus is specified as a person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCampusResidencyType] -SET [Description] = 'On campus', [Definition] = 'On campus is specified as a person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', [SortOrder] = 1.00 WHERE [Code] = 'OnCampus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCampusResidencyType] WHERE [Code] = 'OffCampusWFamily') BEGIN INSERT INTO dbo.[RefCampusResidencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OffCampusWFamily', 'Off campus, with family', 'Off campus, with family is specified as a person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCampusResidencyType] -SET [Description] = 'Off campus, with family', [Definition] = 'Off campus, with family is specified as a person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', [SortOrder] = 2.00 WHERE [Code] = 'OffCampusWFamily' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCampusResidencyType] WHERE [Code] = 'OffCampusWOFamily') BEGIN INSERT INTO dbo.[RefCampusResidencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OffCampusWOFamily', 'Off campus, without family', 'Off campus, without family is specified as a person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCampusResidencyType] -SET [Description] = 'Off campus, without family', [Definition] = 'Off campus, without family is specified as a person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', [SortOrder] = 3.00 WHERE [Code] = 'OffCampusWOFamily' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCampusResidencyType] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefCampusResidencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'A person''s residency arrangement is unknown as defined in the Free Application for Federal Student Aid (FAFSA).', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCampusResidencyType] -SET [Description] = 'Unknown', [Definition] = 'A person''s residency arrangement is unknown as defined in the Free Application for Federal Student Aid (FAFSA).', [SortOrder] = 4.00 WHERE [Code] = 'Unknown' END -END - -PRINT N'Populate RefCampusStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCampusStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCampusStatus] WHERE [Code] = '75021') BEGIN INSERT INTO dbo.[RefCampusStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75021', 'In district use', 'In district use is specified as the generalized use or control of a campus, independent of program type.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCampusStatus] -SET [Description] = 'In district use', [Definition] = 'In district use is specified as the generalized use or control of a campus, independent of program type.', [SortOrder] = 1.00 WHERE [Code] = '75021' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCampusStatus] WHERE [Code] = '75022') BEGIN INSERT INTO dbo.[RefCampusStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75022', 'Leased', 'Leased is specified as the generalized use or control of a campus, independent of program type.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCampusStatus] -SET [Description] = 'Leased', [Definition] = 'Leased is specified as the generalized use or control of a campus, independent of program type.', [SortOrder] = 2.00 WHERE [Code] = '75022' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCampusStatus] WHERE [Code] = '75023') BEGIN INSERT INTO dbo.[RefCampusStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75023', 'Inactive', 'Inactive is specified as the generalized use or control of a campus, independent of program type.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCampusStatus] -SET [Description] = 'Inactive', [Definition] = 'Inactive is specified as the generalized use or control of a campus, independent of program type.', [SortOrder] = 3.00 WHERE [Code] = '75023' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCampusStatus] WHERE [Code] = '75024') BEGIN INSERT INTO dbo.[RefCampusStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75024', 'Decommissioned', 'Decommissioned is specified as the generalized use or control of a campus, independent of program type.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCampusStatus] -SET [Description] = 'Decommissioned', [Definition] = 'Decommissioned is specified as the generalized use or control of a campus, independent of program type.', [SortOrder] = 4.00 WHERE [Code] = '75024' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCampusStatus] WHERE [Code] = '75025') BEGIN INSERT INTO dbo.[RefCampusStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75025', 'Sold', 'Sold is specified as the generalized use or control of a campus, independent of program type.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCampusStatus] -SET [Description] = 'Sold', [Definition] = 'Sold is specified as the generalized use or control of a campus, independent of program type.', [SortOrder] = 5.00 WHERE [Code] = '75025' END -END - -PRINT N'Populate RefCampusType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCampusType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCampusType] WHERE [Code] = 'Administration') BEGIN INSERT INTO dbo.[RefCampusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Administration', 'Administration', 'Administration is specified as the primary purpose for which a campus is designed and/or used.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCampusType] -SET [Description] = 'Administration', [Definition] = 'Administration is specified as the primary purpose for which a campus is designed and/or used.', [SortOrder] = 1.00 WHERE [Code] = 'Administration' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCampusType] WHERE [Code] = 'Education') BEGIN INSERT INTO dbo.[RefCampusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Education', 'Education', 'Education is specified as the primary purpose for which a campus is designed and/or used.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCampusType] -SET [Description] = 'Education', [Definition] = 'Education is specified as the primary purpose for which a campus is designed and/or used.', [SortOrder] = 2.00 WHERE [Code] = 'Education' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCampusType] WHERE [Code] = 'Operations') BEGIN INSERT INTO dbo.[RefCampusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Operations', 'Operations', 'Operations is specified as the primary purpose for which a campus is designed and/or used.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCampusType] -SET [Description] = 'Operations', [Definition] = 'Operations is specified as the primary purpose for which a campus is designed and/or used.', [SortOrder] = 3.00 WHERE [Code] = 'Operations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCampusType] WHERE [Code] = 'Residential') BEGIN INSERT INTO dbo.[RefCampusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Residential', 'Residential', 'Residential is specified as the primary purpose for which a campus is designed and/or used.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCampusType] -SET [Description] = 'Residential', [Definition] = 'Residential is specified as the primary purpose for which a campus is designed and/or used.', [SortOrder] = 4.00 WHERE [Code] = 'Residential' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCampusType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefCampusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is specified as the primary purpose for which a campus is designed and/or used.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCampusType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the primary purpose for which a campus is designed and/or used.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefCareerCluster table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCareerCluster]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Agriculture, Food & Natural Resources', 'Agriculture, Food & Natural Resources is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Agriculture, Food & Natural Resources', [Definition] = 'Agriculture, Food & Natural Resources is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Architecture & Construction', 'Architecture & Construction is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Architecture & Construction', [Definition] = 'Architecture & Construction is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 3.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Arts, A/V Technology & Communications', 'Arts, A/V Technology & Communications is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Arts, A/V Technology & Communications', [Definition] = 'Arts, A/V Technology & Communications is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 5.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Business Management & Administration', 'Business Management & Administration is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Business Management & Administration', [Definition] = 'Business Management & Administration is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 7.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Education & Training', 'Education & Training is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Education & Training', [Definition] = 'Education & Training is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 9.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Finance', 'Finance is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Finance', [Definition] = 'Finance is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 11.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Government & Public Administration', 'Government & Public Administration is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Government & Public Administration', [Definition] = 'Government & Public Administration is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 13.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Health Science', 'Health Science is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Health Science', [Definition] = 'Health Science is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 15.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Hospitality & Tourism', 'Hospitality & Tourism is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Hospitality & Tourism', [Definition] = 'Hospitality & Tourism is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 17.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Human Services', 'Human Services is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Human Services', [Definition] = 'Human Services is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 19.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Information Technology', 'Information Technology is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Information Technology', [Definition] = 'Information Technology is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 21.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Law, Public Safety, Corrections & Security', 'Law, Public Safety, Corrections & Security is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Law, Public Safety, Corrections & Security', [Definition] = 'Law, Public Safety, Corrections & Security is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 23.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '13') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13', 'Manufacturing', 'Manufacturing is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Manufacturing', [Definition] = 'Manufacturing is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 25.00 WHERE [Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '14') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14', 'Marketing', 'Marketing is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Marketing', [Definition] = 'Marketing is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 27.00 WHERE [Code] = '14' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '15') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('15', 'Science, Technology, Engineering & Mathematics', 'Science, Technology, Engineering & Mathematics is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Science, Technology, Engineering & Mathematics', [Definition] = 'Science, Technology, Engineering & Mathematics is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 29.00 WHERE [Code] = '15' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerCluster] WHERE [Code] = '16') BEGIN INSERT INTO dbo.[RefCareerCluster]([Code], [Description], [Definition], [SortOrder]) -VALUES ('16', 'Transportation, Distribution & Logistics', 'Transportation, Distribution & Logistics is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerCluster] -SET [Description] = 'Transportation, Distribution & Logistics', [Definition] = 'Transportation, Distribution & Logistics is specified as the career cluster that defines the industry or occupational focus for a career pathways program, plan of study, or course.', [SortOrder] = 31.00 WHERE [Code] = '16' END -END - -PRINT N'Populate RefCareerEducationPlanType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCareerEducationPlanType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerEducationPlanType] WHERE [Code] = 'Education') BEGIN INSERT INTO dbo.[RefCareerEducationPlanType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Education', 'Education plan', 'An individualized guidance and counseling plan for education.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerEducationPlanType] -SET [Description] = 'Education plan', [Definition] = 'An individualized guidance and counseling plan for education.', [SortOrder] = 1.00 WHERE [Code] = 'Education' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerEducationPlanType] WHERE [Code] = 'Career') BEGIN INSERT INTO dbo.[RefCareerEducationPlanType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Career', 'Career plan', 'An individualized guidance and counseling plan for career.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerEducationPlanType] -SET [Description] = 'Career plan', [Definition] = 'An individualized guidance and counseling plan for career.', [SortOrder] = 3.00 WHERE [Code] = 'Career' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerEducationPlanType] WHERE [Code] = 'Both') BEGIN INSERT INTO dbo.[RefCareerEducationPlanType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Both', 'Both education and career plan', 'An individualized guidance and counseling plan for both career and education.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerEducationPlanType] -SET [Description] = 'Both education and career plan', [Definition] = 'An individualized guidance and counseling plan for both career and education.', [SortOrder] = 5.00 WHERE [Code] = 'Both' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCareerEducationPlanType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefCareerEducationPlanType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'A kind of individualized guidance and counseling plan other than an education plan and a career plan.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCareerEducationPlanType] -SET [Description] = 'Other', [Definition] = 'A kind of individualized guidance and counseling plan other than an education plan and a career plan.', [SortOrder] = 9.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefCarnegieBasicClassification table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCarnegieBasicClassification]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Assoc/Pub-R-S') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assoc/Pub-R-S', 'Associate''s--Public Rural-serving Small', 'Associate''s--Public Rural-serving Small is specified as the Carnegie Basic Classification for a postsecondary institution.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Associate''s--Public Rural-serving Small', [Definition] = 'Associate''s--Public Rural-serving Small is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 1.00 WHERE [Code] = 'Assoc/Pub-R-S' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Assoc/Pub-R-M') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assoc/Pub-R-M', 'Associate''s--Public Rural-serving Medium', 'Associate''s--Public Rural-serving Medium is specified as the Carnegie Basic Classification for a postsecondary institution.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Associate''s--Public Rural-serving Medium', [Definition] = 'Associate''s--Public Rural-serving Medium is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 2.00 WHERE [Code] = 'Assoc/Pub-R-M' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Assoc/Pub-R-L') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assoc/Pub-R-L', 'Associate''s--Public Rural-serving Large', 'Associate''s--Public Rural-serving Large is specified as the Carnegie Basic Classification for a postsecondary institution.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Associate''s--Public Rural-serving Large', [Definition] = 'Associate''s--Public Rural-serving Large is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 3.00 WHERE [Code] = 'Assoc/Pub-R-L' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Assoc/Pub-S-SC') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assoc/Pub-S-SC', 'Associate''s--Public Suburban-serving Single Campus', 'Associate''s--Public Suburban-serving Single Campus is specified as the Carnegie Basic Classification for a postsecondary institution.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Associate''s--Public Suburban-serving Single Campus', [Definition] = 'Associate''s--Public Suburban-serving Single Campus is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 4.00 WHERE [Code] = 'Assoc/Pub-S-SC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Assoc/Pub-S-MC') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assoc/Pub-S-MC', 'Associate''s--Public Suburban-serving Multicampus', 'Associate''s--Public Suburban-serving Multicampus is specified as the Carnegie Basic Classification for a postsecondary institution.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Associate''s--Public Suburban-serving Multicampus', [Definition] = 'Associate''s--Public Suburban-serving Multicampus is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 5.00 WHERE [Code] = 'Assoc/Pub-S-MC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Assoc/Pub-U-SC') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assoc/Pub-U-SC', 'Associate''s--Public Urban-serving Single Campus', 'Associate''s--Public Urban-serving Single Campus is specified as the Carnegie Basic Classification for a postsecondary institution.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Associate''s--Public Urban-serving Single Campus', [Definition] = 'Associate''s--Public Urban-serving Single Campus is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 6.00 WHERE [Code] = 'Assoc/Pub-U-SC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Assoc/Pub-U-MC') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assoc/Pub-U-MC', 'Associate''s--Public Urban-serving Multicampus', 'Associate''s--Public Urban-serving Multicampus is specified as the Carnegie Basic Classification for a postsecondary institution.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Associate''s--Public Urban-serving Multicampus', [Definition] = 'Associate''s--Public Urban-serving Multicampus is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 7.00 WHERE [Code] = 'Assoc/Pub-U-MC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Assoc/Pub-Spec') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assoc/Pub-Spec', 'Associate''s--Public Special Use', 'Associate''s--Public Special Use is specified as the Carnegie Basic Classification for a postsecondary institution.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Associate''s--Public Special Use', [Definition] = 'Associate''s--Public Special Use is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 8.00 WHERE [Code] = 'Assoc/Pub-Spec' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Assoc/PrivNFP') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assoc/PrivNFP', 'Associate''s--Private Not-for-profit', 'Associate''s--Private Not-for-profit is specified as the Carnegie Basic Classification for a postsecondary institution.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Associate''s--Private Not-for-profit', [Definition] = 'Associate''s--Private Not-for-profit is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 9.00 WHERE [Code] = 'Assoc/PrivNFP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Assoc/PrivFP') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assoc/PrivFP', 'Associate''s--Private For-profit', 'Associate''s--Private For-profit is specified as the Carnegie Basic Classification for a postsecondary institution.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Associate''s--Private For-profit', [Definition] = 'Associate''s--Private For-profit is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 10.00 WHERE [Code] = 'Assoc/PrivFP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Assoc/Pub2in4') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assoc/Pub2in4', 'Associate''s--Public 2-year Colleges under 4-year Universities', 'Associate''s--Public 2-year Colleges under 4-year Universities is specified as the Carnegie Basic Classification for a postsecondary institution.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Associate''s--Public 2-year Colleges under 4-year Universities', [Definition] = 'Associate''s--Public 2-year Colleges under 4-year Universities is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 11.00 WHERE [Code] = 'Assoc/Pub2in4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Assoc/Pub4') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assoc/Pub4', 'Associate''s--Public 4-year Primarily Associate''s', 'Associate''s--Public 4-year Primarily Associate''s is specified as the Carnegie Basic Classification for a postsecondary institution.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Associate''s--Public 4-year Primarily Associate''s', [Definition] = 'Associate''s--Public 4-year Primarily Associate''s is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 12.00 WHERE [Code] = 'Assoc/Pub4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Assoc/PrivNFP4') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assoc/PrivNFP4', 'Associate''s--Private Not-for-profit 4-year Primarily Associate''s', 'Associate''s--Private Not-for-profit 4-year Primarily Associate''s is specified as the Carnegie Basic Classification for a postsecondary institution.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Associate''s--Private Not-for-profit 4-year Primarily Associate''s', [Definition] = 'Associate''s--Private Not-for-profit 4-year Primarily Associate''s is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 13.00 WHERE [Code] = 'Assoc/PrivNFP4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Assoc/PrivFP4') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assoc/PrivFP4', 'Associate''s--Private For-profit 4-year Primarily Associate''s', 'Associate''s--Private For-profit 4-year Primarily Associate''s is specified as the Carnegie Basic Classification for a postsecondary institution.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Associate''s--Private For-profit 4-year Primarily Associate''s', [Definition] = 'Associate''s--Private For-profit 4-year Primarily Associate''s is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 14.00 WHERE [Code] = 'Assoc/PrivFP4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'RU/VH') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RU/VH', 'Research Universities (very high research activity)', 'Research Universities (very high research activity) is specified as the Carnegie Basic Classification for a postsecondary institution.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Research Universities (very high research activity)', [Definition] = 'Research Universities (very high research activity) is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 15.00 WHERE [Code] = 'RU/VH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'RU/H') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RU/H', 'Research Universities (high research activity)', 'Research Universities (high research activity) is specified as the Carnegie Basic Classification for a postsecondary institution.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Research Universities (high research activity)', [Definition] = 'Research Universities (high research activity) is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 16.00 WHERE [Code] = 'RU/H' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'DRU') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DRU', 'Doctoral/Research Universities', 'Doctoral/Research Universities is specified as the Carnegie Basic Classification for a postsecondary institution.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Doctoral/Research Universities', [Definition] = 'Doctoral/Research Universities is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 17.00 WHERE [Code] = 'DRU' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Masters/L') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Masters/L', 'Master''s Colleges and Universities (larger programs)', 'Master''s Colleges and Universities (larger programs) is specified as the Carnegie Basic Classification for a postsecondary institution.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Master''s Colleges and Universities (larger programs)', [Definition] = 'Master''s Colleges and Universities (larger programs) is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 18.00 WHERE [Code] = 'Masters/L' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Masters/M') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Masters/M', 'Master''s Colleges and Universities (medium programs)', 'Master''s Colleges and Universities (medium programs) is specified as the Carnegie Basic Classification for a postsecondary institution.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Master''s Colleges and Universities (medium programs)', [Definition] = 'Master''s Colleges and Universities (medium programs) is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 19.00 WHERE [Code] = 'Masters/M' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Masters/S') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Masters/S', 'Master''s Colleges and Universities (smaller programs)', 'Master''s Colleges and Universities (smaller programs) is specified as the Carnegie Basic Classification for a postsecondary institution.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Master''s Colleges and Universities (smaller programs)', [Definition] = 'Master''s Colleges and Universities (smaller programs) is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 20.00 WHERE [Code] = 'Masters/S' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Bac/A&S') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Bac/A&S', 'Baccalaureate Colleges--Arts & Sciences', 'Baccalaureate Colleges--Arts & Sciences is specified as the Carnegie Basic Classification for a postsecondary institution.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Baccalaureate Colleges--Arts & Sciences', [Definition] = 'Baccalaureate Colleges--Arts & Sciences is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 21.00 WHERE [Code] = 'Bac/A&S' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Bac/Diverse') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Bac/Diverse', 'Baccalaureate Colleges--Diverse Fields', 'Baccalaureate Colleges--Diverse Fields is specified as the Carnegie Basic Classification for a postsecondary institution.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Baccalaureate Colleges--Diverse Fields', [Definition] = 'Baccalaureate Colleges--Diverse Fields is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 22.00 WHERE [Code] = 'Bac/Diverse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Bac/Assoc') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Bac/Assoc', 'Baccalaureate/Associate''s Colleges', 'Baccalaureate/Associate''s Colleges is specified as the Carnegie Basic Classification for a postsecondary institution.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Baccalaureate/Associate''s Colleges', [Definition] = 'Baccalaureate/Associate''s Colleges is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 23.00 WHERE [Code] = 'Bac/Assoc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Spec/Faith') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Spec/Faith', 'Special Focus Institutions--Theological seminaries, Bible colleges, other faith-related institutions', 'Special Focus Institutions--Theological seminaries, Bible colleges, other faith-related institutions is specified as the Carnegie Basic Classification for a postsecondary institution.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Special Focus Institutions--Theological seminaries, Bible colleges, other faith-related institutions', [Definition] = 'Special Focus Institutions--Theological seminaries, Bible colleges, other faith-related institutions is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 24.00 WHERE [Code] = 'Spec/Faith' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Spec/Med') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Spec/Med', 'Special Focus Institutions--Medical schools and medical centers', 'Special Focus Institutions--Medical schools and medical centers is specified as the Carnegie Basic Classification for a postsecondary institution.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Special Focus Institutions--Medical schools and medical centers', [Definition] = 'Special Focus Institutions--Medical schools and medical centers is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 25.00 WHERE [Code] = 'Spec/Med' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Spec/Health') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Spec/Health', 'Special Focus Institutions--Other health professions schools', 'Special Focus Institutions--Other health professions schools is specified as the Carnegie Basic Classification for a postsecondary institution.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Special Focus Institutions--Other health professions schools', [Definition] = 'Special Focus Institutions--Other health professions schools is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 26.00 WHERE [Code] = 'Spec/Health' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Spec/Engg') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Spec/Engg', 'Special Focus Institutions--Schools of engineering', 'Special Focus Institutions--Schools of engineering is specified as the Carnegie Basic Classification for a postsecondary institution.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Special Focus Institutions--Schools of engineering', [Definition] = 'Special Focus Institutions--Schools of engineering is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 27.00 WHERE [Code] = 'Spec/Engg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Spec/Tech') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Spec/Tech', 'Special Focus Institutions--Other technology-related schools', 'Special Focus Institutions--Other technology-related schools is specified as the Carnegie Basic Classification for a postsecondary institution.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Special Focus Institutions--Other technology-related schools', [Definition] = 'Special Focus Institutions--Other technology-related schools is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 28.00 WHERE [Code] = 'Spec/Tech' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Spec/Bus') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Spec/Bus', 'Special Focus Institutions--Schools of business and management', 'Special Focus Institutions--Schools of business and management is specified as the Carnegie Basic Classification for a postsecondary institution.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Special Focus Institutions--Schools of business and management', [Definition] = 'Special Focus Institutions--Schools of business and management is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 29.00 WHERE [Code] = 'Spec/Bus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Spec/Arts') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Spec/Arts', 'Special Focus Institutions--Schools of art, music, and design', 'Special Focus Institutions--Schools of art, music, and design is specified as the Carnegie Basic Classification for a postsecondary institution.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Special Focus Institutions--Schools of art, music, and design', [Definition] = 'Special Focus Institutions--Schools of art, music, and design is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 30.00 WHERE [Code] = 'Spec/Arts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Spec/Law') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Spec/Law', 'Special Focus Institutions--Schools of law', 'Special Focus Institutions--Schools of law is specified as the Carnegie Basic Classification for a postsecondary institution.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Special Focus Institutions--Schools of law', [Definition] = 'Special Focus Institutions--Schools of law is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 31.00 WHERE [Code] = 'Spec/Law' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Spec/Other') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Spec/Other', 'Special Focus Institutions-Other special-focus institutions', 'Special Focus Institutions-Other special-focus institutions is specified as the Carnegie Basic Classification for a postsecondary institution.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Special Focus Institutions-Other special-focus institutions', [Definition] = 'Special Focus Institutions-Other special-focus institutions is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 32.00 WHERE [Code] = 'Spec/Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCarnegieBasicClassification] WHERE [Code] = 'Tribal') BEGIN INSERT INTO dbo.[RefCarnegieBasicClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Tribal', 'Tribal Colleges', 'Tribal Colleges is specified as the Carnegie Basic Classification for a postsecondary institution.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCarnegieBasicClassification] -SET [Description] = 'Tribal Colleges', [Definition] = 'Tribal Colleges is specified as the Carnegie Basic Classification for a postsecondary institution.', [SortOrder] = 33.00 WHERE [Code] = 'Tribal' END -END - -PRINT N'Populate RefCharterSchoolAuthorizerType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCharterSchoolAuthorizerType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolAuthorizerType] WHERE [Code] = 'SBE') BEGIN INSERT INTO dbo.[RefCharterSchoolAuthorizerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SBE', 'State board of education', 'State board of education is specified as the type of agency that authorized the establishment or continuation of a charter school.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolAuthorizerType] -SET [Description] = 'State board of education', [Definition] = 'State board of education is specified as the type of agency that authorized the establishment or continuation of a charter school.', [SortOrder] = 1.00 WHERE [Code] = 'SBE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolAuthorizerType] WHERE [Code] = 'PCSB') BEGIN INSERT INTO dbo.[RefCharterSchoolAuthorizerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PCSB', 'Public charter school board', 'Public charter school board is specified as the type of agency that authorized the establishment or continuation of a charter school.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolAuthorizerType] -SET [Description] = 'Public charter school board', [Definition] = 'Public charter school board is specified as the type of agency that authorized the establishment or continuation of a charter school.', [SortOrder] = 3.00 WHERE [Code] = 'PCSB' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolAuthorizerType] WHERE [Code] = 'UNI') BEGIN INSERT INTO dbo.[RefCharterSchoolAuthorizerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UNI', 'University', 'University is specified as the type of agency that authorized the establishment or continuation of a charter school.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolAuthorizerType] -SET [Description] = 'University', [Definition] = 'University is specified as the type of agency that authorized the establishment or continuation of a charter school.', [SortOrder] = 5.00 WHERE [Code] = 'UNI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolAuthorizerType] WHERE [Code] = 'CC') BEGIN INSERT INTO dbo.[RefCharterSchoolAuthorizerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CC', 'Community college', 'Community college is specified as the type of agency that authorized the establishment or continuation of a charter school.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolAuthorizerType] -SET [Description] = 'Community college', [Definition] = 'Community college is specified as the type of agency that authorized the establishment or continuation of a charter school.', [SortOrder] = 6.00 WHERE [Code] = 'CC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolAuthorizerType] WHERE [Code] = 'LEA') BEGIN INSERT INTO dbo.[RefCharterSchoolAuthorizerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LEA', 'Local education agency', 'Local education agency is specified as the type of agency that authorized the establishment or continuation of a charter school.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolAuthorizerType] -SET [Description] = 'Local education agency', [Definition] = 'Local education agency is specified as the type of agency that authorized the establishment or continuation of a charter school.', [SortOrder] = 7.00 WHERE [Code] = 'LEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolAuthorizerType] WHERE [Code] = 'OTH') BEGIN INSERT INTO dbo.[RefCharterSchoolAuthorizerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OTH', 'Other', 'Other is specified as the type of agency that authorized the establishment or continuation of a charter school.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolAuthorizerType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of agency that authorized the establishment or continuation of a charter school.', [SortOrder] = 7.00 WHERE [Code] = 'OTH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolAuthorizerType] WHERE [Code] = 'GOVTENT') BEGIN INSERT INTO dbo.[RefCharterSchoolAuthorizerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GOVTENT', 'Non educational government entities', 'Non educational government entities is specified as the type of agency that authorized the establishment or continuation of a charter school.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolAuthorizerType] -SET [Description] = 'Non educational government entities', [Definition] = 'Non educational government entities is specified as the type of agency that authorized the establishment or continuation of a charter school.', [SortOrder] = 8.00 WHERE [Code] = 'GOVTENT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolAuthorizerType] WHERE [Code] = 'NONPROFIT') BEGIN INSERT INTO dbo.[RefCharterSchoolAuthorizerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NONPROFIT', 'Not for profit organization', 'Not for profit organization is specified as the type of agency that authorized the establishment or continuation of a charter school.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolAuthorizerType] -SET [Description] = 'Not for profit organization', [Definition] = 'Not for profit organization is specified as the type of agency that authorized the establishment or continuation of a charter school.', [SortOrder] = 9.00 WHERE [Code] = 'NONPROFIT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolAuthorizerType] WHERE [Code] = 'SEA') BEGIN INSERT INTO dbo.[RefCharterSchoolAuthorizerType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SEA', 'State department of education', 'State department of education is specified as the type of agency that authorized the establishment or continuation of a charter school.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolAuthorizerType] -SET [Description] = 'State department of education', [Definition] = 'State department of education is specified as the type of agency that authorized the establishment or continuation of a charter school.', [SortOrder] = 10.00 WHERE [Code] = 'SEA' END -END - -PRINT N'Populate RefCharterSchoolManagementOrganizationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCharterSchoolManagementOrganizationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolManagementOrganizationType] WHERE [Code] = 'CMO') BEGIN INSERT INTO dbo.[RefCharterSchoolManagementOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CMO', 'Charter Management Organization', 'A non-profit organization that operates or manages multiple charter schools (i.e., either through a contract with the charter schools or as the charter holder) linked by centralized support, operations, and oversight.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolManagementOrganizationType] -SET [Description] = 'Charter Management Organization', [Definition] = 'A non-profit organization that operates or manages multiple charter schools (i.e., either through a contract with the charter schools or as the charter holder) linked by centralized support, operations, and oversight.', [SortOrder] = 1.00 WHERE [Code] = 'CMO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolManagementOrganizationType] WHERE [Code] = 'EMO') BEGIN INSERT INTO dbo.[RefCharterSchoolManagementOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EMO', 'Education Management Organization', 'A for-profit entity that contracts with new or existing public school districts, charter school districts, and charter schools to manage charter schools by centralizing support, operations, and oversight. ', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolManagementOrganizationType] -SET [Description] = 'Education Management Organization', [Definition] = 'A for-profit entity that contracts with new or existing public school districts, charter school districts, and charter schools to manage charter schools by centralizing support, operations, and oversight. ', [SortOrder] = 2.00 WHERE [Code] = 'EMO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolManagementOrganizationType] WHERE [Code] = 'SMFP') BEGIN INSERT INTO dbo.[RefCharterSchoolManagementOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SMFP', 'Single Management (for-profit)', 'A for-profit entity that is not a CMO or EMO and that provides management services to one charter school.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolManagementOrganizationType] -SET [Description] = 'Single Management (for-profit)', [Definition] = 'A for-profit entity that is not a CMO or EMO and that provides management services to one charter school.', [SortOrder] = 3.00 WHERE [Code] = 'SMFP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolManagementOrganizationType] WHERE [Code] = 'SMNP') BEGIN INSERT INTO dbo.[RefCharterSchoolManagementOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SMNP', 'Single Management (non-profit)', 'A non-profit organization that is not a CMO or EMO and that provides management services.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolManagementOrganizationType] -SET [Description] = 'Single Management (non-profit)', [Definition] = 'A non-profit organization that is not a CMO or EMO and that provides management services.', [SortOrder] = 4.00 WHERE [Code] = 'SMNP' END -END - -PRINT N'Populate RefCharterSchoolType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCharterSchoolType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolType] WHERE [Code] = 'School') BEGIN INSERT INTO dbo.[RefCharterSchoolType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('School', 'School Charter', 'A K12 school created by contract between a state''s charter authorization board and an entity other than a college or university.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolType] -SET [Description] = 'School Charter', [Definition] = 'A K12 school created by contract between a state''s charter authorization board and an entity other than a college or university.', [SortOrder] = 1.00 WHERE [Code] = 'School' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolType] WHERE [Code] = 'CollegeUniversity') BEGIN INSERT INTO dbo.[RefCharterSchoolType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CollegeUniversity', 'College/University Charter', 'A K12 school created by contract between a college or university and a state''s charter authorization board(s).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolType] -SET [Description] = 'College/University Charter', [Definition] = 'A K12 school created by contract between a college or university and a state''s charter authorization board(s).', [SortOrder] = 2.00 WHERE [Code] = 'CollegeUniversity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCharterSchoolType] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefCharterSchoolType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not a Charter School', 'A school that is not a charter school.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCharterSchoolType] -SET [Description] = 'Not a Charter School', [Definition] = 'A school that is not a charter school.', [SortOrder] = 3.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefChildDevelopmentalScreeningStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefChildDevelopmentalScreeningStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildDevelopmentalScreeningStatus] WHERE [Code] = 'FurtherEvaluationNeeded') BEGIN INSERT INTO dbo.[RefChildDevelopmentalScreeningStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FurtherEvaluationNeeded', 'Further evaluation needed', 'Further evaluation needed is specified as the result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildDevelopmentalScreeningStatus] -SET [Description] = 'Further evaluation needed', [Definition] = 'Further evaluation needed is specified as the result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', [SortOrder] = 0.00 WHERE [Code] = 'FurtherEvaluationNeeded' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildDevelopmentalScreeningStatus] WHERE [Code] = 'NoFurtherEvaluationNeeded') BEGIN INSERT INTO dbo.[RefChildDevelopmentalScreeningStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoFurtherEvaluationNeeded', 'No further evaluation needed', 'No further evaluation needed is specified as the result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildDevelopmentalScreeningStatus] -SET [Description] = 'No further evaluation needed', [Definition] = 'No further evaluation needed is specified as the result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', [SortOrder] = 2.00 WHERE [Code] = 'NoFurtherEvaluationNeeded' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildDevelopmentalScreeningStatus] WHERE [Code] = 'NoScreeningPerformed') BEGIN INSERT INTO dbo.[RefChildDevelopmentalScreeningStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoScreeningPerformed', 'No Screening Performed', 'No Screening Performed is specified as the result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildDevelopmentalScreeningStatus] -SET [Description] = 'No Screening Performed', [Definition] = 'No Screening Performed is specified as the result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', [SortOrder] = 4.00 WHERE [Code] = 'NoScreeningPerformed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildDevelopmentalScreeningStatus] WHERE [Code] = 'AssessmentToolUnavailable') BEGIN INSERT INTO dbo.[RefChildDevelopmentalScreeningStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssessmentToolUnavailable', 'Appropriate Assessment Tool Unavailable', 'Appropriate Assessment Tool Unavailable is specified as the result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildDevelopmentalScreeningStatus] -SET [Description] = 'Appropriate Assessment Tool Unavailable', [Definition] = 'Appropriate Assessment Tool Unavailable is specified as the result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', [SortOrder] = 6.00 WHERE [Code] = 'AssessmentToolUnavailable' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildDevelopmentalScreeningStatus] WHERE [Code] = 'PersonnelUnavailable') BEGIN INSERT INTO dbo.[RefChildDevelopmentalScreeningStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PersonnelUnavailable', 'Personnel Unavailable', 'Personnel Unavailable is specified as the result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildDevelopmentalScreeningStatus] -SET [Description] = 'Personnel Unavailable', [Definition] = 'Personnel Unavailable is specified as the result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', [SortOrder] = 8.00 WHERE [Code] = 'PersonnelUnavailable' END -END - -PRINT N'Populate RefChildDevelopmentAssociateType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefChildDevelopmentAssociateType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildDevelopmentAssociateType] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefChildDevelopmentAssociateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Infant/toddler', 'Infant/toddler is specified as the type of Child Development Associate credential.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildDevelopmentAssociateType] -SET [Description] = 'Infant/toddler', [Definition] = 'Infant/toddler is specified as the type of Child Development Associate credential.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildDevelopmentAssociateType] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefChildDevelopmentAssociateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Preschool', 'Preschool is specified as the type of Child Development Associate credential.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildDevelopmentAssociateType] -SET [Description] = 'Preschool', [Definition] = 'Preschool is specified as the type of Child Development Associate credential.', [SortOrder] = 3.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildDevelopmentAssociateType] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefChildDevelopmentAssociateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Family child care home', 'Family child care home is specified as the type of Child Development Associate credential.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildDevelopmentAssociateType] -SET [Description] = 'Family child care home', [Definition] = 'Family child care home is specified as the type of Child Development Associate credential.', [SortOrder] = 5.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildDevelopmentAssociateType] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefChildDevelopmentAssociateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Home visitor', 'Home visitor is specified as the type of Child Development Associate credential.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildDevelopmentAssociateType] -SET [Description] = 'Home visitor', [Definition] = 'Home visitor is specified as the type of Child Development Associate credential.', [SortOrder] = 7.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildDevelopmentAssociateType] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefChildDevelopmentAssociateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Other', 'Other is specified as the type of Child Development Associate credential.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildDevelopmentAssociateType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of Child Development Associate credential.', [SortOrder] = 9.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildDevelopmentAssociateType] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefChildDevelopmentAssociateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Bilingual', 'Bilingual is specified as the type of Child Development Associate credential.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildDevelopmentAssociateType] -SET [Description] = 'Bilingual', [Definition] = 'Bilingual is specified as the type of Child Development Associate credential.', [SortOrder] = 11.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildDevelopmentAssociateType] WHERE [Code] = '99') BEGIN INSERT INTO dbo.[RefChildDevelopmentAssociateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('99', 'No current CDA indicated', 'No current CDA indicated is specified as the type of Child Development Associate credential.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildDevelopmentAssociateType] -SET [Description] = 'No current CDA indicated', [Definition] = 'No current CDA indicated is specified as the type of Child Development Associate credential.', [SortOrder] = 13.00 WHERE [Code] = '99' END -END - -PRINT N'Populate RefChildOutcomesSummaryRating table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefChildOutcomesSummaryRating]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildOutcomesSummaryRating] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefChildOutcomesSummaryRating]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Does not show functioning expected at age - does not include immediate foundational skills', 'Child does not yet show functioning expected of a child his or her age in any situation. Child’s functioning does not yet include immediate foundational skills upon which to build age-appropriate functioning. Child functioning reflects skills that developmentally come before immediate foundational skills.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildOutcomesSummaryRating] -SET [Description] = 'Does not show functioning expected at age - does not include immediate foundational skills', [Definition] = 'Child does not yet show functioning expected of a child his or her age in any situation. Child’s functioning does not yet include immediate foundational skills upon which to build age-appropriate functioning. Child functioning reflects skills that developmentally come before immediate foundational skills.', [SortOrder] = 2.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildOutcomesSummaryRating] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefChildOutcomesSummaryRating]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Occasionally uses immediate foundational skills across settings and situations', 'Child occasionally uses immediate foundational skills across settings and situations. More functioning reflects skills that are not immediate foundational than are immediate foundational.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildOutcomesSummaryRating] -SET [Description] = 'Occasionally uses immediate foundational skills across settings and situations', [Definition] = 'Child occasionally uses immediate foundational skills across settings and situations. More functioning reflects skills that are not immediate foundational than are immediate foundational.', [SortOrder] = 4.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildOutcomesSummaryRating] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefChildOutcomesSummaryRating]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Does not show functioning expected at age - uses immediate foundational skills', 'Child does not yet show functioning expected of a child of his or her age in any situation. Child uses immediate foundational skills, most or all of the time, across settings and situations. Immediate foundational skills are the skills upon which to build age-appropriate functioning.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildOutcomesSummaryRating] -SET [Description] = 'Does not show functioning expected at age - uses immediate foundational skills', [Definition] = 'Child does not yet show functioning expected of a child of his or her age in any situation. Child uses immediate foundational skills, most or all of the time, across settings and situations. Immediate foundational skills are the skills upon which to build age-appropriate functioning.', [SortOrder] = 6.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildOutcomesSummaryRating] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefChildOutcomesSummaryRating]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Shows occasional age-appropriate functioning across settings and situations', 'Child shows occasional age-appropriate functioning across settings and situations. More functioning is not age-appropriate than age-appropriate.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildOutcomesSummaryRating] -SET [Description] = 'Shows occasional age-appropriate functioning across settings and situations', [Definition] = 'Child shows occasional age-appropriate functioning across settings and situations. More functioning is not age-appropriate than age-appropriate.', [SortOrder] = 8.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildOutcomesSummaryRating] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefChildOutcomesSummaryRating]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Shows functioning expected at age some of the time and/or in some settings and situations', 'Child shows functioning expected for his or her age some of the time and/or in some settings and situations. Child’s functioning is a mix of age-appropriate and not age-appropriate behaviors and skills.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildOutcomesSummaryRating] -SET [Description] = 'Shows functioning expected at age some of the time and/or in some settings and situations', [Definition] = 'Child shows functioning expected for his or her age some of the time and/or in some settings and situations. Child’s functioning is a mix of age-appropriate and not age-appropriate behaviors and skills.', [SortOrder] = 10.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildOutcomesSummaryRating] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefChildOutcomesSummaryRating]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Functioning generally is considered appropriate for age but there are some significant concerns', 'Child’s functioning generally is considered appropriate for his or her age but there are some significant concerns about the child’s functioning in this outcome area. These concerns are substantial enough to suggest monitoring or possible additional support.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildOutcomesSummaryRating] -SET [Description] = 'Functioning generally is considered appropriate for age but there are some significant concerns', [Definition] = 'Child’s functioning generally is considered appropriate for his or her age but there are some significant concerns about the child’s functioning in this outcome area. These concerns are substantial enough to suggest monitoring or possible additional support.', [SortOrder] = 12.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefChildOutcomesSummaryRating] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefChildOutcomesSummaryRating]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Shows functioning expected for age in all or almost all everyday situations', 'Child shows functioning expected for his or her age in all or almost all everyday situations that are part of the child’s life. Functioning is considered appropriate for his or her age.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefChildOutcomesSummaryRating] -SET [Description] = 'Shows functioning expected for age in all or almost all everyday situations', [Definition] = 'Child shows functioning expected for his or her age in all or almost all everyday situations that are part of the child’s life. Functioning is considered appropriate for his or her age.', [SortOrder] = 14.00 WHERE [Code] = '07' END -END - -PRINT N'Populate RefCipUse table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCipUse]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCipUse] WHERE [Code] = 'PrimaryEnrollment') BEGIN INSERT INTO dbo.[RefCipUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrimaryEnrollment', 'Primary enrollment', 'The related Classification of Instructional Program code is referencing primary enrollment.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCipUse] -SET [Description] = 'Primary enrollment', [Definition] = 'The related Classification of Instructional Program code is referencing primary enrollment.', [SortOrder] = 1.00 WHERE [Code] = 'PrimaryEnrollment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCipUse] WHERE [Code] = 'AdditionalEnrollment') BEGIN INSERT INTO dbo.[RefCipUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdditionalEnrollment', 'Additional enrollment', 'The related Classification of Instructional Program code is referencing additional enrollment.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCipUse] -SET [Description] = 'Additional enrollment', [Definition] = 'The related Classification of Instructional Program code is referencing additional enrollment.', [SortOrder] = 2.00 WHERE [Code] = 'AdditionalEnrollment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCipUse] WHERE [Code] = 'PrimaryCompletion') BEGIN INSERT INTO dbo.[RefCipUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrimaryCompletion', 'Primary completion', 'The related Classification of Instructional Program code is referencing primary completion.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCipUse] -SET [Description] = 'Primary completion', [Definition] = 'The related Classification of Instructional Program code is referencing primary completion.', [SortOrder] = 3.00 WHERE [Code] = 'PrimaryCompletion' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCipUse] WHERE [Code] = 'AdditionalCompletion') BEGIN INSERT INTO dbo.[RefCipUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdditionalCompletion', 'Additional completion', 'The related Classification of Instructional Program code is referencing additional completion.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCipUse] -SET [Description] = 'Additional completion', [Definition] = 'The related Classification of Instructional Program code is referencing additional completion.', [SortOrder] = 4.00 WHERE [Code] = 'AdditionalCompletion' END -END - -PRINT N'Populate RefCipVersion table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCipVersion]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCipVersion] WHERE [Code] = 'CIP1980') BEGIN INSERT INTO dbo.[RefCipVersion]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CIP1980', 'CIP 1980', 'CIP 1980 is the version of CIP being reported.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCipVersion] -SET [Description] = 'CIP 1980', [Definition] = 'CIP 1980 is the version of CIP being reported.', [SortOrder] = 1.00 WHERE [Code] = 'CIP1980' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCipVersion] WHERE [Code] = 'CIP1985') BEGIN INSERT INTO dbo.[RefCipVersion]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CIP1985', 'CIP 1985', 'CIP 1985 is the version of CIP being reported.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCipVersion] -SET [Description] = 'CIP 1985', [Definition] = 'CIP 1985 is the version of CIP being reported.', [SortOrder] = 2.00 WHERE [Code] = 'CIP1985' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCipVersion] WHERE [Code] = 'CIP1990') BEGIN INSERT INTO dbo.[RefCipVersion]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CIP1990', 'CIP 1990', 'CIP 1990 is the version of CIP being reported.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCipVersion] -SET [Description] = 'CIP 1990', [Definition] = 'CIP 1990 is the version of CIP being reported.', [SortOrder] = 3.00 WHERE [Code] = 'CIP1990' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCipVersion] WHERE [Code] = 'CIP2000') BEGIN INSERT INTO dbo.[RefCipVersion]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CIP2000', 'CIP 2000', 'CIP 2000 is the version of CIP being reported.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCipVersion] -SET [Description] = 'CIP 2000', [Definition] = 'CIP 2000 is the version of CIP being reported.', [SortOrder] = 4.00 WHERE [Code] = 'CIP2000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCipVersion] WHERE [Code] = 'CIP2010') BEGIN INSERT INTO dbo.[RefCipVersion]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CIP2010', 'CIP 2010', 'CIP 2010 is the version of CIP being reported.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCipVersion] -SET [Description] = 'CIP 2010', [Definition] = 'CIP 2010 is the version of CIP being reported.', [SortOrder] = 5.00 WHERE [Code] = 'CIP2010' END -END - -PRINT N'Populate RefClassroomPositionType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefClassroomPositionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '03187') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03187', 'Administrative staff', 'Administrative staff is specified as the type of position the staff member holds in the specific course section.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Administrative staff', [Definition] = 'Administrative staff is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 0.00 WHERE [Code] = '03187' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '73071') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73071', 'Co-teacher', 'Co-teacher is specified as the type of position the staff member holds in the specific course section.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Co-teacher', [Definition] = 'Co-teacher is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 1.00 WHERE [Code] = '73071' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '04725') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04725', 'Counselor', 'Counselor is specified as the type of position the staff member holds in the specific course section.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Counselor', [Definition] = 'Counselor is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 2.00 WHERE [Code] = '04725' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '73073') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73073', 'Course Proctor', 'Course Proctor is specified as the type of position the staff member holds in the specific course section.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Course Proctor', [Definition] = 'Course Proctor is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 3.00 WHERE [Code] = '73073' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '05973') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05973', 'Instructor of record', 'Instructor of record is specified as the type of position the staff member holds in the specific course section.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Instructor of record', [Definition] = 'Instructor of record is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 4.00 WHERE [Code] = '05973' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '01234') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01234', 'Intern', 'Intern is specified as the type of position the staff member holds in the specific course section.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Intern', [Definition] = 'Intern is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 6.00 WHERE [Code] = '01234' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '73072') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73072', 'Lead Team Teacher', 'Lead Team Teacher is specified as the type of position the staff member holds in the specific course section.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Lead Team Teacher', [Definition] = 'Lead Team Teacher is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 7.00 WHERE [Code] = '73072' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '00069') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00069', 'Non-instructional staff', 'Non-instructional staff is specified as the type of position the staff member holds in the specific course section.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Non-instructional staff', [Definition] = 'Non-instructional staff is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 8.00 WHERE [Code] = '00069' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of position the staff member holds in the specific course section.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 10.00 WHERE [Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '00059') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00059', 'Paraprofessionals/teacher aides', 'Paraprofessionals/teacher aides is specified as the type of position the staff member holds in the specific course section.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Paraprofessionals/teacher aides', [Definition] = 'Paraprofessionals/teacher aides is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 12.00 WHERE [Code] = '00059' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '05971') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05971', 'Primary instructor', 'Primary instructor is specified as the type of position the staff member holds in the specific course section.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Primary instructor', [Definition] = 'Primary instructor is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 14.00 WHERE [Code] = '05971' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '04735') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04735', 'Resource teacher', 'Resource teacher is specified as the type of position the staff member holds in the specific course section.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Resource teacher', [Definition] = 'Resource teacher is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 16.00 WHERE [Code] = '04735' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '05972') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05972', 'Secondary instructor', 'Secondary instructor is specified as the type of position the staff member holds in the specific course section.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Secondary instructor', [Definition] = 'Secondary instructor is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 18.00 WHERE [Code] = '05972' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '73074') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73074', 'Special Education Consultant', 'Special Education Consultant is specified as the type of position the staff member holds in the specific course section.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Special Education Consultant', [Definition] = 'Special Education Consultant is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 19.00 WHERE [Code] = '73074' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '00080') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00080', 'Student teachers', 'Student teachers is specified as the type of position the staff member holds in the specific course section.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Student teachers', [Definition] = 'Student teachers is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 20.00 WHERE [Code] = '00080' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefClassroomPositionType] WHERE [Code] = '01382') BEGIN INSERT INTO dbo.[RefClassroomPositionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01382', 'Volunteer/no contract', 'Volunteer/no contract is specified as the type of position the staff member holds in the specific course section.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefClassroomPositionType] -SET [Description] = 'Volunteer/no contract', [Definition] = 'Volunteer/no contract is specified as the type of position the staff member holds in the specific course section.', [SortOrder] = 22.00 WHERE [Code] = '01382' END -END - -PRINT N'Populate RefCohortExclusion table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCohortExclusion]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCohortExclusion] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefCohortExclusion]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Death', 'Death is specified as a reason for a person to be removed (deleted) from a cohort (or subcohort).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCohortExclusion] -SET [Description] = 'Death', [Definition] = 'Death is specified as a reason for a person to be removed (deleted) from a cohort (or subcohort).', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCohortExclusion] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefCohortExclusion]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Total and permanent disability', 'Total and permanent disability is specified as a reason for a person to be removed (deleted) from a cohort (or subcohort).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCohortExclusion] -SET [Description] = 'Total and permanent disability', [Definition] = 'Total and permanent disability is specified as a reason for a person to be removed (deleted) from a cohort (or subcohort).', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCohortExclusion] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefCohortExclusion]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Service in the armed forces', 'Service in the armed forces is specified as a reason for a person to be removed (deleted) from a cohort (or subcohort).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCohortExclusion] -SET [Description] = 'Service in the armed forces', [Definition] = 'Service in the armed forces is specified as a reason for a person to be removed (deleted) from a cohort (or subcohort).', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCohortExclusion] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefCohortExclusion]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Service with a foreign aid service of the federal government', 'Service with a foreign aid service of the federal government is specified as a reason for a person to be removed (deleted) from a cohort (or subcohort).', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCohortExclusion] -SET [Description] = 'Service with a foreign aid service of the federal government', [Definition] = 'Service with a foreign aid service of the federal government is specified as a reason for a person to be removed (deleted) from a cohort (or subcohort).', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCohortExclusion] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefCohortExclusion]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Service on official church missions', 'Service on official church missions is specified as a reason for a person to be removed (deleted) from a cohort (or subcohort).', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCohortExclusion] -SET [Description] = 'Service on official church missions', [Definition] = 'Service on official church missions is specified as a reason for a person to be removed (deleted) from a cohort (or subcohort).', [SortOrder] = 5.00 WHERE [Code] = '05' END -END - -PRINT N'Populate RefCommunicationMethod table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCommunicationMethod]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunicationMethod] WHERE [Code] = 'InPerson') BEGIN INSERT INTO dbo.[RefCommunicationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InPerson', 'In-person', 'The types of communication methods with parents include in-person communication.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunicationMethod] -SET [Description] = 'In-person', [Definition] = 'The types of communication methods with parents include in-person communication.', [SortOrder] = 0.00 WHERE [Code] = 'InPerson' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunicationMethod] WHERE [Code] = 'Phone') BEGIN INSERT INTO dbo.[RefCommunicationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Phone', 'Phone', 'The types of communication methods with parents include Phone communications.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunicationMethod] -SET [Description] = 'Phone', [Definition] = 'The types of communication methods with parents include Phone communications.', [SortOrder] = 1.00 WHERE [Code] = 'Phone' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunicationMethod] WHERE [Code] = 'Website') BEGIN INSERT INTO dbo.[RefCommunicationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Website', 'Website', 'The types of communication methods with parents include Website.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunicationMethod] -SET [Description] = 'Website', [Definition] = 'The types of communication methods with parents include Website.', [SortOrder] = 2.00 WHERE [Code] = 'Website' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunicationMethod] WHERE [Code] = 'Email') BEGIN INSERT INTO dbo.[RefCommunicationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Email', 'Email', 'The types of communication methods with parents include Email.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunicationMethod] -SET [Description] = 'Email', [Definition] = 'The types of communication methods with parents include Email.', [SortOrder] = 3.00 WHERE [Code] = 'Email' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunicationMethod] WHERE [Code] = 'Newsletter') BEGIN INSERT INTO dbo.[RefCommunicationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Newsletter', 'Newsletter', 'The types of communication methods with parents include Newsletter.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunicationMethod] -SET [Description] = 'Newsletter', [Definition] = 'The types of communication methods with parents include Newsletter.', [SortOrder] = 4.00 WHERE [Code] = 'Newsletter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunicationMethod] WHERE [Code] = 'BulletinBoard') BEGIN INSERT INTO dbo.[RefCommunicationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BulletinBoard', 'Bulletin board', 'The types of communication methods with parents include Bulletin board.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunicationMethod] -SET [Description] = 'Bulletin board', [Definition] = 'The types of communication methods with parents include Bulletin board.', [SortOrder] = 5.00 WHERE [Code] = 'BulletinBoard' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunicationMethod] WHERE [Code] = 'HomeVisit') BEGIN INSERT INTO dbo.[RefCommunicationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HomeVisit', 'Home visit', 'The types of communication methods with parents include Home visit(s).', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunicationMethod] -SET [Description] = 'Home visit', [Definition] = 'The types of communication methods with parents include Home visit(s).', [SortOrder] = 10.00 WHERE [Code] = 'HomeVisit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunicationMethod] WHERE [Code] = 'Fax') BEGIN INSERT INTO dbo.[RefCommunicationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Fax', 'Fax', 'The types of communication methods with parents include Fax.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunicationMethod] -SET [Description] = 'Fax', [Definition] = 'The types of communication methods with parents include Fax.', [SortOrder] = 12.00 WHERE [Code] = 'Fax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunicationMethod] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefCommunicationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The types of communication methods with parents include Other.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunicationMethod] -SET [Description] = 'Other', [Definition] = 'The types of communication methods with parents include Other.', [SortOrder] = 14.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefCommunityBasedType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCommunityBasedType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunityBasedType] WHERE [Code] = 'Library') BEGIN INSERT INTO dbo.[RefCommunityBasedType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Library', 'Library', 'Library is specified as the non domestic residence in which the early learning setting is located.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunityBasedType] -SET [Description] = 'Library', [Definition] = 'Library is specified as the non domestic residence in which the early learning setting is located.', [SortOrder] = 1.00 WHERE [Code] = 'Library' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunityBasedType] WHERE [Code] = 'School') BEGIN INSERT INTO dbo.[RefCommunityBasedType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('School', 'School', 'School is specified as the non domestic residence in which the early learning setting is located.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunityBasedType] -SET [Description] = 'School', [Definition] = 'School is specified as the non domestic residence in which the early learning setting is located.', [SortOrder] = 3.00 WHERE [Code] = 'School' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunityBasedType] WHERE [Code] = 'ChildDevelopmentCenter') BEGIN INSERT INTO dbo.[RefCommunityBasedType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChildDevelopmentCenter', 'Child development center', 'Child development center is specified as the non domestic residence in which the early learning setting is located.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunityBasedType] -SET [Description] = 'Child development center', [Definition] = 'Child development center is specified as the non domestic residence in which the early learning setting is located.', [SortOrder] = 5.00 WHERE [Code] = 'ChildDevelopmentCenter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunityBasedType] WHERE [Code] = 'Hospital') BEGIN INSERT INTO dbo.[RefCommunityBasedType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Hospital', 'Hospital', 'Hospital is specified as the non domestic residence in which the early learning setting is located.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunityBasedType] -SET [Description] = 'Hospital', [Definition] = 'Hospital is specified as the non domestic residence in which the early learning setting is located.', [SortOrder] = 7.00 WHERE [Code] = 'Hospital' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunityBasedType] WHERE [Code] = 'PublicK12School') BEGIN INSERT INTO dbo.[RefCommunityBasedType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PublicK12School', 'Public K12 School', 'Public K12 School is specified as the non domestic residence in which the early learning setting is located.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunityBasedType] -SET [Description] = 'Public K12 School', [Definition] = 'Public K12 School is specified as the non domestic residence in which the early learning setting is located.', [SortOrder] = 9.00 WHERE [Code] = 'PublicK12School' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunityBasedType] WHERE [Code] = 'University') BEGIN INSERT INTO dbo.[RefCommunityBasedType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('University', 'University', 'University is specified as the non domestic residence in which the early learning setting is located.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunityBasedType] -SET [Description] = 'University', [Definition] = 'University is specified as the non domestic residence in which the early learning setting is located.', [SortOrder] = 11.00 WHERE [Code] = 'University' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCommunityBasedType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefCommunityBasedType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is specified as the non domestic residence in which the early learning setting is located.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCommunityBasedType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the non domestic residence in which the early learning setting is located.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefCompetencyDefAssociationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCompetencyDefAssociationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'Prerequisite') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Prerequisite', 'Prerequisite', 'The destination of the association is required as a prior condition for the origin of the association.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Prerequisite', [Definition] = 'The destination of the association is required as a prior condition for the origin of the association.', [SortOrder] = 1.00 WHERE [Code] = 'Prerequisite' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'ConformsTo') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ConformsTo', 'Conforms To', 'The origin of the association conforms to an established standard that the destination defines.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Conforms To', [Definition] = 'The origin of the association conforms to an established standard that the destination defines.', [SortOrder] = 3.00 WHERE [Code] = 'ConformsTo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'Defines') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Defines', 'Defines', 'The information at origin of the association provides context or meaning for understanding the destination of the association.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Defines', [Definition] = 'The information at origin of the association provides context or meaning for understanding the destination of the association.', [SortOrder] = 4.00 WHERE [Code] = 'Defines' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'HasFormat') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HasFormat', 'Has Format', 'The destination of the association is substantially the same as the resource at the origin of the association, but in another format.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Has Format', [Definition] = 'The destination of the association is substantially the same as the resource at the origin of the association, but in another format.', [SortOrder] = 5.00 WHERE [Code] = 'HasFormat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'HasPart') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HasPart', 'Has Part', 'The destination of the association is included either physically or logically in the resource at the origin of the association.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Has Part', [Definition] = 'The destination of the association is included either physically or logically in the resource at the origin of the association.', [SortOrder] = 7.00 WHERE [Code] = 'HasPart' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'HasVersion') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HasVersion', 'Has Version', 'The destination of the association is a version, edition, or adaptation of the resource at the origin of the association.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Has Version', [Definition] = 'The destination of the association is a version, edition, or adaptation of the resource at the origin of the association.', [SortOrder] = 9.00 WHERE [Code] = 'HasVersion' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'IsAssessedBy') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IsAssessedBy', 'Is Assessed By', 'The destination of the association may be used to assess the origin of the association.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Is Assessed By', [Definition] = 'The destination of the association may be used to assess the origin of the association.', [SortOrder] = 10.00 WHERE [Code] = 'IsAssessedBy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'IsConformedTo') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IsConformedTo', 'Is Conformed To', 'The destination of the association references an established standard to which the origin of the association conforms.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Is Conformed To', [Definition] = 'The destination of the association references an established standard to which the origin of the association conforms.', [SortOrder] = 11.00 WHERE [Code] = 'IsConformedTo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'IsDefinedBy') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IsDefinedBy', 'Is Defined By', 'Context or meaning for understanding the origin of the association is provided by the destination of the association.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Is Defined By', [Definition] = 'Context or meaning for understanding the origin of the association is provided by the destination of the association.', [SortOrder] = 12.00 WHERE [Code] = 'IsDefinedBy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'FormatOf') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FormatOf', 'Is Format of', 'The destination of the association is substantially the same as the resource at the origin of the association, but in another format.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Is Format of', [Definition] = 'The destination of the association is substantially the same as the resource at the origin of the association, but in another format.', [SortOrder] = 14.00 WHERE [Code] = 'FormatOf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'IsPartOf') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IsPartOf', 'Is Part Of', 'The origin of the association is included either physically or logically in the resource at the destination of the association.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Is Part Of', [Definition] = 'The origin of the association is included either physically or logically in the resource at the destination of the association.', [SortOrder] = 15.00 WHERE [Code] = 'IsPartOf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'IsPrerequisiteTo') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IsPrerequisiteTo', 'Is Prerequisite To', 'The origin of the association is required as a prior condition for the destination of the association.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Is Prerequisite To', [Definition] = 'The origin of the association is required as a prior condition for the destination of the association.', [SortOrder] = 16.00 WHERE [Code] = 'IsPrerequisiteTo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'ReferencedBy') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReferencedBy', 'Is Referenced By', 'The origin of the association is cited by the resource at the destination of the association.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Is Referenced By', [Definition] = 'The origin of the association is cited by the resource at the destination of the association.', [SortOrder] = 17.00 WHERE [Code] = 'ReferencedBy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'ReplacedBy') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReplacedBy', 'Is Replaced By', 'The origin of the association has been supplanted by, displaced by, or superseded by the destination of the association.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Is Replaced By', [Definition] = 'The origin of the association has been supplanted by, displaced by, or superseded by the destination of the association.', [SortOrder] = 18.00 WHERE [Code] = 'ReplacedBy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'RequiredBy') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RequiredBy', 'Is Required By', 'The origin of the association is required by the destination of the association to support its function, delivery, or coherence.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Is Required By', [Definition] = 'The origin of the association is required by the destination of the association to support its function, delivery, or coherence.', [SortOrder] = 19.00 WHERE [Code] = 'RequiredBy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'IsTaughtBy') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IsTaughtBy', 'Is Taught By', 'The competency at the origin of the association may be taught by the resource or method at the destination of the association.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Is Taught By', [Definition] = 'The competency at the origin of the association may be taught by the resource or method at the destination of the association.', [SortOrder] = 20.00 WHERE [Code] = 'IsTaughtBy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'VersionOf') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VersionOf', 'Is Version Of', 'The origin of the association is a version, edition, or adaptation of the resource at the destination of the association.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Is Version Of', [Definition] = 'The origin of the association is a version, edition, or adaptation of the resource at the destination of the association.', [SortOrder] = 21.00 WHERE [Code] = 'VersionOf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'Referenced') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Referenced', 'Referenced', 'The origin of the association cites the resource at the destination of the association.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Referenced', [Definition] = 'The origin of the association cites the resource at the destination of the association.', [SortOrder] = 22.00 WHERE [Code] = 'Referenced' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'Assesses') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assesses', 'Assesses', 'The origin of the association may be used to assess the destination of the association.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Assesses', [Definition] = 'The origin of the association may be used to assess the destination of the association.', [SortOrder] = 23.00 WHERE [Code] = 'Assesses' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'Teaches') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Teaches', 'Teaches', 'The resource or method at the origin of the association may be used to teach the competency at the destination of the association.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Teaches', [Definition] = 'The resource or method at the origin of the association may be used to teach the competency at the destination of the association.', [SortOrder] = 25.00 WHERE [Code] = 'Teaches' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'Requires') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Requires', 'Requires', 'The origin of the association requires the destination of the association to support its function, delivery, or coherence.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Requires', [Definition] = 'The origin of the association requires the destination of the association to support its function, delivery, or coherence.', [SortOrder] = 27.00 WHERE [Code] = 'Requires' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'ComplexityLevel') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ComplexityLevel', 'Complexity Level', 'The point in the framework being referenced defines a level or range that measures the difficulty or challenge presented by the learning resource being described.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Complexity Level', [Definition] = 'The point in the framework being referenced defines a level or range that measures the difficulty or challenge presented by the learning resource being described.', [SortOrder] = 29.00 WHERE [Code] = 'ComplexityLevel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'ReadingLevel') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReadingLevel', 'Reading Level', 'The destination of the association defines a level or range of ability expected for a person using the resource at the origin of the association.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Reading Level', [Definition] = 'The destination of the association defines a level or range of ability expected for a person using the resource at the origin of the association.', [SortOrder] = 31.00 WHERE [Code] = 'ReadingLevel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'EducationalSubject') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EducationalSubject', 'Educational Subject', 'The destination of the association defines a topic or subject from a controlled vocabulary.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Educational Subject', [Definition] = 'The destination of the association defines a topic or subject from a controlled vocabulary.', [SortOrder] = 33.00 WHERE [Code] = 'EducationalSubject' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'EducationLevel') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EducationLevel', 'Education Level', 'The destination of the association defines an education level from a controlled vocabulary.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Education Level', [Definition] = 'The destination of the association defines an education level from a controlled vocabulary.', [SortOrder] = 35.00 WHERE [Code] = 'EducationLevel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'Precedes') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Precedes', 'Precedes', 'The origin of the association comes before the destination of the association in time or order.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Precedes', [Definition] = 'The origin of the association comes before the destination of the association in time or order.', [SortOrder] = 37.00 WHERE [Code] = 'Precedes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'Follows') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Follows', 'Follows', 'The origin of the association comes after the destination of the association in time or order.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Follows', [Definition] = 'The origin of the association comes after the destination of the association in time or order.', [SortOrder] = 39.00 WHERE [Code] = 'Follows' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefAssociationType] WHERE [Code] = 'IsConcurrentTo') BEGIN INSERT INTO dbo.[RefCompetencyDefAssociationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IsConcurrentTo', 'Is Concurrent To', 'The origin of the association is achieved or delivered at the same time, or has the same ordinal position, as the destination of the association.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefAssociationType] -SET [Description] = 'Is Concurrent To', [Definition] = 'The origin of the association is achieved or delivered at the same time, or has the same ordinal position, as the destination of the association.', [SortOrder] = 41.00 WHERE [Code] = 'IsConcurrentTo' END -END - -PRINT N'Populate RefCompetencyDefNodeAccessibilityProfile table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCompetencyDefNodeAccessibilityProfile]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefNodeAccessibilityProfile] WHERE [Code] = 'Vision') BEGIN INSERT INTO dbo.[RefCompetencyDefNodeAccessibilityProfile]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Vision', 'Vision', 'The node in the educational framework is designed to address alternative pathways for learners with impaired vision.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefNodeAccessibilityProfile] -SET [Description] = 'Vision', [Definition] = 'The node in the educational framework is designed to address alternative pathways for learners with impaired vision.', [SortOrder] = 2.00 WHERE [Code] = 'Vision' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefNodeAccessibilityProfile] WHERE [Code] = 'Hearing') BEGIN INSERT INTO dbo.[RefCompetencyDefNodeAccessibilityProfile]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Hearing', 'Hearing', 'The node in the educational framework is designed to address alternative pathways for learners with impaired hearing.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefNodeAccessibilityProfile] -SET [Description] = 'Hearing', [Definition] = 'The node in the educational framework is designed to address alternative pathways for learners with impaired hearing.', [SortOrder] = 4.00 WHERE [Code] = 'Hearing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefNodeAccessibilityProfile] WHERE [Code] = 'Communication') BEGIN INSERT INTO dbo.[RefCompetencyDefNodeAccessibilityProfile]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Communication', 'Communication', 'The node in the educational framework is designed to address alternative pathways for learners with impaired communication.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefNodeAccessibilityProfile] -SET [Description] = 'Communication', [Definition] = 'The node in the educational framework is designed to address alternative pathways for learners with impaired communication.', [SortOrder] = 6.00 WHERE [Code] = 'Communication' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefNodeAccessibilityProfile] WHERE [Code] = 'Mobility') BEGIN INSERT INTO dbo.[RefCompetencyDefNodeAccessibilityProfile]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Mobility', 'Mobility', 'The node in the educational framework is designed to address alternative pathways for learners with impaired mobility.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefNodeAccessibilityProfile] -SET [Description] = 'Mobility', [Definition] = 'The node in the educational framework is designed to address alternative pathways for learners with impaired mobility.', [SortOrder] = 8.00 WHERE [Code] = 'Mobility' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefNodeAccessibilityProfile] WHERE [Code] = 'General') BEGIN INSERT INTO dbo.[RefCompetencyDefNodeAccessibilityProfile]([Code], [Description], [Definition], [SortOrder]) -VALUES ('General', 'General', 'The node in the educational framework is designed for a general audience.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefNodeAccessibilityProfile] -SET [Description] = 'General', [Definition] = 'The node in the educational framework is designed for a general audience.', [SortOrder] = 10.00 WHERE [Code] = 'General' END -END - -PRINT N'Populate RefCompetencyDefTestabilityType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCompetencyDefTestabilityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefTestabilityType] WHERE [Code] = 'SingleIndicator') BEGIN INSERT INTO dbo.[RefCompetencyDefTestabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SingleIndicator', 'Single Indicator', 'Testable using a single indicator type, measuring a single competency', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefTestabilityType] -SET [Description] = 'Single Indicator', [Definition] = 'Testable using a single indicator type, measuring a single competency', [SortOrder] = 2.00 WHERE [Code] = 'SingleIndicator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefTestabilityType] WHERE [Code] = 'MultipleIndicator') BEGIN INSERT INTO dbo.[RefCompetencyDefTestabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MultipleIndicator', 'Multiple Indicator', 'Testability requires more than one indicator type used to measure a single competency', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefTestabilityType] -SET [Description] = 'Multiple Indicator', [Definition] = 'Testability requires more than one indicator type used to measure a single competency', [SortOrder] = 4.00 WHERE [Code] = 'MultipleIndicator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefTestabilityType] WHERE [Code] = 'MultipleCompetency') BEGIN INSERT INTO dbo.[RefCompetencyDefTestabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MultipleCompetency', 'Multiple Competency', 'Testability requires a combination of indicators that assess multiple competencies or performance tasks', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefTestabilityType] -SET [Description] = 'Multiple Competency', [Definition] = 'Testability requires a combination of indicators that assess multiple competencies or performance tasks', [SortOrder] = 6.00 WHERE [Code] = 'MultipleCompetency' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyDefTestabilityType] WHERE [Code] = 'CannotBeAssessed') BEGIN INSERT INTO dbo.[RefCompetencyDefTestabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CannotBeAssessed', 'Cannot be assessed', 'The competency (skill, knowledge, ability, disposition) cannot be assessed.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyDefTestabilityType] -SET [Description] = 'Cannot be assessed', [Definition] = 'The competency (skill, knowledge, ability, disposition) cannot be assessed.', [SortOrder] = 8.00 WHERE [Code] = 'CannotBeAssessed' END -END - -PRINT N'Populate RefCompetencyFrameworkPublicationStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCompetencyFrameworkPublicationStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyFrameworkPublicationStatus] WHERE [Code] = 'Adopted') BEGIN INSERT INTO dbo.[RefCompetencyFrameworkPublicationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Adopted', 'Adopted', 'The learning standards document or competency framework has been adopted.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyFrameworkPublicationStatus] -SET [Description] = 'Adopted', [Definition] = 'The learning standards document or competency framework has been adopted.', [SortOrder] = 1.00 WHERE [Code] = 'Adopted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyFrameworkPublicationStatus] WHERE [Code] = 'Draft') BEGIN INSERT INTO dbo.[RefCompetencyFrameworkPublicationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Draft', 'Draft', 'The learning standards document or competency framework is in draft.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyFrameworkPublicationStatus] -SET [Description] = 'Draft', [Definition] = 'The learning standards document or competency framework is in draft.', [SortOrder] = 2.00 WHERE [Code] = 'Draft' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyFrameworkPublicationStatus] WHERE [Code] = 'Published') BEGIN INSERT INTO dbo.[RefCompetencyFrameworkPublicationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Published', 'Published', 'The learning standards document or competency framework has been published.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyFrameworkPublicationStatus] -SET [Description] = 'Published', [Definition] = 'The learning standards document or competency framework has been published.', [SortOrder] = 3.00 WHERE [Code] = 'Published' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyFrameworkPublicationStatus] WHERE [Code] = 'Deprecated') BEGIN INSERT INTO dbo.[RefCompetencyFrameworkPublicationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Deprecated', 'Deprecated', 'The learning standards document or competency framework has been deprecated.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyFrameworkPublicationStatus] -SET [Description] = 'Deprecated', [Definition] = 'The learning standards document or competency framework has been deprecated.', [SortOrder] = 4.00 WHERE [Code] = 'Deprecated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencyFrameworkPublicationStatus] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefCompetencyFrameworkPublicationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'The publication status of the learning standards document or competency framework is unknown.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencyFrameworkPublicationStatus] -SET [Description] = 'Unknown', [Definition] = 'The publication status of the learning standards document or competency framework is unknown.', [SortOrder] = 5.00 WHERE [Code] = 'Unknown' END -END - -PRINT N'Populate RefCompetencySetCompletionCriteria table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCompetencySetCompletionCriteria]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencySetCompletionCriteria] WHERE [Code] = 'All') BEGIN INSERT INTO dbo.[RefCompetencySetCompletionCriteria]([Code], [Description], [Definition], [SortOrder]) -VALUES ('All', 'All', 'All items in the set must be achieved.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencySetCompletionCriteria] -SET [Description] = 'All', [Definition] = 'All items in the set must be achieved.', [SortOrder] = 1.00 WHERE [Code] = 'All' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCompetencySetCompletionCriteria] WHERE [Code] = 'AtLeast') BEGIN INSERT INTO dbo.[RefCompetencySetCompletionCriteria]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AtLeast', 'At Least', 'At least the number of items in the set specified by Competency Set Completion Criteria Threshold must be achieved.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCompetencySetCompletionCriteria] -SET [Description] = 'At Least', [Definition] = 'At least the number of items in the set specified by Competency Set Completion Criteria Threshold must be achieved.', [SortOrder] = 2.00 WHERE [Code] = 'AtLeast' END -END - -PRINT N'Populate RefComprehensiveSupportAndImprovementStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefComprehensiveSupportAndImprovementStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefComprehensiveSupportAndImprovementStatus] WHERE [Code] = 'CSI') BEGIN INSERT INTO dbo.[RefComprehensiveSupportAndImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CSI', 'Comprehensive support and improvement', 'Comprehensive support and improvement is the designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefComprehensiveSupportAndImprovementStatus] -SET [Description] = 'Comprehensive support and improvement', [Definition] = 'Comprehensive support and improvement is the designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', [SortOrder] = 1.00 WHERE [Code] = 'CSI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefComprehensiveSupportAndImprovementStatus] WHERE [Code] = 'CSIEXIT') BEGIN INSERT INTO dbo.[RefComprehensiveSupportAndImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CSIEXIT', 'Comprehensive support and improvement - exit status', 'Comprehensive support and improvement - exit status is the designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefComprehensiveSupportAndImprovementStatus] -SET [Description] = 'Comprehensive support and improvement - exit status', [Definition] = 'Comprehensive support and improvement - exit status is the designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', [SortOrder] = 2.00 WHERE [Code] = 'CSIEXIT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefComprehensiveSupportAndImprovementStatus] WHERE [Code] = 'NOTCSI') BEGIN INSERT INTO dbo.[RefComprehensiveSupportAndImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NOTCSI', 'Not comprehensive support and improvement', 'Not comprehensive support and improvement is the designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefComprehensiveSupportAndImprovementStatus] -SET [Description] = 'Not comprehensive support and improvement', [Definition] = 'Not comprehensive support and improvement is the designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', [SortOrder] = 3.00 WHERE [Code] = 'NOTCSI' END -END - -PRINT N'Populate RefContentStandardType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefContentStandardType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefContentStandardType] WHERE [Code] = 'AssociationStandard') BEGIN INSERT INTO dbo.[RefContentStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssociationStandard', 'Association standard', 'The assessment conforms to a standard defined by an association.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefContentStandardType] -SET [Description] = 'Association standard', [Definition] = 'The assessment conforms to a standard defined by an association.', [SortOrder] = 1.00 WHERE [Code] = 'AssociationStandard' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefContentStandardType] WHERE [Code] = 'LocalStandard') BEGIN INSERT INTO dbo.[RefContentStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LocalStandard', 'Local standard', 'The assessment conforms to local standard.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefContentStandardType] -SET [Description] = 'Local standard', [Definition] = 'The assessment conforms to local standard.', [SortOrder] = 2.00 WHERE [Code] = 'LocalStandard' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefContentStandardType] WHERE [Code] = 'None') BEGIN INSERT INTO dbo.[RefContentStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('None', 'None', 'The assessment does not conform to a standard.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefContentStandardType] -SET [Description] = 'None', [Definition] = 'The assessment does not conform to a standard.', [SortOrder] = 3.00 WHERE [Code] = 'None' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefContentStandardType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefContentStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is specified as to whether an assessment conforms to a standard.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefContentStandardType] -SET [Description] = 'Other', [Definition] = 'Other is specified as to whether an assessment conforms to a standard.', [SortOrder] = 4.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefContentStandardType] WHERE [Code] = 'OtherStandard') BEGIN INSERT INTO dbo.[RefContentStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherStandard', 'Other standard', 'The assessment conforms to a content standard type not yet defined in CEDS.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefContentStandardType] -SET [Description] = 'Other standard', [Definition] = 'The assessment conforms to a content standard type not yet defined in CEDS.', [SortOrder] = 5.00 WHERE [Code] = 'OtherStandard' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefContentStandardType] WHERE [Code] = 'RegionalStandard') BEGIN INSERT INTO dbo.[RefContentStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RegionalStandard', 'Regional standard', 'The assessment conforms to a regional standard.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefContentStandardType] -SET [Description] = 'Regional standard', [Definition] = 'The assessment conforms to a regional standard.', [SortOrder] = 6.00 WHERE [Code] = 'RegionalStandard' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefContentStandardType] WHERE [Code] = 'SchoolStandard') BEGIN INSERT INTO dbo.[RefContentStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SchoolStandard', 'School standard', 'The assessment conforms to a school standard.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefContentStandardType] -SET [Description] = 'School standard', [Definition] = 'The assessment conforms to a school standard.', [SortOrder] = 7.00 WHERE [Code] = 'SchoolStandard' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefContentStandardType] WHERE [Code] = 'StatewideStandard') BEGIN INSERT INTO dbo.[RefContentStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StatewideStandard', 'Statewide standard', 'The assessment conforms to a statewide standard.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefContentStandardType] -SET [Description] = 'Statewide standard', [Definition] = 'The assessment conforms to a statewide standard.', [SortOrder] = 8.00 WHERE [Code] = 'StatewideStandard' END -END - -PRINT N'Populate RefContinuationOfServices table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefContinuationOfServices]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefContinuationOfServices] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefContinuationOfServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Providing services for the duration of the term', 'Providing services for the duration of the term is specified as the reason why the student is being served under the continuation of services provision of the Migrant Education Program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefContinuationOfServices] -SET [Description] = 'Providing services for the duration of the term', [Definition] = 'Providing services for the duration of the term is specified as the reason why the student is being served under the continuation of services provision of the Migrant Education Program.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefContinuationOfServices] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefContinuationOfServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Providing services for an additional year -comparable services are not available', 'Providing services for an additional year -comparable services are not available is specified as the reason why the student is being served under the continuation of services provision of the Migrant Education Program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefContinuationOfServices] -SET [Description] = 'Providing services for an additional year -comparable services are not available', [Definition] = 'Providing services for an additional year -comparable services are not available is specified as the reason why the student is being served under the continuation of services provision of the Migrant Education Program.', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefContinuationOfServices] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefContinuationOfServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Serving secondary students through credit accrual programs', 'Serving secondary students through credit accrual programs is specified as the reason why the student is being served under the continuation of services provision of the Migrant Education Program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefContinuationOfServices] -SET [Description] = 'Serving secondary students through credit accrual programs', [Definition] = 'Serving secondary students through credit accrual programs is specified as the reason why the student is being served under the continuation of services provision of the Migrant Education Program.', [SortOrder] = 3.00 WHERE [Code] = '03' END -END - -PRINT N'Populate RefControlOfInstitution table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefControlOfInstitution]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefControlOfInstitution] WHERE [Code] = 'Public') BEGIN INSERT INTO dbo.[RefControlOfInstitution]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Public', 'Public', 'The postsecondary institution is operated by publicly elected or appointed officials.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefControlOfInstitution] -SET [Description] = 'Public', [Definition] = 'The postsecondary institution is operated by publicly elected or appointed officials.', [SortOrder] = 1.00 WHERE [Code] = 'Public' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefControlOfInstitution] WHERE [Code] = 'PrivateNFP') BEGIN INSERT INTO dbo.[RefControlOfInstitution]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrivateNFP', 'Private, not for profit', 'The postsecondary institution is operated by privately elected or appointed officials and is organized as a not for profit entity.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefControlOfInstitution] -SET [Description] = 'Private, not for profit', [Definition] = 'The postsecondary institution is operated by privately elected or appointed officials and is organized as a not for profit entity.', [SortOrder] = 2.00 WHERE [Code] = 'PrivateNFP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefControlOfInstitution] WHERE [Code] = 'PrivateFP') BEGIN INSERT INTO dbo.[RefControlOfInstitution]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrivateFP', 'Private, for profit', 'The postsecondary institution is operated by privately elected or appointed officials and is organized as a for profit entity.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefControlOfInstitution] -SET [Description] = 'Private, for profit', [Definition] = 'The postsecondary institution is operated by privately elected or appointed officials and is organized as a for profit entity.', [SortOrder] = 3.00 WHERE [Code] = 'PrivateFP' END -END - -PRINT N'Populate RefCoreKnowledgeArea table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCoreKnowledgeArea]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCoreKnowledgeArea] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Child growth and development', 'Child growth and development is the core knowledge area addressed by Early Learning professional development.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCoreKnowledgeArea] -SET [Description] = 'Child growth and development', [Definition] = 'Child growth and development is the core knowledge area addressed by Early Learning professional development.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCoreKnowledgeArea] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Health safety and nutrition', 'Health safety and nutrition is the core knowledge area addressed by Early Learning professional development.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCoreKnowledgeArea] -SET [Description] = 'Health safety and nutrition', [Definition] = 'Health safety and nutrition is the core knowledge area addressed by Early Learning professional development.', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCoreKnowledgeArea] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Teaching and learning', 'Teaching and learning is the core knowledge area addressed by Early Learning professional development.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCoreKnowledgeArea] -SET [Description] = 'Teaching and learning', [Definition] = 'Teaching and learning is the core knowledge area addressed by Early Learning professional development.', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCoreKnowledgeArea] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Observing, documenting and assessing', 'Observing, documenting and assessing is the core knowledge area addressed by Early Learning professional development.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCoreKnowledgeArea] -SET [Description] = 'Observing, documenting and assessing', [Definition] = 'Observing, documenting and assessing is the core knowledge area addressed by Early Learning professional development.', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCoreKnowledgeArea] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Family and community relationships', 'Family and community relationships is the core knowledge area addressed by Early Learning professional development.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCoreKnowledgeArea] -SET [Description] = 'Family and community relationships', [Definition] = 'Family and community relationships is the core knowledge area addressed by Early Learning professional development.', [SortOrder] = 5.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCoreKnowledgeArea] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Administration and management', 'Administration and management is the core knowledge area addressed by Early Learning professional development.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCoreKnowledgeArea] -SET [Description] = 'Administration and management', [Definition] = 'Administration and management is the core knowledge area addressed by Early Learning professional development.', [SortOrder] = 6.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCoreKnowledgeArea] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Early childhood education profession and policy', 'Early childhood education profession and policy is the core knowledge area addressed by Early Learning professional development.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCoreKnowledgeArea] -SET [Description] = 'Early childhood education profession and policy', [Definition] = 'Early childhood education profession and policy is the core knowledge area addressed by Early Learning professional development.', [SortOrder] = 7.00 WHERE [Code] = '07' END -END - -PRINT N'Populate RefCorrectionalEducationFacilityType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCorrectionalEducationFacilityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCorrectionalEducationFacilityType] WHERE [Code] = 'Prison') BEGIN INSERT INTO dbo.[RefCorrectionalEducationFacilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Prison', 'Prison, Penitentiary or Correctional Institution', 'Prison, Penitentiary or Correctional Institution is specified as the type of facility in which an inmate receives correctional education services.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCorrectionalEducationFacilityType] -SET [Description] = 'Prison, Penitentiary or Correctional Institution', [Definition] = 'Prison, Penitentiary or Correctional Institution is specified as the type of facility in which an inmate receives correctional education services.', [SortOrder] = 1.00 WHERE [Code] = 'Prison' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCorrectionalEducationFacilityType] WHERE [Code] = 'Jail') BEGIN INSERT INTO dbo.[RefCorrectionalEducationFacilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Jail', 'Jail', 'Jail is specified as the type of facility in which an inmate receives correctional education services.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCorrectionalEducationFacilityType] -SET [Description] = 'Jail', [Definition] = 'Jail is specified as the type of facility in which an inmate receives correctional education services.', [SortOrder] = 3.00 WHERE [Code] = 'Jail' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCorrectionalEducationFacilityType] WHERE [Code] = 'JuvenileFacility') BEGIN INSERT INTO dbo.[RefCorrectionalEducationFacilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JuvenileFacility', 'Juvenile Facility', 'Juvenile Facility is specified as the type of facility in which an inmate receives correctional education services.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCorrectionalEducationFacilityType] -SET [Description] = 'Juvenile Facility', [Definition] = 'Juvenile Facility is specified as the type of facility in which an inmate receives correctional education services.', [SortOrder] = 5.00 WHERE [Code] = 'JuvenileFacility' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCorrectionalEducationFacilityType] WHERE [Code] = 'CommunityCorrections') BEGIN INSERT INTO dbo.[RefCorrectionalEducationFacilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CommunityCorrections', 'Community Corrections', 'Community Corrections is specified as the type of facility in which an inmate receives correctional education services.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCorrectionalEducationFacilityType] -SET [Description] = 'Community Corrections', [Definition] = 'Community Corrections is specified as the type of facility in which an inmate receives correctional education services.', [SortOrder] = 7.00 WHERE [Code] = 'CommunityCorrections' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCorrectionalEducationFacilityType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefCorrectionalEducationFacilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other Institution', 'Other Institution is specified as the type of facility in which an inmate receives correctional education services.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCorrectionalEducationFacilityType] -SET [Description] = 'Other Institution', [Definition] = 'Other Institution is specified as the type of facility in which an inmate receives correctional education services.', [SortOrder] = 9.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefCorrectiveActionType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCorrectiveActionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCorrectiveActionType] WHERE [Code] = 'CA1') BEGIN INSERT INTO dbo.[RefCorrectiveActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CA1', 'Required implementation of a new research-based curriculum or instructional program', 'A corrective action requiring implementation of a new research-based curriculum or instructional program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCorrectiveActionType] -SET [Description] = 'Required implementation of a new research-based curriculum or instructional program', [Definition] = 'A corrective action requiring implementation of a new research-based curriculum or instructional program.', [SortOrder] = 1.00 WHERE [Code] = 'CA1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCorrectiveActionType] WHERE [Code] = 'CA2') BEGIN INSERT INTO dbo.[RefCorrectiveActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CA2', 'Extension of the school year or school day ', 'A corrective action requiring extension of the school year or school day.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCorrectiveActionType] -SET [Description] = 'Extension of the school year or school day ', [Definition] = 'A corrective action requiring extension of the school year or school day.', [SortOrder] = 2.00 WHERE [Code] = 'CA2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCorrectiveActionType] WHERE [Code] = 'CA3') BEGIN INSERT INTO dbo.[RefCorrectiveActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CA3', 'Replacement of staff members relevant to the school''s low performance', 'A corrective action requiring replacement of staff members relevant to the school''s low performance.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCorrectiveActionType] -SET [Description] = 'Replacement of staff members relevant to the school''s low performance', [Definition] = 'A corrective action requiring replacement of staff members relevant to the school''s low performance.', [SortOrder] = 3.00 WHERE [Code] = 'CA3' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCorrectiveActionType] WHERE [Code] = 'CA4') BEGIN INSERT INTO dbo.[RefCorrectiveActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CA4', 'Significant decrease in management authority at the school level', 'A corrective action requiring significant decrease in management authority at the school level.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCorrectiveActionType] -SET [Description] = 'Significant decrease in management authority at the school level', [Definition] = 'A corrective action requiring significant decrease in management authority at the school level.', [SortOrder] = 4.00 WHERE [Code] = 'CA4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCorrectiveActionType] WHERE [Code] = 'CA5') BEGIN INSERT INTO dbo.[RefCorrectiveActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CA5', 'Replacement of the principal', 'A corrective action requiring replacement of the principal.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCorrectiveActionType] -SET [Description] = 'Replacement of the principal', [Definition] = 'A corrective action requiring replacement of the principal.', [SortOrder] = 5.00 WHERE [Code] = 'CA5' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCorrectiveActionType] WHERE [Code] = 'CA6') BEGIN INSERT INTO dbo.[RefCorrectiveActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CA6', 'Restructuring of the internal organization of the school', 'A corrective action requiring restructuring of the internal organization of the school.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCorrectiveActionType] -SET [Description] = 'Restructuring of the internal organization of the school', [Definition] = 'A corrective action requiring restructuring of the internal organization of the school.', [SortOrder] = 6.00 WHERE [Code] = 'CA6' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCorrectiveActionType] WHERE [Code] = 'CA7') BEGIN INSERT INTO dbo.[RefCorrectiveActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CA7', 'Appointment of an outside expert to advise the school', 'A corrective action requiring appointment of an outside expert to advise the school.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCorrectiveActionType] -SET [Description] = 'Appointment of an outside expert to advise the school', [Definition] = 'A corrective action requiring appointment of an outside expert to advise the school.', [SortOrder] = 7.00 WHERE [Code] = 'CA7' END -END - -PRINT N'Populate RefCountry table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCountry]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AF') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AF', 'AFGHANISTAN', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'AFGHANISTAN', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'AF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AX') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AX', 'ÅLAND ISLANDS', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ÅLAND ISLANDS', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'AX' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AL') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AL', 'ALBANIA', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ALBANIA', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'AL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'DZ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DZ', 'ALGERIA', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ALGERIA', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'DZ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AS') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AS', 'AMERICAN SAMOA', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'AMERICAN SAMOA', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = 'AS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AD') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AD', 'ANDORRA', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ANDORRA', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = 'AD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AO') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AO', 'ANGOLA', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ANGOLA', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = 'AO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AI') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AI', 'ANGUILLA', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ANGUILLA', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = 'AI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AQ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AQ', 'ANTARCTICA', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ANTARCTICA', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = 'AQ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AG') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AG', 'ANTIGUA AND BARBUDA', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ANTIGUA AND BARBUDA', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = 'AG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AR') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AR', 'ARGENTINA', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ARGENTINA', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = 'AR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AM', 'ARMENIA', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ARMENIA', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = 'AM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AW') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AW', 'ARUBA', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ARUBA', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = 'AW' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AU') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AU', 'AUSTRALIA', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'AUSTRALIA', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = 'AU' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AT') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AT', 'AUSTRIA', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'AUSTRIA', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = 'AT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AZ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AZ', 'AZERBAIJAN', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'AZERBAIJAN', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = 'AZ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BS') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BS', 'BAHAMAS', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BAHAMAS', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = 'BS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BH') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BH', 'BAHRAIN', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BAHRAIN', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = 'BH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BD') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BD', 'BANGLADESH', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BANGLADESH', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = 'BD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BB') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BB', 'BARBADOS', NULL, 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BARBADOS', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = 'BB' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BY') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BY', 'BELARUS', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BELARUS', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = 'BY' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BE') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BE', 'BELGIUM', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BELGIUM', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = 'BE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BZ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BZ', 'BELIZE', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BELIZE', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = 'BZ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BJ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BJ', 'BENIN', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BENIN', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = 'BJ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BM', 'BERMUDA', NULL, 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BERMUDA', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = 'BM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BT') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BT', 'BHUTAN', NULL, 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BHUTAN', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = 'BT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BO') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BO', 'BOLIVIA (PLURINATIONAL STATE OF)', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BOLIVIA (PLURINATIONAL STATE OF)', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = 'BO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BQ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BQ', 'BONAIRE, SINT EUSTATIUS AND SABA', NULL, 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BONAIRE, SINT EUSTATIUS AND SABA', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = 'BQ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BA') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BA', 'BOSNIA AND HERZEGOVINA', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BOSNIA AND HERZEGOVINA', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = 'BA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BW') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BW', 'BOTSWANA', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BOTSWANA', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = 'BW' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BV') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BV', 'BOUVET ISLAND', NULL, 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BOUVET ISLAND', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = 'BV' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BR') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BR', 'BRAZIL', NULL, 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BRAZIL', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = 'BR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'IO') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IO', 'BRITISH INDIAN OCEAN TERRITORY', NULL, 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BRITISH INDIAN OCEAN TERRITORY', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = 'IO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BN') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BN', 'BRUNEI DARUSSALAM', NULL, 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BRUNEI DARUSSALAM', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = 'BN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BG') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BG', 'BULGARIA', NULL, 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BULGARIA', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = 'BG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BF') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BF', 'BURKINA FASO', NULL, 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BURKINA FASO', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = 'BF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BI') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BI', 'BURUNDI', NULL, 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'BURUNDI', [Definition] = NULL, [SortOrder] = 37.00 WHERE [Code] = 'BI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'KH') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KH', 'CAMBODIA', NULL, 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CAMBODIA', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = 'KH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CM', 'CAMEROON', NULL, 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CAMEROON', [Definition] = NULL, [SortOrder] = 39.00 WHERE [Code] = 'CM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CA') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CA', 'CANADA', NULL, 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CANADA', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = 'CA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CV') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CV', 'CABO VERDE', NULL, 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CABO VERDE', [Definition] = NULL, [SortOrder] = 41.00 WHERE [Code] = 'CV' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'KY') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KY', 'CAYMAN ISLANDS', NULL, 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CAYMAN ISLANDS', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = 'KY' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CF') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CF', 'CENTRAL AFRICAN REPUBLIC', NULL, 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CENTRAL AFRICAN REPUBLIC', [Definition] = NULL, [SortOrder] = 43.00 WHERE [Code] = 'CF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TD') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TD', 'CHAD', NULL, 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CHAD', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = 'TD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CL') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CL', 'CHILE', NULL, 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CHILE', [Definition] = NULL, [SortOrder] = 45.00 WHERE [Code] = 'CL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CN') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CN', 'CHINA', NULL, 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CHINA', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = 'CN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CX') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CX', 'CHRISTMAS ISLAND', NULL, 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CHRISTMAS ISLAND', [Definition] = NULL, [SortOrder] = 47.00 WHERE [Code] = 'CX' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CC') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CC', 'COCOS (KEELING) ISLANDS', NULL, 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'COCOS (KEELING) ISLANDS', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = 'CC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CO') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CO', 'COLOMBIA', NULL, 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'COLOMBIA', [Definition] = NULL, [SortOrder] = 49.00 WHERE [Code] = 'CO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'KM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KM', 'COMOROS', NULL, 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'COMOROS', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = 'KM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CG') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CG', 'CONGO', NULL, 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CONGO', [Definition] = NULL, [SortOrder] = 51.00 WHERE [Code] = 'CG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CD') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CD', 'CONGO, DEMOCRATIC REPUBLIC OF THE', NULL, 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CONGO, DEMOCRATIC REPUBLIC OF THE', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = 'CD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CK') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CK', 'COOK ISLANDS', NULL, 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'COOK ISLANDS', [Definition] = NULL, [SortOrder] = 53.00 WHERE [Code] = 'CK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CR') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CR', 'COSTA RICA', NULL, 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'COSTA RICA', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = 'CR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CI') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CI', 'CÔTE D''IVOIRE', NULL, 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CÔTE D''IVOIRE', [Definition] = NULL, [SortOrder] = 55.00 WHERE [Code] = 'CI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'HR') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HR', 'CROATIA', NULL, 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CROATIA', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = 'HR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CU') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CU', 'CUBA', NULL, 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CUBA', [Definition] = NULL, [SortOrder] = 57.00 WHERE [Code] = 'CU' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CW') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CW', 'CURAÇAO', NULL, 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CURAÇAO', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = 'CW' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CY') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CY', 'CYPRUS', NULL, 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CYPRUS', [Definition] = NULL, [SortOrder] = 59.00 WHERE [Code] = 'CY' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CZ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CZ', 'CZECHIA', NULL, 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'CZECHIA', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = 'CZ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'DK') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DK', 'DENMARK', NULL, 61.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'DENMARK', [Definition] = NULL, [SortOrder] = 61.00 WHERE [Code] = 'DK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'DJ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DJ', 'DJIBOUTI', NULL, 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'DJIBOUTI', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = 'DJ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'DM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DM', 'DOMINICA', NULL, 63.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'DOMINICA', [Definition] = NULL, [SortOrder] = 63.00 WHERE [Code] = 'DM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'DO') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DO', 'DOMINICAN REPUBLIC', NULL, 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'DOMINICAN REPUBLIC', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = 'DO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'EC') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EC', 'ECUADOR', NULL, 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ECUADOR', [Definition] = NULL, [SortOrder] = 65.00 WHERE [Code] = 'EC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'EG') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EG', 'EGYPT', NULL, 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'EGYPT', [Definition] = NULL, [SortOrder] = 66.00 WHERE [Code] = 'EG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SV') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SV', 'EL SALVADOR', NULL, 67.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'EL SALVADOR', [Definition] = NULL, [SortOrder] = 67.00 WHERE [Code] = 'SV' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GQ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GQ', 'EQUATORIAL GUINEA', NULL, 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'EQUATORIAL GUINEA', [Definition] = NULL, [SortOrder] = 68.00 WHERE [Code] = 'GQ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'ER') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ER', 'ERITREA', NULL, 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ERITREA', [Definition] = NULL, [SortOrder] = 69.00 WHERE [Code] = 'ER' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'EE') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EE', 'ESTONIA', NULL, 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ESTONIA', [Definition] = NULL, [SortOrder] = 70.00 WHERE [Code] = 'EE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'ET') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ET', 'ETHIOPIA', NULL, 71.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ETHIOPIA', [Definition] = NULL, [SortOrder] = 71.00 WHERE [Code] = 'ET' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'FK') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FK', 'FALKLAND ISLANDS (MALVINAS)', NULL, 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'FALKLAND ISLANDS (MALVINAS)', [Definition] = NULL, [SortOrder] = 72.00 WHERE [Code] = 'FK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'FO') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FO', 'FAROE ISLANDS', NULL, 73.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'FAROE ISLANDS', [Definition] = NULL, [SortOrder] = 73.00 WHERE [Code] = 'FO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'FJ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FJ', 'FIJI', NULL, 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'FIJI', [Definition] = NULL, [SortOrder] = 74.00 WHERE [Code] = 'FJ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'FI') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FI', 'FINLAND', NULL, 75.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'FINLAND', [Definition] = NULL, [SortOrder] = 75.00 WHERE [Code] = 'FI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'FR') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FR', 'FRANCE', NULL, 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'FRANCE', [Definition] = NULL, [SortOrder] = 76.00 WHERE [Code] = 'FR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GF') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GF', 'FRENCH GUIANA', NULL, 77.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'FRENCH GUIANA', [Definition] = NULL, [SortOrder] = 77.00 WHERE [Code] = 'GF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'PF') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PF', 'FRENCH POLYNESIA', NULL, 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'FRENCH POLYNESIA', [Definition] = NULL, [SortOrder] = 78.00 WHERE [Code] = 'PF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TF') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TF', 'FRENCH SOUTHERN TERRITORIES', NULL, 79.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'FRENCH SOUTHERN TERRITORIES', [Definition] = NULL, [SortOrder] = 79.00 WHERE [Code] = 'TF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GA') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GA', 'GABON', NULL, 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GABON', [Definition] = NULL, [SortOrder] = 80.00 WHERE [Code] = 'GA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GM', 'GAMBIA', NULL, 81.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GAMBIA', [Definition] = NULL, [SortOrder] = 81.00 WHERE [Code] = 'GM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GE') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GE', 'GEORGIA', NULL, 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GEORGIA', [Definition] = NULL, [SortOrder] = 82.00 WHERE [Code] = 'GE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'DE') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DE', 'GERMANY', NULL, 83.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GERMANY', [Definition] = NULL, [SortOrder] = 83.00 WHERE [Code] = 'DE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GH') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GH', 'GHANA', NULL, 84.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GHANA', [Definition] = NULL, [SortOrder] = 84.00 WHERE [Code] = 'GH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GI') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GI', 'GIBRALTAR', NULL, 85.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GIBRALTAR', [Definition] = NULL, [SortOrder] = 85.00 WHERE [Code] = 'GI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GR') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GR', 'GREECE', NULL, 86.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GREECE', [Definition] = NULL, [SortOrder] = 86.00 WHERE [Code] = 'GR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GL') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GL', 'GREENLAND', NULL, 87.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GREENLAND', [Definition] = NULL, [SortOrder] = 87.00 WHERE [Code] = 'GL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GD') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GD', 'GRENADA', NULL, 88.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GRENADA', [Definition] = NULL, [SortOrder] = 88.00 WHERE [Code] = 'GD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GP') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GP', 'GUADELOUPE', NULL, 89.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GUADELOUPE', [Definition] = NULL, [SortOrder] = 89.00 WHERE [Code] = 'GP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GU') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GU', 'GUAM', NULL, 90.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GUAM', [Definition] = NULL, [SortOrder] = 90.00 WHERE [Code] = 'GU' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GT') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GT', 'GUATEMALA', NULL, 91.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GUATEMALA', [Definition] = NULL, [SortOrder] = 91.00 WHERE [Code] = 'GT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GG') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GG', 'GUERNSEY', NULL, 92.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GUERNSEY', [Definition] = NULL, [SortOrder] = 92.00 WHERE [Code] = 'GG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GN') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GN', 'GUINEA', NULL, 93.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GUINEA', [Definition] = NULL, [SortOrder] = 93.00 WHERE [Code] = 'GN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GW') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GW', 'GUINEA-BISSAU', NULL, 94.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GUINEA-BISSAU', [Definition] = NULL, [SortOrder] = 94.00 WHERE [Code] = 'GW' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GY') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GY', 'GUYANA', NULL, 95.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'GUYANA', [Definition] = NULL, [SortOrder] = 95.00 WHERE [Code] = 'GY' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'HT') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HT', 'HAITI', NULL, 96.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'HAITI', [Definition] = NULL, [SortOrder] = 96.00 WHERE [Code] = 'HT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'HM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HM', 'HEARD ISLAND AND MCDONALD ISLANDS', NULL, 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'HEARD ISLAND AND MCDONALD ISLANDS', [Definition] = NULL, [SortOrder] = 97.00 WHERE [Code] = 'HM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'VA') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VA', 'HOLY SEE', NULL, 98.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'HOLY SEE', [Definition] = NULL, [SortOrder] = 98.00 WHERE [Code] = 'VA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'HN') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HN', 'HONDURAS', NULL, 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'HONDURAS', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = 'HN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'HK') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HK', 'HONG KONG', NULL, 100.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'HONG KONG', [Definition] = NULL, [SortOrder] = 100.00 WHERE [Code] = 'HK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'HU') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HU', 'HUNGARY', NULL, 101.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'HUNGARY', [Definition] = NULL, [SortOrder] = 101.00 WHERE [Code] = 'HU' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'IS') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IS', 'ICELAND', NULL, 102.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ICELAND', [Definition] = NULL, [SortOrder] = 102.00 WHERE [Code] = 'IS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'IN') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IN', 'INDIA', NULL, 103.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'INDIA', [Definition] = NULL, [SortOrder] = 103.00 WHERE [Code] = 'IN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'ID') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ID', 'INDONESIA', NULL, 104.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'INDONESIA', [Definition] = NULL, [SortOrder] = 104.00 WHERE [Code] = 'ID' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'IR') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IR', 'IRAN (ISLAMIC REPUBLIC OF)', NULL, 105.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'IRAN (ISLAMIC REPUBLIC OF)', [Definition] = NULL, [SortOrder] = 105.00 WHERE [Code] = 'IR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'IQ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IQ', 'IRAQ', NULL, 106.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'IRAQ', [Definition] = NULL, [SortOrder] = 106.00 WHERE [Code] = 'IQ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'IE') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IE', 'IRELAND', NULL, 107.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'IRELAND', [Definition] = NULL, [SortOrder] = 107.00 WHERE [Code] = 'IE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'IM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IM', 'ISLE OF MAN', NULL, 108.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ISLE OF MAN', [Definition] = NULL, [SortOrder] = 108.00 WHERE [Code] = 'IM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'IL') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IL', 'ISRAEL', NULL, 109.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ISRAEL', [Definition] = NULL, [SortOrder] = 109.00 WHERE [Code] = 'IL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'IT') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IT', 'ITALY', NULL, 110.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ITALY', [Definition] = NULL, [SortOrder] = 110.00 WHERE [Code] = 'IT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'JM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JM', 'JAMAICA', NULL, 111.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'JAMAICA', [Definition] = NULL, [SortOrder] = 111.00 WHERE [Code] = 'JM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'JP') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JP', 'JAPAN', NULL, 112.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'JAPAN', [Definition] = NULL, [SortOrder] = 112.00 WHERE [Code] = 'JP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'JE') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JE', 'JERSEY', NULL, 113.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'JERSEY', [Definition] = NULL, [SortOrder] = 113.00 WHERE [Code] = 'JE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'JO') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JO', 'JORDAN', NULL, 114.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'JORDAN', [Definition] = NULL, [SortOrder] = 114.00 WHERE [Code] = 'JO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'KZ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KZ', 'KAZAKHSTAN', NULL, 115.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'KAZAKHSTAN', [Definition] = NULL, [SortOrder] = 115.00 WHERE [Code] = 'KZ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'KE') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KE', 'KENYA', NULL, 116.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'KENYA', [Definition] = NULL, [SortOrder] = 116.00 WHERE [Code] = 'KE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'KI') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KI', 'KIRIBATI', NULL, 117.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'KIRIBATI', [Definition] = NULL, [SortOrder] = 117.00 WHERE [Code] = 'KI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'KP') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KP', 'KOREA (DEMOCRATIC PEOPLE''S REPUBLIC OF)', NULL, 118.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'KOREA (DEMOCRATIC PEOPLE''S REPUBLIC OF)', [Definition] = NULL, [SortOrder] = 118.00 WHERE [Code] = 'KP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'KR') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KR', 'KOREA, REPUBLIC OF', NULL, 119.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'KOREA, REPUBLIC OF', [Definition] = NULL, [SortOrder] = 119.00 WHERE [Code] = 'KR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'KW') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KW', 'KUWAIT', NULL, 120.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'KUWAIT', [Definition] = NULL, [SortOrder] = 120.00 WHERE [Code] = 'KW' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'KG') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KG', 'KYRGYZSTAN', NULL, 121.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'KYRGYZSTAN', [Definition] = NULL, [SortOrder] = 121.00 WHERE [Code] = 'KG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'LA') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LA', 'LAO PEOPLE''S DEMOCRATIC REPUBLIC', NULL, 122.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'LAO PEOPLE''S DEMOCRATIC REPUBLIC', [Definition] = NULL, [SortOrder] = 122.00 WHERE [Code] = 'LA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'LV') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LV', 'LATVIA', NULL, 123.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'LATVIA', [Definition] = NULL, [SortOrder] = 123.00 WHERE [Code] = 'LV' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'LB') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LB', 'LEBANON', NULL, 124.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'LEBANON', [Definition] = NULL, [SortOrder] = 124.00 WHERE [Code] = 'LB' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'LS') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LS', 'LESOTHO', NULL, 125.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'LESOTHO', [Definition] = NULL, [SortOrder] = 125.00 WHERE [Code] = 'LS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'LR') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LR', 'LIBERIA', NULL, 126.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'LIBERIA', [Definition] = NULL, [SortOrder] = 126.00 WHERE [Code] = 'LR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'LY') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LY', 'LIBYA', NULL, 127.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'LIBYA', [Definition] = NULL, [SortOrder] = 127.00 WHERE [Code] = 'LY' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'LI') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LI', 'LIECHTENSTEIN', NULL, 128.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'LIECHTENSTEIN', [Definition] = NULL, [SortOrder] = 128.00 WHERE [Code] = 'LI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'LT') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LT', 'LITHUANIA', NULL, 129.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'LITHUANIA', [Definition] = NULL, [SortOrder] = 129.00 WHERE [Code] = 'LT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'LU') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LU', 'LUXEMBOURG', NULL, 130.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'LUXEMBOURG', [Definition] = NULL, [SortOrder] = 130.00 WHERE [Code] = 'LU' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MO') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MO', 'MACAO', NULL, 131.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MACAO', [Definition] = NULL, [SortOrder] = 131.00 WHERE [Code] = 'MO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MK') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MK', 'NORTH MACEDONIA', NULL, 132.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'NORTH MACEDONIA', [Definition] = NULL, [SortOrder] = 132.00 WHERE [Code] = 'MK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MG') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MG', 'MADAGASCAR', NULL, 133.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MADAGASCAR', [Definition] = NULL, [SortOrder] = 133.00 WHERE [Code] = 'MG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MW') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MW', 'MALAWI', NULL, 134.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MALAWI', [Definition] = NULL, [SortOrder] = 134.00 WHERE [Code] = 'MW' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MY') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MY', 'MALAYSIA', NULL, 135.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MALAYSIA', [Definition] = NULL, [SortOrder] = 135.00 WHERE [Code] = 'MY' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MV') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MV', 'MALDIVES', NULL, 136.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MALDIVES', [Definition] = NULL, [SortOrder] = 136.00 WHERE [Code] = 'MV' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'ML') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ML', 'MALI', NULL, 137.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MALI', [Definition] = NULL, [SortOrder] = 137.00 WHERE [Code] = 'ML' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MT') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MT', 'MALTA', NULL, 138.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MALTA', [Definition] = NULL, [SortOrder] = 138.00 WHERE [Code] = 'MT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MH') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MH', 'MARSHALL ISLANDS', NULL, 139.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MARSHALL ISLANDS', [Definition] = NULL, [SortOrder] = 139.00 WHERE [Code] = 'MH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MQ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MQ', 'MARTINIQUE', NULL, 140.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MARTINIQUE', [Definition] = NULL, [SortOrder] = 140.00 WHERE [Code] = 'MQ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MR') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MR', 'MAURITANIA', NULL, 141.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MAURITANIA', [Definition] = NULL, [SortOrder] = 141.00 WHERE [Code] = 'MR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MU') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MU', 'MAURITIUS', NULL, 142.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MAURITIUS', [Definition] = NULL, [SortOrder] = 142.00 WHERE [Code] = 'MU' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'YT') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YT', 'MAYOTTE', NULL, 143.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MAYOTTE', [Definition] = NULL, [SortOrder] = 143.00 WHERE [Code] = 'YT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MX') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MX', 'MEXICO', NULL, 144.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MEXICO', [Definition] = NULL, [SortOrder] = 144.00 WHERE [Code] = 'MX' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'FM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FM', 'MICRONESIA (FEDERATED STATES OF)', NULL, 145.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MICRONESIA (FEDERATED STATES OF)', [Definition] = NULL, [SortOrder] = 145.00 WHERE [Code] = 'FM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MD') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MD', 'MOLDOVA, REPUBLIC OF', NULL, 146.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MOLDOVA, REPUBLIC OF', [Definition] = NULL, [SortOrder] = 146.00 WHERE [Code] = 'MD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MC') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MC', 'MONACO', NULL, 147.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MONACO', [Definition] = NULL, [SortOrder] = 147.00 WHERE [Code] = 'MC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MN') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MN', 'MONGOLIA', NULL, 148.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MONGOLIA', [Definition] = NULL, [SortOrder] = 148.00 WHERE [Code] = 'MN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'ME') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ME', 'MONTENEGRO', NULL, 149.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MONTENEGRO', [Definition] = NULL, [SortOrder] = 149.00 WHERE [Code] = 'ME' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MS') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MS', 'MONTSERRAT', NULL, 150.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MONTSERRAT', [Definition] = NULL, [SortOrder] = 150.00 WHERE [Code] = 'MS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MA') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MA', 'MOROCCO', NULL, 151.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MOROCCO', [Definition] = NULL, [SortOrder] = 151.00 WHERE [Code] = 'MA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MZ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MZ', 'MOZAMBIQUE', NULL, 152.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MOZAMBIQUE', [Definition] = NULL, [SortOrder] = 152.00 WHERE [Code] = 'MZ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MM', 'MYANMAR', NULL, 153.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'MYANMAR', [Definition] = NULL, [SortOrder] = 153.00 WHERE [Code] = 'MM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'NAMIBIA', NULL, 154.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'NAMIBIA', [Definition] = NULL, [SortOrder] = 154.00 WHERE [Code] = 'NA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'NR') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NR', 'NAURU', NULL, 155.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'NAURU', [Definition] = NULL, [SortOrder] = 155.00 WHERE [Code] = 'NR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'NP') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NP', 'NEPAL', NULL, 156.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'NEPAL', [Definition] = NULL, [SortOrder] = 156.00 WHERE [Code] = 'NP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'NL') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NL', 'NETHERLANDS', NULL, 157.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'NETHERLANDS', [Definition] = NULL, [SortOrder] = 157.00 WHERE [Code] = 'NL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'NC') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NC', 'NEW CALEDONIA', NULL, 158.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'NEW CALEDONIA', [Definition] = NULL, [SortOrder] = 158.00 WHERE [Code] = 'NC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'NZ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NZ', 'NEW ZEALAND', NULL, 159.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'NEW ZEALAND', [Definition] = NULL, [SortOrder] = 159.00 WHERE [Code] = 'NZ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'NI') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NI', 'NICARAGUA', NULL, 160.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'NICARAGUA', [Definition] = NULL, [SortOrder] = 160.00 WHERE [Code] = 'NI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'NE') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NE', 'NIGER', NULL, 161.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'NIGER', [Definition] = NULL, [SortOrder] = 161.00 WHERE [Code] = 'NE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'NG') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NG', 'NIGERIA', NULL, 162.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'NIGERIA', [Definition] = NULL, [SortOrder] = 162.00 WHERE [Code] = 'NG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'NU') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NU', 'NIUE', NULL, 163.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'NIUE', [Definition] = NULL, [SortOrder] = 163.00 WHERE [Code] = 'NU' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'NF') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NF', 'NORFOLK ISLAND', NULL, 164.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'NORFOLK ISLAND', [Definition] = NULL, [SortOrder] = 164.00 WHERE [Code] = 'NF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MP') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MP', 'NORTHERN MARIANA ISLANDS', NULL, 165.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'NORTHERN MARIANA ISLANDS', [Definition] = NULL, [SortOrder] = 165.00 WHERE [Code] = 'MP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'NO') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NO', 'NORWAY', NULL, 166.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'NORWAY', [Definition] = NULL, [SortOrder] = 166.00 WHERE [Code] = 'NO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'OM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OM', 'OMAN', NULL, 167.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'OMAN', [Definition] = NULL, [SortOrder] = 167.00 WHERE [Code] = 'OM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'PK') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PK', 'PAKISTAN', NULL, 168.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'PAKISTAN', [Definition] = NULL, [SortOrder] = 168.00 WHERE [Code] = 'PK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'PW') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PW', 'PALAU', NULL, 169.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'PALAU', [Definition] = NULL, [SortOrder] = 169.00 WHERE [Code] = 'PW' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'PS') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PS', 'PALESTINE, STATE OF', NULL, 170.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'PALESTINE, STATE OF', [Definition] = NULL, [SortOrder] = 170.00 WHERE [Code] = 'PS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'PA') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PA', 'PANAMA', NULL, 171.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'PANAMA', [Definition] = NULL, [SortOrder] = 171.00 WHERE [Code] = 'PA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'PG') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PG', 'PAPUA NEW GUINEA', NULL, 172.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'PAPUA NEW GUINEA', [Definition] = NULL, [SortOrder] = 172.00 WHERE [Code] = 'PG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'PY') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PY', 'PARAGUAY', NULL, 173.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'PARAGUAY', [Definition] = NULL, [SortOrder] = 173.00 WHERE [Code] = 'PY' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'PE') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PE', 'PERU', NULL, 174.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'PERU', [Definition] = NULL, [SortOrder] = 174.00 WHERE [Code] = 'PE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'PH') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PH', 'PHILIPPINES', NULL, 175.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'PHILIPPINES', [Definition] = NULL, [SortOrder] = 175.00 WHERE [Code] = 'PH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'PN') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PN', 'PITCAIRN', NULL, 176.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'PITCAIRN', [Definition] = NULL, [SortOrder] = 176.00 WHERE [Code] = 'PN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'PL') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PL', 'POLAND', NULL, 177.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'POLAND', [Definition] = NULL, [SortOrder] = 177.00 WHERE [Code] = 'PL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'PT') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PT', 'PORTUGAL', NULL, 178.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'PORTUGAL', [Definition] = NULL, [SortOrder] = 178.00 WHERE [Code] = 'PT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'PR') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PR', 'PUERTO RICO', NULL, 179.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'PUERTO RICO', [Definition] = NULL, [SortOrder] = 179.00 WHERE [Code] = 'PR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'QA') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('QA', 'QATAR', NULL, 180.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'QATAR', [Definition] = NULL, [SortOrder] = 180.00 WHERE [Code] = 'QA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'RE') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RE', 'RÉUNION', NULL, 181.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'RÉUNION', [Definition] = NULL, [SortOrder] = 181.00 WHERE [Code] = 'RE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'RO') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RO', 'ROMANIA', NULL, 182.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ROMANIA', [Definition] = NULL, [SortOrder] = 182.00 WHERE [Code] = 'RO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'RU') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RU', 'RUSSIAN FEDERATION', NULL, 183.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'RUSSIAN FEDERATION', [Definition] = NULL, [SortOrder] = 183.00 WHERE [Code] = 'RU' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'RW') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RW', 'RWANDA', NULL, 184.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'RWANDA', [Definition] = NULL, [SortOrder] = 184.00 WHERE [Code] = 'RW' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'BL') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BL', 'SAINT BARTHÉLEMY', NULL, 185.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SAINT BARTHÉLEMY', [Definition] = NULL, [SortOrder] = 185.00 WHERE [Code] = 'BL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SH') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SH', 'SAINT HELENA, ASCENSION AND TRISTAN DA CUNHA', NULL, 186.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SAINT HELENA, ASCENSION AND TRISTAN DA CUNHA', [Definition] = NULL, [SortOrder] = 186.00 WHERE [Code] = 'SH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'KN') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KN', 'SAINT KITTS AND NEVIS', NULL, 187.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SAINT KITTS AND NEVIS', [Definition] = NULL, [SortOrder] = 187.00 WHERE [Code] = 'KN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'LC') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LC', 'SAINT LUCIA', NULL, 188.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SAINT LUCIA', [Definition] = NULL, [SortOrder] = 188.00 WHERE [Code] = 'LC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'MF') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MF', 'SAINT MARTIN (FRENCH PART)', NULL, 189.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SAINT MARTIN (FRENCH PART)', [Definition] = NULL, [SortOrder] = 189.00 WHERE [Code] = 'MF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'PM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PM', 'SAINT PIERRE AND MIQUELON', NULL, 190.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SAINT PIERRE AND MIQUELON', [Definition] = NULL, [SortOrder] = 190.00 WHERE [Code] = 'PM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'VC') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VC', 'SAINT VINCENT AND THE GRENADINES', NULL, 191.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SAINT VINCENT AND THE GRENADINES', [Definition] = NULL, [SortOrder] = 191.00 WHERE [Code] = 'VC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'WS') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WS', 'SAMOA', NULL, 192.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SAMOA', [Definition] = NULL, [SortOrder] = 192.00 WHERE [Code] = 'WS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SM', 'SAN MARINO', NULL, 193.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SAN MARINO', [Definition] = NULL, [SortOrder] = 193.00 WHERE [Code] = 'SM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'ST') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ST', 'SAO TOME AND PRINCIPE', NULL, 194.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SAO TOME AND PRINCIPE', [Definition] = NULL, [SortOrder] = 194.00 WHERE [Code] = 'ST' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SA') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SA', 'SAUDI ARABIA', NULL, 195.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SAUDI ARABIA', [Definition] = NULL, [SortOrder] = 195.00 WHERE [Code] = 'SA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SN') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SN', 'SENEGAL', NULL, 196.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SENEGAL', [Definition] = NULL, [SortOrder] = 196.00 WHERE [Code] = 'SN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'RS') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RS', 'SERBIA', NULL, 197.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SERBIA', [Definition] = NULL, [SortOrder] = 197.00 WHERE [Code] = 'RS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SC') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SC', 'SEYCHELLES', NULL, 198.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SEYCHELLES', [Definition] = NULL, [SortOrder] = 198.00 WHERE [Code] = 'SC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SL') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SL', 'SIERRA LEONE', NULL, 199.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SIERRA LEONE', [Definition] = NULL, [SortOrder] = 199.00 WHERE [Code] = 'SL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SG') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SG', 'SINGAPORE', NULL, 200.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SINGAPORE', [Definition] = NULL, [SortOrder] = 200.00 WHERE [Code] = 'SG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SX') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SX', 'SINT MAARTEN (DUTCH PART)', NULL, 201.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SINT MAARTEN (DUTCH PART)', [Definition] = NULL, [SortOrder] = 201.00 WHERE [Code] = 'SX' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SK') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SK', 'SLOVAKIA', NULL, 202.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SLOVAKIA', [Definition] = NULL, [SortOrder] = 202.00 WHERE [Code] = 'SK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SI') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SI', 'SLOVENIA', NULL, 203.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SLOVENIA', [Definition] = NULL, [SortOrder] = 203.00 WHERE [Code] = 'SI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SB') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SB', 'SOLOMON ISLANDS', NULL, 204.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SOLOMON ISLANDS', [Definition] = NULL, [SortOrder] = 204.00 WHERE [Code] = 'SB' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SO') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SO', 'SOMALIA', NULL, 205.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SOMALIA', [Definition] = NULL, [SortOrder] = 205.00 WHERE [Code] = 'SO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'ZA') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ZA', 'SOUTH AFRICA', NULL, 206.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SOUTH AFRICA', [Definition] = NULL, [SortOrder] = 206.00 WHERE [Code] = 'ZA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GS') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GS', 'SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS', NULL, 207.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS', [Definition] = NULL, [SortOrder] = 207.00 WHERE [Code] = 'GS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SS') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SS', 'SOUTH SUDAN', NULL, 208.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SOUTH SUDAN', [Definition] = NULL, [SortOrder] = 208.00 WHERE [Code] = 'SS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'ES') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ES', 'SPAIN', NULL, 209.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SPAIN', [Definition] = NULL, [SortOrder] = 209.00 WHERE [Code] = 'ES' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'LK') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LK', 'SRI LANKA', NULL, 210.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SRI LANKA', [Definition] = NULL, [SortOrder] = 210.00 WHERE [Code] = 'LK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SD') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SD', 'SUDAN', NULL, 211.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SUDAN', [Definition] = NULL, [SortOrder] = 211.00 WHERE [Code] = 'SD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SR') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SR', 'SURINAME', NULL, 212.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SURINAME', [Definition] = NULL, [SortOrder] = 212.00 WHERE [Code] = 'SR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SJ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SJ', 'SVALBARD AND JAN MAYEN', NULL, 213.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SVALBARD AND JAN MAYEN', [Definition] = NULL, [SortOrder] = 213.00 WHERE [Code] = 'SJ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SZ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SZ', 'ESWATINI', NULL, 214.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ESWATINI', [Definition] = NULL, [SortOrder] = 214.00 WHERE [Code] = 'SZ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SE') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SE', 'SWEDEN', NULL, 215.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SWEDEN', [Definition] = NULL, [SortOrder] = 215.00 WHERE [Code] = 'SE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'CH') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CH', 'SWITZERLAND', NULL, 216.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SWITZERLAND', [Definition] = NULL, [SortOrder] = 216.00 WHERE [Code] = 'CH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'SY') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SY', 'SYRIAN ARAB REPUBLIC', NULL, 217.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'SYRIAN ARAB REPUBLIC', [Definition] = NULL, [SortOrder] = 217.00 WHERE [Code] = 'SY' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TW') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TW', 'TAIWAN', NULL, 218.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'TAIWAN', [Definition] = NULL, [SortOrder] = 218.00 WHERE [Code] = 'TW' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TJ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TJ', 'TAJIKISTAN', NULL, 219.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'TAJIKISTAN', [Definition] = NULL, [SortOrder] = 219.00 WHERE [Code] = 'TJ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TZ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TZ', 'TANZANIA, UNITED REPUBLIC OF', NULL, 220.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'TANZANIA, UNITED REPUBLIC OF', [Definition] = NULL, [SortOrder] = 220.00 WHERE [Code] = 'TZ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TH') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TH', 'THAILAND', NULL, 221.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'THAILAND', [Definition] = NULL, [SortOrder] = 221.00 WHERE [Code] = 'TH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TL') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TL', 'TIMOR-LESTE', NULL, 222.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'TIMOR-LESTE', [Definition] = NULL, [SortOrder] = 222.00 WHERE [Code] = 'TL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TG') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TG', 'TOGO', NULL, 223.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'TOGO', [Definition] = NULL, [SortOrder] = 223.00 WHERE [Code] = 'TG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TK') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TK', 'TOKELAU', NULL, 224.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'TOKELAU', [Definition] = NULL, [SortOrder] = 224.00 WHERE [Code] = 'TK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TO') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TO', 'TONGA', NULL, 225.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'TONGA', [Definition] = NULL, [SortOrder] = 225.00 WHERE [Code] = 'TO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TT') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TT', 'TRINIDAD AND TOBAGO', NULL, 226.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'TRINIDAD AND TOBAGO', [Definition] = NULL, [SortOrder] = 226.00 WHERE [Code] = 'TT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TN') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TN', 'TUNISIA', NULL, 227.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'TUNISIA', [Definition] = NULL, [SortOrder] = 227.00 WHERE [Code] = 'TN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TR') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TR', 'TURKEY', NULL, 228.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'TURKEY', [Definition] = NULL, [SortOrder] = 228.00 WHERE [Code] = 'TR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TM', 'TURKMENISTAN', NULL, 229.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'TURKMENISTAN', [Definition] = NULL, [SortOrder] = 229.00 WHERE [Code] = 'TM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TC') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TC', 'TURKS AND CAICOS ISLANDS', NULL, 230.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'TURKS AND CAICOS ISLANDS', [Definition] = NULL, [SortOrder] = 230.00 WHERE [Code] = 'TC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'TV') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TV', 'TUVALU', NULL, 231.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'TUVALU', [Definition] = NULL, [SortOrder] = 231.00 WHERE [Code] = 'TV' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'UG') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UG', 'UGANDA', NULL, 232.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'UGANDA', [Definition] = NULL, [SortOrder] = 232.00 WHERE [Code] = 'UG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'UA') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UA', 'UKRAINE', NULL, 233.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'UKRAINE', [Definition] = NULL, [SortOrder] = 233.00 WHERE [Code] = 'UA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'AE') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AE', 'UNITED ARAB EMIRATES', NULL, 234.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'UNITED ARAB EMIRATES', [Definition] = NULL, [SortOrder] = 234.00 WHERE [Code] = 'AE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'GB') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GB', 'UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND', NULL, 235.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND', [Definition] = NULL, [SortOrder] = 235.00 WHERE [Code] = 'GB' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'US') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('US', 'UNITED STATES OF AMERICA', NULL, 236.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'UNITED STATES OF AMERICA', [Definition] = NULL, [SortOrder] = 236.00 WHERE [Code] = 'US' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'UM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UM', 'UNITED STATES MINOR OUTLYING ISLANDS', NULL, 237.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'UNITED STATES MINOR OUTLYING ISLANDS', [Definition] = NULL, [SortOrder] = 237.00 WHERE [Code] = 'UM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'UY') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UY', 'URUGUAY', NULL, 238.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'URUGUAY', [Definition] = NULL, [SortOrder] = 238.00 WHERE [Code] = 'UY' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'UZ') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UZ', 'UZBEKISTAN', NULL, 239.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'UZBEKISTAN', [Definition] = NULL, [SortOrder] = 239.00 WHERE [Code] = 'UZ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'VU') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VU', 'VANUATU', NULL, 240.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'VANUATU', [Definition] = NULL, [SortOrder] = 240.00 WHERE [Code] = 'VU' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'VE') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VE', 'VENEZUELA (BOLIVARIAN REPUBLIC OF)', NULL, 241.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'VENEZUELA (BOLIVARIAN REPUBLIC OF)', [Definition] = NULL, [SortOrder] = 241.00 WHERE [Code] = 'VE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'VN') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VN', 'VIET NAM', NULL, 242.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'VIET NAM', [Definition] = NULL, [SortOrder] = 242.00 WHERE [Code] = 'VN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'VG') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VG', 'VIRGIN ISLANDS (BRITISH)', NULL, 243.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'VIRGIN ISLANDS (BRITISH)', [Definition] = NULL, [SortOrder] = 243.00 WHERE [Code] = 'VG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'VI') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VI', 'VIRGIN ISLANDS (U.S.)', NULL, 244.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'VIRGIN ISLANDS (U.S.)', [Definition] = NULL, [SortOrder] = 244.00 WHERE [Code] = 'VI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'WF') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WF', 'WALLIS AND FUTUNA', NULL, 245.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'WALLIS AND FUTUNA', [Definition] = NULL, [SortOrder] = 245.00 WHERE [Code] = 'WF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'EH') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EH', 'WESTERN SAHARA', NULL, 246.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'WESTERN SAHARA', [Definition] = NULL, [SortOrder] = 246.00 WHERE [Code] = 'EH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'YE') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YE', 'YEMEN', NULL, 247.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'YEMEN', [Definition] = NULL, [SortOrder] = 247.00 WHERE [Code] = 'YE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'ZM') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ZM', 'ZAMBIA', NULL, 248.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ZAMBIA', [Definition] = NULL, [SortOrder] = 248.00 WHERE [Code] = 'ZM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCountry] WHERE [Code] = 'ZW') BEGIN INSERT INTO dbo.[RefCountry]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ZW', 'ZIMBABWE', NULL, 249.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCountry] -SET [Description] = 'ZIMBABWE', [Definition] = NULL, [SortOrder] = 249.00 WHERE [Code] = 'ZW' END -END - -PRINT N'Populate RefCourseAcademicGradeStatusCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseAcademicGradeStatusCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'AuditedCourse') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AuditedCourse', 'Audited or visited the course', 'Audited or visited the course is specified as additional information regarding the context of the given grade.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'Audited or visited the course', [Definition] = 'Audited or visited the course is specified as additional information regarding the context of the given grade.', [SortOrder] = 1.00 WHERE [Code] = 'AuditedCourse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'HonorsGrade') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HonorsGrade', 'Honors grade', 'Honors grade is specified as additional information regarding the context of the given grade.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'Honors grade', [Definition] = 'Honors grade is specified as additional information regarding the context of the given grade.', [SortOrder] = 3.00 WHERE [Code] = 'HonorsGrade' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'Incomplete') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Incomplete', 'Incomplete', 'Incomplete is specified as additional information regarding the context of the given grade.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'Incomplete', [Definition] = 'Incomplete is specified as additional information regarding the context of the given grade.', [SortOrder] = 5.00 WHERE [Code] = 'Incomplete' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'IncompleteNotResolvedFail') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IncompleteNotResolvedFail', 'Incomplete Not Resolved Fail', 'Failing/no pass/unsatisfactory grade awarded because incomplete not resolved satisfactorily is specified as additional information regarding the context of the given grade.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'Incomplete Not Resolved Fail', [Definition] = 'Failing/no pass/unsatisfactory grade awarded because incomplete not resolved satisfactorily is specified as additional information regarding the context of the given grade.', [SortOrder] = 7.00 WHERE [Code] = 'IncompleteNotResolvedFail' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'InProgress') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InProgress', 'In Progress', 'Current enrollment course in progress, permanent grade not yet assigned is specified as additional information regarding the context of the given grade.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'In Progress', [Definition] = 'Current enrollment course in progress, permanent grade not yet assigned is specified as additional information regarding the context of the given grade.', [SortOrder] = 9.00 WHERE [Code] = 'InProgress' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'NotYetReported') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotYetReported', 'Not Yet Reported', 'No grade reported yet by instructor (although the course has ended) is specified as additional information regarding the context of the given grade.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'Not Yet Reported', [Definition] = 'No grade reported yet by instructor (although the course has ended) is specified as additional information regarding the context of the given grade.', [SortOrder] = 11.00 WHERE [Code] = 'NotYetReported' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'OtherFail') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherFail', 'Other Fail', 'Other not passing/unsatisfactory grade not described by other options is specified as additional information regarding the context of the given grade.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'Other Fail', [Definition] = 'Other not passing/unsatisfactory grade not described by other options is specified as additional information regarding the context of the given grade.', [SortOrder] = 13.00 WHERE [Code] = 'OtherFail' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'OtherPass') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherPass', 'Other Pass', 'Other passing/satisfactory grade not described by other options is specified as additional information regarding the context of the given grade.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'Other Pass', [Definition] = 'Other passing/satisfactory grade not described by other options is specified as additional information regarding the context of the given grade.', [SortOrder] = 15.00 WHERE [Code] = 'OtherPass' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'PassFailFail') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PassFailFail', 'Pass-Fail : Fail', 'Failing grade in a course (credit or non-credit) which is normally, or based on student option, given a pass/fail or satisfactory/unsatisfactory designation is specified as additional information regarding the context of the given grade.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'Pass-Fail : Fail', [Definition] = 'Failing grade in a course (credit or non-credit) which is normally, or based on student option, given a pass/fail or satisfactory/unsatisfactory designation is specified as additional information regarding the context of the given grade.', [SortOrder] = 17.00 WHERE [Code] = 'PassFailFail' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'PassFailPass') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PassFailPass', 'Pass-Fail : Pass', 'Passing grade in a course (credit or non-credit) which is normally, or based on student option, given a pass/fail or satisfactory/unsatisfactory designation is specified as additional information regarding the context of the given grade.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'Pass-Fail : Pass', [Definition] = 'Passing grade in a course (credit or non-credit) which is normally, or based on student option, given a pass/fail or satisfactory/unsatisfactory designation is specified as additional information regarding the context of the given grade.', [SortOrder] = 19.00 WHERE [Code] = 'PassFailPass' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'TransferNoGrade') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TransferNoGrade', 'Transfer No Grade', 'Transfer credit; grade not carried on receiving institution''s transcript is specified as additional information regarding the context of the given grade.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'Transfer No Grade', [Definition] = 'Transfer credit; grade not carried on receiving institution''s transcript is specified as additional information regarding the context of the given grade.', [SortOrder] = 21.00 WHERE [Code] = 'TransferNoGrade' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'Withdrew') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Withdrew', 'Withdrew', 'Withdrew is specified as additional information regarding the context of the given grade.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'Withdrew', [Definition] = 'Withdrew is specified as additional information regarding the context of the given grade.', [SortOrder] = 23.00 WHERE [Code] = 'Withdrew' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'WithdrewFailing') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WithdrewFailing', 'Withdrew failing', 'Withdrew failing is specified as additional information regarding the context of the given grade.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'Withdrew failing', [Definition] = 'Withdrew failing is specified as additional information regarding the context of the given grade.', [SortOrder] = 25.00 WHERE [Code] = 'WithdrewFailing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'WithdrewNoPenalty') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WithdrewNoPenalty', 'Withdrew No Penalty', 'Withdrew without penalty or pass/fail designation is specified as additional information regarding the context of the given grade.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'Withdrew No Penalty', [Definition] = 'Withdrew without penalty or pass/fail designation is specified as additional information regarding the context of the given grade.', [SortOrder] = 27.00 WHERE [Code] = 'WithdrewNoPenalty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseAcademicGradeStatusCode] WHERE [Code] = 'WithdrewPassing') BEGIN INSERT INTO dbo.[RefCourseAcademicGradeStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WithdrewPassing', 'Withdrew passing', 'Withdrew passing is specified as additional information regarding the context of the given grade.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseAcademicGradeStatusCode] -SET [Description] = 'Withdrew passing', [Definition] = 'Withdrew passing is specified as additional information regarding the context of the given grade.', [SortOrder] = 29.00 WHERE [Code] = 'WithdrewPassing' END -END - -PRINT N'Populate RefCourseApplicableEducationLevel table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseApplicableEducationLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'IT') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IT', 'Infant/toddler', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Infant/toddler', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'IT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'PR') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PR', 'Preschool', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Preschool', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'PR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'PK') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PK', 'Prekindergarten', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Prekindergarten', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'PK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'TK') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TK', 'Transitional Kindergarten', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Transitional Kindergarten', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'TK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'KG') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KG', 'Kindergarten', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Kindergarten', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = 'KG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'First grade', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'First grade', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Second grade', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Second grade', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Third grade', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Third grade', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Fourth grade', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Fourth grade', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Fifth grade', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Fifth grade', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Sixth grade', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Sixth grade', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Seventh grade', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Seventh grade', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Eighth grade', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Eighth grade', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Ninth grade', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Ninth grade', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Tenth grade', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Tenth grade', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Eleventh grade', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Eleventh grade', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Twelfth grade', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Twelfth grade', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = '13') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13', 'Grade 13', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Grade 13', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'AS') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AS', 'Associate''s degree', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Associate''s degree', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = 'AS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'BA') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BA', 'Bachelor''s degree', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Bachelor''s degree', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = 'BA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'PB') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PB', 'Post-baccalaureate certificate', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Post-baccalaureate certificate', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = 'PB' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'MD') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MD', 'Master''s degree', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Master''s degree', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = 'MD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'PM') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PM', 'Post-master''s certificate', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Post-master''s certificate', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = 'PM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'DO') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DO', 'Doctoral degree', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Doctoral degree', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = 'DO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'PD') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PD', 'Post-doctoral certificate', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Post-doctoral certificate', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = 'PD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'AE') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AE', 'Adult Education', NULL, 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Adult Education', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = 'AE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'PT') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PT', 'Professional or technical credential', NULL, 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Professional or technical credential', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = 'PT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseApplicableEducationLevel] WHERE [Code] = 'OT') BEGIN INSERT INTO dbo.[RefCourseApplicableEducationLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OT', 'Other', NULL, 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseApplicableEducationLevel] -SET [Description] = 'Other', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = 'OT' END -END - -PRINT N'Populate RefCourseCreditBasisType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseCreditBasisType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'Regular') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Regular', 'Regular/general enrollment', 'Regular/general enrollment is specified as the type of enrollment associated with the credit hours for the course.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Regular/general enrollment', [Definition] = 'Regular/general enrollment is specified as the type of enrollment associated with the credit hours for the course.', [SortOrder] = 2.00 WHERE [Code] = 'Regular' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'Major') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Major', 'Credit associated with the student''s major', 'Credit associated with the student''s major is specified as the type of enrollment associated with the credit hours for the course.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Credit associated with the student''s major', [Definition] = 'Credit associated with the student''s major is specified as the type of enrollment associated with the credit hours for the course.', [SortOrder] = 4.00 WHERE [Code] = 'Major' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'AcademicRenewal') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AcademicRenewal', 'Academic Renewal', 'Academic Renewal is specified as the type of enrollment associated with the credit hours for the course.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Academic Renewal', [Definition] = 'Academic Renewal is specified as the type of enrollment associated with the credit hours for the course.', [SortOrder] = 6.00 WHERE [Code] = 'AcademicRenewal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'AdultBasic') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdultBasic', 'Adult Basic', 'Adult Basic is specified as the type of enrollment associated with the credit hours for the course.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Adult Basic', [Definition] = 'Adult Basic is specified as the type of enrollment associated with the credit hours for the course.', [SortOrder] = 8.00 WHERE [Code] = 'AdultBasic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'AdvancedPlacement') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdvancedPlacement', 'Advanced Placement', 'Advanced Placement is specified as the type of enrollment associated with the credit hours for the course.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Advanced Placement', [Definition] = 'Advanced Placement is specified as the type of enrollment associated with the credit hours for the course.', [SortOrder] = 10.00 WHERE [Code] = 'AdvancedPlacement' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'AdvancedStanding') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdvancedStanding', 'Advanced Standing', 'Advanced Standing is specified as the type of enrollment associated with the credit hours for the course.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Advanced Standing', [Definition] = 'Advanced Standing is specified as the type of enrollment associated with the credit hours for the course.', [SortOrder] = 12.00 WHERE [Code] = 'AdvancedStanding' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'Correspondence') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Correspondence', 'Correspondence', 'Correspondence is specified as the type of enrollment associated with the credit hours for the course.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Correspondence', [Definition] = 'Correspondence is specified as the type of enrollment associated with the credit hours for the course.', [SortOrder] = 14.00 WHERE [Code] = 'Correspondence' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'ContinuingEducation') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ContinuingEducation', 'Continuing Education', 'Continuing Education is specified as the type of enrollment associated with the credit hours for the course.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Continuing Education', [Definition] = 'Continuing Education is specified as the type of enrollment associated with the credit hours for the course.', [SortOrder] = 16.00 WHERE [Code] = 'ContinuingEducation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'Exemption') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Exemption', 'Exemption', 'Exemption is specified as the type of enrollment associated with the credit hours for the course.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Exemption', [Definition] = 'Exemption is specified as the type of enrollment associated with the credit hours for the course.', [SortOrder] = 18.00 WHERE [Code] = 'Exemption' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'Equivalence') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Equivalence', 'Equivalence', 'Equivalence is specified as the type of enrollment associated with the credit hours for the course.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Equivalence', [Definition] = 'Equivalence is specified as the type of enrollment associated with the credit hours for the course.', [SortOrder] = 20.00 WHERE [Code] = 'Equivalence' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'InternationalBaccalaureate') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InternationalBaccalaureate', 'International Baccalaureate', 'International Baccalaureate is specified as the type of enrollment associated with the credit hours for the course.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'International Baccalaureate', [Definition] = 'International Baccalaureate is specified as the type of enrollment associated with the credit hours for the course.', [SortOrder] = 22.00 WHERE [Code] = 'InternationalBaccalaureate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'Military') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Military', 'Military', 'Military is specified as the type of enrollment associated with the credit hours for the course.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Military', [Definition] = 'Military is specified as the type of enrollment associated with the credit hours for the course.', [SortOrder] = 24.00 WHERE [Code] = 'Military' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'Remedial') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Remedial', 'Remedial/developmental', 'Remedial/developmental is specified as the type of enrollment associated with the credit hours for the course.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Remedial/developmental', [Definition] = 'Remedial/developmental is specified as the type of enrollment associated with the credit hours for the course.', [SortOrder] = 26.00 WHERE [Code] = 'Remedial' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'CreditByExam') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CreditByExam', 'Credit granted from successful score on a standardized test of comprehension or proficiency.', 'Credit granted for the course based on successful score on a standardized test of comprehension or proficiency.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Credit granted from successful score on a standardized test of comprehension or proficiency.', [Definition] = 'Credit granted for the course based on successful score on a standardized test of comprehension or proficiency.', [SortOrder] = 28.00 WHERE [Code] = 'CreditByExam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'HighSchoolTransferCredit') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HighSchoolTransferCredit', 'Credit from a high school course is transferred to the college.', 'Credit granted for a course from a high school course is transferred to the college.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Credit from a high school course is transferred to the college.', [Definition] = 'Credit granted for a course from a high school course is transferred to the college.', [SortOrder] = 30.00 WHERE [Code] = 'HighSchoolTransferCredit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'HighSchoolCreditOnly') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HighSchoolCreditOnly', 'Credit from a college course is transferred back to high school and not counted by the college.', 'Credit granted for a course from a college course is transferred back to high school and not counted by the college.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Credit from a college course is transferred back to high school and not counted by the college.', [Definition] = 'Credit granted for a course from a college course is transferred back to high school and not counted by the college.', [SortOrder] = 32.00 WHERE [Code] = 'HighSchoolCreditOnly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'HighSchoolDualCredit') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HighSchoolDualCredit', 'Credit from a college course is counted at both the college and high school.', 'Credit for a course from a college course is counted at both the college and high school.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Credit from a college course is counted at both the college and high school.', [Definition] = 'Credit for a course from a college course is counted at both the college and high school.', [SortOrder] = 34.00 WHERE [Code] = 'HighSchoolDualCredit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditBasisType] WHERE [Code] = 'JuniorHighSchoolCredit') BEGIN INSERT INTO dbo.[RefCourseCreditBasisType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JuniorHighSchoolCredit', 'Credit from a junior high school course is counted at the high school.', 'Credit for a course from a junior high school course counted at the high school.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditBasisType] -SET [Description] = 'Credit from a junior high school course is counted at the high school.', [Definition] = 'Credit for a course from a junior high school course counted at the high school.', [SortOrder] = 36.00 WHERE [Code] = 'JuniorHighSchoolCredit' END -END - -PRINT N'Populate RefCourseCreditLevelType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseCreditLevelType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditLevelType] WHERE [Code] = 'Undergraduate') BEGIN INSERT INTO dbo.[RefCourseCreditLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Undergraduate', 'Undergraduate', 'Undergraduate is specified as the level of credit associated with the credit hours earned for the course.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditLevelType] -SET [Description] = 'Undergraduate', [Definition] = 'Undergraduate is specified as the level of credit associated with the credit hours earned for the course.', [SortOrder] = 2.00 WHERE [Code] = 'Undergraduate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditLevelType] WHERE [Code] = 'Ungraded') BEGIN INSERT INTO dbo.[RefCourseCreditLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Ungraded', 'Ungraded', 'Ungraded is specified as the level of credit associated with the credit hours earned for the course.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditLevelType] -SET [Description] = 'Ungraded', [Definition] = 'Ungraded is specified as the level of credit associated with the credit hours earned for the course.', [SortOrder] = 4.00 WHERE [Code] = 'Ungraded' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditLevelType] WHERE [Code] = 'LowerDivision') BEGIN INSERT INTO dbo.[RefCourseCreditLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LowerDivision', 'Lower division credit (associated with first/second year)', 'Lower division credit (associated with first/second year) is specified as the level of credit associated with the credit hours earned for the course.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditLevelType] -SET [Description] = 'Lower division credit (associated with first/second year)', [Definition] = 'Lower division credit (associated with first/second year) is specified as the level of credit associated with the credit hours earned for the course.', [SortOrder] = 6.00 WHERE [Code] = 'LowerDivision' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditLevelType] WHERE [Code] = 'UpperDivision') BEGIN INSERT INTO dbo.[RefCourseCreditLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UpperDivision', 'Higher or upper division credit (associated with third or fourth year)', 'Higher or upper division credit (associated with third or fourth year) is specified as the level of credit associated with the credit hours earned for the course.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditLevelType] -SET [Description] = 'Higher or upper division credit (associated with third or fourth year)', [Definition] = 'Higher or upper division credit (associated with third or fourth year) is specified as the level of credit associated with the credit hours earned for the course.', [SortOrder] = 8.00 WHERE [Code] = 'UpperDivision' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditLevelType] WHERE [Code] = 'Vocational') BEGIN INSERT INTO dbo.[RefCourseCreditLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Vocational', 'Vocational/technical credit', 'Vocational/technical credit is specified as the level of credit associated with the credit hours earned for the course.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditLevelType] -SET [Description] = 'Vocational/technical credit', [Definition] = 'Vocational/technical credit is specified as the level of credit associated with the credit hours earned for the course.', [SortOrder] = 10.00 WHERE [Code] = 'Vocational' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditLevelType] WHERE [Code] = 'TechnicalPreparatory') BEGIN INSERT INTO dbo.[RefCourseCreditLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TechnicalPreparatory', 'Technical preparatory credit', 'Technical preparatory credit is specified as the level of credit associated with the credit hours earned for the course.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditLevelType] -SET [Description] = 'Technical preparatory credit', [Definition] = 'Technical preparatory credit is specified as the level of credit associated with the credit hours earned for the course.', [SortOrder] = 12.00 WHERE [Code] = 'TechnicalPreparatory' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditLevelType] WHERE [Code] = 'Graduate') BEGIN INSERT INTO dbo.[RefCourseCreditLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Graduate', 'Graduate level credit', 'Graduate level credit is specified as the level of credit associated with the credit hours earned for the course.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditLevelType] -SET [Description] = 'Graduate level credit', [Definition] = 'Graduate level credit is specified as the level of credit associated with the credit hours earned for the course.', [SortOrder] = 14.00 WHERE [Code] = 'Graduate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditLevelType] WHERE [Code] = 'Professional') BEGIN INSERT INTO dbo.[RefCourseCreditLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Professional', 'Professional', 'Professional is specified as the level of credit associated with the credit hours earned for the course.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditLevelType] -SET [Description] = 'Professional', [Definition] = 'Professional is specified as the level of credit associated with the credit hours earned for the course.', [SortOrder] = 16.00 WHERE [Code] = 'Professional' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditLevelType] WHERE [Code] = 'Dual') BEGIN INSERT INTO dbo.[RefCourseCreditLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Dual', 'Dual Level', 'Dual level (upper division and graduate- may be applicable to a bachelor''s degree or graduate degree or both) is specified as the level of credit associated with the credit hours earned for the course.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditLevelType] -SET [Description] = 'Dual Level', [Definition] = 'Dual level (upper division and graduate- may be applicable to a bachelor''s degree or graduate degree or both) is specified as the level of credit associated with the credit hours earned for the course.', [SortOrder] = 18.00 WHERE [Code] = 'Dual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditLevelType] WHERE [Code] = 'GraduateProfessional') BEGIN INSERT INTO dbo.[RefCourseCreditLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GraduateProfessional', 'Graduate Professional', 'Dual level (graduate and professional- may be applicable to both) is specified as the level of credit associated with the credit hours earned for the course.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditLevelType] -SET [Description] = 'Graduate Professional', [Definition] = 'Dual level (graduate and professional- may be applicable to both) is specified as the level of credit associated with the credit hours earned for the course.', [SortOrder] = 20.00 WHERE [Code] = 'GraduateProfessional' END -END - -PRINT N'Populate RefCourseCreditUnit table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseCreditUnit]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditUnit] WHERE [Code] = 'NoCredit') BEGIN INSERT INTO dbo.[RefCourseCreditUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoCredit', 'No Credit', 'No Credit is specified as the type of credit associated with the credit hours earned for the course.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditUnit] -SET [Description] = 'No Credit', [Definition] = 'No Credit is specified as the type of credit associated with the credit hours earned for the course.', [SortOrder] = 1.00 WHERE [Code] = 'NoCredit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditUnit] WHERE [Code] = 'Quarter') BEGIN INSERT INTO dbo.[RefCourseCreditUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Quarter', 'Quarter ', 'Quarter is specified as the type of credit associated with the credit hours earned for the course.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditUnit] -SET [Description] = 'Quarter ', [Definition] = 'Quarter is specified as the type of credit associated with the credit hours earned for the course.', [SortOrder] = 2.00 WHERE [Code] = 'Quarter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditUnit] WHERE [Code] = 'Semester') BEGIN INSERT INTO dbo.[RefCourseCreditUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Semester', 'Semester ', 'Semester is specified as the type of credit associated with the credit hours earned for the course.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditUnit] -SET [Description] = 'Semester ', [Definition] = 'Semester is specified as the type of credit associated with the credit hours earned for the course.', [SortOrder] = 3.00 WHERE [Code] = 'Semester' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditUnit] WHERE [Code] = 'Units') BEGIN INSERT INTO dbo.[RefCourseCreditUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Units', 'Units ', 'Units is specified as the type of credit associated with the credit hours earned for the course.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditUnit] -SET [Description] = 'Units ', [Definition] = 'Units is specified as the type of credit associated with the credit hours earned for the course.', [SortOrder] = 4.00 WHERE [Code] = 'Units' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditUnit] WHERE [Code] = 'CarnegieUnits') BEGIN INSERT INTO dbo.[RefCourseCreditUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CarnegieUnits', 'Carnegie Units ', 'Carnegie Units is specified as the type of credit associated with the credit hours earned for the course.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditUnit] -SET [Description] = 'Carnegie Units ', [Definition] = 'Carnegie Units is specified as the type of credit associated with the credit hours earned for the course.', [SortOrder] = 5.00 WHERE [Code] = 'CarnegieUnits' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditUnit] WHERE [Code] = 'ContinuingEducationUnits') BEGIN INSERT INTO dbo.[RefCourseCreditUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ContinuingEducationUnits', 'Continuing Education Units ', 'Continuing Education Units is specified as the type of credit associated with the credit hours earned for the course.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditUnit] -SET [Description] = 'Continuing Education Units ', [Definition] = 'Continuing Education Units is specified as the type of credit associated with the credit hours earned for the course.', [SortOrder] = 6.00 WHERE [Code] = 'ContinuingEducationUnits' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditUnit] WHERE [Code] = 'ClockHours') BEGIN INSERT INTO dbo.[RefCourseCreditUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ClockHours', 'Clock Hours ', 'Clock Hours is specified as the type of credit associated with the credit hours earned for the course.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditUnit] -SET [Description] = 'Clock Hours ', [Definition] = 'Clock Hours is specified as the type of credit associated with the credit hours earned for the course.', [SortOrder] = 7.00 WHERE [Code] = 'ClockHours' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditUnit] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefCourseCreditUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is specified as the type of credit associated with the credit hours earned for the course.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditUnit] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of credit associated with the credit hours earned for the course.', [SortOrder] = 8.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseCreditUnit] WHERE [Code] = 'Unreported') BEGIN INSERT INTO dbo.[RefCourseCreditUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unreported', 'Unreported', 'Unreported is specified as the type of credit associated with the credit hours earned for the course.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseCreditUnit] -SET [Description] = 'Unreported', [Definition] = 'Unreported is specified as the type of credit associated with the credit hours earned for the course.', [SortOrder] = 9.00 WHERE [Code] = 'Unreported' END -END - -PRINT N'Populate RefCourseGpaApplicability table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseGpaApplicability]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseGpaApplicability] WHERE [Code] = 'Applicable') BEGIN INSERT INTO dbo.[RefCourseGpaApplicability]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Applicable', 'Applicable in GPA', 'The course being described is included in the computation of the student’s Grade Point Average (GPA).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseGpaApplicability] -SET [Description] = 'Applicable in GPA', [Definition] = 'The course being described is included in the computation of the student’s Grade Point Average (GPA).', [SortOrder] = 1.00 WHERE [Code] = 'Applicable' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseGpaApplicability] WHERE [Code] = 'NotApplicable') BEGIN INSERT INTO dbo.[RefCourseGpaApplicability]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotApplicable', 'Not Applicable in GPA', 'The course being described is not included in the computation of the student’s Grade Point Average (GPA).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseGpaApplicability] -SET [Description] = 'Not Applicable in GPA', [Definition] = 'The course being described is not included in the computation of the student’s Grade Point Average (GPA).', [SortOrder] = 2.00 WHERE [Code] = 'NotApplicable' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseGpaApplicability] WHERE [Code] = 'Weighted') BEGIN INSERT INTO dbo.[RefCourseGpaApplicability]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Weighted', 'Weighted in GPA', 'The course being described is weighted in the computation of the student’s Grade Point Average (GPA)', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseGpaApplicability] -SET [Description] = 'Weighted in GPA', [Definition] = 'The course being described is weighted in the computation of the student’s Grade Point Average (GPA)', [SortOrder] = 3.00 WHERE [Code] = 'Weighted' END -END - -PRINT N'Populate RefCourseHonorsType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseHonorsType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseHonorsType] WHERE [Code] = 'Honors') BEGIN INSERT INTO dbo.[RefCourseHonorsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Honors', 'Honors', 'The course is counted as an honors course.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseHonorsType] -SET [Description] = 'Honors', [Definition] = 'The course is counted as an honors course.', [SortOrder] = 1.00 WHERE [Code] = 'Honors' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseHonorsType] WHERE [Code] = 'HonorsOption') BEGIN INSERT INTO dbo.[RefCourseHonorsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HonorsOption', 'Honors option', 'The course can be counted as an honors course.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseHonorsType] -SET [Description] = 'Honors option', [Definition] = 'The course can be counted as an honors course.', [SortOrder] = 2.00 WHERE [Code] = 'HonorsOption' END -END - -PRINT N'Populate RefCourseInstructionMethod table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseInstructionMethod]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'Lecture') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Lecture', 'Lecture', 'Lecture is the primary method of instruction used for the course.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Lecture', [Definition] = 'Lecture is the primary method of instruction used for the course.', [SortOrder] = 2.00 WHERE [Code] = 'Lecture' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'Laboratory') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Laboratory', 'Laboratory', 'Laboratory is the primary method of instruction used for the course.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Laboratory', [Definition] = 'Laboratory is the primary method of instruction used for the course.', [SortOrder] = 4.00 WHERE [Code] = 'Laboratory' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'Seminar') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Seminar', 'Seminar', 'Seminar is the primary method of instruction used for the course.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Seminar', [Definition] = 'Seminar is the primary method of instruction used for the course.', [SortOrder] = 6.00 WHERE [Code] = 'Seminar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'IndependentStudy') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IndependentStudy', 'Independent Study', 'Independent Study is the primary method of instruction used for the course.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Independent Study', [Definition] = 'Independent Study is the primary method of instruction used for the course.', [SortOrder] = 8.00 WHERE [Code] = 'IndependentStudy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'PrivateStudy') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrivateStudy', 'Private Study', 'Private Study is the primary method of instruction used for the course.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Private Study', [Definition] = 'Private Study is the primary method of instruction used for the course.', [SortOrder] = 10.00 WHERE [Code] = 'PrivateStudy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'PracticeTeaching') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PracticeTeaching', 'Practice Teaching', 'Practice Teaching is the primary method of instruction used for the course.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Practice Teaching', [Definition] = 'Practice Teaching is the primary method of instruction used for the course.', [SortOrder] = 12.00 WHERE [Code] = 'PracticeTeaching' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'Internship') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Internship', 'Internship', 'Internship is the primary method of instruction used for the course.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Internship', [Definition] = 'Internship is the primary method of instruction used for the course.', [SortOrder] = 14.00 WHERE [Code] = 'Internship' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'Practicum') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Practicum', 'Practicum', 'Practicum is the primary method of instruction used for the course.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Practicum', [Definition] = 'Practicum is the primary method of instruction used for the course.', [SortOrder] = 16.00 WHERE [Code] = 'Practicum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'ApprenticeshipExternship') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ApprenticeshipExternship', 'Apprenticeship Externship', 'Apprenticeship Externship is the primary method of instruction used for the course.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Apprenticeship Externship', [Definition] = 'Apprenticeship Externship is the primary method of instruction used for the course.', [SortOrder] = 18.00 WHERE [Code] = 'ApprenticeshipExternship' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'AppliedInstruction') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AppliedInstruction', 'Applied Instruction', 'Applied Instruction is the primary method of instruction used for the course.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Applied Instruction', [Definition] = 'Applied Instruction is the primary method of instruction used for the course.', [SortOrder] = 20.00 WHERE [Code] = 'AppliedInstruction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'Residency') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Residency', 'Residency', 'Residency is the primary method of instruction used for the course.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Residency', [Definition] = 'Residency is the primary method of instruction used for the course.', [SortOrder] = 22.00 WHERE [Code] = 'Residency' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'ClinicalRotationInstruction') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ClinicalRotationInstruction', 'Clinical Rotation Instruction', 'Clinical Rotation Instruction is the primary method of instruction used for the course.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Clinical Rotation Instruction', [Definition] = 'Clinical Rotation Instruction is the primary method of instruction used for the course.', [SortOrder] = 24.00 WHERE [Code] = 'ClinicalRotationInstruction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'SelfPaced') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SelfPaced', 'Self Paced', 'Self Paced is the primary method of instruction used for the course.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Self Paced', [Definition] = 'Self Paced is the primary method of instruction used for the course.', [SortOrder] = 26.00 WHERE [Code] = 'SelfPaced' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'FieldStudy') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FieldStudy', 'Field Study', 'Field Study is the primary method of instruction used for the course.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Field Study', [Definition] = 'Field Study is the primary method of instruction used for the course.', [SortOrder] = 28.00 WHERE [Code] = 'FieldStudy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'InternetInstruction') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InternetInstruction', 'Internet Instruction', 'Internet Instruction is the primary method of instruction used for the course.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Internet Instruction', [Definition] = 'Internet Instruction is the primary method of instruction used for the course.', [SortOrder] = 30.00 WHERE [Code] = 'InternetInstruction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'InteractiveVideo') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InteractiveVideo', 'Interactive Video', 'Interactive Video is the primary method of instruction used for the course.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Interactive Video', [Definition] = 'Interactive Video is the primary method of instruction used for the course.', [SortOrder] = 32.00 WHERE [Code] = 'InteractiveVideo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'Videotape') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Videotape', 'Videotape', 'Videotape is the primary method of instruction used for the course.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Videotape', [Definition] = 'Videotape is the primary method of instruction used for the course.', [SortOrder] = 34.00 WHERE [Code] = 'Videotape' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'Television') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Television', 'Television', 'Television is the primary method of instruction used for the course.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Television', [Definition] = 'Television is the primary method of instruction used for the course.', [SortOrder] = 36.00 WHERE [Code] = 'Television' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'OtherDistanceLearning') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherDistanceLearning', 'Other Distance Learning', 'Other Distance Learning is the primary method of instruction used for the course.', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Other Distance Learning', [Definition] = 'Other Distance Learning is the primary method of instruction used for the course.', [SortOrder] = 38.00 WHERE [Code] = 'OtherDistanceLearning' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'Audiotape') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Audiotape', 'Audiotape', 'Audiotape is the primary method of instruction used for the course.', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Audiotape', [Definition] = 'Audiotape is the primary method of instruction used for the course.', [SortOrder] = 40.00 WHERE [Code] = 'Audiotape' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'ComputerBasedInstruction') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ComputerBasedInstruction', 'Computer Based Instruction', 'Computer Based Instruction is the primary method of instruction used for the course.', 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Computer Based Instruction', [Definition] = 'Computer Based Instruction is the primary method of instruction used for the course.', [SortOrder] = 42.00 WHERE [Code] = 'ComputerBasedInstruction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'CompressedVideo') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CompressedVideo', 'Compressed Video', 'Compressed Video is the primary method of instruction used for the course.', 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Compressed Video', [Definition] = 'Compressed Video is the primary method of instruction used for the course.', [SortOrder] = 44.00 WHERE [Code] = 'CompressedVideo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'Correspondence') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Correspondence', 'Correspondence', 'Correspondence is the primary method of instruction used for the course.', 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Correspondence', [Definition] = 'Correspondence is the primary method of instruction used for the course.', [SortOrder] = 46.00 WHERE [Code] = 'Correspondence' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'CooperativeEducation') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CooperativeEducation', 'Cooperative Education', 'Cooperative Education is the primary method of instruction used for the course.', 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Cooperative Education', [Definition] = 'Cooperative Education is the primary method of instruction used for the course.', [SortOrder] = 48.00 WHERE [Code] = 'CooperativeEducation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionMethod] WHERE [Code] = 'WorkStudy') BEGIN INSERT INTO dbo.[RefCourseInstructionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WorkStudy', 'Work Study', 'Work Study is the primary method of instruction used for the course.', 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionMethod] -SET [Description] = 'Work Study', [Definition] = 'Work Study is the primary method of instruction used for the course.', [SortOrder] = 50.00 WHERE [Code] = 'WorkStudy' END -END - -PRINT N'Populate RefCourseInstructionSiteType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseInstructionSiteType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionSiteType] WHERE [Code] = 'OnCampus') BEGIN INSERT INTO dbo.[RefCourseInstructionSiteType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OnCampus', 'On campus', 'On campus is specified as the type of location at which the course is taught.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionSiteType] -SET [Description] = 'On campus', [Definition] = 'On campus is specified as the type of location at which the course is taught.', [SortOrder] = 2.00 WHERE [Code] = 'OnCampus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionSiteType] WHERE [Code] = 'OffCampus') BEGIN INSERT INTO dbo.[RefCourseInstructionSiteType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OffCampus', 'Off campus (e.g., branch campus, etc.)', 'Off campus (e.g., branch campus, etc.) is specified as the type of location at which the course is taught.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionSiteType] -SET [Description] = 'Off campus (e.g., branch campus, etc.)', [Definition] = 'Off campus (e.g., branch campus, etc.) is specified as the type of location at which the course is taught.', [SortOrder] = 4.00 WHERE [Code] = 'OffCampus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionSiteType] WHERE [Code] = 'Extension') BEGIN INSERT INTO dbo.[RefCourseInstructionSiteType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Extension', 'Extension center or site', 'Extension center or site is specified as the type of location at which the course is taught.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionSiteType] -SET [Description] = 'Extension center or site', [Definition] = 'Extension center or site is specified as the type of location at which the course is taught.', [SortOrder] = 6.00 WHERE [Code] = 'Extension' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionSiteType] WHERE [Code] = 'StudyAbroad') BEGIN INSERT INTO dbo.[RefCourseInstructionSiteType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StudyAbroad', 'Study abroad', 'Study abroad is specified as the type of location at which the course is taught.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionSiteType] -SET [Description] = 'Study abroad', [Definition] = 'Study abroad is specified as the type of location at which the course is taught.', [SortOrder] = 8.00 WHERE [Code] = 'StudyAbroad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionSiteType] WHERE [Code] = 'Correctional') BEGIN INSERT INTO dbo.[RefCourseInstructionSiteType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Correctional', 'Correctional institution', 'Correctional institution is specified as the type of location at which the course is taught.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionSiteType] -SET [Description] = 'Correctional institution', [Definition] = 'Correctional institution is specified as the type of location at which the course is taught.', [SortOrder] = 10.00 WHERE [Code] = 'Correctional' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionSiteType] WHERE [Code] = 'Military') BEGIN INSERT INTO dbo.[RefCourseInstructionSiteType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Military', 'Military Base', 'Military Base is specified as the type of location at which the course is taught.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionSiteType] -SET [Description] = 'Military Base', [Definition] = 'Military Base is specified as the type of location at which the course is taught.', [SortOrder] = 12.00 WHERE [Code] = 'Military' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionSiteType] WHERE [Code] = 'Telecommunication') BEGIN INSERT INTO dbo.[RefCourseInstructionSiteType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Telecommunication', 'Instructional telecommunications', 'Instructional telecommunications is specified as the type of location at which the course is taught.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionSiteType] -SET [Description] = 'Instructional telecommunications', [Definition] = 'Instructional telecommunications is specified as the type of location at which the course is taught.', [SortOrder] = 14.00 WHERE [Code] = 'Telecommunication' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionSiteType] WHERE [Code] = 'Auxiliary') BEGIN INSERT INTO dbo.[RefCourseInstructionSiteType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Auxiliary', 'Auxiliary', 'Auxiliary is specified as the type of location at which the course is taught.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionSiteType] -SET [Description] = 'Auxiliary', [Definition] = 'Auxiliary is specified as the type of location at which the course is taught.', [SortOrder] = 16.00 WHERE [Code] = 'Auxiliary' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInstructionSiteType] WHERE [Code] = 'ClinicHospital') BEGIN INSERT INTO dbo.[RefCourseInstructionSiteType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ClinicHospital', 'Clinic or hospital', 'Clinic or hospital is specified as the type of location at which the course is taught.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInstructionSiteType] -SET [Description] = 'Clinic or hospital', [Definition] = 'Clinic or hospital is specified as the type of location at which the course is taught.', [SortOrder] = 18.00 WHERE [Code] = 'ClinicHospital' END -END - -PRINT N'Populate RefCourseInteractionMode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseInteractionMode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInteractionMode] WHERE [Code] = 'Asynchronous') BEGIN INSERT INTO dbo.[RefCourseInteractionMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Asynchronous', 'Asynchronous', 'Student-oriented teaching and learning which is not organized around participants interacting at the same time and in the same space.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInteractionMode] -SET [Description] = 'Asynchronous', [Definition] = 'Student-oriented teaching and learning which is not organized around participants interacting at the same time and in the same space.', [SortOrder] = 2.00 WHERE [Code] = 'Asynchronous' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseInteractionMode] WHERE [Code] = 'Synchronous') BEGIN INSERT INTO dbo.[RefCourseInteractionMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Synchronous', 'Synchronous', 'Group-oriented teaching and learning organized around participants interacting at the same time and in the same space.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseInteractionMode] -SET [Description] = 'Synchronous', [Definition] = 'Group-oriented teaching and learning organized around participants interacting at the same time and in the same space.', [SortOrder] = 4.00 WHERE [Code] = 'Synchronous' END -END - -PRINT N'Populate RefCourseLevelCharacteristic table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseLevelCharacteristic]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '00568') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00568', 'Remedial course', 'Remedial course is specified as the general nature and difficulty of instruction provided throughout a course.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Remedial course', [Definition] = 'Remedial course is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 1.00 WHERE [Code] = '00568' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '00569') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00569', 'Students with disabilities course', 'Students with disabilities course is specified as the general nature and difficulty of instruction provided throughout a course.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Students with disabilities course', [Definition] = 'Students with disabilities course is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 2.00 WHERE [Code] = '00569' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '00570') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00570', 'Basic course', 'Basic course is specified as the general nature and difficulty of instruction provided throughout a course.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Basic course', [Definition] = 'Basic course is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 3.00 WHERE [Code] = '00570' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '00571') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00571', 'General course', 'General course is specified as the general nature and difficulty of instruction provided throughout a course.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'General course', [Definition] = 'General course is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 4.00 WHERE [Code] = '00571' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '00572') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00572', 'Honors level course', 'Honors level course is specified as the general nature and difficulty of instruction provided throughout a course.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Honors level course', [Definition] = 'Honors level course is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 5.00 WHERE [Code] = '00572' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '00573') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00573', 'Gifted and talented course', 'Gifted and talented course is specified as the general nature and difficulty of instruction provided throughout a course.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Gifted and talented course', [Definition] = 'Gifted and talented course is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 6.00 WHERE [Code] = '00573' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '00574') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00574', 'International Baccalaureate course', 'International Baccalaureate course is specified as the general nature and difficulty of instruction provided throughout a course.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'International Baccalaureate course', [Definition] = 'International Baccalaureate course is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 7.00 WHERE [Code] = '00574' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '00575') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00575', 'Advanced placement course', 'Advanced placement course is specified as the general nature and difficulty of instruction provided throughout a course.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Advanced placement course', [Definition] = 'Advanced placement course is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 8.00 WHERE [Code] = '00575' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '00576') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00576', 'College-level course', 'College-level course is specified as the general nature and difficulty of instruction provided throughout a course.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'College-level course', [Definition] = 'College-level course is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 9.00 WHERE [Code] = '00576' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '00577') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00577', 'Untracked course', 'Untracked course is specified as the general nature and difficulty of instruction provided throughout a course.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Untracked course', [Definition] = 'Untracked course is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 10.00 WHERE [Code] = '00577' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '00578') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00578', 'English Learner course', 'English Learner course is specified as the general nature and difficulty of instruction provided throughout a course.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'English Learner course', [Definition] = 'English Learner course is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 11.00 WHERE [Code] = '00578' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '00579') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00579', 'Accepted as a high school equivalent', 'Accepted as a high school equivalent is specified as the general nature and difficulty of instruction provided throughout a course.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Accepted as a high school equivalent', [Definition] = 'Accepted as a high school equivalent is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 12.00 WHERE [Code] = '00579' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '00741') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00741', 'Completion of requirement, but no units of value awarded', 'Completion of requirement, but no units of value awarded is specified as the general nature and difficulty of instruction provided throughout a course.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Completion of requirement, but no units of value awarded', [Definition] = 'Completion of requirement, but no units of value awarded is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 13.00 WHERE [Code] = '00741' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '73044') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73044', 'Career and technical education general course', 'Career and technical education general course is specified as the general nature and difficulty of instruction provided throughout a course.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Career and technical education general course', [Definition] = 'Career and technical education general course is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 13.00 WHERE [Code] = '73044' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '73045') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73045', 'Career and technical education dual-credit course', 'Career and technical education dual-credit course (course qualifies for high school and postsecondary credit) is specified as the general nature and difficulty of instruction provided throughout a course.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Career and technical education dual-credit course', [Definition] = 'Career and technical education dual-credit course (course qualifies for high school and postsecondary credit) is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 14.00 WHERE [Code] = '73045' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '73048') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73048', 'Dual enrollment', 'Dual enrollment is specified as the general nature and difficulty of instruction provided throughout a course.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Dual enrollment', [Definition] = 'Dual enrollment is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 15.00 WHERE [Code] = '73048' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '73047') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73047', 'Not applicable', 'The general nature and difficulty of instruction provided throughout a course is not defined.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Not applicable', [Definition] = 'The general nature and difficulty of instruction provided throughout a course is not defined.', [SortOrder] = 16.00 WHERE [Code] = '73047' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '73046') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73046', 'Pre-advanced placement', 'Pre-advanced placement is specified as the general nature and difficulty of instruction provided throughout a course.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Pre-advanced placement', [Definition] = 'Pre-advanced placement is specified as the general nature and difficulty of instruction provided throughout a course.', [SortOrder] = 17.00 WHERE [Code] = '73046' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelCharacteristic] WHERE [Code] = '73049') BEGIN INSERT INTO dbo.[RefCourseLevelCharacteristic]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73049', 'Other', 'The general nature and difficulty of instruction provided throughout a course is known but not represented by any available code.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelCharacteristic] -SET [Description] = 'Other', [Definition] = 'The general nature and difficulty of instruction provided throughout a course is known but not represented by any available code.', [SortOrder] = 99.00 WHERE [Code] = '73049' END -END - -PRINT N'Populate RefCourseLevelType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseLevelType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'Accelerated') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Accelerated', 'Accelerated', 'Accelerated is specified as the level of work required for a course or the level of the typical individual taking the course.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Accelerated', [Definition] = 'Accelerated is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 2.00 WHERE [Code] = 'Accelerated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'AdultBasic') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdultBasic', 'Adult Basic', 'Adult Basic is specified as the level of work required for a course or the level of the typical individual taking the course.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Adult Basic', [Definition] = 'Adult Basic is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 4.00 WHERE [Code] = 'AdultBasic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'AdvancedPlacement') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdvancedPlacement', 'Advanced Placement', 'Advanced Placement is specified as the level of work required for a course or the level of the typical individual taking the course.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Advanced Placement', [Definition] = 'Advanced Placement is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 6.00 WHERE [Code] = 'AdvancedPlacement' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'Basic') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Basic', 'Basic', 'Basic is specified as the level of work required for a course or the level of the typical individual taking the course.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Basic', [Definition] = 'Basic is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 8.00 WHERE [Code] = 'Basic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'InternationalBaccalaureate') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InternationalBaccalaureate', 'International Baccalaureate', 'International Baccalaureate is specified as the level of work required for a course or the level of the typical individual taking the course.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'International Baccalaureate', [Definition] = 'International Baccalaureate is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 10.00 WHERE [Code] = 'InternationalBaccalaureate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'CollegeLevel') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CollegeLevel', 'College Level', 'College Level is specified as the level of work required for a course or the level of the typical individual taking the course.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'College Level', [Definition] = 'College Level is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 12.00 WHERE [Code] = 'CollegeLevel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'CollegePreparatory') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CollegePreparatory', 'College Preparatory', 'College Preparatory is specified as the level of work required for a course or the level of the typical individual taking the course.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'College Preparatory', [Definition] = 'College Preparatory is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 14.00 WHERE [Code] = 'CollegePreparatory' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'GiftedTalented') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GiftedTalented', 'Gifted and Talented', 'Gifted and Talented is specified as the level of work required for a course or the level of the typical individual taking the course.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Gifted and Talented', [Definition] = 'Gifted and Talented is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 16.00 WHERE [Code] = 'GiftedTalented' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'Honors') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Honors', 'Honors', 'Honors is specified as the level of work required for a course or the level of the typical individual taking the course.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Honors', [Definition] = 'Honors is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 18.00 WHERE [Code] = 'Honors' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'NonAcademic') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NonAcademic', 'Non-Academic', 'Non-Academic is specified as the level of work required for a course or the level of the typical individual taking the course.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Non-Academic', [Definition] = 'Non-Academic is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 20.00 WHERE [Code] = 'NonAcademic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'SpecialEducation') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpecialEducation', 'Special Education', 'Special Education is specified as the level of work required for a course or the level of the typical individual taking the course.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Special Education', [Definition] = 'Special Education is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 22.00 WHERE [Code] = 'SpecialEducation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'TechnicalPreparatory') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TechnicalPreparatory', 'Technical Preparatory', 'Technical Preparatory is specified as the level of work required for a course or the level of the typical individual taking the course.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Technical Preparatory', [Definition] = 'Technical Preparatory is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 24.00 WHERE [Code] = 'TechnicalPreparatory' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'Vocational') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Vocational', 'Vocational', 'Vocational is specified as the level of work required for a course or the level of the typical individual taking the course.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Vocational', [Definition] = 'Vocational is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 26.00 WHERE [Code] = 'Vocational' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'LowerDivision') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LowerDivision', 'Lower division', 'Lower division is specified as the level of work required for a course or the level of the typical individual taking the course.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Lower division', [Definition] = 'Lower division is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 28.00 WHERE [Code] = 'LowerDivision' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'UpperDivision') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UpperDivision', 'Upper division', 'Upper division is specified as the level of work required for a course or the level of the typical individual taking the course.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Upper division', [Definition] = 'Upper division is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 30.00 WHERE [Code] = 'UpperDivision' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'Dual') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Dual', 'Dual level', 'Dual level is specified as the level of work required for a course or the level of the typical individual taking the course.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Dual level', [Definition] = 'Dual level is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 32.00 WHERE [Code] = 'Dual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'GraduateProfessional') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GraduateProfessional', 'Graduate/Professional', 'Graduate/Professional is specified as the level of work required for a course or the level of the typical individual taking the course.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Graduate/Professional', [Definition] = 'Graduate/Professional is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 34.00 WHERE [Code] = 'GraduateProfessional' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'Regents') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Regents', 'Regents', 'Regents is specified as the level of work required for a course or the level of the typical individual taking the course.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Regents', [Definition] = 'Regents is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 36.00 WHERE [Code] = 'Regents' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'Remedial') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Remedial', 'Remedial/Developmental', 'Remedial/Developmental is specified as the level of work required for a course or the level of the typical individual taking the course.', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'Remedial/Developmental', [Definition] = 'Remedial/Developmental is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 38.00 WHERE [Code] = 'Remedial' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseLevelType] WHERE [Code] = 'K12') BEGIN INSERT INTO dbo.[RefCourseLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('K12', 'K12', 'K12 is specified as the level of work required for a course or the level of the typical individual taking the course.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseLevelType] -SET [Description] = 'K12', [Definition] = 'K12 is specified as the level of work required for a course or the level of the typical individual taking the course.', [SortOrder] = 39.00 WHERE [Code] = 'K12' END -END - -PRINT N'Populate RefCourseRepeatCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseRepeatCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseRepeatCode] WHERE [Code] = 'RepeatCounted') BEGIN INSERT INTO dbo.[RefCourseRepeatCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RepeatCounted', 'Repeated, counted in grade point average', 'The student repeated the course and it has been counted in grade point average. ', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseRepeatCode] -SET [Description] = 'Repeated, counted in grade point average', [Definition] = 'The student repeated the course and it has been counted in grade point average. ', [SortOrder] = 1.00 WHERE [Code] = 'RepeatCounted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseRepeatCode] WHERE [Code] = 'RepeatNotCounted') BEGIN INSERT INTO dbo.[RefCourseRepeatCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RepeatNotCounted', 'Repeated, not counted in grade point average', 'The student repeated the course and it has not been counted in grade point average. ', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseRepeatCode] -SET [Description] = 'Repeated, not counted in grade point average', [Definition] = 'The student repeated the course and it has not been counted in grade point average. ', [SortOrder] = 2.00 WHERE [Code] = 'RepeatNotCounted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseRepeatCode] WHERE [Code] = 'ReplacementCounted') BEGIN INSERT INTO dbo.[RefCourseRepeatCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReplacementCounted', 'Replacement counted', 'Replacement course counted.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseRepeatCode] -SET [Description] = 'Replacement counted', [Definition] = 'Replacement course counted.', [SortOrder] = 3.00 WHERE [Code] = 'ReplacementCounted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseRepeatCode] WHERE [Code] = 'ReplacedNotCounted') BEGIN INSERT INTO dbo.[RefCourseRepeatCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReplacedNotCounted', 'Replacement not counted', 'Replacement course not counted.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseRepeatCode] -SET [Description] = 'Replacement not counted', [Definition] = 'Replacement course not counted.', [SortOrder] = 4.00 WHERE [Code] = 'ReplacedNotCounted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseRepeatCode] WHERE [Code] = 'RepeatOtherInstitution') BEGIN INSERT INTO dbo.[RefCourseRepeatCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RepeatOtherInstitution', 'Repeated, other institution', 'The student repeated the course and it has been counted by another institution.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseRepeatCode] -SET [Description] = 'Repeated, other institution', [Definition] = 'The student repeated the course and it has been counted by another institution.', [SortOrder] = 5.00 WHERE [Code] = 'RepeatOtherInstitution' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseRepeatCode] WHERE [Code] = 'NotCountedOther') BEGIN INSERT INTO dbo.[RefCourseRepeatCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotCountedOther', 'Other, not counted in GPA (e.g., used for academic forgiveness or clemency).', 'Other, the course is not counted in GPA (e.g., used for academic forgiveness or clemency).', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseRepeatCode] -SET [Description] = 'Other, not counted in GPA (e.g., used for academic forgiveness or clemency).', [Definition] = 'Other, the course is not counted in GPA (e.g., used for academic forgiveness or clemency).', [SortOrder] = 6.00 WHERE [Code] = 'NotCountedOther' END -END - -PRINT N'Populate RefCourseSectionAssessmentReportingMethod table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseSectionAssessmentReportingMethod]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00512') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00512', 'Achievement/proficiency level', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Achievement/proficiency level', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = '00512' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00494') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00494', 'ACT score', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'ACT score', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = '00494' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00490') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00490', 'Age score', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Age score', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = '00490' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00491') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00491', 'C-scaled scores', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'C-scaled scores', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = '00491' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00492') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00492', 'College Board examination scores', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'College Board examination scores', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = '00492' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00493') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00493', 'Grade equivalent or grade-level indicator', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Grade equivalent or grade-level indicator', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = '00493' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '03473') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03473', 'Graduation score', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Graduation score', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = '03473' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '03474') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03474', 'Growth/value-added/indexing', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Growth/value-added/indexing', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = '03474' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '03475') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03475', 'International Baccalaureate score', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'International Baccalaureate score', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = '03475' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00144') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00144', 'Letter grade/mark', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Letter grade/mark', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = '00144' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00513') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00513', 'Mastery level', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Mastery level', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = '00513' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00497') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00497', 'Normal curve equivalent', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Normal curve equivalent', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = '00497' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00498') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00498', 'Normalized standard score', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Normalized standard score', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = '00498' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00499') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00499', 'Number score', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Number score', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = '00499' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00500') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00500', 'Pass-fail', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Pass-fail', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = '00500' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '03476') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03476', 'Percentile', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Percentile', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = '03476' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00502') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00502', 'Percentile rank', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Percentile rank', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = '00502' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00503') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00503', 'Proficiency level', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Proficiency level', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = '00503' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '03477') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03477', 'Promotion score', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Promotion score', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = '03477' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00504') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00504', 'Ranking', NULL, 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Ranking', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = '00504' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00505') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00505', 'Ratio IQ''s', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Ratio IQ''s', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = '00505' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '03478') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03478', 'Raw score', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Raw score', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = '03478' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '03479') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03479', 'Scale score', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Scale score', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = '03479' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00506') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00506', 'Standard age score', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Standard age score', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = '00506' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00508') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00508', 'Stanine score', NULL, 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Stanine score', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = '00508' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00509') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00509', 'Sten score', NULL, 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Sten score', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = '00509' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00510') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00510', 'T-score', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'T-score', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = '00510' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '03480') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03480', 'Workplace readiness score', NULL, 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Workplace readiness score', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = '03480' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '00511') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00511', 'Z-score', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Z-score', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = '00511' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '03481') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03481', 'SAT Score', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'SAT Score', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = '03481' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionAssessmentReportingMethod] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefCourseSectionAssessmentReportingMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionAssessmentReportingMethod] -SET [Description] = 'Other', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefCourseSectionDeliveryMode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseSectionDeliveryMode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionDeliveryMode] WHERE [Code] = 'Broadcast') BEGIN INSERT INTO dbo.[RefCourseSectionDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Broadcast', 'Broadcast', 'Course is taught via live or taped broadcast over open air, closed circuit, or cable television systems.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionDeliveryMode] -SET [Description] = 'Broadcast', [Definition] = 'Course is taught via live or taped broadcast over open air, closed circuit, or cable television systems.', [SortOrder] = 0.00 WHERE [Code] = 'Broadcast' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionDeliveryMode] WHERE [Code] = 'Correspondence') BEGIN INSERT INTO dbo.[RefCourseSectionDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Correspondence', 'Correspondence', 'Course is taught via hard or electronic copy or other media (CD, DVD, video cassette) and student works at own pace usually without an instructor present, but generally under supervision of LEA. Includes “packet” programs.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionDeliveryMode] -SET [Description] = 'Correspondence', [Definition] = 'Course is taught via hard or electronic copy or other media (CD, DVD, video cassette) and student works at own pace usually without an instructor present, but generally under supervision of LEA. Includes “packet” programs.', [SortOrder] = 2.00 WHERE [Code] = 'Correspondence' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionDeliveryMode] WHERE [Code] = 'EarlyCollege') BEGIN INSERT INTO dbo.[RefCourseSectionDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EarlyCollege', 'Early College', 'Course is taught by institution of higher education, but does NOT qualify as concurrent enrollment.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionDeliveryMode] -SET [Description] = 'Early College', [Definition] = 'Course is taught by institution of higher education, but does NOT qualify as concurrent enrollment.', [SortOrder] = 4.00 WHERE [Code] = 'EarlyCollege' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionDeliveryMode] WHERE [Code] = 'AudioVideo') BEGIN INSERT INTO dbo.[RefCourseSectionDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AudioVideo', 'Interactive Audio/Video', 'Course is taught via remote interactive receiver or via streaming media technologies.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionDeliveryMode] -SET [Description] = 'Interactive Audio/Video', [Definition] = 'Course is taught via remote interactive receiver or via streaming media technologies.', [SortOrder] = 6.00 WHERE [Code] = 'AudioVideo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionDeliveryMode] WHERE [Code] = 'Online') BEGIN INSERT INTO dbo.[RefCourseSectionDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Online', 'Online', 'Course is taught through a website, web application, or app on an internet connected device.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionDeliveryMode] -SET [Description] = 'Online', [Definition] = 'Course is taught through a website, web application, or app on an internet connected device.', [SortOrder] = 8.00 WHERE [Code] = 'Online' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionDeliveryMode] WHERE [Code] = 'IndependentStudy') BEGIN INSERT INTO dbo.[RefCourseSectionDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IndependentStudy', 'Independent Study', 'Structured learning experience is recognized for credit but is not under supervision of the LEA.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionDeliveryMode] -SET [Description] = 'Independent Study', [Definition] = 'Structured learning experience is recognized for credit but is not under supervision of the LEA.', [SortOrder] = 10.00 WHERE [Code] = 'IndependentStudy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionDeliveryMode] WHERE [Code] = 'FaceToFace') BEGIN INSERT INTO dbo.[RefCourseSectionDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FaceToFace', 'Face to Face', 'Course is taught primarily in person and usually in a conventional classroom or lecture hall.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionDeliveryMode] -SET [Description] = 'Face to Face', [Definition] = 'Course is taught primarily in person and usually in a conventional classroom or lecture hall.', [SortOrder] = 12.00 WHERE [Code] = 'FaceToFace' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionDeliveryMode] WHERE [Code] = 'BlendedLearning') BEGIN INSERT INTO dbo.[RefCourseSectionDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BlendedLearning', 'Blended Learning', 'Course uses a blended learning model that includes Face to Face and Online components.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionDeliveryMode] -SET [Description] = 'Blended Learning', [Definition] = 'Course uses a blended learning model that includes Face to Face and Online components.', [SortOrder] = 14.00 WHERE [Code] = 'BlendedLearning' END -END - -PRINT N'Populate RefCourseSectionEnrollmentStatusType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseSectionEnrollmentStatusType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionEnrollmentStatusType] WHERE [Code] = 'Pre-registered') BEGIN INSERT INTO dbo.[RefCourseSectionEnrollmentStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Pre-registered', 'Pre-registered', 'Pre-registered is the status related to a student enrollment in an instance of a course.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionEnrollmentStatusType] -SET [Description] = 'Pre-registered', [Definition] = 'Pre-registered is the status related to a student enrollment in an instance of a course.', [SortOrder] = 1.00 WHERE [Code] = 'Pre-registered' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionEnrollmentStatusType] WHERE [Code] = 'Registered') BEGIN INSERT INTO dbo.[RefCourseSectionEnrollmentStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Registered', 'Registered', 'Registered is the status related to a student enrollment in an instance of a course.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionEnrollmentStatusType] -SET [Description] = 'Registered', [Definition] = 'Registered is the status related to a student enrollment in an instance of a course.', [SortOrder] = 2.00 WHERE [Code] = 'Registered' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionEnrollmentStatusType] WHERE [Code] = 'Enrolled') BEGIN INSERT INTO dbo.[RefCourseSectionEnrollmentStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Enrolled', 'Enrolled', 'Enrolled is the status related to a student enrollment in an instance of a course.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionEnrollmentStatusType] -SET [Description] = 'Enrolled', [Definition] = 'Enrolled is the status related to a student enrollment in an instance of a course.', [SortOrder] = 3.00 WHERE [Code] = 'Enrolled' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionEnrollmentStatusType] WHERE [Code] = 'WaitListed') BEGIN INSERT INTO dbo.[RefCourseSectionEnrollmentStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WaitListed', 'Wait Listed', 'Wait Listed is the status related to a student enrollment in an instance of a course.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionEnrollmentStatusType] -SET [Description] = 'Wait Listed', [Definition] = 'Wait Listed is the status related to a student enrollment in an instance of a course.', [SortOrder] = 4.00 WHERE [Code] = 'WaitListed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionEnrollmentStatusType] WHERE [Code] = 'Dropped') BEGIN INSERT INTO dbo.[RefCourseSectionEnrollmentStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Dropped', 'Dropped', 'Dropped is the status related to a student enrollment in an instance of a course.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionEnrollmentStatusType] -SET [Description] = 'Dropped', [Definition] = 'Dropped is the status related to a student enrollment in an instance of a course.', [SortOrder] = 5.00 WHERE [Code] = 'Dropped' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionEnrollmentStatusType] WHERE [Code] = 'Completed') BEGIN INSERT INTO dbo.[RefCourseSectionEnrollmentStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Completed', 'Completed', 'Completed is the status related to a student enrollment in an instance of a course.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionEnrollmentStatusType] -SET [Description] = 'Completed', [Definition] = 'Completed is the status related to a student enrollment in an instance of a course.', [SortOrder] = 6.00 WHERE [Code] = 'Completed' END -END - -PRINT N'Populate RefCourseSectionEntryType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseSectionEntryType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionEntryType] WHERE [Code] = 'NewEnrollment') BEGIN INSERT INTO dbo.[RefCourseSectionEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NewEnrollment', 'New Enrollment', 'New Class Section enrollment.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionEntryType] -SET [Description] = 'New Enrollment', [Definition] = 'New Class Section enrollment.', [SortOrder] = 1.00 WHERE [Code] = 'NewEnrollment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionEntryType] WHERE [Code] = 'Transfer') BEGIN INSERT INTO dbo.[RefCourseSectionEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Transfer', 'Transfer', 'Student transferred from another Class Section of the same course in the same educational institution.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionEntryType] -SET [Description] = 'Transfer', [Definition] = 'Student transferred from another Class Section of the same course in the same educational institution.', [SortOrder] = 2.00 WHERE [Code] = 'Transfer' END -END - -PRINT N'Populate RefCourseSectionExitType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCourseSectionExitType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionExitType] WHERE [Code] = 'Transfer') BEGIN INSERT INTO dbo.[RefCourseSectionExitType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Transfer', 'Student transferred to another Class Section of the same course in the same educational institution.', 'The student exited the course section and transferred to another course section of the same course in the same educational institution.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionExitType] -SET [Description] = 'Student transferred to another Class Section of the same course in the same educational institution.', [Definition] = 'The student exited the course section and transferred to another course section of the same course in the same educational institution.', [SortOrder] = 1.00 WHERE [Code] = 'Transfer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionExitType] WHERE [Code] = 'CompletedForCredit') BEGIN INSERT INTO dbo.[RefCourseSectionExitType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CompletedForCredit', 'Class Section completed, student received credit for the course.', 'The course section completed and the student received credit for the course.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionExitType] -SET [Description] = 'Class Section completed, student received credit for the course.', [Definition] = 'The course section completed and the student received credit for the course.', [SortOrder] = 2.00 WHERE [Code] = 'CompletedForCredit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionExitType] WHERE [Code] = 'CompletedNoCredit') BEGIN INSERT INTO dbo.[RefCourseSectionExitType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CompletedNoCredit', 'Class Section completed, student did not receive credit for the course.', 'The course section completed and the student did not receive credit for the course.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionExitType] -SET [Description] = 'Class Section completed, student did not receive credit for the course.', [Definition] = 'The course section completed and the student did not receive credit for the course.', [SortOrder] = 3.00 WHERE [Code] = 'CompletedNoCredit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCourseSectionExitType] WHERE [Code] = 'Incomplete') BEGIN INSERT INTO dbo.[RefCourseSectionExitType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Incomplete', 'Class Section completed, student did not complete the work required to complete the course.', 'The course section ended and the student did not complete the work required to complete the course.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCourseSectionExitType] -SET [Description] = 'Class Section completed, student did not complete the work required to complete the course.', [Definition] = 'The course section ended and the student did not complete the work required to complete the course.', [SortOrder] = 4.00 WHERE [Code] = 'Incomplete' END -END - -PRINT N'Populate RefCredentialDefAgentRoleType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCredentialDefAgentRoleType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefAgentRoleType] WHERE [Code] = 'accreditedBy') BEGIN INSERT INTO dbo.[RefCredentialDefAgentRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('accreditedBy', 'Accredited By', 'Quality assurance organization that provides official authorization to, or approval of, a credential, organization, assessment, or learning opportunity.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefAgentRoleType] -SET [Description] = 'Accredited By', [Definition] = 'Quality assurance organization that provides official authorization to, or approval of, a credential, organization, assessment, or learning opportunity.', [SortOrder] = 1.00 WHERE [Code] = 'accreditedBy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefAgentRoleType] WHERE [Code] = 'approvedBy') BEGIN INSERT INTO dbo.[RefCredentialDefAgentRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('approvedBy', 'Approved By', 'Organization that pronounces favorable judgment for this credential, assessment, learning opportunity, or organization.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefAgentRoleType] -SET [Description] = 'Approved By', [Definition] = 'Organization that pronounces favorable judgment for this credential, assessment, learning opportunity, or organization.', [SortOrder] = 2.00 WHERE [Code] = 'approvedBy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefAgentRoleType] WHERE [Code] = 'offeredBy') BEGIN INSERT INTO dbo.[RefCredentialDefAgentRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('offeredBy', 'Offered By', 'Agent that offers the resource.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefAgentRoleType] -SET [Description] = 'Offered By', [Definition] = 'Agent that offers the resource.', [SortOrder] = 3.00 WHERE [Code] = 'offeredBy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefAgentRoleType] WHERE [Code] = 'ownedBy') BEGIN INSERT INTO dbo.[RefCredentialDefAgentRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ownedBy', 'Owned By', 'Organization or person with an enforceable claim or legal title to the Credential Definition resource.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefAgentRoleType] -SET [Description] = 'Owned By', [Definition] = 'Organization or person with an enforceable claim or legal title to the Credential Definition resource.', [SortOrder] = 4.00 WHERE [Code] = 'ownedBy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefAgentRoleType] WHERE [Code] = 'recognizedBy') BEGIN INSERT INTO dbo.[RefCredentialDefAgentRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('recognizedBy', 'Recognized By', 'Agent that acknowledges the validity of the credential, learning opportunity, or assessment.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefAgentRoleType] -SET [Description] = 'Recognized By', [Definition] = 'Agent that acknowledges the validity of the credential, learning opportunity, or assessment.', [SortOrder] = 5.00 WHERE [Code] = 'recognizedBy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefAgentRoleType] WHERE [Code] = 'regulatedBy') BEGIN INSERT INTO dbo.[RefCredentialDefAgentRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('regulatedBy', 'Regulated By', 'Quality assurance organization that enforces the legal requirements of the credential, learning resource, or assessment.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefAgentRoleType] -SET [Description] = 'Regulated By', [Definition] = 'Quality assurance organization that enforces the legal requirements of the credential, learning resource, or assessment.', [SortOrder] = 6.00 WHERE [Code] = 'regulatedBy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefAgentRoleType] WHERE [Code] = 'renewedBy') BEGIN INSERT INTO dbo.[RefCredentialDefAgentRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('renewedBy', 'Renewed By', 'Organization or person that handles the renewal of the credential.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefAgentRoleType] -SET [Description] = 'Renewed By', [Definition] = 'Organization or person that handles the renewal of the credential.', [SortOrder] = 7.00 WHERE [Code] = 'renewedBy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefAgentRoleType] WHERE [Code] = 'revokedBy') BEGIN INSERT INTO dbo.[RefCredentialDefAgentRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('revokedBy', 'Revoked By', 'Organization or person that handles revocation of an awarded credential due to violations or failure to renew.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefAgentRoleType] -SET [Description] = 'Revoked By', [Definition] = 'Organization or person that handles revocation of an awarded credential due to violations or failure to renew.', [SortOrder] = 8.00 WHERE [Code] = 'revokedBy' END -END - -PRINT N'Populate RefCredentialDefAssessMethodType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCredentialDefAssessMethodType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefAssessMethodType] WHERE [Code] = 'Artifact') BEGIN INSERT INTO dbo.[RefCredentialDefAssessMethodType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Artifact', 'Artifact', 'A work or product created to be persistent in some medium. Artifact includes, but is not limited to, an academic paper, video documentary, computer software, music composition, choreography, novel, short story, journal article, news article, report, lesson plan, product design, manufactured product, etc. Methods of evaluation may include multiple evaluators either individually or as an expert panel using general criteria or more structured rubrics whose scores are combined, etc. Criteria and methods of evaluation are often very similar to those for assessing a performance, without the facets specific to a live performance.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefAssessMethodType] -SET [Description] = 'Artifact', [Definition] = 'A work or product created to be persistent in some medium. Artifact includes, but is not limited to, an academic paper, video documentary, computer software, music composition, choreography, novel, short story, journal article, news article, report, lesson plan, product design, manufactured product, etc. Methods of evaluation may include multiple evaluators either individually or as an expert panel using general criteria or more structured rubrics whose scores are combined, etc. Criteria and methods of evaluation are often very similar to those for assessing a performance, without the facets specific to a live performance.', [SortOrder] = NULL WHERE [Code] = 'Artifact' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefAssessMethodType] WHERE [Code] = 'Exam') BEGIN INSERT INTO dbo.[RefCredentialDefAssessMethodType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Exam', 'Exam', 'A mix of scored items presented in fixed or open response formats. Exams may be human- or machine-scored and include, but are not limited to, multiple choice, true-false, written essay, short-answer, fill-in or oral response formats that could include measurements of reasoning, problem-solving, critical thinking.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefAssessMethodType] -SET [Description] = 'Exam', [Definition] = 'A mix of scored items presented in fixed or open response formats. Exams may be human- or machine-scored and include, but are not limited to, multiple choice, true-false, written essay, short-answer, fill-in or oral response formats that could include measurements of reasoning, problem-solving, critical thinking.', [SortOrder] = NULL WHERE [Code] = 'Exam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefAssessMethodType] WHERE [Code] = 'Performance') BEGIN INSERT INTO dbo.[RefCredentialDefAssessMethodType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Performance', 'Performance', 'A demonstration or performance that is usually assessed while the performance is taking place or as recorded for assessment purposes after the performance. Performance includes, but is not limited to, dance, music, teaching, acting, medical procedures, truck driving, manufacturing production, etc. Criteria include the categories and benchmarks on which the performance is assessed. Methods of evaluation can include multiple evaluators either individually or as an expert panel using general criteria or more structured rubrics whose scores are combined.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefAssessMethodType] -SET [Description] = 'Performance', [Definition] = 'A demonstration or performance that is usually assessed while the performance is taking place or as recorded for assessment purposes after the performance. Performance includes, but is not limited to, dance, music, teaching, acting, medical procedures, truck driving, manufacturing production, etc. Criteria include the categories and benchmarks on which the performance is assessed. Methods of evaluation can include multiple evaluators either individually or as an expert panel using general criteria or more structured rubrics whose scores are combined.', [SortOrder] = NULL WHERE [Code] = 'Performance' END -END - -PRINT N'Populate RefCredentialDefIntendedPurposeType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCredentialDefIntendedPurposeType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefIntendedPurposeType] WHERE [Code] = 'GeneralEducation') BEGIN INSERT INTO dbo.[RefCredentialDefIntendedPurposeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GeneralEducation', 'General Education', 'The intended purpose of the credential by the holder is general education.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefIntendedPurposeType] -SET [Description] = 'General Education', [Definition] = 'The intended purpose of the credential by the holder is general education.', [SortOrder] = NULL WHERE [Code] = 'GeneralEducation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefIntendedPurposeType] WHERE [Code] = 'JobOrCareerPreparation') BEGIN INSERT INTO dbo.[RefCredentialDefIntendedPurposeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JobOrCareerPreparation', 'Job/Career Preparation', 'The intended purpose of the credential by the holder is job or career preparation.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefIntendedPurposeType] -SET [Description] = 'Job/Career Preparation', [Definition] = 'The intended purpose of the credential by the holder is job or career preparation.', [SortOrder] = NULL WHERE [Code] = 'JobOrCareerPreparation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefIntendedPurposeType] WHERE [Code] = 'MidCareer') BEGIN INSERT INTO dbo.[RefCredentialDefIntendedPurposeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MidCareer', 'Mid-Career Level', 'The intended purpose of the credential by the holder is for mid-career, experienced worker preparation and advancement.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefIntendedPurposeType] -SET [Description] = 'Mid-Career Level', [Definition] = 'The intended purpose of the credential by the holder is for mid-career, experienced worker preparation and advancement.', [SortOrder] = NULL WHERE [Code] = 'MidCareer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefIntendedPurposeType] WHERE [Code] = 'PriorExperience') BEGIN INSERT INTO dbo.[RefCredentialDefIntendedPurposeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PriorExperience', 'Prior Learning Experience', 'The intended purpose of the credential by the holder is for determining prior learning experience of the holder, including but not limited to college credit.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefIntendedPurposeType] -SET [Description] = 'Prior Learning Experience', [Definition] = 'The intended purpose of the credential by the holder is for determining prior learning experience of the holder, including but not limited to college credit.', [SortOrder] = NULL WHERE [Code] = 'PriorExperience' END -END - -PRINT N'Populate RefCredentialDefStatusType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCredentialDefStatusType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefStatusType] WHERE [Code] = 'Active') BEGIN INSERT INTO dbo.[RefCredentialDefStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Active', 'Active', 'Awards of the credential are ongoing.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefStatusType] -SET [Description] = 'Active', [Definition] = 'Awards of the credential are ongoing.', [SortOrder] = NULL WHERE [Code] = 'Active' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefStatusType] WHERE [Code] = 'Deprecated') BEGIN INSERT INTO dbo.[RefCredentialDefStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Deprecated', 'Deprecated', 'The credential is no longer awarded.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefStatusType] -SET [Description] = 'Deprecated', [Definition] = 'The credential is no longer awarded.', [SortOrder] = NULL WHERE [Code] = 'Deprecated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefStatusType] WHERE [Code] = 'Probationary') BEGIN INSERT INTO dbo.[RefCredentialDefStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Probationary', 'Probationary', 'The credential award is provisional or temporary; frequently pending further assessment of qualification.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefStatusType] -SET [Description] = 'Probationary', [Definition] = 'The credential award is provisional or temporary; frequently pending further assessment of qualification.', [SortOrder] = NULL WHERE [Code] = 'Probationary' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefStatusType] WHERE [Code] = 'Superseded') BEGIN INSERT INTO dbo.[RefCredentialDefStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Superseded', 'Superseded', 'The credential is no longer awarded and has been superseded by another credential.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefStatusType] -SET [Description] = 'Superseded', [Definition] = 'The credential is no longer awarded and has been superseded by another credential.', [SortOrder] = NULL WHERE [Code] = 'Superseded' END -END - -PRINT N'Populate RefCredentialDefVerificationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCredentialDefVerificationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefVerificationType] WHERE [Code] = 'BadgeClaim') BEGIN INSERT INTO dbo.[RefCredentialDefVerificationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BadgeClaim', 'Badge Claim', 'Verifiable representation of a credential holder’s badge that is controlled by the credentialing organization.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefVerificationType] -SET [Description] = 'Badge Claim', [Definition] = 'Verifiable representation of a credential holder’s badge that is controlled by the credentialing organization.', [SortOrder] = NULL WHERE [Code] = 'BadgeClaim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefVerificationType] WHERE [Code] = 'TranscriptClaim') BEGIN INSERT INTO dbo.[RefCredentialDefVerificationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TranscriptClaim', 'Transcript Claim', 'Verifiable representation of postsecondary courses and degrees that is controlled by the credentialing organization.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefVerificationType] -SET [Description] = 'Transcript Claim', [Definition] = 'Verifiable representation of postsecondary courses and degrees that is controlled by the credentialing organization.', [SortOrder] = NULL WHERE [Code] = 'TranscriptClaim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialDefVerificationType] WHERE [Code] = 'VerifiedClaim') BEGIN INSERT INTO dbo.[RefCredentialDefVerificationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VerifiedClaim', 'Verified Claim', 'Verifiable representation of the credential holder''s credential that is controlled by the credentialing organization.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialDefVerificationType] -SET [Description] = 'Verified Claim', [Definition] = 'Verifiable representation of the credential holder''s credential that is controlled by the credentialing organization.', [SortOrder] = NULL WHERE [Code] = 'VerifiedClaim' END -END - -PRINT N'Populate RefCredentialIdentifierSystem table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCredentialIdentifierSystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialIdentifierSystem] WHERE [Code] = 'ARK') BEGIN INSERT INTO dbo.[RefCredentialIdentifierSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ARK', 'Archival Resource Key', 'A Uniform Resource Locator that is a multi-purpose persistent identifier for information objects of any type.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialIdentifierSystem] -SET [Description] = 'Archival Resource Key', [Definition] = 'A Uniform Resource Locator that is a multi-purpose persistent identifier for information objects of any type.', [SortOrder] = NULL WHERE [Code] = 'ARK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialIdentifierSystem] WHERE [Code] = 'CTID') BEGIN INSERT INTO dbo.[RefCredentialIdentifierSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CTID', 'Credential Transparency Identifier', 'A globally unique Credential Transparency Identifier issued by the Credential Registry Service by which the creator/owner/provider of a credential recognizes the credential in transactions with the external environment.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialIdentifierSystem] -SET [Description] = 'Credential Transparency Identifier', [Definition] = 'A globally unique Credential Transparency Identifier issued by the Credential Registry Service by which the creator/owner/provider of a credential recognizes the credential in transactions with the external environment.', [SortOrder] = NULL WHERE [Code] = 'CTID' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialIdentifierSystem] WHERE [Code] = 'DOI') BEGIN INSERT INTO dbo.[RefCredentialIdentifierSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DOI', 'Digital Document Identifier', 'A persistent identifier or handle used to uniquely identify objects, standardized by the ISO.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialIdentifierSystem] -SET [Description] = 'Digital Document Identifier', [Definition] = 'A persistent identifier or handle used to uniquely identify objects, standardized by the ISO.', [SortOrder] = NULL WHERE [Code] = 'DOI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialIdentifierSystem] WHERE [Code] = 'INFO') BEGIN INSERT INTO dbo.[RefCredentialIdentifierSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('INFO', 'INFO URI Scheme', 'An identifier for information assets that have identifiers in public namespaces but are not part of the URI allocation.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialIdentifierSystem] -SET [Description] = 'INFO URI Scheme', [Definition] = 'An identifier for information assets that have identifiers in public namespaces but are not part of the URI allocation.', [SortOrder] = NULL WHERE [Code] = 'INFO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialIdentifierSystem] WHERE [Code] = 'URI') BEGIN INSERT INTO dbo.[RefCredentialIdentifierSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('URI', 'Uniform Resource Identifier', 'A string of characters used to identify a resource.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialIdentifierSystem] -SET [Description] = 'Uniform Resource Identifier', [Definition] = 'A string of characters used to identify a resource.', [SortOrder] = NULL WHERE [Code] = 'URI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialIdentifierSystem] WHERE [Code] = 'URL') BEGIN INSERT INTO dbo.[RefCredentialIdentifierSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('URL', 'Uniform Resource Locator', 'A Uniform Resource Locator, commonly informally termed a web address is a reference to a web resource that specifies its location on a computer network and a mechanism for retrieving it.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialIdentifierSystem] -SET [Description] = 'Uniform Resource Locator', [Definition] = 'A Uniform Resource Locator, commonly informally termed a web address is a reference to a web resource that specifies its location on a computer network and a mechanism for retrieving it.', [SortOrder] = NULL WHERE [Code] = 'URL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialIdentifierSystem] WHERE [Code] = 'URN') BEGIN INSERT INTO dbo.[RefCredentialIdentifierSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('URN', 'Uniform Resource Name', 'A string of characters used to identify a name of a web resource.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialIdentifierSystem] -SET [Description] = 'Uniform Resource Name', [Definition] = 'A string of characters used to identify a name of a web resource.', [SortOrder] = NULL WHERE [Code] = 'URN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialIdentifierSystem] WHERE [Code] = 'UUID') BEGIN INSERT INTO dbo.[RefCredentialIdentifierSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UUID', 'Universally Unique Identifier', '128-bit number used to identify information in computer systems.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialIdentifierSystem] -SET [Description] = 'Universally Unique Identifier', [Definition] = '128-bit number used to identify information in computer systems.', [SortOrder] = NULL WHERE [Code] = 'UUID' END -END - -PRINT N'Populate RefCredentialType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCredentialType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialType] WHERE [Code] = 'Certification') BEGIN INSERT INTO dbo.[RefCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Certification', 'Certification', 'Certification is specified as the category of credential a person holds.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialType] -SET [Description] = 'Certification', [Definition] = 'Certification is specified as the category of credential a person holds.', [SortOrder] = 1.00 WHERE [Code] = 'Certification' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialType] WHERE [Code] = 'Endorsement') BEGIN INSERT INTO dbo.[RefCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Endorsement', 'Endorsement', 'Endorsement is specified as the category of credential a person holds.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialType] -SET [Description] = 'Endorsement', [Definition] = 'Endorsement is specified as the category of credential a person holds.', [SortOrder] = 2.00 WHERE [Code] = 'Endorsement' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialType] WHERE [Code] = 'Licensure') BEGIN INSERT INTO dbo.[RefCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Licensure', 'Licensure', 'Licensure is specified as the category of credential a person holds.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialType] -SET [Description] = 'Licensure', [Definition] = 'Licensure is specified as the category of credential a person holds.', [SortOrder] = 3.00 WHERE [Code] = 'Licensure' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is specified as the category of credential a person holds.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the category of credential a person holds.', [SortOrder] = 4.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialType] WHERE [Code] = 'Registration') BEGIN INSERT INTO dbo.[RefCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Registration', 'Registration', 'Registration is specified as the category of credential a person holds.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialType] -SET [Description] = 'Registration', [Definition] = 'Registration is specified as the category of credential a person holds.', [SortOrder] = 5.00 WHERE [Code] = 'Registration' END -END - -PRINT N'Populate RefCreditHoursAppliedOtherProgram table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCreditHoursAppliedOtherProgram]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditHoursAppliedOtherProgram] WHERE [Code] = '00') BEGIN INSERT INTO dbo.[RefCreditHoursAppliedOtherProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00', 'None', 'None is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditHoursAppliedOtherProgram] -SET [Description] = 'None', [Definition] = 'None is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', [SortOrder] = 2.00 WHERE [Code] = '00' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditHoursAppliedOtherProgram] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefCreditHoursAppliedOtherProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Undergraduate hours applied towards graduate degree', 'Undergraduate hours applied towards graduate degree is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditHoursAppliedOtherProgram] -SET [Description] = 'Undergraduate hours applied towards graduate degree', [Definition] = 'Undergraduate hours applied towards graduate degree is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', [SortOrder] = 4.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditHoursAppliedOtherProgram] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefCreditHoursAppliedOtherProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Credit hours taken at the postbaccalaureate level', 'Credit hours taken at the postbaccalaureate level is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditHoursAppliedOtherProgram] -SET [Description] = 'Credit hours taken at the postbaccalaureate level', [Definition] = 'Credit hours taken at the postbaccalaureate level is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', [SortOrder] = 6.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditHoursAppliedOtherProgram] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefCreditHoursAppliedOtherProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Credit hours taken as unclassified student', 'Credit hours taken as unclassified student is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditHoursAppliedOtherProgram] -SET [Description] = 'Credit hours taken as unclassified student', [Definition] = 'Credit hours taken as unclassified student is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', [SortOrder] = 8.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditHoursAppliedOtherProgram] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefCreditHoursAppliedOtherProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Credit hours taken as an independent student', 'Credit hours taken as an independent student is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditHoursAppliedOtherProgram] -SET [Description] = 'Credit hours taken as an independent student', [Definition] = 'Credit hours taken as an independent student is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', [SortOrder] = 10.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditHoursAppliedOtherProgram] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefCreditHoursAppliedOtherProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Credit hours taken as traveling scholar at another university', 'Credit hours taken as traveling scholar at another university is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditHoursAppliedOtherProgram] -SET [Description] = 'Credit hours taken as traveling scholar at another university', [Definition] = 'Credit hours taken as traveling scholar at another university is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', [SortOrder] = 12.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditHoursAppliedOtherProgram] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefCreditHoursAppliedOtherProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Credit hours taken at master''s level', 'Credit hours taken at master''s level is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditHoursAppliedOtherProgram] -SET [Description] = 'Credit hours taken at master''s level', [Definition] = 'Credit hours taken at master''s level is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', [SortOrder] = 14.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditHoursAppliedOtherProgram] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefCreditHoursAppliedOtherProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Credit hours taken as a master''s student in one program, applied towards another master''s program', 'Credit hours taken as a master''s student in one program, applied towards another master''s program is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditHoursAppliedOtherProgram] -SET [Description] = 'Credit hours taken as a master''s student in one program, applied towards another master''s program', [Definition] = 'Credit hours taken as a master''s student in one program, applied towards another master''s program is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', [SortOrder] = 16.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditHoursAppliedOtherProgram] WHERE [Code] = '98') BEGIN INSERT INTO dbo.[RefCreditHoursAppliedOtherProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('98', 'Unknown', 'Unknown is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditHoursAppliedOtherProgram] -SET [Description] = 'Unknown', [Definition] = 'Unknown is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', [SortOrder] = 18.00 WHERE [Code] = '98' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditHoursAppliedOtherProgram] WHERE [Code] = '99') BEGIN INSERT INTO dbo.[RefCreditHoursAppliedOtherProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('99', 'Other', 'Other is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditHoursAppliedOtherProgram] -SET [Description] = 'Other', [Definition] = 'Other is specified as the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', [SortOrder] = 20.00 WHERE [Code] = '99' END -END - -PRINT N'Populate RefCreditTypeEarned table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCreditTypeEarned]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '00585') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00585', 'Carnegie unit', 'Carnegie unit is specified as the type of credits or units of value awarded for the completion of a course.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Carnegie unit', [Definition] = 'Carnegie unit is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 1.00 WHERE [Code] = '00585' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '00586') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00586', 'Semester hour credit', 'Semester hour credit is specified as the type of credits or units of value awarded for the completion of a course.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Semester hour credit', [Definition] = 'Semester hour credit is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 2.00 WHERE [Code] = '00586' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '00587') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00587', 'Trimester hour credit', 'Trimester hour credit is specified as the type of credits or units of value awarded for the completion of a course.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Trimester hour credit', [Definition] = 'Trimester hour credit is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 3.00 WHERE [Code] = '00587' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '00588') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00588', 'Quarter hour credit', 'Quarter hour credit is specified as the type of credits or units of value awarded for the completion of a course.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Quarter hour credit', [Definition] = 'Quarter hour credit is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 4.00 WHERE [Code] = '00588' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '00589') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00589', 'Quinmester hour credit', 'Quinmester hour credit is specified as the type of credits or units of value awarded for the completion of a course.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Quinmester hour credit', [Definition] = 'Quinmester hour credit is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 5.00 WHERE [Code] = '00589' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '00590') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00590', 'Mini-term hour credit', 'Mini-term hour credit is specified as the type of credits or units of value awarded for the completion of a course.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Mini-term hour credit', [Definition] = 'Mini-term hour credit is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 6.00 WHERE [Code] = '00590' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '00591') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00591', 'Summer term hour credit', 'Summer term hour credit is specified as the type of credits or units of value awarded for the completion of a course.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Summer term hour credit', [Definition] = 'Summer term hour credit is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 7.00 WHERE [Code] = '00591' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '00592') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00592', 'Intersession hour credit', 'Intersession hour credit is specified as the type of credits or units of value awarded for the completion of a course.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Intersession hour credit', [Definition] = 'Intersession hour credit is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 8.00 WHERE [Code] = '00592' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '00595') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00595', 'Long session hour credit', 'Long session hour credit is specified as the type of credits or units of value awarded for the completion of a course.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Long session hour credit', [Definition] = 'Long session hour credit is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 9.00 WHERE [Code] = '00595' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '00596') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00596', 'Twelve month hour credit', 'Twelve month hour credit is specified as the type of credits or units of value awarded for the completion of a course.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Twelve month hour credit', [Definition] = 'Twelve month hour credit is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 10.00 WHERE [Code] = '00596' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '00597') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00597', 'Career and Technical Education credit', 'Career and Technical Education credit is specified as the type of credits or units of value awarded for the completion of a course.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Career and Technical Education credit', [Definition] = 'Career and Technical Education credit is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 11.00 WHERE [Code] = '00597' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '73062') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73062', 'Adult high school credit', 'Adult high school credit is specified as the type of credits or units of value awarded for the completion of a course.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Adult high school credit', [Definition] = 'Adult high school credit is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 12.00 WHERE [Code] = '73062' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '00599') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00599', 'Credit by examination', 'Credit by examination is specified as the type of credits or units of value awarded for the completion of a course.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Credit by examination', [Definition] = 'Credit by examination is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 13.00 WHERE [Code] = '00599' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '00600') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00600', 'Correspondence credit', 'Correspondence credit is specified as the type of credits or units of value awarded for the completion of a course.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Correspondence credit', [Definition] = 'Correspondence credit is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 14.00 WHERE [Code] = '00600' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '00601') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00601', 'Converted occupational experience credit', 'Converted occupational experience credit is specified as the type of credits or units of value awarded for the completion of a course.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Converted occupational experience credit', [Definition] = 'Converted occupational experience credit is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 15.00 WHERE [Code] = '00601' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of credits or units of value awarded for the completion of a course.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of credits or units of value awarded for the completion of a course.', [SortOrder] = 16.00 WHERE [Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '75001') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75001', 'Certificate credit', 'Credit that is issued or accepted for certificates. Includes credits earned while enrolled in a certificate program.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Certificate credit', [Definition] = 'Credit that is issued or accepted for certificates. Includes credits earned while enrolled in a certificate program.', [SortOrder] = 16.00 WHERE [Code] = '75001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '75002') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75002', 'Degree credit', 'Credit that is issued or is accepted as credit for earning a college-level degree.Includes credits earned while enrolled in a postsecondary program for a college-level degree.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Degree credit', [Definition] = 'Credit that is issued or is accepted as credit for earning a college-level degree.Includes credits earned while enrolled in a postsecondary program for a college-level degree.', [SortOrder] = 16.00 WHERE [Code] = '75002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '75003') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75003', 'Continuing education credit', 'Credit that is issued or is accepted as education units for meeting professional requirements.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Continuing education credit', [Definition] = 'Credit that is issued or is accepted as education units for meeting professional requirements.', [SortOrder] = 16.00 WHERE [Code] = '75003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCreditTypeEarned] WHERE [Code] = '75004') BEGIN INSERT INTO dbo.[RefCreditTypeEarned]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75004', 'Professional development hours', 'One contact hour of instruction, presentation or study.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCreditTypeEarned] -SET [Description] = 'Professional development hours', [Definition] = 'One contact hour of instruction, presentation or study.', [SortOrder] = 16.00 WHERE [Code] = '75004' END -END - -PRINT N'Populate RefCriticalTeacherShortageCandidate table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCriticalTeacherShortageCandidate]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCriticalTeacherShortageCandidate] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefCriticalTeacherShortageCandidate]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCriticalTeacherShortageCandidate] -SET [Description] = 'Yes', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCriticalTeacherShortageCandidate] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefCriticalTeacherShortageCandidate]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCriticalTeacherShortageCandidate] -SET [Description] = 'No', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCriticalTeacherShortageCandidate] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefCriticalTeacherShortageCandidate]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCriticalTeacherShortageCandidate] -SET [Description] = 'Not applicable', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefCTDLAudienceLevelType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCTDLAudienceLevelType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'ApprenticeshipCertificate') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ApprenticeshipCertificate', 'Apprenticeship Certificate', 'Credential earned through work-based learning and earn-and-learn models that meet standards and are applicable to industry trades and professions.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Apprenticeship Certificate', [Definition] = 'Credential earned through work-based learning and earn-and-learn models that meet standards and are applicable to industry trades and professions.', [SortOrder] = 1.00 WHERE [Code] = 'ApprenticeshipCertificate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'AssociateDegree') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssociateDegree', 'Associate Degree', 'College/university award for students typically completing the first one to two years of post secondary school education.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Associate Degree', [Definition] = 'College/university award for students typically completing the first one to two years of post secondary school education.', [SortOrder] = 2.00 WHERE [Code] = 'AssociateDegree' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'BachelorDegree') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BachelorDegree', 'Bachelor Degree', 'College/university award for students typically completing three to five years of education where course work and activities advance skills beyond those of the first one to two years of college/university study.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Bachelor Degree', [Definition] = 'College/university award for students typically completing three to five years of education where course work and activities advance skills beyond those of the first one to two years of college/university study.', [SortOrder] = 3.00 WHERE [Code] = 'BachelorDegree' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'Badge') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Badge', 'Badge', 'Recognition designed to be displayed as a marker of accomplishment, activity, achievement, skill, interest, association, or identity.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Badge', [Definition] = 'Recognition designed to be displayed as a marker of accomplishment, activity, achievement, skill, interest, association, or identity.', [SortOrder] = 4.00 WHERE [Code] = 'Badge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'Certificate') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Certificate', 'Certificate', 'Credential that designates requisite knowledge and skills of an occupation, profession, or academic program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Certificate', [Definition] = 'Credential that designates requisite knowledge and skills of an occupation, profession, or academic program.', [SortOrder] = 5.00 WHERE [Code] = 'Certificate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'Certification') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Certification', 'Certification', 'Time-limited, revocable, renewable credential awarded by an authoritative body for demonstrating the knowledge, skills, and abilities to perform specific tasks or an occupation.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Certification', [Definition] = 'Time-limited, revocable, renewable credential awarded by an authoritative body for demonstrating the knowledge, skills, and abilities to perform specific tasks or an occupation.', [SortOrder] = 6.00 WHERE [Code] = 'Certification' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'ConditionProfile') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ConditionProfile', 'Condition Profile', 'Entity describing a constraint, prerequisite, entry condition, or requirement.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Condition Profile', [Definition] = 'Entity describing a constraint, prerequisite, entry condition, or requirement.', [SortOrder] = 7.00 WHERE [Code] = 'ConditionProfile' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'Credential') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Credential', 'Credential', 'Qualification, achievement, personal or organizational quality, or aspect of an identity typically used to indicate suitability. The ceterms:Credential class is broadly defined to encompass credentials used across domains and communities of practice. The class should be used only when speaking of credentials in general. Subclasses of ceterms:Credential as defined by Credential Engine (or other communities) should be used when referencing specific types of credentials.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Credential', [Definition] = 'Qualification, achievement, personal or organizational quality, or aspect of an identity typically used to indicate suitability. The ceterms:Credential class is broadly defined to encompass credentials used across domains and communities of practice. The class should be used only when speaking of credentials in general. Subclasses of ceterms:Credential as defined by Credential Engine (or other communities) should be used when referencing specific types of credentials.', [SortOrder] = 8.00 WHERE [Code] = 'Credential' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'Degree') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Degree', 'Degree', 'Academic credential conferred upon completion of a program or course of study, typically over multiple years at a college or university.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Degree', [Definition] = 'Academic credential conferred upon completion of a program or course of study, typically over multiple years at a college or university.', [SortOrder] = 9.00 WHERE [Code] = 'Degree' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'DigitalBadge') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DigitalBadge', 'Digital Badge', 'Badge offered in digital form.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Digital Badge', [Definition] = 'Badge offered in digital form.', [SortOrder] = 10.00 WHERE [Code] = 'DigitalBadge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'Diploma') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Diploma', 'Diploma', 'Credential awarded by educational institutions for successful completion of a course of study or its equivalent.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Diploma', [Definition] = 'Credential awarded by educational institutions for successful completion of a course of study or its equivalent.', [SortOrder] = 11.00 WHERE [Code] = 'Diploma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'DoctoralDegree') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DoctoralDegree', 'Doctoral Degree', 'Highest credential award for students who have completed both a bachelor''s degree and a master''s degree or their equivalent as well as independent research and/or a significant project or paper.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Doctoral Degree', [Definition] = 'Highest credential award for students who have completed both a bachelor''s degree and a master''s degree or their equivalent as well as independent research and/or a significant project or paper.', [SortOrder] = 12.00 WHERE [Code] = 'DoctoralDegree' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'GeneralEducationDevelopment') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GeneralEducationDevelopment', 'General Education Development', 'Credential awarded by examination that demonstrates that an individual has acquired secondary school-level academic skills.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'General Education Development', [Definition] = 'Credential awarded by examination that demonstrates that an individual has acquired secondary school-level academic skills.', [SortOrder] = 13.00 WHERE [Code] = 'GeneralEducationDevelopment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'JourneymanCertificate') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JourneymanCertificate', 'Journeyman Certificate', 'Credential awarded to skilled workers on successful completion of an apprenticeship in industry trades and professions.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Journeyman Certificate', [Definition] = 'Credential awarded to skilled workers on successful completion of an apprenticeship in industry trades and professions.', [SortOrder] = 14.00 WHERE [Code] = 'JourneymanCertificate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'License') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('License', 'License', 'Credential awarded by a government agency that constitutes legal authority to do a specific job and/or utilize a specific item, system or infrastructure and are typically earned through some combination of degree or certificate attainment, certifications, assessments, work experience, and/or fees, and are time-limited and must be renewed periodically.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'License', [Definition] = 'Credential awarded by a government agency that constitutes legal authority to do a specific job and/or utilize a specific item, system or infrastructure and are typically earned through some combination of degree or certificate attainment, certifications, assessments, work experience, and/or fees, and are time-limited and must be renewed periodically.', [SortOrder] = 15.00 WHERE [Code] = 'License' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'MasterCertificate') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MasterCertificate', 'Master Certificate', 'Credential awarded upon demonstration through apprenticeship of the highest level of skills and performance in industry trades and professions.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Master Certificate', [Definition] = 'Credential awarded upon demonstration through apprenticeship of the highest level of skills and performance in industry trades and professions.', [SortOrder] = 16.00 WHERE [Code] = 'MasterCertificate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'MasterDegree') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MasterDegree', 'Master Degree', 'Credential awarded for a graduate level course of study where course work and activities advance skills beyond those of the bachelor''s degree or its equivalent.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Master Degree', [Definition] = 'Credential awarded for a graduate level course of study where course work and activities advance skills beyond those of the bachelor''s degree or its equivalent.', [SortOrder] = 17.00 WHERE [Code] = 'MasterDegree' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'MicroCredential') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MicroCredential', 'Micro Credential', 'Credential that addresses a subset of field-specific knowledge, skills, or competencies; often developmental with relationships to other micro-credentials and field credentials.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Micro Credential', [Definition] = 'Credential that addresses a subset of field-specific knowledge, skills, or competencies; often developmental with relationships to other micro-credentials and field credentials.', [SortOrder] = 18.00 WHERE [Code] = 'MicroCredential' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'OpenBadge') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OpenBadge', 'Open Badge', 'Visual symbol containing verifiable claims in accordance with the Open Badges specification and delivered digitally.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Open Badge', [Definition] = 'Visual symbol containing verifiable claims in accordance with the Open Badges specification and delivered digitally.', [SortOrder] = 19.00 WHERE [Code] = 'OpenBadge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'ProfessionalDoctorate') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ProfessionalDoctorate', 'Professional Doctorate', 'Doctoral degree conferred upon completion of a program providing the knowledge and skills for the recognition, credential, or license required for professional practice.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Professional Doctorate', [Definition] = 'Doctoral degree conferred upon completion of a program providing the knowledge and skills for the recognition, credential, or license required for professional practice.', [SortOrder] = 20.00 WHERE [Code] = 'ProfessionalDoctorate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'QualityAssuranceCredential') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('QualityAssuranceCredential', 'Quality Assurance Credential', 'Credential assuring that an organization, program, or awarded credential meets prescribed requirements and may include development and administration of qualifying examinations.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Quality Assurance Credential', [Definition] = 'Credential assuring that an organization, program, or awarded credential meets prescribed requirements and may include development and administration of qualifying examinations.', [SortOrder] = 21.00 WHERE [Code] = 'QualityAssuranceCredential' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'ResearchDoctorate') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ResearchDoctorate', 'Research Doctorate', 'Doctoral degree conferred for advanced work beyond the master level, including the preparation and defense of a thesis or dissertation based on original research, or the planning and execution of an original project demonstrating substantial artistic or scholarly achievement.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Research Doctorate', [Definition] = 'Doctoral degree conferred for advanced work beyond the master level, including the preparation and defense of a thesis or dissertation based on original research, or the planning and execution of an original project demonstrating substantial artistic or scholarly achievement.', [SortOrder] = 22.00 WHERE [Code] = 'ResearchDoctorate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLAudienceLevelType] WHERE [Code] = 'SecondarySchoolDiploma') BEGIN INSERT INTO dbo.[RefCTDLAudienceLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SecondarySchoolDiploma', 'Secondary School Diploma', 'Diploma awarded by secondary education institutions for successful completion of a secondary school program of study.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLAudienceLevelType] -SET [Description] = 'Secondary School Diploma', [Definition] = 'Diploma awarded by secondary education institutions for successful completion of a secondary school program of study.', [SortOrder] = 23.00 WHERE [Code] = 'SecondarySchoolDiploma' END -END - -PRINT N'Populate RefCTDLOrganizationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCTDLOrganizationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'AssessmentBody') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssessmentBody', 'Assessment Body', 'Primarily offers access to assessments for credentials as a service.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Assessment Body', [Definition] = 'Primarily offers access to assessments for credentials as a service.', [SortOrder] = NULL WHERE [Code] = 'AssessmentBody' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'Business') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Business', 'Business', 'An organization that primarily sells products or services and employs one or more individuals.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Business', [Definition] = 'An organization that primarily sells products or services and employs one or more individuals.', [SortOrder] = NULL WHERE [Code] = 'Business' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'BusinessAssociation') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BusinessAssociation', 'Business or Industry Association', 'A membership organization primarily engaged in promoting the interests of their business members and providing them with services that may involve the provision of education and credentialing services.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Business or Industry Association', [Definition] = 'A membership organization primarily engaged in promoting the interests of their business members and providing them with services that may involve the provision of education and credentialing services.', [SortOrder] = NULL WHERE [Code] = 'BusinessAssociation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'CertificationBody') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CertificationBody', 'Certification Body', 'An independent, third-party organization that operates a certification program. A certification body may or may not be governmental, and may or may not have regulatory authority.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Certification Body', [Definition] = 'An independent, third-party organization that operates a certification program. A certification body may or may not be governmental, and may or may not have regulatory authority.', [SortOrder] = NULL WHERE [Code] = 'CertificationBody' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'FourYear') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FourYear', 'Four-Year College', 'Authorized postsecondary institution that primarily offers bachelor or higher degrees, but may also award associate degrees. Includes free-standing medical, law or other first-professional schools, schools that offer postbaccalaureate certificates only, those that offer graduate programs only, etc.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Four-Year College', [Definition] = 'Authorized postsecondary institution that primarily offers bachelor or higher degrees, but may also award associate degrees. Includes free-standing medical, law or other first-professional schools, schools that offer postbaccalaureate certificates only, those that offer graduate programs only, etc.', [SortOrder] = NULL WHERE [Code] = 'FourYear' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'Government') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Government', 'Government Agency', 'An organization in the public sector at the federal, state or local levels. Includes quasi-governmental organizations, special districts (e.g., libraries), corrections organizations, etc., except college and school districts. Is also responsible for the oversight and administration of specific functions other than the military services.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Government Agency', [Definition] = 'An organization in the public sector at the federal, state or local levels. Includes quasi-governmental organizations, special districts (e.g., libraries), corrections organizations, etc., except college and school districts. Is also responsible for the oversight and administration of specific functions other than the military services.', [SortOrder] = NULL WHERE [Code] = 'Government' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'HighSchool') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HighSchool', 'High School', 'A secondary school providing instruction and educational services that do not focus primarily on career and technical education or alternative education.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'High School', [Definition] = 'A secondary school providing instruction and educational services that do not focus primarily on career and technical education or alternative education.', [SortOrder] = NULL WHERE [Code] = 'HighSchool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'LaborUnion') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LaborUnion', 'Labor Union', 'A membership organization of workers formed for the purpose of advancing its members'' interests in respect to wages, benefits, and working conditions.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Labor Union', [Definition] = 'A membership organization of workers formed for the purpose of advancing its members'' interests in respect to wages, benefits, and working conditions.', [SortOrder] = NULL WHERE [Code] = 'LaborUnion' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'Magnet') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Magnet', 'Magnet/Competitive Admissions School', 'A public school offering special instruction and programs not available elsewhere, designed to attract a more diverse student body from throughout a school district.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Magnet/Competitive Admissions School', [Definition] = 'A public school offering special instruction and programs not available elsewhere, designed to attract a more diverse student body from throughout a school district.', [SortOrder] = NULL WHERE [Code] = 'Magnet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'Military') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Military', 'Military', 'The armed services of a government entity.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Military', [Definition] = 'The armed services of a government entity.', [SortOrder] = NULL WHERE [Code] = 'Military' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'NonTraditional') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NonTraditional', 'Alternative/Non-Traditional School', 'A secondary school that: 1) addresses needs of students which cannot typically be met in a regular school; 2) provides nontraditional education; and 3) falls outside of the categories of regular, magnet/special program emphasis, or career and technical education.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Alternative/Non-Traditional School', [Definition] = 'A secondary school that: 1) addresses needs of students which cannot typically be met in a regular school; 2) provides nontraditional education; and 3) falls outside of the categories of regular, magnet/special program emphasis, or career and technical education.', [SortOrder] = NULL WHERE [Code] = 'NonTraditional' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'Postsecondary') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Postsecondary', 'Postsecondary Educational Institution', 'An organization such as a college or university: (1) whose sole purpose is to provide postsecondary education defined as the provision of a formal instructional program whose curriculum is designed primarily for students who are beyond the compulsory age for high school and (2) has the authority to award degrees. This includes programs whose purpose is academic, vocational, and continuing professional education.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Postsecondary Educational Institution', [Definition] = 'An organization such as a college or university: (1) whose sole purpose is to provide postsecondary education defined as the provision of a formal instructional program whose curriculum is designed primarily for students who are beyond the compulsory age for high school and (2) has the authority to award degrees. This includes programs whose purpose is academic, vocational, and continuing professional education.', [SortOrder] = NULL WHERE [Code] = 'Postsecondary' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'PrimarilyOnline') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrimarilyOnline', 'Primarily Online', 'An organization that primarily operates online.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Primarily Online', [Definition] = 'An organization that primarily operates online.', [SortOrder] = NULL WHERE [Code] = 'PrimarilyOnline' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'ProfessionalAssociation') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ProfessionalAssociation', 'Professional Association', 'A membership organization primarily engaged in promoting the interests of a particular profession, the interests of individuals engaged in that profession, and providing them with services that may involve the provision of education and credentialing services.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Professional Association', [Definition] = 'A membership organization primarily engaged in promoting the interests of a particular profession, the interests of individuals engaged in that profession, and providing them with services that may involve the provision of education and credentialing services.', [SortOrder] = NULL WHERE [Code] = 'ProfessionalAssociation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'QualityAssurance') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('QualityAssurance', 'Quality Assurance Body', 'External body that performs accreditation, endorsement, approval, and/or recognition of a credential issuer.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Quality Assurance Body', [Definition] = 'External body that performs accreditation, endorsement, approval, and/or recognition of a credential issuer.', [SortOrder] = NULL WHERE [Code] = 'QualityAssurance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'SecondarySchool') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SecondarySchool', 'Secondary School', 'A secondary school primarily providing education to students at the ninth grade or higher.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Secondary School', [Definition] = 'A secondary school primarily providing education to students at the ninth grade or higher.', [SortOrder] = NULL WHERE [Code] = 'SecondarySchool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'Technical') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Technical', 'Career and Technical School', 'A secondary school that focuses primarily on providing formal preparation for skilled, technical or professional occupations or careers.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Career and Technical School', [Definition] = 'A secondary school that focuses primarily on providing formal preparation for skilled, technical or professional occupations or careers.', [SortOrder] = NULL WHERE [Code] = 'Technical' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'TrainingProvider') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TrainingProvider', 'Education and Training Provider', 'An organization whose major purpose is to provide education and training services but is not a postsecondary education institution with the authority to award degrees. Includes community-based organizations, non-degree granting proprietary schools which are education and training providers that are recognized by states as schools and are Title IV eligible but do not award degrees, etc.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Education and Training Provider', [Definition] = 'An organization whose major purpose is to provide education and training services but is not a postsecondary education institution with the authority to award degrees. Includes community-based organizations, non-degree granting proprietary schools which are education and training providers that are recognized by states as schools and are Title IV eligible but do not award degrees, etc.', [SortOrder] = NULL WHERE [Code] = 'TrainingProvider' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'TwoYear') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TwoYear', 'Two-Year College', 'Authorized postsecondary institution that primarily offers associate degrees, but may also award higher degrees.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Two-Year College', [Definition] = 'Authorized postsecondary institution that primarily offers associate degrees, but may also award higher degrees.', [SortOrder] = NULL WHERE [Code] = 'TwoYear' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCTDLOrganizationType] WHERE [Code] = 'Vendor') BEGIN INSERT INTO dbo.[RefCTDLOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Vendor', 'Vendor', 'Sells, maintains, and issues credentials for its own products and services for public access and use.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCTDLOrganizationType] -SET [Description] = 'Vendor', [Definition] = 'Sells, maintains, and issues credentials for its own products and services for public access and use.', [SortOrder] = NULL WHERE [Code] = 'Vendor' END -END - -PRINT N'Populate RefCteGraduationRateInclusion table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCteGraduationRateInclusion]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCteGraduationRateInclusion] WHERE [Code] = 'IncludedAsGraduated') BEGIN INSERT INTO dbo.[RefCteGraduationRateInclusion]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IncludedAsGraduated', 'Included in computation as graduated ', 'CTE concentrators are included in the state''s computation of its graduation rate as graduated.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCteGraduationRateInclusion] -SET [Description] = 'Included in computation as graduated ', [Definition] = 'CTE concentrators are included in the state''s computation of its graduation rate as graduated.', [SortOrder] = 1.00 WHERE [Code] = 'IncludedAsGraduated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCteGraduationRateInclusion] WHERE [Code] = 'NotIncludedAsGraduated') BEGIN INSERT INTO dbo.[RefCteGraduationRateInclusion]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotIncludedAsGraduated', 'Included in computation as not graduated.', 'CTE concentrators are included in the state''s computation of its graduation rate as not graduated.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCteGraduationRateInclusion] -SET [Description] = 'Included in computation as not graduated.', [Definition] = 'CTE concentrators are included in the state''s computation of its graduation rate as not graduated.', [SortOrder] = 2.00 WHERE [Code] = 'NotIncludedAsGraduated' END -END - -PRINT N'Populate RefCteNonTraditionalGenderStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCteNonTraditionalGenderStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCteNonTraditionalGenderStatus] WHERE [Code] = 'Underrepresented') BEGIN INSERT INTO dbo.[RefCteNonTraditionalGenderStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Underrepresented', 'Members of an underrepresented gender group', 'CTE participants were members of an underrepresented gender group.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCteNonTraditionalGenderStatus] -SET [Description] = 'Members of an underrepresented gender group', [Definition] = 'CTE participants were members of an underrepresented gender group.', [SortOrder] = 1.00 WHERE [Code] = 'Underrepresented' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCteNonTraditionalGenderStatus] WHERE [Code] = 'NotUnderrepresented') BEGIN INSERT INTO dbo.[RefCteNonTraditionalGenderStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotUnderrepresented', 'Not members of an underrepresented gender group', 'CTE participants were not members of an underrepresented gender group.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCteNonTraditionalGenderStatus] -SET [Description] = 'Not members of an underrepresented gender group', [Definition] = 'CTE participants were not members of an underrepresented gender group.', [SortOrder] = 2.00 WHERE [Code] = 'NotUnderrepresented' END -END - -PRINT N'Populate RefCurriculumFrameworkType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefCurriculumFrameworkType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCurriculumFrameworkType] WHERE [Code] = 'LEA') BEGIN INSERT INTO dbo.[RefCurriculumFrameworkType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LEA', 'Local Education Agency (LEA) curriculum framework', 'A Local Education Agency (LEA) curriculum framework is the standard curriculum used for this course.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCurriculumFrameworkType] -SET [Description] = 'Local Education Agency (LEA) curriculum framework', [Definition] = 'A Local Education Agency (LEA) curriculum framework is the standard curriculum used for this course.', [SortOrder] = 1.00 WHERE [Code] = 'LEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCurriculumFrameworkType] WHERE [Code] = 'NationalStandard') BEGIN INSERT INTO dbo.[RefCurriculumFrameworkType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NationalStandard', 'National curriculum standard', 'A national curriculum standard is the standard curriculum used for this course.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCurriculumFrameworkType] -SET [Description] = 'National curriculum standard', [Definition] = 'A national curriculum standard is the standard curriculum used for this course.', [SortOrder] = 2.00 WHERE [Code] = 'NationalStandard' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCurriculumFrameworkType] WHERE [Code] = 'PrivateOrReligious') BEGIN INSERT INTO dbo.[RefCurriculumFrameworkType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrivateOrReligious', 'Private, religious curriculum', 'A private, religious curriculum is the standard curriculum used for this course.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCurriculumFrameworkType] -SET [Description] = 'Private, religious curriculum', [Definition] = 'A private, religious curriculum is the standard curriculum used for this course.', [SortOrder] = 3.00 WHERE [Code] = 'PrivateOrReligious' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCurriculumFrameworkType] WHERE [Code] = 'School') BEGIN INSERT INTO dbo.[RefCurriculumFrameworkType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('School', 'School curriculum framework', 'A school curriculum framework is the standard curriculum used for this course.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCurriculumFrameworkType] -SET [Description] = 'School curriculum framework', [Definition] = 'A school curriculum framework is the standard curriculum used for this course.', [SortOrder] = 4.00 WHERE [Code] = 'School' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCurriculumFrameworkType] WHERE [Code] = 'State') BEGIN INSERT INTO dbo.[RefCurriculumFrameworkType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('State', 'State curriculum framework', 'A state curriculum framework is the standard curriculum used for this course.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCurriculumFrameworkType] -SET [Description] = 'State curriculum framework', [Definition] = 'A state curriculum framework is the standard curriculum used for this course.', [SortOrder] = 5.00 WHERE [Code] = 'State' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefCurriculumFrameworkType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefCurriculumFrameworkType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The standard curriculum used for this course is in a category not yet defined by CEDS.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCurriculumFrameworkType] -SET [Description] = 'Other', [Definition] = 'The standard curriculum used for this course is in a category not yet defined by CEDS.', [SortOrder] = 6.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefDataCollectionStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDataCollectionStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDataCollectionStatus] WHERE [Code] = 'Certified') BEGIN INSERT INTO dbo.[RefDataCollectionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Certified', 'Certified', 'A person or organization with authority over this collection or this process indicated the collection was complete and accurate to the best of their knowledge.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDataCollectionStatus] -SET [Description] = 'Certified', [Definition] = 'A person or organization with authority over this collection or this process indicated the collection was complete and accurate to the best of their knowledge.', [SortOrder] = 1.00 WHERE [Code] = 'Certified' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDataCollectionStatus] WHERE [Code] = 'Decertified') BEGIN INSERT INTO dbo.[RefDataCollectionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Decertified', 'Decertified', 'A person or organization with authority over this collection or this process indicated they wish to reverse the decision that was previously indicated through the status of Certified.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDataCollectionStatus] -SET [Description] = 'Decertified', [Definition] = 'A person or organization with authority over this collection or this process indicated they wish to reverse the decision that was previously indicated through the status of Certified.', [SortOrder] = 2.00 WHERE [Code] = 'Decertified' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDataCollectionStatus] WHERE [Code] = 'Deleted') BEGIN INSERT INTO dbo.[RefDataCollectionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Deleted', 'Deleted', 'This collection is no longer valid.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDataCollectionStatus] -SET [Description] = 'Deleted', [Definition] = 'This collection is no longer valid.', [SortOrder] = 3.00 WHERE [Code] = 'Deleted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDataCollectionStatus] WHERE [Code] = 'InProcess') BEGIN INSERT INTO dbo.[RefDataCollectionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InProcess', 'In Process', 'The data in this collection are potentially transactional in nature.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDataCollectionStatus] -SET [Description] = 'In Process', [Definition] = 'The data in this collection are potentially transactional in nature.', [SortOrder] = 4.00 WHERE [Code] = 'InProcess' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDataCollectionStatus] WHERE [Code] = 'Published') BEGIN INSERT INTO dbo.[RefDataCollectionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Published', 'Published', 'The data in this collection is in use or was used for federal, state, or local reporting or to fulfill research or data request purposes.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDataCollectionStatus] -SET [Description] = 'Published', [Definition] = 'The data in this collection is in use or was used for federal, state, or local reporting or to fulfill research or data request purposes.', [SortOrder] = 5.00 WHERE [Code] = 'Published' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDataCollectionStatus] WHERE [Code] = 'Retired') BEGIN INSERT INTO dbo.[RefDataCollectionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Retired', 'Retired', 'The data in this collection was once valid for use and is no longer valid for use per the requirements defined by the organization responsible for the collection.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDataCollectionStatus] -SET [Description] = 'Retired', [Definition] = 'The data in this collection was once valid for use and is no longer valid for use per the requirements defined by the organization responsible for the collection.', [SortOrder] = 6.00 WHERE [Code] = 'Retired' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDataCollectionStatus] WHERE [Code] = 'Submitted') BEGIN INSERT INTO dbo.[RefDataCollectionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Submitted', 'Submitted', 'The data in this collection are not transactional in nature but are complete and do not require any formal certification process.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDataCollectionStatus] -SET [Description] = 'Submitted', [Definition] = 'The data in this collection are not transactional in nature but are complete and do not require any formal certification process.', [SortOrder] = 7.00 WHERE [Code] = 'Submitted' END -END - -PRINT N'Populate RefDegreeOrCertificateType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDegreeOrCertificateType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '73063') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73063', 'Adult education certification, endorsement, or degree', 'Adult education certification, endorsement, or degree is the type of degree or certificate earned by a person.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'Adult education certification, endorsement, or degree', [Definition] = 'Adult education certification, endorsement, or degree is the type of degree or certificate earned by a person.', [SortOrder] = 1.00 WHERE [Code] = '73063' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '01050') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01050', 'Associate''s degree (two years or more)', 'Associate''s degree (two years or more) is the type of degree or certificate earned by a person.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'Associate''s degree (two years or more)', [Definition] = 'Associate''s degree (two years or more) is the type of degree or certificate earned by a person.', [SortOrder] = 2.00 WHERE [Code] = '01050' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '01051') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01051', 'Bachelor''s (Baccalaureate) degree', 'Bachelor''s (Baccalaureate) degree is the type of degree or certificate earned by a person.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'Bachelor''s (Baccalaureate) degree', [Definition] = 'Bachelor''s (Baccalaureate) degree is the type of degree or certificate earned by a person.', [SortOrder] = 3.00 WHERE [Code] = '01051' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '01057') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01057', 'Doctoral (Doctor''s) degree', 'Doctoral (Doctor''s) degree is the type of degree or certificate earned by a person.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'Doctoral (Doctor''s) degree', [Definition] = 'Doctoral (Doctor''s) degree is the type of degree or certificate earned by a person.', [SortOrder] = 4.00 WHERE [Code] = '01057' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '01053') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01053', 'First-professional degree', 'First-professional degree is the type of degree or certificate earned by a person.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'First-professional degree', [Definition] = 'First-professional degree is the type of degree or certificate earned by a person.', [SortOrder] = 5.00 WHERE [Code] = '01053' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '01047') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01047', 'Formal award, certificate or diploma (less than one year)', 'Formal award, certificate or diploma (less than one year) is the type of degree or certificate earned by a person.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'Formal award, certificate or diploma (less than one year)', [Definition] = 'Formal award, certificate or diploma (less than one year) is the type of degree or certificate earned by a person.', [SortOrder] = 6.00 WHERE [Code] = '01047' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '01048') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01048', 'Formal award, certificate or diploma (more than or equal to one year)', 'Formal award, certificate or diploma (more than or equal to one year) is the type of degree or certificate earned by a person.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'Formal award, certificate or diploma (more than or equal to one year)', [Definition] = 'Formal award, certificate or diploma (more than or equal to one year) is the type of degree or certificate earned by a person.', [SortOrder] = 7.00 WHERE [Code] = '01048' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '01052') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01052', 'Graduate certificate', 'Graduate certificate is the type of degree or certificate earned by a person.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'Graduate certificate', [Definition] = 'Graduate certificate is the type of degree or certificate earned by a person.', [SortOrder] = 8.00 WHERE [Code] = '01052' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '01045') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01045', 'High school diploma or the equivalent (e.g., GED or recognized home school)', 'High school diploma or the equivalent (e.g., GED or recognized home school) is the type of degree or certificate earned by a person.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'High school diploma or the equivalent (e.g., GED or recognized home school)', [Definition] = 'High school diploma or the equivalent (e.g., GED or recognized home school) is the type of degree or certificate earned by a person.', [SortOrder] = 9.00 WHERE [Code] = '01045' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '01054') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01054', 'Master''s degree (e.g., M.A., M.S., M. Eng., M.Ed., M.S.W., M.B.A., M.L.S.)', 'Master''s degree (e.g., M.A., M.S., M. Eng., M.Ed., M.S.W., M.B.A., M.L.S.) is the type of degree or certificate earned by a person.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'Master''s degree (e.g., M.A., M.S., M. Eng., M.Ed., M.S.W., M.B.A., M.L.S.)', [Definition] = 'Master''s degree (e.g., M.A., M.S., M. Eng., M.Ed., M.S.W., M.B.A., M.L.S.) is the type of degree or certificate earned by a person.', [SortOrder] = 10.00 WHERE [Code] = '01054' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '01056') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01056', 'Post-professional degree', 'Post-professional degree is the type of degree or certificate earned by a person.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'Post-professional degree', [Definition] = 'Post-professional degree is the type of degree or certificate earned by a person.', [SortOrder] = 11.00 WHERE [Code] = '01056' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '01049') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01049', 'Some college but no degree', 'Some college but no degree is the type of degree or certificate earned by a person.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'Some college but no degree', [Definition] = 'Some college but no degree is the type of degree or certificate earned by a person.', [SortOrder] = 12.00 WHERE [Code] = '01049' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '01055') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01055', 'Specialist''s degree (e.g., Ed.S.)', 'Specialist''s degree (e.g., Ed.S.) is the type of degree or certificate earned by a person.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'Specialist''s degree (e.g., Ed.S.)', [Definition] = 'Specialist''s degree (e.g., Ed.S.) is the type of degree or certificate earned by a person.', [SortOrder] = 13.00 WHERE [Code] = '01055' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '00819') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00819', 'Career and Technical Education certificate', 'Career and Technical Education certificate is the type of degree or certificate earned by a person.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'Career and Technical Education certificate', [Definition] = 'Career and Technical Education certificate is the type of degree or certificate earned by a person.', [SortOrder] = 14.00 WHERE [Code] = '00819' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDegreeOrCertificateType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefDegreeOrCertificateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is the type of degree or certificate earned by a person.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDegreeOrCertificateType] -SET [Description] = 'Other', [Definition] = 'Other is the type of degree or certificate earned by a person.', [SortOrder] = 15.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefDentalInsuranceCoverageType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDentalInsuranceCoverageType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDentalInsuranceCoverageType] WHERE [Code] = 'NonWorkplace') BEGIN INSERT INTO dbo.[RefDentalInsuranceCoverageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NonWorkplace', 'Non-workplace or personal', 'Non-workplace or personal insurance coverage.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDentalInsuranceCoverageType] -SET [Description] = 'Non-workplace or personal', [Definition] = 'Non-workplace or personal insurance coverage.', [SortOrder] = 1.00 WHERE [Code] = 'NonWorkplace' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDentalInsuranceCoverageType] WHERE [Code] = 'Workplace') BEGIN INSERT INTO dbo.[RefDentalInsuranceCoverageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Workplace', 'Workplace', 'Workplace insurance coverage.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDentalInsuranceCoverageType] -SET [Description] = 'Workplace', [Definition] = 'Workplace insurance coverage.', [SortOrder] = 2.00 WHERE [Code] = 'Workplace' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDentalInsuranceCoverageType] WHERE [Code] = 'Medicaid') BEGIN INSERT INTO dbo.[RefDentalInsuranceCoverageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Medicaid', 'Medicaid', 'Medicaid insurance coverage.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDentalInsuranceCoverageType] -SET [Description] = 'Medicaid', [Definition] = 'Medicaid insurance coverage.', [SortOrder] = 3.00 WHERE [Code] = 'Medicaid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDentalInsuranceCoverageType] WHERE [Code] = 'CHIP') BEGIN INSERT INTO dbo.[RefDentalInsuranceCoverageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CHIP', 'Children''s health insurance program', 'Children''s health insurance program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDentalInsuranceCoverageType] -SET [Description] = 'Children''s health insurance program', [Definition] = 'Children''s health insurance program.', [SortOrder] = 4.00 WHERE [Code] = 'CHIP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDentalInsuranceCoverageType] WHERE [Code] = 'StateOnlyFunded') BEGIN INSERT INTO dbo.[RefDentalInsuranceCoverageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateOnlyFunded', 'State-only funded insurance', 'State-only funded insurance coverage.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDentalInsuranceCoverageType] -SET [Description] = 'State-only funded insurance', [Definition] = 'State-only funded insurance coverage.', [SortOrder] = 5.00 WHERE [Code] = 'StateOnlyFunded' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDentalInsuranceCoverageType] WHERE [Code] = 'SSI') BEGIN INSERT INTO dbo.[RefDentalInsuranceCoverageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SSI', 'Supplemental security income', 'Supplemental security income insurance coverage.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDentalInsuranceCoverageType] -SET [Description] = 'Supplemental security income', [Definition] = 'Supplemental security income insurance coverage.', [SortOrder] = 6.00 WHERE [Code] = 'SSI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDentalInsuranceCoverageType] WHERE [Code] = 'Military') BEGIN INSERT INTO dbo.[RefDentalInsuranceCoverageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Military', 'Military medical', 'Military medical insurance coverage.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDentalInsuranceCoverageType] -SET [Description] = 'Military medical', [Definition] = 'Military medical insurance coverage.', [SortOrder] = 8.00 WHERE [Code] = 'Military' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDentalInsuranceCoverageType] WHERE [Code] = 'Veteran') BEGIN INSERT INTO dbo.[RefDentalInsuranceCoverageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Veteran', 'Veteran''s medical', 'Veteran''s medical insurance coverage.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDentalInsuranceCoverageType] -SET [Description] = 'Veteran''s medical', [Definition] = 'Veteran''s medical insurance coverage.', [SortOrder] = 10.00 WHERE [Code] = 'Veteran' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDentalInsuranceCoverageType] WHERE [Code] = 'None') BEGIN INSERT INTO dbo.[RefDentalInsuranceCoverageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('None', 'None', 'None insurance coverage.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDentalInsuranceCoverageType] -SET [Description] = 'None', [Definition] = 'None insurance coverage.', [SortOrder] = 20.00 WHERE [Code] = 'None' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDentalInsuranceCoverageType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefDentalInsuranceCoverageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other insurance coverage.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDentalInsuranceCoverageType] -SET [Description] = 'Other', [Definition] = 'Other insurance coverage.', [SortOrder] = 21.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefDentalScreeningStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDentalScreeningStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDentalScreeningStatus] WHERE [Code] = 'NoTreatmentNeeded') BEGIN INSERT INTO dbo.[RefDentalScreeningStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoTreatmentNeeded', 'No Treatment Needed', 'No Treatment Needed is the condition of a person''s mouth or oral cavity.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDentalScreeningStatus] -SET [Description] = 'No Treatment Needed', [Definition] = 'No Treatment Needed is the condition of a person''s mouth or oral cavity.', [SortOrder] = 1.00 WHERE [Code] = 'NoTreatmentNeeded' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDentalScreeningStatus] WHERE [Code] = 'TreatmentNeeded') BEGIN INSERT INTO dbo.[RefDentalScreeningStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TreatmentNeeded', 'Treatment Needed', 'Treatment Needed is the condition of a person''s mouth or oral cavity.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDentalScreeningStatus] -SET [Description] = 'Treatment Needed', [Definition] = 'Treatment Needed is the condition of a person''s mouth or oral cavity.', [SortOrder] = 2.00 WHERE [Code] = 'TreatmentNeeded' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDentalScreeningStatus] WHERE [Code] = 'TreatmentReceived') BEGIN INSERT INTO dbo.[RefDentalScreeningStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TreatmentReceived', 'Treatment Received', 'Treatment Received is the condition of a person''s mouth or oral cavity.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDentalScreeningStatus] -SET [Description] = 'Treatment Received', [Definition] = 'Treatment Received is the condition of a person''s mouth or oral cavity.', [SortOrder] = 3.00 WHERE [Code] = 'TreatmentReceived' END -END - -PRINT N'Populate RefDependencyStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDependencyStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDependencyStatus] WHERE [Code] = 'Dependent') BEGIN INSERT INTO dbo.[RefDependencyStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Dependent', 'Dependent', 'The person is classified as dependent with regards to eligibility for Title IV Federal Student aid.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDependencyStatus] -SET [Description] = 'Dependent', [Definition] = 'The person is classified as dependent with regards to eligibility for Title IV Federal Student aid.', [SortOrder] = 1.00 WHERE [Code] = 'Dependent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDependencyStatus] WHERE [Code] = 'Independent') BEGIN INSERT INTO dbo.[RefDependencyStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Independent', 'Independent', 'The person is classified as independent with regards to eligibility for Title IV Federal Student aid.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDependencyStatus] -SET [Description] = 'Independent', [Definition] = 'The person is classified as independent with regards to eligibility for Title IV Federal Student aid.', [SortOrder] = 2.00 WHERE [Code] = 'Independent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDependencyStatus] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefDependencyStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'The person''s classification as dependent or independent with regards to eligibility for Title IV Federal Student aid is unknown', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDependencyStatus] -SET [Description] = 'Unknown', [Definition] = 'The person''s classification as dependent or independent with regards to eligibility for Title IV Federal Student aid is unknown', [SortOrder] = 3.00 WHERE [Code] = 'Unknown' END -END - -PRINT N'Populate RefDevelopmentalEducationReferralStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDevelopmentalEducationReferralStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEducationReferralStatus] WHERE [Code] = 'CollegeReady') BEGIN INSERT INTO dbo.[RefDevelopmentalEducationReferralStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CollegeReady', 'College Ready', 'College Ready is the status of a student''s referral to or placement into developmental education.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEducationReferralStatus] -SET [Description] = 'College Ready', [Definition] = 'College Ready is the status of a student''s referral to or placement into developmental education.', [SortOrder] = 1.00 WHERE [Code] = 'CollegeReady' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEducationReferralStatus] WHERE [Code] = 'NotCollegeReady') BEGIN INSERT INTO dbo.[RefDevelopmentalEducationReferralStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotCollegeReady', 'Not College Ready', 'Not College Ready is the status of a student''s referral to or placement into developmental education.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEducationReferralStatus] -SET [Description] = 'Not College Ready', [Definition] = 'Not College Ready is the status of a student''s referral to or placement into developmental education.', [SortOrder] = 2.00 WHERE [Code] = 'NotCollegeReady' END -END - -PRINT N'Populate RefDevelopmentalEducationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDevelopmentalEducationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEducationType] WHERE [Code] = 'DevelopmentalMath') BEGIN INSERT INTO dbo.[RefDevelopmentalEducationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DevelopmentalMath', 'Developmental Math', 'Developmental Math is the category of developmental education.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEducationType] -SET [Description] = 'Developmental Math', [Definition] = 'Developmental Math is the category of developmental education.', [SortOrder] = 1.00 WHERE [Code] = 'DevelopmentalMath' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEducationType] WHERE [Code] = 'DevelopmentalEnglish') BEGIN INSERT INTO dbo.[RefDevelopmentalEducationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DevelopmentalEnglish', 'Developmental English', 'Developmental English is the category of developmental education.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEducationType] -SET [Description] = 'Developmental English', [Definition] = 'Developmental English is the category of developmental education.', [SortOrder] = 3.00 WHERE [Code] = 'DevelopmentalEnglish' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEducationType] WHERE [Code] = 'DevelopmentalReading') BEGIN INSERT INTO dbo.[RefDevelopmentalEducationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DevelopmentalReading', 'Developmental Reading', 'Developmental Reading is the category of developmental education.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEducationType] -SET [Description] = 'Developmental Reading', [Definition] = 'Developmental Reading is the category of developmental education.', [SortOrder] = 5.00 WHERE [Code] = 'DevelopmentalReading' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEducationType] WHERE [Code] = 'DevelopmentalEnglishReading') BEGIN INSERT INTO dbo.[RefDevelopmentalEducationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DevelopmentalEnglishReading', 'Developmental English/Reading', 'Developmental English/Reading is the category of developmental education.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEducationType] -SET [Description] = 'Developmental English/Reading', [Definition] = 'Developmental English/Reading is the category of developmental education.', [SortOrder] = 7.00 WHERE [Code] = 'DevelopmentalEnglishReading' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEducationType] WHERE [Code] = 'DevelopmentalOther') BEGIN INSERT INTO dbo.[RefDevelopmentalEducationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DevelopmentalOther', 'Developmental Other', 'Developmental Other is the category of developmental education.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEducationType] -SET [Description] = 'Developmental Other', [Definition] = 'Developmental Other is the category of developmental education.', [SortOrder] = 9.00 WHERE [Code] = 'DevelopmentalOther' END -END - -PRINT N'Populate RefDevelopmentalEvaluationFinding table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDevelopmentalEvaluationFinding]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEvaluationFinding] WHERE [Code] = 'Adaptive') BEGIN INSERT INTO dbo.[RefDevelopmentalEvaluationFinding]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Adaptive', 'Adaptive development delay', 'Adaptive development delay is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEvaluationFinding] -SET [Description] = 'Adaptive development delay', [Definition] = 'Adaptive development delay is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', [SortOrder] = 1.00 WHERE [Code] = 'Adaptive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEvaluationFinding] WHERE [Code] = 'Cognitive') BEGIN INSERT INTO dbo.[RefDevelopmentalEvaluationFinding]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Cognitive', 'Cognitive development delay', 'Cognitive development delay is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEvaluationFinding] -SET [Description] = 'Cognitive development delay', [Definition] = 'Cognitive development delay is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', [SortOrder] = 2.00 WHERE [Code] = 'Cognitive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEvaluationFinding] WHERE [Code] = 'Communication') BEGIN INSERT INTO dbo.[RefDevelopmentalEvaluationFinding]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Communication', 'Communication development delay', 'Communication development delay is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEvaluationFinding] -SET [Description] = 'Communication development delay', [Definition] = 'Communication development delay is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', [SortOrder] = 3.00 WHERE [Code] = 'Communication' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEvaluationFinding] WHERE [Code] = 'NoDelay') BEGIN INSERT INTO dbo.[RefDevelopmentalEvaluationFinding]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoDelay', 'No delay, needs follow-up', 'No delay, needs follow-up is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEvaluationFinding] -SET [Description] = 'No delay, needs follow-up', [Definition] = 'No delay, needs follow-up is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', [SortOrder] = 4.00 WHERE [Code] = 'NoDelay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEvaluationFinding] WHERE [Code] = 'None') BEGIN INSERT INTO dbo.[RefDevelopmentalEvaluationFinding]([Code], [Description], [Definition], [SortOrder]) -VALUES ('None', 'None', 'No finding was determined by the procedure used by appropriate qualified personnel.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEvaluationFinding] -SET [Description] = 'None', [Definition] = 'No finding was determined by the procedure used by appropriate qualified personnel.', [SortOrder] = 6.00 WHERE [Code] = 'None' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEvaluationFinding] WHERE [Code] = 'CarnegieUnits') BEGIN INSERT INTO dbo.[RefDevelopmentalEvaluationFinding]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CarnegieUnits', 'Carnegie Units ', 'Carnegie Units is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEvaluationFinding] -SET [Description] = 'Carnegie Units ', [Definition] = 'Carnegie Units is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', [SortOrder] = 7.00 WHERE [Code] = 'CarnegieUnits' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEvaluationFinding] WHERE [Code] = 'Physical') BEGIN INSERT INTO dbo.[RefDevelopmentalEvaluationFinding]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Physical', 'Physical development delay', 'Physical development delay is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEvaluationFinding] -SET [Description] = 'Physical development delay', [Definition] = 'Physical development delay is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', [SortOrder] = 8.00 WHERE [Code] = 'Physical' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEvaluationFinding] WHERE [Code] = 'SocialEmotional') BEGIN INSERT INTO dbo.[RefDevelopmentalEvaluationFinding]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SocialEmotional', 'Social or emotional development delay', 'Social or emotional development delay is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEvaluationFinding] -SET [Description] = 'Social or emotional development delay', [Definition] = 'Social or emotional development delay is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', [SortOrder] = 9.00 WHERE [Code] = 'SocialEmotional' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEvaluationFinding] WHERE [Code] = 'NoDelayDetected') BEGIN INSERT INTO dbo.[RefDevelopmentalEvaluationFinding]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoDelayDetected', 'No delay detected', 'No child developmental delay/disability was identified by procedure used by appropriate qualified personnel.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEvaluationFinding] -SET [Description] = 'No delay detected', [Definition] = 'No child developmental delay/disability was identified by procedure used by appropriate qualified personnel.', [SortOrder] = 10.00 WHERE [Code] = 'NoDelayDetected' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEvaluationFinding] WHERE [Code] = 'EstablishedCondition') BEGIN INSERT INTO dbo.[RefDevelopmentalEvaluationFinding]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EstablishedCondition', 'Established condition', 'Established condition is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEvaluationFinding] -SET [Description] = 'Established condition', [Definition] = 'Established condition is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', [SortOrder] = 11.00 WHERE [Code] = 'EstablishedCondition' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDevelopmentalEvaluationFinding] WHERE [Code] = 'AtRisk') BEGIN INSERT INTO dbo.[RefDevelopmentalEvaluationFinding]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AtRisk', 'At-risk of developing delay', 'At-risk of developing delay is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDevelopmentalEvaluationFinding] -SET [Description] = 'At-risk of developing delay', [Definition] = 'At-risk of developing delay is the child developmental delay/disability determined by procedure used by appropriate qualified personnel.', [SortOrder] = 12.00 WHERE [Code] = 'AtRisk' END -END - -PRINT N'Populate RefDirectoryInformationBlockStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDirectoryInformationBlockStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDirectoryInformationBlockStatus] WHERE [Code] = 'Block') BEGIN INSERT INTO dbo.[RefDirectoryInformationBlockStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Block', 'Block', 'The person requested a Family Education Rights and Privacy Act (FERPA) block to withhold the release of the person''s directory information.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDirectoryInformationBlockStatus] -SET [Description] = 'Block', [Definition] = 'The person requested a Family Education Rights and Privacy Act (FERPA) block to withhold the release of the person''s directory information.', [SortOrder] = 1.00 WHERE [Code] = 'Block' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDirectoryInformationBlockStatus] WHERE [Code] = 'RemoveBlock') BEGIN INSERT INTO dbo.[RefDirectoryInformationBlockStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RemoveBlock', 'Remove Block', 'The person requested removal of a Family Education Rights and Privacy Act (FERPA) block to withhold the release of the person''s directory information.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDirectoryInformationBlockStatus] -SET [Description] = 'Remove Block', [Definition] = 'The person requested removal of a Family Education Rights and Privacy Act (FERPA) block to withhold the release of the person''s directory information.', [SortOrder] = 2.00 WHERE [Code] = 'RemoveBlock' END -END - -PRINT N'Populate RefDisabilityConditionStatusCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDisabilityConditionStatusCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionStatusCode] WHERE [Code] = 'Permanent') BEGIN INSERT INTO dbo.[RefDisabilityConditionStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Permanent', 'Disability has been confirmed as a permanent disability', 'A person''s disability has been confirmed as a permanent disability.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionStatusCode] -SET [Description] = 'Disability has been confirmed as a permanent disability', [Definition] = 'A person''s disability has been confirmed as a permanent disability.', [SortOrder] = 1.00 WHERE [Code] = 'Permanent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionStatusCode] WHERE [Code] = 'Temporary') BEGIN INSERT INTO dbo.[RefDisabilityConditionStatusCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Temporary', 'Disability has been confirmed as a temporary disability', 'A person''s disability has been confirmed as a temporary disability.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionStatusCode] -SET [Description] = 'Disability has been confirmed as a temporary disability', [Definition] = 'A person''s disability has been confirmed as a temporary disability.', [SortOrder] = 2.00 WHERE [Code] = 'Temporary' END -END - -PRINT N'Populate RefDisabilityConditionType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDisabilityConditionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionType] WHERE [Code] = '00') BEGIN INSERT INTO dbo.[RefDisabilityConditionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00', 'No disability or impairment known or reported', 'No disability or impairment is known or reported for the person.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionType] -SET [Description] = 'No disability or impairment known or reported', [Definition] = 'No disability or impairment is known or reported for the person.', [SortOrder] = 2.00 WHERE [Code] = '00' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionType] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefDisabilityConditionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Blindness or Visual Impairment', 'A person''s disability or impairment is categorized as Blindness or Visual Impairment.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionType] -SET [Description] = 'Blindness or Visual Impairment', [Definition] = 'A person''s disability or impairment is categorized as Blindness or Visual Impairment.', [SortOrder] = 4.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionType] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefDisabilityConditionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Cerebral Palsy', 'A person''s disability or impairment is categorized as Cerebral Palsy.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionType] -SET [Description] = 'Cerebral Palsy', [Definition] = 'A person''s disability or impairment is categorized as Cerebral Palsy.', [SortOrder] = 6.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionType] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefDisabilityConditionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Chronic Illness', 'A person''s disability or impairment is categorized as Chronic Illness.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionType] -SET [Description] = 'Chronic Illness', [Definition] = 'A person''s disability or impairment is categorized as Chronic Illness.', [SortOrder] = 8.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionType] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefDisabilityConditionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Deafness or Hearing Impairment', 'A person''s disability or impairment is categorized as Deafness or Hearing Impairment.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionType] -SET [Description] = 'Deafness or Hearing Impairment', [Definition] = 'A person''s disability or impairment is categorized as Deafness or Hearing Impairment.', [SortOrder] = 10.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionType] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefDisabilityConditionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Drug or Alcohol Addiction', 'A person''s disability or impairment is categorized as Drug or Alcohol Addiction.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionType] -SET [Description] = 'Drug or Alcohol Addiction', [Definition] = 'A person''s disability or impairment is categorized as Drug or Alcohol Addiction.', [SortOrder] = 12.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionType] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefDisabilityConditionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Emotionally/Psychologically Disabled: e.g., schizophrenia or depression', 'A person''s disability or impairment is categorized as Emotionally/Psychologically Disabled: e.g., schizophrenia or depression.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionType] -SET [Description] = 'Emotionally/Psychologically Disabled: e.g., schizophrenia or depression', [Definition] = 'A person''s disability or impairment is categorized as Emotionally/Psychologically Disabled: e.g., schizophrenia or depression.', [SortOrder] = 14.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionType] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefDisabilityConditionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Epilepsy or Seizure Disorders', 'A person''s disability or impairment is categorized as Epilepsy or Seizure Disorders.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionType] -SET [Description] = 'Epilepsy or Seizure Disorders', [Definition] = 'A person''s disability or impairment is categorized as Epilepsy or Seizure Disorders.', [SortOrder] = 16.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionType] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefDisabilityConditionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Intellectual Disability', 'A person''s disability or impairment is categorized as Intellectual Disability.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionType] -SET [Description] = 'Intellectual Disability', [Definition] = 'A person''s disability or impairment is categorized as Intellectual Disability.', [SortOrder] = 18.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionType] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefDisabilityConditionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Orthopedic Impairment', 'A person''s disability or impairment is categorized as Orthopedic Impairment.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionType] -SET [Description] = 'Orthopedic Impairment', [Definition] = 'A person''s disability or impairment is categorized as Orthopedic Impairment.', [SortOrder] = 20.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionType] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefDisabilityConditionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Specific learning disability', 'A person''s disability or impairment is categorized as Specific learning disability.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionType] -SET [Description] = 'Specific learning disability', [Definition] = 'A person''s disability or impairment is categorized as Specific learning disability.', [SortOrder] = 22.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionType] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefDisabilityConditionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Speech or Language impairment', 'A person''s disability or impairment is categorized as Speech or Language impairment.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionType] -SET [Description] = 'Speech or Language impairment', [Definition] = 'A person''s disability or impairment is categorized as Speech or Language impairment.', [SortOrder] = 24.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityConditionType] WHERE [Code] = '99') BEGIN INSERT INTO dbo.[RefDisabilityConditionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('99', 'Other type of impairment', 'A person''s disability or impairment is categorized as Other type of impairment.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityConditionType] -SET [Description] = 'Other type of impairment', [Definition] = 'A person''s disability or impairment is categorized as Other type of impairment.', [SortOrder] = 26.00 WHERE [Code] = '99' END -END - -PRINT N'Populate RefDisabilityDeterminationSourceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDisabilityDeterminationSourceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityDeterminationSourceType] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefDisabilityDeterminationSourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'By physician', 'The disability determination was by a physician.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityDeterminationSourceType] -SET [Description] = 'By physician', [Definition] = 'The disability determination was by a physician.', [SortOrder] = 2.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityDeterminationSourceType] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefDisabilityDeterminationSourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'By health care provider', 'The disability determination was by a health care provider.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityDeterminationSourceType] -SET [Description] = 'By health care provider', [Definition] = 'The disability determination was by a health care provider.', [SortOrder] = 4.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityDeterminationSourceType] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefDisabilityDeterminationSourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'By school psychologist or other psychologist', 'The disability determination was by a school psychologist or other psychologist.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityDeterminationSourceType] -SET [Description] = 'By school psychologist or other psychologist', [Definition] = 'The disability determination was by a school psychologist or other psychologist.', [SortOrder] = 6.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityDeterminationSourceType] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefDisabilityDeterminationSourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'By licensed physical therapist', 'The disability determination was by a licensed physical therapist.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityDeterminationSourceType] -SET [Description] = 'By licensed physical therapist', [Definition] = 'The disability determination was by a licensed physical therapist.', [SortOrder] = 8.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityDeterminationSourceType] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefDisabilityDeterminationSourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Self-reported', 'The disability determination was self-reported.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityDeterminationSourceType] -SET [Description] = 'Self-reported', [Definition] = 'The disability determination was self-reported.', [SortOrder] = 10.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityDeterminationSourceType] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefDisabilityDeterminationSourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'By social service or other type of agency', 'The disability determination was by a social service or other type of agency.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityDeterminationSourceType] -SET [Description] = 'By social service or other type of agency', [Definition] = 'The disability determination was by a social service or other type of agency.', [SortOrder] = 12.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityDeterminationSourceType] WHERE [Code] = '97') BEGIN INSERT INTO dbo.[RefDisabilityDeterminationSourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('97', 'Not applicable to the student', 'Disability determination is not applicable to the student.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityDeterminationSourceType] -SET [Description] = 'Not applicable to the student', [Definition] = 'Disability determination is not applicable to the student.', [SortOrder] = 14.00 WHERE [Code] = '97' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityDeterminationSourceType] WHERE [Code] = '98') BEGIN INSERT INTO dbo.[RefDisabilityDeterminationSourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('98', 'Unknown or Unreported', 'The disability determination source is unknown or unreported.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityDeterminationSourceType] -SET [Description] = 'Unknown or Unreported', [Definition] = 'The disability determination source is unknown or unreported.', [SortOrder] = 16.00 WHERE [Code] = '98' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityDeterminationSourceType] WHERE [Code] = '99') BEGIN INSERT INTO dbo.[RefDisabilityDeterminationSourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('99', 'Other', 'The disability determination source is in a category not yet defined by CEDS.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityDeterminationSourceType] -SET [Description] = 'Other', [Definition] = 'The disability determination source is in a category not yet defined by CEDS.', [SortOrder] = 18.00 WHERE [Code] = '99' END -END - -PRINT N'Populate RefDisabilityType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDisabilityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityType] WHERE [Code] = 'AUT') BEGIN INSERT INTO dbo.[RefDisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AUT', 'Autism', 'Autism is the major or overriding disability condition that best describes the person''s impairment.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityType] -SET [Description] = 'Autism', [Definition] = 'Autism is the major or overriding disability condition that best describes the person''s impairment.', [SortOrder] = 1.00 WHERE [Code] = 'AUT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityType] WHERE [Code] = 'DB') BEGIN INSERT INTO dbo.[RefDisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DB', 'Deaf-blindness', 'Deaf-blindness is the major or overriding disability condition that best describes the person''s impairment.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityType] -SET [Description] = 'Deaf-blindness', [Definition] = 'Deaf-blindness is the major or overriding disability condition that best describes the person''s impairment.', [SortOrder] = 2.00 WHERE [Code] = 'DB' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityType] WHERE [Code] = 'DD') BEGIN INSERT INTO dbo.[RefDisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DD', 'Developmental delay', 'Developmental delay is the major or overriding disability condition that best describes the person''s impairment.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityType] -SET [Description] = 'Developmental delay', [Definition] = 'Developmental delay is the major or overriding disability condition that best describes the person''s impairment.', [SortOrder] = 4.00 WHERE [Code] = 'DD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityType] WHERE [Code] = 'EMN') BEGIN INSERT INTO dbo.[RefDisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EMN', 'Emotional disturbance', 'Emotional disturbance is the major or overriding disability condition that best describes the person''s impairment.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityType] -SET [Description] = 'Emotional disturbance', [Definition] = 'Emotional disturbance is the major or overriding disability condition that best describes the person''s impairment.', [SortOrder] = 5.00 WHERE [Code] = 'EMN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityType] WHERE [Code] = 'HI') BEGIN INSERT INTO dbo.[RefDisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HI', 'Hearing impairment', 'Hearing impairment is the major or overriding disability condition that best describes the person''s impairment.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityType] -SET [Description] = 'Hearing impairment', [Definition] = 'Hearing impairment is the major or overriding disability condition that best describes the person''s impairment.', [SortOrder] = 6.00 WHERE [Code] = 'HI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityType] WHERE [Code] = 'ID') BEGIN INSERT INTO dbo.[RefDisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ID', 'Intellectual Disability', 'Intellectual Disability is the major or overriding disability condition that best describes the person''s impairment.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityType] -SET [Description] = 'Intellectual Disability', [Definition] = 'Intellectual Disability is the major or overriding disability condition that best describes the person''s impairment.', [SortOrder] = 8.00 WHERE [Code] = 'ID' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityType] WHERE [Code] = 'MD') BEGIN INSERT INTO dbo.[RefDisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MD', 'Multiple disabilities', 'Multiple disabilities is the major or overriding disability condition that best describes the person''s impairment.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityType] -SET [Description] = 'Multiple disabilities', [Definition] = 'Multiple disabilities is the major or overriding disability condition that best describes the person''s impairment.', [SortOrder] = 9.00 WHERE [Code] = 'MD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityType] WHERE [Code] = 'OI') BEGIN INSERT INTO dbo.[RefDisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OI', 'Orthopedic impairment', 'Orthopedic impairment is the major or overriding disability condition that best describes the person''s impairment.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityType] -SET [Description] = 'Orthopedic impairment', [Definition] = 'Orthopedic impairment is the major or overriding disability condition that best describes the person''s impairment.', [SortOrder] = 10.00 WHERE [Code] = 'OI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityType] WHERE [Code] = 'OHI') BEGIN INSERT INTO dbo.[RefDisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OHI', 'Other health impairment', 'Other health impairment is the major or overriding disability condition that best describes the person''s impairment.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityType] -SET [Description] = 'Other health impairment', [Definition] = 'Other health impairment is the major or overriding disability condition that best describes the person''s impairment.', [SortOrder] = 11.00 WHERE [Code] = 'OHI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityType] WHERE [Code] = 'SLD') BEGIN INSERT INTO dbo.[RefDisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SLD', 'Specific learning disability', 'Specific learning disability is the major or overriding disability condition that best describes the person''s impairment.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityType] -SET [Description] = 'Specific learning disability', [Definition] = 'Specific learning disability is the major or overriding disability condition that best describes the person''s impairment.', [SortOrder] = 12.00 WHERE [Code] = 'SLD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityType] WHERE [Code] = 'SLI') BEGIN INSERT INTO dbo.[RefDisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SLI', 'Speech or language impairment', 'Speech or language impairment is the major or overriding disability condition that best describes the person''s impairment.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityType] -SET [Description] = 'Speech or language impairment', [Definition] = 'Speech or language impairment is the major or overriding disability condition that best describes the person''s impairment.', [SortOrder] = 13.00 WHERE [Code] = 'SLI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityType] WHERE [Code] = 'TBI') BEGIN INSERT INTO dbo.[RefDisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TBI', 'Traumatic brain injury', 'Traumatic brain injury is the major or overriding disability condition that best describes the person''s impairment.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityType] -SET [Description] = 'Traumatic brain injury', [Definition] = 'Traumatic brain injury is the major or overriding disability condition that best describes the person''s impairment.', [SortOrder] = 14.00 WHERE [Code] = 'TBI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisabilityType] WHERE [Code] = 'VI') BEGIN INSERT INTO dbo.[RefDisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VI', 'Visual impairment', 'Visual impairment is the major or overriding disability condition that best describes the person''s impairment.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisabilityType] -SET [Description] = 'Visual impairment', [Definition] = 'Visual impairment is the major or overriding disability condition that best describes the person''s impairment.', [SortOrder] = 15.00 WHERE [Code] = 'VI' END -END - -PRINT N'Populate RefDisciplinaryActionTaken table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDisciplinaryActionTaken]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03071') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03071', 'Bus suspension', 'Bus suspension is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Bus suspension', [Definition] = 'Bus suspension is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 1.00 WHERE [Code] = '03071' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03072') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03072', 'Change of placement (long-term)', 'Change of placement (long-term) is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Change of placement (long-term)', [Definition] = 'Change of placement (long-term) is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 2.00 WHERE [Code] = '03072' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03073') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03073', 'Change of placement (reassignment), pending an expulsion hearing', 'Change of placement (reassignment), pending an expulsion hearing is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Change of placement (reassignment), pending an expulsion hearing', [Definition] = 'Change of placement (reassignment), pending an expulsion hearing is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 3.00 WHERE [Code] = '03073' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03074') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03074', 'Change of placement (reassignment), resulting from an expulsion hearing', 'Change of placement (reassignment), resulting from an expulsion hearing is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Change of placement (reassignment), resulting from an expulsion hearing', [Definition] = 'Change of placement (reassignment), resulting from an expulsion hearing is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 4.00 WHERE [Code] = '03074' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03075') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03075', 'Change of placement (reassignment), temporary', 'Change of placement (reassignment), temporary is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Change of placement (reassignment), temporary', [Definition] = 'Change of placement (reassignment), temporary is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 5.00 WHERE [Code] = '03075' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03076') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03076', 'Community service', 'Community service is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Community service', [Definition] = 'Community service is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 6.00 WHERE [Code] = '03076' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03077') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03077', 'Conference with and warning to student', 'Conference with and warning to student is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Conference with and warning to student', [Definition] = 'Conference with and warning to student is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 7.00 WHERE [Code] = '03077' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03078') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03078', 'Conference with and warning to student and parent/guardian', 'Conference with and warning to student and parent/guardian is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Conference with and warning to student and parent/guardian', [Definition] = 'Conference with and warning to student and parent/guardian is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 8.00 WHERE [Code] = '03078' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03079') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03079', 'Confiscation of contraband', 'Confiscation of contraband is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Confiscation of contraband', [Definition] = 'Confiscation of contraband is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 9.00 WHERE [Code] = '03079' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03080') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03080', 'Conflict resolution or anger management services mandated', 'Conflict resolution or anger management services mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Conflict resolution or anger management services mandated', [Definition] = 'Conflict resolution or anger management services mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 10.00 WHERE [Code] = '03080' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03081') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03081', 'Corporal punishment', 'Corporal punishment is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Corporal punishment', [Definition] = 'Corporal punishment is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 11.00 WHERE [Code] = '03081' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03082') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03082', 'Counseling mandated', 'Counseling mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Counseling mandated', [Definition] = 'Counseling mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 12.00 WHERE [Code] = '03082' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03083') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03083', 'Demerit', 'Demerit is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Demerit', [Definition] = 'Demerit is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 13.00 WHERE [Code] = '03083' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03084') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03084', 'Detention', 'Detention is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Detention', [Definition] = 'Detention is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 14.00 WHERE [Code] = '03084' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03085') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03085', 'Expulsion recommendation', 'Expulsion recommendation is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Expulsion recommendation', [Definition] = 'Expulsion recommendation is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 15.00 WHERE [Code] = '03085' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03086') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03086', 'Expulsion with services', 'Expulsion with services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Expulsion with services', [Definition] = 'Expulsion with services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 16.00 WHERE [Code] = '03086' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03087') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03087', 'Expulsion without services', 'Expulsion without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Expulsion without services', [Definition] = 'Expulsion without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 17.00 WHERE [Code] = '03087' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03088') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03088', 'Juvenile justice referral', 'Juvenile justice referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Juvenile justice referral', [Definition] = 'Juvenile justice referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 18.00 WHERE [Code] = '03088' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03089') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03089', 'Law enforcement referral', 'Law enforcement referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Law enforcement referral', [Definition] = 'Law enforcement referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 19.00 WHERE [Code] = '03089' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03090') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03090', 'Letter of apology', 'Letter of apology is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Letter of apology', [Definition] = 'Letter of apology is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 20.00 WHERE [Code] = '03090' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03091') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03091', 'Loss of privileges', 'Loss of privileges is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Loss of privileges', [Definition] = 'Loss of privileges is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 21.00 WHERE [Code] = '03091' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '13357') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13357', 'Mechanical Restraint', 'Mechanical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Mechanical Restraint', [Definition] = 'Mechanical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 22.00 WHERE [Code] = '13357' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03105') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03105', 'No action', 'No action is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'No action', [Definition] = 'No action is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 23.00 WHERE [Code] = '03105' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '09998') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09998', 'None', 'None is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'None', [Definition] = 'None is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 24.00 WHERE [Code] = '09998' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Other', [Definition] = 'Other is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 25.00 WHERE [Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03092') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03092', 'Physical activity', 'Physical activity is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Physical activity', [Definition] = 'Physical activity is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 26.00 WHERE [Code] = '03092' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '13358') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13358', 'Physical Restraint', 'Physical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Physical Restraint', [Definition] = 'Physical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 27.00 WHERE [Code] = '13358' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03158') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03158', 'Removal by a hearing officer', 'Removal by a hearing officer is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Removal by a hearing officer', [Definition] = 'Removal by a hearing officer is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 28.00 WHERE [Code] = '03158' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03093') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03093', 'Reprimand', 'Reprimand is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Reprimand', [Definition] = 'Reprimand is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 29.00 WHERE [Code] = '03093' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03094') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03094', 'Restitution', 'Restitution is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Restitution', [Definition] = 'Restitution is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 30.00 WHERE [Code] = '03094' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03095') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03095', 'Saturday school', 'Saturday school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Saturday school', [Definition] = 'Saturday school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 31.00 WHERE [Code] = '03095' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03096') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03096', 'School probation', 'School probation is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'School probation', [Definition] = 'School probation is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 32.00 WHERE [Code] = '03096' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '13359') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13359', 'Seclusion', 'Seclusion is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Seclusion', [Definition] = 'Seclusion is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 33.00 WHERE [Code] = '13359' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03097') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03097', 'Substance abuse counseling mandated', 'Substance abuse counseling mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Substance abuse counseling mandated', [Definition] = 'Substance abuse counseling mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 34.00 WHERE [Code] = '03097' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03098') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03098', 'Substance abuse treatment mandated', 'Substance abuse treatment mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Substance abuse treatment mandated', [Definition] = 'Substance abuse treatment mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 35.00 WHERE [Code] = '03098' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03099') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03099', 'Suspension after school', 'Suspension after school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension after school', [Definition] = 'Suspension after school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 36.00 WHERE [Code] = '03099' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03100') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03100', 'Suspension, in-school', 'Suspension, in-school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, in-school', [Definition] = 'Suspension, in-school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 37.00 WHERE [Code] = '03100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03154') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03154', 'Suspension, out of school, greater than 10 consecutive school days', 'Suspension, out of school, greater than 10 consecutive school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, out of school, greater than 10 consecutive school days', [Definition] = 'Suspension, out of school, greater than 10 consecutive school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 38.00 WHERE [Code] = '03154' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03155') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03155', 'Suspension, out of school, separate days cumulating to more than 10 school days', 'Suspension, out of school, separate days cumulating to more than 10 school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, out of school, separate days cumulating to more than 10 school days', [Definition] = 'Suspension, out of school, separate days cumulating to more than 10 school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 39.00 WHERE [Code] = '03155' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03101') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03101', 'Suspension, out-of-school, with services', 'Suspension, out-of-school, with services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, out-of-school, with services', [Definition] = 'Suspension, out-of-school, with services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 40.00 WHERE [Code] = '03101' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03102') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03102', 'Suspension, out-of-school, without services', 'Suspension, out-of-school, without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, out-of-school, without services', [Definition] = 'Suspension, out-of-school, without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 41.00 WHERE [Code] = '03102' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03157') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03157', 'Unilateral removal - drug incident', 'Unilateral removal - drug incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Unilateral removal - drug incident', [Definition] = 'Unilateral removal - drug incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 42.00 WHERE [Code] = '03157' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03156') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03156', 'Unilateral removal - weapon incident', 'Unilateral removal - weapon incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Unilateral removal - weapon incident', [Definition] = 'Unilateral removal - weapon incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 43.00 WHERE [Code] = '03156' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '09997') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09997', 'Unknown', 'Unknown is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Unknown', [Definition] = 'Unknown is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 44.00 WHERE [Code] = '09997' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03103') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03103', 'Unsatisfactory behavior grade', 'Unsatisfactory behavior grade is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Unsatisfactory behavior grade', [Definition] = 'Unsatisfactory behavior grade is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 45.00 WHERE [Code] = '03103' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03104') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03104', 'Work detail', 'Work detail is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Work detail', [Definition] = 'Work detail is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 46.00 WHERE [Code] = '03104' END -END - -PRINT N'Populate RefDisciplineLengthDifferenceReason table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDisciplineLengthDifferenceReason]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineLengthDifferenceReason] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefDisciplineLengthDifferenceReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'No Difference', 'No Difference is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineLengthDifferenceReason] -SET [Description] = 'No Difference', [Definition] = 'No Difference is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineLengthDifferenceReason] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefDisciplineLengthDifferenceReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Term Modified By District', 'Term Modified By District is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineLengthDifferenceReason] -SET [Description] = 'Term Modified By District', [Definition] = 'Term Modified By District is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineLengthDifferenceReason] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefDisciplineLengthDifferenceReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Term Modified By Court Order', 'Term Modified By Court Order is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineLengthDifferenceReason] -SET [Description] = 'Term Modified By Court Order', [Definition] = 'Term Modified By Court Order is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineLengthDifferenceReason] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefDisciplineLengthDifferenceReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Term Modified By Mutual Agreement', 'Term Modified By Mutual Agreement is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineLengthDifferenceReason] -SET [Description] = 'Term Modified By Mutual Agreement', [Definition] = 'Term Modified By Mutual Agreement is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineLengthDifferenceReason] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefDisciplineLengthDifferenceReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Student Completed Term Requirements Sooner Than Expected', 'Student Completed Term Requirements Sooner Than Expected is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineLengthDifferenceReason] -SET [Description] = 'Student Completed Term Requirements Sooner Than Expected', [Definition] = 'Student Completed Term Requirements Sooner Than Expected is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', [SortOrder] = 5.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineLengthDifferenceReason] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefDisciplineLengthDifferenceReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Student Incarcerated', 'Student Incarcerated is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineLengthDifferenceReason] -SET [Description] = 'Student Incarcerated', [Definition] = 'Student Incarcerated is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', [SortOrder] = 6.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineLengthDifferenceReason] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefDisciplineLengthDifferenceReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Term Decreased Due To Extenuating Health-Related Circumstances', 'Term Decreased Due To Extenuating Health-Related Circumstances is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineLengthDifferenceReason] -SET [Description] = 'Term Decreased Due To Extenuating Health-Related Circumstances', [Definition] = 'Term Decreased Due To Extenuating Health-Related Circumstances is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', [SortOrder] = 7.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineLengthDifferenceReason] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefDisciplineLengthDifferenceReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Student Withdrew From School', 'Student Withdrew From School is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineLengthDifferenceReason] -SET [Description] = 'Student Withdrew From School', [Definition] = 'Student Withdrew From School is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', [SortOrder] = 8.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineLengthDifferenceReason] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefDisciplineLengthDifferenceReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'School Year Ended', 'School Year Ended is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineLengthDifferenceReason] -SET [Description] = 'School Year Ended', [Definition] = 'School Year Ended is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', [SortOrder] = 9.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineLengthDifferenceReason] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefDisciplineLengthDifferenceReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Continuation Of Previous Year''s Disciplinary Action Assignment', 'Continuation Of Previous Year''s Disciplinary Action Assignment is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineLengthDifferenceReason] -SET [Description] = 'Continuation Of Previous Year''s Disciplinary Action Assignment', [Definition] = 'Continuation Of Previous Year''s Disciplinary Action Assignment is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', [SortOrder] = 10.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineLengthDifferenceReason] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefDisciplineLengthDifferenceReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Term Modified By Placement Program Due To Student Behavior While In The Placement', 'Term Modified By Placement Program Due To Student Behavior While In The Placement is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineLengthDifferenceReason] -SET [Description] = 'Term Modified By Placement Program Due To Student Behavior While In The Placement', [Definition] = 'Term Modified By Placement Program Due To Student Behavior While In The Placement is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', [SortOrder] = 11.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineLengthDifferenceReason] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefDisciplineLengthDifferenceReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Other', 'Other is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineLengthDifferenceReason] -SET [Description] = 'Other', [Definition] = 'Other is the reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', [SortOrder] = 12.00 WHERE [Code] = '12' END -END - -PRINT N'Populate RefDisciplineMethodFirearms table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDisciplineMethodFirearms]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineMethodFirearms] WHERE [Code] = 'EXPNOTMODNOALT') BEGIN INSERT INTO dbo.[RefDisciplineMethodFirearms]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EXPNOTMODNOALT', 'One year expulsion and no educational services', 'One year expulsion and no educational services is the method used to discipline the student(s) who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineMethodFirearms] -SET [Description] = 'One year expulsion and no educational services', [Definition] = 'One year expulsion and no educational services is the method used to discipline the student(s) who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', [SortOrder] = 1.00 WHERE [Code] = 'EXPNOTMODNOALT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineMethodFirearms] WHERE [Code] = 'EXPMODALT') BEGIN INSERT INTO dbo.[RefDisciplineMethodFirearms]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EXPMODALT', 'Expulsion modified to less than one year with educational services', 'Expulsion modified to less than one year with educational services is the method used to discipline the student(s) who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineMethodFirearms] -SET [Description] = 'Expulsion modified to less than one year with educational services', [Definition] = 'Expulsion modified to less than one year with educational services is the method used to discipline the student(s) who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', [SortOrder] = 2.00 WHERE [Code] = 'EXPMODALT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineMethodFirearms] WHERE [Code] = 'EXPMODNOALT') BEGIN INSERT INTO dbo.[RefDisciplineMethodFirearms]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EXPMODNOALT', 'Expulsion modified to less than one year without educational services', 'Expulsion modified to less than one year without educational services is the method used to discipline the student(s) who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineMethodFirearms] -SET [Description] = 'Expulsion modified to less than one year without educational services', [Definition] = 'Expulsion modified to less than one year without educational services is the method used to discipline the student(s) who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', [SortOrder] = 3.00 WHERE [Code] = 'EXPMODNOALT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineMethodFirearms] WHERE [Code] = 'EXPALT') BEGIN INSERT INTO dbo.[RefDisciplineMethodFirearms]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EXPALT', 'One year expulsion and educational services', 'One year expulsion and educational services is the method used to discipline the student(s) who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineMethodFirearms] -SET [Description] = 'One year expulsion and educational services', [Definition] = 'One year expulsion and educational services is the method used to discipline the student(s) who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', [SortOrder] = 4.00 WHERE [Code] = 'EXPALT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineMethodFirearms] WHERE [Code] = 'REMOVEOTHER') BEGIN INSERT INTO dbo.[RefDisciplineMethodFirearms]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REMOVEOTHER', 'Other reasons such as death, withdrawal, or incarceration', 'Other reasons such as death, withdrawal, or incarceration is the method used to discipline the student(s) who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineMethodFirearms] -SET [Description] = 'Other reasons such as death, withdrawal, or incarceration', [Definition] = 'Other reasons such as death, withdrawal, or incarceration is the method used to discipline the student(s) who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', [SortOrder] = 5.00 WHERE [Code] = 'REMOVEOTHER' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineMethodFirearms] WHERE [Code] = 'OTHERDISACTION') BEGIN INSERT INTO dbo.[RefDisciplineMethodFirearms]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OTHERDISACTION', 'Another type of disciplinary action', 'Another type of disciplinary action is the method used to discipline the student(s) who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineMethodFirearms] -SET [Description] = 'Another type of disciplinary action', [Definition] = 'Another type of disciplinary action is the method used to discipline the student(s) who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', [SortOrder] = 6.00 WHERE [Code] = 'OTHERDISACTION' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineMethodFirearms] WHERE [Code] = 'NOACTION') BEGIN INSERT INTO dbo.[RefDisciplineMethodFirearms]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NOACTION', 'No disciplinary action taken', 'No disciplinary action taken is the method used to discipline the student(s) who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineMethodFirearms] -SET [Description] = 'No disciplinary action taken', [Definition] = 'No disciplinary action taken is the method used to discipline the student(s) who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', [SortOrder] = 7.00 WHERE [Code] = 'NOACTION' END -END - -PRINT N'Populate RefDisciplineMethodOfCwd table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDisciplineMethodOfCwd]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineMethodOfCwd] WHERE [Code] = 'OutOfSchool') BEGIN INSERT INTO dbo.[RefDisciplineMethodOfCwd]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OutOfSchool', 'Out of School Suspensions/Expulsions', 'Out of School Suspensions/Expulsions - removal from regular school for disciplinary purposes temporarily, for the remainder of the school year, or longer according to LEA policy.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineMethodOfCwd] -SET [Description] = 'Out of School Suspensions/Expulsions', [Definition] = 'Out of School Suspensions/Expulsions - removal from regular school for disciplinary purposes temporarily, for the remainder of the school year, or longer according to LEA policy.', [SortOrder] = 1.00 WHERE [Code] = 'OutOfSchool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineMethodOfCwd] WHERE [Code] = 'InSchool') BEGIN INSERT INTO dbo.[RefDisciplineMethodOfCwd]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InSchool', 'In School Suspensions', 'In School Suspensions - temporary removal from regular classroom(s) for disciplinary purposes but still under supervision of school personnel.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineMethodOfCwd] -SET [Description] = 'In School Suspensions', [Definition] = 'In School Suspensions - temporary removal from regular classroom(s) for disciplinary purposes but still under supervision of school personnel.', [SortOrder] = 2.00 WHERE [Code] = 'InSchool' END -END - -PRINT N'Populate RefDisciplineReason table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDisciplineReason]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineReason] WHERE [Code] = 'DrugRelated') BEGIN INSERT INTO dbo.[RefDisciplineReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DrugRelated', 'Illicit drug related', 'Illicit drug related is the reason why the student was disciplined.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineReason] -SET [Description] = 'Illicit drug related', [Definition] = 'Illicit drug related is the reason why the student was disciplined.', [SortOrder] = 1.00 WHERE [Code] = 'DrugRelated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineReason] WHERE [Code] = 'AlcoholRelated') BEGIN INSERT INTO dbo.[RefDisciplineReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AlcoholRelated', 'Alcohol related', 'Alcohol related is the reason why the student was disciplined.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineReason] -SET [Description] = 'Alcohol related', [Definition] = 'Alcohol related is the reason why the student was disciplined.', [SortOrder] = 2.00 WHERE [Code] = 'AlcoholRelated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineReason] WHERE [Code] = 'WeaponsPossession') BEGIN INSERT INTO dbo.[RefDisciplineReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WeaponsPossession', 'Weapons possession', 'Weapons possession is the reason why the student was disciplined.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineReason] -SET [Description] = 'Weapons possession', [Definition] = 'Weapons possession is the reason why the student was disciplined.', [SortOrder] = 3.00 WHERE [Code] = 'WeaponsPossession' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineReason] WHERE [Code] = 'WithPhysicalInjury') BEGIN INSERT INTO dbo.[RefDisciplineReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WithPhysicalInjury', 'Violent Incident (with Physical Injury)', 'Violent Incident (with Physical Injury) is the reason why the student was disciplined.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineReason] -SET [Description] = 'Violent Incident (with Physical Injury)', [Definition] = 'Violent Incident (with Physical Injury) is the reason why the student was disciplined.', [SortOrder] = 4.00 WHERE [Code] = 'WithPhysicalInjury' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineReason] WHERE [Code] = 'WithoutPhysicalInjury') BEGIN INSERT INTO dbo.[RefDisciplineReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WithoutPhysicalInjury', 'Violent Incident (without Physical Injury)', 'Violent Incident (without Physical Injury) is the reason why the student was disciplined.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineReason] -SET [Description] = 'Violent Incident (without Physical Injury)', [Definition] = 'Violent Incident (without Physical Injury) is the reason why the student was disciplined.', [SortOrder] = 5.00 WHERE [Code] = 'WithoutPhysicalInjury' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplineReason] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefDisciplineReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other reasons for out of school suspensions related to drug use and violence', 'Other reasons for out of school suspensions related to drug use and violence is the reason why the student was disciplined.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplineReason] -SET [Description] = 'Other reasons for out of school suspensions related to drug use and violence', [Definition] = 'Other reasons for out of school suspensions related to drug use and violence is the reason why the student was disciplined.', [SortOrder] = 6.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefDistanceEducationCourseEnrollment table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDistanceEducationCourseEnrollment]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDistanceEducationCourseEnrollment] WHERE [Code] = 'EnrolledExclusively') BEGIN INSERT INTO dbo.[RefDistanceEducationCourseEnrollment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EnrolledExclusively', 'Enrolled exclusively in distance education courses', 'The student is enrolled exclusively in distance education courses.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDistanceEducationCourseEnrollment] -SET [Description] = 'Enrolled exclusively in distance education courses', [Definition] = 'The student is enrolled exclusively in distance education courses.', [SortOrder] = 1.00 WHERE [Code] = 'EnrolledExclusively' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDistanceEducationCourseEnrollment] WHERE [Code] = 'EnrolledInSome') BEGIN INSERT INTO dbo.[RefDistanceEducationCourseEnrollment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EnrolledInSome', 'Enrolled in some but not all distance education courses', 'The student is enrolled in some but not all distance education courses.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDistanceEducationCourseEnrollment] -SET [Description] = 'Enrolled in some but not all distance education courses', [Definition] = 'The student is enrolled in some but not all distance education courses.', [SortOrder] = 2.00 WHERE [Code] = 'EnrolledInSome' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDistanceEducationCourseEnrollment] WHERE [Code] = 'NotEnrolled') BEGIN INSERT INTO dbo.[RefDistanceEducationCourseEnrollment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotEnrolled', 'Not enrolled in distance education courses', 'The student is not enrolled in distance education courses.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDistanceEducationCourseEnrollment] -SET [Description] = 'Not enrolled in distance education courses', [Definition] = 'The student is not enrolled in distance education courses.', [SortOrder] = 3.00 WHERE [Code] = 'NotEnrolled' END -END - -PRINT N'Populate RefDoctoralExamsRequiredCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDoctoralExamsRequiredCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDoctoralExamsRequiredCode] WHERE [Code] = 'Qualifying') BEGIN INSERT INTO dbo.[RefDoctoralExamsRequiredCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Qualifying', 'Qualifying exam', 'Qualifying exam is a type of exam required of doctoral level individuals.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDoctoralExamsRequiredCode] -SET [Description] = 'Qualifying exam', [Definition] = 'Qualifying exam is a type of exam required of doctoral level individuals.', [SortOrder] = 1.00 WHERE [Code] = 'Qualifying' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDoctoralExamsRequiredCode] WHERE [Code] = 'OralComprehensive') BEGIN INSERT INTO dbo.[RefDoctoralExamsRequiredCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OralComprehensive', 'Oral comprehensive exam', 'Oral comprehensive exam is a type of exam required of doctoral level individuals.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDoctoralExamsRequiredCode] -SET [Description] = 'Oral comprehensive exam', [Definition] = 'Oral comprehensive exam is a type of exam required of doctoral level individuals.', [SortOrder] = 3.00 WHERE [Code] = 'OralComprehensive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDoctoralExamsRequiredCode] WHERE [Code] = 'WrittenComprehensive') BEGIN INSERT INTO dbo.[RefDoctoralExamsRequiredCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WrittenComprehensive', 'Written comprehensive exam', 'Written comprehensive exam is a type of exam required of doctoral level individuals.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDoctoralExamsRequiredCode] -SET [Description] = 'Written comprehensive exam', [Definition] = 'Written comprehensive exam is a type of exam required of doctoral level individuals.', [SortOrder] = 5.00 WHERE [Code] = 'WrittenComprehensive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDoctoralExamsRequiredCode] WHERE [Code] = 'Candidacy') BEGIN INSERT INTO dbo.[RefDoctoralExamsRequiredCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Candidacy', 'Candidacy exam', 'Candidacy exam is a type of exam required of doctoral level individuals.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDoctoralExamsRequiredCode] -SET [Description] = 'Candidacy exam', [Definition] = 'Candidacy exam is a type of exam required of doctoral level individuals.', [SortOrder] = 7.00 WHERE [Code] = 'Candidacy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDoctoralExamsRequiredCode] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefDoctoralExamsRequiredCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other departmental or institutional exam', 'Other departmental or institutional exam is a type of exam required of doctoral level individuals.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDoctoralExamsRequiredCode] -SET [Description] = 'Other departmental or institutional exam', [Definition] = 'Other departmental or institutional exam is a type of exam required of doctoral level individuals.', [SortOrder] = 9.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefDQPCategoriesOfLearning table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefDQPCategoriesOfLearning]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDQPCategoriesOfLearning] WHERE [Code] = 'SpecializedKnowledge') BEGIN INSERT INTO dbo.[RefDQPCategoriesOfLearning]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpecializedKnowledge', 'Specialized Knowledge', 'A category of learning addressing specialized knowledge and skill requirements of a student pursuing a specialized degree.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDQPCategoriesOfLearning] -SET [Description] = 'Specialized Knowledge', [Definition] = 'A category of learning addressing specialized knowledge and skill requirements of a student pursuing a specialized degree.', [SortOrder] = 1.00 WHERE [Code] = 'SpecializedKnowledge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDQPCategoriesOfLearning] WHERE [Code] = 'BroadAndIntegrativeKnowledge') BEGIN INSERT INTO dbo.[RefDQPCategoriesOfLearning]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BroadAndIntegrativeKnowledge', 'Broad and Integrative Knowledge', 'Liberal and general education category of learning with emphasis on students'' broad learning across the humanities, arts, sciences and social sciences.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDQPCategoriesOfLearning] -SET [Description] = 'Broad and Integrative Knowledge', [Definition] = 'Liberal and general education category of learning with emphasis on students'' broad learning across the humanities, arts, sciences and social sciences.', [SortOrder] = 2.00 WHERE [Code] = 'BroadAndIntegrativeKnowledge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDQPCategoriesOfLearning] WHERE [Code] = 'IntellectualSkills') BEGIN INSERT INTO dbo.[RefDQPCategoriesOfLearning]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IntellectualSkills', 'Intellectual Skills', 'Proficiencies that transcend the boundaries of particular fields of study including analytic inquiry, use of information resources, engaging diverse perspectives, ethical reasoning, quantitative fluency, and communicative fluency.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDQPCategoriesOfLearning] -SET [Description] = 'Intellectual Skills', [Definition] = 'Proficiencies that transcend the boundaries of particular fields of study including analytic inquiry, use of information resources, engaging diverse perspectives, ethical reasoning, quantitative fluency, and communicative fluency.', [SortOrder] = 3.00 WHERE [Code] = 'IntellectualSkills' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDQPCategoriesOfLearning] WHERE [Code] = 'AppliedAndCollaborativeLearning') BEGIN INSERT INTO dbo.[RefDQPCategoriesOfLearning]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AppliedAndCollaborativeLearning', 'Applied and Collaborative Learning', 'A category of learning addressing what graduates can do with what they know.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDQPCategoriesOfLearning] -SET [Description] = 'Applied and Collaborative Learning', [Definition] = 'A category of learning addressing what graduates can do with what they know.', [SortOrder] = 4.00 WHERE [Code] = 'AppliedAndCollaborativeLearning' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefDQPCategoriesOfLearning] WHERE [Code] = 'CivicAndGlobalLearning') BEGIN INSERT INTO dbo.[RefDQPCategoriesOfLearning]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CivicAndGlobalLearning', 'Civic and Global Learning', 'A category of learning addressing proficiencies needed for both civic and global inquiry and interaction.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDQPCategoriesOfLearning] -SET [Description] = 'Civic and Global Learning', [Definition] = 'A category of learning addressing proficiencies needed for both civic and global inquiry and interaction.', [SortOrder] = 5.00 WHERE [Code] = 'CivicAndGlobalLearning' END -END - -PRINT N'Populate RefEarlyChildhoodCredential table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEarlyChildhoodCredential]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodCredential] WHERE [Code] = 'ChildDevelopmentAssociate') BEGIN INSERT INTO dbo.[RefEarlyChildhoodCredential]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChildDevelopmentAssociate', 'Child Development Associate (CDA)', 'Child Development Associate (CDA) is the credential related to early childhood education or development held by a person.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodCredential] -SET [Description] = 'Child Development Associate (CDA)', [Definition] = 'Child Development Associate (CDA) is the credential related to early childhood education or development held by a person.', [SortOrder] = 2.00 WHERE [Code] = 'ChildDevelopmentAssociate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodCredential] WHERE [Code] = 'DirectorsLevelCredential') BEGIN INSERT INTO dbo.[RefEarlyChildhoodCredential]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DirectorsLevelCredential', 'Directors Level Credential', 'Directors Level Credential is the credential related to early childhood education or development held by a person.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodCredential] -SET [Description] = 'Directors Level Credential', [Definition] = 'Directors Level Credential is the credential related to early childhood education or development held by a person.', [SortOrder] = 3.00 WHERE [Code] = 'DirectorsLevelCredential' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodCredential] WHERE [Code] = 'StateInfantToddler') BEGIN INSERT INTO dbo.[RefEarlyChildhoodCredential]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateInfantToddler', 'State Awarded Credential for Infant/Toddler', 'State Awarded Credential for Infant/Toddler is the credential related to early childhood education or development held by a person.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodCredential] -SET [Description] = 'State Awarded Credential for Infant/Toddler', [Definition] = 'State Awarded Credential for Infant/Toddler is the credential related to early childhood education or development held by a person.', [SortOrder] = 4.00 WHERE [Code] = 'StateInfantToddler' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodCredential] WHERE [Code] = 'StatePreschool') BEGIN INSERT INTO dbo.[RefEarlyChildhoodCredential]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StatePreschool', 'State Awarded Preschool Credential', 'State Awarded Preschool Credential is the credential related to early childhood education or development held by a person.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodCredential] -SET [Description] = 'State Awarded Preschool Credential', [Definition] = 'State Awarded Preschool Credential is the credential related to early childhood education or development held by a person.', [SortOrder] = 5.00 WHERE [Code] = 'StatePreschool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodCredential] WHERE [Code] = 'StateSchoolAge') BEGIN INSERT INTO dbo.[RefEarlyChildhoodCredential]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateSchoolAge', 'State Awarded School-Age Credential', 'State Awarded School-Age Credential is the credential related to early childhood education or development held by a person.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodCredential] -SET [Description] = 'State Awarded School-Age Credential', [Definition] = 'State Awarded School-Age Credential is the credential related to early childhood education or development held by a person.', [SortOrder] = 6.00 WHERE [Code] = 'StateSchoolAge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodCredential] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefEarlyChildhoodCredential]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The credential related to early childhood education or development held by a person is in a category not yet defined in CEDS.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodCredential] -SET [Description] = 'Other', [Definition] = 'The credential related to early childhood education or development held by a person is in a category not yet defined in CEDS.', [SortOrder] = 10.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefEarlyChildhoodProgramEnrollmentType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEarlyChildhoodProgramEnrollmentType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'HeadStart') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HeadStart', 'Head Start', 'Head Start is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] -SET [Description] = 'Head Start', [Definition] = 'Head Start is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 1.00 WHERE [Code] = 'HeadStart' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'EarlyHeadStart') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EarlyHeadStart', 'Early Head Start', 'Early Head Start is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] -SET [Description] = 'Early Head Start', [Definition] = 'Early Head Start is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 3.00 WHERE [Code] = 'EarlyHeadStart' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'StatePreschool') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StatePreschool', 'State Preschool', 'State Preschool is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] -SET [Description] = 'State Preschool', [Definition] = 'State Preschool is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 5.00 WHERE [Code] = 'StatePreschool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'PublicPreschool') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PublicPreschool', 'Public Preschool', 'Public Preschool is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] -SET [Description] = 'Public Preschool', [Definition] = 'Public Preschool is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 7.00 WHERE [Code] = 'PublicPreschool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'PrivatePreschool') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrivatePreschool', 'Private Preschool', 'Private Preschool is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] -SET [Description] = 'Private Preschool', [Definition] = 'Private Preschool is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 9.00 WHERE [Code] = 'PrivatePreschool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'EarlyChildhoodSpecialEducation') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EarlyChildhoodSpecialEducation', 'Early Childhood Special Education (619)', 'Early Childhood Special Education (619) is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] -SET [Description] = 'Early Childhood Special Education (619)', [Definition] = 'Early Childhood Special Education (619) is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 11.00 WHERE [Code] = 'EarlyChildhoodSpecialEducation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'HomeVisiting') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HomeVisiting', 'Home Visiting', 'Home Visiting is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] -SET [Description] = 'Home Visiting', [Definition] = 'Home Visiting is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 13.00 WHERE [Code] = 'HomeVisiting' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'ChildCare') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChildCare', 'Child Care', 'Child Care is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] -SET [Description] = 'Child Care', [Definition] = 'Child Care is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 15.00 WHERE [Code] = 'ChildCare' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'EarlyInterventionPartC') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EarlyInterventionPartC', 'Early Intervention Services Part C', 'Early Intervention Services Part C is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] -SET [Description] = 'Early Intervention Services Part C', [Definition] = 'Early Intervention Services Part C is the system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 17.00 WHERE [Code] = 'EarlyInterventionPartC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The system outlining activities and procedures based on a set of required services and standards in which the child is enrolled is in a category not yet defined in CEDS.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] -SET [Description] = 'Other', [Definition] = 'The system outlining activities and procedures based on a set of required services and standards in which the child is enrolled is in a category not yet defined in CEDS.', [SortOrder] = 19.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'None') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('None', 'None', 'The child is not enrolled in an early childhood program.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] -SET [Description] = 'None', [Definition] = 'The child is not enrolled in an early childhood program.', [SortOrder] = 21.00 WHERE [Code] = 'None' END -END - -PRINT N'Populate RefEarlyChildhoodServices table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEarlyChildhoodServices]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Assistive technology services', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Assistive technology services', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Audiology services', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Audiology services', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Family training/counseling services', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Family training/counseling services', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Health services', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Health services', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Medical services', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Medical services', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Nursing services', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Nursing services', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Nutrition services', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Nutrition services', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Occupational therapy', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Occupational therapy', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Physical therapy', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Physical therapy', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Psychological services', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Psychological services', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Sign language and cued language services', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Sign language and cued language services', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Service coordination', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Service coordination', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '13') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13', 'Social work services', NULL, 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Social work services', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '14') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14', 'Special instruction', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Special instruction', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = '14' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '15') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('15', 'Speech-language pathology services', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Speech-language pathology services', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = '15' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '16') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('16', 'Vision services', NULL, 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Vision services', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = '16' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '17') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('17', 'Behavioral health', NULL, 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Behavioral health', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = '17' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '18') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('18', 'Transportation', NULL, 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Transportation', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = '18' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '98') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('98', 'None', NULL, 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'None', [Definition] = NULL, [SortOrder] = 97.00 WHERE [Code] = '98' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodServices] WHERE [Code] = '99') BEGIN INSERT INTO dbo.[RefEarlyChildhoodServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('99', 'Other', NULL, 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodServices] -SET [Description] = 'Other', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = '99' END -END - -PRINT N'Populate RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] WHERE [Code] = 'EARNGED') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EARNGED', 'Earned a GED', 'The student earned a GED after exiting the facility or program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] -SET [Description] = 'Earned a GED', [Definition] = 'The student earned a GED after exiting the facility or program.', [SortOrder] = 1.00 WHERE [Code] = 'EARNGED' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] WHERE [Code] = 'EARNCRE') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EARNCRE', 'Earned high school course credits', 'The student earned high school course credits after exiting the facility or program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] -SET [Description] = 'Earned high school course credits', [Definition] = 'The student earned high school course credits after exiting the facility or program.', [SortOrder] = 2.00 WHERE [Code] = 'EARNCRE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] WHERE [Code] = 'ENROLLGED') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ENROLLGED', 'Enrolled in a GED program', 'The student enrolled in a GED program after exiting the facility or program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] -SET [Description] = 'Enrolled in a GED program', [Definition] = 'The student enrolled in a GED program after exiting the facility or program.', [SortOrder] = 3.00 WHERE [Code] = 'ENROLLGED' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] WHERE [Code] = 'ENROLLTRAIN') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ENROLLTRAIN', 'Enrolled in job training courses/programs', 'The student enrolled in job training courses/programs after exiting the facility or program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] -SET [Description] = 'Enrolled in job training courses/programs', [Definition] = 'The student enrolled in job training courses/programs after exiting the facility or program.', [SortOrder] = 4.00 WHERE [Code] = 'ENROLLTRAIN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] WHERE [Code] = 'ENROLLSCH') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ENROLLSCH', 'Enrolled in local district school', 'The student enrolled in a local school district after exiting the facility or program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] -SET [Description] = 'Enrolled in local district school', [Definition] = 'The student enrolled in a local school district after exiting the facility or program.', [SortOrder] = 5.00 WHERE [Code] = 'ENROLLSCH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] WHERE [Code] = 'OBTAINEMP') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OBTAINEMP', 'Obtained employment', 'The student obtained employment after exiting the facility or program.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] -SET [Description] = 'Obtained employment', [Definition] = 'The student obtained employment after exiting the facility or program.', [SortOrder] = 6.00 WHERE [Code] = 'OBTAINEMP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] WHERE [Code] = 'EARNDIPL') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EARNDIPL', 'Obtained high school diploma', 'The student obtained a high school diploma after exiting the facility or program.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] -SET [Description] = 'Obtained high school diploma', [Definition] = 'The student obtained a high school diploma after exiting the facility or program.', [SortOrder] = 7.00 WHERE [Code] = 'EARNDIPL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] WHERE [Code] = 'POSTSEC') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('POSTSEC', 'Were accepted and/or enrolled into postsecondary education', 'The student was accepted and/or enrolled into postsecondary education after exiting the facility or program.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType] -SET [Description] = 'Were accepted and/or enrolled into postsecondary education', [Definition] = 'The student was accepted and/or enrolled into postsecondary education after exiting the facility or program.', [SortOrder] = 8.00 WHERE [Code] = 'POSTSEC' END -END - -PRINT N'Populate RefEdFactsAcademicOrCareerAndTechnicalOutcomeType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] WHERE [Code] = 'EARNGED') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EARNGED', 'Earned a GED', 'The student earned a GED while enrolled in the program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] -SET [Description] = 'Earned a GED', [Definition] = 'The student earned a GED while enrolled in the program.', [SortOrder] = 1.00 WHERE [Code] = 'EARNGED' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] WHERE [Code] = 'EARNCRE') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EARNCRE', 'Earned high school course credits', 'The student earned high school course credits while enrolled in the program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] -SET [Description] = 'Earned high school course credits', [Definition] = 'The student earned high school course credits while enrolled in the program.', [SortOrder] = 2.00 WHERE [Code] = 'EARNCRE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] WHERE [Code] = 'ENROLLGED') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ENROLLGED', 'Enrolled in a GED program', 'The student enrolled in a GED program while enrolled in the program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] -SET [Description] = 'Enrolled in a GED program', [Definition] = 'The student enrolled in a GED program while enrolled in the program.', [SortOrder] = 3.00 WHERE [Code] = 'ENROLLGED' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] WHERE [Code] = 'ENROLLTRAIN') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ENROLLTRAIN', 'Enrolled in job training courses/programs', 'The student enrolled in job training courses/programs while enrolled in the program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] -SET [Description] = 'Enrolled in job training courses/programs', [Definition] = 'The student enrolled in job training courses/programs while enrolled in the program.', [SortOrder] = 4.00 WHERE [Code] = 'ENROLLTRAIN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] WHERE [Code] = 'OBTAINEMP') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OBTAINEMP', 'Obtained employment', 'The student obtained employment while enrolled in the program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] -SET [Description] = 'Obtained employment', [Definition] = 'The student obtained employment while enrolled in the program.', [SortOrder] = 5.00 WHERE [Code] = 'OBTAINEMP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] WHERE [Code] = 'EARNDIPL') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EARNDIPL', 'Obtained high school diploma', 'The student obtained a high school diploma while enrolled in the program.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] -SET [Description] = 'Obtained high school diploma', [Definition] = 'The student obtained a high school diploma while enrolled in the program.', [SortOrder] = 6.00 WHERE [Code] = 'EARNDIPL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] WHERE [Code] = 'POSTSEC') BEGIN INSERT INTO dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('POSTSEC', 'Were accepted and/or enrolled into postsecondary education', 'The student was accepted and/or enrolled into postsecondary education while enrolled in the program.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsAcademicOrCareerAndTechnicalOutcomeType] -SET [Description] = 'Were accepted and/or enrolled into postsecondary education', [Definition] = 'The student was accepted and/or enrolled into postsecondary education while enrolled in the program.', [SortOrder] = 7.00 WHERE [Code] = 'POSTSEC' END -END - -PRINT N'Populate RefEdFactsCertificationStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEdFactsCertificationStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsCertificationStatus] WHERE [Code] = 'FC') BEGIN INSERT INTO dbo.[RefEdFactsCertificationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FC', 'Fully certified or licensed', 'The educator holds a certification or licensure required by their assignment.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsCertificationStatus] -SET [Description] = 'Fully certified or licensed', [Definition] = 'The educator holds a certification or licensure required by their assignment.', [SortOrder] = 1.00 WHERE [Code] = 'FC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEdFactsCertificationStatus] WHERE [Code] = 'NFC') BEGIN INSERT INTO dbo.[RefEdFactsCertificationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NFC', 'Not fully certified or licensed', 'The educator does not hold a certification or licensure required by their assignment.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEdFactsCertificationStatus] -SET [Description] = 'Not fully certified or licensed', [Definition] = 'The educator does not hold a certification or licensure required by their assignment.', [SortOrder] = 2.00 WHERE [Code] = 'NFC' END -END - -PRINT N'Populate RefEDFactsTeacherInexperiencedStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEDFactsTeacherInexperiencedStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEDFactsTeacherInexperiencedStatus] WHERE [Code] = 'TCHEXPRNCD') BEGIN INSERT INTO dbo.[RefEDFactsTeacherInexperiencedStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TCHEXPRNCD', 'Experienced Teacher', 'This teacher has been identified as experienced as defined by the state.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEDFactsTeacherInexperiencedStatus] -SET [Description] = 'Experienced Teacher', [Definition] = 'This teacher has been identified as experienced as defined by the state.', [SortOrder] = 1.00 WHERE [Code] = 'TCHEXPRNCD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEDFactsTeacherInexperiencedStatus] WHERE [Code] = 'TCHINEXPRNCD') BEGIN INSERT INTO dbo.[RefEDFactsTeacherInexperiencedStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TCHINEXPRNCD', 'Inexperienced Teacher', 'This teacher has been identified as inexperienced as defined by the state.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEDFactsTeacherInexperiencedStatus] -SET [Description] = 'Inexperienced Teacher', [Definition] = 'This teacher has been identified as inexperienced as defined by the state.', [SortOrder] = 2.00 WHERE [Code] = 'TCHINEXPRNCD' END -END - -PRINT N'Populate RefEducationVerificationMethod table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEducationVerificationMethod]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationVerificationMethod] WHERE [Code] = 'OfficialTranscript') BEGIN INSERT INTO dbo.[RefEducationVerificationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OfficialTranscript', 'Official transcript', 'Official transcript is the method by which the formal education is verified.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationVerificationMethod] -SET [Description] = 'Official transcript', [Definition] = 'Official transcript is the method by which the formal education is verified.', [SortOrder] = 1.00 WHERE [Code] = 'OfficialTranscript' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationVerificationMethod] WHERE [Code] = 'TranscriptCopy') BEGIN INSERT INTO dbo.[RefEducationVerificationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TranscriptCopy', 'Transcript copy', 'Transcript copy is the method by which the formal education is verified.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationVerificationMethod] -SET [Description] = 'Transcript copy', [Definition] = 'Transcript copy is the method by which the formal education is verified.', [SortOrder] = 3.00 WHERE [Code] = 'TranscriptCopy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationVerificationMethod] WHERE [Code] = 'DegreeCopy') BEGIN INSERT INTO dbo.[RefEducationVerificationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DegreeCopy', 'Degree copy', 'Degree copy is the method by which the formal education is verified.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationVerificationMethod] -SET [Description] = 'Degree copy', [Definition] = 'Degree copy is the method by which the formal education is verified.', [SortOrder] = 5.00 WHERE [Code] = 'DegreeCopy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationVerificationMethod] WHERE [Code] = 'GradeReport') BEGIN INSERT INTO dbo.[RefEducationVerificationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GradeReport', 'Grade report', 'Grade report is the method by which the formal education is verified.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationVerificationMethod] -SET [Description] = 'Grade report', [Definition] = 'Grade report is the method by which the formal education is verified.', [SortOrder] = 7.00 WHERE [Code] = 'GradeReport' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationVerificationMethod] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefEducationVerificationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The method by which the formal education is verified is in a category not yet defined by CEDS.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationVerificationMethod] -SET [Description] = 'Other', [Definition] = 'The method by which the formal education is verified is in a category not yet defined by CEDS.', [SortOrder] = 9.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefELEducationStaffClassification table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELEducationStaffClassification]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'Teacher') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Teacher', 'Teacher', 'Teacher is the title/role of employment, official status, or rank of education staff.', -10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Teacher', [Definition] = 'Teacher is the title/role of employment, official status, or rank of education staff.', [SortOrder] = -10.00 WHERE [Code] = 'Teacher' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'AssistanceTeacher') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssistanceTeacher', 'Assistance Teacher', 'Assistance Teacher is the title/role of employment, official status, or rank of education staff.', -8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Assistance Teacher', [Definition] = 'Assistance Teacher is the title/role of employment, official status, or rank of education staff.', [SortOrder] = -8.00 WHERE [Code] = 'AssistanceTeacher' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'Administrator') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Administrator', 'Administrator', 'Administrator is the title/role of employment, official status, or rank of education staff.', -6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Administrator', [Definition] = 'Administrator is the title/role of employment, official status, or rank of education staff.', [SortOrder] = -6.00 WHERE [Code] = 'Administrator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'NonTeachingLeadership') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NonTeachingLeadership', 'Non-teaching Leadership', 'Non-teaching Leadership is the title/role of employment, official status, or rank of education staff.', -4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Non-teaching Leadership', [Definition] = 'Non-teaching Leadership is the title/role of employment, official status, or rank of education staff.', [SortOrder] = -4.00 WHERE [Code] = 'NonTeachingLeadership' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'NonTeacherOther') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NonTeacherOther', 'Non-teacher Other', 'Non-teacher Other is the title/role of employment, official status, or rank of education staff.', -2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Non-teacher Other', [Definition] = 'Non-teacher Other is the title/role of employment, official status, or rank of education staff.', [SortOrder] = -2.00 WHERE [Code] = 'NonTeacherOther' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'Audiologist') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Audiologist', 'Audiologist', 'Audiologist is the title/role of employment, official status, or rank of education staff.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Audiologist', [Definition] = 'Audiologist is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 1.00 WHERE [Code] = 'Audiologist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'BCBA') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BCBA', 'Board Certified Behavior Analyst (BCBA)', 'Board Certified Behavior Analyst (BCBA) is the title/role of employment, official status, or rank of education staff.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Board Certified Behavior Analyst (BCBA)', [Definition] = 'Board Certified Behavior Analyst (BCBA) is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 3.00 WHERE [Code] = 'BCBA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'BCaBA') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BCaBA', 'Board Certified Assistant Behavior Analyst (BCaBA)', 'Board Certified Assistant Behavior Analyst (BCaBA)', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Board Certified Assistant Behavior Analyst (BCaBA)', [Definition] = 'Board Certified Assistant Behavior Analyst (BCaBA)', [SortOrder] = 5.00 WHERE [Code] = 'BCaBA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'ABAAide') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ABAAide', 'Applied Behavior Analysis (ABA) Aide', 'Applied Behavior Analysis (ABA) Aide is the title/role of employment, official status, or rank of education staff.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Applied Behavior Analysis (ABA) Aide', [Definition] = 'Applied Behavior Analysis (ABA) Aide is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 7.00 WHERE [Code] = 'ABAAide' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'OccupationalTherapyAssistant') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OccupationalTherapyAssistant', 'Certified Occupational Therapy Assistant', 'Certified Occupational Therapy Assistant is the title/role of employment, official status, or rank of education staff.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Certified Occupational Therapy Assistant', [Definition] = 'Certified Occupational Therapy Assistant is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 9.00 WHERE [Code] = 'OccupationalTherapyAssistant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'Nurse') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Nurse', 'Nurse (LPN, RN, NP)', 'Nurse (LPN, RN, NP) is the title/role of employment, official status, or rank of education staff.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Nurse (LPN, RN, NP)', [Definition] = 'Nurse (LPN, RN, NP) is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 11.00 WHERE [Code] = 'Nurse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'LowVisionSpecialist') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LowVisionSpecialist', 'Certified Low Vision Specialist', 'Certified Low Vision Specialist is the title/role of employment, official status, or rank of education staff.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Certified Low Vision Specialist', [Definition] = 'Certified Low Vision Specialist is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 13.00 WHERE [Code] = 'LowVisionSpecialist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'OrientationMobilitySpecialist') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OrientationMobilitySpecialist', 'Orientation and Mobility Specialist', 'Orientation and Mobility Specialist is the title/role of employment, official status, or rank of education staff.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Orientation and Mobility Specialist', [Definition] = 'Orientation and Mobility Specialist is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 15.00 WHERE [Code] = 'OrientationMobilitySpecialist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'VisionRehabTherapist') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VisionRehabTherapist', 'Vision Rehabilitation Therapist', 'Vision Rehabilitation Therapist is the title/role of employment, official status, or rank of education staff.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Vision Rehabilitation Therapist', [Definition] = 'Vision Rehabilitation Therapist is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 17.00 WHERE [Code] = 'VisionRehabTherapist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'OccupationalTherapist') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OccupationalTherapist', 'Occupational Therapist', 'Occupational Therapist is the title/role of employment, official status, or rank of education staff.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Occupational Therapist', [Definition] = 'Occupational Therapist is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 19.00 WHERE [Code] = 'OccupationalTherapist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'Optometrist') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Optometrist', 'Optometrist', 'Optometrist is the title/role of employment, official status, or rank of education staff.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Optometrist', [Definition] = 'Optometrist is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 21.00 WHERE [Code] = 'Optometrist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'PhysicalTherapist') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PhysicalTherapist', 'Physical Therapist/Physical Therapy Assistant', 'Physical Therapist/Physical Therapy Assistant is the title/role of employment, official status, or rank of education staff.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Physical Therapist/Physical Therapy Assistant', [Definition] = 'Physical Therapist/Physical Therapy Assistant is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 23.00 WHERE [Code] = 'PhysicalTherapist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'Pediatrician') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Pediatrician', 'Pediatrician', 'Pediatrician is the title/role of employment, official status, or rank of education staff.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Pediatrician', [Definition] = 'Pediatrician is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 25.00 WHERE [Code] = 'Pediatrician' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'OtherPhysician') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherPhysician', 'Other Physician', 'Other Physician is the title/role of employment, official status, or rank of education staff.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Other Physician', [Definition] = 'Other Physician is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 27.00 WHERE [Code] = 'OtherPhysician' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'PhysicianAssistant') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PhysicianAssistant', 'Physician Assistant', 'Physician Assistant is the title/role of employment, official status, or rank of education staff.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Physician Assistant', [Definition] = 'Physician Assistant is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 29.00 WHERE [Code] = 'PhysicianAssistant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'Psychologists') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Psychologists', 'Psychologists', 'Psychologists is the title/role of employment, official status, or rank of education staff.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Psychologists', [Definition] = 'Psychologists is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 31.00 WHERE [Code] = 'Psychologists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'RegisteredNutritionist') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RegisteredNutritionist', 'Registered or Certified Dietitian/Nutritionist', 'Registered or Certified Dietitian/Nutritionist is the title/role of employment, official status, or rank of education staff.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Registered or Certified Dietitian/Nutritionist', [Definition] = 'Registered or Certified Dietitian/Nutritionist is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 33.00 WHERE [Code] = 'RegisteredNutritionist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'SchoolPsychologist') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SchoolPsychologist', 'School Psychologist', 'School Psychologist is the title/role of employment, official status, or rank of education staff.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'School Psychologist', [Definition] = 'School Psychologist is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 35.00 WHERE [Code] = 'SchoolPsychologist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'SocialWorker') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SocialWorker', 'Clinical and Masters Social Worker', 'Clinical and Masters Social Worker is the title/role of employment, official status, or rank of education staff.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Clinical and Masters Social Worker', [Definition] = 'Clinical and Masters Social Worker is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 37.00 WHERE [Code] = 'SocialWorker' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'SpecialEducationTeacher') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpecialEducationTeacher', 'Special Education Teacher', 'Special Education Teacher is the title/role of employment, official status, or rank of education staff.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Special Education Teacher', [Definition] = 'Special Education Teacher is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 39.00 WHERE [Code] = 'SpecialEducationTeacher' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'SpeechPathologist') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpeechPathologist', 'Speech and Language Pathologist', 'Speech and Language Pathologist is the title/role of employment, official status, or rank of education staff.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Speech and Language Pathologist', [Definition] = 'Speech and Language Pathologist is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 41.00 WHERE [Code] = 'SpeechPathologist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'TeacherOfVisuallyImpaired') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TeacherOfVisuallyImpaired', 'Teacher of the Blind and Visually Impaired', 'Teacher of the Blind and Visually Impaired is the title/role of employment, official status, or rank of education staff.', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Teacher of the Blind and Visually Impaired', [Definition] = 'Teacher of the Blind and Visually Impaired is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 43.00 WHERE [Code] = 'TeacherOfVisuallyImpaired' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'TeacherOfHearingImpaired') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TeacherOfHearingImpaired', 'Teacher of the Deaf and Hearing Impaired', 'Teacher of the Deaf and Hearing Impaired is the title/role of employment, official status, or rank of education staff.', 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Teacher of the Deaf and Hearing Impaired', [Definition] = 'Teacher of the Deaf and Hearing Impaired is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 45.00 WHERE [Code] = 'TeacherOfHearingImpaired' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'TeacherOfLanguageDisabilities') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TeacherOfLanguageDisabilities', 'Teacher of Speech and Language Disabilities', 'Teacher of Speech and Language Disabilities is the title/role of employment, official status, or rank of education staff.', 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Teacher of Speech and Language Disabilities', [Definition] = 'Teacher of Speech and Language Disabilities is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 47.00 WHERE [Code] = 'TeacherOfLanguageDisabilities' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'ServiceCoordinator') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ServiceCoordinator', 'Service Coordinator', 'Service Coordinator is the title/role of employment, official status, or rank of education staff.', 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Service Coordinator', [Definition] = 'Service Coordinator is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 49.00 WHERE [Code] = 'ServiceCoordinator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEducationStaffClassification] WHERE [Code] = 'ContractStaff') BEGIN INSERT INTO dbo.[RefELEducationStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ContractStaff', 'Contract Staff', 'Contract Staff is the title/role of employment, official status, or rank of education staff.', 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEducationStaffClassification] -SET [Description] = 'Contract Staff', [Definition] = 'Contract Staff is the title/role of employment, official status, or rank of education staff.', [SortOrder] = 51.00 WHERE [Code] = 'ContractStaff' END -END - -PRINT N'Populate RefElementaryMiddleAdditional table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefElementaryMiddleAdditional]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefElementaryMiddleAdditional] WHERE [Code] = 'MetAdditionalIndicator') BEGIN INSERT INTO dbo.[RefElementaryMiddleAdditional]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MetAdditionalIndicator', 'Met Additional Indicator', 'The school or district met the additional indicator for all students.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefElementaryMiddleAdditional] -SET [Description] = 'Met Additional Indicator', [Definition] = 'The school or district met the additional indicator for all students.', [SortOrder] = 1.00 WHERE [Code] = 'MetAdditionalIndicator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefElementaryMiddleAdditional] WHERE [Code] = 'DidNotMeet') BEGIN INSERT INTO dbo.[RefElementaryMiddleAdditional]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DidNotMeet', 'Did Not Meet', 'The school or district did not meet the additional indicator for all students.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefElementaryMiddleAdditional] -SET [Description] = 'Did Not Meet', [Definition] = 'The school or district did not meet the additional indicator for all students.', [SortOrder] = 2.00 WHERE [Code] = 'DidNotMeet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefElementaryMiddleAdditional] WHERE [Code] = 'TooFewStudents') BEGIN INSERT INTO dbo.[RefElementaryMiddleAdditional]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TooFewStudents', 'Too Few Students', 'The number of students in the school or district was less than the minimum group size outlined in a state''s consolidated accountability workbook necessary required to reliably calculate the additional indicator status.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefElementaryMiddleAdditional] -SET [Description] = 'Too Few Students', [Definition] = 'The number of students in the school or district was less than the minimum group size outlined in a state''s consolidated accountability workbook necessary required to reliably calculate the additional indicator status.', [SortOrder] = 3.00 WHERE [Code] = 'TooFewStudents' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefElementaryMiddleAdditional] WHERE [Code] = 'NoStudents') BEGIN INSERT INTO dbo.[RefElementaryMiddleAdditional]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoStudents', 'No Students', 'There were no students.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefElementaryMiddleAdditional] -SET [Description] = 'No Students', [Definition] = 'There were no students.', [SortOrder] = 4.00 WHERE [Code] = 'NoStudents' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefElementaryMiddleAdditional] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefElementaryMiddleAdditional]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', 'Elementary/Middle Additional Indicator status is not applicable.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefElementaryMiddleAdditional] -SET [Description] = 'Not applicable', [Definition] = 'Elementary/Middle Additional Indicator status is not applicable.', [SortOrder] = 10.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefELEmploymentSeparationReason table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELEmploymentSeparationReason]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01391') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01391', 'Change of assignment', 'Change of assignment is the primary reason for the termination of the employment relationship.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Change of assignment', [Definition] = 'Change of assignment is the primary reason for the termination of the employment relationship.', [SortOrder] = 1.00 WHERE [Code] = '01391' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '89604') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('89604', 'Compensation', 'Compensation is the primary reason for the termination of the employment relationship.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Compensation', [Definition] = 'Compensation is the primary reason for the termination of the employment relationship.', [SortOrder] = 2.00 WHERE [Code] = '89604' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01404') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01404', 'Death', 'Death is the primary reason for the termination of the employment relationship.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Death', [Definition] = 'Death is the primary reason for the termination of the employment relationship.', [SortOrder] = 3.00 WHERE [Code] = '01404' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01401') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01401', 'Falsified application form', 'Falsified application form is the primary reason for the termination of the employment relationship.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Falsified application form', [Definition] = 'Falsified application form is the primary reason for the termination of the employment relationship.', [SortOrder] = 5.00 WHERE [Code] = '01401' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01400') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01400', 'Continued absence or tardiness', 'Continued absence or tardiness is the primary reason for the termination of the employment relationship.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Continued absence or tardiness', [Definition] = 'Continued absence or tardiness is the primary reason for the termination of the employment relationship.', [SortOrder] = 7.00 WHERE [Code] = '01400' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01402') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01402', 'Credential revoked or suspended', 'Credential revoked or suspended is the primary reason for the termination of the employment relationship.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Credential revoked or suspended', [Definition] = 'Credential revoked or suspended is the primary reason for the termination of the employment relationship.', [SortOrder] = 9.00 WHERE [Code] = '01402' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01399') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01399', 'Misconduct', 'Misconduct is the primary reason for the termination of the employment relationship.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Misconduct', [Definition] = 'Misconduct is the primary reason for the termination of the employment relationship.', [SortOrder] = 11.00 WHERE [Code] = '01399' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01403') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01403', 'Unsatisfactory work performance', 'Unsatisfactory work performance is the primary reason for the termination of the employment relationship.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Unsatisfactory work performance', [Definition] = 'Unsatisfactory work performance is the primary reason for the termination of the employment relationship.', [SortOrder] = 13.00 WHERE [Code] = '01403' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01398') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01398', 'Unsuitability', 'Unsuitability is the primary reason for the termination of the employment relationship.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Unsuitability', [Definition] = 'Unsuitability is the primary reason for the termination of the employment relationship.', [SortOrder] = 15.00 WHERE [Code] = '01398' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01390') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01390', 'Family/personal relocation', 'Family/personal relocation is the primary reason for the termination of the employment relationship.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Family/personal relocation', [Definition] = 'Family/personal relocation is the primary reason for the termination of the employment relationship.', [SortOrder] = 17.00 WHERE [Code] = '01390' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01392') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01392', 'Formal study or research', 'Formal study or research is the primary reason for the termination of the employment relationship.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Formal study or research', [Definition] = 'Formal study or research is the primary reason for the termination of the employment relationship.', [SortOrder] = 19.00 WHERE [Code] = '01392' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01394') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01394', 'Homemaking/caring for a family member', 'Homemaking/caring for a family member is the primary reason for the termination of the employment relationship.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Homemaking/caring for a family member', [Definition] = 'Homemaking/caring for a family member is the primary reason for the termination of the employment relationship.', [SortOrder] = 21.00 WHERE [Code] = '01394' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01393') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01393', 'Illness/disability', 'Illness/disability is the primary reason for the termination of the employment relationship.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Illness/disability', [Definition] = 'Illness/disability is the primary reason for the termination of the employment relationship.', [SortOrder] = 23.00 WHERE [Code] = '01393' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01395') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01395', 'Budgetary reduction', 'Budgetary reduction is the primary reason for the termination of the employment relationship.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Budgetary reduction', [Definition] = 'Budgetary reduction is the primary reason for the termination of the employment relationship.', [SortOrder] = 25.00 WHERE [Code] = '01395' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01397') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01397', 'Decreased workload', 'Decreased workload is the primary reason for the termination of the employment relationship.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Decreased workload', [Definition] = 'Decreased workload is the primary reason for the termination of the employment relationship.', [SortOrder] = 27.00 WHERE [Code] = '01397' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01396') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01396', 'Organizational restructuring', 'Organizational restructuring is the primary reason for the termination of the employment relationship.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Organizational restructuring', [Definition] = 'Organizational restructuring is the primary reason for the termination of the employment relationship.', [SortOrder] = 29.00 WHERE [Code] = '01396' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'The primary reason for the termination of the employment relationship is in a category not yet defined in CEDS.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Other', [Definition] = 'The primary reason for the termination of the employment relationship is in a category not yet defined in CEDS.', [SortOrder] = 31.00 WHERE [Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01405') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01405', 'Personal reason', 'Personal reason is the primary reason for the termination of the employment relationship.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Personal reason', [Definition] = 'Personal reason is the primary reason for the termination of the employment relationship.', [SortOrder] = 33.00 WHERE [Code] = '01405' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '01389') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01389', 'Retirement', 'Retirement is the primary reason for the termination of the employment relationship.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Retirement', [Definition] = 'Retirement is the primary reason for the termination of the employment relationship.', [SortOrder] = 35.00 WHERE [Code] = '01389' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '73201') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73201', 'Termination with Cause', 'Termination with Cause is the primary reason for the termination of the employment relationship.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Termination with Cause', [Definition] = 'Termination with Cause is the primary reason for the termination of the employment relationship.', [SortOrder] = 37.00 WHERE [Code] = '73201' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '73202') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73202', 'Leave Planning to Return', 'Leave Planning to Return is the primary reason for the termination of the employment relationship.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Leave Planning to Return', [Definition] = 'Leave Planning to Return is the primary reason for the termination of the employment relationship.', [SortOrder] = 39.00 WHERE [Code] = '73202' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '73203') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73203', 'Leave Not Planning to Return', 'Leave Not Planning to Return is the primary reason for the termination of the employment relationship.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Leave Not Planning to Return', [Definition] = 'Leave Not Planning to Return is the primary reason for the termination of the employment relationship.', [SortOrder] = 41.00 WHERE [Code] = '73203' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELEmploymentSeparationReason] WHERE [Code] = '09997') BEGIN INSERT INTO dbo.[RefELEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09997', 'Unknown', 'The primary reason for the termination of the employment relationship is unknown.', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELEmploymentSeparationReason] -SET [Description] = 'Unknown', [Definition] = 'The primary reason for the termination of the employment relationship is unknown.', [SortOrder] = 43.00 WHERE [Code] = '09997' END -END - -PRINT N'Populate RefELFacilityLicensingStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELFacilityLicensingStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFacilityLicensingStatus] WHERE [Code] = 'Regulated') BEGIN INSERT INTO dbo.[RefELFacilityLicensingStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Regulated', 'Regulated', 'Regulated is the status of the facility license.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFacilityLicensingStatus] -SET [Description] = 'Regulated', [Definition] = 'Regulated is the status of the facility license.', [SortOrder] = 1.00 WHERE [Code] = 'Regulated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFacilityLicensingStatus] WHERE [Code] = 'Unregulated') BEGIN INSERT INTO dbo.[RefELFacilityLicensingStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unregulated', 'Unregulated', 'Unregulated is the status of the facility license.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFacilityLicensingStatus] -SET [Description] = 'Unregulated', [Definition] = 'Unregulated is the status of the facility license.', [SortOrder] = 2.00 WHERE [Code] = 'Unregulated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFacilityLicensingStatus] WHERE [Code] = 'Exempt') BEGIN INSERT INTO dbo.[RefELFacilityLicensingStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Exempt', 'Exempt', 'Exempt is the status of the facility license.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFacilityLicensingStatus] -SET [Description] = 'Exempt', [Definition] = 'Exempt is the status of the facility license.', [SortOrder] = 3.00 WHERE [Code] = 'Exempt' END -END - -PRINT N'Populate RefELFederalFundingType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELFederalFundingType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'HeadStart') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HeadStart', 'Head Start', 'Head Start is a federal source of funding that contributes to the EL program.', -12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Head Start', [Definition] = 'Head Start is a federal source of funding that contributes to the EL program.', [SortOrder] = -12.00 WHERE [Code] = 'HeadStart' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'EarlyHeadStart') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EarlyHeadStart', 'Early Head Start', 'Early Head Start is a federal source of funding that contributes to the EL program.', -10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Early Head Start', [Definition] = 'Early Head Start is a federal source of funding that contributes to the EL program.', [SortOrder] = -10.00 WHERE [Code] = 'EarlyHeadStart' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'CCDF') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CCDF', 'Office of Child Care-CCDF', 'Office of Child Care-CCDF is a federal source of funding that contributes to the EL program.', -8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Office of Child Care-CCDF', [Definition] = 'Office of Child Care-CCDF is a federal source of funding that contributes to the EL program.', [SortOrder] = -8.00 WHERE [Code] = 'CCDF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'EarlyInterventionPartC') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EarlyInterventionPartC', 'Early Intevention Part C', 'Early Intervention Part C is a federal source of funding that contributes to the EL program.', -6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Early Intevention Part C', [Definition] = 'Early Intervention Part C is a federal source of funding that contributes to the EL program.', [SortOrder] = -6.00 WHERE [Code] = 'EarlyInterventionPartC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'PartB619') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartB619', 'Special Education Preschool Part B 619', 'Special Education Preschool Part B 619 is a federal source of funding that contributes to the EL program.', -4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Special Education Preschool Part B 619', [Definition] = 'Special Education Preschool Part B 619 is a federal source of funding that contributes to the EL program.', [SortOrder] = -4.00 WHERE [Code] = 'PartB619' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'TitleI') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TitleI', 'Title I', 'Title I is a federal source of funding that contributes to the EL program.', -2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Title I', [Definition] = 'Title I is a federal source of funding that contributes to the EL program.', [SortOrder] = -2.00 WHERE [Code] = 'TitleI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'MIECHV') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MIECHV', 'Maternal, Infant, and Early Childhood Home Visiting (MIECHV)', 'Maternal, Infant, and Early Childhood Home Visiting (MIECHV) is a federal source of funding that contributes to the EL program.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Maternal, Infant, and Early Childhood Home Visiting (MIECHV)', [Definition] = 'Maternal, Infant, and Early Childhood Home Visiting (MIECHV) is a federal source of funding that contributes to the EL program.', [SortOrder] = 0.00 WHERE [Code] = 'MIECHV' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'TitleVMCH') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TitleVMCH', 'Title V Maternal and Child Health (MCH)', 'Title V Maternal and Child Health (MCH) is a federal source of funding that contributes to the EL program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Title V Maternal and Child Health (MCH)', [Definition] = 'Title V Maternal and Child Health (MCH) is a federal source of funding that contributes to the EL program.', [SortOrder] = 1.00 WHERE [Code] = 'TitleVMCH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'PartB611IDEA') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartB611IDEA', 'Part B 611 Individuals with Disabilities Education Act (IDEA)', 'Part B 611 Individuals with Disabilities Education Act (IDEA) is a federal source of funding that contributes to the EL program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Part B 611 Individuals with Disabilities Education Act (IDEA)', [Definition] = 'Part B 611 Individuals with Disabilities Education Act (IDEA) is a federal source of funding that contributes to the EL program.', [SortOrder] = 3.00 WHERE [Code] = 'PartB611IDEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'PartDIDEA') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartDIDEA', 'Part D Individuals with Disabilities Education Act (IDEA)', 'Part D Individuals with Disabilities Education Act (IDEA) is a federal source of funding that contributes to the EL program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Part D Individuals with Disabilities Education Act (IDEA)', [Definition] = 'Part D Individuals with Disabilities Education Act (IDEA) is a federal source of funding that contributes to the EL program.', [SortOrder] = 5.00 WHERE [Code] = 'PartDIDEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'Medicaid') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Medicaid', 'Medicaid', 'Medicaid is a federal source of funding that contributes to the EL program.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Medicaid', [Definition] = 'Medicaid is a federal source of funding that contributes to the EL program.', [SortOrder] = 7.00 WHERE [Code] = 'Medicaid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'SCHIP') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SCHIP', 'State Children''s Health Insurance Program (SCHIP)', 'State Children''s Health Insurance Program (SCHIP) is a federal source of funding that contributes to the EL program.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'State Children''s Health Insurance Program (SCHIP)', [Definition] = 'State Children''s Health Insurance Program (SCHIP) is a federal source of funding that contributes to the EL program.', [SortOrder] = 9.00 WHERE [Code] = 'SCHIP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'WIC') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WIC', 'Special Supplemental Nutrition Program for Women Infants and Children (WIC)', 'Special Supplemental Nutrition Program for Women Infants and Children (WIC) is a federal source of funding that contributes to the EL program.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Special Supplemental Nutrition Program for Women Infants and Children (WIC)', [Definition] = 'Special Supplemental Nutrition Program for Women Infants and Children (WIC) is a federal source of funding that contributes to the EL program.', [SortOrder] = 11.00 WHERE [Code] = 'WIC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'TANF') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TANF', ' Temporary Assistance for Needy Families (TANF)', ' Temporary Assistance for Needy Families (TANF) is a federal source of funding that contributes to the EL program.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = ' Temporary Assistance for Needy Families (TANF)', [Definition] = ' Temporary Assistance for Needy Families (TANF) is a federal source of funding that contributes to the EL program.', [SortOrder] = 13.00 WHERE [Code] = 'TANF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'TitleVHomeVisiting') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TitleVHomeVisiting', 'Title V Home Visiting', 'Title V Home Visiting is a federal source of funding that contributes to the EL program.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Title V Home Visiting', [Definition] = 'Title V Home Visiting is a federal source of funding that contributes to the EL program.', [SortOrder] = 15.00 WHERE [Code] = 'TitleVHomeVisiting' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'SSBG') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SSBG', 'Social Services Block Grant (SSBG)', 'Social Services Block Grant (SSBG) is a federal source of funding that contributes to the EL program.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Social Services Block Grant (SSBG)', [Definition] = 'Social Services Block Grant (SSBG) is a federal source of funding that contributes to the EL program.', [SortOrder] = 17.00 WHERE [Code] = 'SSBG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'ChampusTricare') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChampusTricare', 'Champus/Tricare', 'Champus/Tricare is a federal source of funding that contributes to the EL program.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Champus/Tricare', [Definition] = 'Champus/Tricare is a federal source of funding that contributes to the EL program.', [SortOrder] = 19.00 WHERE [Code] = 'ChampusTricare' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'ImpactAid') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ImpactAid', 'Impact Aid', 'Impact Aid is a federal source of funding that contributes to the EL program.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Impact Aid', [Definition] = 'Impact Aid is a federal source of funding that contributes to the EL program.', [SortOrder] = 21.00 WHERE [Code] = 'ImpactAid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'FamilyPreservation') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FamilyPreservation', 'Family Preservation', 'Family Preservation is a federal source of funding that contributes to the EL program.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Family Preservation', [Definition] = 'Family Preservation is a federal source of funding that contributes to the EL program.', [SortOrder] = 23.00 WHERE [Code] = 'FamilyPreservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'DropoutPrevention') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DropoutPrevention', 'Dropout Prevention', 'Dropout Prevention is a federal source of funding that contributes to the EL program.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Dropout Prevention', [Definition] = 'Dropout Prevention is a federal source of funding that contributes to the EL program.', [SortOrder] = 25.00 WHERE [Code] = 'DropoutPrevention' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'JuvenileJustice') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JuvenileJustice', 'Juvenile Justice', 'Juvenile Justice is a federal source of funding that contributes to the EL program.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Juvenile Justice', [Definition] = 'Juvenile Justice is a federal source of funding that contributes to the EL program.', [SortOrder] = 27.00 WHERE [Code] = 'JuvenileJustice' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'EHDI') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EHDI', 'Early Hearing Detection and Intervention', 'Early Hearing Detection and Intervention (EHDI) is a federal source of funding that contributes to the EL Program.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Early Hearing Detection and Intervention', [Definition] = 'Early Hearing Detection and Intervention (EHDI) is a federal source of funding that contributes to the EL Program.', [SortOrder] = 28.00 WHERE [Code] = 'EHDI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELFederalFundingType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefELFederalFundingType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'A federal source of funding that contributes to the EL program that is not yet a category in CEDS.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELFederalFundingType] -SET [Description] = 'Other', [Definition] = 'A federal source of funding that contributes to the EL program that is not yet a category in CEDS.', [SortOrder] = 29.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefELGroupSizeStandardMet table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELGroupSizeStandardMet]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELGroupSizeStandardMet] WHERE [Code] = 'Infants') BEGIN INSERT INTO dbo.[RefELGroupSizeStandardMet]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Infants', 'Meets or exceeds standards for infants', 'Meets or exceeds NAEYC or NAFCC standards for infant group sizes.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELGroupSizeStandardMet] -SET [Description] = 'Meets or exceeds standards for infants', [Definition] = 'Meets or exceeds NAEYC or NAFCC standards for infant group sizes.', [SortOrder] = 1.00 WHERE [Code] = 'Infants' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELGroupSizeStandardMet] WHERE [Code] = 'Toddlers') BEGIN INSERT INTO dbo.[RefELGroupSizeStandardMet]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Toddlers', 'Meets or exceeds standards for toddlers', 'Meets or exceeds NAEYC or NAFCC standards for toddler group sizes. ', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELGroupSizeStandardMet] -SET [Description] = 'Meets or exceeds standards for toddlers', [Definition] = 'Meets or exceeds NAEYC or NAFCC standards for toddler group sizes. ', [SortOrder] = 2.00 WHERE [Code] = 'Toddlers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELGroupSizeStandardMet] WHERE [Code] = 'Preschoolers') BEGIN INSERT INTO dbo.[RefELGroupSizeStandardMet]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Preschoolers', 'Meets or exceeds standards for preschoolers', 'Meets or exceeds NAEYC or NAFCC standards for preschooler group sizes.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELGroupSizeStandardMet] -SET [Description] = 'Meets or exceeds standards for preschoolers', [Definition] = 'Meets or exceeds NAEYC or NAFCC standards for preschooler group sizes.', [SortOrder] = 3.00 WHERE [Code] = 'Preschoolers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELGroupSizeStandardMet] WHERE [Code] = 'School-Age') BEGIN INSERT INTO dbo.[RefELGroupSizeStandardMet]([Code], [Description], [Definition], [SortOrder]) -VALUES ('School-Age', 'Meets or exceeds standards for school-age', 'Meets or exceeds NAEYC or NAFCC standards for school-age group sizes.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELGroupSizeStandardMet] -SET [Description] = 'Meets or exceeds standards for school-age', [Definition] = 'Meets or exceeds NAEYC or NAFCC standards for school-age group sizes.', [SortOrder] = 4.00 WHERE [Code] = 'School-Age' END -END - -PRINT N'Populate RefELLevelOfSpecialization table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELLevelOfSpecialization]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLevelOfSpecialization] WHERE [Code] = 'Major') BEGIN INSERT INTO dbo.[RefELLevelOfSpecialization]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Major', 'Major', 'The person majored in early learning.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLevelOfSpecialization] -SET [Description] = 'Major', [Definition] = 'The person majored in early learning.', [SortOrder] = 1.00 WHERE [Code] = 'Major' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLevelOfSpecialization] WHERE [Code] = 'Minor') BEGIN INSERT INTO dbo.[RefELLevelOfSpecialization]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Minor', 'Minor', 'The person minored in early learning.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLevelOfSpecialization] -SET [Description] = 'Minor', [Definition] = 'The person minored in early learning.', [SortOrder] = 2.00 WHERE [Code] = 'Minor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLevelOfSpecialization] WHERE [Code] = 'AreaOfEmphasis') BEGIN INSERT INTO dbo.[RefELLevelOfSpecialization]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AreaOfEmphasis', 'Area of emphasis or concentration', 'The person had early learning as an area of emphasis or concentration.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLevelOfSpecialization] -SET [Description] = 'Area of emphasis or concentration', [Definition] = 'The person had early learning as an area of emphasis or concentration.', [SortOrder] = 3.00 WHERE [Code] = 'AreaOfEmphasis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLevelOfSpecialization] WHERE [Code] = 'PostDegreeStudy') BEGIN INSERT INTO dbo.[RefELLevelOfSpecialization]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PostDegreeStudy', 'Post-degree study', 'Early learning was a focus of post-degree study by the person.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLevelOfSpecialization] -SET [Description] = 'Post-degree study', [Definition] = 'Early learning was a focus of post-degree study by the person.', [SortOrder] = 4.00 WHERE [Code] = 'PostDegreeStudy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLevelOfSpecialization] WHERE [Code] = 'AreaOfInterest') BEGIN INSERT INTO dbo.[RefELLevelOfSpecialization]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AreaOfInterest', 'Area of Interest', 'Early learning was as area of Interest for the person.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLevelOfSpecialization] -SET [Description] = 'Area of Interest', [Definition] = 'Early learning was as area of Interest for the person.', [SortOrder] = 5.00 WHERE [Code] = 'AreaOfInterest' END -END - -PRINT N'Populate RefELLocalRevenueSource table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELLocalRevenueSource]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLocalRevenueSource] WHERE [Code] = 'LEA') BEGIN INSERT INTO dbo.[RefELLocalRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LEA', 'LEA', 'LEA is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLocalRevenueSource] -SET [Description] = 'LEA', [Definition] = 'LEA is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', [SortOrder] = 1.00 WHERE [Code] = 'LEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLocalRevenueSource] WHERE [Code] = 'CountyLevyTax') BEGIN INSERT INTO dbo.[RefELLocalRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CountyLevyTax', 'County Levy Tax', 'County Levy Tax is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLocalRevenueSource] -SET [Description] = 'County Levy Tax', [Definition] = 'County Levy Tax is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', [SortOrder] = 3.00 WHERE [Code] = 'CountyLevyTax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLocalRevenueSource] WHERE [Code] = 'Foundations') BEGIN INSERT INTO dbo.[RefELLocalRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Foundations', 'Foundations', 'Foundations is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLocalRevenueSource] -SET [Description] = 'Foundations', [Definition] = 'Foundations is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', [SortOrder] = 5.00 WHERE [Code] = 'Foundations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLocalRevenueSource] WHERE [Code] = 'SpecialFundRaising') BEGIN INSERT INTO dbo.[RefELLocalRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpecialFundRaising', 'Special Fund Raising', 'Special Fund Raising is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLocalRevenueSource] -SET [Description] = 'Special Fund Raising', [Definition] = 'Special Fund Raising is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', [SortOrder] = 7.00 WHERE [Code] = 'SpecialFundRaising' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLocalRevenueSource] WHERE [Code] = 'LocalGovernment') BEGIN INSERT INTO dbo.[RefELLocalRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LocalGovernment', 'Local Government', 'Local Government is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLocalRevenueSource] -SET [Description] = 'Local Government', [Definition] = 'Local Government is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', [SortOrder] = 9.00 WHERE [Code] = 'LocalGovernment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLocalRevenueSource] WHERE [Code] = 'CashDonations') BEGIN INSERT INTO dbo.[RefELLocalRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CashDonations', 'Cash Donations', 'Cash Donations is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLocalRevenueSource] -SET [Description] = 'Cash Donations', [Definition] = 'Cash Donations is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', [SortOrder] = 11.00 WHERE [Code] = 'CashDonations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLocalRevenueSource] WHERE [Code] = 'UnitedWay') BEGIN INSERT INTO dbo.[RefELLocalRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UnitedWay', 'United Way', 'United Way is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLocalRevenueSource] -SET [Description] = 'United Way', [Definition] = 'United Way is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', [SortOrder] = 13.00 WHERE [Code] = 'UnitedWay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLocalRevenueSource] WHERE [Code] = 'PrivateInsurance') BEGIN INSERT INTO dbo.[RefELLocalRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrivateInsurance', 'Private Insurance', 'Private Insurance is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLocalRevenueSource] -SET [Description] = 'Private Insurance', [Definition] = 'Private Insurance is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', [SortOrder] = 15.00 WHERE [Code] = 'PrivateInsurance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLocalRevenueSource] WHERE [Code] = 'FamilyFees') BEGIN INSERT INTO dbo.[RefELLocalRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FamilyFees', 'Family Fees', 'Family Fees is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLocalRevenueSource] -SET [Description] = 'Family Fees', [Definition] = 'Family Fees is a source of funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', [SortOrder] = 17.00 WHERE [Code] = 'FamilyFees' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELLocalRevenueSource] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefELLocalRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'A source of funds is in a category not yet included in CEDS..', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELLocalRevenueSource] -SET [Description] = 'Other', [Definition] = 'A source of funds is in a category not yet included in CEDS..', [SortOrder] = 19.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefELOtherFederalFundingSources table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELOtherFederalFundingSources]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELOtherFederalFundingSources] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefELOtherFederalFundingSources]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Head Start', 'Head Start is another contributing funding source.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELOtherFederalFundingSources] -SET [Description] = 'Head Start', [Definition] = 'Head Start is another contributing funding source.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELOtherFederalFundingSources] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefELOtherFederalFundingSources]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Early Head Start', 'Early Head Start is another contributing funding source.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELOtherFederalFundingSources] -SET [Description] = 'Early Head Start', [Definition] = 'Early Head Start is another contributing funding source.', [SortOrder] = 3.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELOtherFederalFundingSources] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefELOtherFederalFundingSources]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Office of Child Care-CCDF', 'Office of Child Care-CCDF is another contributing funding source.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELOtherFederalFundingSources] -SET [Description] = 'Office of Child Care-CCDF', [Definition] = 'Office of Child Care-CCDF is another contributing funding source.', [SortOrder] = 5.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELOtherFederalFundingSources] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefELOtherFederalFundingSources]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Early Intervention Part C', 'Early Intervention Part C is another contributing funding source.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELOtherFederalFundingSources] -SET [Description] = 'Early Intervention Part C', [Definition] = 'Early Intervention Part C is another contributing funding source.', [SortOrder] = 7.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELOtherFederalFundingSources] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefELOtherFederalFundingSources]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Special Education Preschool Part B 619', 'Special Education Preschool Part B 619 is another contributing funding source.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELOtherFederalFundingSources] -SET [Description] = 'Special Education Preschool Part B 619', [Definition] = 'Special Education Preschool Part B 619 is another contributing funding source.', [SortOrder] = 9.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELOtherFederalFundingSources] WHERE [Code] = '99') BEGIN INSERT INTO dbo.[RefELOtherFederalFundingSources]([Code], [Description], [Definition], [SortOrder]) -VALUES ('99', 'Other', 'The other contributing funding source is in a category not yet included in CEDS.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELOtherFederalFundingSources] -SET [Description] = 'Other', [Definition] = 'The other contributing funding source is in a category not yet included in CEDS.', [SortOrder] = 99.00 WHERE [Code] = '99' END -END - -PRINT N'Populate RefELOutcomeMeasurementLevel table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELOutcomeMeasurementLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELOutcomeMeasurementLevel] WHERE [Code] = 'Baseline') BEGIN INSERT INTO dbo.[RefELOutcomeMeasurementLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Baseline', 'Baseline - at entry', 'Baseline - at entry is the early learning outcome level.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELOutcomeMeasurementLevel] -SET [Description] = 'Baseline - at entry', [Definition] = 'Baseline - at entry is the early learning outcome level.', [SortOrder] = 1.00 WHERE [Code] = 'Baseline' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELOutcomeMeasurementLevel] WHERE [Code] = 'AtExit') BEGIN INSERT INTO dbo.[RefELOutcomeMeasurementLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AtExit', 'At exit', 'At exit is the early learning outcome level.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELOutcomeMeasurementLevel] -SET [Description] = 'At exit', [Definition] = 'At exit is the early learning outcome level.', [SortOrder] = 3.00 WHERE [Code] = 'AtExit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELOutcomeMeasurementLevel] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefELOutcomeMeasurementLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', 'No is the early learning outcome level.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELOutcomeMeasurementLevel] -SET [Description] = 'No', [Definition] = 'No is the early learning outcome level.', [SortOrder] = 5.00 WHERE [Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELOutcomeMeasurementLevel] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefELOutcomeMeasurementLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is the early learning outcome level.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELOutcomeMeasurementLevel] -SET [Description] = 'Other', [Definition] = 'Other is the early learning outcome level.', [SortOrder] = 7.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefELProfessionalDevelopmentTopicArea table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELProfessionalDevelopmentTopicArea]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProfessionalDevelopmentTopicArea] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefELProfessionalDevelopmentTopicArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Child Growth and Development', 'Child Growth and Development is the early learning staff professional development topical area.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProfessionalDevelopmentTopicArea] -SET [Description] = 'Child Growth and Development', [Definition] = 'Child Growth and Development is the early learning staff professional development topical area.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProfessionalDevelopmentTopicArea] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefELProfessionalDevelopmentTopicArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Health Safety and Nutrition', 'Health Safety and Nutrition is the early learning staff professional development topical area.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProfessionalDevelopmentTopicArea] -SET [Description] = 'Health Safety and Nutrition', [Definition] = 'Health Safety and Nutrition is the early learning staff professional development topical area.', [SortOrder] = 3.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProfessionalDevelopmentTopicArea] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefELProfessionalDevelopmentTopicArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Teaching and Learning', 'Teaching and Learning is the early learning staff professional development topical area.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProfessionalDevelopmentTopicArea] -SET [Description] = 'Teaching and Learning', [Definition] = 'Teaching and Learning is the early learning staff professional development topical area.', [SortOrder] = 5.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProfessionalDevelopmentTopicArea] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefELProfessionalDevelopmentTopicArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Observing', 'Observing is the early learning staff professional development topical area.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProfessionalDevelopmentTopicArea] -SET [Description] = 'Observing', [Definition] = 'Observing is the early learning staff professional development topical area.', [SortOrder] = 7.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProfessionalDevelopmentTopicArea] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefELProfessionalDevelopmentTopicArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Documenting and Assessing Family and Community Relationships', 'Documenting and Assessing Family and Community Relationships is the early learning staff professional development topical area.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProfessionalDevelopmentTopicArea] -SET [Description] = 'Documenting and Assessing Family and Community Relationships', [Definition] = 'Documenting and Assessing Family and Community Relationships is the early learning staff professional development topical area.', [SortOrder] = 9.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProfessionalDevelopmentTopicArea] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefELProfessionalDevelopmentTopicArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Administration and Management', 'Administration and Management is the early learning staff professional development topical area.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProfessionalDevelopmentTopicArea] -SET [Description] = 'Administration and Management', [Definition] = 'Administration and Management is the early learning staff professional development topical area.', [SortOrder] = 11.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProfessionalDevelopmentTopicArea] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefELProfessionalDevelopmentTopicArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Early Childhood Education Profession and Policy', 'Early Childhood Education Profession and Policy is the early learning staff professional development topical area.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProfessionalDevelopmentTopicArea] -SET [Description] = 'Early Childhood Education Profession and Policy', [Definition] = 'Early Childhood Education Profession and Policy is the early learning staff professional development topical area.', [SortOrder] = 13.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProfessionalDevelopmentTopicArea] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefELProfessionalDevelopmentTopicArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Working with Diverse Populations', 'Working with Diverse Populations is the early learning staff professional development topical area.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProfessionalDevelopmentTopicArea] -SET [Description] = 'Working with Diverse Populations', [Definition] = 'Working with Diverse Populations is the early learning staff professional development topical area.', [SortOrder] = 15.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProfessionalDevelopmentTopicArea] WHERE [Code] = '99') BEGIN INSERT INTO dbo.[RefELProfessionalDevelopmentTopicArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('99', 'Other', 'The early learning staff professional development topical area is in a category not yet defined in CEDS.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProfessionalDevelopmentTopicArea] -SET [Description] = 'Other', [Definition] = 'The early learning staff professional development topical area is in a category not yet defined in CEDS.', [SortOrder] = 99.00 WHERE [Code] = '99' END -END - -PRINT N'Populate RefELProgramEligibility table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELProgramEligibility]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibility] WHERE [Code] = 'Age') BEGIN INSERT INTO dbo.[RefELProgramEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Age', 'Age', 'Age is the category under which the person is eligible for an early childhood program or service.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibility] -SET [Description] = 'Age', [Definition] = 'Age is the category under which the person is eligible for an early childhood program or service.', [SortOrder] = 1.00 WHERE [Code] = 'Age' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibility] WHERE [Code] = 'FamilyIncome') BEGIN INSERT INTO dbo.[RefELProgramEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FamilyIncome', 'Family income', 'Family income is the category under which the person is eligible for an early childhood program or service.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibility] -SET [Description] = 'Family income', [Definition] = 'Family income is the category under which the person is eligible for an early childhood program or service.', [SortOrder] = 2.00 WHERE [Code] = 'FamilyIncome' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibility] WHERE [Code] = 'DisabilityStatus') BEGIN INSERT INTO dbo.[RefELProgramEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DisabilityStatus', 'Disability Status', 'Disability Status is the category under which the person is eligible for an early childhood program or service.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibility] -SET [Description] = 'Disability Status', [Definition] = 'Disability Status is the category under which the person is eligible for an early childhood program or service.', [SortOrder] = 3.00 WHERE [Code] = 'DisabilityStatus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibility] WHERE [Code] = 'SSSI') BEGIN INSERT INTO dbo.[RefELProgramEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SSSI', 'Supplemental social security income', 'Supplemental social security income is the category under which the person is eligible for an early childhood program or service.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibility] -SET [Description] = 'Supplemental social security income', [Definition] = 'Supplemental social security income is the category under which the person is eligible for an early childhood program or service.', [SortOrder] = 4.00 WHERE [Code] = 'SSSI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibility] WHERE [Code] = 'WIC') BEGIN INSERT INTO dbo.[RefELProgramEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WIC', 'Women, infants, and children', 'Women, infants, and children is the category under which the person is eligible for an early childhood program or service.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibility] -SET [Description] = 'Women, infants, and children', [Definition] = 'Women, infants, and children is the category under which the person is eligible for an early childhood program or service.', [SortOrder] = 5.00 WHERE [Code] = 'WIC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibility] WHERE [Code] = 'TANF') BEGIN INSERT INTO dbo.[RefELProgramEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TANF', 'Temporary assistance for needy families', 'Temporary assistance for needy families is the category under which the person is eligible for an early childhood program or service.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibility] -SET [Description] = 'Temporary assistance for needy families', [Definition] = 'Temporary assistance for needy families is the category under which the person is eligible for an early childhood program or service.', [SortOrder] = 6.00 WHERE [Code] = 'TANF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibility] WHERE [Code] = 'OtherPublicAssistance') BEGIN INSERT INTO dbo.[RefELProgramEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherPublicAssistance', 'Other public assistance', 'Other public assistance is the category under which the person is eligible for an early childhood program or service.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibility] -SET [Description] = 'Other public assistance', [Definition] = 'Other public assistance is the category under which the person is eligible for an early childhood program or service.', [SortOrder] = 7.00 WHERE [Code] = 'OtherPublicAssistance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibility] WHERE [Code] = 'Foster') BEGIN INSERT INTO dbo.[RefELProgramEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Foster', 'Foster', 'Foster is the category under which the person is eligible for an early childhood program or service.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibility] -SET [Description] = 'Foster', [Definition] = 'Foster is the category under which the person is eligible for an early childhood program or service.', [SortOrder] = 8.00 WHERE [Code] = 'Foster' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibility] WHERE [Code] = 'MilitaryFamily') BEGIN INSERT INTO dbo.[RefELProgramEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MilitaryFamily', 'Military family', 'Military family is the category under which the person is eligible for an early childhood program or service.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibility] -SET [Description] = 'Military family', [Definition] = 'Military family is the category under which the person is eligible for an early childhood program or service.', [SortOrder] = 9.00 WHERE [Code] = 'MilitaryFamily' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibility] WHERE [Code] = 'ELL') BEGIN INSERT INTO dbo.[RefELProgramEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ELL', 'Home language other than English', 'Home language other than English is the category under which the person is eligible for an early childhood program or service.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibility] -SET [Description] = 'Home language other than English', [Definition] = 'Home language other than English is the category under which the person is eligible for an early childhood program or service.', [SortOrder] = 10.00 WHERE [Code] = 'ELL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibility] WHERE [Code] = 'OtherFamilyRisk') BEGIN INSERT INTO dbo.[RefELProgramEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherFamilyRisk', 'Other family risk factors', 'Other family risk factors is the category under which the person is eligible for an early childhood program or service.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibility] -SET [Description] = 'Other family risk factors', [Definition] = 'Other family risk factors is the category under which the person is eligible for an early childhood program or service.', [SortOrder] = 11.00 WHERE [Code] = 'OtherFamilyRisk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibility] WHERE [Code] = 'OtherChildRisk') BEGIN INSERT INTO dbo.[RefELProgramEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherChildRisk', 'Other child risk factors', 'Other child risk factors is the category under which the person is eligible for an early childhood program or service.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibility] -SET [Description] = 'Other child risk factors', [Definition] = 'Other child risk factors is the category under which the person is eligible for an early childhood program or service.', [SortOrder] = 12.00 WHERE [Code] = 'OtherChildRisk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibility] WHERE [Code] = 'AtRisk') BEGIN INSERT INTO dbo.[RefELProgramEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AtRisk', 'At-risk of having a substantial developmental delay', 'At-risk of having a substantial developmental delay is the category under which the person is eligible for an early childhood program or service.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibility] -SET [Description] = 'At-risk of having a substantial developmental delay', [Definition] = 'At-risk of having a substantial developmental delay is the category under which the person is eligible for an early childhood program or service.', [SortOrder] = 20.00 WHERE [Code] = 'AtRisk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibility] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefELProgramEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The category under which the person is eligible for an early childhood program or service is not yet defined in CEDS.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibility] -SET [Description] = 'Other', [Definition] = 'The category under which the person is eligible for an early childhood program or service is not yet defined in CEDS.', [SortOrder] = 21.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefELProgramEligibilityStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELProgramEligibilityStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibilityStatus] WHERE [Code] = 'Pending') BEGIN INSERT INTO dbo.[RefELProgramEligibilityStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Pending', 'Pending', 'Pending is the status of eligibility for the child.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibilityStatus] -SET [Description] = 'Pending', [Definition] = 'Pending is the status of eligibility for the child.', [SortOrder] = 3.00 WHERE [Code] = 'Pending' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibilityStatus] WHERE [Code] = 'NotEligible') BEGIN INSERT INTO dbo.[RefELProgramEligibilityStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotEligible', 'Not found eligible', 'Not found eligible is the status of eligibility for the child.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibilityStatus] -SET [Description] = 'Not found eligible', [Definition] = 'Not found eligible is the status of eligibility for the child.', [SortOrder] = 5.00 WHERE [Code] = 'NotEligible' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibilityStatus] WHERE [Code] = 'Eligible') BEGIN INSERT INTO dbo.[RefELProgramEligibilityStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Eligible', 'Found eligible', 'Found eligible is the status of eligibility for the child.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibilityStatus] -SET [Description] = 'Found eligible', [Definition] = 'Found eligible is the status of eligibility for the child.', [SortOrder] = 7.00 WHERE [Code] = 'Eligible' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramEligibilityStatus] WHERE [Code] = 'NotActive') BEGIN INSERT INTO dbo.[RefELProgramEligibilityStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotActive', 'Not yet active', 'Not yet active is the status of eligibility for the child.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramEligibilityStatus] -SET [Description] = 'Not yet active', [Definition] = 'Not yet active is the status of eligibility for the child.', [SortOrder] = 9.00 WHERE [Code] = 'NotActive' END -END - -PRINT N'Populate RefELProgramLicenseStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELProgramLicenseStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramLicenseStatus] WHERE [Code] = 'Unlicensed') BEGIN INSERT INTO dbo.[RefELProgramLicenseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unlicensed', 'Unlicensed', 'Unlicensed is the current licensing status for an early learning program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramLicenseStatus] -SET [Description] = 'Unlicensed', [Definition] = 'Unlicensed is the current licensing status for an early learning program.', [SortOrder] = 1.00 WHERE [Code] = 'Unlicensed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramLicenseStatus] WHERE [Code] = 'ExemptRegulated') BEGIN INSERT INTO dbo.[RefELProgramLicenseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ExemptRegulated', 'Exempt - regulated', 'Exempt - regulated is the current licensing status for an early learning program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramLicenseStatus] -SET [Description] = 'Exempt - regulated', [Definition] = 'Exempt - regulated is the current licensing status for an early learning program.', [SortOrder] = 2.00 WHERE [Code] = 'ExemptRegulated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramLicenseStatus] WHERE [Code] = 'ExemptUnregulated') BEGIN INSERT INTO dbo.[RefELProgramLicenseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ExemptUnregulated', 'Exempt - unregulated', 'Exempt - unregulated is the current licensing status for an early learning program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramLicenseStatus] -SET [Description] = 'Exempt - unregulated', [Definition] = 'Exempt - unregulated is the current licensing status for an early learning program.', [SortOrder] = 3.00 WHERE [Code] = 'ExemptUnregulated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELProgramLicenseStatus] WHERE [Code] = 'Licensed') BEGIN INSERT INTO dbo.[RefELProgramLicenseStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Licensed', 'Licensed', 'Licensed is the current licensing status for an early learning program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELProgramLicenseStatus] -SET [Description] = 'Licensed', [Definition] = 'Licensed is the current licensing status for an early learning program.', [SortOrder] = 4.00 WHERE [Code] = 'Licensed' END -END - -PRINT N'Populate RefELServiceProfessionalStaffClassification table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELServiceProfessionalStaffClassification]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'ABAAide') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ABAAide', 'Applied Behavior Analysis (ABA) Aide', 'Applied Behavior Analysis (ABA) Aide is the title/role of employment, official status, or rank of the early learning service professional.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Applied Behavior Analysis (ABA) Aide', [Definition] = 'Applied Behavior Analysis (ABA) Aide is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 1.00 WHERE [Code] = 'ABAAide' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'Audiologist') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Audiologist', 'Audiologist', 'Audiologist is the title/role of employment, official status, or rank of the early learning service professional.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Audiologist', [Definition] = 'Audiologist is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 3.00 WHERE [Code] = 'Audiologist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'BCaBA') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BCaBA', 'Board Certified Assistant Behavior Analyst (BCaBA)', 'Board Certified Assistant Behavior Analyst (BCaBA) is the title/role of employment, official status, or rank of the early learning service professional.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Board Certified Assistant Behavior Analyst (BCaBA)', [Definition] = 'Board Certified Assistant Behavior Analyst (BCaBA) is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 5.00 WHERE [Code] = 'BCaBA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'BCBA') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BCBA', 'Board Certified Behavior Analyst (BCBA)', 'Board Certified Behavior Analyst (BCBA) is the title/role of employment, official status, or rank of the early learning service professional.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Board Certified Behavior Analyst (BCBA)', [Definition] = 'Board Certified Behavior Analyst (BCBA) is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 7.00 WHERE [Code] = 'BCBA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'LowVisionSpecialist') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LowVisionSpecialist', 'Certified Low Vision Specialist', 'Certified Low Vision Specialist is the title/role of employment, official status, or rank of the early learning service professional.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Certified Low Vision Specialist', [Definition] = 'Certified Low Vision Specialist is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 9.00 WHERE [Code] = 'LowVisionSpecialist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'OccupationalTherapyAssistant') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OccupationalTherapyAssistant', 'Certified Occupational Therapy Assistant', 'Certified Occupational Therapy Assistant is the title/role of employment, official status, or rank of the early learning service professional.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Certified Occupational Therapy Assistant', [Definition] = 'Certified Occupational Therapy Assistant is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 11.00 WHERE [Code] = 'OccupationalTherapyAssistant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'SocialWorker') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SocialWorker', 'Clinical and Masters Social Worker', 'Clinical and Masters Social Worker is the title/role of employment, official status, or rank of the early learning service professional.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Clinical and Masters Social Worker', [Definition] = 'Clinical and Masters Social Worker is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 13.00 WHERE [Code] = 'SocialWorker' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'ContractStaff') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ContractStaff', 'Contract Staff', 'Contract Staff is the title/role of employment, official status, or rank of the early learning service professional.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Contract Staff', [Definition] = 'Contract Staff is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 15.00 WHERE [Code] = 'ContractStaff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'HomeVisitor') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HomeVisitor', 'Home Visitor', 'Home Visitor is the title/role of employment, official status, or rank of the early learning service professional.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Home Visitor', [Definition] = 'Home Visitor is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 17.00 WHERE [Code] = 'HomeVisitor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'Nurse') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Nurse', 'Nurse (LPN, RN, NP)', 'Nurse (LPN, RN, NP) is the title/role of employment, official status, or rank of the early learning service professional.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Nurse (LPN, RN, NP)', [Definition] = 'Nurse (LPN, RN, NP) is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 19.00 WHERE [Code] = 'Nurse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'OccupationalTherapist') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OccupationalTherapist', 'Occupational Therapist', 'Occupational Therapist is the title/role of employment, official status, or rank of the early learning service professional.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Occupational Therapist', [Definition] = 'Occupational Therapist is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 21.00 WHERE [Code] = 'OccupationalTherapist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'Optometrist') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Optometrist', 'Optometrist', 'Optometrist is the title/role of employment, official status, or rank of the early learning service professional.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Optometrist', [Definition] = 'Optometrist is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 23.00 WHERE [Code] = 'Optometrist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is the title/role of employment, official status, or rank of the early learning service professional.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Other', [Definition] = 'Other is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 25.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'OtherPhysician') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherPhysician', 'Other Physician', 'Other Physician is the title/role of employment, official status, or rank of the early learning service professional.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Other Physician', [Definition] = 'Other Physician is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 27.00 WHERE [Code] = 'OtherPhysician' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'OrientationMobilitySpecialist') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OrientationMobilitySpecialist', 'Orientation and Mobility Specialist', 'Orientation and Mobility Specialist is the title/role of employment, official status, or rank of the early learning service professional.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Orientation and Mobility Specialist', [Definition] = 'Orientation and Mobility Specialist is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 29.00 WHERE [Code] = 'OrientationMobilitySpecialist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'Pediatrician') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Pediatrician', 'Pediatrician', 'Pediatrician is the title/role of employment, official status, or rank of the early learning service professional.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Pediatrician', [Definition] = 'Pediatrician is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 31.00 WHERE [Code] = 'Pediatrician' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'PhysicalTherapist') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PhysicalTherapist', 'Physical Therapist/Physical Therapy Assistant', 'Physical Therapist/Physical Therapy Assistant is the title/role of employment, official status, or rank of the early learning service professional.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Physical Therapist/Physical Therapy Assistant', [Definition] = 'Physical Therapist/Physical Therapy Assistant is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 33.00 WHERE [Code] = 'PhysicalTherapist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'PhysicianAssistant') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PhysicianAssistant', 'Physician Assistant', 'Physician Assistant is the title/role of employment, official status, or rank of the early learning service professional.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Physician Assistant', [Definition] = 'Physician Assistant is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 35.00 WHERE [Code] = 'PhysicianAssistant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'Psychologists') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Psychologists', 'Psychologists', 'Psychologists is the title/role of employment, official status, or rank of the early learning service professional.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Psychologists', [Definition] = 'Psychologists is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 37.00 WHERE [Code] = 'Psychologists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'RegisteredNutritionist') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RegisteredNutritionist', 'Registered or Certified Dietitian/Nutritionist', 'Registered or Certified Dietitian/Nutritionist is the title/role of employment, official status, or rank of the early learning service professional.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Registered or Certified Dietitian/Nutritionist', [Definition] = 'Registered or Certified Dietitian/Nutritionist is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 39.00 WHERE [Code] = 'RegisteredNutritionist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'SchoolPsychologist') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SchoolPsychologist', 'School Psychologist', 'School Psychologist is the title/role of employment, official status, or rank of the early learning service professional.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'School Psychologist', [Definition] = 'School Psychologist is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 41.00 WHERE [Code] = 'SchoolPsychologist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'ServiceCoordinator') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ServiceCoordinator', 'Service Coordinator', 'Service Coordinator is the title/role of employment, official status, or rank of the early learning service professional.', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Service Coordinator', [Definition] = 'Service Coordinator is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 43.00 WHERE [Code] = 'ServiceCoordinator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'SpecialEducationTeacher') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpecialEducationTeacher', 'Special Education Teacher', 'Special Education Teacher is the title/role of employment, official status, or rank of the early learning service professional.', 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Special Education Teacher', [Definition] = 'Special Education Teacher is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 45.00 WHERE [Code] = 'SpecialEducationTeacher' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'SpeechPathologist') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpeechPathologist', 'Speech and Language Pathologist', 'Speech and Language Pathologist is the title/role of employment, official status, or rank of the early learning service professional.', 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Speech and Language Pathologist', [Definition] = 'Speech and Language Pathologist is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 47.00 WHERE [Code] = 'SpeechPathologist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'TeacherOfLanguageDisabilities') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TeacherOfLanguageDisabilities', 'Teacher of Speech and Language Disabilities', 'Teacher of Speech and Language Disabilities is the title/role of employment, official status, or rank of the early learning service professional.', 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Teacher of Speech and Language Disabilities', [Definition] = 'Teacher of Speech and Language Disabilities is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 49.00 WHERE [Code] = 'TeacherOfLanguageDisabilities' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'TeacherOfVisuallyImpaired') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TeacherOfVisuallyImpaired', 'Teacher of the Blind and Visually Impaired', 'Teacher of the Blind and Visually Impaired is the title/role of employment, official status, or rank of the early learning service professional.', 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Teacher of the Blind and Visually Impaired', [Definition] = 'Teacher of the Blind and Visually Impaired is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 51.00 WHERE [Code] = 'TeacherOfVisuallyImpaired' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'TeacherOfHearingImpaired') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TeacherOfHearingImpaired', 'Teacher of the Deaf and Hearing Impaired', 'Teacher of the Deaf and Hearing Impaired is the title/role of employment, official status, or rank of the early learning service professional.', 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Teacher of the Deaf and Hearing Impaired', [Definition] = 'Teacher of the Deaf and Hearing Impaired is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 53.00 WHERE [Code] = 'TeacherOfHearingImpaired' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceProfessionalStaffClassification] WHERE [Code] = 'VisionRehabTherapist') BEGIN INSERT INTO dbo.[RefELServiceProfessionalStaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VisionRehabTherapist', 'Vision Rehabilitation Therapist', 'Vision Rehabilitation Therapist is the title/role of employment, official status, or rank of the early learning service professional.', 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceProfessionalStaffClassification] -SET [Description] = 'Vision Rehabilitation Therapist', [Definition] = 'Vision Rehabilitation Therapist is the title/role of employment, official status, or rank of the early learning service professional.', [SortOrder] = 55.00 WHERE [Code] = 'VisionRehabTherapist' END -END - -PRINT N'Populate RefELServiceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELServiceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceType] WHERE [Code] = 'MentalHealth') BEGIN INSERT INTO dbo.[RefELServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MentalHealth', 'Mental health', 'Mental health is the type of service provided to a child.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceType] -SET [Description] = 'Mental health', [Definition] = 'Mental health is the type of service provided to a child.', [SortOrder] = 1.00 WHERE [Code] = 'MentalHealth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceType] WHERE [Code] = 'Nutritional') BEGIN INSERT INTO dbo.[RefELServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Nutritional', 'Nutritional', 'Nutritional is the type of service provided to a child.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceType] -SET [Description] = 'Nutritional', [Definition] = 'Nutritional is the type of service provided to a child.', [SortOrder] = 3.00 WHERE [Code] = 'Nutritional' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceType] WHERE [Code] = 'Educational') BEGIN INSERT INTO dbo.[RefELServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Educational', 'Educational', 'Educational is the type of service provided to a child.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceType] -SET [Description] = 'Educational', [Definition] = 'Educational is the type of service provided to a child.', [SortOrder] = 5.00 WHERE [Code] = 'Educational' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceType] WHERE [Code] = 'PhysicalRehabilitation') BEGIN INSERT INTO dbo.[RefELServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PhysicalRehabilitation', 'Physical rehabilitation', 'Physical rehabilitation', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceType] -SET [Description] = 'Physical rehabilitation', [Definition] = 'Physical rehabilitation', [SortOrder] = 7.00 WHERE [Code] = 'PhysicalRehabilitation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceType] WHERE [Code] = 'DentalHealth') BEGIN INSERT INTO dbo.[RefELServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DentalHealth', 'Dental Health', 'Dental Health is the type of service provided to a child.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceType] -SET [Description] = 'Dental Health', [Definition] = 'Dental Health is the type of service provided to a child.', [SortOrder] = 9.00 WHERE [Code] = 'DentalHealth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELServiceType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefELServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The type of service provided to a child is in a category not yet defined in CEDS.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELServiceType] -SET [Description] = 'Other', [Definition] = 'The type of service provided to a child is in a category not yet defined in CEDS.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefELStateRevenueSource table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELStateRevenueSource]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'StatePartCAppropriations') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StatePartCAppropriations', 'State Part C Appropriations', 'State Part C Appropriations is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'State Part C Appropriations', [Definition] = 'State Part C Appropriations is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 1.00 WHERE [Code] = 'StatePartCAppropriations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'StateGeneralFunds') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateGeneralFunds', 'State General Funds', 'State General Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'State General Funds', [Definition] = 'State General Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 3.00 WHERE [Code] = 'StateGeneralFunds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'TitleVStateFunds') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TitleVStateFunds', 'Title V State Funds', 'Title V State Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'Title V State Funds', [Definition] = 'Title V State Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 5.00 WHERE [Code] = 'TitleVStateFunds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'CSHCNStateFunds') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CSHCNStateFunds', 'CSHCN State Funds', 'CSHCN State Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'CSHCN State Funds', [Definition] = 'CSHCN State Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 7.00 WHERE [Code] = 'CSHCNStateFunds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'StateSpecialEducationFunds') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateSpecialEducationFunds', 'State Special Education Funds', 'State Special Education Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'State Special Education Funds', [Definition] = 'State Special Education Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 9.00 WHERE [Code] = 'StateSpecialEducationFunds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'StateChildCareFunds') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateChildCareFunds', 'State Child Care Funds', 'State Child Care Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'State Child Care Funds', [Definition] = 'State Child Care Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 11.00 WHERE [Code] = 'StateChildCareFunds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'LotteryFunds') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LotteryFunds', 'Lottery Funds', 'Lottery Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'Lottery Funds', [Definition] = 'Lottery Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 13.00 WHERE [Code] = 'LotteryFunds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'TobaccoFunds') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TobaccoFunds', 'Tobacco Funds', 'Tobacco Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'Tobacco Funds', [Definition] = 'Tobacco Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 15.00 WHERE [Code] = 'TobaccoFunds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'StateHomeVisiting') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateHomeVisiting', 'State Home Visiting', 'State Home Visiting is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'State Home Visiting', [Definition] = 'State Home Visiting is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 17.00 WHERE [Code] = 'StateHomeVisiting' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'StateDevelopmentalDisabilitiesFund') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateDevelopmentalDisabilitiesFund', 'State Developmental Disabilities Fund', 'State Developmental Disabilities Fund is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'State Developmental Disabilities Fund', [Definition] = 'State Developmental Disabilities Fund is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 19.00 WHERE [Code] = 'StateDevelopmentalDisabilitiesFund' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'StateMentalHealthFunds') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateMentalHealthFunds', 'State Mental Health Funds', 'State Mental Health Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'State Mental Health Funds', [Definition] = 'State Mental Health Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 21.00 WHERE [Code] = 'StateMentalHealthFunds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'DeafBlindSchools') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DeafBlindSchools', 'Deaf Blind Schools', 'Deaf Blind Schools is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'Deaf Blind Schools', [Definition] = 'Deaf Blind Schools is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 23.00 WHERE [Code] = 'DeafBlindSchools' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'SSBGStateSupplement') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SSBGStateSupplement', 'SSBG State Supplement', 'SSBG State Supplement is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'SSBG State Supplement', [Definition] = 'SSBG State Supplement is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 25.00 WHERE [Code] = 'SSBGStateSupplement' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'StatePreK') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StatePreK', 'State Pre-K', 'State Pre-K is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'State Pre-K', [Definition] = 'State Pre-K is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 27.00 WHERE [Code] = 'StatePreK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'HeadStartStateSupplementalFund') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HeadStartStateSupplementalFund', 'Head Start State Supplemental Fund', 'Head Start State Supplemental Fund is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'Head Start State Supplemental Fund', [Definition] = 'Head Start State Supplemental Fund is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 29.00 WHERE [Code] = 'HeadStartStateSupplementalFund' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'StatePublicEducationFund') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StatePublicEducationFund', 'State Public Education Fund', 'State Public Education Fund is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'State Public Education Fund', [Definition] = 'State Public Education Fund is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 31.00 WHERE [Code] = 'StatePublicEducationFund' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELStateRevenueSource] WHERE [Code] = 'OtherStateFunds') BEGIN INSERT INTO dbo.[RefELStateRevenueSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherStateFunds', 'Other State Funds', 'Other State Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELStateRevenueSource] -SET [Description] = 'Other State Funds', [Definition] = 'Other State Funds is the source of funds that originate at the State, and not from a federal or local source, that contribute to EL program.', [SortOrder] = 33.00 WHERE [Code] = 'OtherStateFunds' END -END - -PRINT N'Populate RefELTrainerCoreKnowledgeArea table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefELTrainerCoreKnowledgeArea]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELTrainerCoreKnowledgeArea] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefELTrainerCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Child growth and development', 'Child growth and development is the core knowledge expertise of a trainer of a professional development experience.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELTrainerCoreKnowledgeArea] -SET [Description] = 'Child growth and development', [Definition] = 'Child growth and development is the core knowledge expertise of a trainer of a professional development experience.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELTrainerCoreKnowledgeArea] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefELTrainerCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Health safety and nutrition', 'Health safety and nutrition is the core knowledge expertise of a trainer of a professional development experience.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELTrainerCoreKnowledgeArea] -SET [Description] = 'Health safety and nutrition', [Definition] = 'Health safety and nutrition is the core knowledge expertise of a trainer of a professional development experience.', [SortOrder] = 3.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELTrainerCoreKnowledgeArea] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefELTrainerCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Teaching and learning', 'Teaching and learning is the core knowledge expertise of a trainer of a professional development experience.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELTrainerCoreKnowledgeArea] -SET [Description] = 'Teaching and learning', [Definition] = 'Teaching and learning is the core knowledge expertise of a trainer of a professional development experience.', [SortOrder] = 5.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELTrainerCoreKnowledgeArea] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefELTrainerCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Observing, documenting and assessing', 'Observing, documenting and assessing is the core knowledge expertise of a trainer of a professional development experience.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELTrainerCoreKnowledgeArea] -SET [Description] = 'Observing, documenting and assessing', [Definition] = 'Observing, documenting and assessing is the core knowledge expertise of a trainer of a professional development experience.', [SortOrder] = 7.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELTrainerCoreKnowledgeArea] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefELTrainerCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Family and community relationships', 'Family and community relationships is the core knowledge expertise of a trainer of a professional development experience.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELTrainerCoreKnowledgeArea] -SET [Description] = 'Family and community relationships', [Definition] = 'Family and community relationships is the core knowledge expertise of a trainer of a professional development experience.', [SortOrder] = 9.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELTrainerCoreKnowledgeArea] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefELTrainerCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Administration and management', 'Administration and management is the core knowledge expertise of a trainer of a professional development experience.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELTrainerCoreKnowledgeArea] -SET [Description] = 'Administration and management', [Definition] = 'Administration and management is the core knowledge expertise of a trainer of a professional development experience.', [SortOrder] = 11.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELTrainerCoreKnowledgeArea] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefELTrainerCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Early childhood education profession and policy', 'Early childhood education profession and policy is the core knowledge expertise of a trainer of a professional development experience.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELTrainerCoreKnowledgeArea] -SET [Description] = 'Early childhood education profession and policy', [Definition] = 'Early childhood education profession and policy is the core knowledge expertise of a trainer of a professional development experience.', [SortOrder] = 13.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefELTrainerCoreKnowledgeArea] WHERE [Code] = '99') BEGIN INSERT INTO dbo.[RefELTrainerCoreKnowledgeArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('99', 'Other', 'The core knowledge expertise of a trainer of a professional development experience is in a category not yet defined in CEDS.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefELTrainerCoreKnowledgeArea] -SET [Description] = 'Other', [Definition] = 'The core knowledge expertise of a trainer of a professional development experience is in a category not yet defined in CEDS.', [SortOrder] = 99.00 WHERE [Code] = '99' END -END - -PRINT N'Populate RefEmailType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEmailType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmailType] WHERE [Code] = 'Home') BEGIN INSERT INTO dbo.[RefEmailType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Home', 'Home/personal', 'Home/personal is the type of electronic mail (e-mail) address listed for a person or organization.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmailType] -SET [Description] = 'Home/personal', [Definition] = 'Home/personal is the type of electronic mail (e-mail) address listed for a person or organization.', [SortOrder] = 1.00 WHERE [Code] = 'Home' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmailType] WHERE [Code] = 'Work') BEGIN INSERT INTO dbo.[RefEmailType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Work', 'Work', 'Work is the type of electronic mail (e-mail) address listed for a person or organization.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmailType] -SET [Description] = 'Work', [Definition] = 'Work is the type of electronic mail (e-mail) address listed for a person or organization.', [SortOrder] = 2.00 WHERE [Code] = 'Work' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmailType] WHERE [Code] = 'Organizational') BEGIN INSERT INTO dbo.[RefEmailType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Organizational', 'Organizational (school) address', 'Organizational (school) address is the type of electronic mail (e-mail) address listed for a person or organization.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmailType] -SET [Description] = 'Organizational (school) address', [Definition] = 'Organizational (school) address is the type of electronic mail (e-mail) address listed for a person or organization.', [SortOrder] = 3.00 WHERE [Code] = 'Organizational' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmailType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefEmailType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is the type of electronic mail (e-mail) address listed for a person or organization.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmailType] -SET [Description] = 'Other', [Definition] = 'Other is the type of electronic mail (e-mail) address listed for a person or organization.', [SortOrder] = 4.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefEmployedAfterExit table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEmployedAfterExit]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployedAfterExit] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefEmployedAfterExit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployedAfterExit] -SET [Description] = 'Yes', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployedAfterExit] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefEmployedAfterExit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployedAfterExit] -SET [Description] = 'Unknown', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'Unknown' END -END - -PRINT N'Populate RefEmployedPriorToEnrollment table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEmployedPriorToEnrollment]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployedPriorToEnrollment] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefEmployedPriorToEnrollment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployedPriorToEnrollment] -SET [Description] = 'Yes', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployedPriorToEnrollment] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefEmployedPriorToEnrollment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployedPriorToEnrollment] -SET [Description] = 'Unknown', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'Unknown' END -END - -PRINT N'Populate RefEmployedWhileEnrolled table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEmployedWhileEnrolled]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployedWhileEnrolled] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefEmployedWhileEnrolled]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployedWhileEnrolled] -SET [Description] = 'Yes', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployedWhileEnrolled] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefEmployedWhileEnrolled]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployedWhileEnrolled] -SET [Description] = 'Unknown', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'Unknown' END -END - -PRINT N'Populate RefEmploymentContractType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEmploymentContractType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentContractType] WHERE [Code] = 'Multi-year') BEGIN INSERT INTO dbo.[RefEmploymentContractType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Multi-year', 'Multi-year', 'Multi-year employment contract is specified.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentContractType] -SET [Description] = 'Multi-year', [Definition] = 'Multi-year employment contract is specified.', [SortOrder] = 1.00 WHERE [Code] = 'Multi-year' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentContractType] WHERE [Code] = 'Annual') BEGIN INSERT INTO dbo.[RefEmploymentContractType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Annual', 'Annual', 'Annual employment contract is specified.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentContractType] -SET [Description] = 'Annual', [Definition] = 'Annual employment contract is specified.', [SortOrder] = 2.00 WHERE [Code] = 'Annual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentContractType] WHERE [Code] = 'LessThanAnnual') BEGIN INSERT INTO dbo.[RefEmploymentContractType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LessThanAnnual', 'Less than annual', 'Less than annual employment contract is specified.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentContractType] -SET [Description] = 'Less than annual', [Definition] = 'Less than annual employment contract is specified.', [SortOrder] = 3.00 WHERE [Code] = 'LessThanAnnual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentContractType] WHERE [Code] = 'NotApplicable') BEGIN INSERT INTO dbo.[RefEmploymentContractType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotApplicable', 'Not applicable', 'Not applicable is specified as the contact type.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentContractType] -SET [Description] = 'Not applicable', [Definition] = 'Not applicable is specified as the contact type.', [SortOrder] = 4.00 WHERE [Code] = 'NotApplicable' END -END - -PRINT N'Populate RefEmploymentLocation table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEmploymentLocation]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other location', 'Other location is the state or other location in which an individual is found employed.', -2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Other location', [Definition] = 'Other location is the state or other location in which an individual is found employed.', [SortOrder] = -2.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'Multiple') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Multiple', 'Multiple locations', 'An individual is found employed in Multiple locations.', -1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Multiple locations', [Definition] = 'An individual is found employed in Multiple locations.', [SortOrder] = -1.00 WHERE [Code] = 'Multiple' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'AK') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AK', 'Alaska', 'Alaska is the state or other location in which an individual is found employed.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Alaska', [Definition] = 'Alaska is the state or other location in which an individual is found employed.', [SortOrder] = 1.00 WHERE [Code] = 'AK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'AL') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AL', 'Alabama', 'Alabama is the state or other location in which an individual is found employed.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Alabama', [Definition] = 'Alabama is the state or other location in which an individual is found employed.', [SortOrder] = 2.00 WHERE [Code] = 'AL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'AR') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AR', 'Arkansas', 'Arkansas is the state or other location in which an individual is found employed.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Arkansas', [Definition] = 'Arkansas is the state or other location in which an individual is found employed.', [SortOrder] = 3.00 WHERE [Code] = 'AR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'AS') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AS', 'American Samoa', 'American Samoa is the state or other location in which an individual is found employed.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'American Samoa', [Definition] = 'American Samoa is the state or other location in which an individual is found employed.', [SortOrder] = 4.00 WHERE [Code] = 'AS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'AZ') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AZ', 'Arizona', 'Arizona is the state or other location in which an individual is found employed.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Arizona', [Definition] = 'Arizona is the state or other location in which an individual is found employed.', [SortOrder] = 5.00 WHERE [Code] = 'AZ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'CA') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CA', 'California', 'California is the state or other location in which an individual is found employed.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'California', [Definition] = 'California is the state or other location in which an individual is found employed.', [SortOrder] = 6.00 WHERE [Code] = 'CA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'CO') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CO', 'Colorado', 'Colorado is the state or other location in which an individual is found employed.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Colorado', [Definition] = 'Colorado is the state or other location in which an individual is found employed.', [SortOrder] = 7.00 WHERE [Code] = 'CO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'CT') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CT', 'Connecticut', 'Connecticut is the state or other location in which an individual is found employed.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Connecticut', [Definition] = 'Connecticut is the state or other location in which an individual is found employed.', [SortOrder] = 8.00 WHERE [Code] = 'CT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'DC') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DC', 'District of Columbia', 'District of Columbia is the state or other location in which an individual is found employed.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'District of Columbia', [Definition] = 'District of Columbia is the state or other location in which an individual is found employed.', [SortOrder] = 9.00 WHERE [Code] = 'DC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'DE') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DE', 'Delaware', 'Delaware is the state or other location in which an individual is found employed.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Delaware', [Definition] = 'Delaware is the state or other location in which an individual is found employed.', [SortOrder] = 10.00 WHERE [Code] = 'DE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'FL') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FL', 'Florida', 'Florida is the state or other location in which an individual is found employed.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Florida', [Definition] = 'Florida is the state or other location in which an individual is found employed.', [SortOrder] = 11.00 WHERE [Code] = 'FL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'FM') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FM', 'Federated States of Micronesia', 'Federated States of Micronesia is the state or other location in which an individual is found employed.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Federated States of Micronesia', [Definition] = 'Federated States of Micronesia is the state or other location in which an individual is found employed.', [SortOrder] = 12.00 WHERE [Code] = 'FM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'GA') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GA', 'Georgia', 'Georgia is the state or other location in which an individual is found employed.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Georgia', [Definition] = 'Georgia is the state or other location in which an individual is found employed.', [SortOrder] = 13.00 WHERE [Code] = 'GA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'GU') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GU', 'Guam', 'Guam is the state or other location in which an individual is found employed.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Guam', [Definition] = 'Guam is the state or other location in which an individual is found employed.', [SortOrder] = 14.00 WHERE [Code] = 'GU' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'HI') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HI', 'Hawaii', 'Hawaii is the state or other location in which an individual is found employed.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Hawaii', [Definition] = 'Hawaii is the state or other location in which an individual is found employed.', [SortOrder] = 15.00 WHERE [Code] = 'HI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'IA') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IA', 'Iowa', 'Iowa is the state or other location in which an individual is found employed.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Iowa', [Definition] = 'Iowa is the state or other location in which an individual is found employed.', [SortOrder] = 16.00 WHERE [Code] = 'IA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'ID') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ID', 'Idaho', 'Idaho is the state or other location in which an individual is found employed.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Idaho', [Definition] = 'Idaho is the state or other location in which an individual is found employed.', [SortOrder] = 17.00 WHERE [Code] = 'ID' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'IL') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IL', 'Illinois', 'Illinois is the state or other location in which an individual is found employed.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Illinois', [Definition] = 'Illinois is the state or other location in which an individual is found employed.', [SortOrder] = 18.00 WHERE [Code] = 'IL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'IN') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IN', 'Indiana', 'Indiana is the state or other location in which an individual is found employed.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Indiana', [Definition] = 'Indiana is the state or other location in which an individual is found employed.', [SortOrder] = 19.00 WHERE [Code] = 'IN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'KS') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KS', 'Kansas', 'Kansas is the state or other location in which an individual is found employed.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Kansas', [Definition] = 'Kansas is the state or other location in which an individual is found employed.', [SortOrder] = 20.00 WHERE [Code] = 'KS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'KY') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KY', 'Kentucky', 'Kentucky is the state or other location in which an individual is found employed.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Kentucky', [Definition] = 'Kentucky is the state or other location in which an individual is found employed.', [SortOrder] = 21.00 WHERE [Code] = 'KY' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'LA') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LA', 'Louisiana', 'Louisiana is the state or other location in which an individual is found employed.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Louisiana', [Definition] = 'Louisiana is the state or other location in which an individual is found employed.', [SortOrder] = 22.00 WHERE [Code] = 'LA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'MA') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MA', 'Massachusetts', 'Massachusetts is the state or other location in which an individual is found employed.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Massachusetts', [Definition] = 'Massachusetts is the state or other location in which an individual is found employed.', [SortOrder] = 23.00 WHERE [Code] = 'MA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'MD') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MD', 'Maryland', 'Maryland is the state or other location in which an individual is found employed.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Maryland', [Definition] = 'Maryland is the state or other location in which an individual is found employed.', [SortOrder] = 24.00 WHERE [Code] = 'MD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'ME') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ME', 'Maine', 'Maine is the state or other location in which an individual is found employed.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Maine', [Definition] = 'Maine is the state or other location in which an individual is found employed.', [SortOrder] = 25.00 WHERE [Code] = 'ME' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'MH') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MH', 'Marshall Islands', 'Marshall Islands is the state or other location in which an individual is found employed.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Marshall Islands', [Definition] = 'Marshall Islands is the state or other location in which an individual is found employed.', [SortOrder] = 26.00 WHERE [Code] = 'MH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'MI') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MI', 'Michigan', 'Michigan is the state or other location in which an individual is found employed.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Michigan', [Definition] = 'Michigan is the state or other location in which an individual is found employed.', [SortOrder] = 27.00 WHERE [Code] = 'MI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'MN') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MN', 'Minnesota', 'Minnesota is the state or other location in which an individual is found employed.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Minnesota', [Definition] = 'Minnesota is the state or other location in which an individual is found employed.', [SortOrder] = 28.00 WHERE [Code] = 'MN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'MO') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MO', 'Missouri', 'Missouri is the state or other location in which an individual is found employed.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Missouri', [Definition] = 'Missouri is the state or other location in which an individual is found employed.', [SortOrder] = 29.00 WHERE [Code] = 'MO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'MP') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MP', 'Northern Marianas', 'Northern Marianas is the state or other location in which an individual is found employed.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Northern Marianas', [Definition] = 'Northern Marianas is the state or other location in which an individual is found employed.', [SortOrder] = 30.00 WHERE [Code] = 'MP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'MS') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MS', 'Mississippi', 'Mississippi is the state or other location in which an individual is found employed.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Mississippi', [Definition] = 'Mississippi is the state or other location in which an individual is found employed.', [SortOrder] = 31.00 WHERE [Code] = 'MS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'MT') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MT', 'Montana', 'Montana is the state or other location in which an individual is found employed.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Montana', [Definition] = 'Montana is the state or other location in which an individual is found employed.', [SortOrder] = 32.00 WHERE [Code] = 'MT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'NC') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NC', 'North Carolina', 'North Carolina is the state or other location in which an individual is found employed.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'North Carolina', [Definition] = 'North Carolina is the state or other location in which an individual is found employed.', [SortOrder] = 33.00 WHERE [Code] = 'NC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'ND') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ND', 'North Dakota', 'North Dakota is the state or other location in which an individual is found employed.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'North Dakota', [Definition] = 'North Dakota is the state or other location in which an individual is found employed.', [SortOrder] = 34.00 WHERE [Code] = 'ND' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'NE') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NE', 'Nebraska', 'Nebraska is the state or other location in which an individual is found employed.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Nebraska', [Definition] = 'Nebraska is the state or other location in which an individual is found employed.', [SortOrder] = 35.00 WHERE [Code] = 'NE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'NH') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NH', 'New Hampshire', 'New Hampshire is the state or other location in which an individual is found employed.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'New Hampshire', [Definition] = 'New Hampshire is the state or other location in which an individual is found employed.', [SortOrder] = 36.00 WHERE [Code] = 'NH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'NJ') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NJ', 'New Jersey', 'New Jersey is the state or other location in which an individual is found employed.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'New Jersey', [Definition] = 'New Jersey is the state or other location in which an individual is found employed.', [SortOrder] = 37.00 WHERE [Code] = 'NJ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'NM') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NM', 'New Mexico', 'New Mexico is the state or other location in which an individual is found employed.', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'New Mexico', [Definition] = 'New Mexico is the state or other location in which an individual is found employed.', [SortOrder] = 38.00 WHERE [Code] = 'NM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'NV') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NV', 'Nevada', 'Nevada is the state or other location in which an individual is found employed.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Nevada', [Definition] = 'Nevada is the state or other location in which an individual is found employed.', [SortOrder] = 39.00 WHERE [Code] = 'NV' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'NY') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NY', 'New York', 'New York is the state or other location in which an individual is found employed.', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'New York', [Definition] = 'New York is the state or other location in which an individual is found employed.', [SortOrder] = 40.00 WHERE [Code] = 'NY' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'OH') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OH', 'Ohio', 'Ohio is the state or other location in which an individual is found employed.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Ohio', [Definition] = 'Ohio is the state or other location in which an individual is found employed.', [SortOrder] = 41.00 WHERE [Code] = 'OH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'OK') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OK', 'Oklahoma', 'Oklahoma is the state or other location in which an individual is found employed.', 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Oklahoma', [Definition] = 'Oklahoma is the state or other location in which an individual is found employed.', [SortOrder] = 42.00 WHERE [Code] = 'OK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'OR') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OR', 'Oregon', 'Oregon is the state or other location in which an individual is found employed.', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Oregon', [Definition] = 'Oregon is the state or other location in which an individual is found employed.', [SortOrder] = 43.00 WHERE [Code] = 'OR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'PA') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PA', 'Pennsylvania', 'Pennsylvania is the state or other location in which an individual is found employed.', 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Pennsylvania', [Definition] = 'Pennsylvania is the state or other location in which an individual is found employed.', [SortOrder] = 44.00 WHERE [Code] = 'PA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'PR') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PR', 'Puerto Rico', 'Puerto Rico is the state or other location in which an individual is found employed.', 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Puerto Rico', [Definition] = 'Puerto Rico is the state or other location in which an individual is found employed.', [SortOrder] = 45.00 WHERE [Code] = 'PR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'PW') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PW', 'Palau', 'Palau is the state or other location in which an individual is found employed.', 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Palau', [Definition] = 'Palau is the state or other location in which an individual is found employed.', [SortOrder] = 46.00 WHERE [Code] = 'PW' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'RI') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RI', 'Rhode Island', 'Rhode Island is the state or other location in which an individual is found employed.', 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Rhode Island', [Definition] = 'Rhode Island is the state or other location in which an individual is found employed.', [SortOrder] = 47.00 WHERE [Code] = 'RI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'SC') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SC', 'South Carolina', 'South Carolina is the state or other location in which an individual is found employed.', 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'South Carolina', [Definition] = 'South Carolina is the state or other location in which an individual is found employed.', [SortOrder] = 48.00 WHERE [Code] = 'SC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'SD') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SD', 'South Dakota', 'South Dakota is the state or other location in which an individual is found employed.', 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'South Dakota', [Definition] = 'South Dakota is the state or other location in which an individual is found employed.', [SortOrder] = 49.00 WHERE [Code] = 'SD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'TN') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TN', 'Tennessee', 'Tennessee is the state or other location in which an individual is found employed.', 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Tennessee', [Definition] = 'Tennessee is the state or other location in which an individual is found employed.', [SortOrder] = 50.00 WHERE [Code] = 'TN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'TX') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TX', 'Texas', 'Texas is the state or other location in which an individual is found employed.', 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Texas', [Definition] = 'Texas is the state or other location in which an individual is found employed.', [SortOrder] = 51.00 WHERE [Code] = 'TX' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'UT') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UT', 'Utah', 'Utah is the state or other location in which an individual is found employed.', 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Utah', [Definition] = 'Utah is the state or other location in which an individual is found employed.', [SortOrder] = 52.00 WHERE [Code] = 'UT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'VA') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VA', 'Virginia', 'Virginia is the state or other location in which an individual is found employed.', 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Virginia', [Definition] = 'Virginia is the state or other location in which an individual is found employed.', [SortOrder] = 53.00 WHERE [Code] = 'VA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'VI') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VI', 'Virgin Islands', 'Virgin Islands is the state or other location in which an individual is found employed.', 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Virgin Islands', [Definition] = 'Virgin Islands is the state or other location in which an individual is found employed.', [SortOrder] = 54.00 WHERE [Code] = 'VI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'VT') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VT', 'Vermont', 'Vermont is the state or other location in which an individual is found employed.', 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Vermont', [Definition] = 'Vermont is the state or other location in which an individual is found employed.', [SortOrder] = 55.00 WHERE [Code] = 'VT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'WA') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WA', 'Washington', 'Washington is the state or other location in which an individual is found employed.', 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Washington', [Definition] = 'Washington is the state or other location in which an individual is found employed.', [SortOrder] = 56.00 WHERE [Code] = 'WA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'WI') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WI', 'Wisconsin', 'Wisconsin is the state or other location in which an individual is found employed.', 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Wisconsin', [Definition] = 'Wisconsin is the state or other location in which an individual is found employed.', [SortOrder] = 57.00 WHERE [Code] = 'WI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'WV') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WV', 'West Virginia', 'West Virginia is the state or other location in which an individual is found employed.', 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'West Virginia', [Definition] = 'West Virginia is the state or other location in which an individual is found employed.', [SortOrder] = 58.00 WHERE [Code] = 'WV' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentLocation] WHERE [Code] = 'WY') BEGIN INSERT INTO dbo.[RefEmploymentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WY', 'Wyoming', 'Wyoming is the state or other location in which an individual is found employed.', 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentLocation] -SET [Description] = 'Wyoming', [Definition] = 'Wyoming is the state or other location in which an individual is found employed.', [SortOrder] = 59.00 WHERE [Code] = 'WY' END -END - -PRINT N'Populate RefEmploymentSeparationReason table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEmploymentSeparationReason]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01391') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01391', 'Change of assignment', 'Change of assignment is the primary reason for the termination of the employment relationship.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Change of assignment', [Definition] = 'Change of assignment is the primary reason for the termination of the employment relationship.', [SortOrder] = 1.00 WHERE [Code] = '01391' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '89604') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('89604', 'Compensation', 'Compensation is the primary reason for the termination of the employment relationship.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Compensation', [Definition] = 'Compensation is the primary reason for the termination of the employment relationship.', [SortOrder] = 2.00 WHERE [Code] = '89604' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01404') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01404', 'Death', 'Death is the primary reason for the termination of the employment relationship.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Death', [Definition] = 'Death is the primary reason for the termination of the employment relationship.', [SortOrder] = 3.00 WHERE [Code] = '01404' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01401') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01401', 'Falsified application form', 'Falsified application form is the primary reason for the termination of the employment relationship.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Falsified application form', [Definition] = 'Falsified application form is the primary reason for the termination of the employment relationship.', [SortOrder] = 5.00 WHERE [Code] = '01401' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01400') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01400', 'Continued absence or tardiness', 'Continued absence or tardiness is the primary reason for the termination of the employment relationship.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Continued absence or tardiness', [Definition] = 'Continued absence or tardiness is the primary reason for the termination of the employment relationship.', [SortOrder] = 7.00 WHERE [Code] = '01400' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01402') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01402', 'Credential revoked or suspended', 'Credential revoked or suspended is the primary reason for the termination of the employment relationship.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Credential revoked or suspended', [Definition] = 'Credential revoked or suspended is the primary reason for the termination of the employment relationship.', [SortOrder] = 9.00 WHERE [Code] = '01402' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01399') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01399', 'Misconduct', 'Misconduct is the primary reason for the termination of the employment relationship.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Misconduct', [Definition] = 'Misconduct is the primary reason for the termination of the employment relationship.', [SortOrder] = 11.00 WHERE [Code] = '01399' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01403') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01403', 'Unsatisfactory work performance', 'Unsatisfactory work performance is the primary reason for the termination of the employment relationship.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Unsatisfactory work performance', [Definition] = 'Unsatisfactory work performance is the primary reason for the termination of the employment relationship.', [SortOrder] = 13.00 WHERE [Code] = '01403' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01398') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01398', 'Unsuitability', 'Unsuitability is the primary reason for the termination of the employment relationship.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Unsuitability', [Definition] = 'Unsuitability is the primary reason for the termination of the employment relationship.', [SortOrder] = 15.00 WHERE [Code] = '01398' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01390') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01390', 'Family/personal relocation', 'Family/personal relocation is the primary reason for the termination of the employment relationship.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Family/personal relocation', [Definition] = 'Family/personal relocation is the primary reason for the termination of the employment relationship.', [SortOrder] = 17.00 WHERE [Code] = '01390' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01392') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01392', 'Formal study or research', 'Formal study or research is the primary reason for the termination of the employment relationship.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Formal study or research', [Definition] = 'Formal study or research is the primary reason for the termination of the employment relationship.', [SortOrder] = 19.00 WHERE [Code] = '01392' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01394') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01394', 'Homemaking/caring for a family member', 'Homemaking/caring for a family member is the primary reason for the termination of the employment relationship.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Homemaking/caring for a family member', [Definition] = 'Homemaking/caring for a family member is the primary reason for the termination of the employment relationship.', [SortOrder] = 21.00 WHERE [Code] = '01394' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01393') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01393', 'Illness/disability', 'Illness/disability is the primary reason for the termination of the employment relationship.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Illness/disability', [Definition] = 'Illness/disability is the primary reason for the termination of the employment relationship.', [SortOrder] = 23.00 WHERE [Code] = '01393' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01395') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01395', 'Budgetary reduction', 'Budgetary reduction is the primary reason for the termination of the employment relationship.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Budgetary reduction', [Definition] = 'Budgetary reduction is the primary reason for the termination of the employment relationship.', [SortOrder] = 25.00 WHERE [Code] = '01395' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01397') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01397', 'Decreased workload', 'Decreased workload is the primary reason for the termination of the employment relationship.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Decreased workload', [Definition] = 'Decreased workload is the primary reason for the termination of the employment relationship.', [SortOrder] = 27.00 WHERE [Code] = '01397' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01396') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01396', 'Organizational restructuring', 'Organizational restructuring is the primary reason for the termination of the employment relationship.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Organizational restructuring', [Definition] = 'Organizational restructuring is the primary reason for the termination of the employment relationship.', [SortOrder] = 29.00 WHERE [Code] = '01396' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'The primary reason for the termination of the employment relationship is in a category not yet defined in CEDS.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Other', [Definition] = 'The primary reason for the termination of the employment relationship is in a category not yet defined in CEDS.', [SortOrder] = 31.00 WHERE [Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01405') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01405', 'Personal reason', 'Personal reason is the primary reason for the termination of the employment relationship.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Personal reason', [Definition] = 'Personal reason is the primary reason for the termination of the employment relationship.', [SortOrder] = 33.00 WHERE [Code] = '01405' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '01389') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01389', 'Retirement', 'Retirement is the primary reason for the termination of the employment relationship.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Retirement', [Definition] = 'Retirement is the primary reason for the termination of the employment relationship.', [SortOrder] = 35.00 WHERE [Code] = '01389' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '73201') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73201', 'Termination with Cause', 'Termination with Cause is the primary reason for the termination of the employment relationship.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Termination with Cause', [Definition] = 'Termination with Cause is the primary reason for the termination of the employment relationship.', [SortOrder] = 37.00 WHERE [Code] = '73201' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '73202') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73202', 'Leave Planning to Return', 'Leave Planning to Return is the primary reason for the termination of the employment relationship.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Leave Planning to Return', [Definition] = 'Leave Planning to Return is the primary reason for the termination of the employment relationship.', [SortOrder] = 39.00 WHERE [Code] = '73202' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '73203') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73203', 'Leave Not Planning to Return', 'Leave Not Planning to Return is the primary reason for the termination of the employment relationship.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Leave Not Planning to Return', [Definition] = 'Leave Not Planning to Return is the primary reason for the termination of the employment relationship.', [SortOrder] = 41.00 WHERE [Code] = '73203' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '09997') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09997', 'Unknown', 'The primary reason for the termination of the employment relationship is unknown.', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Unknown', [Definition] = 'The primary reason for the termination of the employment relationship is unknown.', [SortOrder] = 43.00 WHERE [Code] = '09997' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '73204') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73204', 'Dissatisfied with teaching', 'The employee is dissatisfied with teaching.', 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Dissatisfied with teaching', [Definition] = 'The employee is dissatisfied with teaching.', [SortOrder] = 44.00 WHERE [Code] = '73204' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '73206') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73206', 'End of Term (Participate Learning)', 'The employee''s term with Participate Learning has ended.', 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'End of Term (Participate Learning)', [Definition] = 'The employee''s term with Participate Learning has ended.', [SortOrder] = 45.00 WHERE [Code] = '73206' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '73205') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73205', 'End of Term (Teach For America)', 'The employee''s term with Teach for America has ended.', 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'End of Term (Teach For America)', [Definition] = 'The employee''s term with Teach for America has ended.', [SortOrder] = 46.00 WHERE [Code] = '73205' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '73207') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73207', 'Interim contract ended -not rehired', 'The employee''s interim contract has ended, and they are not rehired.', 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Interim contract ended -not rehired', [Definition] = 'The employee''s interim contract has ended, and they are not rehired.', [SortOrder] = 47.00 WHERE [Code] = '73207' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '73208') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73208', 'Non-renewal (probationary contract ended)', 'The employee''s probationary contract has ended and is not renewed.', 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Non-renewal (probationary contract ended)', [Definition] = 'The employee''s probationary contract has ended and is not renewed.', [SortOrder] = 48.00 WHERE [Code] = '73208' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '73209') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73209', 'Re-employed retired teacher resigned', 'A retired teacher who was re-employed has resigned.', 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Re-employed retired teacher resigned', [Definition] = 'A retired teacher who was re-employed has resigned.', [SortOrder] = 49.00 WHERE [Code] = '73209' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '73210') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73210', 'Resigned due to career change', 'An employee is leaving the teaching profession for a different career.', 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Resigned due to career change', [Definition] = 'An employee is leaving the teaching profession for a different career.', [SortOrder] = 50.00 WHERE [Code] = '73210' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationReason] WHERE [Code] = '73211') BEGIN INSERT INTO dbo.[RefEmploymentSeparationReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73211', 'Resigned due to movement required by Military Orders', 'The separation reason is related to movement required by Military Orders.', 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationReason] -SET [Description] = 'Resigned due to movement required by Military Orders', [Definition] = 'The separation reason is related to movement required by Military Orders.', [SortOrder] = 51.00 WHERE [Code] = '73211' END -END - -PRINT N'Populate RefEmploymentSeparationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEmploymentSeparationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationType] WHERE [Code] = 'Involuntary') BEGIN INSERT INTO dbo.[RefEmploymentSeparationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Involuntary', 'Involuntary separation', 'Involuntary separation is the type of separation occurring between a person and the organization.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationType] -SET [Description] = 'Involuntary separation', [Definition] = 'Involuntary separation is the type of separation occurring between a person and the organization.', [SortOrder] = 1.00 WHERE [Code] = 'Involuntary' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationType] WHERE [Code] = 'MutualAgreement') BEGIN INSERT INTO dbo.[RefEmploymentSeparationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MutualAgreement', 'Mutual agreement', 'Mutual agreement is the type of separation occurring between a person and the organization.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationType] -SET [Description] = 'Mutual agreement', [Definition] = 'Mutual agreement is the type of separation occurring between a person and the organization.', [SortOrder] = 2.00 WHERE [Code] = 'MutualAgreement' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefEmploymentSeparationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The type of separation occurring between a person and the organization is in a category not yet defined in CEDS.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationType] -SET [Description] = 'Other', [Definition] = 'The type of separation occurring between a person and the organization is in a category not yet defined in CEDS.', [SortOrder] = 3.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentSeparationType] WHERE [Code] = 'Voluntary') BEGIN INSERT INTO dbo.[RefEmploymentSeparationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Voluntary', 'Voluntary separation', 'Voluntary separation is the type of separation occurring between a person and the organization.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentSeparationType] -SET [Description] = 'Voluntary separation', [Definition] = 'Voluntary separation is the type of separation occurring between a person and the organization.', [SortOrder] = 4.00 WHERE [Code] = 'Voluntary' END -END - -PRINT N'Populate RefEmploymentStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEmploymentStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentStatus] WHERE [Code] = '01384') BEGIN INSERT INTO dbo.[RefEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01384', 'Contingent upon funding', 'Contingent upon funding is the condition under which a person has agreed to serve as an employee.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentStatus] -SET [Description] = 'Contingent upon funding', [Definition] = 'Contingent upon funding is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 1.00 WHERE [Code] = '01384' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentStatus] WHERE [Code] = '01379') BEGIN INSERT INTO dbo.[RefEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01379', 'Contractual', 'Contractual is the condition under which a person has agreed to serve as an employee.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentStatus] -SET [Description] = 'Contractual', [Definition] = 'Contractual is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 2.00 WHERE [Code] = '01379' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentStatus] WHERE [Code] = '06071') BEGIN INSERT INTO dbo.[RefEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06071', 'Employed or affiliated with outside agency part-time', 'Employed or affiliated with outside agency part-time is the condition under which a person has agreed to serve as an employee.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentStatus] -SET [Description] = 'Employed or affiliated with outside agency part-time', [Definition] = 'Employed or affiliated with outside agency part-time is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 3.00 WHERE [Code] = '06071' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentStatus] WHERE [Code] = '01383') BEGIN INSERT INTO dbo.[RefEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01383', 'Employed or affiliated with outside organization', 'Employed or affiliated with outside organization is the condition under which a person has agreed to serve as an employee.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentStatus] -SET [Description] = 'Employed or affiliated with outside organization', [Definition] = 'Employed or affiliated with outside organization is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 4.00 WHERE [Code] = '01383' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentStatus] WHERE [Code] = '01385') BEGIN INSERT INTO dbo.[RefEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01385', 'Non-contractual', 'Non-contractual is the condition under which a person has agreed to serve as an employee.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentStatus] -SET [Description] = 'Non-contractual', [Definition] = 'Non-contractual is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 5.00 WHERE [Code] = '01385' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentStatus] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is the condition under which a person has agreed to serve as an employee.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentStatus] -SET [Description] = 'Other', [Definition] = 'Other is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 6.00 WHERE [Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentStatus] WHERE [Code] = '01378') BEGIN INSERT INTO dbo.[RefEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01378', 'Probationary', 'Probationary is the condition under which a person has agreed to serve as an employee.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentStatus] -SET [Description] = 'Probationary', [Definition] = 'Probationary is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 7.00 WHERE [Code] = '01378' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentStatus] WHERE [Code] = '06070') BEGIN INSERT INTO dbo.[RefEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06070', 'Self-employed part-time', 'Self-employed part-time is the condition under which a person has agreed to serve as an employee.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentStatus] -SET [Description] = 'Self-employed part-time', [Definition] = 'Self-employed part-time is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 8.00 WHERE [Code] = '06070' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentStatus] WHERE [Code] = '01380') BEGIN INSERT INTO dbo.[RefEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01380', 'Substitute/temporary', 'Substitute/temporary is the condition under which a person has agreed to serve as an employee.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentStatus] -SET [Description] = 'Substitute/temporary', [Definition] = 'Substitute/temporary is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 9.00 WHERE [Code] = '01380' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentStatus] WHERE [Code] = '01381') BEGIN INSERT INTO dbo.[RefEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01381', 'Tenured or permanent', 'Tenured or permanent is the condition under which a person has agreed to serve as an employee.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentStatus] -SET [Description] = 'Tenured or permanent', [Definition] = 'Tenured or permanent is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 10.00 WHERE [Code] = '01381' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentStatus] WHERE [Code] = '01382') BEGIN INSERT INTO dbo.[RefEmploymentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01382', 'Volunteer/no contract', 'Volunteer/no contract is the condition under which a person has agreed to serve as an employee.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentStatus] -SET [Description] = 'Volunteer/no contract', [Definition] = 'Volunteer/no contract is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 11.00 WHERE [Code] = '01382' END -END - -PRINT N'Populate RefEmploymentStatusWhileEnrolled table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEmploymentStatusWhileEnrolled]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentStatusWhileEnrolled] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefEmploymentStatusWhileEnrolled]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Full-time', 'Full-time is the individual''s employment status while enrolled.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentStatusWhileEnrolled] -SET [Description] = 'Full-time', [Definition] = 'Full-time is the individual''s employment status while enrolled.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentStatusWhileEnrolled] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefEmploymentStatusWhileEnrolled]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Less than full-time but at least half-time', 'Less than full-time but at least half-time is the individual''s employment status while enrolled.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentStatusWhileEnrolled] -SET [Description] = 'Less than full-time but at least half-time', [Definition] = 'Less than full-time but at least half-time is the individual''s employment status while enrolled.', [SortOrder] = 3.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmploymentStatusWhileEnrolled] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefEmploymentStatusWhileEnrolled]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Less than half-time', 'Less than half-time is the individual''s employment status while enrolled.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmploymentStatusWhileEnrolled] -SET [Description] = 'Less than half-time', [Definition] = 'Less than half-time is the individual''s employment status while enrolled.', [SortOrder] = 5.00 WHERE [Code] = '03' END -END - -PRINT N'Populate RefEndOfTermStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEndOfTermStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEndOfTermStatus] WHERE [Code] = 'Promotion') BEGIN INSERT INTO dbo.[RefEndOfTermStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Promotion', 'Promotion', 'The student was promoted at the end of the given school term.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEndOfTermStatus] -SET [Description] = 'Promotion', [Definition] = 'The student was promoted at the end of the given school term.', [SortOrder] = 1.00 WHERE [Code] = 'Promotion' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEndOfTermStatus] WHERE [Code] = 'Retention') BEGIN INSERT INTO dbo.[RefEndOfTermStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Retention', 'Retention', 'The student was retained at the end of the given school term.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEndOfTermStatus] -SET [Description] = 'Retention', [Definition] = 'The student was retained at the end of the given school term.', [SortOrder] = 2.00 WHERE [Code] = 'Retention' END -END - -PRINT N'Populate RefEnrollmentStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEnrollmentStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEnrollmentStatus] WHERE [Code] = '01812') BEGIN INSERT INTO dbo.[RefEnrollmentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01812', 'Concurrently enrolled', 'The student is concurrently enrolled.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEnrollmentStatus] -SET [Description] = 'Concurrently enrolled', [Definition] = 'The student is concurrently enrolled.', [SortOrder] = 1.00 WHERE [Code] = '01812' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEnrollmentStatus] WHERE [Code] = '01811') BEGIN INSERT INTO dbo.[RefEnrollmentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01811', 'Currently enrolled', 'The student is currently enrolled.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEnrollmentStatus] -SET [Description] = 'Currently enrolled', [Definition] = 'The student is currently enrolled.', [SortOrder] = 2.00 WHERE [Code] = '01811' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEnrollmentStatus] WHERE [Code] = '01810') BEGIN INSERT INTO dbo.[RefEnrollmentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01810', 'Previously enrolled', 'The student was previously enrolled.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEnrollmentStatus] -SET [Description] = 'Previously enrolled', [Definition] = 'The student was previously enrolled.', [SortOrder] = 3.00 WHERE [Code] = '01810' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEnrollmentStatus] WHERE [Code] = '01813') BEGIN INSERT INTO dbo.[RefEnrollmentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01813', 'Transferring (will enroll)', 'The student is transferring (will enroll).', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEnrollmentStatus] -SET [Description] = 'Transferring (will enroll)', [Definition] = 'The student is transferring (will enroll).', [SortOrder] = 4.00 WHERE [Code] = '01813' END -END - -PRINT N'Populate RefEntryType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEntryType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01821') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01821', 'Transfer from a public school in the same local education agency', 'Transfer from a public school in the same local education agency is the process by which the student entered a school during a given academic session.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Transfer from a public school in the same local education agency', [Definition] = 'Transfer from a public school in the same local education agency is the process by which the student entered a school during a given academic session.', [SortOrder] = 1.00 WHERE [Code] = '01821' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01822') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01822', 'Transfer from a public school in a different local education agency in the same state', 'Transfer from a public school in a different local education agency in the same state is the process by which the student entered a school during a given academic session.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Transfer from a public school in a different local education agency in the same state', [Definition] = 'Transfer from a public school in a different local education agency in the same state is the process by which the student entered a school during a given academic session.', [SortOrder] = 2.00 WHERE [Code] = '01822' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01823') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01823', 'Transfer from a public school in a different state', 'Transfer from a public school in a different state is the process by which the student entered a school during a given academic session.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Transfer from a public school in a different state', [Definition] = 'Transfer from a public school in a different state is the process by which the student entered a school during a given academic session.', [SortOrder] = 3.00 WHERE [Code] = '01823' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01824') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01824', 'Transfer from a private, non-religiously-affiliated school in the same local education agency', 'Transfer from a private, non-religiously-affiliated school in the same local education agency is the process by which the student entered a school during a given academic session.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Transfer from a private, non-religiously-affiliated school in the same local education agency', [Definition] = 'Transfer from a private, non-religiously-affiliated school in the same local education agency is the process by which the student entered a school during a given academic session.', [SortOrder] = 4.00 WHERE [Code] = '01824' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01825') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01825', 'Transfer from a private, non-religiously-affiliated school in a different LEA in the same state', 'Transfer from a private, non-religiously-affiliated school in a different LEA in the same state is the process by which the student entered a school during a given academic session.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Transfer from a private, non-religiously-affiliated school in a different LEA in the same state', [Definition] = 'Transfer from a private, non-religiously-affiliated school in a different LEA in the same state is the process by which the student entered a school during a given academic session.', [SortOrder] = 5.00 WHERE [Code] = '01825' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01826') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01826', 'Transfer from a private, non-religiously-affiliated school in a different state', 'Transfer from a private, non-religiously-affiliated school in a different state is the process by which the student entered a school during a given academic session.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Transfer from a private, non-religiously-affiliated school in a different state', [Definition] = 'Transfer from a private, non-religiously-affiliated school in a different state is the process by which the student entered a school during a given academic session.', [SortOrder] = 6.00 WHERE [Code] = '01826' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01827') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01827', 'Transfer from a private, religiously-affiliated school in the same local education agency', 'Transfer from a private, religiously-affiliated school in the same local education agency is the process by which the student entered a school during a given academic session.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Transfer from a private, religiously-affiliated school in the same local education agency', [Definition] = 'Transfer from a private, religiously-affiliated school in the same local education agency is the process by which the student entered a school during a given academic session.', [SortOrder] = 7.00 WHERE [Code] = '01827' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01828') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01828', 'Transfer from a private, religiously-affiliated school in a different LEA in the same state', 'Transfer from a private, religiously-affiliated school in a different LEA in the same state is the process by which the student entered a school during a given academic session.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Transfer from a private, religiously-affiliated school in a different LEA in the same state', [Definition] = 'Transfer from a private, religiously-affiliated school in a different LEA in the same state is the process by which the student entered a school during a given academic session.', [SortOrder] = 8.00 WHERE [Code] = '01828' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01829') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01829', 'Transfer from a private, religiously-affiliated school in a different state', 'Transfer from a private, religiously-affiliated school in a different state', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Transfer from a private, religiously-affiliated school in a different state', [Definition] = 'Transfer from a private, religiously-affiliated school in a different state', [SortOrder] = 9.00 WHERE [Code] = '01829' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01830') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01830', 'Transfer from a school outside of the country', 'Transfer from a school outside of the country is the process by which the student entered a school during a given academic session.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Transfer from a school outside of the country', [Definition] = 'Transfer from a school outside of the country is the process by which the student entered a school during a given academic session.', [SortOrder] = 10.00 WHERE [Code] = '01830' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01831') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01831', 'Transfer from an institution', 'Transfer from an institution is the process by which the student entered a school during a given academic session.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Transfer from an institution', [Definition] = 'Transfer from an institution is the process by which the student entered a school during a given academic session.', [SortOrder] = 11.00 WHERE [Code] = '01831' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01832') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01832', 'Transfer from a charter school', 'Transfer from a charter school is the process by which the student entered a school during a given academic session.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Transfer from a charter school', [Definition] = 'Transfer from a charter school is the process by which the student entered a school during a given academic session.', [SortOrder] = 12.00 WHERE [Code] = '01832' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01833') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01833', 'Transfer from home schooling', 'Transfer from home schooling is the process by which the student entered a school during a given academic session.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Transfer from home schooling', [Definition] = 'Transfer from home schooling is the process by which the student entered a school during a given academic session.', [SortOrder] = 13.00 WHERE [Code] = '01833' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01835') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01835', 'Re-entry from the same school with no interruption of schooling', 'Re-entry from the same school with no interruption of schooling is the process by which the student entered a school during a given academic session.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Re-entry from the same school with no interruption of schooling', [Definition] = 'Re-entry from the same school with no interruption of schooling is the process by which the student entered a school during a given academic session.', [SortOrder] = 14.00 WHERE [Code] = '01835' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01836') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01836', 'Re-entry after a voluntary withdrawal', 'Re-entry after a voluntary withdrawal is the process by which the student entered a school during a given academic session.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Re-entry after a voluntary withdrawal', [Definition] = 'Re-entry after a voluntary withdrawal is the process by which the student entered a school during a given academic session.', [SortOrder] = 15.00 WHERE [Code] = '01836' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01837') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01837', 'Re-entry after an involuntary withdrawal', 'Re-entry after an involuntary withdrawal is the process by which the student entered a school during a given academic session.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Re-entry after an involuntary withdrawal', [Definition] = 'Re-entry after an involuntary withdrawal is the process by which the student entered a school during a given academic session.', [SortOrder] = 16.00 WHERE [Code] = '01837' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01838') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01838', 'Original entry into a United States school', 'Original entry into a United States school is the process by which the student entered a school during a given academic session.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Original entry into a United States school', [Definition] = 'Original entry into a United States school is the process by which the student entered a school during a given academic session.', [SortOrder] = 17.00 WHERE [Code] = '01838' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01839') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01839', 'Original entry into a United States school from a foreign country with no interruption in schooling', 'Original entry into a United States school from a foreign country with no interruption in schooling is the process by which the student entered a school during a given academic session.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Original entry into a United States school from a foreign country with no interruption in schooling', [Definition] = 'Original entry into a United States school from a foreign country with no interruption in schooling is the process by which the student entered a school during a given academic session.', [SortOrder] = 18.00 WHERE [Code] = '01839' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '01840') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01840', 'Original entry into a United States school from a foreign country with an interruption in schooling', 'Original entry into a United States school from a foreign country with an interruption in schooling is the process by which the student entered a school during a given academic session.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Original entry into a United States school from a foreign country with an interruption in schooling', [Definition] = 'Original entry into a United States school from a foreign country with an interruption in schooling is the process by which the student entered a school during a given academic session.', [SortOrder] = 19.00 WHERE [Code] = '01840' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'The process by which the student entered a school during a given academic session is in a category not yet defined in CEDS.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] -SET [Description] = 'Other', [Definition] = 'The process by which the student entered a school during a given academic session is in a category not yet defined in CEDS.', [SortOrder] = 20.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefEnvironmentSetting table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEnvironmentSetting]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEnvironmentSetting] WHERE [Code] = 'HomeBased') BEGIN INSERT INTO dbo.[RefEnvironmentSetting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HomeBased', 'Home-based (Child''s Home)', 'Home-based (Child''s Home) is the site or setting in which early childhood care, education, and/or services are provided.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEnvironmentSetting] -SET [Description] = 'Home-based (Child''s Home)', [Definition] = 'Home-based (Child''s Home) is the site or setting in which early childhood care, education, and/or services are provided.', [SortOrder] = 0.00 WHERE [Code] = 'HomeBased' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEnvironmentSetting] WHERE [Code] = 'CommunityBased') BEGIN INSERT INTO dbo.[RefEnvironmentSetting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CommunityBased', 'Community-based (outside the child''s home)', 'Community-based (outside the child''s home) is the site or setting in which early childhood care, education, and/or services are provided.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEnvironmentSetting] -SET [Description] = 'Community-based (outside the child''s home)', [Definition] = 'Community-based (outside the child''s home) is the site or setting in which early childhood care, education, and/or services are provided.', [SortOrder] = 1.00 WHERE [Code] = 'CommunityBased' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEnvironmentSetting] WHERE [Code] = 'CenterBased') BEGIN INSERT INTO dbo.[RefEnvironmentSetting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CenterBased', 'Center-based (including a school setting)', 'Center-based (including a school setting) is the site or setting in which early childhood care, education, and/or services are provided.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEnvironmentSetting] -SET [Description] = 'Center-based (including a school setting)', [Definition] = 'Center-based (including a school setting) is the site or setting in which early childhood care, education, and/or services are provided.', [SortOrder] = 2.00 WHERE [Code] = 'CenterBased' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEnvironmentSetting] WHERE [Code] = 'CenterBasedSpecial') BEGIN INSERT INTO dbo.[RefEnvironmentSetting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CenterBasedSpecial', 'Center-based for children with special needs', 'Center-based for children with special needs is the site or setting in which early childhood care, education, and/or services are provided.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEnvironmentSetting] -SET [Description] = 'Center-based for children with special needs', [Definition] = 'Center-based for children with special needs is the site or setting in which early childhood care, education, and/or services are provided.', [SortOrder] = 4.00 WHERE [Code] = 'CenterBasedSpecial' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEnvironmentSetting] WHERE [Code] = 'FamilyChildCare') BEGIN INSERT INTO dbo.[RefEnvironmentSetting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FamilyChildCare', 'Family Child Care Home (Provider''s Home)', 'Family Child Care Home (Provider''s Home) is the site or setting in which early childhood care, education, and/or services are provided.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEnvironmentSetting] -SET [Description] = 'Family Child Care Home (Provider''s Home)', [Definition] = 'Family Child Care Home (Provider''s Home) is the site or setting in which early childhood care, education, and/or services are provided.', [SortOrder] = 6.00 WHERE [Code] = 'FamilyChildCare' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEnvironmentSetting] WHERE [Code] = 'MultiSetting') BEGIN INSERT INTO dbo.[RefEnvironmentSetting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MultiSetting', 'Multi-setting', 'Multi-setting is the site or setting in which early childhood care, education, and/or services are provided.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEnvironmentSetting] -SET [Description] = 'Multi-setting', [Definition] = 'Multi-setting is the site or setting in which early childhood care, education, and/or services are provided.', [SortOrder] = 8.00 WHERE [Code] = 'MultiSetting' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEnvironmentSetting] WHERE [Code] = 'LocallyDesigned') BEGIN INSERT INTO dbo.[RefEnvironmentSetting]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LocallyDesigned', 'Locally designed', 'Locally designed is the site or setting in which early childhood care, education, and/or services are provided.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEnvironmentSetting] -SET [Description] = 'Locally designed', [Definition] = 'Locally designed is the site or setting in which early childhood care, education, and/or services are provided.', [SortOrder] = 10.00 WHERE [Code] = 'LocallyDesigned' END -END - -PRINT N'Populate RefERAdministrativeDataSource table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefERAdministrativeDataSource]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefERAdministrativeDataSource] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefERAdministrativeDataSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'State UI Wage Records', 'State UI Wage Records is the administrative data source of information used to collect employment and earnings-related data.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefERAdministrativeDataSource] -SET [Description] = 'State UI Wage Records', [Definition] = 'State UI Wage Records is the administrative data source of information used to collect employment and earnings-related data.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefERAdministrativeDataSource] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefERAdministrativeDataSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Wage Record Interchange System (WRIS II)', 'Wage Record Interchange System (WRIS II) is the administrative data source of information used to collect employment and earnings-related data.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefERAdministrativeDataSource] -SET [Description] = 'Wage Record Interchange System (WRIS II)', [Definition] = 'Wage Record Interchange System (WRIS II) is the administrative data source of information used to collect employment and earnings-related data.', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefERAdministrativeDataSource] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefERAdministrativeDataSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Federal Employment Data Exchange System (FEDES)', 'Federal Employment Data Exchange System (FEDES) is the administrative data source of information used to collect employment and earnings-related data.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefERAdministrativeDataSource] -SET [Description] = 'Federal Employment Data Exchange System (FEDES)', [Definition] = 'Federal Employment Data Exchange System (FEDES) is the administrative data source of information used to collect employment and earnings-related data.', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefERAdministrativeDataSource] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefERAdministrativeDataSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Other', 'The administrative data source of information used to collect employment and earnings-related data is in a category not defined in CEDS.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefERAdministrativeDataSource] -SET [Description] = 'Other', [Definition] = 'The administrative data source of information used to collect employment and earnings-related data is in a category not defined in CEDS.', [SortOrder] = 4.00 WHERE [Code] = '04' END -END - -PRINT N'Populate RefERSRuralUrbanContinuumCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefERSRuralUrbanContinuumCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefERSRuralUrbanContinuumCode] WHERE [Code] = '1') BEGIN INSERT INTO dbo.[RefERSRuralUrbanContinuumCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1', 'Counties in metro areas of 1 million population or more', 'Counties in metro areas of 1 million population or more', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefERSRuralUrbanContinuumCode] -SET [Description] = 'Counties in metro areas of 1 million population or more', [Definition] = 'Counties in metro areas of 1 million population or more', [SortOrder] = 1.00 WHERE [Code] = '1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefERSRuralUrbanContinuumCode] WHERE [Code] = '2') BEGIN INSERT INTO dbo.[RefERSRuralUrbanContinuumCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2', 'Counties in metro areas of 250,000 to 1 million population', 'Counties in metro areas of 250,000 to 1 million population', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefERSRuralUrbanContinuumCode] -SET [Description] = 'Counties in metro areas of 250,000 to 1 million population', [Definition] = 'Counties in metro areas of 250,000 to 1 million population', [SortOrder] = 2.00 WHERE [Code] = '2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefERSRuralUrbanContinuumCode] WHERE [Code] = '3') BEGIN INSERT INTO dbo.[RefERSRuralUrbanContinuumCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3', 'Counties in metro areas of fewer than 250,000 population', 'Counties in metro areas of fewer than 250,000 population', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefERSRuralUrbanContinuumCode] -SET [Description] = 'Counties in metro areas of fewer than 250,000 population', [Definition] = 'Counties in metro areas of fewer than 250,000 population', [SortOrder] = 3.00 WHERE [Code] = '3' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefERSRuralUrbanContinuumCode] WHERE [Code] = '4') BEGIN INSERT INTO dbo.[RefERSRuralUrbanContinuumCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4', 'Urban population of 20,000 or more, adjacent to a metro area', 'Urban population of 20,000 or more, adjacent to a metro area', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefERSRuralUrbanContinuumCode] -SET [Description] = 'Urban population of 20,000 or more, adjacent to a metro area', [Definition] = 'Urban population of 20,000 or more, adjacent to a metro area', [SortOrder] = 4.00 WHERE [Code] = '4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefERSRuralUrbanContinuumCode] WHERE [Code] = '5') BEGIN INSERT INTO dbo.[RefERSRuralUrbanContinuumCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('5', 'Urban population of 20,000 or more, not adjacent to a metro area', 'Urban population of 20,000 or more, not adjacent to a metro area', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefERSRuralUrbanContinuumCode] -SET [Description] = 'Urban population of 20,000 or more, not adjacent to a metro area', [Definition] = 'Urban population of 20,000 or more, not adjacent to a metro area', [SortOrder] = 5.00 WHERE [Code] = '5' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefERSRuralUrbanContinuumCode] WHERE [Code] = '6') BEGIN INSERT INTO dbo.[RefERSRuralUrbanContinuumCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('6', 'Urban population of 2,500 to 19,999, adjacent to a metro area', 'Urban population of 2,500 to 19,999, adjacent to a metro area', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefERSRuralUrbanContinuumCode] -SET [Description] = 'Urban population of 2,500 to 19,999, adjacent to a metro area', [Definition] = 'Urban population of 2,500 to 19,999, adjacent to a metro area', [SortOrder] = 6.00 WHERE [Code] = '6' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefERSRuralUrbanContinuumCode] WHERE [Code] = '7') BEGIN INSERT INTO dbo.[RefERSRuralUrbanContinuumCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('7', 'Urban population of 2,500 to 19,999, not adjacent to a metro area', 'Urban population of 2,500 to 19,999, not adjacent to a metro area', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefERSRuralUrbanContinuumCode] -SET [Description] = 'Urban population of 2,500 to 19,999, not adjacent to a metro area', [Definition] = 'Urban population of 2,500 to 19,999, not adjacent to a metro area', [SortOrder] = 7.00 WHERE [Code] = '7' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefERSRuralUrbanContinuumCode] WHERE [Code] = '8') BEGIN INSERT INTO dbo.[RefERSRuralUrbanContinuumCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('8', 'Completely rural or less than 2,500 urban population, adjacent to a metro area', 'Completely rural or less than 2,500 urban population, adjacent to a metro area', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefERSRuralUrbanContinuumCode] -SET [Description] = 'Completely rural or less than 2,500 urban population, adjacent to a metro area', [Definition] = 'Completely rural or less than 2,500 urban population, adjacent to a metro area', [SortOrder] = 8.00 WHERE [Code] = '8' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefERSRuralUrbanContinuumCode] WHERE [Code] = '9') BEGIN INSERT INTO dbo.[RefERSRuralUrbanContinuumCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('9', 'Completely rural or less than 2,500 urban population, not adjacent to a metro area', 'Completely rural or less than 2,500 urban population, not adjacent to a metro area', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefERSRuralUrbanContinuumCode] -SET [Description] = 'Completely rural or less than 2,500 urban population, not adjacent to a metro area', [Definition] = 'Completely rural or less than 2,500 urban population, not adjacent to a metro area', [SortOrder] = 9.00 WHERE [Code] = '9' END -END - -PRINT N'Populate RefExitOrWithdrawalStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefExitOrWithdrawalStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalStatus] WHERE [Code] = 'Permanent') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Permanent', 'Permanent', 'The instance of student exit/withdrawal is considered to be of a permanent nature.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalStatus] -SET [Description] = 'Permanent', [Definition] = 'The instance of student exit/withdrawal is considered to be of a permanent nature.', [SortOrder] = 1.00 WHERE [Code] = 'Permanent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalStatus] WHERE [Code] = 'Temporary') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Temporary', 'Temporary', 'The instance of student exit/withdrawal is considered to be of a temporary nature.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalStatus] -SET [Description] = 'Temporary', [Definition] = 'The instance of student exit/withdrawal is considered to be of a temporary nature.', [SortOrder] = 2.00 WHERE [Code] = 'Temporary' END -END - -PRINT N'Populate RefExitOrWithdrawalType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefExitOrWithdrawalType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01907') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01907', 'Student is in a different public school in the same local education agency', 'The student exited from membership in the educational institution and is in a different public school in the same local education agency.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Student is in a different public school in the same local education agency', [Definition] = 'The student exited from membership in the educational institution and is in a different public school in the same local education agency.', [SortOrder] = 1.00 WHERE [Code] = '01907' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01908') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01908', 'Transferred to a public school in a different local education agency in the same state', 'The student exited from membership in the educational institution and transferred to a public school in a different local education agency in the same state.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Transferred to a public school in a different local education agency in the same state', [Definition] = 'The student exited from membership in the educational institution and transferred to a public school in a different local education agency in the same state.', [SortOrder] = 2.00 WHERE [Code] = '01908' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01909') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01909', 'Transferred to a public school in a different state', 'The student exited from membership in the educational institution and transferred to a public school in a different state.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Transferred to a public school in a different state', [Definition] = 'The student exited from membership in the educational institution and transferred to a public school in a different state.', [SortOrder] = 3.00 WHERE [Code] = '01909' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01910') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01910', 'Transferred to a private, non-religiously-affiliated school within the geographic boundaries as the same local education agency', 'The student exited from membership in the educational institution and transferred to a private, non-religiously-affiliated school within the geographic boundaries as the same local education agency.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Transferred to a private, non-religiously-affiliated school within the geographic boundaries as the same local education agency', [Definition] = 'The student exited from membership in the educational institution and transferred to a private, non-religiously-affiliated school within the geographic boundaries as the same local education agency.', [SortOrder] = 4.00 WHERE [Code] = '01910' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01911') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01911', 'Transferred to a private, non-religiously-affiliated school within the geographic boundaries of a different LEA in the same state', 'The student exited from membership in the educational institution and transferred to a private, non-religiously-affiliated school within the geographic boundaries of a different LEA in the same state.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Transferred to a private, non-religiously-affiliated school within the geographic boundaries of a different LEA in the same state', [Definition] = 'The student exited from membership in the educational institution and transferred to a private, non-religiously-affiliated school within the geographic boundaries of a different LEA in the same state.', [SortOrder] = 5.00 WHERE [Code] = '01911' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01912') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01912', 'Transferred to a private, non-religiously-affiliated school in a different state', 'The student exited from membership in the educational institution and transferred to a private, non-religiously-affiliated school in a different state.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Transferred to a private, non-religiously-affiliated school in a different state', [Definition] = 'The student exited from membership in the educational institution and transferred to a private, non-religiously-affiliated school in a different state.', [SortOrder] = 6.00 WHERE [Code] = '01912' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01913') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01913', 'Transferred to a private, religiously-affiliated school within the geographic boundaries of the same local education agency', 'The student exited from membership in the educational institution and transferred to a private, religiously-affiliated school within the geographic boundaries of the same local education agency.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Transferred to a private, religiously-affiliated school within the geographic boundaries of the same local education agency', [Definition] = 'The student exited from membership in the educational institution and transferred to a private, religiously-affiliated school within the geographic boundaries of the same local education agency.', [SortOrder] = 7.00 WHERE [Code] = '01913' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01914') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01914', 'Transferred to a private, religiously-affiliated school within the geographic boundaries of a different LEA in the same state', 'The student exited from membership in the educational institution and transferred to a private, religiously-affiliated school within the geographic boundaries of a different LEA in the same state.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Transferred to a private, religiously-affiliated school within the geographic boundaries of a different LEA in the same state', [Definition] = 'The student exited from membership in the educational institution and transferred to a private, religiously-affiliated school within the geographic boundaries of a different LEA in the same state.', [SortOrder] = 8.00 WHERE [Code] = '01914' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01915') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01915', 'Transferred to a private, religiously-affiliated school in a different state', 'The student exited from membership in the educational institution and transferred to a private, religiously-affiliated school in a different state.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Transferred to a private, religiously-affiliated school in a different state', [Definition] = 'The student exited from membership in the educational institution and transferred to a private, religiously-affiliated school in a different state.', [SortOrder] = 9.00 WHERE [Code] = '01915' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01916') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01916', 'Transferred to a school outside of the country', 'The student exited from membership in the educational institution and transferred to a school outside of the country.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Transferred to a school outside of the country', [Definition] = 'The student exited from membership in the educational institution and transferred to a school outside of the country.', [SortOrder] = 10.00 WHERE [Code] = '01916' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01917') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01917', 'Transferred to an institution', 'The student exited from membership in the educational institution and transferred to an institution.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Transferred to an institution', [Definition] = 'The student exited from membership in the educational institution and transferred to an institution.', [SortOrder] = 11.00 WHERE [Code] = '01917' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01918') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01918', 'Transferred to home schooling', 'The student exited from membership in the educational institution and transferred to home schooling.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Transferred to home schooling', [Definition] = 'The student exited from membership in the educational institution and transferred to home schooling.', [SortOrder] = 12.00 WHERE [Code] = '01918' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01919') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01919', 'Transferred to a charter school in a different LEA in the state', 'The student exited from membership in the educational institution and transferred to a charter school in a different LEA in the same state.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Transferred to a charter school in a different LEA in the state', [Definition] = 'The student exited from membership in the educational institution and transferred to a charter school in a different LEA in the same state.', [SortOrder] = 13.00 WHERE [Code] = '01919' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01921') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01921', 'Graduated with regular, advanced, International Baccalaureate, or other type of diploma', 'The student exited from membership in the educational institution and graduated with regular, advanced, International Baccalaureate, or other type of diploma.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Graduated with regular, advanced, International Baccalaureate, or other type of diploma', [Definition] = 'The student exited from membership in the educational institution and graduated with regular, advanced, International Baccalaureate, or other type of diploma.', [SortOrder] = 14.00 WHERE [Code] = '01921' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01922') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01922', 'Completed school with other credentials', 'The student exited from membership in the educational institution and completed school with other credentials.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Completed school with other credentials', [Definition] = 'The student exited from membership in the educational institution and completed school with other credentials.', [SortOrder] = 15.00 WHERE [Code] = '01922' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01924') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01924', 'Withdrawn due to illness', 'The student was withdrawn due to illness.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Withdrawn due to illness', [Definition] = 'The student was withdrawn due to illness.', [SortOrder] = 17.00 WHERE [Code] = '01924' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01925') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01925', 'Expelled or involuntarily withdrawn', 'The student was expelled or involuntarily withdrawn.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Expelled or involuntarily withdrawn', [Definition] = 'The student was expelled or involuntarily withdrawn.', [SortOrder] = 18.00 WHERE [Code] = '01925' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01926') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01926', 'Reached maximum age for services', 'The student reached maximum age for services.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Reached maximum age for services', [Definition] = 'The student reached maximum age for services.', [SortOrder] = 19.00 WHERE [Code] = '01926' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01927') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01927', 'Discontinued schooling', 'The student exited from membership in the educational institution and discontinued schooling.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Discontinued schooling', [Definition] = 'The student exited from membership in the educational institution and discontinued schooling.', [SortOrder] = 20.00 WHERE [Code] = '01927' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01928') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01928', 'Completed grade 12, but did not meet all graduation requirements', 'The student exited from membership in the educational institution and completed grade 12, but did not meet all graduation requirements.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Completed grade 12, but did not meet all graduation requirements', [Definition] = 'The student exited from membership in the educational institution and completed grade 12, but did not meet all graduation requirements.', [SortOrder] = 21.00 WHERE [Code] = '01928' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01930') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01930', 'Enrolled in a postsecondary early admission program', 'The student exited from membership in the educational institution and enrolled in a postsecondary early admission program.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Enrolled in a postsecondary early admission program', [Definition] = 'The student exited from membership in the educational institution and enrolled in a postsecondary early admission program.', [SortOrder] = 22.00 WHERE [Code] = '01930' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '01931') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01931', 'Not enrolled, unknown status', 'The student exited from membership in the educational institution and the reason is presently unknown. It is expected this temporary option will be changed when the reason for exit has been determined.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Not enrolled, unknown status', [Definition] = 'The student exited from membership in the educational institution and the reason is presently unknown. It is expected this temporary option will be changed when the reason for exit has been determined.', [SortOrder] = 23.00 WHERE [Code] = '01931' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '03499') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03499', 'Student is in the same LEA, receiving education services, but is not assigned to a particular school', 'The student exited from membership in the educational institution and the student is in the same LEA, receiving education services, but is not assigned to a particular school.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Student is in the same LEA, receiving education services, but is not assigned to a particular school', [Definition] = 'The student exited from membership in the educational institution and the student is in the same LEA, receiving education services, but is not assigned to a particular school.', [SortOrder] = 24.00 WHERE [Code] = '03499' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '03502') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03502', 'Not enrolled, eligible to return', 'The student exited from membership in the education institution for an extended period unrelated to any other existing exit code. It is expected the student will return to this school after the reason for the extended period has completed', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Not enrolled, eligible to return', [Definition] = 'The student exited from membership in the education institution for an extended period unrelated to any other existing exit code. It is expected the student will return to this school after the reason for the extended period has completed', [SortOrder] = 27.00 WHERE [Code] = '03502' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '03503') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03503', 'Enrolled in a foreign exchange program', 'The student exited from membership in the educational institution and is enrolled in a foreign exchange program.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Enrolled in a foreign exchange program', [Definition] = 'The student exited from membership in the educational institution and is enrolled in a foreign exchange program.', [SortOrder] = 28.00 WHERE [Code] = '03503' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '03505') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03505', 'Exited', 'The student was exited from membership in the educational institution for administrative or system requirements and will be reenrolled in the same educational institution with a new Enrollment Entry Date.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Exited', [Definition] = 'The student was exited from membership in the educational institution for administrative or system requirements and will be reenrolled in the same educational institution with a new Enrollment Entry Date.', [SortOrder] = 30.00 WHERE [Code] = '03505' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '03508') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03508', 'Student is in a charter school managed by the same local education agency', 'The student exited from membership in the educational institution and is in a charter school managed by the same local education agency.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Student is in a charter school managed by the same local education agency', [Definition] = 'The student exited from membership in the educational institution and is in a charter school managed by the same local education agency.', [SortOrder] = 31.00 WHERE [Code] = '03508' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '03509') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03509', 'Completed with a state-recognized equivalency certificate', 'The student exited from membership in the educational institution and completed with a state-recognized equivalency certificate.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Completed with a state-recognized equivalency certificate', [Definition] = 'The student exited from membership in the educational institution and completed with a state-recognized equivalency certificate.', [SortOrder] = 32.00 WHERE [Code] = '03509' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'The circumstances under which the student exited from membership in an educational institution is in a category not yet defined in CEDS.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Other', [Definition] = 'The circumstances under which the student exited from membership in an educational institution is in a category not yet defined in CEDS.', [SortOrder] = 33.00 WHERE [Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '73060') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73060', 'Officially withdrew and enrolled in ABE, adult secondary education, or adult ESL program', 'The student officially withdrew and enrolled in an adult basic education, adult secondary education, or adult English as a Second Language program.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Officially withdrew and enrolled in ABE, adult secondary education, or adult ESL program', [Definition] = 'The student officially withdrew and enrolled in an adult basic education, adult secondary education, or adult English as a Second Language program.', [SortOrder] = 33.00 WHERE [Code] = '73060' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '73061') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73061', 'Officially withdrew and enrolled in a workforce training program', 'The student officially withdrew and enrolled in a workforce training program.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Officially withdrew and enrolled in a workforce training program', [Definition] = 'The student officially withdrew and enrolled in a workforce training program.', [SortOrder] = 33.00 WHERE [Code] = '73061' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '73064') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73064', 'Died', 'The student exited from membership in the educational institution due to death.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Died', [Definition] = 'The student exited from membership in the educational institution due to death.', [SortOrder] = 34.00 WHERE [Code] = '73064' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '73065') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73065', 'Permanently incapacitated', 'The student exited from membership in the educational institution and is permanently incapacitated.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Permanently incapacitated', [Definition] = 'The student exited from membership in the educational institution and is permanently incapacitated.', [SortOrder] = 35.00 WHERE [Code] = '73065' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '73062') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73062', 'Student is expected to return to the same school', 'The student is expected to return to the same school at the beginning of the next school year.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Student is expected to return to the same school', [Definition] = 'The student is expected to return to the same school at the beginning of the next school year.', [SortOrder] = 36.00 WHERE [Code] = '73062' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '73063') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73063', 'Transferred to a charter school in a different state', 'The student exited from membership in the educational institution and transferred to a charter school in a different state.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] -SET [Description] = 'Transferred to a charter school in a different state', [Definition] = 'The student exited from membership in the educational institution and transferred to a charter school in a different state.', [SortOrder] = 37.00 WHERE [Code] = '73063' END -END - -PRINT N'Populate RefFacilitiesMandateAuthorityType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilitiesMandateAuthorityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMandateAuthorityType] WHERE [Code] = '13390') BEGIN INSERT INTO dbo.[RefFacilitiesMandateAuthorityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13390', 'District/Local', 'District/Local is specified as the authority that mandates through law, regulation, or standard that pertains to a specific mandate.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMandateAuthorityType] -SET [Description] = 'District/Local', [Definition] = 'District/Local is specified as the authority that mandates through law, regulation, or standard that pertains to a specific mandate.', [SortOrder] = 1.00 WHERE [Code] = '13390' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMandateAuthorityType] WHERE [Code] = '00859') BEGIN INSERT INTO dbo.[RefFacilitiesMandateAuthorityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00859', 'Federal', 'Federal is specified as the authority that mandates through law, regulation, or standard that pertains to a specific mandate.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMandateAuthorityType] -SET [Description] = 'Federal', [Definition] = 'Federal is specified as the authority that mandates through law, regulation, or standard that pertains to a specific mandate.', [SortOrder] = 2.00 WHERE [Code] = '00859' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMandateAuthorityType] WHERE [Code] = '00391') BEGIN INSERT INTO dbo.[RefFacilitiesMandateAuthorityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00391', 'State', 'State is specified as the authority that mandates through law, regulation, or standard that pertains to a specific mandate.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMandateAuthorityType] -SET [Description] = 'State', [Definition] = 'State is specified as the authority that mandates through law, regulation, or standard that pertains to a specific mandate.', [SortOrder] = 3.00 WHERE [Code] = '00391' END -END - -PRINT N'Populate RefFacilitiesMgmtEmergencyType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilitiesMgmtEmergencyType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02882') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02882', 'Act of violence', 'Act of violence is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Act of violence', [Definition] = 'Act of violence is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 1.00 WHERE [Code] = '02882' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02880') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02880', 'Bomb threat', 'Bomb threat is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Bomb threat', [Definition] = 'Bomb threat is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 2.00 WHERE [Code] = '02880' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02888') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02888', 'Debris flows or mudslide', 'Debris flows or mudslide is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Debris flows or mudslide', [Definition] = 'Debris flows or mudslide is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 3.00 WHERE [Code] = '02888' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02886') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02886', 'Earthquake', 'Earthquake is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Earthquake', [Definition] = 'Earthquake is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 4.00 WHERE [Code] = '02886' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02895') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02895', 'Emergency shelter need', 'Emergency shelter need is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Emergency shelter need', [Definition] = 'Emergency shelter need is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 5.00 WHERE [Code] = '02895' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02892') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02892', 'Extreme heat', 'Extreme heat is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Extreme heat', [Definition] = 'Extreme heat is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 6.00 WHERE [Code] = '02892' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02878') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02878', 'Fire', 'Fire is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Fire', [Definition] = 'Fire is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 7.00 WHERE [Code] = '02878' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02897') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02897', 'Flood', 'Flood is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Flood', [Definition] = 'Flood is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 8.00 WHERE [Code] = '02897' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02894') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02894', 'Gas leak', 'Gas leak is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Gas leak', [Definition] = 'Gas leak is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 9.00 WHERE [Code] = '02894' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02883') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02883', 'Hostage', 'Hostage is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Hostage', [Definition] = 'Hostage is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 10.00 WHERE [Code] = '02883' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02884') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02884', 'Hurricane and tropical storm', 'Hurricane and tropical storm is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Hurricane and tropical storm', [Definition] = 'Hurricane and tropical storm is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 11.00 WHERE [Code] = '02884' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02893') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02893', 'Major chemical emergency', 'Major chemical emergency is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Major chemical emergency', [Definition] = 'Major chemical emergency is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 12.00 WHERE [Code] = '02893' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02881') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02881', 'Terrorism', 'Terrorism is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Terrorism', [Definition] = 'Terrorism is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 13.00 WHERE [Code] = '02881' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02879') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02879', 'Theft', 'Theft is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Theft', [Definition] = 'Theft is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 14.00 WHERE [Code] = '02879' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02885') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02885', 'Thunderstorm - severe', 'Thunderstorm, severe, is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Thunderstorm - severe', [Definition] = 'Thunderstorm, severe, is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 15.00 WHERE [Code] = '02885' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02896') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02896', 'Tornado', 'Tornado is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Tornado', [Definition] = 'Tornado is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 16.00 WHERE [Code] = '02896' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02889') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02889', 'Tsunami', 'Tsunami is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Tsunami', [Definition] = 'Tsunami is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 17.00 WHERE [Code] = '02889' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02890') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02890', 'Volcano', 'Volcano is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Volcano', [Definition] = 'Volcano is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 18.00 WHERE [Code] = '02890' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02891') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02891', 'Wildfire - surface, ground, or crown fire', 'Wildfire, surface, ground, or crown fire, is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Wildfire - surface, ground, or crown fire', [Definition] = 'Wildfire, surface, ground, or crown fire, is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 19.00 WHERE [Code] = '02891' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '02887') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02887', 'Winter storm', 'Winter storm is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Winter storm', [Definition] = 'Winter storm is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 20.00 WHERE [Code] = '02887' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesMgmtEmergencyType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefFacilitiesMgmtEmergencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesMgmtEmergencyType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefFacilitiesPlanType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilitiesPlanType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesPlanType] WHERE [Code] = '02828') BEGIN INSERT INTO dbo.[RefFacilitiesPlanType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02828', 'Capital improvement plan', 'A 5- or 6-year plan, based on the master plan, that sets priorities and budgets for school-specific major capital projects, such as component replacement, system upgrades, whole or partial school modernization, new construction, and site acquisition.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesPlanType] -SET [Description] = 'Capital improvement plan', [Definition] = 'A 5- or 6-year plan, based on the master plan, that sets priorities and budgets for school-specific major capital projects, such as component replacement, system upgrades, whole or partial school modernization, new construction, and site acquisition.', [SortOrder] = 1.00 WHERE [Code] = '02828' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesPlanType] WHERE [Code] = '02827') BEGIN INSERT INTO dbo.[RefFacilitiesPlanType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02827', 'Educational facilities master plan', 'A long-term plan (often 10 years) that describes the scope, schedule, and cost estimates to bring all facilities up to desired standards from current conditions.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesPlanType] -SET [Description] = 'Educational facilities master plan', [Definition] = 'A long-term plan (often 10 years) that describes the scope, schedule, and cost estimates to bring all facilities up to desired standards from current conditions.', [SortOrder] = 2.00 WHERE [Code] = '02827' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesPlanType] WHERE [Code] = '02825') BEGIN INSERT INTO dbo.[RefFacilitiesPlanType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02825', 'Emergency response plan', 'A plan that addresses the immediate and short-term effects of an emergency or disaster. Response includes immediate actions to save lives, protect property, and meet basic human needs.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesPlanType] -SET [Description] = 'Emergency response plan', [Definition] = 'A plan that addresses the immediate and short-term effects of an emergency or disaster. Response includes immediate actions to save lives, protect property, and meet basic human needs.', [SortOrder] = 3.00 WHERE [Code] = '02825' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesPlanType] WHERE [Code] = '02829') BEGIN INSERT INTO dbo.[RefFacilitiesPlanType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02829', 'Energy management plan', 'A plan that includes historical utility consumption and cost data and targets, with scope of work and schedule to meet cost and consumption targets.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesPlanType] -SET [Description] = 'Energy management plan', [Definition] = 'A plan that includes historical utility consumption and cost data and targets, with scope of work and schedule to meet cost and consumption targets.', [SortOrder] = 4.00 WHERE [Code] = '02829' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesPlanType] WHERE [Code] = '02830') BEGIN INSERT INTO dbo.[RefFacilitiesPlanType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02830', 'Hazardous materials management plan', 'A plan that identifies hazardous materials in the building and/or site and describes scope of work, schedule, cost, and appropriate entities to carry out the plan.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesPlanType] -SET [Description] = 'Hazardous materials management plan', [Definition] = 'A plan that identifies hazardous materials in the building and/or site and describes scope of work, schedule, cost, and appropriate entities to carry out the plan.', [SortOrder] = 5.00 WHERE [Code] = '02830' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesPlanType] WHERE [Code] = '02826') BEGIN INSERT INTO dbo.[RefFacilitiesPlanType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02826', 'Maintenance plan', 'A plan that includes the specific scope, schedule, responsible party, estimated cost, and source of funds for routine, preventive, and predictive maintenance of a district or school.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesPlanType] -SET [Description] = 'Maintenance plan', [Definition] = 'A plan that includes the specific scope, schedule, responsible party, estimated cost, and source of funds for routine, preventive, and predictive maintenance of a district or school.', [SortOrder] = 6.00 WHERE [Code] = '02826' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitiesPlanType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefFacilitiesPlanType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of management and accountability plan.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitiesPlanType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of management and accountability plan.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefFacilityApplicableFederalMandateType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityApplicableFederalMandateType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityApplicableFederalMandateType] WHERE [Code] = '02584') BEGIN INSERT INTO dbo.[RefFacilityApplicableFederalMandateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02584', 'Americans with Disabilities Act (ADA)', 'Public Law 101-336 which prohibits discrimination against individuals with disabilities as regards to employment, public accommodations and certain public services. Also known as Americans with Disabilities Act (ADA).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityApplicableFederalMandateType] -SET [Description] = 'Americans with Disabilities Act (ADA)', [Definition] = 'Public Law 101-336 which prohibits discrimination against individuals with disabilities as regards to employment, public accommodations and certain public services. Also known as Americans with Disabilities Act (ADA).', [SortOrder] = 1.00 WHERE [Code] = '02584' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityApplicableFederalMandateType] WHERE [Code] = '02588') BEGIN INSERT INTO dbo.[RefFacilityApplicableFederalMandateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02588', 'Asbestos Hazardous Emergency Response Act (AHERA)', 'Asbestos Hazardous Emergency Response Act (AHERA) is specified as the particular federal law, regulation, or standard that pertains to a school facility.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityApplicableFederalMandateType] -SET [Description] = 'Asbestos Hazardous Emergency Response Act (AHERA)', [Definition] = 'Asbestos Hazardous Emergency Response Act (AHERA) is specified as the particular federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 2.00 WHERE [Code] = '02588' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityApplicableFederalMandateType] WHERE [Code] = '02585') BEGIN INSERT INTO dbo.[RefFacilityApplicableFederalMandateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02585', 'Individuals with Disabilities Education Act (IDEA)', 'Public Law 105-17 is designed to insure that all children with disabilities have available to them a free appropriate public education. Public Law. (Formerly called Education of the Handicapped Act P.L. 91-230.) Also known as Individuals with Disabilities Education Act (IDEA).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityApplicableFederalMandateType] -SET [Description] = 'Individuals with Disabilities Education Act (IDEA)', [Definition] = 'Public Law 105-17 is designed to insure that all children with disabilities have available to them a free appropriate public education. Public Law. (Formerly called Education of the Handicapped Act P.L. 91-230.) Also known as Individuals with Disabilities Education Act (IDEA).', [SortOrder] = 3.00 WHERE [Code] = '02585' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityApplicableFederalMandateType] WHERE [Code] = '02587') BEGIN INSERT INTO dbo.[RefFacilityApplicableFederalMandateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02587', 'Lead Contamination Control Act', 'Lead Contamination Control Act is specified as the particular federal law, regulation, or standard that pertains to a school facility.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityApplicableFederalMandateType] -SET [Description] = 'Lead Contamination Control Act', [Definition] = 'Lead Contamination Control Act is specified as the particular federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 4.00 WHERE [Code] = '02587' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityApplicableFederalMandateType] WHERE [Code] = '02586') BEGIN INSERT INTO dbo.[RefFacilityApplicableFederalMandateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02586', 'Safe Drinking Water Act', 'Safe Drinking Water Act is specified as the particular federal law, regulation, or standard that pertains to a school facility.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityApplicableFederalMandateType] -SET [Description] = 'Safe Drinking Water Act', [Definition] = 'Safe Drinking Water Act is specified as the particular federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 5.00 WHERE [Code] = '02586' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityApplicableFederalMandateType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefFacilityApplicableFederalMandateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the particular federal law, regulation, or standard that pertains to a school facility.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityApplicableFederalMandateType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the particular federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefFacilityAuditType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityAuditType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityAuditType] WHERE [Code] = '02979') BEGIN INSERT INTO dbo.[RefFacilityAuditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02979', 'Building commissioning', 'A systematic review of the quality and operation of a new or substantially improved building to ensure that it functions according to its design and construction specifications.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityAuditType] -SET [Description] = 'Building commissioning', [Definition] = 'A systematic review of the quality and operation of a new or substantially improved building to ensure that it functions according to its design and construction specifications.', [SortOrder] = 1.00 WHERE [Code] = '02979' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityAuditType] WHERE [Code] = '02977') BEGIN INSERT INTO dbo.[RefFacilityAuditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02977', 'Financial audit', 'A systematic review of the approved budget and actual expenditures and encumbrances.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityAuditType] -SET [Description] = 'Financial audit', [Definition] = 'A systematic review of the approved budget and actual expenditures and encumbrances.', [SortOrder] = 2.00 WHERE [Code] = '02977' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityAuditType] WHERE [Code] = '02980') BEGIN INSERT INTO dbo.[RefFacilityAuditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02980', 'Fiscal audit', 'A systematic review of the capacity of a school district or municipality to generate and sustain funds to support plans, projects, or other requirements.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityAuditType] -SET [Description] = 'Fiscal audit', [Definition] = 'A systematic review of the capacity of a school district or municipality to generate and sustain funds to support plans, projects, or other requirements.', [SortOrder] = 3.00 WHERE [Code] = '02980' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityAuditType] WHERE [Code] = '02976') BEGIN INSERT INTO dbo.[RefFacilityAuditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02976', 'Management audit', 'A systematic review of the decision-making, staffing, contracts, and governing procedures.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityAuditType] -SET [Description] = 'Management audit', [Definition] = 'A systematic review of the decision-making, staffing, contracts, and governing procedures.', [SortOrder] = 4.00 WHERE [Code] = '02976' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityAuditType] WHERE [Code] = '02978') BEGIN INSERT INTO dbo.[RefFacilityAuditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02978', 'Performance audit', 'A systematic review of the quality of work performed and its relationship to outcomes.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityAuditType] -SET [Description] = 'Performance audit', [Definition] = 'A systematic review of the quality of work performed and its relationship to outcomes.', [SortOrder] = 5.00 WHERE [Code] = '02978' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityAuditType] WHERE [Code] = '13688') BEGIN INSERT INTO dbo.[RefFacilityAuditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13688', 'Post Occupancy Evaluation', 'The review of building program specifications, design and construction after the building alteration, addition or new construction has been in service for at least one year, to assess how well the facility supports the educational program and how well the design is meeting expectation for building performance.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityAuditType] -SET [Description] = 'Post Occupancy Evaluation', [Definition] = 'The review of building program specifications, design and construction after the building alteration, addition or new construction has been in service for at least one year, to assess how well the facility supports the educational program and how well the design is meeting expectation for building performance.', [SortOrder] = 6.00 WHERE [Code] = '13688' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityAuditType] WHERE [Code] = '02981') BEGIN INSERT INTO dbo.[RefFacilityAuditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02981', 'Process audit', 'A systematic review of procurement procedures and decision-making.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityAuditType] -SET [Description] = 'Process audit', [Definition] = 'A systematic review of procurement procedures and decision-making.', [SortOrder] = 7.00 WHERE [Code] = '02981' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityAuditType] WHERE [Code] = '13687') BEGIN INSERT INTO dbo.[RefFacilityAuditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13687', 'Retro-commissioning', 'Retro-commissioning (RCx) is a one-time, systematic investigation of a building''s operations and maintenance process for improving and optimizing a building''s operation and maintenance done in buildings that have been in operation for at least 3 years, but usually many more years.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityAuditType] -SET [Description] = 'Retro-commissioning', [Definition] = 'Retro-commissioning (RCx) is a one-time, systematic investigation of a building''s operations and maintenance process for improving and optimizing a building''s operation and maintenance done in buildings that have been in operation for at least 3 years, but usually many more years.', [SortOrder] = 8.00 WHERE [Code] = '13687' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityAuditType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefFacilityAuditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityAuditType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefFacilityCapitalProgramMgmtType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityCapitalProgramMgmtType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityCapitalProgramMgmtType] WHERE [Code] = '02913') BEGIN INSERT INTO dbo.[RefFacilityCapitalProgramMgmtType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02913', 'District management', 'The school district procures and oversees the design and construction services for its capital projects.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityCapitalProgramMgmtType] -SET [Description] = 'District management', [Definition] = 'The school district procures and oversees the design and construction services for its capital projects.', [SortOrder] = 1.00 WHERE [Code] = '02913' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityCapitalProgramMgmtType] WHERE [Code] = '02824') BEGIN INSERT INTO dbo.[RefFacilityCapitalProgramMgmtType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02824', 'Nonschool public agency management', 'A nonschool governmental agency procures and oversees the design and construction of the school district''s capital projects. May be a municipal clerk of the works, separate building authority, or even the Army Corps of Engineers.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityCapitalProgramMgmtType] -SET [Description] = 'Nonschool public agency management', [Definition] = 'A nonschool governmental agency procures and oversees the design and construction of the school district''s capital projects. May be a municipal clerk of the works, separate building authority, or even the Army Corps of Engineers.', [SortOrder] = 2.00 WHERE [Code] = '02824' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityCapitalProgramMgmtType] WHERE [Code] = '02823') BEGIN INSERT INTO dbo.[RefFacilityCapitalProgramMgmtType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02823', 'Private management', 'The school district contracts with private program managers who procure and oversee the design and construction of its capital projects.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityCapitalProgramMgmtType] -SET [Description] = 'Private management', [Definition] = 'The school district contracts with private program managers who procure and oversee the design and construction of its capital projects.', [SortOrder] = 3.00 WHERE [Code] = '02823' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityCapitalProgramMgmtType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefFacilityCapitalProgramMgmtType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of management organization for planning, design, and construction of major capital projects.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityCapitalProgramMgmtType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of management organization for planning, design, and construction of major capital projects.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefFacilityComplianceAgencyType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityComplianceAgencyType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityComplianceAgencyType] WHERE [Code] = '00865') BEGIN INSERT INTO dbo.[RefFacilityComplianceAgencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00865', 'Charter board', 'The charter agency or agencies with responsibility and authority for evaluating and enforcing compliance with requirements affecting school facilities.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityComplianceAgencyType] -SET [Description] = 'Charter board', [Definition] = 'The charter agency or agencies with responsibility and authority for evaluating and enforcing compliance with requirements affecting school facilities.', [SortOrder] = 1.00 WHERE [Code] = '00865' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityComplianceAgencyType] WHERE [Code] = '13652') BEGIN INSERT INTO dbo.[RefFacilityComplianceAgencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13652', 'Federal Agency', 'The federal agency or agencies with responsibility and authority for evaluating and enforcing compliance with federal requirements affecting public school facilities.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityComplianceAgencyType] -SET [Description] = 'Federal Agency', [Definition] = 'The federal agency or agencies with responsibility and authority for evaluating and enforcing compliance with federal requirements affecting public school facilities.', [SortOrder] = 2.00 WHERE [Code] = '13652' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityComplianceAgencyType] WHERE [Code] = '00862') BEGIN INSERT INTO dbo.[RefFacilityComplianceAgencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00862', 'Local (e.g., school board, city council, municipal board)', 'The local public agency or agencies with responsibility and authority for evaluating and enforcing compliance with local municipal requirements affecting public school facilities.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityComplianceAgencyType] -SET [Description] = 'Local (e.g., school board, city council, municipal board)', [Definition] = 'The local public agency or agencies with responsibility and authority for evaluating and enforcing compliance with local municipal requirements affecting public school facilities.', [SortOrder] = 3.00 WHERE [Code] = '00862' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityComplianceAgencyType] WHERE [Code] = '00864') BEGIN INSERT INTO dbo.[RefFacilityComplianceAgencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00864', 'Private/Religious', 'The private/religious agency or agencies with responsibility and authority for evaluating and enforcing compliance with requirements affecting school facilities.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityComplianceAgencyType] -SET [Description] = 'Private/Religious', [Definition] = 'The private/religious agency or agencies with responsibility and authority for evaluating and enforcing compliance with requirements affecting school facilities.', [SortOrder] = 4.00 WHERE [Code] = '00864' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityComplianceAgencyType] WHERE [Code] = '00214') BEGIN INSERT INTO dbo.[RefFacilityComplianceAgencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00214', 'Regional or intermediate educational agency', 'The regional or intermediate educational agency or agencies with responsibility and authority for evaluating and enforcing compliance with requirements affecting public school facilities.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityComplianceAgencyType] -SET [Description] = 'Regional or intermediate educational agency', [Definition] = 'The regional or intermediate educational agency or agencies with responsibility and authority for evaluating and enforcing compliance with requirements affecting public school facilities.', [SortOrder] = 5.00 WHERE [Code] = '00214' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityComplianceAgencyType] WHERE [Code] = '00860') BEGIN INSERT INTO dbo.[RefFacilityComplianceAgencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00860', 'State agency', 'The state agency or agencies with responsibility and authority for evaluating and enforcing compliance with state requirements affecting public school facilities.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityComplianceAgencyType] -SET [Description] = 'State agency', [Definition] = 'The state agency or agencies with responsibility and authority for evaluating and enforcing compliance with state requirements affecting public school facilities.', [SortOrder] = 6.00 WHERE [Code] = '00860' END -END - -PRINT N'Populate RefFacilityComplianceStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityComplianceStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityComplianceStatus] WHERE [Code] = '02570') BEGIN INSERT INTO dbo.[RefFacilityComplianceStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02570', 'In compliance', 'The building, site, system, component, equipment, vehicle, or fixture conforms to the requirements or standards specified in federal, state, or local standards or codes.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityComplianceStatus] -SET [Description] = 'In compliance', [Definition] = 'The building, site, system, component, equipment, vehicle, or fixture conforms to the requirements or standards specified in federal, state, or local standards or codes.', [SortOrder] = 1.00 WHERE [Code] = '02570' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityComplianceStatus] WHERE [Code] = '02571') BEGIN INSERT INTO dbo.[RefFacilityComplianceStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02571', 'Not in compliance', 'The building, site, system, component, equipment, vehicle, or fixture does not conform to the requirements or standards specified in federal, state, or local standards or codes.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityComplianceStatus] -SET [Description] = 'Not in compliance', [Definition] = 'The building, site, system, component, equipment, vehicle, or fixture does not conform to the requirements or standards specified in federal, state, or local standards or codes.', [SortOrder] = 2.00 WHERE [Code] = '02571' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityComplianceStatus] WHERE [Code] = '02572') BEGIN INSERT INTO dbo.[RefFacilityComplianceStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02572', 'Planned compliance', 'Planned compliance activities have been set for the building, site, system, component, equipment, vehicle, or fixture to ensure that it conforms to the requirements or standards specified in federal, state, or local standards or codes.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityComplianceStatus] -SET [Description] = 'Planned compliance', [Definition] = 'Planned compliance activities have been set for the building, site, system, component, equipment, vehicle, or fixture to ensure that it conforms to the requirements or standards specified in federal, state, or local standards or codes.', [SortOrder] = 3.00 WHERE [Code] = '02572' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityComplianceStatus] WHERE [Code] = '02573') BEGIN INSERT INTO dbo.[RefFacilityComplianceStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02573', 'Waived compliance', 'The building, site, system, component, equipment, vehicle, or fixture''s compliance to the requirements or standards specified in federal, state, or local standards or codes have been waived.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityComplianceStatus] -SET [Description] = 'Waived compliance', [Definition] = 'The building, site, system, component, equipment, vehicle, or fixture''s compliance to the requirements or standards specified in federal, state, or local standards or codes have been waived.', [SortOrder] = 4.00 WHERE [Code] = '02573' END -END - -PRINT N'Populate RefFacilityConstructionDateType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityConstructionDateType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityConstructionDateType] WHERE [Code] = '02420') BEGIN INSERT INTO dbo.[RefFacilityConstructionDateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02420', 'Actual', 'Construction was completed as judged by the owner putting the building or improvement into use.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityConstructionDateType] -SET [Description] = 'Actual', [Definition] = 'Construction was completed as judged by the owner putting the building or improvement into use.', [SortOrder] = 1.00 WHERE [Code] = '02420' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityConstructionDateType] WHERE [Code] = '02421') BEGIN INSERT INTO dbo.[RefFacilityConstructionDateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02421', 'Estimated', 'The new building, addition, or improvement is expected to be completed so the owner is able to put the building or improvement into use.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityConstructionDateType] -SET [Description] = 'Estimated', [Definition] = 'The new building, addition, or improvement is expected to be completed so the owner is able to put the building or improvement into use.', [SortOrder] = 2.00 WHERE [Code] = '02421' END -END - -PRINT N'Populate RefFacilityConstructionMaterialType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityConstructionMaterialType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityConstructionMaterialType] WHERE [Code] = '02430') BEGIN INSERT INTO dbo.[RefFacilityConstructionMaterialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02430', 'Adobe', 'Adobe is specified as the primary material used for the construction of a building.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityConstructionMaterialType] -SET [Description] = 'Adobe', [Definition] = 'Adobe is specified as the primary material used for the construction of a building.', [SortOrder] = 1.00 WHERE [Code] = '02430' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityConstructionMaterialType] WHERE [Code] = '02428') BEGIN INSERT INTO dbo.[RefFacilityConstructionMaterialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02428', 'Aluminum', 'Aluminum is specified as the primary material used for the construction of a building.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityConstructionMaterialType] -SET [Description] = 'Aluminum', [Definition] = 'Aluminum is specified as the primary material used for the construction of a building.', [SortOrder] = 2.00 WHERE [Code] = '02428' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityConstructionMaterialType] WHERE [Code] = '02424') BEGIN INSERT INTO dbo.[RefFacilityConstructionMaterialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02424', 'Block', 'Block is specified as the primary material used for the construction of a building.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityConstructionMaterialType] -SET [Description] = 'Block', [Definition] = 'Block is specified as the primary material used for the construction of a building.', [SortOrder] = 3.00 WHERE [Code] = '02424' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityConstructionMaterialType] WHERE [Code] = '02422') BEGIN INSERT INTO dbo.[RefFacilityConstructionMaterialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02422', 'Brick', 'Brick is specified as the primary material used for the construction of a building.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityConstructionMaterialType] -SET [Description] = 'Brick', [Definition] = 'Brick is specified as the primary material used for the construction of a building.', [SortOrder] = 4.00 WHERE [Code] = '02422' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityConstructionMaterialType] WHERE [Code] = '02423') BEGIN INSERT INTO dbo.[RefFacilityConstructionMaterialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02423', 'Brick veneer', 'Brick veneer is specified as the primary material used for the construction of a building.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityConstructionMaterialType] -SET [Description] = 'Brick veneer', [Definition] = 'Brick veneer is specified as the primary material used for the construction of a building.', [SortOrder] = 5.00 WHERE [Code] = '02423' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityConstructionMaterialType] WHERE [Code] = '02426') BEGIN INSERT INTO dbo.[RefFacilityConstructionMaterialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02426', 'Concrete', 'Concrete is specified as the primary material used for the construction of a building.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityConstructionMaterialType] -SET [Description] = 'Concrete', [Definition] = 'Concrete is specified as the primary material used for the construction of a building.', [SortOrder] = 6.00 WHERE [Code] = '02426' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityConstructionMaterialType] WHERE [Code] = '02427') BEGIN INSERT INTO dbo.[RefFacilityConstructionMaterialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02427', 'Prefabricated', 'Prefabricated is specified as the primary material used for the construction of a building.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityConstructionMaterialType] -SET [Description] = 'Prefabricated', [Definition] = 'Prefabricated is specified as the primary material used for the construction of a building.', [SortOrder] = 7.00 WHERE [Code] = '02427' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityConstructionMaterialType] WHERE [Code] = '02429') BEGIN INSERT INTO dbo.[RefFacilityConstructionMaterialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02429', 'Steel', 'Steel is specified as the primary material used for the construction of a building.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityConstructionMaterialType] -SET [Description] = 'Steel', [Definition] = 'Steel is specified as the primary material used for the construction of a building.', [SortOrder] = 8.00 WHERE [Code] = '02429' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityConstructionMaterialType] WHERE [Code] = '02425') BEGIN INSERT INTO dbo.[RefFacilityConstructionMaterialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02425', 'Wood frame', 'Wood frame is specified as the primary material used for the construction of a building.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityConstructionMaterialType] -SET [Description] = 'Wood frame', [Definition] = 'Wood frame is specified as the primary material used for the construction of a building.', [SortOrder] = 9.00 WHERE [Code] = '02425' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityConstructionMaterialType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefFacilityConstructionMaterialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the primary material used for the construction of a building.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityConstructionMaterialType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the primary material used for the construction of a building.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefFacilityFederalMandateInterestType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityFederalMandateInterestType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFederalMandateInterestType] WHERE [Code] = '02579') BEGIN INSERT INTO dbo.[RefFacilityFederalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02579', 'Asbestos contamination', 'Asbestos contamination is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFederalMandateInterestType] -SET [Description] = 'Asbestos contamination', [Definition] = 'Asbestos contamination is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 1.00 WHERE [Code] = '02579' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFederalMandateInterestType] WHERE [Code] = '75026') BEGIN INSERT INTO dbo.[RefFacilityFederalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75026', 'Child nutrition', 'Child nutrition is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFederalMandateInterestType] -SET [Description] = 'Child nutrition', [Definition] = 'Child nutrition is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 2.00 WHERE [Code] = '75026' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFederalMandateInterestType] WHERE [Code] = '02577') BEGIN INSERT INTO dbo.[RefFacilityFederalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02577', 'Drinking water safety', 'Drinking water safety is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFederalMandateInterestType] -SET [Description] = 'Drinking water safety', [Definition] = 'Drinking water safety is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 3.00 WHERE [Code] = '02577' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFederalMandateInterestType] WHERE [Code] = '02574') BEGIN INSERT INTO dbo.[RefFacilityFederalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02574', 'Facility accessibility and usability for individuals with disabilities', 'Facility accessibility and usability for individuals with disabilities is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFederalMandateInterestType] -SET [Description] = 'Facility accessibility and usability for individuals with disabilities', [Definition] = 'Facility accessibility and usability for individuals with disabilities is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 4.00 WHERE [Code] = '02574' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFederalMandateInterestType] WHERE [Code] = '02580') BEGIN INSERT INTO dbo.[RefFacilityFederalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02580', 'Hazardous materials', 'Hazardous materials is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFederalMandateInterestType] -SET [Description] = 'Hazardous materials', [Definition] = 'Hazardous materials is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 5.00 WHERE [Code] = '02580' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFederalMandateInterestType] WHERE [Code] = '02575') BEGIN INSERT INTO dbo.[RefFacilityFederalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02575', 'Indoor air quality', 'Indoor air quality is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFederalMandateInterestType] -SET [Description] = 'Indoor air quality', [Definition] = 'Indoor air quality is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 6.00 WHERE [Code] = '02575' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFederalMandateInterestType] WHERE [Code] = '02583') BEGIN INSERT INTO dbo.[RefFacilityFederalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02583', 'Integrated pest control', 'Integrated pest control is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFederalMandateInterestType] -SET [Description] = 'Integrated pest control', [Definition] = 'Integrated pest control is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 7.00 WHERE [Code] = '02583' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFederalMandateInterestType] WHERE [Code] = '02578') BEGIN INSERT INTO dbo.[RefFacilityFederalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02578', 'Lead contamination', 'Lead contamination is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFederalMandateInterestType] -SET [Description] = 'Lead contamination', [Definition] = 'Lead contamination is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 8.00 WHERE [Code] = '02578' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFederalMandateInterestType] WHERE [Code] = '02582') BEGIN INSERT INTO dbo.[RefFacilityFederalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02582', 'Material Safety Data Sheet (MSDS)', 'Material Safety Data Sheet (MSDS) is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFederalMandateInterestType] -SET [Description] = 'Material Safety Data Sheet (MSDS)', [Definition] = 'Material Safety Data Sheet (MSDS) is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 9.00 WHERE [Code] = '02582' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFederalMandateInterestType] WHERE [Code] = '03264') BEGIN INSERT INTO dbo.[RefFacilityFederalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03264', 'National School Lunch Act', 'National School Lunch Act is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFederalMandateInterestType] -SET [Description] = 'National School Lunch Act', [Definition] = 'National School Lunch Act is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 10.00 WHERE [Code] = '03264' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFederalMandateInterestType] WHERE [Code] = '02576') BEGIN INSERT INTO dbo.[RefFacilityFederalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02576', 'Radon contamination', 'Radon contamination is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFederalMandateInterestType] -SET [Description] = 'Radon contamination', [Definition] = 'Radon contamination is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 11.00 WHERE [Code] = '02576' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFederalMandateInterestType] WHERE [Code] = '02581') BEGIN INSERT INTO dbo.[RefFacilityFederalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02581', 'Underground storage tank', 'Underground storage tanks (USTs) store petroleum or hazardous substances. The greatest potential threat from a leaking UST is contamination of groundwater, the source of drinking water for most Americans.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFederalMandateInterestType] -SET [Description] = 'Underground storage tank', [Definition] = 'Underground storage tanks (USTs) store petroleum or hazardous substances. The greatest potential threat from a leaking UST is contamination of groundwater, the source of drinking water for most Americans.', [SortOrder] = 12.00 WHERE [Code] = '02581' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFederalMandateInterestType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefFacilityFederalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFederalMandateInterestType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefFacilityFinancingFeeType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityFinancingFeeType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFinancingFeeType] WHERE [Code] = '13717') BEGIN INSERT INTO dbo.[RefFacilityFinancingFeeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13717', 'Application fee', 'Some lenders may require a small fee as part of the application process. It may be nonrefundable.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFinancingFeeType] -SET [Description] = 'Application fee', [Definition] = 'Some lenders may require a small fee as part of the application process. It may be nonrefundable.', [SortOrder] = 1.00 WHERE [Code] = '13717' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFinancingFeeType] WHERE [Code] = '13718') BEGIN INSERT INTO dbo.[RefFacilityFinancingFeeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13718', 'Legal fee', 'A fee paid to a lender for legal fees.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFinancingFeeType] -SET [Description] = 'Legal fee', [Definition] = 'A fee paid to a lender for legal fees.', [SortOrder] = 2.00 WHERE [Code] = '13718' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFinancingFeeType] WHERE [Code] = '13719') BEGIN INSERT INTO dbo.[RefFacilityFinancingFeeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13719', 'Origination fee', 'A fee paid to a lender for processing a loan application; it is often stated as a percentage of the mortgage amount, or basis points, and paid at closing.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFinancingFeeType] -SET [Description] = 'Origination fee', [Definition] = 'A fee paid to a lender for processing a loan application; it is often stated as a percentage of the mortgage amount, or basis points, and paid at closing.', [SortOrder] = 3.00 WHERE [Code] = '13719' END -END - -PRINT N'Populate RefFacilityFurnishingsType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityFurnishingsType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFurnishingsType] WHERE [Code] = '00103') BEGIN INSERT INTO dbo.[RefFacilityFurnishingsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00103', 'Administrative office', 'A building or site used to house offices to support activities concerned with the overall business/management, planning, and evaluation of an education agency or school.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFurnishingsType] -SET [Description] = 'Administrative office', [Definition] = 'A building or site used to house offices to support activities concerned with the overall business/management, planning, and evaluation of an education agency or school.', [SortOrder] = 1.00 WHERE [Code] = '00103' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFurnishingsType] WHERE [Code] = '02792') BEGIN INSERT INTO dbo.[RefFacilityFurnishingsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02792', 'Cafeteria', 'A space equipped primarily for the preparation, serving, consumption and clean-up of food.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFurnishingsType] -SET [Description] = 'Cafeteria', [Definition] = 'A space equipped primarily for the preparation, serving, consumption and clean-up of food.', [SortOrder] = 2.00 WHERE [Code] = '02792' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFurnishingsType] WHERE [Code] = '03014') BEGIN INSERT INTO dbo.[RefFacilityFurnishingsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03014', 'Classroom', 'A location on campus inside a classroom.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFurnishingsType] -SET [Description] = 'Classroom', [Definition] = 'A location on campus inside a classroom.', [SortOrder] = 3.00 WHERE [Code] = '03014' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFurnishingsType] WHERE [Code] = '00309') BEGIN INSERT INTO dbo.[RefFacilityFurnishingsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00309', 'Occupational therapy', 'Services that address the functional needs of an individual relating to adaptive development, adaptive behavior and play, and sensory, motor, and postural development. These services are designed to improve the individual''s functional ability to perform tasks in the home, school, and community settings and include: 1) identification assessment and intervention; 2) adaptation of the environment, and selection, design and fabrication of assistive and orthodontic devices to facilitate the development and promote the acquisition of functional skills; and 3) prevention or minimization of the impact of initial or future impairment, delay in development, or loss of functional ability.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFurnishingsType] -SET [Description] = 'Occupational therapy', [Definition] = 'Services that address the functional needs of an individual relating to adaptive development, adaptive behavior and play, and sensory, motor, and postural development. These services are designed to improve the individual''s functional ability to perform tasks in the home, school, and community settings and include: 1) identification assessment and intervention; 2) adaptation of the environment, and selection, design and fabrication of assistive and orthodontic devices to facilitate the development and promote the acquisition of functional skills; and 3) prevention or minimization of the impact of initial or future impairment, delay in development, or loss of functional ability.', [SortOrder] = 4.00 WHERE [Code] = '00309' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFurnishingsType] WHERE [Code] = '00559') BEGIN INSERT INTO dbo.[RefFacilityFurnishingsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00559', 'Physical education', 'A space equipped primarily for physical education.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFurnishingsType] -SET [Description] = 'Physical education', [Definition] = 'A space equipped primarily for physical education.', [SortOrder] = 5.00 WHERE [Code] = '00559' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityFurnishingsType] WHERE [Code] = '00313') BEGIN INSERT INTO dbo.[RefFacilityFurnishingsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00313', 'Physical therapy', 'Services to prevent or alleviate movement dysfunction and related functional problems that include: 1) screening, evaluation, and assessment of children and youth with disabilities to identify movement dysfunction; 2) obtaining, interpreting, and integrating information appropriate to program planning to prevent or alleviate movement dysfunction and related functional problems; and 3) providing individual or group services or treatment to prevent, alleviate, or compensate for movement dysfunction and related functional problems.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityFurnishingsType] -SET [Description] = 'Physical therapy', [Definition] = 'Services to prevent or alleviate movement dysfunction and related functional problems that include: 1) screening, evaluation, and assessment of children and youth with disabilities to identify movement dysfunction; 2) obtaining, interpreting, and integrating information appropriate to program planning to prevent or alleviate movement dysfunction and related functional problems; and 3) providing individual or group services or treatment to prevent, alleviate, or compensate for movement dysfunction and related functional problems.', [SortOrder] = 6.00 WHERE [Code] = '00313' END -END - -PRINT N'Populate RefFacilityHazardousMaterialsOrCondType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityHazardousMaterialsOrCondType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '02898') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02898', 'Asbestos', 'Asbestos is a mineral fiber that has been used commonly in a variety of building construction materials (such as roofing shingles, ceiling and floor tiles, paper products, and asbestos cement products) for insulation and as a fire-retardant. When asbestos-containing materials are damaged or disturbed by repair, remodeling or demolition activities, microscopic fibers become airborne and can be inhaled into the lungs, where they can cause significant health problems such as asbestosis, lung cancer and mesothelioma.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Asbestos', [Definition] = 'Asbestos is a mineral fiber that has been used commonly in a variety of building construction materials (such as roofing shingles, ceiling and floor tiles, paper products, and asbestos cement products) for insulation and as a fire-retardant. When asbestos-containing materials are damaged or disturbed by repair, remodeling or demolition activities, microscopic fibers become airborne and can be inhaled into the lungs, where they can cause significant health problems such as asbestosis, lung cancer and mesothelioma.', [SortOrder] = 1.00 WHERE [Code] = '02898' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13656') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13656', 'Carbon Monoxide', 'Carbon monoxide is an odorless, colorless and toxic gas. At lower levels of exposure, CO causes mild effects that are often mistaken for the flu. These symptoms include headaches, dizziness, disorientation, nausea and fatigue. At high levels, CO can cause death. The effects of CO exposure can vary greatly from person to person depending on age, overall health and the concentration and length of exposure.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Carbon Monoxide', [Definition] = 'Carbon monoxide is an odorless, colorless and toxic gas. At lower levels of exposure, CO causes mild effects that are often mistaken for the flu. These symptoms include headaches, dizziness, disorientation, nausea and fatigue. At high levels, CO can cause death. The effects of CO exposure can vary greatly from person to person depending on age, overall health and the concentration and length of exposure.', [SortOrder] = 2.00 WHERE [Code] = '13656' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13657') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13657', 'Chlorofluorocarbons', 'A chlorofluorocarbon (CFC) is an organic compound that contains carbon, chlorine, and fluorine, produced as a volatile derivative of methane and ethane. Many CFCs have been widely used as refrigerants, propellants (in aerosol applications), and solvents.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Chlorofluorocarbons', [Definition] = 'A chlorofluorocarbon (CFC) is an organic compound that contains carbon, chlorine, and fluorine, produced as a volatile derivative of methane and ethane. Many CFCs have been widely used as refrigerants, propellants (in aerosol applications), and solvents.', [SortOrder] = 3.00 WHERE [Code] = '13657' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13658') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13658', 'Concentrated animal feeding operations (CAFOs)', 'CAFOs generate manure, litter, and process wastewater that can contain pollutants like nitrogen, phosphorus, metals, and bacteria. Potential concerns include spills, overflows, or runoff that can pollute surface waters and threaten the health of people and animals.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Concentrated animal feeding operations (CAFOs)', [Definition] = 'CAFOs generate manure, litter, and process wastewater that can contain pollutants like nitrogen, phosphorus, metals, and bacteria. Potential concerns include spills, overflows, or runoff that can pollute surface waters and threaten the health of people and animals.', [SortOrder] = 4.00 WHERE [Code] = '13658' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13659') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13659', 'Criteria Air Pollutants', 'Criteria air pollutants include the six most common air pollutants in the U.S.: carbon monoxide, lead, nitrogen dioxide, ozone, particulate matter, and sulfur dioxide. These pollutants endanger public health and the environment, are widespread throughout the U.S. and come from a variety of sources. Criteria air pollutants are responsible for many adverse effects on human health, causing thousands of cases of premature mortality and tens of thousands of emergency room visits annually. They also cause acid rain and can significantly harm ecosystems and the built environment.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Criteria Air Pollutants', [Definition] = 'Criteria air pollutants include the six most common air pollutants in the U.S.: carbon monoxide, lead, nitrogen dioxide, ozone, particulate matter, and sulfur dioxide. These pollutants endanger public health and the environment, are widespread throughout the U.S. and come from a variety of sources. Criteria air pollutants are responsible for many adverse effects on human health, causing thousands of cases of premature mortality and tens of thousands of emergency room visits annually. They also cause acid rain and can significantly harm ecosystems and the built environment.', [SortOrder] = 5.00 WHERE [Code] = '13659' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13660') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13660', 'Drip Lines', 'Drip lines can carry pollutants from air deposition and roof runoff.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Drip Lines', [Definition] = 'Drip lines can carry pollutants from air deposition and roof runoff.', [SortOrder] = 6.00 WHERE [Code] = '13660' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13661') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13661', 'Ground Level Ozone', 'Ozone (O3) is a gas composed of three oxygen atoms. It is not usually emitted directly into the air, but at ground-level is created by a chemical reaction between oxides of nitrogen (NOx) and volatile organic compounds (VOC) in the presence of sunlight.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Ground Level Ozone', [Definition] = 'Ozone (O3) is a gas composed of three oxygen atoms. It is not usually emitted directly into the air, but at ground-level is created by a chemical reaction between oxides of nitrogen (NOx) and volatile organic compounds (VOC) in the presence of sunlight.', [SortOrder] = 7.00 WHERE [Code] = '13661' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13662') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13662', 'Hazardous Air Pollutants', 'Hazardous air pollutants, also known as toxic air pollutants or air toxics, are those pollutants that cause or may cause cancer or other serious health effects, such as reproductive effects or birth defects, or adverse environmental and ecological effects.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Hazardous Air Pollutants', [Definition] = 'Hazardous air pollutants, also known as toxic air pollutants or air toxics, are those pollutants that cause or may cause cancer or other serious health effects, such as reproductive effects or birth defects, or adverse environmental and ecological effects.', [SortOrder] = 8.00 WHERE [Code] = '13662' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13663') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13663', 'Hazardous, industrial, or municipal waste sites', 'Fuel or chemical contaminants can appear on land or in groundwater, which has the potential for vapor intrusion.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Hazardous, industrial, or municipal waste sites', [Definition] = 'Fuel or chemical contaminants can appear on land or in groundwater, which has the potential for vapor intrusion.', [SortOrder] = 9.00 WHERE [Code] = '13663' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13664') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13664', 'Hydrochlorofluorocarbons', 'Compounds containing hydrogen, fluorine, chlorine, and carbon atoms. Although ozone depleting substances, they are less potent at destroying stratospheric ozone than chlorofluorocarbons (CFCs). They have been introduced as temporary replacements for CFCs and are also greenhouse gases.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Hydrochlorofluorocarbons', [Definition] = 'Compounds containing hydrogen, fluorine, chlorine, and carbon atoms. Although ozone depleting substances, they are less potent at destroying stratospheric ozone than chlorofluorocarbons (CFCs). They have been introduced as temporary replacements for CFCs and are also greenhouse gases.', [SortOrder] = 10.00 WHERE [Code] = '13664' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '02899') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02899', 'Lead', 'Lead is a toxic metal that was used for many years in various products. Lead can affect children''s brains and developing nervous systems, causing reduced IQ, learning disabilities, and behavioral problems. Lead is also harmful to adults. Lead in dust is the most common way people are exposed to lead. People can also get lead in their bodies from lead in soil, paint chips and drinking water from lead-containing pipes or plumbing fixtures.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Lead', [Definition] = 'Lead is a toxic metal that was used for many years in various products. Lead can affect children''s brains and developing nervous systems, causing reduced IQ, learning disabilities, and behavioral problems. Lead is also harmful to adults. Lead in dust is the most common way people are exposed to lead. People can also get lead in their bodies from lead in soil, paint chips and drinking water from lead-containing pipes or plumbing fixtures.', [SortOrder] = 11.00 WHERE [Code] = '02899' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13665') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13665', 'Mercury', 'Mercury is a naturally occurring element that is found in air, water and soil. Mercury is found in many rocks including coal. When coal is burned, mercury is released into the environment. High levels can harm the brain, heart, kidneys, lungs, and immune system of people of all ages.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Mercury', [Definition] = 'Mercury is a naturally occurring element that is found in air, water and soil. Mercury is found in many rocks including coal. When coal is burned, mercury is released into the environment. High levels can harm the brain, heart, kidneys, lungs, and immune system of people of all ages.', [SortOrder] = 12.00 WHERE [Code] = '13665' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13666') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13666', 'Methane', 'A hydrocarbon that is a greenhouse gas with a global warming potential most recently estimated at 23 times that of carbon dioxide. Methane is produced through anaerobic (without oxygen) decomposition of waste in landfills, animal digestion, decomposition of animal wastes, production and distribution of natural gas and petroleum, coal production, and incomplete fossil fuel combustion.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Methane', [Definition] = 'A hydrocarbon that is a greenhouse gas with a global warming potential most recently estimated at 23 times that of carbon dioxide. Methane is produced through anaerobic (without oxygen) decomposition of waste in landfills, animal digestion, decomposition of animal wastes, production and distribution of natural gas and petroleum, coal production, and incomplete fossil fuel combustion.', [SortOrder] = 13.00 WHERE [Code] = '13666' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '02900') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02900', 'Mold', 'Molds are part of the natural environment. Outdoors, molds break down dead organic matter such as fallen leaves and dead trees, but indoors, mold growth should be avoided. Molds reproduce by means of tiny spores. Mold may begin growing indoors when mold spores land on surfaces that are wet. Molds have the potential to cause health problems. Molds produce allergens, irritants, and in some cases, potentially toxic substances (mycotoxins). Inhaling or touching mold or mold spores may cause allergic reactions in sensitive individuals.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Mold', [Definition] = 'Molds are part of the natural environment. Outdoors, molds break down dead organic matter such as fallen leaves and dead trees, but indoors, mold growth should be avoided. Molds reproduce by means of tiny spores. Mold may begin growing indoors when mold spores land on surfaces that are wet. Molds have the potential to cause health problems. Molds produce allergens, irritants, and in some cases, potentially toxic substances (mycotoxins). Inhaling or touching mold or mold spores may cause allergic reactions in sensitive individuals.', [SortOrder] = 14.00 WHERE [Code] = '02900' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13667') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13667', 'Nitrogen Oxides', 'Gases consisting of one molecule of nitrogen and varying numbers of oxygen molecules. Nitrogen oxides are produced in the emissions of vehicle exhausts and from power stations. In the atmosphere, nitrogen oxides can contribute to formation of photochemical ozone (smog), can impair visibility and have health consequences, they are thus considered plants.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Nitrogen Oxides', [Definition] = 'Gases consisting of one molecule of nitrogen and varying numbers of oxygen molecules. Nitrogen oxides are produced in the emissions of vehicle exhausts and from power stations. In the atmosphere, nitrogen oxides can contribute to formation of photochemical ozone (smog), can impair visibility and have health consequences, they are thus considered plants.', [SortOrder] = 15.00 WHERE [Code] = '13667' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13668') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13668', 'Particulate Matter', 'Very small pieces of solid or liquid matter such as particles of soot, dust, fumes, mists or aerosols. The physical characteristics of particles, and how they combine with other particles, are part of the feedback mechanisms of the atmosphere.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Particulate Matter', [Definition] = 'Very small pieces of solid or liquid matter such as particles of soot, dust, fumes, mists or aerosols. The physical characteristics of particles, and how they combine with other particles, are part of the feedback mechanisms of the atmosphere.', [SortOrder] = 16.00 WHERE [Code] = '13668' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '02903') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02903', 'Pesticides', 'A pesticide is any substance or mixture of substances intended for preventing, destroying, repelling, or mitigating any pest. The health effects of pesticides depend on the type of pesticide. Some, such as the organophosphates and carbamates, affect the nervous system. Others may irritate the skin or eyes. Some pesticides may be carcinogens. Others may affect the hormone or endocrine system in the body.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Pesticides', [Definition] = 'A pesticide is any substance or mixture of substances intended for preventing, destroying, repelling, or mitigating any pest. The health effects of pesticides depend on the type of pesticide. Some, such as the organophosphates and carbamates, affect the nervous system. Others may irritate the skin or eyes. Some pesticides may be carcinogens. Others may affect the hormone or endocrine system in the body.', [SortOrder] = 17.00 WHERE [Code] = '02903' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13669') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13669', 'Polychlorinated biphenyls (PCBs)', 'PCBs belong to a broad family of man-made organic chemicals known as chlorinated hydrocarbons. PCBs were domestically manufactured from 1929 until their manufacture was banned in 1979. They have a range of toxicity and vary in consistency from thin, light-colored liquids to yellow or black waxy solids. Due to their non-flammability, chemical stability, high boiling point, and electrical insulating properties, PCBs were used in hundreds of industrial and commercial applications including electrical, heat transfer, and hydraulic equipment. Caulk containing PCBs was used in some buildings, including schools, in the 1950s through the 1970s. Although no longer commercially produced in the United States, PCBs may be present in products and materials produced before the ban. PCBs have been demonstrated to cause cancer, as well as a variety of other adverse health effects on the immune system, reproductive system, nervous system, and endocrine system.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Polychlorinated biphenyls (PCBs)', [Definition] = 'PCBs belong to a broad family of man-made organic chemicals known as chlorinated hydrocarbons. PCBs were domestically manufactured from 1929 until their manufacture was banned in 1979. They have a range of toxicity and vary in consistency from thin, light-colored liquids to yellow or black waxy solids. Due to their non-flammability, chemical stability, high boiling point, and electrical insulating properties, PCBs were used in hundreds of industrial and commercial applications including electrical, heat transfer, and hydraulic equipment. Caulk containing PCBs was used in some buildings, including schools, in the 1950s through the 1970s. Although no longer commercially produced in the United States, PCBs may be present in products and materials produced before the ban. PCBs have been demonstrated to cause cancer, as well as a variety of other adverse health effects on the immune system, reproductive system, nervous system, and endocrine system.', [SortOrder] = 18.00 WHERE [Code] = '13669' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13670') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13670', 'Propellants', 'A propellant is a chemical used to create thrust. The material is usually expelled by gas pressure. The pressure may be from a compressed gas, or a gas produced by a chemical reaction. It may be a gas, liquid, plasma, or, before the chemical reaction, a solid.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Propellants', [Definition] = 'A propellant is a chemical used to create thrust. The material is usually expelled by gas pressure. The pressure may be from a compressed gas, or a gas produced by a chemical reaction. It may be a gas, liquid, plasma, or, before the chemical reaction, a solid.', [SortOrder] = 19.00 WHERE [Code] = '13670' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '02902') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02902', 'Radon', 'Radon comes from the natural, radioactive breakdown of uranium in soil, rock and water and gets into the air. Radon gas decays into radioactive particles that can get trapped in the lungs through breathing. As they break down further, these particles release small bursts of energy. This can damage lung tissue and lead to lung cancer. The most common method used to reduce radon is a vent pipe system and fan, which pulls radon from beneath the building and vents it to the outside.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Radon', [Definition] = 'Radon comes from the natural, radioactive breakdown of uranium in soil, rock and water and gets into the air. Radon gas decays into radioactive particles that can get trapped in the lungs through breathing. As they break down further, these particles release small bursts of energy. This can damage lung tissue and lead to lung cancer. The most common method used to reduce radon is a vent pipe system and fan, which pulls radon from beneath the building and vents it to the outside.', [SortOrder] = 20.00 WHERE [Code] = '02902' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13671') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13671', 'Refrigerants', 'A refrigerant is a compound used in a heat cycle that reversibly undergoes a phase change from a gas to a liquid. Traditionally, fluorocarbons, especially chlorofluorocarbons were used as refrigerants, but they are being phased out because of their ozone depletion effects. Other refrigerants are ammonia, sulfur dioxide, carbon dioxide, and non-halogenated hydrocarbons such as methane. It is illegal to release refrigerants into the atmosphere (intentional or accidental) because they can cause severe damage to the ozone layer. When CFCs are removed they should be recycled to clean out any contaminants and return it to a usable condition. Refrigerants should never be mixed together. Some CFCs must be managed as hazardous waste even if recycled, and special precautions are required for their transport, depending on the legislation of the country''s government.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Refrigerants', [Definition] = 'A refrigerant is a compound used in a heat cycle that reversibly undergoes a phase change from a gas to a liquid. Traditionally, fluorocarbons, especially chlorofluorocarbons were used as refrigerants, but they are being phased out because of their ozone depletion effects. Other refrigerants are ammonia, sulfur dioxide, carbon dioxide, and non-halogenated hydrocarbons such as methane. It is illegal to release refrigerants into the atmosphere (intentional or accidental) because they can cause severe damage to the ozone layer. When CFCs are removed they should be recycled to clean out any contaminants and return it to a usable condition. Refrigerants should never be mixed together. Some CFCs must be managed as hazardous waste even if recycled, and special precautions are required for their transport, depending on the legislation of the country''s government.', [SortOrder] = 21.00 WHERE [Code] = '13671' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13672') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13672', 'Sediment, sludge, reuse material', 'Waste not regulated as "hazardous" may contain toxic metals such as mercury and lead, etc.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Sediment, sludge, reuse material', [Definition] = 'Waste not regulated as "hazardous" may contain toxic metals such as mercury and lead, etc.', [SortOrder] = 22.00 WHERE [Code] = '13672' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13673') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13673', 'Sulfur dioxide', 'Sulfur dioxide (SO2) is one of a group of highly reactive gasses known as "oxides of sulfur." The largest sources of SO2 emissions are from fossil fuel combustion at power plants and other industrial facilities. Smaller sources of SO2 emissions include industrial processes such as extracting metal from ore, and the burning of high sulfur containing fuels by locomotives, large ships and non-road equipment. SO2 is linked with a number of adverse effects on the respiratory system.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Sulfur dioxide', [Definition] = 'Sulfur dioxide (SO2) is one of a group of highly reactive gasses known as "oxides of sulfur." The largest sources of SO2 emissions are from fossil fuel combustion at power plants and other industrial facilities. Smaller sources of SO2 emissions include industrial processes such as extracting metal from ore, and the burning of high sulfur containing fuels by locomotives, large ships and non-road equipment. SO2 is linked with a number of adverse effects on the respiratory system.', [SortOrder] = 23.00 WHERE [Code] = '13673' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '02901') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02901', 'Underground storage tanks (USTs)', 'Underground storage tanks (USTs) is specified as the type of hazardous materials or conditions tested for at a site or building.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Underground storage tanks (USTs)', [Definition] = 'Underground storage tanks (USTs) is specified as the type of hazardous materials or conditions tested for at a site or building.', [SortOrder] = 24.00 WHERE [Code] = '02901' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13674') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13674', 'Vapor intrusion', 'Vapor intrusion is defined as vapor phase migration of volatile organic and/or inorganic compounds into occupied buildings from underlying contaminated ground water and/or soil.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Vapor intrusion', [Definition] = 'Vapor intrusion is defined as vapor phase migration of volatile organic and/or inorganic compounds into occupied buildings from underlying contaminated ground water and/or soil.', [SortOrder] = 25.00 WHERE [Code] = '13674' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '13675') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13675', 'Volatile organic compounds', 'Volatile organic compounds (VOCs) are emitted as gases from certain solids or liquids. VOCs include a variety of chemicals, some of which may have short- and long-term adverse health effects. Concentrations of many VOCs are consistently higher indoors (up to ten times higher) than outdoors. VOCs are emitted by a wide array of products numbering in the thousands. Examples include: paints and lacquers, paint strippers, cleaning supplies, pesticides, building materials and furnishings, office equipment such as copiers and printers, correction fluids and carbonless copy paper, graphics and craft materials including glues and adhesives, permanent markers and photographic solutions VOCs can cause eye, nose and throat irritation, headaches, loss of coordination, nausea, damage to liver, kidney and central nervous system.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Volatile organic compounds', [Definition] = 'Volatile organic compounds (VOCs) are emitted as gases from certain solids or liquids. VOCs include a variety of chemicals, some of which may have short- and long-term adverse health effects. Concentrations of many VOCs are consistently higher indoors (up to ten times higher) than outdoors. VOCs are emitted by a wide array of products numbering in the thousands. Examples include: paints and lacquers, paint strippers, cleaning supplies, pesticides, building materials and furnishings, office equipment such as copiers and printers, correction fluids and carbonless copy paper, graphics and craft materials including glues and adhesives, permanent markers and photographic solutions VOCs can cause eye, nose and throat irritation, headaches, loss of coordination, nausea, damage to liver, kidney and central nervous system.', [SortOrder] = 26.00 WHERE [Code] = '13675' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityHazardousMaterialsOrCondType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefFacilityHazardousMaterialsOrCondType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of hazardous materials or conditions tested for at a site or building.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityHazardousMaterialsOrCondType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of hazardous materials or conditions tested for at a site or building.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefFacilityJointDevelopmentType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityJointDevelopmentType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityJointDevelopmentType] WHERE [Code] = '13690') BEGIN INSERT INTO dbo.[RefFacilityJointDevelopmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13690', 'Dedicated', 'When a school space is exclusively available to the outside entity during the school day and after school. For example, an after-school office or storage area.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityJointDevelopmentType] -SET [Description] = 'Dedicated', [Definition] = 'When a school space is exclusively available to the outside entity during the school day and after school. For example, an after-school office or storage area.', [SortOrder] = 1.00 WHERE [Code] = '13690' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityJointDevelopmentType] WHERE [Code] = '13689') BEGIN INSERT INTO dbo.[RefFacilityJointDevelopmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13689', 'Shared', 'When the space is used by the school during school hours and by a non-school user after school hours. For example, a classroom for instruction during the school day and for after school program activities after school.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityJointDevelopmentType] -SET [Description] = 'Shared', [Definition] = 'When the space is used by the school during school hours and by a non-school user after school hours. For example, a classroom for instruction during the school day and for after school program activities after school.', [SortOrder] = 2.00 WHERE [Code] = '13689' END -END - -PRINT N'Populate RefFacilityLeaseAmountCategory table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityLeaseAmountCategory]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityLeaseAmountCategory] WHERE [Code] = '13720') BEGIN INSERT INTO dbo.[RefFacilityLeaseAmountCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13720', 'Base rent', 'Base rent is specified as the category of payment that a school must pay to rent the facility that it is in.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityLeaseAmountCategory] -SET [Description] = 'Base rent', [Definition] = 'Base rent is specified as the category of payment that a school must pay to rent the facility that it is in.', [SortOrder] = 1.00 WHERE [Code] = '13720' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityLeaseAmountCategory] WHERE [Code] = '13721') BEGIN INSERT INTO dbo.[RefFacilityLeaseAmountCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13721', 'Credit', 'Credit is specified as the category of payment that a school must pay to rent the facility that it is in.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityLeaseAmountCategory] -SET [Description] = 'Credit', [Definition] = 'Credit is specified as the category of payment that a school must pay to rent the facility that it is in.', [SortOrder] = 2.00 WHERE [Code] = '13721' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityLeaseAmountCategory] WHERE [Code] = '13722') BEGIN INSERT INTO dbo.[RefFacilityLeaseAmountCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13722', 'Escalator', 'Escalator is specified as the category of payment that a school must pay to rent the facility that it is in.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityLeaseAmountCategory] -SET [Description] = 'Escalator', [Definition] = 'Escalator is specified as the category of payment that a school must pay to rent the facility that it is in.', [SortOrder] = 3.00 WHERE [Code] = '13722' END -END - -PRINT N'Populate RefFacilityLeaseType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityLeaseType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityLeaseType] WHERE [Code] = '13723') BEGIN INSERT INTO dbo.[RefFacilityLeaseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13723', 'Building lease', 'Building lease is specified as the type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityLeaseType] -SET [Description] = 'Building lease', [Definition] = 'Building lease is specified as the type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', [SortOrder] = 1.00 WHERE [Code] = '13723' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityLeaseType] WHERE [Code] = '13724') BEGIN INSERT INTO dbo.[RefFacilityLeaseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13724', 'Ground lease', 'Ground lease is specified as the type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityLeaseType] -SET [Description] = 'Ground lease', [Definition] = 'Ground lease is specified as the type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', [SortOrder] = 2.00 WHERE [Code] = '13724' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityLeaseType] WHERE [Code] = '13725') BEGIN INSERT INTO dbo.[RefFacilityLeaseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13725', 'Lease build to suit', 'Lease build to suit is specified as the type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityLeaseType] -SET [Description] = 'Lease build to suit', [Definition] = 'Lease build to suit is specified as the type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', [SortOrder] = 3.00 WHERE [Code] = '13725' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityLeaseType] WHERE [Code] = '13726') BEGIN INSERT INTO dbo.[RefFacilityLeaseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13726', 'Lease shell with significant leasehold improvements', 'Lease shell with significant leasehold improvements is specified as the type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityLeaseType] -SET [Description] = 'Lease shell with significant leasehold improvements', [Definition] = 'Lease shell with significant leasehold improvements is specified as the type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', [SortOrder] = 4.00 WHERE [Code] = '13726' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityLeaseType] WHERE [Code] = '13727') BEGIN INSERT INTO dbo.[RefFacilityLeaseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13727', 'Triple-net lease', 'Triple-net lease is specified as the type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityLeaseType] -SET [Description] = 'Triple-net lease', [Definition] = 'Triple-net lease is specified as the type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', [SortOrder] = 5.00 WHERE [Code] = '13727' END -END - -PRINT N'Populate RefFacilityMaintStandardType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityMaintStandardType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMaintStandardType] WHERE [Code] = '02989') BEGIN INSERT INTO dbo.[RefFacilityMaintStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02989', 'Emergency maintenance repair', 'A plan that addresses the maintenance in which a critical system, component, equipment, or furnishing breaks down and must be repaired to secure the safety of students, staff, or visitors and/or for operation of the program or service to continue. Unexpected events beyond normal wear and tear may mandate overtime, as situations may have to be dealt with immediately.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMaintStandardType] -SET [Description] = 'Emergency maintenance repair', [Definition] = 'A plan that addresses the maintenance in which a critical system, component, equipment, or furnishing breaks down and must be repaired to secure the safety of students, staff, or visitors and/or for operation of the program or service to continue. Unexpected events beyond normal wear and tear may mandate overtime, as situations may have to be dealt with immediately.', [SortOrder] = 1.00 WHERE [Code] = '02989' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMaintStandardType] WHERE [Code] = '02839') BEGIN INSERT INTO dbo.[RefFacilityMaintStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02839', 'Predictive', 'The process of monitoring selected performance data for a system, component, or equipment against a baseline reference to identify and predict impending failures for just-in-time maintenance attention. A system of maintenance in which computers and software are used to forecast the failure of a piece of equipment based on its age, user demand, and various performance measures.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMaintStandardType] -SET [Description] = 'Predictive', [Definition] = 'The process of monitoring selected performance data for a system, component, or equipment against a baseline reference to identify and predict impending failures for just-in-time maintenance attention. A system of maintenance in which computers and software are used to forecast the failure of a piece of equipment based on its age, user demand, and various performance measures.', [SortOrder] = 2.00 WHERE [Code] = '02839' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMaintStandardType] WHERE [Code] = '02838') BEGIN INSERT INTO dbo.[RefFacilityMaintStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02838', 'Preventive', 'The process of performing scheduled equipment inspection, testing, and repair services. Activities are performed on a scheduled basis annually, or more frequently, to identify additional maintenance or required systems testing.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMaintStandardType] -SET [Description] = 'Preventive', [Definition] = 'The process of performing scheduled equipment inspection, testing, and repair services. Activities are performed on a scheduled basis annually, or more frequently, to identify additional maintenance or required systems testing.', [SortOrder] = 3.00 WHERE [Code] = '02838' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMaintStandardType] WHERE [Code] = '02837') BEGIN INSERT INTO dbo.[RefFacilityMaintStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02837', 'Routine', 'A work-order based approach to maintenance that addresses lists of broken items, deteriorated finishes or equipment/parts nearing the end of their life cycle, maintenance required as a result of normal wear and tear, equipment/parts that should be fixed or replaced during a regular work day eliminating the need for overtime pay.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMaintStandardType] -SET [Description] = 'Routine', [Definition] = 'A work-order based approach to maintenance that addresses lists of broken items, deteriorated finishes or equipment/parts nearing the end of their life cycle, maintenance required as a result of normal wear and tear, equipment/parts that should be fixed or replaced during a regular work day eliminating the need for overtime pay.', [SortOrder] = 4.00 WHERE [Code] = '02837' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMaintStandardType] WHERE [Code] = '02836') BEGIN INSERT INTO dbo.[RefFacilityMaintStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02836', 'Run to fail', 'An approach to maintenance in which management allows equipment and parts to run until they break down or wear out beyond repair.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMaintStandardType] -SET [Description] = 'Run to fail', [Definition] = 'An approach to maintenance in which management allows equipment and parts to run until they break down or wear out beyond repair.', [SortOrder] = 5.00 WHERE [Code] = '02836' END -END - -PRINT N'Populate RefFacilityMortgageInterestType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityMortgageInterestType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMortgageInterestType] WHERE [Code] = '13730') BEGIN INSERT INTO dbo.[RefFacilityMortgageInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13730', 'Add-on interest', 'Interest added to the amount of the loan on the front end, or beginning of the loan repayment period. The balance (of principal and interest) is then paid by installments. This form of interest is much more expensive than simple interest paid on the entire amount for the entire term of the loan.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMortgageInterestType] -SET [Description] = 'Add-on interest', [Definition] = 'Interest added to the amount of the loan on the front end, or beginning of the loan repayment period. The balance (of principal and interest) is then paid by installments. This form of interest is much more expensive than simple interest paid on the entire amount for the entire term of the loan.', [SortOrder] = 1.00 WHERE [Code] = '13730' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMortgageInterestType] WHERE [Code] = '13731') BEGIN INSERT INTO dbo.[RefFacilityMortgageInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13731', 'Adjustable-Rate Mortgage (ARM)', 'A mortgage in which interest and payment rates vary periodically, based on a specific index, such as 30-year Treasury bills or the Cost-of-Funds index.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMortgageInterestType] -SET [Description] = 'Adjustable-Rate Mortgage (ARM)', [Definition] = 'A mortgage in which interest and payment rates vary periodically, based on a specific index, such as 30-year Treasury bills or the Cost-of-Funds index.', [SortOrder] = 2.00 WHERE [Code] = '13731' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMortgageInterestType] WHERE [Code] = '13732') BEGIN INSERT INTO dbo.[RefFacilityMortgageInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13732', 'Balloon Mortgage', 'A short-term mortgage, generally at a fixed rate of interest, to be paid back in pre-determined, equal monthly payments, with a large, final payment for the balance of the loan paid at the end of the term.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMortgageInterestType] -SET [Description] = 'Balloon Mortgage', [Definition] = 'A short-term mortgage, generally at a fixed rate of interest, to be paid back in pre-determined, equal monthly payments, with a large, final payment for the balance of the loan paid at the end of the term.', [SortOrder] = 3.00 WHERE [Code] = '13732' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMortgageInterestType] WHERE [Code] = '13733') BEGIN INSERT INTO dbo.[RefFacilityMortgageInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13733', 'Deferred Interest', 'Interest due but unpaid. Mortgages that permit negative amortization (such as a graduated-payment mortgage or a floating rate loan without a rate cap) will allow deferred interest.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMortgageInterestType] -SET [Description] = 'Deferred Interest', [Definition] = 'Interest due but unpaid. Mortgages that permit negative amortization (such as a graduated-payment mortgage or a floating rate loan without a rate cap) will allow deferred interest.', [SortOrder] = 4.00 WHERE [Code] = '13733' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMortgageInterestType] WHERE [Code] = '13734') BEGIN INSERT INTO dbo.[RefFacilityMortgageInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13734', 'Fixed Payment Mortgage', 'Periodic payments of principal and interest on a mortgage which remain constant over the loan term.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMortgageInterestType] -SET [Description] = 'Fixed Payment Mortgage', [Definition] = 'Periodic payments of principal and interest on a mortgage which remain constant over the loan term.', [SortOrder] = 5.00 WHERE [Code] = '13734' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMortgageInterestType] WHERE [Code] = '13735') BEGIN INSERT INTO dbo.[RefFacilityMortgageInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13735', 'Fixed-rate Mortgage', 'A mortgage in which the interest rate does not change during the entire term of the loan.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMortgageInterestType] -SET [Description] = 'Fixed-rate Mortgage', [Definition] = 'A mortgage in which the interest rate does not change during the entire term of the loan.', [SortOrder] = 6.00 WHERE [Code] = '13735' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMortgageInterestType] WHERE [Code] = '13736') BEGIN INSERT INTO dbo.[RefFacilityMortgageInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13736', 'Floating Rate', 'An interest rate on a loan which changes during the life of the loan, often monthly, but can change quarterly or annually. These variable rates are based on an index rate and can be used for mortgages and other loans such as lines of credit.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMortgageInterestType] -SET [Description] = 'Floating Rate', [Definition] = 'An interest rate on a loan which changes during the life of the loan, often monthly, but can change quarterly or annually. These variable rates are based on an index rate and can be used for mortgages and other loans such as lines of credit.', [SortOrder] = 7.00 WHERE [Code] = '13736' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMortgageInterestType] WHERE [Code] = '13737') BEGIN INSERT INTO dbo.[RefFacilityMortgageInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13737', 'Fully Amortizing Mortgage', 'A method of loan amortization in which equal periodic payments completely repay the loan during the loan term.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMortgageInterestType] -SET [Description] = 'Fully Amortizing Mortgage', [Definition] = 'A method of loan amortization in which equal periodic payments completely repay the loan during the loan term.', [SortOrder] = 8.00 WHERE [Code] = '13737' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMortgageInterestType] WHERE [Code] = '13738') BEGIN INSERT INTO dbo.[RefFacilityMortgageInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13738', 'Graduated-payment Mortgage (GPM)', 'A type of stepped-payment loan in which the borrower''s payments are initially lower than those on a comparable level-rate mortgage. The payments gradually increase over a predetermined period, and then cap at a final level for the duration of the mortgage.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMortgageInterestType] -SET [Description] = 'Graduated-payment Mortgage (GPM)', [Definition] = 'A type of stepped-payment loan in which the borrower''s payments are initially lower than those on a comparable level-rate mortgage. The payments gradually increase over a predetermined period, and then cap at a final level for the duration of the mortgage.', [SortOrder] = 9.00 WHERE [Code] = '13738' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMortgageInterestType] WHERE [Code] = '13739') BEGIN INSERT INTO dbo.[RefFacilityMortgageInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13739', 'Interest-only loan', 'A method of loan amortization in which interest is paid periodically over the term of the loan and the entire loan amount (principal) is paid at maturity.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMortgageInterestType] -SET [Description] = 'Interest-only loan', [Definition] = 'A method of loan amortization in which interest is paid periodically over the term of the loan and the entire loan amount (principal) is paid at maturity.', [SortOrder] = 10.00 WHERE [Code] = '13739' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMortgageInterestType] WHERE [Code] = '13740') BEGIN INSERT INTO dbo.[RefFacilityMortgageInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13740', 'Open-end Mortgage', 'A mortgage agreement that allows the mortgagor to borrow additional funds from the mortgage lender in the future, normally with a borrowing limit. This limit may be based on loan-to-value or may simply be the original loan amount.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMortgageInterestType] -SET [Description] = 'Open-end Mortgage', [Definition] = 'A mortgage agreement that allows the mortgagor to borrow additional funds from the mortgage lender in the future, normally with a borrowing limit. This limit may be based on loan-to-value or may simply be the original loan amount.', [SortOrder] = 11.00 WHERE [Code] = '13740' END -END - -PRINT N'Populate RefFacilityMortgageType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityMortgageType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMortgageType] WHERE [Code] = '13741') BEGIN INSERT INTO dbo.[RefFacilityMortgageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13741', 'Junior Mortgage', 'Any mortgage on a property that is subordinate to a senior mortgage in priority. Also called subordinated mortgage.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMortgageType] -SET [Description] = 'Junior Mortgage', [Definition] = 'Any mortgage on a property that is subordinate to a senior mortgage in priority. Also called subordinated mortgage.', [SortOrder] = 1.00 WHERE [Code] = '13741' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMortgageType] WHERE [Code] = '13742') BEGIN INSERT INTO dbo.[RefFacilityMortgageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13742', 'Multiple', 'A property may have multiple mortgages on it. Second mortgages are subordinate, meaning that in the event of default, the primary, or first mortgage would get paid off first, and then any funds remaining would be used to pay off any second mortgages.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMortgageType] -SET [Description] = 'Multiple', [Definition] = 'A property may have multiple mortgages on it. Second mortgages are subordinate, meaning that in the event of default, the primary, or first mortgage would get paid off first, and then any funds remaining would be used to pay off any second mortgages.', [SortOrder] = 2.00 WHERE [Code] = '13742' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityMortgageType] WHERE [Code] = '13743') BEGIN INSERT INTO dbo.[RefFacilityMortgageType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13743', 'Senior or first mortgage', 'The mortgage that has first claim in the event of a default. The first or senior mortgage typically has to be satisfied before the second or junior mortgage can enforce any claims against the property.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityMortgageType] -SET [Description] = 'Senior or first mortgage', [Definition] = 'The mortgage that has first claim in the event of a default. The first or senior mortgage typically has to be satisfied before the second or junior mortgage can enforce any claims against the property.', [SortOrder] = 3.00 WHERE [Code] = '13743' END -END - -PRINT N'Populate RefFacilityNaturallyOccurringHazardType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityNaturallyOccurringHazardType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityNaturallyOccurringHazardType] WHERE [Code] = '13678') BEGIN INSERT INTO dbo.[RefFacilityNaturallyOccurringHazardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13678', 'Arsenic', 'Arsenic is a semi-metal element in the periodic table. It is odorless and tasteless. It enters drinking water supplies from natural deposits in the earth or from agricultural and industrial practices. Non-cancer effects can include thickening and discoloration of the skin, stomach pain, nausea, vomiting; diarrhea; numbness in hands and feet; partial paralysis; and blindness. Arsenic has been linked to cancer of the bladder, lungs, skin, kidney, nasal passages, liver, and prostate.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityNaturallyOccurringHazardType] -SET [Description] = 'Arsenic', [Definition] = 'Arsenic is a semi-metal element in the periodic table. It is odorless and tasteless. It enters drinking water supplies from natural deposits in the earth or from agricultural and industrial practices. Non-cancer effects can include thickening and discoloration of the skin, stomach pain, nausea, vomiting; diarrhea; numbness in hands and feet; partial paralysis; and blindness. Arsenic has been linked to cancer of the bladder, lungs, skin, kidney, nasal passages, liver, and prostate.', [SortOrder] = 1.00 WHERE [Code] = '13678' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityNaturallyOccurringHazardType] WHERE [Code] = '13679') BEGIN INSERT INTO dbo.[RefFacilityNaturallyOccurringHazardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13679', 'Earthquake prone area', 'Building in an earthquake prone area is a structural hazard.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityNaturallyOccurringHazardType] -SET [Description] = 'Earthquake prone area', [Definition] = 'Building in an earthquake prone area is a structural hazard.', [SortOrder] = 2.00 WHERE [Code] = '13679' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityNaturallyOccurringHazardType] WHERE [Code] = '13680') BEGIN INSERT INTO dbo.[RefFacilityNaturallyOccurringHazardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13680', 'Floodplain', 'Building in a floodplain is a structural hazard.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityNaturallyOccurringHazardType] -SET [Description] = 'Floodplain', [Definition] = 'Building in a floodplain is a structural hazard.', [SortOrder] = 3.00 WHERE [Code] = '13680' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityNaturallyOccurringHazardType] WHERE [Code] = '13681') BEGIN INSERT INTO dbo.[RefFacilityNaturallyOccurringHazardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13681', 'Liquefaction, landslide areas', 'Building in a landslide area is a structural hazard.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityNaturallyOccurringHazardType] -SET [Description] = 'Liquefaction, landslide areas', [Definition] = 'Building in a landslide area is a structural hazard.', [SortOrder] = 4.00 WHERE [Code] = '13681' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityNaturallyOccurringHazardType] WHERE [Code] = '13682') BEGIN INSERT INTO dbo.[RefFacilityNaturallyOccurringHazardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13682', 'Naturally Occurring Asbestos (NOA)', 'Naturally occurring asbestos (NOA) includes fibrous minerals found in certain types of rock formations. NOA can take the form of long, thin, separable fibers. Natural weathering or human disturbance can break NOA down to microscopic fibers, easily suspended in air. There is no health threat if NOA remains undisturbed and does not become airborne.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityNaturallyOccurringHazardType] -SET [Description] = 'Naturally Occurring Asbestos (NOA)', [Definition] = 'Naturally occurring asbestos (NOA) includes fibrous minerals found in certain types of rock formations. NOA can take the form of long, thin, separable fibers. Natural weathering or human disturbance can break NOA down to microscopic fibers, easily suspended in air. There is no health threat if NOA remains undisturbed and does not become airborne.', [SortOrder] = 5.00 WHERE [Code] = '13682' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityNaturallyOccurringHazardType] WHERE [Code] = '13683') BEGIN INSERT INTO dbo.[RefFacilityNaturallyOccurringHazardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13683', 'Sinkholes, Karst terrain', 'Building in a sinkhole is a structural hazard.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityNaturallyOccurringHazardType] -SET [Description] = 'Sinkholes, Karst terrain', [Definition] = 'Building in a sinkhole is a structural hazard.', [SortOrder] = 6.00 WHERE [Code] = '13683' END -END - -PRINT N'Populate RefFacilityOperationsMgmtType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityOperationsMgmtType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityOperationsMgmtType] WHERE [Code] = '02821') BEGIN INSERT INTO dbo.[RefFacilityOperationsMgmtType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02821', 'District and private sector management', 'The school district supervises and employs district staff for cleaning, maintenance, and repair, but also contracts with a private sector company for support in the cleaning, maintenance, and repair of its schools and other facilities.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityOperationsMgmtType] -SET [Description] = 'District and private sector management', [Definition] = 'The school district supervises and employs district staff for cleaning, maintenance, and repair, but also contracts with a private sector company for support in the cleaning, maintenance, and repair of its schools and other facilities.', [SortOrder] = 1.00 WHERE [Code] = '02821' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityOperationsMgmtType] WHERE [Code] = '02822') BEGIN INSERT INTO dbo.[RefFacilityOperationsMgmtType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02822', 'Nonschool public sector management', 'School district building cleaning, maintenance, and repair are the responsibility of a nonschool governmental agency or public authority.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityOperationsMgmtType] -SET [Description] = 'Nonschool public sector management', [Definition] = 'School district building cleaning, maintenance, and repair are the responsibility of a nonschool governmental agency or public authority.', [SortOrder] = 2.00 WHERE [Code] = '02822' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityOperationsMgmtType] WHERE [Code] = '02820') BEGIN INSERT INTO dbo.[RefFacilityOperationsMgmtType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02820', 'Private sector management', 'The school district contracts with a private sector company for the supervision and staffing for school-based cleaning, maintenance, and repair.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityOperationsMgmtType] -SET [Description] = 'Private sector management', [Definition] = 'The school district contracts with a private sector company for the supervision and staffing for school-based cleaning, maintenance, and repair.', [SortOrder] = 3.00 WHERE [Code] = '02820' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityOperationsMgmtType] WHERE [Code] = '02819') BEGIN INSERT INTO dbo.[RefFacilityOperationsMgmtType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02819', 'School district management', 'The school district supervises and employs district staff in the schools and the central office for cleaning, maintenance, and repair.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityOperationsMgmtType] -SET [Description] = 'School district management', [Definition] = 'The school district supervises and employs district staff in the schools and the central office for cleaning, maintenance, and repair.', [SortOrder] = 4.00 WHERE [Code] = '02819' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityOperationsMgmtType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefFacilityOperationsMgmtType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of management arrangements whereby a district oversees and manages its facilities operations.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityOperationsMgmtType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of management arrangements whereby a district oversees and manages its facilities operations.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefFacilitySiteImprovementLocationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilitySiteImprovementLocationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '02434') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02434', 'Athletic field - Natural', 'Athletic field, natural, is specified as the type of location of the designed and constructed improvements made to a site.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Athletic field - Natural', [Definition] = 'Athletic field, natural, is specified as the type of location of the designed and constructed improvements made to a site.', [SortOrder] = 1.00 WHERE [Code] = '02434' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '02438') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02438', 'Drop-off/driveway', 'Drop-off/driveway is specified as the type of location of the designed and constructed improvements made to a site.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Drop-off/driveway', [Definition] = 'Drop-off/driveway is specified as the type of location of the designed and constructed improvements made to a site.', [SortOrder] = 2.00 WHERE [Code] = '02438' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '02526') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02526', 'Fencing enclosures', 'Fencing enclosures is specified as the type of location of the designed and constructed improvements made to a site.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Fencing enclosures', [Definition] = 'Fencing enclosures is specified as the type of location of the designed and constructed improvements made to a site.', [SortOrder] = 3.00 WHERE [Code] = '02526' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '02437') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02437', 'Hardscape game area', 'Hardscape game area is specified as the type of location of the designed and constructed improvements made to a site.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Hardscape game area', [Definition] = 'Hardscape game area is specified as the type of location of the designed and constructed improvements made to a site.', [SortOrder] = 4.00 WHERE [Code] = '02437' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '02436') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02436', 'Hardscape play area', 'Hardscape play area is specified as the type of location of the designed and constructed improvements made to a site.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Hardscape play area', [Definition] = 'Hardscape play area is specified as the type of location of the designed and constructed improvements made to a site.', [SortOrder] = 5.00 WHERE [Code] = '02436' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '02443') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02443', 'Landscaping', 'Landscaping is specified as the type of location of the designed and constructed improvements made to a site.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Landscaping', [Definition] = 'Landscaping is specified as the type of location of the designed and constructed improvements made to a site.', [SortOrder] = 6.00 WHERE [Code] = '02443' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '02435') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02435', 'Outdoor classroom', 'Outdoor classroom is specified as the type of location of the designed and constructed improvements made to a site.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Outdoor classroom', [Definition] = 'Outdoor classroom is specified as the type of location of the designed and constructed improvements made to a site.', [SortOrder] = 7.00 WHERE [Code] = '02435' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '02524') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02524', 'Parking area', 'Parking area is specified as the type of location of the designed and constructed improvements made to a site.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Parking area', [Definition] = 'Parking area is specified as the type of location of the designed and constructed improvements made to a site.', [SortOrder] = 8.00 WHERE [Code] = '02524' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '02433') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02433', 'Playground', 'A piece of land used for and usually equipped with facilities for recreation especially by children.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Playground', [Definition] = 'A piece of land used for and usually equipped with facilities for recreation especially by children.', [SortOrder] = 9.00 WHERE [Code] = '02433' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '02440') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02440', 'Retaining walls', 'Retaining walls is specified as the type of location of the designed and constructed improvements made to a site.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Retaining walls', [Definition] = 'Retaining walls is specified as the type of location of the designed and constructed improvements made to a site.', [SortOrder] = 10.00 WHERE [Code] = '02440' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '02439') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02439', 'Septic fields', 'Septic fields is specified as the type of location of the designed and constructed improvements made to a site.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Septic fields', [Definition] = 'Septic fields is specified as the type of location of the designed and constructed improvements made to a site.', [SortOrder] = 11.00 WHERE [Code] = '02439' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '02441') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02441', 'Sidewalks', 'Sidewalks is specified as the type of location of the designed and constructed improvements made to a site.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Sidewalks', [Definition] = 'Sidewalks is specified as the type of location of the designed and constructed improvements made to a site.', [SortOrder] = 12.00 WHERE [Code] = '02441' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '02442') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02442', 'Stairs and ramps', 'Stairs and ramps is specified as the type of location of the designed and constructed improvements made to a site.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Stairs and ramps', [Definition] = 'Stairs and ramps is specified as the type of location of the designed and constructed improvements made to a site.', [SortOrder] = 13.00 WHERE [Code] = '02442' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '02444') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02444', 'Water filtration system', 'Water filtration system is specified as the type of location of the designed and constructed improvements made to a site.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Water filtration system', [Definition] = 'Water filtration system is specified as the type of location of the designed and constructed improvements made to a site.', [SortOrder] = 14.00 WHERE [Code] = '02444' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteImprovementLocationType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefFacilitySiteImprovementLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of location of the designed and constructed improvements made to a site.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteImprovementLocationType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of location of the designed and constructed improvements made to a site.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefFacilitySiteOutdoorAreaType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilitySiteOutdoorAreaType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '13566') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13566', 'Athletic field - Artificial', 'Athletic field, artificial, is specified as the designated constructed outdoor area on a public school site.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Athletic field - Artificial', [Definition] = 'Athletic field, artificial, is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 1.00 WHERE [Code] = '13566' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '02434') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02434', 'Athletic field - Natural', 'Athletic field, natural, is specified as the designated constructed outdoor area on a public school site.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Athletic field - Natural', [Definition] = 'Athletic field, natural, is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 2.00 WHERE [Code] = '02434' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '02438') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02438', 'Drop-off/driveway', 'Drop-off/driveway is specified as the designated constructed outdoor area on a public school site.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Drop-off/driveway', [Definition] = 'Drop-off/driveway is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 3.00 WHERE [Code] = '02438' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '02526') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02526', 'Fencing enclosures', 'Fencing enclosures is specified as the designated constructed outdoor area on a public school site.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Fencing enclosures', [Definition] = 'Fencing enclosures is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 4.00 WHERE [Code] = '02526' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '02437') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02437', 'Hardscape game area', 'Hardscape game area is specified as the designated constructed outdoor area on a public school site.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Hardscape game area', [Definition] = 'Hardscape game area is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 5.00 WHERE [Code] = '02437' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '02436') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02436', 'Hardscape play area', 'Hardscape play area is specified as the designated constructed outdoor area on a public school site.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Hardscape play area', [Definition] = 'Hardscape play area is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 6.00 WHERE [Code] = '02436' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '02443') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02443', 'Landscaping', 'Landscaping is specified as the designated constructed outdoor area on a public school site.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Landscaping', [Definition] = 'Landscaping is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 7.00 WHERE [Code] = '02443' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '02524') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02524', 'Parking area', 'Parking area is specified as the designated constructed outdoor area on a public school site.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Parking area', [Definition] = 'Parking area is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 8.00 WHERE [Code] = '02524' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '02433') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02433', 'Playground', 'A piece of land used for and usually equipped with facilities for recreation especially by children.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Playground', [Definition] = 'A piece of land used for and usually equipped with facilities for recreation especially by children.', [SortOrder] = 9.00 WHERE [Code] = '02433' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '02440') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02440', 'Retaining walls', 'Retaining walls is specified as the designated constructed outdoor area on a public school site.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Retaining walls', [Definition] = 'Retaining walls is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 10.00 WHERE [Code] = '02440' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '13567') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13567', 'Semi-permeable game area', 'Semi-permeable game area is specified as the designated constructed outdoor area on a public school site.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Semi-permeable game area', [Definition] = 'Semi-permeable game area is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 11.00 WHERE [Code] = '13567' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '02439') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02439', 'Septic fields', 'Septic fields is specified as the designated constructed outdoor area on a public school site.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Septic fields', [Definition] = 'Septic fields is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 12.00 WHERE [Code] = '02439' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '02441') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02441', 'Sidewalks', 'Sidewalks is specified as the designated constructed outdoor area on a public school site.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Sidewalks', [Definition] = 'Sidewalks is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 13.00 WHERE [Code] = '02441' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '13568') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13568', 'Softscape game area', 'Softscape game area is specified as the designated constructed outdoor area on a public school site.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Softscape game area', [Definition] = 'Softscape game area is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 14.00 WHERE [Code] = '13568' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '13569') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13569', 'Softscape play area', 'Softscape play area is specified as the designated constructed outdoor area on a public school site.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Softscape play area', [Definition] = 'Softscape play area is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 15.00 WHERE [Code] = '13569' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '02442') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02442', 'Stairs and ramps', 'Stairs and ramps is specified as the designated constructed outdoor area on a public school site.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Stairs and ramps', [Definition] = 'Stairs and ramps is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 16.00 WHERE [Code] = '02442' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySiteOutdoorAreaType] WHERE [Code] = '02444') BEGIN INSERT INTO dbo.[RefFacilitySiteOutdoorAreaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02444', 'Water filtration system', 'Water filtration system is specified as the designated constructed outdoor area on a public school site.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySiteOutdoorAreaType] -SET [Description] = 'Water filtration system', [Definition] = 'Water filtration system is specified as the designated constructed outdoor area on a public school site.', [SortOrder] = 17.00 WHERE [Code] = '02444' END -END - -PRINT N'Populate RefFacilityStandardType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityStandardType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStandardType] WHERE [Code] = '02622') BEGIN INSERT INTO dbo.[RefFacilityStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02622', 'Design guidelines', 'The guidelines that establish site, building and room sizes, quality and type of finishes, systems, components, furnishings and fixtures of a facility.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStandardType] -SET [Description] = 'Design guidelines', [Definition] = 'The guidelines that establish site, building and room sizes, quality and type of finishes, systems, components, furnishings and fixtures of a facility.', [SortOrder] = 1.00 WHERE [Code] = '02622' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStandardType] WHERE [Code] = '02626') BEGIN INSERT INTO dbo.[RefFacilityStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02626', 'Energy performance standards', 'The metrics for the levels of water, electricity, gas, oil, or coal consumption that a district seeks to meet on a district wide or facility specific basis.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStandardType] -SET [Description] = 'Energy performance standards', [Definition] = 'The metrics for the levels of water, electricity, gas, oil, or coal consumption that a district seeks to meet on a district wide or facility specific basis.', [SortOrder] = 2.00 WHERE [Code] = '02626' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStandardType] WHERE [Code] = '13628') BEGIN INSERT INTO dbo.[RefFacilityStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13628', 'Environmental Standards', 'A policy guideline that regulates the effect of human activity upon the environment. Standards may specify a desired state (e.g. daylighting should provide 75% of lighting needed for classrooms)or limit alterations (e.g. new school sites should be no more than 4 acres for an elementary school).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStandardType] -SET [Description] = 'Environmental Standards', [Definition] = 'A policy guideline that regulates the effect of human activity upon the environment. Standards may specify a desired state (e.g. daylighting should provide 75% of lighting needed for classrooms)or limit alterations (e.g. new school sites should be no more than 4 acres for an elementary school).', [SortOrder] = 3.00 WHERE [Code] = '13628' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStandardType] WHERE [Code] = '02625') BEGIN INSERT INTO dbo.[RefFacilityStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02625', 'Health and safety standards', 'A set of rules which require conditions, or the adoption or use of one or more practices, means, methods, operations, or processes, reasonably necessary or appropriate to provide for a safe and healthy school environment.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStandardType] -SET [Description] = 'Health and safety standards', [Definition] = 'A set of rules which require conditions, or the adoption or use of one or more practices, means, methods, operations, or processes, reasonably necessary or appropriate to provide for a safe and healthy school environment.', [SortOrder] = 4.00 WHERE [Code] = '02625' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStandardType] WHERE [Code] = '02624') BEGIN INSERT INTO dbo.[RefFacilityStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02624', 'Master construction specifications', 'A written or printed description of work to be done, forming part of the contract and describing qualities of material and mode of construction, and also giving dimensions and other information not shown in the drawings.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStandardType] -SET [Description] = 'Master construction specifications', [Definition] = 'A written or printed description of work to be done, forming part of the contract and describing qualities of material and mode of construction, and also giving dimensions and other information not shown in the drawings.', [SortOrder] = 5.00 WHERE [Code] = '02624' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStandardType] WHERE [Code] = '02627') BEGIN INSERT INTO dbo.[RefFacilityStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02627', 'Site selection guidelines', 'Guidelines to assist the school district identify school building sites that are environmentally, educationally, and community appropriate.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStandardType] -SET [Description] = 'Site selection guidelines', [Definition] = 'Guidelines to assist the school district identify school building sites that are environmentally, educationally, and community appropriate.', [SortOrder] = 6.00 WHERE [Code] = '02627' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStandardType] WHERE [Code] = '02623') BEGIN INSERT INTO dbo.[RefFacilityStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02623', 'Space standards', 'A set of rules that specify the minimum acceptable amount of space required per student in a school building.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStandardType] -SET [Description] = 'Space standards', [Definition] = 'A set of rules that specify the minimum acceptable amount of space required per student in a school building.', [SortOrder] = 7.00 WHERE [Code] = '02623' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStandardType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefFacilityStandardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as an indication of the district or state requirements or guidelines for the design and construction of school facilities.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStandardType] -SET [Description] = 'Other', [Definition] = 'Other is specified as an indication of the district or state requirements or guidelines for the design and construction of school facilities.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefFacilityStateOrLocalMandateInterestType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityStateOrLocalMandateInterestType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStateOrLocalMandateInterestType] WHERE [Code] = '02594') BEGIN INSERT INTO dbo.[RefFacilityStateOrLocalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02594', 'Acreage standards', 'Acreage standards is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStateOrLocalMandateInterestType] -SET [Description] = 'Acreage standards', [Definition] = 'Acreage standards is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', [SortOrder] = 1.00 WHERE [Code] = '02594' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStateOrLocalMandateInterestType] WHERE [Code] = '02589') BEGIN INSERT INTO dbo.[RefFacilityStateOrLocalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02589', 'Building code', 'Building code is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStateOrLocalMandateInterestType] -SET [Description] = 'Building code', [Definition] = 'Building code is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', [SortOrder] = 2.00 WHERE [Code] = '02589' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStateOrLocalMandateInterestType] WHERE [Code] = '02593') BEGIN INSERT INTO dbo.[RefFacilityStateOrLocalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02593', 'Design standards', 'Design standards is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStateOrLocalMandateInterestType] -SET [Description] = 'Design standards', [Definition] = 'Design standards is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', [SortOrder] = 3.00 WHERE [Code] = '02593' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStateOrLocalMandateInterestType] WHERE [Code] = '02598') BEGIN INSERT INTO dbo.[RefFacilityStateOrLocalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02598', 'Earthquake standards', 'Earthquake standards is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStateOrLocalMandateInterestType] -SET [Description] = 'Earthquake standards', [Definition] = 'Earthquake standards is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', [SortOrder] = 4.00 WHERE [Code] = '02598' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStateOrLocalMandateInterestType] WHERE [Code] = '02590') BEGIN INSERT INTO dbo.[RefFacilityStateOrLocalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02590', 'Fire code', 'Fire code is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStateOrLocalMandateInterestType] -SET [Description] = 'Fire code', [Definition] = 'Fire code is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', [SortOrder] = 5.00 WHERE [Code] = '02590' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStateOrLocalMandateInterestType] WHERE [Code] = '02592') BEGIN INSERT INTO dbo.[RefFacilityStateOrLocalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02592', 'Flood control', 'Flood control is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStateOrLocalMandateInterestType] -SET [Description] = 'Flood control', [Definition] = 'Flood control is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', [SortOrder] = 6.00 WHERE [Code] = '02592' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStateOrLocalMandateInterestType] WHERE [Code] = '03265') BEGIN INSERT INTO dbo.[RefFacilityStateOrLocalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03265', 'Food safety standards', 'Food safety standards is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStateOrLocalMandateInterestType] -SET [Description] = 'Food safety standards', [Definition] = 'Food safety standards is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', [SortOrder] = 7.00 WHERE [Code] = '03265' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStateOrLocalMandateInterestType] WHERE [Code] = '02591') BEGIN INSERT INTO dbo.[RefFacilityStateOrLocalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02591', 'Health code', 'Health code is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStateOrLocalMandateInterestType] -SET [Description] = 'Health code', [Definition] = 'Health code is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', [SortOrder] = 8.00 WHERE [Code] = '02591' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStateOrLocalMandateInterestType] WHERE [Code] = '02596') BEGIN INSERT INTO dbo.[RefFacilityStateOrLocalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02596', 'Historic preservation requirements', 'Historic preservation requirements is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStateOrLocalMandateInterestType] -SET [Description] = 'Historic preservation requirements', [Definition] = 'Historic preservation requirements is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', [SortOrder] = 9.00 WHERE [Code] = '02596' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStateOrLocalMandateInterestType] WHERE [Code] = '02597') BEGIN INSERT INTO dbo.[RefFacilityStateOrLocalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02597', 'Occupational health and safety code', 'Occupational health and safety code is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStateOrLocalMandateInterestType] -SET [Description] = 'Occupational health and safety code', [Definition] = 'Occupational health and safety code is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', [SortOrder] = 10.00 WHERE [Code] = '02597' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStateOrLocalMandateInterestType] WHERE [Code] = '02595') BEGIN INSERT INTO dbo.[RefFacilityStateOrLocalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02595', 'Standard educational specifications', 'Standard educational specifications is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStateOrLocalMandateInterestType] -SET [Description] = 'Standard educational specifications', [Definition] = 'Standard educational specifications is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', [SortOrder] = 11.00 WHERE [Code] = '02595' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityStateOrLocalMandateInterestType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefFacilityStateOrLocalMandateInterestType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityStateOrLocalMandateInterestType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefFacilitySystemOrComponentCondition table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilitySystemOrComponentCondition]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySystemOrComponentCondition] WHERE [Code] = '02563') BEGIN INSERT INTO dbo.[RefFacilitySystemOrComponentCondition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02563', 'Adequate system or component condition', 'Some preventive maintenance and/or corrective repair is required.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySystemOrComponentCondition] -SET [Description] = 'Adequate system or component condition', [Definition] = 'Some preventive maintenance and/or corrective repair is required.', [SortOrder] = 1.00 WHERE [Code] = '02563' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySystemOrComponentCondition] WHERE [Code] = '02567') BEGIN INSERT INTO dbo.[RefFacilitySystemOrComponentCondition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02567', 'Emergency system or component condition', 'A condition that will result in injury, loss of life, or major damage.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySystemOrComponentCondition] -SET [Description] = 'Emergency system or component condition', [Definition] = 'A condition that will result in injury, loss of life, or major damage.', [SortOrder] = 2.00 WHERE [Code] = '02567' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySystemOrComponentCondition] WHERE [Code] = '02561') BEGIN INSERT INTO dbo.[RefFacilitySystemOrComponentCondition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02561', 'Excellent System or Component Condition', 'New or easily restorable to `like new` condition; only minimal routine maintenance is required.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySystemOrComponentCondition] -SET [Description] = 'Excellent System or Component Condition', [Definition] = 'New or easily restorable to `like new` condition; only minimal routine maintenance is required.', [SortOrder] = 3.00 WHERE [Code] = '02561' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySystemOrComponentCondition] WHERE [Code] = '02564') BEGIN INSERT INTO dbo.[RefFacilitySystemOrComponentCondition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02564', 'Fair System or Component Condition', 'Sometimes fails to meet code or functional requirements; failure(s) are inconvenient to school operation.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySystemOrComponentCondition] -SET [Description] = 'Fair System or Component Condition', [Definition] = 'Sometimes fails to meet code or functional requirements; failure(s) are inconvenient to school operation.', [SortOrder] = 4.00 WHERE [Code] = '02564' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySystemOrComponentCondition] WHERE [Code] = '02562') BEGIN INSERT INTO dbo.[RefFacilitySystemOrComponentCondition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02562', 'Good System or Component Condition', 'Only routine maintenance or minor repair is required.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySystemOrComponentCondition] -SET [Description] = 'Good System or Component Condition', [Definition] = 'Only routine maintenance or minor repair is required.', [SortOrder] = 5.00 WHERE [Code] = '02562' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySystemOrComponentCondition] WHERE [Code] = '02983') BEGIN INSERT INTO dbo.[RefFacilitySystemOrComponentCondition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02983', 'Nonoperable system or component condition', 'The system or component exists in a significantly substandard level and cannot be used or operated. Replacement is required.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySystemOrComponentCondition] -SET [Description] = 'Nonoperable system or component condition', [Definition] = 'The system or component exists in a significantly substandard level and cannot be used or operated. Replacement is required.', [SortOrder] = 6.00 WHERE [Code] = '02983' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySystemOrComponentCondition] WHERE [Code] = '02565') BEGIN INSERT INTO dbo.[RefFacilitySystemOrComponentCondition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02565', 'Poor System or Component Condition', 'Consistently substandard performance; failure(s) are disruptive and costly; fails most code and functional requirements; requires constant attention, renovation, or replacement. Major corrective repair or overhaul is required.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySystemOrComponentCondition] -SET [Description] = 'Poor System or Component Condition', [Definition] = 'Consistently substandard performance; failure(s) are disruptive and costly; fails most code and functional requirements; requires constant attention, renovation, or replacement. Major corrective repair or overhaul is required.', [SortOrder] = 7.00 WHERE [Code] = '02565' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilitySystemOrComponentCondition] WHERE [Code] = '02566') BEGIN INSERT INTO dbo.[RefFacilitySystemOrComponentCondition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02566', 'Urgent building system or component condition', 'A condition that will seriously affect the safety, environment, and/or educational mission, or could result in possible damage to the facility or inhabitants.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilitySystemOrComponentCondition] -SET [Description] = 'Urgent building system or component condition', [Definition] = 'A condition that will seriously affect the safety, environment, and/or educational mission, or could result in possible damage to the facility or inhabitants.', [SortOrder] = 8.00 WHERE [Code] = '02566' END -END - -PRINT N'Populate RefFacilityUtilityProviderType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityUtilityProviderType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityUtilityProviderType] WHERE [Code] = '02852') BEGIN INSERT INTO dbo.[RefFacilityUtilityProviderType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02852', 'Purchased', 'Purchased is specified as an indication of how utilities are supplied to a site or a building by a company or provider.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityUtilityProviderType] -SET [Description] = 'Purchased', [Definition] = 'Purchased is specified as an indication of how utilities are supplied to a site or a building by a company or provider.', [SortOrder] = 1.00 WHERE [Code] = '02852' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityUtilityProviderType] WHERE [Code] = '02851') BEGIN INSERT INTO dbo.[RefFacilityUtilityProviderType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02851', 'Self-generated', 'Self-generated is specified as an indication of how utilities are supplied to a site or a building by a company or provider.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityUtilityProviderType] -SET [Description] = 'Self-generated', [Definition] = 'Self-generated is specified as an indication of how utilities are supplied to a site or a building by a company or provider.', [SortOrder] = 2.00 WHERE [Code] = '02851' END -END - -PRINT N'Populate RefFacilityUtilityType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFacilityUtilityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityUtilityType] WHERE [Code] = '02840') BEGIN INSERT INTO dbo.[RefFacilityUtilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02840', 'Electricity', 'Electricity is specified as the type of utility used in the operation of a facility.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityUtilityType] -SET [Description] = 'Electricity', [Definition] = 'Electricity is specified as the type of utility used in the operation of a facility.', [SortOrder] = 1.00 WHERE [Code] = '02840' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityUtilityType] WHERE [Code] = '02990') BEGIN INSERT INTO dbo.[RefFacilityUtilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02990', 'Internet service', 'Internet service is specified as the type of utility used in the operation of a facility.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityUtilityType] -SET [Description] = 'Internet service', [Definition] = 'Internet service is specified as the type of utility used in the operation of a facility.', [SortOrder] = 2.00 WHERE [Code] = '02990' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityUtilityType] WHERE [Code] = '02841') BEGIN INSERT INTO dbo.[RefFacilityUtilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02841', 'Natural gas', 'Natural gas is specified as the type of utility used in the operation of a facility.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityUtilityType] -SET [Description] = 'Natural gas', [Definition] = 'Natural gas is specified as the type of utility used in the operation of a facility.', [SortOrder] = 3.00 WHERE [Code] = '02841' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityUtilityType] WHERE [Code] = '02842') BEGIN INSERT INTO dbo.[RefFacilityUtilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02842', 'Oil', 'Oil is specified as the type of utility used in the operation of a facility.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityUtilityType] -SET [Description] = 'Oil', [Definition] = 'Oil is specified as the type of utility used in the operation of a facility.', [SortOrder] = 4.00 WHERE [Code] = '02842' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityUtilityType] WHERE [Code] = '13685') BEGIN INSERT INTO dbo.[RefFacilityUtilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13685', 'Recycling', 'Recycling is specified as the type of utility used in the operation of a facility.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityUtilityType] -SET [Description] = 'Recycling', [Definition] = 'Recycling is specified as the type of utility used in the operation of a facility.', [SortOrder] = 5.00 WHERE [Code] = '13685' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityUtilityType] WHERE [Code] = '02844') BEGIN INSERT INTO dbo.[RefFacilityUtilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02844', 'Sewer', 'Sewer is specified as the type of utility used in the operation of a facility.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityUtilityType] -SET [Description] = 'Sewer', [Definition] = 'Sewer is specified as the type of utility used in the operation of a facility.', [SortOrder] = 6.00 WHERE [Code] = '02844' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityUtilityType] WHERE [Code] = '02845') BEGIN INSERT INTO dbo.[RefFacilityUtilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02845', 'Telephone', 'Telephone is specified as the type of utility used in the operation of a facility.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityUtilityType] -SET [Description] = 'Telephone', [Definition] = 'Telephone is specified as the type of utility used in the operation of a facility.', [SortOrder] = 7.00 WHERE [Code] = '02845' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityUtilityType] WHERE [Code] = '13686') BEGIN INSERT INTO dbo.[RefFacilityUtilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13686', 'Waste', 'Waste is specified as the type of utility used in the operation of a facility.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityUtilityType] -SET [Description] = 'Waste', [Definition] = 'Waste is specified as the type of utility used in the operation of a facility.', [SortOrder] = 8.00 WHERE [Code] = '13686' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityUtilityType] WHERE [Code] = '02843') BEGIN INSERT INTO dbo.[RefFacilityUtilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02843', 'Water', 'Water is specified as the type of utility used in the operation of a facility.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityUtilityType] -SET [Description] = 'Water', [Definition] = 'Water is specified as the type of utility used in the operation of a facility.', [SortOrder] = 9.00 WHERE [Code] = '02843' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFacilityUtilityType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefFacilityUtilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is specified as the type of utility used in the operation of a facility.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFacilityUtilityType] -SET [Description] = 'Other', [Definition] = 'Other is specified as the type of utility used in the operation of a facility.', [SortOrder] = 99.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefFamilyIncomeSource table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFamilyIncomeSource]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFamilyIncomeSource] WHERE [Code] = 'Wages') BEGIN INSERT INTO dbo.[RefFamilyIncomeSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Wages', 'Wages', 'Wages is a source of total family income.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFamilyIncomeSource] -SET [Description] = 'Wages', [Definition] = 'Wages is a source of total family income.', [SortOrder] = 1.00 WHERE [Code] = 'Wages' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFamilyIncomeSource] WHERE [Code] = 'Alimony') BEGIN INSERT INTO dbo.[RefFamilyIncomeSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Alimony', 'Alimony', 'Alimony is a source of total family income.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFamilyIncomeSource] -SET [Description] = 'Alimony', [Definition] = 'Alimony is a source of total family income.', [SortOrder] = 2.00 WHERE [Code] = 'Alimony' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFamilyIncomeSource] WHERE [Code] = 'ChildSupport') BEGIN INSERT INTO dbo.[RefFamilyIncomeSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChildSupport', 'Child support', 'Child support is a source of total family income.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFamilyIncomeSource] -SET [Description] = 'Child support', [Definition] = 'Child support is a source of total family income.', [SortOrder] = 3.00 WHERE [Code] = 'ChildSupport' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFamilyIncomeSource] WHERE [Code] = 'WorkersComp') BEGIN INSERT INTO dbo.[RefFamilyIncomeSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WorkersComp', 'Worker''s compensation', 'Worker''s compensation is a source of total family income.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFamilyIncomeSource] -SET [Description] = 'Worker''s compensation', [Definition] = 'Worker''s compensation is a source of total family income.', [SortOrder] = 4.00 WHERE [Code] = 'WorkersComp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFamilyIncomeSource] WHERE [Code] = 'Unemployment') BEGIN INSERT INTO dbo.[RefFamilyIncomeSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unemployment', 'Unemployment', 'Unemployment is a source of total family income.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFamilyIncomeSource] -SET [Description] = 'Unemployment', [Definition] = 'Unemployment is a source of total family income.', [SortOrder] = 5.00 WHERE [Code] = 'Unemployment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFamilyIncomeSource] WHERE [Code] = 'SSI') BEGIN INSERT INTO dbo.[RefFamilyIncomeSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SSI', 'Supplemental security income', 'Supplemental security income is a source of total family income.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFamilyIncomeSource] -SET [Description] = 'Supplemental security income', [Definition] = 'Supplemental security income is a source of total family income.', [SortOrder] = 6.00 WHERE [Code] = 'SSI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFamilyIncomeSource] WHERE [Code] = 'TANF') BEGIN INSERT INTO dbo.[RefFamilyIncomeSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TANF', 'Temporary assistance for needy families', 'Temporary assistance for needy families is a source of total family income.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFamilyIncomeSource] -SET [Description] = 'Temporary assistance for needy families', [Definition] = 'Temporary assistance for needy families is a source of total family income.', [SortOrder] = 7.00 WHERE [Code] = 'TANF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFamilyIncomeSource] WHERE [Code] = 'Agricultural') BEGIN INSERT INTO dbo.[RefFamilyIncomeSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Agricultural', 'Agricultural', 'Agricultural is a source of total family income.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFamilyIncomeSource] -SET [Description] = 'Agricultural', [Definition] = 'Agricultural is a source of total family income.', [SortOrder] = 8.00 WHERE [Code] = 'Agricultural' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFamilyIncomeSource] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefFamilyIncomeSource]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'A source of total family income in a category not yet defined in CEDS.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFamilyIncomeSource] -SET [Description] = 'Other', [Definition] = 'A source of total family income in a category not yet defined in CEDS.', [SortOrder] = 9.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefFederalProgramFundingAllocationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFederalProgramFundingAllocationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFederalProgramFundingAllocationType] WHERE [Code] = 'RETAINED') BEGIN INSERT INTO dbo.[RefFederalProgramFundingAllocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RETAINED', 'Retained by SEA for program administration, etc.', 'Retained by SEA for program administration, etc. is the type of federal program funding allocation or distribution made.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFederalProgramFundingAllocationType] -SET [Description] = 'Retained by SEA for program administration, etc.', [Definition] = 'Retained by SEA for program administration, etc. is the type of federal program funding allocation or distribution made.', [SortOrder] = 1.00 WHERE [Code] = 'RETAINED' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFederalProgramFundingAllocationType] WHERE [Code] = 'TRANSFER') BEGIN INSERT INTO dbo.[RefFederalProgramFundingAllocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TRANSFER', 'Transferred to another state agency', 'Transferred to another state agency is the type of federal program funding allocation or distribution made.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFederalProgramFundingAllocationType] -SET [Description] = 'Transferred to another state agency', [Definition] = 'Transferred to another state agency is the type of federal program funding allocation or distribution made.', [SortOrder] = 2.00 WHERE [Code] = 'TRANSFER' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFederalProgramFundingAllocationType] WHERE [Code] = 'DISTNONLEA') BEGIN INSERT INTO dbo.[RefFederalProgramFundingAllocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DISTNONLEA', 'Distributed to entities other than LEAs', 'Distributed to entities other than LEAs is the type of federal program funding allocation or distribution made.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFederalProgramFundingAllocationType] -SET [Description] = 'Distributed to entities other than LEAs', [Definition] = 'Distributed to entities other than LEAs is the type of federal program funding allocation or distribution made.', [SortOrder] = 3.00 WHERE [Code] = 'DISTNONLEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFederalProgramFundingAllocationType] WHERE [Code] = 'UNALLOC') BEGIN INSERT INTO dbo.[RefFederalProgramFundingAllocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UNALLOC', 'Unallocated or returned funds', 'Unallocated or returned funds is the type of federal program funding allocation or distribution made.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFederalProgramFundingAllocationType] -SET [Description] = 'Unallocated or returned funds', [Definition] = 'Unallocated or returned funds is the type of federal program funding allocation or distribution made.', [SortOrder] = 4.00 WHERE [Code] = 'UNALLOC' END -END - -PRINT N'Populate RefFederalProgramSubgrantCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFederalProgramSubgrantCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFederalProgramSubgrantCode] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefFederalProgramSubgrantCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFederalProgramSubgrantCode] -SET [Description] = 'Other', [Definition] = 'Other', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefFinancialAccountBalanceSheetCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAccountBalanceSheetCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '101') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('101', 'Cash in Bank', 'All funds on deposit with a bank or savings and loan institution, normally in non-interest-bearing accounts. Interest-bearing accounts, however, that do not meet the definition of an investment (e.g., demand deposits that are interest-bearing) should be recorded herein as well.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Cash in Bank', [Definition] = 'All funds on deposit with a bank or savings and loan institution, normally in non-interest-bearing accounts. Interest-bearing accounts, however, that do not meet the definition of an investment (e.g., demand deposits that are interest-bearing) should be recorded herein as well.', [SortOrder] = 1.00 WHERE [Code] = '101' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '102') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('102', 'Cash on Hand', 'Currency, coins, checks, postal and express money orders, and bankers'' drafts on hand.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Cash on Hand', [Definition] = 'Currency, coins, checks, postal and express money orders, and bankers'' drafts on hand.', [SortOrder] = 2.00 WHERE [Code] = '102' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '103') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('103', 'Petty Cash', 'A sum of money set aside to pay small obligations for which the issuance of a formal voucher and check would be too expensive and time consuming.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Petty Cash', [Definition] = 'A sum of money set aside to pay small obligations for which the issuance of a formal voucher and check would be too expensive and time consuming.', [SortOrder] = 3.00 WHERE [Code] = '103' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '104') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('104', 'Change Cash', 'A sum of money set aside to provide change.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Change Cash', [Definition] = 'A sum of money set aside to provide change.', [SortOrder] = 4.00 WHERE [Code] = '104' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '105') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('105', 'Cash With Fiscal Agents', 'Deposits with fiscal agents, such as commercial banks, for paying matured bonds and interest.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Cash With Fiscal Agents', [Definition] = 'Deposits with fiscal agents, such as commercial banks, for paying matured bonds and interest.', [SortOrder] = 5.00 WHERE [Code] = '105' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '111') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('111', 'Investments', 'Securities and real estate held for producing income in the form of interest, dividends, rentals, or lease payments. Investments should be presented at fair value as of the reporting date. Gains from changes in the fair value of investments are recorded using revenue account 1530. Losses from changes in the fair value of investments are recorded using expenditure object code 930. Alternatively, gains and losses may be netted and recorded in revenue account 1530. The account does not include capital assets used in school district operations. Separate accounts may be maintained for each category of investments.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Investments', [Definition] = 'Securities and real estate held for producing income in the form of interest, dividends, rentals, or lease payments. Investments should be presented at fair value as of the reporting date. Gains from changes in the fair value of investments are recorded using revenue account 1530. Losses from changes in the fair value of investments are recorded using expenditure object code 930. Alternatively, gains and losses may be netted and recorded in revenue account 1530. The account does not include capital assets used in school district operations. Separate accounts may be maintained for each category of investments.', [SortOrder] = 6.00 WHERE [Code] = '111' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '112') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('112', 'Unamortized Premiums on Investments', 'The excess of the amount paid for securities over the face value that has not yet been amortized. Use of this account is restricted to short- term money market investments.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Unamortized Premiums on Investments', [Definition] = 'The excess of the amount paid for securities over the face value that has not yet been amortized. Use of this account is restricted to short- term money market investments.', [SortOrder] = 7.00 WHERE [Code] = '112' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '113') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('113', 'Unamortized Discounts on Investments (Credit)', 'The excess of the face value of securities over the amount paid for them that has not yet been written off. Use of this account is restricted to short-term investments.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Unamortized Discounts on Investments (Credit)', [Definition] = 'The excess of the face value of securities over the amount paid for them that has not yet been written off. Use of this account is restricted to short-term investments.', [SortOrder] = 8.00 WHERE [Code] = '113' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '114') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('114', 'Interest Receivable on Investments', 'The amount of interest receivable on investments, excluding interest purchased. Interest purchased should be shown in a separate account.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Interest Receivable on Investments', [Definition] = 'The amount of interest receivable on investments, excluding interest purchased. Interest purchased should be shown in a separate account.', [SortOrder] = 9.00 WHERE [Code] = '114' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '115') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('115', 'Accrued Interest on Investments Purchased', 'Interest accrued on investments between the last interest payment date and the date of purchase. The account is carried as an asset until the first interest payment date after the date of purchase.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Accrued Interest on Investments Purchased', [Definition] = 'Interest accrued on investments between the last interest payment date and the date of purchase. The account is carried as an asset until the first interest payment date after the date of purchase.', [SortOrder] = 10.00 WHERE [Code] = '115' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '121') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('121', 'Taxes Receivable', 'The uncollected portion of taxes that a school district or government unit has levied and that has become due, including any interest or penalties that may be accrued. Separate accounts may be maintained on the basis of tax roll year, current and delinquent taxes, or both.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Taxes Receivable', [Definition] = 'The uncollected portion of taxes that a school district or government unit has levied and that has become due, including any interest or penalties that may be accrued. Separate accounts may be maintained on the basis of tax roll year, current and delinquent taxes, or both.', [SortOrder] = 11.00 WHERE [Code] = '121' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '122') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('122', 'Allowance for Uncollectible Taxes (Credit)', 'The portion of taxes receivable estimated not to be collected. The account is shown on the balance sheet as a deduction from the taxes receivable account to arrive at the net taxes receivable. Separate accounts may be maintained on the basis of tax roll year, delinquent taxes, or both.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Allowance for Uncollectible Taxes (Credit)', [Definition] = 'The portion of taxes receivable estimated not to be collected. The account is shown on the balance sheet as a deduction from the taxes receivable account to arrive at the net taxes receivable. Separate accounts may be maintained on the basis of tax roll year, delinquent taxes, or both.', [SortOrder] = 12.00 WHERE [Code] = '122' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '131') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('131', 'Interfund Loans Receivable', 'An asset account used to record a loan by one fund to another fund in the same governmental unit. It is recommended that separate accounts be maintained for each interfund receivable loan.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Interfund Loans Receivable', [Definition] = 'An asset account used to record a loan by one fund to another fund in the same governmental unit. It is recommended that separate accounts be maintained for each interfund receivable loan.', [SortOrder] = 13.00 WHERE [Code] = '131' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '132') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('132', 'Interfund Accounts Receivable', 'An asset account used to indicate amounts owed to a particular fund by another fund in the same school district for goods sold or services rendered. It is recommended that separate accounts be maintained for each interfund receivable.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Interfund Accounts Receivable', [Definition] = 'An asset account used to indicate amounts owed to a particular fund by another fund in the same school district for goods sold or services rendered. It is recommended that separate accounts be maintained for each interfund receivable.', [SortOrder] = 14.00 WHERE [Code] = '132' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '141') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('141', 'Intergovernmental Accounts Receivable', 'Amounts due to the reporting governmental unit from another governmental unit. These amounts may represent grants-in-aid, shared taxes, taxes collected for the reporting unit by another unit, loans, and charges for services rendered by the reporting unit for another government. It is recommended that separate accounts be maintained for each interagency receivable.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Intergovernmental Accounts Receivable', [Definition] = 'Amounts due to the reporting governmental unit from another governmental unit. These amounts may represent grants-in-aid, shared taxes, taxes collected for the reporting unit by another unit, loans, and charges for services rendered by the reporting unit for another government. It is recommended that separate accounts be maintained for each interagency receivable.', [SortOrder] = 15.00 WHERE [Code] = '141' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '151') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('151', 'Loans Receivable', 'Amounts that have been loaned to persons or organizations, including notes taken as security for such loans, where permitted by statutory authority.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Loans Receivable', [Definition] = 'Amounts that have been loaned to persons or organizations, including notes taken as security for such loans, where permitted by statutory authority.', [SortOrder] = 16.00 WHERE [Code] = '151' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '152') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('152', 'Allowance for Uncollectible Loans (Credit)', 'The portion of loans receivable estimated not to be collected. The account is shown on the balance sheet as a deduction from the other loans receivable account.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Allowance for Uncollectible Loans (Credit)', [Definition] = 'The portion of loans receivable estimated not to be collected. The account is shown on the balance sheet as a deduction from the other loans receivable account.', [SortOrder] = 17.00 WHERE [Code] = '152' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '153') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('153', 'Other Accounts Receivable', 'Amounts due on open account from private persons, firms, or corporations for goods and services furnished by a school district (but not including amounts due from other funds or from other governmental units).', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Other Accounts Receivable', [Definition] = 'Amounts due on open account from private persons, firms, or corporations for goods and services furnished by a school district (but not including amounts due from other funds or from other governmental units).', [SortOrder] = 18.00 WHERE [Code] = '153' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '154') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('154', 'Allowance for Uncollectible Accounts Receivable (Credit)', 'A provision for that portion of accounts receivable that is estimated will not be collected. The account is shown on the balance sheet as a deduction from the other accounts receivable account.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Allowance for Uncollectible Accounts Receivable (Credit)', [Definition] = 'A provision for that portion of accounts receivable that is estimated will not be collected. The account is shown on the balance sheet as a deduction from the other accounts receivable account.', [SortOrder] = 19.00 WHERE [Code] = '154' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '171') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('171', 'Inventories for Consumption', 'The cost of supplies and equipment on hand not yet distributed to requisitioning units.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Inventories for Consumption', [Definition] = 'The cost of supplies and equipment on hand not yet distributed to requisitioning units.', [SortOrder] = 20.00 WHERE [Code] = '171' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '172') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('172', 'Inventories for Resale', 'The value of goods purchased and held by a school district for resale rather than for use in its own operations. Such goods could include unique manufactured inventories, such as student-built homes or equipment.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Inventories for Resale', [Definition] = 'The value of goods purchased and held by a school district for resale rather than for use in its own operations. Such goods could include unique manufactured inventories, such as student-built homes or equipment.', [SortOrder] = 21.00 WHERE [Code] = '172' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '181') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('181', 'Prepaid Items', 'Expenditures/expenses paid for benefits not yet received. Prepaid expenses differ from deferred charges in that they are spread over a shorter period of time and are regularly recurring costs of operation. Examples of prepaid expenses are prepaid rent, prepaid interest, and unexpired insurance premiums.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Prepaid Items', [Definition] = 'Expenditures/expenses paid for benefits not yet received. Prepaid expenses differ from deferred charges in that they are spread over a shorter period of time and are regularly recurring costs of operation. Examples of prepaid expenses are prepaid rent, prepaid interest, and unexpired insurance premiums.', [SortOrder] = 22.00 WHERE [Code] = '181' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '191') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('191', 'Deposits', 'Funds deposited by the school district as a prerequisite to receiving services, goods, or both.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Deposits', [Definition] = 'Funds deposited by the school district as a prerequisite to receiving services, goods, or both.', [SortOrder] = 23.00 WHERE [Code] = '191' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '193') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('193', 'Bond Insurance Costs', 'Bond insurance costs that are a form of prepayment to be amortized.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Bond Insurance Costs', [Definition] = 'Bond insurance costs that are a form of prepayment to be amortized.', [SortOrder] = 24.00 WHERE [Code] = '193' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '194') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('194', 'Premium and Discount on Issuance of Bonds', 'Represents amounts to be amortized as debt premium/discount in connection with the issuance of bonds.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Premium and Discount on Issuance of Bonds', [Definition] = 'Represents amounts to be amortized as debt premium/discount in connection with the issuance of bonds.', [SortOrder] = 25.00 WHERE [Code] = '194' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '199') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('199', 'Other Current Assets', 'Current assets not provided for elsewhere.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Other Current Assets', [Definition] = 'Current assets not provided for elsewhere.', [SortOrder] = 26.00 WHERE [Code] = '199' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '200') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('200', 'Capital Assets', 'Those assets that the school district intends to hold or continue to use over a long period of time. Specifically, capital assets include land, improvements to land, easements, buildings and building improvements, vehicles, machinery, equipment, works of art and historical treasures, infrastructure, and all other tangible or intangible assets that are used in operations and that have initial useful lives that extend beyond a single reporting period. This account is used only in proprietary funds, fiduciary funds, and the government-wide financial statements.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Capital Assets', [Definition] = 'Those assets that the school district intends to hold or continue to use over a long period of time. Specifically, capital assets include land, improvements to land, easements, buildings and building improvements, vehicles, machinery, equipment, works of art and historical treasures, infrastructure, and all other tangible or intangible assets that are used in operations and that have initial useful lives that extend beyond a single reporting period. This account is used only in proprietary funds, fiduciary funds, and the government-wide financial statements.', [SortOrder] = 27.00 WHERE [Code] = '200' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '211') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('211', 'Land and Land Improvements', 'A capital asset account that reflects the acquisition value of land owned by a school district. If land is purchased, this account includes the purchase price and costs such as legal fees, filling and excavation costs, and other associated improvement costs incurred to put the land in condition for its intended use. If land is acquired by gift, the account reflects its fair value at the time of acquisition. Permanent improvements to land, such as grading and fill, should also be accounted for in this account. Land and land improvements are considered nonexhaustible assets owing to their significantly long expected useful life. Nonexhaustible assets are not to be depreciated. Therefore, assets classified by asset code 211 should result in no depreciation expense.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Land and Land Improvements', [Definition] = 'A capital asset account that reflects the acquisition value of land owned by a school district. If land is purchased, this account includes the purchase price and costs such as legal fees, filling and excavation costs, and other associated improvement costs incurred to put the land in condition for its intended use. If land is acquired by gift, the account reflects its fair value at the time of acquisition. Permanent improvements to land, such as grading and fill, should also be accounted for in this account. Land and land improvements are considered nonexhaustible assets owing to their significantly long expected useful life. Nonexhaustible assets are not to be depreciated. Therefore, assets classified by asset code 211 should result in no depreciation expense.', [SortOrder] = 28.00 WHERE [Code] = '211' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '221') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('221', 'Site Improvements', 'A capital asset account that reflects the value of nonpermanent improvements to building sites, other than buildings, that add value to land. Examples of such improvements are fences, retaining walls, sidewalks, pavements, gutters, tunnels, and bridges. If the improvements are purchased or constructed, this account contains the purchase or contract price. If improvements are obtained by gift, it reflects the fair value at the time of acquisition. Site improvements are improvements that have a limited useful life. Because these improvements decrease in their value/usefulness over time, it is appropriate to depreciate these assets. Therefore, all capitalized site improvements should be depreciated over their expected useful life.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Site Improvements', [Definition] = 'A capital asset account that reflects the value of nonpermanent improvements to building sites, other than buildings, that add value to land. Examples of such improvements are fences, retaining walls, sidewalks, pavements, gutters, tunnels, and bridges. If the improvements are purchased or constructed, this account contains the purchase or contract price. If improvements are obtained by gift, it reflects the fair value at the time of acquisition. Site improvements are improvements that have a limited useful life. Because these improvements decrease in their value/usefulness over time, it is appropriate to depreciate these assets. Therefore, all capitalized site improvements should be depreciated over their expected useful life.', [SortOrder] = 29.00 WHERE [Code] = '221' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '222') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('222', 'Accumulated Depreciation on Site Improvements', 'Accumulated amounts for the depreciation of land improvements.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Accumulated Depreciation on Site Improvements', [Definition] = 'Accumulated amounts for the depreciation of land improvements.', [SortOrder] = 30.00 WHERE [Code] = '222' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '231') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('231', 'Buildings and Building Improvements', 'A capital asset account that reflects the acquisition value of permanent structures used to house persons and property owned by the school district. If buildings are purchased or constructed, this account includes the purchase or contract price of all permanent buildings and the fixtures attached to and forming a permanent part of such buildings. This account includes all building improvements, including upgrades made to building wiring for technology. If buildings are acquired by gift, the account reflects their fair value at the time of acquisition.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Buildings and Building Improvements', [Definition] = 'A capital asset account that reflects the acquisition value of permanent structures used to house persons and property owned by the school district. If buildings are purchased or constructed, this account includes the purchase or contract price of all permanent buildings and the fixtures attached to and forming a permanent part of such buildings. This account includes all building improvements, including upgrades made to building wiring for technology. If buildings are acquired by gift, the account reflects their fair value at the time of acquisition.', [SortOrder] = 31.00 WHERE [Code] = '231' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '232') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('232', 'Accumulated Depreciation on Buildings and Building Improvements', 'Accumulated amounts for the depreciation of buildings and building improvements.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Accumulated Depreciation on Buildings and Building Improvements', [Definition] = 'Accumulated amounts for the depreciation of buildings and building improvements.', [SortOrder] = 32.00 WHERE [Code] = '232' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '241') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('241', 'Machinery and Equipment', 'Tangible property of a more or less permanent nature, other than land, buildings, or improvements thereto, that is useful in carrying on operations. Examples are machinery, tools, trucks, cars, buses, computers, purchased software, furniture, and furnishings. Appendix E provides criteria to distinguish whether a purchase is a supply or a piece of machinery or equipment.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Machinery and Equipment', [Definition] = 'Tangible property of a more or less permanent nature, other than land, buildings, or improvements thereto, that is useful in carrying on operations. Examples are machinery, tools, trucks, cars, buses, computers, purchased software, furniture, and furnishings. Appendix E provides criteria to distinguish whether a purchase is a supply or a piece of machinery or equipment.', [SortOrder] = 33.00 WHERE [Code] = '241' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '242') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('242', 'Accumulated Depreciation on Machinery and Equipment', 'Accumulated amounts for the depreciation of machinery and equipment.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Accumulated Depreciation on Machinery and Equipment', [Definition] = 'Accumulated amounts for the depreciation of machinery and equipment.', [SortOrder] = 34.00 WHERE [Code] = '242' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '251') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('251', 'Works of Art and Historical Treasures', 'Individual items or collections of items that are of artistic or cultural importance.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Works of Art and Historical Treasures', [Definition] = 'Individual items or collections of items that are of artistic or cultural importance.', [SortOrder] = 35.00 WHERE [Code] = '251' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '252') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('252', 'Accumulated Depreciation on Works of Art and Historical Collections', 'Accumulated amounts for the depreciation (as applicable) of works of art and historical treasures.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Accumulated Depreciation on Works of Art and Historical Collections', [Definition] = 'Accumulated amounts for the depreciation (as applicable) of works of art and historical treasures.', [SortOrder] = 36.00 WHERE [Code] = '252' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '261') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('261', 'Infrastructure', 'A capital asset, network, or subsystem that has a useful life that is significantly longer than those of other capital assets. These assets may include water/sewer systems, roads, bridges, tunnels, and other similar assets.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Infrastructure', [Definition] = 'A capital asset, network, or subsystem that has a useful life that is significantly longer than those of other capital assets. These assets may include water/sewer systems, roads, bridges, tunnels, and other similar assets.', [SortOrder] = 37.00 WHERE [Code] = '261' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '262') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('262', 'Accumulated Depreciation on Infrastructure', 'Accumulated amounts for the depreciation of infrastructure assets.', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Accumulated Depreciation on Infrastructure', [Definition] = 'Accumulated amounts for the depreciation of infrastructure assets.', [SortOrder] = 38.00 WHERE [Code] = '262' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '271') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('271', 'Construction in Progress', 'The cost of construction work undertaken but not yet completed.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Construction in Progress', [Definition] = 'The cost of construction work undertaken but not yet completed.', [SortOrder] = 39.00 WHERE [Code] = '271' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '281') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('281', 'Intangible Assets', 'An intangible asset is a capital asset that lacks physical substance, is nonfinancial in nature, and has an initial useful life of more than 1 year. Intangible assets may be purchased or licensed, acquired through nonexchange transactions, or internally generated. Examples include easements, contractual rights, patents, trademarks, and computer software.', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Intangible Assets', [Definition] = 'An intangible asset is a capital asset that lacks physical substance, is nonfinancial in nature, and has an initial useful life of more than 1 year. Intangible assets may be purchased or licensed, acquired through nonexchange transactions, or internally generated. Examples include easements, contractual rights, patents, trademarks, and computer software.', [SortOrder] = 40.00 WHERE [Code] = '281' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '282') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('282', 'Accumulated Amortization of Intangible Assets', 'Accumulated amounts for the amortization of intangible assets.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Accumulated Amortization of Intangible Assets', [Definition] = 'Accumulated amounts for the amortization of intangible assets.', [SortOrder] = 41.00 WHERE [Code] = '282' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '300') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('300', 'Deferred Outflows of Resources', 'A consumption of net assets by the government that is applicable to a future reporting period.', 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Deferred Outflows of Resources', [Definition] = 'A consumption of net assets by the government that is applicable to a future reporting period.', [SortOrder] = 42.00 WHERE [Code] = '300' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '401') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('401', 'Interfund Loans Payable', 'A liability account used to record a debt owed by one fund to another fund in the same governmental unit. It is recommended that separate accounts be maintained for each interfund loan.', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Interfund Loans Payable', [Definition] = 'A liability account used to record a debt owed by one fund to another fund in the same governmental unit. It is recommended that separate accounts be maintained for each interfund loan.', [SortOrder] = 43.00 WHERE [Code] = '401' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '402') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('402', 'Interfund Accounts Payable', 'A liability account used to indicate amounts owed by a particular fund for services rendered. It is recommended that separate accounts be maintained for each interfund payable.', 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Interfund Accounts Payable', [Definition] = 'A liability account used to indicate amounts owed by a particular fund for services rendered. It is recommended that separate accounts be maintained for each interfund payable.', [SortOrder] = 44.00 WHERE [Code] = '402' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '411') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('411', 'Intergovernmental Accounts Payable', 'Amounts owed by the reporting school district to another governmental unit. It is recommended that separate accounts be maintained for each intergovernmental payable.', 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Intergovernmental Accounts Payable', [Definition] = 'Amounts owed by the reporting school district to another governmental unit. It is recommended that separate accounts be maintained for each intergovernmental payable.', [SortOrder] = 45.00 WHERE [Code] = '411' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '421') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('421', 'Accounts Payable', 'Liabilities on open account owed to private persons, firms, or corporations for goods and services received by a school district (but not including amounts due to other funds of the same school district or to other governmental units).', 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Accounts Payable', [Definition] = 'Liabilities on open account owed to private persons, firms, or corporations for goods and services received by a school district (but not including amounts due to other funds of the same school district or to other governmental units).', [SortOrder] = 46.00 WHERE [Code] = '421' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '422') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('422', 'Judgments Payable', 'Amounts due to be paid by a school district as the result of court decisions, including condemnation awards paid for private property taken for public use.', 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Judgments Payable', [Definition] = 'Amounts due to be paid by a school district as the result of court decisions, including condemnation awards paid for private property taken for public use.', [SortOrder] = 47.00 WHERE [Code] = '422' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '423') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('423', 'Warrants Payable', 'Amounts due to designated payees in the form of a written order drawn by the school district directing the school district treasurer to pay a specific amount.', 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Warrants Payable', [Definition] = 'Amounts due to designated payees in the form of a written order drawn by the school district directing the school district treasurer to pay a specific amount.', [SortOrder] = 48.00 WHERE [Code] = '423' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '431') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('431', 'Contracts Payable', 'Amounts due on contracts for assets, goods, and services received by a school district.', 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Contracts Payable', [Definition] = 'Amounts due on contracts for assets, goods, and services received by a school district.', [SortOrder] = 49.00 WHERE [Code] = '431' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '432') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('432', 'Construction Contracts Payable-Retainage', 'Liabilities on account of construction contracts for that portion of the work that has been completed but on which part the liability has not been paid pending final inspection, the lapse of a specified time period, or both. The unpaid amount is usually a stated percentage of the contract price.', 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Construction Contracts Payable-Retainage', [Definition] = 'Liabilities on account of construction contracts for that portion of the work that has been completed but on which part the liability has not been paid pending final inspection, the lapse of a specified time period, or both. The unpaid amount is usually a stated percentage of the contract price.', [SortOrder] = 50.00 WHERE [Code] = '432' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '433') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('433', 'Construction Contracts Payable', 'Amounts due by a school district on contracts for constructing buildings and other structures and other improvements.', 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Construction Contracts Payable', [Definition] = 'Amounts due by a school district on contracts for constructing buildings and other structures and other improvements.', [SortOrder] = 51.00 WHERE [Code] = '433' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '441') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('441', 'Matured Bonds Payable', 'Bonds that have reached or passed their maturity date but that remain unpaid.', 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Matured Bonds Payable', [Definition] = 'Bonds that have reached or passed their maturity date but that remain unpaid.', [SortOrder] = 52.00 WHERE [Code] = '441' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '442') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('442', 'Bonds Payable-Current', 'Bonds that have not reached or passed their maturity date but are due within 1 year or less. This account is used only in proprietary or fiduciary funds, as well as in the government-wide financial statements.', 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Bonds Payable-Current', [Definition] = 'Bonds that have not reached or passed their maturity date but are due within 1 year or less. This account is used only in proprietary or fiduciary funds, as well as in the government-wide financial statements.', [SortOrder] = 53.00 WHERE [Code] = '442' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '443') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('443', 'Unamortized Premiums on Issuance of Bonds', 'An account that represents that portion of the excess of bond proceeds over par value and that remains to be amortized over the remaining life of such bonds. This account is used only in proprietary or fiduciary funds, as well as in the government-wide financial statements.', 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Unamortized Premiums on Issuance of Bonds', [Definition] = 'An account that represents that portion of the excess of bond proceeds over par value and that remains to be amortized over the remaining life of such bonds. This account is used only in proprietary or fiduciary funds, as well as in the government-wide financial statements.', [SortOrder] = 54.00 WHERE [Code] = '443' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '451') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('451', 'Loans Payable', 'Short-term obligations representing amounts borrowed for short periods of time, usually evidenced by notes payable or warrants payable.', 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Loans Payable', [Definition] = 'Short-term obligations representing amounts borrowed for short periods of time, usually evidenced by notes payable or warrants payable.', [SortOrder] = 55.00 WHERE [Code] = '451' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '452') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('452', 'Lease Obligations-Current', 'Capital lease obligations that are due within 1 year.', 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Lease Obligations-Current', [Definition] = 'Capital lease obligations that are due within 1 year.', [SortOrder] = 56.00 WHERE [Code] = '452' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '455') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('455', 'Interest Payable', 'Interest due within 1 year.', 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Interest Payable', [Definition] = 'Interest due within 1 year.', [SortOrder] = 57.00 WHERE [Code] = '455' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '461') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('461', 'Accrued Salaries and Benefits', 'Salary and fringe benefit costs incurred during the current accounting period that are not payable until a subsequent accounting period.', 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Accrued Salaries and Benefits', [Definition] = 'Salary and fringe benefit costs incurred during the current accounting period that are not payable until a subsequent accounting period.', [SortOrder] = 58.00 WHERE [Code] = '461' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '471') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('471', 'Payroll Deductions and Withholdings', 'Amounts deducted from employees'' salaries for withholding taxes and other purposes. District-paid benefits amounts payable are also included. A separate liability account may be used for each type of benefit.', 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Payroll Deductions and Withholdings', [Definition] = 'Amounts deducted from employees'' salaries for withholding taxes and other purposes. District-paid benefits amounts payable are also included. A separate liability account may be used for each type of benefit.', [SortOrder] = 59.00 WHERE [Code] = '471' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '472') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('472', 'Compensated Absences-Current', 'Compensated absences that will be paid within 1 year.', 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Compensated Absences-Current', [Definition] = 'Compensated absences that will be paid within 1 year.', [SortOrder] = 60.00 WHERE [Code] = '472' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '473') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('473', 'Accrued Annual Requirement Contribution Liability', 'A liability arising from payments not made to pension funds. This amount represents any difference between the actuarially determined annual required contribution and actual payments made to the pension fund.', 61.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Accrued Annual Requirement Contribution Liability', [Definition] = 'A liability arising from payments not made to pension funds. This amount represents any difference between the actuarially determined annual required contribution and actual payments made to the pension fund.', [SortOrder] = 61.00 WHERE [Code] = '473' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '481') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('481', 'Advances from Grantors', 'A liability account that represents resources received from grantors before eligibility requirements are met.', 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Advances from Grantors', [Definition] = 'A liability account that represents resources received from grantors before eligibility requirements are met.', [SortOrder] = 62.00 WHERE [Code] = '481' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '491') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('491', 'Deposits Payable', 'Liability for deposits received as a prerequisite to providing or receiving services, goods, or both.', 63.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Deposits Payable', [Definition] = 'Liability for deposits received as a prerequisite to providing or receiving services, goods, or both.', [SortOrder] = 63.00 WHERE [Code] = '491' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '499') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('499', 'Other Current Liabilities', 'Other current liabilities not provided for elsewhere.', 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Other Current Liabilities', [Definition] = 'Other current liabilities not provided for elsewhere.', [SortOrder] = 64.00 WHERE [Code] = '499' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '500') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('500', 'Long-Term Liabilities', 'Obligations with a maturity of more than 1 year. These accounts should be used only with proprietary and fiduciary funds, as well as at the entity-wide level of reporting.', 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Long-Term Liabilities', [Definition] = 'Obligations with a maturity of more than 1 year. These accounts should be used only with proprietary and fiduciary funds, as well as at the entity-wide level of reporting.', [SortOrder] = 65.00 WHERE [Code] = '500' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '511') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('511', 'Bonds Payable', 'Bonds (general obligation, asset-backed, or revenue-backed) that have not reached or passed their maturity date and that are not due within 1 year.', 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Bonds Payable', [Definition] = 'Bonds (general obligation, asset-backed, or revenue-backed) that have not reached or passed their maturity date and that are not due within 1 year.', [SortOrder] = 66.00 WHERE [Code] = '511' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '512') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('512', 'Accreted Interest', 'An account that represents interest that is accrued on deep discount bonds. This account should be used by school districts that issue capital appreciation bonds. Such bonds are usually issued at a deep discount from the face value, and no interest payment is made until maturity. Under full accrual accounting, the district is required to accrete the interest on the bonds over the life of the bonds. Accretion is the process of systematically increasing the carrying amount of the bond to its estimated value at the maturity date of the bond. To calculate accreted interest, the district should impute the effective interest rate, using the present value, the face value (or the future value), and the period of the bond, and multiply the effective interest rate by the book value of the debt at the end of the period. Accreted interest is usually recorded as an addition to the outstanding debt liability.', 67.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Accreted Interest', [Definition] = 'An account that represents interest that is accrued on deep discount bonds. This account should be used by school districts that issue capital appreciation bonds. Such bonds are usually issued at a deep discount from the face value, and no interest payment is made until maturity. Under full accrual accounting, the district is required to accrete the interest on the bonds over the life of the bonds. Accretion is the process of systematically increasing the carrying amount of the bond to its estimated value at the maturity date of the bond. To calculate accreted interest, the district should impute the effective interest rate, using the present value, the face value (or the future value), and the period of the bond, and multiply the effective interest rate by the book value of the debt at the end of the period. Accreted interest is usually recorded as an addition to the outstanding debt liability.', [SortOrder] = 67.00 WHERE [Code] = '512' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '513') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('513', 'Unamortized Gains/Losses on Debt Refundings', 'An account that represents the difference between the reacquisition price and the net carrying amount of old debt when a current or advance refunding of debt occurs. This account should be used only when defeasance of debt occurs for proprietary funds and entity-wide statements. The unamortized loss amount should be reported as a deferred outflow of resources and amortized as a component of interest expense in a systematic and rational manner over the remaining life of the old debt or the life of the new debt, whichever is shorter. The unamortized gain amount should be reported as a deferred inflow of resources and amortized as a component of interest expense in a systematic and rational manner over the remaining life of the old debt or the life of the new debt, whichever is shorter.', 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Unamortized Gains/Losses on Debt Refundings', [Definition] = 'An account that represents the difference between the reacquisition price and the net carrying amount of old debt when a current or advance refunding of debt occurs. This account should be used only when defeasance of debt occurs for proprietary funds and entity-wide statements. The unamortized loss amount should be reported as a deferred outflow of resources and amortized as a component of interest expense in a systematic and rational manner over the remaining life of the old debt or the life of the new debt, whichever is shorter. The unamortized gain amount should be reported as a deferred inflow of resources and amortized as a component of interest expense in a systematic and rational manner over the remaining life of the old debt or the life of the new debt, whichever is shorter.', [SortOrder] = 68.00 WHERE [Code] = '513' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '521') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('521', 'Loans Payable', 'An unconditional written promise signed by the maker to pay a certain sum of money 1 year or more after the issuance date.', 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Loans Payable', [Definition] = 'An unconditional written promise signed by the maker to pay a certain sum of money 1 year or more after the issuance date.', [SortOrder] = 69.00 WHERE [Code] = '521' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '531') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('531', 'Capital Lease Obligations', 'Amounts remaining to be paid on capital lease agreements.', 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Capital Lease Obligations', [Definition] = 'Amounts remaining to be paid on capital lease agreements.', [SortOrder] = 70.00 WHERE [Code] = '531' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '551') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('551', 'Compensated Absences', 'Amounts remaining beyond the period of 1 year to be paid on compensated absences balances.', 71.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Compensated Absences', [Definition] = 'Amounts remaining beyond the period of 1 year to be paid on compensated absences balances.', [SortOrder] = 71.00 WHERE [Code] = '551' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '553') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('553', 'Special Termination Benefits', 'These are benefits offered for a short period of time to employees in connection with their termination of employment. Special termination benefits are often used as an inducement for early retirement or to address budgetary problems.', 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Special Termination Benefits', [Definition] = 'These are benefits offered for a short period of time to employees in connection with their termination of employment. Special termination benefits are often used as an inducement for early retirement or to address budgetary problems.', [SortOrder] = 72.00 WHERE [Code] = '553' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '561') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('561', 'Arbitrage Rebate Liability', 'Liabilities arising from arbitrage rebates to the Internal Revenue Service (IRS) from bond financing.', 73.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Arbitrage Rebate Liability', [Definition] = 'Liabilities arising from arbitrage rebates to the Internal Revenue Service (IRS) from bond financing.', [SortOrder] = 73.00 WHERE [Code] = '561' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '590') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('590', 'Other Long-Term Liabilities', 'Other long-term liabilities not provided for elsewhere. This account represents amounts due after more than 1 year from the balance sheet date for advances from other funds and certain miscellaneous liabilities, including workers'' compensation, self-funded insurance, special termination benefits, and legal claims and judgments.', 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Other Long-Term Liabilities', [Definition] = 'Other long-term liabilities not provided for elsewhere. This account represents amounts due after more than 1 year from the balance sheet date for advances from other funds and certain miscellaneous liabilities, including workers'' compensation, self-funded insurance, special termination benefits, and legal claims and judgments.', [SortOrder] = 74.00 WHERE [Code] = '590' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '600') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('600', 'Deferred Inflows of Resources', 'An acquisition of net assets by the government that is applicable to a future reporting period. A deferred inflow of resources should be recognized when resources are received or recognized as a receivable before (a) the period for which property taxes are levied or (b) the period when the resources are required to be used. When an asset is recorded in governmental fund financial statements but the revenue is not available, the government should report a deferred inflow of resources until such time as the revenue becomes available.', 75.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Deferred Inflows of Resources', [Definition] = 'An acquisition of net assets by the government that is applicable to a future reporting period. A deferred inflow of resources should be recognized when resources are received or recognized as a receivable before (a) the period for which property taxes are levied or (b) the period when the resources are required to be used. When an asset is recorded in governmental fund financial statements but the revenue is not available, the government should report a deferred inflow of resources until such time as the revenue becomes available.', [SortOrder] = 75.00 WHERE [Code] = '600' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '710') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('710', 'Nonspendable Fund Balance', 'The nonspendable fund balance classification includes amounts that cannot be spent because they are either (a) not in spendable form or (b) legally or contractually required to be maintained intact. This would include items not expected to be converted to cash, including inventories and prepaid amounts. It may also include the long-term amount of loans and receivables, as well as property acquired for resale and the corpus (principal) of a permanent fund.', 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Nonspendable Fund Balance', [Definition] = 'The nonspendable fund balance classification includes amounts that cannot be spent because they are either (a) not in spendable form or (b) legally or contractually required to be maintained intact. This would include items not expected to be converted to cash, including inventories and prepaid amounts. It may also include the long-term amount of loans and receivables, as well as property acquired for resale and the corpus (principal) of a permanent fund.', [SortOrder] = 76.00 WHERE [Code] = '710' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '720') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('720', 'Restricted Fund Balance', 'The restricted fund balance classification should be reported when legally enforceable constraints placed on the use of resources are either (a) externally imposed by creditors, grantors, contributors, or laws or regulations of other governments or (b) imposed by law through constitutional provisions or enabling legislation.', 77.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Restricted Fund Balance', [Definition] = 'The restricted fund balance classification should be reported when legally enforceable constraints placed on the use of resources are either (a) externally imposed by creditors, grantors, contributors, or laws or regulations of other governments or (b) imposed by law through constitutional provisions or enabling legislation.', [SortOrder] = 77.00 WHERE [Code] = '720' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '730') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('730', 'Committed Fund Balance', 'The committed fund balance classification reflects specific purposes pursuant to constraints imposed by formal action at the district''s highest level of decisionmaking authority (generally the governing board). Such constraints can only be removed or changed by the same form of formal action.', 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Committed Fund Balance', [Definition] = 'The committed fund balance classification reflects specific purposes pursuant to constraints imposed by formal action at the district''s highest level of decisionmaking authority (generally the governing board). Such constraints can only be removed or changed by the same form of formal action.', [SortOrder] = 78.00 WHERE [Code] = '730' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '740') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('740', 'Assigned Fund Balance', 'The assigned fund balance classification reflects amounts that are constrained by the government''s intent to be used for specific purposes, but meet neither the restricted nor committed forms of constraint. Also, the assigned fund balance classification is the residual classification for the special revenue, debt service, capital projects, and/or permanent funds after nonspendable, restricted, and committed balances have been identified (unless the residual amount is negative, which would require presentation as unassigned fund balance).', 79.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Assigned Fund Balance', [Definition] = 'The assigned fund balance classification reflects amounts that are constrained by the government''s intent to be used for specific purposes, but meet neither the restricted nor committed forms of constraint. Also, the assigned fund balance classification is the residual classification for the special revenue, debt service, capital projects, and/or permanent funds after nonspendable, restricted, and committed balances have been identified (unless the residual amount is negative, which would require presentation as unassigned fund balance).', [SortOrder] = 79.00 WHERE [Code] = '740' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '750') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('750', 'Unassigned Fund Balance', 'The unassigned fund balance classification is the residual classification, for the general fund only, after nonspendable, restricted, committed, and assigned balances have been identified. It is also used to report the residual amount for all other governmental funds after nonspendable, restricted, and committed balances have been identified, if the residual amount is negative.', 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Unassigned Fund Balance', [Definition] = 'The unassigned fund balance classification is the residual classification, for the general fund only, after nonspendable, restricted, committed, and assigned balances have been identified. It is also used to report the residual amount for all other governmental funds after nonspendable, restricted, and committed balances have been identified, if the residual amount is negative.', [SortOrder] = 80.00 WHERE [Code] = '750' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '760') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('760', 'Net Investment in Capital Assets', 'This account is used to record the component of net position invested in capital assets, net of related debt, that represents total capital assets less accumulated depreciation less debt directly related to capital assets. This account is to be used only in proprietary funds and entity-wide statements. (This was previously fund balance code 740.)', 81.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Net Investment in Capital Assets', [Definition] = 'This account is used to record the component of net position invested in capital assets, net of related debt, that represents total capital assets less accumulated depreciation less debt directly related to capital assets. This account is to be used only in proprietary funds and entity-wide statements. (This was previously fund balance code 740.)', [SortOrder] = 81.00 WHERE [Code] = '760' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '770') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('770', 'Restricted Net Position', 'This account is used to record the component of net position that represents net assets legally restricted by sources internal or external to the organization. This account is to be used only in proprietary funds and entity-wide statements. (This was previously fund balance code 750.)', 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Restricted Net Position', [Definition] = 'This account is used to record the component of net position that represents net assets legally restricted by sources internal or external to the organization. This account is to be used only in proprietary funds and entity-wide statements. (This was previously fund balance code 750.)', [SortOrder] = 82.00 WHERE [Code] = '770' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountBalanceSheetCode] WHERE [Code] = '780') BEGIN INSERT INTO dbo.[RefFinancialAccountBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('780', 'Unrestricted Net Position', 'This account is used to record the component of net position that represents net position not classified in accounts 760 and 770. This account is to be used only in proprietary funds and entity-wide statements. (This was previously fund balance code 760.)', 83.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountBalanceSheetCode] -SET [Description] = 'Unrestricted Net Position', [Definition] = 'This account is used to record the component of net position that represents net position not classified in accounts 760 and 770. This account is to be used only in proprietary funds and entity-wide statements. (This was previously fund balance code 760.)', [SortOrder] = 83.00 WHERE [Code] = '780' END -END - -PRINT N'Populate RefFinancialAccountCategory table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAccountCategory]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountCategory] WHERE [Code] = 'Assets') BEGIN INSERT INTO dbo.[RefFinancialAccountCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assets', 'Assets', 'Asset financial account.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountCategory] -SET [Description] = 'Assets', [Definition] = 'Asset financial account.', [SortOrder] = 1.00 WHERE [Code] = 'Assets' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountCategory] WHERE [Code] = 'Liabilities') BEGIN INSERT INTO dbo.[RefFinancialAccountCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Liabilities', 'Liabilities', 'Liability financial account.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountCategory] -SET [Description] = 'Liabilities', [Definition] = 'Liability financial account.', [SortOrder] = 3.00 WHERE [Code] = 'Liabilities' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountCategory] WHERE [Code] = 'Equity') BEGIN INSERT INTO dbo.[RefFinancialAccountCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Equity', 'Equity', 'Equity (Fund Balances/Fund Net Asset) financial account.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountCategory] -SET [Description] = 'Equity', [Definition] = 'Equity (Fund Balances/Fund Net Asset) financial account.', [SortOrder] = 5.00 WHERE [Code] = 'Equity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountCategory] WHERE [Code] = 'Revenue') BEGIN INSERT INTO dbo.[RefFinancialAccountCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Revenue', 'Revenue and Other Financing Sources', 'Revenue and Other Financing Sources - Accounts for recording revenue and other receivables by source.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountCategory] -SET [Description] = 'Revenue and Other Financing Sources', [Definition] = 'Revenue and Other Financing Sources - Accounts for recording revenue and other receivables by source.', [SortOrder] = 7.00 WHERE [Code] = 'Revenue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountCategory] WHERE [Code] = 'Expenditures') BEGIN INSERT INTO dbo.[RefFinancialAccountCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Expenditures', 'Expenditures', 'Expenditures (Function and Object) financial account.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountCategory] -SET [Description] = 'Expenditures', [Definition] = 'Expenditures (Function and Object) financial account.', [SortOrder] = 9.00 WHERE [Code] = 'Expenditures' END -END - -PRINT N'Populate RefFinancialAccountCodingSystemOrganizationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAccountCodingSystemOrganizationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountCodingSystemOrganizationType] WHERE [Code] = 'LEA') BEGIN INSERT INTO dbo.[RefFinancialAccountCodingSystemOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LEA', 'Local Education Agency', 'An administrative unit at the local level which exists primarily to operate schools or to contract for educational services. These units may or may not be co-extensive with county, city, or town boundaries.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountCodingSystemOrganizationType] -SET [Description] = 'Local Education Agency', [Definition] = 'An administrative unit at the local level which exists primarily to operate schools or to contract for educational services. These units may or may not be co-extensive with county, city, or town boundaries.', [SortOrder] = 1.00 WHERE [Code] = 'LEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountCodingSystemOrganizationType] WHERE [Code] = 'SEA') BEGIN INSERT INTO dbo.[RefFinancialAccountCodingSystemOrganizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SEA', 'State Education Agency', 'The agency of the state charged with primary responsibility for coordinating and supervising public instruction, including the setting of standards for elementary and secondary instruction programs, and administering federal grant programs.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountCodingSystemOrganizationType] -SET [Description] = 'State Education Agency', [Definition] = 'The agency of the state charged with primary responsibility for coordinating and supervising public instruction, including the setting of standards for elementary and secondary instruction programs, and administering federal grant programs.', [SortOrder] = 2.00 WHERE [Code] = 'SEA' END -END - -PRINT N'Populate RefFinancialAccountFundClassification table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAccountFundClassification]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountFundClassification] WHERE [Code] = '1') BEGIN INSERT INTO dbo.[RefFinancialAccountFundClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1', 'General Fund', 'General Fund financial account.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountFundClassification] -SET [Description] = 'General Fund', [Definition] = 'General Fund financial account.', [SortOrder] = 1.00 WHERE [Code] = '1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountFundClassification] WHERE [Code] = '2') BEGIN INSERT INTO dbo.[RefFinancialAccountFundClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2', 'Special Revenue Funds', 'Special Revenue Funds financial account.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountFundClassification] -SET [Description] = 'Special Revenue Funds', [Definition] = 'Special Revenue Funds financial account.', [SortOrder] = 2.00 WHERE [Code] = '2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountFundClassification] WHERE [Code] = '3') BEGIN INSERT INTO dbo.[RefFinancialAccountFundClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3', 'Capital Projects Funds', 'Capital Projects Funds financial account.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountFundClassification] -SET [Description] = 'Capital Projects Funds', [Definition] = 'Capital Projects Funds financial account.', [SortOrder] = 3.00 WHERE [Code] = '3' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountFundClassification] WHERE [Code] = '4') BEGIN INSERT INTO dbo.[RefFinancialAccountFundClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4', 'Debt Service Funds', 'Debt Service Funds financial account.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountFundClassification] -SET [Description] = 'Debt Service Funds', [Definition] = 'Debt Service Funds financial account.', [SortOrder] = 4.00 WHERE [Code] = '4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountFundClassification] WHERE [Code] = '5') BEGIN INSERT INTO dbo.[RefFinancialAccountFundClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('5', 'Permanent Funds', 'Permanent Funds financial account.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountFundClassification] -SET [Description] = 'Permanent Funds', [Definition] = 'Permanent Funds financial account.', [SortOrder] = 5.00 WHERE [Code] = '5' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountFundClassification] WHERE [Code] = '6') BEGIN INSERT INTO dbo.[RefFinancialAccountFundClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('6', 'Enterprise Funds', 'Enterprise Funds financial account.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountFundClassification] -SET [Description] = 'Enterprise Funds', [Definition] = 'Enterprise Funds financial account.', [SortOrder] = 6.00 WHERE [Code] = '6' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountFundClassification] WHERE [Code] = '7') BEGIN INSERT INTO dbo.[RefFinancialAccountFundClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('7', 'Internal Service Funds', 'Internal Service Funds financial account.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountFundClassification] -SET [Description] = 'Internal Service Funds', [Definition] = 'Internal Service Funds financial account.', [SortOrder] = 7.00 WHERE [Code] = '7' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountFundClassification] WHERE [Code] = '8') BEGIN INSERT INTO dbo.[RefFinancialAccountFundClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('8', 'Trust Funds', 'Trust Funds financial account.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountFundClassification] -SET [Description] = 'Trust Funds', [Definition] = 'Trust Funds financial account.', [SortOrder] = 8.00 WHERE [Code] = '8' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountFundClassification] WHERE [Code] = '9') BEGIN INSERT INTO dbo.[RefFinancialAccountFundClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('9', 'Agency Funds', 'Agency Funds financial account.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountFundClassification] -SET [Description] = 'Agency Funds', [Definition] = 'Agency Funds financial account.', [SortOrder] = 9.00 WHERE [Code] = '9' END -END - -PRINT N'Populate RefFinancialAccountLocalBalanceSheetCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAccountLocalBalanceSheetCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountLocalBalanceSheetCode] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefFinancialAccountLocalBalanceSheetCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountLocalBalanceSheetCode] -SET [Description] = 'Other', [Definition] = 'Other', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefFinancialAccountLocalFundClassification table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAccountLocalFundClassification]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountLocalFundClassification] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefFinancialAccountLocalFundClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountLocalFundClassification] -SET [Description] = 'Other', [Definition] = 'Other', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefFinancialAccountLocalProgramCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAccountLocalProgramCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountLocalProgramCode] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefFinancialAccountLocalProgramCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountLocalProgramCode] -SET [Description] = 'Other', [Definition] = 'Other', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefFinancialAccountLocalRevenueCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAccountLocalRevenueCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountLocalRevenueCode] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefFinancialAccountLocalRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountLocalRevenueCode] -SET [Description] = 'Other', [Definition] = 'Other', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefFinancialAccountProgramCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAccountProgramCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountProgramCode] WHERE [Code] = '100') BEGIN INSERT INTO dbo.[RefFinancialAccountProgramCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('100', 'Regular Elementary/Secondary Education Programs', 'Regular Elementary/Secondary Education Programs the program category used for financial accounting.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountProgramCode] -SET [Description] = 'Regular Elementary/Secondary Education Programs', [Definition] = 'Regular Elementary/Secondary Education Programs the program category used for financial accounting.', [SortOrder] = 1.00 WHERE [Code] = '100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountProgramCode] WHERE [Code] = '200') BEGIN INSERT INTO dbo.[RefFinancialAccountProgramCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('200', 'Special Programs', 'Special Programs is the program category used for financial accounting.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountProgramCode] -SET [Description] = 'Special Programs', [Definition] = 'Special Programs is the program category used for financial accounting.', [SortOrder] = 2.00 WHERE [Code] = '200' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountProgramCode] WHERE [Code] = '300') BEGIN INSERT INTO dbo.[RefFinancialAccountProgramCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('300', 'Vocational and Technical Programs', 'Vocational and Technical Programs is the program category used for financial accounting.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountProgramCode] -SET [Description] = 'Vocational and Technical Programs', [Definition] = 'Vocational and Technical Programs is the program category used for financial accounting.', [SortOrder] = 3.00 WHERE [Code] = '300' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountProgramCode] WHERE [Code] = '400') BEGIN INSERT INTO dbo.[RefFinancialAccountProgramCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('400', 'Other Instructional Programs—Elementary/Secondary', 'Other Instructional Programs—Elementary/Secondary is the program category used for financial accounting.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountProgramCode] -SET [Description] = 'Other Instructional Programs—Elementary/Secondary', [Definition] = 'Other Instructional Programs—Elementary/Secondary is the program category used for financial accounting.', [SortOrder] = 4.00 WHERE [Code] = '400' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountProgramCode] WHERE [Code] = '500') BEGIN INSERT INTO dbo.[RefFinancialAccountProgramCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('500', 'Nonpublic School Programs', 'Nonpublic School Programs is the program category used for financial accounting.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountProgramCode] -SET [Description] = 'Nonpublic School Programs', [Definition] = 'Nonpublic School Programs is the program category used for financial accounting.', [SortOrder] = 5.00 WHERE [Code] = '500' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountProgramCode] WHERE [Code] = '600') BEGIN INSERT INTO dbo.[RefFinancialAccountProgramCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('600', 'Adult/Continuing Education Programs', 'Adult/Continuing Education Programs is the program category used for financial accounting.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountProgramCode] -SET [Description] = 'Adult/Continuing Education Programs', [Definition] = 'Adult/Continuing Education Programs is the program category used for financial accounting.', [SortOrder] = 6.00 WHERE [Code] = '600' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountProgramCode] WHERE [Code] = '700') BEGIN INSERT INTO dbo.[RefFinancialAccountProgramCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('700', 'Community/Junior College Education Programs', 'Community/Junior College Education Programs is the program category used for financial accounting.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountProgramCode] -SET [Description] = 'Community/Junior College Education Programs', [Definition] = 'Community/Junior College Education Programs is the program category used for financial accounting.', [SortOrder] = 7.00 WHERE [Code] = '700' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountProgramCode] WHERE [Code] = '800') BEGIN INSERT INTO dbo.[RefFinancialAccountProgramCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('800', 'Community Services Programs', 'Community Services Programs financial accounts.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountProgramCode] -SET [Description] = 'Community Services Programs', [Definition] = 'Community Services Programs financial accounts.', [SortOrder] = 8.00 WHERE [Code] = '800' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountProgramCode] WHERE [Code] = '900') BEGIN INSERT INTO dbo.[RefFinancialAccountProgramCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('900', 'Cocurricular and Extracurricular Activities', 'Cocurricular and Extracurricular Activities is the program category used for financial accounting.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountProgramCode] -SET [Description] = 'Cocurricular and Extracurricular Activities', [Definition] = 'Cocurricular and Extracurricular Activities is the program category used for financial accounting.', [SortOrder] = 9.00 WHERE [Code] = '900' END -END - -PRINT N'Populate RefFinancialAccountRevenueCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAccountRevenueCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1000') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1000', 'Revenue From Local Sources', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenue From Local Sources', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = '1000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1100') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1100', 'Taxes Levied/Assessed by the School District', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Taxes Levied/Assessed by the School District', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = '1100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1110') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1110', 'Ad Valorem Taxes (Levied/Assessed by School Districts)', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Ad Valorem Taxes (Levied/Assessed by School Districts)', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = '1110' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1120') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1120', 'Sales and Use Taxes (Levied/Assessed by School Districts)', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Sales and Use Taxes (Levied/Assessed by School Districts)', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = '1120' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1130') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1130', 'Income Taxes (Levied/Assessed by School Districts)', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Income Taxes (Levied/Assessed by School Districts)', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = '1130' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1140') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1140', 'Penalties and Interest on Taxes (Levied/Assessed by School Districts)', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Penalties and Interest on Taxes (Levied/Assessed by School Districts)', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = '1140' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1190') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1190', 'Other Taxes (Levied/Assessed by School Districts)', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Other Taxes (Levied/Assessed by School Districts)', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = '1190' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1200') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1200', 'Revenue from Local Governmental Units Other Than School Districts', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenue from Local Governmental Units Other Than School Districts', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = '1200' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1210') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1210', 'Ad Valorem Taxes (Received from Other Government Units)', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Ad Valorem Taxes (Received from Other Government Units)', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = '1210' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1220') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1220', 'Sales and Use Tax (Received from Other Government Units)', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Sales and Use Tax (Received from Other Government Units)', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = '1220' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1230') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1230', 'Income Taxes (Received from Other Government Units)', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Income Taxes (Received from Other Government Units)', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = '1230' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1240') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1240', 'Penalties and Interest on Taxes (Received from Other Government Units)', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Penalties and Interest on Taxes (Received from Other Government Units)', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = '1240' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1280') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1280', 'Revenue in Lieu of Taxes (Received from Other Government Units)', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenue in Lieu of Taxes (Received from Other Government Units)', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = '1280' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1290') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1290', 'Other Taxes (Received from Other Government Units)', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Other Taxes (Received from Other Government Units)', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = '1290' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1300') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1300', 'Tuition', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Tuition', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = '1300' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1310') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1310', 'Tuition From Individuals', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Tuition From Individuals', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = '1310' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1311') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1311', 'Tuition from Individuals Excluding Summer School', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Tuition from Individuals Excluding Summer School', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = '1311' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1312') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1312', 'Tuition from Individuals for Summer School', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Tuition from Individuals for Summer School', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = '1312' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1320') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1320', 'Tuition from Other Government Sources Within the State', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Tuition from Other Government Sources Within the State', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = '1320' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1321') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1321', 'Tuition from Other School Districts Within the State', NULL, 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Tuition from Other School Districts Within the State', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = '1321' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1322') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1322', 'Tuition from Other Government Sources Excluding School Districts Within the State', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Tuition from Other Government Sources Excluding School Districts Within the State', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = '1322' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1330') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1330', 'Tuition from Other Government Sources Outside the State', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Tuition from Other Government Sources Outside the State', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = '1330' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1331') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1331', 'Tuition from School Districts Outside the State', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Tuition from School Districts Outside the State', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = '1331' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1340') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1340', 'Tuition from Other Private Sources (Other Than Individuals)', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Tuition from Other Private Sources (Other Than Individuals)', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = '1340' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1350') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1350', 'Tuition from the State/Other School Districts for Voucher Program Students', NULL, 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Tuition from the State/Other School Districts for Voucher Program Students', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = '1350' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1400') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1400', 'Transportation Fees', NULL, 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Transportation Fees', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = '1400' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1410') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1410', 'Transportation Fees from Individuals', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Transportation Fees from Individuals', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = '1410' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1420') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1420', 'Transportation Fees from Other Government Sources Within the State', NULL, 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Transportation Fees from Other Government Sources Within the State', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = '1420' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1421') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1421', 'Transportation Fees from Other School Districts Within the State', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Transportation Fees from Other School Districts Within the State', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = '1421' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1422') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1422', 'Transportation Fees from Other Government Sources Excluding School Districts Within the State', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Transportation Fees from Other Government Sources Excluding School Districts Within the State', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = '1422' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1430') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1430', 'Transportation Fees from Other Government Sources Outside the State', NULL, 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Transportation Fees from Other Government Sources Outside the State', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = '1430' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1431') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1431', 'Transportation Fees from Other School Districts Outside the State', NULL, 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Transportation Fees from Other School Districts Outside the State', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = '1431' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1440') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1440', 'Transportation Fees from Other Private Sources (other than individuals)', NULL, 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Transportation Fees from Other Private Sources (other than individuals)', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = '1440' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1500') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1500', 'Investment Income', NULL, 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Investment Income', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = '1500' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1510') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1510', 'Interest on Investments', NULL, 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Interest on Investments', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = '1510' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1520') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1520', 'Dividends on Investments', NULL, 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Dividends on Investments', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = '1520' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1530') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1530', 'Net Increase in the Fair Value of Investments', NULL, 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Net Increase in the Fair Value of Investments', [Definition] = NULL, [SortOrder] = 37.00 WHERE [Code] = '1530' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1531') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1531', 'Realized Gains (Losses) on Investments', NULL, 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Realized Gains (Losses) on Investments', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = '1531' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1532') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1532', 'Unrealized Gains (Losses) on Investments', NULL, 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Unrealized Gains (Losses) on Investments', [Definition] = NULL, [SortOrder] = 39.00 WHERE [Code] = '1532' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1540') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1540', 'Investment Income from Real Property', NULL, 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Investment Income from Real Property', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = '1540' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1600') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1600', 'Food Services', NULL, 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Food Services', [Definition] = NULL, [SortOrder] = 41.00 WHERE [Code] = '1600' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1610') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1610', 'Daily Sales-Reimbursable Programs', NULL, 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Daily Sales-Reimbursable Programs', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = '1610' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1611') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1611', 'Daily Sales-School Lunch Program', NULL, 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Daily Sales-School Lunch Program', [Definition] = NULL, [SortOrder] = 43.00 WHERE [Code] = '1611' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1612') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1612', 'Daily Sales-School Breakfast Program', NULL, 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Daily Sales-School Breakfast Program', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = '1612' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1613') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1613', 'Daily Sales-Special Milk Program', NULL, 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Daily Sales-Special Milk Program', [Definition] = NULL, [SortOrder] = 45.00 WHERE [Code] = '1613' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1614') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1614', 'Daily Sales-After-School Programs', NULL, 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Daily Sales-After-School Programs', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = '1614' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1620') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1620', 'Daily Sales-Nonreimbursable Programs', NULL, 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Daily Sales-Nonreimbursable Programs', [Definition] = NULL, [SortOrder] = 47.00 WHERE [Code] = '1620' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1630') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1630', 'Special Functions', NULL, 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Special Functions', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = '1630' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1650') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1650', 'Daily Sales-Summer Food Programs', NULL, 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Daily Sales-Summer Food Programs', [Definition] = NULL, [SortOrder] = 49.00 WHERE [Code] = '1650' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1700') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1700', 'District Activities', NULL, 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'District Activities', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = '1700' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1710') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1710', 'Admissions', NULL, 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Admissions', [Definition] = NULL, [SortOrder] = 51.00 WHERE [Code] = '1710' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1720') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1720', 'Bookstore Sales', NULL, 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Bookstore Sales', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = '1720' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1730') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1730', 'Student Organization Membership Dues and Fees', NULL, 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Student Organization Membership Dues and Fees', [Definition] = NULL, [SortOrder] = 53.00 WHERE [Code] = '1730' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1740') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1740', 'Fees', NULL, 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Fees', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = '1740' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1750') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1750', 'Revenue From Enterprise Activities', NULL, 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenue From Enterprise Activities', [Definition] = NULL, [SortOrder] = 55.00 WHERE [Code] = '1750' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1790') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1790', 'Other Activity Income', NULL, 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Other Activity Income', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = '1790' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1800') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1800', 'Revenue From Community Services Activities', NULL, 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenue From Community Services Activities', [Definition] = NULL, [SortOrder] = 57.00 WHERE [Code] = '1800' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1900') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1900', 'Other Revenue From Local Sources', NULL, 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Other Revenue From Local Sources', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = '1900' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1910') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1910', 'Rentals', NULL, 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Rentals', [Definition] = NULL, [SortOrder] = 59.00 WHERE [Code] = '1910' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1920') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1920', 'Contributions and Donations From Private Sources', NULL, 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Contributions and Donations From Private Sources', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = '1920' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1930') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1930', 'Gains or Losses on the Sale of Capital Assets', NULL, 61.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Gains or Losses on the Sale of Capital Assets', [Definition] = NULL, [SortOrder] = 61.00 WHERE [Code] = '1930' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1940') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1940', 'Textbook Sales and Rentals', NULL, 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Textbook Sales and Rentals', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = '1940' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1941') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1941', 'Textbook Sales', NULL, 63.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Textbook Sales', [Definition] = NULL, [SortOrder] = 63.00 WHERE [Code] = '1941' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1942') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1942', 'Textbook Rentals', NULL, 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Textbook Rentals', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = '1942' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1950') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1950', 'Miscellaneous Revenues From Other School Districts', NULL, 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Miscellaneous Revenues From Other School Districts', [Definition] = NULL, [SortOrder] = 65.00 WHERE [Code] = '1950' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1951') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1951', 'Miscellaneous Revenue from Other School Districts Within the State', NULL, 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Miscellaneous Revenue from Other School Districts Within the State', [Definition] = NULL, [SortOrder] = 66.00 WHERE [Code] = '1951' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1952') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1952', 'Miscellaneous Revenue from Other School Districts Outside the State', NULL, 67.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Miscellaneous Revenue from Other School Districts Outside the State', [Definition] = NULL, [SortOrder] = 67.00 WHERE [Code] = '1952' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1960') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1960', 'Miscellaneous Revenues from Other Local Governmental Units', NULL, 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Miscellaneous Revenues from Other Local Governmental Units', [Definition] = NULL, [SortOrder] = 68.00 WHERE [Code] = '1960' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1970') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1970', 'Revenues From Other Departments in the Agency', NULL, 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenues From Other Departments in the Agency', [Definition] = NULL, [SortOrder] = 69.00 WHERE [Code] = '1970' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1980') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1980', 'Refund of Prior Year''s Expenditures', NULL, 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Refund of Prior Year''s Expenditures', [Definition] = NULL, [SortOrder] = 70.00 WHERE [Code] = '1980' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '1990') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1990', 'Miscellaneous Local Revenue', NULL, 71.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Miscellaneous Local Revenue', [Definition] = NULL, [SortOrder] = 71.00 WHERE [Code] = '1990' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '2000') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2000', 'Revenue From Intermediate Sources', NULL, 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenue From Intermediate Sources', [Definition] = NULL, [SortOrder] = 72.00 WHERE [Code] = '2000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '2100') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2100', 'Unrestricted Grants-in-Aid', NULL, 73.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Unrestricted Grants-in-Aid', [Definition] = NULL, [SortOrder] = 73.00 WHERE [Code] = '2100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '2200') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2200', 'Restricted Grants-in-Aid', NULL, 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Restricted Grants-in-Aid', [Definition] = NULL, [SortOrder] = 74.00 WHERE [Code] = '2200' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '2800') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2800', 'Revenue in Lieu of Taxes', NULL, 75.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenue in Lieu of Taxes', [Definition] = NULL, [SortOrder] = 75.00 WHERE [Code] = '2800' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '2900') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2900', 'Revenue for/on Behalf of the School District', NULL, 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenue for/on Behalf of the School District', [Definition] = NULL, [SortOrder] = 76.00 WHERE [Code] = '2900' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '3000') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3000', 'Revenue From State Sources', NULL, 77.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenue From State Sources', [Definition] = NULL, [SortOrder] = 77.00 WHERE [Code] = '3000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '3100') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3100', 'Unrestricted Grants-in-Aid', NULL, 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Unrestricted Grants-in-Aid', [Definition] = NULL, [SortOrder] = 78.00 WHERE [Code] = '3100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '3200') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3200', 'Restricted Grants-in-Aid', NULL, 79.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Restricted Grants-in-Aid', [Definition] = NULL, [SortOrder] = 79.00 WHERE [Code] = '3200' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '3700') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3700', 'State Grants Through Intermediate Sources', NULL, 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'State Grants Through Intermediate Sources', [Definition] = NULL, [SortOrder] = 80.00 WHERE [Code] = '3700' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '3800') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3800', 'Revenue in Lieu of Taxes', NULL, 81.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenue in Lieu of Taxes', [Definition] = NULL, [SortOrder] = 81.00 WHERE [Code] = '3800' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '3900') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3900', 'Revenue for/on Behalf of the School District', NULL, 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenue for/on Behalf of the School District', [Definition] = NULL, [SortOrder] = 82.00 WHERE [Code] = '3900' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '4000') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4000', 'Revenue From Federal Sources', NULL, 83.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenue From Federal Sources', [Definition] = NULL, [SortOrder] = 83.00 WHERE [Code] = '4000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '4100') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4100', 'Unrestricted Grants-in-Aid Direct from the Federal Government', NULL, 84.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Unrestricted Grants-in-Aid Direct from the Federal Government', [Definition] = NULL, [SortOrder] = 84.00 WHERE [Code] = '4100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '4200') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4200', 'Unrestricted Grants-in-Aid from the Federal Government Through the State', NULL, 85.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Unrestricted Grants-in-Aid from the Federal Government Through the State', [Definition] = NULL, [SortOrder] = 85.00 WHERE [Code] = '4200' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '4300') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4300', 'Restricted Grants-in-Aid Direct From the Federal Government', NULL, 86.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Restricted Grants-in-Aid Direct From the Federal Government', [Definition] = NULL, [SortOrder] = 86.00 WHERE [Code] = '4300' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '4500') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4500', 'Restricted Grants-in-Aid From the Federal Government Through the State', NULL, 87.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Restricted Grants-in-Aid From the Federal Government Through the State', [Definition] = NULL, [SortOrder] = 87.00 WHERE [Code] = '4500' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '4700') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4700', 'Grants-in-Aid From the Federal Government Through Other Intermediate Agencies', NULL, 88.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Grants-in-Aid From the Federal Government Through Other Intermediate Agencies', [Definition] = NULL, [SortOrder] = 88.00 WHERE [Code] = '4700' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '4800') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4800', 'Revenue in Lieu of Taxes', NULL, 89.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenue in Lieu of Taxes', [Definition] = NULL, [SortOrder] = 89.00 WHERE [Code] = '4800' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '4900') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4900', 'Revenue for/on Behalf of the School District', NULL, 90.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Revenue for/on Behalf of the School District', [Definition] = NULL, [SortOrder] = 90.00 WHERE [Code] = '4900' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '5000') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('5000', 'Other Financing Sources', NULL, 91.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Other Financing Sources', [Definition] = NULL, [SortOrder] = 91.00 WHERE [Code] = '5000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '5100') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('5100', 'Issuance of Bonds', NULL, 92.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Issuance of Bonds', [Definition] = NULL, [SortOrder] = 92.00 WHERE [Code] = '5100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '5110') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('5110', 'Bond Principal', NULL, 93.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Bond Principal', [Definition] = NULL, [SortOrder] = 93.00 WHERE [Code] = '5110' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '5120') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('5120', 'Premium on the Issuance of Bonds', NULL, 94.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Premium on the Issuance of Bonds', [Definition] = NULL, [SortOrder] = 94.00 WHERE [Code] = '5120' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '5200') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('5200', 'Fund Transfers In', NULL, 95.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Fund Transfers In', [Definition] = NULL, [SortOrder] = 95.00 WHERE [Code] = '5200' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '5300') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('5300', 'Proceeds From the Disposal of Real or Personal Property', NULL, 96.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Proceeds From the Disposal of Real or Personal Property', [Definition] = NULL, [SortOrder] = 96.00 WHERE [Code] = '5300' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '5400') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('5400', 'Loan Proceeds', NULL, 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Loan Proceeds', [Definition] = NULL, [SortOrder] = 97.00 WHERE [Code] = '5400' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '5500') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('5500', 'Capital Lease Proceeds', NULL, 98.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Capital Lease Proceeds', [Definition] = NULL, [SortOrder] = 98.00 WHERE [Code] = '5500' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '5600') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('5600', 'Other Long-Term Debt Proceeds', NULL, 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Other Long-Term Debt Proceeds', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = '5600' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '6000') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('6000', 'Other Revenue Items', NULL, 100.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Other Revenue Items', [Definition] = NULL, [SortOrder] = 100.00 WHERE [Code] = '6000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '6100') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('6100', 'Capital Contributions', NULL, 101.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Capital Contributions', [Definition] = NULL, [SortOrder] = 101.00 WHERE [Code] = '6100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '6200') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('6200', 'Amortization of Premium on Issuance of Bonds', NULL, 102.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Amortization of Premium on Issuance of Bonds', [Definition] = NULL, [SortOrder] = 102.00 WHERE [Code] = '6200' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '6300') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('6300', 'Special Items', NULL, 103.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Special Items', [Definition] = NULL, [SortOrder] = 103.00 WHERE [Code] = '6300' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAccountRevenueCode] WHERE [Code] = '6400') BEGIN INSERT INTO dbo.[RefFinancialAccountRevenueCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('6400', 'Extraordinary Items', NULL, 104.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAccountRevenueCode] -SET [Description] = 'Extraordinary Items', [Definition] = NULL, [SortOrder] = 104.00 WHERE [Code] = '6400' END -END - -PRINT N'Populate RefFinancialAidApplicationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAidApplicationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidApplicationType] WHERE [Code] = 'FAFSA') BEGIN INSERT INTO dbo.[RefFinancialAidApplicationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FAFSA', 'Free Application for Federal Student Aid (FAFSA)', 'Free Application for Federal Student Aid (FAFSA)', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidApplicationType] -SET [Description] = 'Free Application for Federal Student Aid (FAFSA)', [Definition] = 'Free Application for Federal Student Aid (FAFSA)', [SortOrder] = 0.00 WHERE [Code] = 'FAFSA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidApplicationType] WHERE [Code] = 'StateApplication') BEGIN INSERT INTO dbo.[RefFinancialAidApplicationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateApplication', 'State Application', 'State Application', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidApplicationType] -SET [Description] = 'State Application', [Definition] = 'State Application', [SortOrder] = 2.00 WHERE [Code] = 'StateApplication' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidApplicationType] WHERE [Code] = 'InstitutionApplication') BEGIN INSERT INTO dbo.[RefFinancialAidApplicationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InstitutionApplication', 'Institution Application', 'Institution Application', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidApplicationType] -SET [Description] = 'Institution Application', [Definition] = 'Institution Application', [SortOrder] = 4.00 WHERE [Code] = 'InstitutionApplication' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidApplicationType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefFinancialAidApplicationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidApplicationType] -SET [Description] = 'Other', [Definition] = 'Other', [SortOrder] = 6.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidApplicationType] WHERE [Code] = 'None') BEGIN INSERT INTO dbo.[RefFinancialAidApplicationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('None', 'None', 'None', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidApplicationType] -SET [Description] = 'None', [Definition] = 'None', [SortOrder] = 8.00 WHERE [Code] = 'None' END -END - -PRINT N'Populate RefFinancialAidAwardStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAidAwardStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardStatus] WHERE [Code] = 'Awarded') BEGIN INSERT INTO dbo.[RefFinancialAidAwardStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Awarded', 'Awarded', 'Awarded', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardStatus] -SET [Description] = 'Awarded', [Definition] = 'Awarded', [SortOrder] = 1.00 WHERE [Code] = 'Awarded' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardStatus] WHERE [Code] = 'Accepted') BEGIN INSERT INTO dbo.[RefFinancialAidAwardStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Accepted', 'Accepted', 'Accepted', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardStatus] -SET [Description] = 'Accepted', [Definition] = 'Accepted', [SortOrder] = 2.00 WHERE [Code] = 'Accepted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardStatus] WHERE [Code] = 'Disbursed') BEGIN INSERT INTO dbo.[RefFinancialAidAwardStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Disbursed', 'Disbursed', 'Disbursed', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardStatus] -SET [Description] = 'Disbursed', [Definition] = 'Disbursed', [SortOrder] = 3.00 WHERE [Code] = 'Disbursed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardStatus] WHERE [Code] = 'Declined') BEGIN INSERT INTO dbo.[RefFinancialAidAwardStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Declined', 'Declined', 'Declined', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardStatus] -SET [Description] = 'Declined', [Definition] = 'Declined', [SortOrder] = 5.00 WHERE [Code] = 'Declined' END -END - -PRINT N'Populate RefFinancialAidAwardType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAidAwardType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'PellGrants') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PellGrants', 'Pell grants', 'Pell grants', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Pell grants', [Definition] = 'Pell grants', [SortOrder] = 1.00 WHERE [Code] = 'PellGrants' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'OtherFederalGrants') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherFederalGrants', 'Other federal grants', 'Other federal grants', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Other federal grants', [Definition] = 'Other federal grants', [SortOrder] = 2.00 WHERE [Code] = 'OtherFederalGrants' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'StateAndLocalGrants') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateAndLocalGrants', 'State and local grants', 'State and local grants', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'State and local grants', [Definition] = 'State and local grants', [SortOrder] = 3.00 WHERE [Code] = 'StateAndLocalGrants' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'InstitutionalGrants') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InstitutionalGrants', 'Institutional grants', 'Institutional grants', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Institutional grants', [Definition] = 'Institutional grants', [SortOrder] = 4.00 WHERE [Code] = 'InstitutionalGrants' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'PrivateGrants') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrivateGrants', 'Private grants', 'Private grants', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Private grants', [Definition] = 'Private grants', [SortOrder] = 5.00 WHERE [Code] = 'PrivateGrants' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'OtherGrants') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherGrants', 'Other grants', 'Other grants', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Other grants', [Definition] = 'Other grants', [SortOrder] = 6.00 WHERE [Code] = 'OtherGrants' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'Assistantships') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assistantships', 'Assistantships', 'Assistantships', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Assistantships', [Definition] = 'Assistantships', [SortOrder] = 7.00 WHERE [Code] = 'Assistantships' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'FederalScholarships') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FederalScholarships', 'Federal scholarships', 'Federal scholarships', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Federal scholarships', [Definition] = 'Federal scholarships', [SortOrder] = 8.00 WHERE [Code] = 'FederalScholarships' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'StateAndLocalScholarships') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateAndLocalScholarships', 'State and local scholarships', 'State and local scholarships', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'State and local scholarships', [Definition] = 'State and local scholarships', [SortOrder] = 9.00 WHERE [Code] = 'StateAndLocalScholarships' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'InstitutionalScholarships') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InstitutionalScholarships', 'Institutional scholarships', 'Institutional scholarships', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Institutional scholarships', [Definition] = 'Institutional scholarships', [SortOrder] = 10.00 WHERE [Code] = 'InstitutionalScholarships' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'PrivateScholarships') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrivateScholarships', 'Private scholarships', 'Private scholarships', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Private scholarships', [Definition] = 'Private scholarships', [SortOrder] = 11.00 WHERE [Code] = 'PrivateScholarships' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'OtherScholarships') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherScholarships', 'Other scholarships', 'Other scholarships', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Other scholarships', [Definition] = 'Other scholarships', [SortOrder] = 12.00 WHERE [Code] = 'OtherScholarships' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'FederalSubsidizedLoans') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FederalSubsidizedLoans', 'Federal subsidized loans', 'Federal subsidized loans', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Federal subsidized loans', [Definition] = 'Federal subsidized loans', [SortOrder] = 13.00 WHERE [Code] = 'FederalSubsidizedLoans' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'FederalUnsubsidizedLoans') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FederalUnsubsidizedLoans', 'Federal unsubsidized loans', 'Federal unsubsidized loans', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Federal unsubsidized loans', [Definition] = 'Federal unsubsidized loans', [SortOrder] = 14.00 WHERE [Code] = 'FederalUnsubsidizedLoans' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'PrivateLoans') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrivateLoans', 'Private loans', 'Private loans', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Private loans', [Definition] = 'Private loans', [SortOrder] = 15.00 WHERE [Code] = 'PrivateLoans' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'StateLoans') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateLoans', 'State loans', 'State loans', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'State loans', [Definition] = 'State loans', [SortOrder] = 16.00 WHERE [Code] = 'StateLoans' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'InstitutionalLoans') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InstitutionalLoans', 'Institutional loans', 'Institutional loans', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Institutional loans', [Definition] = 'Institutional loans', [SortOrder] = 17.00 WHERE [Code] = 'InstitutionalLoans' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'ParentPLUSLoans') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ParentPLUSLoans', 'Parent PLUS loans', 'Parent PLUS loans', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Parent PLUS loans', [Definition] = 'Parent PLUS loans', [SortOrder] = 18.00 WHERE [Code] = 'ParentPLUSLoans' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'OtherLoans') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherLoans', 'Other loans', 'Other loans', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Other loans', [Definition] = 'Other loans', [SortOrder] = 19.00 WHERE [Code] = 'OtherLoans' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'StateWork') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateWork', 'State work', 'State work', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'State work', [Definition] = 'State work', [SortOrder] = 19.00 WHERE [Code] = 'StateWork' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'FederalWorkStudy') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FederalWorkStudy', 'Federal work study', 'Federal work study', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Federal work study', [Definition] = 'Federal work study', [SortOrder] = 20.00 WHERE [Code] = 'FederalWorkStudy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidAwardType] WHERE [Code] = 'OtherOnCampusWork') BEGIN INSERT INTO dbo.[RefFinancialAidAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherOnCampusWork', 'Other on-campus work', 'Other on-campus work', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidAwardType] -SET [Description] = 'Other on-campus work', [Definition] = 'Other on-campus work', [SortOrder] = 21.00 WHERE [Code] = 'OtherOnCampusWork' END -END - -PRINT N'Populate RefFinancialAidVeteransBenefitStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAidVeteransBenefitStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidVeteransBenefitStatus] WHERE [Code] = 'VeteranReceivingBenefits') BEGIN INSERT INTO dbo.[RefFinancialAidVeteransBenefitStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VeteranReceivingBenefits', 'Veteran receiving benefits', 'Veteran receiving benefits', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidVeteransBenefitStatus] -SET [Description] = 'Veteran receiving benefits', [Definition] = 'Veteran receiving benefits', [SortOrder] = 1.00 WHERE [Code] = 'VeteranReceivingBenefits' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidVeteransBenefitStatus] WHERE [Code] = 'VeteranDoesNotReceiveBenefits') BEGIN INSERT INTO dbo.[RefFinancialAidVeteransBenefitStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VeteranDoesNotReceiveBenefits', 'Veteran does not receive benefits', 'Veteran does not receive benefits', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidVeteransBenefitStatus] -SET [Description] = 'Veteran does not receive benefits', [Definition] = 'Veteran does not receive benefits', [SortOrder] = 3.00 WHERE [Code] = 'VeteranDoesNotReceiveBenefits' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidVeteransBenefitStatus] WHERE [Code] = 'DependentReceivingBenefits') BEGIN INSERT INTO dbo.[RefFinancialAidVeteransBenefitStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DependentReceivingBenefits', 'Dependent receiving benefits', 'Dependent receiving benefits', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidVeteransBenefitStatus] -SET [Description] = 'Dependent receiving benefits', [Definition] = 'Dependent receiving benefits', [SortOrder] = 5.00 WHERE [Code] = 'DependentReceivingBenefits' END -END - -PRINT N'Populate RefFinancialAidVeteransBenefitType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialAidVeteransBenefitType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidVeteransBenefitType] WHERE [Code] = 'Post911GIBill') BEGIN INSERT INTO dbo.[RefFinancialAidVeteransBenefitType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Post911GIBill', 'Post-9/11 GI Bill', 'Post-9/11 GI Bill', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidVeteransBenefitType] -SET [Description] = 'Post-9/11 GI Bill', [Definition] = 'Post-9/11 GI Bill', [SortOrder] = 1.00 WHERE [Code] = 'Post911GIBill' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialAidVeteransBenefitType] WHERE [Code] = 'DODTuitionAssistance') BEGIN INSERT INTO dbo.[RefFinancialAidVeteransBenefitType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DODTuitionAssistance', 'Department of Defense Tuition Assistance', 'Department of Defense Tuition Assistance', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialAidVeteransBenefitType] -SET [Description] = 'Department of Defense Tuition Assistance', [Definition] = 'Department of Defense Tuition Assistance', [SortOrder] = 3.00 WHERE [Code] = 'DODTuitionAssistance' END -END - -PRINT N'Populate RefFinancialExpenditureFunctionCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialExpenditureFunctionCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '1000') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1000', 'Instruction', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Instruction', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = '1000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2000') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2000', 'Support Services', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Support Services', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = '2000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2100') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2100', 'Support Services-Students', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Support Services-Students', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = '2100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2110') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2110', 'Attendance and Social Work Services', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Attendance and Social Work Services', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = '2110' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2120') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2120', 'Guidance Services', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Guidance Services', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = '2120' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2130') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2130', 'Health Services', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Health Services', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = '2130' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2140') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2140', 'Psychological Services', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Psychological Services', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = '2140' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2150') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2150', 'Speech Pathology and Audiology Services', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Speech Pathology and Audiology Services', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = '2150' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2160') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2160', 'Occupational Therapy-Related Services', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Occupational Therapy-Related Services', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = '2160' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2170') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2170', 'Physical Therapy-Related Services', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Physical Therapy-Related Services', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = '2170' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2180') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2180', 'Visually Impaired/Vision Services', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Visually Impaired/Vision Services', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = '2180' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2190') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2190', 'Other Support Services-Student', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Other Support Services-Student', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = '2190' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2200') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2200', 'Support Services-Instruction', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Support Services-Instruction', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = '2200' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2210') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2210', 'Improvement of Instruction', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Improvement of Instruction', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = '2210' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2212') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2212', 'Instruction and Curriculum Development', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Instruction and Curriculum Development', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = '2212' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2213') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2213', 'Instructional Staff Training', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Instructional Staff Training', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = '2213' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2219') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2219', 'Other Improvement of Instruction Services', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Other Improvement of Instruction Services', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = '2219' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2220') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2220', 'Library/Media Services', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Library/Media Services', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = '2220' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2230') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2230', 'Instruction-Related Technology', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Instruction-Related Technology', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = '2230' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2240') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2240', 'Academic Student Assessment', NULL, 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Academic Student Assessment', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = '2240' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2290') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2290', 'Other Support Services-Instructional Staff', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Other Support Services-Instructional Staff', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = '2290' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2300') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2300', 'Support Services-General Administration', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Support Services-General Administration', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = '2300' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2310') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2310', 'Board of Education', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Board of Education', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = '2310' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2320') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2320', 'Executive Administration', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Executive Administration', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = '2320' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2400') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2400', 'Support Services-School Administration', NULL, 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Support Services-School Administration', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = '2400' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2410') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2410', 'Office of the Principal', NULL, 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Office of the Principal', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = '2410' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2490') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2490', 'Other Support Services-School Administration', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Other Support Services-School Administration', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = '2490' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2500') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2500', 'Central Services', NULL, 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Central Services', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = '2500' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2510') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2510', 'Fiscal Services', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Fiscal Services', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = '2510' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2520') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2520', 'Purchasing, Warehousing, and Distributing Services', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Purchasing, Warehousing, and Distributing Services', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = '2520' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2530') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2530', 'Printing, Publishing, and Duplicating Services', NULL, 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Printing, Publishing, and Duplicating Services', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = '2530' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2540') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2540', 'Planning, Research, Development, and Evaluation Services', NULL, 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Planning, Research, Development, and Evaluation Services', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = '2540' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2560') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2560', 'Public Information Services', NULL, 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Public Information Services', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = '2560' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2570') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2570', 'Personnel Services', NULL, 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Personnel Services', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = '2570' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2580') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2580', 'Administrative Technology Services', NULL, 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Administrative Technology Services', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = '2580' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2590') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2590', 'Other Support Services-Central Services', NULL, 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Other Support Services-Central Services', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = '2590' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2600') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2600', 'Operation and Maintenance of Plant', NULL, 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Operation and Maintenance of Plant', [Definition] = NULL, [SortOrder] = 37.00 WHERE [Code] = '2600' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2610') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2610', 'Operation of Buildings', NULL, 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Operation of Buildings', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = '2610' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2620') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2620', 'Maintenance of Buildings', NULL, 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Maintenance of Buildings', [Definition] = NULL, [SortOrder] = 39.00 WHERE [Code] = '2620' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2630') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2630', 'Care and Upkeep of Grounds', NULL, 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Care and Upkeep of Grounds', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = '2630' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2640') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2640', 'Care and Upkeep of Equipment', NULL, 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Care and Upkeep of Equipment', [Definition] = NULL, [SortOrder] = 41.00 WHERE [Code] = '2640' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2650') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2650', 'Vehicle Operation and Maintenance (Other Than Student Transportation Vehicles)', NULL, 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Vehicle Operation and Maintenance (Other Than Student Transportation Vehicles)', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = '2650' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2660') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2660', 'Security', NULL, 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Security', [Definition] = NULL, [SortOrder] = 43.00 WHERE [Code] = '2660' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2670') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2670', 'Safety', NULL, 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Safety', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = '2670' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2680') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2680', 'Other Operation and Maintenance of Plant', NULL, 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Other Operation and Maintenance of Plant', [Definition] = NULL, [SortOrder] = 45.00 WHERE [Code] = '2680' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2700') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2700', 'Student Transportation', NULL, 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Student Transportation', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = '2700' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2710') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2710', 'Vehicle Operation', NULL, 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Vehicle Operation', [Definition] = NULL, [SortOrder] = 47.00 WHERE [Code] = '2710' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2720') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2720', 'Monitoring Services', NULL, 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Monitoring Services', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = '2720' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2730') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2730', 'Vehicle Servicing and Maintenance', NULL, 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Vehicle Servicing and Maintenance', [Definition] = NULL, [SortOrder] = 49.00 WHERE [Code] = '2730' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2790') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2790', 'Other Student Transportation Services', NULL, 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Other Student Transportation Services', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = '2790' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '2900') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2900', 'Other Support Services', NULL, 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Other Support Services', [Definition] = NULL, [SortOrder] = 51.00 WHERE [Code] = '2900' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '3000') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3000', 'Operation of Noninstructional Services', NULL, 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Operation of Noninstructional Services', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = '3000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '3100') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3100', 'Food Services Operations', NULL, 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Food Services Operations', [Definition] = NULL, [SortOrder] = 53.00 WHERE [Code] = '3100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '3200') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3200', 'Enterprise Operations', NULL, 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Enterprise Operations', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = '3200' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '3300') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3300', 'Community Services Operations', NULL, 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Community Services Operations', [Definition] = NULL, [SortOrder] = 55.00 WHERE [Code] = '3300' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '4000') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4000', 'Facilities Acquisition and Construction', NULL, 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Facilities Acquisition and Construction', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = '4000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '4100') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4100', 'Land Acquisition', NULL, 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Land Acquisition', [Definition] = NULL, [SortOrder] = 57.00 WHERE [Code] = '4100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '4200') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4200', 'Land Improvement', NULL, 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Land Improvement', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = '4200' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '4300') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4300', 'Architecture and Engineering', NULL, 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Architecture and Engineering', [Definition] = NULL, [SortOrder] = 59.00 WHERE [Code] = '4300' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '4400') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4400', 'Educational Specifications Development', NULL, 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Educational Specifications Development', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = '4400' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '4500') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4500', 'Building Acquisition and Construction', NULL, 61.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Building Acquisition and Construction', [Definition] = NULL, [SortOrder] = 61.00 WHERE [Code] = '4500' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '4600') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4600', 'Site Improvements', NULL, 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Site Improvements', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = '4600' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '4700') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4700', 'Building Improvements', NULL, 63.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Building Improvements', [Definition] = NULL, [SortOrder] = 63.00 WHERE [Code] = '4700' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '4900') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4900', 'Other Facilities Acquisition and Construction', NULL, 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Other Facilities Acquisition and Construction', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = '4900' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureFunctionCode] WHERE [Code] = '5000') BEGIN INSERT INTO dbo.[RefFinancialExpenditureFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('5000', 'Debt Service', NULL, 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureFunctionCode] -SET [Description] = 'Debt Service', [Definition] = NULL, [SortOrder] = 65.00 WHERE [Code] = '5000' END -END - -PRINT N'Populate RefFinancialExpenditureLevelOfInstructionCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialExpenditureLevelOfInstructionCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLevelOfInstructionCode] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLevelOfInstructionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Elementary', 'A school organization classified as elementary by state and local practice and composed of any span of grades from prekindergarten, kindergarten, or grade 1 through grade 8.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLevelOfInstructionCode] -SET [Description] = 'Elementary', [Definition] = 'A school organization classified as elementary by state and local practice and composed of any span of grades from prekindergarten, kindergarten, or grade 1 through grade 8.', [SortOrder] = 1.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLevelOfInstructionCode] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLevelOfInstructionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Prekindergarten', 'A school organization composed entirely of any span of ages below kindergarten. This category is normally used for students identified as needing special services, although regular education prekindergarten would also be appropriate.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLevelOfInstructionCode] -SET [Description] = 'Prekindergarten', [Definition] = 'A school organization composed entirely of any span of ages below kindergarten. This category is normally used for students identified as needing special services, although regular education prekindergarten would also be appropriate.', [SortOrder] = 2.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLevelOfInstructionCode] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLevelOfInstructionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Kindergarten', 'A school organization for children in the year immediately preceding first grade.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLevelOfInstructionCode] -SET [Description] = 'Kindergarten', [Definition] = 'A school organization for children in the year immediately preceding first grade.', [SortOrder] = 3.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLevelOfInstructionCode] WHERE [Code] = '19') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLevelOfInstructionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('19', 'Other Elementary', 'A school organization composed of any span of grades not above grade 8, except prekindergarten and kindergarten.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLevelOfInstructionCode] -SET [Description] = 'Other Elementary', [Definition] = 'A school organization composed of any span of grades not above grade 8, except prekindergarten and kindergarten.', [SortOrder] = 4.00 WHERE [Code] = '19' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLevelOfInstructionCode] WHERE [Code] = '20') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLevelOfInstructionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('20', 'Middle', 'A school organization composed of at least three grades, usually beginning with grade 4 through grade 6 or the equivalent and usually ending with grade 8 or grade 9. Most middle school organizations presume that students finishing middle school will go on to secondary school.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLevelOfInstructionCode] -SET [Description] = 'Middle', [Definition] = 'A school organization composed of at least three grades, usually beginning with grade 4 through grade 6 or the equivalent and usually ending with grade 8 or grade 9. Most middle school organizations presume that students finishing middle school will go on to secondary school.', [SortOrder] = 5.00 WHERE [Code] = '20' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLevelOfInstructionCode] WHERE [Code] = '30') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLevelOfInstructionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('30', 'Secondary', 'A school organization comprising any span of grades beginning with the next grade following an elementary or middle school, usually beginning with grade 7 through grade 10, and ending with or below grade 12.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLevelOfInstructionCode] -SET [Description] = 'Secondary', [Definition] = 'A school organization comprising any span of grades beginning with the next grade following an elementary or middle school, usually beginning with grade 7 through grade 10, and ending with or below grade 12.', [SortOrder] = 6.00 WHERE [Code] = '30' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLevelOfInstructionCode] WHERE [Code] = '37') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLevelOfInstructionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('37', 'Elementary and Secondary Combined', 'A school organization comprising elementary and secondary levels of instruction, which may also include kindergarten and prekindergarten programs.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLevelOfInstructionCode] -SET [Description] = 'Elementary and Secondary Combined', [Definition] = 'A school organization comprising elementary and secondary levels of instruction, which may also include kindergarten and prekindergarten programs.', [SortOrder] = 7.00 WHERE [Code] = '37' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLevelOfInstructionCode] WHERE [Code] = '40') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLevelOfInstructionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('40', 'Postsecondary', 'A school organization providing formal instructional programs with a curriculum designed primarily for students who have completed the requirements for a high school diploma or the equivalent. This includes programs of an academic, vocational, and continuing professional education purpose and excludes avocational and adult education programs.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLevelOfInstructionCode] -SET [Description] = 'Postsecondary', [Definition] = 'A school organization providing formal instructional programs with a curriculum designed primarily for students who have completed the requirements for a high school diploma or the equivalent. This includes programs of an academic, vocational, and continuing professional education purpose and excludes avocational and adult education programs.', [SortOrder] = 8.00 WHERE [Code] = '40' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLevelOfInstructionCode] WHERE [Code] = '41') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLevelOfInstructionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('41', 'Programs for Adult/Continuing', 'A program for adults and out-of-school youth (typically 16 years of age and older who are not regularly enrolled in school) who have completed, interrupted, or not begun their formal education and are pursuing skills or knowledge in other than regularly prescribed courses. These include adult basic education programs and other programs for the pursuit of special interests or enrichment.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLevelOfInstructionCode] -SET [Description] = 'Programs for Adult/Continuing', [Definition] = 'A program for adults and out-of-school youth (typically 16 years of age and older who are not regularly enrolled in school) who have completed, interrupted, or not begun their formal education and are pursuing skills or knowledge in other than regularly prescribed courses. These include adult basic education programs and other programs for the pursuit of special interests or enrichment.', [SortOrder] = 9.00 WHERE [Code] = '41' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLevelOfInstructionCode] WHERE [Code] = '42') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLevelOfInstructionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('42', 'Community/Junior College', 'An institution of higher education that usually offers the first 2 years of college instruction and frequently grants an associate''s degree, but does not grant a bachelor''s degree. It is an independently organized institution (public or nonpublic), an institution that is part of a school district, or an independently organized system of junior colleges. Junior colleges offer college transfer courses and programs; vocational, technical, and semiprofessional occupational programs; or general education programs.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLevelOfInstructionCode] -SET [Description] = 'Community/Junior College', [Definition] = 'An institution of higher education that usually offers the first 2 years of college instruction and frequently grants an associate''s degree, but does not grant a bachelor''s degree. It is an independently organized institution (public or nonpublic), an institution that is part of a school district, or an independently organized system of junior colleges. Junior colleges offer college transfer courses and programs; vocational, technical, and semiprofessional occupational programs; or general education programs.', [SortOrder] = 10.00 WHERE [Code] = '42' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLevelOfInstructionCode] WHERE [Code] = '50') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLevelOfInstructionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('50', 'School Wide', 'For coding expenditures that cannot be clearly assigned to a specific instructional level.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLevelOfInstructionCode] -SET [Description] = 'School Wide', [Definition] = 'For coding expenditures that cannot be clearly assigned to a specific instructional level.', [SortOrder] = 11.00 WHERE [Code] = '50' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLevelOfInstructionCode] WHERE [Code] = '60') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLevelOfInstructionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('60', 'Early Learning Program', 'An organization classified as providing services during the stage in human development from birth through the early school years during which significant social, emotional, cognitive, language, psychological, and physical development occurs.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLevelOfInstructionCode] -SET [Description] = 'Early Learning Program', [Definition] = 'An organization classified as providing services during the stage in human development from birth through the early school years during which significant social, emotional, cognitive, language, psychological, and physical development occurs.', [SortOrder] = 12.00 WHERE [Code] = '60' END -END - -PRINT N'Populate RefFinancialExpenditureLocalFunctionCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialExpenditureLocalFunctionCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLocalFunctionCode] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLocalFunctionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLocalFunctionCode] -SET [Description] = 'Other', [Definition] = 'Other', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefFinancialExpenditureLocalLevelOfInstructionCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLocalLevelOfInstructionCode] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLocalLevelOfInstructionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLocalLevelOfInstructionCode] -SET [Description] = 'Other', [Definition] = 'Other', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefFinancialExpenditureLocalObjectCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialExpenditureLocalObjectCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureLocalObjectCode] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefFinancialExpenditureLocalObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureLocalObjectCode] -SET [Description] = 'Other', [Definition] = 'Other', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefFinancialExpenditureObjectCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFinancialExpenditureObjectCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '100') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('100', 'Personal Services-Salaries', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Personal Services-Salaries', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = '100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '101') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('101', 'Salaries Paid to Teachers', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries Paid to Teachers', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = '101' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '102') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('102', 'Salaries Paid to Instructional Aides or Assistants', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries Paid to Instructional Aides or Assistants', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = '102' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '103') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('103', 'Salaries Paid to Substitute Teachers', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries Paid to Substitute Teachers', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = '103' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '110') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('110', 'Salaries of Regular Employees', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries of Regular Employees', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = '110' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '111') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('111', 'Salaries of Regular Employees Paid to Teachers', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries of Regular Employees Paid to Teachers', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = '111' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '112') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('112', 'Salaries of Regular Employees Paid to Instructional Aides and Assistants', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries of Regular Employees Paid to Instructional Aides and Assistants', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = '112' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '113') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('113', 'Salaries of Regular Employees Paid to Substitute Teachers', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries of Regular Employees Paid to Substitute Teachers', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = '113' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '120') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('120', 'Salaries of Temporary Employees', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries of Temporary Employees', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = '120' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '121') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('121', 'Salaries of Temporary Employees Paid to Teachers', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries of Temporary Employees Paid to Teachers', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = '121' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '122') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('122', 'Salaries of Temporary Employees Paid to Instructional Aides and Assistants', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries of Temporary Employees Paid to Instructional Aides and Assistants', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = '122' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '123') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('123', 'Salaries of Temporary Employees Paid to Substitute Teachers', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries of Temporary Employees Paid to Substitute Teachers', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = '123' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '130') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('130', 'Salaries for Overtime', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries for Overtime', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = '130' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '131') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('131', 'Salaries for Overtime Employees Paid to Teachers', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries for Overtime Employees Paid to Teachers', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = '131' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '132') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('132', 'Salaries for Overtime Employees Paid to Instructional Aides and Assistants', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries for Overtime Employees Paid to Instructional Aides and Assistants', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = '132' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '133') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('133', 'Salaries for Overtime Employees Paid to Substitute Teachers', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries for Overtime Employees Paid to Substitute Teachers', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = '133' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '140') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('140', 'Salaries for Sabbatical Leave', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries for Sabbatical Leave', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = '140' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '141') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('141', 'Salaries for Sabbatical Leave Paid to Teachers', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries for Sabbatical Leave Paid to Teachers', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = '141' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '142') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('142', 'Salaries for Sabbatical Leave Paid to Instructional Aides and Assistants', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries for Sabbatical Leave Paid to Instructional Aides and Assistants', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = '142' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '143') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('143', 'Salaries for Sabbatical Leave Paid to Substitute Teachers', NULL, 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Salaries for Sabbatical Leave Paid to Substitute Teachers', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = '143' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '150') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('150', 'Additional Compensation Such as Bonuses or Incentives', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Additional Compensation Such as Bonuses or Incentives', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = '150' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '151') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('151', 'Additional Compensation Paid to Teachers', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Additional Compensation Paid to Teachers', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = '151' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '152') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('152', 'Additional Compensation Paid to Instructional Aides and Assistants', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Additional Compensation Paid to Instructional Aides and Assistants', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = '152' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '153') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('153', 'Additional Compensation Paid to Substitute Teachers', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Additional Compensation Paid to Substitute Teachers', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = '153' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '200') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('200', 'Personal Services-Employee Benefits', NULL, 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Personal Services-Employee Benefits', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = '200' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '201') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('201', 'Employee Benefits for Teachers', NULL, 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Employee Benefits for Teachers', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = '201' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '202') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('202', 'Employee Benefits for Instructional Aides or Assistants', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Employee Benefits for Instructional Aides or Assistants', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = '202' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '203') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('203', 'Employee Benefits for Substitute Teachers', NULL, 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Employee Benefits for Substitute Teachers', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = '203' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '210') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('210', 'Group Insurance', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Group Insurance', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = '210' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '211') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('211', 'Group Insurance for Teachers', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Group Insurance for Teachers', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = '211' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '212') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('212', 'Group Insurance for Instructional Aides or Assistants', NULL, 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Group Insurance for Instructional Aides or Assistants', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = '212' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '213') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('213', 'Group Insurance for Substitute Teachers', NULL, 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Group Insurance for Substitute Teachers', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = '213' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '220') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('220', 'Social Security Contributions', NULL, 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Social Security Contributions', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = '220' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '221') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('221', 'Social Security Payments for Teachers', NULL, 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Social Security Payments for Teachers', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = '221' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '222') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('222', 'Social Security Payments for Instructional Aides or Assistants', NULL, 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Social Security Payments for Instructional Aides or Assistants', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = '222' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '223') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('223', 'Social Security Payments for Substitute Teachers', NULL, 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Social Security Payments for Substitute Teachers', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = '223' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '230') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('230', 'Retirement Contributions', NULL, 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Retirement Contributions', [Definition] = NULL, [SortOrder] = 37.00 WHERE [Code] = '230' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '231') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('231', 'Retirement Contributions for Teachers', NULL, 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Retirement Contributions for Teachers', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = '231' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '232') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('232', 'Retirement Contributions for Instructional Aides or Assistants', NULL, 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Retirement Contributions for Instructional Aides or Assistants', [Definition] = NULL, [SortOrder] = 39.00 WHERE [Code] = '232' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '233') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('233', 'Retirement Contributions for Substitute Teachers', NULL, 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Retirement Contributions for Substitute Teachers', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = '233' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '240') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('240', 'On-Behalf Payments', NULL, 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'On-Behalf Payments', [Definition] = NULL, [SortOrder] = 41.00 WHERE [Code] = '240' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '241') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('241', 'On-Behalf Payments for Teachers', NULL, 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'On-Behalf Payments for Teachers', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = '241' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '242') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('242', 'On-Behalf Payments for Instructional Aides or Assistants', NULL, 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'On-Behalf Payments for Instructional Aides or Assistants', [Definition] = NULL, [SortOrder] = 43.00 WHERE [Code] = '242' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '243') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('243', 'On-Behalf Payments for Substitute Teachers', NULL, 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'On-Behalf Payments for Substitute Teachers', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = '243' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '250') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('250', 'Tuition Reimbursement', NULL, 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Tuition Reimbursement', [Definition] = NULL, [SortOrder] = 45.00 WHERE [Code] = '250' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '251') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('251', 'Tuition Reimbursement for Teachers', NULL, 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Tuition Reimbursement for Teachers', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = '251' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '252') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('252', 'Tuition Reimbursement for Instructional Aides or Assistants', NULL, 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Tuition Reimbursement for Instructional Aides or Assistants', [Definition] = NULL, [SortOrder] = 47.00 WHERE [Code] = '252' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '253') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('253', 'Tuition Reimbursement for Substitute Teachers', NULL, 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Tuition Reimbursement for Substitute Teachers', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = '253' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '260') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('260', 'Unemployment Compensation', NULL, 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Unemployment Compensation', [Definition] = NULL, [SortOrder] = 49.00 WHERE [Code] = '260' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '261') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('261', 'Unemployment Compensation Paid for Teachers', NULL, 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Unemployment Compensation Paid for Teachers', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = '261' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '262') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('262', 'Unemployment Compensation Paid for Instructional Aides or Assistants', NULL, 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Unemployment Compensation Paid for Instructional Aides or Assistants', [Definition] = NULL, [SortOrder] = 51.00 WHERE [Code] = '262' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '263') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('263', 'Unemployment Compensation Paid for Substitute Teachers', NULL, 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Unemployment Compensation Paid for Substitute Teachers', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = '263' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '270') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('270', 'Workers'' Compensation', NULL, 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Workers'' Compensation', [Definition] = NULL, [SortOrder] = 53.00 WHERE [Code] = '270' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '271') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('271', 'Worker''s Compensation Paid for Teachers', NULL, 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Worker''s Compensation Paid for Teachers', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = '271' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '272') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('272', 'Worker''s Compensation Paid for Instructional Aides or Assistants', NULL, 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Worker''s Compensation Paid for Instructional Aides or Assistants', [Definition] = NULL, [SortOrder] = 55.00 WHERE [Code] = '272' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '273') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('273', 'Worker''s Compensation for Substitute Teachers', NULL, 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Worker''s Compensation for Substitute Teachers', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = '273' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '280') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('280', 'Health Benefits', NULL, 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Health Benefits', [Definition] = NULL, [SortOrder] = 57.00 WHERE [Code] = '280' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '281') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('281', 'Health Benefits Paid for Teachers', NULL, 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Health Benefits Paid for Teachers', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = '281' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '282') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('282', 'Health Benefits Paid for Instructional Aides or Assistants', NULL, 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Health Benefits Paid for Instructional Aides or Assistants', [Definition] = NULL, [SortOrder] = 59.00 WHERE [Code] = '282' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '283') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('283', 'Health Benefits Paid for Substitute Teachers', NULL, 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Health Benefits Paid for Substitute Teachers', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = '283' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '290') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('290', 'Other Employee Benefits', NULL, 61.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Other Employee Benefits', [Definition] = NULL, [SortOrder] = 61.00 WHERE [Code] = '290' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '291') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('291', 'Other Employee Benefits Paid for Teachers', NULL, 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Other Employee Benefits Paid for Teachers', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = '291' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '292') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('292', 'Other Employee Benefits Paid for Instructional Aides or Assistants', NULL, 63.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Other Employee Benefits Paid for Instructional Aides or Assistants', [Definition] = NULL, [SortOrder] = 63.00 WHERE [Code] = '292' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '293') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('293', 'Other Employee Benefits for Substitute Teachers', NULL, 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Other Employee Benefits for Substitute Teachers', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = '293' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '300') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('300', 'Purchased Professional and Technical Services', NULL, 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Purchased Professional and Technical Services', [Definition] = NULL, [SortOrder] = 65.00 WHERE [Code] = '300' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '310') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('310', 'Official/Administrative Services', NULL, 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Official/Administrative Services', [Definition] = NULL, [SortOrder] = 66.00 WHERE [Code] = '310' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '320') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('320', 'Professional Educational Services', NULL, 67.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Professional Educational Services', [Definition] = NULL, [SortOrder] = 67.00 WHERE [Code] = '320' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '330') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('330', 'Employee Training and Development Services', NULL, 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Employee Training and Development Services', [Definition] = NULL, [SortOrder] = 68.00 WHERE [Code] = '330' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '340') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('340', 'Other Professional Services', NULL, 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Other Professional Services', [Definition] = NULL, [SortOrder] = 69.00 WHERE [Code] = '340' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '350') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('350', 'Technical Services', NULL, 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Technical Services', [Definition] = NULL, [SortOrder] = 70.00 WHERE [Code] = '350' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '351') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('351', 'Data-Processing and Coding Services', NULL, 71.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Data-Processing and Coding Services', [Definition] = NULL, [SortOrder] = 71.00 WHERE [Code] = '351' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '352') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('352', 'Other Technical Services', NULL, 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Other Technical Services', [Definition] = NULL, [SortOrder] = 72.00 WHERE [Code] = '352' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '400') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('400', 'Purchased Property Services', NULL, 73.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Purchased Property Services', [Definition] = NULL, [SortOrder] = 73.00 WHERE [Code] = '400' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '410') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('410', 'Utility Services', NULL, 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Utility Services', [Definition] = NULL, [SortOrder] = 74.00 WHERE [Code] = '410' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '420') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('420', 'Cleaning Services', NULL, 75.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Cleaning Services', [Definition] = NULL, [SortOrder] = 75.00 WHERE [Code] = '420' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '430') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('430', 'Repairs and Maintenance Services', NULL, 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Repairs and Maintenance Services', [Definition] = NULL, [SortOrder] = 76.00 WHERE [Code] = '430' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '431') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('431', 'Non-Technology-Related Repairs and Maintenance', NULL, 77.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Non-Technology-Related Repairs and Maintenance', [Definition] = NULL, [SortOrder] = 77.00 WHERE [Code] = '431' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '432') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('432', 'Technology-Related Repairs and Maintenance', NULL, 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Technology-Related Repairs and Maintenance', [Definition] = NULL, [SortOrder] = 78.00 WHERE [Code] = '432' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '440') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('440', 'Rentals', NULL, 79.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Rentals', [Definition] = NULL, [SortOrder] = 79.00 WHERE [Code] = '440' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '441') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('441', 'Rentals of Land and Buildings', NULL, 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Rentals of Land and Buildings', [Definition] = NULL, [SortOrder] = 80.00 WHERE [Code] = '441' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '442') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('442', 'Rentals of Equipment and Vehicles', NULL, 81.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Rentals of Equipment and Vehicles', [Definition] = NULL, [SortOrder] = 81.00 WHERE [Code] = '442' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '443') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('443', 'Rentals of Computers and Related Equipment', NULL, 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Rentals of Computers and Related Equipment', [Definition] = NULL, [SortOrder] = 82.00 WHERE [Code] = '443' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '450') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('450', 'Construction Services', NULL, 83.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Construction Services', [Definition] = NULL, [SortOrder] = 83.00 WHERE [Code] = '450' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '490') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('490', 'Other Purchased Property Services', NULL, 84.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Other Purchased Property Services', [Definition] = NULL, [SortOrder] = 84.00 WHERE [Code] = '490' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '500') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('500', 'Other Purchased Services', NULL, 85.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Other Purchased Services', [Definition] = NULL, [SortOrder] = 85.00 WHERE [Code] = '500' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '510') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('510', 'Student Transportation Services', NULL, 86.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Student Transportation Services', [Definition] = NULL, [SortOrder] = 86.00 WHERE [Code] = '510' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '511') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('511', 'Student Transportation Purchased From Another School District Within the State', NULL, 87.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Student Transportation Purchased From Another School District Within the State', [Definition] = NULL, [SortOrder] = 87.00 WHERE [Code] = '511' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '512') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('512', 'Student Transportation Purchased From Another School District Outside the State', NULL, 88.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Student Transportation Purchased From Another School District Outside the State', [Definition] = NULL, [SortOrder] = 88.00 WHERE [Code] = '512' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '519') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('519', 'Student Transportation Purchased From Other Sources', NULL, 89.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Student Transportation Purchased From Other Sources', [Definition] = NULL, [SortOrder] = 89.00 WHERE [Code] = '519' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '520') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('520', 'Insurance (Other Than Employee Benefits)', NULL, 90.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Insurance (Other Than Employee Benefits)', [Definition] = NULL, [SortOrder] = 90.00 WHERE [Code] = '520' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '530') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('530', 'Communications', NULL, 91.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Communications', [Definition] = NULL, [SortOrder] = 91.00 WHERE [Code] = '530' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '540') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('540', 'Advertising', NULL, 92.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Advertising', [Definition] = NULL, [SortOrder] = 92.00 WHERE [Code] = '540' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '550') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('550', 'Printing and Binding', NULL, 93.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Printing and Binding', [Definition] = NULL, [SortOrder] = 93.00 WHERE [Code] = '550' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '560') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('560', 'Tuition', NULL, 94.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Tuition', [Definition] = NULL, [SortOrder] = 94.00 WHERE [Code] = '560' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '561') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('561', 'Tuition to Other School Districts (Excluding Charter Schools) Within the State', NULL, 95.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Tuition to Other School Districts (Excluding Charter Schools) Within the State', [Definition] = NULL, [SortOrder] = 95.00 WHERE [Code] = '561' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '562') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('562', 'Tuition to Other School Districts (Including Charter Schools) Outside the State', NULL, 96.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Tuition to Other School Districts (Including Charter Schools) Outside the State', [Definition] = NULL, [SortOrder] = 96.00 WHERE [Code] = '562' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '563') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('563', 'Tuition to Private Schools', NULL, 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Tuition to Private Schools', [Definition] = NULL, [SortOrder] = 97.00 WHERE [Code] = '563' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '564') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('564', 'Tuition to Charter Schools Within the State', NULL, 98.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Tuition to Charter Schools Within the State', [Definition] = NULL, [SortOrder] = 98.00 WHERE [Code] = '564' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '565') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('565', 'Tuition to Postsecondary Schools', NULL, 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Tuition to Postsecondary Schools', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = '565' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '566') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('566', 'Voucher Payments to Private Schools and to Other School Districts Outside the State', NULL, 100.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Voucher Payments to Private Schools and to Other School Districts Outside the State', [Definition] = NULL, [SortOrder] = 100.00 WHERE [Code] = '566' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '567') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('567', 'Voucher Payments to School Districts, including Charter Schools, Within the State', NULL, 101.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Voucher Payments to School Districts, including Charter Schools, Within the State', [Definition] = NULL, [SortOrder] = 101.00 WHERE [Code] = '567' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '568') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('568', 'Voucher Payments Directly to Individuals', NULL, 102.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Voucher Payments Directly to Individuals', [Definition] = NULL, [SortOrder] = 102.00 WHERE [Code] = '568' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '569') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('569', 'Tuition-Other', NULL, 103.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Tuition-Other', [Definition] = NULL, [SortOrder] = 103.00 WHERE [Code] = '569' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '570') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('570', 'Food Service Management', NULL, 104.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Food Service Management', [Definition] = NULL, [SortOrder] = 104.00 WHERE [Code] = '570' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '580') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('580', 'Travel', NULL, 105.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Travel', [Definition] = NULL, [SortOrder] = 105.00 WHERE [Code] = '580' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '590') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('590', 'Interagency Purchased Services', NULL, 106.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Interagency Purchased Services', [Definition] = NULL, [SortOrder] = 106.00 WHERE [Code] = '590' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '591') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('591', 'Services Purchased From Another School District or Educational Services Agency Within the State', NULL, 107.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Services Purchased From Another School District or Educational Services Agency Within the State', [Definition] = NULL, [SortOrder] = 107.00 WHERE [Code] = '591' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '592') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('592', 'Services Purchased From Another School District or Educational Services Agency Outside the State', NULL, 108.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Services Purchased From Another School District or Educational Services Agency Outside the State', [Definition] = NULL, [SortOrder] = 108.00 WHERE [Code] = '592' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '600') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('600', 'Supplies', NULL, 109.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Supplies', [Definition] = NULL, [SortOrder] = 109.00 WHERE [Code] = '600' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '610') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('610', 'General Supplies', NULL, 110.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'General Supplies', [Definition] = NULL, [SortOrder] = 110.00 WHERE [Code] = '610' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '620') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('620', 'Energy', NULL, 111.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Energy', [Definition] = NULL, [SortOrder] = 111.00 WHERE [Code] = '620' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '621') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('621', 'Natural Gas', NULL, 112.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Natural Gas', [Definition] = NULL, [SortOrder] = 112.00 WHERE [Code] = '621' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '622') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('622', 'Electricity', NULL, 113.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Electricity', [Definition] = NULL, [SortOrder] = 113.00 WHERE [Code] = '622' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '623') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('623', 'Bottled Gas', NULL, 114.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Bottled Gas', [Definition] = NULL, [SortOrder] = 114.00 WHERE [Code] = '623' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '624') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('624', 'Oil', NULL, 115.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Oil', [Definition] = NULL, [SortOrder] = 115.00 WHERE [Code] = '624' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '625') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('625', 'Coal', NULL, 116.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Coal', [Definition] = NULL, [SortOrder] = 116.00 WHERE [Code] = '625' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '626') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('626', 'Gasoline', NULL, 117.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Gasoline', [Definition] = NULL, [SortOrder] = 117.00 WHERE [Code] = '626' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '629') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('629', 'Other', NULL, 118.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Other', [Definition] = NULL, [SortOrder] = 118.00 WHERE [Code] = '629' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '630') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('630', 'Food', NULL, 119.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Food', [Definition] = NULL, [SortOrder] = 119.00 WHERE [Code] = '630' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '640') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('640', 'Books and Periodicals', NULL, 120.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Books and Periodicals', [Definition] = NULL, [SortOrder] = 120.00 WHERE [Code] = '640' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '650') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('650', 'Supplies-Technology Related', NULL, 121.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Supplies-Technology Related', [Definition] = NULL, [SortOrder] = 121.00 WHERE [Code] = '650' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '700') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('700', 'Property', NULL, 122.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Property', [Definition] = NULL, [SortOrder] = 122.00 WHERE [Code] = '700' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '710') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('710', 'Land and Land Improvements', NULL, 123.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Land and Land Improvements', [Definition] = NULL, [SortOrder] = 123.00 WHERE [Code] = '710' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '720') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('720', 'Buildings', NULL, 124.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Buildings', [Definition] = NULL, [SortOrder] = 124.00 WHERE [Code] = '720' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '730') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('730', 'Equipment', NULL, 125.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Equipment', [Definition] = NULL, [SortOrder] = 125.00 WHERE [Code] = '730' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '731') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('731', 'Machinery', NULL, 126.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Machinery', [Definition] = NULL, [SortOrder] = 126.00 WHERE [Code] = '731' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '732') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('732', 'Vehicles', NULL, 127.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Vehicles', [Definition] = NULL, [SortOrder] = 127.00 WHERE [Code] = '732' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '733') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('733', 'Furniture and Fixtures', NULL, 128.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Furniture and Fixtures', [Definition] = NULL, [SortOrder] = 128.00 WHERE [Code] = '733' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '734') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('734', 'Technology-Related Hardware', NULL, 129.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Technology-Related Hardware', [Definition] = NULL, [SortOrder] = 129.00 WHERE [Code] = '734' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '735') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('735', 'Technology Software', NULL, 130.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Technology Software', [Definition] = NULL, [SortOrder] = 130.00 WHERE [Code] = '735' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '739') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('739', 'Other Equipment', NULL, 131.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Other Equipment', [Definition] = NULL, [SortOrder] = 131.00 WHERE [Code] = '739' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '740') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('740', 'Infrastructure', NULL, 132.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Infrastructure', [Definition] = NULL, [SortOrder] = 132.00 WHERE [Code] = '740' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '750') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('750', 'Intangible Assets', NULL, 133.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Intangible Assets', [Definition] = NULL, [SortOrder] = 133.00 WHERE [Code] = '750' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '790') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('790', 'Depreciation and Amortization', NULL, 134.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Depreciation and Amortization', [Definition] = NULL, [SortOrder] = 134.00 WHERE [Code] = '790' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '800') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('800', 'Debt Service and Miscellaneous', NULL, 135.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Debt Service and Miscellaneous', [Definition] = NULL, [SortOrder] = 135.00 WHERE [Code] = '800' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '810') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('810', 'Dues and Fees', NULL, 136.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Dues and Fees', [Definition] = NULL, [SortOrder] = 136.00 WHERE [Code] = '810' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '820') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('820', 'Judgments Against the School District', NULL, 137.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Judgments Against the School District', [Definition] = NULL, [SortOrder] = 137.00 WHERE [Code] = '820' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '830') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('830', 'Debt-Related Expenditures/Expenses', NULL, 138.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Debt-Related Expenditures/Expenses', [Definition] = NULL, [SortOrder] = 138.00 WHERE [Code] = '830' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '831') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('831', 'Redemption of Principal', NULL, 139.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Redemption of Principal', [Definition] = NULL, [SortOrder] = 139.00 WHERE [Code] = '831' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '832') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('832', 'Interest on Long-Term Debt', NULL, 140.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Interest on Long-Term Debt', [Definition] = NULL, [SortOrder] = 140.00 WHERE [Code] = '832' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '833') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('833', 'Bond Issuance and Other Debt-Related Costs', NULL, 141.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Bond Issuance and Other Debt-Related Costs', [Definition] = NULL, [SortOrder] = 141.00 WHERE [Code] = '833' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '834') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('834', 'Amortization of Premium and Discount on Issuance of Bonds', NULL, 142.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Amortization of Premium and Discount on Issuance of Bonds', [Definition] = NULL, [SortOrder] = 142.00 WHERE [Code] = '834' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '835') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('835', 'Interest on Short-Term Debt', NULL, 143.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Interest on Short-Term Debt', [Definition] = NULL, [SortOrder] = 143.00 WHERE [Code] = '835' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '890') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('890', 'Miscellaneous Expenditures', NULL, 144.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Miscellaneous Expenditures', [Definition] = NULL, [SortOrder] = 144.00 WHERE [Code] = '890' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '900') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('900', 'Other Items', NULL, 145.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Other Items', [Definition] = NULL, [SortOrder] = 145.00 WHERE [Code] = '900' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '910') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('910', 'Fund Transfers Out', NULL, 146.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Fund Transfers Out', [Definition] = NULL, [SortOrder] = 146.00 WHERE [Code] = '910' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '920') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('920', 'Payments to Escrow Agents for Defeasance of Debt', NULL, 147.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Payments to Escrow Agents for Defeasance of Debt', [Definition] = NULL, [SortOrder] = 147.00 WHERE [Code] = '920' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '925') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('925', 'Discount on the Issuance of Bonds', NULL, 148.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Discount on the Issuance of Bonds', [Definition] = NULL, [SortOrder] = 148.00 WHERE [Code] = '925' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '930') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('930', 'Net Decreases in the Fair Value of Investments', NULL, 149.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Net Decreases in the Fair Value of Investments', [Definition] = NULL, [SortOrder] = 149.00 WHERE [Code] = '930' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '931') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('931', 'Realized Losses on Investments', NULL, 150.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Realized Losses on Investments', [Definition] = NULL, [SortOrder] = 150.00 WHERE [Code] = '931' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '932') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('932', 'Unrealized Losses on Investments', NULL, 151.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Unrealized Losses on Investments', [Definition] = NULL, [SortOrder] = 151.00 WHERE [Code] = '932' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '940') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('940', 'Losses on the Sale of Capital Assets', NULL, 152.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Losses on the Sale of Capital Assets', [Definition] = NULL, [SortOrder] = 152.00 WHERE [Code] = '940' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '950') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('950', 'Special Items', NULL, 153.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Special Items', [Definition] = NULL, [SortOrder] = 153.00 WHERE [Code] = '950' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFinancialExpenditureObjectCode] WHERE [Code] = '960') BEGIN INSERT INTO dbo.[RefFinancialExpenditureObjectCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('960', 'Extraordinary Items', NULL, 154.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFinancialExpenditureObjectCode] -SET [Description] = 'Extraordinary Items', [Definition] = NULL, [SortOrder] = 154.00 WHERE [Code] = '960' END -END - -PRINT N'Populate RefFirearmType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFirearmType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFirearmType] WHERE [Code] = 'Handguns') BEGIN INSERT INTO dbo.[RefFirearmType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Handguns', 'Handguns', 'Handguns is the type of firearm.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFirearmType] -SET [Description] = 'Handguns', [Definition] = 'Handguns is the type of firearm.', [SortOrder] = 1.00 WHERE [Code] = 'Handguns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFirearmType] WHERE [Code] = 'RiflesShotguns') BEGIN INSERT INTO dbo.[RefFirearmType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RiflesShotguns', 'Rifles / Shotguns', 'Rifles / Shotguns is the type of firearm.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFirearmType] -SET [Description] = 'Rifles / Shotguns', [Definition] = 'Rifles / Shotguns is the type of firearm.', [SortOrder] = 2.00 WHERE [Code] = 'RiflesShotguns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFirearmType] WHERE [Code] = 'Multiple') BEGIN INSERT INTO dbo.[RefFirearmType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Multiple', 'More than one type of weapon or firearm', 'More than one type of weapon or firearm.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFirearmType] -SET [Description] = 'More than one type of weapon or firearm', [Definition] = 'More than one type of weapon or firearm.', [SortOrder] = 3.00 WHERE [Code] = 'Multiple' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFirearmType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefFirearmType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The type of firearm is in a category not yet defined in CEDS.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFirearmType] -SET [Description] = 'Other', [Definition] = 'The type of firearm is in a category not yet defined in CEDS.', [SortOrder] = 4.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefFoodServiceEligibility table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFoodServiceEligibility]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceEligibility] WHERE [Code] = 'Free') BEGIN INSERT INTO dbo.[RefFoodServiceEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Free', 'Free', 'Free is the student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceEligibility] -SET [Description] = 'Free', [Definition] = 'Free is the student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', [SortOrder] = 1.00 WHERE [Code] = 'Free' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceEligibility] WHERE [Code] = 'FullPrice') BEGIN INSERT INTO dbo.[RefFoodServiceEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullPrice', 'Full price', 'Full price is the student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceEligibility] -SET [Description] = 'Full price', [Definition] = 'Full price is the student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', [SortOrder] = 2.00 WHERE [Code] = 'FullPrice' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceEligibility] WHERE [Code] = 'ReducedPrice') BEGIN INSERT INTO dbo.[RefFoodServiceEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReducedPrice', 'Reduced price', 'Reduced price is the student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceEligibility] -SET [Description] = 'Reduced price', [Definition] = 'Reduced price is the student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', [SortOrder] = 3.00 WHERE [Code] = 'ReducedPrice' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceEligibility] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefFoodServiceEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is the student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceEligibility] -SET [Description] = 'Other', [Definition] = 'Other is the student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', [SortOrder] = 4.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefFoodServiceParticipation table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFoodServiceParticipation]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'FreeBreakfast') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FreeBreakfast', 'Free breakfast', 'The student participates in the free breakfast food service program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Free breakfast', [Definition] = 'The student participates in the free breakfast food service program.', [SortOrder] = 1.00 WHERE [Code] = 'FreeBreakfast' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'FreeLunch') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FreeLunch', 'Free lunch', 'The student participates in the free lunch food service program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Free lunch', [Definition] = 'The student participates in the free lunch food service program.', [SortOrder] = 2.00 WHERE [Code] = 'FreeLunch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'FreeMilk') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FreeMilk', 'Free milk', 'The student participates in the Free milk food service program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Free milk', [Definition] = 'The student participates in the Free milk food service program.', [SortOrder] = 3.00 WHERE [Code] = 'FreeMilk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'FreeSnack') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FreeSnack', 'Free snack', 'The student participates in the Free snack food service program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Free snack', [Definition] = 'The student participates in the Free snack food service program.', [SortOrder] = 4.00 WHERE [Code] = 'FreeSnack' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'FreeSupper') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FreeSupper', 'Free supper', 'The student participates in the Free supper food service program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Free supper', [Definition] = 'The student participates in the Free supper food service program.', [SortOrder] = 5.00 WHERE [Code] = 'FreeSupper' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'FullPriceBreakfast') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullPriceBreakfast', 'Full price breakfast', 'The student participates in the Full price breakfast food service program.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Full price breakfast', [Definition] = 'The student participates in the Full price breakfast food service program.', [SortOrder] = 6.00 WHERE [Code] = 'FullPriceBreakfast' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'FullPriceLunch') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullPriceLunch', 'Full price lunch', 'The student participates in the Full price lunch food service program.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Full price lunch', [Definition] = 'The student participates in the Full price lunch food service program.', [SortOrder] = 7.00 WHERE [Code] = 'FullPriceLunch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'FullPriceMilk') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullPriceMilk', 'Full price milk', 'The student participates in the Full price milk food service program.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Full price milk', [Definition] = 'The student participates in the Full price milk food service program.', [SortOrder] = 8.00 WHERE [Code] = 'FullPriceMilk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'FullPriceSnack') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullPriceSnack', 'Full price snack', 'The student participates in the Full price snack food service program.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Full price snack', [Definition] = 'The student participates in the Full price snack food service program.', [SortOrder] = 9.00 WHERE [Code] = 'FullPriceSnack' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'FullPriceSupper') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullPriceSupper', 'Full price supper', 'The student participates in the Full price supper food service program.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Full price supper', [Definition] = 'The student participates in the Full price supper food service program.', [SortOrder] = 10.00 WHERE [Code] = 'FullPriceSupper' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'ReducedPriceBreakfast') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReducedPriceBreakfast', 'Reduced price breakfast', 'The student participates in the Reduced price breakfast food service program.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Reduced price breakfast', [Definition] = 'The student participates in the Reduced price breakfast food service program.', [SortOrder] = 11.00 WHERE [Code] = 'ReducedPriceBreakfast' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'ReducedPriceLunch') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReducedPriceLunch', 'Reduced price lunch', 'The student participates in the Reduced price lunch food service program.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Reduced price lunch', [Definition] = 'The student participates in the Reduced price lunch food service program.', [SortOrder] = 12.00 WHERE [Code] = 'ReducedPriceLunch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'ReducedPriceSnack') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReducedPriceSnack', 'Reduced price snack', 'The student participates in the Reduced price snac food service program.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Reduced price snack', [Definition] = 'The student participates in the Reduced price snac food service program.', [SortOrder] = 13.00 WHERE [Code] = 'ReducedPriceSnack' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'ReducedPriceSupper') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReducedPriceSupper', 'Reduced price supper', 'The student participates in the Reduced price supper food service program.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Reduced price supper', [Definition] = 'The student participates in the Reduced price supper food service program.', [SortOrder] = 14.00 WHERE [Code] = 'ReducedPriceSupper' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFoodServiceParticipation] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefFoodServiceParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The student participates in a category of the food service program not yet defined in CEDS.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFoodServiceParticipation] -SET [Description] = 'Other', [Definition] = 'The student participates in a category of the food service program not yet defined in CEDS.', [SortOrder] = 15.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefFrequencyOfService table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFrequencyOfService]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFrequencyOfService] WHERE [Code] = 'Daily') BEGIN INSERT INTO dbo.[RefFrequencyOfService]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Daily', 'Daily', 'Daily service is planned to occur or has occurred.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFrequencyOfService] -SET [Description] = 'Daily', [Definition] = 'Daily service is planned to occur or has occurred.', [SortOrder] = 1.00 WHERE [Code] = 'Daily' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFrequencyOfService] WHERE [Code] = 'Weekly') BEGIN INSERT INTO dbo.[RefFrequencyOfService]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Weekly', 'Weekly', 'Weekly service is planned to occur or has occurred.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFrequencyOfService] -SET [Description] = 'Weekly', [Definition] = 'Weekly service is planned to occur or has occurred.', [SortOrder] = 3.00 WHERE [Code] = 'Weekly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFrequencyOfService] WHERE [Code] = 'Monthly') BEGIN INSERT INTO dbo.[RefFrequencyOfService]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Monthly', 'Monthly', 'Monthly service is planned to occur or has occurred.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFrequencyOfService] -SET [Description] = 'Monthly', [Definition] = 'Monthly service is planned to occur or has occurred.', [SortOrder] = 5.00 WHERE [Code] = 'Monthly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFrequencyOfService] WHERE [Code] = 'Quarterly') BEGIN INSERT INTO dbo.[RefFrequencyOfService]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Quarterly', 'Quarterly', 'Quarterly service is planned to occur or has occurred.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFrequencyOfService] -SET [Description] = 'Quarterly', [Definition] = 'Quarterly service is planned to occur or has occurred.', [SortOrder] = 7.00 WHERE [Code] = 'Quarterly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFrequencyOfService] WHERE [Code] = 'Annually') BEGIN INSERT INTO dbo.[RefFrequencyOfService]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Annually', 'Annually', 'Annual service is planned to occur or has occurred.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFrequencyOfService] -SET [Description] = 'Annually', [Definition] = 'Annual service is planned to occur or has occurred.', [SortOrder] = 9.00 WHERE [Code] = 'Annually' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFrequencyOfService] WHERE [Code] = 'OneTime') BEGIN INSERT INTO dbo.[RefFrequencyOfService]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OneTime', 'One Time', 'The service is planned to occur one time or has occurred once.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFrequencyOfService] -SET [Description] = 'One Time', [Definition] = 'The service is planned to occur one time or has occurred once.', [SortOrder] = 10.00 WHERE [Code] = 'OneTime' END -END - -PRINT N'Populate RefFrequencyUnit table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFrequencyUnit]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFrequencyUnit] WHERE [Code] = 'Day') BEGIN INSERT INTO dbo.[RefFrequencyUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Day', 'Day', 'Day is the unit of time by which a cycle is defined.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFrequencyUnit] -SET [Description] = 'Day', [Definition] = 'Day is the unit of time by which a cycle is defined.', [SortOrder] = NULL WHERE [Code] = 'Day' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFrequencyUnit] WHERE [Code] = 'Hour') BEGIN INSERT INTO dbo.[RefFrequencyUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Hour', 'Hour', 'Hour is the unit of time by which a cycle is defined.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFrequencyUnit] -SET [Description] = 'Hour', [Definition] = 'Hour is the unit of time by which a cycle is defined.', [SortOrder] = NULL WHERE [Code] = 'Hour' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFrequencyUnit] WHERE [Code] = 'Minute') BEGIN INSERT INTO dbo.[RefFrequencyUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Minute', 'Minute', 'Minute is the unit of time by which a cycle is defined.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFrequencyUnit] -SET [Description] = 'Minute', [Definition] = 'Minute is the unit of time by which a cycle is defined.', [SortOrder] = NULL WHERE [Code] = 'Minute' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFrequencyUnit] WHERE [Code] = 'Month') BEGIN INSERT INTO dbo.[RefFrequencyUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Month', 'Month', 'Month is the unit of time by which a cycle is defined.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFrequencyUnit] -SET [Description] = 'Month', [Definition] = 'Month is the unit of time by which a cycle is defined.', [SortOrder] = NULL WHERE [Code] = 'Month' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFrequencyUnit] WHERE [Code] = 'Week') BEGIN INSERT INTO dbo.[RefFrequencyUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Week', 'Week', 'Week is the unit of time by which a cycle is defined.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFrequencyUnit] -SET [Description] = 'Week', [Definition] = 'Week is the unit of time by which a cycle is defined.', [SortOrder] = NULL WHERE [Code] = 'Week' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFrequencyUnit] WHERE [Code] = 'Year') BEGIN INSERT INTO dbo.[RefFrequencyUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Year', 'Year', 'Year is the unit of time by which a cycle is defined.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFrequencyUnit] -SET [Description] = 'Year', [Definition] = 'Year is the unit of time by which a cycle is defined.', [SortOrder] = NULL WHERE [Code] = 'Year' END -END - -PRINT N'Populate RefFullTimeStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefFullTimeStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFullTimeStatus] WHERE [Code] = 'Full-time') BEGIN INSERT INTO dbo.[RefFullTimeStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Full-time', 'Full-time', 'The person is employed full-time.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFullTimeStatus] -SET [Description] = 'Full-time', [Definition] = 'The person is employed full-time.', [SortOrder] = 1.00 WHERE [Code] = 'Full-time' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefFullTimeStatus] WHERE [Code] = 'Part-time') BEGIN INSERT INTO dbo.[RefFullTimeStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Part-time', 'Part-time', 'The person is employed part-time.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefFullTimeStatus] -SET [Description] = 'Part-time', [Definition] = 'The person is employed part-time.', [SortOrder] = 2.00 WHERE [Code] = 'Part-time' END -END - -PRINT N'Populate RefGoalMeasurementType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGoalMeasurementType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalMeasurementType] WHERE [Code] = 'Datacharts') BEGIN INSERT INTO dbo.[RefGoalMeasurementType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Datacharts', 'Data charts', 'Data charts are specified as the type of evidence appropriate for assessing achievement of a goal or short-term objective.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalMeasurementType] -SET [Description] = 'Data charts', [Definition] = 'Data charts are specified as the type of evidence appropriate for assessing achievement of a goal or short-term objective.', [SortOrder] = NULL WHERE [Code] = 'Datacharts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalMeasurementType] WHERE [Code] = 'Observationlog') BEGIN INSERT INTO dbo.[RefGoalMeasurementType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Observationlog', 'Observation log', 'Observation log is specified as the type of evidence appropriate for assessing achievement of a goal or short-term objective.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalMeasurementType] -SET [Description] = 'Observation log', [Definition] = 'Observation log is specified as the type of evidence appropriate for assessing achievement of a goal or short-term objective.', [SortOrder] = NULL WHERE [Code] = 'Observationlog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalMeasurementType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefGoalMeasurementType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The type of evidence appropriate for assessing achievement of a goal or short-term objective is in a category not yet defined in CEDS.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalMeasurementType] -SET [Description] = 'Other', [Definition] = 'The type of evidence appropriate for assessing achievement of a goal or short-term objective is in a category not yet defined in CEDS.', [SortOrder] = NULL WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalMeasurementType] WHERE [Code] = 'Tests') BEGIN INSERT INTO dbo.[RefGoalMeasurementType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Tests', 'Tests', 'Tests are specified as the type of evidence appropriate for assessing achievement of a goal or short-term objective.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalMeasurementType] -SET [Description] = 'Tests', [Definition] = 'Tests are specified as the type of evidence appropriate for assessing achievement of a goal or short-term objective.', [SortOrder] = NULL WHERE [Code] = 'Tests' END -END - -PRINT N'Populate RefGoalsForAttendingAdultEducation table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGoalsForAttendingAdultEducation]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalsForAttendingAdultEducation] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefGoalsForAttendingAdultEducation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Obtain a job', 'The person''s reasons for attending an adult education class or program is to obtain a job.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalsForAttendingAdultEducation] -SET [Description] = 'Obtain a job', [Definition] = 'The person''s reasons for attending an adult education class or program is to obtain a job.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalsForAttendingAdultEducation] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefGoalsForAttendingAdultEducation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Retain current job', 'The person''s reasons for attending an adult education class or program is to retain a current job.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalsForAttendingAdultEducation] -SET [Description] = 'Retain current job', [Definition] = 'The person''s reasons for attending an adult education class or program is to retain a current job.', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalsForAttendingAdultEducation] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefGoalsForAttendingAdultEducation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Earn a secondary school diploma or achieve GED certificate', 'The person''s reasons for attending an adult education class or program is to earn a secondary school diploma or achieve GED certificate.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalsForAttendingAdultEducation] -SET [Description] = 'Earn a secondary school diploma or achieve GED certificate', [Definition] = 'The person''s reasons for attending an adult education class or program is to earn a secondary school diploma or achieve GED certificate.', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalsForAttendingAdultEducation] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefGoalsForAttendingAdultEducation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Enter postsecondary education or job training', 'The person''s reasons for attending an adult education class or program is to enter postsecondary education or job training.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalsForAttendingAdultEducation] -SET [Description] = 'Enter postsecondary education or job training', [Definition] = 'The person''s reasons for attending an adult education class or program is to enter postsecondary education or job training.', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalsForAttendingAdultEducation] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefGoalsForAttendingAdultEducation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Improve basic literacy skills', 'The person''s reasons for attending an adult education class or program is to improve basic literacy skills.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalsForAttendingAdultEducation] -SET [Description] = 'Improve basic literacy skills', [Definition] = 'The person''s reasons for attending an adult education class or program is to improve basic literacy skills.', [SortOrder] = 5.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalsForAttendingAdultEducation] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefGoalsForAttendingAdultEducation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Improve English language skills', 'The person''s reasons for attending an adult education class or program is to improve English language skills.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalsForAttendingAdultEducation] -SET [Description] = 'Improve English language skills', [Definition] = 'The person''s reasons for attending an adult education class or program is to improve English language skills.', [SortOrder] = 6.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalsForAttendingAdultEducation] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefGoalsForAttendingAdultEducation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Obtain citizenship skills', 'The person''s reasons for attending an adult education class or program is to obtain citizenship skills.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalsForAttendingAdultEducation] -SET [Description] = 'Obtain citizenship skills', [Definition] = 'The person''s reasons for attending an adult education class or program is to obtain citizenship skills.', [SortOrder] = 7.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalsForAttendingAdultEducation] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefGoalsForAttendingAdultEducation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Achieve work-based project learner goals', 'The person''s reasons for attending an adult education class or program is to achieve work-based project learner goals.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalsForAttendingAdultEducation] -SET [Description] = 'Achieve work-based project learner goals', [Definition] = 'The person''s reasons for attending an adult education class or program is to achieve work-based project learner goals.', [SortOrder] = 8.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalsForAttendingAdultEducation] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefGoalsForAttendingAdultEducation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Other personal goals', 'The person''s reasons for attending an adult education class or program is to achieve other personal goals.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalsForAttendingAdultEducation] -SET [Description] = 'Other personal goals', [Definition] = 'The person''s reasons for attending an adult education class or program is to achieve other personal goals.', [SortOrder] = 9.00 WHERE [Code] = '09' END -END - -PRINT N'Populate RefGoalStatusType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGoalStatusType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalStatusType] WHERE [Code] = 'Completed') BEGIN INSERT INTO dbo.[RefGoalStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Completed', 'Completed', 'Completed is specified as the status toward achievement of the annual goal or short-term objectives.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalStatusType] -SET [Description] = 'Completed', [Definition] = 'Completed is specified as the status toward achievement of the annual goal or short-term objectives.', [SortOrder] = NULL WHERE [Code] = 'Completed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalStatusType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefGoalStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The status toward achievement of the annual goal or short-term objectives is in a category not yet defined in CEDS.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalStatusType] -SET [Description] = 'Other', [Definition] = 'The status toward achievement of the annual goal or short-term objectives is in a category not yet defined in CEDS.', [SortOrder] = NULL WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalStatusType] WHERE [Code] = 'SatisfactoryProgress') BEGIN INSERT INTO dbo.[RefGoalStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SatisfactoryProgress', 'Satisfactory Progress', 'Satisfactory Progress is specified as the status toward achievement of the annual goal or short-term objectives.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalStatusType] -SET [Description] = 'Satisfactory Progress', [Definition] = 'Satisfactory Progress is specified as the status toward achievement of the annual goal or short-term objectives.', [SortOrder] = NULL WHERE [Code] = 'SatisfactoryProgress' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGoalStatusType] WHERE [Code] = 'UnsatisfactoryProgress') BEGIN INSERT INTO dbo.[RefGoalStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UnsatisfactoryProgress', 'Unsatisfactory Progress', 'Unsatisfactory Progress is specified as the status toward achievement of the annual goal or short-term objectives.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGoalStatusType] -SET [Description] = 'Unsatisfactory Progress', [Definition] = 'Unsatisfactory Progress is specified as the status toward achievement of the annual goal or short-term objectives.', [SortOrder] = NULL WHERE [Code] = 'UnsatisfactoryProgress' END -END - -PRINT N'Populate RefGpaWeightedIndicator table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGpaWeightedIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGpaWeightedIndicator] WHERE [Code] = 'Weighted') BEGIN INSERT INTO dbo.[RefGpaWeightedIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Weighted', 'Weighted', 'The reported Grade Point Average is weighted.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGpaWeightedIndicator] -SET [Description] = 'Weighted', [Definition] = 'The reported Grade Point Average is weighted.', [SortOrder] = 1.00 WHERE [Code] = 'Weighted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGpaWeightedIndicator] WHERE [Code] = 'Unweighted') BEGIN INSERT INTO dbo.[RefGpaWeightedIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unweighted', 'Unweighted', 'The reported Grade Point Average is unweighted.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGpaWeightedIndicator] -SET [Description] = 'Unweighted', [Definition] = 'The reported Grade Point Average is unweighted.', [SortOrder] = 2.00 WHERE [Code] = 'Unweighted' END -END - -PRINT N'Populate RefGradePointAverageDomain table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGradePointAverageDomain]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradePointAverageDomain] WHERE [Code] = 'HighSchool') BEGIN INSERT INTO dbo.[RefGradePointAverageDomain]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HighSchool', 'High School', 'High School is the domain to which the Grade Point Average is referencing.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradePointAverageDomain] -SET [Description] = 'High School', [Definition] = 'High School is the domain to which the Grade Point Average is referencing.', [SortOrder] = 1.00 WHERE [Code] = 'HighSchool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradePointAverageDomain] WHERE [Code] = 'PSUndergraduate') BEGIN INSERT INTO dbo.[RefGradePointAverageDomain]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PSUndergraduate', 'Postsecondary Undergraduate', 'Postsecondary Undergraduate is the domain to which the Grade Point Average is referencing.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradePointAverageDomain] -SET [Description] = 'Postsecondary Undergraduate', [Definition] = 'Postsecondary Undergraduate is the domain to which the Grade Point Average is referencing.', [SortOrder] = 2.00 WHERE [Code] = 'PSUndergraduate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradePointAverageDomain] WHERE [Code] = 'PSTransfer') BEGIN INSERT INTO dbo.[RefGradePointAverageDomain]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PSTransfer', 'Postsecondary Transfer Institution', 'Postsecondary Transfer Institution is the domain to which the Grade Point Average is referencing.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradePointAverageDomain] -SET [Description] = 'Postsecondary Transfer Institution', [Definition] = 'Postsecondary Transfer Institution is the domain to which the Grade Point Average is referencing.', [SortOrder] = 3.00 WHERE [Code] = 'PSTransfer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradePointAverageDomain] WHERE [Code] = 'PSGraduate') BEGIN INSERT INTO dbo.[RefGradePointAverageDomain]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PSGraduate', 'Postsecondary Graduate', 'Postsecondary Graduate is the domain to which the Grade Point Average is referencing.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradePointAverageDomain] -SET [Description] = 'Postsecondary Graduate', [Definition] = 'Postsecondary Graduate is the domain to which the Grade Point Average is referencing.', [SortOrder] = 4.00 WHERE [Code] = 'PSGraduate' END -END - -PRINT N'Populate RefGraduateAssistantIpedsCategory table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGraduateAssistantIpedsCategory]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGraduateAssistantIpedsCategory] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefGraduateAssistantIpedsCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Teaching', 'Teaching is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGraduateAssistantIpedsCategory] -SET [Description] = 'Teaching', [Definition] = 'Teaching is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGraduateAssistantIpedsCategory] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefGraduateAssistantIpedsCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Research', 'Research is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGraduateAssistantIpedsCategory] -SET [Description] = 'Research', [Definition] = 'Research is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGraduateAssistantIpedsCategory] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefGraduateAssistantIpedsCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Management Occupations', 'Management Occupations is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGraduateAssistantIpedsCategory] -SET [Description] = 'Management Occupations', [Definition] = 'Management Occupations is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGraduateAssistantIpedsCategory] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefGraduateAssistantIpedsCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Business and Financial Occupations', 'Business and Financial Occupations is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGraduateAssistantIpedsCategory] -SET [Description] = 'Business and Financial Occupations', [Definition] = 'Business and Financial Occupations is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGraduateAssistantIpedsCategory] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefGraduateAssistantIpedsCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Computer, Engineering and Science Occupations', 'Computer, Engineering and Science Occupations is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGraduateAssistantIpedsCategory] -SET [Description] = 'Computer, Engineering and Science Occupations', [Definition] = 'Computer, Engineering and Science Occupations is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', [SortOrder] = 5.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGraduateAssistantIpedsCategory] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefGraduateAssistantIpedsCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Community Service, Legal, Arts and Media Occupations', 'Community Service, Legal, Arts and Media Occupations is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGraduateAssistantIpedsCategory] -SET [Description] = 'Community Service, Legal, Arts and Media Occupations', [Definition] = 'Community Service, Legal, Arts and Media Occupations is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', [SortOrder] = 6.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGraduateAssistantIpedsCategory] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefGraduateAssistantIpedsCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Library and Non-postsecondary Teaching', 'Library and Non-postsecondary Teaching is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGraduateAssistantIpedsCategory] -SET [Description] = 'Library and Non-postsecondary Teaching', [Definition] = 'Library and Non-postsecondary Teaching is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', [SortOrder] = 7.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGraduateAssistantIpedsCategory] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefGraduateAssistantIpedsCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Healthcare Practitioners and Technical Occupations', 'Healthcare Practitioners and Technical Occupations is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGraduateAssistantIpedsCategory] -SET [Description] = 'Healthcare Practitioners and Technical Occupations', [Definition] = 'Healthcare Practitioners and Technical Occupations is the Integrated Postsecondary Education Data System (IPEDS) occupational category used to report graduate assistants.', [SortOrder] = 8.00 WHERE [Code] = '08' END -END - -PRINT N'Populate RefGraduateOrDoctoralExamResultsStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGraduateOrDoctoralExamResultsStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGraduateOrDoctoralExamResultsStatus] WHERE [Code] = 'NotRequired') BEGIN INSERT INTO dbo.[RefGraduateOrDoctoralExamResultsStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotRequired', 'Exam not required', 'Exam not required is the individual''s status in completing exams required for graduate or doctoral degree programs.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGraduateOrDoctoralExamResultsStatus] -SET [Description] = 'Exam not required', [Definition] = 'Exam not required is the individual''s status in completing exams required for graduate or doctoral degree programs.', [SortOrder] = 1.00 WHERE [Code] = 'NotRequired' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGraduateOrDoctoralExamResultsStatus] WHERE [Code] = 'NotTaken') BEGIN INSERT INTO dbo.[RefGraduateOrDoctoralExamResultsStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotTaken', 'Exam required but not taken', 'Exam required but not taken is the individual''s status in completing exams required for graduate or doctoral degree programs.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGraduateOrDoctoralExamResultsStatus] -SET [Description] = 'Exam required but not taken', [Definition] = 'Exam required but not taken is the individual''s status in completing exams required for graduate or doctoral degree programs.', [SortOrder] = 2.00 WHERE [Code] = 'NotTaken' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGraduateOrDoctoralExamResultsStatus] WHERE [Code] = 'Waived') BEGIN INSERT INTO dbo.[RefGraduateOrDoctoralExamResultsStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Waived', 'Exam waived', 'Exam waived is the individual''s status in completing exams required for graduate or doctoral degree programs.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGraduateOrDoctoralExamResultsStatus] -SET [Description] = 'Exam waived', [Definition] = 'Exam waived is the individual''s status in completing exams required for graduate or doctoral degree programs.', [SortOrder] = 3.00 WHERE [Code] = 'Waived' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGraduateOrDoctoralExamResultsStatus] WHERE [Code] = 'Passed') BEGIN INSERT INTO dbo.[RefGraduateOrDoctoralExamResultsStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Passed', 'Exam taken and passed', 'Exam taken and passed is the individual''s status in completing exams required for graduate or doctoral degree programs.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGraduateOrDoctoralExamResultsStatus] -SET [Description] = 'Exam taken and passed', [Definition] = 'Exam taken and passed is the individual''s status in completing exams required for graduate or doctoral degree programs.', [SortOrder] = 4.00 WHERE [Code] = 'Passed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGraduateOrDoctoralExamResultsStatus] WHERE [Code] = 'Failed') BEGIN INSERT INTO dbo.[RefGraduateOrDoctoralExamResultsStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Failed', 'Exam taken and failed', 'Exam taken and failed is the individual''s status in completing exams required for graduate or doctoral degree programs.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGraduateOrDoctoralExamResultsStatus] -SET [Description] = 'Exam taken and failed', [Definition] = 'Exam taken and failed is the individual''s status in completing exams required for graduate or doctoral degree programs.', [SortOrder] = 5.00 WHERE [Code] = 'Failed' END -END - -PRINT N'Populate RefGunFreeSchoolsActReportingStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGunFreeSchoolsActReportingStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGunFreeSchoolsActReportingStatus] WHERE [Code] = 'YesReportingOffenses') BEGIN INSERT INTO dbo.[RefGunFreeSchoolsActReportingStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YesReportingOffenses', 'Yes, with reporting of one or more students for an offense', 'The school or local education agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, with reporting of one or more students for an offense.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGunFreeSchoolsActReportingStatus] -SET [Description] = 'Yes, with reporting of one or more students for an offense', [Definition] = 'The school or local education agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, with reporting of one or more students for an offense.', [SortOrder] = 1.00 WHERE [Code] = 'YesReportingOffenses' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGunFreeSchoolsActReportingStatus] WHERE [Code] = 'YesNoReportedOffenses') BEGIN INSERT INTO dbo.[RefGunFreeSchoolsActReportingStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YesNoReportedOffenses', 'Yes, with no reported offenses', 'The school or local education agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, with no reported offenses.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGunFreeSchoolsActReportingStatus] -SET [Description] = 'Yes, with no reported offenses', [Definition] = 'The school or local education agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, with no reported offenses.', [SortOrder] = 2.00 WHERE [Code] = 'YesNoReportedOffenses' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGunFreeSchoolsActReportingStatus] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefGunFreeSchoolsActReportingStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', 'The school or local education agency (LEA) did not submit a Gun-Free Schools Act (GFSA) of 1994 report to the state.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGunFreeSchoolsActReportingStatus] -SET [Description] = 'No', [Definition] = 'The school or local education agency (LEA) did not submit a Gun-Free Schools Act (GFSA) of 1994 report to the state.', [SortOrder] = 3.00 WHERE [Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGunFreeSchoolsActReportingStatus] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefGunFreeSchoolsActReportingStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', 'Gun-Free Schools Act (GFSA) of 1994 reporting is not applicable.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGunFreeSchoolsActReportingStatus] -SET [Description] = 'Not applicable', [Definition] = 'Gun-Free Schools Act (GFSA) of 1994 reporting is not applicable.', [SortOrder] = 4.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefHealthInsuranceCoverage table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefHealthInsuranceCoverage]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHealthInsuranceCoverage] WHERE [Code] = 'NonWorkplace') BEGIN INSERT INTO dbo.[RefHealthInsuranceCoverage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NonWorkplace', 'Non-workplace or personal', 'Non-workplace or personal insurance coverage.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHealthInsuranceCoverage] -SET [Description] = 'Non-workplace or personal', [Definition] = 'Non-workplace or personal insurance coverage.', [SortOrder] = 1.00 WHERE [Code] = 'NonWorkplace' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHealthInsuranceCoverage] WHERE [Code] = 'Workplace') BEGIN INSERT INTO dbo.[RefHealthInsuranceCoverage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Workplace', 'Workplace', 'Workplace insurance coverage.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHealthInsuranceCoverage] -SET [Description] = 'Workplace', [Definition] = 'Workplace insurance coverage.', [SortOrder] = 2.00 WHERE [Code] = 'Workplace' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHealthInsuranceCoverage] WHERE [Code] = 'Medicaid') BEGIN INSERT INTO dbo.[RefHealthInsuranceCoverage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Medicaid', 'Medicaid', 'Medicaid insurance coverage.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHealthInsuranceCoverage] -SET [Description] = 'Medicaid', [Definition] = 'Medicaid insurance coverage.', [SortOrder] = 3.00 WHERE [Code] = 'Medicaid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHealthInsuranceCoverage] WHERE [Code] = 'CHIP') BEGIN INSERT INTO dbo.[RefHealthInsuranceCoverage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CHIP', 'Children''s health insurance program', 'Children''s health insurance program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHealthInsuranceCoverage] -SET [Description] = 'Children''s health insurance program', [Definition] = 'Children''s health insurance program.', [SortOrder] = 4.00 WHERE [Code] = 'CHIP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHealthInsuranceCoverage] WHERE [Code] = 'StateOnlyFunded') BEGIN INSERT INTO dbo.[RefHealthInsuranceCoverage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateOnlyFunded', 'State-only funded insurance', 'State-only funded insurance coverage.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHealthInsuranceCoverage] -SET [Description] = 'State-only funded insurance', [Definition] = 'State-only funded insurance coverage.', [SortOrder] = 5.00 WHERE [Code] = 'StateOnlyFunded' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHealthInsuranceCoverage] WHERE [Code] = 'SSI') BEGIN INSERT INTO dbo.[RefHealthInsuranceCoverage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SSI', 'Supplemental security income', 'Supplemental security income insurance coverage.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHealthInsuranceCoverage] -SET [Description] = 'Supplemental security income', [Definition] = 'Supplemental security income insurance coverage.', [SortOrder] = 6.00 WHERE [Code] = 'SSI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHealthInsuranceCoverage] WHERE [Code] = 'Military') BEGIN INSERT INTO dbo.[RefHealthInsuranceCoverage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Military', 'Military medical', 'Military medical insurance coverage.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHealthInsuranceCoverage] -SET [Description] = 'Military medical', [Definition] = 'Military medical insurance coverage.', [SortOrder] = 8.00 WHERE [Code] = 'Military' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHealthInsuranceCoverage] WHERE [Code] = 'Veteran') BEGIN INSERT INTO dbo.[RefHealthInsuranceCoverage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Veteran', 'Veteran''s medical', 'Veteran''s medical insurance coverage.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHealthInsuranceCoverage] -SET [Description] = 'Veteran''s medical', [Definition] = 'Veteran''s medical insurance coverage.', [SortOrder] = 10.00 WHERE [Code] = 'Veteran' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHealthInsuranceCoverage] WHERE [Code] = 'None') BEGIN INSERT INTO dbo.[RefHealthInsuranceCoverage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('None', 'None', 'None insurance coverage.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHealthInsuranceCoverage] -SET [Description] = 'None', [Definition] = 'None insurance coverage.', [SortOrder] = 20.00 WHERE [Code] = 'None' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHealthInsuranceCoverage] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefHealthInsuranceCoverage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other insurance coverage.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHealthInsuranceCoverage] -SET [Description] = 'Other', [Definition] = 'Other insurance coverage.', [SortOrder] = 21.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefHearingScreeningStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefHearingScreeningStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHearingScreeningStatus] WHERE [Code] = 'Passed') BEGIN INSERT INTO dbo.[RefHearingScreeningStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Passed', 'Passed', 'The person passed the screening.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHearingScreeningStatus] -SET [Description] = 'Passed', [Definition] = 'The person passed the screening.', [SortOrder] = 1.00 WHERE [Code] = 'Passed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHearingScreeningStatus] WHERE [Code] = 'FurtherEvaluation') BEGIN INSERT INTO dbo.[RefHearingScreeningStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FurtherEvaluation', 'Further Evaluation Needed', 'Further evaluation is needed.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHearingScreeningStatus] -SET [Description] = 'Further Evaluation Needed', [Definition] = 'Further evaluation is needed.', [SortOrder] = 2.00 WHERE [Code] = 'FurtherEvaluation' END -END - -PRINT N'Populate RefHigherEducationInstitutionAccreditationStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefHigherEducationInstitutionAccreditationStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHigherEducationInstitutionAccreditationStatus] WHERE [Code] = 'Regional') BEGIN INSERT INTO dbo.[RefHigherEducationInstitutionAccreditationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Regional', 'Regionally accredited', 'Regionally accredited higher education institution.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHigherEducationInstitutionAccreditationStatus] -SET [Description] = 'Regionally accredited', [Definition] = 'Regionally accredited higher education institution.', [SortOrder] = 1.00 WHERE [Code] = 'Regional' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHigherEducationInstitutionAccreditationStatus] WHERE [Code] = 'Programmatic') BEGIN INSERT INTO dbo.[RefHigherEducationInstitutionAccreditationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Programmatic', 'Programmatic accreditation', 'Programmatic accreditation higher education institution.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHigherEducationInstitutionAccreditationStatus] -SET [Description] = 'Programmatic accreditation', [Definition] = 'Programmatic accreditation higher education institution.', [SortOrder] = 2.00 WHERE [Code] = 'Programmatic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHigherEducationInstitutionAccreditationStatus] WHERE [Code] = 'National') BEGIN INSERT INTO dbo.[RefHigherEducationInstitutionAccreditationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('National', 'Nationally accredited', 'Nationally accredited higher education institution.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHigherEducationInstitutionAccreditationStatus] -SET [Description] = 'Nationally accredited', [Definition] = 'Nationally accredited higher education institution.', [SortOrder] = 3.00 WHERE [Code] = 'National' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHigherEducationInstitutionAccreditationStatus] WHERE [Code] = 'Faith') BEGIN INSERT INTO dbo.[RefHigherEducationInstitutionAccreditationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Faith', 'Faith', 'Faith-based accreditation organization.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHigherEducationInstitutionAccreditationStatus] -SET [Description] = 'Faith', [Definition] = 'Faith-based accreditation organization.', [SortOrder] = 4.00 WHERE [Code] = 'Faith' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHigherEducationInstitutionAccreditationStatus] WHERE [Code] = 'CareerRelated') BEGIN INSERT INTO dbo.[RefHigherEducationInstitutionAccreditationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CareerRelated', 'Career related', 'Career related higher education institution.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHigherEducationInstitutionAccreditationStatus] -SET [Description] = 'Career related', [Definition] = 'Career related higher education institution.', [SortOrder] = 5.00 WHERE [Code] = 'CareerRelated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHigherEducationInstitutionAccreditationStatus] WHERE [Code] = 'NotAccredited') BEGIN INSERT INTO dbo.[RefHigherEducationInstitutionAccreditationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotAccredited', 'Not accredited', 'Not accredited higher education institution.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHigherEducationInstitutionAccreditationStatus] -SET [Description] = 'Not accredited', [Definition] = 'Not accredited higher education institution.', [SortOrder] = 6.00 WHERE [Code] = 'NotAccredited' END -END - -PRINT N'Populate RefHighSchoolDiplomaDistinctionType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefHighSchoolDiplomaDistinctionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaDistinctionType] WHERE [Code] = 'Minimum') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaDistinctionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Minimum', 'Minimum', 'Minimum is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaDistinctionType] -SET [Description] = 'Minimum', [Definition] = 'Minimum is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', [SortOrder] = 1.00 WHERE [Code] = 'Minimum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaDistinctionType] WHERE [Code] = 'Recommended') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaDistinctionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Recommended', 'Recommended', 'Recommended is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaDistinctionType] -SET [Description] = 'Recommended', [Definition] = 'Recommended is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', [SortOrder] = 2.00 WHERE [Code] = 'Recommended' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaDistinctionType] WHERE [Code] = 'Distinguished') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaDistinctionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Distinguished', 'Distinguished', 'Distinguished is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaDistinctionType] -SET [Description] = 'Distinguished', [Definition] = 'Distinguished is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', [SortOrder] = 3.00 WHERE [Code] = 'Distinguished' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaDistinctionType] WHERE [Code] = 'OpenEnrollment') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaDistinctionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OpenEnrollment', 'Open Enrollment', 'Open Enrollment is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaDistinctionType] -SET [Description] = 'Open Enrollment', [Definition] = 'Open Enrollment is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', [SortOrder] = 4.00 WHERE [Code] = 'OpenEnrollment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaDistinctionType] WHERE [Code] = 'MagnaCumLaude') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaDistinctionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MagnaCumLaude', 'Magna cum laude', 'Magna cum laude is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaDistinctionType] -SET [Description] = 'Magna cum laude', [Definition] = 'Magna cum laude is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', [SortOrder] = 5.00 WHERE [Code] = 'MagnaCumLaude' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaDistinctionType] WHERE [Code] = 'SummaCumLaude') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaDistinctionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SummaCumLaude', 'Summa cum laude', 'Summa cum laude is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaDistinctionType] -SET [Description] = 'Summa cum laude', [Definition] = 'Summa cum laude is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', [SortOrder] = 6.00 WHERE [Code] = 'SummaCumLaude' END -END - -PRINT N'Populate RefHighSchoolDiplomaType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefHighSchoolDiplomaType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00806') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00806', 'Regular diploma', 'Regular diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'Regular diploma', [Definition] = 'Regular diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 1.00 WHERE [Code] = '00806' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00807') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00807', 'Endorsed/advanced diploma', 'Endorsed/advanced diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'Endorsed/advanced diploma', [Definition] = 'Endorsed/advanced diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 2.00 WHERE [Code] = '00807' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00808') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00808', 'Regents diploma', 'Regents diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'Regents diploma', [Definition] = 'Regents diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 3.00 WHERE [Code] = '00808' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00809') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00809', 'International Baccalaureate', 'International Baccalaureate was awarded to the person in recognition of his/her completion of the curricular requirements.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'International Baccalaureate', [Definition] = 'International Baccalaureate was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 4.00 WHERE [Code] = '00809' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00810') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00810', 'Modified diploma', 'Modified diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'Modified diploma', [Definition] = 'Modified diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 5.00 WHERE [Code] = '00810' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00811') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00811', 'Other diploma', 'Other diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'Other diploma', [Definition] = 'Other diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 6.00 WHERE [Code] = '00811' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00812') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00812', 'Alternative credential', 'Alternative credential was awarded to the person in recognition of his/her completion of the curricular requirements.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'Alternative credential', [Definition] = 'Alternative credential was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 7.00 WHERE [Code] = '00812' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00813') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00813', 'Certificate of attendance', 'Certificate of attendance was awarded to the person in recognition of his/her completion of the curricular requirements.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'Certificate of attendance', [Definition] = 'Certificate of attendance was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 8.00 WHERE [Code] = '00813' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00814') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00814', 'Certificate of completion', 'Certificate of completion was awarded to the person in recognition of his/her completion of the curricular requirements.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'Certificate of completion', [Definition] = 'Certificate of completion was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 9.00 WHERE [Code] = '00814' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00815') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00815', 'High school equivalency credential, other than GED', 'High school equivalency credential, other than GED was awarded to the person in recognition of his/her completion of the curricular requirements.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'High school equivalency credential, other than GED', [Definition] = 'High school equivalency credential, other than GED was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 10.00 WHERE [Code] = '00815' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00816') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00816', 'General Educational Development (GED) credential', 'General Educational Development (GED) credential was awarded to the person in recognition of his/her completion of the curricular requirements.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'General Educational Development (GED) credential', [Definition] = 'General Educational Development (GED) credential was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 11.00 WHERE [Code] = '00816' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00818') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00818', 'Post graduate certificate (grade 13)', 'Post graduate certificate (grade 13) was awarded to the person in recognition of his/her completion of the curricular requirements.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'Post graduate certificate (grade 13)', [Definition] = 'Post graduate certificate (grade 13) was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 12.00 WHERE [Code] = '00818' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00819') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00819', 'Career and Technical Education certificate', 'Career and Technical Education certificate was awarded to the person in recognition of his/her completion of the curricular requirements.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'Career and Technical Education certificate', [Definition] = 'Career and Technical Education certificate was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 13.00 WHERE [Code] = '00819' END -END - -PRINT N'Populate RefHighSchoolGraduationRateIndicator table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefHighSchoolGraduationRateIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolGraduationRateIndicator] WHERE [Code] = 'MetGoal') BEGIN INSERT INTO dbo.[RefHighSchoolGraduationRateIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MetGoal', 'Met (Goal)', 'The school or district met the High School Graduation Rate goal in accordance with state definition for the purposes of determining AYP.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolGraduationRateIndicator] -SET [Description] = 'Met (Goal)', [Definition] = 'The school or district met the High School Graduation Rate goal in accordance with state definition for the purposes of determining AYP.', [SortOrder] = 1.00 WHERE [Code] = 'MetGoal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolGraduationRateIndicator] WHERE [Code] = 'MetTarget') BEGIN INSERT INTO dbo.[RefHighSchoolGraduationRateIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MetTarget', 'Met (Target)', 'The school or district met the High School Graduation Rate target in accordance with state definition for the purposes of determining AYP.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolGraduationRateIndicator] -SET [Description] = 'Met (Target)', [Definition] = 'The school or district met the High School Graduation Rate target in accordance with state definition for the purposes of determining AYP.', [SortOrder] = 2.00 WHERE [Code] = 'MetTarget' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolGraduationRateIndicator] WHERE [Code] = 'DidNotMeet') BEGIN INSERT INTO dbo.[RefHighSchoolGraduationRateIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DidNotMeet', 'Did Not Meet', 'The school or district did not meet the high school graduation rate indicator for a student subgroup or for all students.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolGraduationRateIndicator] -SET [Description] = 'Did Not Meet', [Definition] = 'The school or district did not meet the high school graduation rate indicator for a student subgroup or for all students.', [SortOrder] = 3.00 WHERE [Code] = 'DidNotMeet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolGraduationRateIndicator] WHERE [Code] = 'TooFewStudents') BEGIN INSERT INTO dbo.[RefHighSchoolGraduationRateIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TooFewStudents', 'Too Few Students', 'The number of students in the school or district or for a student subgroup was less than the minimum group size outlines in a state''s consolidated accountability workbook necessary required to reliably calculate the high school graduation rate indicator.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolGraduationRateIndicator] -SET [Description] = 'Too Few Students', [Definition] = 'The number of students in the school or district or for a student subgroup was less than the minimum group size outlines in a state''s consolidated accountability workbook necessary required to reliably calculate the high school graduation rate indicator.', [SortOrder] = 4.00 WHERE [Code] = 'TooFewStudents' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolGraduationRateIndicator] WHERE [Code] = 'NoStudents') BEGIN INSERT INTO dbo.[RefHighSchoolGraduationRateIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoStudents', 'There are no students in a student subgroup. ', 'There are no students in the student subgroup for determining the High School Graduation Rate.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolGraduationRateIndicator] -SET [Description] = 'There are no students in a student subgroup. ', [Definition] = 'There are no students in the student subgroup for determining the High School Graduation Rate.', [SortOrder] = 5.00 WHERE [Code] = 'NoStudents' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolGraduationRateIndicator] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefHighSchoolGraduationRateIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', 'The high school graduation rate indicator status is not applicable.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolGraduationRateIndicator] -SET [Description] = 'Not applicable', [Definition] = 'The high school graduation rate indicator status is not applicable.', [SortOrder] = 10.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefHomelessNighttimeResidence table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefHomelessNighttimeResidence]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHomelessNighttimeResidence] WHERE [Code] = 'DoubledUp') BEGIN INSERT INTO dbo.[RefHomelessNighttimeResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DoubledUp', 'Doubled Up', 'Doubled-up (i.e., living with another family) is the primary nighttime residence of the person at the time they were identified as homeless', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHomelessNighttimeResidence] -SET [Description] = 'Doubled Up', [Definition] = 'Doubled-up (i.e., living with another family) is the primary nighttime residence of the person at the time they were identified as homeless', [SortOrder] = 2.00 WHERE [Code] = 'DoubledUp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHomelessNighttimeResidence] WHERE [Code] = 'Unsheltered') BEGIN INSERT INTO dbo.[RefHomelessNighttimeResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unsheltered', 'Unsheltered', 'Unsheltered (e.g. cars, parks, campgrounds, temporary trailers including FEMA trailers, or abandoned buildings) is the primary nighttime residence of the person at the time they were identified as homeless', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHomelessNighttimeResidence] -SET [Description] = 'Unsheltered', [Definition] = 'Unsheltered (e.g. cars, parks, campgrounds, temporary trailers including FEMA trailers, or abandoned buildings) is the primary nighttime residence of the person at the time they were identified as homeless', [SortOrder] = 3.00 WHERE [Code] = 'Unsheltered' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHomelessNighttimeResidence] WHERE [Code] = 'HotelMotel') BEGIN INSERT INTO dbo.[RefHomelessNighttimeResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HotelMotel', 'Hotels/Motels', 'Hotels/Motels is the primary nighttime residence of the person at the time they were identified as homeless', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHomelessNighttimeResidence] -SET [Description] = 'Hotels/Motels', [Definition] = 'Hotels/Motels is the primary nighttime residence of the person at the time they were identified as homeless', [SortOrder] = 4.00 WHERE [Code] = 'HotelMotel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHomelessNighttimeResidence] WHERE [Code] = 'Shelter') BEGIN INSERT INTO dbo.[RefHomelessNighttimeResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Shelter', 'Shelter', 'A Shelter is the primary nighttime residence of the person at the time they were identified as homeless', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHomelessNighttimeResidence] -SET [Description] = 'Shelter', [Definition] = 'A Shelter is the primary nighttime residence of the person at the time they were identified as homeless', [SortOrder] = 5.00 WHERE [Code] = 'Shelter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHomelessNighttimeResidence] WHERE [Code] = 'SheltersTransitionalHousing') BEGIN INSERT INTO dbo.[RefHomelessNighttimeResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SheltersTransitionalHousing', 'Shelters Transitional Housing', 'Shelters or Transitional Housing is the primary nighttime residence of the person at the time they were identified as homeless', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHomelessNighttimeResidence] -SET [Description] = 'Shelters Transitional Housing', [Definition] = 'Shelters or Transitional Housing is the primary nighttime residence of the person at the time they were identified as homeless', [SortOrder] = 6.00 WHERE [Code] = 'SheltersTransitionalHousing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefHomelessNighttimeResidence] WHERE [Code] = 'TransitionalHousing') BEGIN INSERT INTO dbo.[RefHomelessNighttimeResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TransitionalHousing', 'Transitional Housing', 'Transitional Housing is the primary nighttime residence of the person at the time they were identified as homeless', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHomelessNighttimeResidence] -SET [Description] = 'Transitional Housing', [Definition] = 'Transitional Housing is the primary nighttime residence of the person at the time they were identified as homeless', [SortOrder] = 7.00 WHERE [Code] = 'TransitionalHousing' END -END - -PRINT N'Populate RefIDEADisabilityType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIDEADisabilityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisabilityType] WHERE [Code] = 'Autism') BEGIN INSERT INTO dbo.[RefIDEADisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Autism', 'Autism', 'Autism means a developmental disability significantly affecting verbal and nonverbal communication and social interaction, generally evident before age three, that adversely affects a child''s educational performance. Other characteristics often associated with autism are engagement in repetitive activities and stereotyped movements, resistance to environmental change or change in daily routines, and unusual responses to sensory experiences.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisabilityType] -SET [Description] = 'Autism', [Definition] = 'Autism means a developmental disability significantly affecting verbal and nonverbal communication and social interaction, generally evident before age three, that adversely affects a child''s educational performance. Other characteristics often associated with autism are engagement in repetitive activities and stereotyped movements, resistance to environmental change or change in daily routines, and unusual responses to sensory experiences.', [SortOrder] = NULL WHERE [Code] = 'Autism' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisabilityType] WHERE [Code] = 'Deafblindness') BEGIN INSERT INTO dbo.[RefIDEADisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Deafblindness', 'Deaf-blindness', 'Deaf-blindness means concomitant hearing and visual impairments, the combination of which causes such severe communication and other developmental and educational needs that they cannot be accommodated in special education programs solely for children with deafness or children with blindness.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisabilityType] -SET [Description] = 'Deaf-blindness', [Definition] = 'Deaf-blindness means concomitant hearing and visual impairments, the combination of which causes such severe communication and other developmental and educational needs that they cannot be accommodated in special education programs solely for children with deafness or children with blindness.', [SortOrder] = NULL WHERE [Code] = 'Deafblindness' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisabilityType] WHERE [Code] = 'Deafness') BEGIN INSERT INTO dbo.[RefIDEADisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Deafness', 'Deafness', 'Deafness means a hearing impairment that is so severe that the child is impaired in processing linguistic information through hearing, with or without amplification, that adversely affects a child''s educational performance.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisabilityType] -SET [Description] = 'Deafness', [Definition] = 'Deafness means a hearing impairment that is so severe that the child is impaired in processing linguistic information through hearing, with or without amplification, that adversely affects a child''s educational performance.', [SortOrder] = NULL WHERE [Code] = 'Deafness' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisabilityType] WHERE [Code] = 'Developmentaldelay') BEGIN INSERT INTO dbo.[RefIDEADisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Developmentaldelay', 'Developmental delay', 'Developmental delays are defined by the State and as measured by appropriate diagnostic instruments and procedures in one or more of the following areas: Physical development, cognitive development, communication development, social or emotional development, or adaptive development; and result in the need of special education and related services.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisabilityType] -SET [Description] = 'Developmental delay', [Definition] = 'Developmental delays are defined by the State and as measured by appropriate diagnostic instruments and procedures in one or more of the following areas: Physical development, cognitive development, communication development, social or emotional development, or adaptive development; and result in the need of special education and related services.', [SortOrder] = NULL WHERE [Code] = 'Developmentaldelay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisabilityType] WHERE [Code] = 'Emotionaldisturbance') BEGIN INSERT INTO dbo.[RefIDEADisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Emotionaldisturbance', 'Emotional disturbance', 'Emotional disturbance means a condition exhibiting one or more of the following characteristics over a long period of time and to a marked degree that adversely affects a child''s educational performance: an inability to learn that cannot be explained by intellectual, sensory, or health factors; an inability to build or maintain satisfactory interpersonal relationships with peers and teachers; inappropriate types of behavior or feelings under normal circumstances; a general pervasive mood of unhappiness or depression, or tendency to develop physical symptoms or fears associated with personal or school problems.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisabilityType] -SET [Description] = 'Emotional disturbance', [Definition] = 'Emotional disturbance means a condition exhibiting one or more of the following characteristics over a long period of time and to a marked degree that adversely affects a child''s educational performance: an inability to learn that cannot be explained by intellectual, sensory, or health factors; an inability to build or maintain satisfactory interpersonal relationships with peers and teachers; inappropriate types of behavior or feelings under normal circumstances; a general pervasive mood of unhappiness or depression, or tendency to develop physical symptoms or fears associated with personal or school problems.', [SortOrder] = NULL WHERE [Code] = 'Emotionaldisturbance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisabilityType] WHERE [Code] = 'Hearingimpairment') BEGIN INSERT INTO dbo.[RefIDEADisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Hearingimpairment', 'Hearing impairment', 'Hearing impairment means an impairment in hearing, whether permanent or fluctuating, that adversely affects a child''s educational performance but that is not included under the definition of deafness.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisabilityType] -SET [Description] = 'Hearing impairment', [Definition] = 'Hearing impairment means an impairment in hearing, whether permanent or fluctuating, that adversely affects a child''s educational performance but that is not included under the definition of deafness.', [SortOrder] = NULL WHERE [Code] = 'Hearingimpairment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisabilityType] WHERE [Code] = 'Intellectualdisability') BEGIN INSERT INTO dbo.[RefIDEADisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Intellectualdisability', 'Intellectual disability', 'Intellectual disability means significantly subaverage general intellectual functioning, existing concurrently with deficits in adaptive behavior and manifested during the developmental period, that adversely affects a child''s educational performance.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisabilityType] -SET [Description] = 'Intellectual disability', [Definition] = 'Intellectual disability means significantly subaverage general intellectual functioning, existing concurrently with deficits in adaptive behavior and manifested during the developmental period, that adversely affects a child''s educational performance.', [SortOrder] = NULL WHERE [Code] = 'Intellectualdisability' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisabilityType] WHERE [Code] = 'Multipledisabilities') BEGIN INSERT INTO dbo.[RefIDEADisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Multipledisabilities', 'Multiple disabilities', 'Multiple disabilities means concomitant impairments (such as intellectual disability-blindness or intellectual disability-orthopedic impairment), the combination of which causes such severe educational needs that they cannot be accommodated in special education programs solely for one of the impairments. Multiple disabilities does not include deaf-blindness.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisabilityType] -SET [Description] = 'Multiple disabilities', [Definition] = 'Multiple disabilities means concomitant impairments (such as intellectual disability-blindness or intellectual disability-orthopedic impairment), the combination of which causes such severe educational needs that they cannot be accommodated in special education programs solely for one of the impairments. Multiple disabilities does not include deaf-blindness.', [SortOrder] = NULL WHERE [Code] = 'Multipledisabilities' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisabilityType] WHERE [Code] = 'Orthopedicimpairment') BEGIN INSERT INTO dbo.[RefIDEADisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Orthopedicimpairment', 'Orthopedic impairment', 'Orthopedic impairment means a severe orthopedic impairment that adversely affects a child''s educational performance. The term includes impairments caused by a congenital anomaly, impairments caused by disease (e.g., poliomyelitis, bone tuberculosis), and impairments from other causes (e.g., cerebral palsy, amputations, and fractures or burns that cause contractures).', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisabilityType] -SET [Description] = 'Orthopedic impairment', [Definition] = 'Orthopedic impairment means a severe orthopedic impairment that adversely affects a child''s educational performance. The term includes impairments caused by a congenital anomaly, impairments caused by disease (e.g., poliomyelitis, bone tuberculosis), and impairments from other causes (e.g., cerebral palsy, amputations, and fractures or burns that cause contractures).', [SortOrder] = NULL WHERE [Code] = 'Orthopedicimpairment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisabilityType] WHERE [Code] = 'Otherhealthimpairment') BEGIN INSERT INTO dbo.[RefIDEADisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Otherhealthimpairment', 'Other health impairment', 'Other health impairment means having limited strength, vitality, or alertness, including a heightened alertness to environmental stimuli, that results in limited alertness with respect to the educational environment, that is due to chronic or acute health problems such as asthma, attention deficit disorder or attention deficit hyperactivity disorder, diabetes, epilepsy, a heart condition, hemophilia, lead poisoning, leukemia, nephritis, rheumatic fever, sickle cell anemia, and Tourette syndrome; and diversely affects a child''s educational performance.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisabilityType] -SET [Description] = 'Other health impairment', [Definition] = 'Other health impairment means having limited strength, vitality, or alertness, including a heightened alertness to environmental stimuli, that results in limited alertness with respect to the educational environment, that is due to chronic or acute health problems such as asthma, attention deficit disorder or attention deficit hyperactivity disorder, diabetes, epilepsy, a heart condition, hemophilia, lead poisoning, leukemia, nephritis, rheumatic fever, sickle cell anemia, and Tourette syndrome; and diversely affects a child''s educational performance.', [SortOrder] = NULL WHERE [Code] = 'Otherhealthimpairment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisabilityType] WHERE [Code] = 'Specificlearningdisability') BEGIN INSERT INTO dbo.[RefIDEADisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Specificlearningdisability', 'Specific learning disability', 'Specific learning disability means a disorder in one or more of the basic psychological processes involved in understanding or in using language, spoken or written, that may manifest itself in the imperfect ability to listen, think, speak, read, write, spell, or to do mathematical calculations, including conditions such as perceptual disabilities, brain injury, minimal brain dysfunction, dyslexia, and developmental aphasia.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisabilityType] -SET [Description] = 'Specific learning disability', [Definition] = 'Specific learning disability means a disorder in one or more of the basic psychological processes involved in understanding or in using language, spoken or written, that may manifest itself in the imperfect ability to listen, think, speak, read, write, spell, or to do mathematical calculations, including conditions such as perceptual disabilities, brain injury, minimal brain dysfunction, dyslexia, and developmental aphasia.', [SortOrder] = NULL WHERE [Code] = 'Specificlearningdisability' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisabilityType] WHERE [Code] = 'Speechlanguageimpairment') BEGIN INSERT INTO dbo.[RefIDEADisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Speechlanguageimpairment', 'Speech or language impairment', 'Speech or language impairment means a communication disorder, such as stuttering, impaired articulation, a language impairment, or a voice impairment, that adversely affects a child''s educational performance.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisabilityType] -SET [Description] = 'Speech or language impairment', [Definition] = 'Speech or language impairment means a communication disorder, such as stuttering, impaired articulation, a language impairment, or a voice impairment, that adversely affects a child''s educational performance.', [SortOrder] = NULL WHERE [Code] = 'Speechlanguageimpairment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisabilityType] WHERE [Code] = 'Traumaticbraininjury') BEGIN INSERT INTO dbo.[RefIDEADisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Traumaticbraininjury', 'Traumatic brain injury', 'Traumatic brain injury means an acquired injury to the brain caused by an external physical force, resulting in total or partial functional disability or psychosocial impairment, or both, that adversely affects a child''s educational performance. Traumatic brain injury applies to open or closed head injuries resulting in impairments in one or more areas, such as cognition; language; memory; attention; reasoning; abstract thinking; judgment; problem-solving; sensory, perceptual, and motor abilities; psychosocial behavior; physical functions; information processing; and speech. Traumatic brain injury does not apply to brain injuries that are congenital or degenerative, or to brain injuries induced by birth trauma.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisabilityType] -SET [Description] = 'Traumatic brain injury', [Definition] = 'Traumatic brain injury means an acquired injury to the brain caused by an external physical force, resulting in total or partial functional disability or psychosocial impairment, or both, that adversely affects a child''s educational performance. Traumatic brain injury applies to open or closed head injuries resulting in impairments in one or more areas, such as cognition; language; memory; attention; reasoning; abstract thinking; judgment; problem-solving; sensory, perceptual, and motor abilities; psychosocial behavior; physical functions; information processing; and speech. Traumatic brain injury does not apply to brain injuries that are congenital or degenerative, or to brain injuries induced by birth trauma.', [SortOrder] = NULL WHERE [Code] = 'Traumaticbraininjury' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisabilityType] WHERE [Code] = 'Visualimpairment') BEGIN INSERT INTO dbo.[RefIDEADisabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Visualimpairment', 'Visual impairment', 'Visual impairment including blindness means an impairment in vision that, even with correction, adversely affects a child''s educational performance. The term includes both partial sight and blindness.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisabilityType] -SET [Description] = 'Visual impairment', [Definition] = 'Visual impairment including blindness means an impairment in vision that, even with correction, adversely affects a child''s educational performance. The term includes both partial sight and blindness.', [SortOrder] = NULL WHERE [Code] = 'Visualimpairment' END -END - -PRINT N'Populate RefIDEADisciplineMethodFirearm table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIDEADisciplineMethodFirearm]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisciplineMethodFirearm] WHERE [Code] = 'EXPMOD') BEGIN INSERT INTO dbo.[RefIDEADisciplineMethodFirearm]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EXPMOD', 'Expulsion modified to less than one year with educational services under IDEA', 'Expulsion modified to less than one year with educational services under IDEA was the methods used to discipline student(s) who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisciplineMethodFirearm] -SET [Description] = 'Expulsion modified to less than one year with educational services under IDEA', [Definition] = 'Expulsion modified to less than one year with educational services under IDEA was the methods used to discipline student(s) who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', [SortOrder] = 1.00 WHERE [Code] = 'EXPMOD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisciplineMethodFirearm] WHERE [Code] = 'EXPNOTMOD') BEGIN INSERT INTO dbo.[RefIDEADisciplineMethodFirearm]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EXPNOTMOD', 'One year expulsion with educational services under IDEA', 'One year expulsion with educational services under IDEA was the methods used to discipline student(s) who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisciplineMethodFirearm] -SET [Description] = 'One year expulsion with educational services under IDEA', [Definition] = 'One year expulsion with educational services under IDEA was the methods used to discipline student(s) who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', [SortOrder] = 2.00 WHERE [Code] = 'EXPNOTMOD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisciplineMethodFirearm] WHERE [Code] = 'REMOVEOTHER') BEGIN INSERT INTO dbo.[RefIDEADisciplineMethodFirearm]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REMOVEOTHER', 'Other reasons such as death, withdrawal, or incarceration', 'Other reasons such as death, withdrawal, or incarceration was the methods used to discipline student(s) who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisciplineMethodFirearm] -SET [Description] = 'Other reasons such as death, withdrawal, or incarceration', [Definition] = 'Other reasons such as death, withdrawal, or incarceration was the methods used to discipline student(s) who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', [SortOrder] = 3.00 WHERE [Code] = 'REMOVEOTHER' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisciplineMethodFirearm] WHERE [Code] = 'OTHERDISACTION') BEGIN INSERT INTO dbo.[RefIDEADisciplineMethodFirearm]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OTHERDISACTION', 'Another type of disciplinary action', 'Another type of disciplinary action was the methods used to discipline student(s) who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisciplineMethodFirearm] -SET [Description] = 'Another type of disciplinary action', [Definition] = 'Another type of disciplinary action was the methods used to discipline student(s) who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', [SortOrder] = 4.00 WHERE [Code] = 'OTHERDISACTION' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEADisciplineMethodFirearm] WHERE [Code] = 'NOACTION') BEGIN INSERT INTO dbo.[RefIDEADisciplineMethodFirearm]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NOACTION', 'No disciplinary action taken', 'No disciplinary action taken was the methods used to discipline student(s) who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEADisciplineMethodFirearm] -SET [Description] = 'No disciplinary action taken', [Definition] = 'No disciplinary action taken was the methods used to discipline student(s) who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', [SortOrder] = 5.00 WHERE [Code] = 'NOACTION' END -END - -PRINT N'Populate RefIDEAEducationalEnvironmentEC table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIDEAEducationalEnvironmentEC]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentEC] WHERE [Code] = 'REC09YOTHLOC') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentEC]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REC09YOTHLOC', 'Other location regular early childhood program (less than 10 hours)', 'Other location regular early childhood program (less than 10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentEC] -SET [Description] = 'Other location regular early childhood program (less than 10 hours)', [Definition] = 'Other location regular early childhood program (less than 10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 1.00 WHERE [Code] = 'REC09YOTHLOC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentEC] WHERE [Code] = 'REC10YOTHLOC') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentEC]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REC10YOTHLOC', 'Other location regular early childhood program (at least 10 hours)', 'Other location regular early childhood program (at least 10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentEC] -SET [Description] = 'Other location regular early childhood program (at least 10 hours)', [Definition] = 'Other location regular early childhood program (at least 10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 2.00 WHERE [Code] = 'REC10YOTHLOC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentEC] WHERE [Code] = 'REC09YSVCS') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentEC]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REC09YSVCS', 'Services regular early childhood program (less than 10 hours)', 'Services regular early childhood program (less than 10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentEC] -SET [Description] = 'Services regular early childhood program (less than 10 hours)', [Definition] = 'Services regular early childhood program (less than 10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 3.00 WHERE [Code] = 'REC09YSVCS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentEC] WHERE [Code] = 'REC10YSVCS') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentEC]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REC10YSVCS', 'Services regular early childhood program (at least10 hours)', 'Services regular early childhood program (at least10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentEC] -SET [Description] = 'Services regular early childhood program (at least10 hours)', [Definition] = 'Services regular early childhood program (at least10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 4.00 WHERE [Code] = 'REC10YSVCS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentEC] WHERE [Code] = 'SC') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentEC]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SC', 'Separate special education class', 'Separate special education class is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentEC] -SET [Description] = 'Separate special education class', [Definition] = 'Separate special education class is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 5.00 WHERE [Code] = 'SC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentEC] WHERE [Code] = 'SS') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentEC]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SS', 'Separate school', 'Separate school is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentEC] -SET [Description] = 'Separate school', [Definition] = 'Separate school is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 6.00 WHERE [Code] = 'SS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentEC] WHERE [Code] = 'RF') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentEC]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RF', 'Residential Facility', 'Residential Facility is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentEC] -SET [Description] = 'Residential Facility', [Definition] = 'Residential Facility is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 7.00 WHERE [Code] = 'RF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentEC] WHERE [Code] = 'H') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentEC]([Code], [Description], [Definition], [SortOrder]) -VALUES ('H', 'Home', 'Home is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentEC] -SET [Description] = 'Home', [Definition] = 'Home is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 8.00 WHERE [Code] = 'H' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentEC] WHERE [Code] = 'SPL') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentEC]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SPL', 'Service provider or other location not in any other category', 'Service provider or other location not in any other category is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentEC] -SET [Description] = 'Service provider or other location not in any other category', [Definition] = 'Service provider or other location not in any other category is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 9.00 WHERE [Code] = 'SPL' END -END - -PRINT N'Populate RefIDEAEducationalEnvironmentSchoolAge table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIDEAEducationalEnvironmentSchoolAge]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentSchoolAge] WHERE [Code] = 'RC80') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentSchoolAge]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RC80', 'Inside regular class 80% or more of the day', 'Inside regular class 80% or more of the day is the setting in which children ages 6 through 21, receive special education and related services.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentSchoolAge] -SET [Description] = 'Inside regular class 80% or more of the day', [Definition] = 'Inside regular class 80% or more of the day is the setting in which children ages 6 through 21, receive special education and related services.', [SortOrder] = 1.00 WHERE [Code] = 'RC80' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentSchoolAge] WHERE [Code] = 'RC79TO40') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentSchoolAge]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RC79TO40', 'Inside regular class 40% through 79% of the day', 'Inside regular class 40% through 79% of the day is the setting in which children ages 6 through 21, receive special education and related services.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentSchoolAge] -SET [Description] = 'Inside regular class 40% through 79% of the day', [Definition] = 'Inside regular class 40% through 79% of the day is the setting in which children ages 6 through 21, receive special education and related services.', [SortOrder] = 2.00 WHERE [Code] = 'RC79TO40' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentSchoolAge] WHERE [Code] = 'RC39') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentSchoolAge]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RC39', 'Inside regular class less than 40% of the day', 'Inside regular class less than 40% of the day is the setting in which children ages 6 through 21, receive special education and related services.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentSchoolAge] -SET [Description] = 'Inside regular class less than 40% of the day', [Definition] = 'Inside regular class less than 40% of the day is the setting in which children ages 6 through 21, receive special education and related services.', [SortOrder] = 3.00 WHERE [Code] = 'RC39' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentSchoolAge] WHERE [Code] = 'SS') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentSchoolAge]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SS', 'Separate school', 'Separate school is the setting in which children ages 6 through 21, receive special education and related services.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentSchoolAge] -SET [Description] = 'Separate school', [Definition] = 'Separate school is the setting in which children ages 6 through 21, receive special education and related services.', [SortOrder] = 4.00 WHERE [Code] = 'SS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentSchoolAge] WHERE [Code] = 'RF') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentSchoolAge]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RF', 'Residential facility', 'Residential facility is the setting in which children ages 6 through 21, receive special education and related services.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentSchoolAge] -SET [Description] = 'Residential facility', [Definition] = 'Residential facility is the setting in which children ages 6 through 21, receive special education and related services.', [SortOrder] = 5.00 WHERE [Code] = 'RF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentSchoolAge] WHERE [Code] = 'HH') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentSchoolAge]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HH', 'Homebound/hospital', 'Homebound/hospital is the setting in which children ages 6 through 21, receive special education and related services.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentSchoolAge] -SET [Description] = 'Homebound/hospital', [Definition] = 'Homebound/hospital is the setting in which children ages 6 through 21, receive special education and related services.', [SortOrder] = 6.00 WHERE [Code] = 'HH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentSchoolAge] WHERE [Code] = 'CF') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentSchoolAge]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CF', 'Correctional facility', 'Correctional facility is the setting in which children ages 6 through 21, receive special education and related services.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentSchoolAge] -SET [Description] = 'Correctional facility', [Definition] = 'Correctional facility is the setting in which children ages 6 through 21, receive special education and related services.', [SortOrder] = 7.00 WHERE [Code] = 'CF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEducationalEnvironmentSchoolAge] WHERE [Code] = 'PPPS') BEGIN INSERT INTO dbo.[RefIDEAEducationalEnvironmentSchoolAge]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PPPS', 'Parentally placed in private school', 'Parentally placed in private school is the setting in which children ages 6 through 21, receive special education and related services.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEducationalEnvironmentSchoolAge] -SET [Description] = 'Parentally placed in private school', [Definition] = 'Parentally placed in private school is the setting in which children ages 6 through 21, receive special education and related services.', [SortOrder] = 8.00 WHERE [Code] = 'PPPS' END -END - -PRINT N'Populate RefIDEAEligibilityEvaluationCategory table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIDEAEligibilityEvaluationCategory]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'AcademicAchievement') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AcademicAchievement', 'Academic Achievement', 'Academic Achievement is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Academic Achievement', [Definition] = 'Academic Achievement is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'AcademicAchievement' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'AdaptiveBehavior') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdaptiveBehavior', 'Adaptive Behavior', 'Adaptive Behavior is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Adaptive Behavior', [Definition] = 'Adaptive Behavior is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'AdaptiveBehavior' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'Cognitive') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Cognitive', 'Cognitive', 'Cognitive is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Cognitive', [Definition] = 'Cognitive is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'Cognitive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'Communication') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Communication', 'Communication', 'Communication is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Communication', [Definition] = 'Communication is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'Communication' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'Developmental') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Developmental', 'Developmental', 'Developmental is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Developmental', [Definition] = 'Developmental is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'Developmental' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'FunctionalBehavior') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FunctionalBehavior', 'Functional Behavior', 'Functional Behavior is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Functional Behavior', [Definition] = 'Functional Behavior is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'FunctionalBehavior' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'Hearing') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Hearing', 'Hearing', 'Hearing is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Hearing', [Definition] = 'Hearing is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'Hearing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'Language') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Language', 'Language', 'Language is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Language', [Definition] = 'Language is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'Language' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'Medical') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Medical', 'Medical', 'Medical is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Medical', [Definition] = 'Medical is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'Medical' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'Motor') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Motor', 'Motor', 'Motor is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Motor', [Definition] = 'Motor is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'Motor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'O&M') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('O&M', 'Orientation and Mobility', 'Orientation and Mobility (O&M) is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Orientation and Mobility', [Definition] = 'Orientation and Mobility (O&M) is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'O&M' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The category of evaluation used for IDEA eligibility is not yet defined in CEDS.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Other', [Definition] = 'The category of evaluation used for IDEA eligibility is not yet defined in CEDS.', [SortOrder] = NULL WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'Social/Emotional') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Social/Emotional', 'Social/Emotional', 'Social/Emotional is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Social/Emotional', [Definition] = 'Social/Emotional is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'Social/Emotional' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'Speech') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Speech', 'Speech', 'Speech is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Speech', [Definition] = 'Speech is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'Speech' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'Transition') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Transition', 'Transition', 'Transition is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Transition', [Definition] = 'Transition is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'Transition' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'Vision') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Vision', 'Vision', 'Vision is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Vision', [Definition] = 'Vision is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'Vision' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEligibilityEvaluationCategory] WHERE [Code] = 'Vocational') BEGIN INSERT INTO dbo.[RefIDEAEligibilityEvaluationCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Vocational', 'Vocational', 'Vocational is specified as a category of evaluation used for IDEA eligibility.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEligibilityEvaluationCategory] -SET [Description] = 'Vocational', [Definition] = 'Vocational is specified as a category of evaluation used for IDEA eligibility.', [SortOrder] = NULL WHERE [Code] = 'Vocational' END -END - -PRINT N'Populate RefIDEAEnvironmentEL table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIDEAEnvironmentEL]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEnvironmentEL] WHERE [Code] = 'REC09YOTHLOC') BEGIN INSERT INTO dbo.[RefIDEAEnvironmentEL]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REC09YOTHLOC', 'Other location regular early childhood program (less than 10 hours)', 'Other location regular early childhood program (less than 10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEnvironmentEL] -SET [Description] = 'Other location regular early childhood program (less than 10 hours)', [Definition] = 'Other location regular early childhood program (less than 10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 1.00 WHERE [Code] = 'REC09YOTHLOC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEnvironmentEL] WHERE [Code] = 'REC10YOTHLOC') BEGIN INSERT INTO dbo.[RefIDEAEnvironmentEL]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REC10YOTHLOC', 'Other location regular early childhood program (at least 10 hours)', 'Other location regular early childhood program (at least 10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEnvironmentEL] -SET [Description] = 'Other location regular early childhood program (at least 10 hours)', [Definition] = 'Other location regular early childhood program (at least 10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 2.00 WHERE [Code] = 'REC10YOTHLOC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEnvironmentEL] WHERE [Code] = 'REC09YSVCS') BEGIN INSERT INTO dbo.[RefIDEAEnvironmentEL]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REC09YSVCS', 'Services regular early childhood program (less than 10 hours)', 'Services regular early childhood program (less than 10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEnvironmentEL] -SET [Description] = 'Services regular early childhood program (less than 10 hours)', [Definition] = 'Services regular early childhood program (less than 10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 3.00 WHERE [Code] = 'REC09YSVCS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEnvironmentEL] WHERE [Code] = 'REC10YSVCS') BEGIN INSERT INTO dbo.[RefIDEAEnvironmentEL]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REC10YSVCS', 'Services regular early childhood program (at least10 hours)', 'Services regular early childhood program (at least10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEnvironmentEL] -SET [Description] = 'Services regular early childhood program (at least10 hours)', [Definition] = 'Services regular early childhood program (at least10 hours) is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 4.00 WHERE [Code] = 'REC10YSVCS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEnvironmentEL] WHERE [Code] = 'SC') BEGIN INSERT INTO dbo.[RefIDEAEnvironmentEL]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SC', 'Separate special education class', 'Separate special education class is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEnvironmentEL] -SET [Description] = 'Separate special education class', [Definition] = 'Separate special education class is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 5.00 WHERE [Code] = 'SC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEnvironmentEL] WHERE [Code] = 'SS') BEGIN INSERT INTO dbo.[RefIDEAEnvironmentEL]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SS', 'Separate school', 'Separate school is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEnvironmentEL] -SET [Description] = 'Separate school', [Definition] = 'Separate school is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 6.00 WHERE [Code] = 'SS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEnvironmentEL] WHERE [Code] = 'RF') BEGIN INSERT INTO dbo.[RefIDEAEnvironmentEL]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RF', 'Residential Facility', 'Residential Facility is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEnvironmentEL] -SET [Description] = 'Residential Facility', [Definition] = 'Residential Facility is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 7.00 WHERE [Code] = 'RF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEnvironmentEL] WHERE [Code] = 'H') BEGIN INSERT INTO dbo.[RefIDEAEnvironmentEL]([Code], [Description], [Definition], [SortOrder]) -VALUES ('H', 'Home', 'Home is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEnvironmentEL] -SET [Description] = 'Home', [Definition] = 'Home is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 8.00 WHERE [Code] = 'H' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAEnvironmentEL] WHERE [Code] = 'SPL') BEGIN INSERT INTO dbo.[RefIDEAEnvironmentEL]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SPL', 'Service provider or other location not in any other category', 'Service provider or other location not in any other category is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAEnvironmentEL] -SET [Description] = 'Service provider or other location not in any other category', [Definition] = 'Service provider or other location not in any other category is the environment in which children ages 3 through 5 attend and in which these children receive special education and related services.', [SortOrder] = 9.00 WHERE [Code] = 'SPL' END -END - -PRINT N'Populate RefIDEAIEPStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIDEAIEPStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAIEPStatus] WHERE [Code] = 'Active') BEGIN INSERT INTO dbo.[RefIDEAIEPStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Active', 'Active', 'Active is the status of an individualized services plan for a specified reporting period or on a specified date.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAIEPStatus] -SET [Description] = 'Active', [Definition] = 'Active is the status of an individualized services plan for a specified reporting period or on a specified date.', [SortOrder] = 1.00 WHERE [Code] = 'Active' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAIEPStatus] WHERE [Code] = 'Inactive') BEGIN INSERT INTO dbo.[RefIDEAIEPStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Inactive', 'Inactive', 'Inactive is the status of an individualized services plan for a specified reporting period or on a specified date.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAIEPStatus] -SET [Description] = 'Inactive', [Definition] = 'Inactive is the status of an individualized services plan for a specified reporting period or on a specified date.', [SortOrder] = 3.00 WHERE [Code] = 'Inactive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAIEPStatus] WHERE [Code] = 'NotSelected') BEGIN INSERT INTO dbo.[RefIDEAIEPStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotSelected', 'Not Selected', 'The status of an individualized services plan for the reporting period or specified date is not selected.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAIEPStatus] -SET [Description] = 'Not Selected', [Definition] = 'The status of an individualized services plan for the reporting period or specified date is not selected.', [SortOrder] = 5.00 WHERE [Code] = 'NotSelected' END -END - -PRINT N'Populate RefIDEAInterimRemoval table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIDEAInterimRemoval]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAInterimRemoval] WHERE [Code] = 'REMDW') BEGIN INSERT INTO dbo.[RefIDEAInterimRemoval]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REMDW', 'Removal for drugs, weapons, or serious bodily injury', 'Unilateral removal to an interim alternative educational setting by School Personnel for drugs, weapons, or serious bodily injury', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAInterimRemoval] -SET [Description] = 'Removal for drugs, weapons, or serious bodily injury', [Definition] = 'Unilateral removal to an interim alternative educational setting by School Personnel for drugs, weapons, or serious bodily injury', [SortOrder] = 1.00 WHERE [Code] = 'REMDW' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAInterimRemoval] WHERE [Code] = 'REMHO') BEGIN INSERT INTO dbo.[RefIDEAInterimRemoval]([Code], [Description], [Definition], [SortOrder]) -VALUES ('REMHO', 'Removed based on a Hearing Officer finding', 'Removed to an interim alternative educational setting based on a Hearing Officer finding that there is substantial likelihood of injury to the child or others', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAInterimRemoval] -SET [Description] = 'Removed based on a Hearing Officer finding', [Definition] = 'Removed to an interim alternative educational setting based on a Hearing Officer finding that there is substantial likelihood of injury to the child or others', [SortOrder] = 2.00 WHERE [Code] = 'REMHO' END -END - -PRINT N'Populate RefIDEAInterimRemovalReason table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIDEAInterimRemovalReason]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAInterimRemovalReason] WHERE [Code] = 'Drugs') BEGIN INSERT INTO dbo.[RefIDEAInterimRemovalReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Drugs', 'Drugs', 'The reason why the child with disabilities was unilaterally removed from the current educational placement to an interim alternative educational setting is related to Drugs.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAInterimRemovalReason] -SET [Description] = 'Drugs', [Definition] = 'The reason why the child with disabilities was unilaterally removed from the current educational placement to an interim alternative educational setting is related to Drugs.', [SortOrder] = 1.00 WHERE [Code] = 'Drugs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAInterimRemovalReason] WHERE [Code] = 'Weapons') BEGIN INSERT INTO dbo.[RefIDEAInterimRemovalReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Weapons', 'Weapons', 'The reason why the child with disabilities was unilaterally removed from the current educational placement to an interim alternative educational setting is related to Weapons.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAInterimRemovalReason] -SET [Description] = 'Weapons', [Definition] = 'The reason why the child with disabilities was unilaterally removed from the current educational placement to an interim alternative educational setting is related to Weapons.', [SortOrder] = 2.00 WHERE [Code] = 'Weapons' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAInterimRemovalReason] WHERE [Code] = 'SeriousBodilyInjury') BEGIN INSERT INTO dbo.[RefIDEAInterimRemovalReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SeriousBodilyInjury', 'Serious bodily injury', 'The reason why the child with disabilities was unilaterally removed from the current educational placement to an interim alternative educational setting is related to Serious bodily injury.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAInterimRemovalReason] -SET [Description] = 'Serious bodily injury', [Definition] = 'The reason why the child with disabilities was unilaterally removed from the current educational placement to an interim alternative educational setting is related to Serious bodily injury.', [SortOrder] = 3.00 WHERE [Code] = 'SeriousBodilyInjury' END -END - -PRINT N'Populate RefIDEAPartCEligibilityCategory table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIDEAPartCEligibilityCategory]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAPartCEligibilityCategory] WHERE [Code] = 'DevelopmentalDelay') BEGIN INSERT INTO dbo.[RefIDEAPartCEligibilityCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DevelopmentalDelay', 'Developmental Delay', 'The child has one or more delays as measured by appropriate diagnostic instruments and procedures in 1 or more of the areas of cognitive development, physical development, communication development, social or emotional development, and adaptive development.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAPartCEligibilityCategory] -SET [Description] = 'Developmental Delay', [Definition] = 'The child has one or more delays as measured by appropriate diagnostic instruments and procedures in 1 or more of the areas of cognitive development, physical development, communication development, social or emotional development, and adaptive development.', [SortOrder] = 1.00 WHERE [Code] = 'DevelopmentalDelay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAPartCEligibilityCategory] WHERE [Code] = 'DiagnosedCondition') BEGIN INSERT INTO dbo.[RefIDEAPartCEligibilityCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DiagnosedCondition', 'Diagnosed Condition', 'The child has a diagnosed physical or mental condition that has a high probability of resulting in developmental delay.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAPartCEligibilityCategory] -SET [Description] = 'Diagnosed Condition', [Definition] = 'The child has a diagnosed physical or mental condition that has a high probability of resulting in developmental delay.', [SortOrder] = 2.00 WHERE [Code] = 'DiagnosedCondition' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIDEAPartCEligibilityCategory] WHERE [Code] = 'AtRisk') BEGIN INSERT INTO dbo.[RefIDEAPartCEligibilityCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AtRisk', 'At-risk', 'The child would be at risk of experiencing a substantial developmental delay if early intervention services were not provided to the child.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIDEAPartCEligibilityCategory] -SET [Description] = 'At-risk', [Definition] = 'The child would be at risk of experiencing a substantial developmental delay if early intervention services were not provided to the child.', [SortOrder] = 3.00 WHERE [Code] = 'AtRisk' END -END - -PRINT N'Populate RefIEPAuthorizationDocumentType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIEPAuthorizationDocumentType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIEPAuthorizationDocumentType] WHERE [Code] = 'Amendment') BEGIN INSERT INTO dbo.[RefIEPAuthorizationDocumentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Amendment', 'Amendment', 'Amendment is specified as the type of Individualized Education Plan document authorized.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIEPAuthorizationDocumentType] -SET [Description] = 'Amendment', [Definition] = 'Amendment is specified as the type of Individualized Education Plan document authorized.', [SortOrder] = NULL WHERE [Code] = 'Amendment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIEPAuthorizationDocumentType] WHERE [Code] = 'AnnualGoal') BEGIN INSERT INTO dbo.[RefIEPAuthorizationDocumentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AnnualGoal', 'Annual Goal', 'Annual Goal is specified as the type of Individualized Education Plan document authorized.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIEPAuthorizationDocumentType] -SET [Description] = 'Annual Goal', [Definition] = 'Annual Goal is specified as the type of Individualized Education Plan document authorized.', [SortOrder] = NULL WHERE [Code] = 'AnnualGoal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIEPAuthorizationDocumentType] WHERE [Code] = 'IEP') BEGIN INSERT INTO dbo.[RefIEPAuthorizationDocumentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IEP', 'IEP', 'IEP is specified as the type of Individualized Education Plan document authorized.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIEPAuthorizationDocumentType] -SET [Description] = 'IEP', [Definition] = 'IEP is specified as the type of Individualized Education Plan document authorized.', [SortOrder] = NULL WHERE [Code] = 'IEP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIEPAuthorizationDocumentType] WHERE [Code] = 'MeasurableObjective') BEGIN INSERT INTO dbo.[RefIEPAuthorizationDocumentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MeasurableObjective', 'Measurable Objective', 'Measurable Objective is specified as the type of Individualized Education Plan document authorized.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIEPAuthorizationDocumentType] -SET [Description] = 'Measurable Objective', [Definition] = 'Measurable Objective is specified as the type of Individualized Education Plan document authorized.', [SortOrder] = NULL WHERE [Code] = 'MeasurableObjective' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIEPAuthorizationDocumentType] WHERE [Code] = 'Placement') BEGIN INSERT INTO dbo.[RefIEPAuthorizationDocumentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Placement', 'Placement', 'Placement is specified as the type of Individualized Education Plan document authorized.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIEPAuthorizationDocumentType] -SET [Description] = 'Placement', [Definition] = 'Placement is specified as the type of Individualized Education Plan document authorized.', [SortOrder] = NULL WHERE [Code] = 'Placement' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIEPAuthorizationDocumentType] WHERE [Code] = 'Revoke') BEGIN INSERT INTO dbo.[RefIEPAuthorizationDocumentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Revoke', 'Revoke', 'Revoke is specified as the type of Individualized Education Plan document authorized.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIEPAuthorizationDocumentType] -SET [Description] = 'Revoke', [Definition] = 'Revoke is specified as the type of Individualized Education Plan document authorized.', [SortOrder] = NULL WHERE [Code] = 'Revoke' END -END - -PRINT N'Populate RefIEPEligibilityEvaluationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIEPEligibilityEvaluationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIEPEligibilityEvaluationType] WHERE [Code] = 'Initial') BEGIN INSERT INTO dbo.[RefIEPEligibilityEvaluationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Initial', 'Initial', 'Initial is the purpose within the IEP lifecycle for which the eligibility evaluation is conducted.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIEPEligibilityEvaluationType] -SET [Description] = 'Initial', [Definition] = 'Initial is the purpose within the IEP lifecycle for which the eligibility evaluation is conducted.', [SortOrder] = NULL WHERE [Code] = 'Initial' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIEPEligibilityEvaluationType] WHERE [Code] = 'Reevaluation') BEGIN INSERT INTO dbo.[RefIEPEligibilityEvaluationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Reevaluation', 'Reevaluation', 'Reevaluation is the purpose within the IEP lifecycle for which the eligibility evaluation is conducted.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIEPEligibilityEvaluationType] -SET [Description] = 'Reevaluation', [Definition] = 'Reevaluation is the purpose within the IEP lifecycle for which the eligibility evaluation is conducted.', [SortOrder] = NULL WHERE [Code] = 'Reevaluation' END -END - -PRINT N'Populate RefIEPGoalType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIEPGoalType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIEPGoalType] WHERE [Code] = 'Academic') BEGIN INSERT INTO dbo.[RefIEPGoalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Academic', 'Academic', 'Academic is the legal category for an IEP annual goal or short-term objectives.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIEPGoalType] -SET [Description] = 'Academic', [Definition] = 'Academic is the legal category for an IEP annual goal or short-term objectives.', [SortOrder] = NULL WHERE [Code] = 'Academic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIEPGoalType] WHERE [Code] = 'Functional') BEGIN INSERT INTO dbo.[RefIEPGoalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Functional', 'Functional', 'Functional is the legal category for an IEP annual goal or short-term objectives.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIEPGoalType] -SET [Description] = 'Functional', [Definition] = 'Functional is the legal category for an IEP annual goal or short-term objectives.', [SortOrder] = NULL WHERE [Code] = 'Functional' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIEPGoalType] WHERE [Code] = 'Transitional') BEGIN INSERT INTO dbo.[RefIEPGoalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Transitional', 'Transitional', 'Transitional is the legal category for an IEP annual goal or short-term objectives.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIEPGoalType] -SET [Description] = 'Transitional', [Definition] = 'Transitional is the legal category for an IEP annual goal or short-term objectives.', [SortOrder] = NULL WHERE [Code] = 'Transitional' END -END - -PRINT N'Populate RefImmunizationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefImmunizationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'Diphtheria') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Diphtheria', 'Diphtheria', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Diphtheria', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Diphtheria' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'HaemophilusInfluenzae') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HaemophilusInfluenzae', 'Haemophilus Influenzae', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Haemophilus Influenzae', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'HaemophilusInfluenzae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'HepatitisA') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HepatitisA', 'Hepatitis A', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Hepatitis A', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'HepatitisA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'HepatitisB') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HepatitisB', 'Hepatitis B', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Hepatitis B', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = 'HepatitisB' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'InactivatedPoliovirus') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InactivatedPoliovirus', 'Inactivated Poliovirus', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Inactivated Poliovirus', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = 'InactivatedPoliovirus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'Influenza') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Influenza', 'Influenza', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Influenza', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = 'Influenza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'Meningococcal') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Meningococcal', 'Meningococcal', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Meningococcal', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = 'Meningococcal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'Mumps') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Mumps', 'Mumps', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Mumps', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = 'Mumps' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'Pertussis') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Pertussis', 'Pertussis (Whooping Cough)', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Pertussis (Whooping Cough)', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = 'Pertussis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'Pneumococcal') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Pneumococcal', 'Pneumococcal', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Pneumococcal', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = 'Pneumococcal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'RhImmuneGlobulin') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RhImmuneGlobulin', 'Rh. Immune Globulin', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Rh. Immune Globulin', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = 'RhImmuneGlobulin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'Rotavirus') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Rotavirus', 'Rotavirus', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Rotavirus', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = 'Rotavirus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'Rubella') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Rubella', 'Rubella (German measles)', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Rubella (German measles)', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = 'Rubella' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'Rubeola') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Rubeola', 'Rubeola (Measles)', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Rubeola (Measles)', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = 'Rubeola' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'Smallpox') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Smallpox', 'Smallpox', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Smallpox', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = 'Smallpox' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'Tetanus') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Tetanus', 'Tetanus', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Tetanus', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = 'Tetanus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'Tuberculosis') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Tuberculosis', 'Tuberculosis (BCG)', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Tuberculosis (BCG)', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = 'Tuberculosis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'Varicella') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Varicella', 'Varicella', NULL, 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Varicella', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = 'Varicella' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefImmunizationType] WHERE [Code] = 'ParentOptOut') BEGIN INSERT INTO dbo.[RefImmunizationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ParentOptOut', 'Parent opt-out', NULL, 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefImmunizationType] -SET [Description] = 'Parent opt-out', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = 'ParentOptOut' END -END - -PRINT N'Populate RefIncidentBehavior table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIncidentBehavior]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04618') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04618', 'Alcohol', 'Alcohol related behavior associated with the incident.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Alcohol', [Definition] = 'Alcohol related behavior associated with the incident.', [SortOrder] = 1.00 WHERE [Code] = '04618' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04625') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04625', 'Arson', 'Arson is a behavior associated with the incident.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Arson', [Definition] = 'Arson is a behavior associated with the incident.', [SortOrder] = 2.00 WHERE [Code] = '04625' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04626') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04626', 'Attendance Policy Violation', 'Attendance Policy Violation is a behavior associated with the incident.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Attendance Policy Violation', [Definition] = 'Attendance Policy Violation is a behavior associated with the incident.', [SortOrder] = 3.00 WHERE [Code] = '04626' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04632') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04632', 'Battery', 'Battery is a behavior associated with the incident.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Battery', [Definition] = 'Battery is a behavior associated with the incident.', [SortOrder] = 4.00 WHERE [Code] = '04632' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04633') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04633', 'Burglary/Breaking and Entering', 'Burglary/Breaking and Entering is a behavior associated with the incident.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Burglary/Breaking and Entering', [Definition] = 'Burglary/Breaking and Entering is a behavior associated with the incident.', [SortOrder] = 5.00 WHERE [Code] = '04633' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04634') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04634', 'Disorderly Conduct', 'Disorderly Conduct is a behavior associated with the incident.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Disorderly Conduct', [Definition] = 'Disorderly Conduct is a behavior associated with the incident.', [SortOrder] = 6.00 WHERE [Code] = '04634' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04635') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04635', 'Drugs Excluding Alcohol and Tobacco', 'Drugs Excluding Alcohol and Tobacco is a behavior associated with the incident.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Drugs Excluding Alcohol and Tobacco', [Definition] = 'Drugs Excluding Alcohol and Tobacco is a behavior associated with the incident.', [SortOrder] = 7.00 WHERE [Code] = '04635' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04645') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04645', 'Fighting', 'Fighting is a behavior associated with the incident.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Fighting', [Definition] = 'Fighting is a behavior associated with the incident.', [SortOrder] = 8.00 WHERE [Code] = '04645' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '13354') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13354', 'Harassment or bullying on the basis of disability', 'Harassment or bullying on the basis of disability is a behavior associated with the incident.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment or bullying on the basis of disability', [Definition] = 'Harassment or bullying on the basis of disability is a behavior associated with the incident.', [SortOrder] = 9.00 WHERE [Code] = '13354' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '13355') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13355', 'Harassment or bullying on the basis of race, color, or national origin', 'Harassment or bullying on the basis of race, color, or national origin is a behavior associated with the incident.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment or bullying on the basis of race, color, or national origin', [Definition] = 'Harassment or bullying on the basis of race, color, or national origin is a behavior associated with the incident.', [SortOrder] = 10.00 WHERE [Code] = '13355' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '13356') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13356', 'Harassment or bullying on the basis of sex', 'Harassment or bullying on the basis of sex is a behavior associated with the incident.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment or bullying on the basis of sex', [Definition] = 'Harassment or bullying on the basis of sex is a behavior associated with the incident.', [SortOrder] = 11.00 WHERE [Code] = '13356' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04646') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04646', 'Harassment, Nonsexual', 'Harassment, Nonsexual is a behavior associated with the incident.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment, Nonsexual', [Definition] = 'Harassment, Nonsexual is a behavior associated with the incident.', [SortOrder] = 12.00 WHERE [Code] = '04646' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04650') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04650', 'Harassment, Sexual', 'Harassment, Sexual is a behavior associated with the incident.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment, Sexual', [Definition] = 'Harassment, Sexual is a behavior associated with the incident.', [SortOrder] = 13.00 WHERE [Code] = '04650' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04651') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04651', 'Homicide', 'Homicide is a behavior associated with the incident.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Homicide', [Definition] = 'Homicide is a behavior associated with the incident.', [SortOrder] = 14.00 WHERE [Code] = '04651' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04652') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04652', 'Inappropriate Use of Medication', 'Inappropriate Use of Medication is a behavior associated with the incident.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Inappropriate Use of Medication', [Definition] = 'Inappropriate Use of Medication is a behavior associated with the incident.', [SortOrder] = 15.00 WHERE [Code] = '04652' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04659') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04659', 'Insubordination', 'Insubordination is a behavior associated with the incident.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Insubordination', [Definition] = 'Insubordination is a behavior associated with the incident.', [SortOrder] = 16.00 WHERE [Code] = '04659' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04660') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04660', 'Kidnapping', 'Kidnapping is a behavior associated with the incident.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Kidnapping', [Definition] = 'Kidnapping is a behavior associated with the incident.', [SortOrder] = 17.00 WHERE [Code] = '04660' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04661') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04661', 'Obscene Behavior', 'Obscene Behavior is a behavior associated with the incident.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Obscene Behavior', [Definition] = 'Obscene Behavior is a behavior associated with the incident.', [SortOrder] = 18.00 WHERE [Code] = '04661' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04669') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04669', 'Physical Altercation, Minor', 'Physical Altercation, Minor is a behavior associated with the incident.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Physical Altercation, Minor', [Definition] = 'Physical Altercation, Minor is a behavior associated with the incident.', [SortOrder] = 19.00 WHERE [Code] = '04669' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04670') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04670', 'Robbery', 'Robbery is a behavior associated with the incident.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Robbery', [Definition] = 'Robbery is a behavior associated with the incident.', [SortOrder] = 20.00 WHERE [Code] = '04670' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04671') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04671', 'School Threat', 'School Threat is a behavior associated with the incident.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'School Threat', [Definition] = 'School Threat is a behavior associated with the incident.', [SortOrder] = 21.00 WHERE [Code] = '04671' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04677') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04677', 'Sexual Battery (sexual assault)', 'Sexual Battery (sexual assault) is a behavior associated with the incident.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Sexual Battery (sexual assault)', [Definition] = 'Sexual Battery (sexual assault) is a behavior associated with the incident.', [SortOrder] = 22.00 WHERE [Code] = '04677' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04678') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04678', 'Sexual Offenses, Other (lewd behavior, indecent exposure)', 'Sexual Offenses, Other (lewd behavior, indecent exposure) is a behavior associated with the incident.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Sexual Offenses, Other (lewd behavior, indecent exposure)', [Definition] = 'Sexual Offenses, Other (lewd behavior, indecent exposure) is a behavior associated with the incident.', [SortOrder] = 23.00 WHERE [Code] = '04678' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04682') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04682', 'Theft', 'Theft is a behavior associated with the incident.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Theft', [Definition] = 'Theft is a behavior associated with the incident.', [SortOrder] = 24.00 WHERE [Code] = '04682' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04686') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04686', 'Threat/Intimidation', 'Threat/Intimidation is a behavior associated with the incident.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Threat/Intimidation', [Definition] = 'Threat/Intimidation is a behavior associated with the incident.', [SortOrder] = 25.00 WHERE [Code] = '04686' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04692') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04692', 'Tobacco Possession or Use', 'Tobacco Possession or Use is a behavior associated with the incident.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Tobacco Possession or Use', [Definition] = 'Tobacco Possession or Use is a behavior associated with the incident.', [SortOrder] = 26.00 WHERE [Code] = '04692' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04699') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04699', 'Trespassing', 'Trespassing is a behavior associated with the incident.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Trespassing', [Definition] = 'Trespassing is a behavior associated with the incident.', [SortOrder] = 27.00 WHERE [Code] = '04699' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04700') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04700', 'Vandalism', 'Vandalism is a behavior associated with the incident.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Vandalism', [Definition] = 'Vandalism is a behavior associated with the incident.', [SortOrder] = 28.00 WHERE [Code] = '04700' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04704') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04704', 'Violation of School Rules', 'Violation of School Rules is a behavior associated with the incident.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Violation of School Rules', [Definition] = 'Violation of School Rules is a behavior associated with the incident.', [SortOrder] = 29.00 WHERE [Code] = '04704' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04705') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04705', 'Weapons Possession', 'Weapons Possession is a behavior associated with the incident.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Weapons Possession', [Definition] = 'Weapons Possession is a behavior associated with the incident.', [SortOrder] = 30.00 WHERE [Code] = '04705' END -END - -PRINT N'Populate RefIncidentBehaviorSecondary table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIncidentBehaviorSecondary]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehaviorSecondary] WHERE [Code] = '03066') BEGIN INSERT INTO dbo.[RefIncidentBehaviorSecondary]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03066', 'Alcohol-related', 'Alcohol-related is a secondary behavior in addition to the more serious primary Incident Behavior.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehaviorSecondary] -SET [Description] = 'Alcohol-related', [Definition] = 'Alcohol-related is a secondary behavior in addition to the more serious primary Incident Behavior.', [SortOrder] = 1.00 WHERE [Code] = '03066' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehaviorSecondary] WHERE [Code] = '03067') BEGIN INSERT INTO dbo.[RefIncidentBehaviorSecondary]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03067', 'Drug-related', 'Drug-related is a secondary behavior in addition to the more serious primary Incident Behavior.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehaviorSecondary] -SET [Description] = 'Drug-related', [Definition] = 'Drug-related is a secondary behavior in addition to the more serious primary Incident Behavior.', [SortOrder] = 2.00 WHERE [Code] = '03067' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehaviorSecondary] WHERE [Code] = '03068') BEGIN INSERT INTO dbo.[RefIncidentBehaviorSecondary]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03068', 'Gang-related', 'Gang-related is a secondary behavior in addition to the more serious primary Incident Behavior.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehaviorSecondary] -SET [Description] = 'Gang-related', [Definition] = 'Gang-related is a secondary behavior in addition to the more serious primary Incident Behavior.', [SortOrder] = 3.00 WHERE [Code] = '03068' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehaviorSecondary] WHERE [Code] = '13778') BEGIN INSERT INTO dbo.[RefIncidentBehaviorSecondary]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13778', 'Hate-related (Disability)', 'Hate-related (Disability) is a secondary behavior in addition to the more serious primary Incident Behavior.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehaviorSecondary] -SET [Description] = 'Hate-related (Disability)', [Definition] = 'Hate-related (Disability) is a secondary behavior in addition to the more serious primary Incident Behavior.', [SortOrder] = 4.00 WHERE [Code] = '13778' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehaviorSecondary] WHERE [Code] = '13777') BEGIN INSERT INTO dbo.[RefIncidentBehaviorSecondary]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13777', 'Hate-related (Other)', 'Hate-related (Other) is a secondary behavior in addition to the more serious primary Incident Behavior.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehaviorSecondary] -SET [Description] = 'Hate-related (Other)', [Definition] = 'Hate-related (Other) is a secondary behavior in addition to the more serious primary Incident Behavior.', [SortOrder] = 5.00 WHERE [Code] = '13777' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehaviorSecondary] WHERE [Code] = '13779') BEGIN INSERT INTO dbo.[RefIncidentBehaviorSecondary]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13779', 'Hate-related (Race, Color, or National Origin)', 'Hate-related (Race, Color, or National Origin) is a secondary behavior in addition to the more serious primary Incident Behavior.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehaviorSecondary] -SET [Description] = 'Hate-related (Race, Color, or National Origin)', [Definition] = 'Hate-related (Race, Color, or National Origin) is a secondary behavior in addition to the more serious primary Incident Behavior.', [SortOrder] = 6.00 WHERE [Code] = '13779' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehaviorSecondary] WHERE [Code] = '13780') BEGIN INSERT INTO dbo.[RefIncidentBehaviorSecondary]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13780', 'Hate-related (Sex)', 'Hate-related (Sex) is a secondary behavior in addition to the more serious primary Incident Behavior.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehaviorSecondary] -SET [Description] = 'Hate-related (Sex)', [Definition] = 'Hate-related (Sex) is a secondary behavior in addition to the more serious primary Incident Behavior.', [SortOrder] = 7.00 WHERE [Code] = '13780' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehaviorSecondary] WHERE [Code] = '03070') BEGIN INSERT INTO dbo.[RefIncidentBehaviorSecondary]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03070', 'Weapon-related', 'Weapon-related is a secondary behavior in addition to the more serious primary Incident Behavior.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehaviorSecondary] -SET [Description] = 'Weapon-related', [Definition] = 'Weapon-related is a secondary behavior in addition to the more serious primary Incident Behavior.', [SortOrder] = 8.00 WHERE [Code] = '03070' END -END - -PRINT N'Populate RefIncidentInjuryType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIncidentInjuryType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentInjuryType] WHERE [Code] = 'MajorInjury') BEGIN INSERT INTO dbo.[RefIncidentInjuryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MajorInjury', 'Major injury', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentInjuryType] -SET [Description] = 'Major injury', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'MajorInjury' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentInjuryType] WHERE [Code] = 'MinorInjury') BEGIN INSERT INTO dbo.[RefIncidentInjuryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MinorInjury', 'Minor injury', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentInjuryType] -SET [Description] = 'Minor injury', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'MinorInjury' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentInjuryType] WHERE [Code] = 'NoInjury') BEGIN INSERT INTO dbo.[RefIncidentInjuryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoInjury', 'No injury', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentInjuryType] -SET [Description] = 'No injury', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'NoInjury' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentInjuryType] WHERE [Code] = 'SeriousBodilyInjury') BEGIN INSERT INTO dbo.[RefIncidentInjuryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SeriousBodilyInjury', 'Serious bodily injury', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentInjuryType] -SET [Description] = 'Serious bodily injury', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'SeriousBodilyInjury' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentInjuryType] WHERE [Code] = 'FatalInjury') BEGIN INSERT INTO dbo.[RefIncidentInjuryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FatalInjury', 'Fatal injury', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentInjuryType] -SET [Description] = 'Fatal injury', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = 'FatalInjury' END -END - -PRINT N'Populate RefIncidentLocation table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIncidentLocation]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03011') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03011', 'On campus', 'The incident occurred on campus.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'On campus', [Definition] = 'The incident occurred on campus.', [SortOrder] = 1.00 WHERE [Code] = '03011' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03012') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03012', 'Administrative offices area', 'The incident occurred in an Administrative offices area.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Administrative offices area', [Definition] = 'The incident occurred in an Administrative offices area.', [SortOrder] = 2.00 WHERE [Code] = '03012' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03013') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03013', 'Cafeteria area', 'The incident occurred in a cafeteria area.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Cafeteria area', [Definition] = 'The incident occurred in a cafeteria area.', [SortOrder] = 3.00 WHERE [Code] = '03013' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03014') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03014', 'Classroom', 'The incident occurred in a classroom.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Classroom', [Definition] = 'The incident occurred in a classroom.', [SortOrder] = 4.00 WHERE [Code] = '03014' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03015') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03015', 'Hallway or stairs', 'The incident occurred in a hallway or stairs.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Hallway or stairs', [Definition] = 'The incident occurred in a hallway or stairs.', [SortOrder] = 5.00 WHERE [Code] = '03015' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03016') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03016', 'Locker room or gym areas', 'The incident occurred in locker room or gym areas.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Locker room or gym areas', [Definition] = 'The incident occurred in locker room or gym areas.', [SortOrder] = 6.00 WHERE [Code] = '03016' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03017') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03017', 'Restroom', 'The incident occurred in a restroom.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Restroom', [Definition] = 'The incident occurred in a restroom.', [SortOrder] = 7.00 WHERE [Code] = '03017' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03018') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03018', 'Library/media center', 'The incident occurred in a library/media center.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Library/media center', [Definition] = 'The incident occurred in a library/media center.', [SortOrder] = 8.00 WHERE [Code] = '03018' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03019') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03019', 'Computer lab', 'The incident occurred in a computer lab.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Computer lab', [Definition] = 'The incident occurred in a computer lab.', [SortOrder] = 9.00 WHERE [Code] = '03019' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03020') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03020', 'Auditorium', 'The incident occurred in an auditorium.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Auditorium', [Definition] = 'The incident occurred in an auditorium.', [SortOrder] = 10.00 WHERE [Code] = '03020' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03021') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03021', 'On-campus other inside area', 'The incident occurred on-campus other inside area.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'On-campus other inside area', [Definition] = 'The incident occurred on-campus other inside area.', [SortOrder] = 11.00 WHERE [Code] = '03021' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03022') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03022', 'Athletic field or playground', 'The incident occurred on an athletic field or playground.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Athletic field or playground', [Definition] = 'The incident occurred on an athletic field or playground.', [SortOrder] = 12.00 WHERE [Code] = '03022' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03023') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03023', 'Stadium', 'The incident occurred in a stadium.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Stadium', [Definition] = 'The incident occurred in a stadium.', [SortOrder] = 13.00 WHERE [Code] = '03023' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03024') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03024', 'Parking lot', 'The incident occurred in a parking lot.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Parking lot', [Definition] = 'The incident occurred in a parking lot.', [SortOrder] = 14.00 WHERE [Code] = '03024' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03025') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03025', 'On-campus other outside area', 'The incident occurred in on-campus other outside area.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'On-campus other outside area', [Definition] = 'The incident occurred in on-campus other outside area.', [SortOrder] = 15.00 WHERE [Code] = '03025' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03026') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03026', 'Off campus', 'The incident occurred in off campus.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Off campus', [Definition] = 'The incident occurred in off campus.', [SortOrder] = 16.00 WHERE [Code] = '03026' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03027') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03027', 'Bus stop', 'The incident occurred at a bus stop.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Bus stop', [Definition] = 'The incident occurred at a bus stop.', [SortOrder] = 17.00 WHERE [Code] = '03027' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03028') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03028', 'School bus', 'The incident occurred on a school bus.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'School bus', [Definition] = 'The incident occurred on a school bus.', [SortOrder] = 18.00 WHERE [Code] = '03028' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03029') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03029', 'Walking to or from school', 'The incident occurred walking to or from school.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Walking to or from school', [Definition] = 'The incident occurred walking to or from school.', [SortOrder] = 19.00 WHERE [Code] = '03029' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03030') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03030', 'Off-campus at other school', 'The incident occurred off-campus at other school.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Off-campus at other school', [Definition] = 'The incident occurred off-campus at other school.', [SortOrder] = 20.00 WHERE [Code] = '03030' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03031') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03031', 'Off-campus at other school district facility', 'The incident occurred off-campus at other school district facility.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Off-campus at other school district facility', [Definition] = 'The incident occurred off-campus at other school district facility.', [SortOrder] = 21.00 WHERE [Code] = '03031' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '03413') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03413', 'Online', 'The incident occurred online.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Online', [Definition] = 'The incident occurred online.', [SortOrder] = 22.00 WHERE [Code] = '03413' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '13773') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13773', 'Off-campus at a school sponsored activity', 'The incident occurred off-campus at a school sponsored activity.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Off-campus at a school sponsored activity', [Definition] = 'The incident occurred off-campus at a school sponsored activity.', [SortOrder] = 23.00 WHERE [Code] = '13773' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '13774') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13774', 'Off-campus at another location unrelated to school', 'The incident occurred off-campus at another location unrelated to school.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Off-campus at another location unrelated to school', [Definition] = 'The incident occurred off-campus at another location unrelated to school.', [SortOrder] = 24.00 WHERE [Code] = '13774' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentLocation] WHERE [Code] = '09997') BEGIN INSERT INTO dbo.[RefIncidentLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09997', 'Unknown', 'The location where the incident occurred is unknown.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentLocation] -SET [Description] = 'Unknown', [Definition] = 'The location where the incident occurred is unknown.', [SortOrder] = 25.00 WHERE [Code] = '09997' END -END - -PRINT N'Populate RefIncidentMultipleOffenseType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIncidentMultipleOffenseType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentMultipleOffenseType] WHERE [Code] = 'Primary') BEGIN INSERT INTO dbo.[RefIncidentMultipleOffenseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Primary', 'Primary', 'The offense was primary in nature when a single incident included more than one type of offense.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentMultipleOffenseType] -SET [Description] = 'Primary', [Definition] = 'The offense was primary in nature when a single incident included more than one type of offense.', [SortOrder] = 1.00 WHERE [Code] = 'Primary' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentMultipleOffenseType] WHERE [Code] = 'Secondary') BEGIN INSERT INTO dbo.[RefIncidentMultipleOffenseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Secondary', 'Secondary', 'The offense was secondary in nature when a single incident included more than one type of offense.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentMultipleOffenseType] -SET [Description] = 'Secondary', [Definition] = 'The offense was secondary in nature when a single incident included more than one type of offense.', [SortOrder] = 2.00 WHERE [Code] = 'Secondary' END -END - -PRINT N'Populate RefIncidentPerpetratorInjuryType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIncidentPerpetratorInjuryType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPerpetratorInjuryType] WHERE [Code] = 'MajorInjury') BEGIN INSERT INTO dbo.[RefIncidentPerpetratorInjuryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MajorInjury', 'Major injury', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPerpetratorInjuryType] -SET [Description] = 'Major injury', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'MajorInjury' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPerpetratorInjuryType] WHERE [Code] = 'MinorInjury') BEGIN INSERT INTO dbo.[RefIncidentPerpetratorInjuryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MinorInjury', 'Minor injury', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPerpetratorInjuryType] -SET [Description] = 'Minor injury', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'MinorInjury' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPerpetratorInjuryType] WHERE [Code] = 'NoInjury') BEGIN INSERT INTO dbo.[RefIncidentPerpetratorInjuryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoInjury', 'No injury', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPerpetratorInjuryType] -SET [Description] = 'No injury', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'NoInjury' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPerpetratorInjuryType] WHERE [Code] = 'SeriousBodilyInjury') BEGIN INSERT INTO dbo.[RefIncidentPerpetratorInjuryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SeriousBodilyInjury', 'Serious bodily injury', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPerpetratorInjuryType] -SET [Description] = 'Serious bodily injury', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'SeriousBodilyInjury' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPerpetratorInjuryType] WHERE [Code] = 'FatalInjury') BEGIN INSERT INTO dbo.[RefIncidentPerpetratorInjuryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FatalInjury', 'Fatal injury', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPerpetratorInjuryType] -SET [Description] = 'Fatal injury', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = 'FatalInjury' END -END - -PRINT N'Populate RefIncidentPersonRoleType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIncidentPersonRoleType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonRoleType] WHERE [Code] = 'Victim') BEGIN INSERT INTO dbo.[RefIncidentPersonRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Victim', 'Victim', 'Victim is the role or type of participation of the person in the discipline incident.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonRoleType] -SET [Description] = 'Victim', [Definition] = 'Victim is the role or type of participation of the person in the discipline incident.', [SortOrder] = 1.00 WHERE [Code] = 'Victim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonRoleType] WHERE [Code] = 'Perpetrator') BEGIN INSERT INTO dbo.[RefIncidentPersonRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Perpetrator', 'Perpetrator', 'Perpetrator is the role or type of participation of the person in the discipline incident.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonRoleType] -SET [Description] = 'Perpetrator', [Definition] = 'Perpetrator is the role or type of participation of the person in the discipline incident.', [SortOrder] = 3.00 WHERE [Code] = 'Perpetrator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonRoleType] WHERE [Code] = 'Witness') BEGIN INSERT INTO dbo.[RefIncidentPersonRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Witness', 'Witness', 'Witness is the role or type of participation of the person in the discipline incident.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonRoleType] -SET [Description] = 'Witness', [Definition] = 'Witness is the role or type of participation of the person in the discipline incident.', [SortOrder] = 5.00 WHERE [Code] = 'Witness' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonRoleType] WHERE [Code] = 'Reporter') BEGIN INSERT INTO dbo.[RefIncidentPersonRoleType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Reporter', 'Reporter', 'Reporter is the role or type of participation of the person in the discipline incident.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonRoleType] -SET [Description] = 'Reporter', [Definition] = 'Reporter is the role or type of participation of the person in the discipline incident.', [SortOrder] = 7.00 WHERE [Code] = 'Reporter' END -END - -PRINT N'Populate RefIncidentPersonType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIncidentPersonType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03041') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03041', 'Administrator', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Administrator', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = '03041' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '13342') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13342', 'All Other Support Staff', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'All Other Support Staff', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = '13342' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04723') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04723', 'Athletic coach', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Athletic coach', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = '04723' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04708') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04708', 'Board of education/school board/board of trustees member', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Board of education/school board/board of trustees member', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = '04708' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04864') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04864', 'Bus driver', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Bus driver', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = '04864' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04877') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04877', 'Cook/food preparer (food service staff)', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Cook/food preparer (food service staff)', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = '04877' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04725') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04725', 'Counselor', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Counselor', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = '04725' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04878') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04878', 'Custodian', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Custodian', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = '04878' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04710') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04710', 'Dean/dean of instructions/dean of students/dean of boys/dean of girls/dean of student activities', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Dean/dean of instructions/dean of students/dean of boys/dean of girls/dean of student activities', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = '04710' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04712') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04712', 'Deputy/associate/assistant superintendent/ commissioner', NULL, 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Deputy/associate/assistant superintendent/ commissioner', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = '04712' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04711') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04711', 'Deputy/associate/vice /assistant principal', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Deputy/associate/vice /assistant principal', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = '04711' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03168') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03168', 'Former student', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Former student', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = '03168' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03054') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03054', 'Law enforcement officer', NULL, 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Law enforcement officer', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = '03054' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '13335') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13335', 'Librarians/Media Specialist', NULL, 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Librarians/Media Specialist', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = '13335' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03055') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03055', 'Municipal law enforcement officer assigned to the school', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Municipal law enforcement officer assigned to the school', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = '03055' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03056') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03056', 'Municipal law enforcement officer not assigned to the school', NULL, 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Municipal law enforcement officer not assigned to the school', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = '03056' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03059') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03059', 'Nonschool personnel', NULL, 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Nonschool personnel', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = '03059' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03061') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03061', 'Other adult', NULL, 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Other adult', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = '03061' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03062') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03062', 'Other nonstudent youth', NULL, 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Other nonstudent youth', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = '03062' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '13403') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13403', 'Other Professional Staff', NULL, 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Other Professional Staff', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = '13403' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '13333') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13333', 'Paraprofessionals/Instructional Aide', NULL, 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Paraprofessionals/Instructional Aide', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = '13333' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '00850') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00850', 'Parent/guardian', NULL, 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Parent/guardian', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = '00850' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04718') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04718', 'Principal/headmaster/headmistress/head of school', NULL, 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Principal/headmaster/headmistress/head of school', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = '04718' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03035') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03035', 'Professional educational staff', NULL, 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Professional educational staff', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = '03035' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04783') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04783', 'Registered nurse', NULL, 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Registered nurse', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = '04783' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03060') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03060', 'Representative of visiting school', NULL, 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Representative of visiting school', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = '03060' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '13340') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13340', 'School Administrative Support Staff', NULL, 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'School Administrative Support Staff', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = '13340' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '13334') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13334', 'School Counselor', NULL, 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'School Counselor', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = '13334' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03057') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03057', 'School district police officer assigned to the school', NULL, 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'School district police officer assigned to the school', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = '03057' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03058') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03058', 'School district police officer not assigned to the school', NULL, 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'School district police officer not assigned to the school', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = '03058' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04885') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04885', 'Security guard', NULL, 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Security guard', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = '04885' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04788') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04788', 'Social worker', NULL, 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Social worker', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = '04788' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03422') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03422', 'Staff member', NULL, 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Staff member', [Definition] = NULL, [SortOrder] = 66.00 WHERE [Code] = '03422' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '00126') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00126', 'Student', NULL, 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Student', [Definition] = NULL, [SortOrder] = 68.00 WHERE [Code] = '00126' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04730') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04730', 'Student activity advisor/non athletic coach', NULL, 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Student activity advisor/non athletic coach', [Definition] = NULL, [SortOrder] = 70.00 WHERE [Code] = '04730' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03033') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03033', 'Student enrolled in another school', NULL, 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Student enrolled in another school', [Definition] = NULL, [SortOrder] = 72.00 WHERE [Code] = '03033' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03032') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03032', 'Student enrolled in the school where the incident occurred', NULL, 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Student enrolled in the school where the incident occurred', [Definition] = NULL, [SortOrder] = 74.00 WHERE [Code] = '03032' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '03034') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03034', 'Student expelled or involuntarily withdrawn', NULL, 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Student expelled or involuntarily withdrawn', [Definition] = NULL, [SortOrder] = 76.00 WHERE [Code] = '03034' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '13782') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13782', 'Substitute teacher', NULL, 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Substitute teacher', [Definition] = NULL, [SortOrder] = 78.00 WHERE [Code] = '13782' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04721') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04721', 'Superintendent/commissioner', NULL, 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Superintendent/commissioner', [Definition] = NULL, [SortOrder] = 80.00 WHERE [Code] = '04721' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '04732') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04732', 'Teacher', NULL, 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Teacher', [Definition] = NULL, [SortOrder] = 82.00 WHERE [Code] = '04732' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentPersonType] WHERE [Code] = '09997') BEGIN INSERT INTO dbo.[RefIncidentPersonType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09997', 'Unknown', NULL, 84.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentPersonType] -SET [Description] = 'Unknown', [Definition] = NULL, [SortOrder] = 84.00 WHERE [Code] = '09997' END -END - -PRINT N'Populate RefIncidentReporterType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIncidentReporterType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '00126') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00126', 'Student', 'Student reported the incident.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Student', [Definition] = 'Student reported the incident.', [SortOrder] = 1.00 WHERE [Code] = '00126' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03032') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03032', 'Student enrolled in the school where the incident occurred', 'Student enrolled in the school where the incident occurred reported the incident.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Student enrolled in the school where the incident occurred', [Definition] = 'Student enrolled in the school where the incident occurred reported the incident.', [SortOrder] = 2.00 WHERE [Code] = '03032' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03033') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03033', 'Student enrolled in another school', 'Student enrolled in another school reported the incident.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Student enrolled in another school', [Definition] = 'Student enrolled in another school reported the incident.', [SortOrder] = 3.00 WHERE [Code] = '03033' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03034') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03034', 'Student expelled or involuntarily withdrawn', 'Student expelled or involuntarily withdrawn reported the incident.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Student expelled or involuntarily withdrawn', [Definition] = 'Student expelled or involuntarily withdrawn reported the incident.', [SortOrder] = 4.00 WHERE [Code] = '03034' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03422') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03422', 'Staff member', 'Staff member reported the incident.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Staff member', [Definition] = 'Staff member reported the incident.', [SortOrder] = 5.00 WHERE [Code] = '03422' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03035') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03035', 'Professional educational staff', 'Professional educational staff reported the incident.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Professional educational staff', [Definition] = 'Professional educational staff reported the incident.', [SortOrder] = 6.00 WHERE [Code] = '03035' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04732') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04732', 'Teacher', 'Teacher reported the incident.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Teacher', [Definition] = 'Teacher reported the incident.', [SortOrder] = 7.00 WHERE [Code] = '04732' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '13782') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13782', 'Substitute teacher', 'Substitute teacher reported the incident.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Substitute teacher', [Definition] = 'Substitute teacher reported the incident.', [SortOrder] = 8.00 WHERE [Code] = '13782' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '13335') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13335', 'Librarians/Media Specialist', 'Librarians/Media Specialist reported the incident.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Librarians/Media Specialist', [Definition] = 'Librarians/Media Specialist reported the incident.', [SortOrder] = 9.00 WHERE [Code] = '13335' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04725') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04725', 'Counselor', 'Counselor reported the incident.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Counselor', [Definition] = 'Counselor reported the incident.', [SortOrder] = 10.00 WHERE [Code] = '04725' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '13334') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13334', 'School Counselor', 'School Counselor', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'School Counselor', [Definition] = 'School Counselor', [SortOrder] = 11.00 WHERE [Code] = '13334' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04723') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04723', 'Athletic coach', 'Athletic coach reported the incident.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Athletic coach', [Definition] = 'Athletic coach reported the incident.', [SortOrder] = 12.00 WHERE [Code] = '04723' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04730') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04730', 'Student activity advisor/non athletic coach', 'Student activity advisor/non athletic coach reported the incident.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Student activity advisor/non athletic coach', [Definition] = 'Student activity advisor/non athletic coach reported the incident.', [SortOrder] = 13.00 WHERE [Code] = '04730' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '13403') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13403', 'Other Professional Staff', 'Other Professional Staff reported the incident.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Other Professional Staff', [Definition] = 'Other Professional Staff reported the incident.', [SortOrder] = 14.00 WHERE [Code] = '13403' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04783') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04783', 'Registered nurse', 'Registered nurse reported the incident.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Registered nurse', [Definition] = 'Registered nurse reported the incident.', [SortOrder] = 15.00 WHERE [Code] = '04783' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04788') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04788', 'Social worker', 'Social worker reported the incident.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Social worker', [Definition] = 'Social worker reported the incident.', [SortOrder] = 16.00 WHERE [Code] = '04788' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03041') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03041', 'Administrator', 'Administrator reported the incident.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Administrator', [Definition] = 'Administrator reported the incident.', [SortOrder] = 17.00 WHERE [Code] = '03041' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04718') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04718', 'Principal/headmaster/headmistress/head of school', 'Principal/headmaster/headmistress/head of school reported the incident.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Principal/headmaster/headmistress/head of school', [Definition] = 'Principal/headmaster/headmistress/head of school reported the incident.', [SortOrder] = 18.00 WHERE [Code] = '04718' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04711') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04711', 'Deputy/associate/vice /assistant principal', 'Deputy/associate/vice /assistant principal reported the incident.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Deputy/associate/vice /assistant principal', [Definition] = 'Deputy/associate/vice /assistant principal reported the incident.', [SortOrder] = 19.00 WHERE [Code] = '04711' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04710') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04710', 'Dean/dean of instructions/dean of students/dean of boys/dean of girls/dean of student activities', 'Dean/dean of instructions/dean of students/dean of boys/dean of girls/dean of student activities reported the incident.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Dean/dean of instructions/dean of students/dean of boys/dean of girls/dean of student activities', [Definition] = 'Dean/dean of instructions/dean of students/dean of boys/dean of girls/dean of student activities reported the incident.', [SortOrder] = 20.00 WHERE [Code] = '04710' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04721') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04721', 'Superintendent/commissioner', 'Superintendent/commissioner reported the incident.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Superintendent/commissioner', [Definition] = 'Superintendent/commissioner reported the incident.', [SortOrder] = 21.00 WHERE [Code] = '04721' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04712') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04712', 'Deputy/associate/assistant superintendent/ commissioner', 'Deputy/associate/assistant superintendent/ commissioner reported the incident.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Deputy/associate/assistant superintendent/ commissioner', [Definition] = 'Deputy/associate/assistant superintendent/ commissioner reported the incident.', [SortOrder] = 22.00 WHERE [Code] = '04712' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04708') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04708', 'Board of education/school board/board of trustees member', 'Board of education/school board/board of trustees member reported the incident.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Board of education/school board/board of trustees member', [Definition] = 'Board of education/school board/board of trustees member reported the incident.', [SortOrder] = 23.00 WHERE [Code] = '04708' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '13342') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13342', 'All Other Support Staff', 'All Other Support Staff reported the incident.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'All Other Support Staff', [Definition] = 'All Other Support Staff reported the incident.', [SortOrder] = 24.00 WHERE [Code] = '13342' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04864') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04864', 'Bus driver', 'Bus driver reported the incident.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Bus driver', [Definition] = 'Bus driver reported the incident.', [SortOrder] = 25.00 WHERE [Code] = '04864' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '13340') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13340', 'School Administrative Support Staff', 'School Administrative Support Staff reported the incident.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'School Administrative Support Staff', [Definition] = 'School Administrative Support Staff reported the incident.', [SortOrder] = 26.00 WHERE [Code] = '13340' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04878') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04878', 'Custodian', 'Custodian reported the incident.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Custodian', [Definition] = 'Custodian reported the incident.', [SortOrder] = 27.00 WHERE [Code] = '04878' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04877') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04877', 'Cook/food preparer (food service staff)', 'Cook/food preparer (food service staff) reported the incident.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Cook/food preparer (food service staff)', [Definition] = 'Cook/food preparer (food service staff) reported the incident.', [SortOrder] = 28.00 WHERE [Code] = '04877' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '13333') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13333', 'Paraprofessionals/Instructional Aide', 'Paraprofessionals/Instructional Aide reported the incident.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Paraprofessionals/Instructional Aide', [Definition] = 'Paraprofessionals/Instructional Aide reported the incident.', [SortOrder] = 29.00 WHERE [Code] = '13333' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '04885') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04885', 'Security guard', 'Security guard reported the incident.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Security guard', [Definition] = 'Security guard reported the incident.', [SortOrder] = 30.00 WHERE [Code] = '04885' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03054') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03054', 'Law enforcement officer', 'Law enforcement officer reported the incident.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Law enforcement officer', [Definition] = 'Law enforcement officer reported the incident.', [SortOrder] = 31.00 WHERE [Code] = '03054' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03055') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03055', 'Municipal law enforcement officer assigned to the school', 'Municipal law enforcement officer assigned to the school reported the incident.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Municipal law enforcement officer assigned to the school', [Definition] = 'Municipal law enforcement officer assigned to the school reported the incident.', [SortOrder] = 32.00 WHERE [Code] = '03055' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03056') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03056', 'Municipal law enforcement officer not assigned to the school', 'Municipal law enforcement officer not assigned to the school reported the incident.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Municipal law enforcement officer not assigned to the school', [Definition] = 'Municipal law enforcement officer not assigned to the school reported the incident.', [SortOrder] = 33.00 WHERE [Code] = '03056' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03057') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03057', 'School district police officer assigned to the school', 'School district police officer assigned to the school reported the incident.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'School district police officer assigned to the school', [Definition] = 'School district police officer assigned to the school reported the incident.', [SortOrder] = 34.00 WHERE [Code] = '03057' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03058') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03058', 'School district police officer not assigned to the school', 'School district police officer not assigned to the school reported the incident.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'School district police officer not assigned to the school', [Definition] = 'School district police officer not assigned to the school reported the incident.', [SortOrder] = 35.00 WHERE [Code] = '03058' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03059') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03059', 'Nonschool personnel', 'Nonschool personnel reported the incident.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Nonschool personnel', [Definition] = 'Nonschool personnel reported the incident.', [SortOrder] = 36.00 WHERE [Code] = '03059' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '00850') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00850', 'Parent/guardian', 'Parent/guardian reported the incident.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Parent/guardian', [Definition] = 'Parent/guardian reported the incident.', [SortOrder] = 37.00 WHERE [Code] = '00850' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03060') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03060', 'Representative of visiting school', 'Representative of visiting school reported the incident.', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Representative of visiting school', [Definition] = 'Representative of visiting school reported the incident.', [SortOrder] = 38.00 WHERE [Code] = '03060' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03061') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03061', 'Other adult', 'Other adult reported the incident.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Other adult', [Definition] = 'Other adult reported the incident.', [SortOrder] = 39.00 WHERE [Code] = '03061' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03168') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03168', 'Former student', 'Former student reported the incident.', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Former student', [Definition] = 'Former student reported the incident.', [SortOrder] = 40.00 WHERE [Code] = '03168' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '03062') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03062', 'Other nonstudent youth', 'Other nonstudent youth reported the incident.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Other nonstudent youth', [Definition] = 'Other nonstudent youth reported the incident.', [SortOrder] = 41.00 WHERE [Code] = '03062' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentReporterType] WHERE [Code] = '09997') BEGIN INSERT INTO dbo.[RefIncidentReporterType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09997', 'Unknown', 'An unknown category of person reported the incident.', 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentReporterType] -SET [Description] = 'Unknown', [Definition] = 'An unknown category of person reported the incident.', [SortOrder] = 42.00 WHERE [Code] = '09997' END -END - -PRINT N'Populate RefIncidentTimeDescriptionCode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIncidentTimeDescriptionCode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentTimeDescriptionCode] WHERE [Code] = '13765') BEGIN INSERT INTO dbo.[RefIncidentTimeDescriptionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13765', 'After classes', 'The incident took place After classes.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentTimeDescriptionCode] -SET [Description] = 'After classes', [Definition] = 'The incident took place After classes.', [SortOrder] = 1.00 WHERE [Code] = '13765' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentTimeDescriptionCode] WHERE [Code] = '13761') BEGIN INSERT INTO dbo.[RefIncidentTimeDescriptionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13761', 'Before classes', 'The incident took place Before classes.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentTimeDescriptionCode] -SET [Description] = 'Before classes', [Definition] = 'The incident took place Before classes.', [SortOrder] = 2.00 WHERE [Code] = '13761' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentTimeDescriptionCode] WHERE [Code] = '13762') BEGIN INSERT INTO dbo.[RefIncidentTimeDescriptionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13762', 'During class', 'The incident took place During class.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentTimeDescriptionCode] -SET [Description] = 'During class', [Definition] = 'The incident took place During class.', [SortOrder] = 3.00 WHERE [Code] = '13762' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentTimeDescriptionCode] WHERE [Code] = '13764') BEGIN INSERT INTO dbo.[RefIncidentTimeDescriptionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13764', 'During lunch/recess', 'The incident took place During lunch/recess.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentTimeDescriptionCode] -SET [Description] = 'During lunch/recess', [Definition] = 'The incident took place During lunch/recess.', [SortOrder] = 4.00 WHERE [Code] = '13764' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentTimeDescriptionCode] WHERE [Code] = '13763') BEGIN INSERT INTO dbo.[RefIncidentTimeDescriptionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13763', 'During passing', 'The incident took place During passing.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentTimeDescriptionCode] -SET [Description] = 'During passing', [Definition] = 'The incident took place During passing.', [SortOrder] = 5.00 WHERE [Code] = '13763' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentTimeDescriptionCode] WHERE [Code] = '13770') BEGIN INSERT INTO dbo.[RefIncidentTimeDescriptionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13770', 'Nonschool-sponsored activity', 'The incident took place during a Nonschool-sponsored activity.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentTimeDescriptionCode] -SET [Description] = 'Nonschool-sponsored activity', [Definition] = 'The incident took place during a Nonschool-sponsored activity.', [SortOrder] = 6.00 WHERE [Code] = '13770' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentTimeDescriptionCode] WHERE [Code] = '13768') BEGIN INSERT INTO dbo.[RefIncidentTimeDescriptionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13768', 'On the way from school', 'The incident took place On the way from school.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentTimeDescriptionCode] -SET [Description] = 'On the way from school', [Definition] = 'The incident took place On the way from school.', [SortOrder] = 7.00 WHERE [Code] = '13768' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentTimeDescriptionCode] WHERE [Code] = '13767') BEGIN INSERT INTO dbo.[RefIncidentTimeDescriptionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13767', 'On the way to school', 'The incident took place On the way to school.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentTimeDescriptionCode] -SET [Description] = 'On the way to school', [Definition] = 'The incident took place On the way to school.', [SortOrder] = 8.00 WHERE [Code] = '13767' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentTimeDescriptionCode] WHERE [Code] = '13766') BEGIN INSERT INTO dbo.[RefIncidentTimeDescriptionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13766', 'Other time during school hours', 'The incident took place during an Other time during school hours.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentTimeDescriptionCode] -SET [Description] = 'Other time during school hours', [Definition] = 'The incident took place during an Other time during school hours.', [SortOrder] = 9.00 WHERE [Code] = '13766' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentTimeDescriptionCode] WHERE [Code] = '13771') BEGIN INSERT INTO dbo.[RefIncidentTimeDescriptionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13771', 'Other time outside school hours', 'The incident took place during an Other time outside school hours.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentTimeDescriptionCode] -SET [Description] = 'Other time outside school hours', [Definition] = 'The incident took place during an Other time outside school hours.', [SortOrder] = 10.00 WHERE [Code] = '13771' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentTimeDescriptionCode] WHERE [Code] = '13769') BEGIN INSERT INTO dbo.[RefIncidentTimeDescriptionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13769', 'School-sponsored activity', 'The incident took place during a School-sponsored activity.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentTimeDescriptionCode] -SET [Description] = 'School-sponsored activity', [Definition] = 'The incident took place during a School-sponsored activity.', [SortOrder] = 11.00 WHERE [Code] = '13769' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentTimeDescriptionCode] WHERE [Code] = '13772') BEGIN INSERT INTO dbo.[RefIncidentTimeDescriptionCode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13772', 'Unknown', 'The time description of when the incident took place is Unknown.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentTimeDescriptionCode] -SET [Description] = 'Unknown', [Definition] = 'The time description of when the incident took place is Unknown.', [SortOrder] = 12.00 WHERE [Code] = '13772' END -END - -PRINT N'Populate RefIncomeCalculationMethod table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIncomeCalculationMethod]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncomeCalculationMethod] WHERE [Code] = 'HeadStart') BEGIN INSERT INTO dbo.[RefIncomeCalculationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HeadStart', 'Head Start calculation', 'Head Start is the calculation method used by a program to determine total family income.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncomeCalculationMethod] -SET [Description] = 'Head Start calculation', [Definition] = 'Head Start is the calculation method used by a program to determine total family income.', [SortOrder] = 1.00 WHERE [Code] = 'HeadStart' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncomeCalculationMethod] WHERE [Code] = 'StateSpecific') BEGIN INSERT INTO dbo.[RefIncomeCalculationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateSpecific', 'State-specific calculation', 'State-specific calculation is the calculation method used by a program to determine total family income.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncomeCalculationMethod] -SET [Description] = 'State-specific calculation', [Definition] = 'State-specific calculation is the calculation method used by a program to determine total family income.', [SortOrder] = 2.00 WHERE [Code] = 'StateSpecific' END -END - -PRINT N'Populate RefIncreasedLearningTimeType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIncreasedLearningTimeType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncreasedLearningTimeType] WHERE [Code] = 'LongerSchoolYear') BEGIN INSERT INTO dbo.[RefIncreasedLearningTimeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LongerSchoolYear', 'Longer School Year', 'Longer School Year is a type of increased learning time provided.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncreasedLearningTimeType] -SET [Description] = 'Longer School Year', [Definition] = 'Longer School Year is a type of increased learning time provided.', [SortOrder] = 1.00 WHERE [Code] = 'LongerSchoolYear' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncreasedLearningTimeType] WHERE [Code] = 'LongerSchoolDay') BEGIN INSERT INTO dbo.[RefIncreasedLearningTimeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LongerSchoolDay', 'Longer School Day', 'Longer School Day is a type of increased learning time provided.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncreasedLearningTimeType] -SET [Description] = 'Longer School Day', [Definition] = 'Longer School Day is a type of increased learning time provided.', [SortOrder] = 2.00 WHERE [Code] = 'LongerSchoolDay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncreasedLearningTimeType] WHERE [Code] = 'BeforeOrAfterSchool') BEGIN INSERT INTO dbo.[RefIncreasedLearningTimeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BeforeOrAfterSchool', 'Before or After School', 'Before or After School is a type of increased learning time provided.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncreasedLearningTimeType] -SET [Description] = 'Before or After School', [Definition] = 'Before or After School is a type of increased learning time provided.', [SortOrder] = 3.00 WHERE [Code] = 'BeforeOrAfterSchool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncreasedLearningTimeType] WHERE [Code] = 'SummerSchool') BEGIN INSERT INTO dbo.[RefIncreasedLearningTimeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SummerSchool', 'Summer School', 'Summer School is a type of increased learning time provided.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncreasedLearningTimeType] -SET [Description] = 'Summer School', [Definition] = 'Summer School is a type of increased learning time provided.', [SortOrder] = 4.00 WHERE [Code] = 'SummerSchool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncreasedLearningTimeType] WHERE [Code] = 'WeekendSchool') BEGIN INSERT INTO dbo.[RefIncreasedLearningTimeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WeekendSchool', 'Weekend School', 'Weekend School is a type of increased learning time provided.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncreasedLearningTimeType] -SET [Description] = 'Weekend School', [Definition] = 'Weekend School is a type of increased learning time provided.', [SortOrder] = 5.00 WHERE [Code] = 'WeekendSchool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncreasedLearningTimeType] WHERE [Code] = 'AfterSchool') BEGIN INSERT INTO dbo.[RefIncreasedLearningTimeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AfterSchool', 'After School', 'After school is a type of increased learning time provided.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncreasedLearningTimeType] -SET [Description] = 'After School', [Definition] = 'After school is a type of increased learning time provided.', [SortOrder] = 6.00 WHERE [Code] = 'AfterSchool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncreasedLearningTimeType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefIncreasedLearningTimeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is a type of increased learning time provided.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncreasedLearningTimeType] -SET [Description] = 'Other', [Definition] = 'Other is a type of increased learning time provided.', [SortOrder] = 6.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncreasedLearningTimeType] WHERE [Code] = 'BeforeSchool') BEGIN INSERT INTO dbo.[RefIncreasedLearningTimeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BeforeSchool', 'Before School', 'Before school is a type of increased learning time provided.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncreasedLearningTimeType] -SET [Description] = 'Before School', [Definition] = 'Before school is a type of increased learning time provided.', [SortOrder] = 7.00 WHERE [Code] = 'BeforeSchool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncreasedLearningTimeType] WHERE [Code] = 'NightSchool') BEGIN INSERT INTO dbo.[RefIncreasedLearningTimeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NightSchool', 'Night School', 'Night School is a type of increased learning time provided.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncreasedLearningTimeType] -SET [Description] = 'Night School', [Definition] = 'Night School is a type of increased learning time provided.', [SortOrder] = 8.00 WHERE [Code] = 'NightSchool' END -END - -PRINT N'Populate RefIndividualizedProgramDateType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIndividualizedProgramDateType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramDateType] WHERE [Code] = 'Development') BEGIN INSERT INTO dbo.[RefIndividualizedProgramDateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Development', 'Development date', 'The related Individualized Program Date is a development date.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramDateType] -SET [Description] = 'Development date', [Definition] = 'The related Individualized Program Date is a development date.', [SortOrder] = 0.00 WHERE [Code] = 'Development' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramDateType] WHERE [Code] = 'Implementation') BEGIN INSERT INTO dbo.[RefIndividualizedProgramDateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Implementation', 'Implementation date', 'The related Individualized Program Date is an implementation date.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramDateType] -SET [Description] = 'Implementation date', [Definition] = 'The related Individualized Program Date is an implementation date.', [SortOrder] = 2.00 WHERE [Code] = 'Implementation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramDateType] WHERE [Code] = 'TentativeRevision') BEGIN INSERT INTO dbo.[RefIndividualizedProgramDateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TentativeRevision', 'Tentative revision date', 'The related Individualized Program Date is a tentative revision date.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramDateType] -SET [Description] = 'Tentative revision date', [Definition] = 'The related Individualized Program Date is a tentative revision date.', [SortOrder] = 4.00 WHERE [Code] = 'TentativeRevision' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramDateType] WHERE [Code] = 'Revision') BEGIN INSERT INTO dbo.[RefIndividualizedProgramDateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Revision', 'Revision date', 'The related Individualized Program Date is an revision date.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramDateType] -SET [Description] = 'Revision date', [Definition] = 'The related Individualized Program Date is an revision date.', [SortOrder] = 6.00 WHERE [Code] = 'Revision' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramDateType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefIndividualizedProgramDateType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The related Individualized Program Date is in a category not yet defined in CEDS.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramDateType] -SET [Description] = 'Other', [Definition] = 'The related Individualized Program Date is in a category not yet defined in CEDS.', [SortOrder] = 8.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefIndividualizedProgramLocation table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIndividualizedProgramLocation]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramLocation] WHERE [Code] = '02192') BEGIN INSERT INTO dbo.[RefIndividualizedProgramLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02192', 'Home', 'Home is the place in which a child''s service plan meeting was held.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramLocation] -SET [Description] = 'Home', [Definition] = 'Home is the place in which a child''s service plan meeting was held.', [SortOrder] = 0.00 WHERE [Code] = '02192' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramLocation] WHERE [Code] = '00754') BEGIN INSERT INTO dbo.[RefIndividualizedProgramLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00754', 'Hospital', 'Hospital is the place in which a child''s service plan meeting was held.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramLocation] -SET [Description] = 'Hospital', [Definition] = 'Hospital is the place in which a child''s service plan meeting was held.', [SortOrder] = 2.00 WHERE [Code] = '00754' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramLocation] WHERE [Code] = '06008') BEGIN INSERT INTO dbo.[RefIndividualizedProgramLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06008', 'Outpatient hospital', 'Outpatient hospital is the place in which a child''s service plan meeting was held.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramLocation] -SET [Description] = 'Outpatient hospital', [Definition] = 'Outpatient hospital is the place in which a child''s service plan meeting was held.', [SortOrder] = 4.00 WHERE [Code] = '06008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramLocation] WHERE [Code] = '06009') BEGIN INSERT INTO dbo.[RefIndividualizedProgramLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06009', 'Ambulatory care center', 'Ambulatory care center is the place in which a child''s service plan meeting was held.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramLocation] -SET [Description] = 'Ambulatory care center', [Definition] = 'Ambulatory care center is the place in which a child''s service plan meeting was held.', [SortOrder] = 6.00 WHERE [Code] = '06009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramLocation] WHERE [Code] = '06010') BEGIN INSERT INTO dbo.[RefIndividualizedProgramLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06010', 'Primary care health provider office', 'Primary care health provider office is the place in which a child''s service plan meeting was held.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramLocation] -SET [Description] = 'Primary care health provider office', [Definition] = 'Primary care health provider office is the place in which a child''s service plan meeting was held.', [SortOrder] = 8.00 WHERE [Code] = '06010' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramLocation] WHERE [Code] = '01535') BEGIN INSERT INTO dbo.[RefIndividualizedProgramLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01535', 'Child care', 'Child care is the place in which a child''s service plan meeting was held.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramLocation] -SET [Description] = 'Child care', [Definition] = 'Child care is the place in which a child''s service plan meeting was held.', [SortOrder] = 10.00 WHERE [Code] = '01535' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramLocation] WHERE [Code] = '00127') BEGIN INSERT INTO dbo.[RefIndividualizedProgramLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00127', 'Early intervention classroom/center', 'Early intervention classroom/center is the place in which a child''s service plan meeting was held.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramLocation] -SET [Description] = 'Early intervention classroom/center', [Definition] = 'Early intervention classroom/center is the place in which a child''s service plan meeting was held.', [SortOrder] = 12.00 WHERE [Code] = '00127' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramLocation] WHERE [Code] = '00066') BEGIN INSERT INTO dbo.[RefIndividualizedProgramLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00066', 'Local education agency', 'Local education agency is the place in which a child''s service plan meeting was held.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramLocation] -SET [Description] = 'Local education agency', [Definition] = 'Local education agency is the place in which a child''s service plan meeting was held.', [SortOrder] = 14.00 WHERE [Code] = '00066' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramLocation] WHERE [Code] = '06011') BEGIN INSERT INTO dbo.[RefIndividualizedProgramLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06011', 'Public health facility', 'Public health facility is the place in which a child''s service plan meeting was held.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramLocation] -SET [Description] = 'Public health facility', [Definition] = 'Public health facility is the place in which a child''s service plan meeting was held.', [SortOrder] = 16.00 WHERE [Code] = '06011' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramLocation] WHERE [Code] = '06012') BEGIN INSERT INTO dbo.[RefIndividualizedProgramLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06012', 'Social service agency', 'Social service agency is the place in which a child''s service plan meeting was held.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramLocation] -SET [Description] = 'Social service agency', [Definition] = 'Social service agency is the place in which a child''s service plan meeting was held.', [SortOrder] = 18.00 WHERE [Code] = '06012' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramLocation] WHERE [Code] = '06013') BEGIN INSERT INTO dbo.[RefIndividualizedProgramLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06013', 'Other health care provider location', 'Other health care provider location is the place in which a child''s service plan meeting was held.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramLocation] -SET [Description] = 'Other health care provider location', [Definition] = 'Other health care provider location is the place in which a child''s service plan meeting was held.', [SortOrder] = 20.00 WHERE [Code] = '06013' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramLocation] WHERE [Code] = '00752') BEGIN INSERT INTO dbo.[RefIndividualizedProgramLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00752', 'Community facility', 'Community facility is the place in which a child''s service plan meeting was held.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramLocation] -SET [Description] = 'Community facility', [Definition] = 'Community facility is the place in which a child''s service plan meeting was held.', [SortOrder] = 22.00 WHERE [Code] = '00752' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramLocation] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefIndividualizedProgramLocation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'The place in which a child''s service plan meeting was held is in a category not yet defined in CEDS.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramLocation] -SET [Description] = 'Other', [Definition] = 'The place in which a child''s service plan meeting was held is in a category not yet defined in CEDS.', [SortOrder] = 24.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefIndividualizedProgramPlannedServiceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIndividualizedProgramPlannedServiceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Assistive technology services', 'Assistive technology services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability. -', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Assistive technology services', [Definition] = 'Assistive technology services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability. -', [SortOrder] = 2.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Audiology services', 'Audiology services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Audiology services', [Definition] = 'Audiology services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 4.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Family training/counseling services', 'Family training/counseling services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Family training/counseling services', [Definition] = 'Family training/counseling services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 6.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Health services', 'Health services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Health services', [Definition] = 'Health services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 8.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Medical services', 'Medical services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Medical services', [Definition] = 'Medical services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 10.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Nursing services', 'Nursing services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Nursing services', [Definition] = 'Nursing services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 12.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Nutrition services', 'Nutrition services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Nutrition services', [Definition] = 'Nutrition services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 14.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Occupational therapy', 'Occupational therapy is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Occupational therapy', [Definition] = 'Occupational therapy is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 16.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Physical therapy', 'Physical therapy is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Physical therapy', [Definition] = 'Physical therapy is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 18.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Psychological services', 'Psychological services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Psychological services', [Definition] = 'Psychological services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 20.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Sign language and cued language services', 'Sign language and cued language services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Sign language and cued language services', [Definition] = 'Sign language and cued language services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 22.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Service coordination', 'Service coordination is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Service coordination', [Definition] = 'Service coordination is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 24.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '13') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13', 'Social work services', 'Social work services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Social work services', [Definition] = 'Social work services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 26.00 WHERE [Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '14') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14', 'Special instruction', 'Special instruction is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Special instruction', [Definition] = 'Special instruction is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 28.00 WHERE [Code] = '14' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '15') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('15', 'Speech-language pathology services', 'Speech-language pathology services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Speech-language pathology services', [Definition] = 'Speech-language pathology services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 30.00 WHERE [Code] = '15' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '16') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('16', 'Vision services', 'Vision services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Vision services', [Definition] = 'Vision services is the type of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 32.00 WHERE [Code] = '16' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramPlannedServiceType] WHERE [Code] = '99') BEGIN INSERT INTO dbo.[RefIndividualizedProgramPlannedServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('99', 'Other', 'A type of service other than what is currently defined in CEDS that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramPlannedServiceType] -SET [Description] = 'Other', [Definition] = 'A type of service other than what is currently defined in CEDS that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', [SortOrder] = 99.00 WHERE [Code] = '99' END -END - -PRINT N'Populate RefIndividualizedProgramTransitionType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIndividualizedProgramTransitionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramTransitionType] WHERE [Code] = '03426') BEGIN INSERT INTO dbo.[RefIndividualizedProgramTransitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03426', 'Postsecondary education or training', 'Postsecondary education or training is the type of post-school transition plan for the student recorded on their Individualized Education Program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramTransitionType] -SET [Description] = 'Postsecondary education or training', [Definition] = 'Postsecondary education or training is the type of post-school transition plan for the student recorded on their Individualized Education Program.', [SortOrder] = 1.00 WHERE [Code] = '03426' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramTransitionType] WHERE [Code] = '00518') BEGIN INSERT INTO dbo.[RefIndividualizedProgramTransitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00518', 'Work', 'Work is the type of post-school transition plan for the student recorded on their Individualized Education Program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramTransitionType] -SET [Description] = 'Work', [Definition] = 'Work is the type of post-school transition plan for the student recorded on their Individualized Education Program.', [SortOrder] = 2.00 WHERE [Code] = '00518' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramTransitionType] WHERE [Code] = '09998') BEGIN INSERT INTO dbo.[RefIndividualizedProgramTransitionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09998', 'None', 'No post-school transition plan for the student was recorded on their Individualized Education Program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramTransitionType] -SET [Description] = 'None', [Definition] = 'No post-school transition plan for the student was recorded on their Individualized Education Program.', [SortOrder] = 3.00 WHERE [Code] = '09998' END -END - -PRINT N'Populate RefIndividualizedProgramType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIndividualizedProgramType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramType] WHERE [Code] = '05978') BEGIN INSERT INTO dbo.[RefIndividualizedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05978', '504 plan', 'This type of individualized program developed for the student is a 504 plan.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramType] -SET [Description] = '504 plan', [Definition] = 'This type of individualized program developed for the student is a 504 plan.', [SortOrder] = 1.00 WHERE [Code] = '05978' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramType] WHERE [Code] = '89600') BEGIN INSERT INTO dbo.[RefIndividualizedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('89600', 'College and Career Ready Learning Plan', 'This type of individualized program developed for the student is a College and Career Ready Learning Plan.', 1.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramType] -SET [Description] = 'College and Career Ready Learning Plan', [Definition] = 'This type of individualized program developed for the student is a College and Career Ready Learning Plan.', [SortOrder] = 1.50 WHERE [Code] = '89600' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramType] WHERE [Code] = '05980') BEGIN INSERT INTO dbo.[RefIndividualizedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05980', 'GIEP - Individualized education program for gifted student', 'This type of individualized program developed for the student is a GIEP - Individualized education program for gifted student.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramType] -SET [Description] = 'GIEP - Individualized education program for gifted student', [Definition] = 'This type of individualized program developed for the student is a GIEP - Individualized education program for gifted student.', [SortOrder] = 2.00 WHERE [Code] = '05980' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramType] WHERE [Code] = '02196') BEGIN INSERT INTO dbo.[RefIndividualizedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02196', 'Individualized education program (IEP)', 'This type of individualized program developed for the student is an individualized education program (IEP).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramType] -SET [Description] = 'Individualized education program (IEP)', [Definition] = 'This type of individualized program developed for the student is an individualized education program (IEP).', [SortOrder] = 3.00 WHERE [Code] = '02196' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramType] WHERE [Code] = '02198') BEGIN INSERT INTO dbo.[RefIndividualizedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02198', 'Individualized family service plan (IFSP)', 'This type of individualized program developed for the student is an individualized family service plan (IFSP).', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramType] -SET [Description] = 'Individualized family service plan (IFSP)', [Definition] = 'This type of individualized program developed for the student is an individualized family service plan (IFSP).', [SortOrder] = 4.00 WHERE [Code] = '02198' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramType] WHERE [Code] = '02197') BEGIN INSERT INTO dbo.[RefIndividualizedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02197', 'Individualized learning program (ILP)', 'This type of individualized program developed for the student is an individualized learning program (ILP).', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramType] -SET [Description] = 'Individualized learning program (ILP)', [Definition] = 'This type of individualized program developed for the student is an individualized learning program (ILP).', [SortOrder] = 5.00 WHERE [Code] = '02197' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramType] WHERE [Code] = '05982') BEGIN INSERT INTO dbo.[RefIndividualizedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05982', 'Individualized transition plan', 'This type of individualized program developed for the student is an individualized transition plan.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramType] -SET [Description] = 'Individualized transition plan', [Definition] = 'This type of individualized program developed for the student is an individualized transition plan.', [SortOrder] = 6.00 WHERE [Code] = '05982' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramType] WHERE [Code] = '02349') BEGIN INSERT INTO dbo.[RefIndividualizedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02349', 'English learner', 'This type of individualized program developed for the student is an English learner.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramType] -SET [Description] = 'English learner', [Definition] = 'This type of individualized program developed for the student is an English learner.', [SortOrder] = 7.00 WHERE [Code] = '02349' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramType] WHERE [Code] = '05981') BEGIN INSERT INTO dbo.[RefIndividualizedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05981', 'Literacy plan', 'This type of individualized program developed for the student is a literacy plan.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramType] -SET [Description] = 'Literacy plan', [Definition] = 'This type of individualized program developed for the student is a literacy plan.', [SortOrder] = 8.00 WHERE [Code] = '05981' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramType] WHERE [Code] = '05979') BEGIN INSERT INTO dbo.[RefIndividualizedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05979', 'Student intervention/support plan', 'This type of individualized program developed for the student is a student intervention/support plan.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramType] -SET [Description] = 'Student intervention/support plan', [Definition] = 'This type of individualized program developed for the student is a student intervention/support plan.', [SortOrder] = 9.00 WHERE [Code] = '05979' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIndividualizedProgramType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefIndividualizedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'This type of individualized program developed for the student is in a category not yet defined in CEDS.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIndividualizedProgramType] -SET [Description] = 'Other', [Definition] = 'This type of individualized program developed for the student is in a category not yet defined in CEDS.', [SortOrder] = 10.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefInstitutionTelephoneType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefInstitutionTelephoneType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstitutionTelephoneType] WHERE [Code] = 'Main') BEGIN INSERT INTO dbo.[RefInstitutionTelephoneType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Main', 'Main phone number', 'Main phone number is the type of communication number listed for an organization.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstitutionTelephoneType] -SET [Description] = 'Main phone number', [Definition] = 'Main phone number is the type of communication number listed for an organization.', [SortOrder] = 2.00 WHERE [Code] = 'Main' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstitutionTelephoneType] WHERE [Code] = 'Administrative') BEGIN INSERT INTO dbo.[RefInstitutionTelephoneType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Administrative', 'Administrative phone number', 'Administrative phone number is the type of communication number listed for an organization.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstitutionTelephoneType] -SET [Description] = 'Administrative phone number', [Definition] = 'Administrative phone number is the type of communication number listed for an organization.', [SortOrder] = 3.00 WHERE [Code] = 'Administrative' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstitutionTelephoneType] WHERE [Code] = 'HealthClinic') BEGIN INSERT INTO dbo.[RefInstitutionTelephoneType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HealthClinic', 'Health clinic phone number', 'Health clinic phone number is the type of communication number listed for an organization.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstitutionTelephoneType] -SET [Description] = 'Health clinic phone number', [Definition] = 'Health clinic phone number is the type of communication number listed for an organization.', [SortOrder] = 4.00 WHERE [Code] = 'HealthClinic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstitutionTelephoneType] WHERE [Code] = 'Attendance') BEGIN INSERT INTO dbo.[RefInstitutionTelephoneType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Attendance', 'Attendance line', 'Attendance line is the type of communication number listed for an organization.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstitutionTelephoneType] -SET [Description] = 'Attendance line', [Definition] = 'Attendance line is the type of communication number listed for an organization.', [SortOrder] = 5.00 WHERE [Code] = 'Attendance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstitutionTelephoneType] WHERE [Code] = 'Fax') BEGIN INSERT INTO dbo.[RefInstitutionTelephoneType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Fax', 'Fax number', 'Fax number is the type of communication number listed for an organization.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstitutionTelephoneType] -SET [Description] = 'Fax number', [Definition] = 'Fax number is the type of communication number listed for an organization.', [SortOrder] = 6.00 WHERE [Code] = 'Fax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstitutionTelephoneType] WHERE [Code] = 'FoodServices') BEGIN INSERT INTO dbo.[RefInstitutionTelephoneType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FoodServices', 'Cafeteria/Food Services', 'Cafeteria/Food Services is the type of communication number listed for an organization.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstitutionTelephoneType] -SET [Description] = 'Cafeteria/Food Services', [Definition] = 'Cafeteria/Food Services is the type of communication number listed for an organization.', [SortOrder] = 7.00 WHERE [Code] = 'FoodServices' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstitutionTelephoneType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefInstitutionTelephoneType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is the type of communication number listed for an organization.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstitutionTelephoneType] -SET [Description] = 'Other', [Definition] = 'Other is the type of communication number listed for an organization.', [SortOrder] = 8.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefInstructionalActivityHours table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefInstructionalActivityHours]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionalActivityHours] WHERE [Code] = 'Credit') BEGIN INSERT INTO dbo.[RefInstructionalActivityHours]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Credit', 'Credit', 'Credit is the unit of measure of student instructional activity.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionalActivityHours] -SET [Description] = 'Credit', [Definition] = 'Credit is the unit of measure of student instructional activity.', [SortOrder] = 1.00 WHERE [Code] = 'Credit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionalActivityHours] WHERE [Code] = 'Contact') BEGIN INSERT INTO dbo.[RefInstructionalActivityHours]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Contact', 'Contact', 'Contact is the unit of measure of student instructional activity.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionalActivityHours] -SET [Description] = 'Contact', [Definition] = 'Contact is the unit of measure of student instructional activity.', [SortOrder] = 2.00 WHERE [Code] = 'Contact' END -END - -PRINT N'Populate RefInstructionalStaffContractLength table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefInstructionalStaffContractLength]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionalStaffContractLength] WHERE [Code] = 'LessThan9-Month') BEGIN INSERT INTO dbo.[RefInstructionalStaffContractLength]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LessThan9-Month', 'Less than 9-Month', 'The contracted teaching period for the faculty member is less than 9-Months.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionalStaffContractLength] -SET [Description] = 'Less than 9-Month', [Definition] = 'The contracted teaching period for the faculty member is less than 9-Months.', [SortOrder] = 1.00 WHERE [Code] = 'LessThan9-Month' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionalStaffContractLength] WHERE [Code] = '9-Month') BEGIN INSERT INTO dbo.[RefInstructionalStaffContractLength]([Code], [Description], [Definition], [SortOrder]) -VALUES ('9-Month', '9-Month', 'The contracted teaching period for the faculty member 9-Months.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionalStaffContractLength] -SET [Description] = '9-Month', [Definition] = 'The contracted teaching period for the faculty member 9-Months.', [SortOrder] = 2.00 WHERE [Code] = '9-Month' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionalStaffContractLength] WHERE [Code] = '10-Month') BEGIN INSERT INTO dbo.[RefInstructionalStaffContractLength]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10-Month', '10-Month', 'The contracted teaching period for the faculty member 10-Months.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionalStaffContractLength] -SET [Description] = '10-Month', [Definition] = 'The contracted teaching period for the faculty member 10-Months.', [SortOrder] = 3.00 WHERE [Code] = '10-Month' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionalStaffContractLength] WHERE [Code] = '11-Month') BEGIN INSERT INTO dbo.[RefInstructionalStaffContractLength]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11-Month', '11-Month', 'The contracted teaching period for the faculty member 11-Months.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionalStaffContractLength] -SET [Description] = '11-Month', [Definition] = 'The contracted teaching period for the faculty member 11-Months.', [SortOrder] = 4.00 WHERE [Code] = '11-Month' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionalStaffContractLength] WHERE [Code] = '12-Month') BEGIN INSERT INTO dbo.[RefInstructionalStaffContractLength]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12-Month', '12-Month', 'The contracted teaching period for the faculty member 12-Months.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionalStaffContractLength] -SET [Description] = '12-Month', [Definition] = 'The contracted teaching period for the faculty member 12-Months.', [SortOrder] = 5.00 WHERE [Code] = '12-Month' END -END - -PRINT N'Populate RefInstructionalStaffFacultyTenure table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefInstructionalStaffFacultyTenure]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionalStaffFacultyTenure] WHERE [Code] = 'Tenured') BEGIN INSERT INTO dbo.[RefInstructionalStaffFacultyTenure]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Tenured', 'Tenured', 'The staff member is tenured.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionalStaffFacultyTenure] -SET [Description] = 'Tenured', [Definition] = 'The staff member is tenured.', [SortOrder] = 1.00 WHERE [Code] = 'Tenured' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionalStaffFacultyTenure] WHERE [Code] = 'OnTenureTrack') BEGIN INSERT INTO dbo.[RefInstructionalStaffFacultyTenure]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OnTenureTrack', 'On tenure track', 'The staff member is on tenure track.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionalStaffFacultyTenure] -SET [Description] = 'On tenure track', [Definition] = 'The staff member is on tenure track.', [SortOrder] = 2.00 WHERE [Code] = 'OnTenureTrack' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionalStaffFacultyTenure] WHERE [Code] = 'NotOnTenureTrack') BEGIN INSERT INTO dbo.[RefInstructionalStaffFacultyTenure]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotOnTenureTrack', 'Not on tenure track', 'The staff member is not on tenure track.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionalStaffFacultyTenure] -SET [Description] = 'Not on tenure track', [Definition] = 'The staff member is not on tenure track.', [SortOrder] = 3.00 WHERE [Code] = 'NotOnTenureTrack' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionalStaffFacultyTenure] WHERE [Code] = 'WithoutFacultyStatus') BEGIN INSERT INTO dbo.[RefInstructionalStaffFacultyTenure]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WithoutFacultyStatus', 'Without faculty status', 'The staff member is without faculty status.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionalStaffFacultyTenure] -SET [Description] = 'Without faculty status', [Definition] = 'The staff member is without faculty status.', [SortOrder] = 4.00 WHERE [Code] = 'WithoutFacultyStatus' END -END - -PRINT N'Populate RefInstructionCreditType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefInstructionCreditType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionCreditType] WHERE [Code] = 'ExclusivelyCredit') BEGIN INSERT INTO dbo.[RefInstructionCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ExclusivelyCredit', 'Exclusively credit', 'The instruction being delivered by staff whose primary responsibility is instruction is exclusively for credit.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionCreditType] -SET [Description] = 'Exclusively credit', [Definition] = 'The instruction being delivered by staff whose primary responsibility is instruction is exclusively for credit.', [SortOrder] = 1.00 WHERE [Code] = 'ExclusivelyCredit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionCreditType] WHERE [Code] = 'ExclusivelyNotForCredit') BEGIN INSERT INTO dbo.[RefInstructionCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ExclusivelyNotForCredit', 'Exclusively not-for-credit', 'The instruction being delivered by staff whose primary responsibility is instruction is exclusively not-for-credit.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionCreditType] -SET [Description] = 'Exclusively not-for-credit', [Definition] = 'The instruction being delivered by staff whose primary responsibility is instruction is exclusively not-for-credit.', [SortOrder] = 2.00 WHERE [Code] = 'ExclusivelyNotForCredit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionCreditType] WHERE [Code] = 'Combined') BEGIN INSERT INTO dbo.[RefInstructionCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Combined', 'Combined credit/not-for-credit', 'The instruction being delivered by staff whose primary responsibility is instruction is combined credit/not-for-credit.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionCreditType] -SET [Description] = 'Combined credit/not-for-credit', [Definition] = 'The instruction being delivered by staff whose primary responsibility is instruction is combined credit/not-for-credit.', [SortOrder] = 3.00 WHERE [Code] = 'Combined' END -END - -PRINT N'Populate RefInstructionLocationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefInstructionLocationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionLocationType] WHERE [Code] = '00997') BEGIN INSERT INTO dbo.[RefInstructionLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00997', 'Business', 'Business is the type of location at which instruction or service takes place.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionLocationType] -SET [Description] = 'Business', [Definition] = 'Business is the type of location at which instruction or service takes place.', [SortOrder] = 1.00 WHERE [Code] = '00997' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionLocationType] WHERE [Code] = '00752') BEGIN INSERT INTO dbo.[RefInstructionLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00752', 'Community facility', 'Community facility is the type of location at which instruction or service takes place.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionLocationType] -SET [Description] = 'Community facility', [Definition] = 'Community facility is the type of location at which instruction or service takes place.', [SortOrder] = 2.00 WHERE [Code] = '00752' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionLocationType] WHERE [Code] = '00753') BEGIN INSERT INTO dbo.[RefInstructionLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00753', 'Home of student', 'Home of student is the type of location at which instruction or service takes place.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionLocationType] -SET [Description] = 'Home of student', [Definition] = 'Home of student is the type of location at which instruction or service takes place.', [SortOrder] = 3.00 WHERE [Code] = '00753' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionLocationType] WHERE [Code] = '00754') BEGIN INSERT INTO dbo.[RefInstructionLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00754', 'Hospital', 'Hospital is the type of location at which instruction or service takes place.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionLocationType] -SET [Description] = 'Hospital', [Definition] = 'Hospital is the type of location at which instruction or service takes place.', [SortOrder] = 4.00 WHERE [Code] = '00754' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionLocationType] WHERE [Code] = '03018') BEGIN INSERT INTO dbo.[RefInstructionLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03018', 'Library/media center', 'Library/media center is the type of location at which instruction or service takes place.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionLocationType] -SET [Description] = 'Library/media center', [Definition] = 'Library/media center is the type of location at which instruction or service takes place.', [SortOrder] = 5.00 WHERE [Code] = '03018' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionLocationType] WHERE [Code] = '03506') BEGIN INSERT INTO dbo.[RefInstructionLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03506', 'Mobile', 'Mobile is the type of location at which instruction or service takes place.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionLocationType] -SET [Description] = 'Mobile', [Definition] = 'Mobile is the type of location at which instruction or service takes place.', [SortOrder] = 6.00 WHERE [Code] = '03506' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionLocationType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefInstructionLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'The type of location at which instruction or service takes place is in a category not yet defined in CEDS.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionLocationType] -SET [Description] = 'Other', [Definition] = 'The type of location at which instruction or service takes place is in a category not yet defined in CEDS.', [SortOrder] = 7.00 WHERE [Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionLocationType] WHERE [Code] = '00341') BEGIN INSERT INTO dbo.[RefInstructionLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00341', 'Other K-12 educational institution', 'Other K-12 educational institution is the type of location at which instruction or service takes place.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionLocationType] -SET [Description] = 'Other K-12 educational institution', [Definition] = 'Other K-12 educational institution is the type of location at which instruction or service takes place.', [SortOrder] = 8.00 WHERE [Code] = '00341' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionLocationType] WHERE [Code] = '00342') BEGIN INSERT INTO dbo.[RefInstructionLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00342', 'Postsecondary facility', 'Postsecondary facility is the type of location at which instruction or service takes place.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionLocationType] -SET [Description] = 'Postsecondary facility', [Definition] = 'Postsecondary facility is the type of location at which instruction or service takes place.', [SortOrder] = 9.00 WHERE [Code] = '00342' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInstructionLocationType] WHERE [Code] = '00675') BEGIN INSERT INTO dbo.[RefInstructionLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00675', 'School', 'School is the type of location at which instruction or service takes place.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInstructionLocationType] -SET [Description] = 'School', [Definition] = 'School is the type of location at which instruction or service takes place.', [SortOrder] = 10.00 WHERE [Code] = '00675' END -END - -PRINT N'Populate RefIntegratedTechnologyStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIntegratedTechnologyStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIntegratedTechnologyStatus] WHERE [Code] = 'Developing') BEGIN INSERT INTO dbo.[RefIntegratedTechnologyStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Developing', 'Developing', 'Developing is the extent to which the district has effectively and fully integrated technology, as defined by the state.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIntegratedTechnologyStatus] -SET [Description] = 'Developing', [Definition] = 'Developing is the extent to which the district has effectively and fully integrated technology, as defined by the state.', [SortOrder] = 1.00 WHERE [Code] = 'Developing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIntegratedTechnologyStatus] WHERE [Code] = 'Approaching') BEGIN INSERT INTO dbo.[RefIntegratedTechnologyStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Approaching', 'Approaching', 'Approaching is the extent to which the district has effectively and fully integrated technology, as defined by the state.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIntegratedTechnologyStatus] -SET [Description] = 'Approaching', [Definition] = 'Approaching is the extent to which the district has effectively and fully integrated technology, as defined by the state.', [SortOrder] = 2.00 WHERE [Code] = 'Approaching' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIntegratedTechnologyStatus] WHERE [Code] = 'Meets') BEGIN INSERT INTO dbo.[RefIntegratedTechnologyStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Meets', 'Meets', 'Meets is the extent to which the district has effectively and fully integrated technology, as defined by the state.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIntegratedTechnologyStatus] -SET [Description] = 'Meets', [Definition] = 'Meets is the extent to which the district has effectively and fully integrated technology, as defined by the state.', [SortOrder] = 3.00 WHERE [Code] = 'Meets' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIntegratedTechnologyStatus] WHERE [Code] = 'FullyIntegrated') BEGIN INSERT INTO dbo.[RefIntegratedTechnologyStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullyIntegrated', 'Fully integrated', 'Fully integrated is the extent to which the district has effectively and fully integrated technology, as defined by the state.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIntegratedTechnologyStatus] -SET [Description] = 'Fully integrated', [Definition] = 'Fully integrated is the extent to which the district has effectively and fully integrated technology, as defined by the state.', [SortOrder] = 4.00 WHERE [Code] = 'FullyIntegrated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIntegratedTechnologyStatus] WHERE [Code] = 'NotRequired') BEGIN INSERT INTO dbo.[RefIntegratedTechnologyStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotRequired', 'Not required to report', 'The district is not required to report the extent to which it has effectively and fully integrated technology, as defined by the state.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIntegratedTechnologyStatus] -SET [Description] = 'Not required to report', [Definition] = 'The district is not required to report the extent to which it has effectively and fully integrated technology, as defined by the state.', [SortOrder] = 5.00 WHERE [Code] = 'NotRequired' END -END - -PRINT N'Populate RefInternetAccess table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefInternetAccess]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInternetAccess] WHERE [Code] = 'HighSpeed') BEGIN INSERT INTO dbo.[RefInternetAccess]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HighSpeed', 'High speed connectivity', 'High speed internet connectivity is available.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInternetAccess] -SET [Description] = 'High speed connectivity', [Definition] = 'High speed internet connectivity is available.', [SortOrder] = 1.00 WHERE [Code] = 'HighSpeed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInternetAccess] WHERE [Code] = 'LessThanHighSpeed') BEGIN INSERT INTO dbo.[RefInternetAccess]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LessThanHighSpeed', 'Less than high speed connectivity', 'Less than high speed internet connectivity is available.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInternetAccess] -SET [Description] = 'Less than high speed connectivity', [Definition] = 'Less than high speed internet connectivity is available.', [SortOrder] = 2.00 WHERE [Code] = 'LessThanHighSpeed' END -END - -PRINT N'Populate RefInternetAccessTypeInResidence table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefInternetAccessTypeInResidence]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInternetAccessTypeInResidence] WHERE [Code] = 'CellularNetwork') BEGIN INSERT INTO dbo.[RefInternetAccessTypeInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CellularNetwork', 'Cellular Network', 'The type of internet service used in the student''s primary place of residence is a cellular network that creates a hot spot using a cell phone for additional device access or access to the internet is only available through a cellular device.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInternetAccessTypeInResidence] -SET [Description] = 'Cellular Network', [Definition] = 'The type of internet service used in the student''s primary place of residence is a cellular network that creates a hot spot using a cell phone for additional device access or access to the internet is only available through a cellular device.', [SortOrder] = 1.00 WHERE [Code] = 'CellularNetwork' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInternetAccessTypeInResidence] WHERE [Code] = 'CommunityProvidedWi-Fi') BEGIN INSERT INTO dbo.[RefInternetAccessTypeInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CommunityProvidedWi-Fi', 'Community Provided Wi-Fi', 'The type of internet service used in the student''s primary place of residence is community provided Wi-Fi.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInternetAccessTypeInResidence] -SET [Description] = 'Community Provided Wi-Fi', [Definition] = 'The type of internet service used in the student''s primary place of residence is community provided Wi-Fi.', [SortOrder] = 2.00 WHERE [Code] = 'CommunityProvidedWi-Fi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInternetAccessTypeInResidence] WHERE [Code] = 'Dialup') BEGIN INSERT INTO dbo.[RefInternetAccessTypeInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Dialup', 'Dial-up', 'The type of internet service used in the student''s primary place of residence is dial-up.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInternetAccessTypeInResidence] -SET [Description] = 'Dial-up', [Definition] = 'The type of internet service used in the student''s primary place of residence is dial-up.', [SortOrder] = 3.00 WHERE [Code] = 'Dialup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInternetAccessTypeInResidence] WHERE [Code] = 'HotSpot') BEGIN INSERT INTO dbo.[RefInternetAccessTypeInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HotSpot', 'Hot Spot', 'The type of internet service used in the student''s primary place of residence is a standalone hot spot device that is not a cell phone that allows for additional device access.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInternetAccessTypeInResidence] -SET [Description] = 'Hot Spot', [Definition] = 'The type of internet service used in the student''s primary place of residence is a standalone hot spot device that is not a cell phone that allows for additional device access.', [SortOrder] = 4.00 WHERE [Code] = 'HotSpot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInternetAccessTypeInResidence] WHERE [Code] = 'None') BEGIN INSERT INTO dbo.[RefInternetAccessTypeInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('None', 'None', 'There is no internet service in the student''s primary place of residence.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInternetAccessTypeInResidence] -SET [Description] = 'None', [Definition] = 'There is no internet service in the student''s primary place of residence.', [SortOrder] = 5.00 WHERE [Code] = 'None' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInternetAccessTypeInResidence] WHERE [Code] = 'ResidentialBroadband') BEGIN INSERT INTO dbo.[RefInternetAccessTypeInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ResidentialBroadband', 'Residential Broadband', 'The type of internet service used in the student''s primary place of residence is residential broadband.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInternetAccessTypeInResidence] -SET [Description] = 'Residential Broadband', [Definition] = 'The type of internet service used in the student''s primary place of residence is residential broadband.', [SortOrder] = 6.00 WHERE [Code] = 'ResidentialBroadband' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInternetAccessTypeInResidence] WHERE [Code] = 'Satellite') BEGIN INSERT INTO dbo.[RefInternetAccessTypeInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Satellite', 'Satellite', 'The type of internet service used in the student''s primary place of residence is satellite.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInternetAccessTypeInResidence] -SET [Description] = 'Satellite', [Definition] = 'The type of internet service used in the student''s primary place of residence is satellite.', [SortOrder] = 7.00 WHERE [Code] = 'Satellite' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInternetAccessTypeInResidence] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefInternetAccessTypeInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'It is not known whether there is internet service in the student''s primary place of residence.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInternetAccessTypeInResidence] -SET [Description] = 'Unknown', [Definition] = 'It is not known whether there is internet service in the student''s primary place of residence.', [SortOrder] = 8.00 WHERE [Code] = 'Unknown' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInternetAccessTypeInResidence] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefInternetAccessTypeInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The type of internet service used in the student''s primary place of residence is not yet defined.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInternetAccessTypeInResidence] -SET [Description] = 'Other', [Definition] = 'The type of internet service used in the student''s primary place of residence is not yet defined.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefInternetPerformanceInResidence table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefInternetPerformanceInResidence]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInternetPerformanceInResidence] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefInternetPerformanceInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', 'The student is unable to complete learning activities due to poor internet performance in their primary place of residence.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInternetPerformanceInResidence] -SET [Description] = 'No', [Definition] = 'The student is unable to complete learning activities due to poor internet performance in their primary place of residence.', [SortOrder] = 1.00 WHERE [Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInternetPerformanceInResidence] WHERE [Code] = 'Sometimes') BEGIN INSERT INTO dbo.[RefInternetPerformanceInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Sometimes', 'Sometimes', 'The student regularly experiences interruptions in learning activities caused by poor internet performance in their primary place of residence.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInternetPerformanceInResidence] -SET [Description] = 'Sometimes', [Definition] = 'The student regularly experiences interruptions in learning activities caused by poor internet performance in their primary place of residence.', [SortOrder] = 2.00 WHERE [Code] = 'Sometimes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefInternetPerformanceInResidence] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefInternetPerformanceInResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', 'The student experiences very few or no interruptions in learning activities caused by poor internet performance in their primary place of residence.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefInternetPerformanceInResidence] -SET [Description] = 'Yes', [Definition] = 'The student experiences very few or no interruptions in learning activities caused by poor internet performance in their primary place of residence.', [SortOrder] = 3.00 WHERE [Code] = 'Yes' END -END - -PRINT N'Populate RefIPEDSFASBFinancialPosition table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIPEDSFASBFinancialPosition]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'Accumulateddepreciation') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Accumulateddepreciation', 'Accumulated depreciation', 'Used for reporting all depreciation amounts, including depreciation on assets that may not be included elsewhere.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Accumulated depreciation', [Definition] = 'Used for reporting all depreciation amounts, including depreciation on assets that may not be included elsewhere.', [SortOrder] = NULL WHERE [Code] = 'Accumulateddepreciation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'AssetsAmountsheldbytrusteesfor') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssetsAmountsheldbytrusteesfor', 'Assets: Amounts held by trustees for construction and debt service', 'Includes cash and investments held by trustees in accordance with agreements that limit expenditure of those amounts to purchase of plant, property, or equipment or to payment of principal and interest on bonds and notes payable or other long-term debt.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Assets: Amounts held by trustees for construction and debt service', [Definition] = 'Includes cash and investments held by trustees in accordance with agreements that limit expenditure of those amounts to purchase of plant, property, or equipment or to payment of principal and interest on bonds and notes payable or other long-term debt.', [SortOrder] = NULL WHERE [Code] = 'AssetsAmountsheldbytrusteesfor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'AssetsCashcashequivalentstemporaryinvestments') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssetsCashcashequivalentstemporaryinvestments', 'Assets: Cash, cash equivalents, and temporary investments', 'Cash equivalents are short term, highly liquid investments that are (1) readily converted to known amounts of cash, and (2) so near their maturity that they present insignificant risk of changes in value because of changes in interest rates. Examples are U.S. Treasury bills, certificates of deposit, bankers acceptances, repurchase agreements, and commercial paper. Includes amounts for currency on hand and deposits held by financial institutions that can be added to or withdrawn without limitation, such as demand deposits. (FARM para. 402)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Assets: Cash, cash equivalents, and temporary investments', [Definition] = 'Cash equivalents are short term, highly liquid investments that are (1) readily converted to known amounts of cash, and (2) so near their maturity that they present insignificant risk of changes in value because of changes in interest rates. Examples are U.S. Treasury bills, certificates of deposit, bankers acceptances, repurchase agreements, and commercial paper. Includes amounts for currency on hand and deposits held by financial institutions that can be added to or withdrawn without limitation, such as demand deposits. (FARM para. 402)', [SortOrder] = NULL WHERE [Code] = 'AssetsCashcashequivalentstemporaryinvestments' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'AssetsInventoriesprepaidexpensesdeferredcharges') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssetsInventoriesprepaidexpensesdeferredcharges', 'Assets: Inventories, prepaid expenses, and deferred charges', 'Inventories, prepaid expenses, and deferred charges – For inventories, include amounts for merchandise inventory held for resale, for example, items held for sale by a bookstore or a dining service. Include supplies and other inventoried items for internal use if recognized as an asset in the GPFS. For prepaid expenses and deferred charges, include amounts paid in advance of services received and expenses deferred because benefits relate to future rather than to current period activities. Examples include prepaid rent, prepaid insurance, bond issue costs, pension costs or other outflows applicable to future periods. (FARM para. 407)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Assets: Inventories, prepaid expenses, and deferred charges', [Definition] = 'Inventories, prepaid expenses, and deferred charges – For inventories, include amounts for merchandise inventory held for resale, for example, items held for sale by a bookstore or a dining service. Include supplies and other inventoried items for internal use if recognized as an asset in the GPFS. For prepaid expenses and deferred charges, include amounts paid in advance of services received and expenses deferred because benefits relate to future rather than to current period activities. Examples include prepaid rent, prepaid insurance, bond issue costs, pension costs or other outflows applicable to future periods. (FARM para. 407)', [SortOrder] = NULL WHERE [Code] = 'AssetsInventoriesprepaidexpensesdeferredcharges' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'AssetsOtherassets') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssetsOtherassets', 'Assets: Other assets', 'Includes all other assets not reported elsewhere.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Assets: Other assets', [Definition] = 'Includes all other assets not reported elsewhere.', [SortOrder] = NULL WHERE [Code] = 'AssetsOtherassets' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'AssetsReceivablesnetofallowancefor') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssetsReceivablesnetofallowancefor', 'Assets: Receivables (net of allowance for uncollectible amounts)', 'Includes amounts receivable for all purposes, including billings for educational and general programs and auxiliary enterprise activities; student loans receivable; government appropriations receivable; amounts receivable on grants and contracts; accrued dividends and interest receivable; claims against vendors; advances to employees; and reimbursements receivable from affiliated organizations. All amounts receivable should be reported net of an allowance for uncollectible accounts. (FARM para. 403)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Assets: Receivables (net of allowance for uncollectible amounts)', [Definition] = 'Includes amounts receivable for all purposes, including billings for educational and general programs and auxiliary enterprise activities; student loans receivable; government appropriations receivable; amounts receivable on grants and contracts; accrued dividends and interest receivable; claims against vendors; advances to employees; and reimbursements receivable from affiliated organizations. All amounts receivable should be reported net of an allowance for uncollectible accounts. (FARM para. 403)', [SortOrder] = NULL WHERE [Code] = 'AssetsReceivablesnetofallowancefor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'DebtrelatedtoPropertyPlantEquipment') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DebtrelatedtoPropertyPlantEquipment', 'Debt related to Property, Plant, and Equipment', 'Includes amounts for all long-term debt obligations including bonds payable, mortgages payable, capital leases payable, and long-term notes payable. (FARM para. 420.3, 423) If the current portion of long-term debt is separately reported in the GPFS, include that amount.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Debt related to Property, Plant, and Equipment', [Definition] = 'Includes amounts for all long-term debt obligations including bonds payable, mortgages payable, capital leases payable, and long-term notes payable. (FARM para. 420.3, 423) If the current portion of long-term debt is separately reported in the GPFS, include that amount.', [SortOrder] = NULL WHERE [Code] = 'DebtrelatedtoPropertyPlantEquipment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'GrossPropertyPlantEquipmentBuildings') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GrossPropertyPlantEquipmentBuildings', 'Gross Property Plant Equipment: Buildings', 'Used for reporting end of year values for buildings as a reconciliation of beginning of the year values with additions to and retirements of building values to obtain end of year values. Capitalized leasehold improvements should be included if the improvements are to leased facilities.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Gross Property Plant Equipment: Buildings', [Definition] = 'Used for reporting end of year values for buildings as a reconciliation of beginning of the year values with additions to and retirements of building values to obtain end of year values. Capitalized leasehold improvements should be included if the improvements are to leased facilities.', [SortOrder] = NULL WHERE [Code] = 'GrossPropertyPlantEquipmentBuildings' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'GrossPropertyPlantEquipmentConstructioninProgress') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GrossPropertyPlantEquipmentConstructioninProgress', 'Gross Property Plant Equipment: Construction in Progress', 'Used for reporting capital assets under construction and not yet placed into service.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Gross Property Plant Equipment: Construction in Progress', [Definition] = 'Used for reporting capital assets under construction and not yet placed into service.', [SortOrder] = NULL WHERE [Code] = 'GrossPropertyPlantEquipmentConstructioninProgress' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'GrossPropertyPlantEquipmentEquipment') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GrossPropertyPlantEquipmentEquipment', 'Gross Property Plant Equipment: Equipment, including art and library collections', 'Used for reporting end of year values for equipment as a reconciliation of beginning of the year values with additions to and retirements of equipment values to obtain end of year values. Capitalized leasehold improvements should be included if the improvements are to leased equipment.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Gross Property Plant Equipment: Equipment, including art and library collections', [Definition] = 'Used for reporting end of year values for equipment as a reconciliation of beginning of the year values with additions to and retirements of equipment values to obtain end of year values. Capitalized leasehold improvements should be included if the improvements are to leased equipment.', [SortOrder] = NULL WHERE [Code] = 'GrossPropertyPlantEquipmentEquipment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'GrossPropertyPlantEquipmentLandlandimprovements') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GrossPropertyPlantEquipmentLandlandimprovements', 'Gross Property Plant Equipment: Land and land improvements', 'Used for reporting end of year values for land and land improvements as a reconciliation of beginning of the year values with additions to and retirements of land and land improvements to obtain end of year values. Use your underlying institutional records.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Gross Property Plant Equipment: Land and land improvements', [Definition] = 'Used for reporting end of year values for land and land improvements as a reconciliation of beginning of the year values with additions to and retirements of land and land improvements to obtain end of year values. Use your underlying institutional records.', [SortOrder] = NULL WHERE [Code] = 'GrossPropertyPlantEquipmentLandlandimprovements' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'GrossPropertyPlantEquipmentOther') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GrossPropertyPlantEquipmentOther', 'Gross Property Plant Equipment: Other', 'Used for reporting all other amounts for capital assets not reported elsewhere.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Gross Property Plant Equipment: Other', [Definition] = 'Used for reporting all other amounts for capital assets not reported elsewhere.', [SortOrder] = NULL WHERE [Code] = 'GrossPropertyPlantEquipmentOther' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'IntangibleAssetsnetofaccumulatedamortization') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IntangibleAssetsnetofaccumulatedamortization', 'Intangible Assets, net of accumulated amortization', 'Used for reporting all assets consisting of certain nonmaterial rights and benefits of an institution, such as patents, copyrights, trademarks and goodwill. The amount reported should be reduced by total accumulated amortization. (FARM para. 409)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Intangible Assets, net of accumulated amortization', [Definition] = 'Used for reporting all assets consisting of certain nonmaterial rights and benefits of an institution, such as patents, copyrights, trademarks and goodwill. The amount reported should be reduced by total accumulated amortization. (FARM para. 409)', [SortOrder] = NULL WHERE [Code] = 'IntangibleAssetsnetofaccumulatedamortization' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'LiabilitiesAccountspayable') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LiabilitiesAccountspayable', 'Liabilities: Accounts payable', 'Includes the total of accounts payable to suppliers. (FARM para. 420)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Liabilities: Accounts payable', [Definition] = 'Includes the total of accounts payable to suppliers. (FARM para. 420)', [SortOrder] = NULL WHERE [Code] = 'LiabilitiesAccountspayable' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'LiabilitiesAnnuitylifeincomeobligationsother') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LiabilitiesAnnuitylifeincomeobligationsother', 'Liabilities: Annuity and life income obligations and other amounts held for the benefit of others', 'Includes agency obligations, the beneficiaries’ interests in assets held by the institution subject to split-interest agreements (i.e., the obligation, measured at present value of payments to be made), deferred compensation amounts, and similar obligations recognized in the GPFS.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Liabilities: Annuity and life income obligations and other amounts held for the benefit of others', [Definition] = 'Includes agency obligations, the beneficiaries’ interests in assets held by the institution subject to split-interest agreements (i.e., the obligation, measured at present value of payments to be made), deferred compensation amounts, and similar obligations recognized in the GPFS.', [SortOrder] = NULL WHERE [Code] = 'LiabilitiesAnnuitylifeincomeobligationsother' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'LiabilitiesBondsnotescapitalleases') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LiabilitiesBondsnotescapitalleases', 'Liabilities: Bonds, notes, and capital leases payable and other long-term debt, including current portion', 'Includes amounts for all long-term debt obligations including bonds payable, mortgages payable, capital leases payable, and long-term notes payable. If the current portion of long-term debt is separately reported in your GPFS, include that amount. (FARM para. 420 and 423)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Liabilities: Bonds, notes, and capital leases payable and other long-term debt, including current portion', [Definition] = 'Includes amounts for all long-term debt obligations including bonds payable, mortgages payable, capital leases payable, and long-term notes payable. If the current portion of long-term debt is separately reported in your GPFS, include that amount. (FARM para. 420 and 423)', [SortOrder] = NULL WHERE [Code] = 'LiabilitiesBondsnotescapitalleases' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'LiabilitiesDeferredrevenuesrefundableadvances') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LiabilitiesDeferredrevenuesrefundableadvances', 'Liabilities: Deferred revenues and refundable advances', 'Includes short-term deferrals and advances including student deposits, advances from third parties for services not yet performed, short-term advances on grants or contracts (including those from the government), and refunds due third parties for amounts previously received. (FARM para. 422)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Liabilities: Deferred revenues and refundable advances', [Definition] = 'Includes short-term deferrals and advances including student deposits, advances from third parties for services not yet performed, short-term advances on grants or contracts (including those from the government), and refunds due third parties for amounts previously received. (FARM para. 422)', [SortOrder] = NULL WHERE [Code] = 'LiabilitiesDeferredrevenuesrefundableadvances' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'LiabilitiesGovernmentgrantsrefundableunder') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LiabilitiesGovernmentgrantsrefundableunder', 'Liabilities: Government grants refundable under student loan programs', 'Includes amounts advanced to the institution by a governmental entity for purposes of making loans to students (if recognized as a liability in the GPFS).', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Liabilities: Government grants refundable under student loan programs', [Definition] = 'Includes amounts advanced to the institution by a governmental entity for purposes of making loans to students (if recognized as a liability in the GPFS).', [SortOrder] = NULL WHERE [Code] = 'LiabilitiesGovernmentgrantsrefundableunder' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'LiabilitiesOtheraccruedliabilities') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LiabilitiesOtheraccruedliabilities', 'Liabilities: Other accrued liabilities', 'Includes amounts for any accrued liabilities, including accrued interest payable, salary and benefit (payroll) accruals, and similar accrued expenses not found in another category. (FARM para. 420)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Liabilities: Other accrued liabilities', [Definition] = 'Includes amounts for any accrued liabilities, including accrued interest payable, salary and benefit (payroll) accruals, and similar accrued expenses not found in another category. (FARM para. 420)', [SortOrder] = NULL WHERE [Code] = 'LiabilitiesOtheraccruedliabilities' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'LiabilitiesOtherliabilities') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LiabilitiesOtherliabilities', 'Liabilities: Other liabilities', 'Includes all other liabilities not reported elsewhere.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Liabilities: Other liabilities', [Definition] = 'Includes all other liabilities not reported elsewhere.', [SortOrder] = NULL WHERE [Code] = 'LiabilitiesOtherliabilities' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'LiabilitiesPostretirementpostemploymentobligations') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LiabilitiesPostretirementpostemploymentobligations', 'Liabilities: Post-retirement and post-employment obligations', 'Includes amounts for pension obligations, post-retirement healthcare benefit obligations, severance obligations, and similar post-retirement and post-employment obligations. (FARM para. 478 and 479)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Liabilities: Post-retirement and post-employment obligations', [Definition] = 'Includes amounts for pension obligations, post-retirement healthcare benefit obligations, severance obligations, and similar post-retirement and post-employment obligations. (FARM para. 478 and 479)', [SortOrder] = NULL WHERE [Code] = 'LiabilitiesPostretirementpostemploymentobligations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'Longterminvestments') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Longterminvestments', 'Long-term investments', 'Used for reporting the end-of-year market value for all assets held for long-term investment. Long-term investments should be distinguished from temporary investments based on the intention of the organization regarding the term of the investment rather than the nature of the investment itself. Thus, cash and cash equivalents which are held until appropriate long-term investments are identified should be treated as long-term investments. Similarly, cash equivalents strategically invested and reinvested for long-term purposes should be treated as long-term investments. (FARM para. 405)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Long-term investments', [Definition] = 'Used for reporting the end-of-year market value for all assets held for long-term investment. Long-term investments should be distinguished from temporary investments based on the intention of the organization regarding the term of the investment rather than the nature of the investment itself. Thus, cash and cash equivalents which are held until appropriate long-term investments are identified should be treated as long-term investments. Similarly, cash equivalents strategically invested and reinvested for long-term purposes should be treated as long-term investments. (FARM para. 405)', [SortOrder] = NULL WHERE [Code] = 'Longterminvestments' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'Permanentlyrestrictednetassets') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Permanentlyrestrictednetassets', 'Permanently restricted net assets', 'Used for reporting the portion of net assets required by the donor or grantor to be held in perpetuity. (FARM para 450.2)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Permanently restricted net assets', [Definition] = 'Used for reporting the portion of net assets required by the donor or grantor to be held in perpetuity. (FARM para 450.2)', [SortOrder] = NULL WHERE [Code] = 'Permanentlyrestrictednetassets' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'PropertyPlantEquipmentnetofaccumulateddepreciation') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PropertyPlantEquipmentnetofaccumulateddepreciation', 'Property, Plant, and Equipment, net of accumulated depreciation', 'Includes end-of-year market value for categories such as land, buildings, improvements other than buildings, equipment, and library books, combined and net of accumulated depreciation. (FARM para. 415)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Property, Plant, and Equipment, net of accumulated depreciation', [Definition] = 'Includes end-of-year market value for categories such as land, buildings, improvements other than buildings, equipment, and library books, combined and net of accumulated depreciation. (FARM para. 415)', [SortOrder] = NULL WHERE [Code] = 'PropertyPlantEquipmentnetofaccumulateddepreciation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'Temporarilyrestrictednetassets') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Temporarilyrestrictednetassets', 'Temporarily restricted net assets', 'Used for reporting net assets that are subject to a donor’s or grantor’s restriction are restricted net assets. Include long-term but temporarily restricted net assets, such as term endowments, and net assets held subject to trust agreements if those agreements permit expenditure of the resources at a future date. (FARM para. 450.3)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Temporarily restricted net assets', [Definition] = 'Used for reporting net assets that are subject to a donor’s or grantor’s restriction are restricted net assets. Include long-term but temporarily restricted net assets, such as term endowments, and net assets held subject to trust agreements if those agreements permit expenditure of the resources at a future date. (FARM para. 450.3)', [SortOrder] = NULL WHERE [Code] = 'Temporarilyrestrictednetassets' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFinancialPosition] WHERE [Code] = 'Totalunrestrictednetassets') BEGIN INSERT INTO dbo.[RefIPEDSFASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Totalunrestrictednetassets', 'Total unrestricted net assets', 'Used for reporting the amount of unrestricted (designated and undesignated) net assets. Unrestricted net assets are amounts that are available for the general purposes of the institution without restriction. Include amounts specifically designated by the governing board, such as those designated as quasi-endowments, for building additions and replacement, for debt service, and for loan programs. In addition, include the unrestricted portion of net investment in plant, property, and equipment less related debt. This amount is computed as the amount of plant, property, and equipment, net of accumulated depreciation, reduced by any bonds, mortgages, notes, capital leases, or other borrowings that are clearly attributable to the acquisition, construction, or improvement of those assets. (FARM para. 450)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFinancialPosition] -SET [Description] = 'Total unrestricted net assets', [Definition] = 'Used for reporting the amount of unrestricted (designated and undesignated) net assets. Unrestricted net assets are amounts that are available for the general purposes of the institution without restriction. Include amounts specifically designated by the governing board, such as those designated as quasi-endowments, for building additions and replacement, for debt service, and for loan programs. In addition, include the unrestricted portion of net investment in plant, property, and equipment less related debt. This amount is computed as the amount of plant, property, and equipment, net of accumulated depreciation, reduced by any bonds, mortgages, notes, capital leases, or other borrowings that are clearly attributable to the acquisition, construction, or improvement of those assets. (FARM para. 450)', [SortOrder] = NULL WHERE [Code] = 'Totalunrestrictednetassets' END -END - -PRINT N'Populate RefIPEDSFASBFunctionalExpense table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIPEDSFASBFunctionalExpense]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFunctionalExpense] WHERE [Code] = 'Academicsupport') BEGIN INSERT INTO dbo.[RefIPEDSFASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Academicsupport', 'Academic support', 'A functional expense category that includes expenses of activities and services that support the institution''s primary missions of instruction, research, and public service. It includes the retention, preservation, and display of educational materials (for example, libraries, museums, and galleries); organized activities that provide support services to the academic functions of the institution (such as a demonstration school associated with a college of education or veterinary and dental clinics if their primary purpose is to support the instructional program); media such as audiovisual services; academic administration (including academic deans but not department chairpersons); and formally organized and separately budgeted academic personnel development and course and curriculum development expenses. Also included are information technology expenses related to academic support activities; if an institution does not separately budget and expense information technology resources, the costs associated with the three primary programs will be applied to this function and the remainder to institutional support. Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFunctionalExpense] -SET [Description] = 'Academic support', [Definition] = 'A functional expense category that includes expenses of activities and services that support the institution''s primary missions of instruction, research, and public service. It includes the retention, preservation, and display of educational materials (for example, libraries, museums, and galleries); organized activities that provide support services to the academic functions of the institution (such as a demonstration school associated with a college of education or veterinary and dental clinics if their primary purpose is to support the instructional program); media such as audiovisual services; academic administration (including academic deans but not department chairpersons); and formally organized and separately budgeted academic personnel development and course and curriculum development expenses. Also included are information technology expenses related to academic support activities; if an institution does not separately budget and expense information technology resources, the costs associated with the three primary programs will be applied to this function and the remainder to institutional support. Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', [SortOrder] = NULL WHERE [Code] = 'Academicsupport' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFunctionalExpense] WHERE [Code] = 'Auxiliaryenterprises') BEGIN INSERT INTO dbo.[RefIPEDSFASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Auxiliaryenterprises', 'Auxiliary enterprises', 'Expenses for essentially self-supporting operations of the institution that exist to furnish a service to students, faculty, or staff, and that charge a fee that is directly related to, although not necessarily equal to, the cost of the service. Examples are residence halls, food services, student health services, intercollegiate athletics (only if essentially self-supporting), college unions, college stores, faculty and staff parking, and faculty housing. Institutions include actual or allocated costs for operation and maintenance of plant, interest and depreciation.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFunctionalExpense] -SET [Description] = 'Auxiliary enterprises', [Definition] = 'Expenses for essentially self-supporting operations of the institution that exist to furnish a service to students, faculty, or staff, and that charge a fee that is directly related to, although not necessarily equal to, the cost of the service. Examples are residence halls, food services, student health services, intercollegiate athletics (only if essentially self-supporting), college unions, college stores, faculty and staff parking, and faculty housing. Institutions include actual or allocated costs for operation and maintenance of plant, interest and depreciation.', [SortOrder] = NULL WHERE [Code] = 'Auxiliaryenterprises' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFunctionalExpense] WHERE [Code] = 'Hospitalservices') BEGIN INSERT INTO dbo.[RefIPEDSFASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Hospitalservices', 'Hospital services', 'Expenses associated with a hospital operated by the postsecondary institution (but not as a component unit) and reported as a part of the institution. This classification includes nursing expenses, other professional services, general services, administrative services, and fiscal services. Also included are information technology expenses, actual or allocated costs for operation and maintenance of plant, interest and depreciation related to hospital capital assets.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFunctionalExpense] -SET [Description] = 'Hospital services', [Definition] = 'Expenses associated with a hospital operated by the postsecondary institution (but not as a component unit) and reported as a part of the institution. This classification includes nursing expenses, other professional services, general services, administrative services, and fiscal services. Also included are information technology expenses, actual or allocated costs for operation and maintenance of plant, interest and depreciation related to hospital capital assets.', [SortOrder] = NULL WHERE [Code] = 'Hospitalservices' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFunctionalExpense] WHERE [Code] = 'Independentoperations') BEGIN INSERT INTO dbo.[RefIPEDSFASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Independentoperations', 'Independent operations', 'Expenses associated with operations that are independent of or unrelated to the primary missions of the institution (i.e., instruction, research, public service) although they may contribute indirectly to the enhancement of these programs. This category is generally limited to expenses of a major federally funded research and development center. Also includes information technology expenses, actual or allocated costs for operation and maintenance of plant, interest and depreciation related to the independent operations. Expenses of operations owned and managed as investments of the institution''s endowment funds are excluded.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFunctionalExpense] -SET [Description] = 'Independent operations', [Definition] = 'Expenses associated with operations that are independent of or unrelated to the primary missions of the institution (i.e., instruction, research, public service) although they may contribute indirectly to the enhancement of these programs. This category is generally limited to expenses of a major federally funded research and development center. Also includes information technology expenses, actual or allocated costs for operation and maintenance of plant, interest and depreciation related to the independent operations. Expenses of operations owned and managed as investments of the institution''s endowment funds are excluded.', [SortOrder] = NULL WHERE [Code] = 'Independentoperations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFunctionalExpense] WHERE [Code] = 'Institutionalsupport') BEGIN INSERT INTO dbo.[RefIPEDSFASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Institutionalsupport', 'Institutional support', 'A functional expense category that includes expenses for the day-to-day operational support of the institution. Includes expenses for general administrative services, central executive-level activities concerned with management and long range planning, legal and fiscal operations, space management, employee personnel and records, logistical services such as purchasing and printing, and public relations and development. Also includes information technology expenses related to institutional support activities. If an institution does not separately budget and expense information technology resources, the IT costs associated with student services and operation and maintenance of plant will also be applied to this function.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFunctionalExpense] -SET [Description] = 'Institutional support', [Definition] = 'A functional expense category that includes expenses for the day-to-day operational support of the institution. Includes expenses for general administrative services, central executive-level activities concerned with management and long range planning, legal and fiscal operations, space management, employee personnel and records, logistical services such as purchasing and printing, and public relations and development. Also includes information technology expenses related to institutional support activities. If an institution does not separately budget and expense information technology resources, the IT costs associated with student services and operation and maintenance of plant will also be applied to this function.', [SortOrder] = NULL WHERE [Code] = 'Institutionalsupport' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFunctionalExpense] WHERE [Code] = 'Instruction') BEGIN INSERT INTO dbo.[RefIPEDSFASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Instruction', 'Instruction', 'A functional expense category that includes expenses of the colleges, schools, departments, and other instructional divisions of the institution and expenses for departmental research and public service that are not separately budgeted. Includes general academic instruction, occupational and vocational instruction, community education, preparatory and adult basic education, and regular, special, and extension sessions. Also includes expenses for both credit and non-credit activities. Excludes expenses for academic administration where the primary function is administration (e.g., academic deans). Information technology expenses related to instructional activities if the institution separately budgets and expenses information technology resources are included (otherwise these expenses are included in academic support). Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFunctionalExpense] -SET [Description] = 'Instruction', [Definition] = 'A functional expense category that includes expenses of the colleges, schools, departments, and other instructional divisions of the institution and expenses for departmental research and public service that are not separately budgeted. Includes general academic instruction, occupational and vocational instruction, community education, preparatory and adult basic education, and regular, special, and extension sessions. Also includes expenses for both credit and non-credit activities. Excludes expenses for academic administration where the primary function is administration (e.g., academic deans). Information technology expenses related to instructional activities if the institution separately budgets and expenses information technology resources are included (otherwise these expenses are included in academic support). Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', [SortOrder] = NULL WHERE [Code] = 'Instruction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFunctionalExpense] WHERE [Code] = 'Netgrantaidtostudents') BEGIN INSERT INTO dbo.[RefIPEDSFASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Netgrantaidtostudents', 'Net grant aid to students', 'The portion of scholarships and fellowships granted by an institution that exceeds the amount applied to institutional charges such as tuition and fees or room and board. The amount reported as expense excludes allowances.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFunctionalExpense] -SET [Description] = 'Net grant aid to students', [Definition] = 'The portion of scholarships and fellowships granted by an institution that exceeds the amount applied to institutional charges such as tuition and fees or room and board. The amount reported as expense excludes allowances.', [SortOrder] = NULL WHERE [Code] = 'Netgrantaidtostudents' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFunctionalExpense] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefIPEDSFASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', NULL, NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFunctionalExpense] -SET [Description] = 'Other', [Definition] = NULL, [SortOrder] = NULL WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFunctionalExpense] WHERE [Code] = 'Publicservice') BEGIN INSERT INTO dbo.[RefIPEDSFASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Publicservice', 'Public service', 'A functional expense category that includes expenses for activities established primarily to provide noninstructional services beneficial to individuals and groups external to the institution. Examples are conferences, institutes, general advisory service, reference bureaus, and similar services provided to particular sectors of the community. This function includes expenses for community services, cooperative extension services, and public broadcasting services. Also includes information technology expenses related to the public service activities if the institution separately budgets and expenses information technology resources (otherwise these expenses are included in academic support). Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFunctionalExpense] -SET [Description] = 'Public service', [Definition] = 'A functional expense category that includes expenses for activities established primarily to provide noninstructional services beneficial to individuals and groups external to the institution. Examples are conferences, institutes, general advisory service, reference bureaus, and similar services provided to particular sectors of the community. This function includes expenses for community services, cooperative extension services, and public broadcasting services. Also includes information technology expenses related to the public service activities if the institution separately budgets and expenses information technology resources (otherwise these expenses are included in academic support). Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', [SortOrder] = NULL WHERE [Code] = 'Publicservice' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFunctionalExpense] WHERE [Code] = 'Research') BEGIN INSERT INTO dbo.[RefIPEDSFASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Research', 'Research', 'A functional expense category that includes expenses for activities specifically organized to produce research outcomes and commissioned by an agency either external to the institution or separately budgeted by an organizational unit within the institution. The category includes institutes and research centers, and individual and project research. This function does not include nonresearch sponsored programs (e.g., training programs). Also included are information technology expenses related to research activities if the institution separately budgets and expenses information technology resources (otherwise these expenses are included in academic support.) Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFunctionalExpense] -SET [Description] = 'Research', [Definition] = 'A functional expense category that includes expenses for activities specifically organized to produce research outcomes and commissioned by an agency either external to the institution or separately budgeted by an organizational unit within the institution. The category includes institutes and research centers, and individual and project research. This function does not include nonresearch sponsored programs (e.g., training programs). Also included are information technology expenses related to research activities if the institution separately budgets and expenses information technology resources (otherwise these expenses are included in academic support.) Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', [SortOrder] = NULL WHERE [Code] = 'Research' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBFunctionalExpense] WHERE [Code] = 'Studentservices') BEGIN INSERT INTO dbo.[RefIPEDSFASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Studentservices', 'Student services', 'A functional expense category that includes expenses for admissions, registrar activities, and activities whose primary purpose is to contribute to students emotional and physical well-being and to their intellectual, cultural, and social development outside the context of the formal instructional program. Examples include student activities, cultural events, student newspapers, intramural athletics, student organizations, supplemental instruction outside the normal administration, and student records. Intercollegiate athletics and student health services may also be included except when operated as self-supporting auxiliary enterprises. Also may include information technology expenses related to student service activities if the institution separately budgets and expenses information technology resources(otherwise these expenses are included in institutional support.) Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBFunctionalExpense] -SET [Description] = 'Student services', [Definition] = 'A functional expense category that includes expenses for admissions, registrar activities, and activities whose primary purpose is to contribute to students emotional and physical well-being and to their intellectual, cultural, and social development outside the context of the formal instructional program. Examples include student activities, cultural events, student newspapers, intramural athletics, student organizations, supplemental instruction outside the normal administration, and student records. Intercollegiate athletics and student health services may also be included except when operated as self-supporting auxiliary enterprises. Also may include information technology expenses related to student service activities if the institution separately budgets and expenses information technology resources(otherwise these expenses are included in institutional support.) Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', [SortOrder] = NULL WHERE [Code] = 'Studentservices' END -END - -PRINT N'Populate RefIPEDSFASBPellGrantTransactions table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIPEDSFASBPellGrantTransactions]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBPellGrantTransactions] WHERE [Code] = 'DoesnotawardPellgrants') BEGIN INSERT INTO dbo.[RefIPEDSFASBPellGrantTransactions]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DoesnotawardPellgrants', 'Does not award Pell grants', NULL, NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBPellGrantTransactions] -SET [Description] = 'Does not award Pell grants', [Definition] = NULL, [SortOrder] = NULL WHERE [Code] = 'DoesnotawardPellgrants' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBPellGrantTransactions] WHERE [Code] = 'Federalgrantrevenue') BEGIN INSERT INTO dbo.[RefIPEDSFASBPellGrantTransactions]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Federalgrantrevenue', 'Federal grant revenue', 'Pell grants are counted as federal revenue and allowance to tuition and fees and/or auxiliary enterprises (for room and board, books, meals, etc.). There should be an offsetting discount/allowance to tuition and fees revenue and/or auxiliary enterprise revenue so that the Pell grants are not being double counted in the institution''s revenues.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBPellGrantTransactions] -SET [Description] = 'Federal grant revenue', [Definition] = 'Pell grants are counted as federal revenue and allowance to tuition and fees and/or auxiliary enterprises (for room and board, books, meals, etc.). There should be an offsetting discount/allowance to tuition and fees revenue and/or auxiliary enterprise revenue so that the Pell grants are not being double counted in the institution''s revenues.', [SortOrder] = NULL WHERE [Code] = 'Federalgrantrevenue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBPellGrantTransactions] WHERE [Code] = 'Passthrough') BEGIN INSERT INTO dbo.[RefIPEDSFASBPellGrantTransactions]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Passthrough', 'Pass through', 'A pass-through transaction is essentially a payment on the student''s account where the institution is purely processing the Pell Grant and those monies are not counted by the institution until they come in as a tuition payment from the student. The latter option is sometimes referred to as an agency transaction. With this option Pell grants are not counted as federal revenues and are not considered to be a discount/allowance to tuition and fees or auxiliary enterprises.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBPellGrantTransactions] -SET [Description] = 'Pass through', [Definition] = 'A pass-through transaction is essentially a payment on the student''s account where the institution is purely processing the Pell Grant and those monies are not counted by the institution until they come in as a tuition payment from the student. The latter option is sometimes referred to as an agency transaction. With this option Pell grants are not counted as federal revenues and are not considered to be a discount/allowance to tuition and fees or auxiliary enterprises.', [SortOrder] = NULL WHERE [Code] = 'Passthrough' END -END - -PRINT N'Populate RefIPEDSFASBRevenue table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIPEDSFASBRevenue]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Contributionsfromaffiliatedentities') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Contributionsfromaffiliatedentities', 'Contributions from affiliated entities', 'Used for reporting all revenues received from non-consolidated affiliated entities, such as fund raising foundations, booster clubs, other institutionally-related foundations, and similar organizations created to support the institution or organizational components of the institution.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Contributions from affiliated entities', [Definition] = 'Used for reporting all revenues received from non-consolidated affiliated entities, such as fund raising foundations, booster clubs, other institutionally-related foundations, and similar organizations created to support the institution or organizational components of the institution.', [SortOrder] = NULL WHERE [Code] = 'Contributionsfromaffiliatedentities' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Federalappropriations') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Federalappropriations', 'Federal appropriations', 'Used for reporting all amounts received from the federal government through a direct appropriation of Congress, except grants and contracts. An example of a federal appropriation is a federal land-grant appropriation. Does not include Pell Grants or any ARRA revenues.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Federal appropriations', [Definition] = 'Used for reporting all amounts received from the federal government through a direct appropriation of Congress, except grants and contracts. An example of a federal appropriation is a federal land-grant appropriation. Does not include Pell Grants or any ARRA revenues.', [SortOrder] = NULL WHERE [Code] = 'Federalappropriations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Federalgrantscontracts') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Federalgrantscontracts', 'Federal grants and contracts', 'Used for reporting all revenues from federal agencies that are for specific undertakings such as research projects, training projects, and similar activities, including contributions from federal agencies. If federal Pell and similar student aid grants are treated as agency transactions in your GPFS, they are excluded from this amount. If federal Pell and similar student aid grants are treated as student aid expenses or as allowances when awarded, they are included from this amount. Does not include any ARRA revenues.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Federal grants and contracts', [Definition] = 'Used for reporting all revenues from federal agencies that are for specific undertakings such as research projects, training projects, and similar activities, including contributions from federal agencies. If federal Pell and similar student aid grants are treated as agency transactions in your GPFS, they are excluded from this amount. If federal Pell and similar student aid grants are treated as student aid expenses or as allowances when awarded, they are included from this amount. Does not include any ARRA revenues.', [SortOrder] = NULL WHERE [Code] = 'Federalgrantscontracts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Hospitalrevenuenottobereportedby') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Hospitalrevenuenottobereportedby', 'Hospital revenue (not to be reported by less-than-4-year institutions)', 'Used for reporting the amount of revenues generated by the auxiliary enterprise operations, net of any allowances applied in the general purpose financial statements. Auxiliary enterprises are operations that exist to furnish a service to students, faculty, or staff, and that charge a fee that is directly related to the cost of the service. Examples are residence halls, food services, student health services, intercollegiate athletics, college unions, college stores, and movie theaters.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Hospital revenue (not to be reported by less-than-4-year institutions)', [Definition] = 'Used for reporting the amount of revenues generated by the auxiliary enterprise operations, net of any allowances applied in the general purpose financial statements. Auxiliary enterprises are operations that exist to furnish a service to students, faculty, or staff, and that charge a fee that is directly related to the cost of the service. Examples are residence halls, food services, student health services, intercollegiate athletics, college unions, college stores, and movie theaters.', [SortOrder] = NULL WHERE [Code] = 'Hospitalrevenuenottobereportedby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Independentoperationsrevenuenottobe') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Independentoperationsrevenuenottobe', 'Independent operations revenue (not to be reported by less-than-4-year institutions)', 'Used for reporting the revenues and gains of hospitals operated as a component of a reporting institution of higher education. If your hospital is reporting in IPEDS educational program activity that is conducted separate from an institution of higher education, they are excluded from this amount.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Independent operations revenue (not to be reported by less-than-4-year institutions)', [Definition] = 'Used for reporting the revenues and gains of hospitals operated as a component of a reporting institution of higher education. If your hospital is reporting in IPEDS educational program activity that is conducted separate from an institution of higher education, they are excluded from this amount.', [SortOrder] = NULL WHERE [Code] = 'Independentoperationsrevenuenottobe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Investmentreturn') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Investmentreturn', 'Investment return', 'Used for reporting all investment income (i.e., interest, dividends, rents and royalties), gains and losses (realized and unrealized) from holding investments (regardless of the nature of the investment), student loan interest, and amounts distributed from irrevocable trusts held by others (collectively referred to as "investment return"). Changes in the value of interest rate swaps should be included in this amount.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Investment return', [Definition] = 'Used for reporting all investment income (i.e., interest, dividends, rents and royalties), gains and losses (realized and unrealized) from holding investments (regardless of the nature of the investment), student loan interest, and amounts distributed from irrevocable trusts held by others (collectively referred to as "investment return"). Changes in the value of interest rate swaps should be included in this amount.', [SortOrder] = NULL WHERE [Code] = 'Investmentreturn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Localappropriations') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Localappropriations', 'Local appropriations', 'Used for reporting all amounts received from a local government (i.e., city and/or county) through a direct appropriation of its legislative body, except for local grants and contracts. An example of a local appropriation is an annual local appropriation for operating expenses of the institution.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Local appropriations', [Definition] = 'Used for reporting all amounts received from a local government (i.e., city and/or county) through a direct appropriation of its legislative body, except for local grants and contracts. An example of a local appropriation is an annual local appropriation for operating expenses of the institution.', [SortOrder] = NULL WHERE [Code] = 'Localappropriations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Localgrantscontracts') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Localgrantscontracts', 'Local grants and contracts', 'Used for reporting all revenues from local government agencies that are for specific undertakings such as research projects, training projects, and similar activities, including contributions from local agencies. If local grants for student aid are treated as agency transactions in your GPFS, they are excluded from this amount. If local grants for student aid are treated in your GPFS as student aid expenses or as allowances when awarded, they are included from this amount.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Local grants and contracts', [Definition] = 'Used for reporting all revenues from local government agencies that are for specific undertakings such as research projects, training projects, and similar activities, including contributions from local agencies. If local grants for student aid are treated as agency transactions in your GPFS, they are excluded from this amount. If local grants for student aid are treated in your GPFS as student aid expenses or as allowances when awarded, they are included from this amount.', [SortOrder] = NULL WHERE [Code] = 'Localgrantscontracts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Netassetsreleasedfromrestriction') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Netassetsreleasedfromrestriction', 'Net assets released from restriction', 'Includes all other revenue not reported elsewhere.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Net assets released from restriction', [Definition] = 'Includes all other revenue not reported elsewhere.', [SortOrder] = NULL WHERE [Code] = 'Netassetsreleasedfromrestriction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Otherrevenue') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Otherrevenue', 'Other revenue', 'Used for reporting all revenues associated with operations independent of the primary missions of the institution. This category generally includes only those revenues associated with major federally-funded research and development centers. Does not include the profit (or loss) from operations owned and managed as investments of the institution’s endowment funds.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Other revenue', [Definition] = 'Used for reporting all revenues associated with operations independent of the primary missions of the institution. This category generally includes only those revenues associated with major federally-funded research and development centers. Does not include the profit (or loss) from operations owned and managed as investments of the institution’s endowment funds.', [SortOrder] = NULL WHERE [Code] = 'Otherrevenue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Privategifts') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Privategifts', 'Private gifts', 'Used for reporting revenues from private (non-governmental) entities including revenues received from gift or contribution nonexchange transactions (including contributed services) except those from affiliated entities. Includes bequests, promises to give (pledges), gifts from an affiliated organization or a component unit not blended or consolidated, and income from funds held in irrevocable trusts or distributable at the direction of the trustees of the trusts. Includes any contributed services recognized (recorded) by the institution.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Private gifts', [Definition] = 'Used for reporting revenues from private (non-governmental) entities including revenues received from gift or contribution nonexchange transactions (including contributed services) except those from affiliated entities. Includes bequests, promises to give (pledges), gifts from an affiliated organization or a component unit not blended or consolidated, and income from funds held in irrevocable trusts or distributable at the direction of the trustees of the trusts. Includes any contributed services recognized (recorded) by the institution.', [SortOrder] = NULL WHERE [Code] = 'Privategifts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Privategrantscontracts') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Privategrantscontracts', 'Private grants and contracts', 'Used for reporting revenues from private (non-governmental) entities that are for specific research projects, other types of programs, or for general institutional operations (if not government appropriations). Examples are research projects, training programs, and similar activities for which amounts are received or expenses are reimbursable under the terms of a grant or contract, including amounts to cover both direct and indirect expenses.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Private grants and contracts', [Definition] = 'Used for reporting revenues from private (non-governmental) entities that are for specific research projects, other types of programs, or for general institutional operations (if not government appropriations). Examples are research projects, training programs, and similar activities for which amounts are received or expenses are reimbursable under the terms of a grant or contract, including amounts to cover both direct and indirect expenses.', [SortOrder] = NULL WHERE [Code] = 'Privategrantscontracts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Salesservicesofauxiliaryenterprisesnetofallowance') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Salesservicesofauxiliaryenterprisesnetofallowance', 'Sales and services of auxiliary enterprises (net of allowance)', 'Used for reporting the amount of revenues generated by the auxiliary enterprise operations, net of any allowances applied in the general purpose financial statements. Auxiliary enterprises are operations that exist to furnish a service to students, faculty, or staff, and that charge a fee that is directly related to the cost of the service. Examples are residence halls, food services, student health services, intercollegiate athletics, college unions, college stores, and movie theaters.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Sales and services of auxiliary enterprises (net of allowance)', [Definition] = 'Used for reporting the amount of revenues generated by the auxiliary enterprise operations, net of any allowances applied in the general purpose financial statements. Auxiliary enterprises are operations that exist to furnish a service to students, faculty, or staff, and that charge a fee that is directly related to the cost of the service. Examples are residence halls, food services, student health services, intercollegiate athletics, college unions, college stores, and movie theaters.', [SortOrder] = NULL WHERE [Code] = 'Salesservicesofauxiliaryenterprisesnetofallowance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Salesservicesofeducationalactivities') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Salesservicesofeducationalactivities', 'Sales and services of educational activities', 'Used for reporting all revenues derived from the sales of goods or services that are incidental to the conduct of instruction, research or public service, and revenues of activities that exist to provide instructional and laboratory experience for students and that incidentally create goods and services that may be sold. Examples include film rentals, scientific and literary publications, testing services, university presses, dairies, and patient care clinics that are not part of a hospital.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Sales and services of educational activities', [Definition] = 'Used for reporting all revenues derived from the sales of goods or services that are incidental to the conduct of instruction, research or public service, and revenues of activities that exist to provide instructional and laboratory experience for students and that incidentally create goods and services that may be sold. Examples include film rentals, scientific and literary publications, testing services, university presses, dairies, and patient care clinics that are not part of a hospital.', [SortOrder] = NULL WHERE [Code] = 'Salesservicesofeducationalactivities' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Stateappropriations') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Stateappropriations', 'State appropriations', 'Used for reporting all amounts received from a state government through a direct appropriation of its legislative body, except for state grants and contracts. An example of a state appropriation is an annual state appropriation for operating expenses of the institution. (FARM para. 463) Does not include any ARRA revenues.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'State appropriations', [Definition] = 'Used for reporting all amounts received from a state government through a direct appropriation of its legislative body, except for state grants and contracts. An example of a state appropriation is an annual state appropriation for operating expenses of the institution. (FARM para. 463) Does not include any ARRA revenues.', [SortOrder] = NULL WHERE [Code] = 'Stateappropriations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Stategrantscontracts') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Stategrantscontracts', 'State grants and contracts', 'Used for reporting all revenues from state government agencies that are for specific undertakings such as research projects, training projects, and similar activities, including contributions from state agencies. If state grants for student aid are treated as agency transactions in your GPFS, they are excluded from this amount. If state grants for student aid are treated in your GPFS as student aid expenses or as allowances when awarded, include the grant revenue on this line and in Part C. Does not include any ARRA revenues.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'State grants and contracts', [Definition] = 'Used for reporting all revenues from state government agencies that are for specific undertakings such as research projects, training projects, and similar activities, including contributions from state agencies. If state grants for student aid are treated as agency transactions in your GPFS, they are excluded from this amount. If state grants for student aid are treated in your GPFS as student aid expenses or as allowances when awarded, include the grant revenue on this line and in Part C. Does not include any ARRA revenues.', [SortOrder] = NULL WHERE [Code] = 'Stategrantscontracts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenue] WHERE [Code] = 'Tuitionfeesnetofallowance') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Tuitionfeesnetofallowance', 'Tuition and fees (net of allowance)', 'Used for reporting the amount of tuition and educational fees, net of any allowances applied in the GPFS. Include in this amount all fees for continuing education programs, conferences, and seminars.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenue] -SET [Description] = 'Tuition and fees (net of allowance)', [Definition] = 'Used for reporting the amount of tuition and educational fees, net of any allowances applied in the GPFS. Include in this amount all fees for continuing education programs, conferences, and seminars.', [SortOrder] = NULL WHERE [Code] = 'Tuitionfeesnetofallowance' END -END - -PRINT N'Populate RefIPEDSFASBRevenueRestriction table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIPEDSFASBRevenueRestriction]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenueRestriction] WHERE [Code] = 'PermanentlyRestricted') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenueRestriction]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PermanentlyRestricted', 'Permanently Restricted', 'Used for reporting revenues that must be maintained in perpetuity due to a donor-imposed restriction.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenueRestriction] -SET [Description] = 'Permanently Restricted', [Definition] = 'Used for reporting revenues that must be maintained in perpetuity due to a donor-imposed restriction.', [SortOrder] = NULL WHERE [Code] = 'PermanentlyRestricted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenueRestriction] WHERE [Code] = 'TemporarilyRestricted') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenueRestriction]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TemporarilyRestricted', 'Temporarily Restricted', 'Used for reporting revenues that are subject to limitation by donor specification as to use or the time when use may occur (such as a later period of time or after specified events have occurred).', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenueRestriction] -SET [Description] = 'Temporarily Restricted', [Definition] = 'Used for reporting revenues that are subject to limitation by donor specification as to use or the time when use may occur (such as a later period of time or after specified events have occurred).', [SortOrder] = NULL WHERE [Code] = 'TemporarilyRestricted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBRevenueRestriction] WHERE [Code] = 'Unrestricted') BEGIN INSERT INTO dbo.[RefIPEDSFASBRevenueRestriction]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unrestricted', 'Unrestricted', 'Used for reporting revenues that are not subject to limitations by a donor-imposed restriction.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBRevenueRestriction] -SET [Description] = 'Unrestricted', [Definition] = 'Used for reporting revenues that are not subject to limitations by a donor-imposed restriction.', [SortOrder] = NULL WHERE [Code] = 'Unrestricted' END -END - -PRINT N'Populate RefIPEDSFASBScholarshipsandFellowshipsRevenue table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIPEDSFASBScholarshipsandFellowshipsRevenue]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Discountsallowancesappliedtoauxiliary') BEGIN INSERT INTO dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Discountsallowancesappliedtoauxiliary', 'Discounts and allowances applied to auxiliary enterprise revenues', 'The amount of allowances (scholarships) applied to auxiliary enterprise revenues (e.g., dormitory charges).', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Discounts and allowances applied to auxiliary enterprise revenues', [Definition] = 'The amount of allowances (scholarships) applied to auxiliary enterprise revenues (e.g., dormitory charges).', [SortOrder] = NULL WHERE [Code] = 'Discountsallowancesappliedtoauxiliary' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Discountsallowancesappliedtotuitionfees') BEGIN INSERT INTO dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Discountsallowancesappliedtotuitionfees', 'Discounts and allowances applied to tuition and fees', 'The amount of allowances (scholarships) applied to tuition and fees.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Discounts and allowances applied to tuition and fees', [Definition] = 'The amount of allowances (scholarships) applied to tuition and fees.', [SortOrder] = NULL WHERE [Code] = 'Discountsallowancesappliedtotuitionfees' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Grantsbylocalgovernment') BEGIN INSERT INTO dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Grantsbylocalgovernment', 'Grants by local government', 'Local government grants include scholarships or gift-aid awarded directly to the student.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Grants by local government', [Definition] = 'Local government grants include scholarships or gift-aid awarded directly to the student.', [SortOrder] = NULL WHERE [Code] = 'Grantsbylocalgovernment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Grantsbystategovernment') BEGIN INSERT INTO dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Grantsbystategovernment', 'Grants by state government', 'Grant monies provided by the state such as Leveraging Educational Assistance Partnerships (LEAP) (formerly SSIG''s); merit scholarships provided by the state; and tuition and fee waivers for which the institution was reimbursed by a state agency.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Grants by state government', [Definition] = 'Grant monies provided by the state such as Leveraging Educational Assistance Partnerships (LEAP) (formerly SSIG''s); merit scholarships provided by the state; and tuition and fee waivers for which the institution was reimbursed by a state agency.', [SortOrder] = NULL WHERE [Code] = 'Grantsbystategovernment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Institutionalgrantsrestricted') BEGIN INSERT INTO dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Institutionalgrantsrestricted', 'Institutional grants (restricted)', 'Scholarships and fellowships awarded to students from institutional resources that are restricted to student aid. Private institutions generally report these grants as allowances. If control over these resources passes to the student, the amount is reported as an expense.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Institutional grants (restricted)', [Definition] = 'Scholarships and fellowships awarded to students from institutional resources that are restricted to student aid. Private institutions generally report these grants as allowances. If control over these resources passes to the student, the amount is reported as an expense.', [SortOrder] = NULL WHERE [Code] = 'Institutionalgrantsrestricted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Institutionalgrantsunrestricted') BEGIN INSERT INTO dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Institutionalgrantsunrestricted', 'Institutional grants (unrestricted)', 'Scholarships and fellowships awarded to students from unrestricted institutional resources. Private institutions generally report these grants as allowances. If control over these resources passes to the student, the amount is reported as an expense.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Institutional grants (unrestricted)', [Definition] = 'Scholarships and fellowships awarded to students from unrestricted institutional resources. Private institutions generally report these grants as allowances. If control over these resources passes to the student, the amount is reported as an expense.', [SortOrder] = NULL WHERE [Code] = 'Institutionalgrantsunrestricted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Otherfederalgrants') BEGIN INSERT INTO dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Otherfederalgrants', 'Other federal grants', 'Federal monies awarded to the institution under federal government student aid programs, such as the Federal Supplemental Educational Opportunity Grants (FSEOG), DHHS training grants (aid portion only), the Leveraging Education Assistance Partnership (LEAP) program, and other federal student aid programs. Pell Grants are not included in this classification. Note: if the federal government selects the student recipients and simply transmits the funds to the institution for disbursement to the student, the amounts are not considered as revenues and subsequently there are no discounts and allowances or scholarships and fellowships expenses. If the funds are made available to the institution for selection of student recipients, then the amounts received are considered as nonoperating revenues and subsequently as discounts and allowances or scholarships and fellowships expenses.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Other federal grants', [Definition] = 'Federal monies awarded to the institution under federal government student aid programs, such as the Federal Supplemental Educational Opportunity Grants (FSEOG), DHHS training grants (aid portion only), the Leveraging Education Assistance Partnership (LEAP) program, and other federal student aid programs. Pell Grants are not included in this classification. Note: if the federal government selects the student recipients and simply transmits the funds to the institution for disbursement to the student, the amounts are not considered as revenues and subsequently there are no discounts and allowances or scholarships and fellowships expenses. If the funds are made available to the institution for selection of student recipients, then the amounts received are considered as nonoperating revenues and subsequently as discounts and allowances or scholarships and fellowships expenses.', [SortOrder] = NULL WHERE [Code] = 'Otherfederalgrants' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Pellgrants') BEGIN INSERT INTO dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Pellgrants', 'Pell grants', 'The gross amount of Pell Grants made available to recipients by your institution. This is the gross Pell Grants received as federal grant revenue for the fiscal year.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSFASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Pell grants', [Definition] = 'The gross amount of Pell Grants made available to recipients by your institution. This is the gross Pell Grants received as federal grant revenue for the fiscal year.', [SortOrder] = NULL WHERE [Code] = 'Pellgrants' END -END - -PRINT N'Populate RefIPEDSGASBFinancialPosition table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIPEDSGASBFinancialPosition]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'CapitalAssetsAccumulateddepreciation') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CapitalAssetsAccumulateddepreciation', 'Capital Assets: Accumulated depreciation', 'Used for reporting all depreciation amounts, including depreciation on assets that may not be included in other capital assets categories.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Capital Assets: Accumulated depreciation', [Definition] = 'Used for reporting all depreciation amounts, including depreciation on assets that may not be included in other capital assets categories.', [SortOrder] = NULL WHERE [Code] = 'CapitalAssetsAccumulateddepreciation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'CapitalAssetsBuildings') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CapitalAssetsBuildings', 'Capital Assets: Buildings', 'Used for reporting structures built for occupancy or use, such as for classrooms, research, administrative offices, storage, etc. Includes built-in fixtures and equipment that are essentially part of the permanent structure.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Capital Assets: Buildings', [Definition] = 'Used for reporting structures built for occupancy or use, such as for classrooms, research, administrative offices, storage, etc. Includes built-in fixtures and equipment that are essentially part of the permanent structure.', [SortOrder] = NULL WHERE [Code] = 'CapitalAssetsBuildings' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'CapitalAssetsConstructioninprogress') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CapitalAssetsConstructioninprogress', 'Capital Assets: Construction in progress', 'Used for reporting capital assets under construction and not yet placed into service.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Capital Assets: Construction in progress', [Definition] = 'Used for reporting capital assets under construction and not yet placed into service.', [SortOrder] = NULL WHERE [Code] = 'CapitalAssetsConstructioninprogress' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'CapitalAssetsEquipmentincludingartlibrary') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CapitalAssetsEquipmentincludingartlibrary', 'Capital Assets: Equipment, including art and library collections', 'Used for reporting moveable tangible property such as research equipment, vehicles, office equipment, library collections (capitalized amount of books, films, tapes, and other materials maintained in library collections intended for use by patrons), and capitalized art collections.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Capital Assets: Equipment, including art and library collections', [Definition] = 'Used for reporting moveable tangible property such as research equipment, vehicles, office equipment, library collections (capitalized amount of books, films, tapes, and other materials maintained in library collections intended for use by patrons), and capitalized art collections.', [SortOrder] = NULL WHERE [Code] = 'CapitalAssetsEquipmentincludingartlibrary' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'CapitalAssetsInfrastructure') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CapitalAssetsInfrastructure', 'Capital Assets: Infrastructure', 'Used for reporting infrastructure assets such as roads, bridges, drainage systems, water and sewer systems, etc.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Capital Assets: Infrastructure', [Definition] = 'Used for reporting infrastructure assets such as roads, bridges, drainage systems, water and sewer systems, etc.', [SortOrder] = NULL WHERE [Code] = 'CapitalAssetsInfrastructure' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'CapitalAssetsIntangibleassetsnetof') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CapitalAssetsIntangibleassetsnetof', 'Capital Assets: Intangible assets, net of accumulated amortization', 'Used for reporting all assets consisting of certain nonmaterial rights and benefits of an institution, such as patents, copyrights, trademarks and goodwill. The amount should be reduced by total accumulated amortization.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Capital Assets: Intangible assets, net of accumulated amortization', [Definition] = 'Used for reporting all assets consisting of certain nonmaterial rights and benefits of an institution, such as patents, copyrights, trademarks and goodwill. The amount should be reduced by total accumulated amortization.', [SortOrder] = NULL WHERE [Code] = 'CapitalAssetsIntangibleassetsnetof' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'CapitalAssetsLandlandimprovements') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CapitalAssetsLandlandimprovements', 'Capital Assets: Land and land improvements', 'Used for reporting land and other land improvements, such as athletic fields, golf courses, lakes, etc.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Capital Assets: Land and land improvements', [Definition] = 'Used for reporting land and other land improvements, such as athletic fields, golf courses, lakes, etc.', [SortOrder] = NULL WHERE [Code] = 'CapitalAssetsLandlandimprovements' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'CapitalAssetsOthercapitalassets') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CapitalAssetsOthercapitalassets', 'Capital Assets: Other capital assets', NULL, NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Capital Assets: Other capital assets', [Definition] = NULL, [SortOrder] = NULL WHERE [Code] = 'CapitalAssetsOthercapitalassets' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'Deferredinflowsofresources') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Deferredinflowsofresources', 'Deferred inflows of resources', 'Used for reporting the deferred inflows of resources as recognized in the institution’s GPFS and in accordance with GASB 63.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Deferred inflows of resources', [Definition] = 'Used for reporting the deferred inflows of resources as recognized in the institution’s GPFS and in accordance with GASB 63.', [SortOrder] = NULL WHERE [Code] = 'Deferredinflowsofresources' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'Deferredoutflowsofresources') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Deferredoutflowsofresources', 'Deferred outflows of resources', 'Used for reporting the deferred outflows of resources as recognized in the institution’s GPFS and in accordance with GASB 63.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Deferred outflows of resources', [Definition] = 'Used for reporting the deferred outflows of resources as recognized in the institution’s GPFS and in accordance with GASB 63.', [SortOrder] = NULL WHERE [Code] = 'Deferredoutflowsofresources' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'Depreciablecapitalassetsnetofdepreciation') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Depreciablecapitalassetsnetofdepreciation', 'Depreciable capital assets, net of depreciation', 'Used for reporting all capital assets reduced by the total accumulated depreciation, including improvements to land, easements, buildings, building improvements, vehicles, machinery, equipment, infrastructure, and all other tangible or intangible depreciable assets that are used in operations and that have initial useful lives extending beyond a single reporting period. Includes the net amount of all depreciable capital assets after reducing the gross amount for accumulated depreciation.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Depreciable capital assets, net of depreciation', [Definition] = 'Used for reporting all capital assets reduced by the total accumulated depreciation, including improvements to land, easements, buildings, building improvements, vehicles, machinery, equipment, infrastructure, and all other tangible or intangible depreciable assets that are used in operations and that have initial useful lives extending beyond a single reporting period. Includes the net amount of all depreciable capital assets after reducing the gross amount for accumulated depreciation.', [SortOrder] = NULL WHERE [Code] = 'Depreciablecapitalassetsnetofdepreciation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'Longtermdebt') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Longtermdebt', 'Long-term debt', 'Used for reporting the amount for long-term debt arising from debt issuance and lease-purchase agreements.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Long-term debt', [Definition] = 'Used for reporting the amount for long-term debt arising from debt issuance and lease-purchase agreements.', [SortOrder] = NULL WHERE [Code] = 'Longtermdebt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'Longtermdebtcurrentportion') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Longtermdebtcurrentportion', 'Long-term debt, current portion', 'Used for reporting the amount due in the next operating cycle (usually a year) for amounts otherwise reported as long-term or noncurrent debt. Includes only outstanding debt.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Long-term debt, current portion', [Definition] = 'Used for reporting the amount due in the next operating cycle (usually a year) for amounts otherwise reported as long-term or noncurrent debt. Includes only outstanding debt.', [SortOrder] = NULL WHERE [Code] = 'Longtermdebtcurrentportion' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'Netassetsinvestedincapitalassetsnetofrelateddebt') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Netassetsinvestedincapitalassetsnetofrelateddebt', 'Net assets invested in capital assets, net of related debt', 'Used for reporting the component of net assets represented by the total of all capital assets, reduced by accumulated depreciation, and reduced by the amount of outstanding bonds, mortgages, notes, or other borrowings that are attributable to the acquisition, construction, or improvement of those assets (see indebtedness on capital assets). Some outstanding debt may be reported in both current and noncurrent liabilities.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Net assets invested in capital assets, net of related debt', [Definition] = 'Used for reporting the component of net assets represented by the total of all capital assets, reduced by accumulated depreciation, and reduced by the amount of outstanding bonds, mortgages, notes, or other borrowings that are attributable to the acquisition, construction, or improvement of those assets (see indebtedness on capital assets). Some outstanding debt may be reported in both current and noncurrent liabilities.', [SortOrder] = NULL WHERE [Code] = 'Netassetsinvestedincapitalassetsnetofrelateddebt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'Othercurrentliabilities') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Othercurrentliabilities', 'Other current liabilities', NULL, NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Other current liabilities', [Definition] = NULL, [SortOrder] = NULL WHERE [Code] = 'Othercurrentliabilities' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'Othernoncurrentassets') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Othernoncurrentassets', 'Other noncurrent assets', NULL, NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Other noncurrent assets', [Definition] = NULL, [SortOrder] = NULL WHERE [Code] = 'Othernoncurrentassets' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'Othernoncurrentliabilities') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Othernoncurrentliabilities', 'Other non-current liabilities', NULL, NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Other non-current liabilities', [Definition] = NULL, [SortOrder] = NULL WHERE [Code] = 'Othernoncurrentliabilities' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'Restrictedexpendablenetassets') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Restrictedexpendablenetassets', 'Restricted expendable net assets', 'Used for reporting restricted net assets that are expendable. Net assets should be reported as restricted when constraints placed on use are either (a) externally imposed by creditors, grantors, contributors, or laws and regulations of other governments or (b) imposed by law through constitutional provisions or enabling legislation. Expendable net assets are all those not required to be retained in perpetuity.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Restricted expendable net assets', [Definition] = 'Used for reporting restricted net assets that are expendable. Net assets should be reported as restricted when constraints placed on use are either (a) externally imposed by creditors, grantors, contributors, or laws and regulations of other governments or (b) imposed by law through constitutional provisions or enabling legislation. Expendable net assets are all those not required to be retained in perpetuity.', [SortOrder] = NULL WHERE [Code] = 'Restrictedexpendablenetassets' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'Restrictednonexpendablenetassets') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Restrictednonexpendablenetassets', 'Restricted non-expendable net assets', 'Used for reporting net assets that are restricted and nonexpendable. Net assets should be reported as restricted when constraints placed on use are either (a) externally imposed by creditors, grantors, contributors, or laws and regulations of other governments or (b) imposed by law through constitutional provisions or enabling legislation. Nonexpendable net assets are those that are required to be retained in perpetuity.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Restricted non-expendable net assets', [Definition] = 'Used for reporting net assets that are restricted and nonexpendable. Net assets should be reported as restricted when constraints placed on use are either (a) externally imposed by creditors, grantors, contributors, or laws and regulations of other governments or (b) imposed by law through constitutional provisions or enabling legislation. Nonexpendable net assets are those that are required to be retained in perpetuity.', [SortOrder] = NULL WHERE [Code] = 'Restrictednonexpendablenetassets' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'Totalcurrentassets') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Totalcurrentassets', 'Total current assets', 'Used for reporting all current assets, including cash and cash equivalents, investments, accounts and notes receivables (net of allowance for uncollectible amounts), inventories, and all other assets classified as current assets.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Total current assets', [Definition] = 'Used for reporting all current assets, including cash and cash equivalents, investments, accounts and notes receivables (net of allowance for uncollectible amounts), inventories, and all other assets classified as current assets.', [SortOrder] = NULL WHERE [Code] = 'Totalcurrentassets' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFinancialPosition] WHERE [Code] = 'Unrestrictednetassets') BEGIN INSERT INTO dbo.[RefIPEDSGASBFinancialPosition]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unrestrictednetassets', 'Unrestricted net assets', 'This should be the amount of net assets that do not meet the definition of “restricted” or “invested in capital assets, net of related debt.”', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFinancialPosition] -SET [Description] = 'Unrestricted net assets', [Definition] = 'This should be the amount of net assets that do not meet the definition of “restricted” or “invested in capital assets, net of related debt.”', [SortOrder] = NULL WHERE [Code] = 'Unrestrictednetassets' END -END - -PRINT N'Populate RefIPEDSGASBFunctionalExpense table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIPEDSGASBFunctionalExpense]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFunctionalExpense] WHERE [Code] = 'Instruction') BEGIN INSERT INTO dbo.[RefIPEDSGASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Instruction', 'Instruction', 'A functional expense category that includes expenses of the colleges, schools, departments, and other instructional divisions of the institution and expenses for departmental research and public service that are not separately budgeted. Includes general academic instruction, occupational and vocational instruction, community education, preparatory and adult basic education, and regular, special, and extension sessions. Also includes expenses for both credit and non-credit activities. Excludes expenses for academic administration where the primary function is administration (e.g., academic deans). Information technology expenses related to instructional activities if the institution separately budgets and expenses information technology resources are included (otherwise these expenses are included in academic support). Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFunctionalExpense] -SET [Description] = 'Instruction', [Definition] = 'A functional expense category that includes expenses of the colleges, schools, departments, and other instructional divisions of the institution and expenses for departmental research and public service that are not separately budgeted. Includes general academic instruction, occupational and vocational instruction, community education, preparatory and adult basic education, and regular, special, and extension sessions. Also includes expenses for both credit and non-credit activities. Excludes expenses for academic administration where the primary function is administration (e.g., academic deans). Information technology expenses related to instructional activities if the institution separately budgets and expenses information technology resources are included (otherwise these expenses are included in academic support). Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', [SortOrder] = 1.00 WHERE [Code] = 'Instruction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFunctionalExpense] WHERE [Code] = 'Research') BEGIN INSERT INTO dbo.[RefIPEDSGASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Research', 'Research', 'A functional expense category that includes expenses for activities specifically organized to produce research outcomes and commissioned by an agency either external to the institution or separately budgeted by an organizational unit within the institution. The category includes institutes and research centers, and individual and project research. This function does not include nonresearch sponsored programs (e.g., training programs). Also included are information technology expenses related to research activities if the institution separately budgets and expenses information technology resources (otherwise these expenses are included in academic support.) Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFunctionalExpense] -SET [Description] = 'Research', [Definition] = 'A functional expense category that includes expenses for activities specifically organized to produce research outcomes and commissioned by an agency either external to the institution or separately budgeted by an organizational unit within the institution. The category includes institutes and research centers, and individual and project research. This function does not include nonresearch sponsored programs (e.g., training programs). Also included are information technology expenses related to research activities if the institution separately budgets and expenses information technology resources (otherwise these expenses are included in academic support.) Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', [SortOrder] = 2.00 WHERE [Code] = 'Research' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFunctionalExpense] WHERE [Code] = 'Publicservice') BEGIN INSERT INTO dbo.[RefIPEDSGASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Publicservice', 'Public service', 'A functional expense category that includes expenses for activities established primarily to provide noninstructional services beneficial to individuals and groups external to the institution. Examples are conferences, institutes, general advisory service, reference bureaus, and similar services provided to particular sectors of the community. This function includes expenses for community services, cooperative extension services, and public broadcasting services. Also includes information technology expenses related to the public service activities if the institution separately budgets and expenses information technology resources (otherwise these expenses are included in academic support). Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFunctionalExpense] -SET [Description] = 'Public service', [Definition] = 'A functional expense category that includes expenses for activities established primarily to provide noninstructional services beneficial to individuals and groups external to the institution. Examples are conferences, institutes, general advisory service, reference bureaus, and similar services provided to particular sectors of the community. This function includes expenses for community services, cooperative extension services, and public broadcasting services. Also includes information technology expenses related to the public service activities if the institution separately budgets and expenses information technology resources (otherwise these expenses are included in academic support). Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', [SortOrder] = 3.00 WHERE [Code] = 'Publicservice' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFunctionalExpense] WHERE [Code] = 'Academicsupport') BEGIN INSERT INTO dbo.[RefIPEDSGASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Academicsupport', 'Academic support', 'A functional expense category that includes expenses of activities and services that support the institution''s primary missions of instruction, research, and public service. It includes the retention, preservation, and display of educational materials (for example, libraries, museums, and galleries); organized activities that provide support services to the academic functions of the institution (such as a demonstration school associated with a college of education or veterinary and dental clinics if their primary purpose is to support the instructional program); media such as audiovisual services; academic administration (including academic deans but not department chairpersons); and formally organized and separately budgeted academic personnel development and course and curriculum development expenses. Also included are information technology expenses related to academic support activities; if an institution does not separately budget and expense information technology resources, the costs associated with the three primary programs will be applied to this function and the remainder to institutional support. Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFunctionalExpense] -SET [Description] = 'Academic support', [Definition] = 'A functional expense category that includes expenses of activities and services that support the institution''s primary missions of instruction, research, and public service. It includes the retention, preservation, and display of educational materials (for example, libraries, museums, and galleries); organized activities that provide support services to the academic functions of the institution (such as a demonstration school associated with a college of education or veterinary and dental clinics if their primary purpose is to support the instructional program); media such as audiovisual services; academic administration (including academic deans but not department chairpersons); and formally organized and separately budgeted academic personnel development and course and curriculum development expenses. Also included are information technology expenses related to academic support activities; if an institution does not separately budget and expense information technology resources, the costs associated with the three primary programs will be applied to this function and the remainder to institutional support. Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', [SortOrder] = 4.00 WHERE [Code] = 'Academicsupport' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFunctionalExpense] WHERE [Code] = 'Studentservices') BEGIN INSERT INTO dbo.[RefIPEDSGASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Studentservices', 'Student services', 'A functional expense category that includes expenses for admissions, registrar activities, and activities whose primary purpose is to contribute to students emotional and physical well-being and to their intellectual, cultural, and social development outside the context of the formal instructional program. Examples include student activities, cultural events, student newspapers, intramural athletics, student organizations, supplemental instruction outside the normal administration, and student records. Intercollegiate athletics and student health services may also be included except when operated as self-supporting auxiliary enterprises. Also may include information technology expenses related to student service activities if the institution separately budgets and expenses information technology resources(otherwise these expenses are included in institutional support.) Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFunctionalExpense] -SET [Description] = 'Student services', [Definition] = 'A functional expense category that includes expenses for admissions, registrar activities, and activities whose primary purpose is to contribute to students emotional and physical well-being and to their intellectual, cultural, and social development outside the context of the formal instructional program. Examples include student activities, cultural events, student newspapers, intramural athletics, student organizations, supplemental instruction outside the normal administration, and student records. Intercollegiate athletics and student health services may also be included except when operated as self-supporting auxiliary enterprises. Also may include information technology expenses related to student service activities if the institution separately budgets and expenses information technology resources(otherwise these expenses are included in institutional support.) Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', [SortOrder] = 5.00 WHERE [Code] = 'Studentservices' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFunctionalExpense] WHERE [Code] = 'Institutionalsupport') BEGIN INSERT INTO dbo.[RefIPEDSGASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Institutionalsupport', 'Institutional support', 'A functional expense category that includes expenses for the day-to-day operational support of the institution. Includes expenses for general administrative services, central executive-level activities concerned with management and long range planning, legal and fiscal operations, space management, employee personnel and records, logistical services such as purchasing and printing, and public relations and development. Also includes information technology expenses related to institutional support activities. If an institution does not separately budget and expense information technology resources, the IT costs associated with student services and operation and maintenance of plant will also be applied to this function.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFunctionalExpense] -SET [Description] = 'Institutional support', [Definition] = 'A functional expense category that includes expenses for the day-to-day operational support of the institution. Includes expenses for general administrative services, central executive-level activities concerned with management and long range planning, legal and fiscal operations, space management, employee personnel and records, logistical services such as purchasing and printing, and public relations and development. Also includes information technology expenses related to institutional support activities. If an institution does not separately budget and expense information technology resources, the IT costs associated with student services and operation and maintenance of plant will also be applied to this function.', [SortOrder] = 6.00 WHERE [Code] = 'Institutionalsupport' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFunctionalExpense] WHERE [Code] = 'Auxiliaryenterprises') BEGIN INSERT INTO dbo.[RefIPEDSGASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Auxiliaryenterprises', 'Auxiliary enterprises', 'Expenses for essentially self-supporting operations of the institution that exist to furnish a service to students, faculty, or staff, and that charge a fee that is directly related to, although not necessarily equal to, the cost of the service. Examples are residence halls, food services, student health services, intercollegiate athletics (only if essentially self-supporting), college unions, college stores, faculty and staff parking, and faculty housing. Institutions include actual or allocated costs for operation and maintenance of plant, interest and depreciation.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFunctionalExpense] -SET [Description] = 'Auxiliary enterprises', [Definition] = 'Expenses for essentially self-supporting operations of the institution that exist to furnish a service to students, faculty, or staff, and that charge a fee that is directly related to, although not necessarily equal to, the cost of the service. Examples are residence halls, food services, student health services, intercollegiate athletics (only if essentially self-supporting), college unions, college stores, faculty and staff parking, and faculty housing. Institutions include actual or allocated costs for operation and maintenance of plant, interest and depreciation.', [SortOrder] = 7.00 WHERE [Code] = 'Auxiliaryenterprises' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFunctionalExpense] WHERE [Code] = 'Scholarshipsfellowships') BEGIN INSERT INTO dbo.[RefIPEDSGASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Scholarshipsfellowships', 'Scholarships and fellowships', 'That portion of scholarships and fellowships granted that exceeds the amount applied to institutional charges such as tuition and fees or room and board. The amount reported as expense excludes allowances and discounts. The FASB survey uses the term "net grants in aid to students" rather than "scholarships and fellowships."', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFunctionalExpense] -SET [Description] = 'Scholarships and fellowships', [Definition] = 'That portion of scholarships and fellowships granted that exceeds the amount applied to institutional charges such as tuition and fees or room and board. The amount reported as expense excludes allowances and discounts. The FASB survey uses the term "net grants in aid to students" rather than "scholarships and fellowships."', [SortOrder] = 8.00 WHERE [Code] = 'Scholarshipsfellowships' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFunctionalExpense] WHERE [Code] = 'Hospitalservices') BEGIN INSERT INTO dbo.[RefIPEDSGASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Hospitalservices', 'Hospital services', 'Expenses associated with a hospital operated by the postsecondary institution (but not as a component unit) and reported as a part of the institution. This classification includes nursing expenses, other professional services, general services, administrative services, and fiscal services. Also included are information technology expenses, actual or allocated costs for operation and maintenance of plant, interest and depreciation related to hospital capital assets.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFunctionalExpense] -SET [Description] = 'Hospital services', [Definition] = 'Expenses associated with a hospital operated by the postsecondary institution (but not as a component unit) and reported as a part of the institution. This classification includes nursing expenses, other professional services, general services, administrative services, and fiscal services. Also included are information technology expenses, actual or allocated costs for operation and maintenance of plant, interest and depreciation related to hospital capital assets.', [SortOrder] = 9.00 WHERE [Code] = 'Hospitalservices' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFunctionalExpense] WHERE [Code] = 'Independentoperations') BEGIN INSERT INTO dbo.[RefIPEDSGASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Independentoperations', 'Independent operations', 'Expenses associated with operations that are independent of or unrelated to the primary missions of the institution (i.e., instruction, research, public service) although they may contribute indirectly to the enhancement of these programs. This category is generally limited to expenses of a major federally funded research and development center. Also includes information technology expenses, actual or allocated costs for operation and maintenance of plant, interest and depreciation related to the independent operations. Expenses of operations owned and managed as investments of the institution''s endowment funds are excluded.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFunctionalExpense] -SET [Description] = 'Independent operations', [Definition] = 'Expenses associated with operations that are independent of or unrelated to the primary missions of the institution (i.e., instruction, research, public service) although they may contribute indirectly to the enhancement of these programs. This category is generally limited to expenses of a major federally funded research and development center. Also includes information technology expenses, actual or allocated costs for operation and maintenance of plant, interest and depreciation related to the independent operations. Expenses of operations owned and managed as investments of the institution''s endowment funds are excluded.', [SortOrder] = 10.00 WHERE [Code] = 'Independentoperations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBFunctionalExpense] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefIPEDSGASBFunctionalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', NULL, 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBFunctionalExpense] -SET [Description] = 'Other', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefIPEDSGASBRevenue table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIPEDSGASBRevenue]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Additionstopermanentendowments') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Additionstopermanentendowments', 'Additions to permanent endowments', 'Used for reporting gifts and other additions to endowments that are permanently nonexpendable.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Additions to permanent endowments', [Definition] = 'Used for reporting gifts and other additions to endowments that are permanently nonexpendable.', [SortOrder] = NULL WHERE [Code] = 'Additionstopermanentendowments' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Capitalappropriations') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Capitalappropriations', 'Capital appropriations', 'Used for reporting amounts provided by government appropriations intended primarily for acquisition or construction of capital assets for the institution.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Capital appropriations', [Definition] = 'Used for reporting amounts provided by government appropriations intended primarily for acquisition or construction of capital assets for the institution.', [SortOrder] = NULL WHERE [Code] = 'Capitalappropriations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Capitalgrantsgifts') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Capitalgrantsgifts', 'Capital grants and gifts', 'Used for reporting amounts received from gifts or grants primarily intended to provide for the acquisition or construction of capital assets for the institution.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Capital grants and gifts', [Definition] = 'Used for reporting amounts received from gifts or grants primarily intended to provide for the acquisition or construction of capital assets for the institution.', [SortOrder] = NULL WHERE [Code] = 'Capitalgrantsgifts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Federalappropriations') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Federalappropriations', 'Federal appropriations', 'Used for reporting all amounts received by the institution through acts of a federal legislative body, except grants and contracts. Funds reported in this category are for meeting current operating expenses, not for specific projects or programs. An example is federal land-grant appropriations. If your institution accounts for land grant appropriations as operating revenue, they are excluded from this amount. Does not include any ARRA revenues.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Federal appropriations', [Definition] = 'Used for reporting all amounts received by the institution through acts of a federal legislative body, except grants and contracts. Funds reported in this category are for meeting current operating expenses, not for specific projects or programs. An example is federal land-grant appropriations. If your institution accounts for land grant appropriations as operating revenue, they are excluded from this amount. Does not include any ARRA revenues.', [SortOrder] = NULL WHERE [Code] = 'Federalappropriations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Federalnonoperatinggrants') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Federalnonoperatinggrants', 'Federal nonoperating grants', 'Used for reporting all amounts reported as nonoperating revenues from federal governmental agencies that are provided on a nonexchange basis. Includes Pell Grants and other Federal student grant aid. Does not include revenues from the Federal Direct Student Loan (FDSL) Program, Federal Work-Study or federal veteran education benefits. These amounts should be captured as tuition and fees and/or sales and services of auxiliary enterprise revenue upon receipt from the student. Does not include capital grants & gifts or any ARRA revenues.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Federal nonoperating grants', [Definition] = 'Used for reporting all amounts reported as nonoperating revenues from federal governmental agencies that are provided on a nonexchange basis. Includes Pell Grants and other Federal student grant aid. Does not include revenues from the Federal Direct Student Loan (FDSL) Program, Federal Work-Study or federal veteran education benefits. These amounts should be captured as tuition and fees and/or sales and services of auxiliary enterprise revenue upon receipt from the student. Does not include capital grants & gifts or any ARRA revenues.', [SortOrder] = NULL WHERE [Code] = 'Federalnonoperatinggrants' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Federaloperatinggrantscontracts') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Federaloperatinggrantscontracts', 'Federal operating grants and contracts', 'Used for reporting revenues from federal governmental agencies that are for specific research projects or other types of programs and that are classified as operating revenues. Examples are research projects and similar activities for which amounts are received or expenditures are reimbursable under the terms of a grant or contract. Includes federal land grant appropriations if considered operating revenue. Does not include Pell grants or other federal student aid. Does not include any ARRA revenues.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Federal operating grants and contracts', [Definition] = 'Used for reporting revenues from federal governmental agencies that are for specific research projects or other types of programs and that are classified as operating revenues. Examples are research projects and similar activities for which amounts are received or expenditures are reimbursable under the terms of a grant or contract. Includes federal land grant appropriations if considered operating revenue. Does not include Pell grants or other federal student aid. Does not include any ARRA revenues.', [SortOrder] = NULL WHERE [Code] = 'Federaloperatinggrantscontracts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Giftsincludingcontributionsfromaffiliated') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Giftsincludingcontributionsfromaffiliated', 'Gifts, including contributions from affiliated organizations', 'Used for reporting revenues from private donors for which no legal consideration is provided; these would be nonexchange transactions as defined in GASB Statement No. 33 Accounting and Financial Reporting for Nonexchange Transactions. Includes all gifts or contributions to the institution except those classified as additions to permanent endowments or capital grants & gifts. Includes gifts from affiliated organizations. Includes the amount of contributed services recognized by the institution. Does not include capital grants & gifts.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Gifts, including contributions from affiliated organizations', [Definition] = 'Used for reporting revenues from private donors for which no legal consideration is provided; these would be nonexchange transactions as defined in GASB Statement No. 33 Accounting and Financial Reporting for Nonexchange Transactions. Includes all gifts or contributions to the institution except those classified as additions to permanent endowments or capital grants & gifts. Includes gifts from affiliated organizations. Includes the amount of contributed services recognized by the institution. Does not include capital grants & gifts.', [SortOrder] = NULL WHERE [Code] = 'Giftsincludingcontributionsfromaffiliated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Independentoperations') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Independentoperations', 'Independent operations', 'Includes all operating revenues associated with operations independent of the primary missions of the institution. This category generally includes only those revenues associated with major federally funded research and development centers. Does not include the net profit (or loss) from operations owned and managed as investments of the institution’s endowment funds.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Independent operations', [Definition] = 'Includes all operating revenues associated with operations independent of the primary missions of the institution. This category generally includes only those revenues associated with major federally funded research and development centers. Does not include the net profit (or loss) from operations owned and managed as investments of the institution’s endowment funds.', [SortOrder] = NULL WHERE [Code] = 'Independentoperations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Investmentincome') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Investmentincome', 'Investment income', 'Used for reporting all investment income not reported elsewhere.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Investment income', [Definition] = 'Used for reporting all investment income not reported elsewhere.', [SortOrder] = NULL WHERE [Code] = 'Investmentincome' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Localappropriationseducationdistrict') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Localappropriationseducationdistrict', 'Local appropriations, education district taxes, and similar support', 'Used for reporting all amounts received from property or other taxes assessed directly by or for an institution below the state level. Include any other similar general support provided to the institution from governments below the state level, including local government appropriations.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Local appropriations, education district taxes, and similar support', [Definition] = 'Used for reporting all amounts received from property or other taxes assessed directly by or for an institution below the state level. Include any other similar general support provided to the institution from governments below the state level, including local government appropriations.', [SortOrder] = NULL WHERE [Code] = 'Localappropriationseducationdistrict' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Localgovernmentnonoperatinggrants') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Localgovernmentnonoperatinggrants', 'Local government nonoperating grants', 'Used for reporting all amounts reported as nonoperating revenues from local governmental agencies and organizations that are provided on a nonexchange basis. Does not include capital grants & gifts.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Local government nonoperating grants', [Definition] = 'Used for reporting all amounts reported as nonoperating revenues from local governmental agencies and organizations that are provided on a nonexchange basis. Does not include capital grants & gifts.', [SortOrder] = NULL WHERE [Code] = 'Localgovernmentnonoperatinggrants' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Localgovernmentoperatinggrantscontracts') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Localgovernmentoperatinggrantscontracts', 'Local government operating grants and contracts', 'Used for reporting revenues from local governmental agencies that are for specific research projects or other types of programs and that are classified as operating revenues. Examples are research projects and similar activities for which amounts are received or expenditures are reimbursable under the terms of a grant or contract.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Local government operating grants and contracts', [Definition] = 'Used for reporting revenues from local governmental agencies that are for specific research projects or other types of programs and that are classified as operating revenues. Examples are research projects and similar activities for which amounts are received or expenditures are reimbursable under the terms of a grant or contract.', [SortOrder] = NULL WHERE [Code] = 'Localgovernmentoperatinggrantscontracts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Othernonoperatingrevenues') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Othernonoperatingrevenues', 'Other nonoperating revenues', 'Used for reporting all other nonoperating revenues not reported elsewhere. For institutions that received American Recovery and Reinvestment Act (ARRA) revenues during the reporting period, allow inclusion of these amounts.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Other nonoperating revenues', [Definition] = 'Used for reporting all other nonoperating revenues not reported elsewhere. For institutions that received American Recovery and Reinvestment Act (ARRA) revenues during the reporting period, allow inclusion of these amounts.', [SortOrder] = NULL WHERE [Code] = 'Othernonoperatingrevenues' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Otheroperatingrevenue') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Otheroperatingrevenue', 'Other operating revenue', 'Used for reporting all other sources not reported elsewhere.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Other operating revenue', [Definition] = 'Used for reporting all other sources not reported elsewhere.', [SortOrder] = NULL WHERE [Code] = 'Otheroperatingrevenue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Otherrevenuesadditions') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Otherrevenuesadditions', 'Other revenues and additions', 'Used for reporting all other revenues and additions not reported elsewhere.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Other revenues and additions', [Definition] = 'Used for reporting all other revenues and additions not reported elsewhere.', [SortOrder] = NULL WHERE [Code] = 'Otherrevenuesadditions' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Privateoperatinggrantscontracts') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Privateoperatinggrantscontracts', 'Private operating grants and contracts', 'Used for reporting revenues from nongovernmental agencies and organizations that are for specific research projects or other types of programs and that are classified as operating revenues. Examples are research projects and similar activities for which amounts are received or expenditures are reimbursable under the terms of a grant or contract.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Private operating grants and contracts', [Definition] = 'Used for reporting revenues from nongovernmental agencies and organizations that are for specific research projects or other types of programs and that are classified as operating revenues. Examples are research projects and similar activities for which amounts are received or expenditures are reimbursable under the terms of a grant or contract.', [SortOrder] = NULL WHERE [Code] = 'Privateoperatinggrantscontracts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Salesservicesofauxiliaryenterprisesnetofdiscounts') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Salesservicesofauxiliaryenterprisesnetofdiscounts', 'Sales and services of auxiliary enterprises (net discounts and allowances)', 'Used for reporting revenues (net of discounts & allowances) generated by auxiliary enterprises that exist to furnish a service to students, faculty, or staff, and that charge a fee that is directly related to the cost of the service. Examples are residence halls, food services, student health services, intercollegiate athletics, college unions, college stores, and movie theaters.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Sales and services of auxiliary enterprises (net discounts and allowances)', [Definition] = 'Used for reporting revenues (net of discounts & allowances) generated by auxiliary enterprises that exist to furnish a service to students, faculty, or staff, and that charge a fee that is directly related to the cost of the service. Examples are residence halls, food services, student health services, intercollegiate athletics, college unions, college stores, and movie theaters.', [SortOrder] = NULL WHERE [Code] = 'Salesservicesofauxiliaryenterprisesnetofdiscounts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Salesservicesofeducationalactivities') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Salesservicesofeducationalactivities', 'Sales & services of educational activities', 'Includes all operating revenues derived from the sales of goods or services that are incidental to the conduct of instruction, research or public service, and revenues of activities that exist to provide instructional and laboratory experience for students and that incidentally create goods and services that may be sold. Examples include film rentals, scientific and literary publications, testing services, university presses, dairies, and patient care clinics that are not part of a hospital.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Sales & services of educational activities', [Definition] = 'Includes all operating revenues derived from the sales of goods or services that are incidental to the conduct of instruction, research or public service, and revenues of activities that exist to provide instructional and laboratory experience for students and that incidentally create goods and services that may be sold. Examples include film rentals, scientific and literary publications, testing services, university presses, dairies, and patient care clinics that are not part of a hospital.', [SortOrder] = NULL WHERE [Code] = 'Salesservicesofeducationalactivities' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Salesservicesofhospitalsafterdeducting') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Salesservicesofhospitalsafterdeducting', 'Sales and services of hospitals (after deducting patient contractual allowances)', 'Includes operating revenues (net of patient contractual allowances) for a hospital operated by the institution and clinics associated with training. Excludes clinics that are part of the student health services program.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Sales and services of hospitals (after deducting patient contractual allowances)', [Definition] = 'Includes operating revenues (net of patient contractual allowances) for a hospital operated by the institution and clinics associated with training. Excludes clinics that are part of the student health services program.', [SortOrder] = NULL WHERE [Code] = 'Salesservicesofhospitalsafterdeducting' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Stateappropriations') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Stateappropriations', 'State appropriations', 'Used for reporting all amounts received by the institution through acts of a state legislative body, except grants and contracts and amounts reportable as capital appropriations. Funds reported in this category are for meeting current operating expenses, not for specific projects or programs. Does not include any ARRA revenues.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'State appropriations', [Definition] = 'Used for reporting all amounts received by the institution through acts of a state legislative body, except grants and contracts and amounts reportable as capital appropriations. Funds reported in this category are for meeting current operating expenses, not for specific projects or programs. Does not include any ARRA revenues.', [SortOrder] = NULL WHERE [Code] = 'Stateappropriations' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Statenonoperatinggrants') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Statenonoperatinggrants', 'State nonoperating grants', 'Used for reporting all amounts reported as nonoperating revenues from state governmental agencies that are provided on a nonexchange basis. Does not include capital grants & gifts or any ARRA revenues.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'State nonoperating grants', [Definition] = 'Used for reporting all amounts reported as nonoperating revenues from state governmental agencies that are provided on a nonexchange basis. Does not include capital grants & gifts or any ARRA revenues.', [SortOrder] = NULL WHERE [Code] = 'Statenonoperatinggrants' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Stateoperatinggrantscontracts') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Stateoperatinggrantscontracts', 'State operating grants and contracts', 'Used for reporting revenues from state governmental agencies that are for specific research projects or other types of programs and that are classified as operating revenues. Examples are research projects and similar activities for which amounts are received or expenditures are reimbursable under the terms of a grant or contract. Does not include any ARRA revenues.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'State operating grants and contracts', [Definition] = 'Used for reporting revenues from state governmental agencies that are for specific research projects or other types of programs and that are classified as operating revenues. Examples are research projects and similar activities for which amounts are received or expenditures are reimbursable under the terms of a grant or contract. Does not include any ARRA revenues.', [SortOrder] = NULL WHERE [Code] = 'Stateoperatinggrantscontracts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBRevenue] WHERE [Code] = 'Tuitionfeesnetofdiscountsallowances') BEGIN INSERT INTO dbo.[RefIPEDSGASBRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Tuitionfeesnetofdiscountsallowances', 'Tuition and fees (net discounts and allowances)', 'Used for reporting all tuition & fees (including student activity fees) revenue received from students for education purposes. Include revenues for tuition and fees net of discounts & allowances from institutional and governmental scholarships, waivers, etc. (report gross revenues minus discounts and allowances). Includes those tuition and fees that are remitted to the state as an offset to state appropriations. (Charges for room, board, and other services rendered by auxiliary enterprises are not reported here.)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBRevenue] -SET [Description] = 'Tuition and fees (net discounts and allowances)', [Definition] = 'Used for reporting all tuition & fees (including student activity fees) revenue received from students for education purposes. Include revenues for tuition and fees net of discounts & allowances from institutional and governmental scholarships, waivers, etc. (report gross revenues minus discounts and allowances). Includes those tuition and fees that are remitted to the state as an offset to state appropriations. (Charges for room, board, and other services rendered by auxiliary enterprises are not reported here.)', [SortOrder] = NULL WHERE [Code] = 'Tuitionfeesnetofdiscountsallowances' END -END - -PRINT N'Populate RefIPEDSGASBScholarshipsandFellowshipsRevenue table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIPEDSGASBScholarshipsandFellowshipsRevenue]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Discountsallowancesappliedtosalesservices') BEGIN INSERT INTO dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Discountsallowancesappliedtosalesservices', 'Discounts & allowances applied to sales & services of auxiliary enterprises', 'The amount of discounts & allowances that were recorded as an offset (reduction) to revenues of auxiliary enterprises (room and board, books, meals, etc.).', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Discounts & allowances applied to sales & services of auxiliary enterprises', [Definition] = 'The amount of discounts & allowances that were recorded as an offset (reduction) to revenues of auxiliary enterprises (room and board, books, meals, etc.).', [SortOrder] = NULL WHERE [Code] = 'Discountsallowancesappliedtosalesservices' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Discountsallowancesappliedtotuitionfees') BEGIN INSERT INTO dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Discountsallowancesappliedtotuitionfees', 'Discounts & allowances applied to tuition & fees', 'The amount of discounts & allowances that were recorded as an offset (reduction) to student tuition & fees.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Discounts & allowances applied to tuition & fees', [Definition] = 'The amount of discounts & allowances that were recorded as an offset (reduction) to student tuition & fees.', [SortOrder] = NULL WHERE [Code] = 'Discountsallowancesappliedtotuitionfees' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Grantsbylocalgovernment') BEGIN INSERT INTO dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Grantsbylocalgovernment', 'Grants by local government', 'Local government grants include scholarships or gift-aid awarded directly to the student.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Grants by local government', [Definition] = 'Local government grants include scholarships or gift-aid awarded directly to the student.', [SortOrder] = NULL WHERE [Code] = 'Grantsbylocalgovernment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Grantsbystategovernment') BEGIN INSERT INTO dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Grantsbystategovernment', 'Grants by state government', 'Grant monies provided by the state such as Leveraging Educational Assistance Partnerships (LEAP) (formerly SSIG''s); merit scholarships provided by the state; and tuition and fee waivers for which the institution was reimbursed by a state agency.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Grants by state government', [Definition] = 'Grant monies provided by the state such as Leveraging Educational Assistance Partnerships (LEAP) (formerly SSIG''s); merit scholarships provided by the state; and tuition and fee waivers for which the institution was reimbursed by a state agency.', [SortOrder] = NULL WHERE [Code] = 'Grantsbystategovernment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Institutionalgrantsfromrestrictedresources') BEGIN INSERT INTO dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Institutionalgrantsfromrestrictedresources', 'Institutional grants from restricted resources', 'Institutional grants to students funded from restricted-expendable resources for student aid, such as scholarships and fellowships.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Institutional grants from restricted resources', [Definition] = 'Institutional grants to students funded from restricted-expendable resources for student aid, such as scholarships and fellowships.', [SortOrder] = NULL WHERE [Code] = 'Institutionalgrantsfromrestrictedresources' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Institutionalgrantsfromunrestrictedresources') BEGIN INSERT INTO dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Institutionalgrantsfromunrestrictedresources', 'Institutional grants from unrestricted resources', 'Institutional grants to students that are funded from resources that are not restricted to any particular purpose.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Institutional grants from unrestricted resources', [Definition] = 'Institutional grants to students that are funded from resources that are not restricted to any particular purpose.', [SortOrder] = NULL WHERE [Code] = 'Institutionalgrantsfromunrestrictedresources' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Otherfederalgrants') BEGIN INSERT INTO dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Otherfederalgrants', 'Other federal grants', 'Federal monies awarded to the institution under federal government student aid programs, such as the Federal Supplemental Educational Opportunity Grants (FSEOG), DHHS training grants (aid portion only), the Leveraging Education Assistance Partnership (LEAP) program, and other federal student aid programs. Pell Grants are not included in this classification. Note: if the federal government selects the student recipients and simply transmits the funds to the institution for disbursement to the student, the amounts are not considered as revenues and subsequently there are no discounts and allowances or scholarships and fellowships expenses. If the funds are made available to the institution for selection of student recipients, then the amounts received are considered as nonoperating revenues and subsequently as discounts and allowances or scholarships and fellowships expenses.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Other federal grants', [Definition] = 'Federal monies awarded to the institution under federal government student aid programs, such as the Federal Supplemental Educational Opportunity Grants (FSEOG), DHHS training grants (aid portion only), the Leveraging Education Assistance Partnership (LEAP) program, and other federal student aid programs. Pell Grants are not included in this classification. Note: if the federal government selects the student recipients and simply transmits the funds to the institution for disbursement to the student, the amounts are not considered as revenues and subsequently there are no discounts and allowances or scholarships and fellowships expenses. If the funds are made available to the institution for selection of student recipients, then the amounts received are considered as nonoperating revenues and subsequently as discounts and allowances or scholarships and fellowships expenses.', [SortOrder] = NULL WHERE [Code] = 'Otherfederalgrants' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] WHERE [Code] = 'Pellgrants') BEGIN INSERT INTO dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Pellgrants', 'Pell grants', 'The gross amount of Pell Grants made available to recipients by your institution. This is the gross Pell Grants received as federal grant revenue for the fiscal year.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSGASBScholarshipsandFellowshipsRevenue] -SET [Description] = 'Pell grants', [Definition] = 'The gross amount of Pell Grants made available to recipients by your institution. This is the gross Pell Grants received as federal grant revenue for the fiscal year.', [SortOrder] = NULL WHERE [Code] = 'Pellgrants' END -END - -PRINT N'Populate RefIPEDSIntercollegiateAthleticsExpenses table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIPEDSIntercollegiateAthleticsExpenses]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSIntercollegiateAthleticsExpenses] WHERE [Code] = 'Auxiliaryenterprises') BEGIN INSERT INTO dbo.[RefIPEDSIntercollegiateAthleticsExpenses]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Auxiliaryenterprises', 'Auxiliary enterprises', 'Expenses for essentially self-supporting operations of the institution that exist to furnish a service to students, faculty, or staff, and that charge a fee that is directly related to, although not necessarily equal to, the cost of the service. Examples are residence halls, food services, student health services, intercollegiate athletics (only if essentially self-supporting), college unions, college stores, faculty and staff parking, and faculty housing. Institutions include actual or allocated costs for operation and maintenance of plant, interest and depreciation.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSIntercollegiateAthleticsExpenses] -SET [Description] = 'Auxiliary enterprises', [Definition] = 'Expenses for essentially self-supporting operations of the institution that exist to furnish a service to students, faculty, or staff, and that charge a fee that is directly related to, although not necessarily equal to, the cost of the service. Examples are residence halls, food services, student health services, intercollegiate athletics (only if essentially self-supporting), college unions, college stores, faculty and staff parking, and faculty housing. Institutions include actual or allocated costs for operation and maintenance of plant, interest and depreciation.', [SortOrder] = NULL WHERE [Code] = 'Auxiliaryenterprises' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSIntercollegiateAthleticsExpenses] WHERE [Code] = 'Doesnotparticipateinintercollegiateathletics') BEGIN INSERT INTO dbo.[RefIPEDSIntercollegiateAthleticsExpenses]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Doesnotparticipateinintercollegiateathletics', 'Does not participate in intercollegiate athletics', NULL, NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSIntercollegiateAthleticsExpenses] -SET [Description] = 'Does not participate in intercollegiate athletics', [Definition] = NULL, [SortOrder] = NULL WHERE [Code] = 'Doesnotparticipateinintercollegiateathletics' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSIntercollegiateAthleticsExpenses] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefIPEDSIntercollegiateAthleticsExpenses]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', NULL, NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSIntercollegiateAthleticsExpenses] -SET [Description] = 'Other', [Definition] = NULL, [SortOrder] = NULL WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSIntercollegiateAthleticsExpenses] WHERE [Code] = 'Studentservices') BEGIN INSERT INTO dbo.[RefIPEDSIntercollegiateAthleticsExpenses]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Studentservices', 'Student services', 'A functional expense category that includes expenses for admissions, registrar activities, and activities whose primary purpose is to contribute to students emotional and physical well-being and to their intellectual, cultural, and social development outside the context of the formal instructional program. Examples include student activities, cultural events, student newspapers, intramural athletics, student organizations, supplemental instruction outside the normal administration, and student records. Intercollegiate athletics and student health services may also be included except when operated as self-supporting auxiliary enterprises. Also may include information technology expenses related to student service activities if the institution separately budgets and expenses information technology resources(otherwise these expenses are included in institutional support.) Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSIntercollegiateAthleticsExpenses] -SET [Description] = 'Student services', [Definition] = 'A functional expense category that includes expenses for admissions, registrar activities, and activities whose primary purpose is to contribute to students emotional and physical well-being and to their intellectual, cultural, and social development outside the context of the formal instructional program. Examples include student activities, cultural events, student newspapers, intramural athletics, student organizations, supplemental instruction outside the normal administration, and student records. Intercollegiate athletics and student health services may also be included except when operated as self-supporting auxiliary enterprises. Also may include information technology expenses related to student service activities if the institution separately budgets and expenses information technology resources(otherwise these expenses are included in institutional support.) Institutions include actual or allocated costs for operation and maintenance of plant, interest, and depreciation.', [SortOrder] = NULL WHERE [Code] = 'Studentservices' END -END - -PRINT N'Populate RefIPEDSNaturalExpense table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIPEDSNaturalExpense]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSNaturalExpense] WHERE [Code] = 'Benefits') BEGIN INSERT INTO dbo.[RefIPEDSNaturalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Benefits', 'Benefits', 'Cash contributions in the form of supplementary or deferred compensation other than salary. Excludes the employee''s contribution. Employee fringe benefits include retirement plans, social security taxes, medical/dental plans, guaranteed disability income protection plans, tuition plans, housing plans, unemployment compensation plans, group life insurance plans, worker''s compensation plans, and other benefits in-kind with cash options.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSNaturalExpense] -SET [Description] = 'Benefits', [Definition] = 'Cash contributions in the form of supplementary or deferred compensation other than salary. Excludes the employee''s contribution. Employee fringe benefits include retirement plans, social security taxes, medical/dental plans, guaranteed disability income protection plans, tuition plans, housing plans, unemployment compensation plans, group life insurance plans, worker''s compensation plans, and other benefits in-kind with cash options.', [SortOrder] = NULL WHERE [Code] = 'Benefits' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSNaturalExpense] WHERE [Code] = 'Depreciation') BEGIN INSERT INTO dbo.[RefIPEDSNaturalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Depreciation', 'Depreciation', 'The allocation or distribution of the cost of capital assets, less any salvage value, to expenses over the estimated useful life of the asset in a systematic and rational manner. Depreciation for the year is the amount of the allocation or distribution for the year involved.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSNaturalExpense] -SET [Description] = 'Depreciation', [Definition] = 'The allocation or distribution of the cost of capital assets, less any salvage value, to expenses over the estimated useful life of the asset in a systematic and rational manner. Depreciation for the year is the amount of the allocation or distribution for the year involved.', [SortOrder] = NULL WHERE [Code] = 'Depreciation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSNaturalExpense] WHERE [Code] = 'Interest') BEGIN INSERT INTO dbo.[RefIPEDSNaturalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Interest', 'Interest', 'The price paid (or received) for the use of money over a period of time. Interest income is one component of investment income. Interest paid by the institution is interest expense.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSNaturalExpense] -SET [Description] = 'Interest', [Definition] = 'The price paid (or received) for the use of money over a period of time. Interest income is one component of investment income. Interest paid by the institution is interest expense.', [SortOrder] = NULL WHERE [Code] = 'Interest' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSNaturalExpense] WHERE [Code] = 'Operationmaintenanceofplant') BEGIN INSERT INTO dbo.[RefIPEDSNaturalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Operationmaintenanceofplant', 'Operation and maintenance of plant', 'An expense category that includes expenses for operations established to provide service and maintenance related to campus grounds and facilities used for educational and general purposes. Specific expenses include utilities, fire protection, property insurance, and similar items. This expense does include amounts charged to auxiliary enterprises, hospitals, and independent operations. Also includes information technology expenses related to operation and maintenance of plant activities if the institution separately budgets and expenses information technology resources (otherwise these expenses are included in institutional support).', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSNaturalExpense] -SET [Description] = 'Operation and maintenance of plant', [Definition] = 'An expense category that includes expenses for operations established to provide service and maintenance related to campus grounds and facilities used for educational and general purposes. Specific expenses include utilities, fire protection, property insurance, and similar items. This expense does include amounts charged to auxiliary enterprises, hospitals, and independent operations. Also includes information technology expenses related to operation and maintenance of plant activities if the institution separately budgets and expenses information technology resources (otherwise these expenses are included in institutional support).', [SortOrder] = NULL WHERE [Code] = 'Operationmaintenanceofplant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSNaturalExpense] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefIPEDSNaturalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', NULL, NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSNaturalExpense] -SET [Description] = 'Other', [Definition] = NULL, [SortOrder] = NULL WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPEDSNaturalExpense] WHERE [Code] = 'Salarieswages') BEGIN INSERT INTO dbo.[RefIPEDSNaturalExpense]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Salarieswages', 'Salaries and wages', 'Amounts paid as compensation for services to all employees - faculty, staff, part-time, full-time, regular employees, and student employees. This includes regular or periodic payment to a person for the regular or periodic performance of work or a service and payment to a person for more sporadic performance of work or a service (overtime, extra compensation, summer compensation, bonuses, sick or annual leave, etc.).', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPEDSNaturalExpense] -SET [Description] = 'Salaries and wages', [Definition] = 'Amounts paid as compensation for services to all employees - faculty, staff, part-time, full-time, regular employees, and student employees. This includes regular or periodic payment to a person for the regular or periodic performance of work or a service and payment to a person for more sporadic performance of work or a service (overtime, extra compensation, summer compensation, bonuses, sick or annual leave, etc.).', [SortOrder] = NULL WHERE [Code] = 'Salarieswages' END -END - -PRINT N'Populate RefIpedsOccupationalCategory table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIpedsOccupationalCategory]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Postsecondary Teacher: Instruction', 'Postsecondary Teacher: Instruction is the IPEDS occupational category used to report the employee.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Postsecondary Teacher: Instruction', [Definition] = 'Postsecondary Teacher: Instruction is the IPEDS occupational category used to report the employee.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Postsecondary Teacher: Instruction/Research/Public Service', 'Postsecondary Teacher: Instruction/Research/Public Service is the IPEDS occupational category used to report the employee.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Postsecondary Teacher: Instruction/Research/Public Service', [Definition] = 'Postsecondary Teacher: Instruction/Research/Public Service is the IPEDS occupational category used to report the employee.', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Postsecondary Teacher: Research', 'Postsecondary Teacher: Research is the IPEDS occupational category used to report the employee.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Postsecondary Teacher: Research', [Definition] = 'Postsecondary Teacher: Research is the IPEDS occupational category used to report the employee.', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Postsecondary Teacher: Public Service', 'Postsecondary Teacher: Public Service is the IPEDS occupational category used to report the employee.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Postsecondary Teacher: Public Service', [Definition] = 'Postsecondary Teacher: Public Service is the IPEDS occupational category used to report the employee.', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Archivists, Curators, and Museum Technicians', 'Archivists, Curators, and Museum Technicians is the IPEDS occupational category used to report the employee.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Archivists, Curators, and Museum Technicians', [Definition] = 'Archivists, Curators, and Museum Technicians is the IPEDS occupational category used to report the employee.', [SortOrder] = 5.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Librarians', 'Librarians is the IPEDS occupational category used to report the employee.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Librarians', [Definition] = 'Librarians is the IPEDS occupational category used to report the employee.', [SortOrder] = 6.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Librarian Technicians', 'Librarian Technicians is the IPEDS occupational category used to report the employee.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Librarian Technicians', [Definition] = 'Librarian Technicians is the IPEDS occupational category used to report the employee.', [SortOrder] = 7.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Non-Postsecondary Teachers', 'Non-Postsecondary Teachers is the IPEDS occupational category used to report the employee.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Non-Postsecondary Teachers', [Definition] = 'Non-Postsecondary Teachers is the IPEDS occupational category used to report the employee.', [SortOrder] = 8.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Management Occupations', 'Management Occupations is the IPEDS occupational category used to report the employee.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Management Occupations', [Definition] = 'Management Occupations is the IPEDS occupational category used to report the employee.', [SortOrder] = 9.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Business and Financial Occupations', 'Business and Financial Occupations is the IPEDS occupational category used to report the employee.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Business and Financial Occupations', [Definition] = 'Business and Financial Occupations is the IPEDS occupational category used to report the employee.', [SortOrder] = 10.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Computer, Engineering and Science Occupations', 'Computer, Engineering and Science Occupations is the IPEDS occupational category used to report the employee.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Computer, Engineering and Science Occupations', [Definition] = 'Computer, Engineering and Science Occupations is the IPEDS occupational category used to report the employee.', [SortOrder] = 11.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Community Service, Legal, Arts, and Media Occupations', 'Community Service, Legal, Arts, and Media Occupations is the IPEDS occupational category used to report the employee.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Community Service, Legal, Arts, and Media Occupations', [Definition] = 'Community Service, Legal, Arts, and Media Occupations is the IPEDS occupational category used to report the employee.', [SortOrder] = 12.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '13') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13', 'Healthcare Practitioners and Technical Occupations', 'Healthcare Practitioners and Technical Occupations is the IPEDS occupational category used to report the employee.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Healthcare Practitioners and Technical Occupations', [Definition] = 'Healthcare Practitioners and Technical Occupations is the IPEDS occupational category used to report the employee.', [SortOrder] = 13.00 WHERE [Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '14') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14', 'Service Occupations', 'Service Occupations is the IPEDS occupational category used to report the employee.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Service Occupations', [Definition] = 'Service Occupations is the IPEDS occupational category used to report the employee.', [SortOrder] = 14.00 WHERE [Code] = '14' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '15') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('15', 'Sales and Related Occupations', 'Sales and Related Occupations is the IPEDS occupational category used to report the employee.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Sales and Related Occupations', [Definition] = 'Sales and Related Occupations is the IPEDS occupational category used to report the employee.', [SortOrder] = 15.00 WHERE [Code] = '15' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '16') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('16', 'Office and Administrative Support Occupations', 'Office and Administrative Support Occupations is the IPEDS occupational category used to report the employee.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Office and Administrative Support Occupations', [Definition] = 'Office and Administrative Support Occupations is the IPEDS occupational category used to report the employee.', [SortOrder] = 16.00 WHERE [Code] = '16' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '17') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('17', 'Natural Resources, Construction', 'Natural Resources, Construction is the IPEDS occupational category used to report the employee.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Natural Resources, Construction', [Definition] = 'Natural Resources, Construction is the IPEDS occupational category used to report the employee.', [SortOrder] = 17.00 WHERE [Code] = '17' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIpedsOccupationalCategory] WHERE [Code] = '18') BEGIN INSERT INTO dbo.[RefIpedsOccupationalCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('18', 'Maintenance Occupations', 'Maintenance Occupations is the IPEDS occupational category used to report the employee.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIpedsOccupationalCategory] -SET [Description] = 'Maintenance Occupations', [Definition] = 'Maintenance Occupations is the IPEDS occupational category used to report the employee.', [SortOrder] = 18.00 WHERE [Code] = '18' END -END - -PRINT N'Populate RefIPSPProgressReportSchedule table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIPSPProgressReportSchedule]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPSPProgressReportSchedule] WHERE [Code] = 'Daily') BEGIN INSERT INTO dbo.[RefIPSPProgressReportSchedule]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Daily', 'Daily', 'Daily is the frequency by which parents are notified of the student’s progress on annual goals.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPSPProgressReportSchedule] -SET [Description] = 'Daily', [Definition] = 'Daily is the frequency by which parents are notified of the student’s progress on annual goals.', [SortOrder] = NULL WHERE [Code] = 'Daily' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPSPProgressReportSchedule] WHERE [Code] = 'Monthly') BEGIN INSERT INTO dbo.[RefIPSPProgressReportSchedule]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Monthly', 'Monthly', 'Monthly is the frequency by which parents are notified of the student’s progress on annual goals.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPSPProgressReportSchedule] -SET [Description] = 'Monthly', [Definition] = 'Monthly is the frequency by which parents are notified of the student’s progress on annual goals.', [SortOrder] = NULL WHERE [Code] = 'Monthly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPSPProgressReportSchedule] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefIPSPProgressReportSchedule]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is specified as the frequency by which parents are notified of the student’s progress on annual goals.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPSPProgressReportSchedule] -SET [Description] = 'Other', [Definition] = 'Other is specified as the frequency by which parents are notified of the student’s progress on annual goals.', [SortOrder] = NULL WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPSPProgressReportSchedule] WHERE [Code] = 'Quarterly') BEGIN INSERT INTO dbo.[RefIPSPProgressReportSchedule]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Quarterly', 'Quarterly', 'Quarterly is the frequency by which parents are notified of the student’s progress on annual goals.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPSPProgressReportSchedule] -SET [Description] = 'Quarterly', [Definition] = 'Quarterly is the frequency by which parents are notified of the student’s progress on annual goals.', [SortOrder] = NULL WHERE [Code] = 'Quarterly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPSPProgressReportSchedule] WHERE [Code] = 'Term') BEGIN INSERT INTO dbo.[RefIPSPProgressReportSchedule]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Term', 'Term', 'Term is the frequency by which parents are notified of the student’s progress on annual goals.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPSPProgressReportSchedule] -SET [Description] = 'Term', [Definition] = 'Term is the frequency by which parents are notified of the student’s progress on annual goals.', [SortOrder] = NULL WHERE [Code] = 'Term' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPSPProgressReportSchedule] WHERE [Code] = 'Weekly') BEGIN INSERT INTO dbo.[RefIPSPProgressReportSchedule]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Weekly', 'Weekly', 'Weekly is the frequency by which parents are notified of the student’s progress on annual goals.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPSPProgressReportSchedule] -SET [Description] = 'Weekly', [Definition] = 'Weekly is the frequency by which parents are notified of the student’s progress on annual goals.', [SortOrder] = NULL WHERE [Code] = 'Weekly' END -END - -PRINT N'Populate RefIPSPProgressReportType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefIPSPProgressReportType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPSPProgressReportType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefIPSPProgressReportType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The method by which parents are notified of the student’s progress on annual goal is in a category not yet defined in CEDS.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPSPProgressReportType] -SET [Description] = 'Other', [Definition] = 'The method by which parents are notified of the student’s progress on annual goal is in a category not yet defined in CEDS.', [SortOrder] = NULL WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPSPProgressReportType] WHERE [Code] = 'Parentconference') BEGIN INSERT INTO dbo.[RefIPSPProgressReportType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Parentconference', 'Parent conference', 'Parent conference is a method by which parents are notified of the student’s progress on annual goal.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPSPProgressReportType] -SET [Description] = 'Parent conference', [Definition] = 'Parent conference is a method by which parents are notified of the student’s progress on annual goal.', [SortOrder] = NULL WHERE [Code] = 'Parentconference' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPSPProgressReportType] WHERE [Code] = 'Progressreports') BEGIN INSERT INTO dbo.[RefIPSPProgressReportType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Progressreports', 'Progress reports', 'Progress reports are a method by which parents are notified of the student’s progress on annual goal.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPSPProgressReportType] -SET [Description] = 'Progress reports', [Definition] = 'Progress reports are a method by which parents are notified of the student’s progress on annual goal.', [SortOrder] = NULL WHERE [Code] = 'Progressreports' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefIPSPProgressReportType] WHERE [Code] = 'Reportcard') BEGIN INSERT INTO dbo.[RefIPSPProgressReportType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Reportcard', 'Report card', 'Report card is a method by which parents are notified of the student’s progress on annual goal.', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIPSPProgressReportType] -SET [Description] = 'Report card', [Definition] = 'Report card is a method by which parents are notified of the student’s progress on annual goal.', [SortOrder] = NULL WHERE [Code] = 'Reportcard' END -END - -PRINT N'Populate RefISO6392Language table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefISO6392Language]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'abk') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abk', 'Abkhazian', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Abkhazian', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'abk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ace') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ace', 'Achinese', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Achinese', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'ace' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ach') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ach', 'Acoli', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Acoli', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'ach' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ada') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ada', 'Adangme', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Adangme', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'ada' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ady') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ady', 'Adyghe; Adygei', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Adyghe; Adygei', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = 'ady' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'aar') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aar', 'Afar', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Afar', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = 'aar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'afh') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afh', 'Afrihili', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Afrihili', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = 'afh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'afr') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afr', 'Afrikaans', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Afrikaans', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = 'afr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'afa') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afa', 'Afro-Asiatic languages', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Afro-Asiatic languages', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = 'afa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ain') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ain', 'Ainu', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ainu', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = 'ain' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'aka') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aka', 'Akan', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Akan', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = 'aka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'akk') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akk', 'Akkadian', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Akkadian', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = 'akk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'alb') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alb', 'Albanian', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Albanian', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = 'alb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ale') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ale', 'Aleut', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Aleut', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = 'ale' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'alg') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alg', 'Algonquian languages', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Algonquian languages', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = 'alg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tut') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tut', 'Altaic languages', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Altaic languages', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = 'tut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'amh') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amh', 'Amharic', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Amharic', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = 'amh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'anp') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anp', 'Angika', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Angika', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = 'anp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'apa') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apa', 'Apache languages', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Apache languages', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = 'apa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ara') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ara', 'Arabic', NULL, 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Arabic', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = 'ara' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'arg') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arg', 'Aragonese', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Aragonese', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = 'arg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'arp') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arp', 'Arapaho', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Arapaho', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = 'arp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'arw') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arw', 'Arawak', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Arawak', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = 'arw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'arm') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arm', 'Armenian', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Armenian', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = 'arm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'rup') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rup', 'Aromanian; Arumanian; Macedo-Romanian', NULL, 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Aromanian; Arumanian; Macedo-Romanian', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = 'rup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'art') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('art', 'Artificial languages', NULL, 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Artificial languages', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = 'art' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'asm') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asm', 'Assamese', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Assamese', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = 'asm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ast') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ast', 'Asturian; Bable; Leonese; Asturleonese', NULL, 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Asturian; Bable; Leonese; Asturleonese', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = 'ast' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ath') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ath', 'Athapascan languages', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Athapascan languages', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = 'ath' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'aus') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aus', 'Australian languages', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Australian languages', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = 'aus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'map') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('map', 'Austronesian languages', NULL, 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Austronesian languages', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = 'map' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ava') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ava', 'Avaric', NULL, 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Avaric', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = 'ava' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ave') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ave', 'Avestan', NULL, 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Avestan', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = 'ave' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'awa') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awa', 'Awadhi', NULL, 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Awadhi', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = 'awa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'aym') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aym', 'Aymara', NULL, 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Aymara', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = 'aym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'aze') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aze', 'Azerbaijani', NULL, 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Azerbaijani', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = 'aze' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ban') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ban', 'Balinese', NULL, 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Balinese', [Definition] = NULL, [SortOrder] = 37.00 WHERE [Code] = 'ban' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bat') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bat', 'Baltic languages', NULL, 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Baltic languages', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = 'bat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bal') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bal', 'Baluchi', NULL, 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Baluchi', [Definition] = NULL, [SortOrder] = 39.00 WHERE [Code] = 'bal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bam') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bam', 'Bambara', NULL, 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Bambara', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = 'bam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bai') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bai', 'Bamileke languages', NULL, 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Bamileke languages', [Definition] = NULL, [SortOrder] = 41.00 WHERE [Code] = 'bai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bad') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bad', 'Banda languages', NULL, 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Banda languages', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = 'bad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bnt') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnt', 'Bantu languages', NULL, 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Bantu languages', [Definition] = NULL, [SortOrder] = 43.00 WHERE [Code] = 'bnt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bas') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bas', 'Basa', NULL, 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Basa', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = 'bas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bak') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bak', 'Bashkir', NULL, 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Bashkir', [Definition] = NULL, [SortOrder] = 45.00 WHERE [Code] = 'bak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'baq') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baq', 'Basque', NULL, 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Basque', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = 'baq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'btk') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btk', 'Batak languages', NULL, 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Batak languages', [Definition] = NULL, [SortOrder] = 47.00 WHERE [Code] = 'btk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bej') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bej', 'Beja; Bedawiyet', NULL, 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Beja; Bedawiyet', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = 'bej' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bel') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bel', 'Belarusian', NULL, 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Belarusian', [Definition] = NULL, [SortOrder] = 49.00 WHERE [Code] = 'bel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bem') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bem', 'Bemba', NULL, 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Bemba', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = 'bem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ben') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ben', 'Bengali', NULL, 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Bengali', [Definition] = NULL, [SortOrder] = 51.00 WHERE [Code] = 'ben' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ber') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ber', 'Berber languages', NULL, 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Berber languages', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = 'ber' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bho') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bho', 'Bhojpuri', NULL, 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Bhojpuri', [Definition] = NULL, [SortOrder] = 53.00 WHERE [Code] = 'bho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bih') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bih', 'Bihari languages', NULL, 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Bihari languages', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = 'bih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bik') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bik', 'Bikol', NULL, 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Bikol', [Definition] = NULL, [SortOrder] = 55.00 WHERE [Code] = 'bik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bin') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bin', 'Bini; Edo', NULL, 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Bini; Edo', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = 'bin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bis') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bis', 'Bislama', NULL, 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Bislama', [Definition] = NULL, [SortOrder] = 57.00 WHERE [Code] = 'bis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'byn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byn', 'Blin; Bilin', NULL, 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Blin; Bilin', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = 'byn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'zbl') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbl', 'Blissymbols; Blissymbolics; Bliss', NULL, 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Blissymbols; Blissymbolics; Bliss', [Definition] = NULL, [SortOrder] = 59.00 WHERE [Code] = 'zbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nob') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nob', 'Bokmål, Norwegian; Norwegian Bokmål', NULL, 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Bokmål, Norwegian; Norwegian Bokmål', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = 'nob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bos') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bos', 'Bosnian', NULL, 61.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Bosnian', [Definition] = NULL, [SortOrder] = 61.00 WHERE [Code] = 'bos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bra') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bra', 'Braj', NULL, 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Braj', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = 'bra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bre') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bre', 'Breton', NULL, 63.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Breton', [Definition] = NULL, [SortOrder] = 63.00 WHERE [Code] = 'bre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bug') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bug', 'Buginese', NULL, 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Buginese', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = 'bug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bul') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bul', 'Bulgarian', NULL, 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Bulgarian', [Definition] = NULL, [SortOrder] = 65.00 WHERE [Code] = 'bul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bua') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bua', 'Buriat', NULL, 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Buriat', [Definition] = NULL, [SortOrder] = 66.00 WHERE [Code] = 'bua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bur') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bur', 'Burmese', NULL, 67.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Burmese', [Definition] = NULL, [SortOrder] = 67.00 WHERE [Code] = 'bur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cad') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cad', 'Caddo', NULL, 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Caddo', [Definition] = NULL, [SortOrder] = 68.00 WHERE [Code] = 'cad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cat') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cat', 'Catalan; Valencian', NULL, 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Catalan; Valencian', [Definition] = NULL, [SortOrder] = 69.00 WHERE [Code] = 'cat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cau') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cau', 'Caucasian languages', NULL, 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Caucasian languages', [Definition] = NULL, [SortOrder] = 70.00 WHERE [Code] = 'cau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ceb') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ceb', 'Cebuano', NULL, 71.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Cebuano', [Definition] = NULL, [SortOrder] = 71.00 WHERE [Code] = 'ceb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cel') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cel', 'Celtic languages', NULL, 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Celtic languages', [Definition] = NULL, [SortOrder] = 72.00 WHERE [Code] = 'cel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cai') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cai', 'Central American Indian languages', NULL, 73.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Central American Indian languages', [Definition] = NULL, [SortOrder] = 73.00 WHERE [Code] = 'cai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'khm') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khm', 'Central Khmer', NULL, 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Central Khmer', [Definition] = NULL, [SortOrder] = 74.00 WHERE [Code] = 'khm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'chg') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chg', 'Chagatai', NULL, 75.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Chagatai', [Definition] = NULL, [SortOrder] = 75.00 WHERE [Code] = 'chg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cmc') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmc', 'Chamic languages', NULL, 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Chamic languages', [Definition] = NULL, [SortOrder] = 76.00 WHERE [Code] = 'cmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cha') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cha', 'Chamorro', NULL, 77.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Chamorro', [Definition] = NULL, [SortOrder] = 77.00 WHERE [Code] = 'cha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'che') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('che', 'Chechen', NULL, 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Chechen', [Definition] = NULL, [SortOrder] = 78.00 WHERE [Code] = 'che' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'chr') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chr', 'Cherokee', NULL, 79.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Cherokee', [Definition] = NULL, [SortOrder] = 79.00 WHERE [Code] = 'chr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'chy') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chy', 'Cheyenne', NULL, 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Cheyenne', [Definition] = NULL, [SortOrder] = 80.00 WHERE [Code] = 'chy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'chb') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chb', 'Chibcha', NULL, 81.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Chibcha', [Definition] = NULL, [SortOrder] = 81.00 WHERE [Code] = 'chb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nya') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nya', 'Chichewa; Chewa; Nyanja', NULL, 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Chichewa; Chewa; Nyanja', [Definition] = NULL, [SortOrder] = 82.00 WHERE [Code] = 'nya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'chi') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chi', 'Chinese', NULL, 83.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Chinese', [Definition] = NULL, [SortOrder] = 83.00 WHERE [Code] = 'chi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'chn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chn', 'Chinook jargon', NULL, 84.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Chinook jargon', [Definition] = NULL, [SortOrder] = 84.00 WHERE [Code] = 'chn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'chp') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chp', 'Chipewyan; Dene Suline', NULL, 85.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Chipewyan; Dene Suline', [Definition] = NULL, [SortOrder] = 85.00 WHERE [Code] = 'chp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cho') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cho', 'Choctaw', NULL, 86.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Choctaw', [Definition] = NULL, [SortOrder] = 86.00 WHERE [Code] = 'cho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'chu') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chu', 'Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic', NULL, 87.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic', [Definition] = NULL, [SortOrder] = 87.00 WHERE [Code] = 'chu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'chk') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chk', 'Chuukese', NULL, 88.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Chuukese', [Definition] = NULL, [SortOrder] = 88.00 WHERE [Code] = 'chk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'chv') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chv', 'Chuvash', NULL, 89.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Chuvash', [Definition] = NULL, [SortOrder] = 89.00 WHERE [Code] = 'chv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nwc') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwc', 'Classical Newari; Old Newari; Classical Nepal Bhasa', NULL, 90.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Classical Newari; Old Newari; Classical Nepal Bhasa', [Definition] = NULL, [SortOrder] = 90.00 WHERE [Code] = 'nwc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'syc') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syc', 'Classical Syriac', NULL, 91.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Classical Syriac', [Definition] = NULL, [SortOrder] = 91.00 WHERE [Code] = 'syc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cop') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cop', 'Coptic', NULL, 92.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Coptic', [Definition] = NULL, [SortOrder] = 92.00 WHERE [Code] = 'cop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cor') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cor', 'Cornish', NULL, 93.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Cornish', [Definition] = NULL, [SortOrder] = 93.00 WHERE [Code] = 'cor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cos') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cos', 'Corsican', NULL, 94.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Corsican', [Definition] = NULL, [SortOrder] = 94.00 WHERE [Code] = 'cos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cre') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cre', 'Cree', NULL, 95.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Cree', [Definition] = NULL, [SortOrder] = 95.00 WHERE [Code] = 'cre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mus') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mus', 'Creek', NULL, 96.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Creek', [Definition] = NULL, [SortOrder] = 96.00 WHERE [Code] = 'mus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'crp') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crp', 'Creoles and pidgins ', NULL, 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Creoles and pidgins ', [Definition] = NULL, [SortOrder] = 97.00 WHERE [Code] = 'crp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cpe') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpe', 'Creoles and pidgins, English based', NULL, 98.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Creoles and pidgins, English based', [Definition] = NULL, [SortOrder] = 98.00 WHERE [Code] = 'cpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cpf') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpf', 'Creoles and pidgins, French-based', NULL, 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Creoles and pidgins, French-based', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = 'cpf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cpp') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpp', 'Creoles and pidgins, Portuguese-based', NULL, 100.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Creoles and pidgins, Portuguese-based', [Definition] = NULL, [SortOrder] = 100.00 WHERE [Code] = 'cpp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'crh') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crh', 'Crimean Tatar; Crimean Turkish', NULL, 101.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Crimean Tatar; Crimean Turkish', [Definition] = NULL, [SortOrder] = 101.00 WHERE [Code] = 'crh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'hrv') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrv', 'Croatian', NULL, 102.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Croatian', [Definition] = NULL, [SortOrder] = 102.00 WHERE [Code] = 'hrv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cus') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cus', 'Cushitic languages', NULL, 103.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Cushitic languages', [Definition] = NULL, [SortOrder] = 103.00 WHERE [Code] = 'cus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cze') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cze', 'Czech', NULL, 104.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Czech', [Definition] = NULL, [SortOrder] = 104.00 WHERE [Code] = 'cze' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'dak') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dak', 'Dakota', NULL, 105.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Dakota', [Definition] = NULL, [SortOrder] = 105.00 WHERE [Code] = 'dak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'dan') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dan', 'Danish', NULL, 106.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Danish', [Definition] = NULL, [SortOrder] = 106.00 WHERE [Code] = 'dan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'dar') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dar', 'Dargwa', NULL, 107.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Dargwa', [Definition] = NULL, [SortOrder] = 107.00 WHERE [Code] = 'dar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'del') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('del', 'Delaware', NULL, 108.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Delaware', [Definition] = NULL, [SortOrder] = 108.00 WHERE [Code] = 'del' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'din') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('din', 'Dinka', NULL, 109.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Dinka', [Definition] = NULL, [SortOrder] = 109.00 WHERE [Code] = 'din' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'div') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('div', 'Divehi; Dhivehi; Maldivian', NULL, 110.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Divehi; Dhivehi; Maldivian', [Definition] = NULL, [SortOrder] = 110.00 WHERE [Code] = 'div' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'doi') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doi', 'Dogri', NULL, 111.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Dogri', [Definition] = NULL, [SortOrder] = 111.00 WHERE [Code] = 'doi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'dgr') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgr', 'Dogrib', NULL, 112.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Dogrib', [Definition] = NULL, [SortOrder] = 112.00 WHERE [Code] = 'dgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'dra') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dra', 'Dravidian languages', NULL, 113.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Dravidian languages', [Definition] = NULL, [SortOrder] = 113.00 WHERE [Code] = 'dra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'dua') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dua', 'Duala', NULL, 114.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Duala', [Definition] = NULL, [SortOrder] = 114.00 WHERE [Code] = 'dua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'dum') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dum', 'Dutch, Middle (ca.1050-1350)', NULL, 115.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Dutch, Middle (ca.1050-1350)', [Definition] = NULL, [SortOrder] = 115.00 WHERE [Code] = 'dum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'dut') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dut', 'Dutch; Flemish', NULL, 116.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Dutch; Flemish', [Definition] = NULL, [SortOrder] = 116.00 WHERE [Code] = 'dut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'dyu') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyu', 'Dyula', NULL, 117.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Dyula', [Definition] = NULL, [SortOrder] = 117.00 WHERE [Code] = 'dyu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'dzo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzo', 'Dzongkha', NULL, 118.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Dzongkha', [Definition] = NULL, [SortOrder] = 118.00 WHERE [Code] = 'dzo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'frs') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frs', 'Eastern Frisian', NULL, 119.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Eastern Frisian', [Definition] = NULL, [SortOrder] = 119.00 WHERE [Code] = 'frs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'efi') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('efi', 'Efik', NULL, 120.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Efik', [Definition] = NULL, [SortOrder] = 120.00 WHERE [Code] = 'efi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'egy') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('egy', 'Egyptian (Ancient)', NULL, 121.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Egyptian (Ancient)', [Definition] = NULL, [SortOrder] = 121.00 WHERE [Code] = 'egy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'eka') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eka', 'Ekajuk', NULL, 122.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ekajuk', [Definition] = NULL, [SortOrder] = 122.00 WHERE [Code] = 'eka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'elx') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elx', 'Elamite', NULL, 123.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Elamite', [Definition] = NULL, [SortOrder] = 123.00 WHERE [Code] = 'elx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'eng') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eng', 'English', NULL, 124.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'English', [Definition] = NULL, [SortOrder] = 124.00 WHERE [Code] = 'eng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'enm') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enm', 'English, Middle (1100-1500)', NULL, 125.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'English, Middle (1100-1500)', [Definition] = NULL, [SortOrder] = 125.00 WHERE [Code] = 'enm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ang') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ang', 'English, Old (ca.450-1100)', NULL, 126.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'English, Old (ca.450-1100)', [Definition] = NULL, [SortOrder] = 126.00 WHERE [Code] = 'ang' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'myv') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myv', 'Erzya', NULL, 127.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Erzya', [Definition] = NULL, [SortOrder] = 127.00 WHERE [Code] = 'myv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'epo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('epo', 'Esperanto', NULL, 128.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Esperanto', [Definition] = NULL, [SortOrder] = 128.00 WHERE [Code] = 'epo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'est') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('est', 'Estonian', NULL, 129.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Estonian', [Definition] = NULL, [SortOrder] = 129.00 WHERE [Code] = 'est' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ewe') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ewe', 'Ewe', NULL, 130.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ewe', [Definition] = NULL, [SortOrder] = 130.00 WHERE [Code] = 'ewe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ewo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ewo', 'Ewondo', NULL, 131.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ewondo', [Definition] = NULL, [SortOrder] = 131.00 WHERE [Code] = 'ewo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'fan') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fan', 'Fang', NULL, 132.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Fang', [Definition] = NULL, [SortOrder] = 132.00 WHERE [Code] = 'fan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'fat') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fat', 'Fanti', NULL, 133.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Fanti', [Definition] = NULL, [SortOrder] = 133.00 WHERE [Code] = 'fat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'fao') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fao', 'Faroese', NULL, 134.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Faroese', [Definition] = NULL, [SortOrder] = 134.00 WHERE [Code] = 'fao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'fij') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fij', 'Fijian', NULL, 135.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Fijian', [Definition] = NULL, [SortOrder] = 135.00 WHERE [Code] = 'fij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'fil') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fil', 'Filipino; Pilipino', NULL, 136.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Filipino; Pilipino', [Definition] = NULL, [SortOrder] = 136.00 WHERE [Code] = 'fil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'fin') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fin', 'Finnish', NULL, 137.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Finnish', [Definition] = NULL, [SortOrder] = 137.00 WHERE [Code] = 'fin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'fiu') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fiu', 'Finno-Ugrian languages', NULL, 138.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Finno-Ugrian languages', [Definition] = NULL, [SortOrder] = 138.00 WHERE [Code] = 'fiu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'fon') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fon', 'Fon', NULL, 139.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Fon', [Definition] = NULL, [SortOrder] = 139.00 WHERE [Code] = 'fon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'fre') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fre', 'French', NULL, 140.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'French', [Definition] = NULL, [SortOrder] = 140.00 WHERE [Code] = 'fre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'frm') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frm', 'French, Middle (ca.1400-1600)', NULL, 141.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'French, Middle (ca.1400-1600)', [Definition] = NULL, [SortOrder] = 141.00 WHERE [Code] = 'frm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'fro') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fro', 'French, Old (842-ca.1400)', NULL, 142.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'French, Old (842-ca.1400)', [Definition] = NULL, [SortOrder] = 142.00 WHERE [Code] = 'fro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'fur') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fur', 'Friulian', NULL, 143.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Friulian', [Definition] = NULL, [SortOrder] = 143.00 WHERE [Code] = 'fur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ful') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ful', 'Fulah', NULL, 144.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Fulah', [Definition] = NULL, [SortOrder] = 144.00 WHERE [Code] = 'ful' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'gaa') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaa', 'Ga', NULL, 145.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ga', [Definition] = NULL, [SortOrder] = 145.00 WHERE [Code] = 'gaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'gla') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gla', 'Gaelic; Scottish Gaelic', NULL, 146.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Gaelic; Scottish Gaelic', [Definition] = NULL, [SortOrder] = 146.00 WHERE [Code] = 'gla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'car') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('car', 'Galibi Carib', NULL, 147.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Galibi Carib', [Definition] = NULL, [SortOrder] = 147.00 WHERE [Code] = 'car' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'glg') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glg', 'Galician', NULL, 148.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Galician', [Definition] = NULL, [SortOrder] = 148.00 WHERE [Code] = 'glg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lug') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lug', 'Ganda', NULL, 149.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ganda', [Definition] = NULL, [SortOrder] = 149.00 WHERE [Code] = 'lug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'gay') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gay', 'Gayo', NULL, 150.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Gayo', [Definition] = NULL, [SortOrder] = 150.00 WHERE [Code] = 'gay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'gba') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gba', 'Gbaya', NULL, 151.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Gbaya', [Definition] = NULL, [SortOrder] = 151.00 WHERE [Code] = 'gba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'gez') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gez', 'Geez', NULL, 152.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Geez', [Definition] = NULL, [SortOrder] = 152.00 WHERE [Code] = 'gez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'geo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geo', 'Georgian', NULL, 153.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Georgian', [Definition] = NULL, [SortOrder] = 153.00 WHERE [Code] = 'geo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ger') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ger', 'German', NULL, 154.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'German', [Definition] = NULL, [SortOrder] = 154.00 WHERE [Code] = 'ger' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'gmh') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmh', 'German, Middle High (ca.1050-1500)', NULL, 155.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'German, Middle High (ca.1050-1500)', [Definition] = NULL, [SortOrder] = 155.00 WHERE [Code] = 'gmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'goh') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goh', 'German, Old High (ca.750-1050)', NULL, 156.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'German, Old High (ca.750-1050)', [Definition] = NULL, [SortOrder] = 156.00 WHERE [Code] = 'goh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'gem') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gem', 'Germanic languages', NULL, 157.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Germanic languages', [Definition] = NULL, [SortOrder] = 157.00 WHERE [Code] = 'gem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'gil') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gil', 'Gilbertese', NULL, 158.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Gilbertese', [Definition] = NULL, [SortOrder] = 158.00 WHERE [Code] = 'gil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'gon') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gon', 'Gondi', NULL, 159.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Gondi', [Definition] = NULL, [SortOrder] = 159.00 WHERE [Code] = 'gon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'gor') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gor', 'Gorontalo', NULL, 160.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Gorontalo', [Definition] = NULL, [SortOrder] = 160.00 WHERE [Code] = 'gor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'got') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('got', 'Gothic', NULL, 161.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Gothic', [Definition] = NULL, [SortOrder] = 161.00 WHERE [Code] = 'got' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'grb') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grb', 'Grebo', NULL, 162.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Grebo', [Definition] = NULL, [SortOrder] = 162.00 WHERE [Code] = 'grb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'grc') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grc', 'Greek, Ancient (to 1453)', NULL, 163.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Greek, Ancient (to 1453)', [Definition] = NULL, [SortOrder] = 163.00 WHERE [Code] = 'grc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'gre') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gre', 'Greek, Modern (1453-)', NULL, 164.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Greek, Modern (1453-)', [Definition] = NULL, [SortOrder] = 164.00 WHERE [Code] = 'gre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'grn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grn', 'Guarani', NULL, 165.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Guarani', [Definition] = NULL, [SortOrder] = 165.00 WHERE [Code] = 'grn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'guj') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guj', 'Gujarati', NULL, 166.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Gujarati', [Definition] = NULL, [SortOrder] = 166.00 WHERE [Code] = 'guj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'gwi') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwi', 'Gwich''in', NULL, 167.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Gwich''in', [Definition] = NULL, [SortOrder] = 167.00 WHERE [Code] = 'gwi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'hai') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hai', 'Haida', NULL, 168.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Haida', [Definition] = NULL, [SortOrder] = 168.00 WHERE [Code] = 'hai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'hat') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hat', 'Haitian; Haitian Creole', NULL, 169.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Haitian; Haitian Creole', [Definition] = NULL, [SortOrder] = 169.00 WHERE [Code] = 'hat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'hau') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hau', 'Hausa', NULL, 170.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Hausa', [Definition] = NULL, [SortOrder] = 170.00 WHERE [Code] = 'hau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'haw') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haw', 'Hawaiian', NULL, 171.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Hawaiian', [Definition] = NULL, [SortOrder] = 171.00 WHERE [Code] = 'haw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'heb') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('heb', 'Hebrew', NULL, 172.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Hebrew', [Definition] = NULL, [SortOrder] = 172.00 WHERE [Code] = 'heb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'her') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('her', 'Herero', NULL, 173.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Herero', [Definition] = NULL, [SortOrder] = 173.00 WHERE [Code] = 'her' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'hil') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hil', 'Hiligaynon', NULL, 174.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Hiligaynon', [Definition] = NULL, [SortOrder] = 174.00 WHERE [Code] = 'hil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'him') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('him', 'Himachali languages; Western Pahari languages', NULL, 175.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Himachali languages; Western Pahari languages', [Definition] = NULL, [SortOrder] = 175.00 WHERE [Code] = 'him' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'hin') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hin', 'Hindi', NULL, 176.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Hindi', [Definition] = NULL, [SortOrder] = 176.00 WHERE [Code] = 'hin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'hmo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmo', 'Hiri Motu', NULL, 177.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Hiri Motu', [Definition] = NULL, [SortOrder] = 177.00 WHERE [Code] = 'hmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'hit') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hit', 'Hittite', NULL, 178.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Hittite', [Definition] = NULL, [SortOrder] = 178.00 WHERE [Code] = 'hit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'hmn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmn', 'Hmong; Mong', NULL, 179.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Hmong; Mong', [Definition] = NULL, [SortOrder] = 179.00 WHERE [Code] = 'hmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'hun') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hun', 'Hungarian', NULL, 180.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Hungarian', [Definition] = NULL, [SortOrder] = 180.00 WHERE [Code] = 'hun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'hup') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hup', 'Hupa', NULL, 181.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Hupa', [Definition] = NULL, [SortOrder] = 181.00 WHERE [Code] = 'hup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'iba') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iba', 'Iban', NULL, 182.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Iban', [Definition] = NULL, [SortOrder] = 182.00 WHERE [Code] = 'iba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ice') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ice', 'Icelandic', NULL, 183.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Icelandic', [Definition] = NULL, [SortOrder] = 183.00 WHERE [Code] = 'ice' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ido') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ido', 'Ido', NULL, 184.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ido', [Definition] = NULL, [SortOrder] = 184.00 WHERE [Code] = 'ido' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ibo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibo', 'Igbo', NULL, 185.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Igbo', [Definition] = NULL, [SortOrder] = 185.00 WHERE [Code] = 'ibo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ijo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijo', 'Ijo languages', NULL, 186.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ijo languages', [Definition] = NULL, [SortOrder] = 186.00 WHERE [Code] = 'ijo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ilo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilo', 'Iloko', NULL, 187.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Iloko', [Definition] = NULL, [SortOrder] = 187.00 WHERE [Code] = 'ilo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'smn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smn', 'Inari Sami', NULL, 188.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Inari Sami', [Definition] = NULL, [SortOrder] = 188.00 WHERE [Code] = 'smn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'inc') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inc', 'Indic languages', NULL, 189.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Indic languages', [Definition] = NULL, [SortOrder] = 189.00 WHERE [Code] = 'inc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ine') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ine', 'Indo-European languages', NULL, 190.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Indo-European languages', [Definition] = NULL, [SortOrder] = 190.00 WHERE [Code] = 'ine' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ind') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ind', 'Indonesian', NULL, 191.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Indonesian', [Definition] = NULL, [SortOrder] = 191.00 WHERE [Code] = 'ind' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'inh') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inh', 'Ingush', NULL, 192.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ingush', [Definition] = NULL, [SortOrder] = 192.00 WHERE [Code] = 'inh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ina') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ina', 'Interlingua (International Auxiliary Language Association)', NULL, 193.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Interlingua (International Auxiliary Language Association)', [Definition] = NULL, [SortOrder] = 193.00 WHERE [Code] = 'ina' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ile') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ile', 'Interlingue; Occidental', NULL, 194.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Interlingue; Occidental', [Definition] = NULL, [SortOrder] = 194.00 WHERE [Code] = 'ile' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'iku') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iku', 'Inuktitut', NULL, 195.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Inuktitut', [Definition] = NULL, [SortOrder] = 195.00 WHERE [Code] = 'iku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ipk') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ipk', 'Inupiaq', NULL, 196.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Inupiaq', [Definition] = NULL, [SortOrder] = 196.00 WHERE [Code] = 'ipk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ira') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ira', 'Iranian languages', NULL, 197.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Iranian languages', [Definition] = NULL, [SortOrder] = 197.00 WHERE [Code] = 'ira' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'gle') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gle', 'Irish', NULL, 198.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Irish', [Definition] = NULL, [SortOrder] = 198.00 WHERE [Code] = 'gle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mga') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mga', 'Irish, Middle (900-1200)', NULL, 199.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Irish, Middle (900-1200)', [Definition] = NULL, [SortOrder] = 199.00 WHERE [Code] = 'mga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sga') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sga', 'Irish, Old (to 900)', NULL, 200.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Irish, Old (to 900)', [Definition] = NULL, [SortOrder] = 200.00 WHERE [Code] = 'sga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'iro') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iro', 'Iroquoian languages', NULL, 201.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Iroquoian languages', [Definition] = NULL, [SortOrder] = 201.00 WHERE [Code] = 'iro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ita') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ita', 'Italian', NULL, 202.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Italian', [Definition] = NULL, [SortOrder] = 202.00 WHERE [Code] = 'ita' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'jpn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpn', 'Japanese', NULL, 203.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Japanese', [Definition] = NULL, [SortOrder] = 203.00 WHERE [Code] = 'jpn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'jav') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jav', 'Javanese', NULL, 204.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Javanese', [Definition] = NULL, [SortOrder] = 204.00 WHERE [Code] = 'jav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'jrb') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jrb', 'Judeo-Arabic', NULL, 205.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Judeo-Arabic', [Definition] = NULL, [SortOrder] = 205.00 WHERE [Code] = 'jrb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'jpr') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpr', 'Judeo-Persian', NULL, 206.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Judeo-Persian', [Definition] = NULL, [SortOrder] = 206.00 WHERE [Code] = 'jpr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kbd') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbd', 'Kabardian', NULL, 207.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kabardian', [Definition] = NULL, [SortOrder] = 207.00 WHERE [Code] = 'kbd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kab') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kab', 'Kabyle', NULL, 208.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kabyle', [Definition] = NULL, [SortOrder] = 208.00 WHERE [Code] = 'kab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kac') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kac', 'Kachin; Jingpho', NULL, 209.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kachin; Jingpho', [Definition] = NULL, [SortOrder] = 209.00 WHERE [Code] = 'kac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kal') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kal', 'Kalaallisut; Greenlandic', NULL, 210.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kalaallisut; Greenlandic', [Definition] = NULL, [SortOrder] = 210.00 WHERE [Code] = 'kal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'xal') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xal', 'Kalmyk; Oirat', NULL, 211.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kalmyk; Oirat', [Definition] = NULL, [SortOrder] = 211.00 WHERE [Code] = 'xal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kam') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kam', 'Kamba', NULL, 212.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kamba', [Definition] = NULL, [SortOrder] = 212.00 WHERE [Code] = 'kam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kan') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kan', 'Kannada', NULL, 213.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kannada', [Definition] = NULL, [SortOrder] = 213.00 WHERE [Code] = 'kan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kau') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kau', 'Kanuri', NULL, 214.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kanuri', [Definition] = NULL, [SortOrder] = 214.00 WHERE [Code] = 'kau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kaa') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaa', 'Kara-Kalpak', NULL, 215.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kara-Kalpak', [Definition] = NULL, [SortOrder] = 215.00 WHERE [Code] = 'kaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'krc') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krc', 'Karachay-Balkar', NULL, 216.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Karachay-Balkar', [Definition] = NULL, [SortOrder] = 216.00 WHERE [Code] = 'krc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'krl') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krl', 'Karelian', NULL, 217.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Karelian', [Definition] = NULL, [SortOrder] = 217.00 WHERE [Code] = 'krl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kar') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kar', 'Karen languages', NULL, 218.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Karen languages', [Definition] = NULL, [SortOrder] = 218.00 WHERE [Code] = 'kar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kas') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kas', 'Kashmiri', NULL, 219.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kashmiri', [Definition] = NULL, [SortOrder] = 219.00 WHERE [Code] = 'kas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'csb') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csb', 'Kashubian', NULL, 220.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kashubian', [Definition] = NULL, [SortOrder] = 220.00 WHERE [Code] = 'csb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kaw') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaw', 'Kawi', NULL, 221.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kawi', [Definition] = NULL, [SortOrder] = 221.00 WHERE [Code] = 'kaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kaz') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaz', 'Kazakh', NULL, 222.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kazakh', [Definition] = NULL, [SortOrder] = 222.00 WHERE [Code] = 'kaz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kha') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kha', 'Khasi', NULL, 223.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Khasi', [Definition] = NULL, [SortOrder] = 223.00 WHERE [Code] = 'kha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'khi') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khi', 'Khoisan languages', NULL, 224.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Khoisan languages', [Definition] = NULL, [SortOrder] = 224.00 WHERE [Code] = 'khi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kho') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kho', 'Khotanese; Sakan', NULL, 225.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Khotanese; Sakan', [Definition] = NULL, [SortOrder] = 225.00 WHERE [Code] = 'kho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kik') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kik', 'Kikuyu; Gikuyu', NULL, 226.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kikuyu; Gikuyu', [Definition] = NULL, [SortOrder] = 226.00 WHERE [Code] = 'kik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kmb') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmb', 'Kimbundu', NULL, 227.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kimbundu', [Definition] = NULL, [SortOrder] = 227.00 WHERE [Code] = 'kmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kin') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kin', 'Kinyarwanda', NULL, 228.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kinyarwanda', [Definition] = NULL, [SortOrder] = 228.00 WHERE [Code] = 'kin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kir') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kir', 'Kirghiz; Kyrgyz', NULL, 229.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kirghiz; Kyrgyz', [Definition] = NULL, [SortOrder] = 229.00 WHERE [Code] = 'kir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tlh') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlh', 'Klingon; tlhIngan-Hol', NULL, 230.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Klingon; tlhIngan-Hol', [Definition] = NULL, [SortOrder] = 230.00 WHERE [Code] = 'tlh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kom') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kom', 'Komi', NULL, 231.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Komi', [Definition] = NULL, [SortOrder] = 231.00 WHERE [Code] = 'kom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kon') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kon', 'Kongo', NULL, 232.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kongo', [Definition] = NULL, [SortOrder] = 232.00 WHERE [Code] = 'kon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kok') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kok', 'Konkani', NULL, 233.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Konkani', [Definition] = NULL, [SortOrder] = 233.00 WHERE [Code] = 'kok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kor') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kor', 'Korean', NULL, 234.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Korean', [Definition] = NULL, [SortOrder] = 234.00 WHERE [Code] = 'kor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kos') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kos', 'Kosraean', NULL, 235.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kosraean', [Definition] = NULL, [SortOrder] = 235.00 WHERE [Code] = 'kos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kpe') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpe', 'Kpelle', NULL, 236.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kpelle', [Definition] = NULL, [SortOrder] = 236.00 WHERE [Code] = 'kpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kro') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kro', 'Kru languages', NULL, 237.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kru languages', [Definition] = NULL, [SortOrder] = 237.00 WHERE [Code] = 'kro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kua') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kua', 'Kuanyama; Kwanyama', NULL, 238.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kuanyama; Kwanyama', [Definition] = NULL, [SortOrder] = 238.00 WHERE [Code] = 'kua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kum') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kum', 'Kumyk', NULL, 239.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kumyk', [Definition] = NULL, [SortOrder] = 239.00 WHERE [Code] = 'kum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kur') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kur', 'Kurdish', NULL, 240.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kurdish', [Definition] = NULL, [SortOrder] = 240.00 WHERE [Code] = 'kur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kru') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kru', 'Kurukh', NULL, 241.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kurukh', [Definition] = NULL, [SortOrder] = 241.00 WHERE [Code] = 'kru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'kut') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kut', 'Kutenai', NULL, 242.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Kutenai', [Definition] = NULL, [SortOrder] = 242.00 WHERE [Code] = 'kut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lad') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lad', 'Ladino', NULL, 243.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ladino', [Definition] = NULL, [SortOrder] = 243.00 WHERE [Code] = 'lad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lah') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lah', 'Lahnda', NULL, 244.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Lahnda', [Definition] = NULL, [SortOrder] = 244.00 WHERE [Code] = 'lah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lam') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lam', 'Lamba', NULL, 245.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Lamba', [Definition] = NULL, [SortOrder] = 245.00 WHERE [Code] = 'lam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'day') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('day', 'Land Dayak languages', NULL, 246.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Land Dayak languages', [Definition] = NULL, [SortOrder] = 246.00 WHERE [Code] = 'day' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lao') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lao', 'Lao', NULL, 247.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Lao', [Definition] = NULL, [SortOrder] = 247.00 WHERE [Code] = 'lao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lat') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lat', 'Latin', NULL, 248.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Latin', [Definition] = NULL, [SortOrder] = 248.00 WHERE [Code] = 'lat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lav') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lav', 'Latvian', NULL, 249.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Latvian', [Definition] = NULL, [SortOrder] = 249.00 WHERE [Code] = 'lav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lez') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lez', 'Lezghian', NULL, 250.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Lezghian', [Definition] = NULL, [SortOrder] = 250.00 WHERE [Code] = 'lez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lim') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lim', 'Limburgan; Limburger; Limburgish', NULL, 251.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Limburgan; Limburger; Limburgish', [Definition] = NULL, [SortOrder] = 251.00 WHERE [Code] = 'lim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lin') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lin', 'Lingala', NULL, 252.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Lingala', [Definition] = NULL, [SortOrder] = 252.00 WHERE [Code] = 'lin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lit') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lit', 'Lithuanian', NULL, 253.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Lithuanian', [Definition] = NULL, [SortOrder] = 253.00 WHERE [Code] = 'lit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'jbo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbo', 'Lojban', NULL, 254.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Lojban', [Definition] = NULL, [SortOrder] = 254.00 WHERE [Code] = 'jbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nds') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nds', 'Low German; Low Saxon; German, Low; Saxon, Low', NULL, 255.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Low German; Low Saxon; German, Low; Saxon, Low', [Definition] = NULL, [SortOrder] = 255.00 WHERE [Code] = 'nds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'dsb') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsb', 'Lower Sorbian', NULL, 256.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Lower Sorbian', [Definition] = NULL, [SortOrder] = 256.00 WHERE [Code] = 'dsb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'loz') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loz', 'Lozi', NULL, 257.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Lozi', [Definition] = NULL, [SortOrder] = 257.00 WHERE [Code] = 'loz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lub') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lub', 'Luba-Katanga', NULL, 258.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Luba-Katanga', [Definition] = NULL, [SortOrder] = 258.00 WHERE [Code] = 'lub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lua') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lua', 'Luba-Lulua', NULL, 259.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Luba-Lulua', [Definition] = NULL, [SortOrder] = 259.00 WHERE [Code] = 'lua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lui') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lui', 'Luiseno', NULL, 260.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Luiseno', [Definition] = NULL, [SortOrder] = 260.00 WHERE [Code] = 'lui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'smj') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smj', 'Lule Sami', NULL, 261.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Lule Sami', [Definition] = NULL, [SortOrder] = 261.00 WHERE [Code] = 'smj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lun') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lun', 'Lunda', NULL, 262.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Lunda', [Definition] = NULL, [SortOrder] = 262.00 WHERE [Code] = 'lun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'luo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luo', 'Luo (Kenya and Tanzania)', NULL, 263.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Luo (Kenya and Tanzania)', [Definition] = NULL, [SortOrder] = 263.00 WHERE [Code] = 'luo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lus') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lus', 'Lushai', NULL, 264.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Lushai', [Definition] = NULL, [SortOrder] = 264.00 WHERE [Code] = 'lus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ltz') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltz', 'Luxembourgish; Letzeburgesch', NULL, 265.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Luxembourgish; Letzeburgesch', [Definition] = NULL, [SortOrder] = 265.00 WHERE [Code] = 'ltz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mac') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mac', 'Macedonian', NULL, 266.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Macedonian', [Definition] = NULL, [SortOrder] = 266.00 WHERE [Code] = 'mac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mad') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mad', 'Madurese', NULL, 267.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Madurese', [Definition] = NULL, [SortOrder] = 267.00 WHERE [Code] = 'mad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mag') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mag', 'Magahi', NULL, 268.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Magahi', [Definition] = NULL, [SortOrder] = 268.00 WHERE [Code] = 'mag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mai') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mai', 'Maithili', NULL, 269.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Maithili', [Definition] = NULL, [SortOrder] = 269.00 WHERE [Code] = 'mai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mak') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mak', 'Makasar', NULL, 270.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Makasar', [Definition] = NULL, [SortOrder] = 270.00 WHERE [Code] = 'mak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mlg') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlg', 'Malagasy', NULL, 271.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Malagasy', [Definition] = NULL, [SortOrder] = 271.00 WHERE [Code] = 'mlg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'may') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('may', 'Malay', NULL, 272.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Malay', [Definition] = NULL, [SortOrder] = 272.00 WHERE [Code] = 'may' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mal') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mal', 'Malayalam', NULL, 273.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Malayalam', [Definition] = NULL, [SortOrder] = 273.00 WHERE [Code] = 'mal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mlt') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlt', 'Maltese', NULL, 274.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Maltese', [Definition] = NULL, [SortOrder] = 274.00 WHERE [Code] = 'mlt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mnc') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnc', 'Manchu', NULL, 275.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Manchu', [Definition] = NULL, [SortOrder] = 275.00 WHERE [Code] = 'mnc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mdr') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdr', 'Mandar', NULL, 276.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Mandar', [Definition] = NULL, [SortOrder] = 276.00 WHERE [Code] = 'mdr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'man') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('man', 'Mandingo', NULL, 277.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Mandingo', [Definition] = NULL, [SortOrder] = 277.00 WHERE [Code] = 'man' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mni') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mni', 'Manipuri', NULL, 278.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Manipuri', [Definition] = NULL, [SortOrder] = 278.00 WHERE [Code] = 'mni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mno') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mno', 'Manobo languages', NULL, 279.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Manobo languages', [Definition] = NULL, [SortOrder] = 279.00 WHERE [Code] = 'mno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'glv') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glv', 'Manx', NULL, 280.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Manx', [Definition] = NULL, [SortOrder] = 280.00 WHERE [Code] = 'glv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mao') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mao', 'Maori', NULL, 281.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Maori', [Definition] = NULL, [SortOrder] = 281.00 WHERE [Code] = 'mao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'arn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arn', 'Mapudungun; Mapuche', NULL, 282.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Mapudungun; Mapuche', [Definition] = NULL, [SortOrder] = 282.00 WHERE [Code] = 'arn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mar') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mar', 'Marathi', NULL, 283.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Marathi', [Definition] = NULL, [SortOrder] = 283.00 WHERE [Code] = 'mar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'chm') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chm', 'Mari', NULL, 284.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Mari', [Definition] = NULL, [SortOrder] = 284.00 WHERE [Code] = 'chm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mah') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mah', 'Marshallese', NULL, 285.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Marshallese', [Definition] = NULL, [SortOrder] = 285.00 WHERE [Code] = 'mah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mwr') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwr', 'Marwari', NULL, 286.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Marwari', [Definition] = NULL, [SortOrder] = 286.00 WHERE [Code] = 'mwr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mas') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mas', 'Masai', NULL, 287.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Masai', [Definition] = NULL, [SortOrder] = 287.00 WHERE [Code] = 'mas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'myn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myn', 'Mayan languages', NULL, 288.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Mayan languages', [Definition] = NULL, [SortOrder] = 288.00 WHERE [Code] = 'myn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'men') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('men', 'Mende', NULL, 289.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Mende', [Definition] = NULL, [SortOrder] = 289.00 WHERE [Code] = 'men' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mic') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mic', 'Mi''kmaq; Micmac', NULL, 290.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Mi''kmaq; Micmac', [Definition] = NULL, [SortOrder] = 290.00 WHERE [Code] = 'mic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'min') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('min', 'Minangkabau', NULL, 291.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Minangkabau', [Definition] = NULL, [SortOrder] = 291.00 WHERE [Code] = 'min' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mwl') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwl', 'Mirandese', NULL, 292.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Mirandese', [Definition] = NULL, [SortOrder] = 292.00 WHERE [Code] = 'mwl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'moh') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moh', 'Mohawk', NULL, 293.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Mohawk', [Definition] = NULL, [SortOrder] = 293.00 WHERE [Code] = 'moh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mdf') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdf', 'Moksha', NULL, 294.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Moksha', [Definition] = NULL, [SortOrder] = 294.00 WHERE [Code] = 'mdf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mkh') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkh', 'Mon-Khmer languages', NULL, 295.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Mon-Khmer languages', [Definition] = NULL, [SortOrder] = 295.00 WHERE [Code] = 'mkh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'lol') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lol', 'Mongo', NULL, 296.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Mongo', [Definition] = NULL, [SortOrder] = 296.00 WHERE [Code] = 'lol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mon') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mon', 'Mongolian', NULL, 297.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Mongolian', [Definition] = NULL, [SortOrder] = 297.00 WHERE [Code] = 'mon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'cnr') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnr', 'Montenegrin', NULL, 298.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Montenegrin', [Definition] = NULL, [SortOrder] = 298.00 WHERE [Code] = 'cnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mos') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mos', 'Mossi', NULL, 299.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Mossi', [Definition] = NULL, [SortOrder] = 299.00 WHERE [Code] = 'mos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mul') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mul', 'Multiple languages', NULL, 300.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Multiple languages', [Definition] = NULL, [SortOrder] = 300.00 WHERE [Code] = 'mul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mun') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mun', 'Munda languages', NULL, 301.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Munda languages', [Definition] = NULL, [SortOrder] = 301.00 WHERE [Code] = 'mun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nqo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqo', 'N''Ko', NULL, 302.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'N''Ko', [Definition] = NULL, [SortOrder] = 302.00 WHERE [Code] = 'nqo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nah') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nah', 'Nahuatl languages', NULL, 303.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Nahuatl languages', [Definition] = NULL, [SortOrder] = 303.00 WHERE [Code] = 'nah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nau') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nau', 'Nauru', NULL, 304.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Nauru', [Definition] = NULL, [SortOrder] = 304.00 WHERE [Code] = 'nau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nav') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nav', 'Navajo; Navaho', NULL, 305.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Navajo; Navaho', [Definition] = NULL, [SortOrder] = 305.00 WHERE [Code] = 'nav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nde') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nde', 'Ndebele, North; North Ndebele', NULL, 306.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ndebele, North; North Ndebele', [Definition] = NULL, [SortOrder] = 306.00 WHERE [Code] = 'nde' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nbl') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbl', 'Ndebele, South; South Ndebele', NULL, 307.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ndebele, South; South Ndebele', [Definition] = NULL, [SortOrder] = 307.00 WHERE [Code] = 'nbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ndo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndo', 'Ndonga', NULL, 308.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ndonga', [Definition] = NULL, [SortOrder] = 308.00 WHERE [Code] = 'ndo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nap') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nap', 'Neapolitan', NULL, 309.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Neapolitan', [Definition] = NULL, [SortOrder] = 309.00 WHERE [Code] = 'nap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'new') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('new', 'Nepal Bhasa; Newari', NULL, 310.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Nepal Bhasa; Newari', [Definition] = NULL, [SortOrder] = 310.00 WHERE [Code] = 'new' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nep') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nep', 'Nepali', NULL, 311.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Nepali', [Definition] = NULL, [SortOrder] = 311.00 WHERE [Code] = 'nep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nia') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nia', 'Nias', NULL, 312.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Nias', [Definition] = NULL, [SortOrder] = 312.00 WHERE [Code] = 'nia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nic') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nic', 'Niger-Kordofanian languages', NULL, 313.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Niger-Kordofanian languages', [Definition] = NULL, [SortOrder] = 313.00 WHERE [Code] = 'nic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ssa') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssa', 'Nilo-Saharan languages', NULL, 314.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Nilo-Saharan languages', [Definition] = NULL, [SortOrder] = 314.00 WHERE [Code] = 'ssa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'niu') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niu', 'Niuean', NULL, 315.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Niuean', [Definition] = NULL, [SortOrder] = 315.00 WHERE [Code] = 'niu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'zxx') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zxx', 'No linguistic content; Not applicable', NULL, 316.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'No linguistic content; Not applicable', [Definition] = NULL, [SortOrder] = 316.00 WHERE [Code] = 'zxx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nog') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nog', 'Nogai', NULL, 317.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Nogai', [Definition] = NULL, [SortOrder] = 317.00 WHERE [Code] = 'nog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'non') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('non', 'Norse, Old', NULL, 318.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Norse, Old', [Definition] = NULL, [SortOrder] = 318.00 WHERE [Code] = 'non' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nai') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nai', 'North American Indian languages', NULL, 319.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'North American Indian languages', [Definition] = NULL, [SortOrder] = 319.00 WHERE [Code] = 'nai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'frr') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frr', 'Northern Frisian', NULL, 320.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Northern Frisian', [Definition] = NULL, [SortOrder] = 320.00 WHERE [Code] = 'frr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sme') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sme', 'Northern Sami', NULL, 321.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Northern Sami', [Definition] = NULL, [SortOrder] = 321.00 WHERE [Code] = 'sme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nor') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nor', 'Norwegian', NULL, 322.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Norwegian', [Definition] = NULL, [SortOrder] = 322.00 WHERE [Code] = 'nor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nno') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nno', 'Norwegian Nynorsk; Nynorsk, Norwegian', NULL, 323.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Norwegian Nynorsk; Nynorsk, Norwegian', [Definition] = NULL, [SortOrder] = 323.00 WHERE [Code] = 'nno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nub') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nub', 'Nubian languages', NULL, 324.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Nubian languages', [Definition] = NULL, [SortOrder] = 324.00 WHERE [Code] = 'nub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nym') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nym', 'Nyamwezi', NULL, 325.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Nyamwezi', [Definition] = NULL, [SortOrder] = 325.00 WHERE [Code] = 'nym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nyn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyn', 'Nyankole', NULL, 326.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Nyankole', [Definition] = NULL, [SortOrder] = 326.00 WHERE [Code] = 'nyn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nyo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyo', 'Nyoro', NULL, 327.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Nyoro', [Definition] = NULL, [SortOrder] = 327.00 WHERE [Code] = 'nyo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nzi') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzi', 'Nzima', NULL, 328.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Nzima', [Definition] = NULL, [SortOrder] = 328.00 WHERE [Code] = 'nzi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'oci') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oci', 'Occitan (post 1500)', NULL, 329.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Occitan (post 1500)', [Definition] = NULL, [SortOrder] = 329.00 WHERE [Code] = 'oci' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'arc') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arc', 'Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)', NULL, 330.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)', [Definition] = NULL, [SortOrder] = 330.00 WHERE [Code] = 'arc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'oji') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oji', 'Ojibwa', NULL, 331.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ojibwa', [Definition] = NULL, [SortOrder] = 331.00 WHERE [Code] = 'oji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ori') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ori', 'Oriya', NULL, 332.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Oriya', [Definition] = NULL, [SortOrder] = 332.00 WHERE [Code] = 'ori' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'orm') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orm', 'Oromo', NULL, 333.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Oromo', [Definition] = NULL, [SortOrder] = 333.00 WHERE [Code] = 'orm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'osa') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osa', 'Osage', NULL, 334.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Osage', [Definition] = NULL, [SortOrder] = 334.00 WHERE [Code] = 'osa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'oss') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oss', 'Ossetian; Ossetic', NULL, 335.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ossetian; Ossetic', [Definition] = NULL, [SortOrder] = 335.00 WHERE [Code] = 'oss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'oto') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oto', 'Otomian languages', NULL, 336.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Otomian languages', [Definition] = NULL, [SortOrder] = 336.00 WHERE [Code] = 'oto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'pal') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pal', 'Pahlavi', NULL, 337.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Pahlavi', [Definition] = NULL, [SortOrder] = 337.00 WHERE [Code] = 'pal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'pau') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pau', 'Palauan', NULL, 338.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Palauan', [Definition] = NULL, [SortOrder] = 338.00 WHERE [Code] = 'pau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'pli') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pli', 'Pali', NULL, 339.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Pali', [Definition] = NULL, [SortOrder] = 339.00 WHERE [Code] = 'pli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'pam') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pam', 'Pampanga; Kapampangan', NULL, 340.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Pampanga; Kapampangan', [Definition] = NULL, [SortOrder] = 340.00 WHERE [Code] = 'pam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'pag') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pag', 'Pangasinan', NULL, 341.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Pangasinan', [Definition] = NULL, [SortOrder] = 341.00 WHERE [Code] = 'pag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'pan') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pan', 'Panjabi; Punjabi', NULL, 342.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Panjabi; Punjabi', [Definition] = NULL, [SortOrder] = 342.00 WHERE [Code] = 'pan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'pap') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pap', 'Papiamento', NULL, 343.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Papiamento', [Definition] = NULL, [SortOrder] = 343.00 WHERE [Code] = 'pap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'paa') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paa', 'Papuan languages', NULL, 344.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Papuan languages', [Definition] = NULL, [SortOrder] = 344.00 WHERE [Code] = 'paa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'nso') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nso', 'Pedi; Sepedi; Northern Sotho', NULL, 345.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Pedi; Sepedi; Northern Sotho', [Definition] = NULL, [SortOrder] = 345.00 WHERE [Code] = 'nso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'per') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('per', 'Persian', NULL, 346.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Persian', [Definition] = NULL, [SortOrder] = 346.00 WHERE [Code] = 'per' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'peo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peo', 'Persian, Old (ca.600-400 B.C.)', NULL, 347.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Persian, Old (ca.600-400 B.C.)', [Definition] = NULL, [SortOrder] = 347.00 WHERE [Code] = 'peo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'phi') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phi', 'Philippine languages', NULL, 348.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Philippine languages', [Definition] = NULL, [SortOrder] = 348.00 WHERE [Code] = 'phi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'phn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phn', 'Phoenician', NULL, 349.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Phoenician', [Definition] = NULL, [SortOrder] = 349.00 WHERE [Code] = 'phn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'pon') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pon', 'Pohnpeian', NULL, 350.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Pohnpeian', [Definition] = NULL, [SortOrder] = 350.00 WHERE [Code] = 'pon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'pol') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pol', 'Polish', NULL, 351.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Polish', [Definition] = NULL, [SortOrder] = 351.00 WHERE [Code] = 'pol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'por') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('por', 'Portuguese', NULL, 352.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Portuguese', [Definition] = NULL, [SortOrder] = 352.00 WHERE [Code] = 'por' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'pra') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pra', 'Prakrit languages', NULL, 353.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Prakrit languages', [Definition] = NULL, [SortOrder] = 353.00 WHERE [Code] = 'pra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'pro') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pro', 'Provençal, Old (to 1500); Occitan, Old (to 1500)', NULL, 354.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Provençal, Old (to 1500); Occitan, Old (to 1500)', [Definition] = NULL, [SortOrder] = 354.00 WHERE [Code] = 'pro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'pus') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pus', 'Pushto; Pashto', NULL, 355.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Pushto; Pashto', [Definition] = NULL, [SortOrder] = 355.00 WHERE [Code] = 'pus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'que') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('que', 'Quechua', NULL, 356.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Quechua', [Definition] = NULL, [SortOrder] = 356.00 WHERE [Code] = 'que' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'raj') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raj', 'Rajasthani', NULL, 357.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Rajasthani', [Definition] = NULL, [SortOrder] = 357.00 WHERE [Code] = 'raj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'rap') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rap', 'Rapanui', NULL, 358.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Rapanui', [Definition] = NULL, [SortOrder] = 358.00 WHERE [Code] = 'rap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'rar') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rar', 'Rarotongan; Cook Islands Maori', NULL, 359.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Rarotongan; Cook Islands Maori', [Definition] = NULL, [SortOrder] = 359.00 WHERE [Code] = 'rar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'roa') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roa', 'Romance languages', NULL, 360.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Romance languages', [Definition] = NULL, [SortOrder] = 360.00 WHERE [Code] = 'roa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'rum') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rum', 'Romanian; Moldavian; Moldovan', NULL, 361.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Romanian; Moldavian; Moldovan', [Definition] = NULL, [SortOrder] = 361.00 WHERE [Code] = 'rum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'roh') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roh', 'Romansh', NULL, 362.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Romansh', [Definition] = NULL, [SortOrder] = 362.00 WHERE [Code] = 'roh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'rom') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rom', 'Romany', NULL, 363.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Romany', [Definition] = NULL, [SortOrder] = 363.00 WHERE [Code] = 'rom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'run') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('run', 'Rundi', NULL, 364.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Rundi', [Definition] = NULL, [SortOrder] = 364.00 WHERE [Code] = 'run' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'rus') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rus', 'Russian', NULL, 365.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Russian', [Definition] = NULL, [SortOrder] = 365.00 WHERE [Code] = 'rus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sal') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sal', 'Salishan languages', NULL, 366.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Salishan languages', [Definition] = NULL, [SortOrder] = 366.00 WHERE [Code] = 'sal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sam') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sam', 'Samaritan Aramaic', NULL, 367.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Samaritan Aramaic', [Definition] = NULL, [SortOrder] = 367.00 WHERE [Code] = 'sam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'smi') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smi', 'Sami languages', NULL, 368.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sami languages', [Definition] = NULL, [SortOrder] = 368.00 WHERE [Code] = 'smi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'smo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smo', 'Samoan', NULL, 369.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Samoan', [Definition] = NULL, [SortOrder] = 369.00 WHERE [Code] = 'smo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sad') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sad', 'Sandawe', NULL, 370.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sandawe', [Definition] = NULL, [SortOrder] = 370.00 WHERE [Code] = 'sad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sag') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sag', 'Sango', NULL, 371.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sango', [Definition] = NULL, [SortOrder] = 371.00 WHERE [Code] = 'sag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'san') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('san', 'Sanskrit', NULL, 372.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sanskrit', [Definition] = NULL, [SortOrder] = 372.00 WHERE [Code] = 'san' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sat') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sat', 'Santali', NULL, 373.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Santali', [Definition] = NULL, [SortOrder] = 373.00 WHERE [Code] = 'sat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'srd') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srd', 'Sardinian', NULL, 374.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sardinian', [Definition] = NULL, [SortOrder] = 374.00 WHERE [Code] = 'srd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sas') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sas', 'Sasak', NULL, 375.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sasak', [Definition] = NULL, [SortOrder] = 375.00 WHERE [Code] = 'sas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sco') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sco', 'Scots', NULL, 376.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Scots', [Definition] = NULL, [SortOrder] = 376.00 WHERE [Code] = 'sco' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sel') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sel', 'Selkup', NULL, 377.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Selkup', [Definition] = NULL, [SortOrder] = 377.00 WHERE [Code] = 'sel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sem') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sem', 'Semitic languages', NULL, 378.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Semitic languages', [Definition] = NULL, [SortOrder] = 378.00 WHERE [Code] = 'sem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'srp') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srp', 'Serbian', NULL, 379.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Serbian', [Definition] = NULL, [SortOrder] = 379.00 WHERE [Code] = 'srp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'srr') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srr', 'Serer', NULL, 380.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Serer', [Definition] = NULL, [SortOrder] = 380.00 WHERE [Code] = 'srr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'shn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shn', 'Shan', NULL, 381.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Shan', [Definition] = NULL, [SortOrder] = 381.00 WHERE [Code] = 'shn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sna') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sna', 'Shona', NULL, 382.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Shona', [Definition] = NULL, [SortOrder] = 382.00 WHERE [Code] = 'sna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'iii') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iii', 'Sichuan Yi; Nuosu', NULL, 383.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sichuan Yi; Nuosu', [Definition] = NULL, [SortOrder] = 383.00 WHERE [Code] = 'iii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'scn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scn', 'Sicilian', NULL, 384.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sicilian', [Definition] = NULL, [SortOrder] = 384.00 WHERE [Code] = 'scn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sid') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sid', 'Sidamo', NULL, 385.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sidamo', [Definition] = NULL, [SortOrder] = 385.00 WHERE [Code] = 'sid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sgn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgn', 'Sign Languages', NULL, 386.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sign Languages', [Definition] = NULL, [SortOrder] = 386.00 WHERE [Code] = 'sgn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'bla') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bla', 'Siksika', NULL, 387.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Siksika', [Definition] = NULL, [SortOrder] = 387.00 WHERE [Code] = 'bla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'snd') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snd', 'Sindhi', NULL, 388.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sindhi', [Definition] = NULL, [SortOrder] = 388.00 WHERE [Code] = 'snd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sin') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sin', 'Sinhala; Sinhalese', NULL, 389.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sinhala; Sinhalese', [Definition] = NULL, [SortOrder] = 389.00 WHERE [Code] = 'sin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sit') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sit', 'Sino-Tibetan languages', NULL, 390.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sino-Tibetan languages', [Definition] = NULL, [SortOrder] = 390.00 WHERE [Code] = 'sit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sio') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sio', 'Siouan languages', NULL, 391.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Siouan languages', [Definition] = NULL, [SortOrder] = 391.00 WHERE [Code] = 'sio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sms') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sms', 'Skolt Sami', NULL, 392.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Skolt Sami', [Definition] = NULL, [SortOrder] = 392.00 WHERE [Code] = 'sms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'den') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('den', 'Slave (Athapascan)', NULL, 393.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Slave (Athapascan)', [Definition] = NULL, [SortOrder] = 393.00 WHERE [Code] = 'den' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sla') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sla', 'Slavic languages', NULL, 394.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Slavic languages', [Definition] = NULL, [SortOrder] = 394.00 WHERE [Code] = 'sla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'slo') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slo', 'Slovak', NULL, 395.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Slovak', [Definition] = NULL, [SortOrder] = 395.00 WHERE [Code] = 'slo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'slv') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slv', 'Slovenian', NULL, 396.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Slovenian', [Definition] = NULL, [SortOrder] = 396.00 WHERE [Code] = 'slv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sog') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sog', 'Sogdian', NULL, 397.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sogdian', [Definition] = NULL, [SortOrder] = 397.00 WHERE [Code] = 'sog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'som') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('som', 'Somali', NULL, 398.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Somali', [Definition] = NULL, [SortOrder] = 398.00 WHERE [Code] = 'som' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'son') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('son', 'Songhai languages', NULL, 399.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Songhai languages', [Definition] = NULL, [SortOrder] = 399.00 WHERE [Code] = 'son' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'snk') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snk', 'Soninke', NULL, 400.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Soninke', [Definition] = NULL, [SortOrder] = 400.00 WHERE [Code] = 'snk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'wen') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wen', 'Sorbian languages', NULL, 401.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sorbian languages', [Definition] = NULL, [SortOrder] = 401.00 WHERE [Code] = 'wen' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sot') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sot', 'Sotho, Southern', NULL, 402.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sotho, Southern', [Definition] = NULL, [SortOrder] = 402.00 WHERE [Code] = 'sot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sai') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sai', 'South American Indian languages', NULL, 403.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'South American Indian languages', [Definition] = NULL, [SortOrder] = 403.00 WHERE [Code] = 'sai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'alt') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alt', 'Southern Altai', NULL, 404.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Southern Altai', [Definition] = NULL, [SortOrder] = 404.00 WHERE [Code] = 'alt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sma') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sma', 'Southern Sami', NULL, 405.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Southern Sami', [Definition] = NULL, [SortOrder] = 405.00 WHERE [Code] = 'sma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'spa') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spa', 'Spanish; Castilian', NULL, 406.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Spanish; Castilian', [Definition] = NULL, [SortOrder] = 406.00 WHERE [Code] = 'spa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'srn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srn', 'Sranan Tongo', NULL, 407.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sranan Tongo', [Definition] = NULL, [SortOrder] = 407.00 WHERE [Code] = 'srn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'zgh') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgh', 'Standard Moroccan Tamazight', NULL, 408.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Standard Moroccan Tamazight', [Definition] = NULL, [SortOrder] = 408.00 WHERE [Code] = 'zgh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'suk') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suk', 'Sukuma', NULL, 409.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sukuma', [Definition] = NULL, [SortOrder] = 409.00 WHERE [Code] = 'suk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sux') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sux', 'Sumerian', NULL, 410.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sumerian', [Definition] = NULL, [SortOrder] = 410.00 WHERE [Code] = 'sux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sun') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sun', 'Sundanese', NULL, 411.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Sundanese', [Definition] = NULL, [SortOrder] = 411.00 WHERE [Code] = 'sun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sus') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sus', 'Susu', NULL, 412.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Susu', [Definition] = NULL, [SortOrder] = 412.00 WHERE [Code] = 'sus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'swa') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swa', 'Swahili', NULL, 413.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Swahili', [Definition] = NULL, [SortOrder] = 413.00 WHERE [Code] = 'swa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ssw') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssw', 'Swati', NULL, 414.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Swati', [Definition] = NULL, [SortOrder] = 414.00 WHERE [Code] = 'ssw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'swe') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swe', 'Swedish', NULL, 415.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Swedish', [Definition] = NULL, [SortOrder] = 415.00 WHERE [Code] = 'swe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'gsw') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsw', 'Swiss German; Alemannic; Alsatian', NULL, 416.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Swiss German; Alemannic; Alsatian', [Definition] = NULL, [SortOrder] = 416.00 WHERE [Code] = 'gsw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'syr') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syr', 'Syriac', NULL, 417.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Syriac', [Definition] = NULL, [SortOrder] = 417.00 WHERE [Code] = 'syr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tgl') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgl', 'Tagalog', NULL, 418.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tagalog', [Definition] = NULL, [SortOrder] = 418.00 WHERE [Code] = 'tgl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tah') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tah', 'Tahitian', NULL, 419.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tahitian', [Definition] = NULL, [SortOrder] = 419.00 WHERE [Code] = 'tah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tai') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tai', 'Tai languages', NULL, 420.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tai languages', [Definition] = NULL, [SortOrder] = 420.00 WHERE [Code] = 'tai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tgk') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgk', 'Tajik', NULL, 421.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tajik', [Definition] = NULL, [SortOrder] = 421.00 WHERE [Code] = 'tgk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tmh') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmh', 'Tamashek', NULL, 422.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tamashek', [Definition] = NULL, [SortOrder] = 422.00 WHERE [Code] = 'tmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tam') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tam', 'Tamil', NULL, 423.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tamil', [Definition] = NULL, [SortOrder] = 423.00 WHERE [Code] = 'tam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tat') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tat', 'Tatar', NULL, 424.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tatar', [Definition] = NULL, [SortOrder] = 424.00 WHERE [Code] = 'tat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tel') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tel', 'Telugu', NULL, 425.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Telugu', [Definition] = NULL, [SortOrder] = 425.00 WHERE [Code] = 'tel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ter') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ter', 'Tereno', NULL, 426.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tereno', [Definition] = NULL, [SortOrder] = 426.00 WHERE [Code] = 'ter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tet') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tet', 'Tetum', NULL, 427.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tetum', [Definition] = NULL, [SortOrder] = 427.00 WHERE [Code] = 'tet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tha') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tha', 'Thai', NULL, 428.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Thai', [Definition] = NULL, [SortOrder] = 428.00 WHERE [Code] = 'tha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tib') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tib', 'Tibetan', NULL, 429.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tibetan', [Definition] = NULL, [SortOrder] = 429.00 WHERE [Code] = 'tib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tig') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tig', 'Tigre', NULL, 430.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tigre', [Definition] = NULL, [SortOrder] = 430.00 WHERE [Code] = 'tig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tir') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tir', 'Tigrinya', NULL, 431.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tigrinya', [Definition] = NULL, [SortOrder] = 431.00 WHERE [Code] = 'tir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tem') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tem', 'Timne', NULL, 432.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Timne', [Definition] = NULL, [SortOrder] = 432.00 WHERE [Code] = 'tem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tiv') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiv', 'Tiv', NULL, 433.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tiv', [Definition] = NULL, [SortOrder] = 433.00 WHERE [Code] = 'tiv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tli') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tli', 'Tlingit', NULL, 434.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tlingit', [Definition] = NULL, [SortOrder] = 434.00 WHERE [Code] = 'tli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tpi') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpi', 'Tok Pisin', NULL, 435.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tok Pisin', [Definition] = NULL, [SortOrder] = 435.00 WHERE [Code] = 'tpi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tkl') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkl', 'Tokelau', NULL, 436.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tokelau', [Definition] = NULL, [SortOrder] = 436.00 WHERE [Code] = 'tkl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tog') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tog', 'Tonga (Nyasa)', NULL, 437.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tonga (Nyasa)', [Definition] = NULL, [SortOrder] = 437.00 WHERE [Code] = 'tog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ton') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ton', 'Tonga (Tonga Islands)', NULL, 438.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tonga (Tonga Islands)', [Definition] = NULL, [SortOrder] = 438.00 WHERE [Code] = 'ton' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tsi') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsi', 'Tsimshian', NULL, 439.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tsimshian', [Definition] = NULL, [SortOrder] = 439.00 WHERE [Code] = 'tsi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tso') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tso', 'Tsonga', NULL, 440.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tsonga', [Definition] = NULL, [SortOrder] = 440.00 WHERE [Code] = 'tso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tsn') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsn', 'Tswana', NULL, 441.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tswana', [Definition] = NULL, [SortOrder] = 441.00 WHERE [Code] = 'tsn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tum') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tum', 'Tumbuka', NULL, 442.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tumbuka', [Definition] = NULL, [SortOrder] = 442.00 WHERE [Code] = 'tum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tup') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tup', 'Tupi languages', NULL, 443.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tupi languages', [Definition] = NULL, [SortOrder] = 443.00 WHERE [Code] = 'tup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tur') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tur', 'Turkish', NULL, 444.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Turkish', [Definition] = NULL, [SortOrder] = 444.00 WHERE [Code] = 'tur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ota') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ota', 'Turkish, Ottoman (1500-1928)', NULL, 445.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Turkish, Ottoman (1500-1928)', [Definition] = NULL, [SortOrder] = 445.00 WHERE [Code] = 'ota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tuk') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuk', 'Turkmen', NULL, 446.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Turkmen', [Definition] = NULL, [SortOrder] = 446.00 WHERE [Code] = 'tuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tvl') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvl', 'Tuvalu', NULL, 447.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tuvalu', [Definition] = NULL, [SortOrder] = 447.00 WHERE [Code] = 'tvl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'tyv') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyv', 'Tuvinian', NULL, 448.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Tuvinian', [Definition] = NULL, [SortOrder] = 448.00 WHERE [Code] = 'tyv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'twi') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twi', 'Twi', NULL, 449.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Twi', [Definition] = NULL, [SortOrder] = 449.00 WHERE [Code] = 'twi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'udm') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udm', 'Udmurt', NULL, 450.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Udmurt', [Definition] = NULL, [SortOrder] = 450.00 WHERE [Code] = 'udm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'uga') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uga', 'Ugaritic', NULL, 451.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ugaritic', [Definition] = NULL, [SortOrder] = 451.00 WHERE [Code] = 'uga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'uig') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uig', 'Uighur; Uyghur', NULL, 452.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Uighur; Uyghur', [Definition] = NULL, [SortOrder] = 452.00 WHERE [Code] = 'uig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ukr') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukr', 'Ukrainian', NULL, 453.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Ukrainian', [Definition] = NULL, [SortOrder] = 453.00 WHERE [Code] = 'ukr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'umb') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umb', 'Umbundu', NULL, 454.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Umbundu', [Definition] = NULL, [SortOrder] = 454.00 WHERE [Code] = 'umb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'mis') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mis', 'Uncoded languages', NULL, 455.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Uncoded languages', [Definition] = NULL, [SortOrder] = 455.00 WHERE [Code] = 'mis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'und') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('und', 'Undetermined', NULL, 456.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Undetermined', [Definition] = NULL, [SortOrder] = 456.00 WHERE [Code] = 'und' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'hsb') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsb', 'Upper Sorbian', NULL, 457.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Upper Sorbian', [Definition] = NULL, [SortOrder] = 457.00 WHERE [Code] = 'hsb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'urd') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urd', 'Urdu', NULL, 458.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Urdu', [Definition] = NULL, [SortOrder] = 458.00 WHERE [Code] = 'urd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'uzb') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uzb', 'Uzbek', NULL, 459.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Uzbek', [Definition] = NULL, [SortOrder] = 459.00 WHERE [Code] = 'uzb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'vai') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vai', 'Vai', NULL, 460.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Vai', [Definition] = NULL, [SortOrder] = 460.00 WHERE [Code] = 'vai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ven') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ven', 'Venda', NULL, 461.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Venda', [Definition] = NULL, [SortOrder] = 461.00 WHERE [Code] = 'ven' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'vie') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vie', 'Vietnamese', NULL, 462.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Vietnamese', [Definition] = NULL, [SortOrder] = 462.00 WHERE [Code] = 'vie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'vol') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vol', 'Volapük', NULL, 463.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Volapük', [Definition] = NULL, [SortOrder] = 463.00 WHERE [Code] = 'vol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'vot') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vot', 'Votic', NULL, 464.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Votic', [Definition] = NULL, [SortOrder] = 464.00 WHERE [Code] = 'vot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'wak') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wak', 'Wakashan languages', NULL, 465.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Wakashan languages', [Definition] = NULL, [SortOrder] = 465.00 WHERE [Code] = 'wak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'wln') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wln', 'Walloon', NULL, 466.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Walloon', [Definition] = NULL, [SortOrder] = 466.00 WHERE [Code] = 'wln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'war') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('war', 'Waray', NULL, 467.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Waray', [Definition] = NULL, [SortOrder] = 467.00 WHERE [Code] = 'war' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'was') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('was', 'Washo', NULL, 468.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Washo', [Definition] = NULL, [SortOrder] = 468.00 WHERE [Code] = 'was' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'wel') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wel', 'Welsh', NULL, 469.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Welsh', [Definition] = NULL, [SortOrder] = 469.00 WHERE [Code] = 'wel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'fry') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fry', 'Western Frisian', NULL, 470.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Western Frisian', [Definition] = NULL, [SortOrder] = 470.00 WHERE [Code] = 'fry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'wal') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wal', 'Wolaitta; Wolaytta', NULL, 471.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Wolaitta; Wolaytta', [Definition] = NULL, [SortOrder] = 471.00 WHERE [Code] = 'wal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'wol') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wol', 'Wolof', NULL, 472.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Wolof', [Definition] = NULL, [SortOrder] = 472.00 WHERE [Code] = 'wol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'xho') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xho', 'Xhosa', NULL, 473.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Xhosa', [Definition] = NULL, [SortOrder] = 473.00 WHERE [Code] = 'xho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'sah') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sah', 'Yakut', NULL, 474.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Yakut', [Definition] = NULL, [SortOrder] = 474.00 WHERE [Code] = 'sah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'yao') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yao', 'Yao', NULL, 475.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Yao', [Definition] = NULL, [SortOrder] = 475.00 WHERE [Code] = 'yao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'yap') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yap', 'Yapese', NULL, 476.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Yapese', [Definition] = NULL, [SortOrder] = 476.00 WHERE [Code] = 'yap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'yid') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yid', 'Yiddish', NULL, 477.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Yiddish', [Definition] = NULL, [SortOrder] = 477.00 WHERE [Code] = 'yid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'yor') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yor', 'Yoruba', NULL, 478.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Yoruba', [Definition] = NULL, [SortOrder] = 478.00 WHERE [Code] = 'yor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'ypk') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypk', 'Yupik languages', NULL, 479.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Yupik languages', [Definition] = NULL, [SortOrder] = 479.00 WHERE [Code] = 'ypk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'znd') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('znd', 'Zande languages', NULL, 480.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Zande languages', [Definition] = NULL, [SortOrder] = 480.00 WHERE [Code] = 'znd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'zap') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zap', 'Zapotec', NULL, 481.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Zapotec', [Definition] = NULL, [SortOrder] = 481.00 WHERE [Code] = 'zap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'zza') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zza', 'Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki', NULL, 482.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki', [Definition] = NULL, [SortOrder] = 482.00 WHERE [Code] = 'zza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'zen') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zen', 'Zenaga', NULL, 483.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Zenaga', [Definition] = NULL, [SortOrder] = 483.00 WHERE [Code] = 'zen' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'zha') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zha', 'Zhuang; Chuang', NULL, 484.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Zhuang; Chuang', [Definition] = NULL, [SortOrder] = 484.00 WHERE [Code] = 'zha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'zul') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zul', 'Zulu', NULL, 485.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Zulu', [Definition] = NULL, [SortOrder] = 485.00 WHERE [Code] = 'zul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6392Language] WHERE [Code] = 'zun') BEGIN INSERT INTO dbo.[RefISO6392Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zun', 'Zuni', NULL, 486.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6392Language] -SET [Description] = 'Zuni', [Definition] = NULL, [SortOrder] = 486.00 WHERE [Code] = 'zun' END -END - -PRINT N'Populate RefISO6393Language table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefISO6393Language]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmn', '!Xóõ', NULL, 0.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '!Xóõ', [Definition] = NULL, [SortOrder] = 0.10 WHERE [Code] = 'nmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alu', '''Are''are', NULL, 0.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '''Are''are', [Definition] = NULL, [SortOrder] = 0.20 WHERE [Code] = 'alu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kud', '''Auhelawa', NULL, 0.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '''Auhelawa', [Definition] = NULL, [SortOrder] = 0.30 WHERE [Code] = 'kud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnh', '//Ani', NULL, 0.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '//Ani', [Definition] = NULL, [SortOrder] = 0.40 WHERE [Code] = 'hnh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xeg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xeg', '//Xegwi', NULL, 0.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '//Xegwi', [Definition] = NULL, [SortOrder] = 0.50 WHERE [Code] = 'xeg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwj', '/Gwi', NULL, 0.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '/Gwi', [Definition] = NULL, [SortOrder] = 0.60 WHERE [Code] = 'gwj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xam', '/Xam', NULL, 0.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '/Xam', [Definition] = NULL, [SortOrder] = 0.70 WHERE [Code] = 'xam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huc', '=/Hua', NULL, 0.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '=/Hua', [Definition] = NULL, [SortOrder] = 0.80 WHERE [Code] = 'huc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnk', '||Gana', NULL, 0.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '||Gana', [Definition] = NULL, [SortOrder] = 0.90 WHERE [Code] = 'gnk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aou', 'A''ou', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'A''ou', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'aou' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apq', 'A-Pucikwar', NULL, 1.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'A-Pucikwar', [Definition] = NULL, [SortOrder] = 1.10 WHERE [Code] = 'apq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aiw', 'Aari', NULL, 1.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aari', [Definition] = NULL, [SortOrder] = 1.20 WHERE [Code] = 'aiw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aas', 'Aasáx', NULL, 1.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aasáx', [Definition] = NULL, [SortOrder] = 1.30 WHERE [Code] = 'aas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbt', 'Abadi', NULL, 1.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abadi', [Definition] = NULL, [SortOrder] = 1.40 WHERE [Code] = 'kbt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abg', 'Abaga', NULL, 1.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abaga', [Definition] = NULL, [SortOrder] = 1.50 WHERE [Code] = 'abg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abf', 'Abai Sungai', NULL, 1.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abai Sungai', [Definition] = NULL, [SortOrder] = 1.60 WHERE [Code] = 'abf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abm', 'Abanyom', NULL, 1.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abanyom', [Definition] = NULL, [SortOrder] = 1.70 WHERE [Code] = 'abm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mij', 'Abar', NULL, 1.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abar', [Definition] = NULL, [SortOrder] = 1.80 WHERE [Code] = 'mij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aau', 'Abau', NULL, 1.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abau', [Definition] = NULL, [SortOrder] = 1.90 WHERE [Code] = 'aau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abq', 'Abaza', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abaza', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'abq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aba', 'Abé', NULL, 2.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abé', [Definition] = NULL, [SortOrder] = 2.10 WHERE [Code] = 'aba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abp', 'Abellen Ayta', NULL, 2.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abellen Ayta', [Definition] = NULL, [SortOrder] = 2.20 WHERE [Code] = 'abp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abi', 'Abidji', NULL, 2.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abidji', [Definition] = NULL, [SortOrder] = 2.30 WHERE [Code] = 'abi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsa', 'Abinomn', NULL, 2.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abinomn', [Definition] = NULL, [SortOrder] = 2.40 WHERE [Code] = 'bsa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axb', 'Abipon', NULL, 2.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abipon', [Definition] = NULL, [SortOrder] = 2.50 WHERE [Code] = 'axb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ash') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ash', 'Abishira', NULL, 2.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abishira', [Definition] = NULL, [SortOrder] = 2.60 WHERE [Code] = 'ash' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abk', 'Abkhazian', NULL, 2.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abkhazian', [Definition] = NULL, [SortOrder] = 2.70 WHERE [Code] = 'abk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aob', 'Abom', NULL, 2.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abom', [Definition] = NULL, [SortOrder] = 2.80 WHERE [Code] = 'aob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abo', 'Abon', NULL, 2.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abon', [Definition] = NULL, [SortOrder] = 2.90 WHERE [Code] = 'abo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abr', 'Abron', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abron', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'abr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ado') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ado', 'Abu', NULL, 3.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abu', [Definition] = NULL, [SortOrder] = 3.10 WHERE [Code] = 'ado' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aah', 'Abu'' Arapesh', NULL, 3.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abu'' Arapesh', [Definition] = NULL, [SortOrder] = 3.20 WHERE [Code] = 'aah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abn', 'Abua', NULL, 3.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abua', [Definition] = NULL, [SortOrder] = 3.30 WHERE [Code] = 'abn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abz', 'Abui', NULL, 3.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abui', [Definition] = NULL, [SortOrder] = 3.40 WHERE [Code] = 'abz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgr', 'Abun', NULL, 3.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abun', [Definition] = NULL, [SortOrder] = 3.50 WHERE [Code] = 'kgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abu', 'Abure', NULL, 3.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abure', [Definition] = NULL, [SortOrder] = 3.60 WHERE [Code] = 'abu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgj', 'Abureni', NULL, 3.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abureni', [Definition] = NULL, [SortOrder] = 3.70 WHERE [Code] = 'mgj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpx', 'Acatepec Me''phaa', NULL, 3.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Acatepec Me''phaa', [Definition] = NULL, [SortOrder] = 3.80 WHERE [Code] = 'tpx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aca', 'Achagua', NULL, 3.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achagua', [Definition] = NULL, [SortOrder] = 3.90 WHERE [Code] = 'aca' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acn', 'Achang', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achang', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'acn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yif', 'Ache', NULL, 4.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ache', [Definition] = NULL, [SortOrder] = 4.10 WHERE [Code] = 'yif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guq', 'Aché', NULL, 4.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aché', [Definition] = NULL, [SortOrder] = 4.20 WHERE [Code] = 'guq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acz', 'Acheron', NULL, 4.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Acheron', [Definition] = NULL, [SortOrder] = 4.30 WHERE [Code] = 'acz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acr', 'Achi', NULL, 4.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achi', [Definition] = NULL, [SortOrder] = 4.40 WHERE [Code] = 'acr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ace') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ace', 'Achinese', NULL, 4.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achinese', [Definition] = NULL, [SortOrder] = 4.50 WHERE [Code] = 'ace' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'act') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('act', 'Achterhoeks', NULL, 4.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achterhoeks', [Definition] = NULL, [SortOrder] = 4.60 WHERE [Code] = 'act' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acu', 'Achuar-Shiwiar', NULL, 4.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achuar-Shiwiar', [Definition] = NULL, [SortOrder] = 4.70 WHERE [Code] = 'acu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acv', 'Achumawi', NULL, 4.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achumawi', [Definition] = NULL, [SortOrder] = 4.80 WHERE [Code] = 'acv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ach') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ach', 'Acoli', NULL, 4.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Acoli', [Definition] = NULL, [SortOrder] = 4.90 WHERE [Code] = 'ach' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acs', 'Acroá', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Acroá', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = 'acs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xad', 'Adai', NULL, 5.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adai', [Definition] = NULL, [SortOrder] = 5.10 WHERE [Code] = 'xad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fub', 'Adamawa Fulfulde', NULL, 5.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adamawa Fulfulde', [Definition] = NULL, [SortOrder] = 5.20 WHERE [Code] = 'fub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ads') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ads', 'Adamorobe Sign Language', NULL, 5.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adamorobe Sign Language', [Definition] = NULL, [SortOrder] = 5.30 WHERE [Code] = 'ads' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adn', 'Adang', NULL, 5.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adang', [Definition] = NULL, [SortOrder] = 5.40 WHERE [Code] = 'adn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adq', 'Adangbe', NULL, 5.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adangbe', [Definition] = NULL, [SortOrder] = 5.50 WHERE [Code] = 'adq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ada') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ada', 'Adangme', NULL, 5.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adangme', [Definition] = NULL, [SortOrder] = 5.60 WHERE [Code] = 'ada' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kad', 'Adara', NULL, 5.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adara', [Definition] = NULL, [SortOrder] = 5.70 WHERE [Code] = 'kad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiu', 'Adasen', NULL, 5.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adasen', [Definition] = NULL, [SortOrder] = 5.80 WHERE [Code] = 'tiu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ade') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ade', 'Adele', NULL, 5.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adele', [Definition] = NULL, [SortOrder] = 5.90 WHERE [Code] = 'ade' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adh', 'Adhola', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adhola', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = 'adh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adi', 'Adi', NULL, 6.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adi', [Definition] = NULL, [SortOrder] = 6.10 WHERE [Code] = 'adi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsg', 'Adilabad Gondi', NULL, 6.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adilabad Gondi', [Definition] = NULL, [SortOrder] = 6.20 WHERE [Code] = 'wsg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adj', 'Adioukrou', NULL, 6.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adioukrou', [Definition] = NULL, [SortOrder] = 6.30 WHERE [Code] = 'adj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dth', 'Adithinngithigh', NULL, 6.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adithinngithigh', [Definition] = NULL, [SortOrder] = 6.40 WHERE [Code] = 'dth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ort') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ort', 'Adivasi Oriya', NULL, 6.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adivasi Oriya', [Definition] = NULL, [SortOrder] = 6.50 WHERE [Code] = 'ort' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gas', 'Adiwasi Garasia', NULL, 6.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adiwasi Garasia', [Definition] = NULL, [SortOrder] = 6.60 WHERE [Code] = 'gas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adt', 'Adnyamathanha', NULL, 6.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adnyamathanha', [Definition] = NULL, [SortOrder] = 6.70 WHERE [Code] = 'adt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adr', 'Adonara', NULL, 6.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adonara', [Definition] = NULL, [SortOrder] = 6.80 WHERE [Code] = 'adr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adu', 'Aduge', NULL, 6.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aduge', [Definition] = NULL, [SortOrder] = 6.90 WHERE [Code] = 'adu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ady') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ady', 'Adyghe', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adyghe', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = 'ady' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adz', 'Adzera', NULL, 7.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adzera', [Definition] = NULL, [SortOrder] = 7.10 WHERE [Code] = 'adz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aez', 'Aeka', NULL, 7.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aeka', [Definition] = NULL, [SortOrder] = 7.20 WHERE [Code] = 'aez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awi', 'Aekyom', NULL, 7.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aekyom', [Definition] = NULL, [SortOrder] = 7.30 WHERE [Code] = 'awi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xae', 'Aequian', NULL, 7.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aequian', [Definition] = NULL, [SortOrder] = 7.40 WHERE [Code] = 'xae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aeq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aeq', 'Aer', NULL, 7.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aer', [Definition] = NULL, [SortOrder] = 7.50 WHERE [Code] = 'aeq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aal', 'Afade', NULL, 7.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afade', [Definition] = NULL, [SortOrder] = 7.60 WHERE [Code] = 'aal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aar', 'Afar', NULL, 7.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afar', [Definition] = NULL, [SortOrder] = 7.70 WHERE [Code] = 'aar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afg', 'Afghan Sign Language', NULL, 7.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afghan Sign Language', [Definition] = NULL, [SortOrder] = 7.80 WHERE [Code] = 'afg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aft', 'Afitti', NULL, 7.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afitti', [Definition] = NULL, [SortOrder] = 7.90 WHERE [Code] = 'aft' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afh', 'Afrihili', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afrihili', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = 'afh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afr', 'Afrikaans', NULL, 8.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afrikaans', [Definition] = NULL, [SortOrder] = 8.10 WHERE [Code] = 'afr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afs', 'Afro-Seminole Creole', NULL, 8.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afro-Seminole Creole', [Definition] = NULL, [SortOrder] = 8.20 WHERE [Code] = 'afs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agd', 'Agarabi', NULL, 8.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agarabi', [Definition] = NULL, [SortOrder] = 8.30 WHERE [Code] = 'agd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agi', 'Agariya', NULL, 8.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agariya', [Definition] = NULL, [SortOrder] = 8.40 WHERE [Code] = 'agi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agc', 'Agatu', NULL, 8.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agatu', [Definition] = NULL, [SortOrder] = 8.50 WHERE [Code] = 'agc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avo', 'Agavotaguerra', NULL, 8.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agavotaguerra', [Definition] = NULL, [SortOrder] = 8.60 WHERE [Code] = 'avo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agq', 'Aghem', NULL, 8.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghem', [Definition] = NULL, [SortOrder] = 8.70 WHERE [Code] = 'agq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahh', 'Aghu', NULL, 8.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghu', [Definition] = NULL, [SortOrder] = 8.80 WHERE [Code] = 'ahh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gtu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gtu', 'Aghu-Tharnggala', NULL, 8.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghu-Tharnggala', [Definition] = NULL, [SortOrder] = 8.90 WHERE [Code] = 'gtu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agx', 'Aghul', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghul', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = 'agx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xag', 'Aghwan', NULL, 9.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghwan', [Definition] = NULL, [SortOrder] = 9.10 WHERE [Code] = 'xag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aif', 'Agi', NULL, 9.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agi', [Definition] = NULL, [SortOrder] = 9.20 WHERE [Code] = 'aif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kit', 'Agob', NULL, 9.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agob', [Definition] = NULL, [SortOrder] = 9.30 WHERE [Code] = 'kit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibm', 'Agoi', NULL, 9.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agoi', [Definition] = NULL, [SortOrder] = 9.40 WHERE [Code] = 'ibm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agu', 'Aguacateco', NULL, 9.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aguacateco', [Definition] = NULL, [SortOrder] = 9.50 WHERE [Code] = 'agu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aga', 'Aguano', NULL, 9.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aguano', [Definition] = NULL, [SortOrder] = 9.60 WHERE [Code] = 'aga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agr', 'Aguaruna', NULL, 9.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aguaruna', [Definition] = NULL, [SortOrder] = 9.70 WHERE [Code] = 'agr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aug', 'Aguna', NULL, 9.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aguna', [Definition] = NULL, [SortOrder] = 9.80 WHERE [Code] = 'aug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msm', 'Agusan Manobo', NULL, 9.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agusan Manobo', [Definition] = NULL, [SortOrder] = 9.90 WHERE [Code] = 'msm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agn', 'Agutaynen', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agutaynen', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = 'agn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yay', 'Agwagwune', NULL, 10.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agwagwune', [Definition] = NULL, [SortOrder] = 10.10 WHERE [Code] = 'yay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahn', 'Àhàn', NULL, 10.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Àhàn', [Definition] = NULL, [SortOrder] = 10.20 WHERE [Code] = 'ahn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aha', 'Ahanta', NULL, 10.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahanta', [Definition] = NULL, [SortOrder] = 10.30 WHERE [Code] = 'aha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esg', 'Aheri Gondi', NULL, 10.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aheri Gondi', [Definition] = NULL, [SortOrder] = 10.40 WHERE [Code] = 'esg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thm', 'Aheu', NULL, 10.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aheu', [Definition] = NULL, [SortOrder] = 10.50 WHERE [Code] = 'thm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahr', 'Ahirani', NULL, 10.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahirani', [Definition] = NULL, [SortOrder] = 10.60 WHERE [Code] = 'ahr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aho', 'Ahom', NULL, 10.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahom', [Definition] = NULL, [SortOrder] = 10.70 WHERE [Code] = 'aho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aht', 'Ahtena', NULL, 10.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahtena', [Definition] = NULL, [SortOrder] = 10.80 WHERE [Code] = 'aht' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfd', 'Ahwai', NULL, 10.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahwai', [Definition] = NULL, [SortOrder] = 10.90 WHERE [Code] = 'nfd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aih', 'Ai-Cham', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ai-Cham', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = 'aih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aix', 'Aighon', NULL, 11.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aighon', [Definition] = NULL, [SortOrder] = 11.10 WHERE [Code] = 'aix' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tba', 'Aikanã', NULL, 11.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aikanã', [Definition] = NULL, [SortOrder] = 11.20 WHERE [Code] = 'tba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwg', 'Aiklep', NULL, 11.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aiklep', [Definition] = NULL, [SortOrder] = 11.30 WHERE [Code] = 'mwg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aiq', 'Aimaq', NULL, 11.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aimaq', [Definition] = NULL, [SortOrder] = 11.40 WHERE [Code] = 'aiq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ail') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ail', 'Aimele', NULL, 11.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aimele', [Definition] = NULL, [SortOrder] = 11.50 WHERE [Code] = 'ail' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aim', 'Aimol', NULL, 11.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aimol', [Definition] = NULL, [SortOrder] = 11.60 WHERE [Code] = 'aim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aic', 'Ainbai', NULL, 11.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ainbai', [Definition] = NULL, [SortOrder] = 11.70 WHERE [Code] = 'aic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aib', 'Ainu (China)', NULL, 11.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ainu (China)', [Definition] = NULL, [SortOrder] = 11.80 WHERE [Code] = 'aib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ain') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ain', 'Ainu (Japan)', NULL, 11.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ainu (Japan)', [Definition] = NULL, [SortOrder] = 11.90 WHERE [Code] = 'ain' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aki', 'Aiome', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aiome', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = 'aki' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'air') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('air', 'Airoran', NULL, 12.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Airoran', [Definition] = NULL, [SortOrder] = 12.10 WHERE [Code] = 'air' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aio', 'Aiton', NULL, 12.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aiton', [Definition] = NULL, [SortOrder] = 12.20 WHERE [Code] = 'aio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajg', 'Aja (Benin)', NULL, 12.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aja (Benin)', [Definition] = NULL, [SortOrder] = 12.30 WHERE [Code] = 'ajg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aja', 'Aja (South Sudan)', NULL, 12.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aja (South Sudan)', [Definition] = NULL, [SortOrder] = 12.40 WHERE [Code] = 'aja' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajw', 'Ajawa', NULL, 12.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ajawa', [Definition] = NULL, [SortOrder] = 12.50 WHERE [Code] = 'ajw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aji', 'Ajië', NULL, 12.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ajië', [Definition] = NULL, [SortOrder] = 12.60 WHERE [Code] = 'aji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muc', 'Ajumbu', NULL, 12.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ajumbu', [Definition] = NULL, [SortOrder] = 12.70 WHERE [Code] = 'muc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpc', 'Ajyíninka Apurucayali', NULL, 12.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ajyíninka Apurucayali', [Definition] = NULL, [SortOrder] = 12.80 WHERE [Code] = 'cpc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akq', 'Ak', NULL, 12.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ak', [Definition] = NULL, [SortOrder] = 12.90 WHERE [Code] = 'akq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soh', 'Aka', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = 'soh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abj', 'Aka-Bea', NULL, 13.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Bea', [Definition] = NULL, [SortOrder] = 13.10 WHERE [Code] = 'abj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akm', 'Aka-Bo', NULL, 13.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Bo', [Definition] = NULL, [SortOrder] = 13.20 WHERE [Code] = 'akm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aci', 'Aka-Cari', NULL, 13.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Cari', [Definition] = NULL, [SortOrder] = 13.30 WHERE [Code] = 'aci' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akj', 'Aka-Jeru', NULL, 13.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Jeru', [Definition] = NULL, [SortOrder] = 13.40 WHERE [Code] = 'akj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akx', 'Aka-Kede', NULL, 13.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Kede', [Definition] = NULL, [SortOrder] = 13.50 WHERE [Code] = 'akx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aky', 'Aka-Kol', NULL, 13.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Kol', [Definition] = NULL, [SortOrder] = 13.60 WHERE [Code] = 'aky' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ack') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ack', 'Aka-Kora', NULL, 13.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Kora', [Definition] = NULL, [SortOrder] = 13.70 WHERE [Code] = 'ack' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aka', 'Akan', NULL, 13.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akan', [Definition] = NULL, [SortOrder] = 13.80 WHERE [Code] = 'aka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acl', 'Akar-Bale', NULL, 13.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akar-Bale', [Definition] = NULL, [SortOrder] = 13.90 WHERE [Code] = 'acl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aks', 'Akaselem', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akaselem', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = 'aks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ake') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ake', 'Akawaio', NULL, 14.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akawaio', [Definition] = NULL, [SortOrder] = 14.10 WHERE [Code] = 'ake' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aik', 'Ake', NULL, 14.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ake', [Definition] = NULL, [SortOrder] = 14.20 WHERE [Code] = 'aik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keu', 'Akebu', NULL, 14.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akebu', [Definition] = NULL, [SortOrder] = 14.30 WHERE [Code] = 'keu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsr', 'Akei', NULL, 14.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akei', [Definition] = NULL, [SortOrder] = 14.40 WHERE [Code] = 'tsr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aeu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aeu', 'Akeu', NULL, 14.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akeu', [Definition] = NULL, [SortOrder] = 14.50 WHERE [Code] = 'aeu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahk', 'Akha', NULL, 14.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akha', [Definition] = NULL, [SortOrder] = 14.60 WHERE [Code] = 'ahk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akv', 'Akhvakh', NULL, 14.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akhvakh', [Definition] = NULL, [SortOrder] = 14.70 WHERE [Code] = 'akv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akk', 'Akkadian', NULL, 14.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akkadian', [Definition] = NULL, [SortOrder] = 14.80 WHERE [Code] = 'akk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sia', 'Akkala Sami', NULL, 14.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akkala Sami', [Definition] = NULL, [SortOrder] = 14.90 WHERE [Code] = 'sia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akl', 'Aklanon', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aklanon', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = 'akl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akt', 'Akolet', NULL, 15.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akolet', [Definition] = NULL, [SortOrder] = 15.10 WHERE [Code] = 'akt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bss', 'Akoose', NULL, 15.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akoose', [Definition] = NULL, [SortOrder] = 15.20 WHERE [Code] = 'bss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miw', 'Akoye', NULL, 15.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akoye', [Definition] = NULL, [SortOrder] = 15.30 WHERE [Code] = 'miw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akf', 'Akpa', NULL, 15.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akpa', [Definition] = NULL, [SortOrder] = 15.40 WHERE [Code] = 'akf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibe', 'Akpes', NULL, 15.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akpes', [Definition] = NULL, [SortOrder] = 15.50 WHERE [Code] = 'ibe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afi', 'Akrukay', NULL, 15.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akrukay', [Definition] = NULL, [SortOrder] = 15.60 WHERE [Code] = 'afi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spm', 'Akukem', NULL, 15.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akukem', [Definition] = NULL, [SortOrder] = 15.70 WHERE [Code] = 'spm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayk', 'Akuku', NULL, 15.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akuku', [Definition] = NULL, [SortOrder] = 15.80 WHERE [Code] = 'ayk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aku', 'Akum', NULL, 15.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akum', [Definition] = NULL, [SortOrder] = 15.90 WHERE [Code] = 'aku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqz', 'Akuntsu', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akuntsu', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = 'aqz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ako') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ako', 'Akurio', NULL, 16.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akurio', [Definition] = NULL, [SortOrder] = 16.10 WHERE [Code] = 'ako' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akw', 'Akwa', NULL, 16.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akwa', [Definition] = NULL, [SortOrder] = 16.20 WHERE [Code] = 'akw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqy', 'Akyaung Ari Naga', NULL, 16.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akyaung Ari Naga', [Definition] = NULL, [SortOrder] = 16.30 WHERE [Code] = 'nqy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syy', 'Al-Sayyid Bedouin Sign Language', NULL, 16.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Al-Sayyid Bedouin Sign Language', [Definition] = NULL, [SortOrder] = 16.40 WHERE [Code] = 'syy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alw', 'Alaba-K''abeena', NULL, 16.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alaba-K''abeena', [Definition] = NULL, [SortOrder] = 16.50 WHERE [Code] = 'alw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akz', 'Alabama', NULL, 16.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alabama', [Definition] = NULL, [SortOrder] = 16.60 WHERE [Code] = 'akz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dul', 'Alabat Island Agta', NULL, 16.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alabat Island Agta', [Definition] = NULL, [SortOrder] = 16.70 WHERE [Code] = 'dul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mim', 'Alacatlatzala Mixtec', NULL, 16.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alacatlatzala Mixtec', [Definition] = NULL, [SortOrder] = 16.80 WHERE [Code] = 'mim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ala') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ala', 'Alago', NULL, 16.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alago', [Definition] = NULL, [SortOrder] = 16.90 WHERE [Code] = 'ala' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbj', 'Alagwa', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alagwa', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = 'wbj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alk', 'Alak', NULL, 17.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alak', [Definition] = NULL, [SortOrder] = 17.10 WHERE [Code] = 'alk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amp', 'Alamblak', NULL, 17.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alamblak', [Definition] = NULL, [SortOrder] = 17.20 WHERE [Code] = 'amp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alj', 'Alangan', NULL, 17.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alangan', [Definition] = NULL, [SortOrder] = 17.30 WHERE [Code] = 'alj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xln', 'Alanic', NULL, 17.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alanic', [Definition] = NULL, [SortOrder] = 17.40 WHERE [Code] = 'xln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apv', 'Alapmunte', NULL, 17.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alapmunte', [Definition] = NULL, [SortOrder] = 17.50 WHERE [Code] = 'apv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alh', 'Alawa', NULL, 17.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alawa', [Definition] = NULL, [SortOrder] = 17.60 WHERE [Code] = 'alh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqi', 'Albanian', NULL, 17.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Albanian', [Definition] = NULL, [SortOrder] = 17.70 WHERE [Code] = 'sqi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqk', 'Albanian Sign Language', NULL, 17.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Albanian Sign Language', [Definition] = NULL, [SortOrder] = 17.80 WHERE [Code] = 'sqk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsc', 'Albarradas Sign Language', NULL, 17.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Albarradas Sign Language', [Definition] = NULL, [SortOrder] = 17.90 WHERE [Code] = 'lsc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xta', 'Alcozauca Mixtec', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alcozauca Mixtec', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = 'xta' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alf', 'Alege', NULL, 18.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alege', [Definition] = NULL, [SortOrder] = 18.10 WHERE [Code] = 'alf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gah', 'Alekano', NULL, 18.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alekano', [Definition] = NULL, [SortOrder] = 18.20 WHERE [Code] = 'gah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ale') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ale', 'Aleut', NULL, 18.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aleut', [Definition] = NULL, [SortOrder] = 18.30 WHERE [Code] = 'ale' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arq', 'Algerian Arabic', NULL, 18.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algerian Arabic', [Definition] = NULL, [SortOrder] = 18.40 WHERE [Code] = 'arq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajs', 'Algerian Jewish Sign Language', NULL, 18.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algerian Jewish Sign Language', [Definition] = NULL, [SortOrder] = 18.50 WHERE [Code] = 'ajs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aao', 'Algerian Saharan Arabic', NULL, 18.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algerian Saharan Arabic', [Definition] = NULL, [SortOrder] = 18.60 WHERE [Code] = 'aao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asp', 'Algerian Sign Language', NULL, 18.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algerian Sign Language', [Definition] = NULL, [SortOrder] = 18.70 WHERE [Code] = 'asp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alq', 'Algonquin', NULL, 18.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algonquin', [Definition] = NULL, [SortOrder] = 18.80 WHERE [Code] = 'alq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aiy', 'Ali', NULL, 18.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ali', [Definition] = NULL, [SortOrder] = 18.90 WHERE [Code] = 'aiy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ald') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ald', 'Alladian', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alladian', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = 'ald' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'all') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('all', 'Allar', NULL, 19.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Allar', [Definition] = NULL, [SortOrder] = 19.10 WHERE [Code] = 'all' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aid', 'Alngith', NULL, 19.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alngith', [Definition] = NULL, [SortOrder] = 19.20 WHERE [Code] = 'aid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypo', 'Alo Phola', NULL, 19.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alo Phola', [Definition] = NULL, [SortOrder] = 19.30 WHERE [Code] = 'ypo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaq', 'Aloápam Zapotec', NULL, 19.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aloápam Zapotec', [Definition] = NULL, [SortOrder] = 19.40 WHERE [Code] = 'zaq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aol', 'Alor', NULL, 19.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alor', [Definition] = NULL, [SortOrder] = 19.50 WHERE [Code] = 'aol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aes', 'Alsea', NULL, 19.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alsea', [Definition] = NULL, [SortOrder] = 19.60 WHERE [Code] = 'aes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xua', 'Alu Kurumba', NULL, 19.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alu Kurumba', [Definition] = NULL, [SortOrder] = 19.70 WHERE [Code] = 'xua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aub', 'Alugu', NULL, 19.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alugu', [Definition] = NULL, [SortOrder] = 19.80 WHERE [Code] = 'aub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aab', 'Alumu-Tesu', NULL, 19.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alumu-Tesu', [Definition] = NULL, [SortOrder] = 19.90 WHERE [Code] = 'aab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alp', 'Alune', NULL, 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alune', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = 'alp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yna', 'Aluo', NULL, 20.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aluo', [Definition] = NULL, [SortOrder] = 20.10 WHERE [Code] = 'yna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alz', 'Alur', NULL, 20.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alur', [Definition] = NULL, [SortOrder] = 20.20 WHERE [Code] = 'alz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alr', 'Alutor', NULL, 20.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alutor', [Definition] = NULL, [SortOrder] = 20.30 WHERE [Code] = 'alr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avd', 'Alviri-Vidari', NULL, 20.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alviri-Vidari', [Definition] = NULL, [SortOrder] = 20.40 WHERE [Code] = 'avd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aly', 'Alyawarr', NULL, 20.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alyawarr', [Definition] = NULL, [SortOrder] = 20.50 WHERE [Code] = 'aly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amm', 'Ama (Papua New Guinea)', NULL, 20.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ama (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 20.60 WHERE [Code] = 'amm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyi', 'Ama (Sudan)', NULL, 20.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ama (Sudan)', [Definition] = NULL, [SortOrder] = 20.70 WHERE [Code] = 'nyi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amq', 'Amahai', NULL, 20.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amahai', [Definition] = NULL, [SortOrder] = 20.80 WHERE [Code] = 'amq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amc', 'Amahuaca', NULL, 20.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amahuaca', [Definition] = NULL, [SortOrder] = 20.90 WHERE [Code] = 'amc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ali') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ali', 'Amaimon', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amaimon', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = 'ali' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aad', 'Amal', NULL, 21.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amal', [Definition] = NULL, [SortOrder] = 21.10 WHERE [Code] = 'aad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jks', 'Amami Koniya Sign Language', NULL, 21.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amami Koniya Sign Language', [Definition] = NULL, [SortOrder] = 21.20 WHERE [Code] = 'jks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amn', 'Amanab', NULL, 21.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amanab', [Definition] = NULL, [SortOrder] = 21.30 WHERE [Code] = 'amn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ama') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ama', 'Amanayé', NULL, 21.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amanayé', [Definition] = NULL, [SortOrder] = 21.40 WHERE [Code] = 'ama' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aie', 'Amara', NULL, 21.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amara', [Definition] = NULL, [SortOrder] = 21.50 WHERE [Code] = 'aie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amr', 'Amarakaeri', NULL, 21.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amarakaeri', [Definition] = NULL, [SortOrder] = 21.60 WHERE [Code] = 'amr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaz', 'Amarasi', NULL, 21.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amarasi', [Definition] = NULL, [SortOrder] = 21.70 WHERE [Code] = 'aaz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpo', 'Amatlán Zapotec', NULL, 21.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amatlán Zapotec', [Definition] = NULL, [SortOrder] = 21.80 WHERE [Code] = 'zpo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'utp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('utp', 'Amba (Solomon Islands)', NULL, 21.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amba (Solomon Islands)', [Definition] = NULL, [SortOrder] = 21.90 WHERE [Code] = 'utp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwm', 'Amba (Uganda)', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amba (Uganda)', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = 'rwm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amk', 'Ambai', NULL, 22.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambai', [Definition] = NULL, [SortOrder] = 22.10 WHERE [Code] = 'amk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aew', 'Ambakich', NULL, 22.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambakich', [Definition] = NULL, [SortOrder] = 22.20 WHERE [Code] = 'aew' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abc', 'Ambala Ayta', NULL, 22.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambala Ayta', [Definition] = NULL, [SortOrder] = 22.30 WHERE [Code] = 'abc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amv', 'Ambelau', NULL, 22.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambelau', [Definition] = NULL, [SortOrder] = 22.40 WHERE [Code] = 'amv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ael') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ael', 'Ambele', NULL, 22.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambele', [Definition] = NULL, [SortOrder] = 22.50 WHERE [Code] = 'ael' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alm', 'Amblong', NULL, 22.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amblong', [Definition] = NULL, [SortOrder] = 22.60 WHERE [Code] = 'alm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amb', 'Ambo', NULL, 22.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambo', [Definition] = NULL, [SortOrder] = 22.70 WHERE [Code] = 'amb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qva', 'Ambo-Pasco Quechua', NULL, 22.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambo-Pasco Quechua', [Definition] = NULL, [SortOrder] = 22.80 WHERE [Code] = 'qva' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abs', 'Ambonese Malay', NULL, 22.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambonese Malay', [Definition] = NULL, [SortOrder] = 22.90 WHERE [Code] = 'abs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aag', 'Ambrak', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambrak', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = 'aag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apo', 'Ambul', NULL, 23.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambul', [Definition] = NULL, [SortOrder] = 23.10 WHERE [Code] = 'apo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abt', 'Ambulas', NULL, 23.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambulas', [Definition] = NULL, [SortOrder] = 23.20 WHERE [Code] = 'abt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amj', 'Amdang', NULL, 23.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amdang', [Definition] = NULL, [SortOrder] = 23.30 WHERE [Code] = 'amj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adx', 'Amdo Tibetan', NULL, 23.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amdo Tibetan', [Definition] = NULL, [SortOrder] = 23.40 WHERE [Code] = 'adx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aey', 'Amele', NULL, 23.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amele', [Definition] = NULL, [SortOrder] = 23.50 WHERE [Code] = 'aey' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ase') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ase', 'American Sign Language', NULL, 23.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'American Sign Language', [Definition] = NULL, [SortOrder] = 23.60 WHERE [Code] = 'ase' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifa', 'Amganad Ifugao', NULL, 23.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amganad Ifugao', [Definition] = NULL, [SortOrder] = 23.70 WHERE [Code] = 'ifa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amh', 'Amharic', NULL, 23.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amharic', [Definition] = NULL, [SortOrder] = 23.80 WHERE [Code] = 'amh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amy', 'Ami', NULL, 23.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ami', [Definition] = NULL, [SortOrder] = 23.90 WHERE [Code] = 'amy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ami') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ami', 'Amis', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amis', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = 'ami' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amo', 'Amo', NULL, 24.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amo', [Definition] = NULL, [SortOrder] = 24.10 WHERE [Code] = 'amo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alx', 'Amol', NULL, 24.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amol', [Definition] = NULL, [SortOrder] = 24.20 WHERE [Code] = 'alx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbz', 'Amoltepec Mixtec', NULL, 24.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amoltepec Mixtec', [Definition] = NULL, [SortOrder] = 24.30 WHERE [Code] = 'mbz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apg', 'Ampanang', NULL, 24.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ampanang', [Definition] = NULL, [SortOrder] = 24.40 WHERE [Code] = 'apg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqd', 'Ampari Dogon', NULL, 24.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ampari Dogon', [Definition] = NULL, [SortOrder] = 24.50 WHERE [Code] = 'aqd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajz', 'Amri Karbi', NULL, 24.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amri Karbi', [Definition] = NULL, [SortOrder] = 24.60 WHERE [Code] = 'ajz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amt', 'Amto', NULL, 24.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amto', [Definition] = NULL, [SortOrder] = 24.70 WHERE [Code] = 'amt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adw', 'Amundava', NULL, 24.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amundava', [Definition] = NULL, [SortOrder] = 24.80 WHERE [Code] = 'adw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amg', 'Amurdak', NULL, 24.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amurdak', [Definition] = NULL, [SortOrder] = 24.90 WHERE [Code] = 'amg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dti', 'Ana Tinga Dogon', NULL, 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ana Tinga Dogon', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = 'dti' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anw', 'Anaang', NULL, 25.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anaang', [Definition] = NULL, [SortOrder] = 25.10 WHERE [Code] = 'anw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akg', 'Anakalangu', NULL, 25.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anakalangu', [Definition] = NULL, [SortOrder] = 25.20 WHERE [Code] = 'akg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anm', 'Anal', NULL, 25.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anal', [Definition] = NULL, [SortOrder] = 25.30 WHERE [Code] = 'anm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pda', 'Anam', NULL, 25.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anam', [Definition] = NULL, [SortOrder] = 25.40 WHERE [Code] = 'pda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aan', 'Anambé', NULL, 25.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anambé', [Definition] = NULL, [SortOrder] = 25.50 WHERE [Code] = 'aan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imi', 'Anamgura', NULL, 25.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anamgura', [Definition] = NULL, [SortOrder] = 25.60 WHERE [Code] = 'imi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpo', 'Anasi', NULL, 25.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anasi', [Definition] = NULL, [SortOrder] = 25.70 WHERE [Code] = 'bpo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acb', 'Áncá', NULL, 25.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Áncá', [Definition] = NULL, [SortOrder] = 25.80 WHERE [Code] = 'acb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grc', 'Ancient Greek (to 1453)', NULL, 25.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient Greek (to 1453)', [Definition] = NULL, [SortOrder] = 25.90 WHERE [Code] = 'grc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbo', 'Ancient Hebrew', NULL, 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient Hebrew', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = 'hbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmk', 'Ancient Macedonian', NULL, 26.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient Macedonian', [Definition] = NULL, [SortOrder] = 26.10 WHERE [Code] = 'xmk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xna', 'Ancient North Arabian', NULL, 26.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient North Arabian', [Definition] = NULL, [SortOrder] = 26.20 WHERE [Code] = 'xna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xzp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xzp', 'Ancient Zapotec', NULL, 26.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient Zapotec', [Definition] = NULL, [SortOrder] = 26.30 WHERE [Code] = 'xzp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgl', 'Andaandi', NULL, 26.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andaandi', [Definition] = NULL, [SortOrder] = 26.40 WHERE [Code] = 'dgl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afd', 'Andai', NULL, 26.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andai', [Definition] = NULL, [SortOrder] = 26.50 WHERE [Code] = 'afd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajn', 'Andajin', NULL, 26.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andajin', [Definition] = NULL, [SortOrder] = 26.60 WHERE [Code] = 'ajn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xaa', 'Andalusian Arabic', NULL, 26.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andalusian Arabic', [Definition] = NULL, [SortOrder] = 26.70 WHERE [Code] = 'xaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hca', 'Andaman Creole Hindi', NULL, 26.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andaman Creole Hindi', [Definition] = NULL, [SortOrder] = 26.80 WHERE [Code] = 'hca' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ana') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ana', 'Andaqui', NULL, 26.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andaqui', [Definition] = NULL, [SortOrder] = 26.90 WHERE [Code] = 'ana' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aod', 'Andarum', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andarum', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = 'aod' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adg', 'Andegerebinha', NULL, 27.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andegerebinha', [Definition] = NULL, [SortOrder] = 27.10 WHERE [Code] = 'adg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anr', 'Andh', NULL, 27.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andh', [Definition] = NULL, [SortOrder] = 27.20 WHERE [Code] = 'anr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ani') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ani', 'Andi', NULL, 27.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andi', [Definition] = NULL, [SortOrder] = 27.30 WHERE [Code] = 'ani' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzb', 'Andio', NULL, 27.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andio', [Definition] = NULL, [SortOrder] = 27.40 WHERE [Code] = 'bzb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anb', 'Andoa', NULL, 27.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andoa', [Definition] = NULL, [SortOrder] = 27.50 WHERE [Code] = 'anb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ano') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ano', 'Andoque', NULL, 27.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andoque', [Definition] = NULL, [SortOrder] = 27.60 WHERE [Code] = 'ano' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anx', 'Andra-Hus', NULL, 27.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andra-Hus', [Definition] = NULL, [SortOrder] = 27.70 WHERE [Code] = 'anx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aty', 'Aneityum', NULL, 27.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aneityum', [Definition] = NULL, [SortOrder] = 27.80 WHERE [Code] = 'aty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anz', 'Anem', NULL, 27.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anem', [Definition] = NULL, [SortOrder] = 27.90 WHERE [Code] = 'anz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aby', 'Aneme Wake', NULL, 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aneme Wake', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = 'aby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myo', 'Anfillo', NULL, 28.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anfillo', [Definition] = NULL, [SortOrder] = 28.10 WHERE [Code] = 'myo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agm', 'Angaataha', NULL, 28.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angaataha', [Definition] = NULL, [SortOrder] = 28.20 WHERE [Code] = 'agm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqt', 'Angaité', NULL, 28.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angaité', [Definition] = NULL, [SortOrder] = 28.30 WHERE [Code] = 'aqt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'age') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('age', 'Angal', NULL, 28.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angal', [Definition] = NULL, [SortOrder] = 28.40 WHERE [Code] = 'age' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoe', 'Angal Enen', NULL, 28.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angal Enen', [Definition] = NULL, [SortOrder] = 28.50 WHERE [Code] = 'aoe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akh', 'Angal Heneng', NULL, 28.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angal Heneng', [Definition] = NULL, [SortOrder] = 28.60 WHERE [Code] = 'akh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njm', 'Angami Naga', NULL, 28.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angami Naga', [Definition] = NULL, [SortOrder] = 28.70 WHERE [Code] = 'njm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yli', 'Angguruk Yali', NULL, 28.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angguruk Yali', [Definition] = NULL, [SortOrder] = 28.80 WHERE [Code] = 'yli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anp', 'Angika', NULL, 28.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angika', [Definition] = NULL, [SortOrder] = 28.90 WHERE [Code] = 'anp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avm', 'Angkamuthi', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angkamuthi', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = 'avm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xno', 'Anglo-Norman', NULL, 29.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anglo-Norman', [Definition] = NULL, [SortOrder] = 29.10 WHERE [Code] = 'xno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rme', 'Angloromani', NULL, 29.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angloromani', [Definition] = NULL, [SortOrder] = 29.20 WHERE [Code] = 'rme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoa', 'Angolar', NULL, 29.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angolar', [Definition] = NULL, [SortOrder] = 29.30 WHERE [Code] = 'aoa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agg', 'Angor', NULL, 29.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angor', [Definition] = NULL, [SortOrder] = 29.40 WHERE [Code] = 'agg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aog', 'Angoram', NULL, 29.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angoram', [Definition] = NULL, [SortOrder] = 29.50 WHERE [Code] = 'aog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnd', 'Angosturas Tunebo', NULL, 29.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angosturas Tunebo', [Definition] = NULL, [SortOrder] = 29.60 WHERE [Code] = 'tnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awg', 'Anguthimri', NULL, 29.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anguthimri', [Definition] = NULL, [SortOrder] = 29.70 WHERE [Code] = 'awg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypn', 'Ani Phowa', NULL, 29.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ani Phowa', [Definition] = NULL, [SortOrder] = 29.80 WHERE [Code] = 'ypn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blo', 'Anii', NULL, 29.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anii', [Definition] = NULL, [SortOrder] = 29.90 WHERE [Code] = 'blo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anf', 'Animere', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Animere', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = 'anf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoi', 'Anindilyakwa', NULL, 30.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anindilyakwa', [Definition] = NULL, [SortOrder] = 30.10 WHERE [Code] = 'aoi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqk', 'Aninka', NULL, 30.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aninka', [Definition] = NULL, [SortOrder] = 30.20 WHERE [Code] = 'aqk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boj', 'Anjam', NULL, 30.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anjam', [Definition] = NULL, [SortOrder] = 30.30 WHERE [Code] = 'boj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aak', 'Ankave', NULL, 30.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ankave', [Definition] = NULL, [SortOrder] = 30.40 WHERE [Code] = 'aak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amx', 'Anmatyerre', NULL, 30.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anmatyerre', [Definition] = NULL, [SortOrder] = 30.50 WHERE [Code] = 'amx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nun', 'Anong', NULL, 30.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anong', [Definition] = NULL, [SortOrder] = 30.60 WHERE [Code] = 'nun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anj', 'Anor', NULL, 30.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anor', [Definition] = NULL, [SortOrder] = 30.70 WHERE [Code] = 'anj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ans') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ans', 'Anserma', NULL, 30.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anserma', [Definition] = NULL, [SortOrder] = 30.80 WHERE [Code] = 'ans' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'and') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('and', 'Ansus', NULL, 30.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ansus', [Definition] = NULL, [SortOrder] = 30.90 WHERE [Code] = 'and' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ant') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ant', 'Antakarinya', NULL, 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Antakarinya', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = 'ant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmv', 'Antankarana Malagasy', NULL, 31.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Antankarana Malagasy', [Definition] = NULL, [SortOrder] = 31.10 WHERE [Code] = 'xmv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aig', 'Antigua and Barbuda Creole English', NULL, 31.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Antigua and Barbuda Creole English', [Definition] = NULL, [SortOrder] = 31.20 WHERE [Code] = 'aig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anl', 'Anu-Hkongso Chin', NULL, 31.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anu-Hkongso Chin', [Definition] = NULL, [SortOrder] = 31.30 WHERE [Code] = 'anl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anu', 'Anuak', NULL, 31.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anuak', [Definition] = NULL, [SortOrder] = 31.40 WHERE [Code] = 'anu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cko', 'Anufo', NULL, 31.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anufo', [Definition] = NULL, [SortOrder] = 31.50 WHERE [Code] = 'cko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aui', 'Anuki', NULL, 31.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anuki', [Definition] = NULL, [SortOrder] = 31.60 WHERE [Code] = 'aui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auq', 'Anus', NULL, 31.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anus', [Definition] = NULL, [SortOrder] = 31.70 WHERE [Code] = 'auq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aud', 'Anuta', NULL, 31.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anuta', [Definition] = NULL, [SortOrder] = 31.80 WHERE [Code] = 'aud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'any') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('any', 'Anyin', NULL, 31.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anyin', [Definition] = NULL, [SortOrder] = 31.90 WHERE [Code] = 'any' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtb', 'Anyin Morofo', NULL, 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anyin Morofo', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = 'mtb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njo', 'Ao Naga', NULL, 32.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ao Naga', [Definition] = NULL, [SortOrder] = 32.10 WHERE [Code] = 'njo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pni', 'Aoheng', NULL, 32.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aoheng', [Definition] = NULL, [SortOrder] = 32.20 WHERE [Code] = 'pni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aor', 'Aore', NULL, 32.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aore', [Definition] = NULL, [SortOrder] = 32.30 WHERE [Code] = 'aor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbx', 'Ap Ma', NULL, 32.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ap Ma', [Definition] = NULL, [SortOrder] = 32.40 WHERE [Code] = 'kbx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xap', 'Apalachee', NULL, 32.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apalachee', [Definition] = NULL, [SortOrder] = 32.50 WHERE [Code] = 'xap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apy', 'Apalaí', NULL, 32.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apalaí', [Definition] = NULL, [SortOrder] = 32.60 WHERE [Code] = 'apy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ena') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ena', 'Apali', NULL, 32.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apali', [Definition] = NULL, [SortOrder] = 32.70 WHERE [Code] = 'ena' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mip', 'Apasco-Apoala Mixtec', NULL, 32.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apasco-Apoala Mixtec', [Definition] = NULL, [SortOrder] = 32.80 WHERE [Code] = 'mip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apt', 'Apatani', NULL, 32.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apatani', [Definition] = NULL, [SortOrder] = 32.90 WHERE [Code] = 'apt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'api') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('api', 'Apiaká', NULL, 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apiaká', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = 'api' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apn', 'Apinayé', NULL, 33.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apinayé', [Definition] = NULL, [SortOrder] = 33.10 WHERE [Code] = 'apn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'app') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('app', 'Apma', NULL, 33.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apma', [Definition] = NULL, [SortOrder] = 33.20 WHERE [Code] = 'app' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahp', 'Aproumu Aizi', NULL, 33.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aproumu Aizi', [Definition] = NULL, [SortOrder] = 33.30 WHERE [Code] = 'ahp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apu', 'Apurinã', NULL, 33.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apurinã', [Definition] = NULL, [SortOrder] = 33.40 WHERE [Code] = 'apu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apx', 'Aputai', NULL, 33.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aputai', [Definition] = NULL, [SortOrder] = 33.50 WHERE [Code] = 'apx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xaq', 'Aquitanian', NULL, 33.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aquitanian', [Definition] = NULL, [SortOrder] = 33.60 WHERE [Code] = 'xaq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ard') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ard', 'Arabana', NULL, 33.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arabana', [Definition] = NULL, [SortOrder] = 33.70 WHERE [Code] = 'ard' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arl', 'Arabela', NULL, 33.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arabela', [Definition] = NULL, [SortOrder] = 33.80 WHERE [Code] = 'arl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ara') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ara', 'Arabic', NULL, 33.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arabic', [Definition] = NULL, [SortOrder] = 33.90 WHERE [Code] = 'ara' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arg', 'Aragonese', NULL, 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aragonese', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = 'arg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akr', 'Araki', NULL, 34.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Araki', [Definition] = NULL, [SortOrder] = 34.10 WHERE [Code] = 'akr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkw', 'Arakwal', NULL, 34.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arakwal', [Definition] = NULL, [SortOrder] = 34.20 WHERE [Code] = 'rkw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atq', 'Aralle-Tabulahan', NULL, 34.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aralle-Tabulahan', [Definition] = NULL, [SortOrder] = 34.30 WHERE [Code] = 'atq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stk', 'Arammba', NULL, 34.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arammba', [Definition] = NULL, [SortOrder] = 34.40 WHERE [Code] = 'stk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaf', 'Aranadan', NULL, 34.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aranadan', [Definition] = NULL, [SortOrder] = 34.50 WHERE [Code] = 'aaf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrt', 'Aranama-Tamique', NULL, 34.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aranama-Tamique', [Definition] = NULL, [SortOrder] = 34.60 WHERE [Code] = 'xrt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbj', 'Arandai', NULL, 34.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arandai', [Definition] = NULL, [SortOrder] = 34.70 WHERE [Code] = 'jbj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aro', 'Araona', NULL, 34.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Araona', [Definition] = NULL, [SortOrder] = 34.80 WHERE [Code] = 'aro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arp', 'Arapaho', NULL, 34.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arapaho', [Definition] = NULL, [SortOrder] = 34.90 WHERE [Code] = 'arp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arj', 'Arapaso', NULL, 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arapaso', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = 'arj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xaj', 'Ararandewára', NULL, 35.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ararandewára', [Definition] = NULL, [SortOrder] = 35.10 WHERE [Code] = 'xaj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arw', 'Arawak', NULL, 35.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arawak', [Definition] = NULL, [SortOrder] = 35.20 WHERE [Code] = 'arw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awt', 'Araweté', NULL, 35.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Araweté', [Definition] = NULL, [SortOrder] = 35.30 WHERE [Code] = 'awt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awm', 'Arawum', NULL, 35.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arawum', [Definition] = NULL, [SortOrder] = 35.40 WHERE [Code] = 'awm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aae', 'Arbëreshë Albanian', NULL, 35.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arbëreshë Albanian', [Definition] = NULL, [SortOrder] = 35.50 WHERE [Code] = 'aae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arv', 'Arbore', NULL, 35.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arbore', [Definition] = NULL, [SortOrder] = 35.60 WHERE [Code] = 'arv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqc', 'Archi', NULL, 35.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Archi', [Definition] = NULL, [SortOrder] = 35.70 WHERE [Code] = 'aqc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pka', 'Ardhamagadhi Prakrit', NULL, 35.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ardhamagadhi Prakrit', [Definition] = NULL, [SortOrder] = 35.80 WHERE [Code] = 'pka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwc', 'Are', NULL, 35.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Are', [Definition] = NULL, [SortOrder] = 35.90 WHERE [Code] = 'mwc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aea', 'Areba', NULL, 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Areba', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = 'aea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aem', 'Arem', NULL, 36.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arem', [Definition] = NULL, [SortOrder] = 36.10 WHERE [Code] = 'aem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxu', 'Arequipa-La Unión Quechua', NULL, 36.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arequipa-La Unión Quechua', [Definition] = NULL, [SortOrder] = 36.20 WHERE [Code] = 'qxu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aed', 'Argentine Sign Language', NULL, 36.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Argentine Sign Language', [Definition] = NULL, [SortOrder] = 36.30 WHERE [Code] = 'aed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agj', 'Argobba', NULL, 36.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Argobba', [Definition] = NULL, [SortOrder] = 36.40 WHERE [Code] = 'agj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agf', 'Arguni', NULL, 36.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arguni', [Definition] = NULL, [SortOrder] = 36.50 WHERE [Code] = 'agf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqr', 'Arhâ', NULL, 36.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arhâ', [Definition] = NULL, [SortOrder] = 36.60 WHERE [Code] = 'aqr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aok', 'Arhö', NULL, 36.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arhö', [Definition] = NULL, [SortOrder] = 36.70 WHERE [Code] = 'aok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arh', 'Arhuaco', NULL, 36.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arhuaco', [Definition] = NULL, [SortOrder] = 36.80 WHERE [Code] = 'arh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aac', 'Ari', NULL, 36.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ari', [Definition] = NULL, [SortOrder] = 36.90 WHERE [Code] = 'aac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laz', 'Aribwatsa', NULL, 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aribwatsa', [Definition] = NULL, [SortOrder] = 37.00 WHERE [Code] = 'laz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylu', 'Aribwaung', NULL, 37.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aribwaung', [Definition] = NULL, [SortOrder] = 37.10 WHERE [Code] = 'ylu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aai', 'Arifama-Miniafia', NULL, 37.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arifama-Miniafia', [Definition] = NULL, [SortOrder] = 37.20 WHERE [Code] = 'aai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqg', 'Arigidi', NULL, 37.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arigidi', [Definition] = NULL, [SortOrder] = 37.30 WHERE [Code] = 'aqg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ark') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ark', 'Arikapú', NULL, 37.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arikapú', [Definition] = NULL, [SortOrder] = 37.40 WHERE [Code] = 'ark' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ari') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ari', 'Arikara', NULL, 37.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arikara', [Definition] = NULL, [SortOrder] = 37.50 WHERE [Code] = 'ari' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ait') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ait', 'Arikem', NULL, 37.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arikem', [Definition] = NULL, [SortOrder] = 37.60 WHERE [Code] = 'ait' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrn', 'Arin', NULL, 37.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arin', [Definition] = NULL, [SortOrder] = 37.70 WHERE [Code] = 'xrn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luc', 'Aringa', NULL, 37.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aringa', [Definition] = NULL, [SortOrder] = 37.80 WHERE [Code] = 'luc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrm', 'Armazic', NULL, 37.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Armazic', [Definition] = NULL, [SortOrder] = 37.90 WHERE [Code] = 'xrm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hye', 'Armenian', NULL, 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Armenian', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = 'hye' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aen', 'Armenian Sign Language', NULL, 38.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Armenian Sign Language', [Definition] = NULL, [SortOrder] = 38.10 WHERE [Code] = 'aen' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apr', 'Arop-Lokep', NULL, 38.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arop-Lokep', [Definition] = NULL, [SortOrder] = 38.20 WHERE [Code] = 'apr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aps', 'Arop-Sissano', NULL, 38.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arop-Sissano', [Definition] = NULL, [SortOrder] = 38.30 WHERE [Code] = 'aps' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aia', 'Arosi', NULL, 38.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arosi', [Definition] = NULL, [SortOrder] = 38.40 WHERE [Code] = 'aia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frp', 'Arpitan', NULL, 38.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arpitan', [Definition] = NULL, [SortOrder] = 38.50 WHERE [Code] = 'frp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rrt', 'Arritinngithigh', NULL, 38.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arritinngithigh', [Definition] = NULL, [SortOrder] = 38.60 WHERE [Code] = 'rrt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atz', 'Arta', NULL, 38.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arta', [Definition] = NULL, [SortOrder] = 38.70 WHERE [Code] = 'atz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aru', 'Aruá (Amazonas State)', NULL, 38.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruá (Amazonas State)', [Definition] = NULL, [SortOrder] = 38.80 WHERE [Code] = 'aru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arx', 'Aruá (Rodonia State)', NULL, 38.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruá (Rodonia State)', [Definition] = NULL, [SortOrder] = 38.90 WHERE [Code] = 'arx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msy', 'Aruamu', NULL, 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruamu', [Definition] = NULL, [SortOrder] = 39.00 WHERE [Code] = 'msy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aur', 'Aruek', NULL, 39.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruek', [Definition] = NULL, [SortOrder] = 39.10 WHERE [Code] = 'aur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsr', 'Aruop', NULL, 39.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruop', [Definition] = NULL, [SortOrder] = 39.20 WHERE [Code] = 'lsr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atx', 'Arutani', NULL, 39.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arutani', [Definition] = NULL, [SortOrder] = 39.30 WHERE [Code] = 'atx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aat', 'Arvanitika Albanian', NULL, 39.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arvanitika Albanian', [Definition] = NULL, [SortOrder] = 39.40 WHERE [Code] = 'aat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asz', 'As', NULL, 39.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'As', [Definition] = NULL, [SortOrder] = 39.50 WHERE [Code] = 'asz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtv', 'Asaro''o', NULL, 39.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asaro''o', [Definition] = NULL, [SortOrder] = 39.60 WHERE [Code] = 'mtv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cni', 'Asháninka', NULL, 39.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asháninka', [Definition] = NULL, [SortOrder] = 39.70 WHERE [Code] = 'cni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahs', 'Ashe', NULL, 39.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashe', [Definition] = NULL, [SortOrder] = 39.80 WHERE [Code] = 'ahs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjo', 'Ashéninka Pajonal', NULL, 39.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashéninka Pajonal', [Definition] = NULL, [SortOrder] = 39.90 WHERE [Code] = 'cjo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prq', 'Ashéninka Perené', NULL, 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashéninka Perené', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = 'prq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ask') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ask', 'Ashkun', NULL, 40.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashkun', [Definition] = NULL, [SortOrder] = 40.10 WHERE [Code] = 'ask' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csh', 'Asho Chin', NULL, 40.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asho Chin', [Definition] = NULL, [SortOrder] = 40.20 WHERE [Code] = 'csh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atn', 'Ashtiani', NULL, 40.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashtiani', [Definition] = NULL, [SortOrder] = 40.30 WHERE [Code] = 'atn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asl', 'Asilulu', NULL, 40.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asilulu', [Definition] = NULL, [SortOrder] = 40.40 WHERE [Code] = 'asl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eiv', 'Askopan', NULL, 40.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Askopan', [Definition] = NULL, [SortOrder] = 40.50 WHERE [Code] = 'eiv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asv', 'Asoa', NULL, 40.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asoa', [Definition] = NULL, [SortOrder] = 40.60 WHERE [Code] = 'asv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asm', 'Assamese', NULL, 40.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assamese', [Definition] = NULL, [SortOrder] = 40.70 WHERE [Code] = 'asm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xss', 'Assan', NULL, 40.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assan', [Definition] = NULL, [SortOrder] = 40.80 WHERE [Code] = 'xss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjg', 'Assangori', NULL, 40.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assangori', [Definition] = NULL, [SortOrder] = 40.90 WHERE [Code] = 'sjg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asb', 'Assiniboine', NULL, 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assiniboine', [Definition] = NULL, [SortOrder] = 41.00 WHERE [Code] = 'asb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aii', 'Assyrian Neo-Aramaic', NULL, 41.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assyrian Neo-Aramaic', [Definition] = NULL, [SortOrder] = 41.10 WHERE [Code] = 'aii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ast') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ast', 'Asturian', NULL, 41.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asturian', [Definition] = NULL, [SortOrder] = 41.20 WHERE [Code] = 'ast' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aum', 'Asu (Nigeria)', NULL, 41.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asu (Nigeria)', [Definition] = NULL, [SortOrder] = 41.30 WHERE [Code] = 'aum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asa', 'Asu (Tanzania)', NULL, 41.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asu (Tanzania)', [Definition] = NULL, [SortOrder] = 41.40 WHERE [Code] = 'asa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psa', 'Asue Awyu', NULL, 41.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asue Awyu', [Definition] = NULL, [SortOrder] = 41.50 WHERE [Code] = 'psa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aua', 'Asumboa', NULL, 41.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asumboa', [Definition] = NULL, [SortOrder] = 41.60 WHERE [Code] = 'aua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zoo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zoo', 'Asunción Mixtepec Zapotec', NULL, 41.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asunción Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 41.70 WHERE [Code] = 'zoo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asr', 'Asuri', NULL, 41.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asuri', [Definition] = NULL, [SortOrder] = 41.80 WHERE [Code] = 'asr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atm', 'Ata', NULL, 41.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ata', [Definition] = NULL, [SortOrder] = 41.90 WHERE [Code] = 'atm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atd', 'Ata Manobo', NULL, 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ata Manobo', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = 'atd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqp', 'Atakapa', NULL, 42.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atakapa', [Definition] = NULL, [SortOrder] = 42.10 WHERE [Code] = 'aqp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amz', 'Atampaya', NULL, 42.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atampaya', [Definition] = NULL, [SortOrder] = 42.20 WHERE [Code] = 'amz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mib', 'Atatláhuca Mixtec', NULL, 42.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atatláhuca Mixtec', [Definition] = NULL, [SortOrder] = 42.30 WHERE [Code] = 'mib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adb', 'Atauran', NULL, 42.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atauran', [Definition] = NULL, [SortOrder] = 42.40 WHERE [Code] = 'adb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tay', 'Atayal', NULL, 42.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atayal', [Definition] = NULL, [SortOrder] = 42.50 WHERE [Code] = 'tay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ate') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ate', 'Atemble', NULL, 42.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atemble', [Definition] = NULL, [SortOrder] = 42.60 WHERE [Code] = 'ate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aph', 'Athpariya', NULL, 42.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Athpariya', [Definition] = NULL, [SortOrder] = 42.70 WHERE [Code] = 'aph' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atk', 'Ati', NULL, 42.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ati', [Definition] = NULL, [SortOrder] = 42.80 WHERE [Code] = 'atk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atj', 'Atikamekw', NULL, 42.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atikamekw', [Definition] = NULL, [SortOrder] = 42.90 WHERE [Code] = 'atj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqm', 'Atohwaim', NULL, 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atohwaim', [Definition] = NULL, [SortOrder] = 43.00 WHERE [Code] = 'aqm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ato') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ato', 'Atong (Cameroon)', NULL, 43.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atong (Cameroon)', [Definition] = NULL, [SortOrder] = 43.10 WHERE [Code] = 'ato' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aot', 'Atong (India)', NULL, 43.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atong (India)', [Definition] = NULL, [SortOrder] = 43.20 WHERE [Code] = 'aot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aox', 'Atorada', NULL, 43.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atorada', [Definition] = NULL, [SortOrder] = 43.30 WHERE [Code] = 'aox' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atc', 'Atsahuaca', NULL, 43.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atsahuaca', [Definition] = NULL, [SortOrder] = 43.40 WHERE [Code] = 'atc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cch', 'Atsam', NULL, 43.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atsam', [Definition] = NULL, [SortOrder] = 43.50 WHERE [Code] = 'cch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atw', 'Atsugewi', NULL, 43.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atsugewi', [Definition] = NULL, [SortOrder] = 43.60 WHERE [Code] = 'atw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkr', 'Attapady Kurumba', NULL, 43.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Attapady Kurumba', [Definition] = NULL, [SortOrder] = 43.70 WHERE [Code] = 'pkr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ati') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ati', 'Attié', NULL, 43.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Attié', [Definition] = NULL, [SortOrder] = 43.80 WHERE [Code] = 'ati' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ocu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ocu', 'Atzingo Matlatzinca', NULL, 43.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atzingo Matlatzinca', [Definition] = NULL, [SortOrder] = 43.90 WHERE [Code] = 'ocu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avt', 'Au', NULL, 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Au', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = 'avt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aul', 'Aulua', NULL, 44.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aulua', [Definition] = NULL, [SortOrder] = 44.10 WHERE [Code] = 'aul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aux', 'Aurá', NULL, 44.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aurá', [Definition] = NULL, [SortOrder] = 44.20 WHERE [Code] = 'aux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auh', 'Aushi', NULL, 44.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aushi', [Definition] = NULL, [SortOrder] = 44.30 WHERE [Code] = 'auh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avs', 'Aushiri', NULL, 44.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aushiri', [Definition] = NULL, [SortOrder] = 44.40 WHERE [Code] = 'avs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asf', 'Auslan', NULL, 44.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Auslan', [Definition] = NULL, [SortOrder] = 44.50 WHERE [Code] = 'asf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aut', 'Austral', NULL, 44.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Austral', [Definition] = NULL, [SortOrder] = 44.60 WHERE [Code] = 'aut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asw', 'Australian Aborigines Sign Language', NULL, 44.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Australian Aborigines Sign Language', [Definition] = NULL, [SortOrder] = 44.70 WHERE [Code] = 'asw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asq', 'Austrian Sign Language', NULL, 44.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Austrian Sign Language', [Definition] = NULL, [SortOrder] = 44.80 WHERE [Code] = 'asq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smf', 'Auwe', NULL, 44.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Auwe', [Definition] = NULL, [SortOrder] = 44.90 WHERE [Code] = 'smf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auu', 'Auye', NULL, 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Auye', [Definition] = NULL, [SortOrder] = 45.00 WHERE [Code] = 'auu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auo', 'Auyokawa', NULL, 45.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Auyokawa', [Definition] = NULL, [SortOrder] = 45.10 WHERE [Code] = 'auo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avv', 'Avá-Canoeiro', NULL, 45.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avá-Canoeiro', [Definition] = NULL, [SortOrder] = 45.20 WHERE [Code] = 'avv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ava') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ava', 'Avaric', NULL, 45.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avaric', [Definition] = NULL, [SortOrder] = 45.30 WHERE [Code] = 'ava' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avn', 'Avatime', NULL, 45.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avatime', [Definition] = NULL, [SortOrder] = 45.40 WHERE [Code] = 'avn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avb', 'Avau', NULL, 45.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avau', [Definition] = NULL, [SortOrder] = 45.50 WHERE [Code] = 'avb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ave') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ave', 'Avestan', NULL, 45.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avestan', [Definition] = NULL, [SortOrder] = 45.60 WHERE [Code] = 'ave' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avi', 'Avikam', NULL, 45.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avikam', [Definition] = NULL, [SortOrder] = 45.70 WHERE [Code] = 'avi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avu', 'Avokaya', NULL, 45.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avokaya', [Definition] = NULL, [SortOrder] = 45.80 WHERE [Code] = 'avu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vwa', 'Awa (China)', NULL, 45.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awa (China)', [Definition] = NULL, [SortOrder] = 45.90 WHERE [Code] = 'vwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awb', 'Awa (Papua New Guinea)', NULL, 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = 'awb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwi', 'Awa-Cuaiquer', NULL, 46.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awa-Cuaiquer', [Definition] = NULL, [SortOrder] = 46.10 WHERE [Code] = 'kwi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awk', 'Awabakal', NULL, 46.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awabakal', [Definition] = NULL, [SortOrder] = 46.20 WHERE [Code] = 'awk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcu', 'Awad Bing', NULL, 46.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awad Bing', [Definition] = NULL, [SortOrder] = 46.30 WHERE [Code] = 'bcu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awa', 'Awadhi', NULL, 46.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awadhi', [Definition] = NULL, [SortOrder] = 46.40 WHERE [Code] = 'awa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awo', 'Awak', NULL, 46.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awak', [Definition] = NULL, [SortOrder] = 46.50 WHERE [Code] = 'awo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aya', 'Awar', NULL, 46.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awar', [Definition] = NULL, [SortOrder] = 46.60 WHERE [Code] = 'aya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awx', 'Awara', NULL, 46.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awara', [Definition] = NULL, [SortOrder] = 46.70 WHERE [Code] = 'awx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awh', 'Awbono', NULL, 46.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awbono', [Definition] = NULL, [SortOrder] = 46.80 WHERE [Code] = 'awh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bob', 'Aweer', NULL, 46.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aweer', [Definition] = NULL, [SortOrder] = 46.90 WHERE [Code] = 'bob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awr', 'Awera', NULL, 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awera', [Definition] = NULL, [SortOrder] = 47.00 WHERE [Code] = 'awr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awe', 'Awetí', NULL, 47.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awetí', [Definition] = NULL, [SortOrder] = 47.10 WHERE [Code] = 'awe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azo', 'Awing', NULL, 47.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awing', [Definition] = NULL, [SortOrder] = 47.20 WHERE [Code] = 'azo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auy', 'Awiyaana', NULL, 47.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awiyaana', [Definition] = NULL, [SortOrder] = 47.30 WHERE [Code] = 'auy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auj', 'Awjilah', NULL, 47.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awjilah', [Definition] = NULL, [SortOrder] = 47.40 WHERE [Code] = 'auj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awn', 'Awngi', NULL, 47.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awngi', [Definition] = NULL, [SortOrder] = 47.50 WHERE [Code] = 'awn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwm', 'Awngthim', NULL, 47.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awngthim', [Definition] = NULL, [SortOrder] = 47.60 WHERE [Code] = 'gwm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmn', 'Awtuw', NULL, 47.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awtuw', [Definition] = NULL, [SortOrder] = 47.70 WHERE [Code] = 'kmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yiu', 'Awu', NULL, 47.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awu', [Definition] = NULL, [SortOrder] = 47.80 WHERE [Code] = 'yiu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aww', 'Awun', NULL, 47.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awun', [Definition] = NULL, [SortOrder] = 47.90 WHERE [Code] = 'aww' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afu', 'Awutu', NULL, 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awutu', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = 'afu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auw', 'Awyi', NULL, 48.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awyi', [Definition] = NULL, [SortOrder] = 48.10 WHERE [Code] = 'auw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahb', 'Axamb', NULL, 48.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Axamb', [Definition] = NULL, [SortOrder] = 48.20 WHERE [Code] = 'ahb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yix', 'Axi Yi', NULL, 48.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Axi Yi', [Definition] = NULL, [SortOrder] = 48.30 WHERE [Code] = 'yix' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayd', 'Ayabadhu', NULL, 48.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayabadhu', [Definition] = NULL, [SortOrder] = 48.40 WHERE [Code] = 'ayd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quy', 'Ayacucho Quechua', NULL, 48.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayacucho Quechua', [Definition] = NULL, [SortOrder] = 48.50 WHERE [Code] = 'quy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmy', 'Ayautla Mazatec', NULL, 48.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayautla Mazatec', [Definition] = NULL, [SortOrder] = 48.60 WHERE [Code] = 'vmy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aye', 'Ayere', NULL, 48.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayere', [Definition] = NULL, [SortOrder] = 48.70 WHERE [Code] = 'aye' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axe', 'Ayerrerenge', NULL, 48.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayerrerenge', [Definition] = NULL, [SortOrder] = 48.80 WHERE [Code] = 'axe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayq', 'Ayi (Papua New Guinea)', NULL, 48.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayi (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 48.90 WHERE [Code] = 'ayq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfl', 'Ayiwo', NULL, 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayiwo', [Definition] = NULL, [SortOrder] = 49.00 WHERE [Code] = 'nfl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yyz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yyz', 'Ayizi', NULL, 49.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayizi', [Definition] = NULL, [SortOrder] = 49.10 WHERE [Code] = 'yyz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayb', 'Ayizo Gbe', NULL, 49.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayizo Gbe', [Definition] = NULL, [SortOrder] = 49.20 WHERE [Code] = 'ayb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aym', 'Aymara', NULL, 49.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aymara', [Definition] = NULL, [SortOrder] = 49.30 WHERE [Code] = 'aym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaf', 'Ayoquesco Zapotec', NULL, 49.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayoquesco Zapotec', [Definition] = NULL, [SortOrder] = 49.40 WHERE [Code] = 'zaf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayo', 'Ayoreo', NULL, 49.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayoreo', [Definition] = NULL, [SortOrder] = 49.50 WHERE [Code] = 'ayo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayu', 'Ayu', NULL, 49.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayu', [Definition] = NULL, [SortOrder] = 49.60 WHERE [Code] = 'ayu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miy', 'Ayutla Mixtec', NULL, 49.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayutla Mixtec', [Definition] = NULL, [SortOrder] = 49.70 WHERE [Code] = 'miy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aze', 'Azerbaijani', NULL, 49.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Azerbaijani', [Definition] = NULL, [SortOrder] = 49.80 WHERE [Code] = 'aze' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aza', 'Azha', NULL, 49.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Azha', [Definition] = NULL, [SortOrder] = 49.90 WHERE [Code] = 'aza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yiz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yiz', 'Azhe', NULL, 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Azhe', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = 'yiz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpc', 'Azoyú Me''phaa', NULL, 50.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Azoyú Me''phaa', [Definition] = NULL, [SortOrder] = 50.10 WHERE [Code] = 'tpc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvj', 'Baan', NULL, 50.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baan', [Definition] = NULL, [SortOrder] = 50.20 WHERE [Code] = 'bvj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqx', 'Baangi', NULL, 50.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baangi', [Definition] = NULL, [SortOrder] = 50.30 WHERE [Code] = 'bqx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bba', 'Baatonum', NULL, 50.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baatonum', [Definition] = NULL, [SortOrder] = 50.40 WHERE [Code] = 'bba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbw', 'Baba', NULL, 50.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baba', [Definition] = NULL, [SortOrder] = 50.50 WHERE [Code] = 'bbw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbf', 'Baba Malay', NULL, 50.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baba Malay', [Definition] = NULL, [SortOrder] = 50.60 WHERE [Code] = 'mbf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbm', 'Babango', NULL, 50.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babango', [Definition] = NULL, [SortOrder] = 50.70 WHERE [Code] = 'bbm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbk', 'Babanki', NULL, 50.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babanki', [Definition] = NULL, [SortOrder] = 50.80 WHERE [Code] = 'bbk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'baa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baa', 'Babatana', NULL, 50.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babatana', [Definition] = NULL, [SortOrder] = 50.90 WHERE [Code] = 'baa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcr', 'Babine', NULL, 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babine', [Definition] = NULL, [SortOrder] = 51.00 WHERE [Code] = 'bcr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzg', 'Babuza', NULL, 51.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babuza', [Definition] = NULL, [SortOrder] = 51.10 WHERE [Code] = 'bzg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcy', 'Bacama', NULL, 51.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bacama', [Definition] = NULL, [SortOrder] = 51.20 WHERE [Code] = 'bcy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btj', 'Bacanese Malay', NULL, 51.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bacanese Malay', [Definition] = NULL, [SortOrder] = 51.30 WHERE [Code] = 'btj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbc', 'Bactrian', NULL, 51.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bactrian', [Definition] = NULL, [SortOrder] = 51.40 WHERE [Code] = 'xbc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhz', 'Bada (Indonesia)', NULL, 51.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bada (Indonesia)', [Definition] = NULL, [SortOrder] = 51.50 WHERE [Code] = 'bhz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bau', 'Bada (Nigeria)', NULL, 51.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bada (Nigeria)', [Definition] = NULL, [SortOrder] = 51.60 WHERE [Code] = 'bau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfq', 'Badaga', NULL, 51.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badaga', [Definition] = NULL, [SortOrder] = 51.70 WHERE [Code] = 'bfq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bde', 'Bade', NULL, 51.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bade', [Definition] = NULL, [SortOrder] = 51.80 WHERE [Code] = 'bde' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdz', 'Badeshi', NULL, 51.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badeshi', [Definition] = NULL, [SortOrder] = 51.90 WHERE [Code] = 'bdz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khd', 'Bädi Kanum', NULL, 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bädi Kanum', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = 'khd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bia', 'Badimaya', NULL, 52.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badimaya', [Definition] = NULL, [SortOrder] = 52.10 WHERE [Code] = 'bia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbi', 'Badjiri', NULL, 52.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badjiri', [Definition] = NULL, [SortOrder] = 52.20 WHERE [Code] = 'jbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bac', 'Badui', NULL, 52.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badui', [Definition] = NULL, [SortOrder] = 52.30 WHERE [Code] = 'bac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbp', 'Badyara', NULL, 52.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badyara', [Definition] = NULL, [SortOrder] = 52.40 WHERE [Code] = 'pbp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvd', 'Baeggu', NULL, 52.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baeggu', [Definition] = NULL, [SortOrder] = 52.50 WHERE [Code] = 'bvd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvc', 'Baelelea', NULL, 52.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baelelea', [Definition] = NULL, [SortOrder] = 52.60 WHERE [Code] = 'bvc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btr', 'Baetora', NULL, 52.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baetora', [Definition] = NULL, [SortOrder] = 52.70 WHERE [Code] = 'btr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfj', 'Bafanji', NULL, 52.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bafanji', [Definition] = NULL, [SortOrder] = 52.80 WHERE [Code] = 'bfj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwt', 'Bafaw-Balong', NULL, 52.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bafaw-Balong', [Definition] = NULL, [SortOrder] = 52.90 WHERE [Code] = 'bwt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksf', 'Bafia', NULL, 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bafia', [Definition] = NULL, [SortOrder] = 53.00 WHERE [Code] = 'ksf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfd', 'Bafut', NULL, 53.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bafut', [Definition] = NULL, [SortOrder] = 53.10 WHERE [Code] = 'bfd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqf', 'Baga Kaloum', NULL, 53.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Kaloum', [Definition] = NULL, [SortOrder] = 53.20 WHERE [Code] = 'bqf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgo', 'Baga Koga', NULL, 53.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Koga', [Definition] = NULL, [SortOrder] = 53.30 WHERE [Code] = 'bgo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmd', 'Baga Manduri', NULL, 53.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Manduri', [Definition] = NULL, [SortOrder] = 53.40 WHERE [Code] = 'bmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcg', 'Baga Pokur', NULL, 53.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Pokur', [Definition] = NULL, [SortOrder] = 53.50 WHERE [Code] = 'bcg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsp', 'Baga Sitemu', NULL, 53.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Sitemu', [Definition] = NULL, [SortOrder] = 53.60 WHERE [Code] = 'bsp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsv', 'Baga Sobané', NULL, 53.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Sobané', [Definition] = NULL, [SortOrder] = 53.70 WHERE [Code] = 'bsv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfy', 'Bagheli', NULL, 53.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagheli', [Definition] = NULL, [SortOrder] = 53.80 WHERE [Code] = 'bfy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmi', 'Bagirmi', NULL, 53.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagirmi', [Definition] = NULL, [SortOrder] = 53.90 WHERE [Code] = 'bmi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fui', 'Bagirmi Fulfulde', NULL, 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagirmi Fulfulde', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = 'fui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqg', 'Bago-Kusuntu', NULL, 54.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bago-Kusuntu', [Definition] = NULL, [SortOrder] = 54.10 WHERE [Code] = 'bqg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgq', 'Bagri', NULL, 54.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagri', [Definition] = NULL, [SortOrder] = 54.20 WHERE [Code] = 'bgq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpi', 'Bagupi', NULL, 54.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagupi', [Definition] = NULL, [SortOrder] = 54.30 WHERE [Code] = 'bpi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqb', 'Bagusa', NULL, 54.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagusa', [Definition] = NULL, [SortOrder] = 54.40 WHERE [Code] = 'bqb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kva', 'Bagvalal', NULL, 54.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagvalal', [Definition] = NULL, [SortOrder] = 54.50 WHERE [Code] = 'kva' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yha', 'Baha Buyang', NULL, 54.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baha Buyang', [Definition] = NULL, [SortOrder] = 54.60 WHERE [Code] = 'yha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdw', 'Baham', NULL, 54.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baham', [Definition] = NULL, [SortOrder] = 54.70 WHERE [Code] = 'bdw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bah', 'Bahamas Creole English', NULL, 54.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahamas Creole English', [Definition] = NULL, [SortOrder] = 54.80 WHERE [Code] = 'bah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abv', 'Baharna Arabic', NULL, 54.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baharna Arabic', [Definition] = NULL, [SortOrder] = 54.90 WHERE [Code] = 'abv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhv', 'Bahau', NULL, 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahau', [Definition] = NULL, [SortOrder] = 55.00 WHERE [Code] = 'bhv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjh', 'Bahinemo', NULL, 55.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahinemo', [Definition] = NULL, [SortOrder] = 55.10 WHERE [Code] = 'bjh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhj', 'Bahing', NULL, 55.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahing', [Definition] = NULL, [SortOrder] = 55.20 WHERE [Code] = 'bhj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdq', 'Bahnar', NULL, 55.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahnar', [Definition] = NULL, [SortOrder] = 55.30 WHERE [Code] = 'bdq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsu', 'Bahonsuai', NULL, 55.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahonsuai', [Definition] = NULL, [SortOrder] = 55.40 WHERE [Code] = 'bsu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdj', 'Bai (South Sudan)', NULL, 55.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bai (South Sudan)', [Definition] = NULL, [SortOrder] = 55.50 WHERE [Code] = 'bdj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbf', 'Baibai', NULL, 55.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baibai', [Definition] = NULL, [SortOrder] = 55.60 WHERE [Code] = 'bbf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkx', 'Baikeno', NULL, 55.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baikeno', [Definition] = NULL, [SortOrder] = 55.70 WHERE [Code] = 'bkx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqh', 'Baima', NULL, 55.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baima', [Definition] = NULL, [SortOrder] = 55.80 WHERE [Code] = 'bqh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmx', 'Baimak', NULL, 55.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baimak', [Definition] = NULL, [SortOrder] = 55.90 WHERE [Code] = 'bmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcz', 'Bainouk-Gunyaamolo', NULL, 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bainouk-Gunyaamolo', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = 'bcz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bab', 'Bainouk-Gunyuño', NULL, 56.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bainouk-Gunyuño', [Definition] = NULL, [SortOrder] = 56.10 WHERE [Code] = 'bab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcb', 'Bainouk-Samik', NULL, 56.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bainouk-Samik', [Definition] = NULL, [SortOrder] = 56.20 WHERE [Code] = 'bcb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsw', 'Baiso', NULL, 56.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baiso', [Definition] = NULL, [SortOrder] = 56.30 WHERE [Code] = 'bsw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fah', 'Baissa Fali', NULL, 56.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baissa Fali', [Definition] = NULL, [SortOrder] = 56.40 WHERE [Code] = 'fah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjs', 'Bajan', NULL, 56.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bajan', [Definition] = NULL, [SortOrder] = 56.50 WHERE [Code] = 'bjs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjm', 'Bajelani', NULL, 56.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bajelani', [Definition] = NULL, [SortOrder] = 56.60 WHERE [Code] = 'bjm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkc', 'Baka (Cameroon)', NULL, 56.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baka (Cameroon)', [Definition] = NULL, [SortOrder] = 56.70 WHERE [Code] = 'bkc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdh', 'Baka (South Sudan)', NULL, 56.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baka (South Sudan)', [Definition] = NULL, [SortOrder] = 56.80 WHERE [Code] = 'bdh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkq', 'Bakairí', NULL, 56.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakairí', [Definition] = NULL, [SortOrder] = 56.90 WHERE [Code] = 'bkq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqz', 'Bakaka', NULL, 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakaka', [Definition] = NULL, [SortOrder] = 57.00 WHERE [Code] = 'bqz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqi', 'Bakhtiari', NULL, 57.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakhtiari', [Definition] = NULL, [SortOrder] = 57.10 WHERE [Code] = 'bqi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bki', 'Baki', NULL, 57.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baki', [Definition] = NULL, [SortOrder] = 57.20 WHERE [Code] = 'bki' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkh', 'Bakoko', NULL, 57.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakoko', [Definition] = NULL, [SortOrder] = 57.30 WHERE [Code] = 'bkh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kme', 'Bakole', NULL, 57.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakole', [Definition] = NULL, [SortOrder] = 57.40 WHERE [Code] = 'kme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbs', 'Bakpinka', NULL, 57.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakpinka', [Definition] = NULL, [SortOrder] = 57.50 WHERE [Code] = 'bbs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkr', 'Bakumpai', NULL, 57.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakumpai', [Definition] = NULL, [SortOrder] = 57.60 WHERE [Code] = 'bkr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjw', 'Bakwé', NULL, 57.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakwé', [Definition] = NULL, [SortOrder] = 57.70 WHERE [Code] = 'bjw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bls', 'Balaesang', NULL, 57.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balaesang', [Definition] = NULL, [SortOrder] = 57.80 WHERE [Code] = 'bls' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zba', 'Balaibalan', NULL, 57.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balaibalan', [Definition] = NULL, [SortOrder] = 57.90 WHERE [Code] = 'zba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blw', 'Balangao', NULL, 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balangao', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = 'blw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sse', 'Balangingi', NULL, 58.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balangingi', [Definition] = NULL, [SortOrder] = 58.10 WHERE [Code] = 'sse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjt', 'Balanta-Ganja', NULL, 58.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balanta-Ganja', [Definition] = NULL, [SortOrder] = 58.20 WHERE [Code] = 'bjt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ble') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ble', 'Balanta-Kentohe', NULL, 58.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balanta-Kentohe', [Definition] = NULL, [SortOrder] = 58.30 WHERE [Code] = 'ble' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blz', 'Balantak', NULL, 58.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balantak', [Definition] = NULL, [SortOrder] = 58.40 WHERE [Code] = 'blz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdn', 'Baldemu', NULL, 58.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baldemu', [Definition] = NULL, [SortOrder] = 58.50 WHERE [Code] = 'bdn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcp', 'Bali (Democratic Republic of Congo)', NULL, 58.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bali (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 58.60 WHERE [Code] = 'bcp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcn', 'Bali (Nigeria)', NULL, 58.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bali (Nigeria)', [Definition] = NULL, [SortOrder] = 58.70 WHERE [Code] = 'bcn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ban') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ban', 'Balinese', NULL, 58.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balinese', [Definition] = NULL, [SortOrder] = 58.80 WHERE [Code] = 'ban' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhp', 'Balinese Malay', NULL, 58.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balinese Malay', [Definition] = NULL, [SortOrder] = 58.90 WHERE [Code] = 'mhp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgx', 'Balkan Gagauz Turkish', NULL, 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balkan Gagauz Turkish', [Definition] = NULL, [SortOrder] = 59.00 WHERE [Code] = 'bgx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmn', 'Balkan Romani', NULL, 59.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balkan Romani', [Definition] = NULL, [SortOrder] = 59.10 WHERE [Code] = 'rmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqo', 'Balo', NULL, 59.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balo', [Definition] = NULL, [SortOrder] = 59.20 WHERE [Code] = 'bqo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biz', 'Baloi', NULL, 59.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baloi', [Definition] = NULL, [SortOrder] = 59.30 WHERE [Code] = 'biz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bft', 'Balti', NULL, 59.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balti', [Definition] = NULL, [SortOrder] = 59.40 WHERE [Code] = 'bft' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rml', 'Baltic Romani', NULL, 59.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baltic Romani', [Definition] = NULL, [SortOrder] = 59.50 WHERE [Code] = 'rml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blq', 'Baluan-Pam', NULL, 59.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baluan-Pam', [Definition] = NULL, [SortOrder] = 59.60 WHERE [Code] = 'blq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bal', 'Baluchi', NULL, 59.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baluchi', [Definition] = NULL, [SortOrder] = 59.70 WHERE [Code] = 'bal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bog', 'Bamako Sign Language', NULL, 59.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamako Sign Language', [Definition] = NULL, [SortOrder] = 59.80 WHERE [Code] = 'bog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbq', 'Bamali', NULL, 59.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamali', [Definition] = NULL, [SortOrder] = 59.90 WHERE [Code] = 'bbq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmo', 'Bambalang', NULL, 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambalang', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = 'bmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptu', 'Bambam', NULL, 60.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambam', [Definition] = NULL, [SortOrder] = 60.10 WHERE [Code] = 'ptu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bam', 'Bambara', NULL, 60.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambara', [Definition] = NULL, [SortOrder] = 60.20 WHERE [Code] = 'bam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myf', 'Bambassi', NULL, 60.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambassi', [Definition] = NULL, [SortOrder] = 60.30 WHERE [Code] = 'myf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'baw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baw', 'Bambili-Bambui', NULL, 60.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambili-Bambui', [Definition] = NULL, [SortOrder] = 60.40 WHERE [Code] = 'baw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bce', 'Bamenyam', NULL, 60.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamenyam', [Definition] = NULL, [SortOrder] = 60.50 WHERE [Code] = 'bce' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcf', 'Bamu', NULL, 60.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamu', [Definition] = NULL, [SortOrder] = 60.60 WHERE [Code] = 'bcf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqt', 'Bamukumbit', NULL, 60.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamukumbit', [Definition] = NULL, [SortOrder] = 60.70 WHERE [Code] = 'bqt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bax', 'Bamun', NULL, 60.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamun', [Definition] = NULL, [SortOrder] = 60.80 WHERE [Code] = 'bax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvm', 'Bamunka', NULL, 60.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamunka', [Definition] = NULL, [SortOrder] = 60.90 WHERE [Code] = 'bvm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmg', 'Bamwe', NULL, 61.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamwe', [Definition] = NULL, [SortOrder] = 61.00 WHERE [Code] = 'bmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfk', 'Ban Khor Sign Language', NULL, 61.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ban Khor Sign Language', [Definition] = NULL, [SortOrder] = 61.10 WHERE [Code] = 'bfk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcw', 'Bana', NULL, 61.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bana', [Definition] = NULL, [SortOrder] = 61.20 WHERE [Code] = 'bcw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjx', 'Banao Itneg', NULL, 61.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banao Itneg', [Definition] = NULL, [SortOrder] = 61.30 WHERE [Code] = 'bjx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byz', 'Banaro', NULL, 61.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banaro', [Definition] = NULL, [SortOrder] = 61.40 WHERE [Code] = 'byz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnd', 'Banda (Indonesia)', NULL, 61.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda (Indonesia)', [Definition] = NULL, [SortOrder] = 61.50 WHERE [Code] = 'bnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpq', 'Banda Malay', NULL, 61.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda Malay', [Definition] = NULL, [SortOrder] = 61.60 WHERE [Code] = 'bpq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liy', 'Banda-Bambari', NULL, 61.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Bambari', [Definition] = NULL, [SortOrder] = 61.70 WHERE [Code] = 'liy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpd', 'Banda-Banda', NULL, 61.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Banda', [Definition] = NULL, [SortOrder] = 61.80 WHERE [Code] = 'bpd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqk', 'Banda-Mbrès', NULL, 61.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Mbrès', [Definition] = NULL, [SortOrder] = 61.90 WHERE [Code] = 'bqk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfl', 'Banda-Ndélé', NULL, 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Ndélé', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = 'bfl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaj', 'Banda-Yangere', NULL, 62.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Yangere', [Definition] = NULL, [SortOrder] = 62.10 WHERE [Code] = 'yaj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bza', 'Bandi', NULL, 62.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bandi', [Definition] = NULL, [SortOrder] = 62.20 WHERE [Code] = 'bza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqj', 'Bandial', NULL, 62.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bandial', [Definition] = NULL, [SortOrder] = 62.30 WHERE [Code] = 'bqj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdy', 'Bandjalang', NULL, 62.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bandjalang', [Definition] = NULL, [SortOrder] = 62.40 WHERE [Code] = 'bdy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxg', 'Bangala', NULL, 62.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangala', [Definition] = NULL, [SortOrder] = 62.50 WHERE [Code] = 'bxg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgf', 'Bangandu', NULL, 62.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangandu', [Definition] = NULL, [SortOrder] = 62.60 WHERE [Code] = 'bgf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbe', 'Bangba', NULL, 62.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangba', [Definition] = NULL, [SortOrder] = 62.70 WHERE [Code] = 'bbe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgz', 'Banggai', NULL, 62.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banggai', [Definition] = NULL, [SortOrder] = 62.80 WHERE [Code] = 'bgz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjb', 'Banggarla', NULL, 62.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banggarla', [Definition] = NULL, [SortOrder] = 62.90 WHERE [Code] = 'bjb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bni', 'Bangi', NULL, 63.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangi', [Definition] = NULL, [SortOrder] = 63.00 WHERE [Code] = 'bni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dba', 'Bangime', NULL, 63.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangime', [Definition] = NULL, [SortOrder] = 63.10 WHERE [Code] = 'dba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfb', 'Bangka', NULL, 63.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangka', [Definition] = NULL, [SortOrder] = 63.20 WHERE [Code] = 'mfb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgj', 'Bangolan', NULL, 63.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangolan', [Definition] = NULL, [SortOrder] = 63.30 WHERE [Code] = 'bgj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnx', 'Bangubangu', NULL, 63.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangubangu', [Definition] = NULL, [SortOrder] = 63.40 WHERE [Code] = 'bnx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsj', 'Bangwinji', NULL, 63.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangwinji', [Definition] = NULL, [SortOrder] = 63.50 WHERE [Code] = 'bsj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvv', 'Baniva', NULL, 63.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baniva', [Definition] = NULL, [SortOrder] = 63.60 WHERE [Code] = 'bvv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwi', 'Baniwa', NULL, 63.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baniwa', [Definition] = NULL, [SortOrder] = 63.70 WHERE [Code] = 'bwi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjn', 'Banjar', NULL, 63.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banjar', [Definition] = NULL, [SortOrder] = 63.80 WHERE [Code] = 'bjn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxw', 'Bankagooma', NULL, 63.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bankagooma', [Definition] = NULL, [SortOrder] = 63.90 WHERE [Code] = 'bxw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jjr', 'Bankal', NULL, 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bankal', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = 'jjr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbw', 'Bankan Tey Dogon', NULL, 64.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bankan Tey Dogon', [Definition] = NULL, [SortOrder] = 64.10 WHERE [Code] = 'dbw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abb', 'Bankon', NULL, 64.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bankon', [Definition] = NULL, [SortOrder] = 64.20 WHERE [Code] = 'abb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcm', 'Bannoni', NULL, 64.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bannoni', [Definition] = NULL, [SortOrder] = 64.30 WHERE [Code] = 'bcm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bap', 'Bantawa', NULL, 64.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bantawa', [Definition] = NULL, [SortOrder] = 64.40 WHERE [Code] = 'bap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfx', 'Bantayanon', NULL, 64.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bantayanon', [Definition] = NULL, [SortOrder] = 64.50 WHERE [Code] = 'bfx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnq', 'Bantik', NULL, 64.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bantik', [Definition] = NULL, [SortOrder] = 64.60 WHERE [Code] = 'bnq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bno', 'Bantoanon', NULL, 64.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bantoanon', [Definition] = NULL, [SortOrder] = 64.70 WHERE [Code] = 'bno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnw', 'Banyjima', NULL, 64.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banyjima', [Definition] = NULL, [SortOrder] = 64.80 WHERE [Code] = 'pnw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bci', 'Baoulé', NULL, 64.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baoulé', [Definition] = NULL, [SortOrder] = 64.90 WHERE [Code] = 'bci' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhr', 'Bara Malagasy', NULL, 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bara Malagasy', [Definition] = NULL, [SortOrder] = 65.00 WHERE [Code] = 'bhr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brd', 'Baraamu', NULL, 65.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baraamu', [Definition] = NULL, [SortOrder] = 65.10 WHERE [Code] = 'brd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rbp', 'Barababaraba', NULL, 65.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barababaraba', [Definition] = NULL, [SortOrder] = 65.20 WHERE [Code] = 'rbp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbb', 'Barai', NULL, 65.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barai', [Definition] = NULL, [SortOrder] = 65.30 WHERE [Code] = 'bbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'baj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baj', 'Barakai', NULL, 65.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barakai', [Definition] = NULL, [SortOrder] = 65.40 WHERE [Code] = 'baj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kys', 'Baram Kayan', NULL, 65.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baram Kayan', [Definition] = NULL, [SortOrder] = 65.50 WHERE [Code] = 'kys' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbg', 'Barama', NULL, 65.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barama', [Definition] = NULL, [SortOrder] = 65.60 WHERE [Code] = 'bbg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brm', 'Barambu', NULL, 65.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barambu', [Definition] = NULL, [SortOrder] = 65.70 WHERE [Code] = 'brm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmz', 'Baramu', NULL, 65.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baramu', [Definition] = NULL, [SortOrder] = 65.80 WHERE [Code] = 'bmz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brp', 'Barapasi', NULL, 65.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barapasi', [Definition] = NULL, [SortOrder] = 65.90 WHERE [Code] = 'brp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brs', 'Baras', NULL, 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baras', [Definition] = NULL, [SortOrder] = 66.00 WHERE [Code] = 'brs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsn', 'Barasana-Eduria', NULL, 66.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barasana-Eduria', [Definition] = NULL, [SortOrder] = 66.10 WHERE [Code] = 'bsn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmb', 'Barbaram', NULL, 66.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barbaram', [Definition] = NULL, [SortOrder] = 66.20 WHERE [Code] = 'vmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boi', 'Barbareño', NULL, 66.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barbareño', [Definition] = NULL, [SortOrder] = 66.30 WHERE [Code] = 'boi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gry', 'Barclayville Grebo', NULL, 66.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barclayville Grebo', [Definition] = NULL, [SortOrder] = 66.40 WHERE [Code] = 'gry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcj', 'Bardi', NULL, 66.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bardi', [Definition] = NULL, [SortOrder] = 66.50 WHERE [Code] = 'bcj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bae', 'Baré', NULL, 66.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baré', [Definition] = NULL, [SortOrder] = 66.60 WHERE [Code] = 'bae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bva', 'Barein', NULL, 66.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barein', [Definition] = NULL, [SortOrder] = 66.70 WHERE [Code] = 'bva' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlp', 'Bargam', NULL, 66.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bargam', [Definition] = NULL, [SortOrder] = 66.80 WHERE [Code] = 'mlp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfa', 'Bari', NULL, 66.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bari', [Definition] = NULL, [SortOrder] = 66.90 WHERE [Code] = 'bfa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mot', 'Barí', NULL, 67.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barí', [Definition] = NULL, [SortOrder] = 67.00 WHERE [Code] = 'mot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bch', 'Bariai', NULL, 67.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bariai', [Definition] = NULL, [SortOrder] = 67.10 WHERE [Code] = 'bch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjc', 'Bariji', NULL, 67.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bariji', [Definition] = NULL, [SortOrder] = 67.20 WHERE [Code] = 'bjc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxo', 'Barikanchi', NULL, 67.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barikanchi', [Definition] = NULL, [SortOrder] = 67.30 WHERE [Code] = 'bxo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbk', 'Barikewa', NULL, 67.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barikewa', [Definition] = NULL, [SortOrder] = 67.40 WHERE [Code] = 'jbk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjk', 'Barok', NULL, 67.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barok', [Definition] = NULL, [SortOrder] = 67.50 WHERE [Code] = 'bjk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbi', 'Barombi', NULL, 67.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barombi', [Definition] = NULL, [SortOrder] = 67.60 WHERE [Code] = 'bbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbn', 'Barro Negro Tunebo', NULL, 67.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barro Negro Tunebo', [Definition] = NULL, [SortOrder] = 67.70 WHERE [Code] = 'tbn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpt', 'Barrow Point', NULL, 67.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barrow Point', [Definition] = NULL, [SortOrder] = 67.80 WHERE [Code] = 'bpt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjz', 'Baruga', NULL, 67.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baruga', [Definition] = NULL, [SortOrder] = 67.90 WHERE [Code] = 'bjz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byr', 'Baruya', NULL, 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baruya', [Definition] = NULL, [SortOrder] = 68.00 WHERE [Code] = 'byr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwg', 'Barwe', NULL, 68.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barwe', [Definition] = NULL, [SortOrder] = 68.10 WHERE [Code] = 'bwg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjf', 'Barzani Jewish Neo-Aramaic', NULL, 68.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barzani Jewish Neo-Aramaic', [Definition] = NULL, [SortOrder] = 68.20 WHERE [Code] = 'bjf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bas', 'Basa (Cameroon)', NULL, 68.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basa (Cameroon)', [Definition] = NULL, [SortOrder] = 68.30 WHERE [Code] = 'bas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzw', 'Basa (Nigeria)', NULL, 68.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basa (Nigeria)', [Definition] = NULL, [SortOrder] = 68.40 WHERE [Code] = 'bzw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsl', 'Basa-Gumna', NULL, 68.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basa-Gumna', [Definition] = NULL, [SortOrder] = 68.50 WHERE [Code] = 'bsl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buj', 'Basa-Gurmana', NULL, 68.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basa-Gurmana', [Definition] = NULL, [SortOrder] = 68.60 WHERE [Code] = 'buj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdb', 'Basap', NULL, 68.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basap', [Definition] = NULL, [SortOrder] = 68.70 WHERE [Code] = 'bdb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byq', 'Basay', NULL, 68.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basay', [Definition] = NULL, [SortOrder] = 68.80 WHERE [Code] = 'byq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsg', 'Bashkardi', NULL, 68.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bashkardi', [Definition] = NULL, [SortOrder] = 68.90 WHERE [Code] = 'bsg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bak', 'Bashkir', NULL, 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bashkir', [Definition] = NULL, [SortOrder] = 69.00 WHERE [Code] = 'bak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bst', 'Basketo', NULL, 69.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basketo', [Definition] = NULL, [SortOrder] = 69.10 WHERE [Code] = 'bst' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eus', 'Basque', NULL, 69.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basque', [Definition] = NULL, [SortOrder] = 69.20 WHERE [Code] = 'eus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsq', 'Bassa', NULL, 69.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bassa', [Definition] = NULL, [SortOrder] = 69.30 WHERE [Code] = 'bsq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsr', 'Bassa-Kontagora', NULL, 69.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bassa-Kontagora', [Definition] = NULL, [SortOrder] = 69.40 WHERE [Code] = 'bsr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsc', 'Bassari', NULL, 69.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bassari', [Definition] = NULL, [SortOrder] = 69.50 WHERE [Code] = 'bsc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsi', 'Bassossi', NULL, 69.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bassossi', [Definition] = NULL, [SortOrder] = 69.60 WHERE [Code] = 'bsi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bta', 'Bata', NULL, 69.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bata', [Definition] = NULL, [SortOrder] = 69.70 WHERE [Code] = 'bta' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifb', 'Batad Ifugao', NULL, 69.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batad Ifugao', [Definition] = NULL, [SortOrder] = 69.80 WHERE [Code] = 'ifb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bya', 'Batak', NULL, 69.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak', [Definition] = NULL, [SortOrder] = 69.90 WHERE [Code] = 'bya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btz', 'Batak Alas-Kluet', NULL, 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Alas-Kluet', [Definition] = NULL, [SortOrder] = 70.00 WHERE [Code] = 'btz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akb', 'Batak Angkola', NULL, 70.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Angkola', [Definition] = NULL, [SortOrder] = 70.10 WHERE [Code] = 'akb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btd', 'Batak Dairi', NULL, 70.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Dairi', [Definition] = NULL, [SortOrder] = 70.20 WHERE [Code] = 'btd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btx', 'Batak Karo', NULL, 70.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Karo', [Definition] = NULL, [SortOrder] = 70.30 WHERE [Code] = 'btx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btm', 'Batak Mandailing', NULL, 70.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Mandailing', [Definition] = NULL, [SortOrder] = 70.40 WHERE [Code] = 'btm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bts', 'Batak Simalungun', NULL, 70.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Simalungun', [Definition] = NULL, [SortOrder] = 70.50 WHERE [Code] = 'bts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbc', 'Batak Toba', NULL, 70.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Toba', [Definition] = NULL, [SortOrder] = 70.60 WHERE [Code] = 'bbc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnm', 'Batanga', NULL, 70.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batanga', [Definition] = NULL, [SortOrder] = 70.70 WHERE [Code] = 'bnm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btq', 'Batek', NULL, 70.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batek', [Definition] = NULL, [SortOrder] = 70.80 WHERE [Code] = 'btq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btv', 'Bateri', NULL, 70.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bateri', [Definition] = NULL, [SortOrder] = 70.90 WHERE [Code] = 'btv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhm', 'Bathari', NULL, 71.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bathari', [Definition] = NULL, [SortOrder] = 71.00 WHERE [Code] = 'bhm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btc', 'Bati (Cameroon)', NULL, 71.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bati (Cameroon)', [Definition] = NULL, [SortOrder] = 71.10 WHERE [Code] = 'btc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvt', 'Bati (Indonesia)', NULL, 71.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bati (Indonesia)', [Definition] = NULL, [SortOrder] = 71.20 WHERE [Code] = 'bvt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xby', 'Batjala', NULL, 71.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batjala', [Definition] = NULL, [SortOrder] = 71.30 WHERE [Code] = 'xby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbl', 'Bats', NULL, 71.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bats', [Definition] = NULL, [SortOrder] = 71.40 WHERE [Code] = 'bbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btu', 'Batu', NULL, 71.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batu', [Definition] = NULL, [SortOrder] = 71.50 WHERE [Code] = 'btu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbt', 'Batui', NULL, 71.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batui', [Definition] = NULL, [SortOrder] = 71.60 WHERE [Code] = 'zbt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bay', 'Batuley', NULL, 71.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batuley', [Definition] = NULL, [SortOrder] = 71.70 WHERE [Code] = 'bay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbd', 'Bau', NULL, 71.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bau', [Definition] = NULL, [SortOrder] = 71.80 WHERE [Code] = 'bbd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sne', 'Bau Bidayuh', NULL, 71.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bau Bidayuh', [Definition] = NULL, [SortOrder] = 71.90 WHERE [Code] = 'sne' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsf', 'Bauchi', NULL, 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauchi', [Definition] = NULL, [SortOrder] = 72.00 WHERE [Code] = 'bsf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpe', 'Bauni', NULL, 72.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauni', [Definition] = NULL, [SortOrder] = 72.10 WHERE [Code] = 'bpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brg', 'Baure', NULL, 72.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baure', [Definition] = NULL, [SortOrder] = 72.20 WHERE [Code] = 'brg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bge', 'Bauria', NULL, 72.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauria', [Definition] = NULL, [SortOrder] = 72.30 WHERE [Code] = 'bge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwk', 'Bauwaki', NULL, 72.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauwaki', [Definition] = NULL, [SortOrder] = 72.40 WHERE [Code] = 'bwk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvz', 'Bauzi', NULL, 72.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauzi', [Definition] = NULL, [SortOrder] = 72.50 WHERE [Code] = 'bvz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bar', 'Bavarian', NULL, 72.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bavarian', [Definition] = NULL, [SortOrder] = 72.60 WHERE [Code] = 'bar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgr', 'Bawm Chin', NULL, 72.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bawm Chin', [Definition] = NULL, [SortOrder] = 72.70 WHERE [Code] = 'bgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkq', 'Bay Miwok', NULL, 72.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bay Miwok', [Definition] = NULL, [SortOrder] = 72.80 WHERE [Code] = 'mkq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjy', 'Bayali', NULL, 72.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bayali', [Definition] = NULL, [SortOrder] = 72.90 WHERE [Code] = 'bjy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvy', 'Baybayanon', NULL, 73.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baybayanon', [Definition] = NULL, [SortOrder] = 73.00 WHERE [Code] = 'bvy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byg', 'Baygo', NULL, 73.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baygo', [Definition] = NULL, [SortOrder] = 73.10 WHERE [Code] = 'byg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byl', 'Bayono', NULL, 73.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bayono', [Definition] = NULL, [SortOrder] = 73.20 WHERE [Code] = 'byl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bda', 'Bayot', NULL, 73.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bayot', [Definition] = NULL, [SortOrder] = 73.30 WHERE [Code] = 'bda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxj', 'Bayungu', NULL, 73.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bayungu', [Definition] = NULL, [SortOrder] = 73.40 WHERE [Code] = 'bxj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfr', 'Bazigar', NULL, 73.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bazigar', [Definition] = NULL, [SortOrder] = 73.50 WHERE [Code] = 'bfr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beo', 'Beami', NULL, 73.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beami', [Definition] = NULL, [SortOrder] = 73.60 WHERE [Code] = 'beo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bea', 'Beaver', NULL, 73.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beaver', [Definition] = NULL, [SortOrder] = 73.70 WHERE [Code] = 'bea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfp', 'Beba', NULL, 73.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beba', [Definition] = NULL, [SortOrder] = 73.80 WHERE [Code] = 'bfp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beb', 'Bebele', NULL, 73.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bebele', [Definition] = NULL, [SortOrder] = 73.90 WHERE [Code] = 'beb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bek', 'Bebeli', NULL, 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bebeli', [Definition] = NULL, [SortOrder] = 74.00 WHERE [Code] = 'bek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxp', 'Bebil', NULL, 74.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bebil', [Definition] = NULL, [SortOrder] = 74.10 WHERE [Code] = 'bxp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjv', 'Bedjond', NULL, 74.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bedjond', [Definition] = NULL, [SortOrder] = 74.20 WHERE [Code] = 'bjv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bed', 'Bedoanas', NULL, 74.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bedoanas', [Definition] = NULL, [SortOrder] = 74.30 WHERE [Code] = 'bed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkf', 'Beeke', NULL, 74.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beeke', [Definition] = NULL, [SortOrder] = 74.40 WHERE [Code] = 'bkf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxq', 'Beele', NULL, 74.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beele', [Definition] = NULL, [SortOrder] = 74.50 WHERE [Code] = 'bxq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beq', 'Beembe', NULL, 74.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beembe', [Definition] = NULL, [SortOrder] = 74.60 WHERE [Code] = 'beq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnz', 'Beezen', NULL, 74.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beezen', [Definition] = NULL, [SortOrder] = 74.70 WHERE [Code] = 'bnz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bby', 'Befang', NULL, 74.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Befang', [Definition] = NULL, [SortOrder] = 74.80 WHERE [Code] = 'bby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebc', 'Beginci', NULL, 74.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beginci', [Definition] = NULL, [SortOrder] = 74.90 WHERE [Code] = 'ebc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bej', 'Beja', NULL, 75.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beja', [Definition] = NULL, [SortOrder] = 75.00 WHERE [Code] = 'bej' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bei', 'Bekati''', NULL, 75.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bekati''', [Definition] = NULL, [SortOrder] = 75.10 WHERE [Code] = 'bei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkv', 'Bekwarra', NULL, 75.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bekwarra', [Definition] = NULL, [SortOrder] = 75.20 WHERE [Code] = 'bkv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkw', 'Bekwel', NULL, 75.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bekwel', [Definition] = NULL, [SortOrder] = 75.30 WHERE [Code] = 'bkw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beg', 'Belait', NULL, 75.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belait', [Definition] = NULL, [SortOrder] = 75.40 WHERE [Code] = 'beg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxb', 'Belanda Bor', NULL, 75.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belanda Bor', [Definition] = NULL, [SortOrder] = 75.50 WHERE [Code] = 'bxb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvi', 'Belanda Viri', NULL, 75.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belanda Viri', [Definition] = NULL, [SortOrder] = 75.60 WHERE [Code] = 'bvi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bel', 'Belarusian', NULL, 75.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belarusian', [Definition] = NULL, [SortOrder] = 75.70 WHERE [Code] = 'bel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byw', 'Belhariya', NULL, 75.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belhariya', [Definition] = NULL, [SortOrder] = 75.80 WHERE [Code] = 'byw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bey', 'Beli (Papua New Guinea)', NULL, 75.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beli (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 75.90 WHERE [Code] = 'bey' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blm', 'Beli (South Sudan)', NULL, 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beli (South Sudan)', [Definition] = NULL, [SortOrder] = 76.00 WHERE [Code] = 'blm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzj', 'Belize Kriol English', NULL, 76.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belize Kriol English', [Definition] = NULL, [SortOrder] = 76.10 WHERE [Code] = 'bzj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blc', 'Bella Coola', NULL, 76.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bella Coola', [Definition] = NULL, [SortOrder] = 76.20 WHERE [Code] = 'blc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brw', 'Bellari', NULL, 76.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bellari', [Definition] = NULL, [SortOrder] = 76.30 WHERE [Code] = 'brw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glb', 'Belning', NULL, 76.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belning', [Definition] = NULL, [SortOrder] = 76.40 WHERE [Code] = 'glb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bem', 'Bemba (Zambia)', NULL, 76.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bemba (Zambia)', [Definition] = NULL, [SortOrder] = 76.50 WHERE [Code] = 'bem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmb', 'Bembe', NULL, 76.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bembe', [Definition] = NULL, [SortOrder] = 76.60 WHERE [Code] = 'bmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbt', 'Ben Tey Dogon', NULL, 76.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ben Tey Dogon', [Definition] = NULL, [SortOrder] = 76.70 WHERE [Code] = 'dbt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yun', 'Bena (Nigeria)', NULL, 76.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bena (Nigeria)', [Definition] = NULL, [SortOrder] = 76.80 WHERE [Code] = 'yun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bez', 'Bena (Tanzania)', NULL, 76.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bena (Tanzania)', [Definition] = NULL, [SortOrder] = 76.90 WHERE [Code] = 'bez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bef', 'Benabena', NULL, 77.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benabena', [Definition] = NULL, [SortOrder] = 77.00 WHERE [Code] = 'bef' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'egm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('egm', 'Benamanga', NULL, 77.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benamanga', [Definition] = NULL, [SortOrder] = 77.10 WHERE [Code] = 'egm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcq', 'Bench', NULL, 77.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bench', [Definition] = NULL, [SortOrder] = 77.20 WHERE [Code] = 'bcq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdp', 'Bende', NULL, 77.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bende', [Definition] = NULL, [SortOrder] = 77.30 WHERE [Code] = 'bdp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bct', 'Bendi', NULL, 77.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bendi', [Definition] = NULL, [SortOrder] = 77.40 WHERE [Code] = 'bct' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhb', 'Beng', NULL, 77.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beng', [Definition] = NULL, [SortOrder] = 77.50 WHERE [Code] = 'nhb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bng', 'Benga', NULL, 77.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benga', [Definition] = NULL, [SortOrder] = 77.60 WHERE [Code] = 'bng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ben') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ben', 'Bengali', NULL, 77.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bengali', [Definition] = NULL, [SortOrder] = 77.70 WHERE [Code] = 'ben' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgy', 'Benggoi', NULL, 77.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benggoi', [Definition] = NULL, [SortOrder] = 77.80 WHERE [Code] = 'bgy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqy', 'Bengkala Sign Language', NULL, 77.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bengkala Sign Language', [Definition] = NULL, [SortOrder] = 77.90 WHERE [Code] = 'bqy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnu', 'Bentong', NULL, 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bentong', [Definition] = NULL, [SortOrder] = 78.00 WHERE [Code] = 'bnu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byd', 'Benyadu''', NULL, 78.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benyadu''', [Definition] = NULL, [SortOrder] = 78.10 WHERE [Code] = 'byd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bue', 'Beothuk', NULL, 78.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beothuk', [Definition] = NULL, [SortOrder] = 78.20 WHERE [Code] = 'bue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bie', 'Bepour', NULL, 78.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bepour', [Definition] = NULL, [SortOrder] = 78.30 WHERE [Code] = 'bie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxv', 'Berakou', NULL, 78.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berakou', [Definition] = NULL, [SortOrder] = 78.40 WHERE [Code] = 'bxv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bve', 'Berau Malay', NULL, 78.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berau Malay', [Definition] = NULL, [SortOrder] = 78.50 WHERE [Code] = 'bve' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brc', 'Berbice Creole Dutch', NULL, 78.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berbice Creole Dutch', [Definition] = NULL, [SortOrder] = 78.60 WHERE [Code] = 'brc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkl', 'Berik', NULL, 78.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berik', [Definition] = NULL, [SortOrder] = 78.70 WHERE [Code] = 'bkl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bit', 'Berinomo', NULL, 78.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berinomo', [Definition] = NULL, [SortOrder] = 78.80 WHERE [Code] = 'bit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bom', 'Berom', NULL, 78.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berom', [Definition] = NULL, [SortOrder] = 78.90 WHERE [Code] = 'bom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wti', 'Berta', NULL, 79.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berta', [Definition] = NULL, [SortOrder] = 79.00 WHERE [Code] = 'wti' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byt', 'Berti', NULL, 79.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berti', [Definition] = NULL, [SortOrder] = 79.10 WHERE [Code] = 'byt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhe', 'Besisi', NULL, 79.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Besisi', [Definition] = NULL, [SortOrder] = 79.20 WHERE [Code] = 'mhe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bes', 'Besme', NULL, 79.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Besme', [Definition] = NULL, [SortOrder] = 79.30 WHERE [Code] = 'bes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bep', 'Besoa', NULL, 79.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Besoa', [Definition] = NULL, [SortOrder] = 79.40 WHERE [Code] = 'bep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfe', 'Betaf', NULL, 79.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Betaf', [Definition] = NULL, [SortOrder] = 79.50 WHERE [Code] = 'bfe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bew', 'Betawi', NULL, 79.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Betawi', [Definition] = NULL, [SortOrder] = 79.60 WHERE [Code] = 'bew' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byf', 'Bete', NULL, 79.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bete', [Definition] = NULL, [SortOrder] = 79.70 WHERE [Code] = 'byf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btt', 'Bete-Bendi', NULL, 79.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bete-Bendi', [Definition] = NULL, [SortOrder] = 79.80 WHERE [Code] = 'btt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eot', 'Beti (Côte d''Ivoire)', NULL, 79.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beti (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 79.90 WHERE [Code] = 'eot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xub', 'Betta Kurumba', NULL, 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Betta Kurumba', [Definition] = NULL, [SortOrder] = 80.00 WHERE [Code] = 'xub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kap', 'Bezhta', NULL, 80.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bezhta', [Definition] = NULL, [SortOrder] = 80.10 WHERE [Code] = 'kap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhd', 'Bhadrawahi', NULL, 80.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhadrawahi', [Definition] = NULL, [SortOrder] = 80.20 WHERE [Code] = 'bhd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhx', 'Bhalay', NULL, 80.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhalay', [Definition] = NULL, [SortOrder] = 80.30 WHERE [Code] = 'bhx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bha', 'Bharia', NULL, 80.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bharia', [Definition] = NULL, [SortOrder] = 80.40 WHERE [Code] = 'bha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgw', 'Bhatri', NULL, 80.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhatri', [Definition] = NULL, [SortOrder] = 80.50 WHERE [Code] = 'bgw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bht', 'Bhattiyali', NULL, 80.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhattiyali', [Definition] = NULL, [SortOrder] = 80.60 WHERE [Code] = 'bht' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhe', 'Bhaya', NULL, 80.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhaya', [Definition] = NULL, [SortOrder] = 80.70 WHERE [Code] = 'bhe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhy', 'Bhele', NULL, 80.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhele', [Definition] = NULL, [SortOrder] = 80.80 WHERE [Code] = 'bhy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhi', 'Bhilali', NULL, 80.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhilali', [Definition] = NULL, [SortOrder] = 80.90 WHERE [Code] = 'bhi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhb', 'Bhili', NULL, 81.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhili', [Definition] = NULL, [SortOrder] = 81.00 WHERE [Code] = 'bhb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bho', 'Bhojpuri', NULL, 81.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhojpuri', [Definition] = NULL, [SortOrder] = 81.10 WHERE [Code] = 'bho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nes', 'Bhoti Kinnauri', NULL, 81.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhoti Kinnauri', [Definition] = NULL, [SortOrder] = 81.20 WHERE [Code] = 'nes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byh', 'Bhujel', NULL, 81.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhujel', [Definition] = NULL, [SortOrder] = 81.30 WHERE [Code] = 'byh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhu', 'Bhunjia', NULL, 81.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhunjia', [Definition] = NULL, [SortOrder] = 81.40 WHERE [Code] = 'bhu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bif', 'Biafada', NULL, 81.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biafada', [Definition] = NULL, [SortOrder] = 81.50 WHERE [Code] = 'bif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdf', 'Biage', NULL, 81.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biage', [Definition] = NULL, [SortOrder] = 81.60 WHERE [Code] = 'bdf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhw', 'Biak', NULL, 81.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biak', [Definition] = NULL, [SortOrder] = 81.70 WHERE [Code] = 'bhw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beh', 'Biali', NULL, 81.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biali', [Definition] = NULL, [SortOrder] = 81.80 WHERE [Code] = 'beh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpv', 'Bian Marind', NULL, 81.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bian Marind', [Definition] = NULL, [SortOrder] = 81.90 WHERE [Code] = 'bpv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'big') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('big', 'Biangai', NULL, 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biangai', [Definition] = NULL, [SortOrder] = 82.00 WHERE [Code] = 'big' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byk', 'Biao', NULL, 82.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biao', [Definition] = NULL, [SortOrder] = 82.10 WHERE [Code] = 'byk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmt', 'Biao Mon', NULL, 82.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biao Mon', [Definition] = NULL, [SortOrder] = 82.20 WHERE [Code] = 'bmt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bje', 'Biao-Jiao Mien', NULL, 82.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biao-Jiao Mien', [Definition] = NULL, [SortOrder] = 82.30 WHERE [Code] = 'bje' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bth', 'Biatah Bidayuh', NULL, 82.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biatah Bidayuh', [Definition] = NULL, [SortOrder] = 82.40 WHERE [Code] = 'bth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbp', 'Bibbulman', NULL, 82.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bibbulman', [Definition] = NULL, [SortOrder] = 82.50 WHERE [Code] = 'xbp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ihw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ihw', 'Bidhawal', NULL, 82.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bidhawal', [Definition] = NULL, [SortOrder] = 82.60 WHERE [Code] = 'ihw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bid', 'Bidiyo', NULL, 82.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bidiyo', [Definition] = NULL, [SortOrder] = 82.70 WHERE [Code] = 'bid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bym', 'Bidjara', NULL, 82.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bidjara', [Definition] = NULL, [SortOrder] = 82.80 WHERE [Code] = 'bym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjg', 'Bidyogo', NULL, 82.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bidyogo', [Definition] = NULL, [SortOrder] = 82.90 WHERE [Code] = 'bjg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmc', 'Biem', NULL, 83.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biem', [Definition] = NULL, [SortOrder] = 83.00 WHERE [Code] = 'bmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnk', 'Bierebo', NULL, 83.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bierebo', [Definition] = NULL, [SortOrder] = 83.10 WHERE [Code] = 'bnk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brj', 'Bieria', NULL, 83.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bieria', [Definition] = NULL, [SortOrder] = 83.20 WHERE [Code] = 'brj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biu', 'Biete', NULL, 83.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biete', [Definition] = NULL, [SortOrder] = 83.30 WHERE [Code] = 'biu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmb', 'Big Nambas', NULL, 83.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Big Nambas', [Definition] = NULL, [SortOrder] = 83.40 WHERE [Code] = 'nmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhc', 'Biga', NULL, 83.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biga', [Definition] = NULL, [SortOrder] = 83.50 WHERE [Code] = 'bhc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbe', 'Bigambal', NULL, 83.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bigambal', [Definition] = NULL, [SortOrder] = 83.60 WHERE [Code] = 'xbe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibh', 'Bih', NULL, 83.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bih', [Definition] = NULL, [SortOrder] = 83.70 WHERE [Code] = 'ibh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbm', 'Bijim', NULL, 83.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bijim', [Definition] = NULL, [SortOrder] = 83.80 WHERE [Code] = 'jbm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bix', 'Bijori', NULL, 83.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bijori', [Definition] = NULL, [SortOrder] = 83.90 WHERE [Code] = 'bix' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bik', 'Bikol', NULL, 84.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bikol', [Definition] = NULL, [SortOrder] = 84.00 WHERE [Code] = 'bik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byb', 'Bikya', NULL, 84.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bikya', [Definition] = NULL, [SortOrder] = 84.10 WHERE [Code] = 'byb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bip', 'Bila', NULL, 84.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bila', [Definition] = NULL, [SortOrder] = 84.20 WHERE [Code] = 'bip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bql', 'Bilakura', NULL, 84.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilakura', [Definition] = NULL, [SortOrder] = 84.30 WHERE [Code] = 'bql' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfs', 'Bilaspuri', NULL, 84.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilaspuri', [Definition] = NULL, [SortOrder] = 84.40 WHERE [Code] = 'kfs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpz', 'Bilba', NULL, 84.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilba', [Definition] = NULL, [SortOrder] = 84.50 WHERE [Code] = 'bpz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brz', 'Bilbil', NULL, 84.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilbil', [Definition] = NULL, [SortOrder] = 84.60 WHERE [Code] = 'brz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bil', 'Bile', NULL, 84.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bile', [Definition] = NULL, [SortOrder] = 84.70 WHERE [Code] = 'bil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byn', 'Bilin', NULL, 84.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilin', [Definition] = NULL, [SortOrder] = 84.80 WHERE [Code] = 'byn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bms', 'Bilma Kanuri', NULL, 84.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilma Kanuri', [Definition] = NULL, [SortOrder] = 84.90 WHERE [Code] = 'bms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bll', 'Biloxi', NULL, 85.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biloxi', [Definition] = NULL, [SortOrder] = 85.00 WHERE [Code] = 'bll' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blb', 'Bilua', NULL, 85.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilua', [Definition] = NULL, [SortOrder] = 85.10 WHERE [Code] = 'blb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxf', 'Bilur', NULL, 85.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilur', [Definition] = NULL, [SortOrder] = 85.20 WHERE [Code] = 'bxf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhp', 'Bima', NULL, 85.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bima', [Definition] = NULL, [SortOrder] = 85.30 WHERE [Code] = 'bhp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhl', 'Bimin', NULL, 85.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bimin', [Definition] = NULL, [SortOrder] = 85.40 WHERE [Code] = 'bhl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bim', 'Bimoba', NULL, 85.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bimoba', [Definition] = NULL, [SortOrder] = 85.50 WHERE [Code] = 'bim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byj', 'Bina (Nigeria)', NULL, 85.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bina (Nigeria)', [Definition] = NULL, [SortOrder] = 85.60 WHERE [Code] = 'byj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmn', 'Bina (Papua New Guinea)', NULL, 85.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bina (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 85.70 WHERE [Code] = 'bmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxz', 'Binahari', NULL, 85.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binahari', [Definition] = NULL, [SortOrder] = 85.80 WHERE [Code] = 'bxz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhg', 'Binandere', NULL, 85.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binandere', [Definition] = NULL, [SortOrder] = 85.90 WHERE [Code] = 'bhg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbd', 'Bindal', NULL, 86.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bindal', [Definition] = NULL, [SortOrder] = 86.00 WHERE [Code] = 'xbd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bon', 'Bine', NULL, 86.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bine', [Definition] = NULL, [SortOrder] = 86.10 WHERE [Code] = 'bon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bin', 'Bini', NULL, 86.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bini', [Definition] = NULL, [SortOrder] = 86.20 WHERE [Code] = 'bin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpj', 'Binji', NULL, 86.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binji', [Definition] = NULL, [SortOrder] = 86.30 WHERE [Code] = 'bpj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itb', 'Binongan Itneg', NULL, 86.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binongan Itneg', [Definition] = NULL, [SortOrder] = 86.40 WHERE [Code] = 'itb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bne', 'Bintauna', NULL, 86.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bintauna', [Definition] = NULL, [SortOrder] = 86.50 WHERE [Code] = 'bne' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bny', 'Bintulu', NULL, 86.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bintulu', [Definition] = NULL, [SortOrder] = 86.60 WHERE [Code] = 'bny' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkd', 'Binukid', NULL, 86.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binukid', [Definition] = NULL, [SortOrder] = 86.70 WHERE [Code] = 'bkd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjr', 'Binumarien', NULL, 86.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binumarien', [Definition] = NULL, [SortOrder] = 86.80 WHERE [Code] = 'bjr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biq', 'Bipi', NULL, 86.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bipi', [Definition] = NULL, [SortOrder] = 86.90 WHERE [Code] = 'biq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brf', 'Bira', NULL, 87.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bira', [Definition] = NULL, [SortOrder] = 87.00 WHERE [Code] = 'brf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxe', 'Birale', NULL, 87.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birale', [Definition] = NULL, [SortOrder] = 87.10 WHERE [Code] = 'bxe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brr', 'Birao', NULL, 87.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birao', [Definition] = NULL, [SortOrder] = 87.20 WHERE [Code] = 'brr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btf', 'Birgit', NULL, 87.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birgit', [Definition] = NULL, [SortOrder] = 87.30 WHERE [Code] = 'btf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biy', 'Birhor', NULL, 87.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birhor', [Definition] = NULL, [SortOrder] = 87.40 WHERE [Code] = 'biy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzr', 'Biri', NULL, 87.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biri', [Definition] = NULL, [SortOrder] = 87.50 WHERE [Code] = 'bzr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqq', 'Biritai', NULL, 87.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biritai', [Definition] = NULL, [SortOrder] = 87.60 WHERE [Code] = 'bqq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brk', 'Birked', NULL, 87.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birked', [Definition] = NULL, [SortOrder] = 87.70 WHERE [Code] = 'brk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvq', 'Birri', NULL, 87.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birri', [Definition] = NULL, [SortOrder] = 87.80 WHERE [Code] = 'bvq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbj', 'Birrpayi', NULL, 87.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birrpayi', [Definition] = NULL, [SortOrder] = 87.90 WHERE [Code] = 'xbj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brl', 'Birwa', NULL, 88.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birwa', [Definition] = NULL, [SortOrder] = 88.00 WHERE [Code] = 'brl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ije') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ije', 'Biseni', NULL, 88.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biseni', [Definition] = NULL, [SortOrder] = 88.10 WHERE [Code] = 'ije' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpy', 'Bishnupriya', NULL, 88.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bishnupriya', [Definition] = NULL, [SortOrder] = 88.20 WHERE [Code] = 'bpy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwh', 'Bishuo', NULL, 88.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bishuo', [Definition] = NULL, [SortOrder] = 88.30 WHERE [Code] = 'bwh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnw', 'Bisis', NULL, 88.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bisis', [Definition] = NULL, [SortOrder] = 88.40 WHERE [Code] = 'bnw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bis', 'Bislama', NULL, 88.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bislama', [Definition] = NULL, [SortOrder] = 88.50 WHERE [Code] = 'bis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bir', 'Bisorio', NULL, 88.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bisorio', [Definition] = NULL, [SortOrder] = 88.60 WHERE [Code] = 'bir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bib', 'Bissa', NULL, 88.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bissa', [Definition] = NULL, [SortOrder] = 88.70 WHERE [Code] = 'bib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzi', 'Bisu', NULL, 88.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bisu', [Definition] = NULL, [SortOrder] = 88.80 WHERE [Code] = 'bzi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgk', 'Bit', NULL, 88.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bit', [Definition] = NULL, [SortOrder] = 88.90 WHERE [Code] = 'bgk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brt', 'Bitare', NULL, 89.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bitare', [Definition] = NULL, [SortOrder] = 89.00 WHERE [Code] = 'brt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcc', 'Bitur', NULL, 89.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bitur', [Definition] = NULL, [SortOrder] = 89.10 WHERE [Code] = 'mcc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwm', 'Biwat', NULL, 89.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biwat', [Definition] = NULL, [SortOrder] = 89.20 WHERE [Code] = 'bwm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byo', 'Biyo', NULL, 89.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biyo', [Definition] = NULL, [SortOrder] = 89.30 WHERE [Code] = 'byo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpm', 'Biyom', NULL, 89.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biyom', [Definition] = NULL, [SortOrder] = 89.40 WHERE [Code] = 'bpm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blp', 'Blablanga', NULL, 89.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blablanga', [Definition] = NULL, [SortOrder] = 89.50 WHERE [Code] = 'blp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfh', 'Blafe', NULL, 89.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blafe', [Definition] = NULL, [SortOrder] = 89.60 WHERE [Code] = 'bfh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beu', 'Blagar', NULL, 89.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blagar', [Definition] = NULL, [SortOrder] = 89.70 WHERE [Code] = 'beu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blr', 'Blang', NULL, 89.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blang', [Definition] = NULL, [SortOrder] = 89.80 WHERE [Code] = 'blr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbl', 'Blissymbols', NULL, 89.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blissymbols', [Definition] = NULL, [SortOrder] = 89.90 WHERE [Code] = 'zbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgl', 'Bo (Laos)', NULL, 90.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bo (Laos)', [Definition] = NULL, [SortOrder] = 90.00 WHERE [Code] = 'bgl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpw', 'Bo (Papua New Guinea)', NULL, 90.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bo (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 90.10 WHERE [Code] = 'bpw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mae', 'Bo-Rukul', NULL, 90.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bo-Rukul', [Definition] = NULL, [SortOrder] = 90.20 WHERE [Code] = 'mae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mux', 'Bo-Ung', NULL, 90.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bo-Ung', [Definition] = NULL, [SortOrder] = 90.30 WHERE [Code] = 'mux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzn', 'Boano (Maluku)', NULL, 90.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boano (Maluku)', [Definition] = NULL, [SortOrder] = 90.40 WHERE [Code] = 'bzn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzl', 'Boano (Sulawesi)', NULL, 90.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boano (Sulawesi)', [Definition] = NULL, [SortOrder] = 90.50 WHERE [Code] = 'bzl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgb', 'Bobongko', NULL, 90.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bobongko', [Definition] = NULL, [SortOrder] = 90.60 WHERE [Code] = 'bgb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bty', 'Bobot', NULL, 90.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bobot', [Definition] = NULL, [SortOrder] = 90.70 WHERE [Code] = 'bty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boy', 'Bodo (Central African Republic)', NULL, 90.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bodo (Central African Republic)', [Definition] = NULL, [SortOrder] = 90.80 WHERE [Code] = 'boy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brx', 'Bodo (India)', NULL, 90.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bodo (India)', [Definition] = NULL, [SortOrder] = 90.90 WHERE [Code] = 'brx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbj', 'Bodo Gadaba', NULL, 91.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bodo Gadaba', [Definition] = NULL, [SortOrder] = 91.00 WHERE [Code] = 'gbj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdv', 'Bodo Parja', NULL, 91.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bodo Parja', [Definition] = NULL, [SortOrder] = 91.10 WHERE [Code] = 'bdv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bff') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bff', 'Bofi', NULL, 91.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bofi', [Definition] = NULL, [SortOrder] = 91.20 WHERE [Code] = 'bff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvw', 'Boga', NULL, 91.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boga', [Definition] = NULL, [SortOrder] = 91.30 WHERE [Code] = 'bvw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boq', 'Bogaya', NULL, 91.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bogaya', [Definition] = NULL, [SortOrder] = 91.40 WHERE [Code] = 'boq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bux', 'Boghom', NULL, 91.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boghom', [Definition] = NULL, [SortOrder] = 91.50 WHERE [Code] = 'bux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqu', 'Boguru', NULL, 91.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boguru', [Definition] = NULL, [SortOrder] = 91.60 WHERE [Code] = 'bqu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhn', 'Bohtan Neo-Aramaic', NULL, 91.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bohtan Neo-Aramaic', [Definition] = NULL, [SortOrder] = 91.70 WHERE [Code] = 'bhn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzf', 'Boikin', NULL, 91.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boikin', [Definition] = NULL, [SortOrder] = 91.80 WHERE [Code] = 'bzf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybk', 'Bokha', NULL, 91.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bokha', [Definition] = NULL, [SortOrder] = 91.90 WHERE [Code] = 'ybk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqc', 'Boko (Benin)', NULL, 92.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boko (Benin)', [Definition] = NULL, [SortOrder] = 92.00 WHERE [Code] = 'bqc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkp', 'Boko (Democratic Republic of Congo)', NULL, 92.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boko (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 92.10 WHERE [Code] = 'bkp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bus', 'Bokobaru', NULL, 92.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bokobaru', [Definition] = NULL, [SortOrder] = 92.20 WHERE [Code] = 'bus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdt', 'Bokoto', NULL, 92.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bokoto', [Definition] = NULL, [SortOrder] = 92.30 WHERE [Code] = 'bdt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bky', 'Bokyi', NULL, 92.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bokyi', [Definition] = NULL, [SortOrder] = 92.40 WHERE [Code] = 'bky' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnp', 'Bola', NULL, 92.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bola', [Definition] = NULL, [SortOrder] = 92.50 WHERE [Code] = 'bnp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bld', 'Bolango', NULL, 92.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolango', [Definition] = NULL, [SortOrder] = 92.60 WHERE [Code] = 'bld' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bol', 'Bole', NULL, 92.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bole', [Definition] = NULL, [SortOrder] = 92.70 WHERE [Code] = 'bol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbo', 'Bolgarian', NULL, 92.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolgarian', [Definition] = NULL, [SortOrder] = 92.80 WHERE [Code] = 'xbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvo', 'Bolgo', NULL, 92.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolgo', [Definition] = NULL, [SortOrder] = 92.90 WHERE [Code] = 'bvo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bli', 'Bolia', NULL, 93.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolia', [Definition] = NULL, [SortOrder] = 93.00 WHERE [Code] = 'bli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smk', 'Bolinao', NULL, 93.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolinao', [Definition] = NULL, [SortOrder] = 93.10 WHERE [Code] = 'smk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvl', 'Bolivian Sign Language', NULL, 93.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolivian Sign Language', [Definition] = NULL, [SortOrder] = 93.20 WHERE [Code] = 'bvl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkt', 'Boloki', NULL, 93.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boloki', [Definition] = NULL, [SortOrder] = 93.30 WHERE [Code] = 'bkt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bof', 'Bolon', NULL, 93.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolon', [Definition] = NULL, [SortOrder] = 93.40 WHERE [Code] = 'bof' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzm', 'Bolondo', NULL, 93.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolondo', [Definition] = NULL, [SortOrder] = 93.50 WHERE [Code] = 'bzm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blj', 'Bolongan', NULL, 93.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolongan', [Definition] = NULL, [SortOrder] = 93.60 WHERE [Code] = 'blj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ply') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ply', 'Bolyu', NULL, 93.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolyu', [Definition] = NULL, [SortOrder] = 93.70 WHERE [Code] = 'ply' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmf', 'Bom-Kim', NULL, 93.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bom-Kim', [Definition] = NULL, [SortOrder] = 93.80 WHERE [Code] = 'bmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boh', 'Boma', NULL, 93.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boma', [Definition] = NULL, [SortOrder] = 93.90 WHERE [Code] = 'boh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bml', 'Bomboli', NULL, 94.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomboli', [Definition] = NULL, [SortOrder] = 94.00 WHERE [Code] = 'bml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bws', 'Bomboma', NULL, 94.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomboma', [Definition] = NULL, [SortOrder] = 94.10 WHERE [Code] = 'bws' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmx', 'Bomitaba', NULL, 94.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomitaba', [Definition] = NULL, [SortOrder] = 94.20 WHERE [Code] = 'zmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmq', 'Bomu', NULL, 94.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomu', [Definition] = NULL, [SortOrder] = 94.30 WHERE [Code] = 'bmq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmw', 'Bomwali', NULL, 94.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomwali', [Definition] = NULL, [SortOrder] = 94.40 WHERE [Code] = 'bmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glc', 'Bon Gula', NULL, 94.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bon Gula', [Definition] = NULL, [SortOrder] = 94.50 WHERE [Code] = 'glc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peh', 'Bonan', NULL, 94.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonan', [Definition] = NULL, [SortOrder] = 94.60 WHERE [Code] = 'peh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bou', 'Bondei', NULL, 94.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bondei', [Definition] = NULL, [SortOrder] = 94.70 WHERE [Code] = 'bou' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfw', 'Bondo', NULL, 94.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bondo', [Definition] = NULL, [SortOrder] = 94.80 WHERE [Code] = 'bfw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzc', 'Bondoukou Kulango', NULL, 94.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bondoukou Kulango', [Definition] = NULL, [SortOrder] = 94.90 WHERE [Code] = 'kzc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbu', 'Bondum Dom Dogon', NULL, 95.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bondum Dom Dogon', [Definition] = NULL, [SortOrder] = 95.00 WHERE [Code] = 'dbu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bna', 'Bonerate', NULL, 95.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonerate', [Definition] = NULL, [SortOrder] = 95.10 WHERE [Code] = 'bna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnv', 'Bonerif', NULL, 95.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonerif', [Definition] = NULL, [SortOrder] = 95.20 WHERE [Code] = 'bnv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdg', 'Bonggi', NULL, 95.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonggi', [Definition] = NULL, [SortOrder] = 95.30 WHERE [Code] = 'bdg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpg', 'Bonggo', NULL, 95.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonggo', [Definition] = NULL, [SortOrder] = 95.40 WHERE [Code] = 'bpg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bui', 'Bongili', NULL, 95.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bongili', [Definition] = NULL, [SortOrder] = 95.50 WHERE [Code] = 'bui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bot', 'Bongo', NULL, 95.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bongo', [Definition] = NULL, [SortOrder] = 95.60 WHERE [Code] = 'bot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpu', 'Bongu', NULL, 95.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bongu', [Definition] = NULL, [SortOrder] = 95.70 WHERE [Code] = 'bpu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bok', 'Bonjo', NULL, 95.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonjo', [Definition] = NULL, [SortOrder] = 95.80 WHERE [Code] = 'bok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvg', 'Bonkeng', NULL, 95.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonkeng', [Definition] = NULL, [SortOrder] = 95.90 WHERE [Code] = 'bvg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bop', 'Bonkiman', NULL, 96.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonkiman', [Definition] = NULL, [SortOrder] = 96.00 WHERE [Code] = 'bop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnc', 'Bontok', NULL, 96.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bontok', [Definition] = NULL, [SortOrder] = 96.10 WHERE [Code] = 'bnc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnb', 'Bookan', NULL, 96.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bookan', [Definition] = NULL, [SortOrder] = 96.20 WHERE [Code] = 'bnb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnl', 'Boon', NULL, 96.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boon', [Definition] = NULL, [SortOrder] = 96.30 WHERE [Code] = 'bnl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvf', 'Boor', NULL, 96.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boor', [Definition] = NULL, [SortOrder] = 96.40 WHERE [Code] = 'bvf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boa', 'Bora', NULL, 96.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bora', [Definition] = NULL, [SortOrder] = 96.50 WHERE [Code] = 'boa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gax', 'Borana-Arsi-Guji Oromo', NULL, 96.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borana-Arsi-Guji Oromo', [Definition] = NULL, [SortOrder] = 96.60 WHERE [Code] = 'gax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvn', 'Border Kuna', NULL, 96.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Border Kuna', [Definition] = NULL, [SortOrder] = 96.70 WHERE [Code] = 'kvn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gai', 'Borei', NULL, 96.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borei', [Definition] = NULL, [SortOrder] = 96.80 WHERE [Code] = 'gai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fue', 'Borgu Fulfulde', NULL, 96.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borgu Fulfulde', [Definition] = NULL, [SortOrder] = 96.90 WHERE [Code] = 'fue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwo', 'Boro (Ethiopia)', NULL, 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boro (Ethiopia)', [Definition] = NULL, [SortOrder] = 97.00 WHERE [Code] = 'bwo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxb', 'Boro (Ghana)', NULL, 97.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boro (Ghana)', [Definition] = NULL, [SortOrder] = 97.10 WHERE [Code] = 'xxb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksr', 'Borong', NULL, 97.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borong', [Definition] = NULL, [SortOrder] = 97.20 WHERE [Code] = 'ksr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bor', 'Borôro', NULL, 97.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borôro', [Definition] = NULL, [SortOrder] = 97.30 WHERE [Code] = 'bor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brn', 'Boruca', NULL, 97.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boruca', [Definition] = NULL, [SortOrder] = 97.40 WHERE [Code] = 'brn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwf', 'Boselewa', NULL, 97.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boselewa', [Definition] = NULL, [SortOrder] = 97.50 WHERE [Code] = 'bwf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqs', 'Bosngun', NULL, 97.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bosngun', [Definition] = NULL, [SortOrder] = 97.60 WHERE [Code] = 'bqs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bos', 'Bosnian', NULL, 97.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bosnian', [Definition] = NULL, [SortOrder] = 97.70 WHERE [Code] = 'bos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmj', 'Bote-Majhi', NULL, 97.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bote-Majhi', [Definition] = NULL, [SortOrder] = 97.80 WHERE [Code] = 'bmj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bph', 'Botlikh', NULL, 97.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Botlikh', [Definition] = NULL, [SortOrder] = 97.90 WHERE [Code] = 'bph' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbl', 'Botolan Sambal', NULL, 98.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Botolan Sambal', [Definition] = NULL, [SortOrder] = 98.00 WHERE [Code] = 'sbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nku', 'Bouna Kulango', NULL, 98.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bouna Kulango', [Definition] = NULL, [SortOrder] = 98.10 WHERE [Code] = 'nku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suo', 'Bouni', NULL, 98.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bouni', [Definition] = NULL, [SortOrder] = 98.20 WHERE [Code] = 'suo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcc', 'Bouyei', NULL, 98.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bouyei', [Definition] = NULL, [SortOrder] = 98.30 WHERE [Code] = 'pcc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzo', 'Bozaba', NULL, 98.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bozaba', [Definition] = NULL, [SortOrder] = 98.40 WHERE [Code] = 'bzo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aof', 'Bragat', NULL, 98.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bragat', [Definition] = NULL, [SortOrder] = 98.50 WHERE [Code] = 'aof' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brh', 'Brahui', NULL, 98.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brahui', [Definition] = NULL, [SortOrder] = 98.60 WHERE [Code] = 'brh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bra', 'Braj', NULL, 98.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Braj', [Definition] = NULL, [SortOrder] = 98.70 WHERE [Code] = 'bra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzs', 'Brazilian Sign Language', NULL, 98.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brazilian Sign Language', [Definition] = NULL, [SortOrder] = 98.80 WHERE [Code] = 'bzs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buq', 'Brem', NULL, 98.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brem', [Definition] = NULL, [SortOrder] = 98.90 WHERE [Code] = 'buq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brq', 'Breri', NULL, 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Breri', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = 'brq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bre', 'Breton', NULL, 99.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Breton', [Definition] = NULL, [SortOrder] = 99.10 WHERE [Code] = 'bre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzd', 'Bribri', NULL, 99.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bribri', [Definition] = NULL, [SortOrder] = 99.20 WHERE [Code] = 'bzd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rib', 'Bribri Sign Language', NULL, 99.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bribri Sign Language', [Definition] = NULL, [SortOrder] = 99.30 WHERE [Code] = 'rib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzt', 'Brithenig', NULL, 99.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brithenig', [Definition] = NULL, [SortOrder] = 99.40 WHERE [Code] = 'bzt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfi', 'British Sign Language', NULL, 99.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'British Sign Language', [Definition] = NULL, [SortOrder] = 99.50 WHERE [Code] = 'bfi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bro', 'Brokkat', NULL, 99.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brokkat', [Definition] = NULL, [SortOrder] = 99.60 WHERE [Code] = 'bro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgt', 'Brokpake', NULL, 99.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brokpake', [Definition] = NULL, [SortOrder] = 99.70 WHERE [Code] = 'sgt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkk', 'Brokskat', NULL, 99.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brokskat', [Definition] = NULL, [SortOrder] = 99.80 WHERE [Code] = 'bkk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plw', 'Brooke''s Point Palawano', NULL, 99.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brooke''s Point Palawano', [Definition] = NULL, [SortOrder] = 99.90 WHERE [Code] = 'plw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpl', 'Broome Pearling Lugger Pidgin', NULL, 100.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Broome Pearling Lugger Pidgin', [Definition] = NULL, [SortOrder] = 100.00 WHERE [Code] = 'bpl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnb', 'Brunca Sign Language', NULL, 100.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brunca Sign Language', [Definition] = NULL, [SortOrder] = 100.10 WHERE [Code] = 'rnb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxd', 'Brunei', NULL, 100.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brunei', [Definition] = NULL, [SortOrder] = 100.20 WHERE [Code] = 'kxd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsb', 'Brunei Bisaya', NULL, 100.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brunei Bisaya', [Definition] = NULL, [SortOrder] = 100.30 WHERE [Code] = 'bsb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpz', 'Bruny Island Tasmanian', NULL, 100.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bruny Island Tasmanian', [Definition] = NULL, [SortOrder] = 100.40 WHERE [Code] = 'xpz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbu', 'Bu (Bauchi State)', NULL, 100.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bu (Bauchi State)', [Definition] = NULL, [SortOrder] = 100.50 WHERE [Code] = 'zbu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jid', 'Bu (Kaduna State)', NULL, 100.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bu (Kaduna State)', [Definition] = NULL, [SortOrder] = 100.60 WHERE [Code] = 'jid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwx', 'Bu-Nao Bunu', NULL, 100.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bu-Nao Bunu', [Definition] = NULL, [SortOrder] = 100.70 WHERE [Code] = 'bwx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bub', 'Bua', NULL, 100.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bua', [Definition] = NULL, [SortOrder] = 100.80 WHERE [Code] = 'bub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbl', 'Bualkhaw Chin', NULL, 100.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bualkhaw Chin', [Definition] = NULL, [SortOrder] = 100.90 WHERE [Code] = 'cbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'box') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('box', 'Buamu', NULL, 101.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buamu', [Definition] = NULL, [SortOrder] = 101.00 WHERE [Code] = 'box' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvb', 'Bube', NULL, 101.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bube', [Definition] = NULL, [SortOrder] = 101.10 WHERE [Code] = 'bvb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buw', 'Bubi', NULL, 101.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bubi', [Definition] = NULL, [SortOrder] = 101.20 WHERE [Code] = 'buw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbx', 'Bubia', NULL, 101.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bubia', [Definition] = NULL, [SortOrder] = 101.30 WHERE [Code] = 'bbx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stt', 'Budeh Stieng', NULL, 101.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budeh Stieng', [Definition] = NULL, [SortOrder] = 101.40 WHERE [Code] = 'stt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btp', 'Budibud', NULL, 101.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budibud', [Definition] = NULL, [SortOrder] = 101.50 WHERE [Code] = 'btp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdx', 'Budong-Budong', NULL, 101.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budong-Budong', [Definition] = NULL, [SortOrder] = 101.60 WHERE [Code] = 'bdx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buu', 'Budu', NULL, 101.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budu', [Definition] = NULL, [SortOrder] = 101.70 WHERE [Code] = 'buu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdk', 'Budukh', NULL, 101.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budukh', [Definition] = NULL, [SortOrder] = 101.80 WHERE [Code] = 'bdk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdm', 'Buduma', NULL, 101.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buduma', [Definition] = NULL, [SortOrder] = 101.90 WHERE [Code] = 'bdm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bja', 'Budza', NULL, 102.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budza', [Definition] = NULL, [SortOrder] = 102.00 WHERE [Code] = 'bja' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbh', 'Bugan', NULL, 102.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bugan', [Definition] = NULL, [SortOrder] = 102.10 WHERE [Code] = 'bbh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buk', 'Bugawac', NULL, 102.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bugawac', [Definition] = NULL, [SortOrder] = 102.20 WHERE [Code] = 'buk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgt', 'Bughotu', NULL, 102.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bughotu', [Definition] = NULL, [SortOrder] = 102.30 WHERE [Code] = 'bgt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bug', 'Buginese', NULL, 102.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buginese', [Definition] = NULL, [SortOrder] = 102.40 WHERE [Code] = 'bug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sab', 'Buglere', NULL, 102.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buglere', [Definition] = NULL, [SortOrder] = 102.50 WHERE [Code] = 'sab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgg', 'Bugun', NULL, 102.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bugun', [Definition] = NULL, [SortOrder] = 102.60 WHERE [Code] = 'bgg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ubl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ubl', 'Buhi''non Bikol', NULL, 102.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buhi''non Bikol', [Definition] = NULL, [SortOrder] = 102.70 WHERE [Code] = 'ubl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bku', 'Buhid', NULL, 102.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buhid', [Definition] = NULL, [SortOrder] = 102.80 WHERE [Code] = 'bku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxh', 'Buhutu', NULL, 102.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buhutu', [Definition] = NULL, [SortOrder] = 102.90 WHERE [Code] = 'bxh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdo', 'Bukar-Sadung Bidayuh', NULL, 103.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukar-Sadung Bidayuh', [Definition] = NULL, [SortOrder] = 103.00 WHERE [Code] = 'sdo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvk', 'Bukat', NULL, 103.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukat', [Definition] = NULL, [SortOrder] = 103.10 WHERE [Code] = 'bvk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhh', 'Bukharic', NULL, 103.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukharic', [Definition] = NULL, [SortOrder] = 103.20 WHERE [Code] = 'bhh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvu', 'Bukit Malay', NULL, 103.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukit Malay', [Definition] = NULL, [SortOrder] = 103.30 WHERE [Code] = 'bvu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkn', 'Bukitan', NULL, 103.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukitan', [Definition] = NULL, [SortOrder] = 103.40 WHERE [Code] = 'bkn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ape') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ape', 'Bukiyip', NULL, 103.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukiyip', [Definition] = NULL, [SortOrder] = 103.50 WHERE [Code] = 'ape' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkb', 'Buksa', NULL, 103.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buksa', [Definition] = NULL, [SortOrder] = 103.60 WHERE [Code] = 'tkb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxk', 'Bukusu', NULL, 103.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukusu', [Definition] = NULL, [SortOrder] = 103.70 WHERE [Code] = 'bxk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buz', 'Bukwen', NULL, 103.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukwen', [Definition] = NULL, [SortOrder] = 103.80 WHERE [Code] = 'buz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bul', 'Bulgarian', NULL, 103.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulgarian', [Definition] = NULL, [SortOrder] = 103.90 WHERE [Code] = 'bul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqn', 'Bulgarian Sign Language', NULL, 104.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulgarian Sign Language', [Definition] = NULL, [SortOrder] = 104.00 WHERE [Code] = 'bqn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmp', 'Bulgebi', NULL, 104.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulgebi', [Definition] = NULL, [SortOrder] = 104.10 WHERE [Code] = 'bmp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwu', 'Buli (Ghana)', NULL, 104.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buli (Ghana)', [Definition] = NULL, [SortOrder] = 104.20 WHERE [Code] = 'bwu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzq', 'Buli (Indonesia)', NULL, 104.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buli (Indonesia)', [Definition] = NULL, [SortOrder] = 104.30 WHERE [Code] = 'bzq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buy', 'Bullom So', NULL, 104.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bullom So', [Definition] = NULL, [SortOrder] = 104.40 WHERE [Code] = 'buy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sti', 'Bulo Stieng', NULL, 104.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulo Stieng', [Definition] = NULL, [SortOrder] = 104.50 WHERE [Code] = 'sti' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bum', 'Bulu (Cameroon)', NULL, 104.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulu (Cameroon)', [Definition] = NULL, [SortOrder] = 104.60 WHERE [Code] = 'bum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjl', 'Bulu (Papua New Guinea)', NULL, 104.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulu (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 104.70 WHERE [Code] = 'bjl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmv', 'Bum', NULL, 104.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bum', [Definition] = NULL, [SortOrder] = 104.80 WHERE [Code] = 'bmv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byp', 'Bumaji', NULL, 104.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bumaji', [Definition] = NULL, [SortOrder] = 104.90 WHERE [Code] = 'byp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvp', 'Bumang', NULL, 105.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bumang', [Definition] = NULL, [SortOrder] = 105.00 WHERE [Code] = 'bvp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aon', 'Bumbita Arapesh', NULL, 105.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bumbita Arapesh', [Definition] = NULL, [SortOrder] = 105.10 WHERE [Code] = 'aon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjz', 'Bumthangkha', NULL, 105.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bumthangkha', [Definition] = NULL, [SortOrder] = 105.20 WHERE [Code] = 'kjz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buv', 'Bun', NULL, 105.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bun', [Definition] = NULL, [SortOrder] = 105.30 WHERE [Code] = 'buv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvn', 'Buna', NULL, 105.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buna', [Definition] = NULL, [SortOrder] = 105.40 WHERE [Code] = 'bvn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfn', 'Bunak', NULL, 105.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunak', [Definition] = NULL, [SortOrder] = 105.50 WHERE [Code] = 'bfn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdd', 'Bunama', NULL, 105.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunama', [Definition] = NULL, [SortOrder] = 105.60 WHERE [Code] = 'bdd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bns', 'Bundeli', NULL, 105.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bundeli', [Definition] = NULL, [SortOrder] = 105.70 WHERE [Code] = 'bns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqd', 'Bung', NULL, 105.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bung', [Definition] = NULL, [SortOrder] = 105.80 WHERE [Code] = 'bqd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'but') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('but', 'Bungain', NULL, 105.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bungain', [Definition] = NULL, [SortOrder] = 105.90 WHERE [Code] = 'but' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbg', 'Bunganditj', NULL, 106.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunganditj', [Definition] = NULL, [SortOrder] = 106.00 WHERE [Code] = 'xbg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkz', 'Bungku', NULL, 106.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bungku', [Definition] = NULL, [SortOrder] = 106.10 WHERE [Code] = 'bkz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wun', 'Bungu', NULL, 106.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bungu', [Definition] = NULL, [SortOrder] = 106.20 WHERE [Code] = 'wun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgb', 'Bunoge Dogon', NULL, 106.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunoge Dogon', [Definition] = NULL, [SortOrder] = 106.30 WHERE [Code] = 'dgb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bck', 'Bunuba', NULL, 106.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunuba', [Definition] = NULL, [SortOrder] = 106.40 WHERE [Code] = 'bck' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnn', 'Bunun', NULL, 106.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunun', [Definition] = NULL, [SortOrder] = 106.50 WHERE [Code] = 'bnn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blf', 'Buol', NULL, 106.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buol', [Definition] = NULL, [SortOrder] = 106.60 WHERE [Code] = 'blf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwr', 'Bura-Pabir', NULL, 106.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bura-Pabir', [Definition] = NULL, [SortOrder] = 106.70 WHERE [Code] = 'bwr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bys', 'Burak', NULL, 106.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burak', [Definition] = NULL, [SortOrder] = 106.80 WHERE [Code] = 'bys' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkg', 'Buraka', NULL, 106.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buraka', [Definition] = NULL, [SortOrder] = 106.90 WHERE [Code] = 'bkg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvr', 'Burarra', NULL, 107.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burarra', [Definition] = NULL, [SortOrder] = 107.00 WHERE [Code] = 'bvr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bti', 'Burate', NULL, 107.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burate', [Definition] = NULL, [SortOrder] = 107.10 WHERE [Code] = 'bti' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxn', 'Burduna', NULL, 107.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burduna', [Definition] = NULL, [SortOrder] = 107.20 WHERE [Code] = 'bxn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvh', 'Bure', NULL, 107.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bure', [Definition] = NULL, [SortOrder] = 107.30 WHERE [Code] = 'bvh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bua', 'Buriat', NULL, 107.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buriat', [Definition] = NULL, [SortOrder] = 107.40 WHERE [Code] = 'bua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bji', 'Burji', NULL, 107.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burji', [Definition] = NULL, [SortOrder] = 107.50 WHERE [Code] = 'bji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vrt', 'Burmbar', NULL, 107.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burmbar', [Definition] = NULL, [SortOrder] = 107.60 WHERE [Code] = 'vrt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mya', 'Burmese', NULL, 107.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burmese', [Definition] = NULL, [SortOrder] = 107.70 WHERE [Code] = 'mya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzu', 'Burmeso', NULL, 107.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burmeso', [Definition] = NULL, [SortOrder] = 107.80 WHERE [Code] = 'bzu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhs', 'Buru (Indonesia)', NULL, 107.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buru (Indonesia)', [Definition] = NULL, [SortOrder] = 107.90 WHERE [Code] = 'mhs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqw', 'Buru (Nigeria)', NULL, 108.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buru (Nigeria)', [Definition] = NULL, [SortOrder] = 108.00 WHERE [Code] = 'bqw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bry', 'Burui', NULL, 108.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burui', [Definition] = NULL, [SortOrder] = 108.10 WHERE [Code] = 'bry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aip', 'Burumakok', NULL, 108.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burumakok', [Definition] = NULL, [SortOrder] = 108.20 WHERE [Code] = 'aip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdi', 'Burun', NULL, 108.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burun', [Definition] = NULL, [SortOrder] = 108.30 WHERE [Code] = 'bdi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsb', 'Burundian Sign Language', NULL, 108.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burundian Sign Language', [Definition] = NULL, [SortOrder] = 108.40 WHERE [Code] = 'lsb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bds', 'Burunge', NULL, 108.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burunge', [Definition] = NULL, [SortOrder] = 108.50 WHERE [Code] = 'bds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsk', 'Burushaski', NULL, 108.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burushaski', [Definition] = NULL, [SortOrder] = 108.60 WHERE [Code] = 'bsk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqr', 'Burusu', NULL, 108.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burusu', [Definition] = NULL, [SortOrder] = 108.70 WHERE [Code] = 'bqr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asi', 'Buruwai', NULL, 108.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buruwai', [Definition] = NULL, [SortOrder] = 108.80 WHERE [Code] = 'asi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqp', 'Busa', NULL, 108.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busa', [Definition] = NULL, [SortOrder] = 108.90 WHERE [Code] = 'bqp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxs', 'Busam', NULL, 109.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busam', [Definition] = NULL, [SortOrder] = 109.00 WHERE [Code] = 'bxs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsm', 'Busami', NULL, 109.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busami', [Definition] = NULL, [SortOrder] = 109.10 WHERE [Code] = 'bsm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfg', 'Busang Kayan', NULL, 109.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busang Kayan', [Definition] = NULL, [SortOrder] = 109.20 WHERE [Code] = 'bfg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buc', 'Bushi', NULL, 109.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bushi', [Definition] = NULL, [SortOrder] = 109.30 WHERE [Code] = 'buc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buf', 'Bushoong', NULL, 109.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bushoong', [Definition] = NULL, [SortOrder] = 109.40 WHERE [Code] = 'buf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bso', 'Buso', NULL, 109.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buso', [Definition] = NULL, [SortOrder] = 109.50 WHERE [Code] = 'bso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bup', 'Busoa', NULL, 109.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busoa', [Definition] = NULL, [SortOrder] = 109.60 WHERE [Code] = 'bup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dox', 'Bussa', NULL, 109.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bussa', [Definition] = NULL, [SortOrder] = 109.70 WHERE [Code] = 'dox' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bju', 'Busuu', NULL, 109.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busuu', [Definition] = NULL, [SortOrder] = 109.80 WHERE [Code] = 'bju' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyb', 'Butbut Kalinga', NULL, 109.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Butbut Kalinga', [Definition] = NULL, [SortOrder] = 109.90 WHERE [Code] = 'kyb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnr', 'Butmas-Tur', NULL, 110.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Butmas-Tur', [Definition] = NULL, [SortOrder] = 110.00 WHERE [Code] = 'bnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btw', 'Butuanon', NULL, 110.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Butuanon', [Definition] = NULL, [SortOrder] = 110.10 WHERE [Code] = 'btw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhs', 'Buwal', NULL, 110.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buwal', [Definition] = NULL, [SortOrder] = 110.20 WHERE [Code] = 'bhs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byi', 'Buyu', NULL, 110.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buyu', [Definition] = NULL, [SortOrder] = 110.30 WHERE [Code] = 'byi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jiy', 'Buyuan Jinuo', NULL, 110.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buyuan Jinuo', [Definition] = NULL, [SortOrder] = 110.40 WHERE [Code] = 'jiy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bww', 'Bwa', NULL, 110.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwa', [Definition] = NULL, [SortOrder] = 110.50 WHERE [Code] = 'bww' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwd', 'Bwaidoka', NULL, 110.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwaidoka', [Definition] = NULL, [SortOrder] = 110.60 WHERE [Code] = 'bwd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tte', 'Bwanabwana', NULL, 110.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwanabwana', [Definition] = NULL, [SortOrder] = 110.70 WHERE [Code] = 'tte' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwa', 'Bwatoo', NULL, 110.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwatoo', [Definition] = NULL, [SortOrder] = 110.80 WHERE [Code] = 'bwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwe', 'Bwe Karen', NULL, 110.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwe Karen', [Definition] = NULL, [SortOrder] = 110.90 WHERE [Code] = 'bwe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwl', 'Bwela', NULL, 111.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwela', [Definition] = NULL, [SortOrder] = 111.00 WHERE [Code] = 'bwl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwc', 'Bwile', NULL, 111.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwile', [Definition] = NULL, [SortOrder] = 111.10 WHERE [Code] = 'bwc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwz', 'Bwisi', NULL, 111.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwisi', [Definition] = NULL, [SortOrder] = 111.20 WHERE [Code] = 'bwz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bee', 'Byangsi', NULL, 111.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Byangsi', [Definition] = NULL, [SortOrder] = 111.30 WHERE [Code] = 'bee' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkk', 'Byep', NULL, 111.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Byep', [Definition] = NULL, [SortOrder] = 111.40 WHERE [Code] = 'mkk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dri', 'C''lela', NULL, 111.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'C''lela', [Definition] = NULL, [SortOrder] = 111.50 WHERE [Code] = 'dri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msq', 'Caac', NULL, 111.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caac', [Definition] = NULL, [SortOrder] = 111.60 WHERE [Code] = 'msq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjp', 'Cabécar', NULL, 111.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cabécar', [Definition] = NULL, [SortOrder] = 111.70 WHERE [Code] = 'cjp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbb', 'Cabiyarí', NULL, 111.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cabiyarí', [Definition] = NULL, [SortOrder] = 111.80 WHERE [Code] = 'cbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miu', 'Cacaloxtepec Mixtec', NULL, 111.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cacaloxtepec Mixtec', [Definition] = NULL, [SortOrder] = 111.90 WHERE [Code] = 'miu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccr', 'Cacaopera', NULL, 112.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cacaopera', [Definition] = NULL, [SortOrder] = 112.00 WHERE [Code] = 'ccr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'roc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roc', 'Cacgia Roglai', NULL, 112.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cacgia Roglai', [Definition] = NULL, [SortOrder] = 112.10 WHERE [Code] = 'roc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbv', 'Cacua', NULL, 112.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cacua', [Definition] = NULL, [SortOrder] = 112.20 WHERE [Code] = 'cbv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cad', 'Caddo', NULL, 112.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caddo', [Definition] = NULL, [SortOrder] = 112.30 WHERE [Code] = 'cad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccd', 'Cafundo Creole', NULL, 112.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cafundo Creole', [Definition] = NULL, [SortOrder] = 112.40 WHERE [Code] = 'ccd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cah', 'Cahuarano', NULL, 112.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cahuarano', [Definition] = NULL, [SortOrder] = 112.50 WHERE [Code] = 'cah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chl', 'Cahuilla', NULL, 112.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cahuilla', [Definition] = NULL, [SortOrder] = 112.60 WHERE [Code] = 'chl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nat', 'Cahungwarya', NULL, 112.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cahungwarya', [Definition] = NULL, [SortOrder] = 112.70 WHERE [Code] = 'nat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvc', 'Cajamarca Quechua', NULL, 112.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cajamarca Quechua', [Definition] = NULL, [SortOrder] = 112.80 WHERE [Code] = 'qvc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvl', 'Cajatambo North Lima Quechua', NULL, 112.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cajatambo North Lima Quechua', [Definition] = NULL, [SortOrder] = 112.90 WHERE [Code] = 'qvl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zad', 'Cajonos Zapotec', NULL, 113.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cajonos Zapotec', [Definition] = NULL, [SortOrder] = 113.00 WHERE [Code] = 'zad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frc', 'Cajun French', NULL, 113.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cajun French', [Definition] = NULL, [SortOrder] = 113.10 WHERE [Code] = 'frc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckx', 'Caka', NULL, 113.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caka', [Definition] = NULL, [SortOrder] = 113.20 WHERE [Code] = 'ckx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckz', 'Cakchiquel-Quiché Mixed Language', NULL, 113.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cakchiquel-Quiché Mixed Language', [Definition] = NULL, [SortOrder] = 113.30 WHERE [Code] = 'ckz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cky', 'Cakfem-Mushere', NULL, 113.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cakfem-Mushere', [Definition] = NULL, [SortOrder] = 113.40 WHERE [Code] = 'cky' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbk', 'Calamian Tagbanwa', NULL, 113.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Calamian Tagbanwa', [Definition] = NULL, [SortOrder] = 113.50 WHERE [Code] = 'tbk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qud', 'Calderón Highland Quichua', NULL, 113.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Calderón Highland Quichua', [Definition] = NULL, [SortOrder] = 113.60 WHERE [Code] = 'qud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caw', 'Callawalla', NULL, 113.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Callawalla', [Definition] = NULL, [SortOrder] = 113.70 WHERE [Code] = 'caw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmq', 'Caló', NULL, 113.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caló', [Definition] = NULL, [SortOrder] = 113.80 WHERE [Code] = 'rmq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clu', 'Caluyanun', NULL, 113.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caluyanun', [Definition] = NULL, [SortOrder] = 113.90 WHERE [Code] = 'clu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csx', 'Cambodian Sign Language', NULL, 114.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cambodian Sign Language', [Definition] = NULL, [SortOrder] = 114.00 WHERE [Code] = 'csx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcu', 'Cameroon Mambila', NULL, 114.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cameroon Mambila', [Definition] = NULL, [SortOrder] = 114.10 WHERE [Code] = 'mcu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wes', 'Cameroon Pidgin', NULL, 114.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cameroon Pidgin', [Definition] = NULL, [SortOrder] = 114.20 WHERE [Code] = 'wes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rab', 'Camling', NULL, 114.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Camling', [Definition] = NULL, [SortOrder] = 114.30 WHERE [Code] = 'rab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cml', 'Campalagian', NULL, 114.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Campalagian', [Definition] = NULL, [SortOrder] = 114.40 WHERE [Code] = 'cml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sro', 'Campidanese Sardinian', NULL, 114.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Campidanese Sardinian', [Definition] = NULL, [SortOrder] = 114.50 WHERE [Code] = 'sro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbh', 'Camsá', NULL, 114.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Camsá', [Definition] = NULL, [SortOrder] = 114.60 WHERE [Code] = 'kbh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmt', 'Camtho', NULL, 114.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Camtho', [Definition] = NULL, [SortOrder] = 114.70 WHERE [Code] = 'cmt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcc', 'Camunic', NULL, 114.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Camunic', [Definition] = NULL, [SortOrder] = 114.80 WHERE [Code] = 'xcc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxr', 'Cañar Highland Quichua', NULL, 114.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cañar Highland Quichua', [Definition] = NULL, [SortOrder] = 114.90 WHERE [Code] = 'qxr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbu', 'Candoshi-Shapra', NULL, 115.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Candoshi-Shapra', [Definition] = NULL, [SortOrder] = 115.00 WHERE [Code] = 'cbu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ram') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ram', 'Canela', NULL, 115.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Canela', [Definition] = NULL, [SortOrder] = 115.10 WHERE [Code] = 'ram' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caz', 'Canichana', NULL, 115.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Canichana', [Definition] = NULL, [SortOrder] = 115.20 WHERE [Code] = 'caz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlc', 'Cao Lan', NULL, 115.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cao Lan', [Definition] = NULL, [SortOrder] = 115.30 WHERE [Code] = 'mlc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cov', 'Cao Miao', NULL, 115.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cao Miao', [Definition] = NULL, [SortOrder] = 115.40 WHERE [Code] = 'cov' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaq', 'Capanahua', NULL, 115.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Capanahua', [Definition] = NULL, [SortOrder] = 115.50 WHERE [Code] = 'kaq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cps', 'Capiznon', NULL, 115.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Capiznon', [Definition] = NULL, [SortOrder] = 115.60 WHERE [Code] = 'cps' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpg', 'Cappadocian Greek', NULL, 115.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cappadocian Greek', [Definition] = NULL, [SortOrder] = 115.70 WHERE [Code] = 'cpg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cot', 'Caquinte', NULL, 115.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caquinte', [Definition] = NULL, [SortOrder] = 115.80 WHERE [Code] = 'cot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caq', 'Car Nicobarese', NULL, 115.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Car Nicobarese', [Definition] = NULL, [SortOrder] = 115.90 WHERE [Code] = 'caq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cfd', 'Cara', NULL, 116.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cara', [Definition] = NULL, [SortOrder] = 116.00 WHERE [Code] = 'cfd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cby', 'Carabayo', NULL, 116.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carabayo', [Definition] = NULL, [SortOrder] = 116.10 WHERE [Code] = 'cby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crf', 'Caramanta', NULL, 116.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caramanta', [Definition] = NULL, [SortOrder] = 116.20 WHERE [Code] = 'crf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbc', 'Carapana', NULL, 116.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carapana', [Definition] = NULL, [SortOrder] = 116.30 WHERE [Code] = 'cbc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcr', 'Carian', NULL, 116.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carian', [Definition] = NULL, [SortOrder] = 116.40 WHERE [Code] = 'xcr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hns', 'Caribbean Hindustani', NULL, 116.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caribbean Hindustani', [Definition] = NULL, [SortOrder] = 116.50 WHERE [Code] = 'hns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jvn', 'Caribbean Javanese', NULL, 116.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caribbean Javanese', [Definition] = NULL, [SortOrder] = 116.60 WHERE [Code] = 'jvn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbd', 'Carijona', NULL, 116.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carijona', [Definition] = NULL, [SortOrder] = 116.70 WHERE [Code] = 'cbd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crr', 'Carolina Algonquian', NULL, 116.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carolina Algonquian', [Definition] = NULL, [SortOrder] = 116.80 WHERE [Code] = 'crr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cal', 'Carolinian', NULL, 116.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carolinian', [Definition] = NULL, [SortOrder] = 116.90 WHERE [Code] = 'cal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmc', 'Carpathian Romani', NULL, 117.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carpathian Romani', [Definition] = NULL, [SortOrder] = 117.00 WHERE [Code] = 'rmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crx', 'Carrier', NULL, 117.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carrier', [Definition] = NULL, [SortOrder] = 117.10 WHERE [Code] = 'crx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbr', 'Cashibo-Cacataibo', NULL, 117.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cashibo-Cacataibo', [Definition] = NULL, [SortOrder] = 117.20 WHERE [Code] = 'cbr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbs', 'Cashinahua', NULL, 117.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cashinahua', [Definition] = NULL, [SortOrder] = 117.30 WHERE [Code] = 'cbs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgc', 'Casiguran Dumagat Agta', NULL, 117.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Casiguran Dumagat Agta', [Definition] = NULL, [SortOrder] = 117.40 WHERE [Code] = 'dgc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asc', 'Casuarina Coast Asmat', NULL, 117.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Casuarina Coast Asmat', [Definition] = NULL, [SortOrder] = 117.50 WHERE [Code] = 'asc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cat', 'Catalan', NULL, 117.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Catalan', [Definition] = NULL, [SortOrder] = 117.60 WHERE [Code] = 'cat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csc', 'Catalan Sign Language', NULL, 117.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Catalan Sign Language', [Definition] = NULL, [SortOrder] = 117.70 WHERE [Code] = 'csc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chc', 'Catawba', NULL, 117.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Catawba', [Definition] = NULL, [SortOrder] = 117.80 WHERE [Code] = 'chc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cav', 'Cavineña', NULL, 117.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cavineña', [Definition] = NULL, [SortOrder] = 117.90 WHERE [Code] = 'cav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cyb', 'Cayubaba', NULL, 118.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cayubaba', [Definition] = NULL, [SortOrder] = 118.00 WHERE [Code] = 'cyb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cay', 'Cayuga', NULL, 118.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cayuga', [Definition] = NULL, [SortOrder] = 118.10 WHERE [Code] = 'cay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcy', 'Cayuse', NULL, 118.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cayuse', [Definition] = NULL, [SortOrder] = 118.20 WHERE [Code] = 'xcy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sef', 'Cebaara Senoufo', NULL, 118.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cebaara Senoufo', [Definition] = NULL, [SortOrder] = 118.30 WHERE [Code] = 'sef' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ceb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ceb', 'Cebuano', NULL, 118.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cebuano', [Definition] = NULL, [SortOrder] = 118.40 WHERE [Code] = 'ceb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xce', 'Celtiberian', NULL, 118.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Celtiberian', [Definition] = NULL, [SortOrder] = 118.50 WHERE [Code] = 'xce' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cam', 'Cemuhî', NULL, 118.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cemuhî', [Definition] = NULL, [SortOrder] = 118.60 WHERE [Code] = 'cam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cen', 'Cen', NULL, 118.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cen', [Definition] = NULL, [SortOrder] = 118.70 WHERE [Code] = 'cen' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cns', 'Central Asmat', NULL, 118.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Asmat', [Definition] = NULL, [SortOrder] = 118.80 WHERE [Code] = 'cns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzm', 'Central Atlas Tamazight', NULL, 118.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Atlas Tamazight', [Definition] = NULL, [SortOrder] = 118.90 WHERE [Code] = 'tzm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awu', 'Central Awyu', NULL, 119.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Awyu', [Definition] = NULL, [SortOrder] = 119.00 WHERE [Code] = 'awu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayr', 'Central Aymara', NULL, 119.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Aymara', [Definition] = NULL, [SortOrder] = 119.10 WHERE [Code] = 'ayr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bca', 'Central Bai', NULL, 119.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Bai', [Definition] = NULL, [SortOrder] = 119.20 WHERE [Code] = 'bca' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbc', 'Central Berawan', NULL, 119.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Berawan', [Definition] = NULL, [SortOrder] = 119.30 WHERE [Code] = 'zbc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcl', 'Central Bikol', NULL, 119.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Bikol', [Definition] = NULL, [SortOrder] = 119.40 WHERE [Code] = 'bcl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbk', 'Central Bontok', NULL, 119.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Bontok', [Definition] = NULL, [SortOrder] = 119.50 WHERE [Code] = 'lbk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agt', 'Central Cagayan Agta', NULL, 119.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Cagayan Agta', [Definition] = NULL, [SortOrder] = 119.60 WHERE [Code] = 'agt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grv', 'Central Grebo', NULL, 119.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Grebo', [Definition] = NULL, [SortOrder] = 119.70 WHERE [Code] = 'grv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zch', 'Central Hongshuihe Zhuang', NULL, 119.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Hongshuihe Zhuang', [Definition] = NULL, [SortOrder] = 119.80 WHERE [Code] = 'zch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nch', 'Central Huasteca Nahuatl', NULL, 119.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 119.90 WHERE [Code] = 'nch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmc', 'Central Huishui Hmong', NULL, 120.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Huishui Hmong', [Definition] = NULL, [SortOrder] = 120.00 WHERE [Code] = 'hmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knc', 'Central Kanuri', NULL, 120.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Kanuri', [Definition] = NULL, [SortOrder] = 120.10 WHERE [Code] = 'knc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckb', 'Central Kurdish', NULL, 120.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Kurdish', [Definition] = NULL, [SortOrder] = 120.20 WHERE [Code] = 'ckb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwo', 'Central Maewo', NULL, 120.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Maewo', [Definition] = NULL, [SortOrder] = 120.30 WHERE [Code] = 'mwo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pse', 'Central Malay', NULL, 120.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Malay', [Definition] = NULL, [SortOrder] = 120.40 WHERE [Code] = 'pse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxz', 'Central Masela', NULL, 120.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Masela', [Definition] = NULL, [SortOrder] = 120.50 WHERE [Code] = 'mxz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmm', 'Central Mashan Hmong', NULL, 120.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Mashan Hmong', [Definition] = NULL, [SortOrder] = 120.60 WHERE [Code] = 'hmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maz', 'Central Mazahua', NULL, 120.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Mazahua', [Definition] = NULL, [SortOrder] = 120.70 WHERE [Code] = 'maz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mel', 'Central Melanau', NULL, 120.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Melanau', [Definition] = NULL, [SortOrder] = 120.80 WHERE [Code] = 'mel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmo', 'Central Mnong', NULL, 120.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Mnong', [Definition] = NULL, [SortOrder] = 120.90 WHERE [Code] = 'cmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhn', 'Central Nahuatl', NULL, 121.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Nahuatl', [Definition] = NULL, [SortOrder] = 121.00 WHERE [Code] = 'nhn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncb', 'Central Nicobarese', NULL, 121.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Nicobarese', [Definition] = NULL, [SortOrder] = 121.10 WHERE [Code] = 'ncb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojc', 'Central Ojibwa', NULL, 121.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Ojibwa', [Definition] = NULL, [SortOrder] = 121.20 WHERE [Code] = 'ojc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ryu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ryu', 'Central Okinawan', NULL, 121.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Okinawan', [Definition] = NULL, [SortOrder] = 121.30 WHERE [Code] = 'ryu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plc', 'Central Palawano', NULL, 121.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Palawano', [Definition] = NULL, [SortOrder] = 121.40 WHERE [Code] = 'plc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbs', 'Central Pame', NULL, 121.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Pame', [Definition] = NULL, [SortOrder] = 121.50 WHERE [Code] = 'pbs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pst', 'Central Pashto', NULL, 121.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Pashto', [Definition] = NULL, [SortOrder] = 121.60 WHERE [Code] = 'pst' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poo', 'Central Pomo', NULL, 121.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Pomo', [Definition] = NULL, [SortOrder] = 121.70 WHERE [Code] = 'poo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncx', 'Central Puebla Nahuatl', NULL, 121.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 121.80 WHERE [Code] = 'ncx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sml', 'Central Sama', NULL, 121.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Sama', [Definition] = NULL, [SortOrder] = 121.90 WHERE [Code] = 'sml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ess') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ess', 'Central Siberian Yupik', NULL, 122.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Siberian Yupik', [Definition] = NULL, [SortOrder] = 122.00 WHERE [Code] = 'ess' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csm', 'Central Sierra Miwok', NULL, 122.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Sierra Miwok', [Definition] = NULL, [SortOrder] = 122.10 WHERE [Code] = 'csm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syb', 'Central Subanen', NULL, 122.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Subanen', [Definition] = NULL, [SortOrder] = 122.20 WHERE [Code] = 'syb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgt', 'Central Tagbanwa', NULL, 122.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Tagbanwa', [Definition] = NULL, [SortOrder] = 122.30 WHERE [Code] = 'tgt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tar', 'Central Tarahumara', NULL, 122.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Tarahumara', [Definition] = NULL, [SortOrder] = 122.40 WHERE [Code] = 'tar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuf', 'Central Tunebo', NULL, 122.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Tunebo', [Definition] = NULL, [SortOrder] = 122.50 WHERE [Code] = 'tuf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esu', 'Central Yupik', NULL, 122.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Yupik', [Definition] = NULL, [SortOrder] = 122.60 WHERE [Code] = 'esu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuq', 'Central-Eastern Niger Fulfulde', NULL, 122.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central-Eastern Niger Fulfulde', [Definition] = NULL, [SortOrder] = 122.70 WHERE [Code] = 'fuq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cet', 'Centúúm', NULL, 122.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Centúúm', [Definition] = NULL, [SortOrder] = 122.80 WHERE [Code] = 'cet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cme', 'Cerma', NULL, 122.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cerma', [Definition] = NULL, [SortOrder] = 122.90 WHERE [Code] = 'cme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbf', 'Chabu', NULL, 123.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chabu', [Definition] = NULL, [SortOrder] = 123.00 WHERE [Code] = 'sbf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quk', 'Chachapoyas Quechua', NULL, 123.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chachapoyas Quechua', [Definition] = NULL, [SortOrder] = 123.10 WHERE [Code] = 'quk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbi', 'Chachi', NULL, 123.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chachi', [Definition] = NULL, [SortOrder] = 123.20 WHERE [Code] = 'cbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cao', 'Chácobo', NULL, 123.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chácobo', [Definition] = NULL, [SortOrder] = 123.30 WHERE [Code] = 'cao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shu', 'Chadian Arabic', NULL, 123.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chadian Arabic', [Definition] = NULL, [SortOrder] = 123.40 WHERE [Code] = 'shu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cds', 'Chadian Sign Language', NULL, 123.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chadian Sign Language', [Definition] = NULL, [SortOrder] = 123.50 WHERE [Code] = 'cds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdy', 'Chadong', NULL, 123.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chadong', [Definition] = NULL, [SortOrder] = 123.60 WHERE [Code] = 'cdy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chg', 'Chagatai', NULL, 123.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chagatai', [Definition] = NULL, [SortOrder] = 123.70 WHERE [Code] = 'chg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ciy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ciy', 'Chaima', NULL, 123.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chaima', [Definition] = NULL, [SortOrder] = 123.80 WHERE [Code] = 'ciy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckh', 'Chak', NULL, 123.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chak', [Definition] = NULL, [SortOrder] = 123.90 WHERE [Code] = 'ckh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cli', 'Chakali', NULL, 124.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chakali', [Definition] = NULL, [SortOrder] = 124.00 WHERE [Code] = 'cli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckm', 'Chakavian', NULL, 124.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chakavian', [Definition] = NULL, [SortOrder] = 124.10 WHERE [Code] = 'ckm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccp', 'Chakma', NULL, 124.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chakma', [Definition] = NULL, [SortOrder] = 124.20 WHERE [Code] = 'ccp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cll', 'Chala', NULL, 124.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chala', [Definition] = NULL, [SortOrder] = 124.30 WHERE [Code] = 'cll' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cld', 'Chaldean Neo-Aramaic', NULL, 124.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chaldean Neo-Aramaic', [Definition] = NULL, [SortOrder] = 124.40 WHERE [Code] = 'cld' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgf', 'Chalikha', NULL, 124.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chalikha', [Definition] = NULL, [SortOrder] = 124.50 WHERE [Code] = 'tgf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ceg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ceg', 'Chamacoco', NULL, 124.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chamacoco', [Definition] = NULL, [SortOrder] = 124.60 WHERE [Code] = 'ceg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cji', 'Chamalal', NULL, 124.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chamalal', [Definition] = NULL, [SortOrder] = 124.70 WHERE [Code] = 'cji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdh', 'Chambeali', NULL, 124.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chambeali', [Definition] = NULL, [SortOrder] = 124.80 WHERE [Code] = 'cdh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'can') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('can', 'Chambri', NULL, 124.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chambri', [Definition] = NULL, [SortOrder] = 124.90 WHERE [Code] = 'can' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccc', 'Chamicuro', NULL, 125.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chamicuro', [Definition] = NULL, [SortOrder] = 125.00 WHERE [Code] = 'ccc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cha', 'Chamorro', NULL, 125.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chamorro', [Definition] = NULL, [SortOrder] = 125.10 WHERE [Code] = 'cha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caj', 'Chané', NULL, 125.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chané', [Definition] = NULL, [SortOrder] = 125.20 WHERE [Code] = 'caj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbc', 'Chang Naga', NULL, 125.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chang Naga', [Definition] = NULL, [SortOrder] = 125.30 WHERE [Code] = 'nbc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cga', 'Changriwa', NULL, 125.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Changriwa', [Definition] = NULL, [SortOrder] = 125.40 WHERE [Code] = 'cga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cna', 'Changthang', NULL, 125.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Changthang', [Definition] = NULL, [SortOrder] = 125.50 WHERE [Code] = 'cna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chx', 'Chantyal', NULL, 125.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chantyal', [Definition] = NULL, [SortOrder] = 125.60 WHERE [Code] = 'chx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cra', 'Chara', NULL, 125.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chara', [Definition] = NULL, [SortOrder] = 125.70 WHERE [Code] = 'cra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdn', 'Chaudangsi', NULL, 125.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chaudangsi', [Definition] = NULL, [SortOrder] = 125.80 WHERE [Code] = 'cdn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crv', 'Chaura', NULL, 125.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chaura', [Definition] = NULL, [SortOrder] = 125.90 WHERE [Code] = 'crv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbk', 'Chavacano', NULL, 126.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chavacano', [Definition] = NULL, [SortOrder] = 126.00 WHERE [Code] = 'cbk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbt', 'Chayahuita', NULL, 126.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chayahuita', [Definition] = NULL, [SortOrder] = 126.10 WHERE [Code] = 'cbt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mih', 'Chayuco Mixtec', NULL, 126.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chayuco Mixtec', [Definition] = NULL, [SortOrder] = 126.20 WHERE [Code] = 'mih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtb', 'Chazumba Mixtec', NULL, 126.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chazumba Mixtec', [Definition] = NULL, [SortOrder] = 126.30 WHERE [Code] = 'xtb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruk', 'Che', NULL, 126.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Che', [Definition] = NULL, [SortOrder] = 126.40 WHERE [Code] = 'ruk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'che') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('che', 'Chechen', NULL, 126.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chechen', [Definition] = NULL, [SortOrder] = 126.50 WHERE [Code] = 'che' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrn', 'Cheke Holo', NULL, 126.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cheke Holo', [Definition] = NULL, [SortOrder] = 126.60 WHERE [Code] = 'mrn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xch', 'Chemakum', NULL, 126.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chemakum', [Definition] = NULL, [SortOrder] = 126.70 WHERE [Code] = 'xch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjn', 'Chenapian', NULL, 126.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chenapian', [Definition] = NULL, [SortOrder] = 126.80 WHERE [Code] = 'cjn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cde', 'Chenchu', NULL, 126.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chenchu', [Definition] = NULL, [SortOrder] = 126.90 WHERE [Code] = 'cde' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnu', 'Chenoua', NULL, 127.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chenoua', [Definition] = NULL, [SortOrder] = 127.00 WHERE [Code] = 'cnu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdm', 'Chepang', NULL, 127.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chepang', [Definition] = NULL, [SortOrder] = 127.10 WHERE [Code] = 'cdm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ycp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ycp', 'Chepya', NULL, 127.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chepya', [Definition] = NULL, [SortOrder] = 127.20 WHERE [Code] = 'ycp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpn', 'Cherepon', NULL, 127.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cherepon', [Definition] = NULL, [SortOrder] = 127.30 WHERE [Code] = 'cpn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chr', 'Cherokee', NULL, 127.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cherokee', [Definition] = NULL, [SortOrder] = 127.40 WHERE [Code] = 'chr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ych') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ych', 'Chesu', NULL, 127.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chesu', [Definition] = NULL, [SortOrder] = 127.50 WHERE [Code] = 'ych' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctc', 'Chetco', NULL, 127.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chetco', [Definition] = NULL, [SortOrder] = 127.60 WHERE [Code] = 'ctc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwg', 'Chewong', NULL, 127.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chewong', [Definition] = NULL, [SortOrder] = 127.70 WHERE [Code] = 'cwg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chy', 'Cheyenne', NULL, 127.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cheyenne', [Definition] = NULL, [SortOrder] = 127.80 WHERE [Code] = 'chy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hne', 'Chhattisgarhi', NULL, 127.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chhattisgarhi', [Definition] = NULL, [SortOrder] = 127.90 WHERE [Code] = 'hne' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctn', 'Chhintange', NULL, 128.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chhintange', [Definition] = NULL, [SortOrder] = 128.00 WHERE [Code] = 'ctn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cur', 'Chhulung', NULL, 128.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chhulung', [Definition] = NULL, [SortOrder] = 128.10 WHERE [Code] = 'cur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csd', 'Chiangmai Sign Language', NULL, 128.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiangmai Sign Language', [Definition] = NULL, [SortOrder] = 128.20 WHERE [Code] = 'csd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cip', 'Chiapanec', NULL, 128.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiapanec', [Definition] = NULL, [SortOrder] = 128.30 WHERE [Code] = 'cip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chb', 'Chibcha', NULL, 128.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chibcha', [Definition] = NULL, [SortOrder] = 128.40 WHERE [Code] = 'chb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trs', 'Chicahuaxtla Triqui', NULL, 128.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chicahuaxtla Triqui', [Definition] = NULL, [SortOrder] = 128.50 WHERE [Code] = 'trs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpv', 'Chichicapan Zapotec', NULL, 128.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chichicapan Zapotec', [Definition] = NULL, [SortOrder] = 128.60 WHERE [Code] = 'zpv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pei', 'Chichimeca-Jonaz', NULL, 128.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chichimeca-Jonaz', [Definition] = NULL, [SortOrder] = 128.70 WHERE [Code] = 'pei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cic', 'Chickasaw', NULL, 128.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chickasaw', [Definition] = NULL, [SortOrder] = 128.80 WHERE [Code] = 'cic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cob', 'Chicomuceltec', NULL, 128.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chicomuceltec', [Definition] = NULL, [SortOrder] = 128.90 WHERE [Code] = 'cob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cgg', 'Chiga', NULL, 129.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiga', [Definition] = NULL, [SortOrder] = 129.00 WHERE [Code] = 'cgg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mii', 'Chigmecatitlán Mixtec', NULL, 129.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chigmecatitlán Mixtec', [Definition] = NULL, [SortOrder] = 129.10 WHERE [Code] = 'mii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clc', 'Chilcotin', NULL, 129.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chilcotin', [Definition] = NULL, [SortOrder] = 129.20 WHERE [Code] = 'clc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csg', 'Chilean Sign Language', NULL, 129.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chilean Sign Language', [Definition] = NULL, [SortOrder] = 129.30 WHERE [Code] = 'csg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clh', 'Chilisso', NULL, 129.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chilisso', [Definition] = NULL, [SortOrder] = 129.40 WHERE [Code] = 'clh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csa', 'Chiltepec Chinantec', NULL, 129.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiltepec Chinantec', [Definition] = NULL, [SortOrder] = 129.50 WHERE [Code] = 'csa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zoh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zoh', 'Chimalapa Zoque', NULL, 129.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chimalapa Zoque', [Definition] = NULL, [SortOrder] = 129.60 WHERE [Code] = 'zoh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cid', 'Chimariko', NULL, 129.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chimariko', [Definition] = NULL, [SortOrder] = 129.70 WHERE [Code] = 'cid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qug', 'Chimborazo Highland Quichua', NULL, 129.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chimborazo Highland Quichua', [Definition] = NULL, [SortOrder] = 129.80 WHERE [Code] = 'qug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbg', 'Chimila', NULL, 129.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chimila', [Definition] = NULL, [SortOrder] = 129.90 WHERE [Code] = 'cbg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxu', 'China Buriat', NULL, 130.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'China Buriat', [Definition] = NULL, [SortOrder] = 130.00 WHERE [Code] = 'bxu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cih', 'Chinali', NULL, 130.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinali', [Definition] = NULL, [SortOrder] = 130.10 WHERE [Code] = 'cih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnb', 'Chinbon Chin', NULL, 130.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinbon Chin', [Definition] = NULL, [SortOrder] = 130.20 WHERE [Code] = 'cnb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxc', 'Chincha Quechua', NULL, 130.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chincha Quechua', [Definition] = NULL, [SortOrder] = 130.30 WHERE [Code] = 'qxc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zho', 'Chinese', NULL, 130.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinese', [Definition] = NULL, [SortOrder] = 130.40 WHERE [Code] = 'zho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpi', 'Chinese Pidgin English', NULL, 130.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinese Pidgin English', [Definition] = NULL, [SortOrder] = 130.50 WHERE [Code] = 'cpi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csl', 'Chinese Sign Language', NULL, 130.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinese Sign Language', [Definition] = NULL, [SortOrder] = 130.60 WHERE [Code] = 'csl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chh', 'Chinook', NULL, 130.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinook', [Definition] = NULL, [SortOrder] = 130.70 WHERE [Code] = 'chh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chn', 'Chinook jargon', NULL, 130.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinook jargon', [Definition] = NULL, [SortOrder] = 130.80 WHERE [Code] = 'chn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cap', 'Chipaya', NULL, 130.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chipaya', [Definition] = NULL, [SortOrder] = 130.90 WHERE [Code] = 'cap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chp', 'Chipewyan', NULL, 131.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chipewyan', [Definition] = NULL, [SortOrder] = 131.00 WHERE [Code] = 'chp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ciw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ciw', 'Chippewa', NULL, 131.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chippewa', [Definition] = NULL, [SortOrder] = 131.10 WHERE [Code] = 'ciw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxa', 'Chiquián Ancash Quechua', NULL, 131.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiquián Ancash Quechua', [Definition] = NULL, [SortOrder] = 131.20 WHERE [Code] = 'qxa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maq', 'Chiquihuitlán Mazatec', NULL, 131.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiquihuitlán Mazatec', [Definition] = NULL, [SortOrder] = 131.30 WHERE [Code] = 'maq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cax', 'Chiquitano', NULL, 131.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiquitano', [Definition] = NULL, [SortOrder] = 131.40 WHERE [Code] = 'cax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhd', 'Chiripá', NULL, 131.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiripá', [Definition] = NULL, [SortOrder] = 131.50 WHERE [Code] = 'nhd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdf', 'Chiru', NULL, 131.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiru', [Definition] = NULL, [SortOrder] = 131.60 WHERE [Code] = 'cdf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctm', 'Chitimacha', NULL, 131.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chitimacha', [Definition] = NULL, [SortOrder] = 131.70 WHERE [Code] = 'ctm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cik', 'Chitkuli Kinnauri', NULL, 131.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chitkuli Kinnauri', [Definition] = NULL, [SortOrder] = 131.80 WHERE [Code] = 'cik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctg', 'Chittagonian', NULL, 131.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chittagonian', [Definition] = NULL, [SortOrder] = 131.90 WHERE [Code] = 'ctg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'the') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('the', 'Chitwania Tharu', NULL, 132.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chitwania Tharu', [Definition] = NULL, [SortOrder] = 132.00 WHERE [Code] = 'the' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpc', 'Choapan Zapotec', NULL, 132.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Choapan Zapotec', [Definition] = NULL, [SortOrder] = 132.10 WHERE [Code] = 'zpc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cgk', 'Chocangacakha', NULL, 132.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chocangacakha', [Definition] = NULL, [SortOrder] = 132.20 WHERE [Code] = 'cgk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coz', 'Chochotec', NULL, 132.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chochotec', [Definition] = NULL, [SortOrder] = 132.30 WHERE [Code] = 'coz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cho', 'Choctaw', NULL, 132.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Choctaw', [Definition] = NULL, [SortOrder] = 132.40 WHERE [Code] = 'cho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdi', 'Chodri', NULL, 132.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chodri', [Definition] = NULL, [SortOrder] = 132.50 WHERE [Code] = 'cdi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nri', 'Chokri Naga', NULL, 132.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chokri Naga', [Definition] = NULL, [SortOrder] = 132.60 WHERE [Code] = 'nri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjk', 'Chokwe', NULL, 132.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chokwe', [Definition] = NULL, [SortOrder] = 132.70 WHERE [Code] = 'cjk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctu', 'Chol', NULL, 132.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chol', [Definition] = NULL, [SortOrder] = 132.80 WHERE [Code] = 'ctu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cht', 'Cholón', NULL, 132.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cholón', [Definition] = NULL, [SortOrder] = 132.90 WHERE [Code] = 'cht' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cog', 'Chong', NULL, 133.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chong', [Definition] = NULL, [SortOrder] = 133.00 WHERE [Code] = 'cog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cda', 'Choni', NULL, 133.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Choni', [Definition] = NULL, [SortOrder] = 133.10 WHERE [Code] = 'cda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coh', 'Chonyi-Dzihana-Kauma', NULL, 133.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chonyi-Dzihana-Kauma', [Definition] = NULL, [SortOrder] = 133.20 WHERE [Code] = 'coh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cce', 'Chopi', NULL, 133.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chopi', [Definition] = NULL, [SortOrder] = 133.30 WHERE [Code] = 'cce' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xco', 'Chorasmian', NULL, 133.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chorasmian', [Definition] = NULL, [SortOrder] = 133.40 WHERE [Code] = 'xco' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caa', 'Chortí', NULL, 133.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chortí', [Definition] = NULL, [SortOrder] = 133.50 WHERE [Code] = 'caa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nct', 'Chothe Naga', NULL, 133.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chothe Naga', [Definition] = NULL, [SortOrder] = 133.60 WHERE [Code] = 'nct' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crw', 'Chrau', NULL, 133.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chrau', [Definition] = NULL, [SortOrder] = 133.70 WHERE [Code] = 'crw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cje', 'Chru', NULL, 133.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chru', [Definition] = NULL, [SortOrder] = 133.80 WHERE [Code] = 'cje' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cqd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cqd', 'Chuanqiandian Cluster Miao', NULL, 133.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuanqiandian Cluster Miao', [Definition] = NULL, [SortOrder] = 133.90 WHERE [Code] = 'cqd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjv', 'Chuave', NULL, 134.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuave', [Definition] = NULL, [SortOrder] = 134.00 WHERE [Code] = 'cjv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cvg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cvg', 'Chug', NULL, 134.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chug', [Definition] = NULL, [SortOrder] = 134.10 WHERE [Code] = 'cvg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cac', 'Chuj', NULL, 134.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuj', [Definition] = NULL, [SortOrder] = 134.20 WHERE [Code] = 'cac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuh', 'Chuka', NULL, 134.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuka', [Definition] = NULL, [SortOrder] = 134.30 WHERE [Code] = 'cuh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckt', 'Chukot', NULL, 134.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chukot', [Definition] = NULL, [SortOrder] = 134.40 WHERE [Code] = 'ckt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuw', 'Chukwa', NULL, 134.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chukwa', [Definition] = NULL, [SortOrder] = 134.50 WHERE [Code] = 'cuw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clw', 'Chulym', NULL, 134.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chulym', [Definition] = NULL, [SortOrder] = 134.60 WHERE [Code] = 'clw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncu', 'Chumburung', NULL, 134.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chumburung', [Definition] = NULL, [SortOrder] = 134.70 WHERE [Code] = 'ncu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnq', 'Chung', NULL, 134.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chung', [Definition] = NULL, [SortOrder] = 134.80 WHERE [Code] = 'cnq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdj', 'Churahi', NULL, 134.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Churahi', [Definition] = NULL, [SortOrder] = 134.90 WHERE [Code] = 'cdj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chu', 'Church Slavic', NULL, 135.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Church Slavic', [Definition] = NULL, [SortOrder] = 135.00 WHERE [Code] = 'chu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scb', 'Chut', NULL, 135.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chut', [Definition] = NULL, [SortOrder] = 135.10 WHERE [Code] = 'scb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chk', 'Chuukese', NULL, 135.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuukese', [Definition] = NULL, [SortOrder] = 135.20 WHERE [Code] = 'chk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcv', 'Chuvantsy', NULL, 135.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuvantsy', [Definition] = NULL, [SortOrder] = 135.30 WHERE [Code] = 'xcv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chv', 'Chuvash', NULL, 135.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuvash', [Definition] = NULL, [SortOrder] = 135.40 WHERE [Code] = 'chv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chw', 'Chuwabu', NULL, 135.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuwabu', [Definition] = NULL, [SortOrder] = 135.50 WHERE [Code] = 'chw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cib', 'Ci Gbe', NULL, 135.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ci Gbe', [Definition] = NULL, [SortOrder] = 135.60 WHERE [Code] = 'cib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cia', 'Cia-Cia', NULL, 135.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cia-Cia', [Definition] = NULL, [SortOrder] = 135.70 WHERE [Code] = 'cia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckl', 'Cibak', NULL, 135.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cibak', [Definition] = NULL, [SortOrder] = 135.80 WHERE [Code] = 'ckl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awc', 'Cicipu', NULL, 135.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cicipu', [Definition] = NULL, [SortOrder] = 135.90 WHERE [Code] = 'awc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cim', 'Cimbrian', NULL, 136.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cimbrian', [Definition] = NULL, [SortOrder] = 136.00 WHERE [Code] = 'cim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdr', 'Cinda-Regi-Tiyal', NULL, 136.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cinda-Regi-Tiyal', [Definition] = NULL, [SortOrder] = 136.10 WHERE [Code] = 'cdr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cie', 'Cineni', NULL, 136.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cineni', [Definition] = NULL, [SortOrder] = 136.20 WHERE [Code] = 'cie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cin', 'Cinta Larga', NULL, 136.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cinta Larga', [Definition] = NULL, [SortOrder] = 136.30 WHERE [Code] = 'cin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcg', 'Cisalpine Gaulish', NULL, 136.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cisalpine Gaulish', [Definition] = NULL, [SortOrder] = 136.40 WHERE [Code] = 'xcg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asg', 'Cishingini', NULL, 136.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cishingini', [Definition] = NULL, [SortOrder] = 136.50 WHERE [Code] = 'asg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txt', 'Citak', NULL, 136.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Citak', [Definition] = NULL, [SortOrder] = 136.60 WHERE [Code] = 'txt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgd', 'Ciwogai', NULL, 136.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ciwogai', [Definition] = NULL, [SortOrder] = 136.70 WHERE [Code] = 'tgd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clm', 'Clallam', NULL, 136.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Clallam', [Definition] = NULL, [SortOrder] = 136.80 WHERE [Code] = 'clm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcl', 'Classical Armenian', NULL, 136.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Armenian', [Definition] = NULL, [SortOrder] = 136.90 WHERE [Code] = 'xcl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myz', 'Classical Mandaic', NULL, 137.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Mandaic', [Definition] = NULL, [SortOrder] = 137.00 WHERE [Code] = 'myz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmg', 'Classical Mongolian', NULL, 137.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Mongolian', [Definition] = NULL, [SortOrder] = 137.10 WHERE [Code] = 'cmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nci', 'Classical Nahuatl', NULL, 137.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Nahuatl', [Definition] = NULL, [SortOrder] = 137.20 WHERE [Code] = 'nci' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwc', 'Classical Newari', NULL, 137.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Newari', [Definition] = NULL, [SortOrder] = 137.30 WHERE [Code] = 'nwc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwc', 'Classical Quechua', NULL, 137.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Quechua', [Definition] = NULL, [SortOrder] = 137.40 WHERE [Code] = 'qwc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syc', 'Classical Syriac', NULL, 137.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Syriac', [Definition] = NULL, [SortOrder] = 137.50 WHERE [Code] = 'syc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xct', 'Classical Tibetan', NULL, 137.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Tibetan', [Definition] = NULL, [SortOrder] = 137.60 WHERE [Code] = 'xct' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcw', 'Coahuilteco', NULL, 137.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coahuilteco', [Definition] = NULL, [SortOrder] = 137.70 WHERE [Code] = 'xcw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csi', 'Coast Miwok', NULL, 137.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coast Miwok', [Definition] = NULL, [SortOrder] = 137.80 WHERE [Code] = 'csi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjc', 'Coastal Konjo', NULL, 137.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coastal Konjo', [Definition] = NULL, [SortOrder] = 137.90 WHERE [Code] = 'kjc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zca', 'Coatecas Altas Zapotec', NULL, 138.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatecas Altas Zapotec', [Definition] = NULL, [SortOrder] = 138.00 WHERE [Code] = 'zca' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naz', 'Coatepec Nahuatl', NULL, 138.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatepec Nahuatl', [Definition] = NULL, [SortOrder] = 138.10 WHERE [Code] = 'naz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mco', 'Coatlán Mixe', NULL, 138.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatlán Mixe', [Definition] = NULL, [SortOrder] = 138.20 WHERE [Code] = 'mco' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zps', 'Coatlán Zapotec', NULL, 138.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatlán Zapotec', [Definition] = NULL, [SortOrder] = 138.30 WHERE [Code] = 'zps' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miz', 'Coatzospan Mixtec', NULL, 138.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatzospan Mixtec', [Definition] = NULL, [SortOrder] = 138.40 WHERE [Code] = 'miz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cod', 'Cocama-Cocamilla', NULL, 138.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cocama-Cocamilla', [Definition] = NULL, [SortOrder] = 138.50 WHERE [Code] = 'cod' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coj', 'Cochimi', NULL, 138.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cochimi', [Definition] = NULL, [SortOrder] = 138.60 WHERE [Code] = 'coj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coc', 'Cocopa', NULL, 138.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cocopa', [Definition] = NULL, [SortOrder] = 138.70 WHERE [Code] = 'coc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coa', 'Cocos Islands Malay', NULL, 138.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cocos Islands Malay', [Definition] = NULL, [SortOrder] = 138.80 WHERE [Code] = 'coa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crd', 'Coeur d''Alene', NULL, 138.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coeur d''Alene', [Definition] = NULL, [SortOrder] = 138.90 WHERE [Code] = 'crd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'con') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('con', 'Cofán', NULL, 139.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cofán', [Definition] = NULL, [SortOrder] = 139.00 WHERE [Code] = 'con' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kog', 'Cogui', NULL, 139.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cogui', [Definition] = NULL, [SortOrder] = 139.10 WHERE [Code] = 'kog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liw', 'Col', NULL, 139.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Col', [Definition] = NULL, [SortOrder] = 139.20 WHERE [Code] = 'liw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csn', 'Colombian Sign Language', NULL, 139.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Colombian Sign Language', [Definition] = NULL, [SortOrder] = 139.30 WHERE [Code] = 'csn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gct', 'Colonia Tovar German', NULL, 139.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Colonia Tovar German', [Definition] = NULL, [SortOrder] = 139.40 WHERE [Code] = 'gct' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cof', 'Colorado', NULL, 139.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Colorado', [Definition] = NULL, [SortOrder] = 139.50 WHERE [Code] = 'cof' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'col') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('col', 'Columbia-Wenatchi', NULL, 139.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Columbia-Wenatchi', [Definition] = NULL, [SortOrder] = 139.60 WHERE [Code] = 'col' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cco', 'Comaltepec Chinantec', NULL, 139.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Comaltepec Chinantec', [Definition] = NULL, [SortOrder] = 139.70 WHERE [Code] = 'cco' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'com') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('com', 'Comanche', NULL, 139.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Comanche', [Definition] = NULL, [SortOrder] = 139.80 WHERE [Code] = 'com' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcm', 'Comecrudo', NULL, 139.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Comecrudo', [Definition] = NULL, [SortOrder] = 139.90 WHERE [Code] = 'xcm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cfg', 'Como Karim', NULL, 140.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Como Karim', [Definition] = NULL, [SortOrder] = 140.00 WHERE [Code] = 'cfg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coo', 'Comox', NULL, 140.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Comox', [Definition] = NULL, [SortOrder] = 140.10 WHERE [Code] = 'coo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cno', 'Con', NULL, 140.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Con', [Definition] = NULL, [SortOrder] = 140.20 WHERE [Code] = 'cno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swc', 'Congo Swahili', NULL, 140.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Congo Swahili', [Definition] = NULL, [SortOrder] = 140.30 WHERE [Code] = 'swc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnc', 'Côông', NULL, 140.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Côông', [Definition] = NULL, [SortOrder] = 140.40 WHERE [Code] = 'cnc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csz', 'Coos', NULL, 140.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coos', [Definition] = NULL, [SortOrder] = 140.50 WHERE [Code] = 'csz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zoc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zoc', 'Copainalá Zoque', NULL, 140.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Copainalá Zoque', [Definition] = NULL, [SortOrder] = 140.60 WHERE [Code] = 'zoc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trc', 'Copala Triqui', NULL, 140.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Copala Triqui', [Definition] = NULL, [SortOrder] = 140.70 WHERE [Code] = 'trc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cop', 'Coptic', NULL, 140.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coptic', [Definition] = NULL, [SortOrder] = 140.80 WHERE [Code] = 'cop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coq', 'Coquille', NULL, 140.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coquille', [Definition] = NULL, [SortOrder] = 140.90 WHERE [Code] = 'coq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cry', 'Cori', NULL, 141.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cori', [Definition] = NULL, [SortOrder] = 141.00 WHERE [Code] = 'cry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cor', 'Cornish', NULL, 141.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cornish', [Definition] = NULL, [SortOrder] = 141.10 WHERE [Code] = 'cor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwa', 'Corongo Ancash Quechua', NULL, 141.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Corongo Ancash Quechua', [Definition] = NULL, [SortOrder] = 141.20 WHERE [Code] = 'qwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cos', 'Corsican', NULL, 141.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Corsican', [Definition] = NULL, [SortOrder] = 141.30 WHERE [Code] = 'cos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csr', 'Costa Rican Sign Language', NULL, 141.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Costa Rican Sign Language', [Definition] = NULL, [SortOrder] = 141.40 WHERE [Code] = 'csr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mta', 'Cotabato Manobo', NULL, 141.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cotabato Manobo', [Definition] = NULL, [SortOrder] = 141.50 WHERE [Code] = 'mta' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcn', 'Cotoname', NULL, 141.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cotoname', [Definition] = NULL, [SortOrder] = 141.60 WHERE [Code] = 'xcn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cow', 'Cowlitz', NULL, 141.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cowlitz', [Definition] = NULL, [SortOrder] = 141.70 WHERE [Code] = 'cow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbf', 'Coyotepec Popoloca', NULL, 141.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coyotepec Popoloca', [Definition] = NULL, [SortOrder] = 141.80 WHERE [Code] = 'pbf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toc', 'Coyutla Totonac', NULL, 141.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coyutla Totonac', [Definition] = NULL, [SortOrder] = 141.90 WHERE [Code] = 'toc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cre', 'Cree', NULL, 142.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cree', [Definition] = NULL, [SortOrder] = 142.00 WHERE [Code] = 'cre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mus', 'Creek', NULL, 142.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Creek', [Definition] = NULL, [SortOrder] = 142.10 WHERE [Code] = 'mus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crh', 'Crimean Tatar', NULL, 142.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Crimean Tatar', [Definition] = NULL, [SortOrder] = 142.20 WHERE [Code] = 'crh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csq', 'Croatia Sign Language', NULL, 142.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Croatia Sign Language', [Definition] = NULL, [SortOrder] = 142.30 WHERE [Code] = 'csq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrv', 'Croatian', NULL, 142.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Croatian', [Definition] = NULL, [SortOrder] = 142.40 WHERE [Code] = 'hrv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfn', 'Cross River Mbembe', NULL, 142.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cross River Mbembe', [Definition] = NULL, [SortOrder] = 142.50 WHERE [Code] = 'mfn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cro', 'Crow', NULL, 142.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Crow', [Definition] = NULL, [SortOrder] = 142.60 WHERE [Code] = 'cro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crz', 'Cruzeño', NULL, 142.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cruzeño', [Definition] = NULL, [SortOrder] = 142.70 WHERE [Code] = 'crz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cua', 'Cua', NULL, 142.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cua', [Definition] = NULL, [SortOrder] = 142.80 WHERE [Code] = 'cua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csf', 'Cuba Sign Language', NULL, 142.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuba Sign Language', [Definition] = NULL, [SortOrder] = 142.90 WHERE [Code] = 'csf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cub', 'Cubeo', NULL, 143.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cubeo', [Definition] = NULL, [SortOrder] = 143.00 WHERE [Code] = 'cub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cui', 'Cuiba', NULL, 143.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuiba', [Definition] = NULL, [SortOrder] = 143.10 WHERE [Code] = 'cui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuy', 'Cuitlatec', NULL, 143.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuitlatec', [Definition] = NULL, [SortOrder] = 143.20 WHERE [Code] = 'cuy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cul', 'Culina', NULL, 143.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Culina', [Definition] = NULL, [SortOrder] = 143.30 WHERE [Code] = 'cul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuo', 'Cumanagoto', NULL, 143.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cumanagoto', [Definition] = NULL, [SortOrder] = 143.40 WHERE [Code] = 'cuo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcb', 'Cumbric', NULL, 143.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cumbric', [Definition] = NULL, [SortOrder] = 143.50 WHERE [Code] = 'xcb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuq', 'Cun', NULL, 143.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cun', [Definition] = NULL, [SortOrder] = 143.60 WHERE [Code] = 'cuq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlu', 'Cuneiform Luwian', NULL, 143.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuneiform Luwian', [Definition] = NULL, [SortOrder] = 143.70 WHERE [Code] = 'xlu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cup', 'Cupeño', NULL, 143.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cupeño', [Definition] = NULL, [SortOrder] = 143.80 WHERE [Code] = 'cup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcu', 'Curonian', NULL, 143.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Curonian', [Definition] = NULL, [SortOrder] = 143.90 WHERE [Code] = 'xcu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpc', 'Curripaco', NULL, 144.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Curripaco', [Definition] = NULL, [SortOrder] = 144.00 WHERE [Code] = 'kpc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quz', 'Cusco Quechua', NULL, 144.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cusco Quechua', [Definition] = NULL, [SortOrder] = 144.10 WHERE [Code] = 'quz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccl', 'Cutchi-Swahili', NULL, 144.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cutchi-Swahili', [Definition] = NULL, [SortOrder] = 144.20 WHERE [Code] = 'ccl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuv', 'Cuvok', NULL, 144.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuvok', [Definition] = NULL, [SortOrder] = 144.30 WHERE [Code] = 'cuv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtu', 'Cuyamecalco Mixtec', NULL, 144.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuyamecalco Mixtec', [Definition] = NULL, [SortOrder] = 144.40 WHERE [Code] = 'xtu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cyo', 'Cuyonon', NULL, 144.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuyonon', [Definition] = NULL, [SortOrder] = 144.50 WHERE [Code] = 'cyo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwy', 'Cwi Bwamu', NULL, 144.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cwi Bwamu', [Definition] = NULL, [SortOrder] = 144.60 WHERE [Code] = 'bwy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acy', 'Cypriot Arabic', NULL, 144.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cypriot Arabic', [Definition] = NULL, [SortOrder] = 144.70 WHERE [Code] = 'acy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ces') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ces', 'Czech', NULL, 144.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Czech', [Definition] = NULL, [SortOrder] = 144.80 WHERE [Code] = 'ces' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cse', 'Czech Sign Language', NULL, 144.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Czech Sign Language', [Definition] = NULL, [SortOrder] = 144.90 WHERE [Code] = 'cse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzf', 'Da''a Kaili', NULL, 145.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Da''a Kaili', [Definition] = NULL, [SortOrder] = 145.00 WHERE [Code] = 'kzf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dao', 'Daai Chin', NULL, 145.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daai Chin', [Definition] = NULL, [SortOrder] = 145.10 WHERE [Code] = 'dao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpa', 'Daakaka', NULL, 145.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daakaka', [Definition] = NULL, [SortOrder] = 145.20 WHERE [Code] = 'bpa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lni', 'Daantanai''', NULL, 145.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daantanai''', [Definition] = NULL, [SortOrder] = 145.30 WHERE [Code] = 'lni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsh', 'Daasanach', NULL, 145.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daasanach', [Definition] = NULL, [SortOrder] = 145.40 WHERE [Code] = 'dsh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtn', 'Daats''i´in', NULL, 145.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daats''i´in', [Definition] = NULL, [SortOrder] = 145.50 WHERE [Code] = 'dtn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbq', 'Daba', NULL, 145.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daba', [Definition] = NULL, [SortOrder] = 145.60 WHERE [Code] = 'dbq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbr', 'Dabarre', NULL, 145.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dabarre', [Definition] = NULL, [SortOrder] = 145.70 WHERE [Code] = 'dbr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbe', 'Dabe', NULL, 145.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dabe', [Definition] = NULL, [SortOrder] = 145.80 WHERE [Code] = 'dbe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdc', 'Dacian', NULL, 145.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dacian', [Definition] = NULL, [SortOrder] = 145.90 WHERE [Code] = 'xdc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dda', 'Dadi Dadi', NULL, 146.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dadi Dadi', [Definition] = NULL, [SortOrder] = 146.00 WHERE [Code] = 'dda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mps', 'Dadibi', NULL, 146.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dadibi', [Definition] = NULL, [SortOrder] = 146.10 WHERE [Code] = 'mps' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbd', 'Dadiya', NULL, 146.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dadiya', [Definition] = NULL, [SortOrder] = 146.20 WHERE [Code] = 'dbd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgz', 'Daga', NULL, 146.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daga', [Definition] = NULL, [SortOrder] = 146.30 WHERE [Code] = 'dgz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgd', 'Dagaari Dioula', NULL, 146.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagaari Dioula', [Definition] = NULL, [SortOrder] = 146.40 WHERE [Code] = 'dgd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgk', 'Dagba', NULL, 146.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagba', [Definition] = NULL, [SortOrder] = 146.50 WHERE [Code] = 'dgk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dag', 'Dagbani', NULL, 146.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagbani', [Definition] = NULL, [SortOrder] = 146.60 WHERE [Code] = 'dag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dec', 'Dagik', NULL, 146.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagik', [Definition] = NULL, [SortOrder] = 146.70 WHERE [Code] = 'dec' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgn', 'Dagoman', NULL, 146.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagoman', [Definition] = NULL, [SortOrder] = 146.80 WHERE [Code] = 'dgn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dlk', 'Dahalik', NULL, 146.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dahalik', [Definition] = NULL, [SortOrder] = 146.90 WHERE [Code] = 'dlk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dal', 'Dahalo', NULL, 147.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dahalo', [Definition] = NULL, [SortOrder] = 147.00 WHERE [Code] = 'dal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'das') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('das', 'Daho-Doo', NULL, 147.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daho-Doo', [Definition] = NULL, [SortOrder] = 147.10 WHERE [Code] = 'das' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dij', 'Dai', NULL, 147.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dai', [Definition] = NULL, [SortOrder] = 147.20 WHERE [Code] = 'dij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhd', 'Dai Zhuang', NULL, 147.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dai Zhuang', [Definition] = NULL, [SortOrder] = 147.30 WHERE [Code] = 'zhd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drb', 'Dair', NULL, 147.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dair', [Definition] = NULL, [SortOrder] = 147.40 WHERE [Code] = 'drb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dkk', 'Dakka', NULL, 147.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dakka', [Definition] = NULL, [SortOrder] = 147.50 WHERE [Code] = 'dkk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dak', 'Dakota', NULL, 147.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dakota', [Definition] = NULL, [SortOrder] = 147.60 WHERE [Code] = 'dak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dka', 'Dakpakha', NULL, 147.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dakpakha', [Definition] = NULL, [SortOrder] = 147.70 WHERE [Code] = 'dka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngk', 'Dalabon', NULL, 147.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dalabon', [Definition] = NULL, [SortOrder] = 147.80 WHERE [Code] = 'ngk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dlm', 'Dalmatian', NULL, 147.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dalmatian', [Definition] = NULL, [SortOrder] = 147.90 WHERE [Code] = 'dlm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bev', 'Daloa Bété', NULL, 148.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daloa Bété', [Definition] = NULL, [SortOrder] = 148.00 WHERE [Code] = 'bev' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmm', 'Dama', NULL, 148.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dama', [Definition] = NULL, [SortOrder] = 148.10 WHERE [Code] = 'dmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dam', 'Damakawa', NULL, 148.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Damakawa', [Definition] = NULL, [SortOrder] = 148.20 WHERE [Code] = 'dam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uhn', 'Damal', NULL, 148.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Damal', [Definition] = NULL, [SortOrder] = 148.30 WHERE [Code] = 'uhn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dac', 'Dambi', NULL, 148.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dambi', [Definition] = NULL, [SortOrder] = 148.40 WHERE [Code] = 'dac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dml', 'Dameli', NULL, 148.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dameli', [Definition] = NULL, [SortOrder] = 148.50 WHERE [Code] = 'dml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dms', 'Dampelas', NULL, 148.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dampelas', [Definition] = NULL, [SortOrder] = 148.60 WHERE [Code] = 'dms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnj', 'Dan', NULL, 148.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dan', [Definition] = NULL, [SortOrder] = 148.70 WHERE [Code] = 'dnj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnr', 'Danaru', NULL, 148.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danaru', [Definition] = NULL, [SortOrder] = 148.80 WHERE [Code] = 'dnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnu', 'Danau', NULL, 148.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danau', [Definition] = NULL, [SortOrder] = 148.90 WHERE [Code] = 'dnu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daq', 'Dandami Maria', NULL, 149.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dandami Maria', [Definition] = NULL, [SortOrder] = 149.00 WHERE [Code] = 'daq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daa', 'Dangaléat', NULL, 149.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dangaléat', [Definition] = NULL, [SortOrder] = 149.10 WHERE [Code] = 'daa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thl', 'Dangaura Tharu', NULL, 149.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dangaura Tharu', [Definition] = NULL, [SortOrder] = 149.20 WHERE [Code] = 'thl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dan', 'Danish', NULL, 149.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danish', [Definition] = NULL, [SortOrder] = 149.30 WHERE [Code] = 'dan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsl', 'Danish Sign Language', NULL, 149.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danish Sign Language', [Definition] = NULL, [SortOrder] = 149.40 WHERE [Code] = 'dsl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aso', 'Dano', NULL, 149.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dano', [Definition] = NULL, [SortOrder] = 149.50 WHERE [Code] = 'aso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnv', 'Danu', NULL, 149.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danu', [Definition] = NULL, [SortOrder] = 149.60 WHERE [Code] = 'dnv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daz', 'Dao', NULL, 149.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dao', [Definition] = NULL, [SortOrder] = 149.70 WHERE [Code] = 'daz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnd', 'Daonda', NULL, 149.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daonda', [Definition] = NULL, [SortOrder] = 149.80 WHERE [Code] = 'dnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djc', 'Dar Daju Daju', NULL, 149.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dar Daju Daju', [Definition] = NULL, [SortOrder] = 149.90 WHERE [Code] = 'djc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daj', 'Dar Fur Daju', NULL, 150.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dar Fur Daju', [Definition] = NULL, [SortOrder] = 150.00 WHERE [Code] = 'daj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dau', 'Dar Sila Daju', NULL, 150.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dar Sila Daju', [Definition] = NULL, [SortOrder] = 150.10 WHERE [Code] = 'dau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dry', 'Darai', NULL, 150.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Darai', [Definition] = NULL, [SortOrder] = 150.20 WHERE [Code] = 'dry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dar', 'Dargwa', NULL, 150.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dargwa', [Definition] = NULL, [SortOrder] = 150.30 WHERE [Code] = 'dar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prs', 'Dari', NULL, 150.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dari', [Definition] = NULL, [SortOrder] = 150.40 WHERE [Code] = 'prs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xda', 'Darkinyung', NULL, 150.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Darkinyung', [Definition] = NULL, [SortOrder] = 150.50 WHERE [Code] = 'xda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dln', 'Darlong', NULL, 150.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Darlong', [Definition] = NULL, [SortOrder] = 150.60 WHERE [Code] = 'dln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drd', 'Darmiya', NULL, 150.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Darmiya', [Definition] = NULL, [SortOrder] = 150.70 WHERE [Code] = 'drd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dro', 'Daro-Matu Melanau', NULL, 150.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daro-Matu Melanau', [Definition] = NULL, [SortOrder] = 150.80 WHERE [Code] = 'dro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dot', 'Dass', NULL, 150.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dass', [Definition] = NULL, [SortOrder] = 150.90 WHERE [Code] = 'dot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcc', 'Datooga', NULL, 151.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Datooga', [Definition] = NULL, [SortOrder] = 151.00 WHERE [Code] = 'tcc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgw', 'Daungwurrung', NULL, 151.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daungwurrung', [Definition] = NULL, [SortOrder] = 151.10 WHERE [Code] = 'dgw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dta', 'Daur', NULL, 151.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daur', [Definition] = NULL, [SortOrder] = 151.20 WHERE [Code] = 'dta' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daw', 'Davawenyo', NULL, 151.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Davawenyo', [Definition] = NULL, [SortOrder] = 151.30 WHERE [Code] = 'daw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwa', 'Dâw', NULL, 151.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dâw', [Definition] = NULL, [SortOrder] = 151.40 WHERE [Code] = 'kwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dww', 'Dawawa', NULL, 151.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dawawa', [Definition] = NULL, [SortOrder] = 151.50 WHERE [Code] = 'dww' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddw', 'Dawera-Daweloor', NULL, 151.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dawera-Daweloor', [Definition] = NULL, [SortOrder] = 151.60 WHERE [Code] = 'ddw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwk', 'Dawik Kui', NULL, 151.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dawik Kui', [Definition] = NULL, [SortOrder] = 151.70 WHERE [Code] = 'dwk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwr', 'Dawro', NULL, 151.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dawro', [Definition] = NULL, [SortOrder] = 151.80 WHERE [Code] = 'dwr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dai', 'Day', NULL, 151.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Day', [Definition] = NULL, [SortOrder] = 151.90 WHERE [Code] = 'dai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dax', 'Dayi', NULL, 152.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dayi', [Definition] = NULL, [SortOrder] = 152.00 WHERE [Code] = 'dax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzg', 'Dazaga', NULL, 152.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dazaga', [Definition] = NULL, [SortOrder] = 152.10 WHERE [Code] = 'dzg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dcc', 'Deccan', NULL, 152.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Deccan', [Definition] = NULL, [SortOrder] = 152.20 WHERE [Code] = 'dcc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ded') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ded', 'Dedua', NULL, 152.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dedua', [Definition] = NULL, [SortOrder] = 152.30 WHERE [Code] = 'ded' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afn', 'Defaka', NULL, 152.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Defaka', [Definition] = NULL, [SortOrder] = 152.40 WHERE [Code] = 'afn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbh', 'Defi Gbe', NULL, 152.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Defi Gbe', [Definition] = NULL, [SortOrder] = 152.50 WHERE [Code] = 'gbh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzw', 'Deg', NULL, 152.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Deg', [Definition] = NULL, [SortOrder] = 152.60 WHERE [Code] = 'mzw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'deg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('deg', 'Degema', NULL, 152.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Degema', [Definition] = NULL, [SortOrder] = 152.70 WHERE [Code] = 'deg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dge', 'Degenan', NULL, 152.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Degenan', [Definition] = NULL, [SortOrder] = 152.80 WHERE [Code] = 'dge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ing') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ing', 'Degexit''an', NULL, 152.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Degexit''an', [Definition] = NULL, [SortOrder] = 152.90 WHERE [Code] = 'ing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhv', 'Dehu', NULL, 153.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dehu', [Definition] = NULL, [SortOrder] = 153.00 WHERE [Code] = 'dhv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'deh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('deh', 'Dehwari', NULL, 153.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dehwari', [Definition] = NULL, [SortOrder] = 153.10 WHERE [Code] = 'deh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dek', 'Dek', NULL, 153.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dek', [Definition] = NULL, [SortOrder] = 153.20 WHERE [Code] = 'dek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'row') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('row', 'Dela-Oenale', NULL, 153.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dela-Oenale', [Definition] = NULL, [SortOrder] = 153.30 WHERE [Code] = 'row' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'del') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('del', 'Delaware', NULL, 153.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Delaware', [Definition] = NULL, [SortOrder] = 153.40 WHERE [Code] = 'del' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntr', 'Delo', NULL, 153.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Delo', [Definition] = NULL, [SortOrder] = 153.50 WHERE [Code] = 'ntr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dem', 'Dem', NULL, 153.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dem', [Definition] = NULL, [SortOrder] = 153.60 WHERE [Code] = 'dem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmx', 'Dema', NULL, 153.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dema', [Definition] = NULL, [SortOrder] = 153.70 WHERE [Code] = 'dmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dei', 'Demisa', NULL, 153.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Demisa', [Definition] = NULL, [SortOrder] = 153.80 WHERE [Code] = 'dei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmy', 'Demta', NULL, 153.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Demta', [Definition] = NULL, [SortOrder] = 153.90 WHERE [Code] = 'dmy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddn', 'Dendi (Benin)', NULL, 154.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dendi (Benin)', [Definition] = NULL, [SortOrder] = 154.00 WHERE [Code] = 'ddn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'deq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('deq', 'Dendi (Central African Republic)', NULL, 154.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dendi (Central African Republic)', [Definition] = NULL, [SortOrder] = 154.10 WHERE [Code] = 'deq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dez', 'Dengese', NULL, 154.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dengese', [Definition] = NULL, [SortOrder] = 154.20 WHERE [Code] = 'dez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnk', 'Dengka', NULL, 154.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dengka', [Definition] = NULL, [SortOrder] = 154.30 WHERE [Code] = 'dnk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dny', 'Dení', NULL, 154.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dení', [Definition] = NULL, [SortOrder] = 154.40 WHERE [Code] = 'dny' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbb', 'Deno', NULL, 154.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Deno', [Definition] = NULL, [SortOrder] = 154.50 WHERE [Code] = 'dbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anv', 'Denya', NULL, 154.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Denya', [Definition] = NULL, [SortOrder] = 154.60 WHERE [Code] = 'anv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'der') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('der', 'Deori', NULL, 154.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Deori', [Definition] = NULL, [SortOrder] = 154.70 WHERE [Code] = 'der' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbv', 'Dera (Indonesia)', NULL, 154.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dera (Indonesia)', [Definition] = NULL, [SortOrder] = 154.80 WHERE [Code] = 'kbv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kna', 'Dera (Nigeria)', NULL, 154.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dera (Nigeria)', [Definition] = NULL, [SortOrder] = 154.90 WHERE [Code] = 'kna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'des') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('des', 'Desano', NULL, 155.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Desano', [Definition] = NULL, [SortOrder] = 155.00 WHERE [Code] = 'des' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dso', 'Desiya', NULL, 155.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Desiya', [Definition] = NULL, [SortOrder] = 155.10 WHERE [Code] = 'dso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwz', 'Dewas Rai', NULL, 155.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dewas Rai', [Definition] = NULL, [SortOrder] = 155.20 WHERE [Code] = 'dwz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dee', 'Dewoin', NULL, 155.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dewoin', [Definition] = NULL, [SortOrder] = 155.30 WHERE [Code] = 'dee' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'def') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('def', 'Dezfuli', NULL, 155.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dezfuli', [Definition] = NULL, [SortOrder] = 155.40 WHERE [Code] = 'def' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgh', 'Dghwede', NULL, 155.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dghwede', [Definition] = NULL, [SortOrder] = 155.50 WHERE [Code] = 'dgh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhs', 'Dhaiso', NULL, 155.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhaiso', [Definition] = NULL, [SortOrder] = 155.60 WHERE [Code] = 'dhs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhl', 'Dhalandji', NULL, 155.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhalandji', [Definition] = NULL, [SortOrder] = 155.70 WHERE [Code] = 'dhl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhg', 'Dhangu-Djangu', NULL, 155.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhangu-Djangu', [Definition] = NULL, [SortOrder] = 155.80 WHERE [Code] = 'dhg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhn', 'Dhanki', NULL, 155.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhanki', [Definition] = NULL, [SortOrder] = 155.90 WHERE [Code] = 'dhn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhw', 'Dhanwar (Nepal)', NULL, 156.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhanwar (Nepal)', [Definition] = NULL, [SortOrder] = 156.00 WHERE [Code] = 'dhw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfa', 'Dhao', NULL, 156.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhao', [Definition] = NULL, [SortOrder] = 156.10 WHERE [Code] = 'nfa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbh', 'Dharawal', NULL, 156.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dharawal', [Definition] = NULL, [SortOrder] = 156.20 WHERE [Code] = 'tbh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhr', 'Dhargari', NULL, 156.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhargari', [Definition] = NULL, [SortOrder] = 156.30 WHERE [Code] = 'dhr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdk', 'Dharuk', NULL, 156.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dharuk', [Definition] = NULL, [SortOrder] = 156.40 WHERE [Code] = 'xdk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgm', 'Dharumbal', NULL, 156.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dharumbal', [Definition] = NULL, [SortOrder] = 156.50 WHERE [Code] = 'xgm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mki', 'Dhatki', NULL, 156.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhatki', [Definition] = NULL, [SortOrder] = 156.60 WHERE [Code] = 'mki' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhi', 'Dhimal', NULL, 156.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhimal', [Definition] = NULL, [SortOrder] = 156.70 WHERE [Code] = 'dhi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'div') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('div', 'Dhivehi', NULL, 156.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhivehi', [Definition] = NULL, [SortOrder] = 156.80 WHERE [Code] = 'div' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dho', 'Dhodia', NULL, 156.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhodia', [Definition] = NULL, [SortOrder] = 156.90 WHERE [Code] = 'dho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adf', 'Dhofari Arabic', NULL, 157.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhofari Arabic', [Definition] = NULL, [SortOrder] = 157.00 WHERE [Code] = 'adf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddr', 'Dhudhuroa', NULL, 157.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhudhuroa', [Definition] = NULL, [SortOrder] = 157.10 WHERE [Code] = 'ddr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhd', 'Dhundari', NULL, 157.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhundari', [Definition] = NULL, [SortOrder] = 157.20 WHERE [Code] = 'dhd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhx', 'Dhungaloo', NULL, 157.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhungaloo', [Definition] = NULL, [SortOrder] = 157.30 WHERE [Code] = 'dhx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhu', 'Dhurga', NULL, 157.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhurga', [Definition] = NULL, [SortOrder] = 157.40 WHERE [Code] = 'dhu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwu', 'Dhuwal', NULL, 157.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhuwal', [Definition] = NULL, [SortOrder] = 157.50 WHERE [Code] = 'dwu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwy', 'Dhuwaya', NULL, 157.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhuwaya', [Definition] = NULL, [SortOrder] = 157.60 WHERE [Code] = 'dwy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dia', 'Dia', NULL, 157.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dia', [Definition] = NULL, [SortOrder] = 157.70 WHERE [Code] = 'dia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbd', 'Dibabawon Manobo', NULL, 157.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dibabawon Manobo', [Definition] = NULL, [SortOrder] = 157.80 WHERE [Code] = 'mbd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dby', 'Dibiyaso', NULL, 157.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dibiyaso', [Definition] = NULL, [SortOrder] = 157.90 WHERE [Code] = 'dby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dio', 'Dibo', NULL, 158.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dibo', [Definition] = NULL, [SortOrder] = 158.00 WHERE [Code] = 'dio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvx', 'Dibole', NULL, 158.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dibole', [Definition] = NULL, [SortOrder] = 158.10 WHERE [Code] = 'bvx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duy', 'Dicamay Agta', NULL, 158.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dicamay Agta', [Definition] = NULL, [SortOrder] = 158.20 WHERE [Code] = 'duy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'did') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('did', 'Didinga', NULL, 158.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Didinga', [Definition] = NULL, [SortOrder] = 158.30 WHERE [Code] = 'did' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddo', 'Dido', NULL, 158.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dido', [Definition] = NULL, [SortOrder] = 158.40 WHERE [Code] = 'ddo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dif', 'Dieri', NULL, 158.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dieri', [Definition] = NULL, [SortOrder] = 158.50 WHERE [Code] = 'dif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhu', 'Digaro-Mishmi', NULL, 158.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Digaro-Mishmi', [Definition] = NULL, [SortOrder] = 158.60 WHERE [Code] = 'mhu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dig', 'Digo', NULL, 158.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Digo', [Definition] = NULL, [SortOrder] = 158.70 WHERE [Code] = 'dig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dur', 'Dii', NULL, 158.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dii', [Definition] = NULL, [SortOrder] = 158.80 WHERE [Code] = 'dur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cfa', 'Dijim-Bwilim', NULL, 158.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dijim-Bwilim', [Definition] = NULL, [SortOrder] = 158.90 WHERE [Code] = 'cfa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dil', 'Dilling', NULL, 159.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dilling', [Definition] = NULL, [SortOrder] = 159.00 WHERE [Code] = 'dil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jma', 'Dima', NULL, 159.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dima', [Definition] = NULL, [SortOrder] = 159.10 WHERE [Code] = 'jma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dis', 'Dimasa', NULL, 159.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dimasa', [Definition] = NULL, [SortOrder] = 159.20 WHERE [Code] = 'dis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dii', 'Dimbong', NULL, 159.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dimbong', [Definition] = NULL, [SortOrder] = 159.30 WHERE [Code] = 'dii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dim', 'Dime', NULL, 159.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dime', [Definition] = NULL, [SortOrder] = 159.40 WHERE [Code] = 'dim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diq', 'Dimli (individual language)', NULL, 159.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dimli (individual language)', [Definition] = NULL, [SortOrder] = 159.50 WHERE [Code] = 'diq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diz', 'Ding', NULL, 159.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ding', [Definition] = NULL, [SortOrder] = 159.60 WHERE [Code] = 'diz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'din') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('din', 'Dinka', NULL, 159.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dinka', [Definition] = NULL, [SortOrder] = 159.70 WHERE [Code] = 'din' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdl', 'Dirasha', NULL, 159.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dirasha', [Definition] = NULL, [SortOrder] = 159.80 WHERE [Code] = 'gdl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwa', 'Diri', NULL, 159.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Diri', [Definition] = NULL, [SortOrder] = 159.90 WHERE [Code] = 'dwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diu', 'Diriku', NULL, 160.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Diriku', [Definition] = NULL, [SortOrder] = 160.00 WHERE [Code] = 'diu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dir', 'Dirim', NULL, 160.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dirim', [Definition] = NULL, [SortOrder] = 160.10 WHERE [Code] = 'dir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsi', 'Disa', NULL, 160.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Disa', [Definition] = NULL, [SortOrder] = 160.20 WHERE [Code] = 'dsi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbz', 'Ditammari', NULL, 160.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ditammari', [Definition] = NULL, [SortOrder] = 160.30 WHERE [Code] = 'tbz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtd', 'Ditidaht', NULL, 160.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ditidaht', [Definition] = NULL, [SortOrder] = 160.40 WHERE [Code] = 'dtd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diy', 'Diuwe', NULL, 160.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Diuwe', [Definition] = NULL, [SortOrder] = 160.50 WHERE [Code] = 'diy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtd', 'Diuxi-Tilantongo Mixtec', NULL, 160.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Diuxi-Tilantongo Mixtec', [Definition] = NULL, [SortOrder] = 160.60 WHERE [Code] = 'xtd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dix', 'Dixon Reef', NULL, 160.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dixon Reef', [Definition] = NULL, [SortOrder] = 160.70 WHERE [Code] = 'dix' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdx', 'Dizin', NULL, 160.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dizin', [Definition] = NULL, [SortOrder] = 160.80 WHERE [Code] = 'mdx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyy', 'Djabugay', NULL, 160.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djabugay', [Definition] = NULL, [SortOrder] = 160.90 WHERE [Code] = 'dyy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjw', 'Djabwurrung', NULL, 161.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djabwurrung', [Definition] = NULL, [SortOrder] = 161.00 WHERE [Code] = 'tjw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dja', 'Djadjawurrung', NULL, 161.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djadjawurrung', [Definition] = NULL, [SortOrder] = 161.10 WHERE [Code] = 'dja' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djr', 'Djambarrpuyngu', NULL, 161.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djambarrpuyngu', [Definition] = NULL, [SortOrder] = 161.20 WHERE [Code] = 'djr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djd', 'Djamindjung', NULL, 161.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djamindjung', [Definition] = NULL, [SortOrder] = 161.30 WHERE [Code] = 'djd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djf', 'Djangun', NULL, 161.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djangun', [Definition] = NULL, [SortOrder] = 161.40 WHERE [Code] = 'djf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djw', 'Djawi', NULL, 161.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djawi', [Definition] = NULL, [SortOrder] = 161.50 WHERE [Code] = 'djw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djj', 'Djeebbana', NULL, 161.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djeebbana', [Definition] = NULL, [SortOrder] = 161.60 WHERE [Code] = 'djj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyi', 'Djimini Senoufo', NULL, 161.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djimini Senoufo', [Definition] = NULL, [SortOrder] = 161.70 WHERE [Code] = 'dyi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dji', 'Djinang', NULL, 161.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djinang', [Definition] = NULL, [SortOrder] = 161.80 WHERE [Code] = 'dji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djb', 'Djinba', NULL, 161.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djinba', [Definition] = NULL, [SortOrder] = 161.90 WHERE [Code] = 'djb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dze', 'Djiwarli', NULL, 162.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djiwarli', [Definition] = NULL, [SortOrder] = 162.00 WHERE [Code] = 'dze' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvo', 'Dobel', NULL, 162.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dobel', [Definition] = NULL, [SortOrder] = 162.10 WHERE [Code] = 'kvo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dob', 'Dobu', NULL, 162.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dobu', [Definition] = NULL, [SortOrder] = 162.20 WHERE [Code] = 'dob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doe', 'Doe', NULL, 162.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doe', [Definition] = NULL, [SortOrder] = 162.30 WHERE [Code] = 'doe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgg', 'Doga', NULL, 162.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doga', [Definition] = NULL, [SortOrder] = 162.40 WHERE [Code] = 'dgg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgx', 'Doghoro', NULL, 162.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doghoro', [Definition] = NULL, [SortOrder] = 162.50 WHERE [Code] = 'dgx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dos', 'Dogosé', NULL, 162.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogosé', [Definition] = NULL, [SortOrder] = 162.60 WHERE [Code] = 'dos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgs', 'Dogoso', NULL, 162.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogoso', [Definition] = NULL, [SortOrder] = 162.70 WHERE [Code] = 'dgs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgo', 'Dogri (individual language)', NULL, 162.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogri (individual language)', [Definition] = NULL, [SortOrder] = 162.80 WHERE [Code] = 'dgo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doi', 'Dogri (macrolanguage)', NULL, 162.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogri (macrolanguage)', [Definition] = NULL, [SortOrder] = 162.90 WHERE [Code] = 'doi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgr', 'Dogrib', NULL, 163.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogrib', [Definition] = NULL, [SortOrder] = 163.00 WHERE [Code] = 'dgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbg', 'Dogul Dom Dogon', NULL, 163.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogul Dom Dogon', [Definition] = NULL, [SortOrder] = 163.10 WHERE [Code] = 'dbg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbi', 'Doka', NULL, 163.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doka', [Definition] = NULL, [SortOrder] = 163.20 WHERE [Code] = 'dbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uya', 'Doko-Uyanga', NULL, 163.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doko-Uyanga', [Definition] = NULL, [SortOrder] = 163.30 WHERE [Code] = 'uya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dlg', 'Dolgan', NULL, 163.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dolgan', [Definition] = NULL, [SortOrder] = 163.40 WHERE [Code] = 'dlg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dre', 'Dolpo', NULL, 163.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dolpo', [Definition] = NULL, [SortOrder] = 163.50 WHERE [Code] = 'dre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doa', 'Dom', NULL, 163.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dom', [Definition] = NULL, [SortOrder] = 163.60 WHERE [Code] = 'doa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmk', 'Domaaki', NULL, 163.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Domaaki', [Definition] = NULL, [SortOrder] = 163.70 WHERE [Code] = 'dmk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmt', 'Domari', NULL, 163.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Domari', [Definition] = NULL, [SortOrder] = 163.80 WHERE [Code] = 'rmt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dov', 'Dombe', NULL, 163.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dombe', [Definition] = NULL, [SortOrder] = 163.90 WHERE [Code] = 'dov' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doq', 'Dominican Sign Language', NULL, 164.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dominican Sign Language', [Definition] = NULL, [SortOrder] = 164.00 WHERE [Code] = 'doq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doy', 'Dompo', NULL, 164.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dompo', [Definition] = NULL, [SortOrder] = 164.10 WHERE [Code] = 'doy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dof', 'Domu', NULL, 164.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Domu', [Definition] = NULL, [SortOrder] = 164.20 WHERE [Code] = 'dof' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dev', 'Domung', NULL, 164.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Domung', [Definition] = NULL, [SortOrder] = 164.30 WHERE [Code] = 'dev' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dok', 'Dondo', NULL, 164.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dondo', [Definition] = NULL, [SortOrder] = 164.40 WHERE [Code] = 'dok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doh', 'Dong', NULL, 164.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dong', [Definition] = NULL, [SortOrder] = 164.50 WHERE [Code] = 'doh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doo', 'Dongo', NULL, 164.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dongo', [Definition] = NULL, [SortOrder] = 164.60 WHERE [Code] = 'doo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddd', 'Dongotono', NULL, 164.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dongotono', [Definition] = NULL, [SortOrder] = 164.70 WHERE [Code] = 'ddd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yik', 'Dongshanba Lalo', NULL, 164.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dongshanba Lalo', [Definition] = NULL, [SortOrder] = 164.80 WHERE [Code] = 'yik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sce', 'Dongxiang', NULL, 164.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dongxiang', [Definition] = NULL, [SortOrder] = 164.90 WHERE [Code] = 'sce' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dds', 'Donno So Dogon', NULL, 165.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Donno So Dogon', [Definition] = NULL, [SortOrder] = 165.00 WHERE [Code] = 'dds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dde', 'Doondo', NULL, 165.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doondo', [Definition] = NULL, [SortOrder] = 165.10 WHERE [Code] = 'dde' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dor', 'Dori''o', NULL, 165.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dori''o', [Definition] = NULL, [SortOrder] = 165.20 WHERE [Code] = 'dor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqc', 'Doromu-Koki', NULL, 165.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doromu-Koki', [Definition] = NULL, [SortOrder] = 165.30 WHERE [Code] = 'kqc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doz', 'Dorze', NULL, 165.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dorze', [Definition] = NULL, [SortOrder] = 165.40 WHERE [Code] = 'doz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dol', 'Doso', NULL, 165.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doso', [Definition] = NULL, [SortOrder] = 165.50 WHERE [Code] = 'dol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dty', 'Dotyali', NULL, 165.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dotyali', [Definition] = NULL, [SortOrder] = 165.60 WHERE [Code] = 'dty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tds', 'Doutai', NULL, 165.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doutai', [Definition] = NULL, [SortOrder] = 165.70 WHERE [Code] = 'tds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dow', 'Doyayo', NULL, 165.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doyayo', [Definition] = NULL, [SortOrder] = 165.80 WHERE [Code] = 'dow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drt', 'Drents', NULL, 165.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Drents', [Definition] = NULL, [SortOrder] = 165.90 WHERE [Code] = 'drt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duu', 'Drung', NULL, 166.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Drung', [Definition] = NULL, [SortOrder] = 166.00 WHERE [Code] = 'duu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldb', 'Du~ya', NULL, 166.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Du~ya', [Definition] = NULL, [SortOrder] = 166.10 WHERE [Code] = 'ldb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dua', 'Duala', NULL, 166.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duala', [Definition] = NULL, [SortOrder] = 166.20 WHERE [Code] = 'dua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dup', 'Duano', NULL, 166.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duano', [Definition] = NULL, [SortOrder] = 166.30 WHERE [Code] = 'dup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dva', 'Duau', NULL, 166.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duau', [Definition] = NULL, [SortOrder] = 166.40 WHERE [Code] = 'dva' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dub', 'Dubli', NULL, 166.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dubli', [Definition] = NULL, [SortOrder] = 166.50 WHERE [Code] = 'dub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmu', 'Dubu', NULL, 166.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dubu', [Definition] = NULL, [SortOrder] = 166.60 WHERE [Code] = 'dmu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndu', 'Dugun', NULL, 166.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dugun', [Definition] = NULL, [SortOrder] = 166.70 WHERE [Code] = 'ndu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbm', 'Duguri', NULL, 166.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duguri', [Definition] = NULL, [SortOrder] = 166.80 WHERE [Code] = 'dbm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dme', 'Dugwor', NULL, 166.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dugwor', [Definition] = NULL, [SortOrder] = 166.90 WHERE [Code] = 'dme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbz', 'Duhwa', NULL, 167.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duhwa', [Definition] = NULL, [SortOrder] = 167.00 WHERE [Code] = 'kbz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nke', 'Duke', NULL, 167.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duke', [Definition] = NULL, [SortOrder] = 167.10 WHERE [Code] = 'nke' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbo', 'Dulbu', NULL, 167.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dulbu', [Definition] = NULL, [SortOrder] = 167.20 WHERE [Code] = 'dbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duz', 'Duli-Gey', NULL, 167.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duli-Gey', [Definition] = NULL, [SortOrder] = 167.30 WHERE [Code] = 'duz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dma', 'Duma', NULL, 167.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duma', [Definition] = NULL, [SortOrder] = 167.40 WHERE [Code] = 'dma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duf', 'Dumbea', NULL, 167.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dumbea', [Definition] = NULL, [SortOrder] = 167.50 WHERE [Code] = 'duf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dus', 'Dumi', NULL, 167.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dumi', [Definition] = NULL, [SortOrder] = 167.60 WHERE [Code] = 'dus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmv', 'Dumpas', NULL, 167.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dumpas', [Definition] = NULL, [SortOrder] = 167.70 WHERE [Code] = 'dmv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dui', 'Dumun', NULL, 167.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dumun', [Definition] = NULL, [SortOrder] = 167.80 WHERE [Code] = 'dui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duc', 'Duna', NULL, 167.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duna', [Definition] = NULL, [SortOrder] = 167.90 WHERE [Code] = 'duc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dng', 'Dungan', NULL, 168.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dungan', [Definition] = NULL, [SortOrder] = 168.00 WHERE [Code] = 'dng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raa', 'Dungmali', NULL, 168.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dungmali', [Definition] = NULL, [SortOrder] = 168.10 WHERE [Code] = 'raa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duh', 'Dungra Bhil', NULL, 168.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dungra Bhil', [Definition] = NULL, [SortOrder] = 168.20 WHERE [Code] = 'duh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbv', 'Dungu', NULL, 168.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dungu', [Definition] = NULL, [SortOrder] = 168.30 WHERE [Code] = 'dbv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duo', 'Dupaninan Agta', NULL, 168.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dupaninan Agta', [Definition] = NULL, [SortOrder] = 168.40 WHERE [Code] = 'duo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drq', 'Dura', NULL, 168.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dura', [Definition] = NULL, [SortOrder] = 168.50 WHERE [Code] = 'drq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvp', 'Duri', NULL, 168.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duri', [Definition] = NULL, [SortOrder] = 168.60 WHERE [Code] = 'mvp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbn', 'Duriankere', NULL, 168.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duriankere', [Definition] = NULL, [SortOrder] = 168.70 WHERE [Code] = 'dbn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dug', 'Duruma', NULL, 168.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duruma', [Definition] = NULL, [SortOrder] = 168.80 WHERE [Code] = 'dug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pci', 'Duruwa', NULL, 168.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duruwa', [Definition] = NULL, [SortOrder] = 168.90 WHERE [Code] = 'pci' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsn', 'Dusner', NULL, 169.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dusner', [Definition] = NULL, [SortOrder] = 169.00 WHERE [Code] = 'dsn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dun', 'Dusun Deyah', NULL, 169.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dusun Deyah', [Definition] = NULL, [SortOrder] = 169.10 WHERE [Code] = 'dun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duq', 'Dusun Malang', NULL, 169.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dusun Malang', [Definition] = NULL, [SortOrder] = 169.20 WHERE [Code] = 'duq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duw', 'Dusun Witu', NULL, 169.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dusun Witu', [Definition] = NULL, [SortOrder] = 169.30 WHERE [Code] = 'duw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nld', 'Dutch', NULL, 169.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dutch', [Definition] = NULL, [SortOrder] = 169.40 WHERE [Code] = 'nld' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dse', 'Dutch Sign Language', NULL, 169.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dutch Sign Language', [Definition] = NULL, [SortOrder] = 169.50 WHERE [Code] = 'dse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dws', 'Dutton World Speedwords', NULL, 169.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dutton World Speedwords', [Definition] = NULL, [SortOrder] = 169.60 WHERE [Code] = 'dws' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dux', 'Duungooma', NULL, 169.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duungooma', [Definition] = NULL, [SortOrder] = 169.70 WHERE [Code] = 'dux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dae', 'Duupa', NULL, 169.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duupa', [Definition] = NULL, [SortOrder] = 169.80 WHERE [Code] = 'dae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duv', 'Duvle', NULL, 169.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duvle', [Definition] = NULL, [SortOrder] = 169.90 WHERE [Code] = 'duv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbp', 'Duwai', NULL, 170.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duwai', [Definition] = NULL, [SortOrder] = 170.00 WHERE [Code] = 'dbp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gve', 'Duwet', NULL, 170.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duwet', [Definition] = NULL, [SortOrder] = 170.10 WHERE [Code] = 'gve' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnu', 'Dwang', NULL, 170.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dwang', [Definition] = NULL, [SortOrder] = 170.20 WHERE [Code] = 'nnu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyb', 'Dyaberdyaber', NULL, 170.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyaberdyaber', [Definition] = NULL, [SortOrder] = 170.30 WHERE [Code] = 'dyb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dya', 'Dyan', NULL, 170.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyan', [Definition] = NULL, [SortOrder] = 170.40 WHERE [Code] = 'dya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyn', 'Dyangadi', NULL, 170.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyangadi', [Definition] = NULL, [SortOrder] = 170.50 WHERE [Code] = 'dyn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbl', 'Dyirbal', NULL, 170.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyirbal', [Definition] = NULL, [SortOrder] = 170.60 WHERE [Code] = 'dbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyd', 'Dyugun', NULL, 170.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyugun', [Definition] = NULL, [SortOrder] = 170.70 WHERE [Code] = 'dyd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyu', 'Dyula', NULL, 170.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyula', [Definition] = NULL, [SortOrder] = 170.80 WHERE [Code] = 'dyu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jen', 'Dza', NULL, 170.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dza', [Definition] = NULL, [SortOrder] = 170.90 WHERE [Code] = 'jen' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzl', 'Dzalakha', NULL, 171.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzalakha', [Definition] = NULL, [SortOrder] = 171.00 WHERE [Code] = 'dzl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzn', 'Dzando', NULL, 171.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzando', [Definition] = NULL, [SortOrder] = 171.10 WHERE [Code] = 'dzn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpn', 'Dzao Min', NULL, 171.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzao Min', [Definition] = NULL, [SortOrder] = 171.20 WHERE [Code] = 'bpn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzo', 'Dzongkha', NULL, 171.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzongkha', [Definition] = NULL, [SortOrder] = 171.30 WHERE [Code] = 'dzo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnn', 'Dzùùngoo', NULL, 171.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzùùngoo', [Definition] = NULL, [SortOrder] = 171.40 WHERE [Code] = 'dnn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eee', 'E', NULL, 171.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'E', [Definition] = NULL, [SortOrder] = 171.50 WHERE [Code] = 'eee' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yzg', 'E''ma Buyang', NULL, 171.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'E''ma Buyang', [Definition] = NULL, [SortOrder] = 171.60 WHERE [Code] = 'yzg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbh', 'E''ñapa Woromaipu', NULL, 171.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'E''ñapa Woromaipu', [Definition] = NULL, [SortOrder] = 171.70 WHERE [Code] = 'pbh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtr', 'Early Tripuri', NULL, 171.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Early Tripuri', [Definition] = NULL, [SortOrder] = 171.80 WHERE [Code] = 'xtr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omb', 'East Ambae', NULL, 171.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Ambae', [Definition] = NULL, [SortOrder] = 171.90 WHERE [Code] = 'omb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbe', 'East Berawan', NULL, 172.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Berawan', [Definition] = NULL, [SortOrder] = 172.00 WHERE [Code] = 'zbe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmr', 'East Damar', NULL, 172.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Damar', [Definition] = NULL, [SortOrder] = 172.10 WHERE [Code] = 'dmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fud', 'East Futuna', NULL, 172.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Futuna', [Definition] = NULL, [SortOrder] = 172.20 WHERE [Code] = 'fud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjs', 'East Kewa', NULL, 172.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Kewa', [Definition] = NULL, [SortOrder] = 172.30 WHERE [Code] = 'kjs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lma', 'East Limba', NULL, 172.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Limba', [Definition] = NULL, [SortOrder] = 172.40 WHERE [Code] = 'lma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mky', 'East Makian', NULL, 172.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Makian', [Definition] = NULL, [SortOrder] = 172.50 WHERE [Code] = 'mky' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vme', 'East Masela', NULL, 172.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Masela', [Definition] = NULL, [SortOrder] = 172.60 WHERE [Code] = 'vme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nle', 'East Nyala', NULL, 172.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Nyala', [Definition] = NULL, [SortOrder] = 172.70 WHERE [Code] = 'nle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tre', 'East Tarangan', NULL, 172.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Tarangan', [Definition] = NULL, [SortOrder] = 172.80 WHERE [Code] = 'tre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuy', 'East Yugur', NULL, 172.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Yugur', [Definition] = NULL, [SortOrder] = 172.90 WHERE [Code] = 'yuy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaq', 'Eastern Abnaki', NULL, 173.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Abnaki', [Definition] = NULL, [SortOrder] = 173.00 WHERE [Code] = 'aaq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acp', 'Eastern Acipa', NULL, 173.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Acipa', [Definition] = NULL, [SortOrder] = 173.10 WHERE [Code] = 'acp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qve', 'Eastern Apurímac Quechua', NULL, 173.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Apurímac Quechua', [Definition] = NULL, [SortOrder] = 173.20 WHERE [Code] = 'qve' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aer', 'Eastern Arrernte', NULL, 173.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Arrernte', [Definition] = NULL, [SortOrder] = 173.30 WHERE [Code] = 'aer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgp', 'Eastern Balochi', NULL, 173.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Balochi', [Definition] = NULL, [SortOrder] = 173.40 WHERE [Code] = 'bgp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gui', 'Eastern Bolivian Guaraní', NULL, 173.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Bolivian Guaraní', [Definition] = NULL, [SortOrder] = 173.50 WHERE [Code] = 'gui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebk', 'Eastern Bontok', NULL, 173.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Bontok', [Definition] = NULL, [SortOrder] = 173.60 WHERE [Code] = 'ebk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bru', 'Eastern Bru', NULL, 173.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Bru', [Definition] = NULL, [SortOrder] = 173.70 WHERE [Code] = 'bru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ike') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ike', 'Eastern Canadian Inuktitut', NULL, 173.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Canadian Inuktitut', [Definition] = NULL, [SortOrder] = 173.80 WHERE [Code] = 'ike' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjm', 'Eastern Cham', NULL, 173.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Cham', [Definition] = NULL, [SortOrder] = 173.90 WHERE [Code] = 'cjm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azd', 'Eastern Durango Nahuatl', NULL, 174.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Durango Nahuatl', [Definition] = NULL, [SortOrder] = 174.00 WHERE [Code] = 'azd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avl', 'Eastern Egyptian Bedawi Arabic', NULL, 174.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Egyptian Bedawi Arabic', [Definition] = NULL, [SortOrder] = 174.10 WHERE [Code] = 'avl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frs', 'Eastern Frisian', NULL, 174.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Frisian', [Definition] = NULL, [SortOrder] = 174.20 WHERE [Code] = 'frs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tge', 'Eastern Gorkha Tamang', NULL, 174.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Gorkha Tamang', [Definition] = NULL, [SortOrder] = 174.30 WHERE [Code] = 'tge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cly', 'Eastern Highland Chatino', NULL, 174.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Highland Chatino', [Definition] = NULL, [SortOrder] = 174.40 WHERE [Code] = 'cly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otm', 'Eastern Highland Otomi', NULL, 174.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Highland Otomi', [Definition] = NULL, [SortOrder] = 174.50 WHERE [Code] = 'otm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zeh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zeh', 'Eastern Hongshuihe Zhuang', NULL, 174.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Hongshuihe Zhuang', [Definition] = NULL, [SortOrder] = 174.60 WHERE [Code] = 'zeh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhe', 'Eastern Huasteca Nahuatl', NULL, 174.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 174.70 WHERE [Code] = 'nhe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hme', 'Eastern Huishui Hmong', NULL, 174.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Huishui Hmong', [Definition] = NULL, [SortOrder] = 174.80 WHERE [Code] = 'hme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrb', 'Eastern Karaboro', NULL, 174.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Karaboro', [Definition] = NULL, [SortOrder] = 174.90 WHERE [Code] = 'xrb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktv', 'Eastern Katu', NULL, 175.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Katu', [Definition] = NULL, [SortOrder] = 175.00 WHERE [Code] = 'ktv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eky', 'Eastern Kayah', NULL, 175.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Kayah', [Definition] = NULL, [SortOrder] = 175.10 WHERE [Code] = 'eky' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kee', 'Eastern Keres', NULL, 175.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Keres', [Definition] = NULL, [SortOrder] = 175.20 WHERE [Code] = 'kee' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cek', 'Eastern Khumi Chin', NULL, 175.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Khumi Chin', [Definition] = NULL, [SortOrder] = 175.30 WHERE [Code] = 'cek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqo', 'Eastern Krahn', NULL, 175.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Krahn', [Definition] = NULL, [SortOrder] = 175.40 WHERE [Code] = 'kqo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yit', 'Eastern Lalu', NULL, 175.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Lalu', [Definition] = NULL, [SortOrder] = 175.50 WHERE [Code] = 'yit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwl', 'Eastern Lawa', NULL, 175.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Lawa', [Definition] = NULL, [SortOrder] = 175.60 WHERE [Code] = 'lwl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgp', 'Eastern Magar', NULL, 175.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Magar', [Definition] = NULL, [SortOrder] = 175.70 WHERE [Code] = 'mgp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emk', 'Eastern Maninkakan', NULL, 175.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Maninkakan', [Definition] = NULL, [SortOrder] = 175.80 WHERE [Code] = 'emk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhr', 'Eastern Mari', NULL, 175.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Mari', [Definition] = NULL, [SortOrder] = 175.90 WHERE [Code] = 'mhr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djk', 'Eastern Maroon Creole', NULL, 176.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Maroon Creole', [Definition] = NULL, [SortOrder] = 176.00 WHERE [Code] = 'djk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emg', 'Eastern Meohang', NULL, 176.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Meohang', [Definition] = NULL, [SortOrder] = 176.10 WHERE [Code] = 'emg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emq', 'Eastern Minyag', NULL, 176.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Minyag', [Definition] = NULL, [SortOrder] = 176.20 WHERE [Code] = 'emq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mng', 'Eastern Mnong', NULL, 176.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Mnong', [Definition] = NULL, [SortOrder] = 176.30 WHERE [Code] = 'mng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emu', 'Eastern Muria', NULL, 176.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Muria', [Definition] = NULL, [SortOrder] = 176.40 WHERE [Code] = 'emu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nea', 'Eastern Ngad''a', NULL, 176.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Ngad''a', [Definition] = NULL, [SortOrder] = 176.50 WHERE [Code] = 'nea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nos', 'Eastern Nisu', NULL, 176.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Nisu', [Definition] = NULL, [SortOrder] = 176.60 WHERE [Code] = 'nos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojg', 'Eastern Ojibwa', NULL, 176.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Ojibwa', [Definition] = NULL, [SortOrder] = 176.70 WHERE [Code] = 'ojg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hae', 'Eastern Oromo', NULL, 176.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Oromo', [Definition] = NULL, [SortOrder] = 176.80 WHERE [Code] = 'hae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kif', 'Eastern Parbate Kham', NULL, 176.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Parbate Kham', [Definition] = NULL, [SortOrder] = 176.90 WHERE [Code] = 'kif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pez', 'Eastern Penan', NULL, 177.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Penan', [Definition] = NULL, [SortOrder] = 177.00 WHERE [Code] = 'pez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peb', 'Eastern Pomo', NULL, 177.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Pomo', [Definition] = NULL, [SortOrder] = 177.10 WHERE [Code] = 'peb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmq', 'Eastern Qiandong Miao', NULL, 177.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Qiandong Miao', [Definition] = NULL, [SortOrder] = 177.20 WHERE [Code] = 'hmq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfe', 'Eastern Subanen', NULL, 177.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Subanen', [Definition] = NULL, [SortOrder] = 177.30 WHERE [Code] = 'sfe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taj', 'Eastern Tamang', NULL, 177.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Tamang', [Definition] = NULL, [SortOrder] = 177.40 WHERE [Code] = 'taj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnj', 'Eastern Tawbuid', NULL, 177.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Tawbuid', [Definition] = NULL, [SortOrder] = 177.50 WHERE [Code] = 'bnj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muq', 'Eastern Xiangxi Miao', NULL, 177.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Xiangxi Miao', [Definition] = NULL, [SortOrder] = 177.60 WHERE [Code] = 'muq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbx', 'Eastern Xwla Gbe', NULL, 177.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Xwla Gbe', [Definition] = NULL, [SortOrder] = 177.70 WHERE [Code] = 'gbx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ydd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ydd', 'Eastern Yiddish', NULL, 177.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Yiddish', [Definition] = NULL, [SortOrder] = 177.80 WHERE [Code] = 'ydd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igb', 'Ebira', NULL, 177.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ebira', [Definition] = NULL, [SortOrder] = 177.90 WHERE [Code] = 'igb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xeb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xeb', 'Eblan', NULL, 178.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eblan', [Definition] = NULL, [SortOrder] = 178.00 WHERE [Code] = 'xeb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebr', 'Ebrié', NULL, 178.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ebrié', [Definition] = NULL, [SortOrder] = 178.10 WHERE [Code] = 'ebr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebg', 'Ebughu', NULL, 178.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ebughu', [Definition] = NULL, [SortOrder] = 178.20 WHERE [Code] = 'ebg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ecs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ecs', 'Ecuadorian Sign Language', NULL, 178.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ecuadorian Sign Language', [Definition] = NULL, [SortOrder] = 178.30 WHERE [Code] = 'ecs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbj', 'Ede Cabe', NULL, 178.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ede Cabe', [Definition] = NULL, [SortOrder] = 178.40 WHERE [Code] = 'cbj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ica') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ica', 'Ede Ica', NULL, 178.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ede Ica', [Definition] = NULL, [SortOrder] = 178.50 WHERE [Code] = 'ica' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idd', 'Ede Idaca', NULL, 178.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ede Idaca', [Definition] = NULL, [SortOrder] = 178.60 WHERE [Code] = 'idd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ijj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijj', 'Ede Ije', NULL, 178.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ede Ije', [Definition] = NULL, [SortOrder] = 178.70 WHERE [Code] = 'ijj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awy', 'Edera Awyu', NULL, 178.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Edera Awyu', [Definition] = NULL, [SortOrder] = 178.80 WHERE [Code] = 'awy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etr', 'Edolo', NULL, 178.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Edolo', [Definition] = NULL, [SortOrder] = 178.90 WHERE [Code] = 'etr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdm', 'Edomite', NULL, 179.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Edomite', [Definition] = NULL, [SortOrder] = 179.00 WHERE [Code] = 'xdm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbf', 'Edopi', NULL, 179.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Edopi', [Definition] = NULL, [SortOrder] = 179.10 WHERE [Code] = 'dbf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'efa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('efa', 'Efai', NULL, 179.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Efai', [Definition] = NULL, [SortOrder] = 179.20 WHERE [Code] = 'efa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'efe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('efe', 'Efe', NULL, 179.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Efe', [Definition] = NULL, [SortOrder] = 179.30 WHERE [Code] = 'efe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'efi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('efi', 'Efik', NULL, 179.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Efik', [Definition] = NULL, [SortOrder] = 179.40 WHERE [Code] = 'efi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ofu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ofu', 'Efutop', NULL, 179.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Efutop', [Definition] = NULL, [SortOrder] = 179.50 WHERE [Code] = 'ofu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ega') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ega', 'Ega', NULL, 179.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ega', [Definition] = NULL, [SortOrder] = 179.60 WHERE [Code] = 'ega' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ego') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ego', 'Eggon', NULL, 179.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eggon', [Definition] = NULL, [SortOrder] = 179.70 WHERE [Code] = 'ego' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esl', 'Egypt Sign Language', NULL, 179.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Egypt Sign Language', [Definition] = NULL, [SortOrder] = 179.80 WHERE [Code] = 'esl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'egy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('egy', 'Egyptian (Ancient)', NULL, 179.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Egyptian (Ancient)', [Definition] = NULL, [SortOrder] = 179.90 WHERE [Code] = 'egy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arz', 'Egyptian Arabic', NULL, 180.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Egyptian Arabic', [Definition] = NULL, [SortOrder] = 180.00 WHERE [Code] = 'arz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ehu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ehu', 'Ehueun', NULL, 180.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ehueun', [Definition] = NULL, [SortOrder] = 180.10 WHERE [Code] = 'ehu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eip', 'Eipomek', NULL, 180.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eipomek', [Definition] = NULL, [SortOrder] = 180.20 WHERE [Code] = 'eip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eit', 'Eitiep', NULL, 180.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eitiep', [Definition] = NULL, [SortOrder] = 180.30 WHERE [Code] = 'eit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etu', 'Ejagham', NULL, 180.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ejagham', [Definition] = NULL, [SortOrder] = 180.40 WHERE [Code] = 'etu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eja', 'Ejamat', NULL, 180.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ejamat', [Definition] = NULL, [SortOrder] = 180.50 WHERE [Code] = 'eja' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cey', 'Ekai Chin', NULL, 180.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekai Chin', [Definition] = NULL, [SortOrder] = 180.60 WHERE [Code] = 'cey' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eka', 'Ekajuk', NULL, 180.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekajuk', [Definition] = NULL, [SortOrder] = 180.70 WHERE [Code] = 'eka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekg', 'Ekari', NULL, 180.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekari', [Definition] = NULL, [SortOrder] = 180.80 WHERE [Code] = 'ekg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eki', 'Eki', NULL, 180.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eki', [Definition] = NULL, [SortOrder] = 180.90 WHERE [Code] = 'eki' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eke', 'Ekit', NULL, 181.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekit', [Definition] = NULL, [SortOrder] = 181.00 WHERE [Code] = 'eke' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekp', 'Ekpeye', NULL, 181.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekpeye', [Definition] = NULL, [SortOrder] = 181.10 WHERE [Code] = 'ekp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpp', 'El Alto Zapotec', NULL, 181.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'El Alto Zapotec', [Definition] = NULL, [SortOrder] = 181.20 WHERE [Code] = 'zpp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elh', 'El Hugeirat', NULL, 181.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'El Hugeirat', [Definition] = NULL, [SortOrder] = 181.30 WHERE [Code] = 'elh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elo', 'El Molo', NULL, 181.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'El Molo', [Definition] = NULL, [SortOrder] = 181.40 WHERE [Code] = 'elo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crn', 'El Nayar Cora', NULL, 181.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'El Nayar Cora', [Definition] = NULL, [SortOrder] = 181.50 WHERE [Code] = 'crn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elx', 'Elamite', NULL, 181.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elamite', [Definition] = NULL, [SortOrder] = 181.60 WHERE [Code] = 'elx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elm', 'Eleme', NULL, 181.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eleme', [Definition] = NULL, [SortOrder] = 181.70 WHERE [Code] = 'elm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ele') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ele', 'Elepi', NULL, 181.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elepi', [Definition] = NULL, [SortOrder] = 181.80 WHERE [Code] = 'ele' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ovd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ovd', 'Elfdalian', NULL, 181.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elfdalian', [Definition] = NULL, [SortOrder] = 181.90 WHERE [Code] = 'ovd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekm', 'Elip', NULL, 182.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elip', [Definition] = NULL, [SortOrder] = 182.00 WHERE [Code] = 'ekm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elk', 'Elkei', NULL, 182.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elkei', [Definition] = NULL, [SortOrder] = 182.10 WHERE [Code] = 'elk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zte', 'Elotepec Zapotec', NULL, 182.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elotepec Zapotec', [Definition] = NULL, [SortOrder] = 182.20 WHERE [Code] = 'zte' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afo', 'Eloyi', NULL, 182.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eloyi', [Definition] = NULL, [SortOrder] = 182.30 WHERE [Code] = 'afo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrf', 'Elseng', NULL, 182.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elseng', [Definition] = NULL, [SortOrder] = 182.40 WHERE [Code] = 'mrf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elu', 'Elu', NULL, 182.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elu', [Definition] = NULL, [SortOrder] = 182.50 WHERE [Code] = 'elu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xly', 'Elymian', NULL, 182.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elymian', [Definition] = NULL, [SortOrder] = 182.60 WHERE [Code] = 'xly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmw', 'Emae', NULL, 182.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emae', [Definition] = NULL, [SortOrder] = 182.70 WHERE [Code] = 'mmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ema') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ema', 'Emai-Iuleha-Ora', NULL, 182.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emai-Iuleha-Ora', [Definition] = NULL, [SortOrder] = 182.80 WHERE [Code] = 'ema' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emn', 'Eman', NULL, 182.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eman', [Definition] = NULL, [SortOrder] = 182.90 WHERE [Code] = 'emn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emb', 'Embaloh', NULL, 183.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Embaloh', [Definition] = NULL, [SortOrder] = 183.00 WHERE [Code] = 'emb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdc', 'Emberá-Baudó', NULL, 183.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emberá-Baudó', [Definition] = NULL, [SortOrder] = 183.10 WHERE [Code] = 'bdc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cto', 'Emberá-Catío', NULL, 183.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emberá-Catío', [Definition] = NULL, [SortOrder] = 183.20 WHERE [Code] = 'cto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmi', 'Emberá-Chamí', NULL, 183.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emberá-Chamí', [Definition] = NULL, [SortOrder] = 183.30 WHERE [Code] = 'cmi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdc', 'Emberá-Tadó', NULL, 183.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emberá-Tadó', [Definition] = NULL, [SortOrder] = 183.40 WHERE [Code] = 'tdc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebu', 'Embu', NULL, 183.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Embu', [Definition] = NULL, [SortOrder] = 183.50 WHERE [Code] = 'ebu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eme', 'Emerillon', NULL, 183.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emerillon', [Definition] = NULL, [SortOrder] = 183.60 WHERE [Code] = 'eme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'egl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('egl', 'Emilian', NULL, 183.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emilian', [Definition] = NULL, [SortOrder] = 183.70 WHERE [Code] = 'egl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emw', 'Emplawas', NULL, 183.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emplawas', [Definition] = NULL, [SortOrder] = 183.80 WHERE [Code] = 'emw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enr', 'Emumu', NULL, 183.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emumu', [Definition] = NULL, [SortOrder] = 183.90 WHERE [Code] = 'enr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enc', 'En', NULL, 184.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'En', [Definition] = NULL, [SortOrder] = 184.00 WHERE [Code] = 'enc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unk', 'Enawené-Nawé', NULL, 184.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enawené-Nawé', [Definition] = NULL, [SortOrder] = 184.10 WHERE [Code] = 'unk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'end') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('end', 'Ende', NULL, 184.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ende', [Definition] = NULL, [SortOrder] = 184.20 WHERE [Code] = 'end' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enq', 'Enga', NULL, 184.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enga', [Definition] = NULL, [SortOrder] = 184.30 WHERE [Code] = 'enq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngr', 'Engdewu', NULL, 184.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Engdewu', [Definition] = NULL, [SortOrder] = 184.40 WHERE [Code] = 'ngr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enn', 'Engenni', NULL, 184.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Engenni', [Definition] = NULL, [SortOrder] = 184.50 WHERE [Code] = 'enn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eno', 'Enggano', NULL, 184.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enggano', [Definition] = NULL, [SortOrder] = 184.60 WHERE [Code] = 'eno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eng', 'English', NULL, 184.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'English', [Definition] = NULL, [SortOrder] = 184.70 WHERE [Code] = 'eng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enl', 'Enlhet', NULL, 184.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enlhet', [Definition] = NULL, [SortOrder] = 184.80 WHERE [Code] = 'enl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptt', 'Enrekang', NULL, 184.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enrekang', [Definition] = NULL, [SortOrder] = 184.90 WHERE [Code] = 'ptt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enu', 'Enu', NULL, 185.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enu', [Definition] = NULL, [SortOrder] = 185.00 WHERE [Code] = 'enu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enw', 'Enwan (Akwa Ibom State)', NULL, 185.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enwan (Akwa Ibom State)', [Definition] = NULL, [SortOrder] = 185.10 WHERE [Code] = 'enw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'env') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('env', 'Enwan (Edo State)', NULL, 185.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enwan (Edo State)', [Definition] = NULL, [SortOrder] = 185.20 WHERE [Code] = 'env' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enx', 'Enxet', NULL, 185.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enxet', [Definition] = NULL, [SortOrder] = 185.30 WHERE [Code] = 'enx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gey', 'Enya', NULL, 185.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enya', [Definition] = NULL, [SortOrder] = 185.40 WHERE [Code] = 'gey' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sja', 'Epena', NULL, 185.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Epena', [Definition] = NULL, [SortOrder] = 185.50 WHERE [Code] = 'sja' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xep', 'Epi-Olmec', NULL, 185.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Epi-Olmec', [Definition] = NULL, [SortOrder] = 185.60 WHERE [Code] = 'xep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'epi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('epi', 'Epie', NULL, 185.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Epie', [Definition] = NULL, [SortOrder] = 185.70 WHERE [Code] = 'epi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emy', 'Epigraphic Mayan', NULL, 185.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Epigraphic Mayan', [Definition] = NULL, [SortOrder] = 185.80 WHERE [Code] = 'emy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'era') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('era', 'Eravallan', NULL, 185.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eravallan', [Definition] = NULL, [SortOrder] = 185.90 WHERE [Code] = 'era' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjy', 'Erave', NULL, 186.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erave', [Definition] = NULL, [SortOrder] = 186.00 WHERE [Code] = 'kjy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twp', 'Ere', NULL, 186.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ere', [Definition] = NULL, [SortOrder] = 186.10 WHERE [Code] = 'twp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ert') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ert', 'Eritai', NULL, 186.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eritai', [Definition] = NULL, [SortOrder] = 186.20 WHERE [Code] = 'ert' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'erw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('erw', 'Erokwanas', NULL, 186.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erokwanas', [Definition] = NULL, [SortOrder] = 186.30 WHERE [Code] = 'erw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'err') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('err', 'Erre', NULL, 186.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erre', [Definition] = NULL, [SortOrder] = 186.40 WHERE [Code] = 'err' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emx', 'Erromintxela', NULL, 186.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erromintxela', [Definition] = NULL, [SortOrder] = 186.50 WHERE [Code] = 'emx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ers') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ers', 'Ersu', NULL, 186.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ersu', [Definition] = NULL, [SortOrder] = 186.60 WHERE [Code] = 'ers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'erh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('erh', 'Eruwa', NULL, 186.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eruwa', [Definition] = NULL, [SortOrder] = 186.70 WHERE [Code] = 'erh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myv', 'Erzya', NULL, 186.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erzya', [Definition] = NULL, [SortOrder] = 186.80 WHERE [Code] = 'myv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ish') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ish', 'Esan', NULL, 186.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esan', [Definition] = NULL, [SortOrder] = 186.90 WHERE [Code] = 'ish' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcq', 'Ese', NULL, 187.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ese', [Definition] = NULL, [SortOrder] = 187.00 WHERE [Code] = 'mcq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ese') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ese', 'Ese Ejja', NULL, 187.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ese Ejja', [Definition] = NULL, [SortOrder] = 187.10 WHERE [Code] = 'ese' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esh', 'Eshtehardi', NULL, 187.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eshtehardi', [Definition] = NULL, [SortOrder] = 187.20 WHERE [Code] = 'esh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ags') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ags', 'Esimbi', NULL, 187.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esimbi', [Definition] = NULL, [SortOrder] = 187.30 WHERE [Code] = 'ags' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esy', 'Eskayan', NULL, 187.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eskayan', [Definition] = NULL, [SortOrder] = 187.40 WHERE [Code] = 'esy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'epo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('epo', 'Esperanto', NULL, 187.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esperanto', [Definition] = NULL, [SortOrder] = 187.50 WHERE [Code] = 'epo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esq', 'Esselen', NULL, 187.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esselen', [Definition] = NULL, [SortOrder] = 187.60 WHERE [Code] = 'esq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ots') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ots', 'Estado de México Otomi', NULL, 187.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Estado de México Otomi', [Definition] = NULL, [SortOrder] = 187.70 WHERE [Code] = 'ots' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'est') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('est', 'Estonian', NULL, 187.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Estonian', [Definition] = NULL, [SortOrder] = 187.80 WHERE [Code] = 'est' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eso', 'Estonian Sign Language', NULL, 187.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Estonian Sign Language', [Definition] = NULL, [SortOrder] = 187.90 WHERE [Code] = 'eso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esm', 'Esuma', NULL, 188.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esuma', [Definition] = NULL, [SortOrder] = 188.00 WHERE [Code] = 'esm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etc', 'Etchemin', NULL, 188.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etchemin', [Definition] = NULL, [SortOrder] = 188.10 WHERE [Code] = 'etc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etb', 'Etebi', NULL, 188.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etebi', [Definition] = NULL, [SortOrder] = 188.20 WHERE [Code] = 'etb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etx', 'Eten', NULL, 188.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eten', [Definition] = NULL, [SortOrder] = 188.30 WHERE [Code] = 'etx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ecr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ecr', 'Eteocretan', NULL, 188.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eteocretan', [Definition] = NULL, [SortOrder] = 188.40 WHERE [Code] = 'ecr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ecy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ecy', 'Eteocypriot', NULL, 188.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eteocypriot', [Definition] = NULL, [SortOrder] = 188.50 WHERE [Code] = 'ecy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eth', 'Ethiopian Sign Language', NULL, 188.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ethiopian Sign Language', [Definition] = NULL, [SortOrder] = 188.60 WHERE [Code] = 'eth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ich') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ich', 'Etkywan', NULL, 188.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etkywan', [Definition] = NULL, [SortOrder] = 188.70 WHERE [Code] = 'ich' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eto', 'Eton (Cameroon)', NULL, 188.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eton (Cameroon)', [Definition] = NULL, [SortOrder] = 188.80 WHERE [Code] = 'eto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etn', 'Eton (Vanuatu)', NULL, 188.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eton (Vanuatu)', [Definition] = NULL, [SortOrder] = 188.90 WHERE [Code] = 'etn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ett') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ett', 'Etruscan', NULL, 189.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etruscan', [Definition] = NULL, [SortOrder] = 189.00 WHERE [Code] = 'ett' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'utr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('utr', 'Etulo', NULL, 189.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etulo', [Definition] = NULL, [SortOrder] = 189.10 WHERE [Code] = 'utr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzz', 'Evant', NULL, 189.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Evant', [Definition] = NULL, [SortOrder] = 189.20 WHERE [Code] = 'bzz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eve', 'Even', NULL, 189.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Even', [Definition] = NULL, [SortOrder] = 189.30 WHERE [Code] = 'eve' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'evn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('evn', 'Evenki', NULL, 189.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Evenki', [Definition] = NULL, [SortOrder] = 189.40 WHERE [Code] = 'evn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gev', 'Eviya', NULL, 189.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eviya', [Definition] = NULL, [SortOrder] = 189.50 WHERE [Code] = 'gev' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nou', 'Ewage-Notu', NULL, 189.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ewage-Notu', [Definition] = NULL, [SortOrder] = 189.60 WHERE [Code] = 'nou' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ewe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ewe', 'Ewe', NULL, 189.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ewe', [Definition] = NULL, [SortOrder] = 189.70 WHERE [Code] = 'ewe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ewo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ewo', 'Ewondo', NULL, 189.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ewondo', [Definition] = NULL, [SortOrder] = 189.80 WHERE [Code] = 'ewo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ext') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ext', 'Extremaduran', NULL, 189.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Extremaduran', [Definition] = NULL, [SortOrder] = 189.90 WHERE [Code] = 'ext' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eya', 'Eyak', NULL, 190.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eyak', [Definition] = NULL, [SortOrder] = 190.00 WHERE [Code] = 'eya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eza', 'Ezaa', NULL, 190.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ezaa', [Definition] = NULL, [SortOrder] = 190.10 WHERE [Code] = 'eza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fab', 'Fa D''ambu', NULL, 190.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fa D''ambu', [Definition] = NULL, [SortOrder] = 190.20 WHERE [Code] = 'fab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'faf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('faf', 'Fagani', NULL, 190.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fagani', [Definition] = NULL, [SortOrder] = 190.30 WHERE [Code] = 'faf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fif', 'Faifi', NULL, 190.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faifi', [Definition] = NULL, [SortOrder] = 190.40 WHERE [Code] = 'fif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azt', 'Faire Atta', NULL, 190.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faire Atta', [Definition] = NULL, [SortOrder] = 190.50 WHERE [Code] = 'azt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'faj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('faj', 'Faita', NULL, 190.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faita', [Definition] = NULL, [SortOrder] = 190.60 WHERE [Code] = 'faj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fai', 'Faiwol', NULL, 190.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faiwol', [Definition] = NULL, [SortOrder] = 190.70 WHERE [Code] = 'fai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fax', 'Fala', NULL, 190.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fala', [Definition] = NULL, [SortOrder] = 190.80 WHERE [Code] = 'fax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cfm', 'Falam Chin', NULL, 190.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Falam Chin', [Definition] = NULL, [SortOrder] = 190.90 WHERE [Code] = 'cfm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fli', 'Fali', NULL, 191.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fali', [Definition] = NULL, [SortOrder] = 191.00 WHERE [Code] = 'fli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xfa', 'Faliscan', NULL, 191.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faliscan', [Definition] = NULL, [SortOrder] = 191.10 WHERE [Code] = 'xfa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fam', 'Fam', NULL, 191.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fam', [Definition] = NULL, [SortOrder] = 191.20 WHERE [Code] = 'fam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fng', 'Fanagalo', NULL, 191.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fanagalo', [Definition] = NULL, [SortOrder] = 191.30 WHERE [Code] = 'fng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjp', 'Fanamaket', NULL, 191.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fanamaket', [Definition] = NULL, [SortOrder] = 191.40 WHERE [Code] = 'bjp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fnb', 'Fanbak', NULL, 191.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fanbak', [Definition] = NULL, [SortOrder] = 191.50 WHERE [Code] = 'fnb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fak', 'Fang (Cameroon)', NULL, 191.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fang (Cameroon)', [Definition] = NULL, [SortOrder] = 191.60 WHERE [Code] = 'fak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fan', 'Fang (Equatorial Guinea)', NULL, 191.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fang (Equatorial Guinea)', [Definition] = NULL, [SortOrder] = 191.70 WHERE [Code] = 'fan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fni', 'Fania', NULL, 191.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fania', [Definition] = NULL, [SortOrder] = 191.80 WHERE [Code] = 'fni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fat', 'Fanti', NULL, 191.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fanti', [Definition] = NULL, [SortOrder] = 191.90 WHERE [Code] = 'fat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fmu', 'Far Western Muria', NULL, 192.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Far Western Muria', [Definition] = NULL, [SortOrder] = 192.00 WHERE [Code] = 'fmu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gur', 'Farefare', NULL, 192.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Farefare', [Definition] = NULL, [SortOrder] = 192.10 WHERE [Code] = 'gur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fao', 'Faroese', NULL, 192.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faroese', [Definition] = NULL, [SortOrder] = 192.20 WHERE [Code] = 'fao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fqs', 'Fas', NULL, 192.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fas', [Definition] = NULL, [SortOrder] = 192.30 WHERE [Code] = 'fqs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'faa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('faa', 'Fasu', NULL, 192.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fasu', [Definition] = NULL, [SortOrder] = 192.40 WHERE [Code] = 'faa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'far') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('far', 'Fataleka', NULL, 192.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fataleka', [Definition] = NULL, [SortOrder] = 192.50 WHERE [Code] = 'far' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddg', 'Fataluku', NULL, 192.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fataluku', [Definition] = NULL, [SortOrder] = 192.60 WHERE [Code] = 'ddg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fau', 'Fayu', NULL, 192.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fayu', [Definition] = NULL, [SortOrder] = 192.70 WHERE [Code] = 'fau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fmp', 'Fe''fe''', NULL, 192.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fe''fe''', [Definition] = NULL, [SortOrder] = 192.80 WHERE [Code] = 'fmp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agl', 'Fembe', NULL, 192.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fembe', [Definition] = NULL, [SortOrder] = 192.90 WHERE [Code] = 'agl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fpe', 'Fernando Po Creole English', NULL, 193.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fernando Po Creole English', [Definition] = NULL, [SortOrder] = 193.00 WHERE [Code] = 'fpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fer', 'Feroge', NULL, 193.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Feroge', [Definition] = NULL, [SortOrder] = 193.10 WHERE [Code] = 'fer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hif', 'Fiji Hindi', NULL, 193.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fiji Hindi', [Definition] = NULL, [SortOrder] = 193.20 WHERE [Code] = 'hif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fij', 'Fijian', NULL, 193.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fijian', [Definition] = NULL, [SortOrder] = 193.30 WHERE [Code] = 'fij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fil', 'Filipino', NULL, 193.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Filipino', [Definition] = NULL, [SortOrder] = 193.40 WHERE [Code] = 'fil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlp', 'Filomena Mata-Coahuitlán Totonac', NULL, 193.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Filomena Mata-Coahuitlán Totonac', [Definition] = NULL, [SortOrder] = 193.50 WHERE [Code] = 'tlp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fss', 'Finland-Swedish Sign Language', NULL, 193.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Finland-Swedish Sign Language', [Definition] = NULL, [SortOrder] = 193.60 WHERE [Code] = 'fss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fin', 'Finnish', NULL, 193.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Finnish', [Definition] = NULL, [SortOrder] = 193.70 WHERE [Code] = 'fin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fse', 'Finnish Sign Language', NULL, 193.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Finnish Sign Language', [Definition] = NULL, [SortOrder] = 193.80 WHERE [Code] = 'fse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fag', 'Finongan', NULL, 193.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Finongan', [Definition] = NULL, [SortOrder] = 193.90 WHERE [Code] = 'fag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fip', 'Fipa', NULL, 194.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fipa', [Definition] = NULL, [SortOrder] = 194.00 WHERE [Code] = 'fip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fir', 'Firan', NULL, 194.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Firan', [Definition] = NULL, [SortOrder] = 194.10 WHERE [Code] = 'fir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fiw', 'Fiwaga', NULL, 194.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fiwaga', [Definition] = NULL, [SortOrder] = 194.20 WHERE [Code] = 'fiw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fly', 'Flaaitaal', NULL, 194.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Flaaitaal', [Definition] = NULL, [SortOrder] = 194.30 WHERE [Code] = 'fly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fln', 'Flinders Island', NULL, 194.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Flinders Island', [Definition] = NULL, [SortOrder] = 194.40 WHERE [Code] = 'fln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'flh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('flh', 'Foau', NULL, 194.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foau', [Definition] = NULL, [SortOrder] = 194.50 WHERE [Code] = 'flh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'foi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('foi', 'Foi', NULL, 194.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foi', [Definition] = NULL, [SortOrder] = 194.60 WHERE [Code] = 'foi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ffi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ffi', 'Foia Foia', NULL, 194.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foia Foia', [Definition] = NULL, [SortOrder] = 194.70 WHERE [Code] = 'ffi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppo', 'Folopa', NULL, 194.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Folopa', [Definition] = NULL, [SortOrder] = 194.80 WHERE [Code] = 'ppo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fom', 'Foma', NULL, 194.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foma', [Definition] = NULL, [SortOrder] = 194.90 WHERE [Code] = 'fom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fon', 'Fon', NULL, 195.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fon', [Definition] = NULL, [SortOrder] = 195.00 WHERE [Code] = 'fon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fgr', 'Fongoro', NULL, 195.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fongoro', [Definition] = NULL, [SortOrder] = 195.10 WHERE [Code] = 'fgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fod', 'Foodo', NULL, 195.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foodo', [Definition] = NULL, [SortOrder] = 195.20 WHERE [Code] = 'fod' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frq', 'Forak', NULL, 195.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Forak', [Definition] = NULL, [SortOrder] = 195.30 WHERE [Code] = 'frq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frd', 'Fordata', NULL, 195.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fordata', [Definition] = NULL, [SortOrder] = 195.40 WHERE [Code] = 'frd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'for') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('for', 'Fore', NULL, 195.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fore', [Definition] = NULL, [SortOrder] = 195.50 WHERE [Code] = 'for' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enf', 'Forest Enets', NULL, 195.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Forest Enets', [Definition] = NULL, [SortOrder] = 195.60 WHERE [Code] = 'enf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frt', 'Fortsenal', NULL, 195.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fortsenal', [Definition] = NULL, [SortOrder] = 195.70 WHERE [Code] = 'frt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zos', 'Francisco León Zoque', NULL, 195.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Francisco León Zoque', [Definition] = NULL, [SortOrder] = 195.80 WHERE [Code] = 'zos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frk', 'Frankish', NULL, 195.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Frankish', [Definition] = NULL, [SortOrder] = 195.90 WHERE [Code] = 'frk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fra', 'French', NULL, 196.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'French', [Definition] = NULL, [SortOrder] = 196.00 WHERE [Code] = 'fra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fsl', 'French Sign Language', NULL, 196.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'French Sign Language', [Definition] = NULL, [SortOrder] = 196.10 WHERE [Code] = 'fsl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fur', 'Friulian', NULL, 196.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Friulian', [Definition] = NULL, [SortOrder] = 196.20 WHERE [Code] = 'fur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ful') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ful', 'Fulah', NULL, 196.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fulah', [Definition] = NULL, [SortOrder] = 196.30 WHERE [Code] = 'ful' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'flr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('flr', 'Fuliiru', NULL, 196.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fuliiru', [Definition] = NULL, [SortOrder] = 196.40 WHERE [Code] = 'flr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fun', 'Fulniô', NULL, 196.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fulniô', [Definition] = NULL, [SortOrder] = 196.50 WHERE [Code] = 'fun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fum', 'Fum', NULL, 196.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fum', [Definition] = NULL, [SortOrder] = 196.60 WHERE [Code] = 'fum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ula') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ula', 'Fungwa', NULL, 196.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fungwa', [Definition] = NULL, [SortOrder] = 196.70 WHERE [Code] = 'ula' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fvr', 'Fur', NULL, 196.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fur', [Definition] = NULL, [SortOrder] = 196.80 WHERE [Code] = 'fvr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuu', 'Furu', NULL, 196.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Furu', [Definition] = NULL, [SortOrder] = 196.90 WHERE [Code] = 'fuu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fut', 'Futuna-Aniwa', NULL, 197.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Futuna-Aniwa', [Definition] = NULL, [SortOrder] = 197.00 WHERE [Code] = 'fut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuy', 'Fuyug', NULL, 197.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fuyug', [Definition] = NULL, [SortOrder] = 197.10 WHERE [Code] = 'fuy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fwa', 'Fwâi', NULL, 197.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fwâi', [Definition] = NULL, [SortOrder] = 197.20 WHERE [Code] = 'fwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fwe', 'Fwe', NULL, 197.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fwe', [Definition] = NULL, [SortOrder] = 197.30 WHERE [Code] = 'fwe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pym', 'Fyam', NULL, 197.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fyam', [Definition] = NULL, [SortOrder] = 197.40 WHERE [Code] = 'pym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fie', 'Fyer', NULL, 197.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fyer', [Definition] = NULL, [SortOrder] = 197.50 WHERE [Code] = 'fie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaa', 'Ga', NULL, 197.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ga', [Definition] = NULL, [SortOrder] = 197.60 WHERE [Code] = 'gaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqa', 'Ga''anda', NULL, 197.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ga''anda', [Definition] = NULL, [SortOrder] = 197.70 WHERE [Code] = 'gqa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdg', 'Ga''dang', NULL, 197.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ga''dang', [Definition] = NULL, [SortOrder] = 197.80 WHERE [Code] = 'gdg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttb', 'Gaa', NULL, 197.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaa', [Definition] = NULL, [SortOrder] = 197.90 WHERE [Code] = 'ttb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbi', 'Gaam', NULL, 198.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaam', [Definition] = NULL, [SortOrder] = 198.00 WHERE [Code] = 'tbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbw', 'Gabi-Gabi', NULL, 198.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gabi-Gabi', [Definition] = NULL, [SortOrder] = 198.10 WHERE [Code] = 'gbw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gie', 'Gabogbo', NULL, 198.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gabogbo', [Definition] = NULL, [SortOrder] = 198.20 WHERE [Code] = 'gie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gab', 'Gabri', NULL, 198.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gabri', [Definition] = NULL, [SortOrder] = 198.30 WHERE [Code] = 'gab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgf', 'Gabrielino-Fernandeño', NULL, 198.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gabrielino-Fernandeño', [Definition] = NULL, [SortOrder] = 198.40 WHERE [Code] = 'xgf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdk', 'Gadang', NULL, 198.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gadang', [Definition] = NULL, [SortOrder] = 198.50 WHERE [Code] = 'gdk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gad', 'Gaddang', NULL, 198.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaddang', [Definition] = NULL, [SortOrder] = 198.60 WHERE [Code] = 'gad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbk', 'Gaddi', NULL, 198.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaddi', [Definition] = NULL, [SortOrder] = 198.70 WHERE [Code] = 'gbk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ged') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ged', 'Gade', NULL, 198.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gade', [Definition] = NULL, [SortOrder] = 198.80 WHERE [Code] = 'ged' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gda', 'Gade Lohar', NULL, 198.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gade Lohar', [Definition] = NULL, [SortOrder] = 198.90 WHERE [Code] = 'gda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdh', 'Gadjerawang', NULL, 199.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gadjerawang', [Definition] = NULL, [SortOrder] = 199.00 WHERE [Code] = 'gdh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaj', 'Gadsup', NULL, 199.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gadsup', [Definition] = NULL, [SortOrder] = 199.10 WHERE [Code] = 'gaj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gft', 'Gafat', NULL, 199.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gafat', [Definition] = NULL, [SortOrder] = 199.20 WHERE [Code] = 'gft' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbu', 'Gagadu', NULL, 199.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gagadu', [Definition] = NULL, [SortOrder] = 199.30 WHERE [Code] = 'gbu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gag', 'Gagauz', NULL, 199.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gagauz', [Definition] = NULL, [SortOrder] = 199.40 WHERE [Code] = 'gag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btg', 'Gagnoa Bété', NULL, 199.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gagnoa Bété', [Definition] = NULL, [SortOrder] = 199.50 WHERE [Code] = 'btg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggu', 'Gagu', NULL, 199.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gagu', [Definition] = NULL, [SortOrder] = 199.60 WHERE [Code] = 'ggu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfu', 'Gahri', NULL, 199.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gahri', [Definition] = NULL, [SortOrder] = 199.70 WHERE [Code] = 'bfu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbf', 'Gaikundi', NULL, 199.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaikundi', [Definition] = NULL, [SortOrder] = 199.80 WHERE [Code] = 'gbf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gic', 'Gail', NULL, 199.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gail', [Definition] = NULL, [SortOrder] = 199.90 WHERE [Code] = 'gic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcn', 'Gaina', NULL, 200.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaina', [Definition] = NULL, [SortOrder] = 200.00 WHERE [Code] = 'gcn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gap', 'Gal', NULL, 200.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gal', [Definition] = NULL, [SortOrder] = 200.10 WHERE [Code] = 'gap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glo', 'Galambu', NULL, 200.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galambu', [Definition] = NULL, [SortOrder] = 200.20 WHERE [Code] = 'glo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xga', 'Galatian', NULL, 200.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galatian', [Definition] = NULL, [SortOrder] = 200.30 WHERE [Code] = 'xga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbi', 'Galela', NULL, 200.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galela', [Definition] = NULL, [SortOrder] = 200.40 WHERE [Code] = 'gbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gar', 'Galeya', NULL, 200.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galeya', [Definition] = NULL, [SortOrder] = 200.50 WHERE [Code] = 'gar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'car') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('car', 'Galibi Carib', NULL, 200.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galibi Carib', [Definition] = NULL, [SortOrder] = 200.60 WHERE [Code] = 'car' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gce', 'Galice', NULL, 200.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galice', [Definition] = NULL, [SortOrder] = 200.70 WHERE [Code] = 'gce' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glg', 'Galician', NULL, 200.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galician', [Definition] = NULL, [SortOrder] = 200.80 WHERE [Code] = 'glg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgl', 'Galindan', NULL, 200.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galindan', [Definition] = NULL, [SortOrder] = 200.90 WHERE [Code] = 'xgl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdn', 'Gallurese Sardinian', NULL, 201.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gallurese Sardinian', [Definition] = NULL, [SortOrder] = 201.00 WHERE [Code] = 'sdn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adl', 'Galo', NULL, 201.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galo', [Definition] = NULL, [SortOrder] = 201.10 WHERE [Code] = 'adl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gal', 'Galolen', NULL, 201.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galolen', [Definition] = NULL, [SortOrder] = 201.20 WHERE [Code] = 'gal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgj', 'Gamale Kham', NULL, 201.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamale Kham', [Definition] = NULL, [SortOrder] = 201.30 WHERE [Code] = 'kgj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gma', 'Gambera', NULL, 201.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gambera', [Definition] = NULL, [SortOrder] = 201.40 WHERE [Code] = 'gma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wof', 'Gambian Wolof', NULL, 201.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gambian Wolof', [Definition] = NULL, [SortOrder] = 201.50 WHERE [Code] = 'wof' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kld', 'Gamilaraay', NULL, 201.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamilaraay', [Definition] = NULL, [SortOrder] = 201.60 WHERE [Code] = 'kld' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbl', 'Gamit', NULL, 201.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamit', [Definition] = NULL, [SortOrder] = 201.70 WHERE [Code] = 'gbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gak', 'Gamkonora', NULL, 201.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamkonora', [Definition] = NULL, [SortOrder] = 201.80 WHERE [Code] = 'gak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmv', 'Gamo', NULL, 201.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamo', [Definition] = NULL, [SortOrder] = 201.90 WHERE [Code] = 'gmv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bte', 'Gamo-Ningi', NULL, 202.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamo-Ningi', [Definition] = NULL, [SortOrder] = 202.00 WHERE [Code] = 'bte' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gan', 'Gan Chinese', NULL, 202.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gan Chinese', [Definition] = NULL, [SortOrder] = 202.10 WHERE [Code] = 'gan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnq', 'Gana', NULL, 202.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gana', [Definition] = NULL, [SortOrder] = 202.20 WHERE [Code] = 'gnq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gne', 'Ganang', NULL, 202.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganang', [Definition] = NULL, [SortOrder] = 202.30 WHERE [Code] = 'gne' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lug', 'Ganda', NULL, 202.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganda', [Definition] = NULL, [SortOrder] = 202.40 WHERE [Code] = 'lug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgd', 'Gandhari', NULL, 202.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gandhari', [Definition] = NULL, [SortOrder] = 202.50 WHERE [Code] = 'pgd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gzn', 'Gane', NULL, 202.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gane', [Definition] = NULL, [SortOrder] = 202.60 WHERE [Code] = 'gzn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcd', 'Ganggalida', NULL, 202.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganggalida', [Definition] = NULL, [SortOrder] = 202.70 WHERE [Code] = 'gcd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggl', 'Ganglau', NULL, 202.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganglau', [Definition] = NULL, [SortOrder] = 202.80 WHERE [Code] = 'ggl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnb', 'Gangte', NULL, 202.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gangte', [Definition] = NULL, [SortOrder] = 202.90 WHERE [Code] = 'gnb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnl', 'Gangulu', NULL, 203.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gangulu', [Definition] = NULL, [SortOrder] = 203.00 WHERE [Code] = 'gnl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gao', 'Gants', NULL, 203.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gants', [Definition] = NULL, [SortOrder] = 203.10 WHERE [Code] = 'gao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gza', 'Ganza', NULL, 203.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganza', [Definition] = NULL, [SortOrder] = 203.20 WHERE [Code] = 'gza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnz', 'Ganzi', NULL, 203.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganzi', [Definition] = NULL, [SortOrder] = 203.30 WHERE [Code] = 'gnz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gga', 'Gao', NULL, 203.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gao', [Definition] = NULL, [SortOrder] = 203.40 WHERE [Code] = 'gga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwg', 'Gapapaiwa', NULL, 203.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gapapaiwa', [Definition] = NULL, [SortOrder] = 203.50 WHERE [Code] = 'pwg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbm', 'Garhwali', NULL, 203.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garhwali', [Definition] = NULL, [SortOrder] = 203.60 WHERE [Code] = 'gbm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cab', 'Garifuna', NULL, 203.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garifuna', [Definition] = NULL, [SortOrder] = 203.70 WHERE [Code] = 'cab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilg', 'Garig-Ilgar', NULL, 203.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garig-Ilgar', [Definition] = NULL, [SortOrder] = 203.80 WHERE [Code] = 'ilg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgi', 'Garingbal', NULL, 203.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garingbal', [Definition] = NULL, [SortOrder] = 203.90 WHERE [Code] = 'xgi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gll', 'Garlali', NULL, 204.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garlali', [Definition] = NULL, [SortOrder] = 204.00 WHERE [Code] = 'gll' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grt', 'Garo', NULL, 204.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garo', [Definition] = NULL, [SortOrder] = 204.10 WHERE [Code] = 'grt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gex', 'Garre', NULL, 204.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garre', [Definition] = NULL, [SortOrder] = 204.20 WHERE [Code] = 'gex' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrk', 'Garrwa', NULL, 204.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garrwa', [Definition] = NULL, [SortOrder] = 204.30 WHERE [Code] = 'wrk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyb', 'Garus', NULL, 204.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garus', [Definition] = NULL, [SortOrder] = 204.40 WHERE [Code] = 'gyb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgr', 'Garza', NULL, 204.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garza', [Definition] = NULL, [SortOrder] = 204.50 WHERE [Code] = 'xgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaq', 'Gata''', NULL, 204.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gata''', [Definition] = NULL, [SortOrder] = 204.60 WHERE [Code] = 'gaq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmc', 'Gavak', NULL, 204.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gavak', [Definition] = NULL, [SortOrder] = 204.70 WHERE [Code] = 'dmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gou', 'Gavar', NULL, 204.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gavar', [Definition] = NULL, [SortOrder] = 204.80 WHERE [Code] = 'gou' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvo', 'Gavião Do Jiparaná', NULL, 204.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gavião Do Jiparaná', [Definition] = NULL, [SortOrder] = 204.90 WHERE [Code] = 'gvo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwt', 'Gawar-Bati', NULL, 205.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gawar-Bati', [Definition] = NULL, [SortOrder] = 205.00 WHERE [Code] = 'gwt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwc', 'Gawri', NULL, 205.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gawri', [Definition] = NULL, [SortOrder] = 205.10 WHERE [Code] = 'gwc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwd', 'Gawwada', NULL, 205.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gawwada', [Definition] = NULL, [SortOrder] = 205.20 WHERE [Code] = 'gwd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyl', 'Gayil', NULL, 205.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gayil', [Definition] = NULL, [SortOrder] = 205.30 WHERE [Code] = 'gyl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gay', 'Gayo', NULL, 205.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gayo', [Definition] = NULL, [SortOrder] = 205.40 WHERE [Code] = 'gay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gzi', 'Gazi', NULL, 205.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gazi', [Definition] = NULL, [SortOrder] = 205.50 WHERE [Code] = 'gzi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbr', 'Gbagyi', NULL, 205.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbagyi', [Definition] = NULL, [SortOrder] = 205.60 WHERE [Code] = 'gbr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbv', 'Gbanu', NULL, 205.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbanu', [Definition] = NULL, [SortOrder] = 205.70 WHERE [Code] = 'gbv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbg', 'Gbanziri', NULL, 205.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbanziri', [Definition] = NULL, [SortOrder] = 205.80 WHERE [Code] = 'gbg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gby', 'Gbari', NULL, 205.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbari', [Definition] = NULL, [SortOrder] = 205.90 WHERE [Code] = 'gby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gba', 'Gbaya (Central African Republic)', NULL, 206.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya (Central African Republic)', [Definition] = NULL, [SortOrder] = 206.00 WHERE [Code] = 'gba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krs', 'Gbaya (Sudan)', NULL, 206.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya (Sudan)', [Definition] = NULL, [SortOrder] = 206.10 WHERE [Code] = 'krs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbp', 'Gbaya-Bossangoa', NULL, 206.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya-Bossangoa', [Definition] = NULL, [SortOrder] = 206.20 WHERE [Code] = 'gbp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbq', 'Gbaya-Bozoum', NULL, 206.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya-Bozoum', [Definition] = NULL, [SortOrder] = 206.30 WHERE [Code] = 'gbq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmm', 'Gbaya-Mbodomo', NULL, 206.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya-Mbodomo', [Definition] = NULL, [SortOrder] = 206.40 WHERE [Code] = 'gmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyg', 'Gbayi', NULL, 206.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbayi', [Definition] = NULL, [SortOrder] = 206.50 WHERE [Code] = 'gyg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbs', 'Gbesi Gbe', NULL, 206.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbesi Gbe', [Definition] = NULL, [SortOrder] = 206.60 WHERE [Code] = 'gbs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggb', 'Gbii', NULL, 206.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbii', [Definition] = NULL, [SortOrder] = 206.70 WHERE [Code] = 'ggb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgb', 'Gbin', NULL, 206.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbin', [Definition] = NULL, [SortOrder] = 206.80 WHERE [Code] = 'xgb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grh', 'Gbiri-Niragu', NULL, 206.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbiri-Niragu', [Definition] = NULL, [SortOrder] = 206.90 WHERE [Code] = 'grh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gec', 'Gboloo Grebo', NULL, 207.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gboloo Grebo', [Definition] = NULL, [SortOrder] = 207.00 WHERE [Code] = 'gec' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmj', 'Ge', NULL, 207.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ge', [Definition] = NULL, [SortOrder] = 207.10 WHERE [Code] = 'hmj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvq', 'Geba Karen', NULL, 207.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geba Karen', [Definition] = NULL, [SortOrder] = 207.20 WHERE [Code] = 'kvq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gei', 'Gebe', NULL, 207.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gebe', [Definition] = NULL, [SortOrder] = 207.30 WHERE [Code] = 'gei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdd', 'Gedaged', NULL, 207.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gedaged', [Definition] = NULL, [SortOrder] = 207.40 WHERE [Code] = 'gdd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drs', 'Gedeo', NULL, 207.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gedeo', [Definition] = NULL, [SortOrder] = 207.50 WHERE [Code] = 'drs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gez', 'Geez', NULL, 207.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geez', [Definition] = NULL, [SortOrder] = 207.60 WHERE [Code] = 'gez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyz', 'Geji', NULL, 207.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geji', [Definition] = NULL, [SortOrder] = 207.70 WHERE [Code] = 'gyz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghk', 'Geko Karen', NULL, 207.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geko Karen', [Definition] = NULL, [SortOrder] = 207.80 WHERE [Code] = 'ghk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlg', 'Gela', NULL, 207.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gela', [Definition] = NULL, [SortOrder] = 207.90 WHERE [Code] = 'nlg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'geq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geq', 'Geme', NULL, 208.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geme', [Definition] = NULL, [SortOrder] = 208.00 WHERE [Code] = 'geq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gej', 'Gen', NULL, 208.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gen', [Definition] = NULL, [SortOrder] = 208.10 WHERE [Code] = 'gej' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaf', 'Gende', NULL, 208.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gende', [Definition] = NULL, [SortOrder] = 208.20 WHERE [Code] = 'gaf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'geg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geg', 'Gengle', NULL, 208.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gengle', [Definition] = NULL, [SortOrder] = 208.30 WHERE [Code] = 'geg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kat', 'Georgian', NULL, 208.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Georgian', [Definition] = NULL, [SortOrder] = 208.40 WHERE [Code] = 'kat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygp', 'Gepo', NULL, 208.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gepo', [Definition] = NULL, [SortOrder] = 208.50 WHERE [Code] = 'ygp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gew', 'Gera', NULL, 208.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gera', [Definition] = NULL, [SortOrder] = 208.60 WHERE [Code] = 'gew' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gef', 'Gerai', NULL, 208.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gerai', [Definition] = NULL, [SortOrder] = 208.70 WHERE [Code] = 'gef' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'deu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('deu', 'German', NULL, 208.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'German', [Definition] = NULL, [SortOrder] = 208.80 WHERE [Code] = 'deu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsg', 'German Sign Language', NULL, 208.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'German Sign Language', [Definition] = NULL, [SortOrder] = 208.90 WHERE [Code] = 'gsg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gea', 'Geruma', NULL, 209.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geruma', [Definition] = NULL, [SortOrder] = 209.00 WHERE [Code] = 'gea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ges') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ges', 'Geser-Gorom', NULL, 209.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geser-Gorom', [Definition] = NULL, [SortOrder] = 209.10 WHERE [Code] = 'ges' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gha', 'Ghadamès', NULL, 209.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghadamès', [Definition] = NULL, [SortOrder] = 209.20 WHERE [Code] = 'gha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gpe', 'Ghanaian Pidgin English', NULL, 209.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghanaian Pidgin English', [Definition] = NULL, [SortOrder] = 209.30 WHERE [Code] = 'gpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gse', 'Ghanaian Sign Language', NULL, 209.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghanaian Sign Language', [Definition] = NULL, [SortOrder] = 209.40 WHERE [Code] = 'gse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gds', 'Ghandruk Sign Language', NULL, 209.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghandruk Sign Language', [Definition] = NULL, [SortOrder] = 209.50 WHERE [Code] = 'gds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghn', 'Ghanongga', NULL, 209.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghanongga', [Definition] = NULL, [SortOrder] = 209.60 WHERE [Code] = 'ghn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gri', 'Ghari', NULL, 209.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghari', [Definition] = NULL, [SortOrder] = 209.70 WHERE [Code] = 'gri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmk', 'Ghayavi', NULL, 209.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghayavi', [Definition] = NULL, [SortOrder] = 209.80 WHERE [Code] = 'bmk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aln', 'Gheg Albanian', NULL, 209.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gheg Albanian', [Definition] = NULL, [SortOrder] = 209.90 WHERE [Code] = 'aln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghr', 'Ghera', NULL, 210.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghera', [Definition] = NULL, [SortOrder] = 210.00 WHERE [Code] = 'ghr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdo', 'Ghodoberi', NULL, 210.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghodoberi', [Definition] = NULL, [SortOrder] = 210.10 WHERE [Code] = 'gdo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbj', 'Ghomálá''', NULL, 210.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghomálá''', [Definition] = NULL, [SortOrder] = 210.20 WHERE [Code] = 'bbj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gho', 'Ghomara', NULL, 210.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghomara', [Definition] = NULL, [SortOrder] = 210.30 WHERE [Code] = 'gho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaa', 'Ghotuo', NULL, 210.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghotuo', [Definition] = NULL, [SortOrder] = 210.40 WHERE [Code] = 'aaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghl', 'Ghulfan', NULL, 210.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghulfan', [Definition] = NULL, [SortOrder] = 210.50 WHERE [Code] = 'ghl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgi', 'Giangan', NULL, 210.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Giangan', [Definition] = NULL, [SortOrder] = 210.60 WHERE [Code] = 'bgi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gib', 'Gibanawa', NULL, 210.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gibanawa', [Definition] = NULL, [SortOrder] = 210.70 WHERE [Code] = 'gib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gid', 'Gidar', NULL, 210.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gidar', [Definition] = NULL, [SortOrder] = 210.80 WHERE [Code] = 'gid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kks', 'Giiwo', NULL, 210.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Giiwo', [Definition] = NULL, [SortOrder] = 210.90 WHERE [Code] = 'kks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acd', 'Gikyode', NULL, 211.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gikyode', [Definition] = NULL, [SortOrder] = 211.00 WHERE [Code] = 'acd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glk', 'Gilaki', NULL, 211.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gilaki', [Definition] = NULL, [SortOrder] = 211.10 WHERE [Code] = 'glk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gil', 'Gilbertese', NULL, 211.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gilbertese', [Definition] = NULL, [SortOrder] = 211.20 WHERE [Code] = 'gil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gix', 'Gilima', NULL, 211.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gilima', [Definition] = NULL, [SortOrder] = 211.30 WHERE [Code] = 'gix' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niv', 'Gilyak', NULL, 211.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gilyak', [Definition] = NULL, [SortOrder] = 211.40 WHERE [Code] = 'niv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gim', 'Gimi (Eastern Highlands)', NULL, 211.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gimi (Eastern Highlands)', [Definition] = NULL, [SortOrder] = 211.50 WHERE [Code] = 'gim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gip', 'Gimi (West New Britain)', NULL, 211.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gimi (West New Britain)', [Definition] = NULL, [SortOrder] = 211.60 WHERE [Code] = 'gip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmp', 'Gimme', NULL, 211.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gimme', [Definition] = NULL, [SortOrder] = 211.70 WHERE [Code] = 'kmp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmn', 'Gimnime', NULL, 211.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gimnime', [Definition] = NULL, [SortOrder] = 211.80 WHERE [Code] = 'gmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnm', 'Ginuman', NULL, 211.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ginuman', [Definition] = NULL, [SortOrder] = 211.90 WHERE [Code] = 'gnm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayg', 'Ginyanga', NULL, 212.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ginyanga', [Definition] = NULL, [SortOrder] = 212.00 WHERE [Code] = 'ayg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbr', 'Girawa', NULL, 212.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Girawa', [Definition] = NULL, [SortOrder] = 212.10 WHERE [Code] = 'bbr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gii', 'Girirra', NULL, 212.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Girirra', [Definition] = NULL, [SortOrder] = 212.20 WHERE [Code] = 'gii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyf', 'Giryama', NULL, 212.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Giryama', [Definition] = NULL, [SortOrder] = 212.30 WHERE [Code] = 'nyf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gih', 'Githabul', NULL, 212.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Githabul', [Definition] = NULL, [SortOrder] = 212.40 WHERE [Code] = 'gih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toh', 'Gitonga', NULL, 212.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gitonga', [Definition] = NULL, [SortOrder] = 212.50 WHERE [Code] = 'toh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggt', 'Gitua', NULL, 212.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gitua', [Definition] = NULL, [SortOrder] = 212.60 WHERE [Code] = 'ggt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'git') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('git', 'Gitxsan', NULL, 212.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gitxsan', [Definition] = NULL, [SortOrder] = 212.70 WHERE [Code] = 'git' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giy', 'Giyug', NULL, 212.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Giyug', [Definition] = NULL, [SortOrder] = 212.80 WHERE [Code] = 'giy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tof', 'Gizrra', NULL, 212.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gizrra', [Definition] = NULL, [SortOrder] = 212.90 WHERE [Code] = 'tof' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glr', 'Glaro-Twabo', NULL, 213.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Glaro-Twabo', [Definition] = NULL, [SortOrder] = 213.00 WHERE [Code] = 'glr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glw', 'Glavda', NULL, 213.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Glavda', [Definition] = NULL, [SortOrder] = 213.10 WHERE [Code] = 'glw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oub', 'Glio-Oubi', NULL, 213.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Glio-Oubi', [Definition] = NULL, [SortOrder] = 213.20 WHERE [Code] = 'oub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnu', 'Gnau', NULL, 213.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gnau', [Definition] = NULL, [SortOrder] = 213.30 WHERE [Code] = 'gnu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gom', 'Goan Konkani', NULL, 213.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goan Konkani', [Definition] = NULL, [SortOrder] = 213.40 WHERE [Code] = 'gom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gig', 'Goaria', NULL, 213.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goaria', [Definition] = NULL, [SortOrder] = 213.50 WHERE [Code] = 'gig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goi', 'Gobasi', NULL, 213.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gobasi', [Definition] = NULL, [SortOrder] = 213.60 WHERE [Code] = 'goi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gox', 'Gobu', NULL, 213.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gobu', [Definition] = NULL, [SortOrder] = 213.70 WHERE [Code] = 'gox' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'god') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('god', 'Godié', NULL, 213.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Godié', [Definition] = NULL, [SortOrder] = 213.80 WHERE [Code] = 'god' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdx', 'Godwari', NULL, 213.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Godwari', [Definition] = NULL, [SortOrder] = 213.90 WHERE [Code] = 'gdx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ank') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ank', 'Goemai', NULL, 214.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goemai', [Definition] = NULL, [SortOrder] = 214.00 WHERE [Code] = 'ank' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gof', 'Gofa', NULL, 214.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gofa', [Definition] = NULL, [SortOrder] = 214.10 WHERE [Code] = 'gof' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gog', 'Gogo', NULL, 214.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gogo', [Definition] = NULL, [SortOrder] = 214.20 WHERE [Code] = 'gog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggw', 'Gogodala', NULL, 214.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gogodala', [Definition] = NULL, [SortOrder] = 214.30 WHERE [Code] = 'ggw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gkn', 'Gokana', NULL, 214.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gokana', [Definition] = NULL, [SortOrder] = 214.40 WHERE [Code] = 'gkn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gol', 'Gola', NULL, 214.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gola', [Definition] = NULL, [SortOrder] = 214.50 WHERE [Code] = 'gol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvf', 'Golin', NULL, 214.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Golin', [Definition] = NULL, [SortOrder] = 214.60 WHERE [Code] = 'gvf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lja', 'Golpa', NULL, 214.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Golpa', [Definition] = NULL, [SortOrder] = 214.70 WHERE [Code] = 'lja' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gon', 'Gondi', NULL, 214.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gondi', [Definition] = NULL, [SortOrder] = 214.80 WHERE [Code] = 'gon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goo', 'Gone Dau', NULL, 214.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gone Dau', [Definition] = NULL, [SortOrder] = 214.90 WHERE [Code] = 'goo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goe', 'Gongduk', NULL, 215.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gongduk', [Definition] = NULL, [SortOrder] = 215.00 WHERE [Code] = 'goe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gjn', 'Gonja', NULL, 215.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gonja', [Definition] = NULL, [SortOrder] = 215.10 WHERE [Code] = 'gjn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gov', 'Goo', NULL, 215.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goo', [Definition] = NULL, [SortOrder] = 215.20 WHERE [Code] = 'gov' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gni', 'Gooniyandi', NULL, 215.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gooniyandi', [Definition] = NULL, [SortOrder] = 215.30 WHERE [Code] = 'gni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqr', 'Gor', NULL, 215.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gor', [Definition] = NULL, [SortOrder] = 215.40 WHERE [Code] = 'gqr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goc', 'Gorakor', NULL, 215.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorakor', [Definition] = NULL, [SortOrder] = 215.50 WHERE [Code] = 'goc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goq', 'Gorap', NULL, 215.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorap', [Definition] = NULL, [SortOrder] = 215.60 WHERE [Code] = 'goq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgg', 'Goreng', NULL, 215.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goreng', [Definition] = NULL, [SortOrder] = 215.70 WHERE [Code] = 'xgg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gor', 'Gorontalo', NULL, 215.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorontalo', [Definition] = NULL, [SortOrder] = 215.80 WHERE [Code] = 'gor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grq', 'Gorovu', NULL, 215.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorovu', [Definition] = NULL, [SortOrder] = 215.90 WHERE [Code] = 'grq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gow', 'Gorowa', NULL, 216.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorowa', [Definition] = NULL, [SortOrder] = 216.00 WHERE [Code] = 'gow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'got') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('got', 'Gothic', NULL, 216.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gothic', [Definition] = NULL, [SortOrder] = 216.10 WHERE [Code] = 'got' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goy', 'Goundo', NULL, 216.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goundo', [Definition] = NULL, [SortOrder] = 216.20 WHERE [Code] = 'goy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gux', 'Gourmanchéma', NULL, 216.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gourmanchéma', [Definition] = NULL, [SortOrder] = 216.30 WHERE [Code] = 'gux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goj', 'Gowlan', NULL, 216.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gowlan', [Definition] = NULL, [SortOrder] = 216.40 WHERE [Code] = 'goj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gok', 'Gowli', NULL, 216.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gowli', [Definition] = NULL, [SortOrder] = 216.50 WHERE [Code] = 'gok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwf', 'Gowro', NULL, 216.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gowro', [Definition] = NULL, [SortOrder] = 216.60 WHERE [Code] = 'gwf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goz', 'Gozarkhani', NULL, 216.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gozarkhani', [Definition] = NULL, [SortOrder] = 216.70 WHERE [Code] = 'goz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nli', 'Grangali', NULL, 216.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Grangali', [Definition] = NULL, [SortOrder] = 216.80 WHERE [Code] = 'nli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbk', 'Grass Koiari', NULL, 216.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Grass Koiari', [Definition] = NULL, [SortOrder] = 216.90 WHERE [Code] = 'kbk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grb', 'Grebo', NULL, 217.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Grebo', [Definition] = NULL, [SortOrder] = 217.00 WHERE [Code] = 'grb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gss', 'Greek Sign Language', NULL, 217.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Greek Sign Language', [Definition] = NULL, [SortOrder] = 217.10 WHERE [Code] = 'gss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giq', 'Green Gelao', NULL, 217.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Green Gelao', [Definition] = NULL, [SortOrder] = 217.20 WHERE [Code] = 'giq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcl', 'Grenadian Creole English', NULL, 217.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Grenadian Creole English', [Definition] = NULL, [SortOrder] = 217.30 WHERE [Code] = 'gcl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grs', 'Gresi', NULL, 217.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gresi', [Definition] = NULL, [SortOrder] = 217.40 WHERE [Code] = 'grs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gro', 'Groma', NULL, 217.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Groma', [Definition] = NULL, [SortOrder] = 217.50 WHERE [Code] = 'gro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gos', 'Gronings', NULL, 217.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gronings', [Definition] = NULL, [SortOrder] = 217.60 WHERE [Code] = 'gos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ats') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ats', 'Gros Ventre', NULL, 217.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gros Ventre', [Definition] = NULL, [SortOrder] = 217.70 WHERE [Code] = 'ats' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwx', 'Gua', NULL, 217.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gua', [Definition] = NULL, [SortOrder] = 217.80 WHERE [Code] = 'gwx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcf', 'Guadeloupean Creole French', NULL, 217.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guadeloupean Creole French', [Definition] = NULL, [SortOrder] = 217.90 WHERE [Code] = 'gcf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guh', 'Guahibo', NULL, 218.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guahibo', [Definition] = NULL, [SortOrder] = 218.00 WHERE [Code] = 'guh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvj', 'Guajá', NULL, 218.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guajá', [Definition] = NULL, [SortOrder] = 218.10 WHERE [Code] = 'gvj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gub', 'Guajajára', NULL, 218.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guajajára', [Definition] = NULL, [SortOrder] = 218.20 WHERE [Code] = 'gub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gum', 'Guambiano', NULL, 218.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guambiano', [Definition] = NULL, [SortOrder] = 218.30 WHERE [Code] = 'gum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqn', 'Guana (Brazil)', NULL, 218.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guana (Brazil)', [Definition] = NULL, [SortOrder] = 218.40 WHERE [Code] = 'gqn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gva', 'Guana (Paraguay)', NULL, 218.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guana (Paraguay)', [Definition] = NULL, [SortOrder] = 218.50 WHERE [Code] = 'gva' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvc', 'Guanano', NULL, 218.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guanano', [Definition] = NULL, [SortOrder] = 218.60 WHERE [Code] = 'gvc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnc', 'Guanche', NULL, 218.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guanche', [Definition] = NULL, [SortOrder] = 218.70 WHERE [Code] = 'gnc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jiq', 'Guanyinqiao', NULL, 218.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guanyinqiao', [Definition] = NULL, [SortOrder] = 218.80 WHERE [Code] = 'jiq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grn', 'Guarani', NULL, 218.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guarani', [Definition] = NULL, [SortOrder] = 218.90 WHERE [Code] = 'grn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyr', 'Guarayu', NULL, 219.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guarayu', [Definition] = NULL, [SortOrder] = 219.00 WHERE [Code] = 'gyr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gae', 'Guarequena', NULL, 219.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guarequena', [Definition] = NULL, [SortOrder] = 219.10 WHERE [Code] = 'gae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsm', 'Guatemalan Sign Language', NULL, 219.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guatemalan Sign Language', [Definition] = NULL, [SortOrder] = 219.20 WHERE [Code] = 'gsm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gta', 'Guató', NULL, 219.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guató', [Definition] = NULL, [SortOrder] = 219.30 WHERE [Code] = 'gta' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guo', 'Guayabero', NULL, 219.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guayabero', [Definition] = NULL, [SortOrder] = 219.40 WHERE [Code] = 'guo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgd', 'Gudang', NULL, 219.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gudang', [Definition] = NULL, [SortOrder] = 219.50 WHERE [Code] = 'xgd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nji', 'Gudanji', NULL, 219.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gudanji', [Definition] = NULL, [SortOrder] = 219.60 WHERE [Code] = 'nji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gde', 'Gude', NULL, 219.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gude', [Definition] = NULL, [SortOrder] = 219.70 WHERE [Code] = 'gde' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdu', 'Gudu', NULL, 219.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gudu', [Definition] = NULL, [SortOrder] = 219.80 WHERE [Code] = 'gdu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdf', 'Guduf-Gava', NULL, 219.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guduf-Gava', [Definition] = NULL, [SortOrder] = 219.90 WHERE [Code] = 'gdf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amu', 'Guerrero Amuzgo', NULL, 220.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guerrero Amuzgo', [Definition] = NULL, [SortOrder] = 220.00 WHERE [Code] = 'amu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngu', 'Guerrero Nahuatl', NULL, 220.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guerrero Nahuatl', [Definition] = NULL, [SortOrder] = 220.10 WHERE [Code] = 'ngu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpg', 'Guevea De Humboldt Zapotec', NULL, 220.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guevea De Humboldt Zapotec', [Definition] = NULL, [SortOrder] = 220.20 WHERE [Code] = 'zpg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggd', 'Gugadj', NULL, 220.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gugadj', [Definition] = NULL, [SortOrder] = 220.30 WHERE [Code] = 'ggd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdc', 'Gugu Badhun', NULL, 220.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gugu Badhun', [Definition] = NULL, [SortOrder] = 220.40 WHERE [Code] = 'gdc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrw', 'Gugu Warra', NULL, 220.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gugu Warra', [Definition] = NULL, [SortOrder] = 220.50 WHERE [Code] = 'wrw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkp', 'Gugubera', NULL, 220.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gugubera', [Definition] = NULL, [SortOrder] = 220.60 WHERE [Code] = 'kkp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghs', 'Guhu-Samane', NULL, 220.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guhu-Samane', [Definition] = NULL, [SortOrder] = 220.70 WHERE [Code] = 'ghs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcr', 'Guianese Creole French', NULL, 220.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guianese Creole French', [Definition] = NULL, [SortOrder] = 220.80 WHERE [Code] = 'gcr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgb', 'Guibei Zhuang', NULL, 220.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guibei Zhuang', [Definition] = NULL, [SortOrder] = 220.90 WHERE [Code] = 'zgb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bet', 'Guiberoua Béte', NULL, 221.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guiberoua Béte', [Definition] = NULL, [SortOrder] = 221.00 WHERE [Code] = 'bet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgn', 'Guibian Zhuang', NULL, 221.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guibian Zhuang', [Definition] = NULL, [SortOrder] = 221.10 WHERE [Code] = 'zgn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztu', 'Güilá Zapotec', NULL, 221.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Güilá Zapotec', [Definition] = NULL, [SortOrder] = 221.20 WHERE [Code] = 'ztu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gkp', 'Guinea Kpelle', NULL, 221.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guinea Kpelle', [Definition] = NULL, [SortOrder] = 221.30 WHERE [Code] = 'gkp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gus', 'Guinean Sign Language', NULL, 221.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guinean Sign Language', [Definition] = NULL, [SortOrder] = 221.40 WHERE [Code] = 'gus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqi', 'Guiqiong', NULL, 221.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guiqiong', [Definition] = NULL, [SortOrder] = 221.50 WHERE [Code] = 'gqi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guj', 'Gujarati', NULL, 221.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gujarati', [Definition] = NULL, [SortOrder] = 221.60 WHERE [Code] = 'guj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gju', 'Gujari', NULL, 221.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gujari', [Definition] = NULL, [SortOrder] = 221.70 WHERE [Code] = 'gju' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcm', 'Gula (Central African Republic)', NULL, 221.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gula (Central African Republic)', [Definition] = NULL, [SortOrder] = 221.80 WHERE [Code] = 'kcm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glu', 'Gula (Chad)', NULL, 221.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gula (Chad)', [Definition] = NULL, [SortOrder] = 221.90 WHERE [Code] = 'glu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glj', 'Gula Iro', NULL, 222.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gula Iro', [Definition] = NULL, [SortOrder] = 222.00 WHERE [Code] = 'glj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmb', 'Gula''alaa', NULL, 222.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gula''alaa', [Definition] = NULL, [SortOrder] = 222.10 WHERE [Code] = 'gmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvl', 'Gulay', NULL, 222.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gulay', [Definition] = NULL, [SortOrder] = 222.20 WHERE [Code] = 'gvl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gly', 'Gule', NULL, 222.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gule', [Definition] = NULL, [SortOrder] = 222.30 WHERE [Code] = 'gly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afb', 'Gulf Arabic', NULL, 222.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gulf Arabic', [Definition] = NULL, [SortOrder] = 222.40 WHERE [Code] = 'afb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmu', 'Gumalu', NULL, 222.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gumalu', [Definition] = NULL, [SortOrder] = 222.50 WHERE [Code] = 'gmu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnn', 'Gumatj', NULL, 222.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gumatj', [Definition] = NULL, [SortOrder] = 222.60 WHERE [Code] = 'gnn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvs', 'Gumawana', NULL, 222.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gumawana', [Definition] = NULL, [SortOrder] = 222.70 WHERE [Code] = 'gvs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guk', 'Gumuz', NULL, 222.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gumuz', [Definition] = NULL, [SortOrder] = 222.80 WHERE [Code] = 'guk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guw', 'Gun', NULL, 222.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gun', [Definition] = NULL, [SortOrder] = 222.90 WHERE [Code] = 'guw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdi', 'Gundi', NULL, 223.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gundi', [Definition] = NULL, [SortOrder] = 223.00 WHERE [Code] = 'gdi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gjm', 'Gunditjmara', NULL, 223.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gunditjmara', [Definition] = NULL, [SortOrder] = 223.10 WHERE [Code] = 'gjm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrd', 'Gundungurra', NULL, 223.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gundungurra', [Definition] = NULL, [SortOrder] = 223.20 WHERE [Code] = 'xrd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyf', 'Gungabula', NULL, 223.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gungabula', [Definition] = NULL, [SortOrder] = 223.30 WHERE [Code] = 'gyf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rub', 'Gungu', NULL, 223.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gungu', [Definition] = NULL, [SortOrder] = 223.40 WHERE [Code] = 'rub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnt', 'Guntai', NULL, 223.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guntai', [Definition] = NULL, [SortOrder] = 223.50 WHERE [Code] = 'gnt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gup', 'Gunwinggu', NULL, 223.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gunwinggu', [Definition] = NULL, [SortOrder] = 223.60 WHERE [Code] = 'gup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyy', 'Gunya', NULL, 223.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gunya', [Definition] = NULL, [SortOrder] = 223.70 WHERE [Code] = 'gyy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gpa', 'Gupa-Abawa', NULL, 223.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gupa-Abawa', [Definition] = NULL, [SortOrder] = 223.80 WHERE [Code] = 'gpa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guf', 'Gupapuyngu', NULL, 223.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gupapuyngu', [Definition] = NULL, [SortOrder] = 223.90 WHERE [Code] = 'guf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grz', 'Guramalum', NULL, 224.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guramalum', [Definition] = NULL, [SortOrder] = 224.00 WHERE [Code] = 'grz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hac', 'Gurani', NULL, 224.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurani', [Definition] = NULL, [SortOrder] = 224.10 WHERE [Code] = 'hac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdj', 'Gurdjar', NULL, 224.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurdjar', [Definition] = NULL, [SortOrder] = 224.20 WHERE [Code] = 'gdj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnr', 'Gureng Gureng', NULL, 224.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gureng Gureng', [Definition] = NULL, [SortOrder] = 224.30 WHERE [Code] = 'gnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggg', 'Gurgula', NULL, 224.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurgula', [Definition] = NULL, [SortOrder] = 224.40 WHERE [Code] = 'ggg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grx', 'Guriaso', NULL, 224.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guriaso', [Definition] = NULL, [SortOrder] = 224.50 WHERE [Code] = 'grx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gue', 'Gurindji', NULL, 224.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurindji', [Definition] = NULL, [SortOrder] = 224.60 WHERE [Code] = 'gue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gjr', 'Gurindji Kriol', NULL, 224.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurindji Kriol', [Definition] = NULL, [SortOrder] = 224.70 WHERE [Code] = 'gjr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvm', 'Gurmana', NULL, 224.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurmana', [Definition] = NULL, [SortOrder] = 224.80 WHERE [Code] = 'gvm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goa', 'Guro', NULL, 224.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guro', [Definition] = NULL, [SortOrder] = 224.90 WHERE [Code] = 'goa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gge', 'Gurr-goni', NULL, 225.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurr-goni', [Definition] = NULL, [SortOrder] = 225.00 WHERE [Code] = 'gge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvr', 'Gurung', NULL, 225.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurung', [Definition] = NULL, [SortOrder] = 225.10 WHERE [Code] = 'gvr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grd', 'Guruntum-Mbaaru', NULL, 225.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guruntum-Mbaaru', [Definition] = NULL, [SortOrder] = 225.20 WHERE [Code] = 'grd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guz', 'Gusii', NULL, 225.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gusii', [Definition] = NULL, [SortOrder] = 225.30 WHERE [Code] = 'guz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsl', 'Gusilay', NULL, 225.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gusilay', [Definition] = NULL, [SortOrder] = 225.40 WHERE [Code] = 'gsl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kky', 'Guugu Yimidhirr', NULL, 225.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guugu Yimidhirr', [Definition] = NULL, [SortOrder] = 225.50 WHERE [Code] = 'kky' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgw', 'Guwa', NULL, 225.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guwa', [Definition] = NULL, [SortOrder] = 225.60 WHERE [Code] = 'xgw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwu', 'Guwamu', NULL, 225.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guwamu', [Definition] = NULL, [SortOrder] = 225.70 WHERE [Code] = 'gwu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gka', 'Guya', NULL, 225.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guya', [Definition] = NULL, [SortOrder] = 225.80 WHERE [Code] = 'gka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyn', 'Guyanese Creole English', NULL, 225.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guyanese Creole English', [Definition] = NULL, [SortOrder] = 225.90 WHERE [Code] = 'gyn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvy', 'Guyani', NULL, 226.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guyani', [Definition] = NULL, [SortOrder] = 226.00 WHERE [Code] = 'gvy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngs', 'Gvoko', NULL, 226.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gvoko', [Definition] = NULL, [SortOrder] = 226.10 WHERE [Code] = 'ngs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwb', 'Gwa', NULL, 226.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwa', [Definition] = NULL, [SortOrder] = 226.20 WHERE [Code] = 'gwb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dah', 'Gwahatike', NULL, 226.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwahatike', [Definition] = NULL, [SortOrder] = 226.30 WHERE [Code] = 'dah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jgk', 'Gwak', NULL, 226.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwak', [Definition] = NULL, [SortOrder] = 226.40 WHERE [Code] = 'jgk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bga', 'Gwamhi-Wuri', NULL, 226.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwamhi-Wuri', [Definition] = NULL, [SortOrder] = 226.50 WHERE [Code] = 'bga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwn', 'Gwandara', NULL, 226.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwandara', [Definition] = NULL, [SortOrder] = 226.60 WHERE [Code] = 'gwn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grw', 'Gweda', NULL, 226.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gweda', [Definition] = NULL, [SortOrder] = 226.70 WHERE [Code] = 'grw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwe', 'Gweno', NULL, 226.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gweno', [Definition] = NULL, [SortOrder] = 226.80 WHERE [Code] = 'gwe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwr', 'Gwere', NULL, 226.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwere', [Definition] = NULL, [SortOrder] = 226.90 WHERE [Code] = 'gwr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwi', 'Gwich''in', NULL, 227.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwich''in', [Definition] = NULL, [SortOrder] = 227.00 WHERE [Code] = 'gwi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyo', 'Gyalsumdo', NULL, 227.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gyalsumdo', [Definition] = NULL, [SortOrder] = 227.10 WHERE [Code] = 'gyo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyi', 'Gyele', NULL, 227.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gyele', [Definition] = NULL, [SortOrder] = 227.20 WHERE [Code] = 'gyi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gye', 'Gyem', NULL, 227.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gyem', [Definition] = NULL, [SortOrder] = 227.30 WHERE [Code] = 'gye' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haq', 'Ha', NULL, 227.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ha', [Definition] = NULL, [SortOrder] = 227.40 WHERE [Code] = 'haq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbu', 'Habu', NULL, 227.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Habu', [Definition] = NULL, [SortOrder] = 227.50 WHERE [Code] = 'hbu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hdy', 'Hadiyya', NULL, 227.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadiyya', [Definition] = NULL, [SortOrder] = 227.60 WHERE [Code] = 'hdy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoj', 'Hadothi', NULL, 227.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadothi', [Definition] = NULL, [SortOrder] = 227.70 WHERE [Code] = 'hoj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhd', 'Hadrami', NULL, 227.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadrami', [Definition] = NULL, [SortOrder] = 227.80 WHERE [Code] = 'xhd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayh', 'Hadrami Arabic', NULL, 227.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadrami Arabic', [Definition] = NULL, [SortOrder] = 227.90 WHERE [Code] = 'ayh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hts', 'Hadza', NULL, 228.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadza', [Definition] = NULL, [SortOrder] = 228.00 WHERE [Code] = 'hts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aek', 'Haeke', NULL, 228.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haeke', [Definition] = NULL, [SortOrder] = 228.10 WHERE [Code] = 'aek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hah', 'Hahon', NULL, 228.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hahon', [Definition] = NULL, [SortOrder] = 228.20 WHERE [Code] = 'hah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hgm', 'Hai//om', NULL, 228.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hai//om', [Definition] = NULL, [SortOrder] = 228.30 WHERE [Code] = 'hgm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hai', 'Haida', NULL, 228.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haida', [Definition] = NULL, [SortOrder] = 228.40 WHERE [Code] = 'hai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hgw', 'Haigwai', NULL, 228.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haigwai', [Definition] = NULL, [SortOrder] = 228.50 WHERE [Code] = 'hgw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haf', 'Haiphong Sign Language', NULL, 228.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haiphong Sign Language', [Definition] = NULL, [SortOrder] = 228.60 WHERE [Code] = 'haf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'has') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('has', 'Haisla', NULL, 228.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haisla', [Definition] = NULL, [SortOrder] = 228.70 WHERE [Code] = 'has' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hat', 'Haitian', NULL, 228.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haitian', [Definition] = NULL, [SortOrder] = 228.80 WHERE [Code] = 'hat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hvc', 'Haitian Vodoun Culture Language', NULL, 228.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haitian Vodoun Culture Language', [Definition] = NULL, [SortOrder] = 228.90 WHERE [Code] = 'hvc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hji', 'Haji', NULL, 229.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haji', [Definition] = NULL, [SortOrder] = 229.00 WHERE [Code] = 'hji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haj', 'Hajong', NULL, 229.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hajong', [Definition] = NULL, [SortOrder] = 229.10 WHERE [Code] = 'haj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnh', 'Hakha Chin', NULL, 229.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hakha Chin', [Definition] = NULL, [SortOrder] = 229.20 WHERE [Code] = 'cnh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hak', 'Hakka Chinese', NULL, 229.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hakka Chinese', [Definition] = NULL, [SortOrder] = 229.30 WHERE [Code] = 'hak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hao', 'Hakö', NULL, 229.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hakö', [Definition] = NULL, [SortOrder] = 229.40 WHERE [Code] = 'hao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hal', 'Halang', NULL, 229.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halang', [Definition] = NULL, [SortOrder] = 229.50 WHERE [Code] = 'hal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hld', 'Halang Doan', NULL, 229.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halang Doan', [Definition] = NULL, [SortOrder] = 229.60 WHERE [Code] = 'hld' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hlb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hlb', 'Halbi', NULL, 229.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halbi', [Definition] = NULL, [SortOrder] = 229.70 WHERE [Code] = 'hlb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khk', 'Halh Mongolian', NULL, 229.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halh Mongolian', [Definition] = NULL, [SortOrder] = 229.80 WHERE [Code] = 'khk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hla', 'Halia', NULL, 229.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halia', [Definition] = NULL, [SortOrder] = 229.90 WHERE [Code] = 'hla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hur', 'Halkomelem', NULL, 230.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halkomelem', [Definition] = NULL, [SortOrder] = 230.00 WHERE [Code] = 'hur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmu', 'Hamap', NULL, 230.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hamap', [Definition] = NULL, [SortOrder] = 230.10 WHERE [Code] = 'hmu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hba', 'Hamba', NULL, 230.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hamba', [Definition] = NULL, [SortOrder] = 230.20 WHERE [Code] = 'hba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amf', 'Hamer-Banna', NULL, 230.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hamer-Banna', [Definition] = NULL, [SortOrder] = 230.30 WHERE [Code] = 'amf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmt', 'Hamtai', NULL, 230.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hamtai', [Definition] = NULL, [SortOrder] = 230.40 WHERE [Code] = 'hmt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haa', 'Han', NULL, 230.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Han', [Definition] = NULL, [SortOrder] = 230.50 WHERE [Code] = 'haa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hag', 'Hanga', NULL, 230.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hanga', [Definition] = NULL, [SortOrder] = 230.60 WHERE [Code] = 'hag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wos', 'Hanga Hundi', NULL, 230.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hanga Hundi', [Definition] = NULL, [SortOrder] = 230.70 WHERE [Code] = 'wos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'han') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('han', 'Hangaza', NULL, 230.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hangaza', [Definition] = NULL, [SortOrder] = 230.80 WHERE [Code] = 'han' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hni', 'Hani', NULL, 230.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hani', [Definition] = NULL, [SortOrder] = 230.90 WHERE [Code] = 'hni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lml', 'Hano', NULL, 231.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hano', [Definition] = NULL, [SortOrder] = 231.00 WHERE [Code] = 'lml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hab', 'Hanoi Sign Language', NULL, 231.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hanoi Sign Language', [Definition] = NULL, [SortOrder] = 231.10 WHERE [Code] = 'hab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnn', 'Hanunoo', NULL, 231.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hanunoo', [Definition] = NULL, [SortOrder] = 231.20 WHERE [Code] = 'hnn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xha', 'Harami', NULL, 231.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harami', [Definition] = NULL, [SortOrder] = 231.30 WHERE [Code] = 'xha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'har') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('har', 'Harari', NULL, 231.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harari', [Definition] = NULL, [SortOrder] = 231.40 WHERE [Code] = 'har' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjo', 'Harijan Kinnauri', NULL, 231.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harijan Kinnauri', [Definition] = NULL, [SortOrder] = 231.50 WHERE [Code] = 'kjo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hro', 'Haroi', NULL, 231.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haroi', [Definition] = NULL, [SortOrder] = 231.60 WHERE [Code] = 'hro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hss', 'Harsusi', NULL, 231.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harsusi', [Definition] = NULL, [SortOrder] = 231.70 WHERE [Code] = 'hss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmd', 'Haruai', NULL, 231.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haruai', [Definition] = NULL, [SortOrder] = 231.80 WHERE [Code] = 'tmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrk', 'Haruku', NULL, 231.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haruku', [Definition] = NULL, [SortOrder] = 231.90 WHERE [Code] = 'hrk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgc', 'Haryanvi', NULL, 232.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haryanvi', [Definition] = NULL, [SortOrder] = 232.00 WHERE [Code] = 'bgc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrz', 'Harzani', NULL, 232.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harzani', [Definition] = NULL, [SortOrder] = 232.10 WHERE [Code] = 'hrz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybj', 'Hasha', NULL, 232.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hasha', [Definition] = NULL, [SortOrder] = 232.20 WHERE [Code] = 'ybj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mey', 'Hassaniyya', NULL, 232.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hassaniyya', [Definition] = NULL, [SortOrder] = 232.30 WHERE [Code] = 'mey' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'had') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('had', 'Hatam', NULL, 232.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hatam', [Definition] = NULL, [SortOrder] = 232.40 WHERE [Code] = 'had' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xht', 'Hattic', NULL, 232.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hattic', [Definition] = NULL, [SortOrder] = 232.50 WHERE [Code] = 'xht' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hau', 'Hausa', NULL, 232.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hausa', [Definition] = NULL, [SortOrder] = 232.60 WHERE [Code] = 'hau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsl', 'Hausa Sign Language', NULL, 232.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hausa Sign Language', [Definition] = NULL, [SortOrder] = 232.70 WHERE [Code] = 'hsl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuf', 'Havasupai-Walapai-Yavapai', NULL, 232.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Havasupai-Walapai-Yavapai', [Definition] = NULL, [SortOrder] = 232.80 WHERE [Code] = 'yuf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hvk', 'Haveke', NULL, 232.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haveke', [Definition] = NULL, [SortOrder] = 232.90 WHERE [Code] = 'hvk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hav', 'Havu', NULL, 233.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Havu', [Definition] = NULL, [SortOrder] = 233.00 WHERE [Code] = 'hav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hwc', 'Hawai''i Creole English', NULL, 233.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hawai''i Creole English', [Definition] = NULL, [SortOrder] = 233.10 WHERE [Code] = 'hwc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hps', 'Hawai''i Sign Language (HSL)', NULL, 233.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hawai''i Sign Language (HSL)', [Definition] = NULL, [SortOrder] = 233.20 WHERE [Code] = 'hps' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haw', 'Hawaiian', NULL, 233.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hawaiian', [Definition] = NULL, [SortOrder] = 233.30 WHERE [Code] = 'haw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hay', 'Haya', NULL, 233.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haya', [Definition] = NULL, [SortOrder] = 233.40 WHERE [Code] = 'hay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haz', 'Hazaragi', NULL, 233.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hazaragi', [Definition] = NULL, [SortOrder] = 233.50 WHERE [Code] = 'haz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xed', 'Hdi', NULL, 233.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hdi', [Definition] = NULL, [SortOrder] = 233.60 WHERE [Code] = 'xed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'heb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('heb', 'Hebrew', NULL, 233.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hebrew', [Definition] = NULL, [SortOrder] = 233.70 WHERE [Code] = 'heb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'heh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('heh', 'Hehe', NULL, 233.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hehe', [Definition] = NULL, [SortOrder] = 233.80 WHERE [Code] = 'heh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbn', 'Heiban', NULL, 233.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Heiban', [Definition] = NULL, [SortOrder] = 233.90 WHERE [Code] = 'hbn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hei', 'Heiltsuk', NULL, 234.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Heiltsuk', [Definition] = NULL, [SortOrder] = 234.00 WHERE [Code] = 'hei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'heg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('heg', 'Helong', NULL, 234.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Helong', [Definition] = NULL, [SortOrder] = 234.10 WHERE [Code] = 'heg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nix', 'Hema', NULL, 234.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hema', [Definition] = NULL, [SortOrder] = 234.20 WHERE [Code] = 'nix' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hem', 'Hemba', NULL, 234.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hemba', [Definition] = NULL, [SortOrder] = 234.30 WHERE [Code] = 'hem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hed', 'Herdé', NULL, 234.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Herdé', [Definition] = NULL, [SortOrder] = 234.40 WHERE [Code] = 'hed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'her') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('her', 'Herero', NULL, 234.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Herero', [Definition] = NULL, [SortOrder] = 234.50 WHERE [Code] = 'her' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llf', 'Hermit', NULL, 234.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hermit', [Definition] = NULL, [SortOrder] = 234.60 WHERE [Code] = 'llf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhr', 'Hernican', NULL, 234.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hernican', [Definition] = NULL, [SortOrder] = 234.70 WHERE [Code] = 'xhr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrt', 'Hértevin', NULL, 234.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hértevin', [Definition] = NULL, [SortOrder] = 234.80 WHERE [Code] = 'hrt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ham') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ham', 'Hewa', NULL, 234.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hewa', [Definition] = NULL, [SortOrder] = 234.90 WHERE [Code] = 'ham' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auk', 'Heyo', NULL, 235.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Heyo', [Definition] = NULL, [SortOrder] = 235.00 WHERE [Code] = 'auk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghc', 'Hiberno-Scottish Gaelic', NULL, 235.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hiberno-Scottish Gaelic', [Definition] = NULL, [SortOrder] = 235.10 WHERE [Code] = 'ghc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hib', 'Hibito', NULL, 235.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hibito', [Definition] = NULL, [SortOrder] = 235.20 WHERE [Code] = 'hib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hid', 'Hidatsa', NULL, 235.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hidatsa', [Definition] = NULL, [SortOrder] = 235.30 WHERE [Code] = 'hid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hlu', 'Hieroglyphic Luwian', NULL, 235.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hieroglyphic Luwian', [Definition] = NULL, [SortOrder] = 235.40 WHERE [Code] = 'hlu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mba', 'Higaonon', NULL, 235.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Higaonon', [Definition] = NULL, [SortOrder] = 235.50 WHERE [Code] = 'mba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjk', 'Highland Konjo', NULL, 235.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Konjo', [Definition] = NULL, [SortOrder] = 235.60 WHERE [Code] = 'kjk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chd', 'Highland Oaxaca Chontal', NULL, 235.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Oaxaca Chontal', [Definition] = NULL, [SortOrder] = 235.70 WHERE [Code] = 'chd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poi', 'Highland Popoluca', NULL, 235.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Popoluca', [Definition] = NULL, [SortOrder] = 235.80 WHERE [Code] = 'poi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azz', 'Highland Puebla Nahuatl', NULL, 235.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 235.90 WHERE [Code] = 'azz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tos', 'Highland Totonac', NULL, 236.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Totonac', [Definition] = NULL, [SortOrder] = 236.00 WHERE [Code] = 'tos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acw', 'Hijazi Arabic', NULL, 236.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hijazi Arabic', [Definition] = NULL, [SortOrder] = 236.10 WHERE [Code] = 'acw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hij', 'Hijuk', NULL, 236.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hijuk', [Definition] = NULL, [SortOrder] = 236.20 WHERE [Code] = 'hij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hil', 'Hiligaynon', NULL, 236.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hiligaynon', [Definition] = NULL, [SortOrder] = 236.30 WHERE [Code] = 'hil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hir', 'Himarimã', NULL, 236.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Himarimã', [Definition] = NULL, [SortOrder] = 236.40 WHERE [Code] = 'hir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hin', 'Hindi', NULL, 236.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hindi', [Definition] = NULL, [SortOrder] = 236.50 WHERE [Code] = 'hin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hii', 'Hinduri', NULL, 236.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hinduri', [Definition] = NULL, [SortOrder] = 236.60 WHERE [Code] = 'hii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gin', 'Hinukh', NULL, 236.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hinukh', [Definition] = NULL, [SortOrder] = 236.70 WHERE [Code] = 'gin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmo', 'Hiri Motu', NULL, 236.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hiri Motu', [Definition] = NULL, [SortOrder] = 236.80 WHERE [Code] = 'hmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hit', 'Hittite', NULL, 236.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hittite', [Definition] = NULL, [SortOrder] = 236.90 WHERE [Code] = 'hit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'htu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('htu', 'Hitu', NULL, 237.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hitu', [Definition] = NULL, [SortOrder] = 237.00 WHERE [Code] = 'htu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hiw', 'Hiw', NULL, 237.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hiw', [Definition] = NULL, [SortOrder] = 237.10 WHERE [Code] = 'hiw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hix', 'Hixkaryána', NULL, 237.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hixkaryána', [Definition] = NULL, [SortOrder] = 237.20 WHERE [Code] = 'hix' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lic', 'Hlai', NULL, 237.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hlai', [Definition] = NULL, [SortOrder] = 237.30 WHERE [Code] = 'lic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yhl', 'Hlepho Phowa', NULL, 237.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hlepho Phowa', [Definition] = NULL, [SortOrder] = 237.40 WHERE [Code] = 'yhl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hle', 'Hlersu', NULL, 237.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hlersu', [Definition] = NULL, [SortOrder] = 237.50 WHERE [Code] = 'hle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmr', 'Hmar', NULL, 237.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmar', [Definition] = NULL, [SortOrder] = 237.60 WHERE [Code] = 'hmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmn', 'Hmong', NULL, 237.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong', [Definition] = NULL, [SortOrder] = 237.70 WHERE [Code] = 'hmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mww', 'Hmong Daw', NULL, 237.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Daw', [Definition] = NULL, [SortOrder] = 237.80 WHERE [Code] = 'mww' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmv', 'Hmong Dô', NULL, 237.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Dô', [Definition] = NULL, [SortOrder] = 237.90 WHERE [Code] = 'hmv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmf', 'Hmong Don', NULL, 238.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Don', [Definition] = NULL, [SortOrder] = 238.00 WHERE [Code] = 'hmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnj', 'Hmong Njua', NULL, 238.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Njua', [Definition] = NULL, [SortOrder] = 238.10 WHERE [Code] = 'hnj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmz', 'Hmong Shua', NULL, 238.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Shua', [Definition] = NULL, [SortOrder] = 238.20 WHERE [Code] = 'hmz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrk', 'Hmwaveke', NULL, 238.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmwaveke', [Definition] = NULL, [SortOrder] = 238.30 WHERE [Code] = 'mrk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoc', 'Ho', NULL, 238.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ho', [Definition] = NULL, [SortOrder] = 238.40 WHERE [Code] = 'hoc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hos', 'Ho Chi Minh City Sign Language', NULL, 238.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ho Chi Minh City Sign Language', [Definition] = NULL, [SortOrder] = 238.50 WHERE [Code] = 'hos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'win') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('win', 'Ho-Chunk', NULL, 238.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ho-Chunk', [Definition] = NULL, [SortOrder] = 238.60 WHERE [Code] = 'win' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoa', 'Hoava', NULL, 238.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hoava', [Definition] = NULL, [SortOrder] = 238.70 WHERE [Code] = 'hoa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoh', 'Hobyót', NULL, 238.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hobyót', [Definition] = NULL, [SortOrder] = 238.80 WHERE [Code] = 'hoh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hhi', 'Hoia Hoia', NULL, 238.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hoia Hoia', [Definition] = NULL, [SortOrder] = 238.90 WHERE [Code] = 'hhi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoi', 'Holikachuk', NULL, 239.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holikachuk', [Definition] = NULL, [SortOrder] = 239.00 WHERE [Code] = 'hoi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoy', 'Holiya', NULL, 239.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holiya', [Definition] = NULL, [SortOrder] = 239.10 WHERE [Code] = 'hoy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hod', 'Holma', NULL, 239.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holma', [Definition] = NULL, [SortOrder] = 239.20 WHERE [Code] = 'hod' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoo', 'Holoholo', NULL, 239.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holoholo', [Definition] = NULL, [SortOrder] = 239.30 WHERE [Code] = 'hoo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hol', 'Holu', NULL, 239.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holu', [Definition] = NULL, [SortOrder] = 239.40 WHERE [Code] = 'hol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hom', 'Homa', NULL, 239.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Homa', [Definition] = NULL, [SortOrder] = 239.50 WHERE [Code] = 'hom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hds', 'Honduras Sign Language', NULL, 239.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Honduras Sign Language', [Definition] = NULL, [SortOrder] = 239.60 WHERE [Code] = 'hds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juh', 'Hõne', NULL, 239.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hõne', [Definition] = NULL, [SortOrder] = 239.70 WHERE [Code] = 'juh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hks', 'Hong Kong Sign Language', NULL, 239.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hong Kong Sign Language', [Definition] = NULL, [SortOrder] = 239.80 WHERE [Code] = 'hks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'how') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('how', 'Honi', NULL, 239.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Honi', [Definition] = NULL, [SortOrder] = 239.90 WHERE [Code] = 'how' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hop', 'Hopi', NULL, 240.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hopi', [Definition] = NULL, [SortOrder] = 240.00 WHERE [Code] = 'hop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrm', 'Horned Miao', NULL, 240.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Horned Miao', [Definition] = NULL, [SortOrder] = 240.10 WHERE [Code] = 'hrm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hor', 'Horo', NULL, 240.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Horo', [Definition] = NULL, [SortOrder] = 240.20 WHERE [Code] = 'hor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoe', 'Horom', NULL, 240.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Horom', [Definition] = NULL, [SortOrder] = 240.30 WHERE [Code] = 'hoe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ero') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ero', 'Horpa', NULL, 240.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Horpa', [Definition] = NULL, [SortOrder] = 240.40 WHERE [Code] = 'ero' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hot', 'Hote', NULL, 240.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hote', [Definition] = NULL, [SortOrder] = 240.50 WHERE [Code] = 'hot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hti', 'Hoti', NULL, 240.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hoti', [Definition] = NULL, [SortOrder] = 240.60 WHERE [Code] = 'hti' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hov', 'Hovongan', NULL, 240.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hovongan', [Definition] = NULL, [SortOrder] = 240.70 WHERE [Code] = 'hov' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hhy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hhy', 'Hoyahoya', NULL, 240.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hoyahoya', [Definition] = NULL, [SortOrder] = 240.80 WHERE [Code] = 'hhy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoz', 'Hozo', NULL, 240.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hozo', [Definition] = NULL, [SortOrder] = 240.90 WHERE [Code] = 'hoz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hpo', 'Hpon', NULL, 241.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hpon', [Definition] = NULL, [SortOrder] = 241.00 WHERE [Code] = 'hpo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hra', 'Hrangkhol', NULL, 241.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hrangkhol', [Definition] = NULL, [SortOrder] = 241.10 WHERE [Code] = 'hra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hre', 'Hre', NULL, 241.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hre', [Definition] = NULL, [SortOrder] = 241.20 WHERE [Code] = 'hre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hru', 'Hruso', NULL, 241.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hruso', [Definition] = NULL, [SortOrder] = 241.30 WHERE [Code] = 'hru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huo', 'Hu', NULL, 241.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hu', [Definition] = NULL, [SortOrder] = 241.40 WHERE [Code] = 'huo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hug', 'Huachipaeri', NULL, 241.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huachipaeri', [Definition] = NULL, [SortOrder] = 241.50 WHERE [Code] = 'hug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qub', 'Huallaga Huánuco Quechua', NULL, 241.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huallaga Huánuco Quechua', [Definition] = NULL, [SortOrder] = 241.60 WHERE [Code] = 'qub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvh', 'Huamalíes-Dos de Mayo Huánuco Quechua', NULL, 241.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huamalíes-Dos de Mayo Huánuco Quechua', [Definition] = NULL, [SortOrder] = 241.70 WHERE [Code] = 'qvh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hub', 'Huambisa', NULL, 241.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huambisa', [Definition] = NULL, [SortOrder] = 241.80 WHERE [Code] = 'hub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'var') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('var', 'Huarijio', NULL, 241.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huarijio', [Definition] = NULL, [SortOrder] = 241.90 WHERE [Code] = 'var' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hus', 'Huastec', NULL, 242.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huastec', [Definition] = NULL, [SortOrder] = 242.00 WHERE [Code] = 'hus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hud', 'Huaulu', NULL, 242.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huaulu', [Definition] = NULL, [SortOrder] = 242.10 WHERE [Code] = 'hud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mau', 'Huautla Mazatec', NULL, 242.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huautla Mazatec', [Definition] = NULL, [SortOrder] = 242.20 WHERE [Code] = 'mau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhq', 'Huaxcaleca Nahuatl', NULL, 242.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huaxcaleca Nahuatl', [Definition] = NULL, [SortOrder] = 242.30 WHERE [Code] = 'nhq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwh', 'Huaylas Ancash Quechua', NULL, 242.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huaylas Ancash Quechua', [Definition] = NULL, [SortOrder] = 242.40 WHERE [Code] = 'qwh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvw', 'Huaylla Wanca Quechua', NULL, 242.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huaylla Wanca Quechua', [Definition] = NULL, [SortOrder] = 242.50 WHERE [Code] = 'qvw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbb', 'Huba', NULL, 242.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huba', [Definition] = NULL, [SortOrder] = 242.60 WHERE [Code] = 'hbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tee', 'Huehuetla Tepehua', NULL, 242.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huehuetla Tepehua', [Definition] = NULL, [SortOrder] = 242.70 WHERE [Code] = 'tee' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hch', 'Huichol', NULL, 242.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huichol', [Definition] = NULL, [SortOrder] = 242.80 WHERE [Code] = 'hch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huh', 'Huilliche', NULL, 242.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huilliche', [Definition] = NULL, [SortOrder] = 242.90 WHERE [Code] = 'huh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxs', 'Huitepec Mixtec', NULL, 243.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huitepec Mixtec', [Definition] = NULL, [SortOrder] = 243.00 WHERE [Code] = 'mxs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czh', 'Huizhou Chinese', NULL, 243.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huizhou Chinese', [Definition] = NULL, [SortOrder] = 243.10 WHERE [Code] = 'czh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huw', 'Hukumina', NULL, 243.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hukumina', [Definition] = NULL, [SortOrder] = 243.20 WHERE [Code] = 'huw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hul', 'Hula', NULL, 243.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hula', [Definition] = NULL, [SortOrder] = 243.30 WHERE [Code] = 'hul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huy', 'Hulaulá', NULL, 243.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hulaulá', [Definition] = NULL, [SortOrder] = 243.40 WHERE [Code] = 'huy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hui', 'Huli', NULL, 243.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huli', [Definition] = NULL, [SortOrder] = 243.50 WHERE [Code] = 'hui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huk', 'Hulung', NULL, 243.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hulung', [Definition] = NULL, [SortOrder] = 243.60 WHERE [Code] = 'huk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmb', 'Humburi Senni Songhay', NULL, 243.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Humburi Senni Songhay', [Definition] = NULL, [SortOrder] = 243.70 WHERE [Code] = 'hmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huf', 'Humene', NULL, 243.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Humene', [Definition] = NULL, [SortOrder] = 243.80 WHERE [Code] = 'huf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hut', 'Humla', NULL, 243.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Humla', [Definition] = NULL, [SortOrder] = 243.90 WHERE [Code] = 'hut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hke', 'Hunde', NULL, 244.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunde', [Definition] = NULL, [SortOrder] = 244.00 WHERE [Code] = 'hke' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnu', 'Hung', NULL, 244.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hung', [Definition] = NULL, [SortOrder] = 244.10 WHERE [Code] = 'hnu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hum', 'Hungana', NULL, 244.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hungana', [Definition] = NULL, [SortOrder] = 244.20 WHERE [Code] = 'hum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hun', 'Hungarian', NULL, 244.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hungarian', [Definition] = NULL, [SortOrder] = 244.30 WHERE [Code] = 'hun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsh', 'Hungarian Sign Language', NULL, 244.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hungarian Sign Language', [Definition] = NULL, [SortOrder] = 244.40 WHERE [Code] = 'hsh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hng', 'Hungu', NULL, 244.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hungu', [Definition] = NULL, [SortOrder] = 244.50 WHERE [Code] = 'hng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hkk', 'Hunjara-Kaina Ke', NULL, 244.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunjara-Kaina Ke', [Definition] = NULL, [SortOrder] = 244.60 WHERE [Code] = 'hkk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhc', 'Hunnic', NULL, 244.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunnic', [Definition] = NULL, [SortOrder] = 244.70 WHERE [Code] = 'xhc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrx', 'Hunsrik', NULL, 244.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunsrik', [Definition] = NULL, [SortOrder] = 244.80 WHERE [Code] = 'hrx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huz', 'Hunzib', NULL, 244.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunzib', [Definition] = NULL, [SortOrder] = 244.90 WHERE [Code] = 'huz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hup', 'Hupa', NULL, 245.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hupa', [Definition] = NULL, [SortOrder] = 245.00 WHERE [Code] = 'hup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jup', 'Hupdë', NULL, 245.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hupdë', [Definition] = NULL, [SortOrder] = 245.10 WHERE [Code] = 'jup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hap', 'Hupla', NULL, 245.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hupla', [Definition] = NULL, [SortOrder] = 245.20 WHERE [Code] = 'hap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhu', 'Hurrian', NULL, 245.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hurrian', [Definition] = NULL, [SortOrder] = 245.30 WHERE [Code] = 'xhu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'geh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geh', 'Hutterite German', NULL, 245.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hutterite German', [Definition] = NULL, [SortOrder] = 245.40 WHERE [Code] = 'geh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hwo', 'Hwana', NULL, 245.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hwana', [Definition] = NULL, [SortOrder] = 245.50 WHERE [Code] = 'hwo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hya', 'Hya', NULL, 245.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hya', [Definition] = NULL, [SortOrder] = 245.60 WHERE [Code] = 'hya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jab', 'Hyam', NULL, 245.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hyam', [Definition] = NULL, [SortOrder] = 245.70 WHERE [Code] = 'jab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scp', 'Hyolmo', NULL, 245.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hyolmo', [Definition] = NULL, [SortOrder] = 245.80 WHERE [Code] = 'scp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iwk', 'I-Wak', NULL, 245.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'I-Wak', [Definition] = NULL, [SortOrder] = 245.90 WHERE [Code] = 'iwk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iai', 'Iaai', NULL, 246.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iaai', [Definition] = NULL, [SortOrder] = 246.00 WHERE [Code] = 'iai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yml', 'Iamalele', NULL, 246.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iamalele', [Definition] = NULL, [SortOrder] = 246.10 WHERE [Code] = 'yml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ian') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ian', 'Iatmul', NULL, 246.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iatmul', [Definition] = NULL, [SortOrder] = 246.20 WHERE [Code] = 'ian' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmu', 'Iau', NULL, 246.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iau', [Definition] = NULL, [SortOrder] = 246.30 WHERE [Code] = 'tmu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tek', 'Ibali Teke', NULL, 246.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibali Teke', [Definition] = NULL, [SortOrder] = 246.40 WHERE [Code] = 'tek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibl', 'Ibaloi', NULL, 246.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibaloi', [Definition] = NULL, [SortOrder] = 246.50 WHERE [Code] = 'ibl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iba', 'Iban', NULL, 246.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iban', [Definition] = NULL, [SortOrder] = 246.60 WHERE [Code] = 'iba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibg', 'Ibanag', NULL, 246.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibanag', [Definition] = NULL, [SortOrder] = 246.70 WHERE [Code] = 'ibg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iby', 'Ibani', NULL, 246.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibani', [Definition] = NULL, [SortOrder] = 246.80 WHERE [Code] = 'iby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ivb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ivb', 'Ibatan', NULL, 246.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibatan', [Definition] = NULL, [SortOrder] = 246.90 WHERE [Code] = 'ivb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xib', 'Iberian', NULL, 247.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iberian', [Definition] = NULL, [SortOrder] = 247.00 WHERE [Code] = 'xib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibb', 'Ibibio', NULL, 247.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibibio', [Definition] = NULL, [SortOrder] = 247.10 WHERE [Code] = 'ibb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibn', 'Ibino', NULL, 247.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibino', [Definition] = NULL, [SortOrder] = 247.20 WHERE [Code] = 'ibn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibu', 'Ibu', NULL, 247.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibu', [Definition] = NULL, [SortOrder] = 247.30 WHERE [Code] = 'ibu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibr', 'Ibuoro', NULL, 247.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibuoro', [Definition] = NULL, [SortOrder] = 247.40 WHERE [Code] = 'ibr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isl', 'Icelandic', NULL, 247.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Icelandic', [Definition] = NULL, [SortOrder] = 247.50 WHERE [Code] = 'isl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'icl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('icl', 'Icelandic Sign Language', NULL, 247.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Icelandic Sign Language', [Definition] = NULL, [SortOrder] = 247.60 WHERE [Code] = 'icl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bec', 'Iceve-Maci', NULL, 247.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iceve-Maci', [Definition] = NULL, [SortOrder] = 247.70 WHERE [Code] = 'bec' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbj', 'Ida''an', NULL, 247.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ida''an', [Definition] = NULL, [SortOrder] = 247.80 WHERE [Code] = 'dbj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ida') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ida', 'Idakho-Isukha-Tiriki', NULL, 247.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idakho-Isukha-Tiriki', [Definition] = NULL, [SortOrder] = 247.90 WHERE [Code] = 'ida' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idt', 'Idaté', NULL, 248.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idaté', [Definition] = NULL, [SortOrder] = 248.00 WHERE [Code] = 'idt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ide') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ide', 'Idere', NULL, 248.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idere', [Definition] = NULL, [SortOrder] = 248.10 WHERE [Code] = 'ide' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ids') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ids', 'Idesa', NULL, 248.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idesa', [Definition] = NULL, [SortOrder] = 248.20 WHERE [Code] = 'ids' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idi', 'Idi', NULL, 248.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idi', [Definition] = NULL, [SortOrder] = 248.30 WHERE [Code] = 'idi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ido') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ido', 'Ido', NULL, 248.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ido', [Definition] = NULL, [SortOrder] = 248.40 WHERE [Code] = 'ido' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idu', 'Idoma', NULL, 248.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idoma', [Definition] = NULL, [SortOrder] = 248.50 WHERE [Code] = 'idu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idc', 'Idon', NULL, 248.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idon', [Definition] = NULL, [SortOrder] = 248.60 WHERE [Code] = 'idc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clk', 'Idu-Mishmi', NULL, 248.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idu-Mishmi', [Definition] = NULL, [SortOrder] = 248.70 WHERE [Code] = 'clk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'viv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('viv', 'Iduna', NULL, 248.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iduna', [Definition] = NULL, [SortOrder] = 248.80 WHERE [Code] = 'viv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ife') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ife', 'Ifè', NULL, 248.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ifè', [Definition] = NULL, [SortOrder] = 248.90 WHERE [Code] = 'ife' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iff') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iff', 'Ifo', NULL, 249.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ifo', [Definition] = NULL, [SortOrder] = 249.00 WHERE [Code] = 'iff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igl', 'Igala', NULL, 249.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igala', [Definition] = NULL, [SortOrder] = 249.10 WHERE [Code] = 'igl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igg', 'Igana', NULL, 249.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igana', [Definition] = NULL, [SortOrder] = 249.20 WHERE [Code] = 'igg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibo', 'Igbo', NULL, 249.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igbo', [Definition] = NULL, [SortOrder] = 249.30 WHERE [Code] = 'ibo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ige') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ige', 'Igede', NULL, 249.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igede', [Definition] = NULL, [SortOrder] = 249.40 WHERE [Code] = 'ige' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ign') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ign', 'Ignaciano', NULL, 249.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ignaciano', [Definition] = NULL, [SortOrder] = 249.50 WHERE [Code] = 'ign' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahl', 'Igo', NULL, 249.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igo', [Definition] = NULL, [SortOrder] = 249.60 WHERE [Code] = 'ahl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nar', 'Iguta', NULL, 249.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iguta', [Definition] = NULL, [SortOrder] = 249.70 WHERE [Code] = 'nar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igw', 'Igwe', NULL, 249.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igwe', [Definition] = NULL, [SortOrder] = 249.80 WHERE [Code] = 'igw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ihp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ihp', 'Iha', NULL, 249.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iha', [Definition] = NULL, [SortOrder] = 249.90 WHERE [Code] = 'ihp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ihb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ihb', 'Iha Based Pidgin', NULL, 250.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iha Based Pidgin', [Definition] = NULL, [SortOrder] = 250.00 WHERE [Code] = 'ihb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ihi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ihi', 'Ihievbe', NULL, 250.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ihievbe', [Definition] = NULL, [SortOrder] = 250.10 WHERE [Code] = 'ihi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikx', 'Ik', NULL, 250.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ik', [Definition] = NULL, [SortOrder] = 250.20 WHERE [Code] = 'ikx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikk', 'Ika', NULL, 250.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ika', [Definition] = NULL, [SortOrder] = 250.30 WHERE [Code] = 'ikk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikr', 'Ikaranggal', NULL, 250.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikaranggal', [Definition] = NULL, [SortOrder] = 250.40 WHERE [Code] = 'ikr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikz', 'Ikizu', NULL, 250.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikizu', [Definition] = NULL, [SortOrder] = 250.50 WHERE [Code] = 'ikz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iki', 'Iko', NULL, 250.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iko', [Definition] = NULL, [SortOrder] = 250.60 WHERE [Code] = 'iki' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meb', 'Ikobi', NULL, 250.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikobi', [Definition] = NULL, [SortOrder] = 250.70 WHERE [Code] = 'meb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntk', 'Ikoma-Nata-Isenye', NULL, 250.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikoma-Nata-Isenye', [Definition] = NULL, [SortOrder] = 250.80 WHERE [Code] = 'ntk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txi', 'Ikpeng', NULL, 250.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikpeng', [Definition] = NULL, [SortOrder] = 250.90 WHERE [Code] = 'txi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikp', 'Ikpeshi', NULL, 251.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikpeshi', [Definition] = NULL, [SortOrder] = 251.00 WHERE [Code] = 'ikp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpo', 'Ikposo', NULL, 251.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikposo', [Definition] = NULL, [SortOrder] = 251.10 WHERE [Code] = 'kpo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikv', 'Iku-Gora-Ankwa', NULL, 251.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iku-Gora-Ankwa', [Definition] = NULL, [SortOrder] = 251.20 WHERE [Code] = 'ikv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikl', 'Ikulu', NULL, 251.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikulu', [Definition] = NULL, [SortOrder] = 251.30 WHERE [Code] = 'ikl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikw', 'Ikwere', NULL, 251.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikwere', [Definition] = NULL, [SortOrder] = 251.40 WHERE [Code] = 'ikw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iqw', 'Ikwo', NULL, 251.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikwo', [Definition] = NULL, [SortOrder] = 251.50 WHERE [Code] = 'iqw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilb', 'Ila', NULL, 251.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ila', [Definition] = NULL, [SortOrder] = 251.60 WHERE [Code] = 'ilb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ila') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ila', 'Ile Ape', NULL, 251.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ile Ape', [Definition] = NULL, [SortOrder] = 251.70 WHERE [Code] = 'ila' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ili') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ili', 'Ili Turki', NULL, 251.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ili Turki', [Definition] = NULL, [SortOrder] = 251.80 WHERE [Code] = 'ili' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilu', 'Ili''uun', NULL, 251.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ili''uun', [Definition] = NULL, [SortOrder] = 251.90 WHERE [Code] = 'ilu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbi', 'Ilianen Manobo', NULL, 252.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ilianen Manobo', [Definition] = NULL, [SortOrder] = 252.00 WHERE [Code] = 'mbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xil', 'Illyrian', NULL, 252.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Illyrian', [Definition] = NULL, [SortOrder] = 252.10 WHERE [Code] = 'xil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilo', 'Iloko', NULL, 252.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iloko', [Definition] = NULL, [SortOrder] = 252.20 WHERE [Code] = 'ilo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilk', 'Ilongot', NULL, 252.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ilongot', [Definition] = NULL, [SortOrder] = 252.30 WHERE [Code] = 'ilk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilv', 'Ilue', NULL, 252.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ilue', [Definition] = NULL, [SortOrder] = 252.40 WHERE [Code] = 'ilv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlk', 'Ilwana', NULL, 252.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ilwana', [Definition] = NULL, [SortOrder] = 252.50 WHERE [Code] = 'mlk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvi', 'Imbabura Highland Quichua', NULL, 252.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imbabura Highland Quichua', [Definition] = NULL, [SortOrder] = 252.60 WHERE [Code] = 'qvi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imo', 'Imbongu', NULL, 252.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imbongu', [Definition] = NULL, [SortOrder] = 252.70 WHERE [Code] = 'imo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imn', 'Imonda', NULL, 252.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imonda', [Definition] = NULL, [SortOrder] = 252.80 WHERE [Code] = 'imn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imt', 'Imotong', NULL, 252.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imotong', [Definition] = NULL, [SortOrder] = 252.90 WHERE [Code] = 'imt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imr', 'Imroing', NULL, 253.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imroing', [Definition] = NULL, [SortOrder] = 253.00 WHERE [Code] = 'imr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abx', 'Inabaknon', NULL, 253.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inabaknon', [Definition] = NULL, [SortOrder] = 253.10 WHERE [Code] = 'abx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzu', 'Inapang', NULL, 253.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inapang', [Definition] = NULL, [SortOrder] = 253.20 WHERE [Code] = 'mzu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inp', 'Iñapari', NULL, 253.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iñapari', [Definition] = NULL, [SortOrder] = 253.30 WHERE [Code] = 'inp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smn', 'Inari Sami', NULL, 253.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inari Sami', [Definition] = NULL, [SortOrder] = 253.40 WHERE [Code] = 'smn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ins') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ins', 'Indian Sign Language', NULL, 253.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indian Sign Language', [Definition] = NULL, [SortOrder] = 253.50 WHERE [Code] = 'ins' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idb', 'Indo-Portuguese', NULL, 253.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indo-Portuguese', [Definition] = NULL, [SortOrder] = 253.60 WHERE [Code] = 'idb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ind') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ind', 'Indonesian', NULL, 253.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indonesian', [Definition] = NULL, [SortOrder] = 253.70 WHERE [Code] = 'ind' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdl', 'Indonesian Bajau', NULL, 253.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indonesian Bajau', [Definition] = NULL, [SortOrder] = 253.80 WHERE [Code] = 'bdl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inl', 'Indonesian Sign Language', NULL, 253.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indonesian Sign Language', [Definition] = NULL, [SortOrder] = 253.90 WHERE [Code] = 'inl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idr', 'Indri', NULL, 254.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indri', [Definition] = NULL, [SortOrder] = 254.00 WHERE [Code] = 'idr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvy', 'Indus Kohistani', NULL, 254.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indus Kohistani', [Definition] = NULL, [SortOrder] = 254.10 WHERE [Code] = 'mvy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xiv', 'Indus Valley Language', NULL, 254.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indus Valley Language', [Definition] = NULL, [SortOrder] = 254.20 WHERE [Code] = 'xiv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oin', 'Inebu One', NULL, 254.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inebu One', [Definition] = NULL, [SortOrder] = 254.30 WHERE [Code] = 'oin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inz', 'Ineseño', NULL, 254.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ineseño', [Definition] = NULL, [SortOrder] = 254.40 WHERE [Code] = 'inz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inb', 'Inga', NULL, 254.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inga', [Definition] = NULL, [SortOrder] = 254.50 WHERE [Code] = 'inb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'izh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('izh', 'Ingrian', NULL, 254.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ingrian', [Definition] = NULL, [SortOrder] = 254.60 WHERE [Code] = 'izh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inh', 'Ingush', NULL, 254.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ingush', [Definition] = NULL, [SortOrder] = 254.70 WHERE [Code] = 'inh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iti', 'Inlaod Itneg', NULL, 254.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inlaod Itneg', [Definition] = NULL, [SortOrder] = 254.80 WHERE [Code] = 'iti' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moe', 'Innu', NULL, 254.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Innu', [Definition] = NULL, [SortOrder] = 254.90 WHERE [Code] = 'moe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ino') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ino', 'Inoke-Yate', NULL, 255.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inoke-Yate', [Definition] = NULL, [SortOrder] = 255.00 WHERE [Code] = 'ino' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loc', 'Inonhan', NULL, 255.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inonhan', [Definition] = NULL, [SortOrder] = 255.10 WHERE [Code] = 'loc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ior') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ior', 'Inor', NULL, 255.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inor', [Definition] = NULL, [SortOrder] = 255.20 WHERE [Code] = 'ior' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkf', 'Inpui Naga', NULL, 255.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inpui Naga', [Definition] = NULL, [SortOrder] = 255.30 WHERE [Code] = 'nkf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igs', 'Interglossa', NULL, 255.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Interglossa', [Definition] = NULL, [SortOrder] = 255.40 WHERE [Code] = 'igs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ina') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ina', 'Interlingua (International Auxiliary Language Association)', NULL, 255.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Interlingua (International Auxiliary Language Association)', [Definition] = NULL, [SortOrder] = 255.50 WHERE [Code] = 'ina' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ile') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ile', 'Interlingue', NULL, 255.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Interlingue', [Definition] = NULL, [SortOrder] = 255.60 WHERE [Code] = 'ile' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ils') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ils', 'International Sign', NULL, 255.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'International Sign', [Definition] = NULL, [SortOrder] = 255.70 WHERE [Code] = 'ils' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'int') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('int', 'Intha', NULL, 255.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Intha', [Definition] = NULL, [SortOrder] = 255.80 WHERE [Code] = 'int' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikt', 'Inuinnaqtun', NULL, 255.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inuinnaqtun', [Definition] = NULL, [SortOrder] = 255.90 WHERE [Code] = 'ikt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iks', 'Inuit Sign Language', NULL, 256.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inuit Sign Language', [Definition] = NULL, [SortOrder] = 256.00 WHERE [Code] = 'iks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iku', 'Inuktitut', NULL, 256.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inuktitut', [Definition] = NULL, [SortOrder] = 256.10 WHERE [Code] = 'iku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ipk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ipk', 'Inupiaq', NULL, 256.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inupiaq', [Definition] = NULL, [SortOrder] = 256.20 WHERE [Code] = 'ipk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iow', 'Iowa-Oto', NULL, 256.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iowa-Oto', [Definition] = NULL, [SortOrder] = 256.30 WHERE [Code] = 'iow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azm', 'Ipalapa Amuzgo', NULL, 256.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ipalapa Amuzgo', [Definition] = NULL, [SortOrder] = 256.40 WHERE [Code] = 'azm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ipo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ipo', 'Ipiko', NULL, 256.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ipiko', [Definition] = NULL, [SortOrder] = 256.50 WHERE [Code] = 'ipo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ipi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ipi', 'Ipili', NULL, 256.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ipili', [Definition] = NULL, [SortOrder] = 256.60 WHERE [Code] = 'ipi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ass') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ass', 'Ipulo', NULL, 256.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ipulo', [Definition] = NULL, [SortOrder] = 256.70 WHERE [Code] = 'ass' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iqu', 'Iquito', NULL, 256.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iquito', [Definition] = NULL, [SortOrder] = 256.80 WHERE [Code] = 'iqu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irr', 'Ir', NULL, 256.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ir', [Definition] = NULL, [SortOrder] = 256.90 WHERE [Code] = 'irr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pes', 'Iranian Persian', NULL, 257.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iranian Persian', [Definition] = NULL, [SortOrder] = 257.00 WHERE [Code] = 'pes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irn', 'Irántxe', NULL, 257.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irántxe', [Definition] = NULL, [SortOrder] = 257.10 WHERE [Code] = 'irn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilm', 'Iranun (Malaysia)', NULL, 257.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iranun (Malaysia)', [Definition] = NULL, [SortOrder] = 257.20 WHERE [Code] = 'ilm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilp', 'Iranun (Philippines)', NULL, 257.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iranun (Philippines)', [Definition] = NULL, [SortOrder] = 257.30 WHERE [Code] = 'ilp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irk', 'Iraqw', NULL, 257.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iraqw', [Definition] = NULL, [SortOrder] = 257.40 WHERE [Code] = 'irk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irh', 'Irarutu', NULL, 257.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irarutu', [Definition] = NULL, [SortOrder] = 257.50 WHERE [Code] = 'irh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iry', 'Iraya', NULL, 257.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iraya', [Definition] = NULL, [SortOrder] = 257.60 WHERE [Code] = 'iry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ire') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ire', 'Iresim', NULL, 257.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iresim', [Definition] = NULL, [SortOrder] = 257.70 WHERE [Code] = 'ire' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gle', 'Irish', NULL, 257.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irish', [Definition] = NULL, [SortOrder] = 257.80 WHERE [Code] = 'gle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isg', 'Irish Sign Language', NULL, 257.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irish Sign Language', [Definition] = NULL, [SortOrder] = 257.90 WHERE [Code] = 'isg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iru', 'Irula', NULL, 258.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irula', [Definition] = NULL, [SortOrder] = 258.00 WHERE [Code] = 'iru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isa', 'Isabi', NULL, 258.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isabi', [Definition] = NULL, [SortOrder] = 258.10 WHERE [Code] = 'isa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isn', 'Isanzu', NULL, 258.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isanzu', [Definition] = NULL, [SortOrder] = 258.20 WHERE [Code] = 'isn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agk', 'Isarog Agta', NULL, 258.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isarog Agta', [Definition] = NULL, [SortOrder] = 258.30 WHERE [Code] = 'agk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isc', 'Isconahua', NULL, 258.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isconahua', [Definition] = NULL, [SortOrder] = 258.40 WHERE [Code] = 'isc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igo', 'Isebe', NULL, 258.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isebe', [Definition] = NULL, [SortOrder] = 258.50 WHERE [Code] = 'igo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'its') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('its', 'Isekiri', NULL, 258.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isekiri', [Definition] = NULL, [SortOrder] = 258.60 WHERE [Code] = 'its' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isk', 'Ishkashimi', NULL, 258.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ishkashimi', [Definition] = NULL, [SortOrder] = 258.70 WHERE [Code] = 'isk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inn', 'Isinai', NULL, 258.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isinai', [Definition] = NULL, [SortOrder] = 258.80 WHERE [Code] = 'inn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srl', 'Isirawa', NULL, 258.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isirawa', [Definition] = NULL, [SortOrder] = 258.90 WHERE [Code] = 'srl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crb', 'Island Carib', NULL, 259.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Island Carib', [Definition] = NULL, [SortOrder] = 259.00 WHERE [Code] = 'crb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'icr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('icr', 'Islander Creole English', NULL, 259.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Islander Creole English', [Definition] = NULL, [SortOrder] = 259.10 WHERE [Code] = 'icr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isd', 'Isnag', NULL, 259.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isnag', [Definition] = NULL, [SortOrder] = 259.20 WHERE [Code] = 'isd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iso', 'Isoko', NULL, 259.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isoko', [Definition] = NULL, [SortOrder] = 259.30 WHERE [Code] = 'iso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isr', 'Israeli Sign Language', NULL, 259.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Israeli Sign Language', [Definition] = NULL, [SortOrder] = 259.40 WHERE [Code] = 'isr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mir', 'Isthmus Mixe', NULL, 259.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus Mixe', [Definition] = NULL, [SortOrder] = 259.50 WHERE [Code] = 'mir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zai', 'Isthmus Zapotec', NULL, 259.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus Zapotec', [Definition] = NULL, [SortOrder] = 259.60 WHERE [Code] = 'zai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhk', 'Isthmus-Cosoleacaque Nahuatl', NULL, 259.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus-Cosoleacaque Nahuatl', [Definition] = NULL, [SortOrder] = 259.70 WHERE [Code] = 'nhk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhx', 'Isthmus-Mecayapan Nahuatl', NULL, 259.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus-Mecayapan Nahuatl', [Definition] = NULL, [SortOrder] = 259.80 WHERE [Code] = 'nhx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhp', 'Isthmus-Pajapan Nahuatl', NULL, 259.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus-Pajapan Nahuatl', [Definition] = NULL, [SortOrder] = 259.90 WHERE [Code] = 'nhp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ist') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ist', 'Istriot', NULL, 260.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Istriot', [Definition] = NULL, [SortOrder] = 260.00 WHERE [Code] = 'ist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruo', 'Istro Romanian', NULL, 260.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Istro Romanian', [Definition] = NULL, [SortOrder] = 260.10 WHERE [Code] = 'ruo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szv', 'Isu (Fako Division)', NULL, 260.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isu (Fako Division)', [Definition] = NULL, [SortOrder] = 260.20 WHERE [Code] = 'szv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isu', 'Isu (Menchum Division)', NULL, 260.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isu (Menchum Division)', [Definition] = NULL, [SortOrder] = 260.30 WHERE [Code] = 'isu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ita') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ita', 'Italian', NULL, 260.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Italian', [Definition] = NULL, [SortOrder] = 260.40 WHERE [Code] = 'ita' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ise') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ise', 'Italian Sign Language', NULL, 260.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Italian Sign Language', [Definition] = NULL, [SortOrder] = 260.50 WHERE [Code] = 'ise' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itv', 'Itawit', NULL, 260.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itawit', [Definition] = NULL, [SortOrder] = 260.60 WHERE [Code] = 'itv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itl', 'Itelmen', NULL, 260.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itelmen', [Definition] = NULL, [SortOrder] = 260.70 WHERE [Code] = 'itl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ite') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ite', 'Itene', NULL, 260.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itene', [Definition] = NULL, [SortOrder] = 260.80 WHERE [Code] = 'ite' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itr', 'Iteri', NULL, 260.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iteri', [Definition] = NULL, [SortOrder] = 260.90 WHERE [Code] = 'itr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itx', 'Itik', NULL, 261.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itik', [Definition] = NULL, [SortOrder] = 261.00 WHERE [Code] = 'itx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itw', 'Ito', NULL, 261.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ito', [Definition] = NULL, [SortOrder] = 261.10 WHERE [Code] = 'itw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ito') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ito', 'Itonama', NULL, 261.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itonama', [Definition] = NULL, [SortOrder] = 261.20 WHERE [Code] = 'ito' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itm', 'Itu Mbon Uzo', NULL, 261.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itu Mbon Uzo', [Definition] = NULL, [SortOrder] = 261.30 WHERE [Code] = 'itm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mce', 'Itundujia Mixtec', NULL, 261.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itundujia Mixtec', [Definition] = NULL, [SortOrder] = 261.40 WHERE [Code] = 'mce' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itz', 'Itzá', NULL, 261.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itzá', [Definition] = NULL, [SortOrder] = 261.50 WHERE [Code] = 'itz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ium') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ium', 'Iu Mien', NULL, 261.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iu Mien', [Definition] = NULL, [SortOrder] = 261.60 WHERE [Code] = 'ium' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ivv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ivv', 'Ivatan', NULL, 261.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ivatan', [Definition] = NULL, [SortOrder] = 261.70 WHERE [Code] = 'ivv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atg', 'Ivbie North-Okpela-Arhe', NULL, 261.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ivbie North-Okpela-Arhe', [Definition] = NULL, [SortOrder] = 261.80 WHERE [Code] = 'atg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibd', 'Iwaidja', NULL, 261.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iwaidja', [Definition] = NULL, [SortOrder] = 261.90 WHERE [Code] = 'ibd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbm', 'Iwal', NULL, 262.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iwal', [Definition] = NULL, [SortOrder] = 262.00 WHERE [Code] = 'kbm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iwm', 'Iwam', NULL, 262.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iwam', [Definition] = NULL, [SortOrder] = 262.10 WHERE [Code] = 'iwm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iwo', 'Iwur', NULL, 262.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iwur', [Definition] = NULL, [SortOrder] = 262.20 WHERE [Code] = 'iwo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ixc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ixc', 'Ixcatec', NULL, 262.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixcatec', [Definition] = NULL, [SortOrder] = 262.30 WHERE [Code] = 'ixc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzi', 'Ixcatlán Mazatec', NULL, 262.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixcatlán Mazatec', [Definition] = NULL, [SortOrder] = 262.40 WHERE [Code] = 'mzi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ixl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ixl', 'Ixil', NULL, 262.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixil', [Definition] = NULL, [SortOrder] = 262.50 WHERE [Code] = 'ixl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmj', 'Ixtayutla Mixtec', NULL, 262.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixtayutla Mixtec', [Definition] = NULL, [SortOrder] = 262.60 WHERE [Code] = 'vmj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otz', 'Ixtenco Otomi', NULL, 262.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixtenco Otomi', [Definition] = NULL, [SortOrder] = 262.70 WHERE [Code] = 'otz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iya', 'Iyayu', NULL, 262.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyayu', [Definition] = NULL, [SortOrder] = 262.80 WHERE [Code] = 'iya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uiv', 'Iyive', NULL, 262.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyive', [Definition] = NULL, [SortOrder] = 262.90 WHERE [Code] = 'uiv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nca', 'Iyo', NULL, 263.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyo', [Definition] = NULL, [SortOrder] = 263.00 WHERE [Code] = 'nca' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crq', 'Iyo''wujwa Chorote', NULL, 263.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyo''wujwa Chorote', [Definition] = NULL, [SortOrder] = 263.10 WHERE [Code] = 'crq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crt', 'Iyojwa''ja Chorote', NULL, 263.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyojwa''ja Chorote', [Definition] = NULL, [SortOrder] = 263.20 WHERE [Code] = 'crt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'izr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('izr', 'Izere', NULL, 263.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Izere', [Definition] = NULL, [SortOrder] = 263.30 WHERE [Code] = 'izr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'izz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('izz', 'Izii', NULL, 263.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Izii', [Definition] = NULL, [SortOrder] = 263.40 WHERE [Code] = 'izz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ijc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijc', 'Izon', NULL, 263.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Izon', [Definition] = NULL, [SortOrder] = 263.50 WHERE [Code] = 'ijc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbo', 'Izora', NULL, 263.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Izora', [Definition] = NULL, [SortOrder] = 263.60 WHERE [Code] = 'cbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbt', 'Jabutí', NULL, 263.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jabutí', [Definition] = NULL, [SortOrder] = 263.70 WHERE [Code] = 'jbt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jda', 'Jad', NULL, 263.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jad', [Definition] = NULL, [SortOrder] = 263.80 WHERE [Code] = 'jda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jdg', 'Jadgali', NULL, 263.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jadgali', [Definition] = NULL, [SortOrder] = 263.90 WHERE [Code] = 'jdg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jah', 'Jah Hut', NULL, 264.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jah Hut', [Definition] = NULL, [SortOrder] = 264.00 WHERE [Code] = 'jah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jad', 'Jahanka', NULL, 264.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jahanka', [Definition] = NULL, [SortOrder] = 264.10 WHERE [Code] = 'jad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awv', 'Jair Awyu', NULL, 264.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jair Awyu', [Definition] = NULL, [SortOrder] = 264.20 WHERE [Code] = 'awv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xjt', 'Jaitmatang', NULL, 264.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaitmatang', [Definition] = NULL, [SortOrder] = 264.30 WHERE [Code] = 'xjt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jat', 'Jakati', NULL, 264.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jakati', [Definition] = NULL, [SortOrder] = 264.40 WHERE [Code] = 'jat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jrt', 'Jakattoe', NULL, 264.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jakattoe', [Definition] = NULL, [SortOrder] = 264.50 WHERE [Code] = 'jrt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jak', 'Jakun', NULL, 264.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jakun', [Definition] = NULL, [SortOrder] = 264.60 WHERE [Code] = 'jak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maj', 'Jalapa De Díaz Mazatec', NULL, 264.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jalapa De Díaz Mazatec', [Definition] = NULL, [SortOrder] = 264.70 WHERE [Code] = 'maj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxl', 'Jalkunan', NULL, 264.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jalkunan', [Definition] = NULL, [SortOrder] = 264.80 WHERE [Code] = 'bxl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jcs', 'Jamaican Country Sign Language', NULL, 264.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamaican Country Sign Language', [Definition] = NULL, [SortOrder] = 264.90 WHERE [Code] = 'jcs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jam', 'Jamaican Creole English', NULL, 265.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamaican Creole English', [Definition] = NULL, [SortOrder] = 265.00 WHERE [Code] = 'jam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jls', 'Jamaican Sign Language', NULL, 265.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamaican Sign Language', [Definition] = NULL, [SortOrder] = 265.10 WHERE [Code] = 'jls' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaa', 'Jamamadí', NULL, 265.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamamadí', [Definition] = NULL, [SortOrder] = 265.20 WHERE [Code] = 'jaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jax', 'Jambi Malay', NULL, 265.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jambi Malay', [Definition] = NULL, [SortOrder] = 265.30 WHERE [Code] = 'jax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxt', 'Jamiltepec Mixtec', NULL, 265.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamiltepec Mixtec', [Definition] = NULL, [SortOrder] = 265.40 WHERE [Code] = 'mxt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djm', 'Jamsay Dogon', NULL, 265.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamsay Dogon', [Definition] = NULL, [SortOrder] = 265.50 WHERE [Code] = 'djm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jan', 'Jandai', NULL, 265.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jandai', [Definition] = NULL, [SortOrder] = 265.60 WHERE [Code] = 'jan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jnd', 'Jandavra', NULL, 265.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jandavra', [Definition] = NULL, [SortOrder] = 265.70 WHERE [Code] = 'jnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djo', 'Jangkang', NULL, 265.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jangkang', [Definition] = NULL, [SortOrder] = 265.80 WHERE [Code] = 'djo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jna', 'Jangshung', NULL, 265.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jangshung', [Definition] = NULL, [SortOrder] = 265.90 WHERE [Code] = 'jna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jni', 'Janji', NULL, 266.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Janji', [Definition] = NULL, [SortOrder] = 266.00 WHERE [Code] = 'jni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpn', 'Japanese', NULL, 266.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Japanese', [Definition] = NULL, [SortOrder] = 266.10 WHERE [Code] = 'jpn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jsl', 'Japanese Sign Language', NULL, 266.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Japanese Sign Language', [Definition] = NULL, [SortOrder] = 266.20 WHERE [Code] = 'jsl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jru', 'Japrería', NULL, 266.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Japrería', [Definition] = NULL, [SortOrder] = 266.30 WHERE [Code] = 'jru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jqr', 'Jaqaru', NULL, 266.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaqaru', [Definition] = NULL, [SortOrder] = 266.40 WHERE [Code] = 'jqr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaf', 'Jara', NULL, 266.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jara', [Definition] = NULL, [SortOrder] = 266.50 WHERE [Code] = 'jaf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jra', 'Jarai', NULL, 266.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jarai', [Definition] = NULL, [SortOrder] = 266.60 WHERE [Code] = 'jra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anq', 'Jarawa (India)', NULL, 266.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jarawa (India)', [Definition] = NULL, [SortOrder] = 266.70 WHERE [Code] = 'anq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddj', 'Jaru', NULL, 266.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaru', [Definition] = NULL, [SortOrder] = 266.80 WHERE [Code] = 'ddj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxw', 'Jauja Wanca Quechua', NULL, 266.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jauja Wanca Quechua', [Definition] = NULL, [SortOrder] = 266.90 WHERE [Code] = 'qxw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jns', 'Jaunsari', NULL, 267.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaunsari', [Definition] = NULL, [SortOrder] = 267.00 WHERE [Code] = 'jns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jav', 'Javanese', NULL, 267.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Javanese', [Definition] = NULL, [SortOrder] = 267.10 WHERE [Code] = 'jav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jvd', 'Javindo', NULL, 267.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Javindo', [Definition] = NULL, [SortOrder] = 267.20 WHERE [Code] = 'jvd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaz', 'Jawe', NULL, 267.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jawe', [Definition] = NULL, [SortOrder] = 267.30 WHERE [Code] = 'jaz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djn', 'Jawoyn', NULL, 267.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jawoyn', [Definition] = NULL, [SortOrder] = 267.40 WHERE [Code] = 'djn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jyy', 'Jaya', NULL, 267.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaya', [Definition] = NULL, [SortOrder] = 267.50 WHERE [Code] = 'jyy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jeb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jeb', 'Jebero', NULL, 267.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jebero', [Definition] = NULL, [SortOrder] = 267.60 WHERE [Code] = 'jeb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jeh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jeh', 'Jeh', NULL, 267.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jeh', [Definition] = NULL, [SortOrder] = 267.70 WHERE [Code] = 'jeh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jhi', 'Jehai', NULL, 267.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jehai', [Definition] = NULL, [SortOrder] = 267.80 WHERE [Code] = 'jhi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jje', 'Jejueo', NULL, 267.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jejueo', [Definition] = NULL, [SortOrder] = 267.90 WHERE [Code] = 'jje' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tow', 'Jemez', NULL, 268.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jemez', [Definition] = NULL, [SortOrder] = 268.00 WHERE [Code] = 'tow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bze', 'Jenaama Bozo', NULL, 268.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jenaama Bozo', [Definition] = NULL, [SortOrder] = 268.10 WHERE [Code] = 'bze' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xuj', 'Jennu Kurumba', NULL, 268.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jennu Kurumba', [Definition] = NULL, [SortOrder] = 268.20 WHERE [Code] = 'xuj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jer', 'Jere', NULL, 268.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jere', [Definition] = NULL, [SortOrder] = 268.30 WHERE [Code] = 'jer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jek', 'Jeri Kuo', NULL, 268.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jeri Kuo', [Definition] = NULL, [SortOrder] = 268.40 WHERE [Code] = 'jek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrf', 'Jèrriais', NULL, 268.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jèrriais', [Definition] = NULL, [SortOrder] = 268.50 WHERE [Code] = 'nrf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jee', 'Jerung', NULL, 268.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jerung', [Definition] = NULL, [SortOrder] = 268.60 WHERE [Code] = 'jee' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmr', 'Jewish Babylonian Aramaic (ca. 200-1200 CE)', NULL, 268.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jewish Babylonian Aramaic (ca. 200-1200 CE)', [Definition] = NULL, [SortOrder] = 268.70 WHERE [Code] = 'tmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpa', 'Jewish Palestinian Aramaic', NULL, 268.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jewish Palestinian Aramaic', [Definition] = NULL, [SortOrder] = 268.80 WHERE [Code] = 'jpa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jhs', 'Jhankot Sign Language', NULL, 268.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jhankot Sign Language', [Definition] = NULL, [SortOrder] = 268.90 WHERE [Code] = 'jhs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jio', 'Jiamao', NULL, 269.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiamao', [Definition] = NULL, [SortOrder] = 269.00 WHERE [Code] = 'jio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jya', 'Jiarong', NULL, 269.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiarong', [Definition] = NULL, [SortOrder] = 269.10 WHERE [Code] = 'jya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juo', 'Jiba', NULL, 269.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiba', [Definition] = NULL, [SortOrder] = 269.20 WHERE [Code] = 'juo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jib', 'Jibu', NULL, 269.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jibu', [Definition] = NULL, [SortOrder] = 269.30 WHERE [Code] = 'jib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apj', 'Jicarilla Apache', NULL, 269.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jicarilla Apache', [Definition] = NULL, [SortOrder] = 269.40 WHERE [Code] = 'apj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jii', 'Jiiddu', NULL, 269.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiiddu', [Definition] = NULL, [SortOrder] = 269.50 WHERE [Code] = 'jii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jie', 'Jilbe', NULL, 269.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jilbe', [Definition] = NULL, [SortOrder] = 269.60 WHERE [Code] = 'jie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jil', 'Jilim', NULL, 269.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jilim', [Definition] = NULL, [SortOrder] = 269.70 WHERE [Code] = 'jil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jim', 'Jimi (Cameroon)', NULL, 269.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jimi (Cameroon)', [Definition] = NULL, [SortOrder] = 269.80 WHERE [Code] = 'jim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmi', 'Jimi (Nigeria)', NULL, 269.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jimi (Nigeria)', [Definition] = NULL, [SortOrder] = 269.90 WHERE [Code] = 'jmi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jia', 'Jina', NULL, 270.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jina', [Definition] = NULL, [SortOrder] = 270.00 WHERE [Code] = 'jia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jig', 'Jingulu', NULL, 270.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jingulu', [Definition] = NULL, [SortOrder] = 270.10 WHERE [Code] = 'jig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjy', 'Jinyu Chinese', NULL, 270.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jinyu Chinese', [Definition] = NULL, [SortOrder] = 270.20 WHERE [Code] = 'cjy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnu', 'Jiongnai Bunu', NULL, 270.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiongnai Bunu', [Definition] = NULL, [SortOrder] = 270.30 WHERE [Code] = 'pnu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jul', 'Jirel', NULL, 270.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jirel', [Definition] = NULL, [SortOrder] = 270.40 WHERE [Code] = 'jul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jrr', 'Jiru', NULL, 270.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiru', [Definition] = NULL, [SortOrder] = 270.50 WHERE [Code] = 'jrr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jit', 'Jita', NULL, 270.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jita', [Definition] = NULL, [SortOrder] = 270.60 WHERE [Code] = 'jit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaj', 'Jju', NULL, 270.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jju', [Definition] = NULL, [SortOrder] = 270.70 WHERE [Code] = 'kaj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'job') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('job', 'Joba', NULL, 270.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Joba', [Definition] = NULL, [SortOrder] = 270.80 WHERE [Code] = 'job' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbr', 'Jofotek-Bromnya', NULL, 270.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jofotek-Bromnya', [Definition] = NULL, [SortOrder] = 270.90 WHERE [Code] = 'jbr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jog', 'Jogi', NULL, 271.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jogi', [Definition] = NULL, [SortOrder] = 271.00 WHERE [Code] = 'jog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyo', 'Jola-Fonyi', NULL, 271.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jola-Fonyi', [Definition] = NULL, [SortOrder] = 271.10 WHERE [Code] = 'dyo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csk', 'Jola-Kasa', NULL, 271.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jola-Kasa', [Definition] = NULL, [SortOrder] = 271.20 WHERE [Code] = 'csk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jeu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jeu', 'Jonkor Bourmataguil', NULL, 271.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jonkor Bourmataguil', [Definition] = NULL, [SortOrder] = 271.30 WHERE [Code] = 'jeu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jor', 'Jorá', NULL, 271.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jorá', [Definition] = NULL, [SortOrder] = 271.40 WHERE [Code] = 'jor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jos', 'Jordanian Sign Language', NULL, 271.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jordanian Sign Language', [Definition] = NULL, [SortOrder] = 271.50 WHERE [Code] = 'jos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jow', 'Jowulu', NULL, 271.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jowulu', [Definition] = NULL, [SortOrder] = 271.60 WHERE [Code] = 'jow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juu', 'Ju', NULL, 271.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ju', [Definition] = NULL, [SortOrder] = 271.70 WHERE [Code] = 'juu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktz', 'Ju/''hoan', NULL, 271.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ju/''hoan', [Definition] = NULL, [SortOrder] = 271.80 WHERE [Code] = 'ktz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jun', 'Juang', NULL, 271.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juang', [Definition] = NULL, [SortOrder] = 271.90 WHERE [Code] = 'jun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jrb', 'Judeo-Arabic', NULL, 272.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Arabic', [Definition] = NULL, [SortOrder] = 272.00 WHERE [Code] = 'jrb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbe', 'Judeo-Berber', NULL, 272.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Berber', [Definition] = NULL, [SortOrder] = 272.10 WHERE [Code] = 'jbe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jge', 'Judeo-Georgian', NULL, 272.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Georgian', [Definition] = NULL, [SortOrder] = 272.20 WHERE [Code] = 'jge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yhd', 'Judeo-Iraqi Arabic', NULL, 272.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Iraqi Arabic', [Definition] = NULL, [SortOrder] = 272.30 WHERE [Code] = 'yhd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itk', 'Judeo-Italian', NULL, 272.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Italian', [Definition] = NULL, [SortOrder] = 272.40 WHERE [Code] = 'itk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aju', 'Judeo-Moroccan Arabic', NULL, 272.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Moroccan Arabic', [Definition] = NULL, [SortOrder] = 272.50 WHERE [Code] = 'aju' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpr', 'Judeo-Persian', NULL, 272.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Persian', [Definition] = NULL, [SortOrder] = 272.60 WHERE [Code] = 'jpr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jdt', 'Judeo-Tat', NULL, 272.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Tat', [Definition] = NULL, [SortOrder] = 272.70 WHERE [Code] = 'jdt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yud', 'Judeo-Tripolitanian Arabic', NULL, 272.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Tripolitanian Arabic', [Definition] = NULL, [SortOrder] = 272.80 WHERE [Code] = 'yud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jye', 'Judeo-Yemeni Arabic', NULL, 272.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Yemeni Arabic', [Definition] = NULL, [SortOrder] = 272.90 WHERE [Code] = 'jye' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbu', 'Jukun Takum', NULL, 273.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jukun Takum', [Definition] = NULL, [SortOrder] = 273.00 WHERE [Code] = 'jbu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jua', 'Júma', NULL, 273.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Júma', [Definition] = NULL, [SortOrder] = 273.10 WHERE [Code] = 'jua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jum', 'Jumjum', NULL, 273.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jumjum', [Definition] = NULL, [SortOrder] = 273.20 WHERE [Code] = 'jum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jus', 'Jumla Sign Language', NULL, 273.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jumla Sign Language', [Definition] = NULL, [SortOrder] = 273.30 WHERE [Code] = 'jus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jml', 'Jumli', NULL, 273.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jumli', [Definition] = NULL, [SortOrder] = 273.40 WHERE [Code] = 'jml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inj', 'Jungle Inga', NULL, 273.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jungle Inga', [Definition] = NULL, [SortOrder] = 273.50 WHERE [Code] = 'inj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxq', 'Juquila Mixe', NULL, 273.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juquila Mixe', [Definition] = NULL, [SortOrder] = 273.60 WHERE [Code] = 'mxq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bex', 'Jur Modo', NULL, 273.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jur Modo', [Definition] = NULL, [SortOrder] = 273.70 WHERE [Code] = 'bex' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juy', 'Juray', NULL, 273.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juray', [Definition] = NULL, [SortOrder] = 273.80 WHERE [Code] = 'juy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juc', 'Jurchen', NULL, 273.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jurchen', [Definition] = NULL, [SortOrder] = 273.90 WHERE [Code] = 'juc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jur', 'Jurúna', NULL, 274.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jurúna', [Definition] = NULL, [SortOrder] = 274.00 WHERE [Code] = 'jur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jut', 'Jutish', NULL, 274.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jutish', [Definition] = NULL, [SortOrder] = 274.10 WHERE [Code] = 'jut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwb', 'Juwal', NULL, 274.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juwal', [Definition] = NULL, [SortOrder] = 274.20 WHERE [Code] = 'mwb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmc', 'Juxtlahuaca Mixtec', NULL, 274.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juxtlahuaca Mixtec', [Definition] = NULL, [SortOrder] = 274.30 WHERE [Code] = 'vmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jwi', 'Jwira-Pepesa', NULL, 274.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jwira-Pepesa', [Definition] = NULL, [SortOrder] = 274.40 WHERE [Code] = 'jwi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quc', 'K''iche''', NULL, 274.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'K''iche''', [Definition] = NULL, [SortOrder] = 274.50 WHERE [Code] = 'quc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xku', 'Kaamba', NULL, 274.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaamba', [Definition] = NULL, [SortOrder] = 274.60 WHERE [Code] = 'xku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldl', 'Kaan', NULL, 274.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaan', [Definition] = NULL, [SortOrder] = 274.70 WHERE [Code] = 'ldl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckn', 'Kaang Chin', NULL, 274.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaang Chin', [Definition] = NULL, [SortOrder] = 274.80 WHERE [Code] = 'ckn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gna', 'Kaansa', NULL, 274.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaansa', [Definition] = NULL, [SortOrder] = 274.90 WHERE [Code] = 'gna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksp', 'Kaba', NULL, 275.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaba', [Definition] = NULL, [SortOrder] = 275.00 WHERE [Code] = 'ksp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvf', 'Kabalai', NULL, 275.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabalai', [Definition] = NULL, [SortOrder] = 275.10 WHERE [Code] = 'kvf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbd', 'Kabardian', NULL, 275.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabardian', [Definition] = NULL, [SortOrder] = 275.20 WHERE [Code] = 'kbd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkp', 'Kabatei', NULL, 275.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabatei', [Definition] = NULL, [SortOrder] = 275.30 WHERE [Code] = 'xkp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbp', 'Kabiyè', NULL, 275.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabiyè', [Definition] = NULL, [SortOrder] = 275.40 WHERE [Code] = 'kbp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klz', 'Kabola', NULL, 275.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabola', [Definition] = NULL, [SortOrder] = 275.50 WHERE [Code] = 'klz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onk', 'Kabore One', NULL, 275.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabore One', [Definition] = NULL, [SortOrder] = 275.60 WHERE [Code] = 'onk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkb', 'Kabras', NULL, 275.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabras', [Definition] = NULL, [SortOrder] = 275.70 WHERE [Code] = 'lkb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uka', 'Kaburi', NULL, 275.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaburi', [Definition] = NULL, [SortOrder] = 275.80 WHERE [Code] = 'uka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbu', 'Kabutra', NULL, 275.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabutra', [Definition] = NULL, [SortOrder] = 275.90 WHERE [Code] = 'kbu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kea', 'Kabuverdianu', NULL, 276.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabuverdianu', [Definition] = NULL, [SortOrder] = 276.00 WHERE [Code] = 'kea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwa', 'Kabwa', NULL, 276.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabwa', [Definition] = NULL, [SortOrder] = 276.10 WHERE [Code] = 'cwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcw', 'Kabwari', NULL, 276.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabwari', [Definition] = NULL, [SortOrder] = 276.20 WHERE [Code] = 'kcw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kab', 'Kabyle', NULL, 276.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabyle', [Definition] = NULL, [SortOrder] = 276.30 WHERE [Code] = 'kab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcx', 'Kachama-Ganjule', NULL, 276.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachama-Ganjule', [Definition] = NULL, [SortOrder] = 276.40 WHERE [Code] = 'kcx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xac', 'Kachari', NULL, 276.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachari', [Definition] = NULL, [SortOrder] = 276.50 WHERE [Code] = 'xac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfr', 'Kachhi', NULL, 276.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachhi', [Definition] = NULL, [SortOrder] = 276.60 WHERE [Code] = 'kfr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gjk', 'Kachi Koli', NULL, 276.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachi Koli', [Definition] = NULL, [SortOrder] = 276.70 WHERE [Code] = 'gjk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kac', 'Kachin', NULL, 276.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachin', [Definition] = NULL, [SortOrder] = 276.80 WHERE [Code] = 'kac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koe', 'Kacipo-Bale Suri', NULL, 276.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kacipo-Bale Suri', [Definition] = NULL, [SortOrder] = 276.90 WHERE [Code] = 'koe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkk', 'Kachok', NULL, 277.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachok', [Definition] = NULL, [SortOrder] = 277.00 WHERE [Code] = 'xkk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzd', 'Kadai', NULL, 277.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadai', [Definition] = NULL, [SortOrder] = 277.10 WHERE [Code] = 'kzd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kej', 'Kadar', NULL, 277.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadar', [Definition] = NULL, [SortOrder] = 277.20 WHERE [Code] = 'kej' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdu', 'Kadaru', NULL, 277.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadaru', [Definition] = NULL, [SortOrder] = 277.30 WHERE [Code] = 'kdu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtp', 'Kadazan Dusun', NULL, 277.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadazan Dusun', [Definition] = NULL, [SortOrder] = 277.40 WHERE [Code] = 'dtp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbc', 'Kadiwéu', NULL, 277.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadiwéu', [Definition] = NULL, [SortOrder] = 277.50 WHERE [Code] = 'kbc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkd', 'Kadu', NULL, 277.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadu', [Definition] = NULL, [SortOrder] = 277.60 WHERE [Code] = 'zkd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dkg', 'Kadung', NULL, 277.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadung', [Definition] = NULL, [SortOrder] = 277.70 WHERE [Code] = 'dkg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktp', 'Kaduo', NULL, 277.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaduo', [Definition] = NULL, [SortOrder] = 277.80 WHERE [Code] = 'ktp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkq', 'Kaeku', NULL, 277.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaeku', [Definition] = NULL, [SortOrder] = 277.90 WHERE [Code] = 'kkq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jka', 'Kaera', NULL, 278.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaera', [Definition] = NULL, [SortOrder] = 278.00 WHERE [Code] = 'jka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbr', 'Kafa', NULL, 278.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kafa', [Definition] = NULL, [SortOrder] = 278.10 WHERE [Code] = 'kbr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpu', 'Kafoa', NULL, 278.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kafoa', [Definition] = NULL, [SortOrder] = 278.20 WHERE [Code] = 'kpu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kll', 'Kagan Kalagan', NULL, 278.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagan Kalagan', [Definition] = NULL, [SortOrder] = 278.30 WHERE [Code] = 'kll' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syw', 'Kagate', NULL, 278.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagate', [Definition] = NULL, [SortOrder] = 278.40 WHERE [Code] = 'syw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cgc', 'Kagayanen', NULL, 278.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagayanen', [Definition] = NULL, [SortOrder] = 278.50 WHERE [Code] = 'cgc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdm', 'Kagoma', NULL, 278.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagoma', [Definition] = NULL, [SortOrder] = 278.60 WHERE [Code] = 'kdm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkg', 'Kagoro', NULL, 278.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagoro', [Definition] = NULL, [SortOrder] = 278.70 WHERE [Code] = 'xkg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kki', 'Kagulu', NULL, 278.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagulu', [Definition] = NULL, [SortOrder] = 278.80 WHERE [Code] = 'kki' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hka', 'Kahe', NULL, 278.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kahe', [Definition] = NULL, [SortOrder] = 278.90 WHERE [Code] = 'hka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agw', 'Kahua', NULL, 279.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kahua', [Definition] = NULL, [SortOrder] = 279.00 WHERE [Code] = 'agw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kct', 'Kaian', NULL, 279.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaian', [Definition] = NULL, [SortOrder] = 279.10 WHERE [Code] = 'kct' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzb', 'Kaibobo', NULL, 279.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaibobo', [Definition] = NULL, [SortOrder] = 279.20 WHERE [Code] = 'kzb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzp', 'Kaidipang', NULL, 279.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaidipang', [Definition] = NULL, [SortOrder] = 279.30 WHERE [Code] = 'kzp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbw', 'Kaiep', NULL, 279.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaiep', [Definition] = NULL, [SortOrder] = 279.40 WHERE [Code] = 'kbw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kep', 'Kaikadi', NULL, 279.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaikadi', [Definition] = NULL, [SortOrder] = 279.50 WHERE [Code] = 'kep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjv', 'Kaikavian Literary Language', NULL, 279.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaikavian Literary Language', [Definition] = NULL, [SortOrder] = 279.60 WHERE [Code] = 'kjv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzq', 'Kaike', NULL, 279.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaike', [Definition] = NULL, [SortOrder] = 279.70 WHERE [Code] = 'kzq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xai', 'Kaimbé', NULL, 279.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaimbé', [Definition] = NULL, [SortOrder] = 279.80 WHERE [Code] = 'xai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zka', 'Kaimbulawa', NULL, 279.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaimbulawa', [Definition] = NULL, [SortOrder] = 279.90 WHERE [Code] = 'zka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgp', 'Kaingang', NULL, 280.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaingang', [Definition] = NULL, [SortOrder] = 280.00 WHERE [Code] = 'kgp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckr', 'Kairak', NULL, 280.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kairak', [Definition] = NULL, [SortOrder] = 280.10 WHERE [Code] = 'ckr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxa', 'Kairiru', NULL, 280.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kairiru', [Definition] = NULL, [SortOrder] = 280.20 WHERE [Code] = 'kxa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krd', 'Kairui-Midiki', NULL, 280.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kairui-Midiki', [Definition] = NULL, [SortOrder] = 280.30 WHERE [Code] = 'krd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzm', 'Kais', NULL, 280.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kais', [Definition] = NULL, [SortOrder] = 280.40 WHERE [Code] = 'kzm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdq', 'Kaitag', NULL, 280.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaitag', [Definition] = NULL, [SortOrder] = 280.50 WHERE [Code] = 'xdq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kce', 'Kaivi', NULL, 280.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaivi', [Definition] = NULL, [SortOrder] = 280.60 WHERE [Code] = 'kce' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgk', 'Kaiwá', NULL, 280.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaiwá', [Definition] = NULL, [SortOrder] = 280.70 WHERE [Code] = 'kgk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcq', 'Kaiy', NULL, 280.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaiy', [Definition] = NULL, [SortOrder] = 280.80 WHERE [Code] = 'tcq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckq', 'Kajakse', NULL, 280.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kajakse', [Definition] = NULL, [SortOrder] = 280.90 WHERE [Code] = 'ckq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkj', 'Kajali', NULL, 281.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kajali', [Definition] = NULL, [SortOrder] = 281.00 WHERE [Code] = 'xkj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kag', 'Kajaman', NULL, 281.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kajaman', [Definition] = NULL, [SortOrder] = 281.10 WHERE [Code] = 'kag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqf', 'Kakabai', NULL, 281.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kakabai', [Definition] = NULL, [SortOrder] = 281.20 WHERE [Code] = 'kqf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kke', 'Kakabe', NULL, 281.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kakabe', [Definition] = NULL, [SortOrder] = 281.30 WHERE [Code] = 'kke' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kka', 'Kakanda', NULL, 281.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kakanda', [Definition] = NULL, [SortOrder] = 281.40 WHERE [Code] = 'kka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbd', 'Kaki Ae', NULL, 281.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaki Ae', [Definition] = NULL, [SortOrder] = 281.50 WHERE [Code] = 'tbd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkj', 'Kako', NULL, 281.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kako', [Definition] = NULL, [SortOrder] = 281.60 WHERE [Code] = 'kkj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keo', 'Kakwa', NULL, 281.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kakwa', [Definition] = NULL, [SortOrder] = 281.70 WHERE [Code] = 'keo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwp', 'Kala Lagaw Ya', NULL, 281.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kala Lagaw Ya', [Definition] = NULL, [SortOrder] = 281.80 WHERE [Code] = 'mwp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kal', 'Kalaallisut', NULL, 281.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalaallisut', [Definition] = NULL, [SortOrder] = 281.90 WHERE [Code] = 'kal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkm', 'Kalaamaya', NULL, 282.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalaamaya', [Definition] = NULL, [SortOrder] = 282.00 WHERE [Code] = 'lkm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kve', 'Kalabakan', NULL, 282.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalabakan', [Definition] = NULL, [SortOrder] = 282.10 WHERE [Code] = 'kve' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ijn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijn', 'Kalabari', NULL, 282.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalabari', [Definition] = NULL, [SortOrder] = 282.20 WHERE [Code] = 'ijn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzz', 'Kalabra', NULL, 282.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalabra', [Definition] = NULL, [SortOrder] = 282.30 WHERE [Code] = 'kzz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqe', 'Kalagan', NULL, 282.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalagan', [Definition] = NULL, [SortOrder] = 282.40 WHERE [Code] = 'kqe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkf', 'Kalaktang Monpa', NULL, 282.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalaktang Monpa', [Definition] = NULL, [SortOrder] = 282.50 WHERE [Code] = 'kkf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmh', 'Kalam', NULL, 282.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalam', [Definition] = NULL, [SortOrder] = 282.60 WHERE [Code] = 'kmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knz', 'Kalamsé', NULL, 282.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalamsé', [Definition] = NULL, [SortOrder] = 282.70 WHERE [Code] = 'knz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkl', 'Kalanadi', NULL, 282.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalanadi', [Definition] = NULL, [SortOrder] = 282.80 WHERE [Code] = 'wkl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kck', 'Kalanga', NULL, 282.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalanga', [Definition] = NULL, [SortOrder] = 282.90 WHERE [Code] = 'kck' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kak', 'Kalanguya', NULL, 283.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalanguya', [Definition] = NULL, [SortOrder] = 283.00 WHERE [Code] = 'kak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kly', 'Kalao', NULL, 283.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalao', [Definition] = NULL, [SortOrder] = 283.10 WHERE [Code] = 'kly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyl', 'Kalapuya', NULL, 283.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalapuya', [Definition] = NULL, [SortOrder] = 283.20 WHERE [Code] = 'kyl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kba', 'Kalarko', NULL, 283.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalarko', [Definition] = NULL, [SortOrder] = 283.30 WHERE [Code] = 'kba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kls', 'Kalasha', NULL, 283.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalasha', [Definition] = NULL, [SortOrder] = 283.40 WHERE [Code] = 'kls' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kln', 'Kalenjin', NULL, 283.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalenjin', [Definition] = NULL, [SortOrder] = 283.50 WHERE [Code] = 'kln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fla', 'Kalispel-Pend d''Oreille', NULL, 283.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalispel-Pend d''Oreille', [Definition] = NULL, [SortOrder] = 283.60 WHERE [Code] = 'fla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xka', 'Kalkoti', NULL, 283.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalkoti', [Definition] = NULL, [SortOrder] = 283.70 WHERE [Code] = 'xka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktg', 'Kalkutung', NULL, 283.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalkutung', [Definition] = NULL, [SortOrder] = 283.80 WHERE [Code] = 'ktg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xal', 'Kalmyk', NULL, 283.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalmyk', [Definition] = NULL, [SortOrder] = 283.90 WHERE [Code] = 'xal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmf', 'Kalo Finnish Romani', NULL, 284.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalo Finnish Romani', [Definition] = NULL, [SortOrder] = 284.00 WHERE [Code] = 'rmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywa', 'Kalou', NULL, 284.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalou', [Definition] = NULL, [SortOrder] = 284.10 WHERE [Code] = 'ywa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bco', 'Kaluli', NULL, 284.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaluli', [Definition] = NULL, [SortOrder] = 284.20 WHERE [Code] = 'bco' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kli', 'Kalumpang', NULL, 284.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalumpang', [Definition] = NULL, [SortOrder] = 284.30 WHERE [Code] = 'kli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdx', 'Kam', NULL, 284.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kam', [Definition] = NULL, [SortOrder] = 284.40 WHERE [Code] = 'kdx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkm', 'Kamakan', NULL, 284.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamakan', [Definition] = NULL, [SortOrder] = 284.50 WHERE [Code] = 'vkm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woi', 'Kamang', NULL, 284.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamang', [Definition] = NULL, [SortOrder] = 284.60 WHERE [Code] = 'woi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbq', 'Kamano', NULL, 284.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamano', [Definition] = NULL, [SortOrder] = 284.70 WHERE [Code] = 'kbq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kci', 'Kamantan', NULL, 284.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamantan', [Definition] = NULL, [SortOrder] = 284.80 WHERE [Code] = 'kci' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keq', 'Kamar', NULL, 284.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamar', [Definition] = NULL, [SortOrder] = 284.90 WHERE [Code] = 'keq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmr', 'Kamara', NULL, 285.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamara', [Definition] = NULL, [SortOrder] = 285.00 WHERE [Code] = 'jmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzx', 'Kamarian', NULL, 285.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamarian', [Definition] = NULL, [SortOrder] = 285.10 WHERE [Code] = 'kzx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgx', 'Kamaru', NULL, 285.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamaru', [Definition] = NULL, [SortOrder] = 285.20 WHERE [Code] = 'kgx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xas', 'Kamas', NULL, 285.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamas', [Definition] = NULL, [SortOrder] = 285.30 WHERE [Code] = 'xas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klp', 'Kamasa', NULL, 285.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamasa', [Definition] = NULL, [SortOrder] = 285.40 WHERE [Code] = 'klp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kms', 'Kamasau', NULL, 285.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamasau', [Definition] = NULL, [SortOrder] = 285.50 WHERE [Code] = 'kms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyk', 'Kamayo', NULL, 285.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamayo', [Definition] = NULL, [SortOrder] = 285.60 WHERE [Code] = 'kyk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kay', 'Kamayurá', NULL, 285.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamayurá', [Definition] = NULL, [SortOrder] = 285.70 WHERE [Code] = 'kay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kam', 'Kamba (Kenya)', NULL, 285.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamba (Kenya)', [Definition] = NULL, [SortOrder] = 285.80 WHERE [Code] = 'kam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktb', 'Kambaata', NULL, 285.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kambaata', [Definition] = NULL, [SortOrder] = 285.90 WHERE [Code] = 'ktb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyy', 'Kambaira', NULL, 286.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kambaira', [Definition] = NULL, [SortOrder] = 286.00 WHERE [Code] = 'kyy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbr', 'Kambera', NULL, 286.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kambera', [Definition] = NULL, [SortOrder] = 286.10 WHERE [Code] = 'xbr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irx', 'Kamberau', NULL, 286.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamberau', [Definition] = NULL, [SortOrder] = 286.20 WHERE [Code] = 'irx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbw', 'Kambiwá', NULL, 286.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kambiwá', [Definition] = NULL, [SortOrder] = 286.30 WHERE [Code] = 'xbw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmi', 'Kami (Nigeria)', NULL, 286.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kami (Nigeria)', [Definition] = NULL, [SortOrder] = 286.40 WHERE [Code] = 'kmi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcu', 'Kami (Tanzania)', NULL, 286.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kami (Tanzania)', [Definition] = NULL, [SortOrder] = 286.50 WHERE [Code] = 'kcu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcq', 'Kamo', NULL, 286.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamo', [Definition] = NULL, [SortOrder] = 286.60 WHERE [Code] = 'kcq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgq', 'Kamoro', NULL, 286.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamoro', [Definition] = NULL, [SortOrder] = 286.70 WHERE [Code] = 'kgq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmu', 'Kamu', NULL, 286.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamu', [Definition] = NULL, [SortOrder] = 286.80 WHERE [Code] = 'xmu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xla', 'Kamula', NULL, 286.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamula', [Definition] = NULL, [SortOrder] = 286.90 WHERE [Code] = 'xla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xvi', 'Kamviri', NULL, 287.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamviri', [Definition] = NULL, [SortOrder] = 287.00 WHERE [Code] = 'xvi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hig', 'Kamwe', NULL, 287.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamwe', [Definition] = NULL, [SortOrder] = 287.10 WHERE [Code] = 'hig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnb', 'Kanakanabu', NULL, 287.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanakanabu', [Definition] = NULL, [SortOrder] = 287.20 WHERE [Code] = 'xnb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knm', 'Kanamarí', NULL, 287.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanamarí', [Definition] = NULL, [SortOrder] = 287.30 WHERE [Code] = 'knm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkn', 'Kanan', NULL, 287.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanan', [Definition] = NULL, [SortOrder] = 287.40 WHERE [Code] = 'zkn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xns', 'Kanashi', NULL, 287.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanashi', [Definition] = NULL, [SortOrder] = 287.50 WHERE [Code] = 'xns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soq', 'Kanasi', NULL, 287.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanasi', [Definition] = NULL, [SortOrder] = 287.60 WHERE [Code] = 'soq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjj', 'Kanauji', NULL, 287.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanauji', [Definition] = NULL, [SortOrder] = 287.70 WHERE [Code] = 'bjj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqw', 'Kandas', NULL, 287.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kandas', [Definition] = NULL, [SortOrder] = 287.80 WHERE [Code] = 'kqw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gam', 'Kandawo', NULL, 287.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kandawo', [Definition] = NULL, [SortOrder] = 287.90 WHERE [Code] = 'gam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbs', 'Kande', NULL, 288.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kande', [Definition] = NULL, [SortOrder] = 288.00 WHERE [Code] = 'kbs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbl', 'Kanembu', NULL, 288.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanembu', [Definition] = NULL, [SortOrder] = 288.10 WHERE [Code] = 'kbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyp', 'Kang', NULL, 288.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kang', [Definition] = NULL, [SortOrder] = 288.20 WHERE [Code] = 'kyp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcp', 'Kanga', NULL, 288.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanga', [Definition] = NULL, [SortOrder] = 288.30 WHERE [Code] = 'kcp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkv', 'Kangean', NULL, 288.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kangean', [Definition] = NULL, [SortOrder] = 288.40 WHERE [Code] = 'kkv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igm', 'Kanggape', NULL, 288.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanggape', [Definition] = NULL, [SortOrder] = 288.50 WHERE [Code] = 'igm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxs', 'Kangjia', NULL, 288.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kangjia', [Definition] = NULL, [SortOrder] = 288.60 WHERE [Code] = 'kxs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kty', 'Kango (Bas-Uélé District)', NULL, 288.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kango (Bas-Uélé District)', [Definition] = NULL, [SortOrder] = 288.70 WHERE [Code] = 'kty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzy', 'Kango (Tshopo District)', NULL, 288.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kango (Tshopo District)', [Definition] = NULL, [SortOrder] = 288.80 WHERE [Code] = 'kzy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnr', 'Kangri', NULL, 288.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kangri', [Definition] = NULL, [SortOrder] = 288.90 WHERE [Code] = 'xnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktk', 'Kaniet', NULL, 289.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaniet', [Definition] = NULL, [SortOrder] = 289.00 WHERE [Code] = 'ktk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kev', 'Kanikkaran', NULL, 289.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanikkaran', [Definition] = NULL, [SortOrder] = 289.10 WHERE [Code] = 'kev' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdp', 'Kaningdon-Nindem', NULL, 289.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaningdon-Nindem', [Definition] = NULL, [SortOrder] = 289.20 WHERE [Code] = 'kdp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzo', 'Kaningi', NULL, 289.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaningi', [Definition] = NULL, [SortOrder] = 289.30 WHERE [Code] = 'kzo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knr', 'Kaningra', NULL, 289.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaningra', [Definition] = NULL, [SortOrder] = 289.40 WHERE [Code] = 'knr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wat', 'Kaninuwa', NULL, 289.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaninuwa', [Definition] = NULL, [SortOrder] = 289.50 WHERE [Code] = 'wat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmu', 'Kanite', NULL, 289.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanite', [Definition] = NULL, [SortOrder] = 289.60 WHERE [Code] = 'kmu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kft', 'Kanjari', NULL, 289.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanjari', [Definition] = NULL, [SortOrder] = 289.70 WHERE [Code] = 'kft' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbe', 'Kanju', NULL, 289.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanju', [Definition] = NULL, [SortOrder] = 289.80 WHERE [Code] = 'kbe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kne', 'Kankanaey', NULL, 289.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kankanaey', [Definition] = NULL, [SortOrder] = 289.90 WHERE [Code] = 'kne' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kan', 'Kannada', NULL, 290.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kannada', [Definition] = NULL, [SortOrder] = 290.00 WHERE [Code] = 'kan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfi', 'Kannada Kurumba', NULL, 290.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kannada Kurumba', [Definition] = NULL, [SortOrder] = 290.10 WHERE [Code] = 'kfi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxo', 'Kanoé', NULL, 290.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanoé', [Definition] = NULL, [SortOrder] = 290.20 WHERE [Code] = 'kxo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxn', 'Kanowit-Tanjong Melanau', NULL, 290.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanowit-Tanjong Melanau', [Definition] = NULL, [SortOrder] = 290.30 WHERE [Code] = 'kxn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksk', 'Kansa', NULL, 290.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kansa', [Definition] = NULL, [SortOrder] = 290.40 WHERE [Code] = 'ksk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkt', 'Kantosi', NULL, 290.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kantosi', [Definition] = NULL, [SortOrder] = 290.50 WHERE [Code] = 'xkt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khx', 'Kanu', NULL, 290.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanu', [Definition] = NULL, [SortOrder] = 290.60 WHERE [Code] = 'khx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kni', 'Kanufi', NULL, 290.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanufi', [Definition] = NULL, [SortOrder] = 290.70 WHERE [Code] = 'kni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kau', 'Kanuri', NULL, 290.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanuri', [Definition] = NULL, [SortOrder] = 290.80 WHERE [Code] = 'kau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kny', 'Kanyok', NULL, 290.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanyok', [Definition] = NULL, [SortOrder] = 290.90 WHERE [Code] = 'kny' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kax', 'Kao', NULL, 291.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kao', [Definition] = NULL, [SortOrder] = 291.00 WHERE [Code] = 'kax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqn', 'Kaonde', NULL, 291.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaonde', [Definition] = NULL, [SortOrder] = 291.10 WHERE [Code] = 'kqn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykm', 'Kap', NULL, 291.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kap', [Definition] = NULL, [SortOrder] = 291.20 WHERE [Code] = 'ykm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbx', 'Kapin', NULL, 291.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapin', [Definition] = NULL, [SortOrder] = 291.30 WHERE [Code] = 'tbx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpn', 'Kapinawá', NULL, 291.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapinawá', [Definition] = NULL, [SortOrder] = 291.40 WHERE [Code] = 'xpn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpg', 'Kapingamarangi', NULL, 291.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapingamarangi', [Definition] = NULL, [SortOrder] = 291.50 WHERE [Code] = 'kpg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khp', 'Kapori', NULL, 291.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapori', [Definition] = NULL, [SortOrder] = 291.60 WHERE [Code] = 'khp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dju', 'Kapriman', NULL, 291.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapriman', [Definition] = NULL, [SortOrder] = 291.70 WHERE [Code] = 'dju' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbi', 'Kaptiau', NULL, 291.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaptiau', [Definition] = NULL, [SortOrder] = 291.80 WHERE [Code] = 'kbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klo', 'Kapya', NULL, 291.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapya', [Definition] = NULL, [SortOrder] = 291.90 WHERE [Code] = 'klo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cak', 'Kaqchikel', NULL, 292.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaqchikel', [Definition] = NULL, [SortOrder] = 292.00 WHERE [Code] = 'cak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kah', 'Kara (Central African Republic)', NULL, 292.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara (Central African Republic)', [Definition] = NULL, [SortOrder] = 292.10 WHERE [Code] = 'kah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zra', 'Kara (Korea)', NULL, 292.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara (Korea)', [Definition] = NULL, [SortOrder] = 292.20 WHERE [Code] = 'zra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leu', 'Kara (Papua New Guinea)', NULL, 292.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 292.30 WHERE [Code] = 'leu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'reg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('reg', 'Kara (Tanzania)', NULL, 292.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara (Tanzania)', [Definition] = NULL, [SortOrder] = 292.40 WHERE [Code] = 'reg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaa', 'Kara-Kalpak', NULL, 292.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara-Kalpak', [Definition] = NULL, [SortOrder] = 292.50 WHERE [Code] = 'kaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krc', 'Karachay-Balkar', NULL, 292.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karachay-Balkar', [Definition] = NULL, [SortOrder] = 292.60 WHERE [Code] = 'krc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kim', 'Karagas', NULL, 292.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karagas', [Definition] = NULL, [SortOrder] = 292.70 WHERE [Code] = 'kim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdr', 'Karaim', NULL, 292.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karaim', [Definition] = NULL, [SortOrder] = 292.80 WHERE [Code] = 'kdr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpj', 'Karajá', NULL, 292.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karajá', [Definition] = NULL, [SortOrder] = 292.90 WHERE [Code] = 'kpj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbd', 'Karajarri', NULL, 293.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karajarri', [Definition] = NULL, [SortOrder] = 293.00 WHERE [Code] = 'gbd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xqa', 'Karakhanid', NULL, 293.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karakhanid', [Definition] = NULL, [SortOrder] = 293.10 WHERE [Code] = 'xqa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xar', 'Karami', NULL, 293.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karami', [Definition] = NULL, [SortOrder] = 293.20 WHERE [Code] = 'xar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdj', 'Karamojong', NULL, 293.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karamojong', [Definition] = NULL, [SortOrder] = 293.30 WHERE [Code] = 'kdj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzr', 'Karang', NULL, 293.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karang', [Definition] = NULL, [SortOrder] = 293.40 WHERE [Code] = 'kzr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kth', 'Karanga', NULL, 293.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karanga', [Definition] = NULL, [SortOrder] = 293.50 WHERE [Code] = 'kth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkk', 'Karankawa', NULL, 293.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karankawa', [Definition] = NULL, [SortOrder] = 293.60 WHERE [Code] = 'zkk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyj', 'Karao', NULL, 293.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karao', [Definition] = NULL, [SortOrder] = 293.70 WHERE [Code] = 'kyj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgv', 'Karas', NULL, 293.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karas', [Definition] = NULL, [SortOrder] = 293.80 WHERE [Code] = 'kgv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpt', 'Karata', NULL, 293.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karata', [Definition] = NULL, [SortOrder] = 293.90 WHERE [Code] = 'kpt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrw', 'Karawa', NULL, 294.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karawa', [Definition] = NULL, [SortOrder] = 294.00 WHERE [Code] = 'xrw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjw', 'Karbi', NULL, 294.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karbi', [Definition] = NULL, [SortOrder] = 294.10 WHERE [Code] = 'mjw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbn', 'Kare (Central African Republic)', NULL, 294.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kare (Central African Republic)', [Definition] = NULL, [SortOrder] = 294.20 WHERE [Code] = 'kbn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmf', 'Kare (Papua New Guinea)', NULL, 294.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kare (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 294.30 WHERE [Code] = 'kmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kai', 'Karekare', NULL, 294.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karekare', [Definition] = NULL, [SortOrder] = 294.40 WHERE [Code] = 'kai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krl', 'Karelian', NULL, 294.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karelian', [Definition] = NULL, [SortOrder] = 294.50 WHERE [Code] = 'krl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eaa', 'Karenggapa', NULL, 294.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karenggapa', [Definition] = NULL, [SortOrder] = 294.60 WHERE [Code] = 'eaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyd', 'Karey', NULL, 294.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karey', [Definition] = NULL, [SortOrder] = 294.70 WHERE [Code] = 'kyd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbj', 'Kari', NULL, 294.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kari', [Definition] = NULL, [SortOrder] = 294.80 WHERE [Code] = 'kbj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgn', 'Karingani', NULL, 294.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karingani', [Definition] = NULL, [SortOrder] = 294.90 WHERE [Code] = 'kgn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuq', 'Karipuna', NULL, 295.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karipuna', [Definition] = NULL, [SortOrder] = 295.00 WHERE [Code] = 'kuq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgm', 'Karipúna', NULL, 295.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karipúna', [Definition] = NULL, [SortOrder] = 295.10 WHERE [Code] = 'kgm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmv', 'Karipúna Creole French', NULL, 295.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karipúna Creole French', [Definition] = NULL, [SortOrder] = 295.20 WHERE [Code] = 'kmv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzw', 'Karirí-Xocó', NULL, 295.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karirí-Xocó', [Definition] = NULL, [SortOrder] = 295.30 WHERE [Code] = 'kzw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktn', 'Karitiâna', NULL, 295.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karitiâna', [Definition] = NULL, [SortOrder] = 295.40 WHERE [Code] = 'ktn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kil', 'Kariya', NULL, 295.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kariya', [Definition] = NULL, [SortOrder] = 295.50 WHERE [Code] = 'kil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vka', 'Kariyarra', NULL, 295.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kariyarra', [Definition] = NULL, [SortOrder] = 295.60 WHERE [Code] = 'vka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuj', 'Karkar-Yuri', NULL, 295.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karkar-Yuri', [Definition] = NULL, [SortOrder] = 295.70 WHERE [Code] = 'yuj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krb', 'Karkin', NULL, 295.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karkin', [Definition] = NULL, [SortOrder] = 295.80 WHERE [Code] = 'krb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kko', 'Karko', NULL, 295.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karko', [Definition] = NULL, [SortOrder] = 295.90 WHERE [Code] = 'kko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbv', 'Karnai', NULL, 296.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karnai', [Definition] = NULL, [SortOrder] = 296.00 WHERE [Code] = 'bbv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arr', 'Karo (Brazil)', NULL, 296.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karo (Brazil)', [Definition] = NULL, [SortOrder] = 296.10 WHERE [Code] = 'arr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxh', 'Karo (Ethiopia)', NULL, 296.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karo (Ethiopia)', [Definition] = NULL, [SortOrder] = 296.20 WHERE [Code] = 'kxh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyh', 'Karok', NULL, 296.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karok', [Definition] = NULL, [SortOrder] = 296.30 WHERE [Code] = 'kyh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krx', 'Karon', NULL, 296.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karon', [Definition] = NULL, [SortOrder] = 296.40 WHERE [Code] = 'krx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgw', 'Karon Dori', NULL, 296.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karon Dori', [Definition] = NULL, [SortOrder] = 296.50 WHERE [Code] = 'kgw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkx', 'Karore', NULL, 296.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karore', [Definition] = NULL, [SortOrder] = 296.60 WHERE [Code] = 'xkx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rxw', 'Karuwali', NULL, 296.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karuwali', [Definition] = NULL, [SortOrder] = 296.70 WHERE [Code] = 'rxw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccj', 'Kasanga', NULL, 296.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kasanga', [Definition] = NULL, [SortOrder] = 296.80 WHERE [Code] = 'ccj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsm', 'Kasem', NULL, 296.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kasem', [Definition] = NULL, [SortOrder] = 296.90 WHERE [Code] = 'xsm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kju', 'Kashaya', NULL, 297.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kashaya', [Definition] = NULL, [SortOrder] = 297.00 WHERE [Code] = 'kju' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kas', 'Kashmiri', NULL, 297.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kashmiri', [Definition] = NULL, [SortOrder] = 297.10 WHERE [Code] = 'kas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csb', 'Kashubian', NULL, 297.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kashubian', [Definition] = NULL, [SortOrder] = 297.20 WHERE [Code] = 'csb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksn', 'Kasiguranin', NULL, 297.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kasiguranin', [Definition] = NULL, [SortOrder] = 297.30 WHERE [Code] = 'ksn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkz', 'Kaska', NULL, 297.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaska', [Definition] = NULL, [SortOrder] = 297.40 WHERE [Code] = 'kkz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsk', 'Kaskean', NULL, 297.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaskean', [Definition] = NULL, [SortOrder] = 297.50 WHERE [Code] = 'zsk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khs', 'Kasua', NULL, 297.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kasua', [Definition] = NULL, [SortOrder] = 297.60 WHERE [Code] = 'khs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktq', 'Katabaga', NULL, 297.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katabaga', [Definition] = NULL, [SortOrder] = 297.70 WHERE [Code] = 'ktq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xat', 'Katawixi', NULL, 297.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katawixi', [Definition] = NULL, [SortOrder] = 297.80 WHERE [Code] = 'xat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmb', 'Katbol', NULL, 297.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katbol', [Definition] = NULL, [SortOrder] = 297.90 WHERE [Code] = 'tmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtc', 'Katcha-Kadugli-Miri', NULL, 298.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katcha-Kadugli-Miri', [Definition] = NULL, [SortOrder] = 298.00 WHERE [Code] = 'xtc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmg', 'Kâte', NULL, 298.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kâte', [Definition] = NULL, [SortOrder] = 298.10 WHERE [Code] = 'kmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkt', 'Kathoriya Tharu', NULL, 298.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kathoriya Tharu', [Definition] = NULL, [SortOrder] = 298.20 WHERE [Code] = 'tkt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykt', 'Kathu', NULL, 298.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kathu', [Definition] = NULL, [SortOrder] = 298.30 WHERE [Code] = 'ykt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsh', 'Kati', NULL, 298.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kati', [Definition] = NULL, [SortOrder] = 298.40 WHERE [Code] = 'bsh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfu', 'Katkari', NULL, 298.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katkari', [Definition] = NULL, [SortOrder] = 298.50 WHERE [Code] = 'kfu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcr', 'Katla', NULL, 298.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katla', [Definition] = NULL, [SortOrder] = 298.60 WHERE [Code] = 'kcr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktw', 'Kato', NULL, 298.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kato', [Definition] = NULL, [SortOrder] = 298.70 WHERE [Code] = 'ktw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaf', 'Katso', NULL, 298.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katso', [Definition] = NULL, [SortOrder] = 298.80 WHERE [Code] = 'kaf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kta', 'Katua', NULL, 298.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katua', [Definition] = NULL, [SortOrder] = 298.90 WHERE [Code] = 'kta' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kav', 'Katukína', NULL, 299.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katukína', [Definition] = NULL, [SortOrder] = 299.00 WHERE [Code] = 'kav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pss', 'Kaulong', NULL, 299.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaulong', [Definition] = NULL, [SortOrder] = 299.10 WHERE [Code] = 'pss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkk', 'Kaur', NULL, 299.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaur', [Definition] = NULL, [SortOrder] = 299.20 WHERE [Code] = 'vkk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpp', 'Kaure', NULL, 299.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaure', [Definition] = NULL, [SortOrder] = 299.30 WHERE [Code] = 'bpp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zku', 'Kaurna', NULL, 299.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaurna', [Definition] = NULL, [SortOrder] = 299.40 WHERE [Code] = 'zku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xau', 'Kauwera', NULL, 299.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kauwera', [Definition] = NULL, [SortOrder] = 299.50 WHERE [Code] = 'xau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckv', 'Kavalan', NULL, 299.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kavalan', [Definition] = NULL, [SortOrder] = 299.60 WHERE [Code] = 'ckv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krv', 'Kavet', NULL, 299.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kavet', [Definition] = NULL, [SortOrder] = 299.70 WHERE [Code] = 'krv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcb', 'Kawacha', NULL, 299.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kawacha', [Definition] = NULL, [SortOrder] = 299.80 WHERE [Code] = 'kcb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xaw', 'Kawaiisu', NULL, 299.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kawaiisu', [Definition] = NULL, [SortOrder] = 299.90 WHERE [Code] = 'xaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgb', 'Kawe', NULL, 300.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kawe', [Definition] = NULL, [SortOrder] = 300.00 WHERE [Code] = 'kgb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaw', 'Kawi', NULL, 300.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kawi', [Definition] = NULL, [SortOrder] = 300.10 WHERE [Code] = 'kaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktx', 'Kaxararí', NULL, 300.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaxararí', [Definition] = NULL, [SortOrder] = 300.20 WHERE [Code] = 'ktx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbb', 'Kaxuiâna', NULL, 300.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaxuiâna', [Definition] = NULL, [SortOrder] = 300.30 WHERE [Code] = 'kbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyz', 'Kayabí', NULL, 300.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayabí', [Definition] = NULL, [SortOrder] = 300.40 WHERE [Code] = 'kyz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyt', 'Kayagar', NULL, 300.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayagar', [Definition] = NULL, [SortOrder] = 300.50 WHERE [Code] = 'kyt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdu', 'Kayan', NULL, 300.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayan', [Definition] = NULL, [SortOrder] = 300.60 WHERE [Code] = 'pdu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xay', 'Kayan Mahakam', NULL, 300.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayan Mahakam', [Definition] = NULL, [SortOrder] = 300.70 WHERE [Code] = 'xay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkn', 'Kayan River Kayan', NULL, 300.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayan River Kayan', [Definition] = NULL, [SortOrder] = 300.80 WHERE [Code] = 'xkn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txu', 'Kayapó', NULL, 300.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayapó', [Definition] = NULL, [SortOrder] = 300.90 WHERE [Code] = 'txu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyd', 'Kayardild', NULL, 301.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayardild', [Definition] = NULL, [SortOrder] = 301.00 WHERE [Code] = 'gyd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvl', 'Kayaw', NULL, 301.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayaw', [Definition] = NULL, [SortOrder] = 301.10 WHERE [Code] = 'kvl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzl', 'Kayeli', NULL, 301.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayeli', [Definition] = NULL, [SortOrder] = 301.20 WHERE [Code] = 'kzl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxy', 'Kayong', NULL, 301.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayong', [Definition] = NULL, [SortOrder] = 301.30 WHERE [Code] = 'kxy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyv', 'Kayort', NULL, 301.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayort', [Definition] = NULL, [SortOrder] = 301.40 WHERE [Code] = 'kyv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbb', 'Kaytetye', NULL, 301.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaytetye', [Definition] = NULL, [SortOrder] = 301.50 WHERE [Code] = 'gbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzu', 'Kayupulau', NULL, 301.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayupulau', [Definition] = NULL, [SortOrder] = 301.60 WHERE [Code] = 'kzu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaz', 'Kazakh', NULL, 301.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kazakh', [Definition] = NULL, [SortOrder] = 301.70 WHERE [Code] = 'kaz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzk', 'Kazukuru', NULL, 301.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kazukuru', [Definition] = NULL, [SortOrder] = 301.80 WHERE [Code] = 'kzk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxk', 'Ke''o', NULL, 301.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ke''o', [Definition] = NULL, [SortOrder] = 301.90 WHERE [Code] = 'xxk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keh', 'Keak', NULL, 302.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keak', [Definition] = NULL, [SortOrder] = 302.00 WHERE [Code] = 'keh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khz', 'Keapara', NULL, 302.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keapara', [Definition] = NULL, [SortOrder] = 302.10 WHERE [Code] = 'khz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meo', 'Kedah Malay', NULL, 302.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kedah Malay', [Definition] = NULL, [SortOrder] = 302.20 WHERE [Code] = 'meo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksx', 'Kedang', NULL, 302.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kedang', [Definition] = NULL, [SortOrder] = 302.30 WHERE [Code] = 'ksx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdy', 'Keder', NULL, 302.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keder', [Definition] = NULL, [SortOrder] = 302.40 WHERE [Code] = 'kdy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkr', 'Keerray-Woorroong', NULL, 302.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keerray-Woorroong', [Definition] = NULL, [SortOrder] = 302.50 WHERE [Code] = 'wkr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khh', 'Kehu', NULL, 302.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kehu', [Definition] = NULL, [SortOrder] = 302.60 WHERE [Code] = 'khh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kei', 'Kei', NULL, 302.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kei', [Definition] = NULL, [SortOrder] = 302.70 WHERE [Code] = 'kei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kec', 'Keiga', NULL, 302.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keiga', [Definition] = NULL, [SortOrder] = 302.80 WHERE [Code] = 'kec' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmh', 'Kein', NULL, 302.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kein', [Definition] = NULL, [SortOrder] = 302.90 WHERE [Code] = 'bmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eyo', 'Keiyo', NULL, 303.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keiyo', [Definition] = NULL, [SortOrder] = 303.00 WHERE [Code] = 'eyo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kek', 'Kekchí', NULL, 303.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kekchí', [Definition] = NULL, [SortOrder] = 303.10 WHERE [Code] = 'kek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kel', 'Kela (Democratic Republic of Congo)', NULL, 303.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kela (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 303.20 WHERE [Code] = 'kel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcl', 'Kela (Papua New Guinea)', NULL, 303.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kela (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 303.30 WHERE [Code] = 'kcl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzi', 'Kelabit', NULL, 303.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kelabit', [Definition] = NULL, [SortOrder] = 303.40 WHERE [Code] = 'kzi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keb', 'Kélé', NULL, 303.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kélé', [Definition] = NULL, [SortOrder] = 303.50 WHERE [Code] = 'keb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khy', 'Kele (Democratic Republic of Congo)', NULL, 303.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kele (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 303.60 WHERE [Code] = 'khy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbc', 'Kele (Papua New Guinea)', NULL, 303.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kele (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 303.70 WHERE [Code] = 'sbc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzx', 'Kelengaxo Bozo', NULL, 303.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kelengaxo Bozo', [Definition] = NULL, [SortOrder] = 303.80 WHERE [Code] = 'bzx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ify') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ify', 'Keley-I Kallahan', NULL, 303.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keley-I Kallahan', [Definition] = NULL, [SortOrder] = 303.90 WHERE [Code] = 'ify' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbo', 'Keliko', NULL, 304.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keliko', [Definition] = NULL, [SortOrder] = 304.00 WHERE [Code] = 'kbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xel', 'Kelo', NULL, 304.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kelo', [Definition] = NULL, [SortOrder] = 304.10 WHERE [Code] = 'xel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyo', 'Kelon', NULL, 304.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kelon', [Definition] = NULL, [SortOrder] = 304.20 WHERE [Code] = 'kyo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kem', 'Kemak', NULL, 304.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemak', [Definition] = NULL, [SortOrder] = 304.30 WHERE [Code] = 'kem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xem', 'Kembayan', NULL, 304.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kembayan', [Definition] = NULL, [SortOrder] = 304.40 WHERE [Code] = 'xem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzp', 'Kemberano', NULL, 304.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemberano', [Definition] = NULL, [SortOrder] = 304.50 WHERE [Code] = 'bzp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkw', 'Kembra', NULL, 304.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kembra', [Definition] = NULL, [SortOrder] = 304.60 WHERE [Code] = 'xkw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmo', 'Kemedzung', NULL, 304.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemedzung', [Definition] = NULL, [SortOrder] = 304.70 WHERE [Code] = 'dmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjk', 'Kemi Sami', NULL, 304.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemi Sami', [Definition] = NULL, [SortOrder] = 304.80 WHERE [Code] = 'sjk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfj', 'Kemiehua', NULL, 304.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemiehua', [Definition] = NULL, [SortOrder] = 304.90 WHERE [Code] = 'kfj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmt', 'Kemtuik', NULL, 305.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemtuik', [Definition] = NULL, [SortOrder] = 305.00 WHERE [Code] = 'kmt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbn', 'Kenaboi', NULL, 305.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenaboi', [Definition] = NULL, [SortOrder] = 305.10 WHERE [Code] = 'xbn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gat', 'Kenati', NULL, 305.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenati', [Definition] = NULL, [SortOrder] = 305.20 WHERE [Code] = 'gat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knx', 'Kendayan', NULL, 305.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kendayan', [Definition] = NULL, [SortOrder] = 305.30 WHERE [Code] = 'knx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klf', 'Kendeje', NULL, 305.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kendeje', [Definition] = NULL, [SortOrder] = 305.40 WHERE [Code] = 'klf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvm', 'Kendem', NULL, 305.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kendem', [Definition] = NULL, [SortOrder] = 305.50 WHERE [Code] = 'kvm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyq', 'Kenga', NULL, 305.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenga', [Definition] = NULL, [SortOrder] = 305.60 WHERE [Code] = 'kyq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxi', 'Keningau Murut', NULL, 305.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keningau Murut', [Definition] = NULL, [SortOrder] = 305.70 WHERE [Code] = 'kxi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knl', 'Keninjal', NULL, 305.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keninjal', [Definition] = NULL, [SortOrder] = 305.80 WHERE [Code] = 'knl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kns', 'Kensiu', NULL, 305.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kensiu', [Definition] = NULL, [SortOrder] = 305.90 WHERE [Code] = 'kns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndb', 'Kenswei Nsei', NULL, 306.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenswei Nsei', [Definition] = NULL, [SortOrder] = 306.00 WHERE [Code] = 'ndb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xki', 'Kenyan Sign Language', NULL, 306.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenyan Sign Language', [Definition] = NULL, [SortOrder] = 306.10 WHERE [Code] = 'xki' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ken') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ken', 'Kenyang', NULL, 306.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenyang', [Definition] = NULL, [SortOrder] = 306.20 WHERE [Code] = 'ken' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lke', 'Kenyi', NULL, 306.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenyi', [Definition] = NULL, [SortOrder] = 306.30 WHERE [Code] = 'lke' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnz', 'Kenzi', NULL, 306.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenzi', [Definition] = NULL, [SortOrder] = 306.40 WHERE [Code] = 'xnz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xeu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xeu', 'Keoru-Ahia', NULL, 306.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keoru-Ahia', [Definition] = NULL, [SortOrder] = 306.50 WHERE [Code] = 'xeu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpn', 'Kepkiriwát', NULL, 306.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kepkiriwát', [Definition] = NULL, [SortOrder] = 306.60 WHERE [Code] = 'kpn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuk', 'Kepo''', NULL, 306.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kepo''', [Definition] = NULL, [SortOrder] = 306.70 WHERE [Code] = 'kuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ker') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ker', 'Kera', NULL, 306.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kera', [Definition] = NULL, [SortOrder] = 306.80 WHERE [Code] = 'ker' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hhr', 'Kerak', NULL, 306.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerak', [Definition] = NULL, [SortOrder] = 306.90 WHERE [Code] = 'hhr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xke', 'Kereho', NULL, 307.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kereho', [Definition] = NULL, [SortOrder] = 307.00 WHERE [Code] = 'xke' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krk', 'Kerek', NULL, 307.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerek', [Definition] = NULL, [SortOrder] = 307.10 WHERE [Code] = 'krk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ked') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ked', 'Kerewe', NULL, 307.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerewe', [Definition] = NULL, [SortOrder] = 307.20 WHERE [Code] = 'ked' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxz', 'Kerewo', NULL, 307.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerewo', [Definition] = NULL, [SortOrder] = 307.30 WHERE [Code] = 'kxz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvr', 'Kerinci', NULL, 307.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerinci', [Definition] = NULL, [SortOrder] = 307.40 WHERE [Code] = 'kvr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xes', 'Kesawai', NULL, 307.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kesawai', [Definition] = NULL, [SortOrder] = 307.50 WHERE [Code] = 'xes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ket') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ket', 'Ket', NULL, 307.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ket', [Definition] = NULL, [SortOrder] = 307.60 WHERE [Code] = 'ket' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kae', 'Ketangalan', NULL, 307.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ketangalan', [Definition] = NULL, [SortOrder] = 307.70 WHERE [Code] = 'kae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcv', 'Kete', NULL, 307.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kete', [Definition] = NULL, [SortOrder] = 307.80 WHERE [Code] = 'kcv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xte', 'Ketengban', NULL, 307.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ketengban', [Definition] = NULL, [SortOrder] = 307.90 WHERE [Code] = 'xte' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktt', 'Ketum', NULL, 308.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ketum', [Definition] = NULL, [SortOrder] = 308.00 WHERE [Code] = 'ktt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyg', 'Keyagana', NULL, 308.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keyagana', [Definition] = NULL, [SortOrder] = 308.10 WHERE [Code] = 'kyg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkv', 'Kgalagadi', NULL, 308.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kgalagadi', [Definition] = NULL, [SortOrder] = 308.20 WHERE [Code] = 'xkv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hkh', 'Khah', NULL, 308.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khah', [Definition] = NULL, [SortOrder] = 308.30 WHERE [Code] = 'hkh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjh', 'Khakas', NULL, 308.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khakas', [Definition] = NULL, [SortOrder] = 308.40 WHERE [Code] = 'kjh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klj', 'Khalaj', NULL, 308.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khalaj', [Definition] = NULL, [SortOrder] = 308.50 WHERE [Code] = 'klj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klr', 'Khaling', NULL, 308.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khaling', [Definition] = NULL, [SortOrder] = 308.60 WHERE [Code] = 'klr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbg', 'Khamba', NULL, 308.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khamba', [Definition] = NULL, [SortOrder] = 308.70 WHERE [Code] = 'kbg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khg', 'Khams Tibetan', NULL, 308.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khams Tibetan', [Definition] = NULL, [SortOrder] = 308.80 WHERE [Code] = 'khg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kht', 'Khamti', NULL, 308.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khamti', [Definition] = NULL, [SortOrder] = 308.90 WHERE [Code] = 'kht' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksu', 'Khamyang', NULL, 309.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khamyang', [Definition] = NULL, [SortOrder] = 309.00 WHERE [Code] = 'ksu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogo', 'Khana', NULL, 309.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khana', [Definition] = NULL, [SortOrder] = 309.10 WHERE [Code] = 'ogo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khn', 'Khandesi', NULL, 309.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khandesi', [Definition] = NULL, [SortOrder] = 309.20 WHERE [Code] = 'khn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjm', 'Kháng', NULL, 309.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kháng', [Definition] = NULL, [SortOrder] = 309.30 WHERE [Code] = 'kjm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kca', 'Khanty', NULL, 309.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khanty', [Definition] = NULL, [SortOrder] = 309.40 WHERE [Code] = 'kca' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xao', 'Khao', NULL, 309.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khao', [Definition] = NULL, [SortOrder] = 309.50 WHERE [Code] = 'xao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfw', 'Kharam Naga', NULL, 309.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kharam Naga', [Definition] = NULL, [SortOrder] = 309.60 WHERE [Code] = 'kfw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khr', 'Kharia', NULL, 309.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kharia', [Definition] = NULL, [SortOrder] = 309.70 WHERE [Code] = 'khr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksy', 'Kharia Thar', NULL, 309.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kharia Thar', [Definition] = NULL, [SortOrder] = 309.80 WHERE [Code] = 'ksy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kha', 'Khasi', NULL, 309.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khasi', [Definition] = NULL, [SortOrder] = 309.90 WHERE [Code] = 'kha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lko', 'Khayo', NULL, 310.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khayo', [Definition] = NULL, [SortOrder] = 310.00 WHERE [Code] = 'lko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkz', 'Khazar', NULL, 310.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khazar', [Definition] = NULL, [SortOrder] = 310.10 WHERE [Code] = 'zkz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqg', 'Khe', NULL, 310.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khe', [Definition] = NULL, [SortOrder] = 310.20 WHERE [Code] = 'kqg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlx', 'Khehek', NULL, 310.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khehek', [Definition] = NULL, [SortOrder] = 310.30 WHERE [Code] = 'tlx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkf', 'Khengkha', NULL, 310.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khengkha', [Definition] = NULL, [SortOrder] = 310.40 WHERE [Code] = 'xkf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhe', 'Khetrani', NULL, 310.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khetrani', [Definition] = NULL, [SortOrder] = 310.50 WHERE [Code] = 'xhe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkh', 'Khezha Naga', NULL, 310.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khezha Naga', [Definition] = NULL, [SortOrder] = 310.60 WHERE [Code] = 'nkh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kix', 'Khiamniungan Naga', NULL, 310.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khiamniungan Naga', [Definition] = NULL, [SortOrder] = 310.70 WHERE [Code] = 'kix' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjj', 'Khinalugh', NULL, 310.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khinalugh', [Definition] = NULL, [SortOrder] = 310.80 WHERE [Code] = 'kjj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwx', 'Khirwar', NULL, 310.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khirwar', [Definition] = NULL, [SortOrder] = 310.90 WHERE [Code] = 'kwx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqm', 'Khisa', NULL, 311.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khisa', [Definition] = NULL, [SortOrder] = 311.00 WHERE [Code] = 'kqm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykl', 'Khlula', NULL, 311.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khlula', [Definition] = NULL, [SortOrder] = 311.10 WHERE [Code] = 'ykl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khm', 'Khmer', NULL, 311.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khmer', [Definition] = NULL, [SortOrder] = 311.20 WHERE [Code] = 'khm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjg', 'Khmu', NULL, 311.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khmu', [Definition] = NULL, [SortOrder] = 311.30 WHERE [Code] = 'kjg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkc', 'Kho''ini', NULL, 311.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kho''ini', [Definition] = NULL, [SortOrder] = 311.40 WHERE [Code] = 'xkc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naq', 'Khoekhoe', NULL, 311.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khoekhoe', [Definition] = NULL, [SortOrder] = 311.50 WHERE [Code] = 'naq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkb', 'Khoibu Naga', NULL, 311.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khoibu Naga', [Definition] = NULL, [SortOrder] = 311.60 WHERE [Code] = 'nkb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktc', 'Kholok', NULL, 311.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kholok', [Definition] = NULL, [SortOrder] = 311.70 WHERE [Code] = 'ktc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmz', 'Khorasani Turkish', NULL, 311.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khorasani Turkish', [Definition] = NULL, [SortOrder] = 311.80 WHERE [Code] = 'kmz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkh', 'Khorezmian', NULL, 311.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khorezmian', [Definition] = NULL, [SortOrder] = 311.90 WHERE [Code] = 'zkh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kho', 'Khotanese', NULL, 312.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khotanese', [Definition] = NULL, [SortOrder] = 312.00 WHERE [Code] = 'kho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khw', 'Khowar', NULL, 312.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khowar', [Definition] = NULL, [SortOrder] = 312.10 WHERE [Code] = 'khw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhv', 'Khua', NULL, 312.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khua', [Definition] = NULL, [SortOrder] = 312.20 WHERE [Code] = 'xhv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khf', 'Khuen', NULL, 312.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khuen', [Definition] = NULL, [SortOrder] = 312.30 WHERE [Code] = 'khf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnk', 'Khumi Chin', NULL, 312.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khumi Chin', [Definition] = NULL, [SortOrder] = 312.40 WHERE [Code] = 'cnk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkh', 'Khün', NULL, 312.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khün', [Definition] = NULL, [SortOrder] = 312.50 WHERE [Code] = 'kkh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfm', 'Khunsari', NULL, 312.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khunsari', [Definition] = NULL, [SortOrder] = 312.60 WHERE [Code] = 'kfm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khv', 'Khvarshi', NULL, 312.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khvarshi', [Definition] = NULL, [SortOrder] = 312.70 WHERE [Code] = 'khv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blv', 'Kibala', NULL, 312.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kibala', [Definition] = NULL, [SortOrder] = 312.80 WHERE [Code] = 'blv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kie', 'Kibet', NULL, 312.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kibet', [Definition] = NULL, [SortOrder] = 312.90 WHERE [Code] = 'kie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prm', 'Kibiri', NULL, 313.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kibiri', [Definition] = NULL, [SortOrder] = 313.00 WHERE [Code] = 'prm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kic', 'Kickapoo', NULL, 313.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kickapoo', [Definition] = NULL, [SortOrder] = 313.10 WHERE [Code] = 'kic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gia', 'Kija', NULL, 313.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kija', [Definition] = NULL, [SortOrder] = 313.20 WHERE [Code] = 'gia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzg', 'Kikai', NULL, 313.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kikai', [Definition] = NULL, [SortOrder] = 313.30 WHERE [Code] = 'kzg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kik', 'Kikuyu', NULL, 313.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kikuyu', [Definition] = NULL, [SortOrder] = 313.40 WHERE [Code] = 'kik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjd', 'Kildin Sami', NULL, 313.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kildin Sami', [Definition] = NULL, [SortOrder] = 313.50 WHERE [Code] = 'sjd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kij', 'Kilivila', NULL, 313.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kilivila', [Definition] = NULL, [SortOrder] = 313.60 WHERE [Code] = 'kij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klb', 'Kiliwa', NULL, 313.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiliwa', [Definition] = NULL, [SortOrder] = 313.70 WHERE [Code] = 'klb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kih', 'Kilmeri', NULL, 313.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kilmeri', [Definition] = NULL, [SortOrder] = 313.80 WHERE [Code] = 'kih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kia', 'Kim', NULL, 313.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kim', [Definition] = NULL, [SortOrder] = 313.90 WHERE [Code] = 'kia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mji', 'Kim Mun', NULL, 314.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kim Mun', [Definition] = NULL, [SortOrder] = 314.00 WHERE [Code] = 'mji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kig', 'Kimaama', NULL, 314.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimaama', [Definition] = NULL, [SortOrder] = 314.10 WHERE [Code] = 'kig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqr', 'Kimaragang', NULL, 314.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimaragang', [Definition] = NULL, [SortOrder] = 314.20 WHERE [Code] = 'kqr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiv', 'Kimbu', NULL, 314.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimbu', [Definition] = NULL, [SortOrder] = 314.30 WHERE [Code] = 'kiv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmb', 'Kimbundu', NULL, 314.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimbundu', [Definition] = NULL, [SortOrder] = 314.40 WHERE [Code] = 'kmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbt', 'Kimki', NULL, 314.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimki', [Definition] = NULL, [SortOrder] = 314.50 WHERE [Code] = 'sbt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqp', 'Kimré', NULL, 314.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimré', [Definition] = NULL, [SortOrder] = 314.60 WHERE [Code] = 'kqp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbw', 'Kinabalian', NULL, 314.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinabalian', [Definition] = NULL, [SortOrder] = 314.70 WHERE [Code] = 'cbw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kco', 'Kinalakna', NULL, 314.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinalakna', [Definition] = NULL, [SortOrder] = 314.80 WHERE [Code] = 'kco' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkx', 'Kinamiging Manobo', NULL, 314.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinamiging Manobo', [Definition] = NULL, [SortOrder] = 314.90 WHERE [Code] = 'mkx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krj', 'Kinaray-A', NULL, 315.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinaray-A', [Definition] = NULL, [SortOrder] = 315.00 WHERE [Code] = 'krj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zga', 'Kinga', NULL, 315.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinga', [Definition] = NULL, [SortOrder] = 315.10 WHERE [Code] = 'zga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfk', 'Kinnauri', NULL, 315.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinnauri', [Definition] = NULL, [SortOrder] = 315.20 WHERE [Code] = 'kfk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knq', 'Kintaq', NULL, 315.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kintaq', [Definition] = NULL, [SortOrder] = 315.30 WHERE [Code] = 'knq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkd', 'Kinuku', NULL, 315.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinuku', [Definition] = NULL, [SortOrder] = 315.40 WHERE [Code] = 'kkd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kin', 'Kinyarwanda', NULL, 315.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinyarwanda', [Definition] = NULL, [SortOrder] = 315.50 WHERE [Code] = 'kin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ues') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ues', 'Kioko', NULL, 315.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kioko', [Definition] = NULL, [SortOrder] = 315.60 WHERE [Code] = 'ues' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkm', 'Kiong', NULL, 315.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiong', [Definition] = NULL, [SortOrder] = 315.70 WHERE [Code] = 'kkm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xko', 'Kiorr', NULL, 315.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiorr', [Definition] = NULL, [SortOrder] = 315.80 WHERE [Code] = 'xko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kio', 'Kiowa', NULL, 315.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiowa', [Definition] = NULL, [SortOrder] = 315.90 WHERE [Code] = 'kio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apk', 'Kiowa Apache', NULL, 316.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiowa Apache', [Definition] = NULL, [SortOrder] = 316.00 WHERE [Code] = 'apk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgc', 'Kipsigis', NULL, 316.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kipsigis', [Definition] = NULL, [SortOrder] = 316.10 WHERE [Code] = 'sgc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyi', 'Kiput', NULL, 316.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiput', [Definition] = NULL, [SortOrder] = 316.20 WHERE [Code] = 'kyi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkr', 'Kir-Balar', NULL, 316.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kir-Balar', [Definition] = NULL, [SortOrder] = 316.30 WHERE [Code] = 'kkr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'geb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geb', 'Kire', NULL, 316.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kire', [Definition] = NULL, [SortOrder] = 316.40 WHERE [Code] = 'geb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kir', 'Kirghiz', NULL, 316.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirghiz', [Definition] = NULL, [SortOrder] = 316.50 WHERE [Code] = 'kir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okr', 'Kirike', NULL, 316.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirike', [Definition] = NULL, [SortOrder] = 316.60 WHERE [Code] = 'okr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiy', 'Kirikiri', NULL, 316.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirikiri', [Definition] = NULL, [SortOrder] = 316.70 WHERE [Code] = 'kiy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiu', 'Kirmanjki (individual language)', NULL, 316.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirmanjki (individual language)', [Definition] = NULL, [SortOrder] = 316.80 WHERE [Code] = 'kiu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fkk', 'Kirya-Konzel', NULL, 316.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirya-Konzel', [Definition] = NULL, [SortOrder] = 316.90 WHERE [Code] = 'fkk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kis', 'Kis', NULL, 317.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kis', [Definition] = NULL, [SortOrder] = 317.00 WHERE [Code] = 'kis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lks', 'Kisa', NULL, 317.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisa', [Definition] = NULL, [SortOrder] = 317.10 WHERE [Code] = 'lks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xis', 'Kisan', NULL, 317.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisan', [Definition] = NULL, [SortOrder] = 317.20 WHERE [Code] = 'xis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqh', 'Kisankasa', NULL, 317.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisankasa', [Definition] = NULL, [SortOrder] = 317.30 WHERE [Code] = 'kqh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kje', 'Kisar', NULL, 317.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisar', [Definition] = NULL, [SortOrder] = 317.40 WHERE [Code] = 'kje' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiz', 'Kisi', NULL, 317.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisi', [Definition] = NULL, [SortOrder] = 317.50 WHERE [Code] = 'kiz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gru', 'Kistane', NULL, 317.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kistane', [Definition] = NULL, [SortOrder] = 317.60 WHERE [Code] = 'gru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwk', 'Kita Maninkakan', NULL, 317.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kita Maninkakan', [Definition] = NULL, [SortOrder] = 317.70 WHERE [Code] = 'mwk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkt', 'Kitan', NULL, 317.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kitan', [Definition] = NULL, [SortOrder] = 317.80 WHERE [Code] = 'zkt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kii', 'Kitsai', NULL, 317.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kitsai', [Definition] = NULL, [SortOrder] = 317.90 WHERE [Code] = 'kii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkw', 'Kituba (Congo)', NULL, 318.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kituba (Congo)', [Definition] = NULL, [SortOrder] = 318.00 WHERE [Code] = 'mkw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktu', 'Kituba (Democratic Republic of Congo)', NULL, 318.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kituba (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 318.10 WHERE [Code] = 'ktu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wei', 'Kiunum', NULL, 318.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiunum', [Definition] = NULL, [SortOrder] = 318.20 WHERE [Code] = 'wei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lda', 'Kla-Dan', NULL, 318.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kla-Dan', [Definition] = NULL, [SortOrder] = 318.30 WHERE [Code] = 'lda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kla', 'Klamath-Modoc', NULL, 318.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Klamath-Modoc', [Definition] = NULL, [SortOrder] = 318.40 WHERE [Code] = 'kla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klu', 'Klao', NULL, 318.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Klao', [Definition] = NULL, [SortOrder] = 318.50 WHERE [Code] = 'klu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqt', 'Klias River Kadazan', NULL, 318.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Klias River Kadazan', [Definition] = NULL, [SortOrder] = 318.60 WHERE [Code] = 'kqt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlh', 'Klingon', NULL, 318.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Klingon', [Definition] = NULL, [SortOrder] = 318.70 WHERE [Code] = 'tlh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czk', 'Knaanic', NULL, 318.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Knaanic', [Definition] = NULL, [SortOrder] = 318.80 WHERE [Code] = 'czk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuj', 'Ko', NULL, 318.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ko', [Definition] = NULL, [SortOrder] = 318.90 WHERE [Code] = 'fuj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kib', 'Koalib', NULL, 319.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koalib', [Definition] = NULL, [SortOrder] = 319.00 WHERE [Code] = 'kib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cku', 'Koasati', NULL, 319.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koasati', [Definition] = NULL, [SortOrder] = 319.10 WHERE [Code] = 'cku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpd', 'Koba', NULL, 319.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koba', [Definition] = NULL, [SortOrder] = 319.20 WHERE [Code] = 'kpd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcj', 'Kobiana', NULL, 319.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kobiana', [Definition] = NULL, [SortOrder] = 319.30 WHERE [Code] = 'kcj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okc', 'Kobo', NULL, 319.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kobo', [Definition] = NULL, [SortOrder] = 319.40 WHERE [Code] = 'okc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgu', 'Kobol', NULL, 319.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kobol', [Definition] = NULL, [SortOrder] = 319.50 WHERE [Code] = 'kgu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpw', 'Kobon', NULL, 319.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kobon', [Definition] = NULL, [SortOrder] = 319.60 WHERE [Code] = 'kpw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdq', 'Koch', NULL, 319.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koch', [Definition] = NULL, [SortOrder] = 319.70 WHERE [Code] = 'kdq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thq', 'Kochila Tharu', NULL, 319.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kochila Tharu', [Definition] = NULL, [SortOrder] = 319.80 WHERE [Code] = 'thq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdz', 'Koda', NULL, 319.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koda', [Definition] = NULL, [SortOrder] = 319.90 WHERE [Code] = 'cdz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksz', 'Kodaku', NULL, 320.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodaku', [Definition] = NULL, [SortOrder] = 320.00 WHERE [Code] = 'ksz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfa', 'Kodava', NULL, 320.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodava', [Definition] = NULL, [SortOrder] = 320.10 WHERE [Code] = 'kfa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vko', 'Kodeoha', NULL, 320.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodeoha', [Definition] = NULL, [SortOrder] = 320.20 WHERE [Code] = 'vko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kod', 'Kodi', NULL, 320.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodi', [Definition] = NULL, [SortOrder] = 320.30 WHERE [Code] = 'kod' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwp', 'Kodia', NULL, 320.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodia', [Definition] = NULL, [SortOrder] = 320.40 WHERE [Code] = 'kwp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcs', 'Koenoem', NULL, 320.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koenoem', [Definition] = NULL, [SortOrder] = 320.50 WHERE [Code] = 'kcs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kso', 'Kofa', NULL, 320.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kofa', [Definition] = NULL, [SortOrder] = 320.60 WHERE [Code] = 'kso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpi', 'Kofei', NULL, 320.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kofei', [Definition] = NULL, [SortOrder] = 320.70 WHERE [Code] = 'kpi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwl', 'Kofyar', NULL, 320.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kofyar', [Definition] = NULL, [SortOrder] = 320.80 WHERE [Code] = 'kwl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkg', 'Koguryo', NULL, 320.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koguryo', [Definition] = NULL, [SortOrder] = 320.90 WHERE [Code] = 'zkg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkx', 'Kohin', NULL, 321.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kohin', [Definition] = NULL, [SortOrder] = 321.00 WHERE [Code] = 'kkx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plk', 'Kohistani Shina', NULL, 321.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kohistani Shina', [Definition] = NULL, [SortOrder] = 321.10 WHERE [Code] = 'plk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpm', 'Koho', NULL, 321.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koho', [Definition] = NULL, [SortOrder] = 321.20 WHERE [Code] = 'kpm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcs', 'Kohumono', NULL, 321.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kohumono', [Definition] = NULL, [SortOrder] = 321.30 WHERE [Code] = 'bcs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkt', 'Koi', NULL, 321.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koi', [Definition] = NULL, [SortOrder] = 321.40 WHERE [Code] = 'kkt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkb', 'Koibal', NULL, 321.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koibal', [Definition] = NULL, [SortOrder] = 321.50 WHERE [Code] = 'zkb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkd', 'Koireng', NULL, 321.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koireng', [Definition] = NULL, [SortOrder] = 321.60 WHERE [Code] = 'nkd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqi', 'Koitabu', NULL, 321.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koitabu', [Definition] = NULL, [SortOrder] = 321.70 WHERE [Code] = 'kqi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxt', 'Koiwat', NULL, 321.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koiwat', [Definition] = NULL, [SortOrder] = 321.80 WHERE [Code] = 'kxt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trp', 'Kok Borok', NULL, 321.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kok Borok', [Definition] = NULL, [SortOrder] = 321.90 WHERE [Code] = 'trp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gko', 'Kok-Nar', NULL, 322.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kok-Nar', [Definition] = NULL, [SortOrder] = 322.00 WHERE [Code] = 'gko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktd', 'Kokata', NULL, 322.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kokata', [Definition] = NULL, [SortOrder] = 322.10 WHERE [Code] = 'ktd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kou', 'Koke', NULL, 322.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koke', [Definition] = NULL, [SortOrder] = 322.20 WHERE [Code] = 'kou' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxk', 'Koki Naga', NULL, 322.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koki Naga', [Definition] = NULL, [SortOrder] = 322.30 WHERE [Code] = 'nxk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okg', 'Koko Babangk', NULL, 322.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koko Babangk', [Definition] = NULL, [SortOrder] = 322.40 WHERE [Code] = 'okg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xod', 'Kokoda', NULL, 322.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kokoda', [Definition] = NULL, [SortOrder] = 322.50 WHERE [Code] = 'xod' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzn', 'Kokola', NULL, 322.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kokola', [Definition] = NULL, [SortOrder] = 322.60 WHERE [Code] = 'kzn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkk', 'Kokota', NULL, 322.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kokota', [Definition] = NULL, [SortOrder] = 322.70 WHERE [Code] = 'kkk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekl', 'Kol (Bangladesh)', NULL, 322.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kol (Bangladesh)', [Definition] = NULL, [SortOrder] = 322.80 WHERE [Code] = 'ekl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biw', 'Kol (Cameroon)', NULL, 322.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kol (Cameroon)', [Definition] = NULL, [SortOrder] = 322.90 WHERE [Code] = 'biw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kol', 'Kol (Papua New Guinea)', NULL, 323.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kol (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 323.00 WHERE [Code] = 'kol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvv', 'Kola', NULL, 323.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kola', [Definition] = NULL, [SortOrder] = 323.10 WHERE [Code] = 'kvv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klc', 'Kolbila', NULL, 323.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kolbila', [Definition] = NULL, [SortOrder] = 323.20 WHERE [Code] = 'klc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skn', 'Kolibugan Subanon', NULL, 323.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kolibugan Subanon', [Definition] = NULL, [SortOrder] = 323.30 WHERE [Code] = 'skn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksh', 'Kölsch', NULL, 323.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kölsch', [Definition] = NULL, [SortOrder] = 323.40 WHERE [Code] = 'ksh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klx', 'Koluwawa', NULL, 323.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koluwawa', [Definition] = NULL, [SortOrder] = 323.50 WHERE [Code] = 'klx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkm', 'Kom (Cameroon)', NULL, 323.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kom (Cameroon)', [Definition] = NULL, [SortOrder] = 323.60 WHERE [Code] = 'bkm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmm', 'Kom (India)', NULL, 323.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kom (India)', [Definition] = NULL, [SortOrder] = 323.70 WHERE [Code] = 'kmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmy', 'Koma', NULL, 323.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koma', [Definition] = NULL, [SortOrder] = 323.80 WHERE [Code] = 'kmy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpf', 'Komba', NULL, 323.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komba', [Definition] = NULL, [SortOrder] = 323.90 WHERE [Code] = 'kpf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyn', 'Kombai', NULL, 324.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kombai', [Definition] = NULL, [SortOrder] = 324.00 WHERE [Code] = 'tyn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbi', 'Kombio', NULL, 324.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kombio', [Definition] = NULL, [SortOrder] = 324.10 WHERE [Code] = 'xbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kge', 'Komering', NULL, 324.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komering', [Definition] = NULL, [SortOrder] = 324.20 WHERE [Code] = 'kge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kom', 'Komi', NULL, 324.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komi', [Definition] = NULL, [SortOrder] = 324.30 WHERE [Code] = 'kom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koi', 'Komi-Permyak', NULL, 324.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komi-Permyak', [Definition] = NULL, [SortOrder] = 324.40 WHERE [Code] = 'koi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpv', 'Komi-Zyrian', NULL, 324.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komi-Zyrian', [Definition] = NULL, [SortOrder] = 324.50 WHERE [Code] = 'kpv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xoi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xoi', 'Kominimung', NULL, 324.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kominimung', [Definition] = NULL, [SortOrder] = 324.60 WHERE [Code] = 'xoi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmw', 'Komo (Democratic Republic of Congo)', NULL, 324.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komo (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 324.70 WHERE [Code] = 'kmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xom', 'Komo (Sudan)', NULL, 324.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komo (Sudan)', [Definition] = NULL, [SortOrder] = 324.80 WHERE [Code] = 'xom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvh', 'Komodo', NULL, 324.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komodo', [Definition] = NULL, [SortOrder] = 324.90 WHERE [Code] = 'kvh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvp', 'Kompane', NULL, 325.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kompane', [Definition] = NULL, [SortOrder] = 325.00 WHERE [Code] = 'kvp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzv', 'Komyandaret', NULL, 325.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komyandaret', [Definition] = NULL, [SortOrder] = 325.10 WHERE [Code] = 'kzv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkn', 'Kon Keu', NULL, 325.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kon Keu', [Definition] = NULL, [SortOrder] = 325.20 WHERE [Code] = 'kkn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxw', 'Konai', NULL, 325.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konai', [Definition] = NULL, [SortOrder] = 325.30 WHERE [Code] = 'kxw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knd', 'Konda', NULL, 325.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konda', [Definition] = NULL, [SortOrder] = 325.40 WHERE [Code] = 'knd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfc', 'Konda-Dora', NULL, 325.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konda-Dora', [Definition] = NULL, [SortOrder] = 325.50 WHERE [Code] = 'kfc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdw', 'Koneraw', NULL, 325.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koneraw', [Definition] = NULL, [SortOrder] = 325.60 WHERE [Code] = 'kdw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kon', 'Kongo', NULL, 325.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kongo', [Definition] = NULL, [SortOrder] = 325.70 WHERE [Code] = 'kon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knn', 'Konkani (individual language)', NULL, 325.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konkani (individual language)', [Definition] = NULL, [SortOrder] = 325.80 WHERE [Code] = 'knn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kok', 'Konkani (macrolanguage)', NULL, 325.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konkani (macrolanguage)', [Definition] = NULL, [SortOrder] = 325.90 WHERE [Code] = 'kok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xon', 'Konkomba', NULL, 326.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konkomba', [Definition] = NULL, [SortOrder] = 326.00 WHERE [Code] = 'xon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kma', 'Konni', NULL, 326.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konni', [Definition] = NULL, [SortOrder] = 326.10 WHERE [Code] = 'kma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knu', 'Kono (Guinea)', NULL, 326.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kono (Guinea)', [Definition] = NULL, [SortOrder] = 326.20 WHERE [Code] = 'knu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klk', 'Kono (Nigeria)', NULL, 326.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kono (Nigeria)', [Definition] = NULL, [SortOrder] = 326.30 WHERE [Code] = 'klk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kno', 'Kono (Sierra Leone)', NULL, 326.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kono (Sierra Leone)', [Definition] = NULL, [SortOrder] = 326.40 WHERE [Code] = 'kno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koa', 'Konomala', NULL, 326.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konomala', [Definition] = NULL, [SortOrder] = 326.50 WHERE [Code] = 'koa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcz', 'Konongo', NULL, 326.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konongo', [Definition] = NULL, [SortOrder] = 326.60 WHERE [Code] = 'kcz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxc', 'Konso', NULL, 326.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konso', [Definition] = NULL, [SortOrder] = 326.70 WHERE [Code] = 'kxc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbe', 'Konyak Naga', NULL, 326.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konyak Naga', [Definition] = NULL, [SortOrder] = 326.80 WHERE [Code] = 'nbe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mku', 'Konyanka Maninka', NULL, 326.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konyanka Maninka', [Definition] = NULL, [SortOrder] = 326.90 WHERE [Code] = 'mku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koo', 'Konzo', NULL, 327.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konzo', [Definition] = NULL, [SortOrder] = 327.00 WHERE [Code] = 'koo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kng', 'Koongo', NULL, 327.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koongo', [Definition] = NULL, [SortOrder] = 327.10 WHERE [Code] = 'kng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ozm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ozm', 'Koonzime', NULL, 327.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koonzime', [Definition] = NULL, [SortOrder] = 327.20 WHERE [Code] = 'ozm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqy', 'Koorete', NULL, 327.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koorete', [Definition] = NULL, [SortOrder] = 327.30 WHERE [Code] = 'kqy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xop', 'Kopar', NULL, 327.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kopar', [Definition] = NULL, [SortOrder] = 327.40 WHERE [Code] = 'xop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opk', 'Kopkaka', NULL, 327.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kopkaka', [Definition] = NULL, [SortOrder] = 327.50 WHERE [Code] = 'opk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpr', 'Korafe-Yegha', NULL, 327.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korafe-Yegha', [Definition] = NULL, [SortOrder] = 327.60 WHERE [Code] = 'kpr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koz', 'Korak', NULL, 327.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korak', [Definition] = NULL, [SortOrder] = 327.70 WHERE [Code] = 'koz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqz', 'Korana', NULL, 327.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korana', [Definition] = NULL, [SortOrder] = 327.80 WHERE [Code] = 'kqz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcy', 'Korandje', NULL, 327.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korandje', [Definition] = NULL, [SortOrder] = 327.90 WHERE [Code] = 'kcy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kor', 'Korean', NULL, 328.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korean', [Definition] = NULL, [SortOrder] = 328.00 WHERE [Code] = 'kor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvk', 'Korean Sign Language', NULL, 328.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korean Sign Language', [Definition] = NULL, [SortOrder] = 328.10 WHERE [Code] = 'kvk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coe', 'Koreguaje', NULL, 328.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koreguaje', [Definition] = NULL, [SortOrder] = 328.20 WHERE [Code] = 'coe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okh', 'Koresh-e Rostam', NULL, 328.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koresh-e Rostam', [Definition] = NULL, [SortOrder] = 328.30 WHERE [Code] = 'okh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfq', 'Korku', NULL, 328.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korku', [Definition] = NULL, [SortOrder] = 328.40 WHERE [Code] = 'kfq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkp', 'Korlai Creole Portuguese', NULL, 328.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korlai Creole Portuguese', [Definition] = NULL, [SortOrder] = 328.50 WHERE [Code] = 'vkp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfo', 'Koro (Côte d''Ivoire)', NULL, 328.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 328.60 WHERE [Code] = 'kfo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jkr', 'Koro (India)', NULL, 328.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro (India)', [Definition] = NULL, [SortOrder] = 328.70 WHERE [Code] = 'jkr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxr', 'Koro (Papua New Guinea)', NULL, 328.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 328.80 WHERE [Code] = 'kxr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krf', 'Koro (Vanuatu)', NULL, 328.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro (Vanuatu)', [Definition] = NULL, [SortOrder] = 328.90 WHERE [Code] = 'krf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkn', 'Koro Nulu', NULL, 329.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro Nulu', [Definition] = NULL, [SortOrder] = 329.00 WHERE [Code] = 'vkn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqv', 'Koro Wachi', NULL, 329.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro Wachi', [Definition] = NULL, [SortOrder] = 329.10 WHERE [Code] = 'bqv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkz', 'Koro Zuba', NULL, 329.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro Zuba', [Definition] = NULL, [SortOrder] = 329.20 WHERE [Code] = 'vkz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfz', 'Koromfé', NULL, 329.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koromfé', [Definition] = NULL, [SortOrder] = 329.30 WHERE [Code] = 'kfz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqj', 'Koromira', NULL, 329.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koromira', [Definition] = NULL, [SortOrder] = 329.40 WHERE [Code] = 'kqj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpr', 'Koronadal Blaan', NULL, 329.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koronadal Blaan', [Definition] = NULL, [SortOrder] = 329.50 WHERE [Code] = 'bpr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkq', 'Koroni', NULL, 329.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koroni', [Definition] = NULL, [SortOrder] = 329.60 WHERE [Code] = 'xkq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krp', 'Korop', NULL, 329.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korop', [Definition] = NULL, [SortOrder] = 329.70 WHERE [Code] = 'krp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxr', 'Koropó', NULL, 329.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koropó', [Definition] = NULL, [SortOrder] = 329.80 WHERE [Code] = 'xxr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktl', 'Koroshi', NULL, 329.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koroshi', [Definition] = NULL, [SortOrder] = 329.90 WHERE [Code] = 'ktl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khe', 'Korowai', NULL, 330.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korowai', [Definition] = NULL, [SortOrder] = 330.00 WHERE [Code] = 'khe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfd', 'Korra Koraga', NULL, 330.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korra Koraga', [Definition] = NULL, [SortOrder] = 330.10 WHERE [Code] = 'kfd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xor', 'Korubo', NULL, 330.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korubo', [Definition] = NULL, [SortOrder] = 330.20 WHERE [Code] = 'xor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpq', 'Korupun-Sela', NULL, 330.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korupun-Sela', [Definition] = NULL, [SortOrder] = 330.30 WHERE [Code] = 'kpq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfp', 'Korwa', NULL, 330.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korwa', [Definition] = NULL, [SortOrder] = 330.40 WHERE [Code] = 'kfp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpy', 'Koryak', NULL, 330.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koryak', [Definition] = NULL, [SortOrder] = 330.50 WHERE [Code] = 'kpy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiq', 'Kosadle', NULL, 330.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kosadle', [Definition] = NULL, [SortOrder] = 330.60 WHERE [Code] = 'kiq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkl', 'Kosarek Yale', NULL, 330.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kosarek Yale', [Definition] = NULL, [SortOrder] = 330.70 WHERE [Code] = 'kkl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kze', 'Kosena', NULL, 330.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kosena', [Definition] = NULL, [SortOrder] = 330.80 WHERE [Code] = 'kze' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kid', 'Koshin', NULL, 330.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koshin', [Definition] = NULL, [SortOrder] = 330.90 WHERE [Code] = 'kid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kos', 'Kosraean', NULL, 331.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kosraean', [Definition] = NULL, [SortOrder] = 331.00 WHERE [Code] = 'kos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koq', 'Kota (Gabon)', NULL, 331.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kota (Gabon)', [Definition] = NULL, [SortOrder] = 331.10 WHERE [Code] = 'koq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfe', 'Kota (India)', NULL, 331.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kota (India)', [Definition] = NULL, [SortOrder] = 331.20 WHERE [Code] = 'kfe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqg', 'Kota Bangun Kutai Malay', NULL, 331.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kota Bangun Kutai Malay', [Definition] = NULL, [SortOrder] = 331.30 WHERE [Code] = 'mqg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grm', 'Kota Marudu Talantang', NULL, 331.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kota Marudu Talantang', [Definition] = NULL, [SortOrder] = 331.40 WHERE [Code] = 'grm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqk', 'Kotafon Gbe', NULL, 331.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kotafon Gbe', [Definition] = NULL, [SortOrder] = 331.50 WHERE [Code] = 'kqk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avk', 'Kotava', NULL, 331.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kotava', [Definition] = NULL, [SortOrder] = 331.60 WHERE [Code] = 'avk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eko', 'Koti', NULL, 331.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koti', [Definition] = NULL, [SortOrder] = 331.70 WHERE [Code] = 'eko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zko', 'Kott', NULL, 331.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kott', [Definition] = NULL, [SortOrder] = 331.80 WHERE [Code] = 'zko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snz', 'Kou', NULL, 331.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kou', [Definition] = NULL, [SortOrder] = 331.90 WHERE [Code] = 'snz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyf', 'Kouya', NULL, 332.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kouya', [Definition] = NULL, [SortOrder] = 332.00 WHERE [Code] = 'kyf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqb', 'Kovai', NULL, 332.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kovai', [Definition] = NULL, [SortOrder] = 332.10 WHERE [Code] = 'kqb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvc', 'Kove', NULL, 332.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kove', [Definition] = NULL, [SortOrder] = 332.20 WHERE [Code] = 'kvc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xow', 'Kowaki', NULL, 332.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kowaki', [Definition] = NULL, [SortOrder] = 332.30 WHERE [Code] = 'xow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwh', 'Kowiai', NULL, 332.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kowiai', [Definition] = NULL, [SortOrder] = 332.40 WHERE [Code] = 'kwh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqd', 'Koy Sanjaq Surat', NULL, 332.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koy Sanjaq Surat', [Definition] = NULL, [SortOrder] = 332.50 WHERE [Code] = 'kqd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kff') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kff', 'Koya', NULL, 332.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koya', [Definition] = NULL, [SortOrder] = 332.60 WHERE [Code] = 'kff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kga', 'Koyaga', NULL, 332.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyaga', [Definition] = NULL, [SortOrder] = 332.70 WHERE [Code] = 'kga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koh', 'Koyo', NULL, 332.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyo', [Definition] = NULL, [SortOrder] = 332.80 WHERE [Code] = 'koh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khq', 'Koyra Chiini Songhay', NULL, 332.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyra Chiini Songhay', [Definition] = NULL, [SortOrder] = 332.90 WHERE [Code] = 'khq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ses') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ses', 'Koyraboro Senni Songhai', NULL, 333.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyraboro Senni Songhai', [Definition] = NULL, [SortOrder] = 333.00 WHERE [Code] = 'ses' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koy', 'Koyukon', NULL, 333.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyukon', [Definition] = NULL, [SortOrder] = 333.10 WHERE [Code] = 'koy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuw', 'Kpagua', NULL, 333.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpagua', [Definition] = NULL, [SortOrder] = 333.20 WHERE [Code] = 'kuw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpl', 'Kpala', NULL, 333.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpala', [Definition] = NULL, [SortOrder] = 333.30 WHERE [Code] = 'kpl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpk', 'Kpan', NULL, 333.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpan', [Definition] = NULL, [SortOrder] = 333.40 WHERE [Code] = 'kpk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbn', 'Kpasam', NULL, 333.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpasam', [Definition] = NULL, [SortOrder] = 333.50 WHERE [Code] = 'pbn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koc', 'Kpati', NULL, 333.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpati', [Definition] = NULL, [SortOrder] = 333.60 WHERE [Code] = 'koc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kym', 'Kpatili', NULL, 333.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpatili', [Definition] = NULL, [SortOrder] = 333.70 WHERE [Code] = 'kym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpo', 'Kpeego', NULL, 333.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpeego', [Definition] = NULL, [SortOrder] = 333.80 WHERE [Code] = 'cpo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpe', 'Kpelle', NULL, 333.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpelle', [Definition] = NULL, [SortOrder] = 333.90 WHERE [Code] = 'kpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kef', 'Kpessi', NULL, 334.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpessi', [Definition] = NULL, [SortOrder] = 334.00 WHERE [Code] = 'kef' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kph', 'Kplang', NULL, 334.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kplang', [Definition] = NULL, [SortOrder] = 334.10 WHERE [Code] = 'kph' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kye', 'Krache', NULL, 334.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krache', [Definition] = NULL, [SortOrder] = 334.20 WHERE [Code] = 'kye' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xra', 'Krahô', NULL, 334.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krahô', [Definition] = NULL, [SortOrder] = 334.30 WHERE [Code] = 'xra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rka', 'Kraol', NULL, 334.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kraol', [Definition] = NULL, [SortOrder] = 334.40 WHERE [Code] = 'rka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqq', 'Krenak', NULL, 334.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krenak', [Definition] = NULL, [SortOrder] = 334.50 WHERE [Code] = 'kqq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkv', 'Krevinian', NULL, 334.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krevinian', [Definition] = NULL, [SortOrder] = 334.60 WHERE [Code] = 'zkv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xre', 'Kreye', NULL, 334.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kreye', [Definition] = NULL, [SortOrder] = 334.70 WHERE [Code] = 'xre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngt', 'Kriang', NULL, 334.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kriang', [Definition] = NULL, [SortOrder] = 334.80 WHERE [Code] = 'ngt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xri', 'Krikati-Timbira', NULL, 334.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krikati-Timbira', [Definition] = NULL, [SortOrder] = 334.90 WHERE [Code] = 'xri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kri', 'Krio', NULL, 335.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krio', [Definition] = NULL, [SortOrder] = 335.00 WHERE [Code] = 'kri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rop', 'Kriol', NULL, 335.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kriol', [Definition] = NULL, [SortOrder] = 335.10 WHERE [Code] = 'rop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksi', 'Krisa', NULL, 335.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krisa', [Definition] = NULL, [SortOrder] = 335.20 WHERE [Code] = 'ksi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxb', 'Krobu', NULL, 335.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krobu', [Definition] = NULL, [SortOrder] = 335.30 WHERE [Code] = 'kxb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgo', 'Krongo', NULL, 335.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krongo', [Definition] = NULL, [SortOrder] = 335.40 WHERE [Code] = 'kgo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krr', 'Krung', NULL, 335.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krung', [Definition] = NULL, [SortOrder] = 335.50 WHERE [Code] = 'krr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jct', 'Krymchak', NULL, 335.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krymchak', [Definition] = NULL, [SortOrder] = 335.60 WHERE [Code] = 'jct' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kry', 'Kryts', NULL, 335.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kryts', [Definition] = NULL, [SortOrder] = 335.70 WHERE [Code] = 'kry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyu', 'Kua', NULL, 335.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kua', [Definition] = NULL, [SortOrder] = 335.80 WHERE [Code] = 'tyu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykn', 'Kua-nsi', NULL, 335.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kua-nsi', [Definition] = NULL, [SortOrder] = 335.90 WHERE [Code] = 'ykn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yku', 'Kuamasi', NULL, 336.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuamasi', [Definition] = NULL, [SortOrder] = 336.00 WHERE [Code] = 'yku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uan', 'Kuan', NULL, 336.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuan', [Definition] = NULL, [SortOrder] = 336.10 WHERE [Code] = 'uan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnh', 'Kuanhua', NULL, 336.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuanhua', [Definition] = NULL, [SortOrder] = 336.20 WHERE [Code] = 'xnh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksd', 'Kuanua', NULL, 336.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuanua', [Definition] = NULL, [SortOrder] = 336.30 WHERE [Code] = 'ksd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kua', 'Kuanyama', NULL, 336.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuanyama', [Definition] = NULL, [SortOrder] = 336.40 WHERE [Code] = 'kua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugh', 'Kubachi', NULL, 336.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kubachi', [Definition] = NULL, [SortOrder] = 336.50 WHERE [Code] = 'ugh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgf', 'Kube', NULL, 336.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kube', [Definition] = NULL, [SortOrder] = 336.60 WHERE [Code] = 'kgf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kof', 'Kubi', NULL, 336.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kubi', [Definition] = NULL, [SortOrder] = 336.70 WHERE [Code] = 'kof' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jko', 'Kubo', NULL, 336.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kubo', [Definition] = NULL, [SortOrder] = 336.80 WHERE [Code] = 'jko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvb', 'Kubu', NULL, 336.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kubu', [Definition] = NULL, [SortOrder] = 336.90 WHERE [Code] = 'kvb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkc', 'Kucong', NULL, 337.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kucong', [Definition] = NULL, [SortOrder] = 337.00 WHERE [Code] = 'lkc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfg', 'Kudiya', NULL, 337.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kudiya', [Definition] = NULL, [SortOrder] = 337.10 WHERE [Code] = 'kfg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyw', 'Kudmali', NULL, 337.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kudmali', [Definition] = NULL, [SortOrder] = 337.20 WHERE [Code] = 'kyw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kov', 'Kudu-Camo', NULL, 337.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kudu-Camo', [Definition] = NULL, [SortOrder] = 337.30 WHERE [Code] = 'kov' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqx', 'Kufr Qassem Sign Language (KQSL)', NULL, 337.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kufr Qassem Sign Language (KQSL)', [Definition] = NULL, [SortOrder] = 337.40 WHERE [Code] = 'sqx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kow', 'Kugama', NULL, 337.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kugama', [Definition] = NULL, [SortOrder] = 337.50 WHERE [Code] = 'kow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kes', 'Kugbo', NULL, 337.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kugbo', [Definition] = NULL, [SortOrder] = 337.60 WHERE [Code] = 'kes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmh', 'Kugu-Muminh', NULL, 337.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kugu-Muminh', [Definition] = NULL, [SortOrder] = 337.70 WHERE [Code] = 'xmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uki', 'Kui (India)', NULL, 337.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kui (India)', [Definition] = NULL, [SortOrder] = 337.80 WHERE [Code] = 'uki' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvd', 'Kui (Indonesia)', NULL, 337.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kui (Indonesia)', [Definition] = NULL, [SortOrder] = 337.90 WHERE [Code] = 'kvd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dkr', 'Kuijau', NULL, 338.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuijau', [Definition] = NULL, [SortOrder] = 338.00 WHERE [Code] = 'dkr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kui', 'Kuikúro-Kalapálo', NULL, 338.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuikúro-Kalapálo', [Definition] = NULL, [SortOrder] = 338.10 WHERE [Code] = 'kui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkj', 'Kujarge', NULL, 338.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kujarge', [Definition] = NULL, [SortOrder] = 338.20 WHERE [Code] = 'vkj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfn', 'Kuk', NULL, 338.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuk', [Definition] = NULL, [SortOrder] = 338.30 WHERE [Code] = 'kfn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kux', 'Kukatja', NULL, 338.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kukatja', [Definition] = NULL, [SortOrder] = 338.40 WHERE [Code] = 'kux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ght') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ght', 'Kuke', NULL, 338.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuke', [Definition] = NULL, [SortOrder] = 338.50 WHERE [Code] = 'ght' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kez', 'Kukele', NULL, 338.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kukele', [Definition] = NULL, [SortOrder] = 338.60 WHERE [Code] = 'kez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kex', 'Kukna', NULL, 338.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kukna', [Definition] = NULL, [SortOrder] = 338.70 WHERE [Code] = 'kex' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukv', 'Kuku', NULL, 338.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku', [Definition] = NULL, [SortOrder] = 338.80 WHERE [Code] = 'ukv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmq', 'Kuku-Mangk', NULL, 338.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Mangk', [Definition] = NULL, [SortOrder] = 338.90 WHERE [Code] = 'xmq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmp', 'Kuku-Mu''inh', NULL, 339.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Mu''inh', [Definition] = NULL, [SortOrder] = 339.00 WHERE [Code] = 'xmp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugb', 'Kuku-Ugbanh', NULL, 339.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Ugbanh', [Definition] = NULL, [SortOrder] = 339.10 WHERE [Code] = 'ugb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uwa', 'Kuku-Uwanh', NULL, 339.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Uwanh', [Definition] = NULL, [SortOrder] = 339.20 WHERE [Code] = 'uwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvn', 'Kuku-Yalanji', NULL, 339.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Yalanji', [Definition] = NULL, [SortOrder] = 339.30 WHERE [Code] = 'gvn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpg', 'Kula', NULL, 339.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kula', [Definition] = NULL, [SortOrder] = 339.40 WHERE [Code] = 'tpg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kul', 'Kulere', NULL, 339.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulere', [Definition] = NULL, [SortOrder] = 339.50 WHERE [Code] = 'kul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxj', 'Kulfa', NULL, 339.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulfa', [Definition] = NULL, [SortOrder] = 339.60 WHERE [Code] = 'kxj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpk', 'Kulina Pano', NULL, 339.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulina Pano', [Definition] = NULL, [SortOrder] = 339.70 WHERE [Code] = 'xpk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkl', 'Kulisusu', NULL, 339.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulisusu', [Definition] = NULL, [SortOrder] = 339.80 WHERE [Code] = 'vkl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfx', 'Kullu Pahari', NULL, 339.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kullu Pahari', [Definition] = NULL, [SortOrder] = 339.90 WHERE [Code] = 'kfx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uon', 'Kulon', NULL, 340.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulon', [Definition] = NULL, [SortOrder] = 340.00 WHERE [Code] = 'uon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kle', 'Kulung (Nepal)', NULL, 340.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulung (Nepal)', [Definition] = NULL, [SortOrder] = 340.10 WHERE [Code] = 'kle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbu', 'Kulung (Nigeria)', NULL, 340.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulung (Nigeria)', [Definition] = NULL, [SortOrder] = 340.20 WHERE [Code] = 'bbu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksl', 'Kumalu', NULL, 340.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumalu', [Definition] = NULL, [SortOrder] = 340.30 WHERE [Code] = 'ksl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdi', 'Kumam', NULL, 340.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumam', [Definition] = NULL, [SortOrder] = 340.40 WHERE [Code] = 'kdi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kue', 'Kuman (Papua New Guinea)', NULL, 340.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuman (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 340.50 WHERE [Code] = 'kue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwm', 'Kuman (Russia)', NULL, 340.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuman (Russia)', [Definition] = NULL, [SortOrder] = 340.60 WHERE [Code] = 'qwm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfy', 'Kumaoni', NULL, 340.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumaoni', [Definition] = NULL, [SortOrder] = 340.70 WHERE [Code] = 'kfy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmj', 'Kumarbhag Paharia', NULL, 340.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumarbhag Paharia', [Definition] = NULL, [SortOrder] = 340.80 WHERE [Code] = 'kmj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksm', 'Kumba', NULL, 340.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumba', [Definition] = NULL, [SortOrder] = 340.90 WHERE [Code] = 'ksm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgs', 'Kumbainggar', NULL, 341.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumbainggar', [Definition] = NULL, [SortOrder] = 341.00 WHERE [Code] = 'kgs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkb', 'Kumbaran', NULL, 341.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumbaran', [Definition] = NULL, [SortOrder] = 341.10 WHERE [Code] = 'wkb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xks', 'Kumbewaha', NULL, 341.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumbewaha', [Definition] = NULL, [SortOrder] = 341.20 WHERE [Code] = 'xks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kra', 'Kumhali', NULL, 341.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumhali', [Definition] = NULL, [SortOrder] = 341.30 WHERE [Code] = 'kra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dih', 'Kumiai', NULL, 341.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumiai', [Definition] = NULL, [SortOrder] = 341.40 WHERE [Code] = 'dih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuo', 'Kumukio', NULL, 341.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumukio', [Definition] = NULL, [SortOrder] = 341.50 WHERE [Code] = 'kuo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kum', 'Kumyk', NULL, 341.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumyk', [Definition] = NULL, [SortOrder] = 341.60 WHERE [Code] = 'kum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zum', 'Kumzari', NULL, 341.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumzari', [Definition] = NULL, [SortOrder] = 341.70 WHERE [Code] = 'zum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kun', 'Kunama', NULL, 341.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunama', [Definition] = NULL, [SortOrder] = 341.80 WHERE [Code] = 'kun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlg', 'Kunbarlang', NULL, 341.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunbarlang', [Definition] = NULL, [SortOrder] = 341.90 WHERE [Code] = 'wlg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdn', 'Kunda', NULL, 342.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunda', [Definition] = NULL, [SortOrder] = 342.00 WHERE [Code] = 'kdn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shd', 'Kundal Shahi', NULL, 342.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kundal Shahi', [Definition] = NULL, [SortOrder] = 342.10 WHERE [Code] = 'shd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wku', 'Kunduvadi', NULL, 342.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunduvadi', [Definition] = NULL, [SortOrder] = 342.20 WHERE [Code] = 'wku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfl', 'Kung', NULL, 342.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kung', [Definition] = NULL, [SortOrder] = 342.30 WHERE [Code] = 'kfl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knw', 'Kung-Ekoka', NULL, 342.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kung-Ekoka', [Definition] = NULL, [SortOrder] = 342.40 WHERE [Code] = 'knw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggk', 'Kungarakany', NULL, 342.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kungarakany', [Definition] = NULL, [SortOrder] = 342.50 WHERE [Code] = 'ggk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdt', 'Kungardutyi', NULL, 342.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kungardutyi', [Definition] = NULL, [SortOrder] = 342.60 WHERE [Code] = 'gdt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgl', 'Kunggari', NULL, 342.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunggari', [Definition] = NULL, [SortOrder] = 342.70 WHERE [Code] = 'kgl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lku', 'Kungkari', NULL, 342.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kungkari', [Definition] = NULL, [SortOrder] = 342.80 WHERE [Code] = 'lku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kse', 'Kuni', NULL, 342.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuni', [Definition] = NULL, [SortOrder] = 342.90 WHERE [Code] = 'kse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvg', 'Kuni-Boazi', NULL, 343.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuni-Boazi', [Definition] = NULL, [SortOrder] = 343.00 WHERE [Code] = 'kvg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xug', 'Kunigami', NULL, 343.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunigami', [Definition] = NULL, [SortOrder] = 343.10 WHERE [Code] = 'xug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kup', 'Kunimaipa', NULL, 343.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunimaipa', [Definition] = NULL, [SortOrder] = 343.20 WHERE [Code] = 'kup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pep', 'Kunja', NULL, 343.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunja', [Definition] = NULL, [SortOrder] = 343.30 WHERE [Code] = 'pep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjn', 'Kunjen', NULL, 343.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunjen', [Definition] = NULL, [SortOrder] = 343.40 WHERE [Code] = 'kjn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njx', 'Kunyi', NULL, 343.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunyi', [Definition] = NULL, [SortOrder] = 343.50 WHERE [Code] = 'njx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuz', 'Kunza', NULL, 343.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunza', [Definition] = NULL, [SortOrder] = 343.60 WHERE [Code] = 'kuz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xuo', 'Kuo', NULL, 343.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuo', [Definition] = NULL, [SortOrder] = 343.70 WHERE [Code] = 'xuo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kto', 'Kuot', NULL, 343.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuot', [Definition] = NULL, [SortOrder] = 343.80 WHERE [Code] = 'kto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kug', 'Kupa', NULL, 343.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kupa', [Definition] = NULL, [SortOrder] = 343.90 WHERE [Code] = 'kug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkn', 'Kupang Malay', NULL, 344.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kupang Malay', [Definition] = NULL, [SortOrder] = 344.00 WHERE [Code] = 'mkn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'key') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('key', 'Kupia', NULL, 344.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kupia', [Definition] = NULL, [SortOrder] = 344.10 WHERE [Code] = 'key' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpz', 'Kupsabiny', NULL, 344.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kupsabiny', [Definition] = NULL, [SortOrder] = 344.20 WHERE [Code] = 'kpz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuv', 'Kur', NULL, 344.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kur', [Definition] = NULL, [SortOrder] = 344.30 WHERE [Code] = 'kuv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqk', 'Kura Ede Nago', NULL, 344.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kura Ede Nago', [Definition] = NULL, [SortOrder] = 344.40 WHERE [Code] = 'nqk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krh', 'Kurama', NULL, 344.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurama', [Definition] = NULL, [SortOrder] = 344.50 WHERE [Code] = 'krh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knk', 'Kuranko', NULL, 344.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuranko', [Definition] = NULL, [SortOrder] = 344.60 WHERE [Code] = 'knk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kur', 'Kurdish', NULL, 344.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurdish', [Definition] = NULL, [SortOrder] = 344.70 WHERE [Code] = 'kur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbn', 'Kuri', NULL, 344.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuri', [Definition] = NULL, [SortOrder] = 344.80 WHERE [Code] = 'nbn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuj', 'Kuria', NULL, 344.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuria', [Definition] = NULL, [SortOrder] = 344.90 WHERE [Code] = 'kuj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfh', 'Kurichiya', NULL, 345.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurichiya', [Definition] = NULL, [SortOrder] = 345.00 WHERE [Code] = 'kfh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfv', 'Kurmukar', NULL, 345.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurmukar', [Definition] = NULL, [SortOrder] = 345.10 WHERE [Code] = 'kfv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unn', 'Kurnai', NULL, 345.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurnai', [Definition] = NULL, [SortOrder] = 345.20 WHERE [Code] = 'unn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vku', 'Kurrama', NULL, 345.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurrama', [Definition] = NULL, [SortOrder] = 345.30 WHERE [Code] = 'vku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktm', 'Kurti', NULL, 345.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurti', [Definition] = NULL, [SortOrder] = 345.40 WHERE [Code] = 'ktm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkz', 'Kurtokha', NULL, 345.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurtokha', [Definition] = NULL, [SortOrder] = 345.50 WHERE [Code] = 'xkz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyr', 'Kuruáya', NULL, 345.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuruáya', [Definition] = NULL, [SortOrder] = 345.60 WHERE [Code] = 'kyr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjr', 'Kurudu', NULL, 345.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurudu', [Definition] = NULL, [SortOrder] = 345.70 WHERE [Code] = 'kjr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kru', 'Kurukh', NULL, 345.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurukh', [Definition] = NULL, [SortOrder] = 345.80 WHERE [Code] = 'kru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kus', 'Kusaal', NULL, 345.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kusaal', [Definition] = NULL, [SortOrder] = 345.90 WHERE [Code] = 'kus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksg', 'Kusaghe', NULL, 346.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kusaghe', [Definition] = NULL, [SortOrder] = 346.00 WHERE [Code] = 'ksg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuh', 'Kushi', NULL, 346.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kushi', [Definition] = NULL, [SortOrder] = 346.10 WHERE [Code] = 'kuh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksv', 'Kusu', NULL, 346.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kusu', [Definition] = NULL, [SortOrder] = 346.20 WHERE [Code] = 'ksv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgg', 'Kusunda', NULL, 346.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kusunda', [Definition] = NULL, [SortOrder] = 346.30 WHERE [Code] = 'kgg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kut', 'Kutenai', NULL, 346.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutenai', [Definition] = NULL, [SortOrder] = 346.40 WHERE [Code] = 'kut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kub', 'Kutep', NULL, 346.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutep', [Definition] = NULL, [SortOrder] = 346.50 WHERE [Code] = 'kub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xut', 'Kuthant', NULL, 346.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuthant', [Definition] = NULL, [SortOrder] = 346.60 WHERE [Code] = 'xut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skm', 'Kutong', NULL, 346.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutong', [Definition] = NULL, [SortOrder] = 346.70 WHERE [Code] = 'skm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpa', 'Kutto', NULL, 346.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutto', [Definition] = NULL, [SortOrder] = 346.80 WHERE [Code] = 'kpa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdc', 'Kutu', NULL, 346.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutu', [Definition] = NULL, [SortOrder] = 346.90 WHERE [Code] = 'kdc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khj', 'Kuturmi', NULL, 347.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuturmi', [Definition] = NULL, [SortOrder] = 347.00 WHERE [Code] = 'khj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thd', 'Kuuk Thaayorre', NULL, 347.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuuk Thaayorre', [Definition] = NULL, [SortOrder] = 347.10 WHERE [Code] = 'thd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uky', 'Kuuk-Yak', NULL, 347.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuuk-Yak', [Definition] = NULL, [SortOrder] = 347.20 WHERE [Code] = 'uky' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuy', 'Kuuku-Ya''u', NULL, 347.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuuku-Ya''u', [Definition] = NULL, [SortOrder] = 347.30 WHERE [Code] = 'kuy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olu', 'Kuvale', NULL, 347.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuvale', [Definition] = NULL, [SortOrder] = 347.40 WHERE [Code] = 'olu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxv', 'Kuvi', NULL, 347.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuvi', [Definition] = NULL, [SortOrder] = 347.50 WHERE [Code] = 'kxv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blh', 'Kuwaa', NULL, 347.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuwaa', [Definition] = NULL, [SortOrder] = 347.60 WHERE [Code] = 'blh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwt', 'Kuwaataay', NULL, 347.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuwaataay', [Definition] = NULL, [SortOrder] = 347.70 WHERE [Code] = 'cwt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woa', 'Kuwema', NULL, 347.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuwema', [Definition] = NULL, [SortOrder] = 347.80 WHERE [Code] = 'woa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdt', 'Kuy', NULL, 347.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuy', [Definition] = NULL, [SortOrder] = 347.90 WHERE [Code] = 'kdt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fkv', 'Kven Finnish', NULL, 348.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kven Finnish', [Definition] = NULL, [SortOrder] = 348.00 WHERE [Code] = 'fkv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wka', 'Kw''adza', NULL, 348.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kw''adza', [Definition] = NULL, [SortOrder] = 348.10 WHERE [Code] = 'wka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwb', 'Kwa', NULL, 348.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwa', [Definition] = NULL, [SortOrder] = 348.20 WHERE [Code] = 'kwb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bko', 'Kwa''', NULL, 348.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwa''', [Definition] = NULL, [SortOrder] = 348.30 WHERE [Code] = 'bko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksq', 'Kwaami', NULL, 348.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaami', [Definition] = NULL, [SortOrder] = 348.40 WHERE [Code] = 'ksq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwz', 'Kwadi', NULL, 348.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwadi', [Definition] = NULL, [SortOrder] = 348.50 WHERE [Code] = 'kwz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwd', 'Kwaio', NULL, 348.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaio', [Definition] = NULL, [SortOrder] = 348.60 WHERE [Code] = 'kwd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdz', 'Kwaja', NULL, 348.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaja', [Definition] = NULL, [SortOrder] = 348.70 WHERE [Code] = 'kdz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwk', 'Kwakiutl', NULL, 348.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwakiutl', [Definition] = NULL, [SortOrder] = 348.80 WHERE [Code] = 'kwk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwu', 'Kwakum', NULL, 348.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwakum', [Definition] = NULL, [SortOrder] = 348.90 WHERE [Code] = 'kwu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwt', 'Kwalhioqua-Tlatskanai', NULL, 349.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwalhioqua-Tlatskanai', [Definition] = NULL, [SortOrder] = 349.00 WHERE [Code] = 'qwt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmq', 'Kwama', NULL, 349.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwama', [Definition] = NULL, [SortOrder] = 349.10 WHERE [Code] = 'kmq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwm', 'Kwambi', NULL, 349.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwambi', [Definition] = NULL, [SortOrder] = 349.20 WHERE [Code] = 'kwm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnk', 'Kwamera', NULL, 349.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwamera', [Definition] = NULL, [SortOrder] = 349.30 WHERE [Code] = 'tnk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktf', 'Kwami', NULL, 349.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwami', [Definition] = NULL, [SortOrder] = 349.40 WHERE [Code] = 'ktf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okk', 'Kwamtim One', NULL, 349.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwamtim One', [Definition] = NULL, [SortOrder] = 349.50 WHERE [Code] = 'okk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdo', 'Kwandu', NULL, 349.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwandu', [Definition] = NULL, [SortOrder] = 349.60 WHERE [Code] = 'xdo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvi', 'Kwang', NULL, 349.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwang', [Definition] = NULL, [SortOrder] = 349.70 WHERE [Code] = 'kvi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwj', 'Kwanga', NULL, 349.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwanga', [Definition] = NULL, [SortOrder] = 349.80 WHERE [Code] = 'kwj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwn', 'Kwangali', NULL, 349.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwangali', [Definition] = NULL, [SortOrder] = 349.90 WHERE [Code] = 'kwn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knp', 'Kwanja', NULL, 350.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwanja', [Definition] = NULL, [SortOrder] = 350.00 WHERE [Code] = 'knp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwf', 'Kwara''ae', NULL, 350.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwara''ae', [Definition] = NULL, [SortOrder] = 350.10 WHERE [Code] = 'kwf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmg', 'Kwasio', NULL, 350.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwasio', [Definition] = NULL, [SortOrder] = 350.20 WHERE [Code] = 'nmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kya', 'Kwaya', NULL, 350.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaya', [Definition] = NULL, [SortOrder] = 350.30 WHERE [Code] = 'kya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwa', 'Kwaza', NULL, 350.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaza', [Definition] = NULL, [SortOrder] = 350.40 WHERE [Code] = 'xwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwg', 'Kwegu', NULL, 350.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwegu', [Definition] = NULL, [SortOrder] = 350.50 WHERE [Code] = 'xwg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwr', 'Kwer', NULL, 350.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwer', [Definition] = NULL, [SortOrder] = 350.60 WHERE [Code] = 'kwr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwe', 'Kwerba', NULL, 350.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwerba', [Definition] = NULL, [SortOrder] = 350.70 WHERE [Code] = 'kwe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwr', 'Kwerba Mamberamo', NULL, 350.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwerba Mamberamo', [Definition] = NULL, [SortOrder] = 350.80 WHERE [Code] = 'xwr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwe', 'Kwere', NULL, 350.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwere', [Definition] = NULL, [SortOrder] = 350.90 WHERE [Code] = 'cwe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkb', 'Kwerisa', NULL, 351.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwerisa', [Definition] = NULL, [SortOrder] = 351.00 WHERE [Code] = 'kkb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kws', 'Kwese', NULL, 351.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwese', [Definition] = NULL, [SortOrder] = 351.10 WHERE [Code] = 'kws' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwt', 'Kwesten', NULL, 351.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwesten', [Definition] = NULL, [SortOrder] = 351.20 WHERE [Code] = 'kwt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gww', 'Kwini', NULL, 351.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwini', [Definition] = NULL, [SortOrder] = 351.30 WHERE [Code] = 'gww' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuc', 'Kwinsu', NULL, 351.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwinsu', [Definition] = NULL, [SortOrder] = 351.40 WHERE [Code] = 'kuc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kww', 'Kwinti', NULL, 351.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwinti', [Definition] = NULL, [SortOrder] = 351.50 WHERE [Code] = 'kww' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmo', 'Kwoma', NULL, 351.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwoma', [Definition] = NULL, [SortOrder] = 351.60 WHERE [Code] = 'kmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwo', 'Kwomtari', NULL, 351.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwomtari', [Definition] = NULL, [SortOrder] = 351.70 WHERE [Code] = 'kwo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xuu', 'Kxoe', NULL, 351.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kxoe', [Definition] = NULL, [SortOrder] = 351.80 WHERE [Code] = 'xuu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bka', 'Kyak', NULL, 351.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyak', [Definition] = NULL, [SortOrder] = 351.90 WHERE [Code] = 'bka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyc', 'Kyaka', NULL, 352.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyaka', [Definition] = NULL, [SortOrder] = 352.00 WHERE [Code] = 'kyc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqq', 'Kyan-Karyaw Naga', NULL, 352.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyan-Karyaw Naga', [Definition] = NULL, [SortOrder] = 352.10 WHERE [Code] = 'nqq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tye', 'Kyanga', NULL, 352.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyanga', [Definition] = NULL, [SortOrder] = 352.20 WHERE [Code] = 'tye' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kql', 'Kyenele', NULL, 352.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyenele', [Definition] = NULL, [SortOrder] = 352.30 WHERE [Code] = 'kql' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgy', 'Kyerung', NULL, 352.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyerung', [Definition] = NULL, [SortOrder] = 352.40 WHERE [Code] = 'kgy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbi', 'La''bi', NULL, 352.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'La''bi', [Definition] = NULL, [SortOrder] = 352.50 WHERE [Code] = 'lbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwj', 'Láá Láá Bwamu', NULL, 352.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Láá Láá Bwamu', [Definition] = NULL, [SortOrder] = 352.60 WHERE [Code] = 'bwj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldn', 'Láadan', NULL, 352.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Láadan', [Definition] = NULL, [SortOrder] = 352.70 WHERE [Code] = 'ldn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdm', 'Laal', NULL, 352.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laal', [Definition] = NULL, [SortOrder] = 352.80 WHERE [Code] = 'gdm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldi', 'Laari', NULL, 352.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laari', [Definition] = NULL, [SortOrder] = 352.90 WHERE [Code] = 'ldi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lau', 'Laba', NULL, 353.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laba', [Definition] = NULL, [SortOrder] = 353.00 WHERE [Code] = 'lau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbb', 'Label', NULL, 353.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Label', [Definition] = NULL, [SortOrder] = 353.10 WHERE [Code] = 'lbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jku', 'Labir', NULL, 353.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labir', [Definition] = NULL, [SortOrder] = 353.20 WHERE [Code] = 'jku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwi', 'Labo', NULL, 353.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labo', [Definition] = NULL, [SortOrder] = 353.30 WHERE [Code] = 'mwi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypb', 'Labo Phowa', NULL, 353.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labo Phowa', [Definition] = NULL, [SortOrder] = 353.40 WHERE [Code] = 'ypb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbu', 'Labu', NULL, 353.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labu', [Definition] = NULL, [SortOrder] = 353.50 WHERE [Code] = 'lbu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtb', 'Labuk-Kinabatangan Kadazan', NULL, 353.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labuk-Kinabatangan Kadazan', [Definition] = NULL, [SortOrder] = 353.60 WHERE [Code] = 'dtb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lac', 'Lacandon', NULL, 353.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lacandon', [Definition] = NULL, [SortOrder] = 353.70 WHERE [Code] = 'lac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbt', 'Lachi', NULL, 353.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lachi', [Definition] = NULL, [SortOrder] = 353.80 WHERE [Code] = 'lbt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpa', 'Lachiguiri Zapotec', NULL, 353.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lachiguiri Zapotec', [Definition] = NULL, [SortOrder] = 353.90 WHERE [Code] = 'zpa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpl', 'Lachixío Zapotec', NULL, 354.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lachixío Zapotec', [Definition] = NULL, [SortOrder] = 354.00 WHERE [Code] = 'zpl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbj', 'Ladakhi', NULL, 354.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ladakhi', [Definition] = NULL, [SortOrder] = 354.10 WHERE [Code] = 'lbj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lld', 'Ladin', NULL, 354.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ladin', [Definition] = NULL, [SortOrder] = 354.20 WHERE [Code] = 'lld' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lad', 'Ladino', NULL, 354.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ladino', [Definition] = NULL, [SortOrder] = 354.30 WHERE [Code] = 'lad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llj', 'Ladji Ladji', NULL, 354.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ladji Ladji', [Definition] = NULL, [SortOrder] = 354.40 WHERE [Code] = 'llj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkl', 'Laeko-Libuat', NULL, 354.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laeko-Libuat', [Definition] = NULL, [SortOrder] = 354.50 WHERE [Code] = 'lkl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laf', 'Lafofa', NULL, 354.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lafofa', [Definition] = NULL, [SortOrder] = 354.60 WHERE [Code] = 'laf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgb', 'Laghu', NULL, 354.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laghu', [Definition] = NULL, [SortOrder] = 354.70 WHERE [Code] = 'lgb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgh', 'Laghuu', NULL, 354.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laghuu', [Definition] = NULL, [SortOrder] = 354.80 WHERE [Code] = 'lgh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kot', 'Lagwan', NULL, 354.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lagwan', [Definition] = NULL, [SortOrder] = 354.90 WHERE [Code] = 'kot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhh', 'Laha (Indonesia)', NULL, 355.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laha (Indonesia)', [Definition] = NULL, [SortOrder] = 355.00 WHERE [Code] = 'lhh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lha', 'Laha (Viet Nam)', NULL, 355.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laha (Viet Nam)', [Definition] = NULL, [SortOrder] = 355.10 WHERE [Code] = 'lha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhn', 'Lahanan', NULL, 355.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahanan', [Definition] = NULL, [SortOrder] = 355.20 WHERE [Code] = 'lhn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lah', 'Lahnda', NULL, 355.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahnda', [Definition] = NULL, [SortOrder] = 355.30 WHERE [Code] = 'lah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvt', 'Lahta Karen', NULL, 355.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahta Karen', [Definition] = NULL, [SortOrder] = 355.40 WHERE [Code] = 'kvt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhu', 'Lahu', NULL, 355.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahu', [Definition] = NULL, [SortOrder] = 355.50 WHERE [Code] = 'lhu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhi', 'Lahu Shi', NULL, 355.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahu Shi', [Definition] = NULL, [SortOrder] = 355.60 WHERE [Code] = 'lhi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhl', 'Lahul Lohar', NULL, 355.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahul Lohar', [Definition] = NULL, [SortOrder] = 355.70 WHERE [Code] = 'lhl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmx', 'Laimbue', NULL, 355.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laimbue', [Definition] = NULL, [SortOrder] = 355.80 WHERE [Code] = 'lmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clj', 'Laitu Chin', NULL, 355.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laitu Chin', [Definition] = NULL, [SortOrder] = 355.90 WHERE [Code] = 'clj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lji', 'Laiyolo', NULL, 356.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laiyolo', [Definition] = NULL, [SortOrder] = 356.00 WHERE [Code] = 'lji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbe', 'Lak', NULL, 356.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lak', [Definition] = NULL, [SortOrder] = 356.10 WHERE [Code] = 'lbe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lap', 'Laka (Chad)', NULL, 356.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laka (Chad)', [Definition] = NULL, [SortOrder] = 356.20 WHERE [Code] = 'lap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lka', 'Lakalei', NULL, 356.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakalei', [Definition] = NULL, [SortOrder] = 356.30 WHERE [Code] = 'lka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmw', 'Lake Miwok', NULL, 356.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lake Miwok', [Definition] = NULL, [SortOrder] = 356.40 WHERE [Code] = 'lmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkh', 'Lakha', NULL, 356.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakha', [Definition] = NULL, [SortOrder] = 356.50 WHERE [Code] = 'lkh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lki', 'Laki', NULL, 356.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laki', [Definition] = NULL, [SortOrder] = 356.60 WHERE [Code] = 'lki' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbc', 'Lakkia', NULL, 356.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakkia', [Definition] = NULL, [SortOrder] = 356.70 WHERE [Code] = 'lbc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkn', 'Lakon', NULL, 356.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakon', [Definition] = NULL, [SortOrder] = 356.80 WHERE [Code] = 'lkn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkd', 'Lakondê', NULL, 356.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakondê', [Definition] = NULL, [SortOrder] = 356.90 WHERE [Code] = 'lkd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkt', 'Lakota', NULL, 357.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakota', [Definition] = NULL, [SortOrder] = 357.00 WHERE [Code] = 'lkt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dic', 'Lakota Dida', NULL, 357.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakota Dida', [Definition] = NULL, [SortOrder] = 357.10 WHERE [Code] = 'dic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lxm', 'Lakurumau', NULL, 357.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakurumau', [Definition] = NULL, [SortOrder] = 357.20 WHERE [Code] = 'lxm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrz', 'Lala', NULL, 357.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lala', [Definition] = NULL, [SortOrder] = 357.30 WHERE [Code] = 'nrz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leb', 'Lala-Bisa', NULL, 357.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lala-Bisa', [Definition] = NULL, [SortOrder] = 357.40 WHERE [Code] = 'leb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lla', 'Lala-Roba', NULL, 357.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lala-Roba', [Definition] = NULL, [SortOrder] = 357.50 WHERE [Code] = 'lla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnl', 'Lalana Chinantec', NULL, 357.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lalana Chinantec', [Definition] = NULL, [SortOrder] = 357.60 WHERE [Code] = 'cnl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lal', 'Lalia', NULL, 357.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lalia', [Definition] = NULL, [SortOrder] = 357.70 WHERE [Code] = 'lal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'las') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('las', 'Lama (Togo)', NULL, 357.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lama (Togo)', [Definition] = NULL, [SortOrder] = 357.80 WHERE [Code] = 'las' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lay', 'Lama Bai', NULL, 357.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lama Bai', [Definition] = NULL, [SortOrder] = 357.90 WHERE [Code] = 'lay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slp', 'Lamaholot', NULL, 358.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamaholot', [Definition] = NULL, [SortOrder] = 358.00 WHERE [Code] = 'slp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lby', 'Lamalama', NULL, 358.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamalama', [Definition] = NULL, [SortOrder] = 358.10 WHERE [Code] = 'lby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmr', 'Lamalera', NULL, 358.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamalera', [Definition] = NULL, [SortOrder] = 358.20 WHERE [Code] = 'lmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hia', 'Lamang', NULL, 358.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamang', [Definition] = NULL, [SortOrder] = 358.30 WHERE [Code] = 'hia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmq', 'Lamatuka', NULL, 358.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamatuka', [Definition] = NULL, [SortOrder] = 358.40 WHERE [Code] = 'lmq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lam', 'Lamba', NULL, 358.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamba', [Definition] = NULL, [SortOrder] = 358.50 WHERE [Code] = 'lam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmn', 'Lambadi', NULL, 358.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lambadi', [Definition] = NULL, [SortOrder] = 358.60 WHERE [Code] = 'lmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quf', 'Lambayeque Quechua', NULL, 358.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lambayeque Quechua', [Definition] = NULL, [SortOrder] = 358.70 WHERE [Code] = 'quf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmh', 'Lambichhong', NULL, 358.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lambichhong', [Definition] = NULL, [SortOrder] = 358.80 WHERE [Code] = 'lmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmy', 'Lamboya', NULL, 358.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamboya', [Definition] = NULL, [SortOrder] = 358.90 WHERE [Code] = 'lmy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lai', 'Lambya', NULL, 359.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lambya', [Definition] = NULL, [SortOrder] = 359.00 WHERE [Code] = 'lai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bma', 'Lame', NULL, 359.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lame', [Definition] = NULL, [SortOrder] = 359.10 WHERE [Code] = 'bma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmu', 'Lamenu', NULL, 359.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamenu', [Definition] = NULL, [SortOrder] = 359.20 WHERE [Code] = 'lmu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldh', 'Lamja-Dengsa-Tola', NULL, 359.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamja-Dengsa-Tola', [Definition] = NULL, [SortOrder] = 359.30 WHERE [Code] = 'ldh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmk', 'Lamkang', NULL, 359.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamkang', [Definition] = NULL, [SortOrder] = 359.40 WHERE [Code] = 'lmk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lev', 'Lamma', NULL, 359.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamma', [Definition] = NULL, [SortOrder] = 359.50 WHERE [Code] = 'lev' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lns', 'Lamnso''', NULL, 359.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamnso''', [Definition] = NULL, [SortOrder] = 359.60 WHERE [Code] = 'lns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmg', 'Lamogai', NULL, 359.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamogai', [Definition] = NULL, [SortOrder] = 359.70 WHERE [Code] = 'lmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ljp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ljp', 'Lampung Api', NULL, 359.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lampung Api', [Definition] = NULL, [SortOrder] = 359.80 WHERE [Code] = 'ljp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abl', 'Lampung Nyo', NULL, 359.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lampung Nyo', [Definition] = NULL, [SortOrder] = 359.90 WHERE [Code] = 'abl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llh', 'Lamu', NULL, 360.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamu', [Definition] = NULL, [SortOrder] = 360.00 WHERE [Code] = 'llh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruu', 'Lanas Lobu', NULL, 360.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lanas Lobu', [Definition] = NULL, [SortOrder] = 360.10 WHERE [Code] = 'ruu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldm', 'Landoma', NULL, 360.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Landoma', [Definition] = NULL, [SortOrder] = 360.20 WHERE [Code] = 'ldm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yne', 'Lang''e', NULL, 360.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lang''e', [Definition] = NULL, [SortOrder] = 360.30 WHERE [Code] = 'yne' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnm', 'Langam', NULL, 360.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langam', [Definition] = NULL, [SortOrder] = 360.40 WHERE [Code] = 'lnm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lna', 'Langbashe', NULL, 360.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langbashe', [Definition] = NULL, [SortOrder] = 360.50 WHERE [Code] = 'lna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lag', 'Langi', NULL, 360.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langi', [Definition] = NULL, [SortOrder] = 360.60 WHERE [Code] = 'lag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yln', 'Langnian Buyang', NULL, 360.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langnian Buyang', [Definition] = NULL, [SortOrder] = 360.70 WHERE [Code] = 'yln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgo', 'Lango (South Sudan)', NULL, 360.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lango (South Sudan)', [Definition] = NULL, [SortOrder] = 360.80 WHERE [Code] = 'lgo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laj', 'Lango (Uganda)', NULL, 360.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lango (Uganda)', [Definition] = NULL, [SortOrder] = 360.90 WHERE [Code] = 'laj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lng', 'Langobardic', NULL, 361.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langobardic', [Definition] = NULL, [SortOrder] = 361.00 WHERE [Code] = 'lng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfb', 'Langue des signes de Belgique Francophone', NULL, 361.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langue des signes de Belgique Francophone', [Definition] = NULL, [SortOrder] = 361.10 WHERE [Code] = 'sfb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnw', 'Lanima', NULL, 361.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lanima', [Definition] = NULL, [SortOrder] = 361.20 WHERE [Code] = 'lnw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnh', 'Lanoh', NULL, 361.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lanoh', [Definition] = NULL, [SortOrder] = 361.30 WHERE [Code] = 'lnh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lao', 'Lao', NULL, 361.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lao', [Definition] = NULL, [SortOrder] = 361.40 WHERE [Code] = 'lao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlq', 'Lao Naga', NULL, 361.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lao Naga', [Definition] = NULL, [SortOrder] = 361.50 WHERE [Code] = 'nlq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwm', 'Laomian', NULL, 361.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laomian', [Definition] = NULL, [SortOrder] = 361.60 WHERE [Code] = 'lwm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbg', 'Laopang', NULL, 361.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laopang', [Definition] = NULL, [SortOrder] = 361.70 WHERE [Code] = 'lbg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lso', 'Laos Sign Language', NULL, 361.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laos Sign Language', [Definition] = NULL, [SortOrder] = 361.80 WHERE [Code] = 'lso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztl', 'Lapaguía-Guivini Zapotec', NULL, 361.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lapaguía-Guivini Zapotec', [Definition] = NULL, [SortOrder] = 361.90 WHERE [Code] = 'ztl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrg', 'Laragia', NULL, 362.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laragia', [Definition] = NULL, [SortOrder] = 362.00 WHERE [Code] = 'lrg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrt', 'Larantuka Malay', NULL, 362.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Larantuka Malay', [Definition] = NULL, [SortOrder] = 362.10 WHERE [Code] = 'lrt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbz', 'Lardil', NULL, 362.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lardil', [Definition] = NULL, [SortOrder] = 362.20 WHERE [Code] = 'lbz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrv', 'Larevat', NULL, 362.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Larevat', [Definition] = NULL, [SortOrder] = 362.30 WHERE [Code] = 'lrv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmd', 'Large Flowery Miao', NULL, 362.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Large Flowery Miao', [Definition] = NULL, [SortOrder] = 362.40 WHERE [Code] = 'hmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrl', 'Lari', NULL, 362.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lari', [Definition] = NULL, [SortOrder] = 362.50 WHERE [Code] = 'lrl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alo', 'Larike-Wakasihu', NULL, 362.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Larike-Wakasihu', [Definition] = NULL, [SortOrder] = 362.60 WHERE [Code] = 'alo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lro', 'Laro', NULL, 362.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laro', [Definition] = NULL, [SortOrder] = 362.70 WHERE [Code] = 'lro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lar', 'Larteh', NULL, 362.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Larteh', [Definition] = NULL, [SortOrder] = 362.80 WHERE [Code] = 'lar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lan', 'Laru', NULL, 362.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laru', [Definition] = NULL, [SortOrder] = 362.90 WHERE [Code] = 'lan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zcd', 'Las Delicias Zapotec', NULL, 363.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Las Delicias Zapotec', [Definition] = NULL, [SortOrder] = 363.00 WHERE [Code] = 'zcd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llm', 'Lasalimu', NULL, 363.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lasalimu', [Definition] = NULL, [SortOrder] = 363.10 WHERE [Code] = 'llm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsa', 'Lasgerdi', NULL, 363.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lasgerdi', [Definition] = NULL, [SortOrder] = 363.20 WHERE [Code] = 'lsa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsi', 'Lashi', NULL, 363.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lashi', [Definition] = NULL, [SortOrder] = 363.30 WHERE [Code] = 'lsi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lss', 'Lasi', NULL, 363.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lasi', [Definition] = NULL, [SortOrder] = 363.40 WHERE [Code] = 'lss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltc', 'Late Middle Chinese', NULL, 363.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Late Middle Chinese', [Definition] = NULL, [SortOrder] = 363.50 WHERE [Code] = 'ltc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltg', 'Latgalian', NULL, 363.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latgalian', [Definition] = NULL, [SortOrder] = 363.60 WHERE [Code] = 'ltg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lat', 'Latin', NULL, 363.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latin', [Definition] = NULL, [SortOrder] = 363.70 WHERE [Code] = 'lat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltu', 'Latu', NULL, 363.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latu', [Definition] = NULL, [SortOrder] = 363.80 WHERE [Code] = 'ltu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltn', 'Latundê', NULL, 363.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latundê', [Definition] = NULL, [SortOrder] = 363.90 WHERE [Code] = 'ltn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lav', 'Latvian', NULL, 364.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latvian', [Definition] = NULL, [SortOrder] = 364.00 WHERE [Code] = 'lav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsl', 'Latvian Sign Language', NULL, 364.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latvian Sign Language', [Definition] = NULL, [SortOrder] = 364.10 WHERE [Code] = 'lsl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llu', 'Lau', NULL, 364.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lau', [Definition] = NULL, [SortOrder] = 364.20 WHERE [Code] = 'llu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luf', 'Laua', NULL, 364.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laua', [Definition] = NULL, [SortOrder] = 364.30 WHERE [Code] = 'luf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llx', 'Lauan', NULL, 364.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lauan', [Definition] = NULL, [SortOrder] = 364.40 WHERE [Code] = 'llx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'law') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('law', 'Lauje', NULL, 364.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lauje', [Definition] = NULL, [SortOrder] = 364.50 WHERE [Code] = 'law' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lur', 'Laura', NULL, 364.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laura', [Definition] = NULL, [SortOrder] = 364.60 WHERE [Code] = 'lur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lre', 'Laurentian', NULL, 364.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laurentian', [Definition] = NULL, [SortOrder] = 364.70 WHERE [Code] = 'lre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clt', 'Lautu Chin', NULL, 364.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lautu Chin', [Definition] = NULL, [SortOrder] = 364.80 WHERE [Code] = 'clt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbv', 'Lavatbura-Lamusong', NULL, 364.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lavatbura-Lamusong', [Definition] = NULL, [SortOrder] = 364.90 WHERE [Code] = 'lbv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brb', 'Brao', NULL, 365.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brao', [Definition] = NULL, [SortOrder] = 365.00 WHERE [Code] = 'brb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbo', 'Laven', NULL, 365.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laven', [Definition] = NULL, [SortOrder] = 365.10 WHERE [Code] = 'lbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lvi', 'Lavi', NULL, 365.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lavi', [Definition] = NULL, [SortOrder] = 365.20 WHERE [Code] = 'lvi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lvk', 'Lavukaleve', NULL, 365.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lavukaleve', [Definition] = NULL, [SortOrder] = 365.30 WHERE [Code] = 'lvk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbx', 'Lawangan', NULL, 365.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lawangan', [Definition] = NULL, [SortOrder] = 365.40 WHERE [Code] = 'lbx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwu', 'Lawu', NULL, 365.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lawu', [Definition] = NULL, [SortOrder] = 365.50 WHERE [Code] = 'lwu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgi', 'Lawunuia', NULL, 365.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lawunuia', [Definition] = NULL, [SortOrder] = 365.60 WHERE [Code] = 'tgi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lya', 'Layakha', NULL, 365.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Layakha', [Definition] = NULL, [SortOrder] = 365.70 WHERE [Code] = 'lya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lzz', 'Laz', NULL, 365.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laz', [Definition] = NULL, [SortOrder] = 365.80 WHERE [Code] = 'lzz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cle', 'Lealao Chinantec', NULL, 365.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lealao Chinantec', [Definition] = NULL, [SortOrder] = 365.90 WHERE [Code] = 'cle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lec', 'Leco', NULL, 366.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leco', [Definition] = NULL, [SortOrder] = 366.00 WHERE [Code] = 'lec' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lew', 'Ledo Kaili', NULL, 366.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ledo Kaili', [Definition] = NULL, [SortOrder] = 366.10 WHERE [Code] = 'lew' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldk', 'Leelau', NULL, 366.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leelau', [Definition] = NULL, [SortOrder] = 366.20 WHERE [Code] = 'ldk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lfa', 'Lefa', NULL, 366.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lefa', [Definition] = NULL, [SortOrder] = 366.30 WHERE [Code] = 'lfa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgm', 'Lega-Mwenga', NULL, 366.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lega-Mwenga', [Definition] = NULL, [SortOrder] = 366.40 WHERE [Code] = 'lgm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lea', 'Lega-Shabunda', NULL, 366.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lega-Shabunda', [Definition] = NULL, [SortOrder] = 366.50 WHERE [Code] = 'lea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agb', 'Legbo', NULL, 366.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Legbo', [Definition] = NULL, [SortOrder] = 366.60 WHERE [Code] = 'agb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcc', 'Legenyem', NULL, 366.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Legenyem', [Definition] = NULL, [SortOrder] = 366.70 WHERE [Code] = 'lcc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tql', 'Lehali', NULL, 366.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lehali', [Definition] = NULL, [SortOrder] = 366.80 WHERE [Code] = 'tql' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urr', 'Lehalurup', NULL, 366.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lehalurup', [Definition] = NULL, [SortOrder] = 366.90 WHERE [Code] = 'urr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cae', 'Lehar', NULL, 367.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lehar', [Definition] = NULL, [SortOrder] = 367.00 WHERE [Code] = 'cae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lzn', 'Leinong Naga', NULL, 367.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leinong Naga', [Definition] = NULL, [SortOrder] = 367.10 WHERE [Code] = 'lzn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lek', 'Leipon', NULL, 367.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leipon', [Definition] = NULL, [SortOrder] = 367.20 WHERE [Code] = 'lek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llk', 'Lelak', NULL, 367.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lelak', [Definition] = NULL, [SortOrder] = 367.30 WHERE [Code] = 'llk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lln', 'Lele (Chad)', NULL, 367.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lele (Chad)', [Definition] = NULL, [SortOrder] = 367.40 WHERE [Code] = 'lln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lel', 'Lele (Democratic Republic of Congo)', NULL, 367.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lele (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 367.50 WHERE [Code] = 'lel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llc', 'Lele (Guinea)', NULL, 367.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lele (Guinea)', [Definition] = NULL, [SortOrder] = 367.60 WHERE [Code] = 'llc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lle', 'Lele (Papua New Guinea)', NULL, 367.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lele (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 367.70 WHERE [Code] = 'lle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lef', 'Lelemi', NULL, 367.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lelemi', [Definition] = NULL, [SortOrder] = 367.80 WHERE [Code] = 'lef' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpa', 'Lelepa', NULL, 367.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lelepa', [Definition] = NULL, [SortOrder] = 367.90 WHERE [Code] = 'lpa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leq', 'Lembena', NULL, 368.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lembena', [Definition] = NULL, [SortOrder] = 368.00 WHERE [Code] = 'leq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrz', 'Lemerig', NULL, 368.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemerig', [Definition] = NULL, [SortOrder] = 368.10 WHERE [Code] = 'lrz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lei', 'Lemio', NULL, 368.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemio', [Definition] = NULL, [SortOrder] = 368.20 WHERE [Code] = 'lei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xle', 'Lemnian', NULL, 368.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemnian', [Definition] = NULL, [SortOrder] = 368.30 WHERE [Code] = 'xle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ley') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ley', 'Lemolang', NULL, 368.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemolang', [Definition] = NULL, [SortOrder] = 368.40 WHERE [Code] = 'ley' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldj', 'Lemoro', NULL, 368.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemoro', [Definition] = NULL, [SortOrder] = 368.50 WHERE [Code] = 'ldj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnl', 'Lenakel', NULL, 368.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenakel', [Definition] = NULL, [SortOrder] = 368.60 WHERE [Code] = 'tnl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'len') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('len', 'Lenca', NULL, 368.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenca', [Definition] = NULL, [SortOrder] = 368.70 WHERE [Code] = 'len' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'led') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('led', 'Lendu', NULL, 368.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lendu', [Definition] = NULL, [SortOrder] = 368.80 WHERE [Code] = 'led' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgi', 'Lengilu', NULL, 368.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lengilu', [Definition] = NULL, [SortOrder] = 368.90 WHERE [Code] = 'lgi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgr', 'Lengo', NULL, 369.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lengo', [Definition] = NULL, [SortOrder] = 369.00 WHERE [Code] = 'lgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lej', 'Lengola', NULL, 369.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lengola', [Definition] = NULL, [SortOrder] = 369.10 WHERE [Code] = 'lej' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnj', 'Leningitij', NULL, 369.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leningitij', [Definition] = NULL, [SortOrder] = 369.20 WHERE [Code] = 'lnj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leh', 'Lenje', NULL, 369.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenje', [Definition] = NULL, [SortOrder] = 369.30 WHERE [Code] = 'leh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ler') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ler', 'Lenkau', NULL, 369.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenkau', [Definition] = NULL, [SortOrder] = 369.40 WHERE [Code] = 'ler' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldg', 'Lenyima', NULL, 369.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenyima', [Definition] = NULL, [SortOrder] = 369.50 WHERE [Code] = 'ldg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lep', 'Lepcha', NULL, 369.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lepcha', [Definition] = NULL, [SortOrder] = 369.60 WHERE [Code] = 'lep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpe', 'Lepki', NULL, 369.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lepki', [Definition] = NULL, [SortOrder] = 369.70 WHERE [Code] = 'lpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlp', 'Lepontic', NULL, 369.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lepontic', [Definition] = NULL, [SortOrder] = 369.80 WHERE [Code] = 'xlp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnh', 'Lere', NULL, 369.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lere', [Definition] = NULL, [SortOrder] = 369.90 WHERE [Code] = 'gnh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'les') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('les', 'Lese', NULL, 370.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lese', [Definition] = NULL, [SortOrder] = 370.00 WHERE [Code] = 'les' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'let') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('let', 'Lesing-Gelimi', NULL, 370.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lesing-Gelimi', [Definition] = NULL, [SortOrder] = 370.10 WHERE [Code] = 'let' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nms', 'Letemboi', NULL, 370.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Letemboi', [Definition] = NULL, [SortOrder] = 370.20 WHERE [Code] = 'nms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leo', 'Leti (Cameroon)', NULL, 370.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leti (Cameroon)', [Definition] = NULL, [SortOrder] = 370.30 WHERE [Code] = 'leo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lti', 'Leti (Indonesia)', NULL, 370.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leti (Indonesia)', [Definition] = NULL, [SortOrder] = 370.40 WHERE [Code] = 'lti' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lvu', 'Levuka', NULL, 370.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Levuka', [Definition] = NULL, [SortOrder] = 370.50 WHERE [Code] = 'lvu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lww', 'Lewo', NULL, 370.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lewo', [Definition] = NULL, [SortOrder] = 370.60 WHERE [Code] = 'lww' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwe', 'Lewo Eleng', NULL, 370.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lewo Eleng', [Definition] = NULL, [SortOrder] = 370.70 WHERE [Code] = 'lwe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwt', 'Lewotobi', NULL, 370.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lewotobi', [Definition] = NULL, [SortOrder] = 370.80 WHERE [Code] = 'lwt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayi', 'Leyigha', NULL, 370.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leyigha', [Definition] = NULL, [SortOrder] = 370.90 WHERE [Code] = 'ayi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lez', 'Lezghian', NULL, 371.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lezghian', [Definition] = NULL, [SortOrder] = 371.00 WHERE [Code] = 'lez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhp', 'Lhokpu', NULL, 371.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lhokpu', [Definition] = NULL, [SortOrder] = 371.10 WHERE [Code] = 'lhp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhm', 'Lhomi', NULL, 371.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lhomi', [Definition] = NULL, [SortOrder] = 371.20 WHERE [Code] = 'lhm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ljl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ljl', 'Li''o', NULL, 371.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Li''o', [Definition] = NULL, [SortOrder] = 371.30 WHERE [Code] = 'ljl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lix', 'Liabuku', NULL, 371.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liabuku', [Definition] = NULL, [SortOrder] = 371.40 WHERE [Code] = 'lix' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ste') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ste', 'Liana-Seti', NULL, 371.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liana-Seti', [Definition] = NULL, [SortOrder] = 371.50 WHERE [Code] = 'ste' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njn', 'Liangmai Naga', NULL, 371.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liangmai Naga', [Definition] = NULL, [SortOrder] = 371.60 WHERE [Code] = 'njn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zln', 'Lianshan Zhuang', NULL, 371.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lianshan Zhuang', [Definition] = NULL, [SortOrder] = 371.70 WHERE [Code] = 'zln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpe', 'Liberia Kpelle', NULL, 371.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liberia Kpelle', [Definition] = NULL, [SortOrder] = 371.80 WHERE [Code] = 'xpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lir', 'Liberian English', NULL, 371.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liberian English', [Definition] = NULL, [SortOrder] = 371.90 WHERE [Code] = 'lir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liq', 'Libido', NULL, 372.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libido', [Definition] = NULL, [SortOrder] = 372.00 WHERE [Code] = 'liq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liz', 'Libinza', NULL, 372.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libinza', [Definition] = NULL, [SortOrder] = 372.10 WHERE [Code] = 'liz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbl', 'Libon Bikol', NULL, 372.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libon Bikol', [Definition] = NULL, [SortOrder] = 372.20 WHERE [Code] = 'lbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xli', 'Liburnian', NULL, 372.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liburnian', [Definition] = NULL, [SortOrder] = 372.30 WHERE [Code] = 'xli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayl', 'Libyan Arabic', NULL, 372.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libyan Arabic', [Definition] = NULL, [SortOrder] = 372.40 WHERE [Code] = 'ayl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbs', 'Libyan Sign Language', NULL, 372.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libyan Sign Language', [Definition] = NULL, [SortOrder] = 372.50 WHERE [Code] = 'lbs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'add') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('add', 'Lidzonka', NULL, 372.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lidzonka', [Definition] = NULL, [SortOrder] = 372.60 WHERE [Code] = 'add' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lig', 'Ligbi', NULL, 372.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ligbi', [Definition] = NULL, [SortOrder] = 372.70 WHERE [Code] = 'lig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgz', 'Ligenza', NULL, 372.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ligenza', [Definition] = NULL, [SortOrder] = 372.80 WHERE [Code] = 'lgz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lij', 'Ligurian', NULL, 372.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ligurian', [Definition] = NULL, [SortOrder] = 372.90 WHERE [Code] = 'lij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlg', 'Ligurian (Ancient)', NULL, 373.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ligurian (Ancient)', [Definition] = NULL, [SortOrder] = 373.00 WHERE [Code] = 'xlg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lih', 'Lihir', NULL, 373.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lihir', [Definition] = NULL, [SortOrder] = 373.10 WHERE [Code] = 'lih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgi', 'Lijili', NULL, 373.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lijili', [Definition] = NULL, [SortOrder] = 373.20 WHERE [Code] = 'mgi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lik', 'Lika', NULL, 373.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lika', [Definition] = NULL, [SortOrder] = 373.30 WHERE [Code] = 'lik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lio', 'Liki', NULL, 373.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liki', [Definition] = NULL, [SortOrder] = 373.40 WHERE [Code] = 'lio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lie', 'Likila', NULL, 373.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Likila', [Definition] = NULL, [SortOrder] = 373.50 WHERE [Code] = 'lie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxx', 'Likuba', NULL, 373.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Likuba', [Definition] = NULL, [SortOrder] = 373.60 WHERE [Code] = 'kxx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lib', 'Likum', NULL, 373.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Likum', [Definition] = NULL, [SortOrder] = 373.70 WHERE [Code] = 'lib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwc', 'Likwala', NULL, 373.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Likwala', [Definition] = NULL, [SortOrder] = 373.80 WHERE [Code] = 'kwc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lll', 'Lilau', NULL, 373.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lilau', [Definition] = NULL, [SortOrder] = 373.90 WHERE [Code] = 'lll' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lil', 'Lillooet', NULL, 374.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lillooet', [Definition] = NULL, [SortOrder] = 374.00 WHERE [Code] = 'lil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bme', 'Limassa', NULL, 374.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limassa', [Definition] = NULL, [SortOrder] = 374.10 WHERE [Code] = 'bme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lif', 'Limbu', NULL, 374.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limbu', [Definition] = NULL, [SortOrder] = 374.20 WHERE [Code] = 'lif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmp', 'Limbum', NULL, 374.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limbum', [Definition] = NULL, [SortOrder] = 374.30 WHERE [Code] = 'lmp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lim', 'Limburgan', NULL, 374.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limburgan', [Definition] = NULL, [SortOrder] = 374.40 WHERE [Code] = 'lim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylm', 'Limi', NULL, 374.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limi', [Definition] = NULL, [SortOrder] = 374.50 WHERE [Code] = 'ylm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmc', 'Limilngan', NULL, 374.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limilngan', [Definition] = NULL, [SortOrder] = 374.60 WHERE [Code] = 'lmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmk', 'Limos Kalinga', NULL, 374.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limos Kalinga', [Definition] = NULL, [SortOrder] = 374.70 WHERE [Code] = 'kmk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lab', 'Linear A', NULL, 374.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Linear A', [Definition] = NULL, [SortOrder] = 374.80 WHERE [Code] = 'lab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lin', 'Lingala', NULL, 374.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingala', [Definition] = NULL, [SortOrder] = 374.90 WHERE [Code] = 'lin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onb', 'Lingao', NULL, 375.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingao', [Definition] = NULL, [SortOrder] = 375.00 WHERE [Code] = 'onb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgk', 'Lingarak', NULL, 375.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingarak', [Definition] = NULL, [SortOrder] = 375.10 WHERE [Code] = 'lgk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pml', 'Lingua Franca', NULL, 375.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingua Franca', [Definition] = NULL, [SortOrder] = 375.20 WHERE [Code] = 'pml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lfn', 'Lingua Franca Nova', NULL, 375.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingua Franca Nova', [Definition] = NULL, [SortOrder] = 375.30 WHERE [Code] = 'lfn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apl', 'Lipan Apache', NULL, 375.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lipan Apache', [Definition] = NULL, [SortOrder] = 375.40 WHERE [Code] = 'apl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpo', 'Lipo', NULL, 375.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lipo', [Definition] = NULL, [SortOrder] = 375.50 WHERE [Code] = 'lpo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcs', 'Lisabata-Nuniali', NULL, 375.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lisabata-Nuniali', [Definition] = NULL, [SortOrder] = 375.60 WHERE [Code] = 'lcs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcl', 'Lisela', NULL, 375.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lisela', [Definition] = NULL, [SortOrder] = 375.70 WHERE [Code] = 'lcl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsh', 'Lish', NULL, 375.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lish', [Definition] = NULL, [SortOrder] = 375.80 WHERE [Code] = 'lsh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trg', 'Lishán Didán', NULL, 375.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lishán Didán', [Definition] = NULL, [SortOrder] = 375.90 WHERE [Code] = 'trg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsd', 'Lishana Deni', NULL, 376.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lishana Deni', [Definition] = NULL, [SortOrder] = 376.00 WHERE [Code] = 'lsd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aij', 'Lishanid Noshan', NULL, 376.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lishanid Noshan', [Definition] = NULL, [SortOrder] = 376.10 WHERE [Code] = 'aij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lis', 'Lisu', NULL, 376.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lisu', [Definition] = NULL, [SortOrder] = 376.20 WHERE [Code] = 'lis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lzh', 'Literary Chinese', NULL, 376.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Literary Chinese', [Definition] = NULL, [SortOrder] = 376.30 WHERE [Code] = 'lzh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lit', 'Lithuanian', NULL, 376.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lithuanian', [Definition] = NULL, [SortOrder] = 376.40 WHERE [Code] = 'lit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lls', 'Lithuanian Sign Language', NULL, 376.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lithuanian Sign Language', [Definition] = NULL, [SortOrder] = 376.50 WHERE [Code] = 'lls' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lzl', 'Litzlitz', NULL, 376.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Litzlitz', [Definition] = NULL, [SortOrder] = 376.60 WHERE [Code] = 'lzl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zlj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zlj', 'Liujiang Zhuang', NULL, 376.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liujiang Zhuang', [Definition] = NULL, [SortOrder] = 376.70 WHERE [Code] = 'zlj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zlq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zlq', 'Liuqian Zhuang', NULL, 376.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liuqian Zhuang', [Definition] = NULL, [SortOrder] = 376.80 WHERE [Code] = 'zlq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liv', 'Liv', NULL, 376.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liv', [Definition] = NULL, [SortOrder] = 376.90 WHERE [Code] = 'liv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olo', 'Livvi', NULL, 377.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Livvi', [Definition] = NULL, [SortOrder] = 377.00 WHERE [Code] = 'olo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lht', 'Lo-Toga', NULL, 377.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lo-Toga', [Definition] = NULL, [SortOrder] = 377.10 WHERE [Code] = 'lht' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrk', 'Loarki', NULL, 377.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loarki', [Definition] = NULL, [SortOrder] = 377.20 WHERE [Code] = 'lrk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loq', 'Lobala', NULL, 377.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lobala', [Definition] = NULL, [SortOrder] = 377.30 WHERE [Code] = 'loq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lob', 'Lobi', NULL, 377.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lobi', [Definition] = NULL, [SortOrder] = 377.40 WHERE [Code] = 'lob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbm', 'Lodhi', NULL, 377.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lodhi', [Definition] = NULL, [SortOrder] = 377.50 WHERE [Code] = 'lbm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgq', 'Logba', NULL, 377.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logba', [Definition] = NULL, [SortOrder] = 377.60 WHERE [Code] = 'lgq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lqr', 'Logir', NULL, 377.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logir', [Definition] = NULL, [SortOrder] = 377.70 WHERE [Code] = 'lqr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'log') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('log', 'Logo', NULL, 377.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logo', [Definition] = NULL, [SortOrder] = 377.80 WHERE [Code] = 'log' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lof', 'Logol', NULL, 377.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logol', [Definition] = NULL, [SortOrder] = 377.90 WHERE [Code] = 'lof' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rag', 'Logooli', NULL, 378.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logooli', [Definition] = NULL, [SortOrder] = 378.00 WHERE [Code] = 'rag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liu', 'Logorik', NULL, 378.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logorik', [Definition] = NULL, [SortOrder] = 378.10 WHERE [Code] = 'liu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'src') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('src', 'Logudorese Sardinian', NULL, 378.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logudorese Sardinian', [Definition] = NULL, [SortOrder] = 378.20 WHERE [Code] = 'src' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbr', 'Lohorung', NULL, 378.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lohorung', [Definition] = NULL, [SortOrder] = 378.30 WHERE [Code] = 'lbr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvj', 'Loja Highland Quichua', NULL, 378.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loja Highland Quichua', [Definition] = NULL, [SortOrder] = 378.40 WHERE [Code] = 'qvj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbo', 'Lojban', NULL, 378.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lojban', [Definition] = NULL, [SortOrder] = 378.50 WHERE [Code] = 'jbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaz', 'Lokaa', NULL, 378.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lokaa', [Definition] = NULL, [SortOrder] = 378.60 WHERE [Code] = 'yaz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loy', 'Loke', NULL, 378.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loke', [Definition] = NULL, [SortOrder] = 378.70 WHERE [Code] = 'loy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lok', 'Loko', NULL, 378.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loko', [Definition] = NULL, [SortOrder] = 378.80 WHERE [Code] = 'lok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lky', 'Lokoya', NULL, 378.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lokoya', [Definition] = NULL, [SortOrder] = 378.90 WHERE [Code] = 'lky' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcd', 'Lola', NULL, 379.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lola', [Definition] = NULL, [SortOrder] = 379.00 WHERE [Code] = 'lcd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llq', 'Lolak', NULL, 379.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lolak', [Definition] = NULL, [SortOrder] = 379.10 WHERE [Code] = 'llq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llg', 'Lole', NULL, 379.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lole', [Definition] = NULL, [SortOrder] = 379.20 WHERE [Code] = 'llg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llb', 'Lolo', NULL, 379.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lolo', [Definition] = NULL, [SortOrder] = 379.30 WHERE [Code] = 'llb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loa', 'Loloda', NULL, 379.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loloda', [Definition] = NULL, [SortOrder] = 379.40 WHERE [Code] = 'loa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ycl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ycl', 'Lolopo', NULL, 379.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lolopo', [Definition] = NULL, [SortOrder] = 379.50 WHERE [Code] = 'ycl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loi', 'Loma (Côte d''Ivoire)', NULL, 379.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loma (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 379.60 WHERE [Code] = 'loi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lom', 'Loma (Liberia)', NULL, 379.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loma (Liberia)', [Definition] = NULL, [SortOrder] = 379.70 WHERE [Code] = 'lom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmv', 'Lomaiviti', NULL, 379.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lomaiviti', [Definition] = NULL, [SortOrder] = 379.80 WHERE [Code] = 'lmv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmi', 'Lomavren', NULL, 379.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lomavren', [Definition] = NULL, [SortOrder] = 379.90 WHERE [Code] = 'rmi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmo', 'Lombard', NULL, 380.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lombard', [Definition] = NULL, [SortOrder] = 380.00 WHERE [Code] = 'lmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmi', 'Lombi', NULL, 380.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lombi', [Definition] = NULL, [SortOrder] = 380.10 WHERE [Code] = 'lmi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loo', 'Lombo', NULL, 380.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lombo', [Definition] = NULL, [SortOrder] = 380.20 WHERE [Code] = 'loo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngl', 'Lomwe', NULL, 380.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lomwe', [Definition] = NULL, [SortOrder] = 380.30 WHERE [Code] = 'ngl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lce', 'Loncong', NULL, 380.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loncong', [Definition] = NULL, [SortOrder] = 380.40 WHERE [Code] = 'lce' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpn', 'Long Phuri Naga', NULL, 380.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Long Phuri Naga', [Definition] = NULL, [SortOrder] = 380.50 WHERE [Code] = 'lpn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttw', 'Long Wat', NULL, 380.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Long Wat', [Definition] = NULL, [SortOrder] = 380.60 WHERE [Code] = 'ttw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgu', 'Longgu', NULL, 380.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Longgu', [Definition] = NULL, [SortOrder] = 380.70 WHERE [Code] = 'lgu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wok', 'Longto', NULL, 380.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Longto', [Definition] = NULL, [SortOrder] = 380.80 WHERE [Code] = 'wok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnu', 'Longuda', NULL, 380.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Longuda', [Definition] = NULL, [SortOrder] = 380.90 WHERE [Code] = 'lnu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'los') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('los', 'Loniu', NULL, 381.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loniu', [Definition] = NULL, [SortOrder] = 381.00 WHERE [Code] = 'los' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crc', 'Lonwolwol', NULL, 381.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lonwolwol', [Definition] = NULL, [SortOrder] = 381.10 WHERE [Code] = 'crc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnz', 'Lonzo', NULL, 381.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lonzo', [Definition] = NULL, [SortOrder] = 381.20 WHERE [Code] = 'lnz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldo', 'Loo', NULL, 381.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loo', [Definition] = NULL, [SortOrder] = 381.30 WHERE [Code] = 'ldo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lop', 'Lopa', NULL, 381.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lopa', [Definition] = NULL, [SortOrder] = 381.40 WHERE [Code] = 'lop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lov', 'Lopi', NULL, 381.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lopi', [Definition] = NULL, [SortOrder] = 381.50 WHERE [Code] = 'lov' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpx', 'Lopit', NULL, 381.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lopit', [Definition] = NULL, [SortOrder] = 381.60 WHERE [Code] = 'lpx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrn', 'Lorang', NULL, 381.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lorang', [Definition] = NULL, [SortOrder] = 381.70 WHERE [Code] = 'lrn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnn', 'Lorediakarkar', NULL, 381.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lorediakarkar', [Definition] = NULL, [SortOrder] = 381.80 WHERE [Code] = 'lnn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spq', 'Loreto-Ucayali Spanish', NULL, 381.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loreto-Ucayali Spanish', [Definition] = NULL, [SortOrder] = 381.90 WHERE [Code] = 'spq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uvl', 'Lote', NULL, 382.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lote', [Definition] = NULL, [SortOrder] = 382.00 WHERE [Code] = 'uvl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njh', 'Lotha Naga', NULL, 382.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lotha Naga', [Definition] = NULL, [SortOrder] = 382.10 WHERE [Code] = 'njh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtr', 'Lotud', NULL, 382.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lotud', [Definition] = NULL, [SortOrder] = 382.20 WHERE [Code] = 'dtr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loj', 'Lou', NULL, 382.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lou', [Definition] = NULL, [SortOrder] = 382.30 WHERE [Code] = 'loj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lou', 'Louisiana Creole', NULL, 382.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Louisiana Creole', [Definition] = NULL, [SortOrder] = 382.40 WHERE [Code] = 'lou' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lox', 'Loun', NULL, 382.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loun', [Definition] = NULL, [SortOrder] = 382.50 WHERE [Code] = 'lox' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlo', 'Loup A', NULL, 382.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loup A', [Definition] = NULL, [SortOrder] = 382.60 WHERE [Code] = 'xlo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlb', 'Loup B', NULL, 382.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loup B', [Definition] = NULL, [SortOrder] = 382.70 WHERE [Code] = 'xlb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nds', 'Low German', NULL, 382.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Low German', [Definition] = NULL, [SortOrder] = 382.80 WHERE [Code] = 'nds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbb', 'Lower Burdekin', NULL, 382.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Burdekin', [Definition] = NULL, [SortOrder] = 382.90 WHERE [Code] = 'xbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cea', 'Lower Chehalis', NULL, 383.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Chehalis', [Definition] = NULL, [SortOrder] = 383.00 WHERE [Code] = 'cea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dni', 'Lower Grand Valley Dani', NULL, 383.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Grand Valley Dani', [Definition] = NULL, [SortOrder] = 383.10 WHERE [Code] = 'dni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsb', 'Lower Nossob', NULL, 383.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Nossob', [Definition] = NULL, [SortOrder] = 383.20 WHERE [Code] = 'nsb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sli', 'Lower Silesian', NULL, 383.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Silesian', [Definition] = NULL, [SortOrder] = 383.30 WHERE [Code] = 'sli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsb', 'Lower Sorbian', NULL, 383.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Sorbian', [Definition] = NULL, [SortOrder] = 383.40 WHERE [Code] = 'dsb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axl', 'Lower Southern Aranda', NULL, 383.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Southern Aranda', [Definition] = NULL, [SortOrder] = 383.50 WHERE [Code] = 'axl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tto', 'Lower Ta''oih', NULL, 383.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Ta''oih', [Definition] = NULL, [SortOrder] = 383.60 WHERE [Code] = 'tto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taa', 'Lower Tanana', NULL, 383.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Tanana', [Definition] = NULL, [SortOrder] = 383.70 WHERE [Code] = 'taa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clo', 'Lowland Oaxaca Chontal', NULL, 383.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lowland Oaxaca Chontal', [Definition] = NULL, [SortOrder] = 383.80 WHERE [Code] = 'clo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tac', 'Lowland Tarahumara', NULL, 383.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lowland Tarahumara', [Definition] = NULL, [SortOrder] = 383.90 WHERE [Code] = 'tac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztp', 'Loxicha Zapotec', NULL, 384.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loxicha Zapotec', [Definition] = NULL, [SortOrder] = 384.00 WHERE [Code] = 'ztp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loz', 'Lozi', NULL, 384.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lozi', [Definition] = NULL, [SortOrder] = 384.10 WHERE [Code] = 'loz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khb', 'Lü', NULL, 384.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lü', [Definition] = NULL, [SortOrder] = 384.20 WHERE [Code] = 'khb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lex', 'Luang', NULL, 384.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luang', [Definition] = NULL, [SortOrder] = 384.30 WHERE [Code] = 'lex' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lub', 'Luba-Katanga', NULL, 384.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luba-Katanga', [Definition] = NULL, [SortOrder] = 384.40 WHERE [Code] = 'lub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lua', 'Luba-Lulua', NULL, 384.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luba-Lulua', [Definition] = NULL, [SortOrder] = 384.50 WHERE [Code] = 'lua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcc', 'Lubila', NULL, 384.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lubila', [Definition] = NULL, [SortOrder] = 384.60 WHERE [Code] = 'kcc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcf', 'Lubu', NULL, 384.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lubu', [Definition] = NULL, [SortOrder] = 384.70 WHERE [Code] = 'lcf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knb', 'Lubuagan Kalinga', NULL, 384.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lubuagan Kalinga', [Definition] = NULL, [SortOrder] = 384.80 WHERE [Code] = 'knb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lch', 'Luchazi', NULL, 384.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luchazi', [Definition] = NULL, [SortOrder] = 384.90 WHERE [Code] = 'lch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luq', 'Lucumi', NULL, 385.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lucumi', [Definition] = NULL, [SortOrder] = 385.00 WHERE [Code] = 'luq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lud', 'Ludian', NULL, 385.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ludian', [Definition] = NULL, [SortOrder] = 385.10 WHERE [Code] = 'lud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldq', 'Lufu', NULL, 385.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lufu', [Definition] = NULL, [SortOrder] = 385.20 WHERE [Code] = 'ldq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgg', 'Lugbara', NULL, 385.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lugbara', [Definition] = NULL, [SortOrder] = 385.30 WHERE [Code] = 'lgg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruf', 'Luguru', NULL, 385.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luguru', [Definition] = NULL, [SortOrder] = 385.40 WHERE [Code] = 'ruf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcq', 'Luhu', NULL, 385.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luhu', [Definition] = NULL, [SortOrder] = 385.50 WHERE [Code] = 'lcq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lum', 'Luimbi', NULL, 385.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luimbi', [Definition] = NULL, [SortOrder] = 385.60 WHERE [Code] = 'lum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lui', 'Luiseno', NULL, 385.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luiseno', [Definition] = NULL, [SortOrder] = 385.70 WHERE [Code] = 'lui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dop', 'Lukpa', NULL, 385.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lukpa', [Definition] = NULL, [SortOrder] = 385.80 WHERE [Code] = 'dop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ule') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ule', 'Lule', NULL, 385.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lule', [Definition] = NULL, [SortOrder] = 385.90 WHERE [Code] = 'ule' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smj', 'Lule Sami', NULL, 386.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lule Sami', [Definition] = NULL, [SortOrder] = 386.00 WHERE [Code] = 'smj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luu', 'Lumba-Yakkha', NULL, 386.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lumba-Yakkha', [Definition] = NULL, [SortOrder] = 386.10 WHERE [Code] = 'luu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lup', 'Lumbu', NULL, 386.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lumbu', [Definition] = NULL, [SortOrder] = 386.20 WHERE [Code] = 'lup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmd', 'Lumun', NULL, 386.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lumun', [Definition] = NULL, [SortOrder] = 386.30 WHERE [Code] = 'lmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luj', 'Luna', NULL, 386.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luna', [Definition] = NULL, [SortOrder] = 386.40 WHERE [Code] = 'luj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luk', 'Lunanakha', NULL, 386.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lunanakha', [Definition] = NULL, [SortOrder] = 386.50 WHERE [Code] = 'luk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lun', 'Lunda', NULL, 386.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lunda', [Definition] = NULL, [SortOrder] = 386.60 WHERE [Code] = 'lun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnd', 'Lundayeh', NULL, 386.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lundayeh', [Definition] = NULL, [SortOrder] = 386.70 WHERE [Code] = 'lnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmg', 'Lungalunga', NULL, 386.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lungalunga', [Definition] = NULL, [SortOrder] = 386.80 WHERE [Code] = 'vmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lga', 'Lungga', NULL, 386.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lungga', [Definition] = NULL, [SortOrder] = 386.90 WHERE [Code] = 'lga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luw', 'Luo (Cameroon)', NULL, 387.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luo (Cameroon)', [Definition] = NULL, [SortOrder] = 387.00 WHERE [Code] = 'luw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luo', 'Luo (Kenya and Tanzania)', NULL, 387.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luo (Kenya and Tanzania)', [Definition] = NULL, [SortOrder] = 387.10 WHERE [Code] = 'luo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hml', 'Luopohe Hmong', NULL, 387.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luopohe Hmong', [Definition] = NULL, [SortOrder] = 387.20 WHERE [Code] = 'hml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldd', 'Luri', NULL, 387.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luri', [Definition] = NULL, [SortOrder] = 387.30 WHERE [Code] = 'ldd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lse', 'Lusengo', NULL, 387.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lusengo', [Definition] = NULL, [SortOrder] = 387.40 WHERE [Code] = 'lse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lus', 'Lushai', NULL, 387.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lushai', [Definition] = NULL, [SortOrder] = 387.50 WHERE [Code] = 'lus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lut', 'Lushootseed', NULL, 387.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lushootseed', [Definition] = NULL, [SortOrder] = 387.60 WHERE [Code] = 'lut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khl', 'Lusi', NULL, 387.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lusi', [Definition] = NULL, [SortOrder] = 387.70 WHERE [Code] = 'khl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xls', 'Lusitanian', NULL, 387.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lusitanian', [Definition] = NULL, [SortOrder] = 387.80 WHERE [Code] = 'xls' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndy', 'Lutos', NULL, 387.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lutos', [Definition] = NULL, [SortOrder] = 387.90 WHERE [Code] = 'ndy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lue', 'Luvale', NULL, 388.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luvale', [Definition] = NULL, [SortOrder] = 388.00 WHERE [Code] = 'lue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luv', 'Luwati', NULL, 388.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luwati', [Definition] = NULL, [SortOrder] = 388.10 WHERE [Code] = 'luv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwo', 'Luwo', NULL, 388.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luwo', [Definition] = NULL, [SortOrder] = 388.20 WHERE [Code] = 'lwo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltz', 'Luxembourgish', NULL, 388.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luxembourgish', [Definition] = NULL, [SortOrder] = 388.30 WHERE [Code] = 'ltz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lyn', 'Luyana', NULL, 388.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luyana', [Definition] = NULL, [SortOrder] = 388.40 WHERE [Code] = 'lyn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luy', 'Luyia', NULL, 388.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luyia', [Definition] = NULL, [SortOrder] = 388.50 WHERE [Code] = 'luy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwa', 'Lwalu', NULL, 388.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lwalu', [Definition] = NULL, [SortOrder] = 388.60 WHERE [Code] = 'lwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlc', 'Lycian', NULL, 388.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lycian', [Definition] = NULL, [SortOrder] = 388.70 WHERE [Code] = 'xlc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xld', 'Lydian', NULL, 388.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lydian', [Definition] = NULL, [SortOrder] = 388.80 WHERE [Code] = 'xld' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lee', 'Lyélé', NULL, 388.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lyélé', [Definition] = NULL, [SortOrder] = 388.90 WHERE [Code] = 'lee' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lyg', 'Lyngngam', NULL, 389.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lyngngam', [Definition] = NULL, [SortOrder] = 389.00 WHERE [Code] = 'lyg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msj', 'Ma (Democratic Republic of Congo)', NULL, 389.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 389.10 WHERE [Code] = 'msj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjn', 'Ma (Papua New Guinea)', NULL, 389.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 389.20 WHERE [Code] = 'mjn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skc', 'Ma Manda', NULL, 389.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma Manda', [Definition] = NULL, [SortOrder] = 389.30 WHERE [Code] = 'skc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhy', 'Ma''anyan', NULL, 389.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma''anyan', [Definition] = NULL, [SortOrder] = 389.40 WHERE [Code] = 'mhy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhi', 'Ma''di', NULL, 389.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma''di', [Definition] = NULL, [SortOrder] = 389.50 WHERE [Code] = 'mhi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slz', 'Ma''ya', NULL, 389.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma''ya', [Definition] = NULL, [SortOrder] = 389.60 WHERE [Code] = 'slz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cma', 'Maa', NULL, 389.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maa', [Definition] = NULL, [SortOrder] = 389.70 WHERE [Code] = 'cma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mew', 'Maaka', NULL, 389.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maaka', [Definition] = NULL, [SortOrder] = 389.80 WHERE [Code] = 'mew' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ffm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ffm', 'Maasina Fulfulde', NULL, 389.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maasina Fulfulde', [Definition] = NULL, [SortOrder] = 389.90 WHERE [Code] = 'ffm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymm', 'Maay', NULL, 390.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maay', [Definition] = NULL, [SortOrder] = 390.00 WHERE [Code] = 'ymm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mde', 'Maba (Chad)', NULL, 390.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maba (Chad)', [Definition] = NULL, [SortOrder] = 390.10 WHERE [Code] = 'mde' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqa', 'Maba (Indonesia)', NULL, 390.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maba (Indonesia)', [Definition] = NULL, [SortOrder] = 390.20 WHERE [Code] = 'mqa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmz', 'Mabaale', NULL, 390.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mabaale', [Definition] = NULL, [SortOrder] = 390.30 WHERE [Code] = 'mmz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfz', 'Mabaan', NULL, 390.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mabaan', [Definition] = NULL, [SortOrder] = 390.40 WHERE [Code] = 'mfz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkg', 'Mabaka Valley Kalinga', NULL, 390.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mabaka Valley Kalinga', [Definition] = NULL, [SortOrder] = 390.50 WHERE [Code] = 'kkg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muj', 'Mabire', NULL, 390.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mabire', [Definition] = NULL, [SortOrder] = 390.60 WHERE [Code] = 'muj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mca', 'Maca', NULL, 390.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maca', [Definition] = NULL, [SortOrder] = 390.70 WHERE [Code] = 'mca' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcl', 'Macaguaje', NULL, 390.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macaguaje', [Definition] = NULL, [SortOrder] = 390.80 WHERE [Code] = 'mcl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbn', 'Macaguán', NULL, 390.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macaguán', [Definition] = NULL, [SortOrder] = 390.90 WHERE [Code] = 'mbn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzs', 'Macanese', NULL, 391.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macanese', [Definition] = NULL, [SortOrder] = 391.00 WHERE [Code] = 'mzs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rup', 'Macedo-Romanian', NULL, 391.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macedo-Romanian', [Definition] = NULL, [SortOrder] = 391.10 WHERE [Code] = 'rup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkd', 'Macedonian', NULL, 391.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macedonian', [Definition] = NULL, [SortOrder] = 391.20 WHERE [Code] = 'mkd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmc', 'Machame', NULL, 391.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Machame', [Definition] = NULL, [SortOrder] = 391.30 WHERE [Code] = 'jmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcb', 'Machiguenga', NULL, 391.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Machiguenga', [Definition] = NULL, [SortOrder] = 391.40 WHERE [Code] = 'mcb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpd', 'Machinere', NULL, 391.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Machinere', [Definition] = NULL, [SortOrder] = 391.50 WHERE [Code] = 'mpd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvw', 'Machinga', NULL, 391.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Machinga', [Definition] = NULL, [SortOrder] = 391.60 WHERE [Code] = 'mvw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wpc', 'Maco', NULL, 391.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maco', [Definition] = NULL, [SortOrder] = 391.70 WHERE [Code] = 'wpc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myy', 'Macuna', NULL, 391.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macuna', [Definition] = NULL, [SortOrder] = 391.80 WHERE [Code] = 'myy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbc', 'Macushi', NULL, 391.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macushi', [Definition] = NULL, [SortOrder] = 391.90 WHERE [Code] = 'mbc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxu', 'Mada (Cameroon)', NULL, 392.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mada (Cameroon)', [Definition] = NULL, [SortOrder] = 392.00 WHERE [Code] = 'mxu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mda', 'Mada (Nigeria)', NULL, 392.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mada (Nigeria)', [Definition] = NULL, [SortOrder] = 392.10 WHERE [Code] = 'mda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzc', 'Madagascar Sign Language', NULL, 392.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madagascar Sign Language', [Definition] = NULL, [SortOrder] = 392.20 WHERE [Code] = 'mzc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmx', 'Madak', NULL, 392.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madak', [Definition] = NULL, [SortOrder] = 392.30 WHERE [Code] = 'mmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmx', 'Maden', NULL, 392.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maden', [Definition] = NULL, [SortOrder] = 392.40 WHERE [Code] = 'xmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmd', 'Madhi Madhi', NULL, 392.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madhi Madhi', [Definition] = NULL, [SortOrder] = 392.50 WHERE [Code] = 'dmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grg', 'Madi', NULL, 392.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madi', [Definition] = NULL, [SortOrder] = 392.60 WHERE [Code] = 'grg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mad', 'Madurese', NULL, 392.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madurese', [Definition] = NULL, [SortOrder] = 392.70 WHERE [Code] = 'mad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mme', 'Mae', NULL, 392.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mae', [Definition] = NULL, [SortOrder] = 392.80 WHERE [Code] = 'mme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmk', 'Maek', NULL, 392.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maek', [Definition] = NULL, [SortOrder] = 392.90 WHERE [Code] = 'hmk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itt', 'Maeng Itneg', NULL, 393.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maeng Itneg', [Definition] = NULL, [SortOrder] = 393.00 WHERE [Code] = 'itt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maf', 'Mafa', NULL, 393.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mafa', [Definition] = NULL, [SortOrder] = 393.10 WHERE [Code] = 'maf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkv', 'Mafea', NULL, 393.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mafea', [Definition] = NULL, [SortOrder] = 393.20 WHERE [Code] = 'mkv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgb', 'Mag-antsi Ayta', NULL, 393.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mag-antsi Ayta', [Definition] = NULL, [SortOrder] = 393.30 WHERE [Code] = 'sgb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blx', 'Mag-Indi Ayta', NULL, 393.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mag-Indi Ayta', [Definition] = NULL, [SortOrder] = 393.40 WHERE [Code] = 'blx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mag', 'Magahi', NULL, 393.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magahi', [Definition] = NULL, [SortOrder] = 393.50 WHERE [Code] = 'mag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayt', 'Magbukun Ayta', NULL, 393.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magbukun Ayta', [Definition] = NULL, [SortOrder] = 393.60 WHERE [Code] = 'ayt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtm', 'Magdalena Peñasco Mixtec', NULL, 393.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magdalena Peñasco Mixtec', [Definition] = NULL, [SortOrder] = 393.70 WHERE [Code] = 'xtm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmd', 'Mághdì', NULL, 393.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mághdì', [Definition] = NULL, [SortOrder] = 393.80 WHERE [Code] = 'gmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gkd', 'Magi (Madang Province)', NULL, 393.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magi (Madang Province)', [Definition] = NULL, [SortOrder] = 393.90 WHERE [Code] = 'gkd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmg', 'Magiyi', NULL, 394.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magiyi', [Definition] = NULL, [SortOrder] = 394.00 WHERE [Code] = 'gmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmx', 'Magoma', NULL, 394.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magoma', [Definition] = NULL, [SortOrder] = 394.10 WHERE [Code] = 'gmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgr', 'Magori', NULL, 394.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magori', [Definition] = NULL, [SortOrder] = 394.20 WHERE [Code] = 'zgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdh', 'Maguindanaon', NULL, 394.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maguindanaon', [Definition] = NULL, [SortOrder] = 394.30 WHERE [Code] = 'mdh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjx', 'Mahali', NULL, 394.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahali', [Definition] = NULL, [SortOrder] = 394.40 WHERE [Code] = 'mjx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmh', 'Maharastri Prakrit', NULL, 394.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maharastri Prakrit', [Definition] = NULL, [SortOrder] = 394.50 WHERE [Code] = 'pmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfz', 'Mahasu Pahari', NULL, 394.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahasu Pahari', [Definition] = NULL, [SortOrder] = 394.60 WHERE [Code] = 'bfz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjy', 'Mahican', NULL, 394.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahican', [Definition] = NULL, [SortOrder] = 394.70 WHERE [Code] = 'mjy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhb', 'Mahongwe', NULL, 394.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahongwe', [Definition] = NULL, [SortOrder] = 394.80 WHERE [Code] = 'mhb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxx', 'Mahou', NULL, 394.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahou', [Definition] = NULL, [SortOrder] = 394.90 WHERE [Code] = 'mxx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayz', 'Mai Brat', NULL, 395.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mai Brat', [Definition] = NULL, [SortOrder] = 395.00 WHERE [Code] = 'ayz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sks', 'Maia', NULL, 395.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maia', [Definition] = NULL, [SortOrder] = 395.10 WHERE [Code] = 'sks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzz', 'Maiadomu', NULL, 395.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiadomu', [Definition] = NULL, [SortOrder] = 395.20 WHERE [Code] = 'mzz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnh', 'Maiani', NULL, 395.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiani', [Definition] = NULL, [SortOrder] = 395.30 WHERE [Code] = 'tnh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmm', 'Maii', NULL, 395.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maii', [Definition] = NULL, [SortOrder] = 395.40 WHERE [Code] = 'mmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgu', 'Mailu', NULL, 395.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mailu', [Definition] = NULL, [SortOrder] = 395.50 WHERE [Code] = 'mgu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwb', 'Maindo', NULL, 395.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maindo', [Definition] = NULL, [SortOrder] = 395.60 WHERE [Code] = 'cwb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmf', 'Mainfränkisch', NULL, 395.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mainfränkisch', [Definition] = NULL, [SortOrder] = 395.70 WHERE [Code] = 'vmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkl', 'Mainstream Kenyah', NULL, 395.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mainstream Kenyah', [Definition] = NULL, [SortOrder] = 395.80 WHERE [Code] = 'xkl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zrs', 'Mairasi', NULL, 395.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mairasi', [Definition] = NULL, [SortOrder] = 395.90 WHERE [Code] = 'zrs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbq', 'Maisin', NULL, 396.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maisin', [Definition] = NULL, [SortOrder] = 396.00 WHERE [Code] = 'mbq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mai', 'Maithili', NULL, 396.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maithili', [Definition] = NULL, [SortOrder] = 396.10 WHERE [Code] = 'mai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmm', 'Maiwa (Indonesia)', NULL, 396.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiwa (Indonesia)', [Definition] = NULL, [SortOrder] = 396.20 WHERE [Code] = 'wmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mti', 'Maiwa (Papua New Guinea)', NULL, 396.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiwa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 396.30 WHERE [Code] = 'mti' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mum', 'Maiwala', NULL, 396.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiwala', [Definition] = NULL, [SortOrder] = 396.40 WHERE [Code] = 'mum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpe', 'Majang', NULL, 396.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majang', [Definition] = NULL, [SortOrder] = 396.50 WHERE [Code] = 'mpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmj', 'Majera', NULL, 396.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majera', [Definition] = NULL, [SortOrder] = 396.60 WHERE [Code] = 'xmj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjz', 'Majhi', NULL, 396.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majhi', [Definition] = NULL, [SortOrder] = 396.70 WHERE [Code] = 'mjz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmj', 'Majhwar', NULL, 396.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majhwar', [Definition] = NULL, [SortOrder] = 396.80 WHERE [Code] = 'mmj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmd', 'Majukayang Kalinga', NULL, 396.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majukayang Kalinga', [Definition] = NULL, [SortOrder] = 396.90 WHERE [Code] = 'kmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkg', 'Mak (China)', NULL, 397.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mak (China)', [Definition] = NULL, [SortOrder] = 397.00 WHERE [Code] = 'mkg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbl', 'Mak (Nigeria)', NULL, 397.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mak (Nigeria)', [Definition] = NULL, [SortOrder] = 397.10 WHERE [Code] = 'pbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcp', 'Makaa', NULL, 397.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makaa', [Definition] = NULL, [SortOrder] = 397.20 WHERE [Code] = 'mcp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myh', 'Makah', NULL, 397.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makah', [Definition] = NULL, [SortOrder] = 397.30 WHERE [Code] = 'myh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjb', 'Makalero', NULL, 397.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makalero', [Definition] = NULL, [SortOrder] = 397.40 WHERE [Code] = 'mjb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkz', 'Makasae', NULL, 397.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makasae', [Definition] = NULL, [SortOrder] = 397.50 WHERE [Code] = 'mkz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mak', 'Makasar', NULL, 397.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makasar', [Definition] = NULL, [SortOrder] = 397.60 WHERE [Code] = 'mak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfp', 'Makassar Malay', NULL, 397.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makassar Malay', [Definition] = NULL, [SortOrder] = 397.70 WHERE [Code] = 'mfp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aup', 'Makayam', NULL, 397.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makayam', [Definition] = NULL, [SortOrder] = 397.80 WHERE [Code] = 'aup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmw', 'Makhuwa', NULL, 397.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa', [Definition] = NULL, [SortOrder] = 397.90 WHERE [Code] = 'vmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmc', 'Makhuwa-Marrevone', NULL, 398.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Marrevone', [Definition] = NULL, [SortOrder] = 398.00 WHERE [Code] = 'xmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgh', 'Makhuwa-Meetto', NULL, 398.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Meetto', [Definition] = NULL, [SortOrder] = 398.10 WHERE [Code] = 'mgh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhm', 'Makhuwa-Moniga', NULL, 398.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Moniga', [Definition] = NULL, [SortOrder] = 398.20 WHERE [Code] = 'mhm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsq', 'Makhuwa-Saka', NULL, 398.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Saka', [Definition] = NULL, [SortOrder] = 398.30 WHERE [Code] = 'xsq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmk', 'Makhuwa-Shirima', NULL, 398.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Shirima', [Definition] = NULL, [SortOrder] = 398.40 WHERE [Code] = 'vmk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgf', 'Maklew', NULL, 398.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maklew', [Definition] = NULL, [SortOrder] = 398.50 WHERE [Code] = 'mgf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmh', 'Makolkol', NULL, 398.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makolkol', [Definition] = NULL, [SortOrder] = 398.60 WHERE [Code] = 'zmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kde', 'Makonde', NULL, 398.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makonde', [Definition] = NULL, [SortOrder] = 398.70 WHERE [Code] = 'kde' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xak', 'Maku', NULL, 398.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maku', [Definition] = NULL, [SortOrder] = 398.80 WHERE [Code] = 'xak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lva', 'Maku''a', NULL, 398.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maku''a', [Definition] = NULL, [SortOrder] = 398.90 WHERE [Code] = 'lva' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpu', 'Makuráp', NULL, 399.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makuráp', [Definition] = NULL, [SortOrder] = 399.00 WHERE [Code] = 'mpu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmn', 'Makuri Naga', NULL, 399.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makuri Naga', [Definition] = NULL, [SortOrder] = 399.10 WHERE [Code] = 'jmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymk', 'Makwe', NULL, 399.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makwe', [Definition] = NULL, [SortOrder] = 399.20 WHERE [Code] = 'ymk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umn', 'Makyan Naga', NULL, 399.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makyan Naga', [Definition] = NULL, [SortOrder] = 399.30 WHERE [Code] = 'umn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlf', 'Mal', NULL, 399.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mal', [Definition] = NULL, [SortOrder] = 399.40 WHERE [Code] = 'mlf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkb', 'Mal Paharia', NULL, 399.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mal Paharia', [Definition] = NULL, [SortOrder] = 399.50 WHERE [Code] = 'mkb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruy', 'Mala (Nigeria)', NULL, 399.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mala (Nigeria)', [Definition] = NULL, [SortOrder] = 399.60 WHERE [Code] = 'ruy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ped') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ped', 'Mala (Papua New Guinea)', NULL, 399.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mala (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 399.70 WHERE [Code] = 'ped' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ima') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ima', 'Mala Malasar', NULL, 399.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mala Malasar', [Definition] = NULL, [SortOrder] = 399.80 WHERE [Code] = 'ima' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccm', 'Malaccan Creole Malay', NULL, 399.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaccan Creole Malay', [Definition] = NULL, [SortOrder] = 399.90 WHERE [Code] = 'ccm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcm', 'Malaccan Creole Portuguese', NULL, 400.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaccan Creole Portuguese', [Definition] = NULL, [SortOrder] = 400.00 WHERE [Code] = 'mcm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlg', 'Malagasy', NULL, 400.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malagasy', [Definition] = NULL, [SortOrder] = 400.10 WHERE [Code] = 'mlg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpb', 'Malak Malak', NULL, 400.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malak Malak', [Definition] = NULL, [SortOrder] = 400.20 WHERE [Code] = 'mpb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmt', 'Malalamai', NULL, 400.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malalamai', [Definition] = NULL, [SortOrder] = 400.30 WHERE [Code] = 'mmt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mln', 'Malango', NULL, 400.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malango', [Definition] = NULL, [SortOrder] = 400.40 WHERE [Code] = 'mln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjo', 'Malankuravan', NULL, 400.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malankuravan', [Definition] = NULL, [SortOrder] = 400.50 WHERE [Code] = 'mjo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjp', 'Malapandaram', NULL, 400.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malapandaram', [Definition] = NULL, [SortOrder] = 400.60 WHERE [Code] = 'mjp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjq', 'Malaryan', NULL, 400.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaryan', [Definition] = NULL, [SortOrder] = 400.70 WHERE [Code] = 'mjq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkr', 'Malas', NULL, 400.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malas', [Definition] = NULL, [SortOrder] = 400.80 WHERE [Code] = 'mkr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymr', 'Malasar', NULL, 400.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malasar', [Definition] = NULL, [SortOrder] = 400.90 WHERE [Code] = 'ymr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjr', 'Malavedan', NULL, 401.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malavedan', [Definition] = NULL, [SortOrder] = 401.00 WHERE [Code] = 'mjr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lon', 'Malawi Lomwe', NULL, 401.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malawi Lomwe', [Definition] = NULL, [SortOrder] = 401.10 WHERE [Code] = 'lon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swk', 'Malawi Sena', NULL, 401.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malawi Sena', [Definition] = NULL, [SortOrder] = 401.20 WHERE [Code] = 'swk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lws', 'Malawian Sign Language', NULL, 401.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malawian Sign Language', [Definition] = NULL, [SortOrder] = 401.30 WHERE [Code] = 'lws' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zlm', 'Malay (individual language)', NULL, 401.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malay (individual language)', [Definition] = NULL, [SortOrder] = 401.40 WHERE [Code] = 'zlm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msa', 'Malay (macrolanguage)', NULL, 401.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malay (macrolanguage)', [Definition] = NULL, [SortOrder] = 401.50 WHERE [Code] = 'msa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mal', 'Malayalam', NULL, 401.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malayalam', [Definition] = NULL, [SortOrder] = 401.60 WHERE [Code] = 'mal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdy', 'Malayic Dayak', NULL, 401.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malayic Dayak', [Definition] = NULL, [SortOrder] = 401.70 WHERE [Code] = 'xdy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlz', 'Malaynon', NULL, 401.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaynon', [Definition] = NULL, [SortOrder] = 401.80 WHERE [Code] = 'mlz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbp', 'Malayo', NULL, 401.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malayo', [Definition] = NULL, [SortOrder] = 401.90 WHERE [Code] = 'mbp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xml', 'Malaysian Sign Language', NULL, 402.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaysian Sign Language', [Definition] = NULL, [SortOrder] = 402.00 WHERE [Code] = 'xml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfo', 'Malba Birifor', NULL, 402.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malba Birifor', [Definition] = NULL, [SortOrder] = 402.10 WHERE [Code] = 'bfo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdy', 'Male (Ethiopia)', NULL, 402.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Male (Ethiopia)', [Definition] = NULL, [SortOrder] = 402.20 WHERE [Code] = 'mdy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdc', 'Male (Papua New Guinea)', NULL, 402.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Male (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 402.30 WHERE [Code] = 'mdc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pqm', 'Malecite-Passamaquoddy', NULL, 402.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malecite-Passamaquoddy', [Definition] = NULL, [SortOrder] = 402.40 WHERE [Code] = 'pqm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gut', 'Maléku Jaíka', NULL, 402.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maléku Jaíka', [Definition] = NULL, [SortOrder] = 402.50 WHERE [Code] = 'gut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkt', 'Maleng', NULL, 402.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maleng', [Definition] = NULL, [SortOrder] = 402.60 WHERE [Code] = 'pkt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgl', 'Maleu-Kilenge', NULL, 402.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maleu-Kilenge', [Definition] = NULL, [SortOrder] = 402.70 WHERE [Code] = 'mgl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlx', 'Malfaxal', NULL, 402.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malfaxal', [Definition] = NULL, [SortOrder] = 402.80 WHERE [Code] = 'mlx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vml', 'Malgana', NULL, 402.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malgana', [Definition] = NULL, [SortOrder] = 402.90 WHERE [Code] = 'vml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxf', 'Malgbe', NULL, 403.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malgbe', [Definition] = NULL, [SortOrder] = 403.00 WHERE [Code] = 'mxf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcc', 'Mali', NULL, 403.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mali', [Definition] = NULL, [SortOrder] = 403.10 WHERE [Code] = 'gcc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgq', 'Malila', NULL, 403.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malila', [Definition] = NULL, [SortOrder] = 403.20 WHERE [Code] = 'mgq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzd', 'Malimba', NULL, 403.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malimba', [Definition] = NULL, [SortOrder] = 403.30 WHERE [Code] = 'mzd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mli', 'Malimpung', NULL, 403.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malimpung', [Definition] = NULL, [SortOrder] = 403.40 WHERE [Code] = 'mli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcf', 'Malinaltepec Me''phaa', NULL, 403.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malinaltepec Me''phaa', [Definition] = NULL, [SortOrder] = 403.50 WHERE [Code] = 'tcf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mla', 'Malo', NULL, 403.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malo', [Definition] = NULL, [SortOrder] = 403.60 WHERE [Code] = 'mla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbk', 'Malol', NULL, 403.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malol', [Definition] = NULL, [SortOrder] = 403.70 WHERE [Code] = 'mbk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlt', 'Maltese', NULL, 403.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maltese', [Definition] = NULL, [SortOrder] = 403.80 WHERE [Code] = 'mlt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdl', 'Maltese Sign Language', NULL, 403.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maltese Sign Language', [Definition] = NULL, [SortOrder] = 403.90 WHERE [Code] = 'mdl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mll', 'Malua Bay', NULL, 404.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malua Bay', [Definition] = NULL, [SortOrder] = 404.00 WHERE [Code] = 'mll' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mup', 'Malvi', NULL, 404.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malvi', [Definition] = NULL, [SortOrder] = 404.10 WHERE [Code] = 'mup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yga', 'Malyangapa', NULL, 404.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malyangapa', [Definition] = NULL, [SortOrder] = 404.20 WHERE [Code] = 'yga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mam', 'Mam', NULL, 404.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mam', [Definition] = NULL, [SortOrder] = 404.30 WHERE [Code] = 'mam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mma', 'Mama', NULL, 404.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mama', [Definition] = NULL, [SortOrder] = 404.40 WHERE [Code] = 'mma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhf', 'Mamaa', NULL, 404.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamaa', [Definition] = NULL, [SortOrder] = 404.50 WHERE [Code] = 'mhf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmd', 'Mamaindé', NULL, 404.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamaindé', [Definition] = NULL, [SortOrder] = 404.60 WHERE [Code] = 'wmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmn', 'Mamanwa', NULL, 404.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamanwa', [Definition] = NULL, [SortOrder] = 404.70 WHERE [Code] = 'mmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myk', 'Mamara Senoufo', NULL, 404.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamara Senoufo', [Definition] = NULL, [SortOrder] = 404.80 WHERE [Code] = 'myk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqj', 'Mamasa', NULL, 404.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamasa', [Definition] = NULL, [SortOrder] = 404.90 WHERE [Code] = 'mqj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgm', 'Mambae', NULL, 405.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mambae', [Definition] = NULL, [SortOrder] = 405.00 WHERE [Code] = 'mgm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcs', 'Mambai', NULL, 405.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mambai', [Definition] = NULL, [SortOrder] = 405.10 WHERE [Code] = 'mcs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvd', 'Mamboru', NULL, 405.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamboru', [Definition] = NULL, [SortOrder] = 405.20 WHERE [Code] = 'mvd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgr', 'Mambwe-Lungu', NULL, 405.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mambwe-Lungu', [Definition] = NULL, [SortOrder] = 405.30 WHERE [Code] = 'mgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maw', 'Mampruli', NULL, 405.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mampruli', [Definition] = NULL, [SortOrder] = 405.40 WHERE [Code] = 'maw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqx', 'Mamuju', NULL, 405.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamuju', [Definition] = NULL, [SortOrder] = 405.50 WHERE [Code] = 'mqx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emm', 'Mamulique', NULL, 405.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamulique', [Definition] = NULL, [SortOrder] = 405.60 WHERE [Code] = 'emm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdf', 'Mamusi', NULL, 405.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamusi', [Definition] = NULL, [SortOrder] = 405.70 WHERE [Code] = 'kdf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdi', 'Mamvu', NULL, 405.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamvu', [Definition] = NULL, [SortOrder] = 405.80 WHERE [Code] = 'mdi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mml', 'Man Met', NULL, 405.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Man Met', [Definition] = NULL, [SortOrder] = 405.90 WHERE [Code] = 'mml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmm', 'Manado Malay', NULL, 406.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manado Malay', [Definition] = NULL, [SortOrder] = 406.00 WHERE [Code] = 'xmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mva', 'Manam', NULL, 406.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manam', [Definition] = NULL, [SortOrder] = 406.10 WHERE [Code] = 'mva' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mle', 'Manambu', NULL, 406.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manambu', [Definition] = NULL, [SortOrder] = 406.20 WHERE [Code] = 'mle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmm', 'Manangba', NULL, 406.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manangba', [Definition] = NULL, [SortOrder] = 406.30 WHERE [Code] = 'nmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'znk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('znk', 'Manangkari', NULL, 406.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manangkari', [Definition] = NULL, [SortOrder] = 406.40 WHERE [Code] = 'znk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnc', 'Manchu', NULL, 406.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manchu', [Definition] = NULL, [SortOrder] = 406.50 WHERE [Code] = 'mnc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zma', 'Manda (Australia)', NULL, 406.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manda (Australia)', [Definition] = NULL, [SortOrder] = 406.60 WHERE [Code] = 'zma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mha', 'Manda (India)', NULL, 406.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manda (India)', [Definition] = NULL, [SortOrder] = 406.70 WHERE [Code] = 'mha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgs', 'Manda (Tanzania)', NULL, 406.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manda (Tanzania)', [Definition] = NULL, [SortOrder] = 406.80 WHERE [Code] = 'mgs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mht', 'Mandahuaca', NULL, 406.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandahuaca', [Definition] = NULL, [SortOrder] = 406.90 WHERE [Code] = 'mht' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mid', 'Mandaic', NULL, 407.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandaic', [Definition] = NULL, [SortOrder] = 407.00 WHERE [Code] = 'mid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhq', 'Mandan', NULL, 407.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandan', [Definition] = NULL, [SortOrder] = 407.10 WHERE [Code] = 'mhq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmk', 'Mandandanyi', NULL, 407.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandandanyi', [Definition] = NULL, [SortOrder] = 407.20 WHERE [Code] = 'zmk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdr', 'Mandar', NULL, 407.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandar', [Definition] = NULL, [SortOrder] = 407.30 WHERE [Code] = 'mdr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbf', 'Mandara', NULL, 407.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandara', [Definition] = NULL, [SortOrder] = 407.40 WHERE [Code] = 'tbf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqu', 'Mandari', NULL, 407.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandari', [Definition] = NULL, [SortOrder] = 407.50 WHERE [Code] = 'mqu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmn', 'Mandarin Chinese', NULL, 407.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandarin Chinese', [Definition] = NULL, [SortOrder] = 407.60 WHERE [Code] = 'cmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mry', 'Mandaya', NULL, 407.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandaya', [Definition] = NULL, [SortOrder] = 407.70 WHERE [Code] = 'mry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjl', 'Mandeali', NULL, 407.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandeali', [Definition] = NULL, [SortOrder] = 407.80 WHERE [Code] = 'mjl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqr', 'Mander', NULL, 407.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mander', [Definition] = NULL, [SortOrder] = 407.90 WHERE [Code] = 'mqr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'man') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('man', 'Mandingo', NULL, 408.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandingo', [Definition] = NULL, [SortOrder] = 408.00 WHERE [Code] = 'man' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnk', 'Mandinka', NULL, 408.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandinka', [Definition] = NULL, [SortOrder] = 408.10 WHERE [Code] = 'mnk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfv', 'Mandjak', NULL, 408.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandjak', [Definition] = NULL, [SortOrder] = 408.20 WHERE [Code] = 'mfv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aax', 'Mandobo Atas', NULL, 408.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandobo Atas', [Definition] = NULL, [SortOrder] = 408.30 WHERE [Code] = 'aax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwp', 'Mandobo Bawah', NULL, 408.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandobo Bawah', [Definition] = NULL, [SortOrder] = 408.40 WHERE [Code] = 'bwp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jet', 'Manem', NULL, 408.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manem', [Definition] = NULL, [SortOrder] = 408.50 WHERE [Code] = 'jet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zng', 'Mang', NULL, 408.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mang', [Definition] = NULL, [SortOrder] = 408.60 WHERE [Code] = 'zng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kby', 'Manga Kanuri', NULL, 408.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manga Kanuri', [Definition] = NULL, [SortOrder] = 408.70 WHERE [Code] = 'kby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mem', 'Mangala', NULL, 408.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangala', [Definition] = NULL, [SortOrder] = 408.80 WHERE [Code] = 'mem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrv', 'Mangareva', NULL, 408.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangareva', [Definition] = NULL, [SortOrder] = 408.90 WHERE [Code] = 'mrv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpc', 'Mangarrayi', NULL, 409.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangarrayi', [Definition] = NULL, [SortOrder] = 409.00 WHERE [Code] = 'mpc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zns', 'Mangas', NULL, 409.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangas', [Definition] = NULL, [SortOrder] = 409.10 WHERE [Code] = 'zns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myj', 'Mangayat', NULL, 409.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangayat', [Definition] = NULL, [SortOrder] = 409.20 WHERE [Code] = 'myj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdj', 'Mangbetu', NULL, 409.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangbetu', [Definition] = NULL, [SortOrder] = 409.30 WHERE [Code] = 'mdj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdk', 'Mangbutu', NULL, 409.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangbutu', [Definition] = NULL, [SortOrder] = 409.40 WHERE [Code] = 'mdk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zme', 'Mangerr', NULL, 409.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangerr', [Definition] = NULL, [SortOrder] = 409.50 WHERE [Code] = 'zme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmo', 'Mangga Buang', NULL, 409.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangga Buang', [Definition] = NULL, [SortOrder] = 409.60 WHERE [Code] = 'mmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqy', 'Manggarai', NULL, 409.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manggarai', [Definition] = NULL, [SortOrder] = 409.70 WHERE [Code] = 'mqy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mge', 'Mango', NULL, 409.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mango', [Definition] = NULL, [SortOrder] = 409.80 WHERE [Code] = 'mge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqc', 'Mangole', NULL, 409.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangole', [Definition] = NULL, [SortOrder] = 409.90 WHERE [Code] = 'mqc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbh', 'Mangseng', NULL, 410.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangseng', [Definition] = NULL, [SortOrder] = 410.00 WHERE [Code] = 'mbh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mom', 'Mangue', NULL, 410.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangue', [Definition] = NULL, [SortOrder] = 410.10 WHERE [Code] = 'mom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmn', 'Manichaean Middle Persian', NULL, 410.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manichaean Middle Persian', [Definition] = NULL, [SortOrder] = 410.20 WHERE [Code] = 'xmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abd', 'Manide', NULL, 410.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manide', [Definition] = NULL, [SortOrder] = 410.30 WHERE [Code] = 'abd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnx', 'Manikion', NULL, 410.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manikion', [Definition] = NULL, [SortOrder] = 410.40 WHERE [Code] = 'mnx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqp', 'Manipa', NULL, 410.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manipa', [Definition] = NULL, [SortOrder] = 410.50 WHERE [Code] = 'mqp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mni', 'Manipuri', NULL, 410.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manipuri', [Definition] = NULL, [SortOrder] = 410.60 WHERE [Code] = 'mni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knf', 'Mankanya', NULL, 410.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mankanya', [Definition] = NULL, [SortOrder] = 410.70 WHERE [Code] = 'knf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlm', 'Mankiyali', NULL, 410.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mankiyali', [Definition] = NULL, [SortOrder] = 410.80 WHERE [Code] = 'nlm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mju', 'Manna-Dora', NULL, 410.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manna-Dora', [Definition] = NULL, [SortOrder] = 410.90 WHERE [Code] = 'mju' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjv', 'Mannan', NULL, 411.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mannan', [Definition] = NULL, [SortOrder] = 411.00 WHERE [Code] = 'mjv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mev', 'Mano', NULL, 411.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mano', [Definition] = NULL, [SortOrder] = 411.10 WHERE [Code] = 'mev' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woo', 'Manombai', NULL, 411.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manombai', [Definition] = NULL, [SortOrder] = 411.20 WHERE [Code] = 'woo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msk', 'Mansaka', NULL, 411.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mansaka', [Definition] = NULL, [SortOrder] = 411.30 WHERE [Code] = 'msk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mns', 'Mansi', NULL, 411.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mansi', [Definition] = NULL, [SortOrder] = 411.40 WHERE [Code] = 'mns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msw', 'Mansoanka', NULL, 411.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mansoanka', [Definition] = NULL, [SortOrder] = 411.50 WHERE [Code] = 'msw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myg', 'Manta', NULL, 411.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manta', [Definition] = NULL, [SortOrder] = 411.60 WHERE [Code] = 'myg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nty', 'Mantsi', NULL, 411.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mantsi', [Definition] = NULL, [SortOrder] = 411.70 WHERE [Code] = 'nty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxf', 'Manumanaw Karen', NULL, 411.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manumanaw Karen', [Definition] = NULL, [SortOrder] = 411.80 WHERE [Code] = 'kxf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glv', 'Manx', NULL, 411.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manx', [Definition] = NULL, [SortOrder] = 411.90 WHERE [Code] = 'glv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzj', 'Manya', NULL, 412.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manya', [Definition] = NULL, [SortOrder] = 412.00 WHERE [Code] = 'mzj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mny', 'Manyawa', NULL, 412.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manyawa', [Definition] = NULL, [SortOrder] = 412.10 WHERE [Code] = 'mny' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxc', 'Manyika', NULL, 412.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manyika', [Definition] = NULL, [SortOrder] = 412.20 WHERE [Code] = 'mxc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzv', 'Manza', NULL, 412.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manza', [Definition] = NULL, [SortOrder] = 412.30 WHERE [Code] = 'mzv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbi', 'Mao Naga', NULL, 412.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mao Naga', [Definition] = NULL, [SortOrder] = 412.40 WHERE [Code] = 'nbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmd', 'Maonan', NULL, 412.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maonan', [Definition] = NULL, [SortOrder] = 412.50 WHERE [Code] = 'mmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swb', 'Maore Comorian', NULL, 412.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maore Comorian', [Definition] = NULL, [SortOrder] = 412.60 WHERE [Code] = 'swb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mri', 'Maori', NULL, 412.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maori', [Definition] = NULL, [SortOrder] = 412.70 WHERE [Code] = 'mri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlh', 'Mape', NULL, 412.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mape', [Definition] = NULL, [SortOrder] = 412.80 WHERE [Code] = 'mlh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnm', 'Mapena', NULL, 412.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapena', [Definition] = NULL, [SortOrder] = 412.90 WHERE [Code] = 'mnm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpy', 'Mapia', NULL, 413.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapia', [Definition] = NULL, [SortOrder] = 413.00 WHERE [Code] = 'mpy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpw', 'Mapidian', NULL, 413.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapidian', [Definition] = NULL, [SortOrder] = 413.10 WHERE [Code] = 'mpw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzh', 'Mapos Buang', NULL, 413.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapos Buang', [Definition] = NULL, [SortOrder] = 413.20 WHERE [Code] = 'bzh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcg', 'Mapoyo', NULL, 413.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapoyo', [Definition] = NULL, [SortOrder] = 413.30 WHERE [Code] = 'mcg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arn', 'Mapudungun', NULL, 413.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapudungun', [Definition] = NULL, [SortOrder] = 413.40 WHERE [Code] = 'arn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjm', 'Mapun', NULL, 413.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapun', [Definition] = NULL, [SortOrder] = 413.50 WHERE [Code] = 'sjm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mch', 'Maquiritari', NULL, 413.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maquiritari', [Definition] = NULL, [SortOrder] = 413.60 WHERE [Code] = 'mch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrh', 'Mara Chin', NULL, 413.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mara Chin', [Definition] = NULL, [SortOrder] = 413.70 WHERE [Code] = 'mrh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lri', 'Marachi', NULL, 413.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marachi', [Definition] = NULL, [SortOrder] = 413.80 WHERE [Code] = 'lri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmh', 'Maraghei', NULL, 413.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maraghei', [Definition] = NULL, [SortOrder] = 413.90 WHERE [Code] = 'vmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrs', 'Maragus', NULL, 414.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maragus', [Definition] = NULL, [SortOrder] = 414.00 WHERE [Code] = 'mrs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nma', 'Maram Naga', NULL, 414.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maram Naga', [Definition] = NULL, [SortOrder] = 414.10 WHERE [Code] = 'nma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrm', 'Marama', NULL, 414.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marama', [Definition] = NULL, [SortOrder] = 414.20 WHERE [Code] = 'lrm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrw', 'Maranao', NULL, 414.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maranao', [Definition] = NULL, [SortOrder] = 414.30 WHERE [Code] = 'mrw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmr', 'Maranunggu', NULL, 414.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maranunggu', [Definition] = NULL, [SortOrder] = 414.40 WHERE [Code] = 'zmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgb', 'Mararit', NULL, 414.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mararit', [Definition] = NULL, [SortOrder] = 414.50 WHERE [Code] = 'mgb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mar', 'Marathi', NULL, 414.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marathi', [Definition] = NULL, [SortOrder] = 414.60 WHERE [Code] = 'mar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvr', 'Marau', NULL, 414.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marau', [Definition] = NULL, [SortOrder] = 414.70 WHERE [Code] = 'mvr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpg', 'Marba', NULL, 414.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marba', [Definition] = NULL, [SortOrder] = 414.80 WHERE [Code] = 'mpg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsz', 'Mardin Sign Language', NULL, 414.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mardin Sign Language', [Definition] = NULL, [SortOrder] = 414.90 WHERE [Code] = 'dsz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrx', 'Maremgi', NULL, 415.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maremgi', [Definition] = NULL, [SortOrder] = 415.00 WHERE [Code] = 'mrx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmr', 'Marenje', NULL, 415.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marenje', [Definition] = NULL, [SortOrder] = 415.10 WHERE [Code] = 'vmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvu', 'Marfa', NULL, 415.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marfa', [Definition] = NULL, [SortOrder] = 415.20 WHERE [Code] = 'mvu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmc', 'Margany', NULL, 415.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Margany', [Definition] = NULL, [SortOrder] = 415.30 WHERE [Code] = 'zmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrt', 'Marghi Central', NULL, 415.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marghi Central', [Definition] = NULL, [SortOrder] = 415.40 WHERE [Code] = 'mrt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfm', 'Marghi South', NULL, 415.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marghi South', [Definition] = NULL, [SortOrder] = 415.50 WHERE [Code] = 'mfm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvm', 'Margos-Yarowilca-Lauricocha Quechua', NULL, 415.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Margos-Yarowilca-Lauricocha Quechua', [Definition] = NULL, [SortOrder] = 415.60 WHERE [Code] = 'qvm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhg', 'Margu', NULL, 415.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Margu', [Definition] = NULL, [SortOrder] = 415.70 WHERE [Code] = 'mhg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbx', 'Mari (East Sepik Province)', NULL, 415.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mari (East Sepik Province)', [Definition] = NULL, [SortOrder] = 415.80 WHERE [Code] = 'mbx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hob', 'Mari (Madang Province)', NULL, 415.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mari (Madang Province)', [Definition] = NULL, [SortOrder] = 415.90 WHERE [Code] = 'hob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chm', 'Mari (Russia)', NULL, 416.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mari (Russia)', [Definition] = NULL, [SortOrder] = 416.00 WHERE [Code] = 'chm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrr', 'Maria (India)', NULL, 416.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maria (India)', [Definition] = NULL, [SortOrder] = 416.10 WHERE [Code] = 'mrr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mds', 'Maria (Papua New Guinea)', NULL, 416.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maria (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 416.20 WHERE [Code] = 'mds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrc', 'Maricopa', NULL, 416.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maricopa', [Definition] = NULL, [SortOrder] = 416.30 WHERE [Code] = 'mrc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmd', 'Maridan', NULL, 416.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maridan', [Definition] = NULL, [SortOrder] = 416.40 WHERE [Code] = 'zmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmj', 'Maridjabin', NULL, 416.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maridjabin', [Definition] = NULL, [SortOrder] = 416.50 WHERE [Code] = 'zmj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dad', 'Marik', NULL, 416.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marik', [Definition] = NULL, [SortOrder] = 416.60 WHERE [Code] = 'dad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmm', 'Marimanindji', NULL, 416.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marimanindji', [Definition] = NULL, [SortOrder] = 416.70 WHERE [Code] = 'zmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrz', 'Marind', NULL, 416.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marind', [Definition] = NULL, [SortOrder] = 416.80 WHERE [Code] = 'mrz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbw', 'Maring', NULL, 416.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maring', [Definition] = NULL, [SortOrder] = 416.90 WHERE [Code] = 'mbw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nng', 'Maring Naga', NULL, 417.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maring Naga', [Definition] = NULL, [SortOrder] = 417.00 WHERE [Code] = 'nng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmt', 'Maringarr', NULL, 417.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maringarr', [Definition] = NULL, [SortOrder] = 417.10 WHERE [Code] = 'zmt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrb', 'Marino', NULL, 417.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marino', [Definition] = NULL, [SortOrder] = 417.20 WHERE [Code] = 'mrb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqi', 'Mariri', NULL, 417.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mariri', [Definition] = NULL, [SortOrder] = 417.30 WHERE [Code] = 'mqi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsr', 'Maritime Sign Language', NULL, 417.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maritime Sign Language', [Definition] = NULL, [SortOrder] = 417.40 WHERE [Code] = 'nsr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msp', 'Maritsauá', NULL, 417.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maritsauá', [Definition] = NULL, [SortOrder] = 417.50 WHERE [Code] = 'msp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmy', 'Mariyedi', NULL, 417.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mariyedi', [Definition] = NULL, [SortOrder] = 417.60 WHERE [Code] = 'zmy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkm', 'Marka', NULL, 417.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marka', [Definition] = NULL, [SortOrder] = 417.70 WHERE [Code] = 'rkm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enb', 'Markweeta', NULL, 417.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Markweeta', [Definition] = NULL, [SortOrder] = 417.80 WHERE [Code] = 'enb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmz', 'Marma', NULL, 417.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marma', [Definition] = NULL, [SortOrder] = 417.90 WHERE [Code] = 'rmz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvo', 'Marovo', NULL, 418.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marovo', [Definition] = NULL, [SortOrder] = 418.00 WHERE [Code] = 'mvo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mec', 'Marra', NULL, 418.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marra', [Definition] = NULL, [SortOrder] = 418.10 WHERE [Code] = 'mec' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xru', 'Marriammu', NULL, 418.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marriammu', [Definition] = NULL, [SortOrder] = 418.20 WHERE [Code] = 'xru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfr', 'Marrithiyel', NULL, 418.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marrithiyel', [Definition] = NULL, [SortOrder] = 418.30 WHERE [Code] = 'mfr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umc', 'Marrucinian', NULL, 418.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marrucinian', [Definition] = NULL, [SortOrder] = 418.40 WHERE [Code] = 'umc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mah', 'Marshallese', NULL, 418.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marshallese', [Definition] = NULL, [SortOrder] = 418.50 WHERE [Code] = 'mah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ims') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ims', 'Marsian', NULL, 418.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marsian', [Definition] = NULL, [SortOrder] = 418.60 WHERE [Code] = 'ims' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mre', 'Martha''s Vineyard Sign Language', NULL, 418.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Martha''s Vineyard Sign Language', [Definition] = NULL, [SortOrder] = 418.70 WHERE [Code] = 'mre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmg', 'Marti Ke', NULL, 418.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marti Ke', [Definition] = NULL, [SortOrder] = 418.80 WHERE [Code] = 'zmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpj', 'Martu Wangka', NULL, 418.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Martu Wangka', [Definition] = NULL, [SortOrder] = 418.90 WHERE [Code] = 'mpj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vma', 'Martuyhunira', NULL, 419.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Martuyhunira', [Definition] = NULL, [SortOrder] = 419.00 WHERE [Code] = 'vma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhx', 'Maru', NULL, 419.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maru', [Definition] = NULL, [SortOrder] = 419.10 WHERE [Code] = 'mhx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzr', 'Marúbo', NULL, 419.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marúbo', [Definition] = NULL, [SortOrder] = 419.20 WHERE [Code] = 'mzr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwr', 'Marwari', NULL, 419.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marwari', [Definition] = NULL, [SortOrder] = 419.30 WHERE [Code] = 'mwr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwr', 'Marwari (India)', NULL, 419.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marwari (India)', [Definition] = NULL, [SortOrder] = 419.40 WHERE [Code] = 'rwr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mve', 'Marwari (Pakistan)', NULL, 419.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marwari (Pakistan)', [Definition] = NULL, [SortOrder] = 419.50 WHERE [Code] = 'mve' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myx', 'Masaaba', NULL, 419.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masaaba', [Definition] = NULL, [SortOrder] = 419.60 WHERE [Code] = 'myx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tis', 'Masadiit Itneg', NULL, 419.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masadiit Itneg', [Definition] = NULL, [SortOrder] = 419.70 WHERE [Code] = 'tis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mas', 'Masai', NULL, 419.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masai', [Definition] = NULL, [SortOrder] = 419.80 WHERE [Code] = 'mas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mls', 'Masalit', NULL, 419.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masalit', [Definition] = NULL, [SortOrder] = 419.90 WHERE [Code] = 'mls' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcn', 'Masana', NULL, 420.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masana', [Definition] = NULL, [SortOrder] = 420.00 WHERE [Code] = 'mcn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msb', 'Masbatenyo', NULL, 420.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masbatenyo', [Definition] = NULL, [SortOrder] = 420.10 WHERE [Code] = 'msb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuj', 'Mashco Piro', NULL, 420.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mashco Piro', [Definition] = NULL, [SortOrder] = 420.20 WHERE [Code] = 'cuj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jms', 'Mashi (Nigeria)', NULL, 420.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mashi (Nigeria)', [Definition] = NULL, [SortOrder] = 420.30 WHERE [Code] = 'jms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mho', 'Mashi (Zambia)', NULL, 420.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mashi (Zambia)', [Definition] = NULL, [SortOrder] = 420.40 WHERE [Code] = 'mho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msh', 'Masikoro Malagasy', NULL, 420.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masikoro Malagasy', [Definition] = NULL, [SortOrder] = 420.50 WHERE [Code] = 'msh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ism') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ism', 'Masimasi', NULL, 420.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masimasi', [Definition] = NULL, [SortOrder] = 420.60 WHERE [Code] = 'ism' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnf', 'Masiwang', NULL, 420.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masiwang', [Definition] = NULL, [SortOrder] = 420.70 WHERE [Code] = 'bnf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klv', 'Maskelynes', NULL, 420.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maskelynes', [Definition] = NULL, [SortOrder] = 420.80 WHERE [Code] = 'klv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msv', 'Maslam', NULL, 420.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maslam', [Definition] = NULL, [SortOrder] = 420.90 WHERE [Code] = 'msv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mes', 'Masmaje', NULL, 421.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masmaje', [Definition] = NULL, [SortOrder] = 421.00 WHERE [Code] = 'mes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdg', 'Massalat', NULL, 421.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Massalat', [Definition] = NULL, [SortOrder] = 421.10 WHERE [Code] = 'mdg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvs', 'Massep', NULL, 421.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Massep', [Definition] = NULL, [SortOrder] = 421.20 WHERE [Code] = 'mvs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtn', 'Matagalpa', NULL, 421.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matagalpa', [Definition] = NULL, [SortOrder] = 421.30 WHERE [Code] = 'mtn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfh', 'Matal', NULL, 421.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matal', [Definition] = NULL, [SortOrder] = 421.40 WHERE [Code] = 'mfh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmt', 'Matbat', NULL, 421.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matbat', [Definition] = NULL, [SortOrder] = 421.50 WHERE [Code] = 'xmt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgv', 'Matengo', NULL, 421.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matengo', [Definition] = NULL, [SortOrder] = 421.60 WHERE [Code] = 'mgv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqe', 'Matepi', NULL, 421.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matepi', [Definition] = NULL, [SortOrder] = 421.70 WHERE [Code] = 'mqe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbt', 'Matigsalug Manobo', NULL, 421.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matigsalug Manobo', [Definition] = NULL, [SortOrder] = 421.80 WHERE [Code] = 'mbt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzo', 'Matipuhy', NULL, 421.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matipuhy', [Definition] = NULL, [SortOrder] = 421.90 WHERE [Code] = 'mzo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpq', 'Matís', NULL, 422.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matís', [Definition] = NULL, [SortOrder] = 422.00 WHERE [Code] = 'mpq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zml', 'Matngala', NULL, 422.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matngala', [Definition] = NULL, [SortOrder] = 422.10 WHERE [Code] = 'zml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'met') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('met', 'Mato', NULL, 422.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mato', [Definition] = NULL, [SortOrder] = 422.20 WHERE [Code] = 'met' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axg', 'Mato Grosso Arára', NULL, 422.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mato Grosso Arára', [Definition] = NULL, [SortOrder] = 422.30 WHERE [Code] = 'axg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtm', 'Mator', NULL, 422.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mator', [Definition] = NULL, [SortOrder] = 422.40 WHERE [Code] = 'mtm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcf', 'Matsés', NULL, 422.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matsés', [Definition] = NULL, [SortOrder] = 422.50 WHERE [Code] = 'mcf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvb', 'Mattole', NULL, 422.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mattole', [Definition] = NULL, [SortOrder] = 422.60 WHERE [Code] = 'mvb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hlt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hlt', 'Matu Chin', NULL, 422.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matu Chin', [Definition] = NULL, [SortOrder] = 422.70 WHERE [Code] = 'hlt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjk', 'Matukar', NULL, 422.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matukar', [Definition] = NULL, [SortOrder] = 422.80 WHERE [Code] = 'mjk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgw', 'Matumbi', NULL, 422.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matumbi', [Definition] = NULL, [SortOrder] = 422.90 WHERE [Code] = 'mgw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stj', 'Matya Samo', NULL, 423.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matya Samo', [Definition] = NULL, [SortOrder] = 423.00 WHERE [Code] = 'stj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mph', 'Maung', NULL, 423.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maung', [Definition] = NULL, [SortOrder] = 423.10 WHERE [Code] = 'mph' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsy', 'Mauritian Sign Language', NULL, 423.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mauritian Sign Language', [Definition] = NULL, [SortOrder] = 423.20 WHERE [Code] = 'lsy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhl', 'Mauwake', NULL, 423.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mauwake', [Definition] = NULL, [SortOrder] = 423.30 WHERE [Code] = 'mhl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcw', 'Mawa (Chad)', NULL, 423.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawa (Chad)', [Definition] = NULL, [SortOrder] = 423.40 WHERE [Code] = 'mcw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wma', 'Mawa (Nigeria)', NULL, 423.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawa (Nigeria)', [Definition] = NULL, [SortOrder] = 423.50 WHERE [Code] = 'wma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjj', 'Mawak', NULL, 423.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawak', [Definition] = NULL, [SortOrder] = 423.60 WHERE [Code] = 'mjj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcz', 'Mawan', NULL, 423.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawan', [Definition] = NULL, [SortOrder] = 423.70 WHERE [Code] = 'mcz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzx', 'Mawayana', NULL, 423.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawayana', [Definition] = NULL, [SortOrder] = 423.80 WHERE [Code] = 'mzx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mke', 'Mawchi', NULL, 423.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawchi', [Definition] = NULL, [SortOrder] = 423.90 WHERE [Code] = 'mke' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgk', 'Mawes', NULL, 424.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawes', [Definition] = NULL, [SortOrder] = 424.00 WHERE [Code] = 'mgk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbl', 'Maxakalí', NULL, 424.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maxakalí', [Definition] = NULL, [SortOrder] = 424.10 WHERE [Code] = 'mbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxl', 'Maxi Gbe', NULL, 424.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maxi Gbe', [Definition] = NULL, [SortOrder] = 424.20 WHERE [Code] = 'mxl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sym', 'Maya Samo', NULL, 424.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maya Samo', [Definition] = NULL, [SortOrder] = 424.30 WHERE [Code] = 'sym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmy', 'Mayaguduna', NULL, 424.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayaguduna', [Definition] = NULL, [SortOrder] = 424.40 WHERE [Code] = 'xmy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yan', 'Mayangna', NULL, 424.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayangna', [Definition] = NULL, [SortOrder] = 424.50 WHERE [Code] = 'yan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxa', 'Mayawali', NULL, 424.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayawali', [Definition] = NULL, [SortOrder] = 424.60 WHERE [Code] = 'yxa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myc', 'Mayeka', NULL, 424.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayeka', [Definition] = NULL, [SortOrder] = 424.70 WHERE [Code] = 'myc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyk', 'Mayi-Kulan', NULL, 424.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayi-Kulan', [Definition] = NULL, [SortOrder] = 424.80 WHERE [Code] = 'xyk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyt', 'Mayi-Thakurti', NULL, 424.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayi-Thakurti', [Definition] = NULL, [SortOrder] = 424.90 WHERE [Code] = 'xyt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyj', 'Mayi-Yapi', NULL, 425.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayi-Yapi', [Definition] = NULL, [SortOrder] = 425.00 WHERE [Code] = 'xyj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfy', 'Mayo', NULL, 425.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayo', [Definition] = NULL, [SortOrder] = 425.10 WHERE [Code] = 'mfy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdm', 'Mayogo', NULL, 425.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayogo', [Definition] = NULL, [SortOrder] = 425.20 WHERE [Code] = 'mdm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifu', 'Mayoyao Ifugao', NULL, 425.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayoyao Ifugao', [Definition] = NULL, [SortOrder] = 425.30 WHERE [Code] = 'ifu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dkx', 'Mazagway', NULL, 425.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazagway', [Definition] = NULL, [SortOrder] = 425.40 WHERE [Code] = 'dkx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpy', 'Mazaltepec Zapotec', NULL, 425.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazaltepec Zapotec', [Definition] = NULL, [SortOrder] = 425.50 WHERE [Code] = 'zpy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzn', 'Mazanderani', NULL, 425.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazanderani', [Definition] = NULL, [SortOrder] = 425.60 WHERE [Code] = 'mzn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmz', 'Mazatlán Mazatec', NULL, 425.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazatlán Mazatec', [Definition] = NULL, [SortOrder] = 425.70 WHERE [Code] = 'vmz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzl', 'Mazatlán Mixe', NULL, 425.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazatlán Mixe', [Definition] = NULL, [SortOrder] = 425.80 WHERE [Code] = 'mzl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfc', 'Mba', NULL, 425.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mba', [Definition] = NULL, [SortOrder] = 425.90 WHERE [Code] = 'mfc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdp', 'Mbala', NULL, 426.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbala', [Definition] = NULL, [SortOrder] = 426.00 WHERE [Code] = 'mdp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnb', 'Mbalanhu', NULL, 426.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbalanhu', [Definition] = NULL, [SortOrder] = 426.10 WHERE [Code] = 'lnb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmz', 'Mbandja', NULL, 426.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbandja', [Definition] = NULL, [SortOrder] = 426.20 WHERE [Code] = 'zmz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxg', 'Mbangala', NULL, 426.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbangala', [Definition] = NULL, [SortOrder] = 426.30 WHERE [Code] = 'mxg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgn', 'Mbangi', NULL, 426.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbangi', [Definition] = NULL, [SortOrder] = 426.40 WHERE [Code] = 'mgn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmn', 'Mbangwe', NULL, 426.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbangwe', [Definition] = NULL, [SortOrder] = 426.50 WHERE [Code] = 'zmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvl', 'Mbara (Australia)', NULL, 426.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbara (Australia)', [Definition] = NULL, [SortOrder] = 426.60 WHERE [Code] = 'mvl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpk', 'Mbara (Chad)', NULL, 426.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbara (Chad)', [Definition] = NULL, [SortOrder] = 426.70 WHERE [Code] = 'mpk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmv', 'Mbariman-Gudhinma', NULL, 426.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbariman-Gudhinma', [Definition] = NULL, [SortOrder] = 426.80 WHERE [Code] = 'zmv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdn', 'Mbati', NULL, 426.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbati', [Definition] = NULL, [SortOrder] = 426.90 WHERE [Code] = 'mdn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwa', 'Mbato', NULL, 427.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbato', [Definition] = NULL, [SortOrder] = 427.00 WHERE [Code] = 'gwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myb', 'Mbay', NULL, 427.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbay', [Definition] = NULL, [SortOrder] = 427.10 WHERE [Code] = 'myb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfo', 'Mbe', NULL, 427.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbe', [Definition] = NULL, [SortOrder] = 427.20 WHERE [Code] = 'mfo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtk', 'Mbe''', NULL, 427.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbe''', [Definition] = NULL, [SortOrder] = 427.30 WHERE [Code] = 'mtk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mql', 'Mbelime', NULL, 427.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbelime', [Definition] = NULL, [SortOrder] = 427.40 WHERE [Code] = 'mql' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdt', 'Mbere', NULL, 427.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbere', [Definition] = NULL, [SortOrder] = 427.50 WHERE [Code] = 'mdt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zms', 'Mbesa', NULL, 427.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbesa', [Definition] = NULL, [SortOrder] = 427.60 WHERE [Code] = 'zms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emz', 'Mbessa', NULL, 427.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbessa', [Definition] = NULL, [SortOrder] = 427.70 WHERE [Code] = 'emz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbo', 'Mbo (Cameroon)', NULL, 427.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbo (Cameroon)', [Definition] = NULL, [SortOrder] = 427.80 WHERE [Code] = 'mbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmw', 'Mbo (Democratic Republic of Congo)', NULL, 427.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbo (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 427.90 WHERE [Code] = 'zmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moi', 'Mboi', NULL, 428.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mboi', [Definition] = NULL, [SortOrder] = 428.00 WHERE [Code] = 'moi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdu', 'Mboko', NULL, 428.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mboko', [Definition] = NULL, [SortOrder] = 428.10 WHERE [Code] = 'mdu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdq', 'Mbole', NULL, 428.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbole', [Definition] = NULL, [SortOrder] = 428.20 WHERE [Code] = 'mdq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmb', 'Mbonga', NULL, 428.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbonga', [Definition] = NULL, [SortOrder] = 428.30 WHERE [Code] = 'xmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgu', 'Mbongno', NULL, 428.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbongno', [Definition] = NULL, [SortOrder] = 428.40 WHERE [Code] = 'bgu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdw', 'Mbosi', NULL, 428.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbosi', [Definition] = NULL, [SortOrder] = 428.50 WHERE [Code] = 'mdw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxo', 'Mbowe', NULL, 428.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbowe', [Definition] = NULL, [SortOrder] = 428.60 WHERE [Code] = 'mxo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mka', 'Mbre', NULL, 428.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbre', [Definition] = NULL, [SortOrder] = 428.70 WHERE [Code] = 'mka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmd', 'Mbudum', NULL, 428.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbudum', [Definition] = NULL, [SortOrder] = 428.80 WHERE [Code] = 'xmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhd', 'Mbugu', NULL, 428.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbugu', [Definition] = NULL, [SortOrder] = 428.90 WHERE [Code] = 'mhd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgz', 'Mbugwe', NULL, 429.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbugwe', [Definition] = NULL, [SortOrder] = 429.00 WHERE [Code] = 'mgz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpc', 'Mbuk', NULL, 429.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbuk', [Definition] = NULL, [SortOrder] = 429.10 WHERE [Code] = 'bpc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqb', 'Mbuko', NULL, 429.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbuko', [Definition] = NULL, [SortOrder] = 429.20 WHERE [Code] = 'mqb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhw', 'Mbukushu', NULL, 429.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbukushu', [Definition] = NULL, [SortOrder] = 429.30 WHERE [Code] = 'mhw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mna', 'Mbula', NULL, 429.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbula', [Definition] = NULL, [SortOrder] = 429.40 WHERE [Code] = 'mna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbu', 'Mbula-Bwazza', NULL, 429.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbula-Bwazza', [Definition] = NULL, [SortOrder] = 429.50 WHERE [Code] = 'mbu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlb', 'Mbule', NULL, 429.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbule', [Definition] = NULL, [SortOrder] = 429.60 WHERE [Code] = 'mlb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbv', 'Mbulungish', NULL, 429.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbulungish', [Definition] = NULL, [SortOrder] = 429.70 WHERE [Code] = 'mbv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdd', 'Mbum', NULL, 429.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbum', [Definition] = NULL, [SortOrder] = 429.80 WHERE [Code] = 'mdd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mck', 'Mbunda', NULL, 429.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbunda', [Definition] = NULL, [SortOrder] = 429.90 WHERE [Code] = 'mck' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgy', 'Mbunga', NULL, 430.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbunga', [Definition] = NULL, [SortOrder] = 430.00 WHERE [Code] = 'mgy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbt', 'Mburku', NULL, 430.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mburku', [Definition] = NULL, [SortOrder] = 430.10 WHERE [Code] = 'bbt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfu', 'Mbwela', NULL, 430.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbwela', [Definition] = NULL, [SortOrder] = 430.20 WHERE [Code] = 'mfu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gun', 'Mbyá Guaraní', NULL, 430.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbyá Guaraní', [Definition] = NULL, [SortOrder] = 430.30 WHERE [Code] = 'gun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mym', 'Me''en', NULL, 430.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Me''en', [Definition] = NULL, [SortOrder] = 430.40 WHERE [Code] = 'mym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjm', 'Medebur', NULL, 430.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Medebur', [Definition] = NULL, [SortOrder] = 430.50 WHERE [Code] = 'mjm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmf', 'Medefaidrin', NULL, 430.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Medefaidrin', [Definition] = NULL, [SortOrder] = 430.60 WHERE [Code] = 'dmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mue', 'Media Lengua', NULL, 430.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Media Lengua', [Definition] = NULL, [SortOrder] = 430.70 WHERE [Code] = 'mue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xme', 'Median', NULL, 430.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Median', [Definition] = NULL, [SortOrder] = 430.80 WHERE [Code] = 'xme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mud', 'Mednyj Aleut', NULL, 430.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mednyj Aleut', [Definition] = NULL, [SortOrder] = 430.90 WHERE [Code] = 'mud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byv', 'Medumba', NULL, 431.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Medumba', [Definition] = NULL, [SortOrder] = 431.00 WHERE [Code] = 'byv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfj', 'Mefele', NULL, 431.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mefele', [Definition] = NULL, [SortOrder] = 431.10 WHERE [Code] = 'mfj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mef', 'Megam', NULL, 431.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Megam', [Definition] = NULL, [SortOrder] = 431.20 WHERE [Code] = 'mef' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruq', 'Megleno Romanian', NULL, 431.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Megleno Romanian', [Definition] = NULL, [SortOrder] = 431.30 WHERE [Code] = 'ruq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nux', 'Mehek', NULL, 431.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mehek', [Definition] = NULL, [SortOrder] = 431.40 WHERE [Code] = 'nux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmh', 'Mehináku', NULL, 431.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mehináku', [Definition] = NULL, [SortOrder] = 431.50 WHERE [Code] = 'mmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdq', 'Mehri', NULL, 431.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mehri', [Definition] = NULL, [SortOrder] = 431.60 WHERE [Code] = 'gdq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mek', 'Mekeo', NULL, 431.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mekeo', [Definition] = NULL, [SortOrder] = 431.70 WHERE [Code] = 'mek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvk', 'Mekmek', NULL, 431.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mekmek', [Definition] = NULL, [SortOrder] = 431.80 WHERE [Code] = 'mvk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msf', 'Mekwei', NULL, 431.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mekwei', [Definition] = NULL, [SortOrder] = 431.90 WHERE [Code] = 'msf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hkn', 'Mel-Khaonh', NULL, 432.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mel-Khaonh', [Definition] = NULL, [SortOrder] = 432.00 WHERE [Code] = 'hkn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxe', 'Mele-Fila', NULL, 432.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mele-Fila', [Definition] = NULL, [SortOrder] = 432.10 WHERE [Code] = 'mxe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfx', 'Melo', NULL, 432.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Melo', [Definition] = NULL, [SortOrder] = 432.20 WHERE [Code] = 'mfx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'med') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('med', 'Melpa', NULL, 432.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Melpa', [Definition] = NULL, [SortOrder] = 432.30 WHERE [Code] = 'med' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mby', 'Memoni', NULL, 432.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Memoni', [Definition] = NULL, [SortOrder] = 432.40 WHERE [Code] = 'mby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkd', 'Mendalam Kayan', NULL, 432.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mendalam Kayan', [Definition] = NULL, [SortOrder] = 432.50 WHERE [Code] = 'xkd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfd', 'Mendankwe-Nkwen', NULL, 432.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mendankwe-Nkwen', [Definition] = NULL, [SortOrder] = 432.60 WHERE [Code] = 'mfd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sim', 'Mende (Papua New Guinea)', NULL, 432.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mende (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 432.70 WHERE [Code] = 'sim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'men') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('men', 'Mende (Sierra Leone)', NULL, 432.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mende (Sierra Leone)', [Definition] = NULL, [SortOrder] = 432.80 WHERE [Code] = 'men' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmg', 'Mengaka', NULL, 432.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mengaka', [Definition] = NULL, [SortOrder] = 432.90 WHERE [Code] = 'xmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mee', 'Mengen', NULL, 433.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mengen', [Definition] = NULL, [SortOrder] = 433.00 WHERE [Code] = 'mee' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mct', 'Mengisa', NULL, 433.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mengisa', [Definition] = NULL, [SortOrder] = 433.10 WHERE [Code] = 'mct' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnr', 'Ménik', NULL, 433.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ménik', [Definition] = NULL, [SortOrder] = 433.20 WHERE [Code] = 'tnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mea', 'Menka', NULL, 433.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Menka', [Definition] = NULL, [SortOrder] = 433.30 WHERE [Code] = 'mea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mez', 'Menominee', NULL, 433.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Menominee', [Definition] = NULL, [SortOrder] = 433.40 WHERE [Code] = 'mez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwv', 'Mentawai', NULL, 433.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mentawai', [Definition] = NULL, [SortOrder] = 433.50 WHERE [Code] = 'mwv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcr', 'Menya', NULL, 433.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Menya', [Definition] = NULL, [SortOrder] = 433.60 WHERE [Code] = 'mcr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvx', 'Meoswar', NULL, 433.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meoswar', [Definition] = NULL, [SortOrder] = 433.70 WHERE [Code] = 'mvx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnu', 'Mer', NULL, 433.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mer', [Definition] = NULL, [SortOrder] = 433.80 WHERE [Code] = 'mnu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxm', 'Meramera', NULL, 433.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meramera', [Definition] = NULL, [SortOrder] = 433.90 WHERE [Code] = 'mxm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmb', 'Merei', NULL, 434.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Merei', [Definition] = NULL, [SortOrder] = 434.00 WHERE [Code] = 'lmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meq', 'Merey', NULL, 434.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Merey', [Definition] = NULL, [SortOrder] = 434.10 WHERE [Code] = 'meq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulk', 'Meriam Mir', NULL, 434.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meriam Mir', [Definition] = NULL, [SortOrder] = 434.20 WHERE [Code] = 'ulk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrm', 'Merlav', NULL, 434.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Merlav', [Definition] = NULL, [SortOrder] = 434.30 WHERE [Code] = 'mrm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmr', 'Meroitic', NULL, 434.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meroitic', [Definition] = NULL, [SortOrder] = 434.40 WHERE [Code] = 'xmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mer', 'Meru', NULL, 434.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meru', [Definition] = NULL, [SortOrder] = 434.50 WHERE [Code] = 'mer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wry', 'Merwari', NULL, 434.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Merwari', [Definition] = NULL, [SortOrder] = 434.60 WHERE [Code] = 'wry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iyo', 'Mesaka', NULL, 434.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesaka', [Definition] = NULL, [SortOrder] = 434.70 WHERE [Code] = 'iyo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apm', 'Mescalero-Chiricahua Apache', NULL, 434.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mescalero-Chiricahua Apache', [Definition] = NULL, [SortOrder] = 434.80 WHERE [Code] = 'apm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mci', 'Mese', NULL, 434.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mese', [Definition] = NULL, [SortOrder] = 434.90 WHERE [Code] = 'mci' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sac', 'Meskwaki', NULL, 435.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meskwaki', [Definition] = NULL, [SortOrder] = 435.00 WHERE [Code] = 'sac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zim', 'Mesme', NULL, 435.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesme', [Definition] = NULL, [SortOrder] = 435.10 WHERE [Code] = 'zim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mys', 'Mesmes', NULL, 435.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesmes', [Definition] = NULL, [SortOrder] = 435.20 WHERE [Code] = 'mys' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acm', 'Mesopotamian Arabic', NULL, 435.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesopotamian Arabic', [Definition] = NULL, [SortOrder] = 435.30 WHERE [Code] = 'acm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvz', 'Mesqan', NULL, 435.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesqan', [Definition] = NULL, [SortOrder] = 435.40 WHERE [Code] = 'mvz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cms', 'Messapic', NULL, 435.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Messapic', [Definition] = NULL, [SortOrder] = 435.50 WHERE [Code] = 'cms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgo', 'Meta''', NULL, 435.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meta''', [Definition] = NULL, [SortOrder] = 435.60 WHERE [Code] = 'mgo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxv', 'Metlatónoc Mixtec', NULL, 435.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Metlatónoc Mixtec', [Definition] = NULL, [SortOrder] = 435.70 WHERE [Code] = 'mxv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtr', 'Mewari', NULL, 435.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mewari', [Definition] = NULL, [SortOrder] = 435.80 WHERE [Code] = 'mtr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wtm', 'Mewati', NULL, 435.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mewati', [Definition] = NULL, [SortOrder] = 435.90 WHERE [Code] = 'wtm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfs', 'Mexican Sign Language', NULL, 436.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mexican Sign Language', [Definition] = NULL, [SortOrder] = 436.00 WHERE [Code] = 'mfs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mej', 'Meyah', NULL, 436.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meyah', [Definition] = NULL, [SortOrder] = 436.10 WHERE [Code] = 'mej' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbe', 'Mezontla Popoloca', NULL, 436.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mezontla Popoloca', [Definition] = NULL, [SortOrder] = 436.20 WHERE [Code] = 'pbe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ote') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ote', 'Mezquital Otomi', NULL, 436.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mezquital Otomi', [Definition] = NULL, [SortOrder] = 436.30 WHERE [Code] = 'ote' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmf', 'Mfinu', NULL, 436.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mfinu', [Definition] = NULL, [SortOrder] = 436.40 WHERE [Code] = 'zmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfu', 'Mfumte', NULL, 436.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mfumte', [Definition] = NULL, [SortOrder] = 436.50 WHERE [Code] = 'nfu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmz', 'Mgbolizhia', NULL, 436.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mgbolizhia', [Definition] = NULL, [SortOrder] = 436.60 WHERE [Code] = 'gmz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mic', 'Mi''kmaq', NULL, 436.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mi''kmaq', [Definition] = NULL, [SortOrder] = 436.70 WHERE [Code] = 'mic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zam', 'Miahuatlán Zapotec', NULL, 436.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miahuatlán Zapotec', [Definition] = NULL, [SortOrder] = 436.80 WHERE [Code] = 'zam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mia', 'Miami', NULL, 436.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miami', [Definition] = NULL, [SortOrder] = 436.90 WHERE [Code] = 'mia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpt', 'Mian', NULL, 437.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mian', [Definition] = NULL, [SortOrder] = 437.00 WHERE [Code] = 'mpt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pla', 'Miani', NULL, 437.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miani', [Definition] = NULL, [SortOrder] = 437.10 WHERE [Code] = 'pla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crg', 'Michif', NULL, 437.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Michif', [Definition] = NULL, [SortOrder] = 437.20 WHERE [Code] = 'crg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmm', 'Michigamea', NULL, 437.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Michigamea', [Definition] = NULL, [SortOrder] = 437.30 WHERE [Code] = 'cmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmc', 'Michoacán Mazahua', NULL, 437.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Michoacán Mazahua', [Definition] = NULL, [SortOrder] = 437.40 WHERE [Code] = 'mmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncl', 'Michoacán Nahuatl', NULL, 437.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Michoacán Nahuatl', [Definition] = NULL, [SortOrder] = 437.50 WHERE [Code] = 'ncl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnt', 'Mid Grand Valley Dani', NULL, 437.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mid Grand Valley Dani', [Definition] = NULL, [SortOrder] = 437.60 WHERE [Code] = 'dnt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjo', 'Mid-Southern Banda', NULL, 437.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mid-Southern Banda', [Definition] = NULL, [SortOrder] = 437.70 WHERE [Code] = 'bjo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axm', 'Middle Armenian', NULL, 437.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Armenian', [Definition] = NULL, [SortOrder] = 437.80 WHERE [Code] = 'axm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbm', 'Middle Breton', NULL, 437.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Breton', [Definition] = NULL, [SortOrder] = 437.90 WHERE [Code] = 'xbm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnx', 'Middle Cornish', NULL, 438.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Cornish', [Definition] = NULL, [SortOrder] = 438.00 WHERE [Code] = 'cnx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dum', 'Middle Dutch (ca. 1050-1350)', NULL, 438.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Dutch (ca. 1050-1350)', [Definition] = NULL, [SortOrder] = 438.10 WHERE [Code] = 'dum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enm', 'Middle English (1100-1500)', NULL, 438.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle English (1100-1500)', [Definition] = NULL, [SortOrder] = 438.20 WHERE [Code] = 'enm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frm', 'Middle French (ca. 1400-1600)', NULL, 438.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle French (ca. 1400-1600)', [Definition] = NULL, [SortOrder] = 438.30 WHERE [Code] = 'frm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmh', 'Middle High German (ca. 1050-1500)', NULL, 438.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle High German (ca. 1050-1500)', [Definition] = NULL, [SortOrder] = 438.40 WHERE [Code] = 'gmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'htx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('htx', 'Middle Hittite', NULL, 438.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Hittite', [Definition] = NULL, [SortOrder] = 438.50 WHERE [Code] = 'htx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mga', 'Middle Irish (900-1200)', NULL, 438.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Irish (900-1200)', [Definition] = NULL, [SortOrder] = 438.60 WHERE [Code] = 'mga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhm', 'Middle Khmer (1400 to 1850 CE)', NULL, 438.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Khmer (1400 to 1850 CE)', [Definition] = NULL, [SortOrder] = 438.70 WHERE [Code] = 'xhm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okm', 'Middle Korean (10th-16th cent.)', NULL, 438.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Korean (10th-16th cent.)', [Definition] = NULL, [SortOrder] = 438.80 WHERE [Code] = 'okm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gml', 'Middle Low German', NULL, 438.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Low German', [Definition] = NULL, [SortOrder] = 438.90 WHERE [Code] = 'gml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xng', 'Middle Mongolian', NULL, 439.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Mongolian', [Definition] = NULL, [SortOrder] = 439.00 WHERE [Code] = 'xng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwx', 'Middle Newar', NULL, 439.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Newar', [Definition] = NULL, [SortOrder] = 439.10 WHERE [Code] = 'nwx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpl', 'Middle Watut', NULL, 439.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Watut', [Definition] = NULL, [SortOrder] = 439.20 WHERE [Code] = 'mpl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlm', 'Middle Welsh', NULL, 439.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Welsh', [Definition] = NULL, [SortOrder] = 439.30 WHERE [Code] = 'wlm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mei', 'Midob', NULL, 439.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Midob', [Definition] = NULL, [SortOrder] = 439.40 WHERE [Code] = 'mei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmy', 'Migaama', NULL, 439.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Migaama', [Definition] = NULL, [SortOrder] = 439.50 WHERE [Code] = 'mmy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpp', 'Migabac', NULL, 439.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Migabac', [Definition] = NULL, [SortOrder] = 439.60 WHERE [Code] = 'mpp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klm', 'Migum', NULL, 439.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Migum', [Definition] = NULL, [SortOrder] = 439.70 WHERE [Code] = 'klm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxj', 'Miju-Mishmi', NULL, 439.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miju-Mishmi', [Definition] = NULL, [SortOrder] = 439.80 WHERE [Code] = 'mxj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mik', 'Mikasuki', NULL, 439.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mikasuki', [Definition] = NULL, [SortOrder] = 439.90 WHERE [Code] = 'mik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymh', 'Mili', NULL, 440.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mili', [Definition] = NULL, [SortOrder] = 440.00 WHERE [Code] = 'ymh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlj', 'Miltu', NULL, 440.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miltu', [Definition] = NULL, [SortOrder] = 440.10 WHERE [Code] = 'mlj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iml', 'Miluk', NULL, 440.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miluk', [Definition] = NULL, [SortOrder] = 440.20 WHERE [Code] = 'iml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imy', 'Milyan', NULL, 440.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Milyan', [Definition] = NULL, [SortOrder] = 440.30 WHERE [Code] = 'imy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnp', 'Min Bei Chinese', NULL, 440.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Min Bei Chinese', [Definition] = NULL, [SortOrder] = 440.40 WHERE [Code] = 'mnp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdo', 'Min Dong Chinese', NULL, 440.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Min Dong Chinese', [Definition] = NULL, [SortOrder] = 440.50 WHERE [Code] = 'cdo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nan', 'Min Nan Chinese', NULL, 440.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Min Nan Chinese', [Definition] = NULL, [SortOrder] = 440.60 WHERE [Code] = 'nan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czo', 'Min Zhong Chinese', NULL, 440.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Min Zhong Chinese', [Definition] = NULL, [SortOrder] = 440.70 WHERE [Code] = 'czo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hna', 'Mina (Cameroon)', NULL, 440.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mina (Cameroon)', [Definition] = NULL, [SortOrder] = 440.80 WHERE [Code] = 'hna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inm', 'Minaean', NULL, 440.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minaean', [Definition] = NULL, [SortOrder] = 440.90 WHERE [Code] = 'inm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrg', 'Minang', NULL, 441.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minang', [Definition] = NULL, [SortOrder] = 441.00 WHERE [Code] = 'xrg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'min') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('min', 'Minangkabau', NULL, 441.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minangkabau', [Definition] = NULL, [SortOrder] = 441.10 WHERE [Code] = 'min' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcv', 'Minanibai', NULL, 441.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minanibai', [Definition] = NULL, [SortOrder] = 441.20 WHERE [Code] = 'mcv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvn', 'Minaveha', NULL, 441.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minaveha', [Definition] = NULL, [SortOrder] = 441.30 WHERE [Code] = 'mvn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drc', 'Minderico', NULL, 441.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minderico', [Definition] = NULL, [SortOrder] = 441.40 WHERE [Code] = 'drc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpn', 'Mindiri', NULL, 441.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mindiri', [Definition] = NULL, [SortOrder] = 441.50 WHERE [Code] = 'mpn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mko', 'Mingang Doso', NULL, 441.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mingang Doso', [Definition] = NULL, [SortOrder] = 441.60 WHERE [Code] = 'mko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmf', 'Mingrelian', NULL, 441.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mingrelian', [Definition] = NULL, [SortOrder] = 441.70 WHERE [Code] = 'xmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hto', 'Minica Huitoto', NULL, 441.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minica Huitoto', [Definition] = NULL, [SortOrder] = 441.80 WHERE [Code] = 'hto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wii', 'Minidien', NULL, 441.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minidien', [Definition] = NULL, [SortOrder] = 441.90 WHERE [Code] = 'wii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xjb', 'Minjungbal', NULL, 442.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minjungbal', [Definition] = NULL, [SortOrder] = 442.00 WHERE [Code] = 'xjb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxm', 'Minkin', NULL, 442.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minkin', [Definition] = NULL, [SortOrder] = 442.10 WHERE [Code] = 'xxm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omn', 'Minoan', NULL, 442.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minoan', [Definition] = NULL, [SortOrder] = 442.20 WHERE [Code] = 'omn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqq', 'Minokok', NULL, 442.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minokok', [Definition] = NULL, [SortOrder] = 442.30 WHERE [Code] = 'mqq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnq', 'Minriq', NULL, 442.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minriq', [Definition] = NULL, [SortOrder] = 442.40 WHERE [Code] = 'mnq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzt', 'Mintil', NULL, 442.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mintil', [Definition] = NULL, [SortOrder] = 442.50 WHERE [Code] = 'mzt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgm', 'Minz Zhuang', NULL, 442.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minz Zhuang', [Definition] = NULL, [SortOrder] = 442.60 WHERE [Code] = 'zgm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yiq', 'Miqie', NULL, 442.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miqie', [Definition] = NULL, [SortOrder] = 442.70 WHERE [Code] = 'yiq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwl', 'Mirandese', NULL, 442.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mirandese', [Definition] = NULL, [SortOrder] = 442.80 WHERE [Code] = 'mwl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rbl', 'Miraya Bikol', NULL, 442.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miraya Bikol', [Definition] = NULL, [SortOrder] = 442.90 WHERE [Code] = 'rbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zrg', 'Mirgan', NULL, 443.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mirgan', [Definition] = NULL, [SortOrder] = 443.00 WHERE [Code] = 'zrg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmv', 'Miriti', NULL, 443.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miriti', [Definition] = NULL, [SortOrder] = 443.10 WHERE [Code] = 'mmv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mep', 'Miriwoong', NULL, 443.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miriwoong', [Definition] = NULL, [SortOrder] = 443.20 WHERE [Code] = 'mep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsm', 'Miriwoong Sign Language', NULL, 443.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miriwoong Sign Language', [Definition] = NULL, [SortOrder] = 443.30 WHERE [Code] = 'rsm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmr', 'Mirning', NULL, 443.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mirning', [Definition] = NULL, [SortOrder] = 443.40 WHERE [Code] = 'gmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjs', 'Miship', NULL, 443.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miship', [Definition] = NULL, [SortOrder] = 443.50 WHERE [Code] = 'mjs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpx', 'Misima-Panaeati', NULL, 443.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Misima-Panaeati', [Definition] = NULL, [SortOrder] = 443.60 WHERE [Code] = 'mpx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrg', 'Mising', NULL, 443.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mising', [Definition] = NULL, [SortOrder] = 443.70 WHERE [Code] = 'mrg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miq', 'Mískito', NULL, 443.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mískito', [Definition] = NULL, [SortOrder] = 443.80 WHERE [Code] = 'miq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaw', 'Mitla Zapotec', NULL, 443.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mitla Zapotec', [Definition] = NULL, [SortOrder] = 443.90 WHERE [Code] = 'zaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmm', 'Mitlatongo Mixtec', NULL, 444.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mitlatongo Mixtec', [Definition] = NULL, [SortOrder] = 444.00 WHERE [Code] = 'vmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwu', 'Mittu', NULL, 444.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mittu', [Definition] = NULL, [SortOrder] = 444.10 WHERE [Code] = 'mwu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmq', 'Mituku', NULL, 444.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mituku', [Definition] = NULL, [SortOrder] = 444.20 WHERE [Code] = 'zmq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpo', 'Miu', NULL, 444.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miu', [Definition] = NULL, [SortOrder] = 444.30 WHERE [Code] = 'mpo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmi', 'Miwa', NULL, 444.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miwa', [Definition] = NULL, [SortOrder] = 444.40 WHERE [Code] = 'vmi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gac', 'Mixed Great Andamanese', NULL, 444.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mixed Great Andamanese', [Definition] = NULL, [SortOrder] = 444.50 WHERE [Code] = 'gac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mix', 'Mixtepec Mixtec', NULL, 444.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mixtepec Mixtec', [Definition] = NULL, [SortOrder] = 444.60 WHERE [Code] = 'mix' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpm', 'Mixtepec Zapotec', NULL, 444.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 444.70 WHERE [Code] = 'zpm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkf', 'Miya', NULL, 444.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miya', [Definition] = NULL, [SortOrder] = 444.80 WHERE [Code] = 'mkf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvi', 'Miyako', NULL, 444.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miyako', [Definition] = NULL, [SortOrder] = 444.90 WHERE [Code] = 'mvi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ehs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ehs', 'Miyakubo Sign Language', NULL, 445.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miyakubo Sign Language', [Definition] = NULL, [SortOrder] = 445.00 WHERE [Code] = 'ehs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soy', 'Miyobe', NULL, 445.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miyobe', [Definition] = NULL, [SortOrder] = 445.10 WHERE [Code] = 'soy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mra', 'Mlabri', NULL, 445.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mlabri', [Definition] = NULL, [SortOrder] = 445.20 WHERE [Code] = 'mra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhs', 'Mlahsö', NULL, 445.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mlahsö', [Definition] = NULL, [SortOrder] = 445.30 WHERE [Code] = 'lhs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kja', 'Mlap', NULL, 445.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mlap', [Definition] = NULL, [SortOrder] = 445.40 WHERE [Code] = 'kja' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlo', 'Mlomp', NULL, 445.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mlomp', [Definition] = NULL, [SortOrder] = 445.50 WHERE [Code] = 'mlo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmu', 'Mmaala', NULL, 445.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mmaala', [Definition] = NULL, [SortOrder] = 445.60 WHERE [Code] = 'mmu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfm', 'Mmen', NULL, 445.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mmen', [Definition] = NULL, [SortOrder] = 445.70 WHERE [Code] = 'bfm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbn', 'Mo''da', NULL, 445.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mo''da', [Definition] = NULL, [SortOrder] = 445.80 WHERE [Code] = 'gbn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obm', 'Moabite', NULL, 445.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moabite', [Definition] = NULL, [SortOrder] = 445.90 WHERE [Code] = 'obm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfq', 'Moba', NULL, 446.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moba', [Definition] = NULL, [SortOrder] = 446.00 WHERE [Code] = 'mfq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mod', 'Mobilian', NULL, 446.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mobilian', [Definition] = NULL, [SortOrder] = 446.10 WHERE [Code] = 'mod' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahm', 'Mobumrin Aizi', NULL, 446.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mobumrin Aizi', [Definition] = NULL, [SortOrder] = 446.20 WHERE [Code] = 'ahm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jkm', 'Mobwa Karen', NULL, 446.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mobwa Karen', [Definition] = NULL, [SortOrder] = 446.30 WHERE [Code] = 'jkm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhn', 'Mócheno', NULL, 446.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mócheno', [Definition] = NULL, [SortOrder] = 446.40 WHERE [Code] = 'mhn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'old') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('old', 'Mochi', NULL, 446.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mochi', [Definition] = NULL, [SortOrder] = 446.50 WHERE [Code] = 'old' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omc', 'Mochica', NULL, 446.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mochica', [Definition] = NULL, [SortOrder] = 446.60 WHERE [Code] = 'omc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhc', 'Mocho', NULL, 446.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mocho', [Definition] = NULL, [SortOrder] = 446.70 WHERE [Code] = 'mhc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moc', 'Mocoví', NULL, 446.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mocoví', [Definition] = NULL, [SortOrder] = 446.80 WHERE [Code] = 'moc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxd', 'Modang', NULL, 446.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Modang', [Definition] = NULL, [SortOrder] = 446.90 WHERE [Code] = 'mxd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ell') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ell', 'Modern Greek (1453-)', NULL, 447.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Modern Greek (1453-)', [Definition] = NULL, [SortOrder] = 447.00 WHERE [Code] = 'ell' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqo', 'Modole', NULL, 447.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Modole', [Definition] = NULL, [SortOrder] = 447.10 WHERE [Code] = 'mqo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvq', 'Moere', NULL, 447.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moere', [Definition] = NULL, [SortOrder] = 447.20 WHERE [Code] = 'mvq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mif', 'Mofu-Gudur', NULL, 447.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mofu-Gudur', [Definition] = NULL, [SortOrder] = 447.30 WHERE [Code] = 'mif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhj', 'Mogholi', NULL, 447.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mogholi', [Definition] = NULL, [SortOrder] = 447.40 WHERE [Code] = 'mhj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfg', 'Mogofin', NULL, 447.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mogofin', [Definition] = NULL, [SortOrder] = 447.50 WHERE [Code] = 'mfg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mou', 'Mogum', NULL, 447.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mogum', [Definition] = NULL, [SortOrder] = 447.60 WHERE [Code] = 'mou' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mov', 'Mohave', NULL, 447.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mohave', [Definition] = NULL, [SortOrder] = 447.70 WHERE [Code] = 'mov' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moh', 'Mohawk', NULL, 447.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mohawk', [Definition] = NULL, [SortOrder] = 447.80 WHERE [Code] = 'moh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpq', 'Mohegan-Pequot', NULL, 447.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mohegan-Pequot', [Definition] = NULL, [SortOrder] = 447.90 WHERE [Code] = 'xpq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mow', 'Moi (Congo)', NULL, 448.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moi (Congo)', [Definition] = NULL, [SortOrder] = 448.00 WHERE [Code] = 'mow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxn', 'Moi (Indonesia)', NULL, 448.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moi (Indonesia)', [Definition] = NULL, [SortOrder] = 448.10 WHERE [Code] = 'mxn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkp', 'Moikodi', NULL, 448.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moikodi', [Definition] = NULL, [SortOrder] = 448.20 WHERE [Code] = 'mkp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwz', 'Moingi', NULL, 448.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moingi', [Definition] = NULL, [SortOrder] = 448.30 WHERE [Code] = 'mwz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymi', 'Moji', NULL, 448.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moji', [Definition] = NULL, [SortOrder] = 448.40 WHERE [Code] = 'ymi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqt', 'Mok', NULL, 448.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mok', [Definition] = NULL, [SortOrder] = 448.50 WHERE [Code] = 'mqt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwt', 'Moken', NULL, 448.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moken', [Definition] = NULL, [SortOrder] = 448.60 WHERE [Code] = 'mwt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mft', 'Mokerang', NULL, 448.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mokerang', [Definition] = NULL, [SortOrder] = 448.70 WHERE [Code] = 'mft' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkj', 'Mokilese', NULL, 448.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mokilese', [Definition] = NULL, [SortOrder] = 448.80 WHERE [Code] = 'mkj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkm', 'Moklen', NULL, 448.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moklen', [Definition] = NULL, [SortOrder] = 448.90 WHERE [Code] = 'mkm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkl', 'Mokole', NULL, 449.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mokole', [Definition] = NULL, [SortOrder] = 449.00 WHERE [Code] = 'mkl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bri', 'Mokpwe', NULL, 449.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mokpwe', [Definition] = NULL, [SortOrder] = 449.10 WHERE [Code] = 'bri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vms', 'Moksela', NULL, 449.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moksela', [Definition] = NULL, [SortOrder] = 449.20 WHERE [Code] = 'vms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdf', 'Moksha', NULL, 449.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moksha', [Definition] = NULL, [SortOrder] = 449.30 WHERE [Code] = 'mdf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbe', 'Molale', NULL, 449.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molale', [Definition] = NULL, [SortOrder] = 449.40 WHERE [Code] = 'mbe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwm', 'Molbog', NULL, 449.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molbog', [Definition] = NULL, [SortOrder] = 449.50 WHERE [Code] = 'pwm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vsi', 'Moldova Sign Language', NULL, 449.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moldova Sign Language', [Definition] = NULL, [SortOrder] = 449.60 WHERE [Code] = 'vsi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxc', 'Molengue', NULL, 449.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molengue', [Definition] = NULL, [SortOrder] = 449.70 WHERE [Code] = 'bxc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mox', 'Molima', NULL, 449.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molima', [Definition] = NULL, [SortOrder] = 449.80 WHERE [Code] = 'mox' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aun', 'Molmo One', NULL, 449.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molmo One', [Definition] = NULL, [SortOrder] = 449.90 WHERE [Code] = 'aun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmo', 'Molo', NULL, 450.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molo', [Definition] = NULL, [SortOrder] = 450.00 WHERE [Code] = 'zmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msl', 'Molof', NULL, 450.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molof', [Definition] = NULL, [SortOrder] = 450.10 WHERE [Code] = 'msl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlw', 'Moloko', NULL, 450.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moloko', [Definition] = NULL, [SortOrder] = 450.20 WHERE [Code] = 'mlw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ver') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ver', 'Mom Jango', NULL, 450.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mom Jango', [Definition] = NULL, [SortOrder] = 450.30 WHERE [Code] = 'ver' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myl', 'Moma', NULL, 450.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moma', [Definition] = NULL, [SortOrder] = 450.40 WHERE [Code] = 'myl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msz', 'Momare', NULL, 450.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Momare', [Definition] = NULL, [SortOrder] = 450.50 WHERE [Code] = 'msz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmb', 'Mombo Dogon', NULL, 450.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mombo Dogon', [Definition] = NULL, [SortOrder] = 450.60 WHERE [Code] = 'dmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mso', 'Mombum', NULL, 450.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mombum', [Definition] = NULL, [SortOrder] = 450.70 WHERE [Code] = 'mso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmb', 'Momina', NULL, 450.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Momina', [Definition] = NULL, [SortOrder] = 450.80 WHERE [Code] = 'mmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqf', 'Momuna', NULL, 450.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Momuna', [Definition] = NULL, [SortOrder] = 450.90 WHERE [Code] = 'mqf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnw', 'Mon', NULL, 451.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mon', [Definition] = NULL, [SortOrder] = 451.00 WHERE [Code] = 'mnw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzg', 'Monastic Sign Language', NULL, 451.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monastic Sign Language', [Definition] = NULL, [SortOrder] = 451.10 WHERE [Code] = 'mzg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnd', 'Mondé', NULL, 451.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mondé', [Definition] = NULL, [SortOrder] = 451.20 WHERE [Code] = 'mnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npn', 'Mondropolon', NULL, 451.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mondropolon', [Definition] = NULL, [SortOrder] = 451.30 WHERE [Code] = 'npn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lol', 'Mongo', NULL, 451.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongo', [Definition] = NULL, [SortOrder] = 451.40 WHERE [Code] = 'lol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgt', 'Mongol', NULL, 451.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongol', [Definition] = NULL, [SortOrder] = 451.50 WHERE [Code] = 'mgt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxm', 'Mongolia Buriat', NULL, 451.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongolia Buriat', [Definition] = NULL, [SortOrder] = 451.60 WHERE [Code] = 'bxm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mon', 'Mongolian', NULL, 451.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongolian', [Definition] = NULL, [SortOrder] = 451.70 WHERE [Code] = 'mon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msr', 'Mongolian Sign Language', NULL, 451.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongolian Sign Language', [Definition] = NULL, [SortOrder] = 451.80 WHERE [Code] = 'msr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mog', 'Mongondow', NULL, 451.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongondow', [Definition] = NULL, [SortOrder] = 451.90 WHERE [Code] = 'mog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnz', 'Moni', NULL, 452.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moni', [Definition] = NULL, [SortOrder] = 452.00 WHERE [Code] = 'mnz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mru', 'Mono (Cameroon)', NULL, 452.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mono (Cameroon)', [Definition] = NULL, [SortOrder] = 452.10 WHERE [Code] = 'mru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnh', 'Mono (Democratic Republic of Congo)', NULL, 452.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mono (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 452.20 WHERE [Code] = 'mnh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mte', 'Mono (Solomon Islands)', NULL, 452.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mono (Solomon Islands)', [Definition] = NULL, [SortOrder] = 452.30 WHERE [Code] = 'mte' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnr', 'Mono (USA)', NULL, 452.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mono (USA)', [Definition] = NULL, [SortOrder] = 452.40 WHERE [Code] = 'mnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moo', 'Monom', NULL, 452.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monom', [Definition] = NULL, [SortOrder] = 452.50 WHERE [Code] = 'moo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmh', 'Monsang Naga', NULL, 452.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monsang Naga', [Definition] = NULL, [SortOrder] = 452.60 WHERE [Code] = 'nmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnr', 'Montenegrin', NULL, 452.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Montenegrin', [Definition] = NULL, [SortOrder] = 452.70 WHERE [Code] = 'cnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtl', 'Montol', NULL, 452.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Montol', [Definition] = NULL, [SortOrder] = 452.80 WHERE [Code] = 'mtl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxk', 'Monumbo', NULL, 452.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monumbo', [Definition] = NULL, [SortOrder] = 452.90 WHERE [Code] = 'mxk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moj', 'Monzombo', NULL, 453.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monzombo', [Definition] = NULL, [SortOrder] = 453.00 WHERE [Code] = 'moj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwg', 'Moo', NULL, 453.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moo', [Definition] = NULL, [SortOrder] = 453.10 WHERE [Code] = 'gwg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crm', 'Moose Cree', NULL, 453.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moose Cree', [Definition] = NULL, [SortOrder] = 453.20 WHERE [Code] = 'crm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mop', 'Mopán Maya', NULL, 453.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mopán Maya', [Definition] = NULL, [SortOrder] = 453.30 WHERE [Code] = 'mop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moq', 'Mor (Bomberai Peninsula)', NULL, 453.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mor (Bomberai Peninsula)', [Definition] = NULL, [SortOrder] = 453.40 WHERE [Code] = 'moq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhz', 'Mor (Mor Islands)', NULL, 453.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mor (Mor Islands)', [Definition] = NULL, [SortOrder] = 453.50 WHERE [Code] = 'mhz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msg', 'Moraid', NULL, 453.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moraid', [Definition] = NULL, [SortOrder] = 453.60 WHERE [Code] = 'msg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mze', 'Morawa', NULL, 453.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morawa', [Definition] = NULL, [SortOrder] = 453.70 WHERE [Code] = 'mze' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhm', 'Morelos Nahuatl', NULL, 453.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morelos Nahuatl', [Definition] = NULL, [SortOrder] = 453.80 WHERE [Code] = 'nhm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmo', 'Morerebi', NULL, 453.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morerebi', [Definition] = NULL, [SortOrder] = 453.90 WHERE [Code] = 'xmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msx', 'Moresada', NULL, 454.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moresada', [Definition] = NULL, [SortOrder] = 454.00 WHERE [Code] = 'msx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzq', 'Mori Atas', NULL, 454.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mori Atas', [Definition] = NULL, [SortOrder] = 454.10 WHERE [Code] = 'mzq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmz', 'Mori Bawah', NULL, 454.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mori Bawah', [Definition] = NULL, [SortOrder] = 454.20 WHERE [Code] = 'xmz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdb', 'Morigi', NULL, 454.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morigi', [Definition] = NULL, [SortOrder] = 454.30 WHERE [Code] = 'mdb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfe', 'Morisyen', NULL, 454.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morisyen', [Definition] = NULL, [SortOrder] = 454.40 WHERE [Code] = 'mfe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mor', 'Moro', NULL, 454.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moro', [Definition] = NULL, [SortOrder] = 454.50 WHERE [Code] = 'mor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ary') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ary', 'Moroccan Arabic', NULL, 454.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moroccan Arabic', [Definition] = NULL, [SortOrder] = 454.60 WHERE [Code] = 'ary' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xms', 'Moroccan Sign Language', NULL, 454.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moroccan Sign Language', [Definition] = NULL, [SortOrder] = 454.70 WHERE [Code] = 'xms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgc', 'Morokodo', NULL, 454.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morokodo', [Definition] = NULL, [SortOrder] = 454.80 WHERE [Code] = 'mgc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdo', 'Morom', NULL, 454.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morom', [Definition] = NULL, [SortOrder] = 454.90 WHERE [Code] = 'bdo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqn', 'Moronene', NULL, 455.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moronene', [Definition] = NULL, [SortOrder] = 455.00 WHERE [Code] = 'mqn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mok', 'Morori', NULL, 455.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morori', [Definition] = NULL, [SortOrder] = 455.10 WHERE [Code] = 'mok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrp', 'Morouas', NULL, 455.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morouas', [Definition] = NULL, [SortOrder] = 455.20 WHERE [Code] = 'mrp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umg', 'Morrobalama', NULL, 455.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morrobalama', [Definition] = NULL, [SortOrder] = 455.30 WHERE [Code] = 'umg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrl', 'Mortlockese', NULL, 455.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mortlockese', [Definition] = NULL, [SortOrder] = 455.40 WHERE [Code] = 'mrl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgd', 'Moru', NULL, 455.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moru', [Definition] = NULL, [SortOrder] = 455.50 WHERE [Code] = 'mgd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqv', 'Mosimo', NULL, 455.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mosimo', [Definition] = NULL, [SortOrder] = 455.60 WHERE [Code] = 'mqv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtj', 'Moskona', NULL, 455.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moskona', [Definition] = NULL, [SortOrder] = 455.70 WHERE [Code] = 'mtj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mos', 'Mossi', NULL, 455.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mossi', [Definition] = NULL, [SortOrder] = 455.80 WHERE [Code] = 'mos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtt', 'Mota', NULL, 455.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mota', [Definition] = NULL, [SortOrder] = 455.90 WHERE [Code] = 'mtt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlv', 'Motlav', NULL, 456.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Motlav', [Definition] = NULL, [SortOrder] = 456.00 WHERE [Code] = 'mlv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meu', 'Motu', NULL, 456.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Motu', [Definition] = NULL, [SortOrder] = 456.10 WHERE [Code] = 'meu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwh', 'Mouk-Aria', NULL, 456.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mouk-Aria', [Definition] = NULL, [SortOrder] = 456.20 WHERE [Code] = 'mwh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cty', 'Moundadan Chetty', NULL, 456.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moundadan Chetty', [Definition] = NULL, [SortOrder] = 456.30 WHERE [Code] = 'cty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpx', 'Mountain Koiali', NULL, 456.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mountain Koiali', [Definition] = NULL, [SortOrder] = 456.40 WHERE [Code] = 'kpx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmw', 'Mouwase', NULL, 456.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mouwase', [Definition] = NULL, [SortOrder] = 456.50 WHERE [Code] = 'jmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzp', 'Movima', NULL, 456.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Movima', [Definition] = NULL, [SortOrder] = 456.60 WHERE [Code] = 'mzp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ity') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ity', 'Moyadan Itneg', NULL, 456.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moyadan Itneg', [Definition] = NULL, [SortOrder] = 456.70 WHERE [Code] = 'ity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmo', 'Moyon Naga', NULL, 456.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moyon Naga', [Definition] = NULL, [SortOrder] = 456.80 WHERE [Code] = 'nmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzy', 'Mozambican Sign Language', NULL, 456.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mozambican Sign Language', [Definition] = NULL, [SortOrder] = 456.90 WHERE [Code] = 'mzy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxi', 'Mozarabic', NULL, 457.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mozarabic', [Definition] = NULL, [SortOrder] = 457.00 WHERE [Code] = 'mxi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpi', 'Mpade', NULL, 457.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpade', [Definition] = NULL, [SortOrder] = 457.10 WHERE [Code] = 'mpi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpj', 'Mpalitjanh', NULL, 457.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpalitjanh', [Definition] = NULL, [SortOrder] = 457.20 WHERE [Code] = 'xpj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpz', 'Mpi', NULL, 457.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpi', [Definition] = NULL, [SortOrder] = 457.30 WHERE [Code] = 'mpz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcx', 'Mpiemo', NULL, 457.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpiemo', [Definition] = NULL, [SortOrder] = 457.40 WHERE [Code] = 'mcx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnd', 'Mpinda', NULL, 457.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpinda', [Definition] = NULL, [SortOrder] = 457.50 WHERE [Code] = 'pnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpa', 'Mpoto', NULL, 457.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpoto', [Definition] = NULL, [SortOrder] = 457.60 WHERE [Code] = 'mpa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvt', 'Mpotovoro', NULL, 457.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpotovoro', [Definition] = NULL, [SortOrder] = 457.70 WHERE [Code] = 'mvt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgg', 'Mpumpong', NULL, 457.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpumpong', [Definition] = NULL, [SortOrder] = 457.80 WHERE [Code] = 'mgg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmp', 'Mpuono', NULL, 457.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpuono', [Definition] = NULL, [SortOrder] = 457.90 WHERE [Code] = 'zmp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akc', 'Mpur', NULL, 458.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpur', [Definition] = NULL, [SortOrder] = 458.00 WHERE [Code] = 'akc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmr', 'Mro-Khimi Chin', NULL, 458.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mro-Khimi Chin', [Definition] = NULL, [SortOrder] = 458.10 WHERE [Code] = 'cmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mro', 'Mru', NULL, 458.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mru', [Definition] = NULL, [SortOrder] = 458.20 WHERE [Code] = 'mro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqx', 'Mser', NULL, 458.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mser', [Definition] = NULL, [SortOrder] = 458.30 WHERE [Code] = 'kqx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atl', 'Mt. Iraya Agta', NULL, 458.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mt. Iraya Agta', [Definition] = NULL, [SortOrder] = 458.40 WHERE [Code] = 'atl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agz', 'Mt. Iriga Agta', NULL, 458.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mt. Iriga Agta', [Definition] = NULL, [SortOrder] = 458.50 WHERE [Code] = 'agz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukk', 'Muak Sa-aak', NULL, 458.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muak Sa-aak', [Definition] = NULL, [SortOrder] = 458.60 WHERE [Code] = 'ukk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtd', 'Mualang', NULL, 458.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mualang', [Definition] = NULL, [SortOrder] = 458.70 WHERE [Code] = 'mtd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsx', 'Mubami', NULL, 458.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mubami', [Definition] = NULL, [SortOrder] = 458.80 WHERE [Code] = 'tsx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mub', 'Mubi', NULL, 458.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mubi', [Definition] = NULL, [SortOrder] = 458.90 WHERE [Code] = 'mub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymd', 'Muda', NULL, 459.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muda', [Definition] = NULL, [SortOrder] = 459.00 WHERE [Code] = 'ymd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmw', 'Mudburra', NULL, 459.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mudburra', [Definition] = NULL, [SortOrder] = 459.10 WHERE [Code] = 'dmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gau', 'Mudhili Gadaba', NULL, 459.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mudhili Gadaba', [Definition] = NULL, [SortOrder] = 459.20 WHERE [Code] = 'gau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmd', 'Mudu Koraga', NULL, 459.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mudu Koraga', [Definition] = NULL, [SortOrder] = 459.30 WHERE [Code] = 'vmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udg', 'Muduga', NULL, 459.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muduga', [Definition] = NULL, [SortOrder] = 459.40 WHERE [Code] = 'udg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoj', 'Mufian', NULL, 459.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mufian', [Definition] = NULL, [SortOrder] = 459.50 WHERE [Code] = 'aoj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muk', 'Mugom', NULL, 459.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mugom', [Definition] = NULL, [SortOrder] = 459.60 WHERE [Code] = 'muk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmr', 'Muinane', NULL, 459.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muinane', [Definition] = NULL, [SortOrder] = 459.70 WHERE [Code] = 'bmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmk', 'Mukha-Dora', NULL, 459.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mukha-Dora', [Definition] = NULL, [SortOrder] = 459.80 WHERE [Code] = 'mmk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moz', 'Mukulu', NULL, 459.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mukulu', [Definition] = NULL, [SortOrder] = 459.90 WHERE [Code] = 'moz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfw', 'Mulaha', NULL, 460.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mulaha', [Definition] = NULL, [SortOrder] = 460.00 WHERE [Code] = 'mfw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlm', 'Mulam', NULL, 460.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mulam', [Definition] = NULL, [SortOrder] = 460.10 WHERE [Code] = 'mlm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giu', 'Mulao', NULL, 460.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mulao', [Definition] = NULL, [SortOrder] = 460.20 WHERE [Code] = 'giu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvh', 'Mulgi', NULL, 460.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mulgi', [Definition] = NULL, [SortOrder] = 460.30 WHERE [Code] = 'mvh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpb', 'Mullu Kurumba', NULL, 460.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mullu Kurumba', [Definition] = NULL, [SortOrder] = 460.40 WHERE [Code] = 'kpb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mul', 'Multiple languages', NULL, 460.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Multiple languages', [Definition] = NULL, [SortOrder] = 460.50 WHERE [Code] = 'mul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmu', 'Muluridyi', NULL, 460.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muluridyi', [Definition] = NULL, [SortOrder] = 460.60 WHERE [Code] = 'vmu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqa', 'Mum', NULL, 460.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mum', [Definition] = NULL, [SortOrder] = 460.70 WHERE [Code] = 'kqa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzm', 'Mumuye', NULL, 460.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mumuye', [Definition] = NULL, [SortOrder] = 460.80 WHERE [Code] = 'mzm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwq', 'Mün Chin', NULL, 460.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mün Chin', [Definition] = NULL, [SortOrder] = 460.90 WHERE [Code] = 'mwq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnb', 'Muna', NULL, 461.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muna', [Definition] = NULL, [SortOrder] = 461.00 WHERE [Code] = 'mnb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unx', 'Munda', NULL, 461.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munda', [Definition] = NULL, [SortOrder] = 461.10 WHERE [Code] = 'unx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boe', 'Mundabli', NULL, 461.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundabli', [Definition] = NULL, [SortOrder] = 461.20 WHERE [Code] = 'boe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mua', 'Mundang', NULL, 461.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundang', [Definition] = NULL, [SortOrder] = 461.30 WHERE [Code] = 'mua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnf', 'Mundani', NULL, 461.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundani', [Definition] = NULL, [SortOrder] = 461.40 WHERE [Code] = 'mnf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unr', 'Mundari', NULL, 461.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundari', [Definition] = NULL, [SortOrder] = 461.50 WHERE [Code] = 'unr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmf', 'Mundat', NULL, 461.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundat', [Definition] = NULL, [SortOrder] = 461.60 WHERE [Code] = 'mmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muh', 'Mündü', NULL, 461.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mündü', [Definition] = NULL, [SortOrder] = 461.70 WHERE [Code] = 'muh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myu', 'Mundurukú', NULL, 461.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundurukú', [Definition] = NULL, [SortOrder] = 461.80 WHERE [Code] = 'myu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhk', 'Mungaka', NULL, 461.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mungaka', [Definition] = NULL, [SortOrder] = 461.90 WHERE [Code] = 'mhk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mth', 'Munggui', NULL, 462.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munggui', [Definition] = NULL, [SortOrder] = 462.00 WHERE [Code] = 'mth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpv', 'Mungkip', NULL, 462.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mungkip', [Definition] = NULL, [SortOrder] = 462.10 WHERE [Code] = 'mpv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myr', 'Muniche', NULL, 462.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muniche', [Definition] = NULL, [SortOrder] = 462.20 WHERE [Code] = 'myr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtc', 'Munit', NULL, 462.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munit', [Definition] = NULL, [SortOrder] = 462.30 WHERE [Code] = 'mtc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnj', 'Munji', NULL, 462.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munji', [Definition] = NULL, [SortOrder] = 462.40 WHERE [Code] = 'mnj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umu', 'Munsee', NULL, 462.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munsee', [Definition] = NULL, [SortOrder] = 462.50 WHERE [Code] = 'umu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtq', 'Muong', NULL, 462.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muong', [Definition] = NULL, [SortOrder] = 462.60 WHERE [Code] = 'mtq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkv', 'Mur Pano', NULL, 462.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mur Pano', [Definition] = NULL, [SortOrder] = 462.70 WHERE [Code] = 'tkv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asx', 'Muratayak', NULL, 462.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muratayak', [Definition] = NULL, [SortOrder] = 462.80 WHERE [Code] = 'asx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxr', 'Murik (Malaysia)', NULL, 462.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murik (Malaysia)', [Definition] = NULL, [SortOrder] = 462.90 WHERE [Code] = 'mxr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtf', 'Murik (Papua New Guinea)', NULL, 463.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murik (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 463.00 WHERE [Code] = 'mtf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmh', 'Murkim', NULL, 463.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murkim', [Definition] = NULL, [SortOrder] = 463.10 WHERE [Code] = 'rmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mur', 'Murle', NULL, 463.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murle', [Definition] = NULL, [SortOrder] = 463.20 WHERE [Code] = 'mur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwf', 'Murrinh-Patha', NULL, 463.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murrinh-Patha', [Definition] = NULL, [SortOrder] = 463.30 WHERE [Code] = 'mwf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muz', 'Mursi', NULL, 463.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mursi', [Definition] = NULL, [SortOrder] = 463.40 WHERE [Code] = 'muz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huu', 'Murui Huitoto', NULL, 463.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murui Huitoto', [Definition] = NULL, [SortOrder] = 463.50 WHERE [Code] = 'huu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqw', 'Murupi', NULL, 463.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murupi', [Definition] = NULL, [SortOrder] = 463.60 WHERE [Code] = 'mqw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmu', 'Muruwari', NULL, 463.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muruwari', [Definition] = NULL, [SortOrder] = 463.70 WHERE [Code] = 'zmu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmq', 'Musak', NULL, 463.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musak', [Definition] = NULL, [SortOrder] = 463.80 WHERE [Code] = 'mmq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmi', 'Musar', NULL, 463.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musar', [Definition] = NULL, [SortOrder] = 463.90 WHERE [Code] = 'mmi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smm', 'Musasa', NULL, 464.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musasa', [Definition] = NULL, [SortOrder] = 464.00 WHERE [Code] = 'smm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mse', 'Musey', NULL, 464.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musey', [Definition] = NULL, [SortOrder] = 464.10 WHERE [Code] = 'mse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mug', 'Musgu', NULL, 464.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musgu', [Definition] = NULL, [SortOrder] = 464.20 WHERE [Code] = 'mug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xma', 'Mushungulu', NULL, 464.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mushungulu', [Definition] = NULL, [SortOrder] = 464.30 WHERE [Code] = 'xma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mui', 'Musi', NULL, 464.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musi', [Definition] = NULL, [SortOrder] = 464.40 WHERE [Code] = 'mui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mje', 'Muskum', NULL, 464.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muskum', [Definition] = NULL, [SortOrder] = 464.50 WHERE [Code] = 'mje' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttt', 'Muslim Tat', NULL, 464.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muslim Tat', [Definition] = NULL, [SortOrder] = 464.60 WHERE [Code] = 'ttt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msu', 'Musom', NULL, 464.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musom', [Definition] = NULL, [SortOrder] = 464.70 WHERE [Code] = 'msu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emi', 'Mussau-Emira', NULL, 464.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mussau-Emira', [Definition] = NULL, [SortOrder] = 464.80 WHERE [Code] = 'emi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muv', 'Muthuvan', NULL, 464.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muthuvan', [Definition] = NULL, [SortOrder] = 464.90 WHERE [Code] = 'muv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuc', 'Mutu', NULL, 465.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mutu', [Definition] = NULL, [SortOrder] = 465.00 WHERE [Code] = 'tuc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muy', 'Muyang', NULL, 465.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muyang', [Definition] = NULL, [SortOrder] = 465.10 WHERE [Code] = 'muy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myw', 'Muyuw', NULL, 465.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muyuw', [Definition] = NULL, [SortOrder] = 465.20 WHERE [Code] = 'myw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymz', 'Muzi', NULL, 465.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muzi', [Definition] = NULL, [SortOrder] = 465.30 WHERE [Code] = 'ymz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcj', 'Mvanip', NULL, 465.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mvanip', [Definition] = NULL, [SortOrder] = 465.40 WHERE [Code] = 'mcj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxh', 'Mvuba', NULL, 465.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mvuba', [Definition] = NULL, [SortOrder] = 465.50 WHERE [Code] = 'mxh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sur', 'Mwaghavul', NULL, 465.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwaghavul', [Definition] = NULL, [SortOrder] = 465.60 WHERE [Code] = 'sur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlc', 'Mwali Comorian', NULL, 465.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwali Comorian', [Definition] = NULL, [SortOrder] = 465.70 WHERE [Code] = 'wlc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moa', 'Mwan', NULL, 465.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwan', [Definition] = NULL, [SortOrder] = 465.80 WHERE [Code] = 'moa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmw', 'Mwani', NULL, 465.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwani', [Definition] = NULL, [SortOrder] = 465.90 WHERE [Code] = 'wmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwa', 'Mwatebu', NULL, 466.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwatebu', [Definition] = NULL, [SortOrder] = 466.00 WHERE [Code] = 'mwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwe', 'Mwera (Chimwera)', NULL, 466.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwera (Chimwera)', [Definition] = NULL, [SortOrder] = 466.10 WHERE [Code] = 'mwe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjh', 'Mwera (Nyasa)', NULL, 466.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwera (Nyasa)', [Definition] = NULL, [SortOrder] = 466.20 WHERE [Code] = 'mjh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mws', 'Mwimbi-Muthambi', NULL, 466.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwimbi-Muthambi', [Definition] = NULL, [SortOrder] = 466.30 WHERE [Code] = 'mws' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysm', 'Myanmar Sign Language', NULL, 466.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Myanmar Sign Language', [Definition] = NULL, [SortOrder] = 466.40 WHERE [Code] = 'ysm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmy', 'Mycenaean Greek', NULL, 466.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mycenaean Greek', [Definition] = NULL, [SortOrder] = 466.50 WHERE [Code] = 'gmy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mye', 'Myene', NULL, 466.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Myene', [Definition] = NULL, [SortOrder] = 466.60 WHERE [Code] = 'mye' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yms', 'Mysian', NULL, 466.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mysian', [Definition] = NULL, [SortOrder] = 466.70 WHERE [Code] = 'yms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nme', 'Mzieme Naga', NULL, 466.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mzieme Naga', [Definition] = NULL, [SortOrder] = 466.80 WHERE [Code] = 'nme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqo', 'N''Ko', NULL, 466.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'N''Ko', [Definition] = NULL, [SortOrder] = 466.90 WHERE [Code] = 'nqo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngh', 'N?ng', NULL, 467.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'N?ng', [Definition] = NULL, [SortOrder] = 467.00 WHERE [Code] = 'ngh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbt', 'Na', NULL, 467.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Na', [Definition] = NULL, [SortOrder] = 467.10 WHERE [Code] = 'nbt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nck', 'Na-kara', NULL, 467.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Na-kara', [Definition] = NULL, [SortOrder] = 467.20 WHERE [Code] = 'nck' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neo', 'Ná-Meo', NULL, 467.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ná-Meo', [Definition] = NULL, [SortOrder] = 467.30 WHERE [Code] = 'neo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nao', 'Naaba', NULL, 467.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naaba', [Definition] = NULL, [SortOrder] = 467.40 WHERE [Code] = 'nao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzv', 'Naami', NULL, 467.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naami', [Definition] = NULL, [SortOrder] = 467.50 WHERE [Code] = 'bzv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nas', 'Naasioi', NULL, 467.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naasioi', [Definition] = NULL, [SortOrder] = 467.60 WHERE [Code] = 'nas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mne', 'Naba', NULL, 467.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naba', [Definition] = NULL, [SortOrder] = 467.70 WHERE [Code] = 'mne' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naf', 'Nabak', NULL, 467.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nabak', [Definition] = NULL, [SortOrder] = 467.80 WHERE [Code] = 'naf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mty', 'Nabi', NULL, 467.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nabi', [Definition] = NULL, [SortOrder] = 467.90 WHERE [Code] = 'mty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncd', 'Nachering', NULL, 468.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nachering', [Definition] = NULL, [SortOrder] = 468.00 WHERE [Code] = 'ncd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbj', 'Nadëb', NULL, 468.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nadëb', [Definition] = NULL, [SortOrder] = 468.10 WHERE [Code] = 'mbj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndf', 'Nadruvian', NULL, 468.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nadruvian', [Definition] = NULL, [SortOrder] = 468.20 WHERE [Code] = 'ndf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfr', 'Nafaanra', NULL, 468.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nafaanra', [Definition] = NULL, [SortOrder] = 468.30 WHERE [Code] = 'nfr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srf', 'Nafi', NULL, 468.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nafi', [Definition] = NULL, [SortOrder] = 468.40 WHERE [Code] = 'srf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxx', 'Nafri', NULL, 468.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nafri', [Definition] = NULL, [SortOrder] = 468.50 WHERE [Code] = 'nxx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbn', 'Nafusi', NULL, 468.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nafusi', [Definition] = NULL, [SortOrder] = 468.60 WHERE [Code] = 'jbn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nag', 'Naga Pidgin', NULL, 468.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naga Pidgin', [Definition] = NULL, [SortOrder] = 468.70 WHERE [Code] = 'nag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbg', 'Nagarchal', NULL, 468.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nagarchal', [Definition] = NULL, [SortOrder] = 468.80 WHERE [Code] = 'nbg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxe', 'Nage', NULL, 468.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nage', [Definition] = NULL, [SortOrder] = 468.90 WHERE [Code] = 'nxe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngv', 'Nagumi', NULL, 469.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nagumi', [Definition] = NULL, [SortOrder] = 469.00 WHERE [Code] = 'ngv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlx', 'Nahali', NULL, 469.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nahali', [Definition] = NULL, [SortOrder] = 469.10 WHERE [Code] = 'nlx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhh', 'Nahari', NULL, 469.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nahari', [Definition] = NULL, [SortOrder] = 469.20 WHERE [Code] = 'nhh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bio', 'Nai', NULL, 469.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nai', [Definition] = NULL, [SortOrder] = 469.30 WHERE [Code] = 'bio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ars') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ars', 'Najdi Arabic', NULL, 469.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Najdi Arabic', [Definition] = NULL, [SortOrder] = 469.40 WHERE [Code] = 'ars' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nae', 'Naka''ela', NULL, 469.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naka''ela', [Definition] = NULL, [SortOrder] = 469.50 WHERE [Code] = 'nae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkj', 'Nakai', NULL, 469.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nakai', [Definition] = NULL, [SortOrder] = 469.60 WHERE [Code] = 'nkj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nib', 'Nakame', NULL, 469.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nakame', [Definition] = NULL, [SortOrder] = 469.70 WHERE [Code] = 'nib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nak', 'Nakanai', NULL, 469.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nakanai', [Definition] = NULL, [SortOrder] = 469.80 WHERE [Code] = 'nak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbk', 'Nake', NULL, 469.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nake', [Definition] = NULL, [SortOrder] = 469.90 WHERE [Code] = 'nbk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mff') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mff', 'Naki', NULL, 470.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naki', [Definition] = NULL, [SortOrder] = 470.00 WHERE [Code] = 'mff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nax', 'Nakwi', NULL, 470.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nakwi', [Definition] = NULL, [SortOrder] = 470.10 WHERE [Code] = 'nax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlc', 'Nalca', NULL, 470.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nalca', [Definition] = NULL, [SortOrder] = 470.20 WHERE [Code] = 'nlc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nss', 'Nali', NULL, 470.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nali', [Definition] = NULL, [SortOrder] = 470.30 WHERE [Code] = 'nss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nal', 'Nalik', NULL, 470.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nalik', [Definition] = NULL, [SortOrder] = 470.40 WHERE [Code] = 'nal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlz', 'Nalögo', NULL, 470.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nalögo', [Definition] = NULL, [SortOrder] = 470.50 WHERE [Code] = 'nlz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naj', 'Nalu', NULL, 470.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nalu', [Definition] = NULL, [SortOrder] = 470.60 WHERE [Code] = 'naj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylo', 'Naluo Yi', NULL, 470.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naluo Yi', [Definition] = NULL, [SortOrder] = 470.70 WHERE [Code] = 'ylo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmx', 'Nama (Papua New Guinea)', NULL, 470.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nama (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 470.80 WHERE [Code] = 'nmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmk', 'Namakura', NULL, 470.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namakura', [Definition] = NULL, [SortOrder] = 470.90 WHERE [Code] = 'nmk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkm', 'Namat', NULL, 471.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namat', [Definition] = NULL, [SortOrder] = 471.00 WHERE [Code] = 'nkm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncm', 'Nambo', NULL, 471.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nambo', [Definition] = NULL, [SortOrder] = 471.10 WHERE [Code] = 'ncm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmq', 'Nambya', NULL, 471.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nambya', [Definition] = NULL, [SortOrder] = 471.20 WHERE [Code] = 'nmq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnm', 'Namia', NULL, 471.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namia', [Definition] = NULL, [SortOrder] = 471.30 WHERE [Code] = 'nnm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nvm', 'Namiae', NULL, 471.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namiae', [Definition] = NULL, [SortOrder] = 471.40 WHERE [Code] = 'nvm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbs', 'Namibian Sign Language', NULL, 471.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namibian Sign Language', [Definition] = NULL, [SortOrder] = 471.50 WHERE [Code] = 'nbs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naa', 'Namla', NULL, 471.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namla', [Definition] = NULL, [SortOrder] = 471.60 WHERE [Code] = 'naa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxw', 'Namo', NULL, 471.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namo', [Definition] = NULL, [SortOrder] = 471.70 WHERE [Code] = 'mxw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmt', 'Namonuito', NULL, 471.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namonuito', [Definition] = NULL, [SortOrder] = 471.80 WHERE [Code] = 'nmt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwb', 'Namosi-Naitasiri-Serua', NULL, 471.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namosi-Naitasiri-Serua', [Definition] = NULL, [SortOrder] = 471.90 WHERE [Code] = 'bwb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmy', 'Namuyi', NULL, 472.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namuyi', [Definition] = NULL, [SortOrder] = 472.00 WHERE [Code] = 'nmy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gld', 'Nanai', NULL, 472.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanai', [Definition] = NULL, [SortOrder] = 472.10 WHERE [Code] = 'gld' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnc', 'Nancere', NULL, 472.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nancere', [Definition] = NULL, [SortOrder] = 472.20 WHERE [Code] = 'nnc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnb', 'Nande', NULL, 472.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nande', [Definition] = NULL, [SortOrder] = 472.30 WHERE [Code] = 'nnb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niq', 'Nandi', NULL, 472.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nandi', [Definition] = NULL, [SortOrder] = 472.40 WHERE [Code] = 'niq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sen', 'Nanerigé Sénoufo', NULL, 472.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanerigé Sénoufo', [Definition] = NULL, [SortOrder] = 472.50 WHERE [Code] = 'sen' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzz', 'Nanga Dama Dogon', NULL, 472.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanga Dama Dogon', [Definition] = NULL, [SortOrder] = 472.60 WHERE [Code] = 'nzz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnk', 'Nankina', NULL, 472.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nankina', [Definition] = NULL, [SortOrder] = 472.70 WHERE [Code] = 'nnk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cox', 'Nanti', NULL, 472.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanti', [Definition] = NULL, [SortOrder] = 472.80 WHERE [Code] = 'cox' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnt', 'Nanticoke', NULL, 472.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanticoke', [Definition] = NULL, [SortOrder] = 472.90 WHERE [Code] = 'nnt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afk', 'Nanubae', NULL, 473.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanubae', [Definition] = NULL, [SortOrder] = 473.00 WHERE [Code] = 'afk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvo', 'Napo Lowland Quechua', NULL, 473.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Napo Lowland Quechua', [Definition] = NULL, [SortOrder] = 473.10 WHERE [Code] = 'qvo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npy', 'Napu', NULL, 473.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Napu', [Definition] = NULL, [SortOrder] = 473.20 WHERE [Code] = 'npy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npa', 'Nar Phu', NULL, 473.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nar Phu', [Definition] = NULL, [SortOrder] = 473.30 WHERE [Code] = 'npa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrb', 'Nara', NULL, 473.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nara', [Definition] = NULL, [SortOrder] = 473.40 WHERE [Code] = 'nrb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nac', 'Narak', NULL, 473.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narak', [Definition] = NULL, [SortOrder] = 473.50 WHERE [Code] = 'nac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrg', 'Narango', NULL, 473.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narango', [Definition] = NULL, [SortOrder] = 473.60 WHERE [Code] = 'nrg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnr', 'Nari Nari', NULL, 473.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nari Nari', [Definition] = NULL, [SortOrder] = 473.70 WHERE [Code] = 'rnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loh', 'Narim', NULL, 473.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narim', [Definition] = NULL, [SortOrder] = 473.80 WHERE [Code] = 'loh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhr', 'Naro', NULL, 473.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naro', [Definition] = NULL, [SortOrder] = 473.90 WHERE [Code] = 'nhr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrm', 'Narom', NULL, 474.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narom', [Definition] = NULL, [SortOrder] = 474.00 WHERE [Code] = 'nrm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnt', 'Narragansett', NULL, 474.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narragansett', [Definition] = NULL, [SortOrder] = 474.10 WHERE [Code] = 'xnt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nru', 'Narua', NULL, 474.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narua', [Definition] = NULL, [SortOrder] = 474.20 WHERE [Code] = 'nru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnr', 'Narungga', NULL, 474.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narungga', [Definition] = NULL, [SortOrder] = 474.30 WHERE [Code] = 'nnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsy', 'Nasal', NULL, 474.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nasal', [Definition] = NULL, [SortOrder] = 474.40 WHERE [Code] = 'nsy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nvh', 'Nasarian', NULL, 474.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nasarian', [Definition] = NULL, [SortOrder] = 474.50 WHERE [Code] = 'nvh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsk', 'Naskapi', NULL, 474.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naskapi', [Definition] = NULL, [SortOrder] = 474.60 WHERE [Code] = 'nsk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntz', 'Natanzi', NULL, 474.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Natanzi', [Definition] = NULL, [SortOrder] = 474.70 WHERE [Code] = 'ntz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncz', 'Natchez', NULL, 474.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Natchez', [Definition] = NULL, [SortOrder] = 474.80 WHERE [Code] = 'ncz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntm', 'Nateni', NULL, 474.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nateni', [Definition] = NULL, [SortOrder] = 474.90 WHERE [Code] = 'ntm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nte', 'Nathembo', NULL, 475.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nathembo', [Definition] = NULL, [SortOrder] = 475.00 WHERE [Code] = 'nte' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nti', 'Natioro', NULL, 475.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Natioro', [Definition] = NULL, [SortOrder] = 475.10 WHERE [Code] = 'nti' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntu', 'Natügu', NULL, 475.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Natügu', [Definition] = NULL, [SortOrder] = 475.20 WHERE [Code] = 'ntu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxa', 'Nauete', NULL, 475.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nauete', [Definition] = NULL, [SortOrder] = 475.30 WHERE [Code] = 'nxa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynk', 'Naukan Yupik', NULL, 475.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naukan Yupik', [Definition] = NULL, [SortOrder] = 475.40 WHERE [Code] = 'ynk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncn', 'Nauna', NULL, 475.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nauna', [Definition] = NULL, [SortOrder] = 475.50 WHERE [Code] = 'ncn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwo', 'Nauo', NULL, 475.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nauo', [Definition] = NULL, [SortOrder] = 475.60 WHERE [Code] = 'nwo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nau', 'Nauru', NULL, 475.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nauru', [Definition] = NULL, [SortOrder] = 475.70 WHERE [Code] = 'nau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nav', 'Navajo', NULL, 475.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Navajo', [Definition] = NULL, [SortOrder] = 475.80 WHERE [Code] = 'nav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsw', 'Navut', NULL, 475.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Navut', [Definition] = NULL, [SortOrder] = 475.90 WHERE [Code] = 'nsw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwr', 'Nawaru', NULL, 476.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nawaru', [Definition] = NULL, [SortOrder] = 476.00 WHERE [Code] = 'nwr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwa', 'Nawathinehena', NULL, 476.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nawathinehena', [Definition] = NULL, [SortOrder] = 476.10 WHERE [Code] = 'nwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmz', 'Nawdm', NULL, 476.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nawdm', [Definition] = NULL, [SortOrder] = 476.20 WHERE [Code] = 'nmz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naw', 'Nawuri', NULL, 476.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nawuri', [Definition] = NULL, [SortOrder] = 476.30 WHERE [Code] = 'naw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxq', 'Naxi', NULL, 476.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naxi', [Definition] = NULL, [SortOrder] = 476.40 WHERE [Code] = 'nxq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noz', 'Nayi', NULL, 476.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nayi', [Definition] = NULL, [SortOrder] = 476.50 WHERE [Code] = 'noz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyq', 'Nayini', NULL, 476.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nayini', [Definition] = NULL, [SortOrder] = 476.60 WHERE [Code] = 'nyq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncr', 'Ncane', NULL, 476.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ncane', [Definition] = NULL, [SortOrder] = 476.70 WHERE [Code] = 'ncr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlu', 'Nchumbulu', NULL, 476.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nchumbulu', [Definition] = NULL, [SortOrder] = 476.80 WHERE [Code] = 'nlu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnz', 'Nda''nda''', NULL, 476.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nda''nda''', [Definition] = NULL, [SortOrder] = 476.90 WHERE [Code] = 'nnz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gke', 'Ndai', NULL, 477.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndai', [Definition] = NULL, [SortOrder] = 477.00 WHERE [Code] = 'gke' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndk', 'Ndaka', NULL, 477.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndaka', [Definition] = NULL, [SortOrder] = 477.10 WHERE [Code] = 'ndk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndh', 'Ndali', NULL, 477.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndali', [Definition] = NULL, [SortOrder] = 477.20 WHERE [Code] = 'ndh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndm', 'Ndam', NULL, 477.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndam', [Definition] = NULL, [SortOrder] = 477.30 WHERE [Code] = 'ndm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndj', 'Ndamba', NULL, 477.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndamba', [Definition] = NULL, [SortOrder] = 477.40 WHERE [Code] = 'ndj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxo', 'Ndambomo', NULL, 477.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndambomo', [Definition] = NULL, [SortOrder] = 477.50 WHERE [Code] = 'nxo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nda', 'Ndasa', NULL, 477.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndasa', [Definition] = NULL, [SortOrder] = 477.60 WHERE [Code] = 'nda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndc', 'Ndau', NULL, 477.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndau', [Definition] = NULL, [SortOrder] = 477.70 WHERE [Code] = 'ndc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ned') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ned', 'Nde-Gbite', NULL, 477.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nde-Gbite', [Definition] = NULL, [SortOrder] = 477.80 WHERE [Code] = 'ned' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndd', 'Nde-Nsele-Nta', NULL, 477.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nde-Nsele-Nta', [Definition] = NULL, [SortOrder] = 477.90 WHERE [Code] = 'ndd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nml', 'Ndemli', NULL, 478.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndemli', [Definition] = NULL, [SortOrder] = 478.00 WHERE [Code] = 'nml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dne', 'Ndendeule', NULL, 478.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndendeule', [Definition] = NULL, [SortOrder] = 478.10 WHERE [Code] = 'dne' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndg', 'Ndengereko', NULL, 478.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndengereko', [Definition] = NULL, [SortOrder] = 478.20 WHERE [Code] = 'ndg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eli', 'Nding', NULL, 478.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nding', [Definition] = NULL, [SortOrder] = 478.30 WHERE [Code] = 'eli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndp', 'Ndo', NULL, 478.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndo', [Definition] = NULL, [SortOrder] = 478.40 WHERE [Code] = 'ndp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndw', 'Ndobo', NULL, 478.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndobo', [Definition] = NULL, [SortOrder] = 478.50 WHERE [Code] = 'ndw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbb', 'Ndoe', NULL, 478.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndoe', [Definition] = NULL, [SortOrder] = 478.60 WHERE [Code] = 'nbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndz', 'Ndogo', NULL, 478.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndogo', [Definition] = NULL, [SortOrder] = 478.70 WHERE [Code] = 'ndz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndl', 'Ndolo', NULL, 478.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndolo', [Definition] = NULL, [SortOrder] = 478.80 WHERE [Code] = 'ndl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqm', 'Ndom', NULL, 478.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndom', [Definition] = NULL, [SortOrder] = 478.90 WHERE [Code] = 'nqm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndq', 'Ndombe', NULL, 479.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndombe', [Definition] = NULL, [SortOrder] = 479.00 WHERE [Code] = 'ndq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njd', 'Ndonde Hamba', NULL, 479.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndonde Hamba', [Definition] = NULL, [SortOrder] = 479.10 WHERE [Code] = 'njd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndo', 'Ndonga', NULL, 479.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndonga', [Definition] = NULL, [SortOrder] = 479.20 WHERE [Code] = 'ndo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndr', 'Ndoola', NULL, 479.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndoola', [Definition] = NULL, [SortOrder] = 479.30 WHERE [Code] = 'ndr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgt', 'Ndra''ngith', NULL, 479.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndra''ngith', [Definition] = NULL, [SortOrder] = 479.40 WHERE [Code] = 'dgt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dno', 'Ndrulo', NULL, 479.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndrulo', [Definition] = NULL, [SortOrder] = 479.50 WHERE [Code] = 'dno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndx', 'Nduga', NULL, 479.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nduga', [Definition] = NULL, [SortOrder] = 479.60 WHERE [Code] = 'ndx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmd', 'Ndumu', NULL, 479.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndumu', [Definition] = NULL, [SortOrder] = 479.70 WHERE [Code] = 'nmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuh', 'Ndunda', NULL, 479.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndunda', [Definition] = NULL, [SortOrder] = 479.80 WHERE [Code] = 'nuh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndt', 'Ndunga', NULL, 479.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndunga', [Definition] = NULL, [SortOrder] = 479.90 WHERE [Code] = 'ndt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndv', 'Ndut', NULL, 480.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndut', [Definition] = NULL, [SortOrder] = 480.00 WHERE [Code] = 'ndv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nww', 'Ndwewe', NULL, 480.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndwewe', [Definition] = NULL, [SortOrder] = 480.10 WHERE [Code] = 'nww' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njt', 'Ndyuka-Trio Pidgin', NULL, 480.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndyuka-Trio Pidgin', [Definition] = NULL, [SortOrder] = 480.20 WHERE [Code] = 'njt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wni', 'Ndzwani Comorian', NULL, 480.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndzwani Comorian', [Definition] = NULL, [SortOrder] = 480.30 WHERE [Code] = 'wni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nap', 'Neapolitan', NULL, 480.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neapolitan', [Definition] = NULL, [SortOrder] = 480.40 WHERE [Code] = 'nap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nec', 'Nedebang', NULL, 480.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nedebang', [Definition] = NULL, [SortOrder] = 480.50 WHERE [Code] = 'nec' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nef', 'Nefamese', NULL, 480.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nefamese', [Definition] = NULL, [SortOrder] = 480.60 WHERE [Code] = 'nef' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dcr', 'Negerhollands', NULL, 480.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Negerhollands', [Definition] = NULL, [SortOrder] = 480.70 WHERE [Code] = 'dcr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmi', 'Negeri Sembilan Malay', NULL, 480.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Negeri Sembilan Malay', [Definition] = NULL, [SortOrder] = 480.80 WHERE [Code] = 'zmi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neg', 'Negidal', NULL, 480.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Negidal', [Definition] = NULL, [SortOrder] = 480.90 WHERE [Code] = 'neg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsn', 'Nehan', NULL, 481.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nehan', [Definition] = NULL, [SortOrder] = 481.00 WHERE [Code] = 'nsn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nif', 'Nek', NULL, 481.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nek', [Definition] = NULL, [SortOrder] = 481.10 WHERE [Code] = 'nif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkg', 'Nekgini', NULL, 481.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nekgini', [Definition] = NULL, [SortOrder] = 481.20 WHERE [Code] = 'nkg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nej', 'Neko', NULL, 481.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neko', [Definition] = NULL, [SortOrder] = 481.30 WHERE [Code] = 'nej' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nek', 'Neku', NULL, 481.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neku', [Definition] = NULL, [SortOrder] = 481.40 WHERE [Code] = 'nek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nee', 'Nêlêmwa-Nixumwak', NULL, 481.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nêlêmwa-Nixumwak', [Definition] = NULL, [SortOrder] = 481.50 WHERE [Code] = 'nee' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsn', 'Nema', NULL, 481.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nema', [Definition] = NULL, [SortOrder] = 481.60 WHERE [Code] = 'gsn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nex', 'Neme', NULL, 481.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neme', [Definition] = NULL, [SortOrder] = 481.70 WHERE [Code] = 'nex' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nem', 'Nemi', NULL, 481.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nemi', [Definition] = NULL, [SortOrder] = 481.80 WHERE [Code] = 'nem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqn', 'Nen', NULL, 481.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nen', [Definition] = NULL, [SortOrder] = 481.90 WHERE [Code] = 'nqn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anh', 'Nend', NULL, 482.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nend', [Definition] = NULL, [SortOrder] = 482.00 WHERE [Code] = 'anh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrk', 'Nenets', NULL, 482.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nenets', [Definition] = NULL, [SortOrder] = 482.10 WHERE [Code] = 'yrk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nen', 'Nengone', NULL, 482.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nengone', [Definition] = NULL, [SortOrder] = 482.20 WHERE [Code] = 'nen' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neu', 'Neo', NULL, 482.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neo', [Definition] = NULL, [SortOrder] = 482.30 WHERE [Code] = 'neu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nei', 'Neo-Hittite', NULL, 482.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neo-Hittite', [Definition] = NULL, [SortOrder] = 482.40 WHERE [Code] = 'nei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsp', 'Nepalese Sign Language', NULL, 482.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nepalese Sign Language', [Definition] = NULL, [SortOrder] = 482.50 WHERE [Code] = 'nsp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npi', 'Nepali (individual language)', NULL, 482.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nepali (individual language)', [Definition] = NULL, [SortOrder] = 482.60 WHERE [Code] = 'npi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nep', 'Nepali (macrolanguage)', NULL, 482.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nepali (macrolanguage)', [Definition] = NULL, [SortOrder] = 482.70 WHERE [Code] = 'nep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'net') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('net', 'Nete', NULL, 482.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nete', [Definition] = NULL, [SortOrder] = 482.80 WHERE [Code] = 'net' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jas', 'New Caledonian Javanese', NULL, 482.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'New Caledonian Javanese', [Definition] = NULL, [SortOrder] = 482.90 WHERE [Code] = 'jas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzs', 'New Zealand Sign Language', NULL, 483.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'New Zealand Sign Language', [Definition] = NULL, [SortOrder] = 483.00 WHERE [Code] = 'nzs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'new') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('new', 'Newari', NULL, 483.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Newari', [Definition] = NULL, [SortOrder] = 483.10 WHERE [Code] = 'new' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ney') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ney', 'Neyo', NULL, 483.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neyo', [Definition] = NULL, [SortOrder] = 483.20 WHERE [Code] = 'ney' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nez', 'Nez Perce', NULL, 483.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nez Perce', [Definition] = NULL, [SortOrder] = 483.30 WHERE [Code] = 'nez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntj', 'Ngaanyatjarra', NULL, 483.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngaanyatjarra', [Definition] = NULL, [SortOrder] = 483.40 WHERE [Code] = 'ntj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gym', 'Ngäbere', NULL, 483.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngäbere', [Definition] = NULL, [SortOrder] = 483.50 WHERE [Code] = 'gym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxg', 'Ngad''a', NULL, 483.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngad''a', [Definition] = NULL, [SortOrder] = 483.60 WHERE [Code] = 'nxg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nju', 'Ngadjunmaya', NULL, 483.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngadjunmaya', [Definition] = NULL, [SortOrder] = 483.70 WHERE [Code] = 'nju' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jui', 'Ngadjuri', NULL, 483.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngadjuri', [Definition] = NULL, [SortOrder] = 483.80 WHERE [Code] = 'jui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnf', 'Ngaing', NULL, 483.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngaing', [Definition] = NULL, [SortOrder] = 483.90 WHERE [Code] = 'nnf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nij', 'Ngaju', NULL, 484.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngaju', [Definition] = NULL, [SortOrder] = 484.00 WHERE [Code] = 'nij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nud', 'Ngala', NULL, 484.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngala', [Definition] = NULL, [SortOrder] = 484.10 WHERE [Code] = 'nud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nig', 'Ngalakgan', NULL, 484.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngalakgan', [Definition] = NULL, [SortOrder] = 484.20 WHERE [Code] = 'nig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szb', 'Ngalum', NULL, 484.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngalum', [Definition] = NULL, [SortOrder] = 484.30 WHERE [Code] = 'szb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmc', 'Ngam', NULL, 484.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngam', [Definition] = NULL, [SortOrder] = 484.40 WHERE [Code] = 'nmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbv', 'Ngamambo', NULL, 484.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngamambo', [Definition] = NULL, [SortOrder] = 484.50 WHERE [Code] = 'nbv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sba', 'Ngambay', NULL, 484.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngambay', [Definition] = NULL, [SortOrder] = 484.60 WHERE [Code] = 'sba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmv', 'Ngamini', NULL, 484.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngamini', [Definition] = NULL, [SortOrder] = 484.70 WHERE [Code] = 'nmv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbh', 'Ngamo', NULL, 484.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngamo', [Definition] = NULL, [SortOrder] = 484.80 WHERE [Code] = 'nbh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nam', 'Ngan''gityemerri', NULL, 484.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngan''gityemerri', [Definition] = NULL, [SortOrder] = 484.90 WHERE [Code] = 'nam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnk', 'Nganakarti', NULL, 485.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nganakarti', [Definition] = NULL, [SortOrder] = 485.00 WHERE [Code] = 'xnk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nio', 'Nganasan', NULL, 485.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nganasan', [Definition] = NULL, [SortOrder] = 485.10 WHERE [Code] = 'nio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nid', 'Ngandi', NULL, 485.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngandi', [Definition] = NULL, [SortOrder] = 485.20 WHERE [Code] = 'nid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngd', 'Ngando (Central African Republic)', NULL, 485.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngando (Central African Republic)', [Definition] = NULL, [SortOrder] = 485.30 WHERE [Code] = 'ngd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxd', 'Ngando (Democratic Republic of Congo)', NULL, 485.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngando (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 485.40 WHERE [Code] = 'nxd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nne', 'Ngandyera', NULL, 485.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngandyera', [Definition] = NULL, [SortOrder] = 485.50 WHERE [Code] = 'nne' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gng', 'Ngangam', NULL, 485.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngangam', [Definition] = NULL, [SortOrder] = 485.60 WHERE [Code] = 'gng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntg', 'Ngantangarra', NULL, 485.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngantangarra', [Definition] = NULL, [SortOrder] = 485.70 WHERE [Code] = 'ntg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyx', 'Nganyaywana', NULL, 485.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nganyaywana', [Definition] = NULL, [SortOrder] = 485.80 WHERE [Code] = 'nyx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rxd', 'Ngardi', NULL, 485.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngardi', [Definition] = NULL, [SortOrder] = 485.90 WHERE [Code] = 'rxd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xni', 'Ngarigu', NULL, 486.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarigu', [Definition] = NULL, [SortOrder] = 486.00 WHERE [Code] = 'xni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ung') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ung', 'Ngarinyin', NULL, 486.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarinyin', [Definition] = NULL, [SortOrder] = 486.10 WHERE [Code] = 'ung' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbj', 'Ngarinyman', NULL, 486.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarinyman', [Definition] = NULL, [SortOrder] = 486.20 WHERE [Code] = 'nbj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrk', 'Ngarla', NULL, 486.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarla', [Definition] = NULL, [SortOrder] = 486.30 WHERE [Code] = 'nrk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrl', 'Ngarluma', NULL, 486.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarluma', [Definition] = NULL, [SortOrder] = 486.40 WHERE [Code] = 'nrl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nay', 'Ngarrindjeri', NULL, 486.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarrindjeri', [Definition] = NULL, [SortOrder] = 486.50 WHERE [Code] = 'nay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anc', 'Ngas', NULL, 486.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngas', [Definition] = NULL, [SortOrder] = 486.60 WHERE [Code] = 'anc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsg', 'Ngasa', NULL, 486.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngasa', [Definition] = NULL, [SortOrder] = 486.70 WHERE [Code] = 'nsg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngm', 'Ngatik Men''s Creole', NULL, 486.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngatik Men''s Creole', [Definition] = NULL, [SortOrder] = 486.80 WHERE [Code] = 'ngm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnw', 'Ngawn Chin', NULL, 486.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngawn Chin', [Definition] = NULL, [SortOrder] = 486.90 WHERE [Code] = 'cnw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxn', 'Ngawun', NULL, 487.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngawun', [Definition] = NULL, [SortOrder] = 487.00 WHERE [Code] = 'nxn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwg', 'Ngayawung', NULL, 487.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngayawung', [Definition] = NULL, [SortOrder] = 487.10 WHERE [Code] = 'nwg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zdj', 'Ngazidja Comorian', NULL, 487.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngazidja Comorian', [Definition] = NULL, [SortOrder] = 487.20 WHERE [Code] = 'zdj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nga', 'Ngbaka', NULL, 487.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbaka', [Definition] = NULL, [SortOrder] = 487.30 WHERE [Code] = 'nga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbm', 'Ngbaka Ma''bo', NULL, 487.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbaka Ma''bo', [Definition] = NULL, [SortOrder] = 487.40 WHERE [Code] = 'nbm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngg', 'Ngbaka Manza', NULL, 487.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbaka Manza', [Definition] = NULL, [SortOrder] = 487.50 WHERE [Code] = 'ngg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jgb', 'Ngbee', NULL, 487.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbee', [Definition] = NULL, [SortOrder] = 487.60 WHERE [Code] = 'jgb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbd', 'Ngbinda', NULL, 487.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbinda', [Definition] = NULL, [SortOrder] = 487.70 WHERE [Code] = 'nbd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuu', 'Ngbundu', NULL, 487.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbundu', [Definition] = NULL, [SortOrder] = 487.80 WHERE [Code] = 'nuu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agh', 'Ngelima', NULL, 487.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngelima', [Definition] = NULL, [SortOrder] = 487.90 WHERE [Code] = 'agh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nge', 'Ngemba', NULL, 488.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngemba', [Definition] = NULL, [SortOrder] = 488.00 WHERE [Code] = 'nge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnj', 'Ngen', NULL, 488.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngen', [Definition] = NULL, [SortOrder] = 488.10 WHERE [Code] = 'gnj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nql', 'Ngendelengo', NULL, 488.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngendelengo', [Definition] = NULL, [SortOrder] = 488.20 WHERE [Code] = 'nql' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnn', 'Ngete', NULL, 488.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngete', [Definition] = NULL, [SortOrder] = 488.30 WHERE [Code] = 'nnn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbq', 'Nggem', NULL, 488.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nggem', [Definition] = NULL, [SortOrder] = 488.40 WHERE [Code] = 'nbq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngx', 'Nggwahyi', NULL, 488.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nggwahyi', [Definition] = NULL, [SortOrder] = 488.50 WHERE [Code] = 'ngx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngj', 'Ngie', NULL, 488.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngie', [Definition] = NULL, [SortOrder] = 488.60 WHERE [Code] = 'ngj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnh', 'Ngiemboon', NULL, 488.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngiemboon', [Definition] = NULL, [SortOrder] = 488.70 WHERE [Code] = 'nnh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jle', 'Ngile', NULL, 488.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngile', [Definition] = NULL, [SortOrder] = 488.80 WHERE [Code] = 'jle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnq', 'Ngindo', NULL, 488.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngindo', [Definition] = NULL, [SortOrder] = 488.90 WHERE [Code] = 'nnq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niy', 'Ngiti', NULL, 489.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngiti', [Definition] = NULL, [SortOrder] = 489.00 WHERE [Code] = 'niy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngi', 'Ngizim', NULL, 489.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngizim', [Definition] = NULL, [SortOrder] = 489.10 WHERE [Code] = 'ngi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcd', 'Ngkâlmpw Kanum', NULL, 489.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngkâlmpw Kanum', [Definition] = NULL, [SortOrder] = 489.20 WHERE [Code] = 'kcd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nra', 'Ngom', NULL, 489.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngom', [Definition] = NULL, [SortOrder] = 489.30 WHERE [Code] = 'nra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jgo', 'Ngomba', NULL, 489.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngomba', [Definition] = NULL, [SortOrder] = 489.40 WHERE [Code] = 'jgo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nla', 'Ngombale', NULL, 489.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngombale', [Definition] = NULL, [SortOrder] = 489.50 WHERE [Code] = 'nla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmj', 'Ngombe (Central African Republic)', NULL, 489.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngombe (Central African Republic)', [Definition] = NULL, [SortOrder] = 489.60 WHERE [Code] = 'nmj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngc', 'Ngombe (Democratic Republic of Congo)', NULL, 489.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngombe (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 489.70 WHERE [Code] = 'ngc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noq', 'Ngongo', NULL, 489.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngongo', [Definition] = NULL, [SortOrder] = 489.80 WHERE [Code] = 'noq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnq', 'Ngoni (Mozambique)', NULL, 489.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngoni (Mozambique)', [Definition] = NULL, [SortOrder] = 489.90 WHERE [Code] = 'xnq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnj', 'Ngoni (Tanzania)', NULL, 490.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngoni (Tanzania)', [Definition] = NULL, [SortOrder] = 490.00 WHERE [Code] = 'xnj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsh', 'Ngoshie', NULL, 490.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngoshie', [Definition] = NULL, [SortOrder] = 490.10 WHERE [Code] = 'nsh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlo', 'Ngul', NULL, 490.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngul', [Definition] = NULL, [SortOrder] = 490.20 WHERE [Code] = 'nlo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngp', 'Ngulu', NULL, 490.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngulu', [Definition] = NULL, [SortOrder] = 490.30 WHERE [Code] = 'ngp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuw', 'Nguluwan', NULL, 490.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nguluwan', [Definition] = NULL, [SortOrder] = 490.40 WHERE [Code] = 'nuw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnm', 'Ngumbarl', NULL, 490.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngumbarl', [Definition] = NULL, [SortOrder] = 490.50 WHERE [Code] = 'xnm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nui', 'Ngumbi', NULL, 490.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngumbi', [Definition] = NULL, [SortOrder] = 490.60 WHERE [Code] = 'nui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xul', 'Ngunawal', NULL, 490.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngunawal', [Definition] = NULL, [SortOrder] = 490.70 WHERE [Code] = 'xul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndn', 'Ngundi', NULL, 490.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngundi', [Definition] = NULL, [SortOrder] = 490.80 WHERE [Code] = 'ndn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nue', 'Ngundu', NULL, 490.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngundu', [Definition] = NULL, [SortOrder] = 490.90 WHERE [Code] = 'nue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngz', 'Ngungwel', NULL, 491.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngungwel', [Definition] = NULL, [SortOrder] = 491.00 WHERE [Code] = 'ngz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuo', 'Nguôn', NULL, 491.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nguôn', [Definition] = NULL, [SortOrder] = 491.10 WHERE [Code] = 'nuo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngq', 'Ngurimi', NULL, 491.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngurimi', [Definition] = NULL, [SortOrder] = 491.20 WHERE [Code] = 'ngq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrx', 'Ngurmbur', NULL, 491.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngurmbur', [Definition] = NULL, [SortOrder] = 491.30 WHERE [Code] = 'nrx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngw', 'Ngwaba', NULL, 491.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngwaba', [Definition] = NULL, [SortOrder] = 491.40 WHERE [Code] = 'ngw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwe', 'Ngwe', NULL, 491.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngwe', [Definition] = NULL, [SortOrder] = 491.50 WHERE [Code] = 'nwe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngn', 'Ngwo', NULL, 491.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngwo', [Definition] = NULL, [SortOrder] = 491.60 WHERE [Code] = 'ngn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nha', 'Nhanda', NULL, 491.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nhanda', [Definition] = NULL, [SortOrder] = 491.70 WHERE [Code] = 'nha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrl', 'Nhengatu', NULL, 491.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nhengatu', [Definition] = NULL, [SortOrder] = 491.80 WHERE [Code] = 'yrl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrp', 'Nhirrpi', NULL, 491.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nhirrpi', [Definition] = NULL, [SortOrder] = 491.90 WHERE [Code] = 'hrp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhf', 'Nhuwala', NULL, 492.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nhuwala', [Definition] = NULL, [SortOrder] = 492.00 WHERE [Code] = 'nhf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nia', 'Nias', NULL, 492.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nias', [Definition] = NULL, [SortOrder] = 492.10 WHERE [Code] = 'nia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzk', 'Nicaragua Creole English', NULL, 492.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nicaragua Creole English', [Definition] = NULL, [SortOrder] = 492.20 WHERE [Code] = 'bzk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncs', 'Nicaraguan Sign Language', NULL, 492.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nicaraguan Sign Language', [Definition] = NULL, [SortOrder] = 492.30 WHERE [Code] = 'ncs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nie', 'Niellim', NULL, 492.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niellim', [Definition] = NULL, [SortOrder] = 492.40 WHERE [Code] = 'nie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzk', 'Nigeria Mambila', NULL, 492.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nigeria Mambila', [Definition] = NULL, [SortOrder] = 492.50 WHERE [Code] = 'mzk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuv', 'Nigerian Fulfulde', NULL, 492.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nigerian Fulfulde', [Definition] = NULL, [SortOrder] = 492.60 WHERE [Code] = 'fuv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcm', 'Nigerian Pidgin', NULL, 492.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nigerian Pidgin', [Definition] = NULL, [SortOrder] = 492.70 WHERE [Code] = 'pcm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsi', 'Nigerian Sign Language', NULL, 492.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nigerian Sign Language', [Definition] = NULL, [SortOrder] = 492.80 WHERE [Code] = 'nsi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nll', 'Nihali', NULL, 492.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nihali', [Definition] = NULL, [SortOrder] = 492.90 WHERE [Code] = 'nll' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nii', 'Nii', NULL, 493.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nii', [Definition] = NULL, [SortOrder] = 493.00 WHERE [Code] = 'nii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbe', 'Niksek', NULL, 493.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niksek', [Definition] = NULL, [SortOrder] = 493.10 WHERE [Code] = 'gbe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nil', 'Nila', NULL, 493.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nila', [Definition] = NULL, [SortOrder] = 493.20 WHERE [Code] = 'nil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nim', 'Nilamba', NULL, 493.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nilamba', [Definition] = NULL, [SortOrder] = 493.30 WHERE [Code] = 'nim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noe', 'Nimadi', NULL, 493.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimadi', [Definition] = NULL, [SortOrder] = 493.40 WHERE [Code] = 'noe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmp', 'Nimanbur', NULL, 493.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimanbur', [Definition] = NULL, [SortOrder] = 493.50 WHERE [Code] = 'nmp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmr', 'Nimbari', NULL, 493.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimbari', [Definition] = NULL, [SortOrder] = 493.60 WHERE [Code] = 'nmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nir', 'Nimboran', NULL, 493.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimboran', [Definition] = NULL, [SortOrder] = 493.70 WHERE [Code] = 'nir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nis', 'Nimi', NULL, 493.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimi', [Definition] = NULL, [SortOrder] = 493.80 WHERE [Code] = 'nis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niw', 'Nimo', NULL, 493.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimo', [Definition] = NULL, [SortOrder] = 493.90 WHERE [Code] = 'niw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmw', 'Nimoa', NULL, 494.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimoa', [Definition] = NULL, [SortOrder] = 494.00 WHERE [Code] = 'nmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shb', 'Ninam', NULL, 494.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ninam', [Definition] = NULL, [SortOrder] = 494.10 WHERE [Code] = 'shb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxi', 'Nindi', NULL, 494.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nindi', [Definition] = NULL, [SortOrder] = 494.20 WHERE [Code] = 'nxi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nby', 'Ningera', NULL, 494.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ningera', [Definition] = NULL, [SortOrder] = 494.30 WHERE [Code] = 'nby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxr', 'Ninggerum', NULL, 494.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ninggerum', [Definition] = NULL, [SortOrder] = 494.40 WHERE [Code] = 'nxr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niz', 'Ningil', NULL, 494.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ningil', [Definition] = NULL, [SortOrder] = 494.50 WHERE [Code] = 'niz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlk', 'Ninia Yali', NULL, 494.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ninia Yali', [Definition] = NULL, [SortOrder] = 494.60 WHERE [Code] = 'nlk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nin', 'Ninzo', NULL, 494.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ninzo', [Definition] = NULL, [SortOrder] = 494.70 WHERE [Code] = 'nin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nps', 'Nipsan', NULL, 494.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nipsan', [Definition] = NULL, [SortOrder] = 494.80 WHERE [Code] = 'nps' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njs', 'Nisa', NULL, 494.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nisa', [Definition] = NULL, [SortOrder] = 494.90 WHERE [Code] = 'njs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsz', 'Nisenan', NULL, 495.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nisenan', [Definition] = NULL, [SortOrder] = 495.00 WHERE [Code] = 'nsz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncg', 'Nisga''a', NULL, 495.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nisga''a', [Definition] = NULL, [SortOrder] = 495.10 WHERE [Code] = 'ncg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yso', 'Nisi (China)', NULL, 495.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nisi (China)', [Definition] = NULL, [SortOrder] = 495.20 WHERE [Code] = 'yso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'num') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('num', 'Niuafo''ou', NULL, 495.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niuafo''ou', [Definition] = NULL, [SortOrder] = 495.30 WHERE [Code] = 'num' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkp', 'Niuatoputapu', NULL, 495.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niuatoputapu', [Definition] = NULL, [SortOrder] = 495.40 WHERE [Code] = 'nkp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niu', 'Niuean', NULL, 495.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niuean', [Definition] = NULL, [SortOrder] = 495.50 WHERE [Code] = 'niu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cag', 'Nivaclé', NULL, 495.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nivaclé', [Definition] = NULL, [SortOrder] = 495.60 WHERE [Code] = 'cag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrc', 'Niwer Mil', NULL, 495.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niwer Mil', [Definition] = NULL, [SortOrder] = 495.70 WHERE [Code] = 'hrc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njl', 'Njalgulgule', NULL, 495.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njalgulgule', [Definition] = NULL, [SortOrder] = 495.80 WHERE [Code] = 'njl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzb', 'Njebi', NULL, 495.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njebi', [Definition] = NULL, [SortOrder] = 495.90 WHERE [Code] = 'nzb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njj', 'Njen', NULL, 496.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njen', [Definition] = NULL, [SortOrder] = 496.00 WHERE [Code] = 'njj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njr', 'Njerep', NULL, 496.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njerep', [Definition] = NULL, [SortOrder] = 496.10 WHERE [Code] = 'njr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njy', 'Njyem', NULL, 496.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njyem', [Definition] = NULL, [SortOrder] = 496.20 WHERE [Code] = 'njy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkq', 'Nkami', NULL, 496.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkami', [Definition] = NULL, [SortOrder] = 496.30 WHERE [Code] = 'nkq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkn', 'Nkangala', NULL, 496.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkangala', [Definition] = NULL, [SortOrder] = 496.40 WHERE [Code] = 'nkn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkz', 'Nkari', NULL, 496.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkari', [Definition] = NULL, [SortOrder] = 496.50 WHERE [Code] = 'nkz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isi', 'Nkem-Nkum', NULL, 496.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkem-Nkum', [Definition] = NULL, [SortOrder] = 496.60 WHERE [Code] = 'isi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khu', 'Nkhumbi', NULL, 496.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkhumbi', [Definition] = NULL, [SortOrder] = 496.70 WHERE [Code] = 'khu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkc', 'Nkongho', NULL, 496.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkongho', [Definition] = NULL, [SortOrder] = 496.80 WHERE [Code] = 'nkc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nko', 'Nkonya', NULL, 496.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkonya', [Definition] = NULL, [SortOrder] = 496.90 WHERE [Code] = 'nko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkx', 'Nkoroo', NULL, 497.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkoroo', [Definition] = NULL, [SortOrder] = 497.00 WHERE [Code] = 'nkx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nka', 'Nkoya', NULL, 497.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkoya', [Definition] = NULL, [SortOrder] = 497.10 WHERE [Code] = 'nka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbo', 'Nkukoli', NULL, 497.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkukoli', [Definition] = NULL, [SortOrder] = 497.20 WHERE [Code] = 'nbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkw', 'Nkutu', NULL, 497.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkutu', [Definition] = NULL, [SortOrder] = 497.30 WHERE [Code] = 'nkw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbp', 'Nnam', NULL, 497.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nnam', [Definition] = NULL, [SortOrder] = 497.40 WHERE [Code] = 'nbp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zxx', 'No linguistic content', NULL, 497.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'No linguistic content', [Definition] = NULL, [SortOrder] = 497.50 WHERE [Code] = 'zxx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fia', 'Nobiin', NULL, 497.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nobiin', [Definition] = NULL, [SortOrder] = 497.60 WHERE [Code] = 'fia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaw', 'Nobonob', NULL, 497.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nobonob', [Definition] = NULL, [SortOrder] = 497.70 WHERE [Code] = 'gaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nom', 'Nocamán', NULL, 497.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nocamán', [Definition] = NULL, [SortOrder] = 497.80 WHERE [Code] = 'nom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njb', 'Nocte Naga', NULL, 497.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nocte Naga', [Definition] = NULL, [SortOrder] = 497.90 WHERE [Code] = 'njb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nog', 'Nogai', NULL, 498.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nogai', [Definition] = NULL, [SortOrder] = 498.00 WHERE [Code] = 'nog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npx', 'Noipx', NULL, 498.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noipx', [Definition] = NULL, [SortOrder] = 498.10 WHERE [Code] = 'npx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noi', 'Noiri', NULL, 498.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noiri', [Definition] = NULL, [SortOrder] = 498.20 WHERE [Code] = 'noi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkk', 'Nokuku', NULL, 498.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nokuku', [Definition] = NULL, [SortOrder] = 498.30 WHERE [Code] = 'nkk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lem', 'Nomaande', NULL, 498.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomaande', [Definition] = NULL, [SortOrder] = 498.40 WHERE [Code] = 'lem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nof', 'Nomane', NULL, 498.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomane', [Definition] = NULL, [SortOrder] = 498.50 WHERE [Code] = 'nof' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'not') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('not', 'Nomatsiguenga', NULL, 498.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomatsiguenga', [Definition] = NULL, [SortOrder] = 498.60 WHERE [Code] = 'not' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nol', 'Nomlaki', NULL, 498.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomlaki', [Definition] = NULL, [SortOrder] = 498.70 WHERE [Code] = 'nol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noh', 'Nomu', NULL, 498.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomu', [Definition] = NULL, [SortOrder] = 498.80 WHERE [Code] = 'noh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhn', 'Nong Zhuang', NULL, 498.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nong Zhuang', [Definition] = NULL, [SortOrder] = 498.90 WHERE [Code] = 'zhn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noj', 'Nonuya', NULL, 499.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nonuya', [Definition] = NULL, [SortOrder] = 499.00 WHERE [Code] = 'noj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nok', 'Nooksack', NULL, 499.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nooksack', [Definition] = NULL, [SortOrder] = 499.10 WHERE [Code] = 'nok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snf', 'Noon', NULL, 499.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noon', [Definition] = NULL, [SortOrder] = 499.20 WHERE [Code] = 'snf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhu', 'Noone', NULL, 499.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noone', [Definition] = NULL, [SortOrder] = 499.30 WHERE [Code] = 'nhu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cya', 'Nopala Chatino', NULL, 499.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nopala Chatino', [Definition] = NULL, [SortOrder] = 499.40 WHERE [Code] = 'cya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrc', 'Noric', NULL, 499.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noric', [Definition] = NULL, [SortOrder] = 499.50 WHERE [Code] = 'nrc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrn', 'Norn', NULL, 499.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norn', [Definition] = NULL, [SortOrder] = 499.60 WHERE [Code] = 'nrn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrr', 'Norra', NULL, 499.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norra', [Definition] = NULL, [SortOrder] = 499.70 WHERE [Code] = 'nrr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esi', 'North Alaskan Inupiatun', NULL, 499.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Alaskan Inupiatun', [Definition] = NULL, [SortOrder] = 499.80 WHERE [Code] = 'esi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmg', 'North Ambrym', NULL, 499.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Ambrym', [Definition] = NULL, [SortOrder] = 499.90 WHERE [Code] = 'mmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nks', 'North Asmat', NULL, 500.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Asmat', [Definition] = NULL, [SortOrder] = 500.00 WHERE [Code] = 'nks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yir', 'North Awyu', NULL, 500.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Awyu', [Definition] = NULL, [SortOrder] = 500.10 WHERE [Code] = 'yir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azj', 'North Azerbaijani', NULL, 500.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Azerbaijani', [Definition] = NULL, [SortOrder] = 500.20 WHERE [Code] = 'azj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcd', 'North Babar', NULL, 500.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Babar', [Definition] = NULL, [SortOrder] = 500.30 WHERE [Code] = 'bcd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qul', 'North Bolivian Quechua', NULL, 500.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Bolivian Quechua', [Definition] = NULL, [SortOrder] = 500.40 WHERE [Code] = 'qul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neq', 'North Central Mixe', NULL, 500.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Central Mixe', [Definition] = NULL, [SortOrder] = 500.50 WHERE [Code] = 'neq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llp', 'North Efate', NULL, 500.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Efate', [Definition] = NULL, [SortOrder] = 500.60 WHERE [Code] = 'llp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fll', 'North Fali', NULL, 500.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Fali', [Definition] = NULL, [SortOrder] = 500.70 WHERE [Code] = 'fll' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gis', 'North Giziga', NULL, 500.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Giziga', [Definition] = NULL, [SortOrder] = 500.80 WHERE [Code] = 'gis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvn', 'North Junín Quechua', NULL, 500.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Junín Quechua', [Definition] = NULL, [SortOrder] = 500.90 WHERE [Code] = 'qvn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apc', 'North Levantine Arabic', NULL, 501.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Levantine Arabic', [Definition] = NULL, [SortOrder] = 501.00 WHERE [Code] = 'apc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrq', 'North Marquesan', NULL, 501.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Marquesan', [Definition] = NULL, [SortOrder] = 501.10 WHERE [Code] = 'mrq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayp', 'North Mesopotamian Arabic', NULL, 501.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Mesopotamian Arabic', [Definition] = NULL, [SortOrder] = 501.20 WHERE [Code] = 'ayp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xph', 'North Midlands Tasmanian', NULL, 501.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Midlands Tasmanian', [Definition] = NULL, [SortOrder] = 501.30 WHERE [Code] = 'xph' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfk', 'North Mofu', NULL, 501.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Mofu', [Definition] = NULL, [SortOrder] = 501.40 WHERE [Code] = 'mfk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'max') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('max', 'North Moluccan Malay', NULL, 501.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Moluccan Malay', [Definition] = NULL, [SortOrder] = 501.50 WHERE [Code] = 'max' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kti', 'North Muyu', NULL, 501.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Muyu', [Definition] = NULL, [SortOrder] = 501.60 WHERE [Code] = 'kti' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nde', 'North Ndebele', NULL, 501.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Ndebele', [Definition] = NULL, [SortOrder] = 501.70 WHERE [Code] = 'nde' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nni', 'North Nuaulu', NULL, 501.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Nuaulu', [Definition] = NULL, [SortOrder] = 501.80 WHERE [Code] = 'nni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrp', 'North Picene', NULL, 501.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Picene', [Definition] = NULL, [SortOrder] = 501.90 WHERE [Code] = 'nrp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scs', 'North Slavey', NULL, 502.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Slavey', [Definition] = NULL, [SortOrder] = 502.00 WHERE [Code] = 'scs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbg', 'North Tairora', NULL, 502.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Tairora', [Definition] = NULL, [SortOrder] = 502.10 WHERE [Code] = 'tbg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnn', 'North Tanna', NULL, 502.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Tanna', [Definition] = NULL, [SortOrder] = 502.20 WHERE [Code] = 'tnn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'whg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('whg', 'North Wahgi', NULL, 502.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Wahgi', [Definition] = NULL, [SortOrder] = 502.30 WHERE [Code] = 'whg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'una') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('una', 'North Watut', NULL, 502.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Watut', [Definition] = NULL, [SortOrder] = 502.40 WHERE [Code] = 'una' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiw', 'Northeast Kiwai', NULL, 502.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeast Kiwai', [Definition] = NULL, [SortOrder] = 502.50 WHERE [Code] = 'kiw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmu', 'Northeast Maidu', NULL, 502.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeast Maidu', [Definition] = NULL, [SortOrder] = 502.60 WHERE [Code] = 'nmu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aee', 'Northeast Pashai', NULL, 502.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeast Pashai', [Definition] = NULL, [SortOrder] = 502.70 WHERE [Code] = 'aee' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dip', 'Northeastern Dinka', NULL, 502.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeastern Dinka', [Definition] = NULL, [SortOrder] = 502.80 WHERE [Code] = 'dip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pef', 'Northeastern Pomo', NULL, 502.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeastern Pomo', [Definition] = NULL, [SortOrder] = 502.90 WHERE [Code] = 'pef' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpb', 'Northeastern Tasmanian', NULL, 503.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeastern Tasmanian', [Definition] = NULL, [SortOrder] = 503.00 WHERE [Code] = 'xpb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tts', 'Northeastern Thai', NULL, 503.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeastern Thai', [Definition] = NULL, [SortOrder] = 503.10 WHERE [Code] = 'tts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqn', 'Northern Alta', NULL, 503.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Alta', [Definition] = NULL, [SortOrder] = 503.20 WHERE [Code] = 'aqn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atv', 'Northern Altai', NULL, 503.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Altai', [Definition] = NULL, [SortOrder] = 503.30 WHERE [Code] = 'atv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ryn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ryn', 'Northern Amami-Oshima', NULL, 503.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Amami-Oshima', [Definition] = NULL, [SortOrder] = 503.40 WHERE [Code] = 'ryn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmm', 'Northern Betsimisaraka Malagasy', NULL, 503.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Betsimisaraka Malagasy', [Definition] = NULL, [SortOrder] = 503.50 WHERE [Code] = 'bmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyn', 'Northern Binukidnon', NULL, 503.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Binukidnon', [Definition] = NULL, [SortOrder] = 503.60 WHERE [Code] = 'kyn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbo', 'Northern Bobo Madaré', NULL, 503.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Bobo Madaré', [Definition] = NULL, [SortOrder] = 503.70 WHERE [Code] = 'bbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rbk', 'Northern Bontok', NULL, 503.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Bontok', [Definition] = NULL, [SortOrder] = 503.80 WHERE [Code] = 'rbk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cts', 'Northern Catanduanes Bikol', NULL, 503.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Catanduanes Bikol', [Definition] = NULL, [SortOrder] = 503.90 WHERE [Code] = 'cts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxn', 'Northern Conchucos Ancash Quechua', NULL, 504.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Conchucos Ancash Quechua', [Definition] = NULL, [SortOrder] = 504.00 WHERE [Code] = 'qxn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgi', 'Northern Dagara', NULL, 504.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Dagara', [Definition] = NULL, [SortOrder] = 504.10 WHERE [Code] = 'dgi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doc', 'Northern Dong', NULL, 504.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Dong', [Definition] = NULL, [SortOrder] = 504.20 WHERE [Code] = 'doc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crl', 'Northern East Cree', NULL, 504.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern East Cree', [Definition] = NULL, [SortOrder] = 504.30 WHERE [Code] = 'crl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emp', 'Northern Emberá', NULL, 504.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Emberá', [Definition] = NULL, [SortOrder] = 504.40 WHERE [Code] = 'emp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frr', 'Northern Frisian', NULL, 504.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Frisian', [Definition] = NULL, [SortOrder] = 504.50 WHERE [Code] = 'frr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghh', 'Northern Ghale', NULL, 504.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Ghale', [Definition] = NULL, [SortOrder] = 504.60 WHERE [Code] = 'ghh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gno', 'Northern Gondi', NULL, 504.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Gondi', [Definition] = NULL, [SortOrder] = 504.70 WHERE [Code] = 'gno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbo', 'Northern Grebo', NULL, 504.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Grebo', [Definition] = NULL, [SortOrder] = 504.80 WHERE [Code] = 'gbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huj', 'Northern Guiyang Hmong', NULL, 504.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 504.90 WHERE [Code] = 'huj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hdn', 'Northern Haida', NULL, 505.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Haida', [Definition] = NULL, [SortOrder] = 505.00 WHERE [Code] = 'hdn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hno', 'Northern Hindko', NULL, 505.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Hindko', [Definition] = NULL, [SortOrder] = 505.10 WHERE [Code] = 'hno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmi', 'Northern Huishui Hmong', NULL, 505.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Huishui Hmong', [Definition] = NULL, [SortOrder] = 505.20 WHERE [Code] = 'hmi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrt', 'Northern Kalapuya', NULL, 505.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Kalapuya', [Definition] = NULL, [SortOrder] = 505.30 WHERE [Code] = 'nrt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnn', 'Northern Kankanay', NULL, 505.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Kankanay', [Definition] = NULL, [SortOrder] = 505.40 WHERE [Code] = 'xnn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncq', 'Northern Katang', NULL, 505.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Katang', [Definition] = NULL, [SortOrder] = 505.50 WHERE [Code] = 'ncq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxm', 'Northern Khmer', NULL, 505.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Khmer', [Definition] = NULL, [SortOrder] = 505.60 WHERE [Code] = 'kxm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqs', 'Northern Kissi', NULL, 505.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Kissi', [Definition] = NULL, [SortOrder] = 505.70 WHERE [Code] = 'kqs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmr', 'Northern Kurdish', NULL, 505.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Kurdish', [Definition] = NULL, [SortOrder] = 505.80 WHERE [Code] = 'kmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrc', 'Northern Luri', NULL, 505.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Luri', [Definition] = NULL, [SortOrder] = 505.90 WHERE [Code] = 'lrc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmp', 'Northern Mashan Hmong', NULL, 506.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Mashan Hmong', [Definition] = NULL, [SortOrder] = 506.00 WHERE [Code] = 'hmp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymx', 'Northern Muji', NULL, 506.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Muji', [Definition] = NULL, [SortOrder] = 506.10 WHERE [Code] = 'ymx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkb', 'Northern Nago', NULL, 506.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Nago', [Definition] = NULL, [SortOrder] = 506.20 WHERE [Code] = 'xkb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngb', 'Northern Ngbandi', NULL, 506.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Ngbandi', [Definition] = NULL, [SortOrder] = 506.30 WHERE [Code] = 'ngb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yiv', 'Northern Nisu', NULL, 506.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Nisu', [Definition] = NULL, [SortOrder] = 506.40 WHERE [Code] = 'yiv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuv', 'Northern Nuni', NULL, 506.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Nuni', [Definition] = NULL, [SortOrder] = 506.50 WHERE [Code] = 'nuv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhy', 'Northern Oaxaca Nahuatl', NULL, 506.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Oaxaca Nahuatl', [Definition] = NULL, [SortOrder] = 506.60 WHERE [Code] = 'nhy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cst', 'Northern Ohlone', NULL, 506.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Ohlone', [Definition] = NULL, [SortOrder] = 506.70 WHERE [Code] = 'cst' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onr', 'Northern One', NULL, 506.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern One', [Definition] = NULL, [SortOrder] = 506.80 WHERE [Code] = 'onr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pao', 'Northern Paiute', NULL, 506.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Paiute', [Definition] = NULL, [SortOrder] = 506.90 WHERE [Code] = 'pao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmq', 'Northern Pame', NULL, 507.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pame', [Definition] = NULL, [SortOrder] = 507.00 WHERE [Code] = 'pmq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbu', 'Northern Pashto', NULL, 507.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pashto', [Definition] = NULL, [SortOrder] = 507.10 WHERE [Code] = 'pbu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvz', 'Northern Pastaza Quichua', NULL, 507.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pastaza Quichua', [Definition] = NULL, [SortOrder] = 507.20 WHERE [Code] = 'qvz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnp', 'Northern Ping Chinese', NULL, 507.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Ping Chinese', [Definition] = NULL, [SortOrder] = 507.30 WHERE [Code] = 'cnp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pej', 'Northern Pomo', NULL, 507.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pomo', [Definition] = NULL, [SortOrder] = 507.40 WHERE [Code] = 'pej' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncj', 'Northern Puebla Nahuatl', NULL, 507.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 507.50 WHERE [Code] = 'ncj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmi', 'Northern Pumi', NULL, 507.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pumi', [Definition] = NULL, [SortOrder] = 507.60 WHERE [Code] = 'pmi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hea', 'Northern Qiandong Miao', NULL, 507.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Qiandong Miao', [Definition] = NULL, [SortOrder] = 507.70 WHERE [Code] = 'hea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cng', 'Northern Qiang', NULL, 507.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Qiang', [Definition] = NULL, [SortOrder] = 507.80 WHERE [Code] = 'cng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnl', 'Northern Rengma Naga', NULL, 507.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Rengma Naga', [Definition] = NULL, [SortOrder] = 507.90 WHERE [Code] = 'nnl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rog', 'Northern Roglai', NULL, 508.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Roglai', [Definition] = NULL, [SortOrder] = 508.00 WHERE [Code] = 'rog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sme', 'Northern Sami', NULL, 508.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Sami', [Definition] = NULL, [SortOrder] = 508.10 WHERE [Code] = 'sme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsq', 'Northern Sierra Miwok', NULL, 508.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Sierra Miwok', [Definition] = NULL, [SortOrder] = 508.20 WHERE [Code] = 'nsq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bks', 'Northern Sorsoganon', NULL, 508.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Sorsoganon', [Definition] = NULL, [SortOrder] = 508.30 WHERE [Code] = 'bks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stb', 'Northern Subanen', NULL, 508.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Subanen', [Definition] = NULL, [SortOrder] = 508.40 WHERE [Code] = 'stb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thh', 'Northern Tarahumara', NULL, 508.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tarahumara', [Definition] = NULL, [SortOrder] = 508.50 WHERE [Code] = 'thh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpv', 'Northern Tasmanian', NULL, 508.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tasmanian', [Definition] = NULL, [SortOrder] = 508.60 WHERE [Code] = 'xpv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntp', 'Northern Tepehuan', NULL, 508.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tepehuan', [Definition] = NULL, [SortOrder] = 508.70 WHERE [Code] = 'ntp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nod', 'Northern Thai', NULL, 508.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Thai', [Definition] = NULL, [SortOrder] = 508.80 WHERE [Code] = 'nod' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntd', 'Northern Tidung', NULL, 508.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tidung', [Definition] = NULL, [SortOrder] = 508.90 WHERE [Code] = 'ntd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twf', 'Northern Tiwa', NULL, 509.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tiwa', [Definition] = NULL, [SortOrder] = 509.00 WHERE [Code] = 'twf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtn', 'Northern Tlaxiaco Mixtec', NULL, 509.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tlaxiaco Mixtec', [Definition] = NULL, [SortOrder] = 509.10 WHERE [Code] = 'xtn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsp', 'Northern Toussian', NULL, 509.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Toussian', [Definition] = NULL, [SortOrder] = 509.20 WHERE [Code] = 'tsp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tji', 'Northern Tujia', NULL, 509.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tujia', [Definition] = NULL, [SortOrder] = 509.30 WHERE [Code] = 'tji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttm', 'Northern Tutchone', NULL, 509.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tutchone', [Definition] = NULL, [SortOrder] = 509.40 WHERE [Code] = 'ttm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uzn', 'Northern Uzbek', NULL, 509.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Uzbek', [Definition] = NULL, [SortOrder] = 509.50 WHERE [Code] = 'uzn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykg', 'Northern Yukaghir', NULL, 509.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Yukaghir', [Definition] = NULL, [SortOrder] = 509.60 WHERE [Code] = 'ykg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esk', 'Northwest Alaska Inupiatun', NULL, 509.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Alaska Inupiatun', [Definition] = NULL, [SortOrder] = 509.70 WHERE [Code] = 'esk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gya', 'Northwest Gbaya', NULL, 509.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Gbaya', [Definition] = NULL, [SortOrder] = 509.80 WHERE [Code] = 'gya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjd', 'Northwest Maidu', NULL, 509.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Maidu', [Definition] = NULL, [SortOrder] = 509.90 WHERE [Code] = 'mjd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxa', 'Northwest Oaxaca Mixtec', NULL, 510.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Oaxaca Mixtec', [Definition] = NULL, [SortOrder] = 510.00 WHERE [Code] = 'mxa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glh', 'Northwest Pashai', NULL, 510.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Pashai', [Definition] = NULL, [SortOrder] = 510.10 WHERE [Code] = 'glh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diw', 'Northwestern Dinka', NULL, 510.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Dinka', [Definition] = NULL, [SortOrder] = 510.20 WHERE [Code] = 'diw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'faz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('faz', 'Northwestern Fars', NULL, 510.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Fars', [Definition] = NULL, [SortOrder] = 510.30 WHERE [Code] = 'faz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfb', 'Northwestern Kolami', NULL, 510.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Kolami', [Definition] = NULL, [SortOrder] = 510.40 WHERE [Code] = 'kfb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsf', 'Northwestern Nisu', NULL, 510.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Nisu', [Definition] = NULL, [SortOrder] = 510.50 WHERE [Code] = 'nsf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojb', 'Northwestern Ojibwa', NULL, 510.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Ojibwa', [Definition] = NULL, [SortOrder] = 510.60 WHERE [Code] = 'ojb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmk', 'Northwestern Tamang', NULL, 510.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Tamang', [Definition] = NULL, [SortOrder] = 510.70 WHERE [Code] = 'tmk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpw', 'Northwestern Tasmanian', NULL, 510.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Tasmanian', [Definition] = NULL, [SortOrder] = 510.80 WHERE [Code] = 'xpw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nor', 'Norwegian', NULL, 510.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norwegian', [Definition] = NULL, [SortOrder] = 510.90 WHERE [Code] = 'nor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nob', 'Norwegian Bokmål', NULL, 511.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norwegian Bokmål', [Definition] = NULL, [SortOrder] = 511.00 WHERE [Code] = 'nob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nno', 'Norwegian Nynorsk', NULL, 511.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norwegian Nynorsk', [Definition] = NULL, [SortOrder] = 511.10 WHERE [Code] = 'nno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsl', 'Norwegian Sign Language', NULL, 511.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norwegian Sign Language', [Definition] = NULL, [SortOrder] = 511.20 WHERE [Code] = 'nsl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bly', 'Notre', NULL, 511.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Notre', [Definition] = NULL, [SortOrder] = 511.30 WHERE [Code] = 'bly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncf', 'Notsi', NULL, 511.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Notsi', [Definition] = NULL, [SortOrder] = 511.40 WHERE [Code] = 'ncf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntw', 'Nottoway', NULL, 511.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nottoway', [Definition] = NULL, [SortOrder] = 511.50 WHERE [Code] = 'ntw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwy', 'Nottoway-Meherrin', NULL, 511.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nottoway-Meherrin', [Definition] = NULL, [SortOrder] = 511.60 WHERE [Code] = 'nwy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nov', 'Novial', NULL, 511.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Novial', [Definition] = NULL, [SortOrder] = 511.70 WHERE [Code] = 'nov' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noy', 'Noy', NULL, 511.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noy', [Definition] = NULL, [SortOrder] = 511.80 WHERE [Code] = 'noy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nse', 'Nsenga', NULL, 511.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nsenga', [Definition] = NULL, [SortOrder] = 511.90 WHERE [Code] = 'nse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsc', 'Nshi', NULL, 512.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nshi', [Definition] = NULL, [SortOrder] = 512.00 WHERE [Code] = 'nsc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsx', 'Nsongo', NULL, 512.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nsongo', [Definition] = NULL, [SortOrder] = 512.10 WHERE [Code] = 'nsx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bud', 'Ntcham', NULL, 512.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ntcham', [Definition] = NULL, [SortOrder] = 512.20 WHERE [Code] = 'bud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqt', 'Nteng', NULL, 512.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nteng', [Definition] = NULL, [SortOrder] = 512.30 WHERE [Code] = 'nqt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nto', 'Ntomba', NULL, 512.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ntomba', [Definition] = NULL, [SortOrder] = 512.40 WHERE [Code] = 'nto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'baf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baf', 'Nubaca', NULL, 512.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nubaca', [Definition] = NULL, [SortOrder] = 512.50 WHERE [Code] = 'baf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcn', 'Nubi', NULL, 512.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nubi', [Definition] = NULL, [SortOrder] = 512.60 WHERE [Code] = 'kcn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kte', 'Nubri', NULL, 512.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nubri', [Definition] = NULL, [SortOrder] = 512.70 WHERE [Code] = 'kte' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nus', 'Nuer', NULL, 512.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nuer', [Definition] = NULL, [SortOrder] = 512.80 WHERE [Code] = 'nus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnv', 'Nugunu (Australia)', NULL, 512.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nugunu (Australia)', [Definition] = NULL, [SortOrder] = 512.90 WHERE [Code] = 'nnv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yas', 'Nugunu (Cameroon)', NULL, 513.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nugunu (Cameroon)', [Definition] = NULL, [SortOrder] = 513.00 WHERE [Code] = 'yas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noc', 'Nuk', NULL, 513.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nuk', [Definition] = NULL, [SortOrder] = 513.10 WHERE [Code] = 'noc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbr', 'Nukak Makú', NULL, 513.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukak Makú', [Definition] = NULL, [SortOrder] = 513.20 WHERE [Code] = 'mbr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klt', 'Nukna', NULL, 513.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukna', [Definition] = NULL, [SortOrder] = 513.30 WHERE [Code] = 'klt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuc', 'Nukuini', NULL, 513.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukuini', [Definition] = NULL, [SortOrder] = 513.40 WHERE [Code] = 'nuc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuq', 'Nukumanu', NULL, 513.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukumanu', [Definition] = NULL, [SortOrder] = 513.50 WHERE [Code] = 'nuq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnu', 'Nukunul', NULL, 513.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukunul', [Definition] = NULL, [SortOrder] = 513.60 WHERE [Code] = 'xnu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkr', 'Nukuoro', NULL, 513.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukuoro', [Definition] = NULL, [SortOrder] = 513.70 WHERE [Code] = 'nkr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nur', 'Nukuria', NULL, 513.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukuria', [Definition] = NULL, [SortOrder] = 513.80 WHERE [Code] = 'nur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbr', 'Numana', NULL, 513.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numana', [Definition] = NULL, [SortOrder] = 513.90 WHERE [Code] = 'nbr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nop', 'Numanggang', NULL, 514.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numanggang', [Definition] = NULL, [SortOrder] = 514.00 WHERE [Code] = 'nop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sij', 'Numbami', NULL, 514.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numbami', [Definition] = NULL, [SortOrder] = 514.10 WHERE [Code] = 'sij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgs', 'Nume', NULL, 514.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nume', [Definition] = NULL, [SortOrder] = 514.20 WHERE [Code] = 'tgs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdk', 'Numèè', NULL, 514.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numèè', [Definition] = NULL, [SortOrder] = 514.30 WHERE [Code] = 'kdk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxm', 'Numidian', NULL, 514.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numidian', [Definition] = NULL, [SortOrder] = 514.40 WHERE [Code] = 'nxm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nut', 'Nung (Viet Nam)', NULL, 514.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nung (Viet Nam)', [Definition] = NULL, [SortOrder] = 514.50 WHERE [Code] = 'nut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nug', 'Nungali', NULL, 514.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nungali', [Definition] = NULL, [SortOrder] = 514.60 WHERE [Code] = 'nug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuy', 'Nunggubuyu', NULL, 514.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nunggubuyu', [Definition] = NULL, [SortOrder] = 514.70 WHERE [Code] = 'nuy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rin', 'Nungu', NULL, 514.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nungu', [Definition] = NULL, [SortOrder] = 514.80 WHERE [Code] = 'rin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npb', 'Nupbikha', NULL, 514.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nupbikha', [Definition] = NULL, [SortOrder] = 514.90 WHERE [Code] = 'npb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nup', 'Nupe-Nupe-Tako', NULL, 515.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nupe-Nupe-Tako', [Definition] = NULL, [SortOrder] = 515.00 WHERE [Code] = 'nup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hux', 'Nüpode Huitoto', NULL, 515.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nüpode Huitoto', [Definition] = NULL, [SortOrder] = 515.10 WHERE [Code] = 'hux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nul', 'Nusa Laut', NULL, 515.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nusa Laut', [Definition] = NULL, [SortOrder] = 515.20 WHERE [Code] = 'nul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuf', 'Nusu', NULL, 515.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nusu', [Definition] = NULL, [SortOrder] = 515.30 WHERE [Code] = 'nuf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuk', 'Nuu-chah-nulth', NULL, 515.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nuu-chah-nulth', [Definition] = NULL, [SortOrder] = 515.40 WHERE [Code] = 'nuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwb', 'Nyabwa', NULL, 515.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyabwa', [Definition] = NULL, [SortOrder] = 515.50 WHERE [Code] = 'nwb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nev', 'Nyaheun', NULL, 515.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyaheun', [Definition] = NULL, [SortOrder] = 515.60 WHERE [Code] = 'nev' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbn', 'Nyahkur', NULL, 515.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyahkur', [Definition] = NULL, [SortOrder] = 515.70 WHERE [Code] = 'cbn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyy', 'Nyakyusa-Ngonde', NULL, 515.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyakyusa-Ngonde', [Definition] = NULL, [SortOrder] = 515.80 WHERE [Code] = 'nyy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yly', 'Nyâlayu', NULL, 515.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyâlayu', [Definition] = NULL, [SortOrder] = 515.90 WHERE [Code] = 'yly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlj', 'Nyali', NULL, 516.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyali', [Definition] = NULL, [SortOrder] = 516.00 WHERE [Code] = 'nlj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmi', 'Nyam', NULL, 516.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyam', [Definition] = NULL, [SortOrder] = 516.10 WHERE [Code] = 'nmi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nly', 'Nyamal', NULL, 516.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyamal', [Definition] = NULL, [SortOrder] = 516.20 WHERE [Code] = 'nly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'now') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('now', 'Nyambo', NULL, 516.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyambo', [Definition] = NULL, [SortOrder] = 516.30 WHERE [Code] = 'now' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwm', 'Nyamusa-Molo', NULL, 516.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyamusa-Molo', [Definition] = NULL, [SortOrder] = 516.40 WHERE [Code] = 'nwm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwn', 'Nyamwanga', NULL, 516.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyamwanga', [Definition] = NULL, [SortOrder] = 516.50 WHERE [Code] = 'mwn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nym', 'Nyamwezi', NULL, 516.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyamwezi', [Definition] = NULL, [SortOrder] = 516.60 WHERE [Code] = 'nym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyk', 'Nyaneka', NULL, 516.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyaneka', [Definition] = NULL, [SortOrder] = 516.70 WHERE [Code] = 'nyk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyp', 'Nyang''i', NULL, 516.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyang''i', [Definition] = NULL, [SortOrder] = 516.80 WHERE [Code] = 'nyp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyj', 'Nyanga', NULL, 516.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyanga', [Definition] = NULL, [SortOrder] = 516.90 WHERE [Code] = 'nyj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyc', 'Nyanga-li', NULL, 517.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyanga-li', [Definition] = NULL, [SortOrder] = 517.00 WHERE [Code] = 'nyc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnj', 'Nyangatom', NULL, 517.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyangatom', [Definition] = NULL, [SortOrder] = 517.10 WHERE [Code] = 'nnj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyb', 'Nyangbo', NULL, 517.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyangbo', [Definition] = NULL, [SortOrder] = 517.20 WHERE [Code] = 'nyb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nny', 'Nyangga', NULL, 517.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyangga', [Definition] = NULL, [SortOrder] = 517.30 WHERE [Code] = 'nny' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nna', 'Nyangumarta', NULL, 517.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyangumarta', [Definition] = NULL, [SortOrder] = 517.40 WHERE [Code] = 'nna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nya', 'Nyanja', NULL, 517.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyanja', [Definition] = NULL, [SortOrder] = 517.50 WHERE [Code] = 'nya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyn', 'Nyankole', NULL, 517.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyankole', [Definition] = NULL, [SortOrder] = 517.60 WHERE [Code] = 'nyn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yes', 'Nyankpa', NULL, 517.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyankpa', [Definition] = NULL, [SortOrder] = 517.70 WHERE [Code] = 'yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sev', 'Nyarafolo Senoufo', NULL, 517.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyarafolo Senoufo', [Definition] = NULL, [SortOrder] = 517.80 WHERE [Code] = 'sev' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rim', 'Nyaturu', NULL, 517.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyaturu', [Definition] = NULL, [SortOrder] = 517.90 WHERE [Code] = 'rim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyw', 'Nyaw', NULL, 518.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyaw', [Definition] = NULL, [SortOrder] = 518.00 WHERE [Code] = 'nyw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyt', 'Nyawaygi', NULL, 518.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyawaygi', [Definition] = NULL, [SortOrder] = 518.10 WHERE [Code] = 'nyt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nba', 'Nyemba', NULL, 518.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyemba', [Definition] = NULL, [SortOrder] = 518.20 WHERE [Code] = 'nba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nye', 'Nyengo', NULL, 518.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyengo', [Definition] = NULL, [SortOrder] = 518.30 WHERE [Code] = 'nye' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neh', 'Nyenkha', NULL, 518.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyenkha', [Definition] = NULL, [SortOrder] = 518.40 WHERE [Code] = 'neh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyl', 'Nyeu', NULL, 518.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyeu', [Definition] = NULL, [SortOrder] = 518.50 WHERE [Code] = 'nyl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyr', 'Nyiha (Malawi)', NULL, 518.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyiha (Malawi)', [Definition] = NULL, [SortOrder] = 518.60 WHERE [Code] = 'nyr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nih', 'Nyiha (Tanzania)', NULL, 518.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyiha (Tanzania)', [Definition] = NULL, [SortOrder] = 518.70 WHERE [Code] = 'nih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkv', 'Nyika (Malawi and Zambia)', NULL, 518.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyika (Malawi and Zambia)', [Definition] = NULL, [SortOrder] = 518.80 WHERE [Code] = 'nkv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkt', 'Nyika (Tanzania)', NULL, 518.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyika (Tanzania)', [Definition] = NULL, [SortOrder] = 518.90 WHERE [Code] = 'nkt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyh', 'Nyikina', NULL, 519.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyikina', [Definition] = NULL, [SortOrder] = 519.00 WHERE [Code] = 'nyh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lid', 'Nyindrou', NULL, 519.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyindrou', [Definition] = NULL, [SortOrder] = 519.10 WHERE [Code] = 'lid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyg', 'Nyindu', NULL, 519.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyindu', [Definition] = NULL, [SortOrder] = 519.20 WHERE [Code] = 'nyg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njz', 'Nyishi', NULL, 519.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyishi', [Definition] = NULL, [SortOrder] = 519.30 WHERE [Code] = 'njz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xny', 'Nyiyaparli', NULL, 519.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyiyaparli', [Definition] = NULL, [SortOrder] = 519.40 WHERE [Code] = 'xny' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nvo', 'Nyokon', NULL, 519.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyokon', [Definition] = NULL, [SortOrder] = 519.50 WHERE [Code] = 'nvo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuj', 'Nyole', NULL, 519.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyole', [Definition] = NULL, [SortOrder] = 519.60 WHERE [Code] = 'nuj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muo', 'Nyong', NULL, 519.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyong', [Definition] = NULL, [SortOrder] = 519.70 WHERE [Code] = 'muo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyd', 'Nyore', NULL, 519.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyore', [Definition] = NULL, [SortOrder] = 519.80 WHERE [Code] = 'nyd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyo', 'Nyoro', NULL, 519.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyoro', [Definition] = NULL, [SortOrder] = 519.90 WHERE [Code] = 'nyo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyv', 'Nyulnyul', NULL, 520.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyulnyul', [Definition] = NULL, [SortOrder] = 520.00 WHERE [Code] = 'nyv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nys', 'Nyungar', NULL, 520.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyungar', [Definition] = NULL, [SortOrder] = 520.10 WHERE [Code] = 'nys' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyu', 'Nyungwe', NULL, 520.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyungwe', [Definition] = NULL, [SortOrder] = 520.20 WHERE [Code] = 'nyu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzd', 'Nzadi', NULL, 520.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzadi', [Definition] = NULL, [SortOrder] = 520.30 WHERE [Code] = 'nzd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzy', 'Nzakambay', NULL, 520.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzakambay', [Definition] = NULL, [SortOrder] = 520.40 WHERE [Code] = 'nzy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzk', 'Nzakara', NULL, 520.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzakara', [Definition] = NULL, [SortOrder] = 520.50 WHERE [Code] = 'nzk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nja', 'Nzanyi', NULL, 520.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzanyi', [Definition] = NULL, [SortOrder] = 520.60 WHERE [Code] = 'nja' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzi', 'Nzima', NULL, 520.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzima', [Definition] = NULL, [SortOrder] = 520.70 WHERE [Code] = 'nzi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xoc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xoc', 'O''chi''chi''', NULL, 520.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'O''chi''chi''', [Definition] = NULL, [SortOrder] = 520.80 WHERE [Code] = 'xoc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyh', 'O''du', NULL, 520.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'O''du', [Definition] = NULL, [SortOrder] = 520.90 WHERE [Code] = 'tyh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzy', 'Obanliku', NULL, 521.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obanliku', [Definition] = NULL, [SortOrder] = 521.00 WHERE [Code] = 'bzy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obi', 'Obispeño', NULL, 521.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obispeño', [Definition] = NULL, [SortOrder] = 521.10 WHERE [Code] = 'obi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obl', 'Oblo', NULL, 521.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oblo', [Definition] = NULL, [SortOrder] = 521.20 WHERE [Code] = 'obl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obo', 'Obo Manobo', NULL, 521.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obo Manobo', [Definition] = NULL, [SortOrder] = 521.30 WHERE [Code] = 'obo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afz', 'Obokuitai', NULL, 521.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obokuitai', [Definition] = NULL, [SortOrder] = 521.40 WHERE [Code] = 'afz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ann') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ann', 'Obolo', NULL, 521.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obolo', [Definition] = NULL, [SortOrder] = 521.50 WHERE [Code] = 'ann' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obu', 'Obulom', NULL, 521.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obulom', [Definition] = NULL, [SortOrder] = 521.60 WHERE [Code] = 'obu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oca', 'Ocaina', NULL, 521.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ocaina', [Definition] = NULL, [SortOrder] = 521.70 WHERE [Code] = 'oca' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oci', 'Occitan (post 1500)', NULL, 521.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Occitan (post 1500)', [Definition] = NULL, [SortOrder] = 521.80 WHERE [Code] = 'oci' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mie', 'Ocotepec Mixtec', NULL, 521.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ocotepec Mixtec', [Definition] = NULL, [SortOrder] = 521.90 WHERE [Code] = 'mie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zac', 'Ocotlán Zapotec', NULL, 522.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ocotlán Zapotec', [Definition] = NULL, [SortOrder] = 522.00 WHERE [Code] = 'zac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'odk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('odk', 'Od', NULL, 522.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Od', [Definition] = NULL, [SortOrder] = 522.10 WHERE [Code] = 'odk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ory') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ory', 'Odia', NULL, 522.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odia', [Definition] = NULL, [SortOrder] = 522.20 WHERE [Code] = 'ory' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhf', 'Odiai', NULL, 522.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odiai', [Definition] = NULL, [SortOrder] = 522.30 WHERE [Code] = 'bhf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkc', 'Odoodee', NULL, 522.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odoodee', [Definition] = NULL, [SortOrder] = 522.40 WHERE [Code] = 'kkc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'odu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('odu', 'Odual', NULL, 522.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odual', [Definition] = NULL, [SortOrder] = 522.50 WHERE [Code] = 'odu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oda', 'Odut', NULL, 522.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odut', [Definition] = NULL, [SortOrder] = 522.60 WHERE [Code] = 'oda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opy', 'Ofayé', NULL, 522.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ofayé', [Definition] = NULL, [SortOrder] = 522.70 WHERE [Code] = 'opy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arc', 'Official Aramaic (700-300 BCE)', NULL, 522.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Official Aramaic (700-300 BCE)', [Definition] = NULL, [SortOrder] = 522.80 WHERE [Code] = 'arc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ofo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ofo', 'Ofo', NULL, 522.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ofo', [Definition] = NULL, [SortOrder] = 522.90 WHERE [Code] = 'ofo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogc', 'Ogbah', NULL, 523.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogbah', [Definition] = NULL, [SortOrder] = 523.00 WHERE [Code] = 'ogc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogb', 'Ogbia', NULL, 523.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogbia', [Definition] = NULL, [SortOrder] = 523.10 WHERE [Code] = 'ogb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogg', 'Ogbogolo', NULL, 523.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogbogolo', [Definition] = NULL, [SortOrder] = 523.20 WHERE [Code] = 'ogg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogu', 'Ogbronuagum', NULL, 523.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogbronuagum', [Definition] = NULL, [SortOrder] = 523.30 WHERE [Code] = 'ogu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eri', 'Ogea', NULL, 523.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogea', [Definition] = NULL, [SortOrder] = 523.40 WHERE [Code] = 'eri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oia', 'Oirata', NULL, 523.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oirata', [Definition] = NULL, [SortOrder] = 523.50 WHERE [Code] = 'oia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oji', 'Ojibwa', NULL, 523.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ojibwa', [Definition] = NULL, [SortOrder] = 523.60 WHERE [Code] = 'oji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chj', 'Ojitlán Chinantec', NULL, 523.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ojitlán Chinantec', [Definition] = NULL, [SortOrder] = 523.70 WHERE [Code] = 'chj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oka', 'Okanagan', NULL, 523.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okanagan', [Definition] = NULL, [SortOrder] = 523.80 WHERE [Code] = 'oka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okn', 'Oki-No-Erabu', NULL, 523.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oki-No-Erabu', [Definition] = NULL, [SortOrder] = 523.90 WHERE [Code] = 'okn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oki', 'Okiek', NULL, 524.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okiek', [Definition] = NULL, [SortOrder] = 524.00 WHERE [Code] = 'oki' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oks', 'Oko-Eni-Osayen', NULL, 524.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oko-Eni-Osayen', [Definition] = NULL, [SortOrder] = 524.10 WHERE [Code] = 'oks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okj', 'Oko-Juwoi', NULL, 524.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oko-Juwoi', [Definition] = NULL, [SortOrder] = 524.20 WHERE [Code] = 'okj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okb', 'Okobo', NULL, 524.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okobo', [Definition] = NULL, [SortOrder] = 524.30 WHERE [Code] = 'okb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okd', 'Okodia', NULL, 524.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okodia', [Definition] = NULL, [SortOrder] = 524.40 WHERE [Code] = 'okd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oie', 'Okolie', NULL, 524.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okolie', [Definition] = NULL, [SortOrder] = 524.50 WHERE [Code] = 'oie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqv', 'Okolod', NULL, 524.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okolod', [Definition] = NULL, [SortOrder] = 524.60 WHERE [Code] = 'kqv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opa', 'Okpamheri', NULL, 524.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okpamheri', [Definition] = NULL, [SortOrder] = 524.70 WHERE [Code] = 'opa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okx', 'Okpe (Northwestern Edo)', NULL, 524.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okpe (Northwestern Edo)', [Definition] = NULL, [SortOrder] = 524.80 WHERE [Code] = 'okx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oke', 'Okpe (Southwestern Edo)', NULL, 524.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okpe (Southwestern Edo)', [Definition] = NULL, [SortOrder] = 524.90 WHERE [Code] = 'oke' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opm', 'Oksapmin', NULL, 525.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oksapmin', [Definition] = NULL, [SortOrder] = 525.00 WHERE [Code] = 'opm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oku', 'Oku', NULL, 525.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oku', [Definition] = NULL, [SortOrder] = 525.10 WHERE [Code] = 'oku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oar', 'Old Aramaic (up to 700 BCE)', NULL, 525.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Aramaic (up to 700 BCE)', [Definition] = NULL, [SortOrder] = 525.20 WHERE [Code] = 'oar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oav', 'Old Avar', NULL, 525.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Avar', [Definition] = NULL, [SortOrder] = 525.30 WHERE [Code] = 'oav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obt', 'Old Breton', NULL, 525.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Breton', [Definition] = NULL, [SortOrder] = 525.40 WHERE [Code] = 'obt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obr', 'Old Burmese', NULL, 525.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Burmese', [Definition] = NULL, [SortOrder] = 525.50 WHERE [Code] = 'obr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ocm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ocm', 'Old Cham', NULL, 525.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Cham', [Definition] = NULL, [SortOrder] = 525.60 WHERE [Code] = 'ocm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'och') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('och', 'Old Chinese', NULL, 525.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Chinese', [Definition] = NULL, [SortOrder] = 525.70 WHERE [Code] = 'och' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oco', 'Old Cornish', NULL, 525.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Cornish', [Definition] = NULL, [SortOrder] = 525.80 WHERE [Code] = 'oco' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'odt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('odt', 'Old Dutch', NULL, 525.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Dutch', [Definition] = NULL, [SortOrder] = 525.90 WHERE [Code] = 'odt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ang') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ang', 'Old English (ca. 450-1100)', NULL, 526.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old English (ca. 450-1100)', [Definition] = NULL, [SortOrder] = 526.00 WHERE [Code] = 'ang' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fro', 'Old French (842-ca. 1400)', NULL, 526.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old French (842-ca. 1400)', [Definition] = NULL, [SortOrder] = 526.10 WHERE [Code] = 'fro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ofs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ofs', 'Old Frisian', NULL, 526.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Frisian', [Definition] = NULL, [SortOrder] = 526.20 WHERE [Code] = 'ofs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oge', 'Old Georgian', NULL, 526.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Georgian', [Definition] = NULL, [SortOrder] = 526.30 WHERE [Code] = 'oge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goh', 'Old High German (ca. 750-1050)', NULL, 526.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old High German (ca. 750-1050)', [Definition] = NULL, [SortOrder] = 526.40 WHERE [Code] = 'goh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oht', 'Old Hittite', NULL, 526.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Hittite', [Definition] = NULL, [SortOrder] = 526.50 WHERE [Code] = 'oht' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ohu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ohu', 'Old Hungarian', NULL, 526.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Hungarian', [Definition] = NULL, [SortOrder] = 526.60 WHERE [Code] = 'ohu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sga', 'Old Irish (to 900)', NULL, 526.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Irish (to 900)', [Definition] = NULL, [SortOrder] = 526.70 WHERE [Code] = 'sga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojp', 'Old Japanese', NULL, 526.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Japanese', [Definition] = NULL, [SortOrder] = 526.80 WHERE [Code] = 'ojp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okl', 'Old Kentish Sign Language', NULL, 526.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Kentish Sign Language', [Definition] = NULL, [SortOrder] = 526.90 WHERE [Code] = 'okl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okz', 'Old Khmer', NULL, 527.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Khmer', [Definition] = NULL, [SortOrder] = 527.00 WHERE [Code] = 'okz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oko', 'Old Korean (3rd-9th cent.)', NULL, 527.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Korean (3rd-9th cent.)', [Definition] = NULL, [SortOrder] = 527.10 WHERE [Code] = 'oko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olt', 'Old Lithuanian', NULL, 527.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Lithuanian', [Definition] = NULL, [SortOrder] = 527.20 WHERE [Code] = 'olt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omy', 'Old Malay', NULL, 527.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Malay', [Definition] = NULL, [SortOrder] = 527.30 WHERE [Code] = 'omy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omp', 'Old Manipuri', NULL, 527.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Manipuri', [Definition] = NULL, [SortOrder] = 527.40 WHERE [Code] = 'omp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omr', 'Old Marathi', NULL, 527.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Marathi', [Definition] = NULL, [SortOrder] = 527.50 WHERE [Code] = 'omr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omx', 'Old Mon', NULL, 527.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Mon', [Definition] = NULL, [SortOrder] = 527.60 WHERE [Code] = 'omx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'non') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('non', 'Old Norse', NULL, 527.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Norse', [Definition] = NULL, [SortOrder] = 527.70 WHERE [Code] = 'non' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onw', 'Old Nubian', NULL, 527.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Nubian', [Definition] = NULL, [SortOrder] = 527.80 WHERE [Code] = 'onw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oos', 'Old Ossetic', NULL, 527.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Ossetic', [Definition] = NULL, [SortOrder] = 527.90 WHERE [Code] = 'oos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peo', 'Old Persian (ca. 600-400 B.C.)', NULL, 528.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Persian (ca. 600-400 B.C.)', [Definition] = NULL, [SortOrder] = 528.00 WHERE [Code] = 'peo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pro', 'Old Provençal (to 1500)', NULL, 528.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Provençal (to 1500)', [Definition] = NULL, [SortOrder] = 528.10 WHERE [Code] = 'pro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orv', 'Old Russian', NULL, 528.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Russian', [Definition] = NULL, [SortOrder] = 528.20 WHERE [Code] = 'orv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osx', 'Old Saxon', NULL, 528.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Saxon', [Definition] = NULL, [SortOrder] = 528.30 WHERE [Code] = 'osx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osp', 'Old Spanish', NULL, 528.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Spanish', [Definition] = NULL, [SortOrder] = 528.40 WHERE [Code] = 'osp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osn', 'Old Sundanese', NULL, 528.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Sundanese', [Definition] = NULL, [SortOrder] = 528.50 WHERE [Code] = 'osn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oty', 'Old Tamil', NULL, 528.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Tamil', [Definition] = NULL, [SortOrder] = 528.60 WHERE [Code] = 'oty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otb', 'Old Tibetan', NULL, 528.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Tibetan', [Definition] = NULL, [SortOrder] = 528.70 WHERE [Code] = 'otb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otk', 'Old Turkish', NULL, 528.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Turkish', [Definition] = NULL, [SortOrder] = 528.80 WHERE [Code] = 'otk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oui', 'Old Uighur', NULL, 528.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Uighur', [Definition] = NULL, [SortOrder] = 528.90 WHERE [Code] = 'oui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'owl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('owl', 'Old Welsh', NULL, 529.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Welsh', [Definition] = NULL, [SortOrder] = 529.00 WHERE [Code] = 'owl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ole') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ole', 'Olekha', NULL, 529.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olekha', [Definition] = NULL, [SortOrder] = 529.10 WHERE [Code] = 'ole' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olk', 'Olkol', NULL, 529.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olkol', [Definition] = NULL, [SortOrder] = 529.20 WHERE [Code] = 'olk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ong') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ong', 'Olo', NULL, 529.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olo', [Definition] = NULL, [SortOrder] = 529.30 WHERE [Code] = 'ong' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olm', 'Oloma', NULL, 529.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oloma', [Definition] = NULL, [SortOrder] = 529.40 WHERE [Code] = 'olm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olr', 'Olrat', NULL, 529.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olrat', [Definition] = NULL, [SortOrder] = 529.50 WHERE [Code] = 'olr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lul', 'Olu''bo', NULL, 529.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olu''bo', [Definition] = NULL, [SortOrder] = 529.60 WHERE [Code] = 'lul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iko', 'Olulumo-Ikom', NULL, 529.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olulumo-Ikom', [Definition] = NULL, [SortOrder] = 529.70 WHERE [Code] = 'iko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plo', 'Oluta Popoluca', NULL, 529.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oluta Popoluca', [Definition] = NULL, [SortOrder] = 529.80 WHERE [Code] = 'plo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omg', 'Omagua', NULL, 529.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omagua', [Definition] = NULL, [SortOrder] = 529.90 WHERE [Code] = 'omg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oma', 'Omaha-Ponca', NULL, 530.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omaha-Ponca', [Definition] = NULL, [SortOrder] = 530.00 WHERE [Code] = 'oma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acx', 'Omani Arabic', NULL, 530.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omani Arabic', [Definition] = NULL, [SortOrder] = 530.10 WHERE [Code] = 'acx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbm', 'Ombamba', NULL, 530.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ombamba', [Definition] = NULL, [SortOrder] = 530.20 WHERE [Code] = 'mbm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oml', 'Ombo', NULL, 530.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ombo', [Definition] = NULL, [SortOrder] = 530.30 WHERE [Code] = 'oml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nht', 'Ometepec Nahuatl', NULL, 530.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ometepec Nahuatl', [Definition] = NULL, [SortOrder] = 530.40 WHERE [Code] = 'nht' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omi', 'Omi', NULL, 530.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omi', [Definition] = NULL, [SortOrder] = 530.50 WHERE [Code] = 'omi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aom', 'Ömie', NULL, 530.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ömie', [Definition] = NULL, [SortOrder] = 530.60 WHERE [Code] = 'aom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omk', 'Omok', NULL, 530.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omok', [Definition] = NULL, [SortOrder] = 530.70 WHERE [Code] = 'omk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omt', 'Omotik', NULL, 530.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omotik', [Definition] = NULL, [SortOrder] = 530.80 WHERE [Code] = 'omt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omu', 'Omurano', NULL, 530.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omurano', [Definition] = NULL, [SortOrder] = 530.90 WHERE [Code] = 'omu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ona') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ona', 'Ona', NULL, 531.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ona', [Definition] = NULL, [SortOrder] = 531.00 WHERE [Code] = 'ona' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'one') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('one', 'Oneida', NULL, 531.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oneida', [Definition] = NULL, [SortOrder] = 531.10 WHERE [Code] = 'one' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oog', 'Ong', NULL, 531.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ong', [Definition] = NULL, [SortOrder] = 531.20 WHERE [Code] = 'oog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oon', 'Önge', NULL, 531.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Önge', [Definition] = NULL, [SortOrder] = 531.30 WHERE [Code] = 'oon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oni', 'Onin', NULL, 531.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onin', [Definition] = NULL, [SortOrder] = 531.40 WHERE [Code] = 'oni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onx', 'Onin Based Pidgin', NULL, 531.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onin Based Pidgin', [Definition] = NULL, [SortOrder] = 531.50 WHERE [Code] = 'onx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onj', 'Onjob', NULL, 531.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onjob', [Definition] = NULL, [SortOrder] = 531.60 WHERE [Code] = 'onj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ons') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ons', 'Ono', NULL, 531.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ono', [Definition] = NULL, [SortOrder] = 531.70 WHERE [Code] = 'ons' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onn', 'Onobasulu', NULL, 531.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onobasulu', [Definition] = NULL, [SortOrder] = 531.80 WHERE [Code] = 'onn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ono') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ono', 'Onondaga', NULL, 531.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onondaga', [Definition] = NULL, [SortOrder] = 531.90 WHERE [Code] = 'ono' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ont') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ont', 'Ontenu', NULL, 532.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ontenu', [Definition] = NULL, [SortOrder] = 532.00 WHERE [Code] = 'ont' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojv', 'Ontong Java', NULL, 532.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ontong Java', [Definition] = NULL, [SortOrder] = 532.10 WHERE [Code] = 'ojv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oor', 'Oorlams', NULL, 532.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oorlams', [Definition] = NULL, [SortOrder] = 532.20 WHERE [Code] = 'oor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opo', 'Opao', NULL, 532.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Opao', [Definition] = NULL, [SortOrder] = 532.30 WHERE [Code] = 'opo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opt', 'Opata', NULL, 532.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Opata', [Definition] = NULL, [SortOrder] = 532.40 WHERE [Code] = 'opt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orn', 'Orang Kanaq', NULL, 532.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orang Kanaq', [Definition] = NULL, [SortOrder] = 532.50 WHERE [Code] = 'orn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ors') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ors', 'Orang Seletar', NULL, 532.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orang Seletar', [Definition] = NULL, [SortOrder] = 532.60 WHERE [Code] = 'ors' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdr', 'Oraon Sadri', NULL, 532.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oraon Sadri', [Definition] = NULL, [SortOrder] = 532.70 WHERE [Code] = 'sdr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ore') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ore', 'Orejón', NULL, 532.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orejón', [Definition] = NULL, [SortOrder] = 532.80 WHERE [Code] = 'ore' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'org') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('org', 'Oring', NULL, 532.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oring', [Definition] = NULL, [SortOrder] = 532.90 WHERE [Code] = 'org' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ori') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ori', 'Oriya (macrolanguage)', NULL, 533.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oriya (macrolanguage)', [Definition] = NULL, [SortOrder] = 533.00 WHERE [Code] = 'ori' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlv', 'Orizaba Nahuatl', NULL, 533.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orizaba Nahuatl', [Definition] = NULL, [SortOrder] = 533.10 WHERE [Code] = 'nlv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orc', 'Orma', NULL, 533.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orma', [Definition] = NULL, [SortOrder] = 533.20 WHERE [Code] = 'orc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orz', 'Ormu', NULL, 533.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ormu', [Definition] = NULL, [SortOrder] = 533.30 WHERE [Code] = 'orz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oru', 'Ormuri', NULL, 533.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ormuri', [Definition] = NULL, [SortOrder] = 533.40 WHERE [Code] = 'oru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orx', 'Oro', NULL, 533.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oro', [Definition] = NULL, [SortOrder] = 533.50 WHERE [Code] = 'orx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orw', 'Oro Win', NULL, 533.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oro Win', [Definition] = NULL, [SortOrder] = 533.60 WHERE [Code] = 'orw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oac', 'Oroch', NULL, 533.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oroch', [Definition] = NULL, [SortOrder] = 533.70 WHERE [Code] = 'oac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ora') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ora', 'Oroha', NULL, 533.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oroha', [Definition] = NULL, [SortOrder] = 533.80 WHERE [Code] = 'ora' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oaa', 'Orok', NULL, 533.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orok', [Definition] = NULL, [SortOrder] = 533.90 WHERE [Code] = 'oaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okv', 'Orokaiva', NULL, 534.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orokaiva', [Definition] = NULL, [SortOrder] = 534.00 WHERE [Code] = 'okv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdu', 'Oroko', NULL, 534.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oroko', [Definition] = NULL, [SortOrder] = 534.10 WHERE [Code] = 'bdu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oro', 'Orokolo', NULL, 534.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orokolo', [Definition] = NULL, [SortOrder] = 534.20 WHERE [Code] = 'oro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orm', 'Oromo', NULL, 534.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oromo', [Definition] = NULL, [SortOrder] = 534.30 WHERE [Code] = 'orm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orh', 'Oroqen', NULL, 534.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oroqen', [Definition] = NULL, [SortOrder] = 534.40 WHERE [Code] = 'orh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpk', 'Orowe', NULL, 534.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orowe', [Definition] = NULL, [SortOrder] = 534.50 WHERE [Code] = 'bpk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orr', 'Oruma', NULL, 534.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oruma', [Definition] = NULL, [SortOrder] = 534.60 WHERE [Code] = 'orr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ury') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ury', 'Orya', NULL, 534.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orya', [Definition] = NULL, [SortOrder] = 534.70 WHERE [Code] = 'ury' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osa', 'Osage', NULL, 534.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Osage', [Definition] = NULL, [SortOrder] = 534.80 WHERE [Code] = 'osa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ost') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ost', 'Osatu', NULL, 534.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Osatu', [Definition] = NULL, [SortOrder] = 534.90 WHERE [Code] = 'ost' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osc', 'Oscan', NULL, 535.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oscan', [Definition] = NULL, [SortOrder] = 535.00 WHERE [Code] = 'osc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osi', 'Osing', NULL, 535.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Osing', [Definition] = NULL, [SortOrder] = 535.10 WHERE [Code] = 'osi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oso', 'Ososo', NULL, 535.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ososo', [Definition] = NULL, [SortOrder] = 535.20 WHERE [Code] = 'oso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oss', 'Ossetian', NULL, 535.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ossetian', [Definition] = NULL, [SortOrder] = 535.30 WHERE [Code] = 'oss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otd', 'Ot Danum', NULL, 535.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ot Danum', [Definition] = NULL, [SortOrder] = 535.40 WHERE [Code] = 'otd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uta', 'Otank', NULL, 535.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Otank', [Definition] = NULL, [SortOrder] = 535.50 WHERE [Code] = 'uta' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oti', 'Oti', NULL, 535.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oti', [Definition] = NULL, [SortOrder] = 535.60 WHERE [Code] = 'oti' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otr', 'Otoro', NULL, 535.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Otoro', [Definition] = NULL, [SortOrder] = 535.70 WHERE [Code] = 'otr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otw', 'Ottawa', NULL, 535.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ottawa', [Definition] = NULL, [SortOrder] = 535.80 WHERE [Code] = 'otw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ota') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ota', 'Ottoman Turkish (1500-1928)', NULL, 535.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ottoman Turkish (1500-1928)', [Definition] = NULL, [SortOrder] = 535.90 WHERE [Code] = 'ota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lot', 'Otuho', NULL, 536.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Otuho', [Definition] = NULL, [SortOrder] = 536.00 WHERE [Code] = 'lot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otu', 'Otuke', NULL, 536.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Otuke', [Definition] = NULL, [SortOrder] = 536.10 WHERE [Code] = 'otu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oum', 'Ouma', NULL, 536.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ouma', [Definition] = NULL, [SortOrder] = 536.20 WHERE [Code] = 'oum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oue', 'Oune', NULL, 536.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oune', [Definition] = NULL, [SortOrder] = 536.30 WHERE [Code] = 'oue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stn', 'Owa', NULL, 536.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Owa', [Definition] = NULL, [SortOrder] = 536.40 WHERE [Code] = 'stn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsr', 'Owenia', NULL, 536.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Owenia', [Definition] = NULL, [SortOrder] = 536.50 WHERE [Code] = 'wsr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'owi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('owi', 'Owiniga', NULL, 536.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Owiniga', [Definition] = NULL, [SortOrder] = 536.60 WHERE [Code] = 'owi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oyb', 'Oy', NULL, 536.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oy', [Definition] = NULL, [SortOrder] = 536.70 WHERE [Code] = 'oyb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oyy', 'Oya''oya', NULL, 536.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oya''oya', [Definition] = NULL, [SortOrder] = 536.80 WHERE [Code] = 'oyy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oyd', 'Oyda', NULL, 536.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oyda', [Definition] = NULL, [SortOrder] = 536.90 WHERE [Code] = 'oyd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpd', 'Oyster Bay Tasmanian', NULL, 537.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oyster Bay Tasmanian', [Definition] = NULL, [SortOrder] = 537.00 WHERE [Code] = 'xpd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zao', 'Ozolotepec Zapotec', NULL, 537.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ozolotepec Zapotec', [Definition] = NULL, [SortOrder] = 537.10 WHERE [Code] = 'zao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chz', 'Ozumacín Chinantec', NULL, 537.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ozumacín Chinantec', [Definition] = NULL, [SortOrder] = 537.20 WHERE [Code] = 'chz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdi', 'Pa Di', NULL, 537.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pa Di', [Definition] = NULL, [SortOrder] = 537.30 WHERE [Code] = 'pdi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pqa', 'Pa''a', NULL, 537.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pa''a', [Definition] = NULL, [SortOrder] = 537.40 WHERE [Code] = 'pqa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blk', 'Pa''o Karen', NULL, 537.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pa''o Karen', [Definition] = NULL, [SortOrder] = 537.50 WHERE [Code] = 'blk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pha', 'Pa-Hng', NULL, 537.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pa-Hng', [Definition] = NULL, [SortOrder] = 537.60 WHERE [Code] = 'pha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pfa', 'Pááfang', NULL, 537.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pááfang', [Definition] = NULL, [SortOrder] = 537.70 WHERE [Code] = 'pfa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drl', 'Paakantyi', NULL, 537.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paakantyi', [Definition] = NULL, [SortOrder] = 537.80 WHERE [Code] = 'drl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pma', 'Paama', NULL, 537.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paama', [Definition] = NULL, [SortOrder] = 537.90 WHERE [Code] = 'pma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sig', 'Paasaal', NULL, 538.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paasaal', [Definition] = NULL, [SortOrder] = 538.00 WHERE [Code] = 'sig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcp', 'Pacahuara', NULL, 538.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pacahuara', [Definition] = NULL, [SortOrder] = 538.10 WHERE [Code] = 'pcp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvp', 'Pacaraos Quechua', NULL, 538.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pacaraos Quechua', [Definition] = NULL, [SortOrder] = 538.20 WHERE [Code] = 'qvp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ems') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ems', 'Pacific Gulf Yupik', NULL, 538.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pacific Gulf Yupik', [Definition] = NULL, [SortOrder] = 538.30 WHERE [Code] = 'ems' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pac', 'Pacoh', NULL, 538.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pacoh', [Definition] = NULL, [SortOrder] = 538.40 WHERE [Code] = 'pac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdo', 'Padoe', NULL, 538.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Padoe', [Definition] = NULL, [SortOrder] = 538.50 WHERE [Code] = 'pdo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkc', 'Paekche', NULL, 538.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paekche', [Definition] = NULL, [SortOrder] = 538.60 WHERE [Code] = 'pkc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgn', 'Paelignian', NULL, 538.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paelignian', [Definition] = NULL, [SortOrder] = 538.70 WHERE [Code] = 'pgn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbb', 'Páez', NULL, 538.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Páez', [Definition] = NULL, [SortOrder] = 538.80 WHERE [Code] = 'pbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgi', 'Pagi', NULL, 538.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pagi', [Definition] = NULL, [SortOrder] = 538.90 WHERE [Code] = 'pgi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pae', 'Pagibete', NULL, 539.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pagibete', [Definition] = NULL, [SortOrder] = 539.00 WHERE [Code] = 'pae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgu', 'Pagu', NULL, 539.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pagu', [Definition] = NULL, [SortOrder] = 539.10 WHERE [Code] = 'pgu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apf', 'Pahanan Agta', NULL, 539.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahanan Agta', [Definition] = NULL, [SortOrder] = 539.20 WHERE [Code] = 'apf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phj', 'Pahari', NULL, 539.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahari', [Definition] = NULL, [SortOrder] = 539.30 WHERE [Code] = 'phj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phr', 'Pahari-Potwari', NULL, 539.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahari-Potwari', [Definition] = NULL, [SortOrder] = 539.40 WHERE [Code] = 'phr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgt', 'Pahi', NULL, 539.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahi', [Definition] = NULL, [SortOrder] = 539.50 WHERE [Code] = 'lgt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phv', 'Pahlavani', NULL, 539.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahlavani', [Definition] = NULL, [SortOrder] = 539.60 WHERE [Code] = 'phv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pal', 'Pahlavi', NULL, 539.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahlavi', [Definition] = NULL, [SortOrder] = 539.70 WHERE [Code] = 'pal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pta', 'Pai Tavytera', NULL, 539.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pai Tavytera', [Definition] = NULL, [SortOrder] = 539.80 WHERE [Code] = 'pta' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pri', 'Paicî', NULL, 539.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paicî', [Definition] = NULL, [SortOrder] = 539.90 WHERE [Code] = 'pri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppi', 'Paipai', NULL, 540.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paipai', [Definition] = NULL, [SortOrder] = 540.00 WHERE [Code] = 'ppi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pck', 'Paite Chin', NULL, 540.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paite Chin', [Definition] = NULL, [SortOrder] = 540.10 WHERE [Code] = 'pck' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwn', 'Paiwan', NULL, 540.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paiwan', [Definition] = NULL, [SortOrder] = 540.20 WHERE [Code] = 'pwn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkg', 'Pak-Tong', NULL, 540.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pak-Tong', [Definition] = NULL, [SortOrder] = 540.30 WHERE [Code] = 'pkg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pav', 'Pakaásnovos', NULL, 540.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pakaásnovos', [Definition] = NULL, [SortOrder] = 540.40 WHERE [Code] = 'pav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkn', 'Pakanha', NULL, 540.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pakanha', [Definition] = NULL, [SortOrder] = 540.50 WHERE [Code] = 'pkn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pks', 'Pakistan Sign Language', NULL, 540.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pakistan Sign Language', [Definition] = NULL, [SortOrder] = 540.60 WHERE [Code] = 'pks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pku', 'Paku', NULL, 540.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paku', [Definition] = NULL, [SortOrder] = 540.70 WHERE [Code] = 'pku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jkp', 'Paku Karen', NULL, 540.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paku Karen', [Definition] = NULL, [SortOrder] = 540.80 WHERE [Code] = 'jkp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abw', 'Pal', NULL, 540.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pal', [Definition] = NULL, [SortOrder] = 540.90 WHERE [Code] = 'abw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plq', 'Palaic', NULL, 541.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palaic', [Definition] = NULL, [SortOrder] = 541.00 WHERE [Code] = 'plq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plr', 'Palaka Senoufo', NULL, 541.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palaka Senoufo', [Definition] = NULL, [SortOrder] = 541.10 WHERE [Code] = 'plr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpa', 'Palantla Chinantec', NULL, 541.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palantla Chinantec', [Definition] = NULL, [SortOrder] = 541.20 WHERE [Code] = 'cpa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pau', 'Palauan', NULL, 541.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palauan', [Definition] = NULL, [SortOrder] = 541.30 WHERE [Code] = 'pau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnl', 'Paleni', NULL, 541.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paleni', [Definition] = NULL, [SortOrder] = 541.40 WHERE [Code] = 'pnl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pln', 'Palenquero', NULL, 541.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palenquero', [Definition] = NULL, [SortOrder] = 541.50 WHERE [Code] = 'pln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pli', 'Pali', NULL, 541.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pali', [Definition] = NULL, [SortOrder] = 541.60 WHERE [Code] = 'pli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plu', 'Palikúr', NULL, 541.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palikúr', [Definition] = NULL, [SortOrder] = 541.70 WHERE [Code] = 'plu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcf', 'Paliyan', NULL, 541.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paliyan', [Definition] = NULL, [SortOrder] = 541.80 WHERE [Code] = 'pcf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmd', 'Pallanganmiddang', NULL, 541.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pallanganmiddang', [Definition] = NULL, [SortOrder] = 541.90 WHERE [Code] = 'pmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fap', 'Paloor', NULL, 542.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paloor', [Definition] = NULL, [SortOrder] = 542.00 WHERE [Code] = 'fap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ple') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ple', 'Palu''e', NULL, 542.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palu''e', [Definition] = NULL, [SortOrder] = 542.10 WHERE [Code] = 'ple' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plz', 'Paluan', NULL, 542.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paluan', [Definition] = NULL, [SortOrder] = 542.20 WHERE [Code] = 'plz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpx', 'Palya Bareli', NULL, 542.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palya Bareli', [Definition] = NULL, [SortOrder] = 542.30 WHERE [Code] = 'bpx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmn', 'Pam', NULL, 542.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pam', [Definition] = NULL, [SortOrder] = 542.40 WHERE [Code] = 'pmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmb', 'Pambia', NULL, 542.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pambia', [Definition] = NULL, [SortOrder] = 542.50 WHERE [Code] = 'pmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmk', 'Pamlico', NULL, 542.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pamlico', [Definition] = NULL, [SortOrder] = 542.60 WHERE [Code] = 'pmk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmf', 'Pamona', NULL, 542.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pamona', [Definition] = NULL, [SortOrder] = 542.70 WHERE [Code] = 'pmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hih', 'Pamosu', NULL, 542.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pamosu', [Definition] = NULL, [SortOrder] = 542.80 WHERE [Code] = 'hih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pam', 'Pampanga', NULL, 542.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pampanga', [Definition] = NULL, [SortOrder] = 542.90 WHERE [Code] = 'pam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'att') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('att', 'Pamplona Atta', NULL, 543.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pamplona Atta', [Definition] = NULL, [SortOrder] = 543.00 WHERE [Code] = 'att' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnq', 'Pana (Burkina Faso)', NULL, 543.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pana (Burkina Faso)', [Definition] = NULL, [SortOrder] = 543.10 WHERE [Code] = 'pnq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnz', 'Pana (Central African Republic)', NULL, 543.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pana (Central African Republic)', [Definition] = NULL, [SortOrder] = 543.20 WHERE [Code] = 'pnz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsp', 'Panamanian Sign Language', NULL, 543.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panamanian Sign Language', [Definition] = NULL, [SortOrder] = 543.30 WHERE [Code] = 'lsp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'par') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('par', 'Panamint', NULL, 543.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panamint', [Definition] = NULL, [SortOrder] = 543.40 WHERE [Code] = 'par' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxh', 'Panao Huánuco Quechua', NULL, 543.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panao Huánuco Quechua', [Definition] = NULL, [SortOrder] = 543.50 WHERE [Code] = 'qxh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kre', 'Panará', NULL, 543.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panará', [Definition] = NULL, [SortOrder] = 543.60 WHERE [Code] = 'kre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psn', 'Panasuan', NULL, 543.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panasuan', [Definition] = NULL, [SortOrder] = 543.70 WHERE [Code] = 'psn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwb', 'Panawa', NULL, 543.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panawa', [Definition] = NULL, [SortOrder] = 543.80 WHERE [Code] = 'pwb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnp', 'Pancana', NULL, 543.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pancana', [Definition] = NULL, [SortOrder] = 543.90 WHERE [Code] = 'pnp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdb', 'Panchpargania', NULL, 544.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panchpargania', [Definition] = NULL, [SortOrder] = 544.00 WHERE [Code] = 'tdb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkj', 'Pande', NULL, 544.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pande', [Definition] = NULL, [SortOrder] = 544.10 WHERE [Code] = 'bkj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pag', 'Pangasinan', NULL, 544.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangasinan', [Definition] = NULL, [SortOrder] = 544.20 WHERE [Code] = 'pag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgs', 'Pangseng', NULL, 544.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangseng', [Definition] = NULL, [SortOrder] = 544.30 WHERE [Code] = 'pgs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'png') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('png', 'Pangu', NULL, 544.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangu', [Definition] = NULL, [SortOrder] = 544.40 WHERE [Code] = 'png' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slm', 'Pangutaran Sama', NULL, 544.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangutaran Sama', [Definition] = NULL, [SortOrder] = 544.50 WHERE [Code] = 'slm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbr', 'Pangwa', NULL, 544.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangwa', [Definition] = NULL, [SortOrder] = 544.60 WHERE [Code] = 'pbr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgg', 'Pangwali', NULL, 544.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangwali', [Definition] = NULL, [SortOrder] = 544.70 WHERE [Code] = 'pgg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnr', 'Panim', NULL, 544.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panim', [Definition] = NULL, [SortOrder] = 544.80 WHERE [Code] = 'pnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcg', 'Paniya', NULL, 544.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paniya', [Definition] = NULL, [SortOrder] = 544.90 WHERE [Code] = 'pcg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pan', 'Panjabi', NULL, 545.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panjabi', [Definition] = NULL, [SortOrder] = 545.00 WHERE [Code] = 'pan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pax', 'Pankararé', NULL, 545.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pankararé', [Definition] = NULL, [SortOrder] = 545.10 WHERE [Code] = 'pax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'paz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paz', 'Pankararú', NULL, 545.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pankararú', [Definition] = NULL, [SortOrder] = 545.20 WHERE [Code] = 'paz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkh', 'Pankhu', NULL, 545.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pankhu', [Definition] = NULL, [SortOrder] = 545.30 WHERE [Code] = 'pkh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnc', 'Pannei', NULL, 545.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pannei', [Definition] = NULL, [SortOrder] = 545.40 WHERE [Code] = 'pnc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqz', 'Pano', NULL, 545.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pano', [Definition] = NULL, [SortOrder] = 545.50 WHERE [Code] = 'mqz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knt', 'Panoan Katukína', NULL, 545.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panoan Katukína', [Definition] = NULL, [SortOrder] = 545.60 WHERE [Code] = 'knt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pno', 'Panobo', NULL, 545.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panobo', [Definition] = NULL, [SortOrder] = 545.70 WHERE [Code] = 'pno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfc', 'Panyi Bai', NULL, 545.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panyi Bai', [Definition] = NULL, [SortOrder] = 545.80 WHERE [Code] = 'bfc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'top') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('top', 'Papantla Totonac', NULL, 545.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papantla Totonac', [Definition] = NULL, [SortOrder] = 545.90 WHERE [Code] = 'top' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppn', 'Papapana', NULL, 546.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papapana', [Definition] = NULL, [SortOrder] = 546.00 WHERE [Code] = 'ppn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dpp', 'Papar', NULL, 546.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papar', [Definition] = NULL, [SortOrder] = 546.10 WHERE [Code] = 'dpp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pas', 'Papasena', NULL, 546.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papasena', [Definition] = NULL, [SortOrder] = 546.20 WHERE [Code] = 'pas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbo', 'Papel', NULL, 546.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papel', [Definition] = NULL, [SortOrder] = 546.30 WHERE [Code] = 'pbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppe', 'Papi', NULL, 546.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papi', [Definition] = NULL, [SortOrder] = 546.40 WHERE [Code] = 'ppe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pap', 'Papiamento', NULL, 546.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papiamento', [Definition] = NULL, [SortOrder] = 546.50 WHERE [Code] = 'pap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppu', 'Papora', NULL, 546.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papora', [Definition] = NULL, [SortOrder] = 546.60 WHERE [Code] = 'ppu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgz', 'Papua New Guinean Sign Language', NULL, 546.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papua New Guinean Sign Language', [Definition] = NULL, [SortOrder] = 546.70 WHERE [Code] = 'pgz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmy', 'Papuan Malay', NULL, 546.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papuan Malay', [Definition] = NULL, [SortOrder] = 546.80 WHERE [Code] = 'pmy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppm', 'Papuma', NULL, 546.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papuma', [Definition] = NULL, [SortOrder] = 546.90 WHERE [Code] = 'ppm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aap', 'Pará Arára', NULL, 547.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pará Arára', [Definition] = NULL, [SortOrder] = 547.00 WHERE [Code] = 'aap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvp', 'Pará Gavião', NULL, 547.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pará Gavião', [Definition] = NULL, [SortOrder] = 547.10 WHERE [Code] = 'gvp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pzn', 'Jejarra Naga', NULL, 547.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jejarra Naga', [Definition] = NULL, [SortOrder] = 547.20 WHERE [Code] = 'pzn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prc', 'Parachi', NULL, 547.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parachi', [Definition] = NULL, [SortOrder] = 547.30 WHERE [Code] = 'prc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gug', 'Paraguayan Guaraní', NULL, 547.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paraguayan Guaraní', [Definition] = NULL, [SortOrder] = 547.40 WHERE [Code] = 'gug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pys', 'Paraguayan Sign Language', NULL, 547.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paraguayan Sign Language', [Definition] = NULL, [SortOrder] = 547.50 WHERE [Code] = 'pys' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pak', 'Parakanã', NULL, 547.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parakanã', [Definition] = NULL, [SortOrder] = 547.60 WHERE [Code] = 'pak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prf', 'Paranan', NULL, 547.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paranan', [Definition] = NULL, [SortOrder] = 547.70 WHERE [Code] = 'prf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'paf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paf', 'Paranawát', NULL, 547.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paranawát', [Definition] = NULL, [SortOrder] = 547.80 WHERE [Code] = 'paf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbg', 'Paraujano', NULL, 547.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paraujano', [Definition] = NULL, [SortOrder] = 547.90 WHERE [Code] = 'pbg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prk', 'Parauk', NULL, 548.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parauk', [Definition] = NULL, [SortOrder] = 548.00 WHERE [Code] = 'prk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prw', 'Parawen', NULL, 548.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parawen', [Definition] = NULL, [SortOrder] = 548.10 WHERE [Code] = 'prw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pch', 'Pardhan', NULL, 548.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pardhan', [Definition] = NULL, [SortOrder] = 548.20 WHERE [Code] = 'pch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcl', 'Pardhi', NULL, 548.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pardhi', [Definition] = NULL, [SortOrder] = 548.30 WHERE [Code] = 'pcl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppt', 'Pare', NULL, 548.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pare', [Definition] = NULL, [SortOrder] = 548.40 WHERE [Code] = 'ppt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pab', 'Parecís', NULL, 548.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parecís', [Definition] = NULL, [SortOrder] = 548.50 WHERE [Code] = 'pab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcj', 'Parenga', NULL, 548.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parenga', [Definition] = NULL, [SortOrder] = 548.60 WHERE [Code] = 'pcj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkr', 'Päri', NULL, 548.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Päri', [Definition] = NULL, [SortOrder] = 548.70 WHERE [Code] = 'lkr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvx', 'Parkari Koli', NULL, 548.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parkari Koli', [Definition] = NULL, [SortOrder] = 548.80 WHERE [Code] = 'kvx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbi', 'Parkwa', NULL, 548.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parkwa', [Definition] = NULL, [SortOrder] = 548.90 WHERE [Code] = 'pbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prp', 'Parsi', NULL, 549.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parsi', [Definition] = NULL, [SortOrder] = 549.00 WHERE [Code] = 'prp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prd', 'Parsi-Dari', NULL, 549.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parsi-Dari', [Definition] = NULL, [SortOrder] = 549.10 WHERE [Code] = 'prd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpr', 'Parthian', NULL, 549.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parthian', [Definition] = NULL, [SortOrder] = 549.20 WHERE [Code] = 'xpr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'paq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paq', 'Parya', NULL, 549.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parya', [Definition] = NULL, [SortOrder] = 549.30 WHERE [Code] = 'paq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psq', 'Pasi', NULL, 549.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pasi', [Definition] = NULL, [SortOrder] = 549.40 WHERE [Code] = 'psq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yac', 'Pass Valley Yali', NULL, 549.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pass Valley Yali', [Definition] = NULL, [SortOrder] = 549.50 WHERE [Code] = 'yac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbc', 'Patamona', NULL, 549.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patamona', [Definition] = NULL, [SortOrder] = 549.60 WHERE [Code] = 'pbc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptn', 'Patani', NULL, 549.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patani', [Definition] = NULL, [SortOrder] = 549.70 WHERE [Code] = 'ptn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pth', 'Pataxó Hã-Ha-Hãe', NULL, 549.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pataxó Hã-Ha-Hãe', [Definition] = NULL, [SortOrder] = 549.80 WHERE [Code] = 'pth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptp', 'Patep', NULL, 549.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patep', [Definition] = NULL, [SortOrder] = 549.90 WHERE [Code] = 'ptp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pty', 'Pathiya', NULL, 550.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pathiya', [Definition] = NULL, [SortOrder] = 550.00 WHERE [Code] = 'pty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gfk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gfk', 'Patpatar', NULL, 550.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patpatar', [Definition] = NULL, [SortOrder] = 550.10 WHERE [Code] = 'gfk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lae', 'Pattani', NULL, 550.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pattani', [Definition] = NULL, [SortOrder] = 550.20 WHERE [Code] = 'lae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfa', 'Pattani Malay', NULL, 550.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pattani Malay', [Definition] = NULL, [SortOrder] = 550.30 WHERE [Code] = 'mfa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptq', 'Pattapu', NULL, 550.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pattapu', [Definition] = NULL, [SortOrder] = 550.40 WHERE [Code] = 'ptq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwi', 'Patwin', NULL, 550.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patwin', [Definition] = NULL, [SortOrder] = 550.50 WHERE [Code] = 'pwi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plh', 'Paulohi', NULL, 550.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paulohi', [Definition] = NULL, [SortOrder] = 550.60 WHERE [Code] = 'plh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pad', 'Paumarí', NULL, 550.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paumarí', [Definition] = NULL, [SortOrder] = 550.70 WHERE [Code] = 'pad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnk', 'Paunaka', NULL, 550.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paunaka', [Definition] = NULL, [SortOrder] = 550.80 WHERE [Code] = 'pnk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfb', 'Pauri Bareli', NULL, 550.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pauri Bareli', [Definition] = NULL, [SortOrder] = 550.90 WHERE [Code] = 'bfb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psm', 'Pauserna', NULL, 551.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pauserna', [Definition] = NULL, [SortOrder] = 551.00 WHERE [Code] = 'psm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwa', 'Pawaia', NULL, 551.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pawaia', [Definition] = NULL, [SortOrder] = 551.10 WHERE [Code] = 'pwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'paw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paw', 'Pawnee', NULL, 551.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pawnee', [Definition] = NULL, [SortOrder] = 551.20 WHERE [Code] = 'paw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmr', 'Paynamar', NULL, 551.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paynamar', [Definition] = NULL, [SortOrder] = 551.30 WHERE [Code] = 'pmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pzh', 'Pazeh', NULL, 551.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pazeh', [Definition] = NULL, [SortOrder] = 551.40 WHERE [Code] = 'pzh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pai', 'Pe', NULL, 551.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pe', [Definition] = NULL, [SortOrder] = 551.50 WHERE [Code] = 'pai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcb', 'Pear', NULL, 551.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pear', [Definition] = NULL, [SortOrder] = 551.60 WHERE [Code] = 'pcb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pay', 'Pech', NULL, 551.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pech', [Definition] = NULL, [SortOrder] = 551.70 WHERE [Code] = 'pay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpc', 'Pecheneg', NULL, 551.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pecheneg', [Definition] = NULL, [SortOrder] = 551.80 WHERE [Code] = 'xpc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nso', 'Pedi', NULL, 551.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pedi', [Definition] = NULL, [SortOrder] = 551.90 WHERE [Code] = 'nso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppq', 'Pei', NULL, 552.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pei', [Definition] = NULL, [SortOrder] = 552.00 WHERE [Code] = 'ppq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pel', 'Pekal', NULL, 552.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pekal', [Definition] = NULL, [SortOrder] = 552.10 WHERE [Code] = 'pel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxd', 'Pela', NULL, 552.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pela', [Definition] = NULL, [SortOrder] = 552.20 WHERE [Code] = 'bxd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ata') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ata', 'Pele-Ata', NULL, 552.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pele-Ata', [Definition] = NULL, [SortOrder] = 552.30 WHERE [Code] = 'ata' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppp', 'Pelende', NULL, 552.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pelende', [Definition] = NULL, [SortOrder] = 552.40 WHERE [Code] = 'ppp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoc', 'Pemon', NULL, 552.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pemon', [Definition] = NULL, [SortOrder] = 552.50 WHERE [Code] = 'aoc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pev', 'Pémono', NULL, 552.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pémono', [Definition] = NULL, [SortOrder] = 552.60 WHERE [Code] = 'pev' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psg', 'Penang Sign Language', NULL, 552.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Penang Sign Language', [Definition] = NULL, [SortOrder] = 552.70 WHERE [Code] = 'psg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pek', 'Penchal', NULL, 552.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Penchal', [Definition] = NULL, [SortOrder] = 552.80 WHERE [Code] = 'pek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ums') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ums', 'Pendau', NULL, 552.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pendau', [Definition] = NULL, [SortOrder] = 552.90 WHERE [Code] = 'ums' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peg', 'Pengo', NULL, 553.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pengo', [Definition] = NULL, [SortOrder] = 553.00 WHERE [Code] = 'peg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdc', 'Pennsylvania German', NULL, 553.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pennsylvania German', [Definition] = NULL, [SortOrder] = 553.10 WHERE [Code] = 'pdc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mil', 'Peñoles Mixtec', NULL, 553.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Peñoles Mixtec', [Definition] = NULL, [SortOrder] = 553.20 WHERE [Code] = 'mil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnh', 'Penrhyn', NULL, 553.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Penrhyn', [Definition] = NULL, [SortOrder] = 553.30 WHERE [Code] = 'pnh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptw', 'Pentlatch', NULL, 553.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pentlatch', [Definition] = NULL, [SortOrder] = 553.40 WHERE [Code] = 'ptw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wet', 'Perai', NULL, 553.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Perai', [Definition] = NULL, [SortOrder] = 553.50 WHERE [Code] = 'wet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pea', 'Peranakan Indonesian', NULL, 553.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Peranakan Indonesian', [Definition] = NULL, [SortOrder] = 553.60 WHERE [Code] = 'pea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pfe', 'Pere', NULL, 553.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pere', [Definition] = NULL, [SortOrder] = 553.70 WHERE [Code] = 'pfe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvf', 'Peripheral Mongolian', NULL, 553.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Peripheral Mongolian', [Definition] = NULL, [SortOrder] = 553.80 WHERE [Code] = 'mvf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pip', 'Pero', NULL, 553.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pero', [Definition] = NULL, [SortOrder] = 553.90 WHERE [Code] = 'pip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fas', 'Persian', NULL, 554.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Persian', [Definition] = NULL, [SortOrder] = 554.00 WHERE [Code] = 'fas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psc', 'Iranian Sign Language', NULL, 554.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iranian Sign Language', [Definition] = NULL, [SortOrder] = 554.10 WHERE [Code] = 'psc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prl', 'Peruvian Sign Language', NULL, 554.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Peruvian Sign Language', [Definition] = NULL, [SortOrder] = 554.20 WHERE [Code] = 'prl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpe', 'Petapa Zapotec', NULL, 554.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Petapa Zapotec', [Definition] = NULL, [SortOrder] = 554.30 WHERE [Code] = 'zpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pex', 'Petats', NULL, 554.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Petats', [Definition] = NULL, [SortOrder] = 554.40 WHERE [Code] = 'pex' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pey', 'Petjo', NULL, 554.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Petjo', [Definition] = NULL, [SortOrder] = 554.50 WHERE [Code] = 'pey' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lme', 'Pévé', NULL, 554.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pévé', [Definition] = NULL, [SortOrder] = 554.60 WHERE [Code] = 'lme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pfl', 'Pfaelzisch', NULL, 554.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pfaelzisch', [Definition] = NULL, [SortOrder] = 554.70 WHERE [Code] = 'pfl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prt', 'Phai', NULL, 554.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phai', [Definition] = NULL, [SortOrder] = 554.80 WHERE [Code] = 'prt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phk', 'Phake', NULL, 554.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phake', [Definition] = NULL, [SortOrder] = 554.90 WHERE [Code] = 'phk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypa', 'Phala', NULL, 555.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phala', [Definition] = NULL, [SortOrder] = 555.00 WHERE [Code] = 'ypa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phl', 'Phalura', NULL, 555.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phalura', [Definition] = NULL, [SortOrder] = 555.10 WHERE [Code] = 'phl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phq', 'Phana''', NULL, 555.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phana''', [Definition] = NULL, [SortOrder] = 555.20 WHERE [Code] = 'phq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phw', 'Phangduwali', NULL, 555.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phangduwali', [Definition] = NULL, [SortOrder] = 555.30 WHERE [Code] = 'phw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pem', 'Phende', NULL, 555.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phende', [Definition] = NULL, [SortOrder] = 555.40 WHERE [Code] = 'pem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psp', 'Philippine Sign Language', NULL, 555.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Philippine Sign Language', [Definition] = NULL, [SortOrder] = 555.50 WHERE [Code] = 'psp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phm', 'Phimbi', NULL, 555.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phimbi', [Definition] = NULL, [SortOrder] = 555.60 WHERE [Code] = 'phm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phn', 'Phoenician', NULL, 555.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phoenician', [Definition] = NULL, [SortOrder] = 555.70 WHERE [Code] = 'phn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypg', 'Phola', NULL, 555.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phola', [Definition] = NULL, [SortOrder] = 555.80 WHERE [Code] = 'ypg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yip', 'Pholo', NULL, 555.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pholo', [Definition] = NULL, [SortOrder] = 555.90 WHERE [Code] = 'yip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nph', 'Phom Naga', NULL, 556.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phom Naga', [Definition] = NULL, [SortOrder] = 556.00 WHERE [Code] = 'nph' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnx', 'Phong-Kniang', NULL, 556.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phong-Kniang', [Definition] = NULL, [SortOrder] = 556.10 WHERE [Code] = 'pnx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjt', 'Phrae Pwo Karen', NULL, 556.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phrae Pwo Karen', [Definition] = NULL, [SortOrder] = 556.20 WHERE [Code] = 'kjt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpg', 'Phrygian', NULL, 556.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phrygian', [Definition] = NULL, [SortOrder] = 556.30 WHERE [Code] = 'xpg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pht', 'Phu Thai', NULL, 556.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phu Thai', [Definition] = NULL, [SortOrder] = 556.40 WHERE [Code] = 'pht' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phu', 'Phuan', NULL, 556.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuan', [Definition] = NULL, [SortOrder] = 556.50 WHERE [Code] = 'phu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phd', 'Phudagi', NULL, 556.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phudagi', [Definition] = NULL, [SortOrder] = 556.60 WHERE [Code] = 'phd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pug', 'Phuie', NULL, 556.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuie', [Definition] = NULL, [SortOrder] = 556.70 WHERE [Code] = 'pug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phh', 'Phukha', NULL, 556.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phukha', [Definition] = NULL, [SortOrder] = 556.80 WHERE [Code] = 'phh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypm', 'Phuma', NULL, 556.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuma', [Definition] = NULL, [SortOrder] = 556.90 WHERE [Code] = 'ypm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pho', 'Phunoi', NULL, 557.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phunoi', [Definition] = NULL, [SortOrder] = 557.00 WHERE [Code] = 'pho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phg', 'Phuong', NULL, 557.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuong', [Definition] = NULL, [SortOrder] = 557.10 WHERE [Code] = 'phg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypp', 'Phupa', NULL, 557.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phupa', [Definition] = NULL, [SortOrder] = 557.20 WHERE [Code] = 'ypp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yph', 'Phupha', NULL, 557.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phupha', [Definition] = NULL, [SortOrder] = 557.30 WHERE [Code] = 'yph' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypz', 'Phuza', NULL, 557.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuza', [Definition] = NULL, [SortOrder] = 557.40 WHERE [Code] = 'ypz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptr', 'Piamatsina', NULL, 557.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piamatsina', [Definition] = NULL, [SortOrder] = 557.50 WHERE [Code] = 'ptr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pin', 'Piame', NULL, 557.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piame', [Definition] = NULL, [SortOrder] = 557.60 WHERE [Code] = 'pin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pio', 'Piapoco', NULL, 557.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piapoco', [Definition] = NULL, [SortOrder] = 557.70 WHERE [Code] = 'pio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pid', 'Piaroa', NULL, 557.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piaroa', [Definition] = NULL, [SortOrder] = 557.80 WHERE [Code] = 'pid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcd', 'Picard', NULL, 557.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Picard', [Definition] = NULL, [SortOrder] = 557.90 WHERE [Code] = 'pcd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpu', 'Pichis Ashéninka', NULL, 558.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pichis Ashéninka', [Definition] = NULL, [SortOrder] = 558.00 WHERE [Code] = 'cpu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpi', 'Pictish', NULL, 558.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pictish', [Definition] = NULL, [SortOrder] = 558.10 WHERE [Code] = 'xpi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dep', 'Pidgin Delaware', NULL, 558.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pidgin Delaware', [Definition] = NULL, [SortOrder] = 558.20 WHERE [Code] = 'dep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pms', 'Piemontese', NULL, 558.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piemontese', [Definition] = NULL, [SortOrder] = 558.30 WHERE [Code] = 'pms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pij', 'Pijao', NULL, 558.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pijao', [Definition] = NULL, [SortOrder] = 558.40 WHERE [Code] = 'pij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piz', 'Pije', NULL, 558.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pije', [Definition] = NULL, [SortOrder] = 558.50 WHERE [Code] = 'piz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pis', 'Pijin', NULL, 558.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pijin', [Definition] = NULL, [SortOrder] = 558.60 WHERE [Code] = 'pis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plg', 'Pilagá', NULL, 558.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pilagá', [Definition] = NULL, [SortOrder] = 558.70 WHERE [Code] = 'plg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piv', 'Pileni', NULL, 558.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pileni', [Definition] = NULL, [SortOrder] = 558.80 WHERE [Code] = 'piv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pia', 'Pima Bajo', NULL, 558.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pima Bajo', [Definition] = NULL, [SortOrder] = 558.90 WHERE [Code] = 'pia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piw', 'Pimbwe', NULL, 559.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pimbwe', [Definition] = NULL, [SortOrder] = 559.00 WHERE [Code] = 'piw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnn', 'Pinai-Hagahai', NULL, 559.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinai-Hagahai', [Definition] = NULL, [SortOrder] = 559.10 WHERE [Code] = 'pnn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pti', 'Pindiini', NULL, 559.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pindiini', [Definition] = NULL, [SortOrder] = 559.20 WHERE [Code] = 'pti' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pif', 'Pingelapese', NULL, 559.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pingelapese', [Definition] = NULL, [SortOrder] = 559.30 WHERE [Code] = 'pif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnv', 'Pinigura', NULL, 559.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinigura', [Definition] = NULL, [SortOrder] = 559.40 WHERE [Code] = 'pnv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnj', 'Pinjarup', NULL, 559.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinjarup', [Definition] = NULL, [SortOrder] = 559.50 WHERE [Code] = 'pnj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pic', 'Pinji', NULL, 559.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinji', [Definition] = NULL, [SortOrder] = 559.60 WHERE [Code] = 'pic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mio', 'Pinotepa Nacional Mixtec', NULL, 559.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinotepa Nacional Mixtec', [Definition] = NULL, [SortOrder] = 559.70 WHERE [Code] = 'mio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piu', 'Pintupi-Luritja', NULL, 559.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pintupi-Luritja', [Definition] = NULL, [SortOrder] = 559.80 WHERE [Code] = 'piu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pny', 'Pinyin', NULL, 559.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinyin', [Definition] = NULL, [SortOrder] = 559.90 WHERE [Code] = 'pny' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppl', 'Pipil', NULL, 560.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pipil', [Definition] = NULL, [SortOrder] = 560.00 WHERE [Code] = 'ppl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myp', 'Pirahã', NULL, 560.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pirahã', [Definition] = NULL, [SortOrder] = 560.10 WHERE [Code] = 'myp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pir', 'Piratapuyo', NULL, 560.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piratapuyo', [Definition] = NULL, [SortOrder] = 560.20 WHERE [Code] = 'pir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxi', 'Pirlatapa', NULL, 560.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pirlatapa', [Definition] = NULL, [SortOrder] = 560.30 WHERE [Code] = 'bxi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pie', 'Piro', NULL, 560.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piro', [Definition] = NULL, [SortOrder] = 560.40 WHERE [Code] = 'pie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpa', 'Pirriya', NULL, 560.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pirriya', [Definition] = NULL, [SortOrder] = 560.50 WHERE [Code] = 'xpa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pig', 'Pisabo', NULL, 560.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pisabo', [Definition] = NULL, [SortOrder] = 560.60 WHERE [Code] = 'pig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpp', 'Pisaflores Tepehua', NULL, 560.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pisaflores Tepehua', [Definition] = NULL, [SortOrder] = 560.70 WHERE [Code] = 'tpp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psy', 'Piscataway', NULL, 560.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piscataway', [Definition] = NULL, [SortOrder] = 560.80 WHERE [Code] = 'psy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xps', 'Pisidian', NULL, 560.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pisidian', [Definition] = NULL, [SortOrder] = 560.90 WHERE [Code] = 'xps' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pih', 'Pitcairn-Norfolk', NULL, 561.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pitcairn-Norfolk', [Definition] = NULL, [SortOrder] = 561.00 WHERE [Code] = 'pih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sje', 'Pite Sami', NULL, 561.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pite Sami', [Definition] = NULL, [SortOrder] = 561.10 WHERE [Code] = 'sje' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcn', 'Piti', NULL, 561.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piti', [Definition] = NULL, [SortOrder] = 561.20 WHERE [Code] = 'pcn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pjt', 'Pitjantjatjara', NULL, 561.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pitjantjatjara', [Definition] = NULL, [SortOrder] = 561.30 WHERE [Code] = 'pjt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pit', 'Pitta Pitta', NULL, 561.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pitta Pitta', [Definition] = NULL, [SortOrder] = 561.40 WHERE [Code] = 'pit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pix', 'Piu', NULL, 561.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piu', [Definition] = NULL, [SortOrder] = 561.50 WHERE [Code] = 'pix' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piy', 'Piya-Kwonci', NULL, 561.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piya-Kwonci', [Definition] = NULL, [SortOrder] = 561.60 WHERE [Code] = 'piy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crk', 'Plains Cree', NULL, 561.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plains Cree', [Definition] = NULL, [SortOrder] = 561.70 WHERE [Code] = 'crk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psd', 'Plains Indian Sign Language', NULL, 561.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plains Indian Sign Language', [Definition] = NULL, [SortOrder] = 561.80 WHERE [Code] = 'psd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmw', 'Plains Miwok', NULL, 561.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plains Miwok', [Definition] = NULL, [SortOrder] = 561.90 WHERE [Code] = 'pmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktj', 'Plapo Krumen', NULL, 562.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plapo Krumen', [Definition] = NULL, [SortOrder] = 562.00 WHERE [Code] = 'ktj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plt', 'Plateau Malagasy', NULL, 562.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plateau Malagasy', [Definition] = NULL, [SortOrder] = 562.10 WHERE [Code] = 'plt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdt', 'Plautdietsch', NULL, 562.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plautdietsch', [Definition] = NULL, [SortOrder] = 562.20 WHERE [Code] = 'pdt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gob', 'Playero', NULL, 562.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Playero', [Definition] = NULL, [SortOrder] = 562.30 WHERE [Code] = 'gob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbv', 'Pnar', NULL, 562.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pnar', [Definition] = NULL, [SortOrder] = 562.40 WHERE [Code] = 'pbv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npo', 'Pochuri Naga', NULL, 562.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pochuri Naga', [Definition] = NULL, [SortOrder] = 562.50 WHERE [Code] = 'npo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpo', 'Pochutec', NULL, 562.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pochutec', [Definition] = NULL, [SortOrder] = 562.60 WHERE [Code] = 'xpo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdn', 'Podena', NULL, 562.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Podena', [Definition] = NULL, [SortOrder] = 562.70 WHERE [Code] = 'pdn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poy', 'Pogolo', NULL, 562.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pogolo', [Definition] = NULL, [SortOrder] = 562.80 WHERE [Code] = 'poy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pon', 'Pohnpeian', NULL, 562.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pohnpeian', [Definition] = NULL, [SortOrder] = 562.90 WHERE [Code] = 'pon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pok', 'Pokangá', NULL, 563.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pokangá', [Definition] = NULL, [SortOrder] = 563.00 WHERE [Code] = 'pok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pof', 'Poke', NULL, 563.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poke', [Definition] = NULL, [SortOrder] = 563.10 WHERE [Code] = 'pof' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkb', 'Pokomo', NULL, 563.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pokomo', [Definition] = NULL, [SortOrder] = 563.20 WHERE [Code] = 'pkb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pko', 'Pökoot', NULL, 563.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pökoot', [Definition] = NULL, [SortOrder] = 563.30 WHERE [Code] = 'pko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pox', 'Polabian', NULL, 563.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polabian', [Definition] = NULL, [SortOrder] = 563.40 WHERE [Code] = 'pox' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pld', 'Polari', NULL, 563.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polari', [Definition] = NULL, [SortOrder] = 563.50 WHERE [Code] = 'pld' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plj', 'Polci', NULL, 563.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polci', [Definition] = NULL, [SortOrder] = 563.60 WHERE [Code] = 'plj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pol', 'Polish', NULL, 563.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polish', [Definition] = NULL, [SortOrder] = 563.70 WHERE [Code] = 'pol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pso', 'Polish Sign Language', NULL, 563.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polish Sign Language', [Definition] = NULL, [SortOrder] = 563.80 WHERE [Code] = 'pso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plb', 'Polonombauk', NULL, 563.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polonombauk', [Definition] = NULL, [SortOrder] = 563.90 WHERE [Code] = 'plb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmo', 'Pom', NULL, 564.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pom', [Definition] = NULL, [SortOrder] = 564.00 WHERE [Code] = 'pmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmm', 'Pomo', NULL, 564.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pomo', [Definition] = NULL, [SortOrder] = 564.10 WHERE [Code] = 'pmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncc', 'Ponam', NULL, 564.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ponam', [Definition] = NULL, [SortOrder] = 564.20 WHERE [Code] = 'ncc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pns', 'Ponosakan', NULL, 564.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ponosakan', [Definition] = NULL, [SortOrder] = 564.30 WHERE [Code] = 'pns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnt', 'Pontic', NULL, 564.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pontic', [Definition] = NULL, [SortOrder] = 564.40 WHERE [Code] = 'pnt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npg', 'Ponyo-Gongwang Naga', NULL, 564.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ponyo-Gongwang Naga', [Definition] = NULL, [SortOrder] = 564.50 WHERE [Code] = 'npg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jac', 'Popti''', NULL, 564.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Popti''', [Definition] = NULL, [SortOrder] = 564.60 WHERE [Code] = 'jac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poc', 'Poqomam', NULL, 564.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poqomam', [Definition] = NULL, [SortOrder] = 564.70 WHERE [Code] = 'poc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poh', 'Poqomchi''', NULL, 564.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poqomchi''', [Definition] = NULL, [SortOrder] = 564.80 WHERE [Code] = 'poh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prh', 'Porohanon', NULL, 564.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Porohanon', [Definition] = NULL, [SortOrder] = 564.90 WHERE [Code] = 'prh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psw', 'Port Sandwich', NULL, 565.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Port Sandwich', [Definition] = NULL, [SortOrder] = 565.00 WHERE [Code] = 'psw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpl', 'Port Sorell Tasmanian', NULL, 565.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Port Sorell Tasmanian', [Definition] = NULL, [SortOrder] = 565.10 WHERE [Code] = 'xpl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptv', 'Port Vato', NULL, 565.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Port Vato', [Definition] = NULL, [SortOrder] = 565.20 WHERE [Code] = 'ptv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'por') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('por', 'Portuguese', NULL, 565.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Portuguese', [Definition] = NULL, [SortOrder] = 565.30 WHERE [Code] = 'por' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psr', 'Portuguese Sign Language', NULL, 565.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Portuguese Sign Language', [Definition] = NULL, [SortOrder] = 565.40 WHERE [Code] = 'psr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pot', 'Potawatomi', NULL, 565.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Potawatomi', [Definition] = NULL, [SortOrder] = 565.50 WHERE [Code] = 'pot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pog', 'Potiguára', NULL, 565.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Potiguára', [Definition] = NULL, [SortOrder] = 565.60 WHERE [Code] = 'pog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdb', 'Pottangi Ollar Gadaba', NULL, 565.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pottangi Ollar Gadaba', [Definition] = NULL, [SortOrder] = 565.70 WHERE [Code] = 'gdb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmx', 'Poumei Naga', NULL, 565.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poumei Naga', [Definition] = NULL, [SortOrder] = 565.80 WHERE [Code] = 'pmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bye', 'Pouye', NULL, 565.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pouye', [Definition] = NULL, [SortOrder] = 565.90 WHERE [Code] = 'bye' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwr', 'Powari', NULL, 566.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Powari', [Definition] = NULL, [SortOrder] = 566.00 WHERE [Code] = 'pwr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pim', 'Powhatan', NULL, 566.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Powhatan', [Definition] = NULL, [SortOrder] = 566.10 WHERE [Code] = 'pim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pyn', 'Poyanáwa', NULL, 566.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poyanáwa', [Definition] = NULL, [SortOrder] = 566.20 WHERE [Code] = 'pyn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prn', 'Prasuni', NULL, 566.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Prasuni', [Definition] = NULL, [SortOrder] = 566.30 WHERE [Code] = 'prn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgl', 'Primitive Irish', NULL, 566.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Primitive Irish', [Definition] = NULL, [SortOrder] = 566.40 WHERE [Code] = 'pgl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pre', 'Principense', NULL, 566.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Principense', [Definition] = NULL, [SortOrder] = 566.50 WHERE [Code] = 'pre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prz', 'Providencia Sign Language', NULL, 566.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Providencia Sign Language', [Definition] = NULL, [SortOrder] = 566.60 WHERE [Code] = 'prz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prg', 'Prussian', NULL, 566.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Prussian', [Definition] = NULL, [SortOrder] = 566.70 WHERE [Code] = 'prg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvj', 'Psikye', NULL, 566.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Psikye', [Definition] = NULL, [SortOrder] = 566.80 WHERE [Code] = 'kvj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpx', 'Pu-Xian Chinese', NULL, 566.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pu-Xian Chinese', [Definition] = NULL, [SortOrder] = 566.90 WHERE [Code] = 'cpx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pux', 'Puare', NULL, 567.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puare', [Definition] = NULL, [SortOrder] = 567.00 WHERE [Code] = 'pux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atp', 'Pudtol Atta', NULL, 567.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pudtol Atta', [Definition] = NULL, [SortOrder] = 567.10 WHERE [Code] = 'atp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbm', 'Puebla Mazatec', NULL, 567.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puebla Mazatec', [Definition] = NULL, [SortOrder] = 567.20 WHERE [Code] = 'pbm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pue', 'Puelche', NULL, 567.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puelche', [Definition] = NULL, [SortOrder] = 567.30 WHERE [Code] = 'pue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psl', 'Puerto Rican Sign Language', NULL, 567.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puerto Rican Sign Language', [Definition] = NULL, [SortOrder] = 567.40 WHERE [Code] = 'psl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npu', 'Puimei Naga', NULL, 567.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puimei Naga', [Definition] = NULL, [SortOrder] = 567.50 WHERE [Code] = 'npu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pui', 'Puinave', NULL, 567.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puinave', [Definition] = NULL, [SortOrder] = 567.60 WHERE [Code] = 'pui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkp', 'Pukapuka', NULL, 567.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pukapuka', [Definition] = NULL, [SortOrder] = 567.70 WHERE [Code] = 'pkp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuc', 'Pulaar', NULL, 567.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pulaar', [Definition] = NULL, [SortOrder] = 567.80 WHERE [Code] = 'fuc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pup', 'Pulabu', NULL, 567.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pulabu', [Definition] = NULL, [SortOrder] = 567.90 WHERE [Code] = 'pup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuf', 'Pular', NULL, 568.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pular', [Definition] = NULL, [SortOrder] = 568.00 WHERE [Code] = 'fuf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puw', 'Puluwatese', NULL, 568.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puluwatese', [Definition] = NULL, [SortOrder] = 568.10 WHERE [Code] = 'puw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pum', 'Puma', NULL, 568.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puma', [Definition] = NULL, [SortOrder] = 568.20 WHERE [Code] = 'pum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yae', 'Pumé', NULL, 568.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pumé', [Definition] = NULL, [SortOrder] = 568.30 WHERE [Code] = 'yae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpm', 'Pumpokol', NULL, 568.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pumpokol', [Definition] = NULL, [SortOrder] = 568.40 WHERE [Code] = 'xpm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pud', 'Punan Aput', NULL, 568.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Aput', [Definition] = NULL, [SortOrder] = 568.50 WHERE [Code] = 'pud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pna', 'Punan Bah-Biau', NULL, 568.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Bah-Biau', [Definition] = NULL, [SortOrder] = 568.60 WHERE [Code] = 'pna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnm', 'Punan Batu 1', NULL, 568.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Batu 1', [Definition] = NULL, [SortOrder] = 568.70 WHERE [Code] = 'pnm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puf', 'Punan Merah', NULL, 568.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Merah', [Definition] = NULL, [SortOrder] = 568.80 WHERE [Code] = 'puf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puc', 'Punan Merap', NULL, 568.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Merap', [Definition] = NULL, [SortOrder] = 568.90 WHERE [Code] = 'puc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puj', 'Punan Tubu', NULL, 569.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Tubu', [Definition] = NULL, [SortOrder] = 569.00 WHERE [Code] = 'puj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpu', 'Punic', NULL, 569.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punic', [Definition] = NULL, [SortOrder] = 569.10 WHERE [Code] = 'xpu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxp', 'Puno Quechua', NULL, 569.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puno Quechua', [Definition] = NULL, [SortOrder] = 569.20 WHERE [Code] = 'qxp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpt', 'Punthamara', NULL, 569.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punthamara', [Definition] = NULL, [SortOrder] = 569.30 WHERE [Code] = 'xpt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puu', 'Punu', NULL, 569.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punu', [Definition] = NULL, [SortOrder] = 569.40 WHERE [Code] = 'puu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puo', 'Puoc', NULL, 569.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puoc', [Definition] = NULL, [SortOrder] = 569.50 WHERE [Code] = 'puo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puq', 'Puquina', NULL, 569.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puquina', [Definition] = NULL, [SortOrder] = 569.60 WHERE [Code] = 'puq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pru', 'Puragi', NULL, 569.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puragi', [Definition] = NULL, [SortOrder] = 569.70 WHERE [Code] = 'pru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iar', 'Purari', NULL, 569.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purari', [Definition] = NULL, [SortOrder] = 569.80 WHERE [Code] = 'iar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsz', 'Purepecha', NULL, 569.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purepecha', [Definition] = NULL, [SortOrder] = 569.90 WHERE [Code] = 'tsz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prr', 'Puri', NULL, 570.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puri', [Definition] = NULL, [SortOrder] = 570.00 WHERE [Code] = 'prr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prx', 'Purik', NULL, 570.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purik', [Definition] = NULL, [SortOrder] = 570.10 WHERE [Code] = 'prx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puy', 'Purisimeño', NULL, 570.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purisimeño', [Definition] = NULL, [SortOrder] = 570.20 WHERE [Code] = 'puy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suv', 'Puroik', NULL, 570.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puroik', [Definition] = NULL, [SortOrder] = 570.30 WHERE [Code] = 'suv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pur', 'Puruborá', NULL, 570.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puruborá', [Definition] = NULL, [SortOrder] = 570.40 WHERE [Code] = 'pur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pub', 'Purum', NULL, 570.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purum', [Definition] = NULL, [SortOrder] = 570.50 WHERE [Code] = 'pub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pus', 'Pushto', NULL, 570.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pushto', [Definition] = NULL, [SortOrder] = 570.60 WHERE [Code] = 'pus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfl', 'Putai', NULL, 570.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Putai', [Definition] = NULL, [SortOrder] = 570.70 WHERE [Code] = 'mfl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'put') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('put', 'Putoh', NULL, 570.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Putoh', [Definition] = NULL, [SortOrder] = 570.80 WHERE [Code] = 'put' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afe', 'Putukwam', NULL, 570.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Putukwam', [Definition] = NULL, [SortOrder] = 570.90 WHERE [Code] = 'afe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpy', 'Puyo', NULL, 571.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puyo', [Definition] = NULL, [SortOrder] = 571.00 WHERE [Code] = 'xpy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpp', 'Puyo-Paekche', NULL, 571.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puyo-Paekche', [Definition] = NULL, [SortOrder] = 571.10 WHERE [Code] = 'xpp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pyu', 'Puyuma', NULL, 571.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puyuma', [Definition] = NULL, [SortOrder] = 571.20 WHERE [Code] = 'pyu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pme', 'Pwaamei', NULL, 571.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwaamei', [Definition] = NULL, [SortOrder] = 571.30 WHERE [Code] = 'pme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pop', 'Pwapwâ', NULL, 571.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwapwâ', [Definition] = NULL, [SortOrder] = 571.40 WHERE [Code] = 'pop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjp', 'Pwo Eastern Karen', NULL, 571.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwo Eastern Karen', [Definition] = NULL, [SortOrder] = 571.50 WHERE [Code] = 'kjp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pww', 'Pwo Northern Karen', NULL, 571.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwo Northern Karen', [Definition] = NULL, [SortOrder] = 571.60 WHERE [Code] = 'pww' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwo', 'Pwo Western Karen', NULL, 571.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwo Western Karen', [Definition] = NULL, [SortOrder] = 571.70 WHERE [Code] = 'pwo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcw', 'Pyapun', NULL, 571.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pyapun', [Definition] = NULL, [SortOrder] = 571.80 WHERE [Code] = 'pcw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pye', 'Pye Krumen', NULL, 571.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pye Krumen', [Definition] = NULL, [SortOrder] = 571.90 WHERE [Code] = 'pye' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pyy', 'Pyen', NULL, 572.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pyen', [Definition] = NULL, [SortOrder] = 572.00 WHERE [Code] = 'pyy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pyx', 'Pyu (Myanmar)', NULL, 572.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pyu (Myanmar)', [Definition] = NULL, [SortOrder] = 572.10 WHERE [Code] = 'pyx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pby', 'Pyu (Papua New Guinea)', NULL, 572.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pyu (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 572.20 WHERE [Code] = 'pby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjb', 'Q''anjob''al', NULL, 572.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Q''anjob''al', [Definition] = NULL, [SortOrder] = 572.30 WHERE [Code] = 'kjb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laq', 'Qabiao', NULL, 572.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qabiao', [Definition] = NULL, [SortOrder] = 572.40 WHERE [Code] = 'laq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byx', 'Qaqet', NULL, 572.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qaqet', [Definition] = NULL, [SortOrder] = 572.50 WHERE [Code] = 'byx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxq', 'Qashqa''i', NULL, 572.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qashqa''i', [Definition] = NULL, [SortOrder] = 572.60 WHERE [Code] = 'qxq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xqt', 'Qatabanian', NULL, 572.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qatabanian', [Definition] = NULL, [SortOrder] = 572.70 WHERE [Code] = 'xqt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqu', 'Qau', NULL, 572.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qau', [Definition] = NULL, [SortOrder] = 572.80 WHERE [Code] = 'gqu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alc', 'Qawasqar', NULL, 572.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qawasqar', [Definition] = NULL, [SortOrder] = 572.90 WHERE [Code] = 'alc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymq', 'Qila Muji', NULL, 573.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qila Muji', [Definition] = NULL, [SortOrder] = 573.00 WHERE [Code] = 'ymq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahg', 'Qimant', NULL, 573.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qimant', [Definition] = NULL, [SortOrder] = 573.10 WHERE [Code] = 'ahg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zqe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zqe', 'Qiubei Zhuang', NULL, 573.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qiubei Zhuang', [Definition] = NULL, [SortOrder] = 573.20 WHERE [Code] = 'zqe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qua', 'Quapaw', NULL, 573.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quapaw', [Definition] = NULL, [SortOrder] = 573.30 WHERE [Code] = 'qua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fcs', 'Quebec Sign Language', NULL, 573.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quebec Sign Language', [Definition] = NULL, [SortOrder] = 573.40 WHERE [Code] = 'fcs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yum', 'Quechan', NULL, 573.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quechan', [Definition] = NULL, [SortOrder] = 573.50 WHERE [Code] = 'yum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'que') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('que', 'Quechua', NULL, 573.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quechua', [Definition] = NULL, [SortOrder] = 573.60 WHERE [Code] = 'que' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qya', 'Quenya', NULL, 573.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quenya', [Definition] = NULL, [SortOrder] = 573.70 WHERE [Code] = 'qya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otq', 'Querétaro Otomi', NULL, 573.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Querétaro Otomi', [Definition] = NULL, [SortOrder] = 573.80 WHERE [Code] = 'otq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pxm', 'Quetzaltepec Mixe', NULL, 573.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quetzaltepec Mixe', [Definition] = NULL, [SortOrder] = 573.90 WHERE [Code] = 'pxm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvy', 'Queyu', NULL, 574.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Queyu', [Definition] = NULL, [SortOrder] = 574.00 WHERE [Code] = 'qvy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpj', 'Quiavicuzas Zapotec', NULL, 574.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quiavicuzas Zapotec', [Definition] = NULL, [SortOrder] = 574.10 WHERE [Code] = 'zpj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qui', 'Quileute', NULL, 574.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quileute', [Definition] = NULL, [SortOrder] = 574.20 WHERE [Code] = 'qui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qun', 'Quinault', NULL, 574.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quinault', [Definition] = NULL, [SortOrder] = 574.30 WHERE [Code] = 'qun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quq', 'Quinqui', NULL, 574.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quinqui', [Definition] = NULL, [SortOrder] = 574.40 WHERE [Code] = 'quq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztq', 'Quioquitani-Quierí Zapotec', NULL, 574.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quioquitani-Quierí Zapotec', [Definition] = NULL, [SortOrder] = 574.50 WHERE [Code] = 'ztq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chq', 'Quiotepec Chinantec', NULL, 574.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quiotepec Chinantec', [Definition] = NULL, [SortOrder] = 574.60 WHERE [Code] = 'chq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qyp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qyp', 'Quiripi', NULL, 574.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quiripi', [Definition] = NULL, [SortOrder] = 574.70 WHERE [Code] = 'qyp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rah', 'Rabha', NULL, 574.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rabha', [Definition] = NULL, [SortOrder] = 574.80 WHERE [Code] = 'rah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rad', 'Rade', NULL, 574.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rade', [Definition] = NULL, [SortOrder] = 574.90 WHERE [Code] = 'rad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrr', 'Raetic', NULL, 575.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Raetic', [Definition] = NULL, [SortOrder] = 575.00 WHERE [Code] = 'xrr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raz', 'Rahambuu', NULL, 575.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rahambuu', [Definition] = NULL, [SortOrder] = 575.10 WHERE [Code] = 'raz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqk', 'Rajah Kabunsuwan Manobo', NULL, 575.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajah Kabunsuwan Manobo', [Definition] = NULL, [SortOrder] = 575.20 WHERE [Code] = 'mqk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raj', 'Rajasthani', NULL, 575.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajasthani', [Definition] = NULL, [SortOrder] = 575.30 WHERE [Code] = 'raj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rjs', 'Rajbanshi', NULL, 575.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajbanshi', [Definition] = NULL, [SortOrder] = 575.40 WHERE [Code] = 'rjs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rji', 'Raji', NULL, 575.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Raji', [Definition] = NULL, [SortOrder] = 575.50 WHERE [Code] = 'rji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rjg', 'Rajong', NULL, 575.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajong', [Definition] = NULL, [SortOrder] = 575.60 WHERE [Code] = 'rjg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gra', 'Rajput Garasia', NULL, 575.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajput Garasia', [Definition] = NULL, [SortOrder] = 575.70 WHERE [Code] = 'gra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkh', 'Rakahanga-Manihiki', NULL, 575.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rakahanga-Manihiki', [Definition] = NULL, [SortOrder] = 575.80 WHERE [Code] = 'rkh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rki', 'Rakhine', NULL, 575.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rakhine', [Definition] = NULL, [SortOrder] = 575.90 WHERE [Code] = 'rki' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ral') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ral', 'Ralte', NULL, 576.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ralte', [Definition] = NULL, [SortOrder] = 576.00 WHERE [Code] = 'ral' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rma', 'Rama', NULL, 576.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rama', [Definition] = NULL, [SortOrder] = 576.10 WHERE [Code] = 'rma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rai', 'Ramoaaina', NULL, 576.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ramoaaina', [Definition] = NULL, [SortOrder] = 576.20 WHERE [Code] = 'rai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjx', 'Ramopa', NULL, 576.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ramopa', [Definition] = NULL, [SortOrder] = 576.30 WHERE [Code] = 'kjx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lje', 'Rampi', NULL, 576.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rampi', [Definition] = NULL, [SortOrder] = 576.40 WHERE [Code] = 'lje' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thr', 'Rana Tharu', NULL, 576.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rana Tharu', [Definition] = NULL, [SortOrder] = 576.50 WHERE [Code] = 'thr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rax', 'Rang', NULL, 576.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rang', [Definition] = NULL, [SortOrder] = 576.60 WHERE [Code] = 'rax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgk', 'Rangkas', NULL, 576.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rangkas', [Definition] = NULL, [SortOrder] = 576.70 WHERE [Code] = 'rgk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnl', 'Ranglong', NULL, 576.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ranglong', [Definition] = NULL, [SortOrder] = 576.80 WHERE [Code] = 'rnl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkt', 'Rangpuri', NULL, 576.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rangpuri', [Definition] = NULL, [SortOrder] = 576.90 WHERE [Code] = 'rkt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rao', 'Rao', NULL, 577.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rao', [Definition] = NULL, [SortOrder] = 577.00 WHERE [Code] = 'rao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ray') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ray', 'Rapa', NULL, 577.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rapa', [Definition] = NULL, [SortOrder] = 577.10 WHERE [Code] = 'ray' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rap', 'Rapanui', NULL, 577.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rapanui', [Definition] = NULL, [SortOrder] = 577.20 WHERE [Code] = 'rap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyx', 'Rapoisi', NULL, 577.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rapoisi', [Definition] = NULL, [SortOrder] = 577.30 WHERE [Code] = 'kyx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rpt', 'Rapting', NULL, 577.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rapting', [Definition] = NULL, [SortOrder] = 577.40 WHERE [Code] = 'rpt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lra', 'Rara Bakati''', NULL, 577.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rara Bakati''', [Definition] = NULL, [SortOrder] = 577.50 WHERE [Code] = 'lra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rar', 'Rarotongan', NULL, 577.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rarotongan', [Definition] = NULL, [SortOrder] = 577.60 WHERE [Code] = 'rar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rac', 'Rasawa', NULL, 577.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rasawa', [Definition] = NULL, [SortOrder] = 577.70 WHERE [Code] = 'rac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btn', 'Ratagnon', NULL, 577.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ratagnon', [Definition] = NULL, [SortOrder] = 577.80 WHERE [Code] = 'btn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rth', 'Ratahan', NULL, 577.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ratahan', [Definition] = NULL, [SortOrder] = 577.90 WHERE [Code] = 'rth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rtw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rtw', 'Rathawi', NULL, 578.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rathawi', [Definition] = NULL, [SortOrder] = 578.00 WHERE [Code] = 'rtw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgd', 'Rathwi Bareli', NULL, 578.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rathwi Bareli', [Definition] = NULL, [SortOrder] = 578.10 WHERE [Code] = 'bgd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rau', 'Raute', NULL, 578.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Raute', [Definition] = NULL, [SortOrder] = 578.20 WHERE [Code] = 'rau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yea', 'Ravula', NULL, 578.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ravula', [Definition] = NULL, [SortOrder] = 578.30 WHERE [Code] = 'yea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwo', 'Rawa', NULL, 578.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawa', [Definition] = NULL, [SortOrder] = 578.40 WHERE [Code] = 'rwo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raw', 'Rawang', NULL, 578.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawang', [Definition] = NULL, [SortOrder] = 578.50 WHERE [Code] = 'raw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jnl', 'Rawat', NULL, 578.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawat', [Definition] = NULL, [SortOrder] = 578.60 WHERE [Code] = 'jnl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'weu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('weu', 'Rawngtu Chin', NULL, 578.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawngtu Chin', [Definition] = NULL, [SortOrder] = 578.70 WHERE [Code] = 'weu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwa', 'Rawo', NULL, 578.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawo', [Definition] = NULL, [SortOrder] = 578.80 WHERE [Code] = 'rwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zor', 'Rayón Zoque', NULL, 578.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rayón Zoque', [Definition] = NULL, [SortOrder] = 578.90 WHERE [Code] = 'zor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rat', 'Razajerdi', NULL, 579.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Razajerdi', [Definition] = NULL, [SortOrder] = 579.00 WHERE [Code] = 'rat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rzh', 'Razihi', NULL, 579.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Razihi', [Definition] = NULL, [SortOrder] = 579.10 WHERE [Code] = 'rzh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gir', 'Red Gelao', NULL, 579.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Red Gelao', [Definition] = NULL, [SortOrder] = 579.20 WHERE [Code] = 'gir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atu', 'Reel', NULL, 579.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Reel', [Definition] = NULL, [SortOrder] = 579.30 WHERE [Code] = 'atu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rej', 'Rejang', NULL, 579.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rejang', [Definition] = NULL, [SortOrder] = 579.40 WHERE [Code] = 'rej' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ree') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ree', 'Rejang Kayan', NULL, 579.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rejang Kayan', [Definition] = NULL, [SortOrder] = 579.50 WHERE [Code] = 'ree' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rei', 'Reli', NULL, 579.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Reli', [Definition] = NULL, [SortOrder] = 579.60 WHERE [Code] = 'rei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bow', 'Rema', NULL, 579.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rema', [Definition] = NULL, [SortOrder] = 579.70 WHERE [Code] = 'bow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmb', 'Rembarrnga', NULL, 579.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rembarrnga', [Definition] = NULL, [SortOrder] = 579.80 WHERE [Code] = 'rmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'reb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('reb', 'Rembong', NULL, 579.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rembong', [Definition] = NULL, [SortOrder] = 579.90 WHERE [Code] = 'reb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rem', 'Remo', NULL, 580.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Remo', [Definition] = NULL, [SortOrder] = 580.00 WHERE [Code] = 'rem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agv', 'Remontado Dumagat', NULL, 580.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Remontado Dumagat', [Definition] = NULL, [SortOrder] = 580.10 WHERE [Code] = 'agv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmp', 'Rempi', NULL, 580.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rempi', [Definition] = NULL, [SortOrder] = 580.20 WHERE [Code] = 'rmp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkj', 'Remun', NULL, 580.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Remun', [Definition] = NULL, [SortOrder] = 580.30 WHERE [Code] = 'lkj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rel', 'Rendille', NULL, 580.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rendille', [Definition] = NULL, [SortOrder] = 580.40 WHERE [Code] = 'rel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ren') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ren', 'Rengao', NULL, 580.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rengao', [Definition] = NULL, [SortOrder] = 580.50 WHERE [Code] = 'ren' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnv', 'Rennell-Bellona', NULL, 580.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rennell-Bellona', [Definition] = NULL, [SortOrder] = 580.60 WHERE [Code] = 'mnv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rpn', 'Repanbitip', NULL, 580.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Repanbitip', [Definition] = NULL, [SortOrder] = 580.70 WHERE [Code] = 'rpn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rer', 'Rer Bare', NULL, 580.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rer Bare', [Definition] = NULL, [SortOrder] = 580.80 WHERE [Code] = 'rer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rea', 'Rerau', NULL, 580.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rerau', [Definition] = NULL, [SortOrder] = 580.90 WHERE [Code] = 'rea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgk', 'Rerep', NULL, 581.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rerep', [Definition] = NULL, [SortOrder] = 581.00 WHERE [Code] = 'pgk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'res') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('res', 'Reshe', NULL, 581.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Reshe', [Definition] = NULL, [SortOrder] = 581.10 WHERE [Code] = 'res' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgr', 'Resígaro', NULL, 581.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Resígaro', [Definition] = NULL, [SortOrder] = 581.20 WHERE [Code] = 'rgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ret') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ret', 'Retta', NULL, 581.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Retta', [Definition] = NULL, [SortOrder] = 581.30 WHERE [Code] = 'ret' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rcf', 'Réunion Creole French', NULL, 581.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Réunion Creole French', [Definition] = NULL, [SortOrder] = 581.40 WHERE [Code] = 'rcf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rey', 'Reyesano', NULL, 581.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Reyesano', [Definition] = NULL, [SortOrder] = 581.50 WHERE [Code] = 'rey' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ria') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ria', 'Riang (India)', NULL, 581.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riang (India)', [Definition] = NULL, [SortOrder] = 581.60 WHERE [Code] = 'ria' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yin', 'Riang Lai', NULL, 581.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riang Lai', [Definition] = NULL, [SortOrder] = 581.70 WHERE [Code] = 'yin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ril') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ril', 'Riang Lang', NULL, 581.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riang Lang', [Definition] = NULL, [SortOrder] = 581.80 WHERE [Code] = 'ril' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ran') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ran', 'Riantana', NULL, 581.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riantana', [Definition] = NULL, [SortOrder] = 581.90 WHERE [Code] = 'ran' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rir', 'Ribun', NULL, 582.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ribun', [Definition] = NULL, [SortOrder] = 582.00 WHERE [Code] = 'rir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iri', 'Rigwe', NULL, 582.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rigwe', [Definition] = NULL, [SortOrder] = 582.10 WHERE [Code] = 'iri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkb', 'Rikbaktsa', NULL, 582.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rikbaktsa', [Definition] = NULL, [SortOrder] = 582.20 WHERE [Code] = 'rkb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zar', 'Rincón Zapotec', NULL, 582.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rincón Zapotec', [Definition] = NULL, [SortOrder] = 582.30 WHERE [Code] = 'zar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bto', 'Rinconada Bikol', NULL, 582.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rinconada Bikol', [Definition] = NULL, [SortOrder] = 582.40 WHERE [Code] = 'bto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgu', 'Ringgou', NULL, 582.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ringgou', [Definition] = NULL, [SortOrder] = 582.50 WHERE [Code] = 'rgu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rri', 'Ririo', NULL, 582.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ririo', [Definition] = NULL, [SortOrder] = 582.60 WHERE [Code] = 'rri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rit', 'Ritharrngu', NULL, 582.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ritharrngu', [Definition] = NULL, [SortOrder] = 582.70 WHERE [Code] = 'rit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'riu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('riu', 'Riung', NULL, 582.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riung', [Definition] = NULL, [SortOrder] = 582.80 WHERE [Code] = 'riu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snj', 'Riverain Sango', NULL, 582.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riverain Sango', [Definition] = NULL, [SortOrder] = 582.90 WHERE [Code] = 'snj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbn', 'Rmeet', NULL, 583.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rmeet', [Definition] = NULL, [SortOrder] = 583.00 WHERE [Code] = 'lbn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rod', 'Rogo', NULL, 583.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rogo', [Definition] = NULL, [SortOrder] = 583.10 WHERE [Code] = 'rod' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rhg', 'Rohingya', NULL, 583.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rohingya', [Definition] = NULL, [SortOrder] = 583.20 WHERE [Code] = 'rhg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmm', 'Roma', NULL, 583.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Roma', [Definition] = NULL, [SortOrder] = 583.30 WHERE [Code] = 'rmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgn', 'Romagnol', NULL, 583.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romagnol', [Definition] = NULL, [SortOrder] = 583.40 WHERE [Code] = 'rgn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmx', 'Romam', NULL, 583.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romam', [Definition] = NULL, [SortOrder] = 583.50 WHERE [Code] = 'rmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ron') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ron', 'Romanian', NULL, 583.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romanian', [Definition] = NULL, [SortOrder] = 583.60 WHERE [Code] = 'ron' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rms', 'Romanian Sign Language', NULL, 583.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romanian Sign Language', [Definition] = NULL, [SortOrder] = 583.70 WHERE [Code] = 'rms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rge', 'Romano-Greek', NULL, 583.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romano-Greek', [Definition] = NULL, [SortOrder] = 583.80 WHERE [Code] = 'rge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsb', 'Romano-Serbian', NULL, 583.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romano-Serbian', [Definition] = NULL, [SortOrder] = 583.90 WHERE [Code] = 'rsb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmv', 'Romanova', NULL, 584.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romanova', [Definition] = NULL, [SortOrder] = 584.00 WHERE [Code] = 'rmv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'roh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roh', 'Romansh', NULL, 584.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romansh', [Definition] = NULL, [SortOrder] = 584.10 WHERE [Code] = 'roh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rom', 'Romany', NULL, 584.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romany', [Definition] = NULL, [SortOrder] = 584.20 WHERE [Code] = 'rom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rol', 'Romblomanon', NULL, 584.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romblomanon', [Definition] = NULL, [SortOrder] = 584.30 WHERE [Code] = 'rol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rof', 'Rombo', NULL, 584.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rombo', [Definition] = NULL, [SortOrder] = 584.40 WHERE [Code] = 'rof' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmk', 'Romkun', NULL, 584.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romkun', [Definition] = NULL, [SortOrder] = 584.50 WHERE [Code] = 'rmk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cla', 'Ron', NULL, 584.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ron', [Definition] = NULL, [SortOrder] = 584.60 WHERE [Code] = 'cla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rng', 'Ronga', NULL, 584.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ronga', [Definition] = NULL, [SortOrder] = 584.70 WHERE [Code] = 'rng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ror') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ror', 'Rongga', NULL, 584.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rongga', [Definition] = NULL, [SortOrder] = 584.80 WHERE [Code] = 'ror' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbu', 'Rongmei Naga', NULL, 584.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rongmei Naga', [Definition] = NULL, [SortOrder] = 584.90 WHERE [Code] = 'nbu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnp', 'Rongpo', NULL, 585.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rongpo', [Definition] = NULL, [SortOrder] = 585.00 WHERE [Code] = 'rnp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'roe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roe', 'Ronji', NULL, 585.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ronji', [Definition] = NULL, [SortOrder] = 585.10 WHERE [Code] = 'roe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnn', 'Roon', NULL, 585.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Roon', [Definition] = NULL, [SortOrder] = 585.20 WHERE [Code] = 'rnn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rga', 'Roria', NULL, 585.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Roria', [Definition] = NULL, [SortOrder] = 585.30 WHERE [Code] = 'rga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'roo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roo', 'Rotokas', NULL, 585.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rotokas', [Definition] = NULL, [SortOrder] = 585.40 WHERE [Code] = 'roo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rtm', 'Rotuman', NULL, 585.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rotuman', [Definition] = NULL, [SortOrder] = 585.50 WHERE [Code] = 'rtm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rug', 'Roviana', NULL, 585.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Roviana', [Definition] = NULL, [SortOrder] = 585.60 WHERE [Code] = 'rug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pce', 'Ruching Palaung', NULL, 585.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruching Palaung', [Definition] = NULL, [SortOrder] = 585.70 WHERE [Code] = 'pce' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rdb', 'Rudbari', NULL, 585.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rudbari', [Definition] = NULL, [SortOrder] = 585.80 WHERE [Code] = 'rdb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rui', 'Rufiji', NULL, 585.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rufiji', [Definition] = NULL, [SortOrder] = 585.90 WHERE [Code] = 'rui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruh', 'Ruga', NULL, 586.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruga', [Definition] = NULL, [SortOrder] = 586.00 WHERE [Code] = 'ruh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dru', 'Rukai', NULL, 586.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rukai', [Definition] = NULL, [SortOrder] = 586.10 WHERE [Code] = 'dru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruz', 'Ruma', NULL, 586.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruma', [Definition] = NULL, [SortOrder] = 586.20 WHERE [Code] = 'ruz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rbb', 'Rumai Palaung', NULL, 586.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rumai Palaung', [Definition] = NULL, [SortOrder] = 586.30 WHERE [Code] = 'rbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klq', 'Rumu', NULL, 586.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rumu', [Definition] = NULL, [SortOrder] = 586.40 WHERE [Code] = 'klq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'run') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('run', 'Rundi', NULL, 586.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rundi', [Definition] = NULL, [SortOrder] = 586.50 WHERE [Code] = 'run' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rou', 'Runga', NULL, 586.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Runga', [Definition] = NULL, [SortOrder] = 586.60 WHERE [Code] = 'rou' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rtc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rtc', 'Rungtu Chin', NULL, 586.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rungtu Chin', [Definition] = NULL, [SortOrder] = 586.70 WHERE [Code] = 'rtc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drg', 'Rungus', NULL, 586.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rungus', [Definition] = NULL, [SortOrder] = 586.80 WHERE [Code] = 'drg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnw', 'Rungwa', NULL, 586.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rungwa', [Definition] = NULL, [SortOrder] = 586.90 WHERE [Code] = 'rnw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxr', 'Russia Buriat', NULL, 587.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Russia Buriat', [Definition] = NULL, [SortOrder] = 587.00 WHERE [Code] = 'bxr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rus', 'Russian', NULL, 587.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Russian', [Definition] = NULL, [SortOrder] = 587.10 WHERE [Code] = 'rus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsl', 'Russian Sign Language', NULL, 587.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Russian Sign Language', [Definition] = NULL, [SortOrder] = 587.20 WHERE [Code] = 'rsl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rue', 'Rusyn', NULL, 587.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rusyn', [Definition] = NULL, [SortOrder] = 587.30 WHERE [Code] = 'rue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsk', 'Ruthenian', NULL, 587.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruthenian', [Definition] = NULL, [SortOrder] = 587.40 WHERE [Code] = 'rsk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rut', 'Rutul', NULL, 587.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rutul', [Definition] = NULL, [SortOrder] = 587.50 WHERE [Code] = 'rut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruc', 'Ruuli', NULL, 587.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruuli', [Definition] = NULL, [SortOrder] = 587.60 WHERE [Code] = 'ruc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnd', 'Ruund', NULL, 587.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruund', [Definition] = NULL, [SortOrder] = 587.70 WHERE [Code] = 'rnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwl', 'Ruwila', NULL, 587.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruwila', [Definition] = NULL, [SortOrder] = 587.80 WHERE [Code] = 'rwl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwk', 'Rwa', NULL, 587.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rwa', [Definition] = NULL, [SortOrder] = 587.90 WHERE [Code] = 'rwk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsn', 'Rwandan Sign Language', NULL, 588.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rwandan Sign Language', [Definition] = NULL, [SortOrder] = 588.00 WHERE [Code] = 'rsn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksw', 'S''gaw Karen', NULL, 588.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'S''gaw Karen', [Definition] = NULL, [SortOrder] = 588.10 WHERE [Code] = 'ksw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sax', 'Sa', NULL, 588.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sa', [Definition] = NULL, [SortOrder] = 588.20 WHERE [Code] = 'sax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apb', 'Sa''a', NULL, 588.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sa''a', [Definition] = NULL, [SortOrder] = 588.30 WHERE [Code] = 'apb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snv', 'Sa''ban', NULL, 588.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sa''ban', [Definition] = NULL, [SortOrder] = 588.40 WHERE [Code] = 'snv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scq', 'Sa''och', NULL, 588.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sa''och', [Definition] = NULL, [SortOrder] = 588.50 WHERE [Code] = 'scq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sav', 'Saafi-Saafi', NULL, 588.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saafi-Saafi', [Definition] = NULL, [SortOrder] = 588.60 WHERE [Code] = 'sav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raq', 'Saam', NULL, 588.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saam', [Definition] = NULL, [SortOrder] = 588.70 WHERE [Code] = 'raq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsm', 'Saamia', NULL, 588.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saamia', [Definition] = NULL, [SortOrder] = 588.80 WHERE [Code] = 'lsm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxr', 'Saaroa', NULL, 588.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saaroa', [Definition] = NULL, [SortOrder] = 588.90 WHERE [Code] = 'sxr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saa', 'Saba', NULL, 589.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saba', [Definition] = NULL, [SortOrder] = 589.00 WHERE [Code] = 'saa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsa', 'Sabaean', NULL, 589.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabaean', [Definition] = NULL, [SortOrder] = 589.10 WHERE [Code] = 'xsa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsy', 'Sabah Bisaya', NULL, 589.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabah Bisaya', [Definition] = NULL, [SortOrder] = 589.20 WHERE [Code] = 'bsy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msi', 'Sabah Malay', NULL, 589.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabah Malay', [Definition] = NULL, [SortOrder] = 589.30 WHERE [Code] = 'msi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sae', 'Sabanê', NULL, 589.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabanê', [Definition] = NULL, [SortOrder] = 589.40 WHERE [Code] = 'sae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spy', 'Sabaot', NULL, 589.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabaot', [Definition] = NULL, [SortOrder] = 589.50 WHERE [Code] = 'spy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbv', 'Sabine', NULL, 589.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabine', [Definition] = NULL, [SortOrder] = 589.60 WHERE [Code] = 'sbv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hvn', 'Sabu', NULL, 589.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabu', [Definition] = NULL, [SortOrder] = 589.70 WHERE [Code] = 'hvn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbo', 'Sabüm', NULL, 589.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabüm', [Definition] = NULL, [SortOrder] = 589.80 WHERE [Code] = 'sbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quv', 'Sacapulteco', NULL, 589.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sacapulteco', [Definition] = NULL, [SortOrder] = 589.90 WHERE [Code] = 'quv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sck', 'Sadri', NULL, 590.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sadri', [Definition] = NULL, [SortOrder] = 590.00 WHERE [Code] = 'sck' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skb', 'Saek', NULL, 590.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saek', [Definition] = NULL, [SortOrder] = 590.10 WHERE [Code] = 'skb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spd', 'Saep', NULL, 590.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saep', [Definition] = NULL, [SortOrder] = 590.20 WHERE [Code] = 'spd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saf', 'Safaliba', NULL, 590.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Safaliba', [Definition] = NULL, [SortOrder] = 590.30 WHERE [Code] = 'saf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apz', 'Safeyoka', NULL, 590.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Safeyoka', [Definition] = NULL, [SortOrder] = 590.40 WHERE [Code] = 'apz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbk', 'Safwa', NULL, 590.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Safwa', [Definition] = NULL, [SortOrder] = 590.50 WHERE [Code] = 'sbk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbm', 'Sagala', NULL, 590.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sagala', [Definition] = NULL, [SortOrder] = 590.60 WHERE [Code] = 'sbm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tga', 'Sagalla', NULL, 590.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sagalla', [Definition] = NULL, [SortOrder] = 590.70 WHERE [Code] = 'tga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssy', 'Saho', NULL, 590.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saho', [Definition] = NULL, [SortOrder] = 590.80 WHERE [Code] = 'ssy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saj', 'Sahu', NULL, 590.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sahu', [Definition] = NULL, [SortOrder] = 590.90 WHERE [Code] = 'saj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aec', 'Saidi Arabic', NULL, 591.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saidi Arabic', [Definition] = NULL, [SortOrder] = 591.00 WHERE [Code] = 'aec' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acf', 'Saint Lucian Creole French', NULL, 591.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saint Lucian Creole French', [Definition] = NULL, [SortOrder] = 591.10 WHERE [Code] = 'acf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsy', 'Saisiyat', NULL, 591.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saisiyat', [Definition] = NULL, [SortOrder] = 591.20 WHERE [Code] = 'xsy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjl', 'Sajalong', NULL, 591.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sajalong', [Definition] = NULL, [SortOrder] = 591.30 WHERE [Code] = 'sjl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjb', 'Sajau Basap', NULL, 591.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sajau Basap', [Definition] = NULL, [SortOrder] = 591.40 WHERE [Code] = 'sjb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sch', 'Sakachep', NULL, 591.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakachep', [Definition] = NULL, [SortOrder] = 591.50 WHERE [Code] = 'sch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skg', 'Sakalava Malagasy', NULL, 591.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakalava Malagasy', [Definition] = NULL, [SortOrder] = 591.60 WHERE [Code] = 'skg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sku', 'Sakao', NULL, 591.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakao', [Definition] = NULL, [SortOrder] = 591.70 WHERE [Code] = 'sku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skt', 'Sakata', NULL, 591.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakata', [Definition] = NULL, [SortOrder] = 591.80 WHERE [Code] = 'skt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sak', 'Sake', NULL, 591.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sake', [Definition] = NULL, [SortOrder] = 591.90 WHERE [Code] = 'sak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skf', 'Sakirabiá', NULL, 592.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakirabiá', [Definition] = NULL, [SortOrder] = 592.00 WHERE [Code] = 'skf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szy', 'Sakizaya', NULL, 592.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakizaya', [Definition] = NULL, [SortOrder] = 592.10 WHERE [Code] = 'szy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shq', 'Sala', NULL, 592.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sala', [Definition] = NULL, [SortOrder] = 592.20 WHERE [Code] = 'shq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slx', 'Salampasu', NULL, 592.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salampasu', [Definition] = NULL, [SortOrder] = 592.30 WHERE [Code] = 'slx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slr', 'Salar', NULL, 592.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salar', [Definition] = NULL, [SortOrder] = 592.40 WHERE [Code] = 'slr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgu', 'Salas', NULL, 592.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salas', [Definition] = NULL, [SortOrder] = 592.50 WHERE [Code] = 'sgu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxl', 'Salasaca Highland Quichua', NULL, 592.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salasaca Highland Quichua', [Definition] = NULL, [SortOrder] = 592.60 WHERE [Code] = 'qxl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slq', 'Salchuq', NULL, 592.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salchuq', [Definition] = NULL, [SortOrder] = 592.70 WHERE [Code] = 'slq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sau', 'Saleman', NULL, 592.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saleman', [Definition] = NULL, [SortOrder] = 592.80 WHERE [Code] = 'sau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbe', 'Saliba', NULL, 592.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saliba', [Definition] = NULL, [SortOrder] = 592.90 WHERE [Code] = 'sbe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slc', 'Sáliba', NULL, 593.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sáliba', [Definition] = NULL, [SortOrder] = 593.00 WHERE [Code] = 'slc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sln', 'Salinan', NULL, 593.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salinan', [Definition] = NULL, [SortOrder] = 593.10 WHERE [Code] = 'sln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdz', 'Sallands', NULL, 593.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sallands', [Definition] = NULL, [SortOrder] = 593.20 WHERE [Code] = 'sdz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sll', 'Salt-Yui', NULL, 593.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salt-Yui', [Definition] = NULL, [SortOrder] = 593.30 WHERE [Code] = 'sll' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loe', 'Saluan', NULL, 593.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saluan', [Definition] = NULL, [SortOrder] = 593.40 WHERE [Code] = 'loe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slj', 'Salumá', NULL, 593.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salumá', [Definition] = NULL, [SortOrder] = 593.50 WHERE [Code] = 'slj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esn', 'Salvadoran Sign Language', NULL, 593.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salvadoran Sign Language', [Definition] = NULL, [SortOrder] = 593.60 WHERE [Code] = 'esn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snx', 'Sam', NULL, 593.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sam', [Definition] = NULL, [SortOrder] = 593.70 WHERE [Code] = 'snx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smp', 'Samaritan', NULL, 593.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samaritan', [Definition] = NULL, [SortOrder] = 593.80 WHERE [Code] = 'smp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sam', 'Samaritan Aramaic', NULL, 593.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samaritan Aramaic', [Definition] = NULL, [SortOrder] = 593.90 WHERE [Code] = 'sam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmj', 'Samarokena', NULL, 594.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samarokena', [Definition] = NULL, [SortOrder] = 594.00 WHERE [Code] = 'tmj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysd', 'Samatao', NULL, 594.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samatao', [Definition] = NULL, [SortOrder] = 594.10 WHERE [Code] = 'ysd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syx', 'Samay', NULL, 594.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samay', [Definition] = NULL, [SortOrder] = 594.20 WHERE [Code] = 'syx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smx', 'Samba', NULL, 594.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samba', [Definition] = NULL, [SortOrder] = 594.30 WHERE [Code] = 'smx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccg', 'Samba Daka', NULL, 594.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samba Daka', [Definition] = NULL, [SortOrder] = 594.40 WHERE [Code] = 'ccg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndi', 'Samba Leko', NULL, 594.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samba Leko', [Definition] = NULL, [SortOrder] = 594.50 WHERE [Code] = 'ndi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsb', 'Sambal', NULL, 594.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sambal', [Definition] = NULL, [SortOrder] = 594.60 WHERE [Code] = 'xsb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spv', 'Sambalpuri', NULL, 594.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sambalpuri', [Definition] = NULL, [SortOrder] = 594.70 WHERE [Code] = 'spv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xab', 'Sambe', NULL, 594.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sambe', [Definition] = NULL, [SortOrder] = 594.80 WHERE [Code] = 'xab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssx', 'Samberigi', NULL, 594.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samberigi', [Definition] = NULL, [SortOrder] = 594.90 WHERE [Code] = 'ssx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saq', 'Samburu', NULL, 595.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samburu', [Definition] = NULL, [SortOrder] = 595.00 WHERE [Code] = 'saq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smh', 'Samei', NULL, 595.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samei', [Definition] = NULL, [SortOrder] = 595.10 WHERE [Code] = 'smh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smq', 'Samo', NULL, 595.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samo', [Definition] = NULL, [SortOrder] = 595.20 WHERE [Code] = 'smq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smo', 'Samoan', NULL, 595.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samoan', [Definition] = NULL, [SortOrder] = 595.30 WHERE [Code] = 'smo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgs', 'Samogitian', NULL, 595.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samogitian', [Definition] = NULL, [SortOrder] = 595.40 WHERE [Code] = 'sgs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swm', 'Samosa', NULL, 595.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samosa', [Definition] = NULL, [SortOrder] = 595.50 WHERE [Code] = 'swm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rav', 'Sampang', NULL, 595.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sampang', [Definition] = NULL, [SortOrder] = 595.60 WHERE [Code] = 'rav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxm', 'Samre', NULL, 595.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samre', [Definition] = NULL, [SortOrder] = 595.70 WHERE [Code] = 'sxm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stu', 'Samtao', NULL, 595.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samtao', [Definition] = NULL, [SortOrder] = 595.80 WHERE [Code] = 'stu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smv', 'Samvedi', NULL, 595.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samvedi', [Definition] = NULL, [SortOrder] = 595.90 WHERE [Code] = 'smv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztm', 'San Agustín Mixtepec Zapotec', NULL, 596.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Agustín Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 596.00 WHERE [Code] = 'ztm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpx', 'San Baltazar Loxicha Zapotec', NULL, 596.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Baltazar Loxicha Zapotec', [Definition] = NULL, [SortOrder] = 596.10 WHERE [Code] = 'zpx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuk', 'San Blas Kuna', NULL, 596.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Blas Kuna', [Definition] = NULL, [SortOrder] = 596.20 WHERE [Code] = 'cuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hve', 'San Dionisio Del Mar Huave', NULL, 596.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Dionisio Del Mar Huave', [Definition] = NULL, [SortOrder] = 596.30 WHERE [Code] = 'hve' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pow', 'San Felipe Otlaltepec Popoloca', NULL, 596.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Felipe Otlaltepec Popoloca', [Definition] = NULL, [SortOrder] = 596.40 WHERE [Code] = 'pow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hue', 'San Francisco Del Mar Huave', NULL, 596.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Francisco Del Mar Huave', [Definition] = NULL, [SortOrder] = 596.50 WHERE [Code] = 'hue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mat', 'San Francisco Matlatzinca', NULL, 596.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Francisco Matlatzinca', [Definition] = NULL, [SortOrder] = 596.60 WHERE [Code] = 'mat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maa', 'San Jerónimo Tecóatl Mazatec', NULL, 596.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Jerónimo Tecóatl Mazatec', [Definition] = NULL, [SortOrder] = 596.70 WHERE [Code] = 'maa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poe', 'San Juan Atzingo Popoloca', NULL, 596.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Juan Atzingo Popoloca', [Definition] = NULL, [SortOrder] = 596.80 WHERE [Code] = 'poe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjc', 'San Juan Colorado Mixtec', NULL, 596.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Juan Colorado Mixtec', [Definition] = NULL, [SortOrder] = 596.90 WHERE [Code] = 'mjc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtj', 'San Juan Teita Mixtec', NULL, 597.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Juan Teita Mixtec', [Definition] = NULL, [SortOrder] = 597.00 WHERE [Code] = 'xtj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pps', 'San Luís Temalacayuca Popoloca', NULL, 597.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Luís Temalacayuca Popoloca', [Definition] = NULL, [SortOrder] = 597.10 WHERE [Code] = 'pps' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pls', 'San Marcos Tlacoyalco Popoloca', NULL, 597.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Marcos Tlacoyalco Popoloca', [Definition] = NULL, [SortOrder] = 597.20 WHERE [Code] = 'pls' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trq', 'San Martín Itunyoso Triqui', NULL, 597.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Martín Itunyoso Triqui', [Definition] = NULL, [SortOrder] = 597.30 WHERE [Code] = 'trq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvs', 'San Martín Quechua', NULL, 597.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Martín Quechua', [Definition] = NULL, [SortOrder] = 597.40 WHERE [Code] = 'qvs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huv', 'San Mateo Del Mar Huave', NULL, 597.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Mateo Del Mar Huave', [Definition] = NULL, [SortOrder] = 597.50 WHERE [Code] = 'huv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scf', 'San Miguel Creole French', NULL, 597.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Miguel Creole French', [Definition] = NULL, [SortOrder] = 597.60 WHERE [Code] = 'scf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mig', 'San Miguel El Grande Mixtec', NULL, 597.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Miguel El Grande Mixtec', [Definition] = NULL, [SortOrder] = 597.70 WHERE [Code] = 'mig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtp', 'San Miguel Piedras Mixtec', NULL, 597.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Miguel Piedras Mixtec', [Definition] = NULL, [SortOrder] = 597.80 WHERE [Code] = 'xtp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azg', 'San Pedro Amuzgos Amuzgo', NULL, 597.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Pedro Amuzgos Amuzgo', [Definition] = NULL, [SortOrder] = 597.90 WHERE [Code] = 'azg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpf', 'San Pedro Quiatoni Zapotec', NULL, 598.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Pedro Quiatoni Zapotec', [Definition] = NULL, [SortOrder] = 598.00 WHERE [Code] = 'zpf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwy', 'San Salvador Kongo', NULL, 598.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Salvador Kongo', [Definition] = NULL, [SortOrder] = 598.10 WHERE [Code] = 'kwy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpt', 'San Vicente Coatlán Zapotec', NULL, 598.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Vicente Coatlán Zapotec', [Definition] = NULL, [SortOrder] = 598.20 WHERE [Code] = 'zpt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayn', 'Sanaani Arabic', NULL, 598.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanaani Arabic', [Definition] = NULL, [SortOrder] = 598.30 WHERE [Code] = 'ayn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spn', 'Sanapaná', NULL, 598.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanapaná', [Definition] = NULL, [SortOrder] = 598.40 WHERE [Code] = 'spn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sad', 'Sandawe', NULL, 598.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sandawe', [Definition] = NULL, [SortOrder] = 598.50 WHERE [Code] = 'sad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sng', 'Sanga (Democratic Republic of Congo)', NULL, 598.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanga (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 598.60 WHERE [Code] = 'sng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsn', 'Sanga (Nigeria)', NULL, 598.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanga (Nigeria)', [Definition] = NULL, [SortOrder] = 598.70 WHERE [Code] = 'xsn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scg', 'Sanggau', NULL, 598.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanggau', [Definition] = NULL, [SortOrder] = 598.80 WHERE [Code] = 'scg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snl', 'Sangil', NULL, 598.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangil', [Definition] = NULL, [SortOrder] = 598.90 WHERE [Code] = 'snl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxn', 'Sangir', NULL, 599.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangir', [Definition] = NULL, [SortOrder] = 599.00 WHERE [Code] = 'sxn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgr', 'Sangisari', NULL, 599.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangisari', [Definition] = NULL, [SortOrder] = 599.10 WHERE [Code] = 'sgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgk', 'Sangkong', NULL, 599.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangkong', [Definition] = NULL, [SortOrder] = 599.20 WHERE [Code] = 'sgk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgy', 'Sanglechi', NULL, 599.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanglechi', [Definition] = NULL, [SortOrder] = 599.30 WHERE [Code] = 'sgy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sag', 'Sango', NULL, 599.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sango', [Definition] = NULL, [SortOrder] = 599.40 WHERE [Code] = 'sag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsa', 'Sangtam Naga', NULL, 599.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangtam Naga', [Definition] = NULL, [SortOrder] = 599.50 WHERE [Code] = 'nsa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snq', 'Sangu (Gabon)', NULL, 599.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangu (Gabon)', [Definition] = NULL, [SortOrder] = 599.60 WHERE [Code] = 'snq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbp', 'Sangu (Tanzania)', NULL, 599.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangu (Tanzania)', [Definition] = NULL, [SortOrder] = 599.70 WHERE [Code] = 'sbp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysn', 'Sani', NULL, 599.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sani', [Definition] = NULL, [SortOrder] = 599.80 WHERE [Code] = 'ysn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysy', 'Sanie', NULL, 599.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanie', [Definition] = NULL, [SortOrder] = 599.90 WHERE [Code] = 'ysy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sny', 'Saniyo-Hiyewe', NULL, 600.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saniyo-Hiyewe', [Definition] = NULL, [SortOrder] = 600.00 WHERE [Code] = 'sny' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msc', 'Sankaran Maninka', NULL, 600.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sankaran Maninka', [Definition] = NULL, [SortOrder] = 600.10 WHERE [Code] = 'msc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssi', 'Sansi', NULL, 600.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sansi', [Definition] = NULL, [SortOrder] = 600.20 WHERE [Code] = 'ssi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'san') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('san', 'Sanskrit', NULL, 600.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanskrit', [Definition] = NULL, [SortOrder] = 600.30 WHERE [Code] = 'san' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxt', 'Santa Ana de Tusi Pasco Quechua', NULL, 600.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Ana de Tusi Pasco Quechua', [Definition] = NULL, [SortOrder] = 600.40 WHERE [Code] = 'qxt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztn', 'Santa Catarina Albarradas Zapotec', NULL, 600.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Catarina Albarradas Zapotec', [Definition] = NULL, [SortOrder] = 600.50 WHERE [Code] = 'ztn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pca', 'Santa Inés Ahuatempan Popoloca', NULL, 600.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Inés Ahuatempan Popoloca', [Definition] = NULL, [SortOrder] = 600.60 WHERE [Code] = 'pca' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpn', 'Santa Inés Yatzechi Zapotec', NULL, 600.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Inés Yatzechi Zapotec', [Definition] = NULL, [SortOrder] = 600.70 WHERE [Code] = 'zpn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdv', 'Santa Lucía Monteverde Mixtec', NULL, 600.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Lucía Monteverde Mixtec', [Definition] = NULL, [SortOrder] = 600.80 WHERE [Code] = 'mdv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hvv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hvv', 'Santa María Del Mar Huave', NULL, 600.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa María Del Mar Huave', [Definition] = NULL, [SortOrder] = 600.90 WHERE [Code] = 'hvv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhz', 'Santa María La Alta Nahuatl', NULL, 601.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa María La Alta Nahuatl', [Definition] = NULL, [SortOrder] = 601.00 WHERE [Code] = 'nhz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpi', 'Santa María Quiegolani Zapotec', NULL, 601.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa María Quiegolani Zapotec', [Definition] = NULL, [SortOrder] = 601.10 WHERE [Code] = 'zpi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mza', 'Santa María Zacatepec Mixtec', NULL, 601.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa María Zacatepec Mixtec', [Definition] = NULL, [SortOrder] = 601.20 WHERE [Code] = 'mza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cok', 'Santa Teresa Cora', NULL, 601.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Teresa Cora', [Definition] = NULL, [SortOrder] = 601.30 WHERE [Code] = 'cok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sat', 'Santali', NULL, 601.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santali', [Definition] = NULL, [SortOrder] = 601.40 WHERE [Code] = 'sat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qus', 'Santiago del Estero Quichua', NULL, 601.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santiago del Estero Quichua', [Definition] = NULL, [SortOrder] = 601.50 WHERE [Code] = 'qus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpr', 'Santiago Xanica Zapotec', NULL, 601.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santiago Xanica Zapotec', [Definition] = NULL, [SortOrder] = 601.60 WHERE [Code] = 'zpr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zas', 'Santo Domingo Albarradas Zapotec', NULL, 601.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santo Domingo Albarradas Zapotec', [Definition] = NULL, [SortOrder] = 601.70 WHERE [Code] = 'zas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsu', 'Sanumá', NULL, 601.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanumá', [Definition] = NULL, [SortOrder] = 601.80 WHERE [Code] = 'xsu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkp', 'São Paulo Kaingáng', NULL, 601.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'São Paulo Kaingáng', [Definition] = NULL, [SortOrder] = 601.90 WHERE [Code] = 'zkp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cri', 'Sãotomense', NULL, 602.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sãotomense', [Definition] = NULL, [SortOrder] = 602.00 WHERE [Code] = 'cri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spr', 'Saparua', NULL, 602.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saparua', [Definition] = NULL, [SortOrder] = 602.10 WHERE [Code] = 'spr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spc', 'Sapé', NULL, 602.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sapé', [Definition] = NULL, [SortOrder] = 602.20 WHERE [Code] = 'spc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krn', 'Sapo', NULL, 602.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sapo', [Definition] = NULL, [SortOrder] = 602.30 WHERE [Code] = 'krn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spi', 'Saponi', NULL, 602.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saponi', [Definition] = NULL, [SortOrder] = 602.40 WHERE [Code] = 'spi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sps', 'Saposa', NULL, 602.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saposa', [Definition] = NULL, [SortOrder] = 602.50 WHERE [Code] = 'sps' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spu', 'Sapuan', NULL, 602.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sapuan', [Definition] = NULL, [SortOrder] = 602.60 WHERE [Code] = 'spu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwm', 'Sar', NULL, 602.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sar', [Definition] = NULL, [SortOrder] = 602.70 WHERE [Code] = 'mwm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sre', 'Sara', NULL, 602.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sara', [Definition] = NULL, [SortOrder] = 602.80 WHERE [Code] = 'sre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbz', 'Sara Kaba', NULL, 602.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sara Kaba', [Definition] = NULL, [SortOrder] = 602.90 WHERE [Code] = 'sbz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwg', 'Sara Kaba Deme', NULL, 603.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sara Kaba Deme', [Definition] = NULL, [SortOrder] = 603.00 WHERE [Code] = 'kwg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwv', 'Sara Kaba Náà', NULL, 603.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sara Kaba Náà', [Definition] = NULL, [SortOrder] = 603.10 WHERE [Code] = 'kwv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skr', 'Saraiki', NULL, 603.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saraiki', [Definition] = NULL, [SortOrder] = 603.20 WHERE [Code] = 'skr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srm', 'Saramaccan', NULL, 603.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saramaccan', [Definition] = NULL, [SortOrder] = 603.30 WHERE [Code] = 'srm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bps', 'Sarangani Blaan', NULL, 603.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarangani Blaan', [Definition] = NULL, [SortOrder] = 603.40 WHERE [Code] = 'bps' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbs', 'Sarangani Manobo', NULL, 603.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarangani Manobo', [Definition] = NULL, [SortOrder] = 603.50 WHERE [Code] = 'mbs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsa', 'Sarasira', NULL, 603.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarasira', [Definition] = NULL, [SortOrder] = 603.60 WHERE [Code] = 'zsa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sar', 'Saraveca', NULL, 603.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saraveca', [Definition] = NULL, [SortOrder] = 603.70 WHERE [Code] = 'sar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srd', 'Sardinian', NULL, 603.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sardinian', [Definition] = NULL, [SortOrder] = 603.80 WHERE [Code] = 'srd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asj', 'Sari', NULL, 603.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sari', [Definition] = NULL, [SortOrder] = 603.90 WHERE [Code] = 'asj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srh', 'Sarikoli', NULL, 604.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarikoli', [Definition] = NULL, [SortOrder] = 604.00 WHERE [Code] = 'srh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdf', 'Sarli', NULL, 604.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarli', [Definition] = NULL, [SortOrder] = 604.10 WHERE [Code] = 'sdf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srs', 'Sarsi', NULL, 604.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarsi', [Definition] = NULL, [SortOrder] = 604.20 WHERE [Code] = 'srs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onp', 'Sartang', NULL, 604.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sartang', [Definition] = NULL, [SortOrder] = 604.30 WHERE [Code] = 'onp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swy', 'Sarua', NULL, 604.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarua', [Definition] = NULL, [SortOrder] = 604.40 WHERE [Code] = 'swy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdu', 'Sarudu', NULL, 604.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarudu', [Definition] = NULL, [SortOrder] = 604.50 WHERE [Code] = 'sdu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sra', 'Saruga', NULL, 604.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saruga', [Definition] = NULL, [SortOrder] = 604.60 WHERE [Code] = 'sra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sas', 'Sasak', NULL, 604.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sasak', [Definition] = NULL, [SortOrder] = 604.70 WHERE [Code] = 'sas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxs', 'Sasaru', NULL, 604.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sasaru', [Definition] = NULL, [SortOrder] = 604.80 WHERE [Code] = 'sxs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdc', 'Sassarese Sardinian', NULL, 604.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sassarese Sardinian', [Definition] = NULL, [SortOrder] = 604.90 WHERE [Code] = 'sdc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stw', 'Satawalese', NULL, 605.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Satawalese', [Definition] = NULL, [SortOrder] = 605.00 WHERE [Code] = 'stw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mav', 'Sateré-Mawé', NULL, 605.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sateré-Mawé', [Definition] = NULL, [SortOrder] = 605.10 WHERE [Code] = 'mav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stq', 'Saterfriesisch', NULL, 605.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saterfriesisch', [Definition] = NULL, [SortOrder] = 605.20 WHERE [Code] = 'stq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdl', 'Saudi Arabian Sign Language', NULL, 605.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saudi Arabian Sign Language', [Definition] = NULL, [SortOrder] = 605.30 WHERE [Code] = 'sdl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psu', 'Sauraseni Prakrit', NULL, 605.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sauraseni Prakrit', [Definition] = NULL, [SortOrder] = 605.40 WHERE [Code] = 'psu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saz', 'Saurashtra', NULL, 605.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saurashtra', [Definition] = NULL, [SortOrder] = 605.50 WHERE [Code] = 'saz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srt', 'Sauri', NULL, 605.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sauri', [Definition] = NULL, [SortOrder] = 605.60 WHERE [Code] = 'srt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjt', 'Sauria Paharia', NULL, 605.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sauria Paharia', [Definition] = NULL, [SortOrder] = 605.70 WHERE [Code] = 'mjt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sao', 'Sause', NULL, 605.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sause', [Definition] = NULL, [SortOrder] = 605.80 WHERE [Code] = 'sao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssj', 'Sausi', NULL, 605.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sausi', [Definition] = NULL, [SortOrder] = 605.90 WHERE [Code] = 'ssj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdg', 'Savi', NULL, 606.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Savi', [Definition] = NULL, [SortOrder] = 606.00 WHERE [Code] = 'sdg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svs', 'Savosavo', NULL, 606.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Savosavo', [Definition] = NULL, [SortOrder] = 606.10 WHERE [Code] = 'svs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szw', 'Sawai', NULL, 606.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sawai', [Definition] = NULL, [SortOrder] = 606.20 WHERE [Code] = 'szw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swr', 'Saweru', NULL, 606.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saweru', [Definition] = NULL, [SortOrder] = 606.30 WHERE [Code] = 'swr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saw', 'Sawi', NULL, 606.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sawi', [Definition] = NULL, [SortOrder] = 606.40 WHERE [Code] = 'saw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swt', 'Sawila', NULL, 606.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sawila', [Definition] = NULL, [SortOrder] = 606.50 WHERE [Code] = 'swt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swn', 'Sawknah', NULL, 606.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sawknah', [Definition] = NULL, [SortOrder] = 606.60 WHERE [Code] = 'swn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxw', 'Saxwe Gbe', NULL, 606.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saxwe Gbe', [Definition] = NULL, [SortOrder] = 606.70 WHERE [Code] = 'sxw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'say') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('say', 'Saya', NULL, 606.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saya', [Definition] = NULL, [SortOrder] = 606.80 WHERE [Code] = 'say' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pos', 'Sayula Popoluca', NULL, 606.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sayula Popoluca', [Definition] = NULL, [SortOrder] = 606.90 WHERE [Code] = 'pos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sco', 'Scots', NULL, 607.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Scots', [Definition] = NULL, [SortOrder] = 607.00 WHERE [Code] = 'sco' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gla', 'Scottish Gaelic', NULL, 607.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Scottish Gaelic', [Definition] = NULL, [SortOrder] = 607.10 WHERE [Code] = 'gla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsc', 'Scythian', NULL, 607.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Scythian', [Definition] = NULL, [SortOrder] = 607.20 WHERE [Code] = 'xsc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gul', 'Sea Island Creole English', NULL, 607.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sea Island Creole English', [Definition] = NULL, [SortOrder] = 607.30 WHERE [Code] = 'gul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdg', 'Seba', NULL, 607.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seba', [Definition] = NULL, [SortOrder] = 607.40 WHERE [Code] = 'kdg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgw', 'Sebat Bet Gurage', NULL, 607.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sebat Bet Gurage', [Definition] = NULL, [SortOrder] = 607.50 WHERE [Code] = 'sgw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbx', 'Seberuang', NULL, 607.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seberuang', [Definition] = NULL, [SortOrder] = 607.60 WHERE [Code] = 'sbx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sib', 'Sebop', NULL, 607.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sebop', [Definition] = NULL, [SortOrder] = 607.70 WHERE [Code] = 'sib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sec', 'Sechelt', NULL, 607.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sechelt', [Definition] = NULL, [SortOrder] = 607.80 WHERE [Code] = 'sec' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sey', 'Secoya', NULL, 607.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Secoya', [Definition] = NULL, [SortOrder] = 607.90 WHERE [Code] = 'sey' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sed', 'Sedang', NULL, 608.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sedang', [Definition] = NULL, [SortOrder] = 608.00 WHERE [Code] = 'sed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvw', 'Sedoa', NULL, 608.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sedoa', [Definition] = NULL, [SortOrder] = 608.10 WHERE [Code] = 'tvw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sos', 'Seeku', NULL, 608.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seeku', [Definition] = NULL, [SortOrder] = 608.20 WHERE [Code] = 'sos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sge', 'Segai', NULL, 608.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Segai', [Definition] = NULL, [SortOrder] = 608.30 WHERE [Code] = 'sge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seg', 'Segeju', NULL, 608.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Segeju', [Definition] = NULL, [SortOrder] = 608.40 WHERE [Code] = 'seg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbg', 'Seget', NULL, 608.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seget', [Definition] = NULL, [SortOrder] = 608.50 WHERE [Code] = 'sbg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfw', 'Sehwi', NULL, 608.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sehwi', [Definition] = NULL, [SortOrder] = 608.60 WHERE [Code] = 'sfw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssg', 'Seimat', NULL, 608.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seimat', [Definition] = NULL, [SortOrder] = 608.70 WHERE [Code] = 'ssg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hik', 'Seit-Kaitetu', NULL, 608.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seit-Kaitetu', [Definition] = NULL, [SortOrder] = 608.80 WHERE [Code] = 'hik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sek', 'Sekani', NULL, 608.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekani', [Definition] = NULL, [SortOrder] = 608.90 WHERE [Code] = 'sek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skp', 'Sekapan', NULL, 609.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekapan', [Definition] = NULL, [SortOrder] = 609.00 WHERE [Code] = 'skp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skz', 'Sekar', NULL, 609.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekar', [Definition] = NULL, [SortOrder] = 609.10 WHERE [Code] = 'skz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skj', 'Seke (Nepal)', NULL, 609.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seke (Nepal)', [Definition] = NULL, [SortOrder] = 609.20 WHERE [Code] = 'skj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ske') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ske', 'Seke (Vanuatu)', NULL, 609.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seke (Vanuatu)', [Definition] = NULL, [SortOrder] = 609.30 WHERE [Code] = 'ske' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vaj', 'Sekele', NULL, 609.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekele', [Definition] = NULL, [SortOrder] = 609.40 WHERE [Code] = 'vaj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syi', 'Seki', NULL, 609.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seki', [Definition] = NULL, [SortOrder] = 609.50 WHERE [Code] = 'syi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skx', 'Seko Padang', NULL, 609.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seko Padang', [Definition] = NULL, [SortOrder] = 609.60 WHERE [Code] = 'skx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sko', 'Seko Tengah', NULL, 609.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seko Tengah', [Definition] = NULL, [SortOrder] = 609.70 WHERE [Code] = 'sko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lip', 'Sekpele', NULL, 609.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekpele', [Definition] = NULL, [SortOrder] = 609.80 WHERE [Code] = 'lip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgi', 'Selangor Sign Language', NULL, 609.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selangor Sign Language', [Definition] = NULL, [SortOrder] = 609.90 WHERE [Code] = 'kgi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slu', 'Selaru', NULL, 610.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selaru', [Definition] = NULL, [SortOrder] = 610.00 WHERE [Code] = 'slu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sly', 'Selayar', NULL, 610.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selayar', [Definition] = NULL, [SortOrder] = 610.10 WHERE [Code] = 'sly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snw', 'Selee', NULL, 610.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selee', [Definition] = NULL, [SortOrder] = 610.20 WHERE [Code] = 'snw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spl', 'Selepet', NULL, 610.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selepet', [Definition] = NULL, [SortOrder] = 610.30 WHERE [Code] = 'spl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxl', 'Selian', NULL, 610.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selian', [Definition] = NULL, [SortOrder] = 610.40 WHERE [Code] = 'sxl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sel', 'Selkup', NULL, 610.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selkup', [Definition] = NULL, [SortOrder] = 610.50 WHERE [Code] = 'sel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slg', 'Selungai Murut', NULL, 610.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selungai Murut', [Definition] = NULL, [SortOrder] = 610.60 WHERE [Code] = 'slg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sws', 'Seluwasan', NULL, 610.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seluwasan', [Definition] = NULL, [SortOrder] = 610.70 WHERE [Code] = 'sws' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sea', 'Semai', NULL, 610.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semai', [Definition] = NULL, [SortOrder] = 610.80 WHERE [Code] = 'sea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdq', 'Semandang', NULL, 610.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semandang', [Definition] = NULL, [SortOrder] = 610.90 WHERE [Code] = 'sdq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szc', 'Semaq Beri', NULL, 611.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semaq Beri', [Definition] = NULL, [SortOrder] = 611.00 WHERE [Code] = 'szc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbr', 'Sembakung Murut', NULL, 611.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sembakung Murut', [Definition] = NULL, [SortOrder] = 611.10 WHERE [Code] = 'sbr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sza', 'Semelai', NULL, 611.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semelai', [Definition] = NULL, [SortOrder] = 611.20 WHERE [Code] = 'sza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etz', 'Semimi', NULL, 611.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semimi', [Definition] = NULL, [SortOrder] = 611.30 WHERE [Code] = 'etz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssm', 'Semnam', NULL, 611.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semnam', [Definition] = NULL, [SortOrder] = 611.40 WHERE [Code] = 'ssm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smy', 'Semnani', NULL, 611.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semnani', [Definition] = NULL, [SortOrder] = 611.50 WHERE [Code] = 'smy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xse', 'Sempan', NULL, 611.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sempan', [Definition] = NULL, [SortOrder] = 611.60 WHERE [Code] = 'xse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seh', 'Sena', NULL, 611.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sena', [Definition] = NULL, [SortOrder] = 611.70 WHERE [Code] = 'seh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seq', 'Senara Sénoufo', NULL, 611.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senara Sénoufo', [Definition] = NULL, [SortOrder] = 611.80 WHERE [Code] = 'seq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syn', 'Senaya', NULL, 611.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senaya', [Definition] = NULL, [SortOrder] = 611.90 WHERE [Code] = 'syn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sej', 'Sene', NULL, 612.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sene', [Definition] = NULL, [SortOrder] = 612.00 WHERE [Code] = 'sej' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'see') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('see', 'Seneca', NULL, 612.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seneca', [Definition] = NULL, [SortOrder] = 612.10 WHERE [Code] = 'see' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sds', 'Sened', NULL, 612.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sened', [Definition] = NULL, [SortOrder] = 612.20 WHERE [Code] = 'sds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szg', 'Sengele', NULL, 612.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sengele', [Definition] = NULL, [SortOrder] = 612.30 WHERE [Code] = 'szg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snu', 'Senggi', NULL, 612.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senggi', [Definition] = NULL, [SortOrder] = 612.40 WHERE [Code] = 'snu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spk', 'Sengo', NULL, 612.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sengo', [Definition] = NULL, [SortOrder] = 612.50 WHERE [Code] = 'spk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssz', 'Sengseng', NULL, 612.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sengseng', [Definition] = NULL, [SortOrder] = 612.60 WHERE [Code] = 'ssz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjs', 'Senhaja De Srair', NULL, 612.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senhaja De Srair', [Definition] = NULL, [SortOrder] = 612.70 WHERE [Code] = 'sjs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sni', 'Sensi', NULL, 612.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sensi', [Definition] = NULL, [SortOrder] = 612.80 WHERE [Code] = 'sni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'set') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('set', 'Sentani', NULL, 612.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sentani', [Definition] = NULL, [SortOrder] = 612.90 WHERE [Code] = 'set' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sez', 'Senthang Chin', NULL, 613.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senthang Chin', [Definition] = NULL, [SortOrder] = 613.00 WHERE [Code] = 'sez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'std') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('std', 'Sentinel', NULL, 613.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sentinel', [Definition] = NULL, [SortOrder] = 613.10 WHERE [Code] = 'std' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spb', 'Sepa (Indonesia)', NULL, 613.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sepa (Indonesia)', [Definition] = NULL, [SortOrder] = 613.20 WHERE [Code] = 'spb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spe', 'Sepa (Papua New Guinea)', NULL, 613.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sepa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 613.30 WHERE [Code] = 'spe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iws', 'Sepik Iwam', NULL, 613.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sepik Iwam', [Definition] = NULL, [SortOrder] = 613.40 WHERE [Code] = 'iws' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sry', 'Sera', NULL, 613.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sera', [Definition] = NULL, [SortOrder] = 613.50 WHERE [Code] = 'sry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srp', 'Serbian', NULL, 613.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serbian', [Definition] = NULL, [SortOrder] = 613.60 WHERE [Code] = 'srp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbs', 'Serbo-Croatian', NULL, 613.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serbo-Croatian', [Definition] = NULL, [SortOrder] = 613.70 WHERE [Code] = 'hbs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swf', 'Sere', NULL, 613.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sere', [Definition] = NULL, [SortOrder] = 613.80 WHERE [Code] = 'swf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srr', 'Serer', NULL, 613.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serer', [Definition] = NULL, [SortOrder] = 613.90 WHERE [Code] = 'srr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sei', 'Seri', NULL, 614.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seri', [Definition] = NULL, [SortOrder] = 614.00 WHERE [Code] = 'sei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sve', 'Serili', NULL, 614.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serili', [Definition] = NULL, [SortOrder] = 614.10 WHERE [Code] = 'sve' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqu', 'Seroa', NULL, 614.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seroa', [Definition] = NULL, [SortOrder] = 614.20 WHERE [Code] = 'kqu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ser') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ser', 'Serrano', NULL, 614.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serrano', [Definition] = NULL, [SortOrder] = 614.30 WHERE [Code] = 'ser' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szd', 'Seru', NULL, 614.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seru', [Definition] = NULL, [SortOrder] = 614.40 WHERE [Code] = 'szd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srw', 'Serua', NULL, 614.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serua', [Definition] = NULL, [SortOrder] = 614.50 WHERE [Code] = 'srw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srk', 'Serudung Murut', NULL, 614.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serudung Murut', [Definition] = NULL, [SortOrder] = 614.60 WHERE [Code] = 'srk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seu', 'Serui-Laut', NULL, 614.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serui-Laut', [Definition] = NULL, [SortOrder] = 614.70 WHERE [Code] = 'seu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crs', 'Seselwa Creole French', NULL, 614.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seselwa Creole French', [Definition] = NULL, [SortOrder] = 614.80 WHERE [Code] = 'crs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stf', 'Seta', NULL, 614.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seta', [Definition] = NULL, [SortOrder] = 614.90 WHERE [Code] = 'stf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stm', 'Setaman', NULL, 615.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Setaman', [Definition] = NULL, [SortOrder] = 615.00 WHERE [Code] = 'stm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbi', 'Seti', NULL, 615.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seti', [Definition] = NULL, [SortOrder] = 615.10 WHERE [Code] = 'sbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sta', 'Settla', NULL, 615.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Settla', [Definition] = NULL, [SortOrder] = 615.20 WHERE [Code] = 'sta' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojs', 'Severn Ojibwa', NULL, 615.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Severn Ojibwa', [Definition] = NULL, [SortOrder] = 615.30 WHERE [Code] = 'ojs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sew', 'Sewa Bay', NULL, 615.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sewa Bay', [Definition] = NULL, [SortOrder] = 615.40 WHERE [Code] = 'sew' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsw', 'Seychelles Sign Language', NULL, 615.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seychelles Sign Language', [Definition] = NULL, [SortOrder] = 615.50 WHERE [Code] = 'lsw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sze', 'Seze', NULL, 615.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seze', [Definition] = NULL, [SortOrder] = 615.60 WHERE [Code] = 'sze' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scw', 'Sha', NULL, 615.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sha', [Definition] = NULL, [SortOrder] = 615.70 WHERE [Code] = 'scw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdb', 'Shabak', NULL, 615.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shabak', [Definition] = NULL, [SortOrder] = 615.80 WHERE [Code] = 'sdb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srz', 'Shahmirzadi', NULL, 615.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shahmirzadi', [Definition] = NULL, [SortOrder] = 615.90 WHERE [Code] = 'srz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shm', 'Shahrudi', NULL, 616.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shahrudi', [Definition] = NULL, [SortOrder] = 616.00 WHERE [Code] = 'shm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sha', 'Shall-Zwall', NULL, 616.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shall-Zwall', [Definition] = NULL, [SortOrder] = 616.10 WHERE [Code] = 'sha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqa', 'Shama-Sambuga', NULL, 616.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shama-Sambuga', [Definition] = NULL, [SortOrder] = 616.20 WHERE [Code] = 'sqa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsh', 'Shamang', NULL, 616.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shamang', [Definition] = NULL, [SortOrder] = 616.30 WHERE [Code] = 'xsh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksb', 'Shambala', NULL, 616.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shambala', [Definition] = NULL, [SortOrder] = 616.40 WHERE [Code] = 'ksb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shn', 'Shan', NULL, 616.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shan', [Definition] = NULL, [SortOrder] = 616.50 WHERE [Code] = 'shn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swo', 'Shanenawa', NULL, 616.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shanenawa', [Definition] = NULL, [SortOrder] = 616.60 WHERE [Code] = 'swo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sho', 'Shanga', NULL, 616.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shanga', [Definition] = NULL, [SortOrder] = 616.70 WHERE [Code] = 'sho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcd', 'Sharanahua', NULL, 616.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sharanahua', [Definition] = NULL, [SortOrder] = 616.80 WHERE [Code] = 'mcd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssv', 'Shark Bay', NULL, 616.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shark Bay', [Definition] = NULL, [SortOrder] = 616.90 WHERE [Code] = 'ssv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swq', 'Sharwa', NULL, 617.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sharwa', [Definition] = NULL, [SortOrder] = 617.00 WHERE [Code] = 'swq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sht', 'Shasta', NULL, 617.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shasta', [Definition] = NULL, [SortOrder] = 617.10 WHERE [Code] = 'sht' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shj', 'Shatt', NULL, 617.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shatt', [Definition] = NULL, [SortOrder] = 617.20 WHERE [Code] = 'shj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqh', 'Shau', NULL, 617.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shau', [Definition] = NULL, [SortOrder] = 617.30 WHERE [Code] = 'sqh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjw', 'Shawnee', NULL, 617.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shawnee', [Definition] = NULL, [SortOrder] = 617.40 WHERE [Code] = 'sjw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shx', 'She', NULL, 617.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'She', [Definition] = NULL, [SortOrder] = 617.50 WHERE [Code] = 'shx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shv', 'Shehri', NULL, 617.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shehri', [Definition] = NULL, [SortOrder] = 617.60 WHERE [Code] = 'shv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swv', 'Shekhawati', NULL, 617.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shekhawati', [Definition] = NULL, [SortOrder] = 617.70 WHERE [Code] = 'swv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moy', 'Shekkacho', NULL, 617.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shekkacho', [Definition] = NULL, [SortOrder] = 617.80 WHERE [Code] = 'moy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'she') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('she', 'Sheko', NULL, 617.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sheko', [Definition] = NULL, [SortOrder] = 617.90 WHERE [Code] = 'she' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sth', 'Shelta', NULL, 618.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shelta', [Definition] = NULL, [SortOrder] = 618.00 WHERE [Code] = 'sth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seb', 'Shempire Senoufo', NULL, 618.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shempire Senoufo', [Definition] = NULL, [SortOrder] = 618.10 WHERE [Code] = 'seb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shl', 'Shendu', NULL, 618.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shendu', [Definition] = NULL, [SortOrder] = 618.20 WHERE [Code] = 'shl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scv', 'Sheni', NULL, 618.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sheni', [Definition] = NULL, [SortOrder] = 618.30 WHERE [Code] = 'scv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bun', 'Sherbro', NULL, 618.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sherbro', [Definition] = NULL, [SortOrder] = 618.40 WHERE [Code] = 'bun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdp', 'Sherdukpen', NULL, 618.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sherdukpen', [Definition] = NULL, [SortOrder] = 618.50 WHERE [Code] = 'sdp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsr', 'Sherpa', NULL, 618.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sherpa', [Definition] = NULL, [SortOrder] = 618.60 WHERE [Code] = 'xsr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kip', 'Sheshi Kham', NULL, 618.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sheshi Kham', [Definition] = NULL, [SortOrder] = 618.70 WHERE [Code] = 'kip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shr', 'Shi', NULL, 618.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shi', [Definition] = NULL, [SortOrder] = 618.80 WHERE [Code] = 'shr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssh', 'Shihhi Arabic', NULL, 618.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shihhi Arabic', [Definition] = NULL, [SortOrder] = 618.90 WHERE [Code] = 'ssh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gua', 'Shiki', NULL, 619.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shiki', [Definition] = NULL, [SortOrder] = 619.00 WHERE [Code] = 'gua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shk', 'Shilluk', NULL, 619.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shilluk', [Definition] = NULL, [SortOrder] = 619.10 WHERE [Code] = 'shk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scl', 'Shina', NULL, 619.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shina', [Definition] = NULL, [SortOrder] = 619.20 WHERE [Code] = 'scl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shp', 'Shipibo-Conibo', NULL, 619.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shipibo-Conibo', [Definition] = NULL, [SortOrder] = 619.30 WHERE [Code] = 'shp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sle', 'Sholaga', NULL, 619.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sholaga', [Definition] = NULL, [SortOrder] = 619.40 WHERE [Code] = 'sle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sii', 'Shom Peng', NULL, 619.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shom Peng', [Definition] = NULL, [SortOrder] = 619.50 WHERE [Code] = 'sii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sna', 'Shona', NULL, 619.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shona', [Definition] = NULL, [SortOrder] = 619.60 WHERE [Code] = 'sna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcv', 'Shoo-Minda-Nye', NULL, 619.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shoo-Minda-Nye', [Definition] = NULL, [SortOrder] = 619.70 WHERE [Code] = 'bcv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjs', 'Shor', NULL, 619.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shor', [Definition] = NULL, [SortOrder] = 619.80 WHERE [Code] = 'cjs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shh', 'Shoshoni', NULL, 619.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shoshoni', [Definition] = NULL, [SortOrder] = 619.90 WHERE [Code] = 'shh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shg', 'Shua', NULL, 620.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shua', [Definition] = NULL, [SortOrder] = 620.00 WHERE [Code] = 'shg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdt', 'Shuadit', NULL, 620.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuadit', [Definition] = NULL, [SortOrder] = 620.10 WHERE [Code] = 'sdt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jiv', 'Shuar', NULL, 620.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuar', [Definition] = NULL, [SortOrder] = 620.20 WHERE [Code] = 'jiv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suj', 'Shubi', NULL, 620.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shubi', [Definition] = NULL, [SortOrder] = 620.30 WHERE [Code] = 'suj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgh', 'Shughni', NULL, 620.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shughni', [Definition] = NULL, [SortOrder] = 620.40 WHERE [Code] = 'sgh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxg', 'Shuhi', NULL, 620.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuhi', [Definition] = NULL, [SortOrder] = 620.50 WHERE [Code] = 'sxg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sts', 'Shumashti', NULL, 620.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shumashti', [Definition] = NULL, [SortOrder] = 620.60 WHERE [Code] = 'sts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scu', 'Shumcho', NULL, 620.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shumcho', [Definition] = NULL, [SortOrder] = 620.70 WHERE [Code] = 'scu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shs', 'Shuswap', NULL, 620.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuswap', [Definition] = NULL, [SortOrder] = 620.80 WHERE [Code] = 'shs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksa', 'Shuwa-Zamani', NULL, 620.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuwa-Zamani', [Definition] = NULL, [SortOrder] = 620.90 WHERE [Code] = 'ksa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shw', 'Shwai', NULL, 621.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shwai', [Definition] = NULL, [SortOrder] = 621.00 WHERE [Code] = 'shw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pll', 'Shwe Palaung', NULL, 621.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shwe Palaung', [Definition] = NULL, [SortOrder] = 621.10 WHERE [Code] = 'pll' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slw', 'Sialum', NULL, 621.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sialum', [Definition] = NULL, [SortOrder] = 621.20 WHERE [Code] = 'slw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sif', 'Siamou', NULL, 621.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siamou', [Definition] = NULL, [SortOrder] = 621.30 WHERE [Code] = 'sif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spg', 'Sian', NULL, 621.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sian', [Definition] = NULL, [SortOrder] = 621.40 WHERE [Code] = 'spg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snp', 'Siane', NULL, 621.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siane', [Definition] = NULL, [SortOrder] = 621.50 WHERE [Code] = 'snp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sya', 'Siang', NULL, 621.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siang', [Definition] = NULL, [SortOrder] = 621.60 WHERE [Code] = 'sya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjr', 'Siar-Lak', NULL, 621.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siar-Lak', [Definition] = NULL, [SortOrder] = 621.70 WHERE [Code] = 'sjr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmp', 'Siawi', NULL, 621.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siawi', [Definition] = NULL, [SortOrder] = 621.80 WHERE [Code] = 'mmp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nco', 'Sibe', NULL, 621.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sibe', [Definition] = NULL, [SortOrder] = 621.90 WHERE [Code] = 'nco' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sty', 'Siberian Tatar', NULL, 622.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siberian Tatar', [Definition] = NULL, [SortOrder] = 622.00 WHERE [Code] = 'sty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdx', 'Sibu Melanau', NULL, 622.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sibu Melanau', [Definition] = NULL, [SortOrder] = 622.10 WHERE [Code] = 'sdx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxc', 'Sicanian', NULL, 622.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sicanian', [Definition] = NULL, [SortOrder] = 622.20 WHERE [Code] = 'sxc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scx', 'Sicel', NULL, 622.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sicel', [Definition] = NULL, [SortOrder] = 622.30 WHERE [Code] = 'scx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iii', 'Sichuan Yi', NULL, 622.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sichuan Yi', [Definition] = NULL, [SortOrder] = 622.40 WHERE [Code] = 'iii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scn', 'Sicilian', NULL, 622.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sicilian', [Definition] = NULL, [SortOrder] = 622.50 WHERE [Code] = 'scn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sep', 'Sìcìté Sénoufo', NULL, 622.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sìcìté Sénoufo', [Definition] = NULL, [SortOrder] = 622.60 WHERE [Code] = 'sep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqr', 'Siculo Arabic', NULL, 622.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siculo Arabic', [Definition] = NULL, [SortOrder] = 622.70 WHERE [Code] = 'sqr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sid', 'Sidamo', NULL, 622.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sidamo', [Definition] = NULL, [SortOrder] = 622.80 WHERE [Code] = 'sid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsd', 'Sidetic', NULL, 622.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sidetic', [Definition] = NULL, [SortOrder] = 622.90 WHERE [Code] = 'xsd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'erg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('erg', 'Sie', NULL, 623.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sie', [Definition] = NULL, [SortOrder] = 623.00 WHERE [Code] = 'erg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaa', 'Sierra de Juárez Zapotec', NULL, 623.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sierra de Juárez Zapotec', [Definition] = NULL, [SortOrder] = 623.10 WHERE [Code] = 'zaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgx', 'Sierra Leone Sign Language', NULL, 623.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sierra Leone Sign Language', [Definition] = NULL, [SortOrder] = 623.20 WHERE [Code] = 'sgx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsu', 'Sierra Negra Nahuatl', NULL, 623.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sierra Negra Nahuatl', [Definition] = NULL, [SortOrder] = 623.30 WHERE [Code] = 'nsu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxe', 'Sighu', NULL, 623.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sighu', [Definition] = NULL, [SortOrder] = 623.40 WHERE [Code] = 'sxe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snr', 'Sihan', NULL, 623.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sihan', [Definition] = NULL, [SortOrder] = 623.50 WHERE [Code] = 'snr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qws', 'Sihuas Ancash Quechua', NULL, 623.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sihuas Ancash Quechua', [Definition] = NULL, [SortOrder] = 623.60 WHERE [Code] = 'qws' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ski') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ski', 'Sika', NULL, 623.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sika', [Definition] = NULL, [SortOrder] = 623.70 WHERE [Code] = 'ski' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sky', 'Sikaiana', NULL, 623.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikaiana', [Definition] = NULL, [SortOrder] = 623.80 WHERE [Code] = 'sky' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tty', 'Sikaritai', NULL, 623.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikaritai', [Definition] = NULL, [SortOrder] = 623.90 WHERE [Code] = 'tty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sik', 'Sikiana', NULL, 624.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikiana', [Definition] = NULL, [SortOrder] = 624.00 WHERE [Code] = 'sik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sip', 'Sikkimese', NULL, 624.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikkimese', [Definition] = NULL, [SortOrder] = 624.10 WHERE [Code] = 'sip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bla', 'Siksika', NULL, 624.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siksika', [Definition] = NULL, [SortOrder] = 624.20 WHERE [Code] = 'bla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skh', 'Sikule', NULL, 624.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikule', [Definition] = NULL, [SortOrder] = 624.30 WHERE [Code] = 'skh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slt', 'Sila', NULL, 624.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sila', [Definition] = NULL, [SortOrder] = 624.40 WHERE [Code] = 'slt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mks', 'Silacayoapan Mixtec', NULL, 624.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silacayoapan Mixtec', [Definition] = NULL, [SortOrder] = 624.50 WHERE [Code] = 'mks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbq', 'Sileibi', NULL, 624.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sileibi', [Definition] = NULL, [SortOrder] = 624.60 WHERE [Code] = 'sbq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szl', 'Silesian', NULL, 624.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silesian', [Definition] = NULL, [SortOrder] = 624.70 WHERE [Code] = 'szl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wul', 'Silimo', NULL, 624.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silimo', [Definition] = NULL, [SortOrder] = 624.80 WHERE [Code] = 'wul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkc', 'Siliput', NULL, 624.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siliput', [Definition] = NULL, [SortOrder] = 624.90 WHERE [Code] = 'mkc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsp', 'Silopi', NULL, 625.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silopi', [Definition] = NULL, [SortOrder] = 625.00 WHERE [Code] = 'xsp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stv', 'Silt''e', NULL, 625.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silt''e', [Definition] = NULL, [SortOrder] = 625.10 WHERE [Code] = 'stv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sie', 'Simaa', NULL, 625.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simaa', [Definition] = NULL, [SortOrder] = 625.20 WHERE [Code] = 'sie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbw', 'Simba', NULL, 625.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simba', [Definition] = NULL, [SortOrder] = 625.30 WHERE [Code] = 'sbw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smg', 'Simbali', NULL, 625.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simbali', [Definition] = NULL, [SortOrder] = 625.40 WHERE [Code] = 'smg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smb', 'Simbari', NULL, 625.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simbari', [Definition] = NULL, [SortOrder] = 625.50 WHERE [Code] = 'smb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbb', 'Simbo', NULL, 625.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simbo', [Definition] = NULL, [SortOrder] = 625.60 WHERE [Code] = 'sbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smz', 'Simeku', NULL, 625.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simeku', [Definition] = NULL, [SortOrder] = 625.70 WHERE [Code] = 'smz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smr', 'Simeulue', NULL, 625.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simeulue', [Definition] = NULL, [SortOrder] = 625.80 WHERE [Code] = 'smr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smt', 'Simte', NULL, 625.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simte', [Definition] = NULL, [SortOrder] = 625.90 WHERE [Code] = 'smt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siu', 'Sinagen', NULL, 626.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinagen', [Definition] = NULL, [SortOrder] = 626.00 WHERE [Code] = 'siu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sst', 'Sinasina', NULL, 626.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinasina', [Definition] = NULL, [SortOrder] = 626.10 WHERE [Code] = 'sst' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snc', 'Sinaugoro', NULL, 626.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinaugoro', [Definition] = NULL, [SortOrder] = 626.20 WHERE [Code] = 'snc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjn', 'Sindarin', NULL, 626.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sindarin', [Definition] = NULL, [SortOrder] = 626.30 WHERE [Code] = 'sjn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snd', 'Sindhi', NULL, 626.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sindhi', [Definition] = NULL, [SortOrder] = 626.40 WHERE [Code] = 'snd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbn', 'Sindhi Bhil', NULL, 626.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sindhi Bhil', [Definition] = NULL, [SortOrder] = 626.50 WHERE [Code] = 'sbn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xts', 'Sindihui Mixtec', NULL, 626.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sindihui Mixtec', [Definition] = NULL, [SortOrder] = 626.60 WHERE [Code] = 'xts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgm', 'Singa', NULL, 626.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Singa', [Definition] = NULL, [SortOrder] = 626.70 WHERE [Code] = 'sgm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sls', 'Singapore Sign Language', NULL, 626.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Singapore Sign Language', [Definition] = NULL, [SortOrder] = 626.80 WHERE [Code] = 'sls' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgp', 'Singpho', NULL, 626.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Singpho', [Definition] = NULL, [SortOrder] = 626.90 WHERE [Code] = 'sgp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sin', 'Sinhala', NULL, 627.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinhala', [Definition] = NULL, [SortOrder] = 627.00 WHERE [Code] = 'sin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xti', 'Sinicahua Mixtec', NULL, 627.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinicahua Mixtec', [Definition] = NULL, [SortOrder] = 627.10 WHERE [Code] = 'xti' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skq', 'Sininkere', NULL, 627.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sininkere', [Definition] = NULL, [SortOrder] = 627.20 WHERE [Code] = 'skq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmo', 'Sinte Romani', NULL, 627.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinte Romani', [Definition] = NULL, [SortOrder] = 627.30 WHERE [Code] = 'rmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sys', 'Sinyar', NULL, 627.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinyar', [Definition] = NULL, [SortOrder] = 627.40 WHERE [Code] = 'sys' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsi', 'Sio', NULL, 627.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sio', [Definition] = NULL, [SortOrder] = 627.50 WHERE [Code] = 'xsi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snn', 'Siona', NULL, 627.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siona', [Definition] = NULL, [SortOrder] = 627.60 WHERE [Code] = 'snn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qum', 'Sipacapense', NULL, 627.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sipacapense', [Definition] = NULL, [SortOrder] = 627.70 WHERE [Code] = 'qum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swj', 'Sira', NULL, 627.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sira', [Definition] = NULL, [SortOrder] = 627.80 WHERE [Code] = 'swj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fos', 'Siraya', NULL, 627.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siraya', [Definition] = NULL, [SortOrder] = 627.90 WHERE [Code] = 'fos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysr', 'Sirenik Yupik', NULL, 628.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sirenik Yupik', [Definition] = NULL, [SortOrder] = 628.00 WHERE [Code] = 'ysr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sir', 'Siri', NULL, 628.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siri', [Definition] = NULL, [SortOrder] = 628.10 WHERE [Code] = 'sir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sri', 'Siriano', NULL, 628.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siriano', [Definition] = NULL, [SortOrder] = 628.20 WHERE [Code] = 'sri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srq', 'Sirionó', NULL, 628.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sirionó', [Definition] = NULL, [SortOrder] = 628.30 WHERE [Code] = 'srq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srx', 'Sirmauri', NULL, 628.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sirmauri', [Definition] = NULL, [SortOrder] = 628.40 WHERE [Code] = 'srx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssd', 'Siroi', NULL, 628.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siroi', [Definition] = NULL, [SortOrder] = 628.50 WHERE [Code] = 'ssd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sld', 'Sissala', NULL, 628.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sissala', [Definition] = NULL, [SortOrder] = 628.60 WHERE [Code] = 'sld' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sso', 'Sissano', NULL, 628.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sissano', [Definition] = NULL, [SortOrder] = 628.70 WHERE [Code] = 'sso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sis', 'Siuslaw', NULL, 628.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siuslaw', [Definition] = NULL, [SortOrder] = 628.80 WHERE [Code] = 'sis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siy', 'Sivandi', NULL, 628.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sivandi', [Definition] = NULL, [SortOrder] = 628.90 WHERE [Code] = 'siy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsv', 'Sivia Sign Language', NULL, 629.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sivia Sign Language', [Definition] = NULL, [SortOrder] = 629.00 WHERE [Code] = 'lsv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siw', 'Siwai', NULL, 629.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siwai', [Definition] = NULL, [SortOrder] = 629.10 WHERE [Code] = 'siw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siz', 'Siwi', NULL, 629.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siwi', [Definition] = NULL, [SortOrder] = 629.20 WHERE [Code] = 'siz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akp', 'Siwu', NULL, 629.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siwu', [Definition] = NULL, [SortOrder] = 629.30 WHERE [Code] = 'akp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csy', 'Siyin Chin', NULL, 629.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siyin Chin', [Definition] = NULL, [SortOrder] = 629.40 WHERE [Code] = 'csy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ska') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ska', 'Skagit', NULL, 629.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skagit', [Definition] = NULL, [SortOrder] = 629.50 WHERE [Code] = 'ska' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svx', 'Skalvian', NULL, 629.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skalvian', [Definition] = NULL, [SortOrder] = 629.60 WHERE [Code] = 'svx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skw', 'Skepi Creole Dutch', NULL, 629.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skepi Creole Dutch', [Definition] = NULL, [SortOrder] = 629.70 WHERE [Code] = 'skw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sms', 'Skolt Sami', NULL, 629.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skolt Sami', [Definition] = NULL, [SortOrder] = 629.80 WHERE [Code] = 'sms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skv', 'Skou', NULL, 629.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skou', [Definition] = NULL, [SortOrder] = 629.90 WHERE [Code] = 'skv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'den') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('den', 'Slave (Athapascan)', NULL, 630.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slave (Athapascan)', [Definition] = NULL, [SortOrder] = 630.00 WHERE [Code] = 'den' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svm', 'Slavomolisano', NULL, 630.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slavomolisano', [Definition] = NULL, [SortOrder] = 630.10 WHERE [Code] = 'svm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slk', 'Slovak', NULL, 630.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slovak', [Definition] = NULL, [SortOrder] = 630.20 WHERE [Code] = 'slk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svk', 'Slovakian Sign Language', NULL, 630.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slovakian Sign Language', [Definition] = NULL, [SortOrder] = 630.30 WHERE [Code] = 'svk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slv', 'Slovenian', NULL, 630.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slovenian', [Definition] = NULL, [SortOrder] = 630.40 WHERE [Code] = 'slv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfm', 'Small Flowery Miao', NULL, 630.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Small Flowery Miao', [Definition] = NULL, [SortOrder] = 630.50 WHERE [Code] = 'sfm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxq', 'Smärky Kanum', NULL, 630.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Smärky Kanum', [Definition] = NULL, [SortOrder] = 630.60 WHERE [Code] = 'kxq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sno', 'Snohomish', NULL, 630.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Snohomish', [Definition] = NULL, [SortOrder] = 630.70 WHERE [Code] = 'sno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sss', 'Sô', NULL, 630.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sô', [Definition] = NULL, [SortOrder] = 630.80 WHERE [Code] = 'sss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soc', 'So (Democratic Republic of Congo)', NULL, 630.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'So (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 630.90 WHERE [Code] = 'soc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssq', 'So''a', NULL, 631.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'So''a', [Definition] = NULL, [SortOrder] = 631.00 WHERE [Code] = 'ssq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sob', 'Sobei', NULL, 631.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sobei', [Definition] = NULL, [SortOrder] = 631.10 WHERE [Code] = 'sob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cso', 'Sochiapam Chinantec', NULL, 631.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sochiapam Chinantec', [Definition] = NULL, [SortOrder] = 631.20 WHERE [Code] = 'cso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xog', 'Soga', NULL, 631.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soga', [Definition] = NULL, [SortOrder] = 631.30 WHERE [Code] = 'xog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sog', 'Sogdian', NULL, 631.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sogdian', [Definition] = NULL, [SortOrder] = 631.40 WHERE [Code] = 'sog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soj', 'Soi', NULL, 631.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soi', [Definition] = NULL, [SortOrder] = 631.50 WHERE [Code] = 'soj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sok', 'Sokoro', NULL, 631.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sokoro', [Definition] = NULL, [SortOrder] = 631.60 WHERE [Code] = 'sok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xso', 'Solano', NULL, 631.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Solano', [Definition] = NULL, [SortOrder] = 631.70 WHERE [Code] = 'xso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sby', 'Soli', NULL, 631.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soli', [Definition] = NULL, [SortOrder] = 631.80 WHERE [Code] = 'sby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szs', 'Solomon Islands Sign Language', NULL, 631.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Solomon Islands Sign Language', [Definition] = NULL, [SortOrder] = 631.90 WHERE [Code] = 'szs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaw', 'Solong', NULL, 632.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Solong', [Definition] = NULL, [SortOrder] = 632.00 WHERE [Code] = 'aaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sol', 'Solos', NULL, 632.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Solos', [Definition] = NULL, [SortOrder] = 632.10 WHERE [Code] = 'sol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smc', 'Som', NULL, 632.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Som', [Definition] = NULL, [SortOrder] = 632.20 WHERE [Code] = 'smc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'som') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('som', 'Somali', NULL, 632.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somali', [Definition] = NULL, [SortOrder] = 632.30 WHERE [Code] = 'som' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmu', 'Somba-Siawari', NULL, 632.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somba-Siawari', [Definition] = NULL, [SortOrder] = 632.40 WHERE [Code] = 'bmu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sor', 'Somrai', NULL, 632.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somrai', [Definition] = NULL, [SortOrder] = 632.50 WHERE [Code] = 'sor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smu', 'Somray', NULL, 632.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somray', [Definition] = NULL, [SortOrder] = 632.60 WHERE [Code] = 'smu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgt', 'Somyev', NULL, 632.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somyev', [Definition] = NULL, [SortOrder] = 632.70 WHERE [Code] = 'kgt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysg', 'Sonaga', NULL, 632.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonaga', [Definition] = NULL, [SortOrder] = 632.80 WHERE [Code] = 'ysg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shc', 'Sonde', NULL, 632.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonde', [Definition] = NULL, [SortOrder] = 632.90 WHERE [Code] = 'shc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sop', 'Songe', NULL, 633.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songe', [Definition] = NULL, [SortOrder] = 633.00 WHERE [Code] = 'sop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csj', 'Songlai Chin', NULL, 633.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songlai Chin', [Definition] = NULL, [SortOrder] = 633.10 WHERE [Code] = 'csj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soo', 'Songo', NULL, 633.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songo', [Definition] = NULL, [SortOrder] = 633.20 WHERE [Code] = 'soo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soe', 'Songomeno', NULL, 633.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songomeno', [Definition] = NULL, [SortOrder] = 633.30 WHERE [Code] = 'soe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sod', 'Songoora', NULL, 633.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songoora', [Definition] = NULL, [SortOrder] = 633.40 WHERE [Code] = 'sod' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soi', 'Sonha', NULL, 633.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonha', [Definition] = NULL, [SortOrder] = 633.50 WHERE [Code] = 'soi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siq', 'Sonia', NULL, 633.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonia', [Definition] = NULL, [SortOrder] = 633.60 WHERE [Code] = 'siq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snk', 'Soninke', NULL, 633.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soninke', [Definition] = NULL, [SortOrder] = 633.70 WHERE [Code] = 'snk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sov', 'Sonsorol', NULL, 633.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonsorol', [Definition] = NULL, [SortOrder] = 633.80 WHERE [Code] = 'sov' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teu', 'Soo', NULL, 633.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soo', [Definition] = NULL, [SortOrder] = 633.90 WHERE [Code] = 'teu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urw', 'Sop', NULL, 634.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sop', [Definition] = NULL, [SortOrder] = 634.00 WHERE [Code] = 'urw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqt', 'Soqotri', NULL, 634.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soqotri', [Definition] = NULL, [SortOrder] = 634.10 WHERE [Code] = 'sqt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srb', 'Sora', NULL, 634.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sora', [Definition] = NULL, [SortOrder] = 634.20 WHERE [Code] = 'srb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbh', 'Sori-Harengan', NULL, 634.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sori-Harengan', [Definition] = NULL, [SortOrder] = 634.30 WHERE [Code] = 'sbh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqo', 'Sorkhei', NULL, 634.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sorkhei', [Definition] = NULL, [SortOrder] = 634.40 WHERE [Code] = 'sqo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxo', 'Sorothaptic', NULL, 634.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sorothaptic', [Definition] = NULL, [SortOrder] = 634.50 WHERE [Code] = 'sxo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ays') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ays', 'Sorsogon Ayta', NULL, 634.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sorsogon Ayta', [Definition] = NULL, [SortOrder] = 634.60 WHERE [Code] = 'ays' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdk', 'Sos Kundi', NULL, 634.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sos Kundi', [Definition] = NULL, [SortOrder] = 634.70 WHERE [Code] = 'sdk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krz', 'Sota Kanum', NULL, 634.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sota Kanum', [Definition] = NULL, [SortOrder] = 634.80 WHERE [Code] = 'krz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqq', 'Sou', NULL, 634.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sou', [Definition] = NULL, [SortOrder] = 634.90 WHERE [Code] = 'sqq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlt', 'Sou Nama', NULL, 635.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sou Nama', [Definition] = NULL, [SortOrder] = 635.00 WHERE [Code] = 'tlt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wha', 'Sou Upaa', NULL, 635.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sou Upaa', [Definition] = NULL, [SortOrder] = 635.10 WHERE [Code] = 'wha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfs', 'South African Sign Language', NULL, 635.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South African Sign Language', [Definition] = NULL, [SortOrder] = 635.20 WHERE [Code] = 'sfs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aws', 'South Awyu', NULL, 635.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Awyu', [Definition] = NULL, [SortOrder] = 635.30 WHERE [Code] = 'aws' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azb', 'South Azerbaijani', NULL, 635.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Azerbaijani', [Definition] = NULL, [SortOrder] = 635.40 WHERE [Code] = 'azb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quh', 'South Bolivian Quechua', NULL, 635.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Bolivian Quechua', [Definition] = NULL, [SortOrder] = 635.50 WHERE [Code] = 'quh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnl', 'South Central Banda', NULL, 635.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Central Banda', [Definition] = NULL, [SortOrder] = 635.60 WHERE [Code] = 'lnl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dib', 'South Central Dinka', NULL, 635.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Central Dinka', [Definition] = NULL, [SortOrder] = 635.70 WHERE [Code] = 'dib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'erk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('erk', 'South Efate', NULL, 635.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Efate', [Definition] = NULL, [SortOrder] = 635.80 WHERE [Code] = 'erk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fal', 'South Fali', NULL, 635.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Fali', [Definition] = NULL, [SortOrder] = 635.90 WHERE [Code] = 'fal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giz', 'South Giziga', NULL, 636.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Giziga', [Definition] = NULL, [SortOrder] = 636.00 WHERE [Code] = 'giz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmf', 'South Lembata', NULL, 636.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Lembata', [Definition] = NULL, [SortOrder] = 636.10 WHERE [Code] = 'lmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajp', 'South Levantine Arabic', NULL, 636.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Levantine Arabic', [Definition] = NULL, [SortOrder] = 636.20 WHERE [Code] = 'ajp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqm', 'South Marquesan', NULL, 636.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Marquesan', [Definition] = NULL, [SortOrder] = 636.30 WHERE [Code] = 'mqm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kts', 'South Muyu', NULL, 636.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Muyu', [Definition] = NULL, [SortOrder] = 636.40 WHERE [Code] = 'kts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbl', 'South Ndebele', NULL, 636.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Ndebele', [Definition] = NULL, [SortOrder] = 636.50 WHERE [Code] = 'nbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxl', 'South Nuaulu', NULL, 636.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Nuaulu', [Definition] = NULL, [SortOrder] = 636.60 WHERE [Code] = 'nxl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spx', 'South Picene', NULL, 636.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Picene', [Definition] = NULL, [SortOrder] = 636.70 WHERE [Code] = 'spx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsl', 'South Slavey', NULL, 636.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Slavey', [Definition] = NULL, [SortOrder] = 636.80 WHERE [Code] = 'xsl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omw', 'South Tairora', NULL, 636.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Tairora', [Definition] = NULL, [SortOrder] = 636.90 WHERE [Code] = 'omw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpy', 'South Ucayali Ashéninka', NULL, 637.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Ucayali Ashéninka', [Definition] = NULL, [SortOrder] = 637.00 WHERE [Code] = 'cpy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcy', 'South Watut', NULL, 637.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Watut', [Definition] = NULL, [SortOrder] = 637.10 WHERE [Code] = 'mcy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sns', 'South West Bay', NULL, 637.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South West Bay', [Definition] = NULL, [SortOrder] = 637.20 WHERE [Code] = 'sns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvk', 'Southeast Ambrym', NULL, 637.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Ambrym', [Definition] = NULL, [SortOrder] = 637.30 WHERE [Code] = 'tvk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vbb', 'Southeast Babar', NULL, 637.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Babar', [Definition] = NULL, [SortOrder] = 637.40 WHERE [Code] = 'vbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ijs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijs', 'Southeast Ijo', NULL, 637.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Ijo', [Definition] = NULL, [SortOrder] = 637.50 WHERE [Code] = 'ijs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psi', 'Southeast Pashai', NULL, 637.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Pashai', [Definition] = NULL, [SortOrder] = 637.60 WHERE [Code] = 'psi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpf', 'Southeast Tasmanian', NULL, 637.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Tasmanian', [Definition] = NULL, [SortOrder] = 637.70 WHERE [Code] = 'xpf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dks', 'Southeastern Dinka', NULL, 637.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Dinka', [Definition] = NULL, [SortOrder] = 637.80 WHERE [Code] = 'dks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpd', 'Southeastern Ixtlán Zapotec', NULL, 637.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Ixtlán Zapotec', [Definition] = NULL, [SortOrder] = 637.90 WHERE [Code] = 'zpd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nit', 'Southeastern Kolami', NULL, 638.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Kolami', [Definition] = NULL, [SortOrder] = 638.00 WHERE [Code] = 'nit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxy', 'Southeastern Nochixtlán Mixtec', NULL, 638.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Nochixtlán Mixtec', [Definition] = NULL, [SortOrder] = 638.10 WHERE [Code] = 'mxy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pom', 'Southeastern Pomo', NULL, 638.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Pomo', [Definition] = NULL, [SortOrder] = 638.20 WHERE [Code] = 'pom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npl', 'Southeastern Puebla Nahuatl', NULL, 638.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 638.30 WHERE [Code] = 'npl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcu', 'Southeastern Tarahumara', NULL, 638.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Tarahumara', [Definition] = NULL, [SortOrder] = 638.40 WHERE [Code] = 'tcu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stp', 'Southeastern Tepehuan', NULL, 638.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Tepehuan', [Definition] = NULL, [SortOrder] = 638.50 WHERE [Code] = 'stp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agy', 'Southern Alta', NULL, 638.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Alta', [Definition] = NULL, [SortOrder] = 638.60 WHERE [Code] = 'agy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alt', 'Southern Altai', NULL, 638.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Altai', [Definition] = NULL, [SortOrder] = 638.70 WHERE [Code] = 'alt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ams') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ams', 'Southern Amami-Oshima', NULL, 638.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Amami-Oshima', [Definition] = NULL, [SortOrder] = 638.80 WHERE [Code] = 'ams' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayc', 'Southern Aymara', NULL, 638.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Aymara', [Definition] = NULL, [SortOrder] = 638.90 WHERE [Code] = 'ayc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfs', 'Southern Bai', NULL, 639.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Bai', [Definition] = NULL, [SortOrder] = 639.00 WHERE [Code] = 'bfs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcc', 'Southern Balochi', NULL, 639.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Balochi', [Definition] = NULL, [SortOrder] = 639.10 WHERE [Code] = 'bcc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzc', 'Southern Betsimisaraka Malagasy', NULL, 639.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Betsimisaraka Malagasy', [Definition] = NULL, [SortOrder] = 639.20 WHERE [Code] = 'bzc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtw', 'Southern Binukidnon', NULL, 639.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Binukidnon', [Definition] = NULL, [SortOrder] = 639.30 WHERE [Code] = 'mtw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biv', 'Southern Birifor', NULL, 639.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Birifor', [Definition] = NULL, [SortOrder] = 639.40 WHERE [Code] = 'biv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwq', 'Southern Bobo Madaré', NULL, 639.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Bobo Madaré', [Definition] = NULL, [SortOrder] = 639.50 WHERE [Code] = 'bwq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obk', 'Southern Bontok', NULL, 639.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Bontok', [Definition] = NULL, [SortOrder] = 639.60 WHERE [Code] = 'obk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caf', 'Southern Carrier', NULL, 639.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Carrier', [Definition] = NULL, [SortOrder] = 639.70 WHERE [Code] = 'caf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bln', 'Southern Catanduanes Bikol', NULL, 639.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Catanduanes Bikol', [Definition] = NULL, [SortOrder] = 639.80 WHERE [Code] = 'bln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxo', 'Southern Conchucos Ancash Quechua', NULL, 639.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Conchucos Ancash Quechua', [Definition] = NULL, [SortOrder] = 639.90 WHERE [Code] = 'qxo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dga', 'Southern Dagaare', NULL, 640.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Dagaare', [Definition] = NULL, [SortOrder] = 640.00 WHERE [Code] = 'dga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmc', 'Southern Dong', NULL, 640.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Dong', [Definition] = NULL, [SortOrder] = 640.10 WHERE [Code] = 'kmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crj', 'Southern East Cree', NULL, 640.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern East Cree', [Definition] = NULL, [SortOrder] = 640.20 WHERE [Code] = 'crj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghe', 'Southern Ghale', NULL, 640.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ghale', [Definition] = NULL, [SortOrder] = 640.30 WHERE [Code] = 'ghe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grj', 'Southern Grebo', NULL, 640.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Grebo', [Definition] = NULL, [SortOrder] = 640.40 WHERE [Code] = 'grj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmy', 'Southern Guiyang Hmong', NULL, 640.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 640.50 WHERE [Code] = 'hmy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hax', 'Southern Haida', NULL, 640.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Haida', [Definition] = NULL, [SortOrder] = 640.60 WHERE [Code] = 'hax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnd', 'Southern Hindko', NULL, 640.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Hindko', [Definition] = NULL, [SortOrder] = 640.70 WHERE [Code] = 'hnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxk', 'Southern Kalapuya', NULL, 640.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kalapuya', [Definition] = NULL, [SortOrder] = 640.80 WHERE [Code] = 'sxk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksc', 'Southern Kalinga', NULL, 640.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kalinga', [Definition] = NULL, [SortOrder] = 640.90 WHERE [Code] = 'ksc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sct', 'Southern Katang', NULL, 641.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Katang', [Definition] = NULL, [SortOrder] = 641.00 WHERE [Code] = 'sct' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kss', 'Southern Kisi', NULL, 641.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kisi', [Definition] = NULL, [SortOrder] = 641.10 WHERE [Code] = 'kss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjd', 'Southern Kiwai', NULL, 641.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kiwai', [Definition] = NULL, [SortOrder] = 641.20 WHERE [Code] = 'kjd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdh', 'Southern Kurdish', NULL, 641.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kurdish', [Definition] = NULL, [SortOrder] = 641.30 WHERE [Code] = 'sdh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysp', 'Southern Lolopo', NULL, 641.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Lolopo', [Definition] = NULL, [SortOrder] = 641.40 WHERE [Code] = 'ysp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luz', 'Southern Luri', NULL, 641.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Luri', [Definition] = NULL, [SortOrder] = 641.50 WHERE [Code] = 'luz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snm', 'Southern Ma''di', NULL, 641.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ma''di', [Definition] = NULL, [SortOrder] = 641.60 WHERE [Code] = 'snm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hma', 'Southern Mashan Hmong', NULL, 641.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Mashan Hmong', [Definition] = NULL, [SortOrder] = 641.70 WHERE [Code] = 'hma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnn', 'Southern Mnong', NULL, 641.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Mnong', [Definition] = NULL, [SortOrder] = 641.80 WHERE [Code] = 'mnn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymc', 'Southern Muji', NULL, 641.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Muji', [Definition] = NULL, [SortOrder] = 641.90 WHERE [Code] = 'ymc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqg', 'Southern Nago', NULL, 642.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nago', [Definition] = NULL, [SortOrder] = 642.00 WHERE [Code] = 'nqg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nab', 'Southern Nambikuára', NULL, 642.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nambikuára', [Definition] = NULL, [SortOrder] = 642.10 WHERE [Code] = 'nab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbw', 'Southern Ngbandi', NULL, 642.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ngbandi', [Definition] = NULL, [SortOrder] = 642.20 WHERE [Code] = 'nbw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nik', 'Southern Nicobarese', NULL, 642.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nicobarese', [Definition] = NULL, [SortOrder] = 642.30 WHERE [Code] = 'nik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsd', 'Southern Nisu', NULL, 642.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nisu', [Definition] = NULL, [SortOrder] = 642.40 WHERE [Code] = 'nsd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnw', 'Southern Nuni', NULL, 642.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nuni', [Definition] = NULL, [SortOrder] = 642.50 WHERE [Code] = 'nnw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'css') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('css', 'Southern Ohlone', NULL, 642.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ohlone', [Definition] = NULL, [SortOrder] = 642.60 WHERE [Code] = 'css' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osu', 'Southern One', NULL, 642.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern One', [Definition] = NULL, [SortOrder] = 642.70 WHERE [Code] = 'osu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmz', 'Southern Pame', NULL, 642.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pame', [Definition] = NULL, [SortOrder] = 642.80 WHERE [Code] = 'pmz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbt', 'Southern Pashto', NULL, 642.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pashto', [Definition] = NULL, [SortOrder] = 642.90 WHERE [Code] = 'pbt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qup', 'Southern Pastaza Quechua', NULL, 643.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pastaza Quechua', [Definition] = NULL, [SortOrder] = 643.00 WHERE [Code] = 'qup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csp', 'Southern Ping Chinese', NULL, 643.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ping Chinese', [Definition] = NULL, [SortOrder] = 643.10 WHERE [Code] = 'csp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peq', 'Southern Pomo', NULL, 643.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pomo', [Definition] = NULL, [SortOrder] = 643.20 WHERE [Code] = 'peq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mit', 'Southern Puebla Mixtec', NULL, 643.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Puebla Mixtec', [Definition] = NULL, [SortOrder] = 643.30 WHERE [Code] = 'mit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slh', 'Southern Puget Sound Salish', NULL, 643.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Puget Sound Salish', [Definition] = NULL, [SortOrder] = 643.40 WHERE [Code] = 'slh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmj', 'Southern Pumi', NULL, 643.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pumi', [Definition] = NULL, [SortOrder] = 643.50 WHERE [Code] = 'pmj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hms', 'Southern Qiandong Miao', NULL, 643.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Qiandong Miao', [Definition] = NULL, [SortOrder] = 643.60 WHERE [Code] = 'hms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxs', 'Southern Qiang', NULL, 643.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Qiang', [Definition] = NULL, [SortOrder] = 643.70 WHERE [Code] = 'qxs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nre', 'Southern Rengma Naga', NULL, 643.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Rengma Naga', [Definition] = NULL, [SortOrder] = 643.80 WHERE [Code] = 'nre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsr', 'Southern Rincon Zapotec', NULL, 643.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Rincon Zapotec', [Definition] = NULL, [SortOrder] = 643.90 WHERE [Code] = 'zsr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgs', 'Southern Roglai', NULL, 644.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Roglai', [Definition] = NULL, [SortOrder] = 644.00 WHERE [Code] = 'rgs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssb', 'Southern Sama', NULL, 644.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sama', [Definition] = NULL, [SortOrder] = 644.10 WHERE [Code] = 'ssb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sma', 'Southern Sami', NULL, 644.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sami', [Definition] = NULL, [SortOrder] = 644.20 WHERE [Code] = 'sma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbd', 'Southern Samo', NULL, 644.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Samo', [Definition] = NULL, [SortOrder] = 644.30 WHERE [Code] = 'sbd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skd', 'Southern Sierra Miwok', NULL, 644.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sierra Miwok', [Definition] = NULL, [SortOrder] = 644.40 WHERE [Code] = 'skd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srv', 'Southern Sorsoganon', NULL, 644.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sorsoganon', [Definition] = NULL, [SortOrder] = 644.50 WHERE [Code] = 'srv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sot', 'Southern Sotho', NULL, 644.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sotho', [Definition] = NULL, [SortOrder] = 644.60 WHERE [Code] = 'sot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laa', 'Southern Subanen', NULL, 644.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Subanen', [Definition] = NULL, [SortOrder] = 644.70 WHERE [Code] = 'laa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sou', 'Southern Thai', NULL, 644.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Thai', [Definition] = NULL, [SortOrder] = 644.80 WHERE [Code] = 'sou' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itd', 'Southern Tidung', NULL, 644.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Tidung', [Definition] = NULL, [SortOrder] = 644.90 WHERE [Code] = 'itd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tix', 'Southern Tiwa', NULL, 645.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Tiwa', [Definition] = NULL, [SortOrder] = 645.00 WHERE [Code] = 'tix' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wib', 'Southern Toussian', NULL, 645.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Toussian', [Definition] = NULL, [SortOrder] = 645.10 WHERE [Code] = 'wib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjs', 'Southern Tujia', NULL, 645.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Tujia', [Definition] = NULL, [SortOrder] = 645.20 WHERE [Code] = 'tjs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tce', 'Southern Tutchone', NULL, 645.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Tutchone', [Definition] = NULL, [SortOrder] = 645.30 WHERE [Code] = 'tce' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uzs', 'Southern Uzbek', NULL, 645.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Uzbek', [Definition] = NULL, [SortOrder] = 645.40 WHERE [Code] = 'uzs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrr', 'Southern Yamphu', NULL, 645.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Yamphu', [Definition] = NULL, [SortOrder] = 645.50 WHERE [Code] = 'lrr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yux', 'Southern Yukaghir', NULL, 645.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Yukaghir', [Definition] = NULL, [SortOrder] = 645.60 WHERE [Code] = 'yux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gso', 'Southwest Gbaya', NULL, 645.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwest Gbaya', [Definition] = NULL, [SortOrder] = 645.70 WHERE [Code] = 'gso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plv', 'Southwest Palawano', NULL, 645.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwest Palawano', [Definition] = NULL, [SortOrder] = 645.80 WHERE [Code] = 'plv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psh', 'Southwest Pashai', NULL, 645.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwest Pashai', [Definition] = NULL, [SortOrder] = 645.90 WHERE [Code] = 'psh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwi', 'Southwest Tanna', NULL, 646.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwest Tanna', [Definition] = NULL, [SortOrder] = 646.00 WHERE [Code] = 'nwi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vbk', 'Southwestern Bontok', NULL, 646.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Bontok', [Definition] = NULL, [SortOrder] = 646.10 WHERE [Code] = 'vbk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dik', 'Southwestern Dinka', NULL, 646.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Dinka', [Definition] = NULL, [SortOrder] = 646.20 WHERE [Code] = 'dik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fay', 'Southwestern Fars', NULL, 646.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Fars', [Definition] = NULL, [SortOrder] = 646.30 WHERE [Code] = 'fay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmg', 'Southwestern Guiyang Hmong', NULL, 646.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 646.40 WHERE [Code] = 'hmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmh', 'Southwestern Huishui Hmong', NULL, 646.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Huishui Hmong', [Definition] = NULL, [SortOrder] = 646.50 WHERE [Code] = 'hmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsv', 'Southwestern Nisu', NULL, 646.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Nisu', [Definition] = NULL, [SortOrder] = 646.60 WHERE [Code] = 'nsv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twr', 'Southwestern Tarahumara', NULL, 646.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Tarahumara', [Definition] = NULL, [SortOrder] = 646.70 WHERE [Code] = 'twr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpx', 'Southwestern Tasmanian', NULL, 646.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Tasmanian', [Definition] = NULL, [SortOrder] = 646.80 WHERE [Code] = 'xpx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tla', 'Southwestern Tepehuan', NULL, 646.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Tepehuan', [Definition] = NULL, [SortOrder] = 646.90 WHERE [Code] = 'tla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meh', 'Southwestern Tlaxiaco Mixtec', NULL, 647.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Tlaxiaco Mixtec', [Definition] = NULL, [SortOrder] = 647.00 WHERE [Code] = 'meh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sww', 'Sowa', NULL, 647.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sowa', [Definition] = NULL, [SortOrder] = 647.10 WHERE [Code] = 'sww' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sow', 'Sowanda', NULL, 647.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sowanda', [Definition] = NULL, [SortOrder] = 647.20 WHERE [Code] = 'sow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmp', 'Soyaltepec Mazatec', NULL, 647.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soyaltepec Mazatec', [Definition] = NULL, [SortOrder] = 647.30 WHERE [Code] = 'vmp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmq', 'Soyaltepec Mixtec', NULL, 647.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soyaltepec Mixtec', [Definition] = NULL, [SortOrder] = 647.40 WHERE [Code] = 'vmq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spa', 'Spanish', NULL, 647.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Spanish', [Definition] = NULL, [SortOrder] = 647.50 WHERE [Code] = 'spa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssp', 'Spanish Sign Language', NULL, 647.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Spanish Sign Language', [Definition] = NULL, [SortOrder] = 647.60 WHERE [Code] = 'ssp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spt', 'Spiti Bhoti', NULL, 647.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Spiti Bhoti', [Definition] = NULL, [SortOrder] = 647.70 WHERE [Code] = 'spt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spo', 'Spokane', NULL, 647.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Spokane', [Definition] = NULL, [SortOrder] = 647.80 WHERE [Code] = 'spo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'squ') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('squ', 'Squamish', NULL, 647.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Squamish', [Definition] = NULL, [SortOrder] = 647.90 WHERE [Code] = 'squ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srn', 'Sranan Tongo', NULL, 648.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sranan Tongo', [Definition] = NULL, [SortOrder] = 648.00 WHERE [Code] = 'srn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sci', 'Sri Lankan Creole Malay', NULL, 648.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sri Lankan Creole Malay', [Definition] = NULL, [SortOrder] = 648.10 WHERE [Code] = 'sci' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqs', 'Sri Lankan Sign Language', NULL, 648.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sri Lankan Sign Language', [Definition] = NULL, [SortOrder] = 648.20 WHERE [Code] = 'sqs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arb', 'Standard Arabic', NULL, 648.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Arabic', [Definition] = NULL, [SortOrder] = 648.30 WHERE [Code] = 'arb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekk', 'Standard Estonian', NULL, 648.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Estonian', [Definition] = NULL, [SortOrder] = 648.40 WHERE [Code] = 'ekk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lvs', 'Standard Latvian', NULL, 648.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Latvian', [Definition] = NULL, [SortOrder] = 648.50 WHERE [Code] = 'lvs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsm', 'Standard Malay', NULL, 648.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Malay', [Definition] = NULL, [SortOrder] = 648.60 WHERE [Code] = 'zsm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgh', 'Standard Moroccan Tamazight', NULL, 648.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Moroccan Tamazight', [Definition] = NULL, [SortOrder] = 648.70 WHERE [Code] = 'zgh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stl', 'Stellingwerfs', NULL, 648.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Stellingwerfs', [Definition] = NULL, [SortOrder] = 648.80 WHERE [Code] = 'stl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbu', 'Stod Bhoti', NULL, 648.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Stod Bhoti', [Definition] = NULL, [SortOrder] = 648.90 WHERE [Code] = 'sbu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jih', 'sTodsde', NULL, 649.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'sTodsde', [Definition] = NULL, [SortOrder] = 649.00 WHERE [Code] = 'jih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sto', 'Stoney', NULL, 649.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Stoney', [Definition] = NULL, [SortOrder] = 649.10 WHERE [Code] = 'sto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'str') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('str', 'Straits Salish', NULL, 649.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Straits Salish', [Definition] = NULL, [SortOrder] = 649.20 WHERE [Code] = 'str' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szp', 'Suabo', NULL, 649.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suabo', [Definition] = NULL, [SortOrder] = 649.30 WHERE [Code] = 'szp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seo', 'Suarmin', NULL, 649.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suarmin', [Definition] = NULL, [SortOrder] = 649.40 WHERE [Code] = 'seo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swp', 'Suau', NULL, 649.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suau', [Definition] = NULL, [SortOrder] = 649.50 WHERE [Code] = 'swp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxb', 'Suba', NULL, 649.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suba', [Definition] = NULL, [SortOrder] = 649.60 WHERE [Code] = 'sxb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssc', 'Suba-Simbiti', NULL, 649.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suba-Simbiti', [Definition] = NULL, [SortOrder] = 649.70 WHERE [Code] = 'ssc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsj', 'Subi', NULL, 649.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Subi', [Definition] = NULL, [SortOrder] = 649.80 WHERE [Code] = 'xsj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbs', 'Subiya', NULL, 649.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Subiya', [Definition] = NULL, [SortOrder] = 649.90 WHERE [Code] = 'sbs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sut', 'Subtiaba', NULL, 650.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Subtiaba', [Definition] = NULL, [SortOrder] = 650.00 WHERE [Code] = 'sut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apd', 'Sudanese Arabic', NULL, 650.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sudanese Arabic', [Definition] = NULL, [SortOrder] = 650.10 WHERE [Code] = 'apd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pga', 'Sudanese Creole Arabic', NULL, 650.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sudanese Creole Arabic', [Definition] = NULL, [SortOrder] = 650.20 WHERE [Code] = 'pga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgo', 'Sudest', NULL, 650.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sudest', [Definition] = NULL, [SortOrder] = 650.30 WHERE [Code] = 'tgo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsv', 'Sudovian', NULL, 650.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sudovian', [Definition] = NULL, [SortOrder] = 650.40 WHERE [Code] = 'xsv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sue', 'Suena', NULL, 650.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suena', [Definition] = NULL, [SortOrder] = 650.50 WHERE [Code] = 'sue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgi', 'Suga', NULL, 650.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suga', [Definition] = NULL, [SortOrder] = 650.60 WHERE [Code] = 'sgi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sug', 'Suganga', NULL, 650.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suganga', [Definition] = NULL, [SortOrder] = 650.70 WHERE [Code] = 'sug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzs', 'Sugut Dusun', NULL, 650.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sugut Dusun', [Definition] = NULL, [SortOrder] = 650.80 WHERE [Code] = 'kzs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swi', 'Sui', NULL, 650.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sui', [Definition] = NULL, [SortOrder] = 650.90 WHERE [Code] = 'swi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sui', 'Suki', NULL, 651.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suki', [Definition] = NULL, [SortOrder] = 651.00 WHERE [Code] = 'sui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sub', 'Suku', NULL, 651.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suku', [Definition] = NULL, [SortOrder] = 651.10 WHERE [Code] = 'sub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suk', 'Sukuma', NULL, 651.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sukuma', [Definition] = NULL, [SortOrder] = 651.20 WHERE [Code] = 'suk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syk', 'Sukur', NULL, 651.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sukur', [Definition] = NULL, [SortOrder] = 651.30 WHERE [Code] = 'syk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsu', 'Sukurum', NULL, 651.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sukurum', [Definition] = NULL, [SortOrder] = 651.40 WHERE [Code] = 'zsu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szn', 'Sula', NULL, 651.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sula', [Definition] = NULL, [SortOrder] = 651.50 WHERE [Code] = 'szn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sua', 'Sulka', NULL, 651.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sulka', [Definition] = NULL, [SortOrder] = 651.60 WHERE [Code] = 'sua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srg', 'Sulod', NULL, 651.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sulod', [Definition] = NULL, [SortOrder] = 651.70 WHERE [Code] = 'srg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqm', 'Suma', NULL, 651.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suma', [Definition] = NULL, [SortOrder] = 651.80 WHERE [Code] = 'sqm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siv', 'Sumariup', NULL, 651.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumariup', [Definition] = NULL, [SortOrder] = 651.90 WHERE [Code] = 'siv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'six') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('six', 'Sumau', NULL, 652.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumau', [Definition] = NULL, [SortOrder] = 652.00 WHERE [Code] = 'six' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smw', 'Sumbawa', NULL, 652.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumbawa', [Definition] = NULL, [SortOrder] = 652.10 WHERE [Code] = 'smw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suw', 'Sumbwa', NULL, 652.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumbwa', [Definition] = NULL, [SortOrder] = 652.20 WHERE [Code] = 'suw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sux', 'Sumerian', NULL, 652.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumerian', [Definition] = NULL, [SortOrder] = 652.30 WHERE [Code] = 'sux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsm', 'Sumi Naga', NULL, 652.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumi Naga', [Definition] = NULL, [SortOrder] = 652.40 WHERE [Code] = 'nsm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csv', 'Sumtu Chin', NULL, 652.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumtu Chin', [Definition] = NULL, [SortOrder] = 652.50 WHERE [Code] = 'csv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssk', 'Sunam', NULL, 652.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sunam', [Definition] = NULL, [SortOrder] = 652.60 WHERE [Code] = 'ssk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sun', 'Sundanese', NULL, 652.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sundanese', [Definition] = NULL, [SortOrder] = 652.70 WHERE [Code] = 'sun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suz', 'Sunwar', NULL, 652.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sunwar', [Definition] = NULL, [SortOrder] = 652.80 WHERE [Code] = 'suz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syo', 'Suoy', NULL, 652.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suoy', [Definition] = NULL, [SortOrder] = 652.90 WHERE [Code] = 'syo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spp', 'Supyire Senoufo', NULL, 653.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Supyire Senoufo', [Definition] = NULL, [SortOrder] = 653.00 WHERE [Code] = 'spp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdl', 'Sur', NULL, 653.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sur', [Definition] = NULL, [SortOrder] = 653.10 WHERE [Code] = 'tdl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbj', 'Surbakhal', NULL, 653.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surbakhal', [Definition] = NULL, [SortOrder] = 653.20 WHERE [Code] = 'sbj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgj', 'Surgujia', NULL, 653.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surgujia', [Definition] = NULL, [SortOrder] = 653.30 WHERE [Code] = 'sgj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgd', 'Surigaonon', NULL, 653.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surigaonon', [Definition] = NULL, [SortOrder] = 653.40 WHERE [Code] = 'sgd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjp', 'Surjapuri', NULL, 653.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surjapuri', [Definition] = NULL, [SortOrder] = 653.50 WHERE [Code] = 'sjp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgz', 'Sursurunga', NULL, 653.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sursurunga', [Definition] = NULL, [SortOrder] = 653.60 WHERE [Code] = 'sgz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swx', 'Suruahá', NULL, 653.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suruahá', [Definition] = NULL, [SortOrder] = 653.70 WHERE [Code] = 'swx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sde', 'Surubu', NULL, 653.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surubu', [Definition] = NULL, [SortOrder] = 653.80 WHERE [Code] = 'sde' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sru', 'Suruí', NULL, 653.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suruí', [Definition] = NULL, [SortOrder] = 653.90 WHERE [Code] = 'sru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdz', 'Suruí Do Pará', NULL, 654.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suruí Do Pará', [Definition] = NULL, [SortOrder] = 654.00 WHERE [Code] = 'mdz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqn', 'Susquehannock', NULL, 654.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Susquehannock', [Definition] = NULL, [SortOrder] = 654.10 WHERE [Code] = 'sqn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sus', 'Susu', NULL, 654.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Susu', [Definition] = NULL, [SortOrder] = 654.20 WHERE [Code] = 'sus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssu', 'Susuami', NULL, 654.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Susuami', [Definition] = NULL, [SortOrder] = 654.30 WHERE [Code] = 'ssu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdj', 'Suundi', NULL, 654.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suundi', [Definition] = NULL, [SortOrder] = 654.40 WHERE [Code] = 'sdj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swu', 'Suwawa', NULL, 654.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suwawa', [Definition] = NULL, [SortOrder] = 654.50 WHERE [Code] = 'swu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suy', 'Suyá', NULL, 654.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suyá', [Definition] = NULL, [SortOrder] = 654.60 WHERE [Code] = 'suy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sva', 'Svan', NULL, 654.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Svan', [Definition] = NULL, [SortOrder] = 654.70 WHERE [Code] = 'sva' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swg', 'Swabian', NULL, 654.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swabian', [Definition] = NULL, [SortOrder] = 654.80 WHERE [Code] = 'swg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swh', 'Swahili (individual language)', NULL, 654.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swahili (individual language)', [Definition] = NULL, [SortOrder] = 654.90 WHERE [Code] = 'swh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swa', 'Swahili (macrolanguage)', NULL, 655.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swahili (macrolanguage)', [Definition] = NULL, [SortOrder] = 655.00 WHERE [Code] = 'swa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csw', 'Swampy Cree', NULL, 655.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swampy Cree', [Definition] = NULL, [SortOrder] = 655.10 WHERE [Code] = 'csw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssw', 'Swati', NULL, 655.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swati', [Definition] = NULL, [SortOrder] = 655.20 WHERE [Code] = 'ssw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swe', 'Swedish', NULL, 655.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swedish', [Definition] = NULL, [SortOrder] = 655.30 WHERE [Code] = 'swe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swl', 'Swedish Sign Language', NULL, 655.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swedish Sign Language', [Definition] = NULL, [SortOrder] = 655.40 WHERE [Code] = 'swl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsw', 'Swiss German', NULL, 655.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swiss German', [Definition] = NULL, [SortOrder] = 655.50 WHERE [Code] = 'gsw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssr', 'Swiss-French Sign Language', NULL, 655.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swiss-French Sign Language', [Definition] = NULL, [SortOrder] = 655.60 WHERE [Code] = 'ssr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgg', 'Swiss-German Sign Language', NULL, 655.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swiss-German Sign Language', [Definition] = NULL, [SortOrder] = 655.70 WHERE [Code] = 'sgg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slf', 'Swiss-Italian Sign Language', NULL, 655.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swiss-Italian Sign Language', [Definition] = NULL, [SortOrder] = 655.80 WHERE [Code] = 'slf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sox', 'Swo', NULL, 655.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swo', [Definition] = NULL, [SortOrder] = 655.90 WHERE [Code] = 'sox' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shz', 'Syenara Senoufo', NULL, 656.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Syenara Senoufo', [Definition] = NULL, [SortOrder] = 656.00 WHERE [Code] = 'shz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syl', 'Sylheti', NULL, 656.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sylheti', [Definition] = NULL, [SortOrder] = 656.10 WHERE [Code] = 'syl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syr', 'Syriac', NULL, 656.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Syriac', [Definition] = NULL, [SortOrder] = 656.20 WHERE [Code] = 'syr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgn', 'T''apo', NULL, 656.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'T''apo', [Definition] = NULL, [SortOrder] = 656.30 WHERE [Code] = 'lgn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tct', 'T''en', NULL, 656.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'T''en', [Definition] = NULL, [SortOrder] = 656.40 WHERE [Code] = 'tct' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acq', 'Ta''izzi-Adeni Arabic', NULL, 656.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ta''izzi-Adeni Arabic', [Definition] = NULL, [SortOrder] = 656.50 WHERE [Code] = 'acq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tap', 'Taabwa', NULL, 656.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taabwa', [Definition] = NULL, [SortOrder] = 656.60 WHERE [Code] = 'tap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zat', 'Tabaa Zapotec', NULL, 656.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabaa Zapotec', [Definition] = NULL, [SortOrder] = 656.70 WHERE [Code] = 'zat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tby', 'Tabaru', NULL, 656.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabaru', [Definition] = NULL, [SortOrder] = 656.80 WHERE [Code] = 'tby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chf', 'Tabasco Chontal', NULL, 656.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabasco Chontal', [Definition] = NULL, [SortOrder] = 656.90 WHERE [Code] = 'chf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhc', 'Tabasco Nahuatl', NULL, 657.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabasco Nahuatl', [Definition] = NULL, [SortOrder] = 657.00 WHERE [Code] = 'nhc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zoq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zoq', 'Tabasco Zoque', NULL, 657.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabasco Zoque', [Definition] = NULL, [SortOrder] = 657.10 WHERE [Code] = 'zoq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tab', 'Tabassaran', NULL, 657.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabassaran', [Definition] = NULL, [SortOrder] = 657.20 WHERE [Code] = 'tab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnm', 'Tabla', NULL, 657.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabla', [Definition] = NULL, [SortOrder] = 657.30 WHERE [Code] = 'tnm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knv', 'Tabo', NULL, 657.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabo', [Definition] = NULL, [SortOrder] = 657.40 WHERE [Code] = 'knv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzx', 'Tabriak', NULL, 657.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabriak', [Definition] = NULL, [SortOrder] = 657.50 WHERE [Code] = 'tzx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtt', 'Tacahua Mixtec', NULL, 657.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tacahua Mixtec', [Definition] = NULL, [SortOrder] = 657.60 WHERE [Code] = 'xtt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tna', 'Tacana', NULL, 657.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tacana', [Definition] = NULL, [SortOrder] = 657.70 WHERE [Code] = 'tna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shy', 'Tachawit', NULL, 657.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tachawit', [Definition] = NULL, [SortOrder] = 657.80 WHERE [Code] = 'shy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shi', 'Tachelhit', NULL, 657.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tachelhit', [Definition] = NULL, [SortOrder] = 657.90 WHERE [Code] = 'shi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lts', 'Tachoni', NULL, 658.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tachoni', [Definition] = NULL, [SortOrder] = 658.00 WHERE [Code] = 'lts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsq', 'Tadaksahak', NULL, 658.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tadaksahak', [Definition] = NULL, [SortOrder] = 658.10 WHERE [Code] = 'dsq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klw', 'Tado', NULL, 658.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tado', [Definition] = NULL, [SortOrder] = 658.20 WHERE [Code] = 'klw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdy', 'Tadyawan', NULL, 658.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tadyawan', [Definition] = NULL, [SortOrder] = 658.30 WHERE [Code] = 'tdy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rob', 'Tae''', NULL, 658.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tae''', [Definition] = NULL, [SortOrder] = 658.40 WHERE [Code] = 'rob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcd', 'Tafi', NULL, 658.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tafi', [Definition] = NULL, [SortOrder] = 658.50 WHERE [Code] = 'tcd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgs', 'Tagabawa', NULL, 658.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagabawa', [Definition] = NULL, [SortOrder] = 658.60 WHERE [Code] = 'bgs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klg', 'Tagakaulo', NULL, 658.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagakaulo', [Definition] = NULL, [SortOrder] = 658.70 WHERE [Code] = 'klg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvv', 'Tagal Murut', NULL, 658.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagal Murut', [Definition] = NULL, [SortOrder] = 658.80 WHERE [Code] = 'mvv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgz', 'Tagalaka', NULL, 658.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagalaka', [Definition] = NULL, [SortOrder] = 658.90 WHERE [Code] = 'tgz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgl', 'Tagalog', NULL, 659.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagalog', [Definition] = NULL, [SortOrder] = 659.00 WHERE [Code] = 'tgl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oua', 'Tagargrent', NULL, 659.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagargrent', [Definition] = NULL, [SortOrder] = 659.10 WHERE [Code] = 'oua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbw', 'Tagbanwa', NULL, 659.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagbanwa', [Definition] = NULL, [SortOrder] = 659.20 WHERE [Code] = 'tbw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbm', 'Tagbu', NULL, 659.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagbu', [Definition] = NULL, [SortOrder] = 659.30 WHERE [Code] = 'tbm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tda', 'Tagdal', NULL, 659.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagdal', [Definition] = NULL, [SortOrder] = 659.40 WHERE [Code] = 'tda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgj', 'Tagin', NULL, 659.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagin', [Definition] = NULL, [SortOrder] = 659.50 WHERE [Code] = 'tgj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgx', 'Tagish', NULL, 659.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagish', [Definition] = NULL, [SortOrder] = 659.60 WHERE [Code] = 'tgx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tag', 'Tagoi', NULL, 659.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagoi', [Definition] = NULL, [SortOrder] = 659.70 WHERE [Code] = 'tag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgw', 'Tagwana Senoufo', NULL, 659.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagwana Senoufo', [Definition] = NULL, [SortOrder] = 659.80 WHERE [Code] = 'tgw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thv', 'Tahaggart Tamahaq', NULL, 659.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tahaggart Tamahaq', [Definition] = NULL, [SortOrder] = 659.90 WHERE [Code] = 'thv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tah', 'Tahitian', NULL, 660.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tahitian', [Definition] = NULL, [SortOrder] = 660.00 WHERE [Code] = 'tah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tht', 'Tahltan', NULL, 660.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tahltan', [Definition] = NULL, [SortOrder] = 660.10 WHERE [Code] = 'tht' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taw', 'Tai', NULL, 660.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai', [Definition] = NULL, [SortOrder] = 660.20 WHERE [Code] = 'taw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyr', 'Tai Daeng', NULL, 660.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Daeng', [Definition] = NULL, [SortOrder] = 660.30 WHERE [Code] = 'tyr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blt', 'Tai Dam', NULL, 660.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Dam', [Definition] = NULL, [SortOrder] = 660.40 WHERE [Code] = 'blt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyj', 'Tai Do', NULL, 660.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Do', [Definition] = NULL, [SortOrder] = 660.50 WHERE [Code] = 'tyj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twh', 'Tai Dón', NULL, 660.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Dón', [Definition] = NULL, [SortOrder] = 660.60 WHERE [Code] = 'twh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiz', 'Tai Hongjin', NULL, 660.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Hongjin', [Definition] = NULL, [SortOrder] = 660.70 WHERE [Code] = 'tiz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjl', 'Tai Laing', NULL, 660.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Laing', [Definition] = NULL, [SortOrder] = 660.80 WHERE [Code] = 'tjl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlq', 'Tai Loi', NULL, 660.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Loi', [Definition] = NULL, [SortOrder] = 660.90 WHERE [Code] = 'tlq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thi', 'Tai Long', NULL, 661.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Long', [Definition] = NULL, [SortOrder] = 661.00 WHERE [Code] = 'thi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdd', 'Tai Nüa', NULL, 661.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Nüa', [Definition] = NULL, [SortOrder] = 661.10 WHERE [Code] = 'tdd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpo', 'Tai Pao', NULL, 661.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Pao', [Definition] = NULL, [SortOrder] = 661.20 WHERE [Code] = 'tpo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmm', 'Tai Thanh', NULL, 661.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Thanh', [Definition] = NULL, [SortOrder] = 661.30 WHERE [Code] = 'tmm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuu', 'Tai Ya', NULL, 661.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Ya', [Definition] = NULL, [SortOrder] = 661.40 WHERE [Code] = 'cuu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gpn', 'Taiap', NULL, 661.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taiap', [Definition] = NULL, [SortOrder] = 661.50 WHERE [Code] = 'gpn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aos', 'Taikat', NULL, 661.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taikat', [Definition] = NULL, [SortOrder] = 661.60 WHERE [Code] = 'aos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ago') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ago', 'Tainae', NULL, 661.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tainae', [Definition] = NULL, [SortOrder] = 661.70 WHERE [Code] = 'ago' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnq', 'Taino', NULL, 661.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taino', [Definition] = NULL, [SortOrder] = 661.80 WHERE [Code] = 'tnq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxa', 'Tairaha', NULL, 661.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tairaha', [Definition] = NULL, [SortOrder] = 661.90 WHERE [Code] = 'bxa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uar', 'Tairuma', NULL, 662.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tairuma', [Definition] = NULL, [SortOrder] = 662.00 WHERE [Code] = 'uar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dav', 'Taita', NULL, 662.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taita', [Definition] = NULL, [SortOrder] = 662.10 WHERE [Code] = 'dav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvx', 'Taivoan', NULL, 662.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taivoan', [Definition] = NULL, [SortOrder] = 662.20 WHERE [Code] = 'tvx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tss', 'Taiwan Sign Language', NULL, 662.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taiwan Sign Language', [Definition] = NULL, [SortOrder] = 662.30 WHERE [Code] = 'tss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pee', 'Taje', NULL, 662.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taje', [Definition] = NULL, [SortOrder] = 662.40 WHERE [Code] = 'pee' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgk', 'Tajik', NULL, 662.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tajik', [Definition] = NULL, [SortOrder] = 662.50 WHERE [Code] = 'tgk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abh', 'Tajiki Arabic', NULL, 662.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tajiki Arabic', [Definition] = NULL, [SortOrder] = 662.60 WHERE [Code] = 'abh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdj', 'Tajio', NULL, 662.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tajio', [Definition] = NULL, [SortOrder] = 662.70 WHERE [Code] = 'tdj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tja', 'Tajuasohn', NULL, 662.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tajuasohn', [Definition] = NULL, [SortOrder] = 662.80 WHERE [Code] = 'tja' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkm', 'Takelma', NULL, 662.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takelma', [Definition] = NULL, [SortOrder] = 662.90 WHERE [Code] = 'tkm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tks', 'Takestani', NULL, 663.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takestani', [Definition] = NULL, [SortOrder] = 663.00 WHERE [Code] = 'tks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbc', 'Takia', NULL, 663.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takia', [Definition] = NULL, [SortOrder] = 663.10 WHERE [Code] = 'tbc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkz', 'Takua', NULL, 663.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takua', [Definition] = NULL, [SortOrder] = 663.20 WHERE [Code] = 'tkz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nho', 'Takuu', NULL, 663.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takuu', [Definition] = NULL, [SortOrder] = 663.30 WHERE [Code] = 'nho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tke', 'Takwane', NULL, 663.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takwane', [Definition] = NULL, [SortOrder] = 663.40 WHERE [Code] = 'tke' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tal', 'Tal', NULL, 663.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tal', [Definition] = NULL, [SortOrder] = 663.50 WHERE [Code] = 'tal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tak', 'Tala', NULL, 663.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tala', [Definition] = NULL, [SortOrder] = 663.60 WHERE [Code] = 'tak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tld', 'Talaud', NULL, 663.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talaud', [Definition] = NULL, [SortOrder] = 663.70 WHERE [Code] = 'tld' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlv', 'Taliabu', NULL, 663.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taliabu', [Definition] = NULL, [SortOrder] = 663.80 WHERE [Code] = 'tlv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdf', 'Talieng', NULL, 663.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talieng', [Definition] = NULL, [SortOrder] = 663.90 WHERE [Code] = 'tdf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlj', 'Talinga-Bwisi', NULL, 664.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talinga-Bwisi', [Definition] = NULL, [SortOrder] = 664.00 WHERE [Code] = 'tlj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlr', 'Talise', NULL, 664.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talise', [Definition] = NULL, [SortOrder] = 664.10 WHERE [Code] = 'tlr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlo', 'Talodi', NULL, 664.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talodi', [Definition] = NULL, [SortOrder] = 664.20 WHERE [Code] = 'tlo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlk', 'Taloki', NULL, 664.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taloki', [Definition] = NULL, [SortOrder] = 664.30 WHERE [Code] = 'tlk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tln', 'Talondo''', NULL, 664.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talondo''', [Definition] = NULL, [SortOrder] = 664.40 WHERE [Code] = 'tln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzl', 'Talossan', NULL, 664.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talossan', [Definition] = NULL, [SortOrder] = 664.50 WHERE [Code] = 'tzl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yta', 'Talu', NULL, 664.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talu', [Definition] = NULL, [SortOrder] = 664.60 WHERE [Code] = 'yta' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tly', 'Talysh', NULL, 664.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talysh', [Definition] = NULL, [SortOrder] = 664.70 WHERE [Code] = 'tly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tma', 'Tama (Chad)', NULL, 664.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tama (Chad)', [Definition] = NULL, [SortOrder] = 664.80 WHERE [Code] = 'tma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ten') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ten', 'Tama (Colombia)', NULL, 664.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tama (Colombia)', [Definition] = NULL, [SortOrder] = 664.90 WHERE [Code] = 'ten' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcg', 'Tamagario', NULL, 665.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamagario', [Definition] = NULL, [SortOrder] = 665.00 WHERE [Code] = 'tcg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmn', 'Taman (Indonesia)', NULL, 665.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taman (Indonesia)', [Definition] = NULL, [SortOrder] = 665.10 WHERE [Code] = 'tmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcl', 'Taman (Myanmar)', NULL, 665.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taman (Myanmar)', [Definition] = NULL, [SortOrder] = 665.20 WHERE [Code] = 'tcl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmz', 'Tamanaku', NULL, 665.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamanaku', [Definition] = NULL, [SortOrder] = 665.30 WHERE [Code] = 'tmz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmh', 'Tamashek', NULL, 665.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamashek', [Definition] = NULL, [SortOrder] = 665.40 WHERE [Code] = 'tmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taq', 'Tamasheq', NULL, 665.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamasheq', [Definition] = NULL, [SortOrder] = 665.50 WHERE [Code] = 'taq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmx', 'Tamazola Mixtec', NULL, 665.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamazola Mixtec', [Definition] = NULL, [SortOrder] = 665.60 WHERE [Code] = 'vmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdk', 'Tambas', NULL, 665.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tambas', [Definition] = NULL, [SortOrder] = 665.70 WHERE [Code] = 'tdk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxt', 'Tambora', NULL, 665.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tambora', [Definition] = NULL, [SortOrder] = 665.80 WHERE [Code] = 'xxt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tls', 'Tambotalo', NULL, 665.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tambotalo', [Definition] = NULL, [SortOrder] = 665.90 WHERE [Code] = 'tls' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmy', 'Tami', NULL, 666.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tami', [Definition] = NULL, [SortOrder] = 666.00 WHERE [Code] = 'tmy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tam', 'Tamil', NULL, 666.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamil', [Definition] = NULL, [SortOrder] = 666.10 WHERE [Code] = 'tam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tax', 'Tamki', NULL, 666.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamki', [Definition] = NULL, [SortOrder] = 666.20 WHERE [Code] = 'tax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tml', 'Tamnim Citak', NULL, 666.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamnim Citak', [Definition] = NULL, [SortOrder] = 666.30 WHERE [Code] = 'tml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'low') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('low', 'Tampias Lobu', NULL, 666.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tampias Lobu', [Definition] = NULL, [SortOrder] = 666.40 WHERE [Code] = 'low' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpu', 'Tampuan', NULL, 666.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tampuan', [Definition] = NULL, [SortOrder] = 666.50 WHERE [Code] = 'tpu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpm', 'Tampulma', NULL, 666.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tampulma', [Definition] = NULL, [SortOrder] = 666.60 WHERE [Code] = 'tpm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcb', 'Tanacross', NULL, 666.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanacross', [Definition] = NULL, [SortOrder] = 666.70 WHERE [Code] = 'tcb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcm', 'Tanahmerah', NULL, 666.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanahmerah', [Definition] = NULL, [SortOrder] = 666.80 WHERE [Code] = 'tcm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tfn', 'Tanaina', NULL, 666.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanaina', [Definition] = NULL, [SortOrder] = 666.90 WHERE [Code] = 'tfn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpv', 'Tanapag', NULL, 667.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanapag', [Definition] = NULL, [SortOrder] = 667.00 WHERE [Code] = 'tpv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgn', 'Tandaganon', NULL, 667.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tandaganon', [Definition] = NULL, [SortOrder] = 667.10 WHERE [Code] = 'tgn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tni', 'Tandia', NULL, 667.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tandia', [Definition] = NULL, [SortOrder] = 667.20 WHERE [Code] = 'tni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdx', 'Tandroy-Mahafaly Malagasy', NULL, 667.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tandroy-Mahafaly Malagasy', [Definition] = NULL, [SortOrder] = 667.30 WHERE [Code] = 'tdx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnx', 'Tanema', NULL, 667.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanema', [Definition] = NULL, [SortOrder] = 667.40 WHERE [Code] = 'tnx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tan', 'Tangale', NULL, 667.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangale', [Definition] = NULL, [SortOrder] = 667.50 WHERE [Code] = 'tan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnv', 'Tangchangya', NULL, 667.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangchangya', [Definition] = NULL, [SortOrder] = 667.60 WHERE [Code] = 'tnv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgu', 'Tanggu', NULL, 667.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanggu', [Definition] = NULL, [SortOrder] = 667.70 WHERE [Code] = 'tgu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmf', 'Tangkhul Naga (India)', NULL, 667.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangkhul Naga (India)', [Definition] = NULL, [SortOrder] = 667.80 WHERE [Code] = 'nmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntx', 'Tangkhul Naga (Myanmar)', NULL, 667.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangkhul Naga (Myanmar)', [Definition] = NULL, [SortOrder] = 667.90 WHERE [Code] = 'ntx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkx', 'Tangko', NULL, 668.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangko', [Definition] = NULL, [SortOrder] = 668.00 WHERE [Code] = 'tkx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ytl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ytl', 'Tanglang', NULL, 668.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanglang', [Definition] = NULL, [SortOrder] = 668.10 WHERE [Code] = 'ytl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgp', 'Tangoa', NULL, 668.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangoa', [Definition] = NULL, [SortOrder] = 668.20 WHERE [Code] = 'tgp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbs', 'Tanguat', NULL, 668.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanguat', [Definition] = NULL, [SortOrder] = 668.30 WHERE [Code] = 'tbs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txg', 'Tangut', NULL, 668.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangut', [Definition] = NULL, [SortOrder] = 668.40 WHERE [Code] = 'txg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbe', 'Tanimbili', NULL, 668.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanimbili', [Definition] = NULL, [SortOrder] = 668.50 WHERE [Code] = 'tbe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnc', 'Tanimuca-Retuarã', NULL, 668.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanimuca-Retuarã', [Definition] = NULL, [SortOrder] = 668.60 WHERE [Code] = 'tnc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uji', 'Tanjijili', NULL, 668.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanjijili', [Definition] = NULL, [SortOrder] = 668.70 WHERE [Code] = 'uji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txy', 'Tanosy Malagasy', NULL, 668.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanosy Malagasy', [Definition] = NULL, [SortOrder] = 668.80 WHERE [Code] = 'txy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kml', 'Tanudan Kalinga', NULL, 668.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanudan Kalinga', [Definition] = NULL, [SortOrder] = 668.90 WHERE [Code] = 'kml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tza', 'Tanzanian Sign Language', NULL, 669.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanzanian Sign Language', [Definition] = NULL, [SortOrder] = 669.00 WHERE [Code] = 'tza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afp', 'Tapei', NULL, 669.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tapei', [Definition] = NULL, [SortOrder] = 669.10 WHERE [Code] = 'afp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpj', 'Tapieté', NULL, 669.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tapieté', [Definition] = NULL, [SortOrder] = 669.20 WHERE [Code] = 'tpj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taf', 'Tapirapé', NULL, 669.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tapirapé', [Definition] = NULL, [SortOrder] = 669.30 WHERE [Code] = 'taf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tro', 'Tarao Naga', NULL, 669.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarao Naga', [Definition] = NULL, [SortOrder] = 669.40 WHERE [Code] = 'tro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgr', 'Tareng', NULL, 669.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tareng', [Definition] = NULL, [SortOrder] = 669.50 WHERE [Code] = 'tgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tae', 'Tariana', NULL, 669.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tariana', [Definition] = NULL, [SortOrder] = 669.60 WHERE [Code] = 'tae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rif', 'Tarifit', NULL, 669.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarifit', [Definition] = NULL, [SortOrder] = 669.70 WHERE [Code] = 'rif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txj', 'Tarjumo', NULL, 669.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarjumo', [Definition] = NULL, [SortOrder] = 669.80 WHERE [Code] = 'txj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yer', 'Tarok', NULL, 669.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarok', [Definition] = NULL, [SortOrder] = 669.90 WHERE [Code] = 'yer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trv', 'Sediq', NULL, 670.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sediq', [Definition] = NULL, [SortOrder] = 670.00 WHERE [Code] = 'trv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpf', 'Tarpia', NULL, 670.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarpia', [Definition] = NULL, [SortOrder] = 670.10 WHERE [Code] = 'tpf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txr', 'Tartessian', NULL, 670.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tartessian', [Definition] = NULL, [SortOrder] = 670.20 WHERE [Code] = 'txr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdm', 'Taruma', NULL, 670.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taruma', [Definition] = NULL, [SortOrder] = 670.30 WHERE [Code] = 'tdm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twq', 'Tasawaq', NULL, 670.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tasawaq', [Definition] = NULL, [SortOrder] = 670.40 WHERE [Code] = 'twq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nst', 'Tase Naga', NULL, 670.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tase Naga', [Definition] = NULL, [SortOrder] = 670.50 WHERE [Code] = 'nst' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmt', 'Tasmate', NULL, 670.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tasmate', [Definition] = NULL, [SortOrder] = 670.60 WHERE [Code] = 'tmt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cta', 'Tataltepec Chatino', NULL, 670.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tataltepec Chatino', [Definition] = NULL, [SortOrder] = 670.70 WHERE [Code] = 'cta' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txx', 'Tatana', NULL, 670.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tatana', [Definition] = NULL, [SortOrder] = 670.80 WHERE [Code] = 'txx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tat', 'Tatar', NULL, 670.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tatar', [Definition] = NULL, [SortOrder] = 670.90 WHERE [Code] = 'tat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tav', 'Tatuyo', NULL, 671.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tatuyo', [Definition] = NULL, [SortOrder] = 671.00 WHERE [Code] = 'tav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttd', 'Tauade', NULL, 671.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tauade', [Definition] = NULL, [SortOrder] = 671.10 WHERE [Code] = 'ttd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuh', 'Taulil', NULL, 671.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taulil', [Definition] = NULL, [SortOrder] = 671.20 WHERE [Code] = 'tuh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tco', 'Taungyo', NULL, 671.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taungyo', [Definition] = NULL, [SortOrder] = 671.30 WHERE [Code] = 'tco' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpa', 'Taupota', NULL, 671.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taupota', [Definition] = NULL, [SortOrder] = 671.40 WHERE [Code] = 'tpa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tad', 'Tause', NULL, 671.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tause', [Definition] = NULL, [SortOrder] = 671.50 WHERE [Code] = 'tad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trr', 'Taushiro', NULL, 671.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taushiro', [Definition] = NULL, [SortOrder] = 671.60 WHERE [Code] = 'trr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsg', 'Tausug', NULL, 671.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tausug', [Definition] = NULL, [SortOrder] = 671.70 WHERE [Code] = 'tsg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tya', 'Tauya', NULL, 671.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tauya', [Definition] = NULL, [SortOrder] = 671.80 WHERE [Code] = 'tya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvs', 'Taveta', NULL, 671.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taveta', [Definition] = NULL, [SortOrder] = 671.90 WHERE [Code] = 'tvs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvn', 'Tavoyan', NULL, 672.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tavoyan', [Definition] = NULL, [SortOrder] = 672.00 WHERE [Code] = 'tvn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmu', 'Tavringer Romani', NULL, 672.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tavringer Romani', [Definition] = NULL, [SortOrder] = 672.10 WHERE [Code] = 'rmu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbo', 'Tawala', NULL, 672.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawala', [Definition] = NULL, [SortOrder] = 672.20 WHERE [Code] = 'tbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttq', 'Tawallammat Tamajaq', NULL, 672.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawallammat Tamajaq', [Definition] = NULL, [SortOrder] = 672.30 WHERE [Code] = 'ttq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtw', 'Tawandê', NULL, 672.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawandê', [Definition] = NULL, [SortOrder] = 672.40 WHERE [Code] = 'xtw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twm', 'Tawang Monpa', NULL, 672.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawang Monpa', [Definition] = NULL, [SortOrder] = 672.50 WHERE [Code] = 'twm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twl', 'Tawara', NULL, 672.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawara', [Definition] = NULL, [SortOrder] = 672.60 WHERE [Code] = 'twl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbp', 'Taworta', NULL, 672.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taworta', [Definition] = NULL, [SortOrder] = 672.70 WHERE [Code] = 'tbp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twy', 'Tawoyan', NULL, 672.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawoyan', [Definition] = NULL, [SortOrder] = 672.80 WHERE [Code] = 'twy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcp', 'Tawr Chin', NULL, 672.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawr Chin', [Definition] = NULL, [SortOrder] = 672.90 WHERE [Code] = 'tcp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyz', 'Tày', NULL, 673.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tày', [Definition] = NULL, [SortOrder] = 673.00 WHERE [Code] = 'tyz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tas', 'Tay Boi', NULL, 673.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tay Boi', [Definition] = NULL, [SortOrder] = 673.10 WHERE [Code] = 'tas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnu', 'Tay Khang', NULL, 673.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tay Khang', [Definition] = NULL, [SortOrder] = 673.20 WHERE [Code] = 'tnu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tys', 'Tày Sa Pa', NULL, 673.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tày Sa Pa', [Definition] = NULL, [SortOrder] = 673.30 WHERE [Code] = 'tys' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyt', 'Tày Tac', NULL, 673.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tày Tac', [Definition] = NULL, [SortOrder] = 673.40 WHERE [Code] = 'tyt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thz', 'Tayart Tamajeq', NULL, 673.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tayart Tamajeq', [Definition] = NULL, [SortOrder] = 673.50 WHERE [Code] = 'thz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cks', 'Tayo', NULL, 673.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tayo', [Definition] = NULL, [SortOrder] = 673.60 WHERE [Code] = 'cks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grr', 'Taznatit', NULL, 673.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taznatit', [Definition] = NULL, [SortOrder] = 673.70 WHERE [Code] = 'grr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbl', 'Tboli', NULL, 673.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tboli', [Definition] = NULL, [SortOrder] = 673.80 WHERE [Code] = 'tbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tck', 'Tchitchege', NULL, 673.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tchitchege', [Definition] = NULL, [SortOrder] = 673.90 WHERE [Code] = 'tck' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqa', 'Tchumbuli', NULL, 674.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tchumbuli', [Definition] = NULL, [SortOrder] = 674.00 WHERE [Code] = 'bqa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tve', 'Te''un', NULL, 674.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Te''un', [Definition] = NULL, [SortOrder] = 674.10 WHERE [Code] = 'tve' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkw', 'Teanu', NULL, 674.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teanu', [Definition] = NULL, [SortOrder] = 674.20 WHERE [Code] = 'tkw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsy', 'Tebul Sign Language', NULL, 674.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tebul Sign Language', [Definition] = NULL, [SortOrder] = 674.30 WHERE [Code] = 'tsy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtu', 'Tebul Ure Dogon', NULL, 674.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tebul Ure Dogon', [Definition] = NULL, [SortOrder] = 674.40 WHERE [Code] = 'dtu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcw', 'Tecpatlán Totonac', NULL, 674.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tecpatlán Totonac', [Definition] = NULL, [SortOrder] = 674.50 WHERE [Code] = 'tcw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuq', 'Tedaga', NULL, 674.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tedaga', [Definition] = NULL, [SortOrder] = 674.60 WHERE [Code] = 'tuq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctd', 'Tedim Chin', NULL, 674.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tedim Chin', [Definition] = NULL, [SortOrder] = 674.70 WHERE [Code] = 'ctd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkq', 'Tee', NULL, 674.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tee', [Definition] = NULL, [SortOrder] = 674.80 WHERE [Code] = 'tkq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lor', 'Téén', NULL, 674.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Téén', [Definition] = NULL, [SortOrder] = 674.90 WHERE [Code] = 'lor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tfo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tfo', 'Tefaro', NULL, 675.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tefaro', [Definition] = NULL, [SortOrder] = 675.00 WHERE [Code] = 'tfo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ras') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ras', 'Tegali', NULL, 675.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tegali', [Definition] = NULL, [SortOrder] = 675.10 WHERE [Code] = 'ras' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kps', 'Tehit', NULL, 675.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tehit', [Definition] = NULL, [SortOrder] = 675.20 WHERE [Code] = 'kps' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teh', 'Tehuelche', NULL, 675.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tehuelche', [Definition] = NULL, [SortOrder] = 675.30 WHERE [Code] = 'teh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztt', 'Tejalapan Zapotec', NULL, 675.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tejalapan Zapotec', [Definition] = NULL, [SortOrder] = 675.40 WHERE [Code] = 'ztt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebo', 'Teke-Ebo', NULL, 675.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Ebo', [Definition] = NULL, [SortOrder] = 675.50 WHERE [Code] = 'ebo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifm', 'Teke-Fuumu', NULL, 675.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Fuumu', [Definition] = NULL, [SortOrder] = 675.60 WHERE [Code] = 'ifm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkw', 'Teke-Kukuya', NULL, 675.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Kukuya', [Definition] = NULL, [SortOrder] = 675.70 WHERE [Code] = 'kkw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lli', 'Teke-Laali', NULL, 675.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Laali', [Definition] = NULL, [SortOrder] = 675.80 WHERE [Code] = 'lli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzu', 'Teke-Nzikou', NULL, 675.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Nzikou', [Definition] = NULL, [SortOrder] = 675.90 WHERE [Code] = 'nzu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teg', 'Teke-Tege', NULL, 676.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Tege', [Definition] = NULL, [SortOrder] = 676.00 WHERE [Code] = 'teg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyi', 'Teke-Tsaayi', NULL, 676.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Tsaayi', [Definition] = NULL, [SortOrder] = 676.10 WHERE [Code] = 'tyi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyx', 'Teke-Tyee', NULL, 676.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Tyee', [Definition] = NULL, [SortOrder] = 676.20 WHERE [Code] = 'tyx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttc', 'Tektiteko', NULL, 676.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tektiteko', [Definition] = NULL, [SortOrder] = 676.30 WHERE [Code] = 'ttc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvm', 'Tela-Masbuar', NULL, 676.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tela-Masbuar', [Definition] = NULL, [SortOrder] = 676.40 WHERE [Code] = 'tvm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlf', 'Telefol', NULL, 676.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Telefol', [Definition] = NULL, [SortOrder] = 676.50 WHERE [Code] = 'tlf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tel', 'Telugu', NULL, 676.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Telugu', [Definition] = NULL, [SortOrder] = 676.60 WHERE [Code] = 'tel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdh', 'Tem', NULL, 676.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tem', [Definition] = NULL, [SortOrder] = 676.70 WHERE [Code] = 'kdh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjo', 'Temacine Tamazight', NULL, 676.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temacine Tamazight', [Definition] = NULL, [SortOrder] = 676.80 WHERE [Code] = 'tjo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhv', 'Temascaltepec Nahuatl', NULL, 676.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temascaltepec Nahuatl', [Definition] = NULL, [SortOrder] = 676.90 WHERE [Code] = 'nhv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqb', 'Tembé', NULL, 677.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tembé', [Definition] = NULL, [SortOrder] = 677.00 WHERE [Code] = 'tqb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbt', 'Tembo (Kitembo)', NULL, 677.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tembo (Kitembo)', [Definition] = NULL, [SortOrder] = 677.10 WHERE [Code] = 'tbt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmv', 'Tembo (Motembo)', NULL, 677.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tembo (Motembo)', [Definition] = NULL, [SortOrder] = 677.20 WHERE [Code] = 'tmv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdo', 'Teme', NULL, 677.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teme', [Definition] = NULL, [SortOrder] = 677.30 WHERE [Code] = 'tdo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teq', 'Temein', NULL, 677.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temein', [Definition] = NULL, [SortOrder] = 677.40 WHERE [Code] = 'teq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soz', 'Temi', NULL, 677.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temi', [Definition] = NULL, [SortOrder] = 677.50 WHERE [Code] = 'soz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tea', 'Temiar', NULL, 677.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temiar', [Definition] = NULL, [SortOrder] = 677.60 WHERE [Code] = 'tea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ott') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ott', 'Temoaya Otomi', NULL, 677.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temoaya Otomi', [Definition] = NULL, [SortOrder] = 677.70 WHERE [Code] = 'ott' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmo', 'Temoq', NULL, 677.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temoq', [Definition] = NULL, [SortOrder] = 677.80 WHERE [Code] = 'tmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmw', 'Temuan', NULL, 677.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temuan', [Definition] = NULL, [SortOrder] = 677.90 WHERE [Code] = 'tmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnz', 'Ten''edn', NULL, 678.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ten''edn', [Definition] = NULL, [SortOrder] = 678.00 WHERE [Code] = 'tnz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quw', 'Tena Lowland Quichua', NULL, 678.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tena Lowland Quichua', [Definition] = NULL, [SortOrder] = 678.10 WHERE [Code] = 'quw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otn', 'Tenango Otomi', NULL, 678.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenango Otomi', [Definition] = NULL, [SortOrder] = 678.20 WHERE [Code] = 'otn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtk', 'Tene Kan Dogon', NULL, 678.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tene Kan Dogon', [Definition] = NULL, [SortOrder] = 678.30 WHERE [Code] = 'dtk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkt', 'Tenggarong Kutai Malay', NULL, 678.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenggarong Kutai Malay', [Definition] = NULL, [SortOrder] = 678.40 WHERE [Code] = 'vkt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tes', 'Tengger', NULL, 678.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tengger', [Definition] = NULL, [SortOrder] = 678.50 WHERE [Code] = 'tes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pah', 'Tenharim', NULL, 678.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenharim', [Definition] = NULL, [SortOrder] = 678.60 WHERE [Code] = 'pah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqn', 'Tenino', NULL, 678.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenino', [Definition] = NULL, [SortOrder] = 678.70 WHERE [Code] = 'tqn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tns', 'Tenis', NULL, 678.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenis', [Definition] = NULL, [SortOrder] = 678.80 WHERE [Code] = 'tns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tex', 'Tennet', NULL, 678.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tennet', [Definition] = NULL, [SortOrder] = 678.90 WHERE [Code] = 'tex' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tio', 'Teop', NULL, 679.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teop', [Definition] = NULL, [SortOrder] = 679.00 WHERE [Code] = 'tio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tev', 'Teor', NULL, 679.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teor', [Definition] = NULL, [SortOrder] = 679.10 WHERE [Code] = 'tev' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tep', 'Tepecano', NULL, 679.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepecano', [Definition] = NULL, [SortOrder] = 679.20 WHERE [Code] = 'tep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnt', 'Tepetotutla Chinantec', NULL, 679.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepetotutla Chinantec', [Definition] = NULL, [SortOrder] = 679.30 WHERE [Code] = 'cnt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cux', 'Tepeuxila Cuicatec', NULL, 679.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepeuxila Cuicatec', [Definition] = NULL, [SortOrder] = 679.40 WHERE [Code] = 'cux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cte', 'Tepinapa Chinantec', NULL, 679.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepinapa Chinantec', [Definition] = NULL, [SortOrder] = 679.50 WHERE [Code] = 'cte' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ted') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ted', 'Tepo Krumen', NULL, 679.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepo Krumen', [Definition] = NULL, [SortOrder] = 679.60 WHERE [Code] = 'ted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjt', 'Ter Sami', NULL, 679.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ter Sami', [Definition] = NULL, [SortOrder] = 679.70 WHERE [Code] = 'sjt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttr', 'Tera', NULL, 679.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tera', [Definition] = NULL, [SortOrder] = 679.80 WHERE [Code] = 'ttr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trb', 'Terebu', NULL, 679.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Terebu', [Definition] = NULL, [SortOrder] = 679.90 WHERE [Code] = 'trb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buo', 'Terei', NULL, 680.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Terei', [Definition] = NULL, [SortOrder] = 680.00 WHERE [Code] = 'buo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ter') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ter', 'Tereno', NULL, 680.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tereno', [Definition] = NULL, [SortOrder] = 680.10 WHERE [Code] = 'ter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tef', 'Teressa', NULL, 680.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teressa', [Definition] = NULL, [SortOrder] = 680.20 WHERE [Code] = 'tef' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twg', 'Tereweng', NULL, 680.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tereweng', [Definition] = NULL, [SortOrder] = 680.30 WHERE [Code] = 'twg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tfr', 'Teribe', NULL, 680.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teribe', [Definition] = NULL, [SortOrder] = 680.40 WHERE [Code] = 'tfr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tec', 'Terik', NULL, 680.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Terik', [Definition] = NULL, [SortOrder] = 680.50 WHERE [Code] = 'tec' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twu', 'Termanu', NULL, 680.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Termanu', [Definition] = NULL, [SortOrder] = 680.60 WHERE [Code] = 'twu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tft', 'Ternate', NULL, 680.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ternate', [Definition] = NULL, [SortOrder] = 680.70 WHERE [Code] = 'tft' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmg', 'Ternateño', NULL, 680.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ternateño', [Definition] = NULL, [SortOrder] = 680.80 WHERE [Code] = 'tmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkg', 'Tesaka Malagasy', NULL, 680.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tesaka Malagasy', [Definition] = NULL, [SortOrder] = 680.90 WHERE [Code] = 'tkg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keg', 'Tese', NULL, 681.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tese', [Definition] = NULL, [SortOrder] = 681.00 WHERE [Code] = 'keg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twc', 'Teshenawa', NULL, 681.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teshenawa', [Definition] = NULL, [SortOrder] = 681.10 WHERE [Code] = 'twc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teo', 'Teso', NULL, 681.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teso', [Definition] = NULL, [SortOrder] = 681.20 WHERE [Code] = 'teo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tll', 'Tetela', NULL, 681.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetela', [Definition] = NULL, [SortOrder] = 681.30 WHERE [Code] = 'tll' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhg', 'Tetelcingo Nahuatl', NULL, 681.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetelcingo Nahuatl', [Definition] = NULL, [SortOrder] = 681.40 WHERE [Code] = 'nhg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teb', 'Tetete', NULL, 681.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetete', [Definition] = NULL, [SortOrder] = 681.50 WHERE [Code] = 'teb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tez', 'Tetserret', NULL, 681.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetserret', [Definition] = NULL, [SortOrder] = 681.60 WHERE [Code] = 'tez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tet', 'Tetum', NULL, 681.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetum', [Definition] = NULL, [SortOrder] = 681.70 WHERE [Code] = 'tet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdt', 'Tetun Dili', NULL, 681.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetun Dili', [Definition] = NULL, [SortOrder] = 681.80 WHERE [Code] = 'tdt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cut', 'Teutila Cuicatec', NULL, 681.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teutila Cuicatec', [Definition] = NULL, [SortOrder] = 681.90 WHERE [Code] = 'cut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twe', 'Tewa (Indonesia)', NULL, 682.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tewa (Indonesia)', [Definition] = NULL, [SortOrder] = 682.00 WHERE [Code] = 'twe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tew', 'Tewa (USA)', NULL, 682.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tewa (USA)', [Definition] = NULL, [SortOrder] = 682.10 WHERE [Code] = 'tew' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twx', 'Tewe', NULL, 682.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tewe', [Definition] = NULL, [SortOrder] = 682.20 WHERE [Code] = 'twx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otx', 'Texcatepec Otomi', NULL, 682.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Texcatepec Otomi', [Definition] = NULL, [SortOrder] = 682.30 WHERE [Code] = 'otx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poq', 'Texistepec Popoluca', NULL, 682.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Texistepec Popoluca', [Definition] = NULL, [SortOrder] = 682.40 WHERE [Code] = 'poq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpz', 'Texmelucan Zapotec', NULL, 682.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Texmelucan Zapotec', [Definition] = NULL, [SortOrder] = 682.50 WHERE [Code] = 'zpz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxb', 'Tezoatlán Mixtec', NULL, 682.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tezoatlán Mixtec', [Definition] = NULL, [SortOrder] = 682.60 WHERE [Code] = 'mxb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thy', 'Tha', NULL, 682.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tha', [Definition] = NULL, [SortOrder] = 682.70 WHERE [Code] = 'thy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thn', 'Thachanadan', NULL, 682.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thachanadan', [Definition] = NULL, [SortOrder] = 682.80 WHERE [Code] = 'thn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcz', 'Thado Chin', NULL, 682.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thado Chin', [Definition] = NULL, [SortOrder] = 682.90 WHERE [Code] = 'tcz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tha', 'Thai', NULL, 683.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thai', [Definition] = NULL, [SortOrder] = 683.00 WHERE [Code] = 'tha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsq', 'Thai Sign Language', NULL, 683.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thai Sign Language', [Definition] = NULL, [SortOrder] = 683.10 WHERE [Code] = 'tsq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soa', 'Thai Song', NULL, 683.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thai Song', [Definition] = NULL, [SortOrder] = 683.20 WHERE [Code] = 'soa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cth', 'Thaiphum Chin', NULL, 683.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thaiphum Chin', [Definition] = NULL, [SortOrder] = 683.30 WHERE [Code] = 'cth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ths') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ths', 'Thakali', NULL, 683.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thakali', [Definition] = NULL, [SortOrder] = 683.40 WHERE [Code] = 'ths' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nki', 'Thangal Naga', NULL, 683.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thangal Naga', [Definition] = NULL, [SortOrder] = 683.50 WHERE [Code] = 'nki' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thf', 'Thangmi', NULL, 683.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thangmi', [Definition] = NULL, [SortOrder] = 683.60 WHERE [Code] = 'thf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssf', 'Thao', NULL, 683.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thao', [Definition] = NULL, [SortOrder] = 683.70 WHERE [Code] = 'ssf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thk', 'Tharaka', NULL, 683.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tharaka', [Definition] = NULL, [SortOrder] = 683.80 WHERE [Code] = 'thk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtv', 'Thawa', NULL, 683.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thawa', [Definition] = NULL, [SortOrder] = 683.90 WHERE [Code] = 'xtv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'typ') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('typ', 'Thaypan', NULL, 684.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thaypan', [Definition] = NULL, [SortOrder] = 684.00 WHERE [Code] = 'typ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iin', 'Thiin', NULL, 684.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thiin', [Definition] = NULL, [SortOrder] = 684.10 WHERE [Code] = 'iin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tou', 'Tho', NULL, 684.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tho', [Definition] = NULL, [SortOrder] = 684.20 WHERE [Code] = 'tou' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thp', 'Thompson', NULL, 684.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thompson', [Definition] = NULL, [SortOrder] = 684.30 WHERE [Code] = 'thp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ytp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ytp', 'Thopho', NULL, 684.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thopho', [Definition] = NULL, [SortOrder] = 684.40 WHERE [Code] = 'ytp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txh', 'Thracian', NULL, 684.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thracian', [Definition] = NULL, [SortOrder] = 684.50 WHERE [Code] = 'txh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyl', 'Thu Lao', NULL, 684.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thu Lao', [Definition] = NULL, [SortOrder] = 684.60 WHERE [Code] = 'tyl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdh', 'Thulung', NULL, 684.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thulung', [Definition] = NULL, [SortOrder] = 684.70 WHERE [Code] = 'tdh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lth', 'Thur', NULL, 684.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thur', [Definition] = NULL, [SortOrder] = 684.80 WHERE [Code] = 'lth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thu', 'Thuri', NULL, 684.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thuri', [Definition] = NULL, [SortOrder] = 684.90 WHERE [Code] = 'thu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahi', 'Tiagbamrin Aizi', NULL, 685.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiagbamrin Aizi', [Definition] = NULL, [SortOrder] = 685.00 WHERE [Code] = 'ahi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnl', 'Tiale', NULL, 685.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiale', [Definition] = NULL, [SortOrder] = 685.10 WHERE [Code] = 'mnl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbj', 'Tiang', NULL, 685.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiang', [Definition] = NULL, [SortOrder] = 685.20 WHERE [Code] = 'tbj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngy', 'Tibea', NULL, 685.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tibea', [Definition] = NULL, [SortOrder] = 685.30 WHERE [Code] = 'ngy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bod', 'Tibetan', NULL, 685.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tibetan', [Definition] = NULL, [SortOrder] = 685.40 WHERE [Code] = 'bod' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsn', 'Tibetan Sign Language', NULL, 685.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tibetan Sign Language', [Definition] = NULL, [SortOrder] = 685.50 WHERE [Code] = 'lsn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcn', 'Tichurong', NULL, 685.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tichurong', [Definition] = NULL, [SortOrder] = 685.60 WHERE [Code] = 'tcn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tca', 'Ticuna', NULL, 685.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ticuna', [Definition] = NULL, [SortOrder] = 685.70 WHERE [Code] = 'tca' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtx', 'Tidaá Mixtec', NULL, 685.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tidaá Mixtec', [Definition] = NULL, [SortOrder] = 685.80 WHERE [Code] = 'mtx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tia', 'Tidikelt Tamazight', NULL, 685.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tidikelt Tamazight', [Definition] = NULL, [SortOrder] = 685.90 WHERE [Code] = 'tia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvo', 'Tidore', NULL, 686.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tidore', [Definition] = NULL, [SortOrder] = 686.00 WHERE [Code] = 'tvo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiq', 'Tiéfo', NULL, 686.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiéfo', [Definition] = NULL, [SortOrder] = 686.10 WHERE [Code] = 'tiq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boo', 'Tiemacèwè Bozo', NULL, 686.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiemacèwè Bozo', [Definition] = NULL, [SortOrder] = 686.20 WHERE [Code] = 'boo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tii', 'Tiene', NULL, 686.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiene', [Definition] = NULL, [SortOrder] = 686.30 WHERE [Code] = 'tii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boz', 'Tiéyaxo Bozo', NULL, 686.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiéyaxo Bozo', [Definition] = NULL, [SortOrder] = 686.40 WHERE [Code] = 'boz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tif', 'Tifal', NULL, 686.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tifal', [Definition] = NULL, [SortOrder] = 686.50 WHERE [Code] = 'tif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgc', 'Tigak', NULL, 686.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tigak', [Definition] = NULL, [SortOrder] = 686.60 WHERE [Code] = 'tgc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nza', 'Tigon Mbembe', NULL, 686.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tigon Mbembe', [Definition] = NULL, [SortOrder] = 686.70 WHERE [Code] = 'nza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tig', 'Tigre', NULL, 686.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tigre', [Definition] = NULL, [SortOrder] = 686.80 WHERE [Code] = 'tig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tir', 'Tigrinya', NULL, 686.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tigrinya', [Definition] = NULL, [SortOrder] = 686.90 WHERE [Code] = 'tir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txq', 'Tii', NULL, 687.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tii', [Definition] = NULL, [SortOrder] = 687.00 WHERE [Code] = 'txq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtl', 'Tijaltepec Mixtec', NULL, 687.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tijaltepec Mixtec', [Definition] = NULL, [SortOrder] = 687.10 WHERE [Code] = 'xtl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tik', 'Tikar', NULL, 687.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tikar', [Definition] = NULL, [SortOrder] = 687.20 WHERE [Code] = 'tik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkp', 'Tikopia', NULL, 687.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tikopia', [Definition] = NULL, [SortOrder] = 687.30 WHERE [Code] = 'tkp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otl', 'Tilapa Otomi', NULL, 687.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tilapa Otomi', [Definition] = NULL, [SortOrder] = 687.40 WHERE [Code] = 'otl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'til') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('til', 'Tillamook', NULL, 687.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tillamook', [Definition] = NULL, [SortOrder] = 687.50 WHERE [Code] = 'til' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zts', 'Tilquiapan Zapotec', NULL, 687.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tilquiapan Zapotec', [Definition] = NULL, [SortOrder] = 687.60 WHERE [Code] = 'zts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tij', 'Tilung', NULL, 687.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tilung', [Definition] = NULL, [SortOrder] = 687.70 WHERE [Code] = 'tij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tms', 'Tima', NULL, 687.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tima', [Definition] = NULL, [SortOrder] = 687.80 WHERE [Code] = 'tms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tim', 'Timbe', NULL, 687.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timbe', [Definition] = NULL, [SortOrder] = 687.90 WHERE [Code] = 'tim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tem', 'Timne', NULL, 688.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timne', [Definition] = NULL, [SortOrder] = 688.00 WHERE [Code] = 'tem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvy', 'Timor Pidgin', NULL, 688.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timor Pidgin', [Definition] = NULL, [SortOrder] = 688.10 WHERE [Code] = 'tvy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjm', 'Timucua', NULL, 688.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timucua', [Definition] = NULL, [SortOrder] = 688.20 WHERE [Code] = 'tjm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tih', 'Timugon Murut', NULL, 688.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timugon Murut', [Definition] = NULL, [SortOrder] = 688.30 WHERE [Code] = 'tih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbf', 'Tinani', NULL, 688.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tinani', [Definition] = NULL, [SortOrder] = 688.40 WHERE [Code] = 'lbf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tin', 'Tindi', NULL, 688.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tindi', [Definition] = NULL, [SortOrder] = 688.50 WHERE [Code] = 'tin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgv', 'Tingui-Boto', NULL, 688.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tingui-Boto', [Definition] = NULL, [SortOrder] = 688.60 WHERE [Code] = 'tgv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tit', 'Tinigua', NULL, 688.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tinigua', [Definition] = NULL, [SortOrder] = 688.70 WHERE [Code] = 'tit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpz', 'Tinputz', NULL, 688.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tinputz', [Definition] = NULL, [SortOrder] = 688.80 WHERE [Code] = 'tpz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpe', 'Tippera', NULL, 688.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tippera', [Definition] = NULL, [SortOrder] = 688.90 WHERE [Code] = 'tpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tic', 'Tira', NULL, 689.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tira', [Definition] = NULL, [SortOrder] = 689.00 WHERE [Code] = 'tic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tra', 'Tirahi', NULL, 689.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tirahi', [Definition] = NULL, [SortOrder] = 689.10 WHERE [Code] = 'tra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tde', 'Tiranige Diga Dogon', NULL, 689.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiranige Diga Dogon', [Definition] = NULL, [SortOrder] = 689.20 WHERE [Code] = 'tde' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cir', 'Tiri', NULL, 689.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiri', [Definition] = NULL, [SortOrder] = 689.30 WHERE [Code] = 'cir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suq', 'Tirmaga-Chai Suri', NULL, 689.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tirmaga-Chai Suri', [Definition] = NULL, [SortOrder] = 689.40 WHERE [Code] = 'suq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiy', 'Tiruray', NULL, 689.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiruray', [Definition] = NULL, [SortOrder] = 689.50 WHERE [Code] = 'tiy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdq', 'Tita', NULL, 689.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tita', [Definition] = NULL, [SortOrder] = 689.60 WHERE [Code] = 'tdq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttv', 'Titan', NULL, 689.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Titan', [Definition] = NULL, [SortOrder] = 689.70 WHERE [Code] = 'ttv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiv', 'Tiv', NULL, 689.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiv', [Definition] = NULL, [SortOrder] = 689.80 WHERE [Code] = 'tiv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lax', 'Tiwa', NULL, 689.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiwa', [Definition] = NULL, [SortOrder] = 689.90 WHERE [Code] = 'lax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiw', 'Tiwi', NULL, 690.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiwi', [Definition] = NULL, [SortOrder] = 690.00 WHERE [Code] = 'tiw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyy', 'Tiyaa', NULL, 690.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiyaa', [Definition] = NULL, [SortOrder] = 690.10 WHERE [Code] = 'tyy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjj', 'Tjungundji', NULL, 690.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tjungundji', [Definition] = NULL, [SortOrder] = 690.20 WHERE [Code] = 'tjj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjp', 'Tjupany', NULL, 690.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tjupany', [Definition] = NULL, [SortOrder] = 690.30 WHERE [Code] = 'tjp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tju', 'Tjurruru', NULL, 690.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tjurruru', [Definition] = NULL, [SortOrder] = 690.40 WHERE [Code] = 'tju' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpt', 'Tlachichilco Tepehua', NULL, 690.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlachichilco Tepehua', [Definition] = NULL, [SortOrder] = 690.50 WHERE [Code] = 'tpt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpl', 'Tlacoapa Me''phaa', NULL, 690.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlacoapa Me''phaa', [Definition] = NULL, [SortOrder] = 690.60 WHERE [Code] = 'tpl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctl', 'Tlacoatzintepec Chinantec', NULL, 690.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlacoatzintepec Chinantec', [Definition] = NULL, [SortOrder] = 690.70 WHERE [Code] = 'ctl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpk', 'Tlacolulita Zapotec', NULL, 690.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlacolulita Zapotec', [Definition] = NULL, [SortOrder] = 690.80 WHERE [Code] = 'zpk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxp', 'Tlahuitoltepec Mixe', NULL, 690.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlahuitoltepec Mixe', [Definition] = NULL, [SortOrder] = 690.90 WHERE [Code] = 'mxp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuz', 'Tlamacazapa Nahuatl', NULL, 691.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlamacazapa Nahuatl', [Definition] = NULL, [SortOrder] = 691.00 WHERE [Code] = 'nuz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqh', 'Tlazoyaltepec Mixtec', NULL, 691.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlazoyaltepec Mixtec', [Definition] = NULL, [SortOrder] = 691.10 WHERE [Code] = 'mqh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tli', 'Tlingit', NULL, 691.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlingit', [Definition] = NULL, [SortOrder] = 691.20 WHERE [Code] = 'tli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toz', 'To', NULL, 691.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'To', [Definition] = NULL, [SortOrder] = 691.30 WHERE [Code] = 'toz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlu', 'To''abaita', NULL, 691.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'To''abaita', [Definition] = NULL, [SortOrder] = 691.40 WHERE [Code] = 'mlu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqo', 'Toaripi', NULL, 691.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toaripi', [Definition] = NULL, [SortOrder] = 691.50 WHERE [Code] = 'tqo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tob', 'Toba', NULL, 691.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toba', [Definition] = NULL, [SortOrder] = 691.60 WHERE [Code] = 'tob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmf', 'Toba-Maskoy', NULL, 691.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toba-Maskoy', [Definition] = NULL, [SortOrder] = 691.70 WHERE [Code] = 'tmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgh', 'Tobagonian Creole English', NULL, 691.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobagonian Creole English', [Definition] = NULL, [SortOrder] = 691.80 WHERE [Code] = 'tgh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tng', 'Tobanga', NULL, 691.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobanga', [Definition] = NULL, [SortOrder] = 691.90 WHERE [Code] = 'tng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tti', 'Tobati', NULL, 692.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobati', [Definition] = NULL, [SortOrder] = 692.00 WHERE [Code] = 'tti' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlb', 'Tobelo', NULL, 692.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobelo', [Definition] = NULL, [SortOrder] = 692.10 WHERE [Code] = 'tlb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tox', 'Tobian', NULL, 692.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobian', [Definition] = NULL, [SortOrder] = 692.20 WHERE [Code] = 'tox' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgb', 'Tobilung', NULL, 692.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobilung', [Definition] = NULL, [SortOrder] = 692.30 WHERE [Code] = 'tgb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbv', 'Tobo', NULL, 692.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobo', [Definition] = NULL, [SortOrder] = 692.40 WHERE [Code] = 'tbv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asu', 'Tocantins Asurini', NULL, 692.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tocantins Asurini', [Definition] = NULL, [SortOrder] = 692.50 WHERE [Code] = 'asu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taz', 'Tocho', NULL, 692.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tocho', [Definition] = NULL, [SortOrder] = 692.60 WHERE [Code] = 'taz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcx', 'Toda', NULL, 692.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toda', [Definition] = NULL, [SortOrder] = 692.70 WHERE [Code] = 'tcx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdr', 'Todrah', NULL, 692.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Todrah', [Definition] = NULL, [SortOrder] = 692.80 WHERE [Code] = 'tdr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlg', 'Tofanma', NULL, 692.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tofanma', [Definition] = NULL, [SortOrder] = 692.90 WHERE [Code] = 'tlg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tfi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tfi', 'Tofin Gbe', NULL, 693.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tofin Gbe', [Definition] = NULL, [SortOrder] = 693.00 WHERE [Code] = 'tfi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tor', 'Togbo-Vara Banda', NULL, 693.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Togbo-Vara Banda', [Definition] = NULL, [SortOrder] = 693.10 WHERE [Code] = 'tor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgy', 'Togoyo', NULL, 693.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Togoyo', [Definition] = NULL, [SortOrder] = 693.20 WHERE [Code] = 'tgy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ood') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ood', 'Tohono O''odham', NULL, 693.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tohono O''odham', [Definition] = NULL, [SortOrder] = 693.30 WHERE [Code] = 'ood' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toj', 'Tojolabal', NULL, 693.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tojolabal', [Definition] = NULL, [SortOrder] = 693.40 WHERE [Code] = 'toj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpi', 'Tok Pisin', NULL, 693.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tok Pisin', [Definition] = NULL, [SortOrder] = 693.50 WHERE [Code] = 'tpi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zuh', 'Tokano', NULL, 693.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tokano', [Definition] = NULL, [SortOrder] = 693.60 WHERE [Code] = 'zuh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkl', 'Tokelau', NULL, 693.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tokelau', [Definition] = NULL, [SortOrder] = 693.70 WHERE [Code] = 'tkl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xto', 'Tokharian A', NULL, 693.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tokharian A', [Definition] = NULL, [SortOrder] = 693.80 WHERE [Code] = 'xto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txb', 'Tokharian B', NULL, 693.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tokharian B', [Definition] = NULL, [SortOrder] = 693.90 WHERE [Code] = 'txb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tok', 'Toki Pona', NULL, 694.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toki Pona', [Definition] = NULL, [SortOrder] = 694.00 WHERE [Code] = 'tok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkn', 'Toku-No-Shima', NULL, 694.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toku-No-Shima', [Definition] = NULL, [SortOrder] = 694.10 WHERE [Code] = 'tkn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jic', 'Tol', NULL, 694.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tol', [Definition] = NULL, [SortOrder] = 694.20 WHERE [Code] = 'jic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbw', 'Tolaki', NULL, 694.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tolaki', [Definition] = NULL, [SortOrder] = 694.30 WHERE [Code] = 'lbw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlm', 'Tolomako', NULL, 694.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tolomako', [Definition] = NULL, [SortOrder] = 694.40 WHERE [Code] = 'tlm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tol', 'Tolowa', NULL, 694.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tolowa', [Definition] = NULL, [SortOrder] = 694.50 WHERE [Code] = 'tol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tod', 'Toma', NULL, 694.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toma', [Definition] = NULL, [SortOrder] = 694.60 WHERE [Code] = 'tod' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdi', 'Tomadino', NULL, 694.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tomadino', [Definition] = NULL, [SortOrder] = 694.70 WHERE [Code] = 'tdi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttp', 'Tombelala', NULL, 694.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tombelala', [Definition] = NULL, [SortOrder] = 694.80 WHERE [Code] = 'ttp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txa', 'Tombonuo', NULL, 694.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tombonuo', [Definition] = NULL, [SortOrder] = 694.90 WHERE [Code] = 'txa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tom', 'Tombulu', NULL, 695.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tombulu', [Definition] = NULL, [SortOrder] = 695.00 WHERE [Code] = 'tom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txm', 'Tomini', NULL, 695.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tomini', [Definition] = NULL, [SortOrder] = 695.10 WHERE [Code] = 'txm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dto', 'Tommo So Dogon', NULL, 695.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tommo So Dogon', [Definition] = NULL, [SortOrder] = 695.20 WHERE [Code] = 'dto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtm', 'Tomo Kan Dogon', NULL, 695.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tomo Kan Dogon', [Definition] = NULL, [SortOrder] = 695.30 WHERE [Code] = 'dtm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqp', 'Tomoip', NULL, 695.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tomoip', [Definition] = NULL, [SortOrder] = 695.40 WHERE [Code] = 'tqp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdn', 'Tondano', NULL, 695.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tondano', [Definition] = NULL, [SortOrder] = 695.50 WHERE [Code] = 'tdn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tst', 'Tondi Songway Kiini', NULL, 695.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tondi Songway Kiini', [Definition] = NULL, [SortOrder] = 695.60 WHERE [Code] = 'tst' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tog', 'Tonga (Nyasa)', NULL, 695.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonga (Nyasa)', [Definition] = NULL, [SortOrder] = 695.70 WHERE [Code] = 'tog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ton') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ton', 'Tonga (Tonga Islands)', NULL, 695.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonga (Tonga Islands)', [Definition] = NULL, [SortOrder] = 695.80 WHERE [Code] = 'ton' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toi', 'Tonga (Zambia)', NULL, 695.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonga (Zambia)', [Definition] = NULL, [SortOrder] = 695.90 WHERE [Code] = 'toi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tny', 'Tongwe', NULL, 696.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tongwe', [Definition] = NULL, [SortOrder] = 696.00 WHERE [Code] = 'tny' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjn', 'Tonjon', NULL, 696.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonjon', [Definition] = NULL, [SortOrder] = 696.10 WHERE [Code] = 'tjn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqw', 'Tonkawa', NULL, 696.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonkawa', [Definition] = NULL, [SortOrder] = 696.20 WHERE [Code] = 'tqw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnw', 'Tonsawang', NULL, 696.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonsawang', [Definition] = NULL, [SortOrder] = 696.30 WHERE [Code] = 'tnw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txs', 'Tonsea', NULL, 696.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonsea', [Definition] = NULL, [SortOrder] = 696.40 WHERE [Code] = 'txs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnt', 'Tontemboan', NULL, 696.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tontemboan', [Definition] = NULL, [SortOrder] = 696.50 WHERE [Code] = 'tnt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttj', 'Tooro', NULL, 696.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tooro', [Definition] = NULL, [SortOrder] = 696.60 WHERE [Code] = 'ttj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toy', 'Topoiyo', NULL, 696.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Topoiyo', [Definition] = NULL, [SortOrder] = 696.70 WHERE [Code] = 'toy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toq', 'Toposa', NULL, 696.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toposa', [Definition] = NULL, [SortOrder] = 696.80 WHERE [Code] = 'toq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trz', 'Torá', NULL, 696.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torá', [Definition] = NULL, [SortOrder] = 696.90 WHERE [Code] = 'trz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sda', 'Toraja-Sa''dan', NULL, 697.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toraja-Sa''dan', [Definition] = NULL, [SortOrder] = 697.00 WHERE [Code] = 'sda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trj', 'Toram', NULL, 697.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toram', [Definition] = NULL, [SortOrder] = 697.10 WHERE [Code] = 'trj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttu', 'Torau', NULL, 697.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torau', [Definition] = NULL, [SortOrder] = 697.20 WHERE [Code] = 'ttu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdv', 'Toro', NULL, 697.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toro', [Definition] = NULL, [SortOrder] = 697.30 WHERE [Code] = 'tdv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dts', 'Toro So Dogon', NULL, 697.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toro So Dogon', [Definition] = NULL, [SortOrder] = 697.40 WHERE [Code] = 'dts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtt', 'Toro Tegu Dogon', NULL, 697.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toro Tegu Dogon', [Definition] = NULL, [SortOrder] = 697.50 WHERE [Code] = 'dtt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tno', 'Toromono', NULL, 697.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toromono', [Definition] = NULL, [SortOrder] = 697.60 WHERE [Code] = 'tno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqr', 'Torona', NULL, 697.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torona', [Definition] = NULL, [SortOrder] = 697.70 WHERE [Code] = 'tqr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcs', 'Torres Strait Creole', NULL, 697.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torres Strait Creole', [Definition] = NULL, [SortOrder] = 697.80 WHERE [Code] = 'tcs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tei', 'Torricelli', NULL, 697.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torricelli', [Definition] = NULL, [SortOrder] = 697.90 WHERE [Code] = 'tei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trw', 'Torwali', NULL, 698.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torwali', [Definition] = NULL, [SortOrder] = 698.00 WHERE [Code] = 'trw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'als') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('als', 'Tosk Albanian', NULL, 698.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tosk Albanian', [Definition] = NULL, [SortOrder] = 698.10 WHERE [Code] = 'als' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttl', 'Totela', NULL, 698.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totela', [Definition] = NULL, [SortOrder] = 698.20 WHERE [Code] = 'ttl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txo', 'Toto', NULL, 698.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toto', [Definition] = NULL, [SortOrder] = 698.30 WHERE [Code] = 'txo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txe', 'Totoli', NULL, 698.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totoli', [Definition] = NULL, [SortOrder] = 698.40 WHERE [Code] = 'txe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zph', 'Totomachapan Zapotec', NULL, 698.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totomachapan Zapotec', [Definition] = NULL, [SortOrder] = 698.50 WHERE [Code] = 'zph' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mto', 'Totontepec Mixe', NULL, 698.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totontepec Mixe', [Definition] = NULL, [SortOrder] = 698.60 WHERE [Code] = 'mto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttk', 'Totoro', NULL, 698.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totoro', [Definition] = NULL, [SortOrder] = 698.70 WHERE [Code] = 'ttk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqu', 'Touo', NULL, 698.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Touo', [Definition] = NULL, [SortOrder] = 698.80 WHERE [Code] = 'tqu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neb', 'Toura (Côte d''Ivoire)', NULL, 698.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toura (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 698.90 WHERE [Code] = 'neb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'don') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('don', 'Toura (Papua New Guinea)', NULL, 699.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toura (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 699.00 WHERE [Code] = 'don' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttn', 'Towei', NULL, 699.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Towei', [Definition] = NULL, [SortOrder] = 699.10 WHERE [Code] = 'ttn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtg', 'Transalpine Gaulish', NULL, 699.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Transalpine Gaulish', [Definition] = NULL, [SortOrder] = 699.20 WHERE [Code] = 'xtg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmd', 'Traveller Danish', NULL, 699.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Traveller Danish', [Definition] = NULL, [SortOrder] = 699.30 WHERE [Code] = 'rmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmg', 'Traveller Norwegian', NULL, 699.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Traveller Norwegian', [Definition] = NULL, [SortOrder] = 699.40 WHERE [Code] = 'rmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trl', 'Traveller Scottish', NULL, 699.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Traveller Scottish', [Definition] = NULL, [SortOrder] = 699.50 WHERE [Code] = 'trl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trm', 'Tregami', NULL, 699.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tregami', [Definition] = NULL, [SortOrder] = 699.60 WHERE [Code] = 'trm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tme', 'Tremembé', NULL, 699.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tremembé', [Definition] = NULL, [SortOrder] = 699.70 WHERE [Code] = 'tme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stg', 'Trieng', NULL, 699.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trieng', [Definition] = NULL, [SortOrder] = 699.80 WHERE [Code] = 'stg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tip', 'Trimuris', NULL, 699.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trimuris', [Definition] = NULL, [SortOrder] = 699.90 WHERE [Code] = 'tip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgq', 'Tring', NULL, 700.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tring', [Definition] = NULL, [SortOrder] = 700.00 WHERE [Code] = 'tgq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trx', 'Tringgus-Sembaan Bidayuh', NULL, 700.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tringgus-Sembaan Bidayuh', [Definition] = NULL, [SortOrder] = 700.10 WHERE [Code] = 'trx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lst', 'Trinidad and Tobago Sign Language', NULL, 700.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trinidad and Tobago Sign Language', [Definition] = NULL, [SortOrder] = 700.20 WHERE [Code] = 'lst' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trf', 'Trinidadian Creole English', NULL, 700.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trinidadian Creole English', [Definition] = NULL, [SortOrder] = 700.30 WHERE [Code] = 'trf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trn', 'Trinitario', NULL, 700.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trinitario', [Definition] = NULL, [SortOrder] = 700.40 WHERE [Code] = 'trn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tri', 'Trió', NULL, 700.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trió', [Definition] = NULL, [SortOrder] = 700.50 WHERE [Code] = 'tri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tka', 'Truká', NULL, 700.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Truká', [Definition] = NULL, [SortOrder] = 700.60 WHERE [Code] = 'tka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpy', 'Trumai', NULL, 700.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trumai', [Definition] = NULL, [SortOrder] = 700.70 WHERE [Code] = 'tpy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsl', 'Ts''ün-Lao', NULL, 700.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ts''ün-Lao', [Definition] = NULL, [SortOrder] = 700.80 WHERE [Code] = 'tsl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsa', 'Tsaangi', NULL, 700.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsaangi', [Definition] = NULL, [SortOrder] = 700.90 WHERE [Code] = 'tsa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkr', 'Tsakhur', NULL, 701.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsakhur', [Definition] = NULL, [SortOrder] = 701.00 WHERE [Code] = 'tkr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsd', 'Tsakonian', NULL, 701.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsakonian', [Definition] = NULL, [SortOrder] = 701.10 WHERE [Code] = 'tsd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvz', 'Tsakwambo', NULL, 701.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsakwambo', [Definition] = NULL, [SortOrder] = 701.20 WHERE [Code] = 'kvz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsb', 'Tsamai', NULL, 701.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsamai', [Definition] = NULL, [SortOrder] = 701.30 WHERE [Code] = 'tsb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huq', 'Tsat', NULL, 701.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsat', [Definition] = NULL, [SortOrder] = 701.40 WHERE [Code] = 'huq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsk', 'Tseku', NULL, 701.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tseku', [Definition] = NULL, [SortOrder] = 701.50 WHERE [Code] = 'tsk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txc', 'Tsetsaut', NULL, 701.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsetsaut', [Definition] = NULL, [SortOrder] = 701.60 WHERE [Code] = 'txc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsj', 'Tshangla', NULL, 701.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tshangla', [Definition] = NULL, [SortOrder] = 701.70 WHERE [Code] = 'tsj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdl', 'Tsikimba', NULL, 701.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsikimba', [Definition] = NULL, [SortOrder] = 701.80 WHERE [Code] = 'kdl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cas', 'Tsimané', NULL, 701.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsimané', [Definition] = NULL, [SortOrder] = 701.90 WHERE [Code] = 'cas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmw', 'Tsimihety Malagasy', NULL, 702.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsimihety Malagasy', [Definition] = NULL, [SortOrder] = 702.00 WHERE [Code] = 'xmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsi', 'Tsimshian', NULL, 702.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsimshian', [Definition] = NULL, [SortOrder] = 702.10 WHERE [Code] = 'tsi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsw', 'Tsishingini', NULL, 702.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsishingini', [Definition] = NULL, [SortOrder] = 702.20 WHERE [Code] = 'tsw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldp', 'Tso', NULL, 702.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tso', [Definition] = NULL, [SortOrder] = 702.30 WHERE [Code] = 'ldp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hio', 'Tsoa', NULL, 702.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsoa', [Definition] = NULL, [SortOrder] = 702.40 WHERE [Code] = 'hio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsv', 'Tsogo', NULL, 702.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsogo', [Definition] = NULL, [SortOrder] = 702.50 WHERE [Code] = 'tsv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tso', 'Tsonga', NULL, 702.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsonga', [Definition] = NULL, [SortOrder] = 702.60 WHERE [Code] = 'tso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lto', 'Tsotso', NULL, 702.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsotso', [Definition] = NULL, [SortOrder] = 702.70 WHERE [Code] = 'lto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsu', 'Tsou', NULL, 702.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsou', [Definition] = NULL, [SortOrder] = 702.80 WHERE [Code] = 'tsu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbq', 'Tsucuba', NULL, 702.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsucuba', [Definition] = NULL, [SortOrder] = 702.90 WHERE [Code] = 'cbq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttz', 'Tsum', NULL, 703.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsum', [Definition] = NULL, [SortOrder] = 703.00 WHERE [Code] = 'ttz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvd', 'Tsuvadi', NULL, 703.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsuvadi', [Definition] = NULL, [SortOrder] = 703.10 WHERE [Code] = 'tvd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsh', 'Tsuvan', NULL, 703.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsuvan', [Definition] = NULL, [SortOrder] = 703.20 WHERE [Code] = 'tsh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsc', 'Tswa', NULL, 703.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tswa', [Definition] = NULL, [SortOrder] = 703.30 WHERE [Code] = 'tsc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsn', 'Tswana', NULL, 703.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tswana', [Definition] = NULL, [SortOrder] = 703.40 WHERE [Code] = 'tsn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'two') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('two', 'Tswapong', NULL, 703.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tswapong', [Definition] = NULL, [SortOrder] = 703.50 WHERE [Code] = 'two' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjg', 'Tu', NULL, 703.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tu', [Definition] = NULL, [SortOrder] = 703.60 WHERE [Code] = 'mjg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmt', 'Tuamotuan', NULL, 703.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuamotuan', [Definition] = NULL, [SortOrder] = 703.70 WHERE [Code] = 'pmt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbu', 'Tubar', NULL, 703.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tubar', [Definition] = NULL, [SortOrder] = 703.80 WHERE [Code] = 'tbu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tub', 'Tübatulabal', NULL, 703.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tübatulabal', [Definition] = NULL, [SortOrder] = 703.90 WHERE [Code] = 'tub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuo', 'Tucano', NULL, 704.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tucano', [Definition] = NULL, [SortOrder] = 704.00 WHERE [Code] = 'tuo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuy', 'Tugen', NULL, 704.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tugen', [Definition] = NULL, [SortOrder] = 704.10 WHERE [Code] = 'tuy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzn', 'Tugun', NULL, 704.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tugun', [Definition] = NULL, [SortOrder] = 704.20 WHERE [Code] = 'tzn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuj', 'Tugutil', NULL, 704.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tugutil', [Definition] = NULL, [SortOrder] = 704.30 WHERE [Code] = 'tuj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khc', 'Tukang Besi North', NULL, 704.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukang Besi North', [Definition] = NULL, [SortOrder] = 704.40 WHERE [Code] = 'khc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhq', 'Tukang Besi South', NULL, 704.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukang Besi South', [Definition] = NULL, [SortOrder] = 704.50 WHERE [Code] = 'bhq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bag', 'Tuki', NULL, 704.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuki', [Definition] = NULL, [SortOrder] = 704.60 WHERE [Code] = 'bag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpq', 'Tukpa', NULL, 704.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukpa', [Definition] = NULL, [SortOrder] = 704.70 WHERE [Code] = 'tpq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkd', 'Tukudede', NULL, 704.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukudede', [Definition] = NULL, [SortOrder] = 704.80 WHERE [Code] = 'tkd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkf', 'Tukumanféd', NULL, 704.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukumanféd', [Definition] = NULL, [SortOrder] = 704.90 WHERE [Code] = 'tkf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tul', 'Tula', NULL, 705.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tula', [Definition] = NULL, [SortOrder] = 705.00 WHERE [Code] = 'tul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlu', 'Tulehu', NULL, 705.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tulehu', [Definition] = NULL, [SortOrder] = 705.10 WHERE [Code] = 'tlu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tey', 'Tulishi', NULL, 705.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tulishi', [Definition] = NULL, [SortOrder] = 705.20 WHERE [Code] = 'tey' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcy', 'Tulu', NULL, 705.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tulu', [Definition] = NULL, [SortOrder] = 705.30 WHERE [Code] = 'tcy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rak', 'Tulu-Bohuai', NULL, 705.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tulu-Bohuai', [Definition] = NULL, [SortOrder] = 705.40 WHERE [Code] = 'rak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iou', 'Tuma-Irumu', NULL, 705.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuma-Irumu', [Definition] = NULL, [SortOrder] = 705.50 WHERE [Code] = 'iou' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmc', 'Tumak', NULL, 705.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumak', [Definition] = NULL, [SortOrder] = 705.60 WHERE [Code] = 'tmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krt', 'Tumari Kanuri', NULL, 705.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumari Kanuri', [Definition] = NULL, [SortOrder] = 705.70 WHERE [Code] = 'krt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tum', 'Tumbuka', NULL, 705.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumbuka', [Definition] = NULL, [SortOrder] = 705.80 WHERE [Code] = 'tum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kku', 'Tumi', NULL, 705.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumi', [Definition] = NULL, [SortOrder] = 705.90 WHERE [Code] = 'kku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmq', 'Tumleo', NULL, 706.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumleo', [Definition] = NULL, [SortOrder] = 706.00 WHERE [Code] = 'tmq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtq', 'Tumshuqese', NULL, 706.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumshuqese', [Definition] = NULL, [SortOrder] = 706.10 WHERE [Code] = 'xtq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbr', 'Tumtum', NULL, 706.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumtum', [Definition] = NULL, [SortOrder] = 706.20 WHERE [Code] = 'tbr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sil', 'Tumulung Sisaala', NULL, 706.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumulung Sisaala', [Definition] = NULL, [SortOrder] = 706.30 WHERE [Code] = 'sil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzb', 'Tumzabt', NULL, 706.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumzabt', [Definition] = NULL, [SortOrder] = 706.40 WHERE [Code] = 'mzb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enh', 'Tundra Enets', NULL, 706.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tundra Enets', [Definition] = NULL, [SortOrder] = 706.50 WHERE [Code] = 'enh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvu', 'Tunen', NULL, 706.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunen', [Definition] = NULL, [SortOrder] = 706.60 WHERE [Code] = 'tvu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcm', 'Tungag', NULL, 706.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tungag', [Definition] = NULL, [SortOrder] = 706.70 WHERE [Code] = 'lcm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trt', 'Tunggare', NULL, 706.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunggare', [Definition] = NULL, [SortOrder] = 706.80 WHERE [Code] = 'trt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tug', 'Tunia', NULL, 706.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunia', [Definition] = NULL, [SortOrder] = 706.90 WHERE [Code] = 'tug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tun', 'Tunica', NULL, 707.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunica', [Definition] = NULL, [SortOrder] = 707.00 WHERE [Code] = 'tun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aeb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aeb', 'Tunisian Arabic', NULL, 707.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunisian Arabic', [Definition] = NULL, [SortOrder] = 707.10 WHERE [Code] = 'aeb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tse', 'Tunisian Sign Language', NULL, 707.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunisian Sign Language', [Definition] = NULL, [SortOrder] = 707.20 WHERE [Code] = 'tse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjg', 'Tunjung', NULL, 707.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunjung', [Definition] = NULL, [SortOrder] = 707.30 WHERE [Code] = 'tjg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqq', 'Tunni', NULL, 707.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunni', [Definition] = NULL, [SortOrder] = 707.40 WHERE [Code] = 'tqq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dza', 'Tunzu', NULL, 707.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunzu', [Definition] = NULL, [SortOrder] = 707.50 WHERE [Code] = 'dza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttf', 'Tuotomb', NULL, 707.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuotomb', [Definition] = NULL, [SortOrder] = 707.60 WHERE [Code] = 'ttf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpr', 'Tuparí', NULL, 707.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuparí', [Definition] = NULL, [SortOrder] = 707.70 WHERE [Code] = 'tpr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpw', 'Tupí', NULL, 707.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tupí', [Definition] = NULL, [SortOrder] = 707.80 WHERE [Code] = 'tpw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpn', 'Tupinambá', NULL, 707.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tupinambá', [Definition] = NULL, [SortOrder] = 707.90 WHERE [Code] = 'tpn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpk', 'Tupinikin', NULL, 708.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tupinikin', [Definition] = NULL, [SortOrder] = 708.00 WHERE [Code] = 'tpk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tui', 'Tupuri', NULL, 708.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tupuri', [Definition] = NULL, [SortOrder] = 708.10 WHERE [Code] = 'tui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trh', 'Turaka', NULL, 708.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turaka', [Definition] = NULL, [SortOrder] = 708.20 WHERE [Code] = 'trh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trd', 'Turi', NULL, 708.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turi', [Definition] = NULL, [SortOrder] = 708.30 WHERE [Code] = 'trd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twt', 'Turiwára', NULL, 708.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turiwára', [Definition] = NULL, [SortOrder] = 708.40 WHERE [Code] = 'twt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuz', 'Turka', NULL, 708.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turka', [Definition] = NULL, [SortOrder] = 708.50 WHERE [Code] = 'tuz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuv', 'Turkana', NULL, 708.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turkana', [Definition] = NULL, [SortOrder] = 708.60 WHERE [Code] = 'tuv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tur', 'Turkish', NULL, 708.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turkish', [Definition] = NULL, [SortOrder] = 708.70 WHERE [Code] = 'tur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsm', 'Turkish Sign Language', NULL, 708.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turkish Sign Language', [Definition] = NULL, [SortOrder] = 708.80 WHERE [Code] = 'tsm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuk', 'Turkmen', NULL, 708.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turkmen', [Definition] = NULL, [SortOrder] = 708.90 WHERE [Code] = 'tuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tch', 'Turks And Caicos Creole English', NULL, 709.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turks And Caicos Creole English', [Definition] = NULL, [SortOrder] = 709.00 WHERE [Code] = 'tch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tru', 'Turoyo', NULL, 709.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turoyo', [Definition] = NULL, [SortOrder] = 709.10 WHERE [Code] = 'tru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqm', 'Turumsa', NULL, 709.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turumsa', [Definition] = NULL, [SortOrder] = 709.20 WHERE [Code] = 'tqm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'try') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('try', 'Turung', NULL, 709.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turung', [Definition] = NULL, [SortOrder] = 709.30 WHERE [Code] = 'try' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tus', 'Tuscarora', NULL, 709.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuscarora', [Definition] = NULL, [SortOrder] = 709.40 WHERE [Code] = 'tus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tta', 'Tutelo', NULL, 709.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tutelo', [Definition] = NULL, [SortOrder] = 709.50 WHERE [Code] = 'tta' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttg', 'Tutong', NULL, 709.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tutong', [Definition] = NULL, [SortOrder] = 709.60 WHERE [Code] = 'ttg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvt', 'Tutsa Naga', NULL, 709.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tutsa Naga', [Definition] = NULL, [SortOrder] = 709.70 WHERE [Code] = 'tvt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmi', 'Tutuba', NULL, 709.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tutuba', [Definition] = NULL, [SortOrder] = 709.80 WHERE [Code] = 'tmi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtu', 'Tututepec Mixtec', NULL, 709.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tututepec Mixtec', [Definition] = NULL, [SortOrder] = 709.90 WHERE [Code] = 'mtu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuu', 'Tututni', NULL, 710.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tututni', [Definition] = NULL, [SortOrder] = 710.00 WHERE [Code] = 'tuu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvl', 'Tuvalu', NULL, 710.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuvalu', [Definition] = NULL, [SortOrder] = 710.10 WHERE [Code] = 'tvl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyv', 'Tuvinian', NULL, 710.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuvinian', [Definition] = NULL, [SortOrder] = 710.20 WHERE [Code] = 'tyv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifk', 'Tuwali Ifugao', NULL, 710.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuwali Ifugao', [Definition] = NULL, [SortOrder] = 710.30 WHERE [Code] = 'ifk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tww', 'Tuwari', NULL, 710.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuwari', [Definition] = NULL, [SortOrder] = 710.40 WHERE [Code] = 'tww' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bov', 'Tuwuli', NULL, 710.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuwuli', [Definition] = NULL, [SortOrder] = 710.50 WHERE [Code] = 'bov' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tud', 'Tuxá', NULL, 710.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuxá', [Definition] = NULL, [SortOrder] = 710.60 WHERE [Code] = 'tud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tux', 'Tuxináwa', NULL, 710.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuxináwa', [Definition] = NULL, [SortOrder] = 710.70 WHERE [Code] = 'tux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tue', 'Tuyuca', NULL, 710.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuyuca', [Definition] = NULL, [SortOrder] = 710.80 WHERE [Code] = 'tue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twa', 'Twana', NULL, 710.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Twana', [Definition] = NULL, [SortOrder] = 710.90 WHERE [Code] = 'twa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twn', 'Twendi', NULL, 711.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Twendi', [Definition] = NULL, [SortOrder] = 711.00 WHERE [Code] = 'twn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twd', 'Twents', NULL, 711.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Twents', [Definition] = NULL, [SortOrder] = 711.10 WHERE [Code] = 'twd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twi', 'Twi', NULL, 711.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Twi', [Definition] = NULL, [SortOrder] = 711.20 WHERE [Code] = 'twi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcg', 'Tyap', NULL, 711.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tyap', [Definition] = NULL, [SortOrder] = 711.30 WHERE [Code] = 'kcg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzj', 'Tz''utujil', NULL, 711.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tz''utujil', [Definition] = NULL, [SortOrder] = 711.40 WHERE [Code] = 'tzj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzh', 'Tzeltal', NULL, 711.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tzeltal', [Definition] = NULL, [SortOrder] = 711.50 WHERE [Code] = 'tzh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzo', 'Tzotzil', NULL, 711.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tzotzil', [Definition] = NULL, [SortOrder] = 711.60 WHERE [Code] = 'tzo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uuu', 'U', NULL, 711.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'U', [Definition] = NULL, [SortOrder] = 711.70 WHERE [Code] = 'uuu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoz', 'Uab Meto', NULL, 711.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uab Meto', [Definition] = NULL, [SortOrder] = 711.80 WHERE [Code] = 'aoz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uam', 'Uamué', NULL, 711.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uamué', [Definition] = NULL, [SortOrder] = 711.90 WHERE [Code] = 'uam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksj', 'Uare', NULL, 712.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uare', [Definition] = NULL, [SortOrder] = 712.00 WHERE [Code] = 'ksj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byc', 'Ubaghara', NULL, 712.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubaghara', [Definition] = NULL, [SortOrder] = 712.10 WHERE [Code] = 'byc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uba', 'Ubang', NULL, 712.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubang', [Definition] = NULL, [SortOrder] = 712.20 WHERE [Code] = 'uba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ubi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ubi', 'Ubi', NULL, 712.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubi', [Definition] = NULL, [SortOrder] = 712.30 WHERE [Code] = 'ubi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ubr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ubr', 'Ubir', NULL, 712.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubir', [Definition] = NULL, [SortOrder] = 712.40 WHERE [Code] = 'ubr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uby', 'Ubykh', NULL, 712.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubykh', [Definition] = NULL, [SortOrder] = 712.50 WHERE [Code] = 'uby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpb', 'Ucayali-Yurúa Ashéninka', NULL, 712.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ucayali-Yurúa Ashéninka', [Definition] = NULL, [SortOrder] = 712.60 WHERE [Code] = 'cpb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uda', 'Uda', NULL, 712.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uda', [Definition] = NULL, [SortOrder] = 712.70 WHERE [Code] = 'uda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udi', 'Udi', NULL, 712.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Udi', [Definition] = NULL, [SortOrder] = 712.80 WHERE [Code] = 'udi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ude') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ude', 'Udihe', NULL, 712.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Udihe', [Definition] = NULL, [SortOrder] = 712.90 WHERE [Code] = 'ude' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udm', 'Udmurt', NULL, 713.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Udmurt', [Definition] = NULL, [SortOrder] = 713.00 WHERE [Code] = 'udm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udu', 'Uduk', NULL, 713.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uduk', [Definition] = NULL, [SortOrder] = 713.10 WHERE [Code] = 'udu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ufi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ufi', 'Ufim', NULL, 713.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ufim', [Definition] = NULL, [SortOrder] = 713.20 WHERE [Code] = 'ufi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugn', 'Ugandan Sign Language', NULL, 713.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ugandan Sign Language', [Definition] = NULL, [SortOrder] = 713.30 WHERE [Code] = 'ugn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uga', 'Ugaritic', NULL, 713.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ugaritic', [Definition] = NULL, [SortOrder] = 713.40 WHERE [Code] = 'uga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uge', 'Ughele', NULL, 713.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ughele', [Definition] = NULL, [SortOrder] = 713.50 WHERE [Code] = 'uge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugo', 'Ugong', NULL, 713.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ugong', [Definition] = NULL, [SortOrder] = 713.60 WHERE [Code] = 'ugo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uha', 'Uhami', NULL, 713.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uhami', [Definition] = NULL, [SortOrder] = 713.70 WHERE [Code] = 'uha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uig', 'Uighur', NULL, 713.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uighur', [Definition] = NULL, [SortOrder] = 713.80 WHERE [Code] = 'uig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uis', 'Uisai', NULL, 713.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uisai', [Definition] = NULL, [SortOrder] = 713.90 WHERE [Code] = 'uis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udj', 'Ujir', NULL, 714.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ujir', [Definition] = NULL, [SortOrder] = 714.00 WHERE [Code] = 'udj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcf', 'Ukaan', NULL, 714.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukaan', [Definition] = NULL, [SortOrder] = 714.10 WHERE [Code] = 'kcf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukh', 'Ukhwejo', NULL, 714.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukhwejo', [Definition] = NULL, [SortOrder] = 714.20 WHERE [Code] = 'ukh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umi', 'Ukit', NULL, 714.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukit', [Definition] = NULL, [SortOrder] = 714.30 WHERE [Code] = 'umi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukp', 'Ukpe-Bayobiri', NULL, 714.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukpe-Bayobiri', [Definition] = NULL, [SortOrder] = 714.40 WHERE [Code] = 'ukp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akd', 'Ukpet-Ehom', NULL, 714.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukpet-Ehom', [Definition] = NULL, [SortOrder] = 714.50 WHERE [Code] = 'akd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukr', 'Ukrainian', NULL, 714.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukrainian', [Definition] = NULL, [SortOrder] = 714.60 WHERE [Code] = 'ukr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukl', 'Ukrainian Sign Language', NULL, 714.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukrainian Sign Language', [Definition] = NULL, [SortOrder] = 714.70 WHERE [Code] = 'ukl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uku', 'Ukue', NULL, 714.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukue', [Definition] = NULL, [SortOrder] = 714.80 WHERE [Code] = 'uku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukg', 'Ukuriguma', NULL, 714.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukuriguma', [Definition] = NULL, [SortOrder] = 714.90 WHERE [Code] = 'ukg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukq', 'Ukwa', NULL, 715.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukwa', [Definition] = NULL, [SortOrder] = 715.00 WHERE [Code] = 'ukq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukw', 'Ukwuani-Aboh-Ndoni', NULL, 715.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukwuani-Aboh-Ndoni', [Definition] = NULL, [SortOrder] = 715.10 WHERE [Code] = 'ukw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svb', 'Ulau-Suain', NULL, 715.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulau-Suain', [Definition] = NULL, [SortOrder] = 715.20 WHERE [Code] = 'svb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulc', 'Ulch', NULL, 715.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulch', [Definition] = NULL, [SortOrder] = 715.30 WHERE [Code] = 'ulc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uli', 'Ulithian', NULL, 715.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulithian', [Definition] = NULL, [SortOrder] = 715.40 WHERE [Code] = 'uli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ull') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ull', 'Ullatan', NULL, 715.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ullatan', [Definition] = NULL, [SortOrder] = 715.50 WHERE [Code] = 'ull' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulb', 'Ulukwumi', NULL, 715.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulukwumi', [Definition] = NULL, [SortOrder] = 715.60 WHERE [Code] = 'ulb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulm', 'Ulumanda''', NULL, 715.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulumanda''', [Definition] = NULL, [SortOrder] = 715.70 WHERE [Code] = 'ulm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulw', 'Ulwa', NULL, 715.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulwa', [Definition] = NULL, [SortOrder] = 715.80 WHERE [Code] = 'ulw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppk', 'Uma', NULL, 715.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uma', [Definition] = NULL, [SortOrder] = 715.90 WHERE [Code] = 'ppk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xky', 'Uma'' Lasan', NULL, 716.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uma'' Lasan', [Definition] = NULL, [SortOrder] = 716.00 WHERE [Code] = 'xky' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulu', 'Uma'' Lung', NULL, 716.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uma'' Lung', [Definition] = NULL, [SortOrder] = 716.10 WHERE [Code] = 'ulu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdn', 'Umanakaina', NULL, 716.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umanakaina', [Definition] = NULL, [SortOrder] = 716.20 WHERE [Code] = 'gdn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uma', 'Umatilla', NULL, 716.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umatilla', [Definition] = NULL, [SortOrder] = 716.30 WHERE [Code] = 'uma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umd', 'Umbindhamu', NULL, 716.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbindhamu', [Definition] = NULL, [SortOrder] = 716.40 WHERE [Code] = 'umd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xum', 'Umbrian', NULL, 716.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbrian', [Definition] = NULL, [SortOrder] = 716.50 WHERE [Code] = 'xum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ubu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ubu', 'Umbu-Ungu', NULL, 716.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbu-Ungu', [Definition] = NULL, [SortOrder] = 716.60 WHERE [Code] = 'ubu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umr', 'Umbugarla', NULL, 716.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbugarla', [Definition] = NULL, [SortOrder] = 716.70 WHERE [Code] = 'umr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umb', 'Umbundu', NULL, 716.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbundu', [Definition] = NULL, [SortOrder] = 716.80 WHERE [Code] = 'umb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sju', 'Ume Sami', NULL, 716.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ume Sami', [Definition] = NULL, [SortOrder] = 716.90 WHERE [Code] = 'sju' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'upi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('upi', 'Umeda', NULL, 717.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umeda', [Definition] = NULL, [SortOrder] = 717.00 WHERE [Code] = 'upi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xud', 'Umiida', NULL, 717.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umiida', [Definition] = NULL, [SortOrder] = 717.10 WHERE [Code] = 'xud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'due') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('due', 'Umiray Dumaget Agta', NULL, 717.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umiray Dumaget Agta', [Definition] = NULL, [SortOrder] = 717.20 WHERE [Code] = 'due' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umm', 'Umon', NULL, 717.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umon', [Definition] = NULL, [SortOrder] = 717.30 WHERE [Code] = 'umm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umo', 'Umotína', NULL, 717.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umotína', [Definition] = NULL, [SortOrder] = 717.40 WHERE [Code] = 'umo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ump') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ump', 'Umpila', NULL, 717.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umpila', [Definition] = NULL, [SortOrder] = 717.50 WHERE [Code] = 'ump' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtg', 'Una', NULL, 717.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Una', [Definition] = NULL, [SortOrder] = 717.60 WHERE [Code] = 'mtg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unm', 'Unami', NULL, 717.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unami', [Definition] = NULL, [SortOrder] = 717.70 WHERE [Code] = 'unm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mis', 'Uncoded languages', NULL, 717.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uncoded languages', [Definition] = NULL, [SortOrder] = 717.80 WHERE [Code] = 'mis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unz', 'Unde Kaili', NULL, 717.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unde Kaili', [Definition] = NULL, [SortOrder] = 717.90 WHERE [Code] = 'unz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'und') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('und', 'Undetermined', NULL, 718.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Undetermined', [Definition] = NULL, [SortOrder] = 718.00 WHERE [Code] = 'und' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbn', 'Uneapa', NULL, 718.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uneapa', [Definition] = NULL, [SortOrder] = 718.10 WHERE [Code] = 'bbn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'une') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('une', 'Uneme', NULL, 718.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uneme', [Definition] = NULL, [SortOrder] = 718.20 WHERE [Code] = 'une' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xun', 'Unggaranggu', NULL, 718.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unggaranggu', [Definition] = NULL, [SortOrder] = 718.30 WHERE [Code] = 'xun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgu', 'Unggumi', NULL, 718.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unggumi', [Definition] = NULL, [SortOrder] = 718.40 WHERE [Code] = 'xgu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gku', 'Ungkue', NULL, 718.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ungkue', [Definition] = NULL, [SortOrder] = 718.50 WHERE [Code] = 'gku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uni', 'Uni', NULL, 718.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uni', [Definition] = NULL, [SortOrder] = 718.60 WHERE [Code] = 'uni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uln', 'Unserdeutsch', NULL, 718.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unserdeutsch', [Definition] = NULL, [SortOrder] = 718.70 WHERE [Code] = 'uln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onu', 'Unua', NULL, 718.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unua', [Definition] = NULL, [SortOrder] = 718.80 WHERE [Code] = 'onu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unu', 'Unubahe', NULL, 718.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unubahe', [Definition] = NULL, [SortOrder] = 718.90 WHERE [Code] = 'unu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjh', 'Upper Chehalis', NULL, 719.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Chehalis', [Definition] = NULL, [SortOrder] = 719.00 WHERE [Code] = 'cjh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dna', 'Upper Grand Valley Dani', NULL, 719.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Grand Valley Dani', [Definition] = NULL, [SortOrder] = 719.10 WHERE [Code] = 'dna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pov', 'Upper Guinea Crioulo', NULL, 719.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Guinea Crioulo', [Definition] = NULL, [SortOrder] = 719.20 WHERE [Code] = 'pov' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmg', 'Upper Kinabatangan', NULL, 719.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Kinabatangan', [Definition] = NULL, [SortOrder] = 719.30 WHERE [Code] = 'dmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuu', 'Upper Kuskokwim', NULL, 719.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Kuskokwim', [Definition] = NULL, [SortOrder] = 719.40 WHERE [Code] = 'kuu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tku', 'Upper Necaxa Totonac', NULL, 719.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Necaxa Totonac', [Definition] = NULL, [SortOrder] = 719.50 WHERE [Code] = 'tku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxu', 'Upper Saxon', NULL, 719.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Saxon', [Definition] = NULL, [SortOrder] = 719.60 WHERE [Code] = 'sxu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsb', 'Upper Sorbian', NULL, 719.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Sorbian', [Definition] = NULL, [SortOrder] = 719.70 WHERE [Code] = 'hsb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tth', 'Upper Ta''oih', NULL, 719.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Ta''oih', [Definition] = NULL, [SortOrder] = 719.80 WHERE [Code] = 'tth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tau', 'Upper Tanana', NULL, 719.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Tanana', [Definition] = NULL, [SortOrder] = 719.90 WHERE [Code] = 'tau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tov', 'Upper Taromi', NULL, 720.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Taromi', [Definition] = NULL, [SortOrder] = 720.00 WHERE [Code] = 'tov' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xup', 'Upper Umpqua', NULL, 720.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Umpqua', [Definition] = NULL, [SortOrder] = 720.10 WHERE [Code] = 'xup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uro', 'Ura (Papua New Guinea)', NULL, 720.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ura (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 720.20 WHERE [Code] = 'uro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uur', 'Ura (Vanuatu)', NULL, 720.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ura (Vanuatu)', [Definition] = NULL, [SortOrder] = 720.30 WHERE [Code] = 'uur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urf', 'Uradhi', NULL, 720.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uradhi', [Definition] = NULL, [SortOrder] = 720.40 WHERE [Code] = 'urf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urk', 'Urak Lawoi''', NULL, 720.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urak Lawoi''', [Definition] = NULL, [SortOrder] = 720.50 WHERE [Code] = 'urk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'url') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('url', 'Urali', NULL, 720.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urali', [Definition] = NULL, [SortOrder] = 720.60 WHERE [Code] = 'url' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urm', 'Urapmin', NULL, 720.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urapmin', [Definition] = NULL, [SortOrder] = 720.70 WHERE [Code] = 'urm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ura') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ura', 'Urarina', NULL, 720.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urarina', [Definition] = NULL, [SortOrder] = 720.80 WHERE [Code] = 'ura' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xur', 'Urartian', NULL, 720.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urartian', [Definition] = NULL, [SortOrder] = 720.90 WHERE [Code] = 'xur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urt', 'Urat', NULL, 721.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urat', [Definition] = NULL, [SortOrder] = 721.00 WHERE [Code] = 'urt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urd', 'Urdu', NULL, 721.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urdu', [Definition] = NULL, [SortOrder] = 721.10 WHERE [Code] = 'urd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urh', 'Urhobo', NULL, 721.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urhobo', [Definition] = NULL, [SortOrder] = 721.20 WHERE [Code] = 'urh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uvh', 'Uri', NULL, 721.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uri', [Definition] = NULL, [SortOrder] = 721.30 WHERE [Code] = 'uvh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urg', 'Urigina', NULL, 721.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urigina', [Definition] = NULL, [SortOrder] = 721.40 WHERE [Code] = 'urg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uri', 'Urim', NULL, 721.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urim', [Definition] = NULL, [SortOrder] = 721.50 WHERE [Code] = 'uri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urx', 'Urimo', NULL, 721.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urimo', [Definition] = NULL, [SortOrder] = 721.60 WHERE [Code] = 'urx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'upv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('upv', 'Uripiv-Wala-Rano-Atchin', NULL, 721.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uripiv-Wala-Rano-Atchin', [Definition] = NULL, [SortOrder] = 721.70 WHERE [Code] = 'upv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urc', 'Urningangg', NULL, 721.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urningangg', [Definition] = NULL, [SortOrder] = 721.80 WHERE [Code] = 'urc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ure') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ure', 'Uru', NULL, 721.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uru', [Definition] = NULL, [SortOrder] = 721.90 WHERE [Code] = 'ure' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urz', 'Uru-Eu-Wau-Wau', NULL, 722.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uru-Eu-Wau-Wau', [Definition] = NULL, [SortOrder] = 722.00 WHERE [Code] = 'urz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urp', 'Uru-Pa-In', NULL, 722.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uru-Pa-In', [Definition] = NULL, [SortOrder] = 722.10 WHERE [Code] = 'urp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urn', 'Uruangnirin', NULL, 722.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uruangnirin', [Definition] = NULL, [SortOrder] = 722.20 WHERE [Code] = 'urn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urv', 'Uruava', NULL, 722.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uruava', [Definition] = NULL, [SortOrder] = 722.30 WHERE [Code] = 'urv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urb', 'Urubú-Kaapor', NULL, 722.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urubú-Kaapor', [Definition] = NULL, [SortOrder] = 722.40 WHERE [Code] = 'urb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uks', 'Urubú-Kaapor Sign Language', NULL, 722.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urubú-Kaapor Sign Language', [Definition] = NULL, [SortOrder] = 722.50 WHERE [Code] = 'uks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugy', 'Uruguayan Sign Language', NULL, 722.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uruguayan Sign Language', [Definition] = NULL, [SortOrder] = 722.60 WHERE [Code] = 'ugy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uum', 'Urum', NULL, 722.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urum', [Definition] = NULL, [SortOrder] = 722.70 WHERE [Code] = 'uum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uru', 'Urumi', NULL, 722.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urumi', [Definition] = NULL, [SortOrder] = 722.80 WHERE [Code] = 'uru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uss', 'us-Saare', NULL, 722.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'us-Saare', [Definition] = NULL, [SortOrder] = 722.90 WHERE [Code] = 'uss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usk', 'Usaghade', NULL, 723.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usaghade', [Definition] = NULL, [SortOrder] = 723.00 WHERE [Code] = 'usk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnu', 'Usan', NULL, 723.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usan', [Definition] = NULL, [SortOrder] = 723.10 WHERE [Code] = 'wnu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usa', 'Usarufa', NULL, 723.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usarufa', [Definition] = NULL, [SortOrder] = 723.20 WHERE [Code] = 'usa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ush') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ush', 'Ushojo', NULL, 723.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ushojo', [Definition] = NULL, [SortOrder] = 723.30 WHERE [Code] = 'ush' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuc', 'Usila Chinantec', NULL, 723.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usila Chinantec', [Definition] = NULL, [SortOrder] = 723.40 WHERE [Code] = 'cuc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulf', 'Usku', NULL, 723.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usku', [Definition] = NULL, [SortOrder] = 723.50 WHERE [Code] = 'ulf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usp', 'Uspanteco', NULL, 723.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uspanteco', [Definition] = NULL, [SortOrder] = 723.60 WHERE [Code] = 'usp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usi', 'Usui', NULL, 723.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usui', [Definition] = NULL, [SortOrder] = 723.70 WHERE [Code] = 'usi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uth', 'ut-Hun', NULL, 723.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'ut-Hun', [Definition] = NULL, [SortOrder] = 723.80 WHERE [Code] = 'uth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gel', 'ut-Ma''in', NULL, 723.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'ut-Ma''in', [Definition] = NULL, [SortOrder] = 723.90 WHERE [Code] = 'gel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omo', 'Utarmbung', NULL, 724.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Utarmbung', [Definition] = NULL, [SortOrder] = 724.00 WHERE [Code] = 'omo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ute') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ute', 'Ute-Southern Paiute', NULL, 724.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ute-Southern Paiute', [Definition] = NULL, [SortOrder] = 724.10 WHERE [Code] = 'ute' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'utu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('utu', 'Utu', NULL, 724.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Utu', [Definition] = NULL, [SortOrder] = 724.20 WHERE [Code] = 'utu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'evh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('evh', 'Uvbie', NULL, 724.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uvbie', [Definition] = NULL, [SortOrder] = 724.30 WHERE [Code] = 'evh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usu', 'Uya', NULL, 724.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uya', [Definition] = NULL, [SortOrder] = 724.40 WHERE [Code] = 'usu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duk', 'Uyajitaya', NULL, 724.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uyajitaya', [Definition] = NULL, [SortOrder] = 724.50 WHERE [Code] = 'duk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uzb', 'Uzbek', NULL, 724.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uzbek', [Definition] = NULL, [SortOrder] = 724.60 WHERE [Code] = 'uzb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auz', 'Uzbeki Arabic', NULL, 724.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uzbeki Arabic', [Definition] = NULL, [SortOrder] = 724.70 WHERE [Code] = 'auz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eze', 'Uzekwe', NULL, 724.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uzekwe', [Definition] = NULL, [SortOrder] = 724.80 WHERE [Code] = 'eze' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vaa', 'Vaagri Booli', NULL, 724.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vaagri Booli', [Definition] = NULL, [SortOrder] = 724.90 WHERE [Code] = 'vaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vaf', 'Vafsi', NULL, 725.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vafsi', [Definition] = NULL, [SortOrder] = 725.00 WHERE [Code] = 'vaf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vgr', 'Vaghri', NULL, 725.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vaghri', [Definition] = NULL, [SortOrder] = 725.10 WHERE [Code] = 'vgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tva', 'Vaghua', NULL, 725.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vaghua', [Definition] = NULL, [SortOrder] = 725.20 WHERE [Code] = 'tva' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vag', 'Vagla', NULL, 725.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vagla', [Definition] = NULL, [SortOrder] = 725.30 WHERE [Code] = 'vag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vai', 'Vai', NULL, 725.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vai', [Definition] = NULL, [SortOrder] = 725.40 WHERE [Code] = 'vai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vap', 'Vaiphei', NULL, 725.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vaiphei', [Definition] = NULL, [SortOrder] = 725.50 WHERE [Code] = 'vap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vae', 'Vale', NULL, 725.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vale', [Definition] = NULL, [SortOrder] = 725.60 WHERE [Code] = 'vae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vsv', 'Valencian Sign Language', NULL, 725.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valencian Sign Language', [Definition] = NULL, [SortOrder] = 725.70 WHERE [Code] = 'vsv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cvn', 'Valle Nacional Chinantec', NULL, 725.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valle Nacional Chinantec', [Definition] = NULL, [SortOrder] = 725.80 WHERE [Code] = 'cvn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmv', 'Valley Maidu', NULL, 725.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valley Maidu', [Definition] = NULL, [SortOrder] = 725.90 WHERE [Code] = 'vmv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'van') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('van', 'Valman', NULL, 726.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valman', [Definition] = NULL, [SortOrder] = 726.00 WHERE [Code] = 'van' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vlp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vlp', 'Valpei', NULL, 726.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valpei', [Definition] = NULL, [SortOrder] = 726.10 WHERE [Code] = 'vlp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkt', 'Vamale', NULL, 726.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vamale', [Definition] = NULL, [SortOrder] = 726.20 WHERE [Code] = 'mkt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlr', 'Vame', NULL, 726.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vame', [Definition] = NULL, [SortOrder] = 726.30 WHERE [Code] = 'mlr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xvn', 'Vandalic', NULL, 726.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vandalic', [Definition] = NULL, [SortOrder] = 726.40 WHERE [Code] = 'xvn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpr', 'Vangunu', NULL, 726.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vangunu', [Definition] = NULL, [SortOrder] = 726.50 WHERE [Code] = 'mpr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vam', 'Vanimo', NULL, 726.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vanimo', [Definition] = NULL, [SortOrder] = 726.60 WHERE [Code] = 'vam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vnk', 'Vano', NULL, 726.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vano', [Definition] = NULL, [SortOrder] = 726.70 WHERE [Code] = 'vnk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vau', 'Vanuma', NULL, 726.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vanuma', [Definition] = NULL, [SortOrder] = 726.80 WHERE [Code] = 'vau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vao', 'Vao', NULL, 726.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vao', [Definition] = NULL, [SortOrder] = 726.90 WHERE [Code] = 'vao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vah', 'Varhadi-Nagpuri', NULL, 727.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Varhadi-Nagpuri', [Definition] = NULL, [SortOrder] = 727.00 WHERE [Code] = 'vah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vrs', 'Varisi', NULL, 727.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Varisi', [Definition] = NULL, [SortOrder] = 727.10 WHERE [Code] = 'vrs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vav', 'Varli', NULL, 727.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Varli', [Definition] = NULL, [SortOrder] = 727.20 WHERE [Code] = 'vav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vas', 'Vasavi', NULL, 727.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vasavi', [Definition] = NULL, [SortOrder] = 727.30 WHERE [Code] = 'vas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ved') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ved', 'Veddah', NULL, 727.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Veddah', [Definition] = NULL, [SortOrder] = 727.40 WHERE [Code] = 'ved' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'val') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('val', 'Vehes', NULL, 727.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vehes', [Definition] = NULL, [SortOrder] = 727.50 WHERE [Code] = 'val' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vel', 'Veluws', NULL, 727.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Veluws', [Definition] = NULL, [SortOrder] = 727.60 WHERE [Code] = 'vel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vem', 'Vemgo-Mabas', NULL, 727.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vemgo-Mabas', [Definition] = NULL, [SortOrder] = 727.70 WHERE [Code] = 'vem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ven') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ven', 'Venda', NULL, 727.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Venda', [Definition] = NULL, [SortOrder] = 727.80 WHERE [Code] = 'ven' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vec', 'Venetian', NULL, 727.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Venetian', [Definition] = NULL, [SortOrder] = 727.90 WHERE [Code] = 'vec' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xve', 'Venetic', NULL, 728.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Venetic', [Definition] = NULL, [SortOrder] = 728.00 WHERE [Code] = 'xve' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vsl', 'Venezuelan Sign Language', NULL, 728.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Venezuelan Sign Language', [Definition] = NULL, [SortOrder] = 728.10 WHERE [Code] = 'vsl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bav', 'Vengo', NULL, 728.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vengo', [Definition] = NULL, [SortOrder] = 728.20 WHERE [Code] = 'bav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'veo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('veo', 'Ventureño', NULL, 728.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ventureño', [Definition] = NULL, [SortOrder] = 728.30 WHERE [Code] = 'veo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vep', 'Veps', NULL, 728.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Veps', [Definition] = NULL, [SortOrder] = 728.40 WHERE [Code] = 'vep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vra', 'Vera''a', NULL, 728.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vera''a', [Definition] = NULL, [SortOrder] = 728.50 WHERE [Code] = 'vra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xvs', 'Vestinian', NULL, 728.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vestinian', [Definition] = NULL, [SortOrder] = 728.60 WHERE [Code] = 'xvs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vid', 'Vidunda', NULL, 728.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vidunda', [Definition] = NULL, [SortOrder] = 728.70 WHERE [Code] = 'vid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vig', 'Viemo', NULL, 728.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Viemo', [Definition] = NULL, [SortOrder] = 728.80 WHERE [Code] = 'vig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vie', 'Vietnamese', NULL, 728.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vietnamese', [Definition] = NULL, [SortOrder] = 728.90 WHERE [Code] = 'vie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vil', 'Vilela', NULL, 729.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vilela', [Definition] = NULL, [SortOrder] = 729.00 WHERE [Code] = 'vil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vif', 'Vili', NULL, 729.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vili', [Definition] = NULL, [SortOrder] = 729.10 WHERE [Code] = 'vif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyg', 'Villa Viciosa Agta', NULL, 729.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Villa Viciosa Agta', [Definition] = NULL, [SortOrder] = 729.20 WHERE [Code] = 'dyg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svc', 'Vincentian Creole English', NULL, 729.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vincentian Creole English', [Definition] = NULL, [SortOrder] = 729.30 WHERE [Code] = 'svc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vnm', 'Vinmavis', NULL, 729.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vinmavis', [Definition] = NULL, [SortOrder] = 729.40 WHERE [Code] = 'vnm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vin', 'Vinza', NULL, 729.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vinza', [Definition] = NULL, [SortOrder] = 729.50 WHERE [Code] = 'vin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vic', 'Virgin Islands Creole English', NULL, 729.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Virgin Islands Creole English', [Definition] = NULL, [SortOrder] = 729.60 WHERE [Code] = 'vic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vis', 'Vishavan', NULL, 729.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vishavan', [Definition] = NULL, [SortOrder] = 729.70 WHERE [Code] = 'vis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vit', 'Viti', NULL, 729.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Viti', [Definition] = NULL, [SortOrder] = 729.80 WHERE [Code] = 'vit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vto', 'Vitou', NULL, 729.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vitou', [Definition] = NULL, [SortOrder] = 729.90 WHERE [Code] = 'vto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wiv', 'Vitu', NULL, 730.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vitu', [Definition] = NULL, [SortOrder] = 730.00 WHERE [Code] = 'wiv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vls', 'Vlaams', NULL, 730.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vlaams', [Definition] = NULL, [SortOrder] = 730.10 WHERE [Code] = 'vls' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vgt', 'Vlaamse Gebarentaal', NULL, 730.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vlaamse Gebarentaal', [Definition] = NULL, [SortOrder] = 730.20 WHERE [Code] = 'vgt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmy', 'Vlax Romani', NULL, 730.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vlax Romani', [Definition] = NULL, [SortOrder] = 730.30 WHERE [Code] = 'rmy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vol', 'Volapük', NULL, 730.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Volapük', [Definition] = NULL, [SortOrder] = 730.40 WHERE [Code] = 'vol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xvo', 'Volscian', NULL, 730.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Volscian', [Definition] = NULL, [SortOrder] = 730.50 WHERE [Code] = 'xvo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kch', 'Vono', NULL, 730.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vono', [Definition] = NULL, [SortOrder] = 730.60 WHERE [Code] = 'kch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vor', 'Voro', NULL, 730.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Voro', [Definition] = NULL, [SortOrder] = 730.70 WHERE [Code] = 'vor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vro', 'Võro', NULL, 730.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Võro', [Definition] = NULL, [SortOrder] = 730.80 WHERE [Code] = 'vro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vot', 'Votic', NULL, 730.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Votic', [Definition] = NULL, [SortOrder] = 730.90 WHERE [Code] = 'vot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vum', 'Vumbu', NULL, 731.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vumbu', [Definition] = NULL, [SortOrder] = 731.00 WHERE [Code] = 'vum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vnp', 'Vunapu', NULL, 731.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vunapu', [Definition] = NULL, [SortOrder] = 731.10 WHERE [Code] = 'vnp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vun', 'Vunjo', NULL, 731.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vunjo', [Definition] = NULL, [SortOrder] = 731.20 WHERE [Code] = 'vun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msn', 'Vurës', NULL, 731.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vurës', [Definition] = NULL, [SortOrder] = 731.30 WHERE [Code] = 'msn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vut', 'Vute', NULL, 731.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vute', [Definition] = NULL, [SortOrder] = 731.40 WHERE [Code] = 'vut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbi', 'Vwanji', NULL, 731.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vwanji', [Definition] = NULL, [SortOrder] = 731.50 WHERE [Code] = 'wbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbm', 'Wa', NULL, 731.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wa', [Definition] = NULL, [SortOrder] = 731.60 WHERE [Code] = 'wbm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wag', 'Wa''ema', NULL, 731.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wa''ema', [Definition] = NULL, [SortOrder] = 731.70 WHERE [Code] = 'wag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wwa', 'Waama', NULL, 731.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waama', [Definition] = NULL, [SortOrder] = 731.80 WHERE [Code] = 'wwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmn', 'Waamwang', NULL, 731.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waamwang', [Definition] = NULL, [SortOrder] = 731.90 WHERE [Code] = 'wmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssn', 'Waata', NULL, 732.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waata', [Definition] = NULL, [SortOrder] = 732.00 WHERE [Code] = 'ssn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wab', 'Wab', NULL, 732.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wab', [Definition] = NULL, [SortOrder] = 732.10 WHERE [Code] = 'wab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbb', 'Wabo', NULL, 732.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wabo', [Definition] = NULL, [SortOrder] = 732.20 WHERE [Code] = 'wbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmx', 'Waboda', NULL, 732.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waboda', [Definition] = NULL, [SortOrder] = 732.30 WHERE [Code] = 'kmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wci', 'Waci Gbe', NULL, 732.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waci Gbe', [Definition] = NULL, [SortOrder] = 732.40 WHERE [Code] = 'wci' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdg', 'Wadaginam', NULL, 732.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadaginam', [Definition] = NULL, [SortOrder] = 732.50 WHERE [Code] = 'wdg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbq', 'Waddar', NULL, 732.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waddar', [Definition] = NULL, [SortOrder] = 732.60 WHERE [Code] = 'wbq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwd', 'Wadi Wadi', NULL, 732.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadi Wadi', [Definition] = NULL, [SortOrder] = 732.70 WHERE [Code] = 'xwd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdk', 'Wadikali', NULL, 732.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadikali', [Definition] = NULL, [SortOrder] = 732.80 WHERE [Code] = 'wdk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxp', 'Wadiyara Koli', NULL, 732.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadiyara Koli', [Definition] = NULL, [SortOrder] = 732.90 WHERE [Code] = 'kxp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdy', 'Wadjabangayi', NULL, 733.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadjabangayi', [Definition] = NULL, [SortOrder] = 733.00 WHERE [Code] = 'wdy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdj', 'Wadjiginy', NULL, 733.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadjiginy', [Definition] = NULL, [SortOrder] = 733.10 WHERE [Code] = 'wdj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdu', 'Wadjigu', NULL, 733.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadjigu', [Definition] = NULL, [SortOrder] = 733.20 WHERE [Code] = 'wdu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrx', 'Wae Rana', NULL, 733.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wae Rana', [Definition] = NULL, [SortOrder] = 733.30 WHERE [Code] = 'wrx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waj', 'Waffa', NULL, 733.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waffa', [Definition] = NULL, [SortOrder] = 733.40 WHERE [Code] = 'waj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgb', 'Wagawaga', NULL, 733.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagawaga', [Definition] = NULL, [SortOrder] = 733.50 WHERE [Code] = 'wgb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wga', 'Wagaya', NULL, 733.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagaya', [Definition] = NULL, [SortOrder] = 733.60 WHERE [Code] = 'wga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbr', 'Wagdi', NULL, 733.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagdi', [Definition] = NULL, [SortOrder] = 733.70 WHERE [Code] = 'wbr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fad', 'Wagi', NULL, 733.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagi', [Definition] = NULL, [SortOrder] = 733.80 WHERE [Code] = 'fad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waq', 'Wagiman', NULL, 733.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagiman', [Definition] = NULL, [SortOrder] = 733.90 WHERE [Code] = 'waq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'whu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('whu', 'Wahau Kayan', NULL, 734.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wahau Kayan', [Definition] = NULL, [SortOrder] = 734.00 WHERE [Code] = 'whu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'whk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('whk', 'Wahau Kenyah', NULL, 734.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wahau Kenyah', [Definition] = NULL, [SortOrder] = 734.10 WHERE [Code] = 'whk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgi', 'Wahgi', NULL, 734.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wahgi', [Definition] = NULL, [SortOrder] = 734.20 WHERE [Code] = 'wgi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbk', 'Waigali', NULL, 734.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waigali', [Definition] = NULL, [SortOrder] = 734.30 WHERE [Code] = 'wbk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgo', 'Waigeo', NULL, 734.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waigeo', [Definition] = NULL, [SortOrder] = 734.40 WHERE [Code] = 'wgo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlk', 'Wailaki', NULL, 734.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wailaki', [Definition] = NULL, [SortOrder] = 734.50 WHERE [Code] = 'wlk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlr', 'Wailapa', NULL, 734.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wailapa', [Definition] = NULL, [SortOrder] = 734.60 WHERE [Code] = 'wlr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rro', 'Waima', NULL, 734.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waima', [Definition] = NULL, [SortOrder] = 734.70 WHERE [Code] = 'rro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmh', 'Waima''a', NULL, 734.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waima''a', [Definition] = NULL, [SortOrder] = 734.80 WHERE [Code] = 'wmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bao', 'Waimaha', NULL, 734.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waimaha', [Definition] = NULL, [SortOrder] = 734.90 WHERE [Code] = 'bao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atr', 'Waimiri-Atroari', NULL, 735.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waimiri-Atroari', [Definition] = NULL, [SortOrder] = 735.00 WHERE [Code] = 'atr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wli', 'Waioli', NULL, 735.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waioli', [Definition] = NULL, [SortOrder] = 735.10 WHERE [Code] = 'wli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waw', 'Waiwai', NULL, 735.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waiwai', [Definition] = NULL, [SortOrder] = 735.20 WHERE [Code] = 'waw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wja', 'Waja', NULL, 735.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waja', [Definition] = NULL, [SortOrder] = 735.30 WHERE [Code] = 'wja' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbv', 'Wajarri', NULL, 735.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wajarri', [Definition] = NULL, [SortOrder] = 735.40 WHERE [Code] = 'wbv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwj', 'Wajuk', NULL, 735.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wajuk', [Definition] = NULL, [SortOrder] = 735.50 WHERE [Code] = 'xwj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wav', 'Waka', NULL, 735.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waka', [Definition] = NULL, [SortOrder] = 735.60 WHERE [Code] = 'wav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wwb', 'Wakabunga', NULL, 735.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakabunga', [Definition] = NULL, [SortOrder] = 735.70 WHERE [Code] = 'wwb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkw', 'Wakawaka', NULL, 735.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakawaka', [Definition] = NULL, [SortOrder] = 735.80 WHERE [Code] = 'wkw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkd', 'Wakde', NULL, 735.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakde', [Definition] = NULL, [SortOrder] = 735.90 WHERE [Code] = 'wkd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbl', 'Wakhi', NULL, 736.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakhi', [Definition] = NULL, [SortOrder] = 736.00 WHERE [Code] = 'wbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waf', 'Wakoná', NULL, 736.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakoná', [Definition] = NULL, [SortOrder] = 736.10 WHERE [Code] = 'waf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgl', 'Wala', NULL, 736.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wala', [Definition] = NULL, [SortOrder] = 736.20 WHERE [Code] = 'lgl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlw', 'Walak', NULL, 736.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walak', [Definition] = NULL, [SortOrder] = 736.30 WHERE [Code] = 'wlw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlw', 'Walangama', NULL, 736.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walangama', [Definition] = NULL, [SortOrder] = 736.40 WHERE [Code] = 'nlw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlx', 'Wali (Ghana)', NULL, 736.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wali (Ghana)', [Definition] = NULL, [SortOrder] = 736.50 WHERE [Code] = 'wlx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wll', 'Wali (Sudan)', NULL, 736.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wali (Sudan)', [Definition] = NULL, [SortOrder] = 736.60 WHERE [Code] = 'wll' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wly', 'Waling', NULL, 736.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waling', [Definition] = NULL, [SortOrder] = 736.70 WHERE [Code] = 'wly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wla', 'Walio', NULL, 736.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walio', [Definition] = NULL, [SortOrder] = 736.80 WHERE [Code] = 'wla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waa', 'Walla Walla', NULL, 736.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walla Walla', [Definition] = NULL, [SortOrder] = 736.90 WHERE [Code] = 'waa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wls', 'Wallisian', NULL, 737.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wallisian', [Definition] = NULL, [SortOrder] = 737.00 WHERE [Code] = 'wls' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wln', 'Walloon', NULL, 737.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walloon', [Definition] = NULL, [SortOrder] = 737.10 WHERE [Code] = 'wln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmt', 'Walmajarri', NULL, 737.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walmajarri', [Definition] = NULL, [SortOrder] = 737.20 WHERE [Code] = 'wmt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wae', 'Walser', NULL, 737.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walser', [Definition] = NULL, [SortOrder] = 737.30 WHERE [Code] = 'wae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ola') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ola', 'Walungge', NULL, 737.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walungge', [Definition] = NULL, [SortOrder] = 737.40 WHERE [Code] = 'ola' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrb', 'Waluwarra', NULL, 737.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waluwarra', [Definition] = NULL, [SortOrder] = 737.50 WHERE [Code] = 'wrb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmc', 'Wamas', NULL, 737.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wamas', [Definition] = NULL, [SortOrder] = 737.60 WHERE [Code] = 'wmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmb', 'Wambaya', NULL, 737.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wambaya', [Definition] = NULL, [SortOrder] = 737.70 WHERE [Code] = 'wmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wms', 'Wambon', NULL, 737.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wambon', [Definition] = NULL, [SortOrder] = 737.80 WHERE [Code] = 'wms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wme', 'Wambule', NULL, 737.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wambule', [Definition] = NULL, [SortOrder] = 737.90 WHERE [Code] = 'wme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wad', 'Wamesa', NULL, 738.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wamesa', [Definition] = NULL, [SortOrder] = 738.00 WHERE [Code] = 'wad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cou', 'Wamey', NULL, 738.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wamey', [Definition] = NULL, [SortOrder] = 738.10 WHERE [Code] = 'cou' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmi', 'Wamin', NULL, 738.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wamin', [Definition] = NULL, [SortOrder] = 738.20 WHERE [Code] = 'wmi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wam', 'Wampanoag', NULL, 738.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wampanoag', [Definition] = NULL, [SortOrder] = 738.30 WHERE [Code] = 'wam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbq', 'Wampar', NULL, 738.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wampar', [Definition] = NULL, [SortOrder] = 738.40 WHERE [Code] = 'lbq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waz', 'Wampur', NULL, 738.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wampur', [Definition] = NULL, [SortOrder] = 738.50 WHERE [Code] = 'waz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wan', 'Wan', NULL, 738.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wan', [Definition] = NULL, [SortOrder] = 738.60 WHERE [Code] = 'wan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnb', 'Wanambre', NULL, 738.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanambre', [Definition] = NULL, [SortOrder] = 738.70 WHERE [Code] = 'wnb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnp', 'Wanap', NULL, 738.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanap', [Definition] = NULL, [SortOrder] = 738.80 WHERE [Code] = 'wnp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnp', 'Wancho Naga', NULL, 738.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wancho Naga', [Definition] = NULL, [SortOrder] = 738.90 WHERE [Code] = 'nnp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbh', 'Wanda', NULL, 739.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanda', [Definition] = NULL, [SortOrder] = 739.00 WHERE [Code] = 'wbh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfi', 'Wandala', NULL, 739.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wandala', [Definition] = NULL, [SortOrder] = 739.10 WHERE [Code] = 'mfi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnd', 'Wandarang', NULL, 739.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wandarang', [Definition] = NULL, [SortOrder] = 739.20 WHERE [Code] = 'wnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdd', 'Wandji', NULL, 739.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wandji', [Definition] = NULL, [SortOrder] = 739.30 WHERE [Code] = 'wdd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hwa', 'Wané', NULL, 739.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wané', [Definition] = NULL, [SortOrder] = 739.40 WHERE [Code] = 'hwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wne', 'Waneci', NULL, 739.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waneci', [Definition] = NULL, [SortOrder] = 739.50 WHERE [Code] = 'wne' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwg', 'Wanga', NULL, 739.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanga', [Definition] = NULL, [SortOrder] = 739.60 WHERE [Code] = 'lwg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyb', 'Wangaaybuwan-Ngiyambaa', NULL, 739.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wangaaybuwan-Ngiyambaa', [Definition] = NULL, [SortOrder] = 739.70 WHERE [Code] = 'wyb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnm', 'Wanggamala', NULL, 739.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanggamala', [Definition] = NULL, [SortOrder] = 739.80 WHERE [Code] = 'wnm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wng', 'Wanggom', NULL, 739.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanggom', [Definition] = NULL, [SortOrder] = 739.90 WHERE [Code] = 'wng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgg', 'Wangkangurru', NULL, 740.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wangkangurru', [Definition] = NULL, [SortOrder] = 740.00 WHERE [Code] = 'wgg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wky', 'Wangkayutyuru', NULL, 740.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wangkayutyuru', [Definition] = NULL, [SortOrder] = 740.10 WHERE [Code] = 'wky' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwk', 'Wangkumara', NULL, 740.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wangkumara', [Definition] = NULL, [SortOrder] = 740.20 WHERE [Code] = 'xwk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jub', 'Wannu', NULL, 740.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wannu', [Definition] = NULL, [SortOrder] = 740.30 WHERE [Code] = 'jub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wno', 'Wano', NULL, 740.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wano', [Definition] = NULL, [SortOrder] = 740.40 WHERE [Code] = 'wno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnc', 'Wantoat', NULL, 740.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wantoat', [Definition] = NULL, [SortOrder] = 740.50 WHERE [Code] = 'wnc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnk', 'Wanukaka', NULL, 740.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanukaka', [Definition] = NULL, [SortOrder] = 740.60 WHERE [Code] = 'wnk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wny', 'Wanyi', NULL, 740.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanyi', [Definition] = NULL, [SortOrder] = 740.70 WHERE [Code] = 'wny' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auc', 'Waorani', NULL, 740.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waorani', [Definition] = NULL, [SortOrder] = 740.80 WHERE [Code] = 'auc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juk', 'Wapan', NULL, 740.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wapan', [Definition] = NULL, [SortOrder] = 740.90 WHERE [Code] = 'juk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juw', 'Wãpha', NULL, 741.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wãpha', [Definition] = NULL, [SortOrder] = 741.00 WHERE [Code] = 'juw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wap', 'Wapishana', NULL, 741.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wapishana', [Definition] = NULL, [SortOrder] = 741.10 WHERE [Code] = 'wap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wao', 'Wappo', NULL, 741.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wappo', [Definition] = NULL, [SortOrder] = 741.20 WHERE [Code] = 'wao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aml', 'War-Jaintia', NULL, 741.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'War-Jaintia', [Definition] = NULL, [SortOrder] = 741.30 WHERE [Code] = 'aml' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbf', 'Wara', NULL, 741.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wara', [Definition] = NULL, [SortOrder] = 741.40 WHERE [Code] = 'wbf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tci', 'Wára', NULL, 741.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wára', [Definition] = NULL, [SortOrder] = 741.50 WHERE [Code] = 'tci' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wba', 'Warao', NULL, 741.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warao', [Definition] = NULL, [SortOrder] = 741.60 WHERE [Code] = 'wba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrz', 'Waray (Australia)', NULL, 741.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waray (Australia)', [Definition] = NULL, [SortOrder] = 741.70 WHERE [Code] = 'wrz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'war') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('war', 'Waray (Philippines)', NULL, 741.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waray (Philippines)', [Definition] = NULL, [SortOrder] = 741.80 WHERE [Code] = 'war' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrr', 'Wardaman', NULL, 741.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wardaman', [Definition] = NULL, [SortOrder] = 741.90 WHERE [Code] = 'wrr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wxw', 'Wardandi', NULL, 742.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wardandi', [Definition] = NULL, [SortOrder] = 742.00 WHERE [Code] = 'wxw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsa', 'Warembori', NULL, 742.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warembori', [Definition] = NULL, [SortOrder] = 742.10 WHERE [Code] = 'wsa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wai', 'Wares', NULL, 742.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wares', [Definition] = NULL, [SortOrder] = 742.20 WHERE [Code] = 'wai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrs', 'Waris', NULL, 742.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waris', [Definition] = NULL, [SortOrder] = 742.30 WHERE [Code] = 'wrs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbe', 'Waritai', NULL, 742.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waritai', [Definition] = NULL, [SortOrder] = 742.40 WHERE [Code] = 'wbe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wri', 'Wariyangga', NULL, 742.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wariyangga', [Definition] = NULL, [SortOrder] = 742.50 WHERE [Code] = 'wri' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wji', 'Warji', NULL, 742.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warji', [Definition] = NULL, [SortOrder] = 742.60 WHERE [Code] = 'wji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgv', 'Warkay-Bipim', NULL, 742.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warkay-Bipim', [Definition] = NULL, [SortOrder] = 742.70 WHERE [Code] = 'bgv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrl', 'Warlmanpa', NULL, 742.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warlmanpa', [Definition] = NULL, [SortOrder] = 742.80 WHERE [Code] = 'wrl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbp', 'Warlpiri', NULL, 742.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warlpiri', [Definition] = NULL, [SortOrder] = 742.90 WHERE [Code] = 'wbp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrn', 'Warnang', NULL, 743.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warnang', [Definition] = NULL, [SortOrder] = 743.00 WHERE [Code] = 'wrn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbt', 'Warnman', NULL, 743.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warnman', [Definition] = NULL, [SortOrder] = 743.10 WHERE [Code] = 'wbt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrp', 'Waropen', NULL, 743.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waropen', [Definition] = NULL, [SortOrder] = 743.20 WHERE [Code] = 'wrp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgy', 'Warrgamay', NULL, 743.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warrgamay', [Definition] = NULL, [SortOrder] = 743.30 WHERE [Code] = 'wgy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wwr', 'Warrwa', NULL, 743.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warrwa', [Definition] = NULL, [SortOrder] = 743.40 WHERE [Code] = 'wwr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wru', 'Waru', NULL, 743.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waru', [Definition] = NULL, [SortOrder] = 743.50 WHERE [Code] = 'wru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrm', 'Warumungu', NULL, 743.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warumungu', [Definition] = NULL, [SortOrder] = 743.60 WHERE [Code] = 'wrm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrv', 'Waruna', NULL, 743.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waruna', [Definition] = NULL, [SortOrder] = 743.70 WHERE [Code] = 'wrv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrg', 'Warungu', NULL, 743.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warungu', [Definition] = NULL, [SortOrder] = 743.80 WHERE [Code] = 'wrg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrw', 'Warwar Feni', NULL, 743.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warwar Feni', [Definition] = NULL, [SortOrder] = 743.90 WHERE [Code] = 'hrw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wss', 'Wasa', NULL, 744.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wasa', [Definition] = NULL, [SortOrder] = 744.00 WHERE [Code] = 'wss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wac', 'Wasco-Wishram', NULL, 744.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wasco-Wishram', [Definition] = NULL, [SortOrder] = 744.10 WHERE [Code] = 'wac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsp', 'Wasembo', NULL, 744.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wasembo', [Definition] = NULL, [SortOrder] = 744.20 WHERE [Code] = 'gsp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'was') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('was', 'Washo', NULL, 744.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Washo', [Definition] = NULL, [SortOrder] = 744.30 WHERE [Code] = 'was' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsk', 'Waskia', NULL, 744.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waskia', [Definition] = NULL, [SortOrder] = 744.40 WHERE [Code] = 'wsk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsu', 'Wasu', NULL, 744.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wasu', [Definition] = NULL, [SortOrder] = 744.50 WHERE [Code] = 'wsu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wtk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wtk', 'Watakataui', NULL, 744.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Watakataui', [Definition] = NULL, [SortOrder] = 744.60 WHERE [Code] = 'wtk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wax', 'Watam', NULL, 744.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Watam', [Definition] = NULL, [SortOrder] = 744.70 WHERE [Code] = 'wax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wth', 'Wathawurrung', NULL, 744.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wathawurrung', [Definition] = NULL, [SortOrder] = 744.80 WHERE [Code] = 'wth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wtf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wtf', 'Watiwa', NULL, 744.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Watiwa', [Definition] = NULL, [SortOrder] = 744.90 WHERE [Code] = 'wtf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wah', 'Watubela', NULL, 745.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Watubela', [Definition] = NULL, [SortOrder] = 745.00 WHERE [Code] = 'wah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kop', 'Waube', NULL, 745.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waube', [Definition] = NULL, [SortOrder] = 745.10 WHERE [Code] = 'kop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wau', 'Waurá', NULL, 745.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waurá', [Definition] = NULL, [SortOrder] = 745.20 WHERE [Code] = 'wau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wuy', 'Wauyai', NULL, 745.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wauyai', [Definition] = NULL, [SortOrder] = 745.30 WHERE [Code] = 'wuy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'www') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('www', 'Wawa', NULL, 745.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wawa', [Definition] = NULL, [SortOrder] = 745.40 WHERE [Code] = 'www' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wow', 'Wawonii', NULL, 745.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wawonii', [Definition] = NULL, [SortOrder] = 745.50 WHERE [Code] = 'wow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wxa', 'Waxianghua', NULL, 745.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waxianghua', [Definition] = NULL, [SortOrder] = 745.60 WHERE [Code] = 'wxa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oym', 'Wayampi', NULL, 745.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayampi', [Definition] = NULL, [SortOrder] = 745.70 WHERE [Code] = 'oym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'way') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('way', 'Wayana', NULL, 745.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayana', [Definition] = NULL, [SortOrder] = 745.80 WHERE [Code] = 'way' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctt', 'Wayanad Chetti', NULL, 745.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayanad Chetti', [Definition] = NULL, [SortOrder] = 745.90 WHERE [Code] = 'ctt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyr', 'Wayoró', NULL, 746.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayoró', [Definition] = NULL, [SortOrder] = 746.00 WHERE [Code] = 'wyr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vay', 'Wayu', NULL, 746.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayu', [Definition] = NULL, [SortOrder] = 746.10 WHERE [Code] = 'vay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guc', 'Wayuu', NULL, 746.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayuu', [Definition] = NULL, [SortOrder] = 746.20 WHERE [Code] = 'guc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wob', 'Wè Northern', NULL, 746.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wè Northern', [Definition] = NULL, [SortOrder] = 746.30 WHERE [Code] = 'wob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gxx', 'Wè Southern', NULL, 746.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wè Southern', [Definition] = NULL, [SortOrder] = 746.40 WHERE [Code] = 'gxx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wec', 'Wè Western', NULL, 746.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wè Western', [Definition] = NULL, [SortOrder] = 746.50 WHERE [Code] = 'wec' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wed', 'Wedau', NULL, 746.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wedau', [Definition] = NULL, [SortOrder] = 746.60 WHERE [Code] = 'wed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'weh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('weh', 'Weh', NULL, 746.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weh', [Definition] = NULL, [SortOrder] = 746.70 WHERE [Code] = 'weh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wew', 'Wejewa', NULL, 746.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wejewa', [Definition] = NULL, [SortOrder] = 746.80 WHERE [Code] = 'wew' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlh', 'Welaun', NULL, 746.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Welaun', [Definition] = NULL, [SortOrder] = 746.90 WHERE [Code] = 'wlh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klh', 'Weliki', NULL, 747.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weliki', [Definition] = NULL, [SortOrder] = 747.00 WHERE [Code] = 'klh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cym', 'Welsh', NULL, 747.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Welsh', [Definition] = NULL, [SortOrder] = 747.10 WHERE [Code] = 'cym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmw', 'Welsh Romani', NULL, 747.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Welsh Romani', [Definition] = NULL, [SortOrder] = 747.20 WHERE [Code] = 'rmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'weo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('weo', 'Wemale', NULL, 747.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wemale', [Definition] = NULL, [SortOrder] = 747.30 WHERE [Code] = 'weo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xww', 'Wemba Wemba', NULL, 747.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wemba Wemba', [Definition] = NULL, [SortOrder] = 747.40 WHERE [Code] = 'xww' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wem', 'Weme Gbe', NULL, 747.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weme Gbe', [Definition] = NULL, [SortOrder] = 747.50 WHERE [Code] = 'wem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdt', 'Wendat', NULL, 747.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wendat', [Definition] = NULL, [SortOrder] = 747.60 WHERE [Code] = 'wdt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'weg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('weg', 'Wergaia', NULL, 747.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wergaia', [Definition] = NULL, [SortOrder] = 747.70 WHERE [Code] = 'weg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wer', 'Weri', NULL, 747.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weri', [Definition] = NULL, [SortOrder] = 747.80 WHERE [Code] = 'wer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvw', 'Wersing', NULL, 747.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wersing', [Definition] = NULL, [SortOrder] = 747.90 WHERE [Code] = 'kvw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fbl', 'West Albay Bikol', NULL, 748.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Albay Bikol', [Definition] = NULL, [SortOrder] = 748.00 WHERE [Code] = 'fbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnd', 'West Ambae', NULL, 748.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Ambae', [Definition] = NULL, [SortOrder] = 748.10 WHERE [Code] = 'nnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbs', 'West Bengal Sign Language', NULL, 748.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Bengal Sign Language', [Definition] = NULL, [SortOrder] = 748.20 WHERE [Code] = 'wbs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbw', 'West Berawan', NULL, 748.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Berawan', [Definition] = NULL, [SortOrder] = 748.30 WHERE [Code] = 'zbw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbp', 'West Central Banda', NULL, 748.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Central Banda', [Definition] = NULL, [SortOrder] = 748.40 WHERE [Code] = 'bbp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaz', 'West Central Oromo', NULL, 748.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Central Oromo', [Definition] = NULL, [SortOrder] = 748.50 WHERE [Code] = 'gaz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdr', 'West Coast Bajau', NULL, 748.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Coast Bajau', [Definition] = NULL, [SortOrder] = 748.60 WHERE [Code] = 'bdr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drn', 'West Damar', NULL, 748.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Damar', [Definition] = NULL, [SortOrder] = 748.70 WHERE [Code] = 'drn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddi', 'West Goodenough', NULL, 748.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Goodenough', [Definition] = NULL, [SortOrder] = 748.80 WHERE [Code] = 'ddi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kew', 'West Kewa', NULL, 748.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Kewa', [Definition] = NULL, [SortOrder] = 748.90 WHERE [Code] = 'kew' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmj', 'West Lembata', NULL, 749.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Lembata', [Definition] = NULL, [SortOrder] = 749.00 WHERE [Code] = 'lmj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqs', 'West Makian', NULL, 749.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Makian', [Definition] = NULL, [SortOrder] = 749.10 WHERE [Code] = 'mqs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mss', 'West Masela', NULL, 749.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Masela', [Definition] = NULL, [SortOrder] = 749.20 WHERE [Code] = 'mss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txn', 'West Tarangan', NULL, 749.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Tarangan', [Definition] = NULL, [SortOrder] = 749.30 WHERE [Code] = 'txn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uve', 'West Uvean', NULL, 749.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Uvean', [Definition] = NULL, [SortOrder] = 749.40 WHERE [Code] = 'uve' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybe', 'West Yugur', NULL, 749.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Yugur', [Definition] = NULL, [SortOrder] = 749.50 WHERE [Code] = 'ybe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lia', 'West-Central Limba', NULL, 749.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West-Central Limba', [Definition] = NULL, [SortOrder] = 749.60 WHERE [Code] = 'lia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abe', 'Western Abnaki', NULL, 749.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Abnaki', [Definition] = NULL, [SortOrder] = 749.70 WHERE [Code] = 'abe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apw', 'Western Apache', NULL, 749.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Apache', [Definition] = NULL, [SortOrder] = 749.80 WHERE [Code] = 'apw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hyw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hyw', 'Western Armenian', NULL, 749.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Armenian', [Definition] = NULL, [SortOrder] = 749.90 WHERE [Code] = 'hyw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'are') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('are', 'Western Arrarnta', NULL, 750.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Arrarnta', [Definition] = NULL, [SortOrder] = 750.00 WHERE [Code] = 'are' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgn', 'Western Balochi', NULL, 750.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Balochi', [Definition] = NULL, [SortOrder] = 750.10 WHERE [Code] = 'bgn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnw', 'Western Bolivian Guaraní', NULL, 750.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Bolivian Guaraní', [Definition] = NULL, [SortOrder] = 750.20 WHERE [Code] = 'gnw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brv', 'Western Bru', NULL, 750.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Bru', [Definition] = NULL, [SortOrder] = 750.30 WHERE [Code] = 'brv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbb', 'Western Bukidnon Manobo', NULL, 750.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Bukidnon Manobo', [Definition] = NULL, [SortOrder] = 750.40 WHERE [Code] = 'mbb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cja', 'Western Cham', NULL, 750.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Cham', [Definition] = NULL, [SortOrder] = 750.50 WHERE [Code] = 'cja' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnw', 'Western Dani', NULL, 750.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Dani', [Definition] = NULL, [SortOrder] = 750.60 WHERE [Code] = 'dnw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azn', 'Western Durango Nahuatl', NULL, 750.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Durango Nahuatl', [Definition] = NULL, [SortOrder] = 750.70 WHERE [Code] = 'azn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyy', 'Western Fijian', NULL, 750.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Fijian', [Definition] = NULL, [SortOrder] = 750.80 WHERE [Code] = 'wyy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fry', 'Western Frisian', NULL, 750.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Frisian', [Definition] = NULL, [SortOrder] = 750.90 WHERE [Code] = 'fry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctp', 'Western Highland Chatino', NULL, 751.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Highland Chatino', [Definition] = NULL, [SortOrder] = 751.00 WHERE [Code] = 'ctp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pua', 'Western Highland Purepecha', NULL, 751.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Highland Purepecha', [Definition] = NULL, [SortOrder] = 751.10 WHERE [Code] = 'pua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhw', 'Western Huasteca Nahuatl', NULL, 751.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 751.20 WHERE [Code] = 'nhw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmx', 'Western Juxtlahuaca Mixtec', NULL, 751.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Juxtlahuaca Mixtec', [Definition] = NULL, [SortOrder] = 751.30 WHERE [Code] = 'jmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knj', 'Western Kanjobal', NULL, 751.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Kanjobal', [Definition] = NULL, [SortOrder] = 751.40 WHERE [Code] = 'knj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kza', 'Western Karaboro', NULL, 751.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Karaboro', [Definition] = NULL, [SortOrder] = 751.50 WHERE [Code] = 'kza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuf', 'Western Katu', NULL, 751.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Katu', [Definition] = NULL, [SortOrder] = 751.60 WHERE [Code] = 'kuf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyu', 'Western Kayah', NULL, 751.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Kayah', [Definition] = NULL, [SortOrder] = 751.70 WHERE [Code] = 'kyu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjq', 'Western Keres', NULL, 751.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Keres', [Definition] = NULL, [SortOrder] = 751.80 WHERE [Code] = 'kjq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krw', 'Western Krahn', NULL, 751.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Krahn', [Definition] = NULL, [SortOrder] = 751.90 WHERE [Code] = 'krw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywl', 'Western Lalu', NULL, 752.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Lalu', [Definition] = NULL, [SortOrder] = 752.00 WHERE [Code] = 'ywl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcp', 'Western Lawa', NULL, 752.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Lawa', [Definition] = NULL, [SortOrder] = 752.10 WHERE [Code] = 'lcp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrd', 'Western Magar', NULL, 752.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Magar', [Definition] = NULL, [SortOrder] = 752.20 WHERE [Code] = 'mrd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlq', 'Western Maninkakan', NULL, 752.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Maninkakan', [Definition] = NULL, [SortOrder] = 752.30 WHERE [Code] = 'mlq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrj', 'Western Mari', NULL, 752.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Mari', [Definition] = NULL, [SortOrder] = 752.40 WHERE [Code] = 'mrj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmw', 'Western Mashan Hmong', NULL, 752.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Mashan Hmong', [Definition] = NULL, [SortOrder] = 752.50 WHERE [Code] = 'hmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raf', 'Western Meohang', NULL, 752.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Meohang', [Definition] = NULL, [SortOrder] = 752.60 WHERE [Code] = 'raf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmg', 'Western Minyag', NULL, 752.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Minyag', [Definition] = NULL, [SortOrder] = 752.70 WHERE [Code] = 'wmg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mut', 'Western Muria', NULL, 752.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Muria', [Definition] = NULL, [SortOrder] = 752.80 WHERE [Code] = 'mut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amw', 'Western Neo-Aramaic', NULL, 752.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Neo-Aramaic', [Definition] = NULL, [SortOrder] = 752.90 WHERE [Code] = 'amw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuh', 'Western Niger Fulfulde', NULL, 753.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Niger Fulfulde', [Definition] = NULL, [SortOrder] = 753.00 WHERE [Code] = 'fuh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojw', 'Western Ojibwa', NULL, 753.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Ojibwa', [Definition] = NULL, [SortOrder] = 753.10 WHERE [Code] = 'ojw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnb', 'Western Panjabi', NULL, 753.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Panjabi', [Definition] = NULL, [SortOrder] = 753.20 WHERE [Code] = 'pnb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjl', 'Western Parbate Kham', NULL, 753.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Parbate Kham', [Definition] = NULL, [SortOrder] = 753.30 WHERE [Code] = 'kjl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pne', 'Western Penan', NULL, 753.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Penan', [Definition] = NULL, [SortOrder] = 753.40 WHERE [Code] = 'pne' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssl', 'Western Sisaala', NULL, 753.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Sisaala', [Definition] = NULL, [SortOrder] = 753.50 WHERE [Code] = 'ssl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suc', 'Western Subanon', NULL, 753.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Subanon', [Definition] = NULL, [SortOrder] = 753.60 WHERE [Code] = 'suc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdg', 'Western Tamang', NULL, 753.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Tamang', [Definition] = NULL, [SortOrder] = 753.70 WHERE [Code] = 'tdg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twb', 'Western Tawbuid', NULL, 753.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Tawbuid', [Definition] = NULL, [SortOrder] = 753.80 WHERE [Code] = 'twb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zab', 'Western Tlacolula Valley Zapotec', NULL, 753.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Tlacolula Valley Zapotec', [Definition] = NULL, [SortOrder] = 753.90 WHERE [Code] = 'zab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqt', 'Western Totonac', NULL, 754.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Totonac', [Definition] = NULL, [SortOrder] = 754.00 WHERE [Code] = 'tqt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnb', 'Western Tunebo', NULL, 754.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Tunebo', [Definition] = NULL, [SortOrder] = 754.10 WHERE [Code] = 'tnb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmr', 'Western Xiangxi Miao', NULL, 754.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Xiangxi Miao', [Definition] = NULL, [SortOrder] = 754.20 WHERE [Code] = 'mmr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwl', 'Western Xwla Gbe', NULL, 754.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Xwla Gbe', [Definition] = NULL, [SortOrder] = 754.30 WHERE [Code] = 'xwl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yih', 'Western Yiddish', NULL, 754.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Yiddish', [Definition] = NULL, [SortOrder] = 754.40 WHERE [Code] = 'yih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wep', 'Westphalien', NULL, 754.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Westphalien', [Definition] = NULL, [SortOrder] = 754.50 WHERE [Code] = 'wep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wwo', 'Wetamut', NULL, 754.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wetamut', [Definition] = NULL, [SortOrder] = 754.60 WHERE [Code] = 'wwo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wea', 'Wewaw', NULL, 754.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wewaw', [Definition] = NULL, [SortOrder] = 754.70 WHERE [Code] = 'wea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woy', 'Weyto', NULL, 754.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weyto', [Definition] = NULL, [SortOrder] = 754.80 WHERE [Code] = 'woy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giw', 'White Gelao', NULL, 754.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'White Gelao', [Definition] = NULL, [SortOrder] = 754.90 WHERE [Code] = 'giw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwh', 'White Lachi', NULL, 755.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'White Lachi', [Definition] = NULL, [SortOrder] = 755.00 WHERE [Code] = 'lwh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnp', 'Whitesands', NULL, 755.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Whitesands', [Definition] = NULL, [SortOrder] = 755.10 WHERE [Code] = 'tnp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tua', 'Wiarumus', NULL, 755.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiarumus', [Definition] = NULL, [SortOrder] = 755.20 WHERE [Code] = 'tua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzh', 'Wichí Lhamtés Güisnay', NULL, 755.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wichí Lhamtés Güisnay', [Definition] = NULL, [SortOrder] = 755.30 WHERE [Code] = 'mzh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtp', 'Wichí Lhamtés Nocten', NULL, 755.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wichí Lhamtés Nocten', [Definition] = NULL, [SortOrder] = 755.40 WHERE [Code] = 'mtp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlv', 'Wichí Lhamtés Vejoz', NULL, 755.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wichí Lhamtés Vejoz', [Definition] = NULL, [SortOrder] = 755.50 WHERE [Code] = 'wlv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wic', 'Wichita', NULL, 755.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wichita', [Definition] = NULL, [SortOrder] = 755.60 WHERE [Code] = 'wic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wig', 'Wik Ngathan', NULL, 755.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik Ngathan', [Definition] = NULL, [SortOrder] = 755.70 WHERE [Code] = 'wig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wie', 'Wik-Epa', NULL, 755.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Epa', [Definition] = NULL, [SortOrder] = 755.80 WHERE [Code] = 'wie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wij', 'Wik-Iiyanh', NULL, 755.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Iiyanh', [Definition] = NULL, [SortOrder] = 755.90 WHERE [Code] = 'wij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wif', 'Wik-Keyangan', NULL, 756.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Keyangan', [Definition] = NULL, [SortOrder] = 756.00 WHERE [Code] = 'wif' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wih', 'Wik-Me''anha', NULL, 756.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Me''anha', [Definition] = NULL, [SortOrder] = 756.10 WHERE [Code] = 'wih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wim', 'Wik-Mungkan', NULL, 756.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Mungkan', [Definition] = NULL, [SortOrder] = 756.20 WHERE [Code] = 'wim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wik', 'Wikalkan', NULL, 756.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wikalkan', [Definition] = NULL, [SortOrder] = 756.30 WHERE [Code] = 'wik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wua', 'Wikngenchera', NULL, 756.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wikngenchera', [Definition] = NULL, [SortOrder] = 756.40 WHERE [Code] = 'wua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wil', 'Wilawila', NULL, 756.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wilawila', [Definition] = NULL, [SortOrder] = 756.50 WHERE [Code] = 'wil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnw', 'Wintu', NULL, 756.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wintu', [Definition] = NULL, [SortOrder] = 756.60 WHERE [Code] = 'wnw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kst', 'Winyé', NULL, 756.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Winyé', [Definition] = NULL, [SortOrder] = 756.70 WHERE [Code] = 'kst' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdr', 'Wipi', NULL, 756.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wipi', [Definition] = NULL, [SortOrder] = 756.80 WHERE [Code] = 'gdr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrh', 'Wiradjuri', NULL, 756.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiradjuri', [Definition] = NULL, [SortOrder] = 756.90 WHERE [Code] = 'wrh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wir', 'Wiraféd', NULL, 757.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiraféd', [Definition] = NULL, [SortOrder] = 757.00 WHERE [Code] = 'wir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgu', 'Wirangu', NULL, 757.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wirangu', [Definition] = NULL, [SortOrder] = 757.10 WHERE [Code] = 'wgu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wiu', 'Wiru', NULL, 757.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiru', [Definition] = NULL, [SortOrder] = 757.20 WHERE [Code] = 'wiu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wiy', 'Wiyot', NULL, 757.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiyot', [Definition] = NULL, [SortOrder] = 757.30 WHERE [Code] = 'wiy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwc', 'Woccon', NULL, 757.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woccon', [Definition] = NULL, [SortOrder] = 757.40 WHERE [Code] = 'xwc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wog', 'Wogamusin', NULL, 757.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wogamusin', [Definition] = NULL, [SortOrder] = 757.50 WHERE [Code] = 'wog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woc', 'Wogeo', NULL, 757.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wogeo', [Definition] = NULL, [SortOrder] = 757.60 WHERE [Code] = 'woc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbw', 'Woi', NULL, 757.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woi', [Definition] = NULL, [SortOrder] = 757.70 WHERE [Code] = 'wbw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyi', 'Woiwurrung', NULL, 757.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woiwurrung', [Definition] = NULL, [SortOrder] = 757.80 WHERE [Code] = 'wyi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jod', 'Wojenaka', NULL, 757.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wojenaka', [Definition] = NULL, [SortOrder] = 757.90 WHERE [Code] = 'jod' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wle', 'Wolane', NULL, 758.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolane', [Definition] = NULL, [SortOrder] = 758.00 WHERE [Code] = 'wle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wod', 'Wolani', NULL, 758.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolani', [Definition] = NULL, [SortOrder] = 758.10 WHERE [Code] = 'wod' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wal', 'Wolaytta', NULL, 758.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolaytta', [Definition] = NULL, [SortOrder] = 758.20 WHERE [Code] = 'wal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woe', 'Woleaian', NULL, 758.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woleaian', [Definition] = NULL, [SortOrder] = 758.30 WHERE [Code] = 'woe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlo', 'Wolio', NULL, 758.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolio', [Definition] = NULL, [SortOrder] = 758.40 WHERE [Code] = 'wlo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wol', 'Wolof', NULL, 758.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolof', [Definition] = NULL, [SortOrder] = 758.50 WHERE [Code] = 'wol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wom', 'Wom (Nigeria)', NULL, 758.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wom (Nigeria)', [Definition] = NULL, [SortOrder] = 758.60 WHERE [Code] = 'wom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmo', 'Wom (Papua New Guinea)', NULL, 758.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wom (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 758.70 WHERE [Code] = 'wmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmx', 'Womo', NULL, 758.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Womo', [Definition] = NULL, [SortOrder] = 758.80 WHERE [Code] = 'wmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'won') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('won', 'Wongo', NULL, 758.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wongo', [Definition] = NULL, [SortOrder] = 758.90 WHERE [Code] = 'won' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwd', 'Woods Cree', NULL, 759.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woods Cree', [Definition] = NULL, [SortOrder] = 759.00 WHERE [Code] = 'cwd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wor', 'Woria', NULL, 759.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woria', [Definition] = NULL, [SortOrder] = 759.10 WHERE [Code] = 'wor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kda', 'Worimi', NULL, 759.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Worimi', [Definition] = NULL, [SortOrder] = 759.20 WHERE [Code] = 'kda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jud', 'Worodougou', NULL, 759.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Worodougou', [Definition] = NULL, [SortOrder] = 759.30 WHERE [Code] = 'jud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wro', 'Worrorra', NULL, 759.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Worrorra', [Definition] = NULL, [SortOrder] = 759.40 WHERE [Code] = 'wro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsv', 'Wotapuri-Katarqalai', NULL, 759.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wotapuri-Katarqalai', [Definition] = NULL, [SortOrder] = 759.50 WHERE [Code] = 'wsv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwt', 'Wotjobaluk', NULL, 759.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wotjobaluk', [Definition] = NULL, [SortOrder] = 759.60 WHERE [Code] = 'xwt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wtw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wtw', 'Wotu', NULL, 759.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wotu', [Definition] = NULL, [SortOrder] = 759.70 WHERE [Code] = 'wtw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noa', 'Woun Meu', NULL, 759.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woun Meu', [Definition] = NULL, [SortOrder] = 759.80 WHERE [Code] = 'noa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwo', 'Written Oirat', NULL, 759.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Written Oirat', [Definition] = NULL, [SortOrder] = 759.90 WHERE [Code] = 'xwo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wuu', 'Wu Chinese', NULL, 760.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wu Chinese', [Definition] = NULL, [SortOrder] = 760.00 WHERE [Code] = 'wuu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywq', 'Wuding-Luquan Yi', NULL, 760.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wuding-Luquan Yi', [Definition] = NULL, [SortOrder] = 760.10 WHERE [Code] = 'ywq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wud', 'Wudu', NULL, 760.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wudu', [Definition] = NULL, [SortOrder] = 760.20 WHERE [Code] = 'wud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlu', 'Wuliwuli', NULL, 760.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wuliwuli', [Definition] = NULL, [SortOrder] = 760.30 WHERE [Code] = 'wlu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wux', 'Wulna', NULL, 760.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wulna', [Definition] = NULL, [SortOrder] = 760.40 WHERE [Code] = 'wux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqm', 'Wumboko', NULL, 760.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wumboko', [Definition] = NULL, [SortOrder] = 760.50 WHERE [Code] = 'bqm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wum', 'Wumbvu', NULL, 760.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wumbvu', [Definition] = NULL, [SortOrder] = 760.60 WHERE [Code] = 'wum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywu', 'Wumeng Nasu', NULL, 760.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wumeng Nasu', [Definition] = NULL, [SortOrder] = 760.70 WHERE [Code] = 'ywu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwn', 'Wunai Bunu', NULL, 760.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wunai Bunu', [Definition] = NULL, [SortOrder] = 760.80 WHERE [Code] = 'bwn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wub', 'Wunambal', NULL, 760.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wunambal', [Definition] = NULL, [SortOrder] = 760.90 WHERE [Code] = 'wub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnn', 'Wunumara', NULL, 761.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wunumara', [Definition] = NULL, [SortOrder] = 761.00 WHERE [Code] = 'wnn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wur', 'Wurrugu', NULL, 761.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wurrugu', [Definition] = NULL, [SortOrder] = 761.10 WHERE [Code] = 'wur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yig', 'Wusa Nasu', NULL, 761.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wusa Nasu', [Definition] = NULL, [SortOrder] = 761.20 WHERE [Code] = 'yig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bse', 'Wushi', NULL, 761.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wushi', [Definition] = NULL, [SortOrder] = 761.30 WHERE [Code] = 'bse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsi', 'Wusi', NULL, 761.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wusi', [Definition] = NULL, [SortOrder] = 761.40 WHERE [Code] = 'wsi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wut', 'Wutung', NULL, 761.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wutung', [Definition] = NULL, [SortOrder] = 761.50 WHERE [Code] = 'wut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wuh', 'Wutunhua', NULL, 761.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wutunhua', [Definition] = NULL, [SortOrder] = 761.60 WHERE [Code] = 'wuh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wuv', 'Wuvulu-Aua', NULL, 761.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wuvulu-Aua', [Definition] = NULL, [SortOrder] = 761.70 WHERE [Code] = 'wuv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udl', 'Wuzlam', NULL, 761.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wuzlam', [Definition] = NULL, [SortOrder] = 761.80 WHERE [Code] = 'udl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyn', 'Wyandot', NULL, 761.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wyandot', [Definition] = NULL, [SortOrder] = 761.90 WHERE [Code] = 'wyn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wym', 'Wymysorys', NULL, 762.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wymysorys', [Definition] = NULL, [SortOrder] = 762.00 WHERE [Code] = 'wym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kao', 'Xaasongaxango', NULL, 762.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xaasongaxango', [Definition] = NULL, [SortOrder] = 762.10 WHERE [Code] = 'kao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zax', 'Xadani Zapotec', NULL, 762.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xadani Zapotec', [Definition] = NULL, [SortOrder] = 762.20 WHERE [Code] = 'zax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkr', 'Xakriabá', NULL, 762.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xakriabá', [Definition] = NULL, [SortOrder] = 762.30 WHERE [Code] = 'xkr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xan', 'Xamtanga', NULL, 762.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xamtanga', [Definition] = NULL, [SortOrder] = 762.40 WHERE [Code] = 'xan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztg', 'Xanaguía Zapotec', NULL, 762.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xanaguía Zapotec', [Definition] = NULL, [SortOrder] = 762.50 WHERE [Code] = 'ztg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ane') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ane', 'Xârâcùù', NULL, 762.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xârâcùù', [Definition] = NULL, [SortOrder] = 762.60 WHERE [Code] = 'ane' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axx', 'Xârâgurè', NULL, 762.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xârâgurè', [Definition] = NULL, [SortOrder] = 762.70 WHERE [Code] = 'axx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xav', 'Xavánte', NULL, 762.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xavánte', [Definition] = NULL, [SortOrder] = 762.80 WHERE [Code] = 'xav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xer', 'Xerénte', NULL, 762.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xerénte', [Definition] = NULL, [SortOrder] = 762.90 WHERE [Code] = 'xer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xet', 'Xetá', NULL, 763.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xetá', [Definition] = NULL, [SortOrder] = 763.00 WHERE [Code] = 'xet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xho', 'Xhosa', NULL, 763.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xhosa', [Definition] = NULL, [SortOrder] = 763.10 WHERE [Code] = 'xho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsn', 'Xiang Chinese', NULL, 763.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xiang Chinese', [Definition] = NULL, [SortOrder] = 763.20 WHERE [Code] = 'hsn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjo', 'Xibe', NULL, 763.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xibe', [Definition] = NULL, [SortOrder] = 763.30 WHERE [Code] = 'sjo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'too') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('too', 'Xicotepec De Juárez Totonac', NULL, 763.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xicotepec De Juárez Totonac', [Definition] = NULL, [SortOrder] = 763.40 WHERE [Code] = 'too' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xin', 'Xinca', NULL, 763.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xinca', [Definition] = NULL, [SortOrder] = 763.50 WHERE [Code] = 'xin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asn', 'Xingú Asuriní', NULL, 763.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xingú Asuriní', [Definition] = NULL, [SortOrder] = 763.60 WHERE [Code] = 'asn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xiy', 'Xipaya', NULL, 763.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xipaya', [Definition] = NULL, [SortOrder] = 763.70 WHERE [Code] = 'xiy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xii', 'Xiri', NULL, 763.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xiri', [Definition] = NULL, [SortOrder] = 763.80 WHERE [Code] = 'xii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xir', 'Xiriâna', NULL, 763.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xiriâna', [Definition] = NULL, [SortOrder] = 763.90 WHERE [Code] = 'xir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywt', 'Xishanba Lalo', NULL, 764.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xishanba Lalo', [Definition] = NULL, [SortOrder] = 764.00 WHERE [Code] = 'ywt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xok', 'Xokleng', NULL, 764.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xokleng', [Definition] = NULL, [SortOrder] = 764.10 WHERE [Code] = 'xok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xoo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xoo', 'Xukurú', NULL, 764.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xukurú', [Definition] = NULL, [SortOrder] = 764.20 WHERE [Code] = 'xoo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwe', 'Xwela Gbe', NULL, 764.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xwela Gbe', [Definition] = NULL, [SortOrder] = 764.30 WHERE [Code] = 'xwe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muu', 'Yaaku', NULL, 764.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaaku', [Definition] = NULL, [SortOrder] = 764.40 WHERE [Code] = 'muu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybn', 'Yabaâna', NULL, 764.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabaâna', [Definition] = NULL, [SortOrder] = 764.50 WHERE [Code] = 'ybn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yar', 'Yabarana', NULL, 764.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabarana', [Definition] = NULL, [SortOrder] = 764.60 WHERE [Code] = 'yar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jae', 'Yabem', NULL, 764.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabem', [Definition] = NULL, [SortOrder] = 764.70 WHERE [Code] = 'jae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybm', 'Yaben', NULL, 764.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaben', [Definition] = NULL, [SortOrder] = 764.80 WHERE [Code] = 'ybm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybo', 'Yabong', NULL, 764.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabong', [Definition] = NULL, [SortOrder] = 764.90 WHERE [Code] = 'ybo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxy', 'Yabula Yabula', NULL, 765.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabula Yabula', [Definition] = NULL, [SortOrder] = 765.00 WHERE [Code] = 'yxy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekr', 'Yace', NULL, 765.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yace', [Definition] = NULL, [SortOrder] = 765.10 WHERE [Code] = 'ekr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rys', 'Yaeyama', NULL, 765.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaeyama', [Definition] = NULL, [SortOrder] = 765.20 WHERE [Code] = 'rys' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wfg', 'Yafi', NULL, 765.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yafi', [Definition] = NULL, [SortOrder] = 765.30 WHERE [Code] = 'wfg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxg', 'Yagara', NULL, 765.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagara', [Definition] = NULL, [SortOrder] = 765.40 WHERE [Code] = 'yxg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygr', 'Yagaria', NULL, 765.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagaria', [Definition] = NULL, [SortOrder] = 765.50 WHERE [Code] = 'ygr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yai', 'Yagnobi', NULL, 765.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagnobi', [Definition] = NULL, [SortOrder] = 765.60 WHERE [Code] = 'yai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygm', 'Yagomi', NULL, 765.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagomi', [Definition] = NULL, [SortOrder] = 765.70 WHERE [Code] = 'ygm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yad', 'Yagua', NULL, 765.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagua', [Definition] = NULL, [SortOrder] = 765.80 WHERE [Code] = 'yad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygw', 'Yagwoia', NULL, 765.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagwoia', [Definition] = NULL, [SortOrder] = 765.90 WHERE [Code] = 'ygw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ner') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ner', 'Yahadian', NULL, 766.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yahadian', [Definition] = NULL, [SortOrder] = 766.00 WHERE [Code] = 'ner' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rhp', 'Yahang', NULL, 766.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yahang', [Definition] = NULL, [SortOrder] = 766.10 WHERE [Code] = 'rhp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynu', 'Yahuna', NULL, 766.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yahuna', [Definition] = NULL, [SortOrder] = 766.20 WHERE [Code] = 'ynu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axk', 'Yaka (Central African Republic)', NULL, 766.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaka (Central African Republic)', [Definition] = NULL, [SortOrder] = 766.30 WHERE [Code] = 'axk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iyx', 'Yaka (Congo)', NULL, 766.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaka (Congo)', [Definition] = NULL, [SortOrder] = 766.40 WHERE [Code] = 'iyx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaf', 'Yaka (Democratic Republic of Congo)', NULL, 766.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaka (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 766.50 WHERE [Code] = 'yaf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykk', 'Yakaikeke', NULL, 766.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakaikeke', [Definition] = NULL, [SortOrder] = 766.60 WHERE [Code] = 'ykk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yak', 'Yakama', NULL, 766.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakama', [Definition] = NULL, [SortOrder] = 766.70 WHERE [Code] = 'yak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yka', 'Yakan', NULL, 766.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakan', [Definition] = NULL, [SortOrder] = 766.80 WHERE [Code] = 'yka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybh', 'Yakha', NULL, 766.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakha', [Definition] = NULL, [SortOrder] = 766.90 WHERE [Code] = 'ybh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yky', 'Yakoma', NULL, 767.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakoma', [Definition] = NULL, [SortOrder] = 767.00 WHERE [Code] = 'yky' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sah', 'Yakut', NULL, 767.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakut', [Definition] = NULL, [SortOrder] = 767.10 WHERE [Code] = 'sah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yba', 'Yala', NULL, 767.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yala', [Definition] = NULL, [SortOrder] = 767.20 WHERE [Code] = 'yba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jal', 'Yalahatan', NULL, 767.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalahatan', [Definition] = NULL, [SortOrder] = 767.30 WHERE [Code] = 'jal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyl', 'Yalakalore', NULL, 767.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalakalore', [Definition] = NULL, [SortOrder] = 767.40 WHERE [Code] = 'xyl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpu', 'Yalálag Zapotec', NULL, 767.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalálag Zapotec', [Definition] = NULL, [SortOrder] = 767.50 WHERE [Code] = 'zpu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylr', 'Yalarnnga', NULL, 767.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalarnnga', [Definition] = NULL, [SortOrder] = 767.60 WHERE [Code] = 'ylr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nce', 'Yale', NULL, 767.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yale', [Definition] = NULL, [SortOrder] = 767.70 WHERE [Code] = 'nce' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylb', 'Yaleba', NULL, 767.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaleba', [Definition] = NULL, [SortOrder] = 767.80 WHERE [Code] = 'ylb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yal', 'Yalunka', NULL, 767.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalunka', [Definition] = NULL, [SortOrder] = 767.90 WHERE [Code] = 'yal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yag', 'Yámana', NULL, 768.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yámana', [Definition] = NULL, [SortOrder] = 768.00 WHERE [Code] = 'yag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymp', 'Yamap', NULL, 768.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamap', [Definition] = NULL, [SortOrder] = 768.10 WHERE [Code] = 'ymp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yam', 'Yamba', NULL, 768.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamba', [Definition] = NULL, [SortOrder] = 768.20 WHERE [Code] = 'yam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymb', 'Yambes', NULL, 768.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yambes', [Definition] = NULL, [SortOrder] = 768.30 WHERE [Code] = 'ymb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yat', 'Yambeta', NULL, 768.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yambeta', [Definition] = NULL, [SortOrder] = 768.40 WHERE [Code] = 'yat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmd', 'Yamdena', NULL, 768.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamdena', [Definition] = NULL, [SortOrder] = 768.50 WHERE [Code] = 'jmd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yme', 'Yameo', NULL, 768.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yameo', [Definition] = NULL, [SortOrder] = 768.60 WHERE [Code] = 'yme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tao', 'Yami', NULL, 768.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yami', [Definition] = NULL, [SortOrder] = 768.70 WHERE [Code] = 'tao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaa', 'Yaminahua', NULL, 768.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaminahua', [Definition] = NULL, [SortOrder] = 768.80 WHERE [Code] = 'yaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymn', 'Yamna', NULL, 768.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamna', [Definition] = NULL, [SortOrder] = 768.90 WHERE [Code] = 'ymn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymg', 'Yamongeri', NULL, 769.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamongeri', [Definition] = NULL, [SortOrder] = 769.00 WHERE [Code] = 'ymg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybi', 'Yamphu', NULL, 769.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamphu', [Definition] = NULL, [SortOrder] = 769.10 WHERE [Code] = 'ybi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jay', 'Yan-nhangu', NULL, 769.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yan-nhangu', [Definition] = NULL, [SortOrder] = 769.20 WHERE [Code] = 'jay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yhs', 'Yan-nhangu Sign Language', NULL, 769.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yan-nhangu Sign Language', [Definition] = NULL, [SortOrder] = 769.30 WHERE [Code] = 'yhs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynn', 'Yana', NULL, 769.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yana', [Definition] = NULL, [SortOrder] = 769.40 WHERE [Code] = 'ynn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qur', 'Yanahuanca Pasco Quechua', NULL, 769.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanahuanca Pasco Quechua', [Definition] = NULL, [SortOrder] = 769.50 WHERE [Code] = 'qur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yda', 'Yanda', NULL, 769.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanda', [Definition] = NULL, [SortOrder] = 769.60 WHERE [Code] = 'yda' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dym', 'Yanda Dom Dogon', NULL, 769.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanda Dom Dogon', [Definition] = NULL, [SortOrder] = 769.70 WHERE [Code] = 'dym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyb', 'Yandjibara', NULL, 769.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yandjibara', [Definition] = NULL, [SortOrder] = 769.80 WHERE [Code] = 'xyb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynd', 'Yandruwandha', NULL, 769.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yandruwandha', [Definition] = NULL, [SortOrder] = 769.90 WHERE [Code] = 'ynd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ame') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ame', 'Yanesha''', NULL, 770.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanesha''', [Definition] = NULL, [SortOrder] = 770.00 WHERE [Code] = 'ame' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyg', 'Yang Zhuang', NULL, 770.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yang Zhuang', [Definition] = NULL, [SortOrder] = 770.10 WHERE [Code] = 'zyg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yav', 'Yangben', NULL, 770.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangben', [Definition] = NULL, [SortOrder] = 770.20 WHERE [Code] = 'yav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsx', 'Yangkam', NULL, 770.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangkam', [Definition] = NULL, [SortOrder] = 770.30 WHERE [Code] = 'bsx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jng', 'Yangman', NULL, 770.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangman', [Definition] = NULL, [SortOrder] = 770.40 WHERE [Code] = 'jng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yng', 'Yango', NULL, 770.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yango', [Definition] = NULL, [SortOrder] = 770.50 WHERE [Code] = 'yng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynl', 'Yangulam', NULL, 770.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangulam', [Definition] = NULL, [SortOrder] = 770.60 WHERE [Code] = 'ynl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yde', 'Yangum Dey', NULL, 770.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangum Dey', [Definition] = NULL, [SortOrder] = 770.70 WHERE [Code] = 'yde' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygl', 'Yangum Gel', NULL, 770.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangum Gel', [Definition] = NULL, [SortOrder] = 770.80 WHERE [Code] = 'ygl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymo', 'Yangum Mon', NULL, 770.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangum Mon', [Definition] = NULL, [SortOrder] = 770.90 WHERE [Code] = 'ymo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdd', 'Yankunytjatjara', NULL, 771.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yankunytjatjara', [Definition] = NULL, [SortOrder] = 771.00 WHERE [Code] = 'kdd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wca', 'Yanomámi', NULL, 771.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanomámi', [Definition] = NULL, [SortOrder] = 771.10 WHERE [Code] = 'wca' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guu', 'Yanomamö', NULL, 771.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanomamö', [Definition] = NULL, [SortOrder] = 771.20 WHERE [Code] = 'guu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yns', 'Yansi', NULL, 771.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yansi', [Definition] = NULL, [SortOrder] = 771.30 WHERE [Code] = 'yns' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jao', 'Yanyuwa', NULL, 771.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanyuwa', [Definition] = NULL, [SortOrder] = 771.40 WHERE [Code] = 'jao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yao', 'Yao', NULL, 771.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yao', [Definition] = NULL, [SortOrder] = 771.50 WHERE [Code] = 'yao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asy', 'Yaosakor Asmat', NULL, 771.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaosakor Asmat', [Definition] = NULL, [SortOrder] = 771.60 WHERE [Code] = 'asy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yre', 'Yaouré', NULL, 771.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaouré', [Definition] = NULL, [SortOrder] = 771.70 WHERE [Code] = 'yre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yap', 'Yapese', NULL, 771.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yapese', [Definition] = NULL, [SortOrder] = 771.80 WHERE [Code] = 'yap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yev', 'Yapunda', NULL, 771.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yapunda', [Definition] = NULL, [SortOrder] = 771.90 WHERE [Code] = 'yev' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaq', 'Yaqay', NULL, 772.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaqay', [Definition] = NULL, [SortOrder] = 772.00 WHERE [Code] = 'jaq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaq', 'Yaqui', NULL, 772.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaqui', [Definition] = NULL, [SortOrder] = 772.10 WHERE [Code] = 'yaq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrw', 'Yarawata', NULL, 772.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yarawata', [Definition] = NULL, [SortOrder] = 772.20 WHERE [Code] = 'yrw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxl', 'Yardliyawarra', NULL, 772.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yardliyawarra', [Definition] = NULL, [SortOrder] = 772.30 WHERE [Code] = 'yxl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrb', 'Yareba', NULL, 772.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yareba', [Definition] = NULL, [SortOrder] = 772.40 WHERE [Code] = 'yrb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zae', 'Yareni Zapotec', NULL, 772.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yareni Zapotec', [Definition] = NULL, [SortOrder] = 772.50 WHERE [Code] = 'zae' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yry', 'Yarluyandi', NULL, 772.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yarluyandi', [Definition] = NULL, [SortOrder] = 772.60 WHERE [Code] = 'yry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yro', 'Yaroame', NULL, 772.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaroame', [Definition] = NULL, [SortOrder] = 772.70 WHERE [Code] = 'yro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrs', 'Yarsun', NULL, 772.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yarsun', [Definition] = NULL, [SortOrder] = 772.80 WHERE [Code] = 'yrs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yko', 'Yasa', NULL, 772.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yasa', [Definition] = NULL, [SortOrder] = 772.90 WHERE [Code] = 'yko' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysc', 'Yassic', NULL, 773.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yassic', [Definition] = NULL, [SortOrder] = 773.00 WHERE [Code] = 'ysc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yty', 'Yatay', NULL, 773.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yatay', [Definition] = NULL, [SortOrder] = 773.10 WHERE [Code] = 'yty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zty', 'Yatee Zapotec', NULL, 773.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yatee Zapotec', [Definition] = NULL, [SortOrder] = 773.20 WHERE [Code] = 'zty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zav', 'Yatzachi Zapotec', NULL, 773.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yatzachi Zapotec', [Definition] = NULL, [SortOrder] = 773.30 WHERE [Code] = 'zav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuw', 'Yau (Morobe Province)', NULL, 773.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yau (Morobe Province)', [Definition] = NULL, [SortOrder] = 773.40 WHERE [Code] = 'yuw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yyu', 'Yau (Sandaun Province)', NULL, 773.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yau (Sandaun Province)', [Definition] = NULL, [SortOrder] = 773.50 WHERE [Code] = 'yyu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yla', 'Yaul', NULL, 773.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaul', [Definition] = NULL, [SortOrder] = 773.60 WHERE [Code] = 'yla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yax', 'Yauma', NULL, 773.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yauma', [Definition] = NULL, [SortOrder] = 773.70 WHERE [Code] = 'yax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jau', 'Yaur', NULL, 773.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaur', [Definition] = NULL, [SortOrder] = 773.80 WHERE [Code] = 'jau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpb', 'Yautepec Zapotec', NULL, 773.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yautepec Zapotec', [Definition] = NULL, [SortOrder] = 773.90 WHERE [Code] = 'zpb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qux', 'Yauyos Quechua', NULL, 774.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yauyos Quechua', [Definition] = NULL, [SortOrder] = 774.00 WHERE [Code] = 'qux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yvt', 'Yavitero', NULL, 774.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yavitero', [Definition] = NULL, [SortOrder] = 774.10 WHERE [Code] = 'yvt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yva', 'Yawa', NULL, 774.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawa', [Definition] = NULL, [SortOrder] = 774.20 WHERE [Code] = 'yva' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaw', 'Yawalapití', NULL, 774.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawalapití', [Definition] = NULL, [SortOrder] = 774.30 WHERE [Code] = 'yaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywn', 'Yawanawa', NULL, 774.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawanawa', [Definition] = NULL, [SortOrder] = 774.40 WHERE [Code] = 'ywn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yww', 'Yawarawarga', NULL, 774.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawarawarga', [Definition] = NULL, [SortOrder] = 774.50 WHERE [Code] = 'yww' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yby', 'Yaweyuha', NULL, 774.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaweyuha', [Definition] = NULL, [SortOrder] = 774.60 WHERE [Code] = 'yby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbw', 'Yawijibaya', NULL, 774.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawijibaya', [Definition] = NULL, [SortOrder] = 774.70 WHERE [Code] = 'jbw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybx', 'Yawiyo', NULL, 774.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawiyo', [Definition] = NULL, [SortOrder] = 774.80 WHERE [Code] = 'ybx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywr', 'Yawuru', NULL, 774.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawuru', [Definition] = NULL, [SortOrder] = 774.90 WHERE [Code] = 'ywr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xya', 'Yaygir', NULL, 775.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaygir', [Definition] = NULL, [SortOrder] = 775.00 WHERE [Code] = 'xya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yah', 'Yazgulyam', NULL, 775.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yazgulyam', [Definition] = NULL, [SortOrder] = 775.10 WHERE [Code] = 'yah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlc', 'Yecuatla Totonac', NULL, 775.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yecuatla Totonac', [Definition] = NULL, [SortOrder] = 775.20 WHERE [Code] = 'tlc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jei', 'Yei', NULL, 775.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yei', [Definition] = NULL, [SortOrder] = 775.30 WHERE [Code] = 'jei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ets') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ets', 'Yekhee', NULL, 775.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yekhee', [Definition] = NULL, [SortOrder] = 775.40 WHERE [Code] = 'ets' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykr', 'Yekora', NULL, 775.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yekora', [Definition] = NULL, [SortOrder] = 775.50 WHERE [Code] = 'ykr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yel', 'Yela', NULL, 775.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yela', [Definition] = NULL, [SortOrder] = 775.60 WHERE [Code] = 'yel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yle', 'Yele', NULL, 775.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yele', [Definition] = NULL, [SortOrder] = 775.70 WHERE [Code] = 'yle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jel', 'Yelmek', NULL, 775.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yelmek', [Definition] = NULL, [SortOrder] = 775.80 WHERE [Code] = 'jel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylg', 'Yelogu', NULL, 775.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yelogu', [Definition] = NULL, [SortOrder] = 775.90 WHERE [Code] = 'ylg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybb', 'Yemba', NULL, 776.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yemba', [Definition] = NULL, [SortOrder] = 776.00 WHERE [Code] = 'ybb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jnj', 'Yemsa', NULL, 776.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yemsa', [Definition] = NULL, [SortOrder] = 776.10 WHERE [Code] = 'jnj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynq', 'Yendang', NULL, 776.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yendang', [Definition] = NULL, [SortOrder] = 776.20 WHERE [Code] = 'ynq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yei', 'Yeni', NULL, 776.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yeni', [Definition] = NULL, [SortOrder] = 776.30 WHERE [Code] = 'yei' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yec', 'Yeniche', NULL, 776.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yeniche', [Definition] = NULL, [SortOrder] = 776.40 WHERE [Code] = 'yec' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yra', 'Yerakai', NULL, 776.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yerakai', [Definition] = NULL, [SortOrder] = 776.50 WHERE [Code] = 'yra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gop', 'Yeretuar', NULL, 776.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yeretuar', [Definition] = NULL, [SortOrder] = 776.60 WHERE [Code] = 'gop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrn', 'Yerong', NULL, 776.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yerong', [Definition] = NULL, [SortOrder] = 776.70 WHERE [Code] = 'yrn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yeu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yeu', 'Yerukula', NULL, 776.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yerukula', [Definition] = NULL, [SortOrder] = 776.80 WHERE [Code] = 'yeu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yss', 'Yessan-Mayo', NULL, 776.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yessan-Mayo', [Definition] = NULL, [SortOrder] = 776.90 WHERE [Code] = 'yss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yet', 'Yetfa', NULL, 777.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yetfa', [Definition] = NULL, [SortOrder] = 777.00 WHERE [Code] = 'yet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yej', 'Yevanic', NULL, 777.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yevanic', [Definition] = NULL, [SortOrder] = 777.10 WHERE [Code] = 'yej' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yey', 'Yeyi', NULL, 777.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yeyi', [Definition] = NULL, [SortOrder] = 777.20 WHERE [Code] = 'yey' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yid', 'Yiddish', NULL, 777.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yiddish', [Definition] = NULL, [SortOrder] = 777.30 WHERE [Code] = 'yid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ydg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ydg', 'Yidgha', NULL, 777.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yidgha', [Definition] = NULL, [SortOrder] = 777.40 WHERE [Code] = 'ydg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yii', 'Yidiny', NULL, 777.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yidiny', [Definition] = NULL, [SortOrder] = 777.50 WHERE [Code] = 'yii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yll', 'Yil', NULL, 777.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yil', [Definition] = NULL, [SortOrder] = 777.60 WHERE [Code] = 'yll' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yee', 'Yimas', NULL, 777.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yimas', [Definition] = NULL, [SortOrder] = 777.70 WHERE [Code] = 'yee' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yim', 'Yimchungru Naga', NULL, 777.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yimchungru Naga', [Definition] = NULL, [SortOrder] = 777.80 WHERE [Code] = 'yim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvu', 'Yinbaw Karen', NULL, 777.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yinbaw Karen', [Definition] = NULL, [SortOrder] = 777.90 WHERE [Code] = 'kvu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yij', 'Yindjibarndi', NULL, 778.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yindjibarndi', [Definition] = NULL, [SortOrder] = 778.00 WHERE [Code] = 'yij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yil', 'Yindjilandji', NULL, 778.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yindjilandji', [Definition] = NULL, [SortOrder] = 778.10 WHERE [Code] = 'yil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pib', 'Yine', NULL, 778.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yine', [Definition] = NULL, [SortOrder] = 778.20 WHERE [Code] = 'pib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yia', 'Yinggarda', NULL, 778.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yinggarda', [Definition] = NULL, [SortOrder] = 778.30 WHERE [Code] = 'yia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywg', 'Yinhawangka', NULL, 778.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yinhawangka', [Definition] = NULL, [SortOrder] = 778.40 WHERE [Code] = 'ywg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygi', 'Yiningayi', NULL, 778.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yiningayi', [Definition] = NULL, [SortOrder] = 778.50 WHERE [Code] = 'ygi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvy', 'Yintale Karen', NULL, 778.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yintale Karen', [Definition] = NULL, [SortOrder] = 778.60 WHERE [Code] = 'kvy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxm', 'Yinwum', NULL, 778.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yinwum', [Definition] = NULL, [SortOrder] = 778.70 WHERE [Code] = 'yxm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yyr', 'Yir Yoront', NULL, 778.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yir Yoront', [Definition] = NULL, [SortOrder] = 778.80 WHERE [Code] = 'yyr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ljw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ljw', 'Yirandali', NULL, 778.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yirandali', [Definition] = NULL, [SortOrder] = 778.90 WHERE [Code] = 'ljw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrm', 'Yirrk-Mel', NULL, 779.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yirrk-Mel', [Definition] = NULL, [SortOrder] = 779.00 WHERE [Code] = 'yrm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yis', 'Yis', NULL, 779.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yis', [Definition] = NULL, [SortOrder] = 779.10 WHERE [Code] = 'yis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xth', 'Yitha Yitha', NULL, 779.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yitha Yitha', [Definition] = NULL, [SortOrder] = 779.20 WHERE [Code] = 'xth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yob', 'Yoba', NULL, 779.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoba', [Definition] = NULL, [SortOrder] = 779.30 WHERE [Code] = 'yob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gud', 'Yocoboué Dida', NULL, 779.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yocoboué Dida', [Definition] = NULL, [SortOrder] = 779.40 WHERE [Code] = 'gud' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yog', 'Yogad', NULL, 779.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yogad', [Definition] = NULL, [SortOrder] = 779.50 WHERE [Code] = 'yog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ydk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ydk', 'Yoidik', NULL, 779.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoidik', [Definition] = NULL, [SortOrder] = 779.60 WHERE [Code] = 'ydk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yki', 'Yoke', NULL, 779.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoke', [Definition] = NULL, [SortOrder] = 779.70 WHERE [Code] = 'yki' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yok', 'Yokuts', NULL, 779.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yokuts', [Definition] = NULL, [SortOrder] = 779.80 WHERE [Code] = 'yok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygs', 'Yol?u Sign Language', NULL, 779.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yol?u Sign Language', [Definition] = NULL, [SortOrder] = 779.90 WHERE [Code] = 'ygs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yol', 'Yola', NULL, 780.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yola', [Definition] = NULL, [SortOrder] = 780.00 WHERE [Code] = 'yol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xty', 'Yoloxochitl Mixtec', NULL, 780.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoloxochitl Mixtec', [Definition] = NULL, [SortOrder] = 780.10 WHERE [Code] = 'xty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pil', 'Yom', NULL, 780.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yom', [Definition] = NULL, [SortOrder] = 780.20 WHERE [Code] = 'pil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yom', 'Yombe', NULL, 780.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yombe', [Definition] = NULL, [SortOrder] = 780.30 WHERE [Code] = 'yom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yoi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yoi', 'Yonaguni', NULL, 780.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yonaguni', [Definition] = NULL, [SortOrder] = 780.40 WHERE [Code] = 'yoi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yno', 'Yong', NULL, 780.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yong', [Definition] = NULL, [SortOrder] = 780.50 WHERE [Code] = 'yno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyb', 'Yongbei Zhuang', NULL, 780.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yongbei Zhuang', [Definition] = NULL, [SortOrder] = 780.60 WHERE [Code] = 'zyb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yon', 'Yongkom', NULL, 780.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yongkom', [Definition] = NULL, [SortOrder] = 780.70 WHERE [Code] = 'yon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyn', 'Yongnan Zhuang', NULL, 780.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yongnan Zhuang', [Definition] = NULL, [SortOrder] = 780.80 WHERE [Code] = 'zyn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yut', 'Yopno', NULL, 780.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yopno', [Definition] = NULL, [SortOrder] = 780.90 WHERE [Code] = 'yut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mts', 'Yora', NULL, 781.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yora', [Definition] = NULL, [SortOrder] = 781.00 WHERE [Code] = 'mts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yox', 'Yoron', NULL, 781.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoron', [Definition] = NULL, [SortOrder] = 781.10 WHERE [Code] = 'yox' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyy', 'Yorta Yorta', NULL, 781.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yorta Yorta', [Definition] = NULL, [SortOrder] = 781.20 WHERE [Code] = 'xyy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yor', 'Yoruba', NULL, 781.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoruba', [Definition] = NULL, [SortOrder] = 781.30 WHERE [Code] = 'yor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpm', 'Yosondúa Mixtec', NULL, 781.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yosondúa Mixtec', [Definition] = NULL, [SortOrder] = 781.40 WHERE [Code] = 'mpm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yot', 'Yotti', NULL, 781.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yotti', [Definition] = NULL, [SortOrder] = 781.50 WHERE [Code] = 'yot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyj', 'Youjiang Zhuang', NULL, 781.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Youjiang Zhuang', [Definition] = NULL, [SortOrder] = 781.60 WHERE [Code] = 'zyj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jiu', 'Youle Jinuo', NULL, 781.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Youle Jinuo', [Definition] = NULL, [SortOrder] = 781.70 WHERE [Code] = 'jiu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buh', 'Younuo Bunu', NULL, 781.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Younuo Bunu', [Definition] = NULL, [SortOrder] = 781.80 WHERE [Code] = 'buh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ytw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ytw', 'Yout Wam', NULL, 781.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yout Wam', [Definition] = NULL, [SortOrder] = 781.90 WHERE [Code] = 'ytw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yoy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yoy', 'Yoy', NULL, 782.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoy', [Definition] = NULL, [SortOrder] = 782.00 WHERE [Code] = 'yoy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nua', 'Yuanga', NULL, 782.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuanga', [Definition] = NULL, [SortOrder] = 782.10 WHERE [Code] = 'nua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msd', 'Yucatec Maya Sign Language', NULL, 782.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yucatec Maya Sign Language', [Definition] = NULL, [SortOrder] = 782.20 WHERE [Code] = 'msd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yua', 'Yucateco', NULL, 782.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yucateco', [Definition] = NULL, [SortOrder] = 782.30 WHERE [Code] = 'yua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuc', 'Yuchi', NULL, 782.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuchi', [Definition] = NULL, [SortOrder] = 782.40 WHERE [Code] = 'yuc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvg', 'Yucuañe Mixtec', NULL, 782.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yucuañe Mixtec', [Definition] = NULL, [SortOrder] = 782.50 WHERE [Code] = 'mvg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ycn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ycn', 'Yucuna', NULL, 782.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yucuna', [Definition] = NULL, [SortOrder] = 782.60 WHERE [Code] = 'ycn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yue', 'Yue Chinese', NULL, 782.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yue Chinese', [Definition] = NULL, [SortOrder] = 782.70 WHERE [Code] = 'yue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yug', 'Yug', NULL, 782.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yug', [Definition] = NULL, [SortOrder] = 782.80 WHERE [Code] = 'yug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yub', 'Yugambal', NULL, 782.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yugambal', [Definition] = NULL, [SortOrder] = 782.90 WHERE [Code] = 'yub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysl', 'Yugoslavian Sign Language', NULL, 783.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yugoslavian Sign Language', [Definition] = NULL, [SortOrder] = 783.00 WHERE [Code] = 'ysl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygu', 'Yugul', NULL, 783.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yugul', [Definition] = NULL, [SortOrder] = 783.10 WHERE [Code] = 'ygu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yab', 'Yuhup', NULL, 783.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuhup', [Definition] = NULL, [SortOrder] = 783.20 WHERE [Code] = 'yab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuk', 'Yuki', NULL, 783.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuki', [Definition] = NULL, [SortOrder] = 783.30 WHERE [Code] = 'yuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yup', 'Yukpa', NULL, 783.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yukpa', [Definition] = NULL, [SortOrder] = 783.40 WHERE [Code] = 'yup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybl', 'Yukuben', NULL, 783.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yukuben', [Definition] = NULL, [SortOrder] = 783.50 WHERE [Code] = 'ybl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yul', 'Yulu', NULL, 783.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yulu', [Definition] = NULL, [SortOrder] = 783.60 WHERE [Code] = 'yul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuq', 'Yuqui', NULL, 783.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuqui', [Definition] = NULL, [SortOrder] = 783.70 WHERE [Code] = 'yuq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuz', 'Yuracare', NULL, 783.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuracare', [Definition] = NULL, [SortOrder] = 783.80 WHERE [Code] = 'yuz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rts', 'Yurats', NULL, 783.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yurats', [Definition] = NULL, [SortOrder] = 783.90 WHERE [Code] = 'rts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yur', 'Yurok', NULL, 784.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yurok', [Definition] = NULL, [SortOrder] = 784.00 WHERE [Code] = 'yur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ljx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ljx', 'Yuru', NULL, 784.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuru', [Definition] = NULL, [SortOrder] = 784.10 WHERE [Code] = 'ljx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yui', 'Yurutí', NULL, 784.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yurutí', [Definition] = NULL, [SortOrder] = 784.20 WHERE [Code] = 'yui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mab', 'Yutanduchi Mixtec', NULL, 784.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yutanduchi Mixtec', [Definition] = NULL, [SortOrder] = 784.30 WHERE [Code] = 'mab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yau', 'Yuwana', NULL, 784.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuwana', [Definition] = NULL, [SortOrder] = 784.40 WHERE [Code] = 'yau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxu', 'Yuyu', NULL, 784.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuyu', [Definition] = NULL, [SortOrder] = 784.50 WHERE [Code] = 'yxu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gek', 'Ywom', NULL, 784.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ywom', [Definition] = NULL, [SortOrder] = 784.60 WHERE [Code] = 'gek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztx', 'Zaachila Zapotec', NULL, 784.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaachila Zapotec', [Definition] = NULL, [SortOrder] = 784.70 WHERE [Code] = 'ztx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kji', 'Zabana', NULL, 784.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zabana', [Definition] = NULL, [SortOrder] = 784.80 WHERE [Code] = 'kji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctz', 'Zacatepec Chatino', NULL, 784.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zacatepec Chatino', [Definition] = NULL, [SortOrder] = 784.90 WHERE [Code] = 'ctz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhi', 'Zacatlán-Ahuacatlán-Tepetzintla Nahuatl', NULL, 785.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zacatlán-Ahuacatlán-Tepetzintla Nahuatl', [Definition] = NULL, [SortOrder] = 785.00 WHERE [Code] = 'nhi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zag', 'Zaghawa', NULL, 785.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaghawa', [Definition] = NULL, [SortOrder] = 785.10 WHERE [Code] = 'zag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atb', 'Zaiwa', NULL, 785.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaiwa', [Definition] = NULL, [SortOrder] = 785.20 WHERE [Code] = 'atb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkr', 'Zakhring', NULL, 785.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zakhring', [Definition] = NULL, [SortOrder] = 785.30 WHERE [Code] = 'zkr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsl', 'Zambian Sign Language', NULL, 785.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zambian Sign Language', [Definition] = NULL, [SortOrder] = 785.40 WHERE [Code] = 'zsl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zna', 'Zan Gula', NULL, 785.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zan Gula', [Definition] = NULL, [SortOrder] = 785.50 WHERE [Code] = 'zna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zak', 'Zanaki', NULL, 785.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zanaki', [Definition] = NULL, [SortOrder] = 785.60 WHERE [Code] = 'zak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zne', 'Zande (individual language)', NULL, 785.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zande (individual language)', [Definition] = NULL, [SortOrder] = 785.70 WHERE [Code] = 'zne' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zau', 'Zangskari', NULL, 785.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zangskari', [Definition] = NULL, [SortOrder] = 785.80 WHERE [Code] = 'zau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zah', 'Zangwal', NULL, 785.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zangwal', [Definition] = NULL, [SortOrder] = 785.90 WHERE [Code] = 'zah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpw', 'Zaniza Zapotec', NULL, 786.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaniza Zapotec', [Definition] = NULL, [SortOrder] = 786.00 WHERE [Code] = 'zpw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zro', 'Záparo', NULL, 786.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Záparo', [Definition] = NULL, [SortOrder] = 786.10 WHERE [Code] = 'zro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zap', 'Zapotec', NULL, 786.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zapotec', [Definition] = NULL, [SortOrder] = 786.20 WHERE [Code] = 'zap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaj', 'Zaramo', NULL, 786.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaramo', [Definition] = NULL, [SortOrder] = 786.30 WHERE [Code] = 'zaj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaz', 'Zari', NULL, 786.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zari', [Definition] = NULL, [SortOrder] = 786.40 WHERE [Code] = 'zaz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dje', 'Zarma', NULL, 786.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zarma', [Definition] = NULL, [SortOrder] = 786.50 WHERE [Code] = 'dje' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zrp', 'Zarphatic', NULL, 786.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zarphatic', [Definition] = NULL, [SortOrder] = 786.60 WHERE [Code] = 'zrp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zal', 'Zauzou', NULL, 786.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zauzou', [Definition] = NULL, [SortOrder] = 786.70 WHERE [Code] = 'zal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zwa', 'Zay', NULL, 786.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zay', [Definition] = NULL, [SortOrder] = 786.80 WHERE [Code] = 'zwa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxk', 'Zayein Karen', NULL, 786.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zayein Karen', [Definition] = NULL, [SortOrder] = 786.90 WHERE [Code] = 'kxk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zay', 'Zayse-Zergulla', NULL, 787.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zayse-Zergulla', [Definition] = NULL, [SortOrder] = 787.00 WHERE [Code] = 'zay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zza', 'Zaza', NULL, 787.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaza', [Definition] = NULL, [SortOrder] = 787.10 WHERE [Code] = 'zza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaj', 'Zazao', NULL, 787.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zazao', [Definition] = NULL, [SortOrder] = 787.20 WHERE [Code] = 'jaj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zua', 'Zeem', NULL, 787.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zeem', [Definition] = NULL, [SortOrder] = 787.30 WHERE [Code] = 'zua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zea', 'Zeeuws', NULL, 787.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zeeuws', [Definition] = NULL, [SortOrder] = 787.40 WHERE [Code] = 'zea' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhm', 'Zemba', NULL, 787.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zemba', [Definition] = NULL, [SortOrder] = 787.50 WHERE [Code] = 'dhm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzm', 'Zeme Naga', NULL, 787.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zeme Naga', [Definition] = NULL, [SortOrder] = 787.60 WHERE [Code] = 'nzm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xzm', 'Zemgalian', NULL, 787.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zemgalian', [Definition] = NULL, [SortOrder] = 787.70 WHERE [Code] = 'xzm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zeg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zeg', 'Zenag', NULL, 787.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zenag', [Definition] = NULL, [SortOrder] = 787.80 WHERE [Code] = 'zeg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zen', 'Zenaga', NULL, 787.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zenaga', [Definition] = NULL, [SortOrder] = 787.90 WHERE [Code] = 'zen' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czn', 'Zenzontepec Chatino', NULL, 788.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zenzontepec Chatino', [Definition] = NULL, [SortOrder] = 788.00 WHERE [Code] = 'czn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zrn', 'Zerenkel', NULL, 788.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zerenkel', [Definition] = NULL, [SortOrder] = 788.10 WHERE [Code] = 'zrn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhb', 'Zhaba', NULL, 788.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhaba', [Definition] = NULL, [SortOrder] = 788.20 WHERE [Code] = 'zhb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xzh', 'Zhang-Zhung', NULL, 788.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhang-Zhung', [Definition] = NULL, [SortOrder] = 788.30 WHERE [Code] = 'xzh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhi', 'Zhire', NULL, 788.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhire', [Definition] = NULL, [SortOrder] = 788.40 WHERE [Code] = 'zhi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhw', 'Zhoa', NULL, 788.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhoa', [Definition] = NULL, [SortOrder] = 788.50 WHERE [Code] = 'zhw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zha', 'Zhuang', NULL, 788.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhuang', [Definition] = NULL, [SortOrder] = 788.60 WHERE [Code] = 'zha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zia', 'Zia', NULL, 788.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zia', [Definition] = NULL, [SortOrder] = 788.70 WHERE [Code] = 'zia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zil', 'Zialo', NULL, 788.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zialo', [Definition] = NULL, [SortOrder] = 788.80 WHERE [Code] = 'zil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ziw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ziw', 'Zigula', NULL, 788.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zigula', [Definition] = NULL, [SortOrder] = 788.90 WHERE [Code] = 'ziw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zik', 'Zimakani', NULL, 789.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zimakani', [Definition] = NULL, [SortOrder] = 789.00 WHERE [Code] = 'zik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmb', 'Zimba', NULL, 789.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zimba', [Definition] = NULL, [SortOrder] = 789.10 WHERE [Code] = 'zmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zib', 'Zimbabwe Sign Language', NULL, 789.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zimbabwe Sign Language', [Definition] = NULL, [SortOrder] = 789.20 WHERE [Code] = 'zib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zin', 'Zinza', NULL, 789.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zinza', [Definition] = NULL, [SortOrder] = 789.30 WHERE [Code] = 'zin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sih', 'Zire', NULL, 789.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zire', [Definition] = NULL, [SortOrder] = 789.40 WHERE [Code] = 'sih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ziz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ziz', 'Zizilivakan', NULL, 789.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zizilivakan', [Definition] = NULL, [SortOrder] = 789.50 WHERE [Code] = 'ziz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pto', 'Zo''é', NULL, 789.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zo''é', [Definition] = NULL, [SortOrder] = 789.60 WHERE [Code] = 'pto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yzk', 'Zokhuo', NULL, 789.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zokhuo', [Definition] = NULL, [SortOrder] = 789.70 WHERE [Code] = 'yzk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpq', 'Zoogocho Zapotec', NULL, 789.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zoogocho Zapotec', [Definition] = NULL, [SortOrder] = 789.80 WHERE [Code] = 'zpq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbz', 'Zoroastrian Dari', NULL, 789.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zoroastrian Dari', [Definition] = NULL, [SortOrder] = 789.90 WHERE [Code] = 'gbz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czt', 'Zotung Chin', NULL, 790.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zotung Chin', [Definition] = NULL, [SortOrder] = 790.00 WHERE [Code] = 'czt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zom', 'Zou', NULL, 790.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zou', [Definition] = NULL, [SortOrder] = 790.10 WHERE [Code] = 'zom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zla', 'Zula', NULL, 790.20) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zula', [Definition] = NULL, [SortOrder] = 790.20 WHERE [Code] = 'zla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnd', 'Zulgo-Gemzek', NULL, 790.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zulgo-Gemzek', [Definition] = NULL, [SortOrder] = 790.30 WHERE [Code] = 'gnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zul', 'Zulu', NULL, 790.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zulu', [Definition] = NULL, [SortOrder] = 790.40 WHERE [Code] = 'zul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zuy', 'Zumaya', NULL, 790.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zumaya', [Definition] = NULL, [SortOrder] = 790.50 WHERE [Code] = 'zuy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmb', 'Zumbun', NULL, 790.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zumbun', [Definition] = NULL, [SortOrder] = 790.60 WHERE [Code] = 'jmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zun', 'Zuni', NULL, 790.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zuni', [Definition] = NULL, [SortOrder] = 790.70 WHERE [Code] = 'zun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zzj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zzj', 'Zuojiang Zhuang', NULL, 790.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zuojiang Zhuang', [Definition] = NULL, [SortOrder] = 790.80 WHERE [Code] = 'zzj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyp', 'Zyphe Chin', NULL, 790.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zyphe Chin', [Definition] = NULL, [SortOrder] = 790.90 WHERE [Code] = 'zyp' END -END - -PRINT N'Populate RefISO6395LanguageFamily table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefISO6395LanguageFamily]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'aav') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aav', 'Austro-Asiatic languages', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Austro-Asiatic languages', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'aav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'afa') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afa', 'Afro-Asiatic languages', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Afro-Asiatic languages', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'afa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'alg') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alg', 'Algonquian languages', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Algonquian languages', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'alg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'alv') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alv', 'Atlantic-Congo languages', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Atlantic-Congo languages', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'alv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'apa') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apa', 'Apache languages', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Apache languages', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = 'apa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'aqa') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqa', 'Alacalufan languages', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Alacalufan languages', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = 'aqa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'aql') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aql', 'Algic languages', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Algic languages', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = 'aql' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'art') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('art', 'Artificial languages', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Artificial languages', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = 'art' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'ath') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ath', 'Athapascan languages', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Athapascan languages', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = 'ath' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'auf') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auf', 'Arauan languages', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Arauan languages', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = 'auf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'aus') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aus', 'Australian languages', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Australian languages', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = 'aus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'awd') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awd', 'Arawakan languages', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Arawakan languages', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = 'awd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'azc') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azc', 'Uto-Aztecan languages', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Uto-Aztecan languages', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = 'azc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'bad') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bad', 'Banda languages', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Banda languages', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = 'bad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'bai') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bai', 'Bamileke languages', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Bamileke languages', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = 'bai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'bat') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bat', 'Baltic languages', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Baltic languages', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = 'bat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'ber') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ber', 'Berber languages', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Berber languages', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = 'ber' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'bih') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bih', 'Bihari languages', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Bihari languages', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = 'bih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'bnt') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnt', 'Bantu languages', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Bantu languages', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = 'bnt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'btk') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btk', 'Batak languages', NULL, 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Batak languages', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = 'btk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'cai') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cai', 'Central American Indian languages', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Central American Indian languages', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = 'cai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'cau') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cau', 'Caucasian languages', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Caucasian languages', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = 'cau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'cba') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cba', 'Chibchan languages', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Chibchan languages', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = 'cba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'ccn') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccn', 'North Caucasian languages', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'North Caucasian languages', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = 'ccn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'ccs') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccs', 'South Caucasian languages', NULL, 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'South Caucasian languages', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = 'ccs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'cdc') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdc', 'Chadic languages', NULL, 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Chadic languages', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = 'cdc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'cdd') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdd', 'Caddoan languages', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Caddoan languages', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = 'cdd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'cel') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cel', 'Celtic languages', NULL, 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Celtic languages', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = 'cel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'cmc') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmc', 'Chamic languages', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Chamic languages', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = 'cmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'cpe') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpe', 'Creoles and pidgins, English‑based', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Creoles and pidgins, English‑based', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = 'cpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'cpf') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpf', 'Creoles and pidgins, French‑based', NULL, 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Creoles and pidgins, French‑based', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = 'cpf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'cpp') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpp', 'Creoles and pidgins, Portuguese-based', NULL, 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Creoles and pidgins, Portuguese-based', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = 'cpp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'crp') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crp', 'Creoles and pidgins', NULL, 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Creoles and pidgins', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = 'crp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'csu') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csu', 'Central Sudanic languages', NULL, 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Central Sudanic languages', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = 'csu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'cus') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cus', 'Cushitic languages', NULL, 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Cushitic languages', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = 'cus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'day') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('day', 'Land Dayak languages', NULL, 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Land Dayak languages', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = 'day' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'dmn') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmn', 'Mande languages', NULL, 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Mande languages', [Definition] = NULL, [SortOrder] = 37.00 WHERE [Code] = 'dmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'dra') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dra', 'Dravidian languages', NULL, 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Dravidian languages', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = 'dra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'egx') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('egx', 'Egyptian languages', NULL, 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Egyptian languages', [Definition] = NULL, [SortOrder] = 39.00 WHERE [Code] = 'egx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'esx') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esx', 'Eskimo-Aleut languages', NULL, 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Eskimo-Aleut languages', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = 'esx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'euq') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('euq', 'Basque (family)', NULL, 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Basque (family)', [Definition] = NULL, [SortOrder] = 41.00 WHERE [Code] = 'euq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'fiu') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fiu', 'Finno-Ugrian languages', NULL, 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Finno-Ugrian languages', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = 'fiu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'fox') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fox', 'Formosan languages', NULL, 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Formosan languages', [Definition] = NULL, [SortOrder] = 43.00 WHERE [Code] = 'fox' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'gem') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gem', 'Germanic languages', NULL, 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Germanic languages', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = 'gem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'gme') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gme', 'East Germanic languages', NULL, 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'East Germanic languages', [Definition] = NULL, [SortOrder] = 45.00 WHERE [Code] = 'gme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'gmq') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmq', 'North Germanic languages', NULL, 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'North Germanic languages', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = 'gmq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'gmw') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmw', 'West Germanic languages', NULL, 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'West Germanic languages', [Definition] = NULL, [SortOrder] = 47.00 WHERE [Code] = 'gmw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'grk') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grk', 'Greek languages', NULL, 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Greek languages', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = 'grk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'hmx') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmx', 'Hmong-Mien languages', NULL, 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Hmong-Mien languages', [Definition] = NULL, [SortOrder] = 49.00 WHERE [Code] = 'hmx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'hok') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hok', 'Hokan languages', NULL, 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Hokan languages', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = 'hok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'hyx') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hyx', 'Armenian (family)', NULL, 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Armenian (family)', [Definition] = NULL, [SortOrder] = 51.00 WHERE [Code] = 'hyx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'iir') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iir', 'Indo-Iranian languages', NULL, 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Indo-Iranian languages', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = 'iir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'ijo') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijo', 'Ijo languages', NULL, 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Ijo languages', [Definition] = NULL, [SortOrder] = 53.00 WHERE [Code] = 'ijo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'inc') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inc', 'Indic languages', NULL, 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Indic languages', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = 'inc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'ine') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ine', 'Indo-European languages', NULL, 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Indo-European languages', [Definition] = NULL, [SortOrder] = 55.00 WHERE [Code] = 'ine' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'ira') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ira', 'Iranian languages', NULL, 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Iranian languages', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = 'ira' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'iro') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iro', 'Iroquoian languages', NULL, 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Iroquoian languages', [Definition] = NULL, [SortOrder] = 57.00 WHERE [Code] = 'iro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'itc') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itc', 'Italic languages', NULL, 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Italic languages', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = 'itc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'jpx') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpx', 'Japanese (family)', NULL, 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Japanese (family)', [Definition] = NULL, [SortOrder] = 59.00 WHERE [Code] = 'jpx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'kar') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kar', 'Karen languages', NULL, 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Karen languages', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = 'kar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'kdo') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdo', 'Kordofanian languages', NULL, 61.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Kordofanian languages', [Definition] = NULL, [SortOrder] = 61.00 WHERE [Code] = 'kdo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'khi') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khi', 'Khoisan languages', NULL, 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Khoisan languages', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = 'khi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'kro') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kro', 'Kru languages', NULL, 63.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Kru languages', [Definition] = NULL, [SortOrder] = 63.00 WHERE [Code] = 'kro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'map') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('map', 'Austronesian languages', NULL, 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Austronesian languages', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = 'map' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'mkh') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkh', 'Mon-Khmer languages', NULL, 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Mon-Khmer languages', [Definition] = NULL, [SortOrder] = 65.00 WHERE [Code] = 'mkh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'mno') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mno', 'Manobo languages', NULL, 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Manobo languages', [Definition] = NULL, [SortOrder] = 66.00 WHERE [Code] = 'mno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'mun') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mun', 'Munda languages', NULL, 67.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Munda languages', [Definition] = NULL, [SortOrder] = 67.00 WHERE [Code] = 'mun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'myn') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myn', 'Mayan languages', NULL, 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Mayan languages', [Definition] = NULL, [SortOrder] = 68.00 WHERE [Code] = 'myn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'nah') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nah', 'Nahuatl languages', NULL, 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Nahuatl languages', [Definition] = NULL, [SortOrder] = 69.00 WHERE [Code] = 'nah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'nai') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nai', 'North American Indian languages', NULL, 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'North American Indian languages', [Definition] = NULL, [SortOrder] = 70.00 WHERE [Code] = 'nai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'ngf') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngf', 'Trans-New Guinea languages', NULL, 71.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Trans-New Guinea languages', [Definition] = NULL, [SortOrder] = 71.00 WHERE [Code] = 'ngf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'nic') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nic', 'Niger-Kordofanian languages', NULL, 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Niger-Kordofanian languages', [Definition] = NULL, [SortOrder] = 72.00 WHERE [Code] = 'nic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'nub') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nub', 'Nubian languages', NULL, 73.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Nubian languages', [Definition] = NULL, [SortOrder] = 73.00 WHERE [Code] = 'nub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'omq') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omq', 'Oto-Manguean languages', NULL, 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Oto-Manguean languages', [Definition] = NULL, [SortOrder] = 74.00 WHERE [Code] = 'omq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'omv') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omv', 'Omotic languages', NULL, 75.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Omotic languages', [Definition] = NULL, [SortOrder] = 75.00 WHERE [Code] = 'omv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'oto') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oto', 'Otomian languages', NULL, 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Otomian languages', [Definition] = NULL, [SortOrder] = 76.00 WHERE [Code] = 'oto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'paa') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paa', 'Papuan languages', NULL, 77.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Papuan languages', [Definition] = NULL, [SortOrder] = 77.00 WHERE [Code] = 'paa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'phi') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phi', 'Philippine languages', NULL, 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Philippine languages', [Definition] = NULL, [SortOrder] = 78.00 WHERE [Code] = 'phi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'plf') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plf', 'Central Malayo-Polynesian languages', NULL, 79.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Central Malayo-Polynesian languages', [Definition] = NULL, [SortOrder] = 79.00 WHERE [Code] = 'plf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'poz') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poz', 'Malayo-Polynesian languages', NULL, 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Malayo-Polynesian languages', [Definition] = NULL, [SortOrder] = 80.00 WHERE [Code] = 'poz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'pqe') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pqe', 'Eastern Malayo-Polynesian languages', NULL, 81.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Eastern Malayo-Polynesian languages', [Definition] = NULL, [SortOrder] = 81.00 WHERE [Code] = 'pqe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'pqw') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pqw', 'Western Malayo-Polynesian languages', NULL, 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Western Malayo-Polynesian languages', [Definition] = NULL, [SortOrder] = 82.00 WHERE [Code] = 'pqw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'pra') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pra', 'Prakrit languages', NULL, 83.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Prakrit languages', [Definition] = NULL, [SortOrder] = 83.00 WHERE [Code] = 'pra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'qwe') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwe', 'Quechuan (family)', NULL, 84.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Quechuan (family)', [Definition] = NULL, [SortOrder] = 84.00 WHERE [Code] = 'qwe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'roa') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roa', 'Romance languages', NULL, 85.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Romance languages', [Definition] = NULL, [SortOrder] = 85.00 WHERE [Code] = 'roa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'sai') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sai', 'South American Indian languages', NULL, 86.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'South American Indian languages', [Definition] = NULL, [SortOrder] = 86.00 WHERE [Code] = 'sai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'sal') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sal', 'Salishan languages', NULL, 87.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Salishan languages', [Definition] = NULL, [SortOrder] = 87.00 WHERE [Code] = 'sal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'sdv') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdv', 'Eastern Sudanic languages', NULL, 88.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Eastern Sudanic languages', [Definition] = NULL, [SortOrder] = 88.00 WHERE [Code] = 'sdv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'sem') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sem', 'Semitic languages', NULL, 89.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Semitic languages', [Definition] = NULL, [SortOrder] = 89.00 WHERE [Code] = 'sem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'sgn') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgn', 'sign languages', NULL, 90.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'sign languages', [Definition] = NULL, [SortOrder] = 90.00 WHERE [Code] = 'sgn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'sio') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sio', 'Siouan languages', NULL, 91.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Siouan languages', [Definition] = NULL, [SortOrder] = 91.00 WHERE [Code] = 'sio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'sit') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sit', 'Sino-Tibetan languages', NULL, 92.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Sino-Tibetan languages', [Definition] = NULL, [SortOrder] = 92.00 WHERE [Code] = 'sit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'sla') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sla', 'Slavic languages', NULL, 93.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Slavic languages', [Definition] = NULL, [SortOrder] = 93.00 WHERE [Code] = 'sla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'smi') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smi', 'Sami languages', NULL, 94.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Sami languages', [Definition] = NULL, [SortOrder] = 94.00 WHERE [Code] = 'smi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'son') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('son', 'Songhai languages', NULL, 95.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Songhai languages', [Definition] = NULL, [SortOrder] = 95.00 WHERE [Code] = 'son' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'sqj') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqj', 'Albanian languages', NULL, 96.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Albanian languages', [Definition] = NULL, [SortOrder] = 96.00 WHERE [Code] = 'sqj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'ssa') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssa', 'Nilo-Saharan languages', NULL, 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Nilo-Saharan languages', [Definition] = NULL, [SortOrder] = 97.00 WHERE [Code] = 'ssa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'syd') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syd', 'Samoyedic languages', NULL, 98.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Samoyedic languages', [Definition] = NULL, [SortOrder] = 98.00 WHERE [Code] = 'syd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'tai') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tai', 'Tai languages', NULL, 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Tai languages', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = 'tai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'tbq') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbq', 'Tibeto-Burman languages', NULL, 100.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Tibeto-Burman languages', [Definition] = NULL, [SortOrder] = 100.00 WHERE [Code] = 'tbq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'trk') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trk', 'Turkic languages', NULL, 101.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Turkic languages', [Definition] = NULL, [SortOrder] = 101.00 WHERE [Code] = 'trk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'tup') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tup', 'Tupi languages', NULL, 102.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Tupi languages', [Definition] = NULL, [SortOrder] = 102.00 WHERE [Code] = 'tup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'tut') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tut', 'Altaic languages', NULL, 103.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Altaic languages', [Definition] = NULL, [SortOrder] = 103.00 WHERE [Code] = 'tut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'tuw') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuw', 'Tungus languages', NULL, 104.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Tungus languages', [Definition] = NULL, [SortOrder] = 104.00 WHERE [Code] = 'tuw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'urj') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urj', 'Uralic languages', NULL, 105.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Uralic languages', [Definition] = NULL, [SortOrder] = 105.00 WHERE [Code] = 'urj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'wak') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wak', 'Wakashan languages', NULL, 106.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Wakashan languages', [Definition] = NULL, [SortOrder] = 106.00 WHERE [Code] = 'wak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'wen') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wen', 'Sorbian languages', NULL, 107.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Sorbian languages', [Definition] = NULL, [SortOrder] = 107.00 WHERE [Code] = 'wen' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'xgn') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgn', 'Mongolian languages', NULL, 108.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Mongolian languages', [Definition] = NULL, [SortOrder] = 108.00 WHERE [Code] = 'xgn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'xnd') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnd', 'Na-Dene languages', NULL, 109.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Na-Dene languages', [Definition] = NULL, [SortOrder] = 109.00 WHERE [Code] = 'xnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'ypk') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypk', 'Yupik languages', NULL, 110.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Yupik languages', [Definition] = NULL, [SortOrder] = 110.00 WHERE [Code] = 'ypk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'zhx') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhx', 'Chinese (family)', NULL, 111.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Chinese (family)', [Definition] = NULL, [SortOrder] = 111.00 WHERE [Code] = 'zhx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'zle') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zle', 'East Slavic languages', NULL, 112.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'East Slavic languages', [Definition] = NULL, [SortOrder] = 112.00 WHERE [Code] = 'zle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'zls') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zls', 'South Slavic languages', NULL, 113.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'South Slavic languages', [Definition] = NULL, [SortOrder] = 113.00 WHERE [Code] = 'zls' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'zlw') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zlw', 'West Slavic languages', NULL, 114.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'West Slavic languages', [Definition] = NULL, [SortOrder] = 114.00 WHERE [Code] = 'zlw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6395LanguageFamily] WHERE [Code] = 'znd') BEGIN INSERT INTO dbo.[RefISO6395LanguageFamily]([Code], [Description], [Definition], [SortOrder]) -VALUES ('znd', 'Zande languages', NULL, 115.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6395LanguageFamily] -SET [Description] = 'Zande languages', [Definition] = NULL, [SortOrder] = 115.00 WHERE [Code] = 'znd' END -END - -PRINT N'Populate RefItemResponseTheoryDifficultyCategory table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefItemResponseTheoryDifficultyCategory]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefItemResponseTheoryDifficultyCategory] WHERE [Code] = 'None') BEGIN INSERT INTO dbo.[RefItemResponseTheoryDifficultyCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('None', 'None: 0', 'The category for the difficulty of the item based on the Item Response Theory value is None: 0', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefItemResponseTheoryDifficultyCategory] -SET [Description] = 'None: 0', [Definition] = 'The category for the difficulty of the item based on the Item Response Theory value is None: 0', [SortOrder] = 1.00 WHERE [Code] = 'None' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefItemResponseTheoryDifficultyCategory] WHERE [Code] = 'VeryLow') BEGIN INSERT INTO dbo.[RefItemResponseTheoryDifficultyCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VeryLow', 'Very low: 0.01 - 0.34', 'The category for the difficulty of the item based on the Item Response Theory value is Very low: 0.01 - 0.34', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefItemResponseTheoryDifficultyCategory] -SET [Description] = 'Very low: 0.01 - 0.34', [Definition] = 'The category for the difficulty of the item based on the Item Response Theory value is Very low: 0.01 - 0.34', [SortOrder] = 2.00 WHERE [Code] = 'VeryLow' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefItemResponseTheoryDifficultyCategory] WHERE [Code] = 'Low') BEGIN INSERT INTO dbo.[RefItemResponseTheoryDifficultyCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Low', 'Low: 0.35 - 0.64', 'The category for the difficulty of the item based on the Item Response Theory value is Low: 0.35 - 0.64', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefItemResponseTheoryDifficultyCategory] -SET [Description] = 'Low: 0.35 - 0.64', [Definition] = 'The category for the difficulty of the item based on the Item Response Theory value is Low: 0.35 - 0.64', [SortOrder] = 3.00 WHERE [Code] = 'Low' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefItemResponseTheoryDifficultyCategory] WHERE [Code] = 'Moderate') BEGIN INSERT INTO dbo.[RefItemResponseTheoryDifficultyCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Moderate', 'Moderate: 0.65 - 1.34', 'The category for the difficulty of the item based on the Item Response Theory value is Moderate: 0.65 - 1.34', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefItemResponseTheoryDifficultyCategory] -SET [Description] = 'Moderate: 0.65 - 1.34', [Definition] = 'The category for the difficulty of the item based on the Item Response Theory value is Moderate: 0.65 - 1.34', [SortOrder] = 4.00 WHERE [Code] = 'Moderate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefItemResponseTheoryDifficultyCategory] WHERE [Code] = 'High') BEGIN INSERT INTO dbo.[RefItemResponseTheoryDifficultyCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('High', 'High: 1.35 - 1.69', 'The category for the difficulty of the item based on the Item Response Theory value is High: 1.35 - 1.69', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefItemResponseTheoryDifficultyCategory] -SET [Description] = 'High: 1.35 - 1.69', [Definition] = 'The category for the difficulty of the item based on the Item Response Theory value is High: 1.35 - 1.69', [SortOrder] = 5.00 WHERE [Code] = 'High' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefItemResponseTheoryDifficultyCategory] WHERE [Code] = 'VeryHigh') BEGIN INSERT INTO dbo.[RefItemResponseTheoryDifficultyCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VeryHigh', 'Very high: > 1.70', 'The category for the difficulty of the item based on the Item Response Theory value is Very high: > 1.70', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefItemResponseTheoryDifficultyCategory] -SET [Description] = 'Very high: > 1.70', [Definition] = 'The category for the difficulty of the item based on the Item Response Theory value is Very high: > 1.70', [SortOrder] = 6.00 WHERE [Code] = 'VeryHigh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefItemResponseTheoryDifficultyCategory] WHERE [Code] = 'Perfect') BEGIN INSERT INTO dbo.[RefItemResponseTheoryDifficultyCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Perfect', 'Perfect: + infinity', 'The category for the difficulty of the item based on the Item Response Theory value is Perfect: + infinity', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefItemResponseTheoryDifficultyCategory] -SET [Description] = 'Perfect: + infinity', [Definition] = 'The category for the difficulty of the item based on the Item Response Theory value is Perfect: + infinity', [SortOrder] = 7.00 WHERE [Code] = 'Perfect' END -END - -PRINT N'Populate RefItemResponseTheoryKappaAlgorithm table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefItemResponseTheoryKappaAlgorithm]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefItemResponseTheoryKappaAlgorithm] WHERE [Code] = 'CohenUnweighted') BEGIN INSERT INTO dbo.[RefItemResponseTheoryKappaAlgorithm]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CohenUnweighted', 'Cohen''s unweighted algorithm', 'Cohen''s unweighted algorithm is specified as the algorithm used to derive the Assessment Item Kappa Value.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefItemResponseTheoryKappaAlgorithm] -SET [Description] = 'Cohen''s unweighted algorithm', [Definition] = 'Cohen''s unweighted algorithm is specified as the algorithm used to derive the Assessment Item Kappa Value.', [SortOrder] = 1.00 WHERE [Code] = 'CohenUnweighted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefItemResponseTheoryKappaAlgorithm] WHERE [Code] = 'CohenWeighted') BEGIN INSERT INTO dbo.[RefItemResponseTheoryKappaAlgorithm]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CohenWeighted', 'Cohen''s weighted algorithm', 'Cohen''s weighted algorithm is specified as the algorithm used to derive the Assessment Item Kappa Value.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefItemResponseTheoryKappaAlgorithm] -SET [Description] = 'Cohen''s weighted algorithm', [Definition] = 'Cohen''s weighted algorithm is specified as the algorithm used to derive the Assessment Item Kappa Value.', [SortOrder] = 2.00 WHERE [Code] = 'CohenWeighted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefItemResponseTheoryKappaAlgorithm] WHERE [Code] = 'FleissAlgorithm') BEGIN INSERT INTO dbo.[RefItemResponseTheoryKappaAlgorithm]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FleissAlgorithm', 'Fleiss algorithm', 'Fleiss algorithm is specified as the algorithm used to derive the Assessment Item Kappa Value.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefItemResponseTheoryKappaAlgorithm] -SET [Description] = 'Fleiss algorithm', [Definition] = 'Fleiss algorithm is specified as the algorithm used to derive the Assessment Item Kappa Value.', [SortOrder] = 3.00 WHERE [Code] = 'FleissAlgorithm' END -END - -PRINT N'Populate RefK12EndOfCourseRequirement table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefK12EndOfCourseRequirement]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12EndOfCourseRequirement] WHERE [Code] = 'LEAOnly') BEGIN INSERT INTO dbo.[RefK12EndOfCourseRequirement]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LEAOnly', 'LEA only', 'This course has an end of course examination required by the LEA only.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12EndOfCourseRequirement] -SET [Description] = 'LEA only', [Definition] = 'This course has an end of course examination required by the LEA only.', [SortOrder] = 1.00 WHERE [Code] = 'LEAOnly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12EndOfCourseRequirement] WHERE [Code] = 'SEAOnly') BEGIN INSERT INTO dbo.[RefK12EndOfCourseRequirement]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SEAOnly', 'SEA only', 'This course has an end of course examination required by the SEA only.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12EndOfCourseRequirement] -SET [Description] = 'SEA only', [Definition] = 'This course has an end of course examination required by the SEA only.', [SortOrder] = 3.00 WHERE [Code] = 'SEAOnly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12EndOfCourseRequirement] WHERE [Code] = 'Both') BEGIN INSERT INTO dbo.[RefK12EndOfCourseRequirement]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Both', 'LEA and SEA', 'This course has an end of course examination required by the LEA and SEA.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12EndOfCourseRequirement] -SET [Description] = 'LEA and SEA', [Definition] = 'This course has an end of course examination required by the LEA and SEA.', [SortOrder] = 5.00 WHERE [Code] = 'Both' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12EndOfCourseRequirement] WHERE [Code] = 'Neither') BEGIN INSERT INTO dbo.[RefK12EndOfCourseRequirement]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Neither', 'Neither LEA or SEA', 'This course has an end of course examination required by neither the LEA or SEA.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12EndOfCourseRequirement] -SET [Description] = 'Neither LEA or SEA', [Definition] = 'This course has an end of course examination required by neither the LEA or SEA.', [SortOrder] = 7.00 WHERE [Code] = 'Neither' END -END - -PRINT N'Populate RefK12LeaTitleISupportService table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefK12LeaTitleISupportService]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12LeaTitleISupportService] WHERE [Code] = 'HealthDentalEyeCare') BEGIN INSERT INTO dbo.[RefK12LeaTitleISupportService]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HealthDentalEyeCare', 'Health, Dental and Eye Care', 'Health, Dental and Eye Care is the type of support services provided to students in Title I programs.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12LeaTitleISupportService] -SET [Description] = 'Health, Dental and Eye Care', [Definition] = 'Health, Dental and Eye Care is the type of support services provided to students in Title I programs.', [SortOrder] = 1.00 WHERE [Code] = 'HealthDentalEyeCare' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12LeaTitleISupportService] WHERE [Code] = 'GuidanceAdvocacy') BEGIN INSERT INTO dbo.[RefK12LeaTitleISupportService]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GuidanceAdvocacy', 'Supporting Guidance/Advocacy', 'Supporting Guidance/Advocacy is the type of support services provided to students in Title I programs.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12LeaTitleISupportService] -SET [Description] = 'Supporting Guidance/Advocacy', [Definition] = 'Supporting Guidance/Advocacy is the type of support services provided to students in Title I programs.', [SortOrder] = 2.00 WHERE [Code] = 'GuidanceAdvocacy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12LeaTitleISupportService] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefK12LeaTitleISupportService]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Any other type of support services provided to students in Title I programs.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12LeaTitleISupportService] -SET [Description] = 'Other', [Definition] = 'Any other type of support services provided to students in Title I programs.', [SortOrder] = 3.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefK12ResponsibilityType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefK12ResponsibilityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'Accountability') BEGIN INSERT INTO dbo.[RefK12ResponsibilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Accountability', 'Accountability', 'The role/relationship type assigned to an organization, institution, or agency responsible for student learning under Federal ESEA and State accountability plans. (e.g. for AYP reporting)', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] -SET [Description] = 'Accountability', [Definition] = 'The role/relationship type assigned to an organization, institution, or agency responsible for student learning under Federal ESEA and State accountability plans. (e.g. for AYP reporting)', [SortOrder] = 1.00 WHERE [Code] = 'Accountability' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'Attendance') BEGIN INSERT INTO dbo.[RefK12ResponsibilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Attendance', 'Attendance', 'The role/relationship assigned to an organization, institution, or agency operating the physical or virtual site in which delivery of educational services take place.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] -SET [Description] = 'Attendance', [Definition] = 'The role/relationship assigned to an organization, institution, or agency operating the physical or virtual site in which delivery of educational services take place.', [SortOrder] = 2.00 WHERE [Code] = 'Attendance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'Funding') BEGIN INSERT INTO dbo.[RefK12ResponsibilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Funding', 'Funding', 'The role/relationship assigned to an organization, institution, or agency responsible for funding related to a student enrollment. ', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] -SET [Description] = 'Funding', [Definition] = 'The role/relationship assigned to an organization, institution, or agency responsible for funding related to a student enrollment. ', [SortOrder] = 3.00 WHERE [Code] = 'Funding' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'Graduation') BEGIN INSERT INTO dbo.[RefK12ResponsibilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Graduation', 'Graduation', 'The role/relationship assigned to an organization, institution, or agency responsible for issuing/awarding diplomas. (e.g. for graduation-rate reporting)', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] -SET [Description] = 'Graduation', [Definition] = 'The role/relationship assigned to an organization, institution, or agency responsible for issuing/awarding diplomas. (e.g. for graduation-rate reporting)', [SortOrder] = 4.00 WHERE [Code] = 'Graduation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'IndividualizedEducationProgram') BEGIN INSERT INTO dbo.[RefK12ResponsibilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IndividualizedEducationProgram', 'Individualized education program (IEP)', 'The role/relationship type assigned to an organization, institution, or agency responsible for creating and maintaining the student''s IEP, a written instructional plan for students with disabilities designated as special education students under the Individuals with Disabilities Education Act (IDEA-Part B) which includes: 1) a statement of present levels of educational performance of a child; 2) a statement of annual goals including short-term instructional objectives; 3) a statement of specific education and related services to be provided and the extent to which the child will be able to participate in regular educational programs; 4) a projected date for initiation and anticipated duration of services; and 5) appropriate objectives, criteria and evaluation procedures and schedules for determining, on at least an annual basis, whether instructional objectives are being achieved.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] -SET [Description] = 'Individualized education program (IEP)', [Definition] = 'The role/relationship type assigned to an organization, institution, or agency responsible for creating and maintaining the student''s IEP, a written instructional plan for students with disabilities designated as special education students under the Individuals with Disabilities Education Act (IDEA-Part B) which includes: 1) a statement of present levels of educational performance of a child; 2) a statement of annual goals including short-term instructional objectives; 3) a statement of specific education and related services to be provided and the extent to which the child will be able to participate in regular educational programs; 4) a projected date for initiation and anticipated duration of services; and 5) appropriate objectives, criteria and evaluation procedures and schedules for determining, on at least an annual basis, whether instructional objectives are being achieved.', [SortOrder] = 5.00 WHERE [Code] = 'IndividualizedEducationProgram' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'Transportation') BEGIN INSERT INTO dbo.[RefK12ResponsibilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Transportation', 'Transportation', 'The role/relationship type assigned to an organization, institution, or agency responsible for transporting the student to the physical location of the school or facility in which educational services are delivered.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] -SET [Description] = 'Transportation', [Definition] = 'The role/relationship type assigned to an organization, institution, or agency responsible for transporting the student to the physical location of the school or facility in which educational services are delivered.', [SortOrder] = 6.00 WHERE [Code] = 'Transportation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'IEPServiceProvider') BEGIN INSERT INTO dbo.[RefK12ResponsibilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IEPServiceProvider', 'Individualized education program service provider', 'The role/relationship type assigned to an organization, institution, or agency responsible for providing services to meet the requirements of the student''s Individualized Education Program (IEP).', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] -SET [Description] = 'Individualized education program service provider', [Definition] = 'The role/relationship type assigned to an organization, institution, or agency responsible for providing services to meet the requirements of the student''s Individualized Education Program (IEP).', [SortOrder] = 7.00 WHERE [Code] = 'IEPServiceProvider' END -END - -PRINT N'Populate RefK12StaffClassification table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefK12StaffClassification]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'AdministrativeSupportStaff') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdministrativeSupportStaff', 'Administrative Support Staff', 'Staff members who provide direct support to administrators, business office support, data processing, or support of the teaching and administrative duties of the office of the principal or department chairpersons, including clerical staff and secretaries.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Administrative Support Staff', [Definition] = 'Staff members who provide direct support to administrators, business office support, data processing, or support of the teaching and administrative duties of the office of the principal or department chairpersons, including clerical staff and secretaries.', [SortOrder] = 1.00 WHERE [Code] = 'AdministrativeSupportStaff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'Administrators') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Administrators', 'Administrators', 'Executive officers or managers of education agencies or institutions, including superintendents, deputies, and assistant superintendents; other persons with district-wide responsibilities: e.g., business managers, administrative assistants, and professional instructional support staff. In addition, staff members whose activities are concerned with directing and managing the operation of a particular school including principals, assistant principals, and other assistants; persons who supervise school operations, assign duties to staff members, supervise and maintain the records of the school, and coordinate school instructional activities with those of the education agency, including department chairpersons.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Administrators', [Definition] = 'Executive officers or managers of education agencies or institutions, including superintendents, deputies, and assistant superintendents; other persons with district-wide responsibilities: e.g., business managers, administrative assistants, and professional instructional support staff. In addition, staff members whose activities are concerned with directing and managing the operation of a particular school including principals, assistant principals, and other assistants; persons who supervise school operations, assign duties to staff members, supervise and maintain the records of the school, and coordinate school instructional activities with those of the education agency, including department chairpersons.', [SortOrder] = 3.00 WHERE [Code] = 'Administrators' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'AllOtherSupportStaff') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AllOtherSupportStaff', 'All Other Support Staff ', 'Support staff not reported in instructional or student support. Other support staff includes employees such as data processing, health, plant and equipment maintenance, bus drivers, security, and food service workers.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'All Other Support Staff ', [Definition] = 'Support staff not reported in instructional or student support. Other support staff includes employees such as data processing, health, plant and equipment maintenance, bus drivers, security, and food service workers.', [SortOrder] = 5.00 WHERE [Code] = 'AllOtherSupportStaff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'BehavioralSpecialists') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BehavioralSpecialists', 'Behavioral Specialists', 'Behavioral Specialists', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Behavioral Specialists', [Definition] = 'Behavioral Specialists', [SortOrder] = 7.00 WHERE [Code] = 'BehavioralSpecialists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'ELAssistantTeachers') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ELAssistantTeachers', 'Early Learning Assistant Teachers', 'Assistant Teachers of general level instruction and/or services delivery classified by state and local practice from birth to Kindergarten.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Early Learning Assistant Teachers', [Definition] = 'Assistant Teachers of general level instruction and/or services delivery classified by state and local practice from birth to Kindergarten.', [SortOrder] = 9.00 WHERE [Code] = 'ELAssistantTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'ELTeachers') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ELTeachers', 'Early Learning Teachers', 'Teachers of general level instruction and/or service delivery classified by state and local practice from birth to Kindergarten.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Early Learning Teachers', [Definition] = 'Teachers of general level instruction and/or service delivery classified by state and local practice from birth to Kindergarten.', [SortOrder] = 10.00 WHERE [Code] = 'ELTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'ElementaryTeachers') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ElementaryTeachers', 'Elementary Teachers', 'Teachers of general level instruction classified by state and local practice as elementary and composed of any span of grades not above grade 8.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Elementary Teachers', [Definition] = 'Teachers of general level instruction classified by state and local practice as elementary and composed of any span of grades not above grade 8.', [SortOrder] = 11.00 WHERE [Code] = 'ElementaryTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'FamilyServiceWorkers') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FamilyServiceWorkers', 'Family Service Workers', 'Professional staff members assigned specific duties related to staff providing in-home and other services (including needs assessment, development of service plans, family advocacy, and coordination of service delivery) to families of children participating in early care and education programs.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Family Service Workers', [Definition] = 'Professional staff members assigned specific duties related to staff providing in-home and other services (including needs assessment, development of service plans, family advocacy, and coordination of service delivery) to families of children participating in early care and education programs.', [SortOrder] = 15.00 WHERE [Code] = 'FamilyServiceWorkers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'HealthSpecialists') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HealthSpecialists', 'Health Specialists', 'Professional staff members or supervisors assigned specific duties related to providing any Health services that are not specific to mental health.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Health Specialists', [Definition] = 'Professional staff members or supervisors assigned specific duties related to providing any Health services that are not specific to mental health.', [SortOrder] = 17.00 WHERE [Code] = 'HealthSpecialists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'HomeVisitors') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HomeVisitors', 'Home Visitors', 'Professional staff members assigned specific duties related to visiting a child or pregnant woman''s home for the purpose of assisting parents in fostering the growth and development of their child.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Home Visitors', [Definition] = 'Professional staff members assigned specific duties related to visiting a child or pregnant woman''s home for the purpose of assisting parents in fostering the growth and development of their child.', [SortOrder] = 19.00 WHERE [Code] = 'HomeVisitors' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'InstructionalCoordinators') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InstructionalCoordinators', 'Instructional Coordinators', 'Staff supervising instruction programs including: professional staff members or supervisors in an early learning program assigned specific duties related to instruction; supervisors at a school district or sub-district level including curricular coordinators or supervisors; in-service training staff; Title I supervisors; home economics supervisors; educational television staff; coordinators and supervisors of audiovisual services; and staff engaged in development of computer-assisted instruction.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Instructional Coordinators', [Definition] = 'Staff supervising instruction programs including: professional staff members or supervisors in an early learning program assigned specific duties related to instruction; supervisors at a school district or sub-district level including curricular coordinators or supervisors; in-service training staff; Title I supervisors; home economics supervisors; educational television staff; coordinators and supervisors of audiovisual services; and staff engaged in development of computer-assisted instruction.', [SortOrder] = 21.00 WHERE [Code] = 'InstructionalCoordinators' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'KindergartenTeachers') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KindergartenTeachers', 'Kindergarten Teachers', 'Teachers of a group or class that is part of a public school program and is taught during the year preceding the first grade.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Kindergarten Teachers', [Definition] = 'Teachers of a group or class that is part of a public school program and is taught during the year preceding the first grade.', [SortOrder] = 23.00 WHERE [Code] = 'KindergartenTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'LibraryMediaSpecialists') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LibraryMediaSpecialists', 'Librarians/Media Specialists', 'A professional staff member or supervisor assigned specific duties and school time for professional library and media service activities. Activities include: selecting, acquiring, preparing, cataloging, and circulating books and other printed materials; planning the use of library and media services by students, teachers and other members of the instructional staff; and guiding individuals in their use of media services and library materials, (whether maintained separately or as part of an instructional materials center).', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Librarians/Media Specialists', [Definition] = 'A professional staff member or supervisor assigned specific duties and school time for professional library and media service activities. Activities include: selecting, acquiring, preparing, cataloging, and circulating books and other printed materials; planning the use of library and media services by students, teachers and other members of the instructional staff; and guiding individuals in their use of media services and library materials, (whether maintained separately or as part of an instructional materials center).', [SortOrder] = 25.00 WHERE [Code] = 'LibraryMediaSpecialists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'LibraryMediaSupportStaff') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LibraryMediaSupportStaff', 'Library/Media Support Staff', 'Staff members who render other library or media services, such as preparing, caring for, and making available to members of the instructional staff the equipment, films, filmstrips, transparencies, tapes, TV programs, and similar materials (whether maintained separately as part of an instructional materials center).', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Library/Media Support Staff', [Definition] = 'Staff members who render other library or media services, such as preparing, caring for, and making available to members of the instructional staff the equipment, films, filmstrips, transparencies, tapes, TV programs, and similar materials (whether maintained separately as part of an instructional materials center).', [SortOrder] = 27.00 WHERE [Code] = 'LibraryMediaSupportStaff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'MentalHealthSpecialists') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MentalHealthSpecialists', 'Mental Health Specialists', 'Professional staff members or supervisors assigned specific duties related to Mental Health.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Mental Health Specialists', [Definition] = 'Professional staff members or supervisors assigned specific duties related to Mental Health.', [SortOrder] = 29.00 WHERE [Code] = 'MentalHealthSpecialists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'NutritionSpecialists') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NutritionSpecialists', 'Nutrition Specialists', 'Professional staff members or supervisors assigned specific duties related to Nutrition.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Nutrition Specialists', [Definition] = 'Professional staff members or supervisors assigned specific duties related to Nutrition.', [SortOrder] = 31.00 WHERE [Code] = 'NutritionSpecialists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'Paraprofessionals') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Paraprofessionals', 'Paraprofessionals', 'Paraprofessionals are employees who provide instructional support, including those who: (1) provide one-on-one tutoring if such tutoring is scheduled at a time when a student would not otherwise receive instruction from a teacher, (2) assist with classroom management, such as organizing instructional and other materials, (3) provide instructional assistance in a computer laboratory, (4) conduct parental involvement activities, (5) provide support in a library or media center, (6) act as a translator, or (7) provide instructional support services under the direct supervision of a teacher.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Paraprofessionals', [Definition] = 'Paraprofessionals are employees who provide instructional support, including those who: (1) provide one-on-one tutoring if such tutoring is scheduled at a time when a student would not otherwise receive instruction from a teacher, (2) assist with classroom management, such as organizing instructional and other materials, (3) provide instructional assistance in a computer laboratory, (4) conduct parental involvement activities, (5) provide support in a library or media center, (6) act as a translator, or (7) provide instructional support services under the direct supervision of a teacher.', [SortOrder] = 35.00 WHERE [Code] = 'Paraprofessionals' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'PartCEarlyInterventionists') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartCEarlyInterventionists', 'Part C Early Interventionists', 'Professional staff members employed to provide early intervention services to infants and toddlers with disabilities or at-risk of experiencing a substantial developmental delay as defined by Part C of the Individuals with Disabilities Education Act (IDEA): The Early Intervention Program for Infants and Toddlers with Disabilities.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Part C Early Interventionists', [Definition] = 'Professional staff members employed to provide early intervention services to infants and toddlers with disabilities or at-risk of experiencing a substantial developmental delay as defined by Part C of the Individuals with Disabilities Education Act (IDEA): The Early Intervention Program for Infants and Toddlers with Disabilities.', [SortOrder] = 37.00 WHERE [Code] = 'PartCEarlyInterventionists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'PartCServiceCoordinators') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartCServiceCoordinators', 'Part C Service Coordinators', 'Professional staff members employed to coordinate early intervention services to infants and toddlers with disabilities or at-risk of experiencing a substantial developmental delay as defined by Part C of the Individuals with Disabilities Education Act (IDEA): The Early Intervention Program for Infants and Toddlers with Disabilities.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Part C Service Coordinators', [Definition] = 'Professional staff members employed to coordinate early intervention services to infants and toddlers with disabilities or at-risk of experiencing a substantial developmental delay as defined by Part C of the Individuals with Disabilities Education Act (IDEA): The Early Intervention Program for Infants and Toddlers with Disabilities.', [SortOrder] = 39.00 WHERE [Code] = 'PartCServiceCoordinators' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'SchoolCounselors') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SchoolCounselors', 'School Counselors', 'Professional staff members assigned specific duties and school time for any of the following activities: counseling with students and parents, consulting with other staff members on learning problems, evaluating student abilities, assisting students in making education and career choices, assisting students in personal and social development, providing referral assistance, and/or working with other staff members in planning and conducting guidance programs for students. School counselors may be reported by elementary and secondary level when that information is available.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'School Counselors', [Definition] = 'Professional staff members assigned specific duties and school time for any of the following activities: counseling with students and parents, consulting with other staff members on learning problems, evaluating student abilities, assisting students in making education and career choices, assisting students in personal and social development, providing referral assistance, and/or working with other staff members in planning and conducting guidance programs for students. School counselors may be reported by elementary and secondary level when that information is available.', [SortOrder] = 41.00 WHERE [Code] = 'SchoolCounselors' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'SecondaryTeachers') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SecondaryTeachers', 'Secondary Teachers', 'Teachers of a general level of instruction classified by state and local practice as secondary and composed of any span of grades beginning with the next grade following the elementary grades and ending with or below grade 12.', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Secondary Teachers', [Definition] = 'Teachers of a general level of instruction classified by state and local practice as secondary and composed of any span of grades beginning with the next grade following the elementary grades and ending with or below grade 12.', [SortOrder] = 43.00 WHERE [Code] = 'SecondaryTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'SocialWorkers') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SocialWorkers', 'Social Workers', 'Social workers assist people by helping them cope with and solve issues in their everyday lives, such as family and personal problems and dealing with relationships. ', 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Social Workers', [Definition] = 'Social workers assist people by helping them cope with and solve issues in their everyday lives, such as family and personal problems and dealing with relationships. ', [SortOrder] = 45.00 WHERE [Code] = 'SocialWorkers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'SpecialEducationTeachers') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpecialEducationTeachers', 'Special Education Teachers', 'Special Education teachers include teachers employed to provide special education services to children with disabilities, including preschool teachers, itinerant/consulting teachers, and home/hospital teachers. This should include teachers of children with disabilities in separate schools and facilities.', 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Special Education Teachers', [Definition] = 'Special Education teachers include teachers employed to provide special education services to children with disabilities, including preschool teachers, itinerant/consulting teachers, and home/hospital teachers. This should include teachers of children with disabilities in separate schools and facilities.', [SortOrder] = 47.00 WHERE [Code] = 'SpecialEducationTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'SpecialNeedsSpecialists') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpecialNeedsSpecialists', 'Special Needs Specialists', 'Professional staff members or supervisors assigned specific duties related to special needs learners.', 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Special Needs Specialists', [Definition] = 'Professional staff members or supervisors assigned specific duties related to special needs learners.', [SortOrder] = 49.00 WHERE [Code] = 'SpecialNeedsSpecialists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'StudentSupportServicesStaff') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StudentSupportServicesStaff', 'Student Support Services Staff', 'Professional and supervisory staff providing non-instructional services to students and supervisors of the preceding staff and of health, transportation, and food service workers.', 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Student Support Services Staff', [Definition] = 'Professional and supervisory staff providing non-instructional services to students and supervisors of the preceding staff and of health, transportation, and food service workers.', [SortOrder] = 51.00 WHERE [Code] = 'StudentSupportServicesStaff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'UngradedTeachers') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UngradedTeachers', 'Ungraded Teachers', 'Teachers of classes or programs to which students are assigned without standard grade designation.', 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Ungraded Teachers', [Definition] = 'Teachers of classes or programs to which students are assigned without standard grade designation.', [SortOrder] = 53.00 WHERE [Code] = 'UngradedTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'PrekindergartenTeachers') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrekindergartenTeachers', 'Pre-kindergarten Teachers', 'Teachers of a group or class that is part of a public school program that is taught during the year or years preceding kindergarten.', 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'Pre-kindergarten Teachers', [Definition] = 'Teachers of a group or class that is part of a public school program that is taught during the year or years preceding kindergarten.', [SortOrder] = 54.00 WHERE [Code] = 'PrekindergartenTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12StaffClassification] WHERE [Code] = 'SchoolPsychologist') BEGIN INSERT INTO dbo.[RefK12StaffClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SchoolPsychologist', 'School Psychologist', 'Professional staff member who provides direct and indirect support, including prevention and intervention, to evaluate and address student''s intellectual development, academic success, social-emotional learning, and mental and behavioral health.', 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12StaffClassification] -SET [Description] = 'School Psychologist', [Definition] = 'Professional staff member who provides direct and indirect support, including prevention and intervention, to evaluate and address student''s intellectual development, academic success, social-emotional learning, and mental and behavioral health.', [SortOrder] = 55.00 WHERE [Code] = 'SchoolPsychologist' END -END - -PRINT N'Populate RefLanguage table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLanguage]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'abk') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abk', 'Abkhazian', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Abkhazian', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'abk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ace') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ace', 'Achinese', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Achinese', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'ace' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ach') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ach', 'Acoli', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Acoli', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'ach' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ada') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ada', 'Adangme', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Adangme', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'ada' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ady') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ady', 'Adyghe; Adygei', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Adyghe; Adygei', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = 'ady' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'aar') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aar', 'Afar', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Afar', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = 'aar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'afh') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afh', 'Afrihili', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Afrihili', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = 'afh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'afr') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afr', 'Afrikaans', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Afrikaans', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = 'afr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'afa') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afa', 'Afro-Asiatic languages', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Afro-Asiatic languages', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = 'afa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ain') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ain', 'Ainu', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ainu', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = 'ain' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'aka') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aka', 'Akan', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Akan', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = 'aka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'akk') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akk', 'Akkadian', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Akkadian', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = 'akk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'alb') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alb', 'Albanian', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Albanian', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = 'alb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ale') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ale', 'Aleut', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Aleut', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = 'ale' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'alg') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alg', 'Algonquian languages', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Algonquian languages', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = 'alg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tut') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tut', 'Altaic languages', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Altaic languages', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = 'tut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'amh') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amh', 'Amharic', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Amharic', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = 'amh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'anp') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anp', 'Angika', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Angika', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = 'anp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'apa') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apa', 'Apache languages', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Apache languages', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = 'apa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ara') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ara', 'Arabic', NULL, 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Arabic', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = 'ara' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'arg') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arg', 'Aragonese', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Aragonese', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = 'arg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'arp') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arp', 'Arapaho', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Arapaho', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = 'arp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'arw') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arw', 'Arawak', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Arawak', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = 'arw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'arm') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arm', 'Armenian', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Armenian', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = 'arm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'rup') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rup', 'Aromanian; Arumanian; Macedo-Romanian', NULL, 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Aromanian; Arumanian; Macedo-Romanian', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = 'rup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'art') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('art', 'Artificial languages', NULL, 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Artificial languages', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = 'art' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'asm') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asm', 'Assamese', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Assamese', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = 'asm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ast') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ast', 'Asturian; Bable; Leonese; Asturleonese', NULL, 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Asturian; Bable; Leonese; Asturleonese', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = 'ast' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ath') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ath', 'Athapascan languages', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Athapascan languages', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = 'ath' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'aus') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aus', 'Australian languages', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Australian languages', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = 'aus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'map') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('map', 'Austronesian languages', NULL, 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Austronesian languages', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = 'map' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ava') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ava', 'Avaric', NULL, 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Avaric', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = 'ava' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ave') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ave', 'Avestan', NULL, 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Avestan', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = 'ave' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'awa') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awa', 'Awadhi', NULL, 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Awadhi', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = 'awa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'aym') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aym', 'Aymara', NULL, 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Aymara', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = 'aym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'aze') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aze', 'Azerbaijani', NULL, 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Azerbaijani', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = 'aze' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ban') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ban', 'Balinese', NULL, 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Balinese', [Definition] = NULL, [SortOrder] = 37.00 WHERE [Code] = 'ban' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bat') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bat', 'Baltic languages', NULL, 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Baltic languages', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = 'bat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bal') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bal', 'Baluchi', NULL, 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Baluchi', [Definition] = NULL, [SortOrder] = 39.00 WHERE [Code] = 'bal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bam') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bam', 'Bambara', NULL, 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Bambara', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = 'bam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bai') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bai', 'Bamileke languages', NULL, 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Bamileke languages', [Definition] = NULL, [SortOrder] = 41.00 WHERE [Code] = 'bai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bad') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bad', 'Banda languages', NULL, 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Banda languages', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = 'bad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bnt') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnt', 'Bantu languages', NULL, 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Bantu languages', [Definition] = NULL, [SortOrder] = 43.00 WHERE [Code] = 'bnt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bas') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bas', 'Basa', NULL, 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Basa', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = 'bas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bak') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bak', 'Bashkir', NULL, 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Bashkir', [Definition] = NULL, [SortOrder] = 45.00 WHERE [Code] = 'bak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'baq') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baq', 'Basque', NULL, 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Basque', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = 'baq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'btk') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btk', 'Batak languages', NULL, 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Batak languages', [Definition] = NULL, [SortOrder] = 47.00 WHERE [Code] = 'btk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bej') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bej', 'Beja; Bedawiyet', NULL, 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Beja; Bedawiyet', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = 'bej' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bel') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bel', 'Belarusian', NULL, 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Belarusian', [Definition] = NULL, [SortOrder] = 49.00 WHERE [Code] = 'bel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bem') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bem', 'Bemba', NULL, 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Bemba', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = 'bem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ben') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ben', 'Bengali', NULL, 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Bengali', [Definition] = NULL, [SortOrder] = 51.00 WHERE [Code] = 'ben' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ber') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ber', 'Berber languages', NULL, 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Berber languages', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = 'ber' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bho') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bho', 'Bhojpuri', NULL, 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Bhojpuri', [Definition] = NULL, [SortOrder] = 53.00 WHERE [Code] = 'bho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bih') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bih', 'Bihari languages', NULL, 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Bihari languages', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = 'bih' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bik') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bik', 'Bikol', NULL, 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Bikol', [Definition] = NULL, [SortOrder] = 55.00 WHERE [Code] = 'bik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bin') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bin', 'Bini; Edo', NULL, 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Bini; Edo', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = 'bin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bis') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bis', 'Bislama', NULL, 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Bislama', [Definition] = NULL, [SortOrder] = 57.00 WHERE [Code] = 'bis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'byn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byn', 'Blin; Bilin', NULL, 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Blin; Bilin', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = 'byn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'zbl') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbl', 'Blissymbols; Blissymbolics; Bliss', NULL, 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Blissymbols; Blissymbolics; Bliss', [Definition] = NULL, [SortOrder] = 59.00 WHERE [Code] = 'zbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nob') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nob', 'Bokmål, Norwegian; Norwegian Bokmål', NULL, 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Bokmål, Norwegian; Norwegian Bokmål', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = 'nob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bos') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bos', 'Bosnian', NULL, 61.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Bosnian', [Definition] = NULL, [SortOrder] = 61.00 WHERE [Code] = 'bos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bra') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bra', 'Braj', NULL, 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Braj', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = 'bra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bre') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bre', 'Breton', NULL, 63.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Breton', [Definition] = NULL, [SortOrder] = 63.00 WHERE [Code] = 'bre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bug') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bug', 'Buginese', NULL, 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Buginese', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = 'bug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bul') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bul', 'Bulgarian', NULL, 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Bulgarian', [Definition] = NULL, [SortOrder] = 65.00 WHERE [Code] = 'bul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bua') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bua', 'Buriat', NULL, 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Buriat', [Definition] = NULL, [SortOrder] = 66.00 WHERE [Code] = 'bua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bur') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bur', 'Burmese', NULL, 67.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Burmese', [Definition] = NULL, [SortOrder] = 67.00 WHERE [Code] = 'bur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cad') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cad', 'Caddo', NULL, 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Caddo', [Definition] = NULL, [SortOrder] = 68.00 WHERE [Code] = 'cad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cat') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cat', 'Catalan; Valencian', NULL, 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Catalan; Valencian', [Definition] = NULL, [SortOrder] = 69.00 WHERE [Code] = 'cat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cau') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cau', 'Caucasian languages', NULL, 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Caucasian languages', [Definition] = NULL, [SortOrder] = 70.00 WHERE [Code] = 'cau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ceb') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ceb', 'Cebuano', NULL, 71.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Cebuano', [Definition] = NULL, [SortOrder] = 71.00 WHERE [Code] = 'ceb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cel') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cel', 'Celtic languages', NULL, 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Celtic languages', [Definition] = NULL, [SortOrder] = 72.00 WHERE [Code] = 'cel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cai') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cai', 'Central American Indian languages', NULL, 73.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Central American Indian languages', [Definition] = NULL, [SortOrder] = 73.00 WHERE [Code] = 'cai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'khm') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khm', 'Central Khmer', NULL, 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Central Khmer', [Definition] = NULL, [SortOrder] = 74.00 WHERE [Code] = 'khm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'chg') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chg', 'Chagatai', NULL, 75.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Chagatai', [Definition] = NULL, [SortOrder] = 75.00 WHERE [Code] = 'chg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cmc') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmc', 'Chamic languages', NULL, 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Chamic languages', [Definition] = NULL, [SortOrder] = 76.00 WHERE [Code] = 'cmc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cha') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cha', 'Chamorro', NULL, 77.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Chamorro', [Definition] = NULL, [SortOrder] = 77.00 WHERE [Code] = 'cha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'che') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('che', 'Chechen', NULL, 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Chechen', [Definition] = NULL, [SortOrder] = 78.00 WHERE [Code] = 'che' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'chr') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chr', 'Cherokee', NULL, 79.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Cherokee', [Definition] = NULL, [SortOrder] = 79.00 WHERE [Code] = 'chr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'chy') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chy', 'Cheyenne', NULL, 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Cheyenne', [Definition] = NULL, [SortOrder] = 80.00 WHERE [Code] = 'chy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'chb') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chb', 'Chibcha', NULL, 81.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Chibcha', [Definition] = NULL, [SortOrder] = 81.00 WHERE [Code] = 'chb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nya') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nya', 'Chichewa; Chewa; Nyanja', NULL, 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Chichewa; Chewa; Nyanja', [Definition] = NULL, [SortOrder] = 82.00 WHERE [Code] = 'nya' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'chi') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chi', 'Chinese', NULL, 83.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Chinese', [Definition] = NULL, [SortOrder] = 83.00 WHERE [Code] = 'chi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'chn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chn', 'Chinook jargon', NULL, 84.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Chinook jargon', [Definition] = NULL, [SortOrder] = 84.00 WHERE [Code] = 'chn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'chp') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chp', 'Chipewyan; Dene Suline', NULL, 85.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Chipewyan; Dene Suline', [Definition] = NULL, [SortOrder] = 85.00 WHERE [Code] = 'chp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cho') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cho', 'Choctaw', NULL, 86.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Choctaw', [Definition] = NULL, [SortOrder] = 86.00 WHERE [Code] = 'cho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'chu') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chu', 'Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic', NULL, 87.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic', [Definition] = NULL, [SortOrder] = 87.00 WHERE [Code] = 'chu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'chk') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chk', 'Chuukese', NULL, 88.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Chuukese', [Definition] = NULL, [SortOrder] = 88.00 WHERE [Code] = 'chk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'chv') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chv', 'Chuvash', NULL, 89.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Chuvash', [Definition] = NULL, [SortOrder] = 89.00 WHERE [Code] = 'chv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nwc') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwc', 'Classical Newari; Old Newari; Classical Nepal Bhasa', NULL, 90.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Classical Newari; Old Newari; Classical Nepal Bhasa', [Definition] = NULL, [SortOrder] = 90.00 WHERE [Code] = 'nwc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'syc') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syc', 'Classical Syriac', NULL, 91.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Classical Syriac', [Definition] = NULL, [SortOrder] = 91.00 WHERE [Code] = 'syc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cop') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cop', 'Coptic', NULL, 92.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Coptic', [Definition] = NULL, [SortOrder] = 92.00 WHERE [Code] = 'cop' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cor') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cor', 'Cornish', NULL, 93.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Cornish', [Definition] = NULL, [SortOrder] = 93.00 WHERE [Code] = 'cor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cos') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cos', 'Corsican', NULL, 94.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Corsican', [Definition] = NULL, [SortOrder] = 94.00 WHERE [Code] = 'cos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cre') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cre', 'Cree', NULL, 95.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Cree', [Definition] = NULL, [SortOrder] = 95.00 WHERE [Code] = 'cre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mus') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mus', 'Creek', NULL, 96.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Creek', [Definition] = NULL, [SortOrder] = 96.00 WHERE [Code] = 'mus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'crp') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crp', 'Creoles and pidgins ', NULL, 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Creoles and pidgins ', [Definition] = NULL, [SortOrder] = 97.00 WHERE [Code] = 'crp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cpe') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpe', 'Creoles and pidgins, English based', NULL, 98.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Creoles and pidgins, English based', [Definition] = NULL, [SortOrder] = 98.00 WHERE [Code] = 'cpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cpf') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpf', 'Creoles and pidgins, French-based', NULL, 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Creoles and pidgins, French-based', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = 'cpf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cpp') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpp', 'Creoles and pidgins, Portuguese-based', NULL, 100.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Creoles and pidgins, Portuguese-based', [Definition] = NULL, [SortOrder] = 100.00 WHERE [Code] = 'cpp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'crh') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crh', 'Crimean Tatar; Crimean Turkish', NULL, 101.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Crimean Tatar; Crimean Turkish', [Definition] = NULL, [SortOrder] = 101.00 WHERE [Code] = 'crh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'hrv') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrv', 'Croatian', NULL, 102.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Croatian', [Definition] = NULL, [SortOrder] = 102.00 WHERE [Code] = 'hrv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cus') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cus', 'Cushitic languages', NULL, 103.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Cushitic languages', [Definition] = NULL, [SortOrder] = 103.00 WHERE [Code] = 'cus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cze') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cze', 'Czech', NULL, 104.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Czech', [Definition] = NULL, [SortOrder] = 104.00 WHERE [Code] = 'cze' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'dak') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dak', 'Dakota', NULL, 105.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Dakota', [Definition] = NULL, [SortOrder] = 105.00 WHERE [Code] = 'dak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'dan') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dan', 'Danish', NULL, 106.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Danish', [Definition] = NULL, [SortOrder] = 106.00 WHERE [Code] = 'dan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'dar') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dar', 'Dargwa', NULL, 107.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Dargwa', [Definition] = NULL, [SortOrder] = 107.00 WHERE [Code] = 'dar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'del') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('del', 'Delaware', NULL, 108.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Delaware', [Definition] = NULL, [SortOrder] = 108.00 WHERE [Code] = 'del' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'din') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('din', 'Dinka', NULL, 109.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Dinka', [Definition] = NULL, [SortOrder] = 109.00 WHERE [Code] = 'din' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'div') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('div', 'Divehi; Dhivehi; Maldivian', NULL, 110.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Divehi; Dhivehi; Maldivian', [Definition] = NULL, [SortOrder] = 110.00 WHERE [Code] = 'div' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'doi') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doi', 'Dogri', NULL, 111.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Dogri', [Definition] = NULL, [SortOrder] = 111.00 WHERE [Code] = 'doi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'dgr') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgr', 'Dogrib', NULL, 112.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Dogrib', [Definition] = NULL, [SortOrder] = 112.00 WHERE [Code] = 'dgr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'dra') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dra', 'Dravidian languages', NULL, 113.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Dravidian languages', [Definition] = NULL, [SortOrder] = 113.00 WHERE [Code] = 'dra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'dua') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dua', 'Duala', NULL, 114.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Duala', [Definition] = NULL, [SortOrder] = 114.00 WHERE [Code] = 'dua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'dum') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dum', 'Dutch, Middle (ca.1050-1350)', NULL, 115.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Dutch, Middle (ca.1050-1350)', [Definition] = NULL, [SortOrder] = 115.00 WHERE [Code] = 'dum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'dut') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dut', 'Dutch; Flemish', NULL, 116.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Dutch; Flemish', [Definition] = NULL, [SortOrder] = 116.00 WHERE [Code] = 'dut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'dyu') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyu', 'Dyula', NULL, 117.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Dyula', [Definition] = NULL, [SortOrder] = 117.00 WHERE [Code] = 'dyu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'dzo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzo', 'Dzongkha', NULL, 118.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Dzongkha', [Definition] = NULL, [SortOrder] = 118.00 WHERE [Code] = 'dzo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'frs') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frs', 'Eastern Frisian', NULL, 119.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Eastern Frisian', [Definition] = NULL, [SortOrder] = 119.00 WHERE [Code] = 'frs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'efi') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('efi', 'Efik', NULL, 120.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Efik', [Definition] = NULL, [SortOrder] = 120.00 WHERE [Code] = 'efi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'egy') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('egy', 'Egyptian (Ancient)', NULL, 121.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Egyptian (Ancient)', [Definition] = NULL, [SortOrder] = 121.00 WHERE [Code] = 'egy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'eka') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eka', 'Ekajuk', NULL, 122.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ekajuk', [Definition] = NULL, [SortOrder] = 122.00 WHERE [Code] = 'eka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'elx') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elx', 'Elamite', NULL, 123.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Elamite', [Definition] = NULL, [SortOrder] = 123.00 WHERE [Code] = 'elx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'eng') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eng', 'English', NULL, 124.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'English', [Definition] = NULL, [SortOrder] = 124.00 WHERE [Code] = 'eng' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'enm') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enm', 'English, Middle (1100-1500)', NULL, 125.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'English, Middle (1100-1500)', [Definition] = NULL, [SortOrder] = 125.00 WHERE [Code] = 'enm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ang') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ang', 'English, Old (ca.450-1100)', NULL, 126.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'English, Old (ca.450-1100)', [Definition] = NULL, [SortOrder] = 126.00 WHERE [Code] = 'ang' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'myv') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myv', 'Erzya', NULL, 127.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Erzya', [Definition] = NULL, [SortOrder] = 127.00 WHERE [Code] = 'myv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'epo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('epo', 'Esperanto', NULL, 128.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Esperanto', [Definition] = NULL, [SortOrder] = 128.00 WHERE [Code] = 'epo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'est') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('est', 'Estonian', NULL, 129.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Estonian', [Definition] = NULL, [SortOrder] = 129.00 WHERE [Code] = 'est' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ewe') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ewe', 'Ewe', NULL, 130.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ewe', [Definition] = NULL, [SortOrder] = 130.00 WHERE [Code] = 'ewe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ewo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ewo', 'Ewondo', NULL, 131.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ewondo', [Definition] = NULL, [SortOrder] = 131.00 WHERE [Code] = 'ewo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'fan') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fan', 'Fang', NULL, 132.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Fang', [Definition] = NULL, [SortOrder] = 132.00 WHERE [Code] = 'fan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'fat') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fat', 'Fanti', NULL, 133.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Fanti', [Definition] = NULL, [SortOrder] = 133.00 WHERE [Code] = 'fat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'fao') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fao', 'Faroese', NULL, 134.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Faroese', [Definition] = NULL, [SortOrder] = 134.00 WHERE [Code] = 'fao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'fij') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fij', 'Fijian', NULL, 135.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Fijian', [Definition] = NULL, [SortOrder] = 135.00 WHERE [Code] = 'fij' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'fil') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fil', 'Filipino; Pilipino', NULL, 136.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Filipino; Pilipino', [Definition] = NULL, [SortOrder] = 136.00 WHERE [Code] = 'fil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'fin') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fin', 'Finnish', NULL, 137.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Finnish', [Definition] = NULL, [SortOrder] = 137.00 WHERE [Code] = 'fin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'fiu') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fiu', 'Finno-Ugrian languages', NULL, 138.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Finno-Ugrian languages', [Definition] = NULL, [SortOrder] = 138.00 WHERE [Code] = 'fiu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'fon') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fon', 'Fon', NULL, 139.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Fon', [Definition] = NULL, [SortOrder] = 139.00 WHERE [Code] = 'fon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'fre') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fre', 'French', NULL, 140.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'French', [Definition] = NULL, [SortOrder] = 140.00 WHERE [Code] = 'fre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'frm') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frm', 'French, Middle (ca.1400-1600)', NULL, 141.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'French, Middle (ca.1400-1600)', [Definition] = NULL, [SortOrder] = 141.00 WHERE [Code] = 'frm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'fro') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fro', 'French, Old (842-ca.1400)', NULL, 142.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'French, Old (842-ca.1400)', [Definition] = NULL, [SortOrder] = 142.00 WHERE [Code] = 'fro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'fur') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fur', 'Friulian', NULL, 143.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Friulian', [Definition] = NULL, [SortOrder] = 143.00 WHERE [Code] = 'fur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ful') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ful', 'Fulah', NULL, 144.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Fulah', [Definition] = NULL, [SortOrder] = 144.00 WHERE [Code] = 'ful' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'gaa') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaa', 'Ga', NULL, 145.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ga', [Definition] = NULL, [SortOrder] = 145.00 WHERE [Code] = 'gaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'gla') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gla', 'Gaelic; Scottish Gaelic', NULL, 146.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Gaelic; Scottish Gaelic', [Definition] = NULL, [SortOrder] = 146.00 WHERE [Code] = 'gla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'car') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('car', 'Galibi Carib', NULL, 147.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Galibi Carib', [Definition] = NULL, [SortOrder] = 147.00 WHERE [Code] = 'car' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'glg') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glg', 'Galician', NULL, 148.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Galician', [Definition] = NULL, [SortOrder] = 148.00 WHERE [Code] = 'glg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lug') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lug', 'Ganda', NULL, 149.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ganda', [Definition] = NULL, [SortOrder] = 149.00 WHERE [Code] = 'lug' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'gay') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gay', 'Gayo', NULL, 150.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Gayo', [Definition] = NULL, [SortOrder] = 150.00 WHERE [Code] = 'gay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'gba') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gba', 'Gbaya', NULL, 151.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Gbaya', [Definition] = NULL, [SortOrder] = 151.00 WHERE [Code] = 'gba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'gez') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gez', 'Geez', NULL, 152.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Geez', [Definition] = NULL, [SortOrder] = 152.00 WHERE [Code] = 'gez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'geo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geo', 'Georgian', NULL, 153.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Georgian', [Definition] = NULL, [SortOrder] = 153.00 WHERE [Code] = 'geo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ger') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ger', 'German', NULL, 154.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'German', [Definition] = NULL, [SortOrder] = 154.00 WHERE [Code] = 'ger' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'gmh') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmh', 'German, Middle High (ca.1050-1500)', NULL, 155.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'German, Middle High (ca.1050-1500)', [Definition] = NULL, [SortOrder] = 155.00 WHERE [Code] = 'gmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'goh') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goh', 'German, Old High (ca.750-1050)', NULL, 156.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'German, Old High (ca.750-1050)', [Definition] = NULL, [SortOrder] = 156.00 WHERE [Code] = 'goh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'gem') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gem', 'Germanic languages', NULL, 157.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Germanic languages', [Definition] = NULL, [SortOrder] = 157.00 WHERE [Code] = 'gem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'gil') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gil', 'Gilbertese', NULL, 158.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Gilbertese', [Definition] = NULL, [SortOrder] = 158.00 WHERE [Code] = 'gil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'gon') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gon', 'Gondi', NULL, 159.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Gondi', [Definition] = NULL, [SortOrder] = 159.00 WHERE [Code] = 'gon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'gor') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gor', 'Gorontalo', NULL, 160.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Gorontalo', [Definition] = NULL, [SortOrder] = 160.00 WHERE [Code] = 'gor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'got') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('got', 'Gothic', NULL, 161.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Gothic', [Definition] = NULL, [SortOrder] = 161.00 WHERE [Code] = 'got' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'grb') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grb', 'Grebo', NULL, 162.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Grebo', [Definition] = NULL, [SortOrder] = 162.00 WHERE [Code] = 'grb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'grc') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grc', 'Greek, Ancient (to 1453)', NULL, 163.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Greek, Ancient (to 1453)', [Definition] = NULL, [SortOrder] = 163.00 WHERE [Code] = 'grc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'gre') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gre', 'Greek, Modern (1453-)', NULL, 164.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Greek, Modern (1453-)', [Definition] = NULL, [SortOrder] = 164.00 WHERE [Code] = 'gre' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'grn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grn', 'Guarani', NULL, 165.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Guarani', [Definition] = NULL, [SortOrder] = 165.00 WHERE [Code] = 'grn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'guj') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guj', 'Gujarati', NULL, 166.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Gujarati', [Definition] = NULL, [SortOrder] = 166.00 WHERE [Code] = 'guj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'gwi') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwi', 'Gwich''in', NULL, 167.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Gwich''in', [Definition] = NULL, [SortOrder] = 167.00 WHERE [Code] = 'gwi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'hai') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hai', 'Haida', NULL, 168.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Haida', [Definition] = NULL, [SortOrder] = 168.00 WHERE [Code] = 'hai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'hat') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hat', 'Haitian; Haitian Creole', NULL, 169.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Haitian; Haitian Creole', [Definition] = NULL, [SortOrder] = 169.00 WHERE [Code] = 'hat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'hau') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hau', 'Hausa', NULL, 170.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Hausa', [Definition] = NULL, [SortOrder] = 170.00 WHERE [Code] = 'hau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'haw') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haw', 'Hawaiian', NULL, 171.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Hawaiian', [Definition] = NULL, [SortOrder] = 171.00 WHERE [Code] = 'haw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'heb') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('heb', 'Hebrew', NULL, 172.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Hebrew', [Definition] = NULL, [SortOrder] = 172.00 WHERE [Code] = 'heb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'her') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('her', 'Herero', NULL, 173.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Herero', [Definition] = NULL, [SortOrder] = 173.00 WHERE [Code] = 'her' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'hil') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hil', 'Hiligaynon', NULL, 174.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Hiligaynon', [Definition] = NULL, [SortOrder] = 174.00 WHERE [Code] = 'hil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'him') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('him', 'Himachali languages; Western Pahari languages', NULL, 175.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Himachali languages; Western Pahari languages', [Definition] = NULL, [SortOrder] = 175.00 WHERE [Code] = 'him' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'hin') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hin', 'Hindi', NULL, 176.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Hindi', [Definition] = NULL, [SortOrder] = 176.00 WHERE [Code] = 'hin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'hmo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmo', 'Hiri Motu', NULL, 177.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Hiri Motu', [Definition] = NULL, [SortOrder] = 177.00 WHERE [Code] = 'hmo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'hit') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hit', 'Hittite', NULL, 178.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Hittite', [Definition] = NULL, [SortOrder] = 178.00 WHERE [Code] = 'hit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'hmn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmn', 'Hmong; Mong', NULL, 179.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Hmong; Mong', [Definition] = NULL, [SortOrder] = 179.00 WHERE [Code] = 'hmn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'hun') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hun', 'Hungarian', NULL, 180.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Hungarian', [Definition] = NULL, [SortOrder] = 180.00 WHERE [Code] = 'hun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'hup') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hup', 'Hupa', NULL, 181.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Hupa', [Definition] = NULL, [SortOrder] = 181.00 WHERE [Code] = 'hup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'iba') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iba', 'Iban', NULL, 182.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Iban', [Definition] = NULL, [SortOrder] = 182.00 WHERE [Code] = 'iba' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ice') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ice', 'Icelandic', NULL, 183.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Icelandic', [Definition] = NULL, [SortOrder] = 183.00 WHERE [Code] = 'ice' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ido') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ido', 'Ido', NULL, 184.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ido', [Definition] = NULL, [SortOrder] = 184.00 WHERE [Code] = 'ido' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ibo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibo', 'Igbo', NULL, 185.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Igbo', [Definition] = NULL, [SortOrder] = 185.00 WHERE [Code] = 'ibo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ijo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijo', 'Ijo languages', NULL, 186.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ijo languages', [Definition] = NULL, [SortOrder] = 186.00 WHERE [Code] = 'ijo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ilo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilo', 'Iloko', NULL, 187.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Iloko', [Definition] = NULL, [SortOrder] = 187.00 WHERE [Code] = 'ilo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'smn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smn', 'Inari Sami', NULL, 188.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Inari Sami', [Definition] = NULL, [SortOrder] = 188.00 WHERE [Code] = 'smn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'inc') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inc', 'Indic languages', NULL, 189.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Indic languages', [Definition] = NULL, [SortOrder] = 189.00 WHERE [Code] = 'inc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ine') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ine', 'Indo-European languages', NULL, 190.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Indo-European languages', [Definition] = NULL, [SortOrder] = 190.00 WHERE [Code] = 'ine' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ind') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ind', 'Indonesian', NULL, 191.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Indonesian', [Definition] = NULL, [SortOrder] = 191.00 WHERE [Code] = 'ind' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'inh') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inh', 'Ingush', NULL, 192.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ingush', [Definition] = NULL, [SortOrder] = 192.00 WHERE [Code] = 'inh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ina') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ina', 'Interlingua (International Auxiliary Language Association)', NULL, 193.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Interlingua (International Auxiliary Language Association)', [Definition] = NULL, [SortOrder] = 193.00 WHERE [Code] = 'ina' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ile') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ile', 'Interlingue; Occidental', NULL, 194.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Interlingue; Occidental', [Definition] = NULL, [SortOrder] = 194.00 WHERE [Code] = 'ile' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'iku') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iku', 'Inuktitut', NULL, 195.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Inuktitut', [Definition] = NULL, [SortOrder] = 195.00 WHERE [Code] = 'iku' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ipk') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ipk', 'Inupiaq', NULL, 196.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Inupiaq', [Definition] = NULL, [SortOrder] = 196.00 WHERE [Code] = 'ipk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ira') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ira', 'Iranian languages', NULL, 197.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Iranian languages', [Definition] = NULL, [SortOrder] = 197.00 WHERE [Code] = 'ira' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'gle') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gle', 'Irish', NULL, 198.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Irish', [Definition] = NULL, [SortOrder] = 198.00 WHERE [Code] = 'gle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mga') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mga', 'Irish, Middle (900-1200)', NULL, 199.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Irish, Middle (900-1200)', [Definition] = NULL, [SortOrder] = 199.00 WHERE [Code] = 'mga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sga') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sga', 'Irish, Old (to 900)', NULL, 200.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Irish, Old (to 900)', [Definition] = NULL, [SortOrder] = 200.00 WHERE [Code] = 'sga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'iro') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iro', 'Iroquoian languages', NULL, 201.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Iroquoian languages', [Definition] = NULL, [SortOrder] = 201.00 WHERE [Code] = 'iro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ita') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ita', 'Italian', NULL, 202.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Italian', [Definition] = NULL, [SortOrder] = 202.00 WHERE [Code] = 'ita' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'jpn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpn', 'Japanese', NULL, 203.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Japanese', [Definition] = NULL, [SortOrder] = 203.00 WHERE [Code] = 'jpn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'jav') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jav', 'Javanese', NULL, 204.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Javanese', [Definition] = NULL, [SortOrder] = 204.00 WHERE [Code] = 'jav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'jrb') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jrb', 'Judeo-Arabic', NULL, 205.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Judeo-Arabic', [Definition] = NULL, [SortOrder] = 205.00 WHERE [Code] = 'jrb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'jpr') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpr', 'Judeo-Persian', NULL, 206.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Judeo-Persian', [Definition] = NULL, [SortOrder] = 206.00 WHERE [Code] = 'jpr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kbd') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbd', 'Kabardian', NULL, 207.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kabardian', [Definition] = NULL, [SortOrder] = 207.00 WHERE [Code] = 'kbd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kab') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kab', 'Kabyle', NULL, 208.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kabyle', [Definition] = NULL, [SortOrder] = 208.00 WHERE [Code] = 'kab' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kac') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kac', 'Kachin; Jingpho', NULL, 209.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kachin; Jingpho', [Definition] = NULL, [SortOrder] = 209.00 WHERE [Code] = 'kac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kal') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kal', 'Kalaallisut; Greenlandic', NULL, 210.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kalaallisut; Greenlandic', [Definition] = NULL, [SortOrder] = 210.00 WHERE [Code] = 'kal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'xal') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xal', 'Kalmyk; Oirat', NULL, 211.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kalmyk; Oirat', [Definition] = NULL, [SortOrder] = 211.00 WHERE [Code] = 'xal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kam') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kam', 'Kamba', NULL, 212.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kamba', [Definition] = NULL, [SortOrder] = 212.00 WHERE [Code] = 'kam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kan') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kan', 'Kannada', NULL, 213.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kannada', [Definition] = NULL, [SortOrder] = 213.00 WHERE [Code] = 'kan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kau') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kau', 'Kanuri', NULL, 214.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kanuri', [Definition] = NULL, [SortOrder] = 214.00 WHERE [Code] = 'kau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kaa') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaa', 'Kara-Kalpak', NULL, 215.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kara-Kalpak', [Definition] = NULL, [SortOrder] = 215.00 WHERE [Code] = 'kaa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'krc') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krc', 'Karachay-Balkar', NULL, 216.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Karachay-Balkar', [Definition] = NULL, [SortOrder] = 216.00 WHERE [Code] = 'krc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'krl') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krl', 'Karelian', NULL, 217.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Karelian', [Definition] = NULL, [SortOrder] = 217.00 WHERE [Code] = 'krl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kar') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kar', 'Karen languages', NULL, 218.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Karen languages', [Definition] = NULL, [SortOrder] = 218.00 WHERE [Code] = 'kar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kas') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kas', 'Kashmiri', NULL, 219.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kashmiri', [Definition] = NULL, [SortOrder] = 219.00 WHERE [Code] = 'kas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'csb') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csb', 'Kashubian', NULL, 220.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kashubian', [Definition] = NULL, [SortOrder] = 220.00 WHERE [Code] = 'csb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kaw') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaw', 'Kawi', NULL, 221.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kawi', [Definition] = NULL, [SortOrder] = 221.00 WHERE [Code] = 'kaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kaz') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaz', 'Kazakh', NULL, 222.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kazakh', [Definition] = NULL, [SortOrder] = 222.00 WHERE [Code] = 'kaz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kha') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kha', 'Khasi', NULL, 223.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Khasi', [Definition] = NULL, [SortOrder] = 223.00 WHERE [Code] = 'kha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'khi') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khi', 'Khoisan languages', NULL, 224.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Khoisan languages', [Definition] = NULL, [SortOrder] = 224.00 WHERE [Code] = 'khi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kho') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kho', 'Khotanese; Sakan', NULL, 225.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Khotanese; Sakan', [Definition] = NULL, [SortOrder] = 225.00 WHERE [Code] = 'kho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kik') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kik', 'Kikuyu; Gikuyu', NULL, 226.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kikuyu; Gikuyu', [Definition] = NULL, [SortOrder] = 226.00 WHERE [Code] = 'kik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kmb') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmb', 'Kimbundu', NULL, 227.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kimbundu', [Definition] = NULL, [SortOrder] = 227.00 WHERE [Code] = 'kmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kin') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kin', 'Kinyarwanda', NULL, 228.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kinyarwanda', [Definition] = NULL, [SortOrder] = 228.00 WHERE [Code] = 'kin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kir') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kir', 'Kirghiz; Kyrgyz', NULL, 229.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kirghiz; Kyrgyz', [Definition] = NULL, [SortOrder] = 229.00 WHERE [Code] = 'kir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tlh') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlh', 'Klingon; tlhIngan-Hol', NULL, 230.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Klingon; tlhIngan-Hol', [Definition] = NULL, [SortOrder] = 230.00 WHERE [Code] = 'tlh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kom') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kom', 'Komi', NULL, 231.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Komi', [Definition] = NULL, [SortOrder] = 231.00 WHERE [Code] = 'kom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kon') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kon', 'Kongo', NULL, 232.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kongo', [Definition] = NULL, [SortOrder] = 232.00 WHERE [Code] = 'kon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kok') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kok', 'Konkani', NULL, 233.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Konkani', [Definition] = NULL, [SortOrder] = 233.00 WHERE [Code] = 'kok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kor') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kor', 'Korean', NULL, 234.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Korean', [Definition] = NULL, [SortOrder] = 234.00 WHERE [Code] = 'kor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kos') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kos', 'Kosraean', NULL, 235.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kosraean', [Definition] = NULL, [SortOrder] = 235.00 WHERE [Code] = 'kos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kpe') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpe', 'Kpelle', NULL, 236.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kpelle', [Definition] = NULL, [SortOrder] = 236.00 WHERE [Code] = 'kpe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kro') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kro', 'Kru languages', NULL, 237.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kru languages', [Definition] = NULL, [SortOrder] = 237.00 WHERE [Code] = 'kro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kua') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kua', 'Kuanyama; Kwanyama', NULL, 238.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kuanyama; Kwanyama', [Definition] = NULL, [SortOrder] = 238.00 WHERE [Code] = 'kua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kum') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kum', 'Kumyk', NULL, 239.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kumyk', [Definition] = NULL, [SortOrder] = 239.00 WHERE [Code] = 'kum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kur') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kur', 'Kurdish', NULL, 240.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kurdish', [Definition] = NULL, [SortOrder] = 240.00 WHERE [Code] = 'kur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kru') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kru', 'Kurukh', NULL, 241.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kurukh', [Definition] = NULL, [SortOrder] = 241.00 WHERE [Code] = 'kru' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'kut') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kut', 'Kutenai', NULL, 242.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Kutenai', [Definition] = NULL, [SortOrder] = 242.00 WHERE [Code] = 'kut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lad') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lad', 'Ladino', NULL, 243.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ladino', [Definition] = NULL, [SortOrder] = 243.00 WHERE [Code] = 'lad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lah') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lah', 'Lahnda', NULL, 244.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Lahnda', [Definition] = NULL, [SortOrder] = 244.00 WHERE [Code] = 'lah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lam') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lam', 'Lamba', NULL, 245.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Lamba', [Definition] = NULL, [SortOrder] = 245.00 WHERE [Code] = 'lam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'day') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('day', 'Land Dayak languages', NULL, 246.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Land Dayak languages', [Definition] = NULL, [SortOrder] = 246.00 WHERE [Code] = 'day' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lao') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lao', 'Lao', NULL, 247.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Lao', [Definition] = NULL, [SortOrder] = 247.00 WHERE [Code] = 'lao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lat') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lat', 'Latin', NULL, 248.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Latin', [Definition] = NULL, [SortOrder] = 248.00 WHERE [Code] = 'lat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lav') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lav', 'Latvian', NULL, 249.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Latvian', [Definition] = NULL, [SortOrder] = 249.00 WHERE [Code] = 'lav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lez') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lez', 'Lezghian', NULL, 250.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Lezghian', [Definition] = NULL, [SortOrder] = 250.00 WHERE [Code] = 'lez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lim') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lim', 'Limburgan; Limburger; Limburgish', NULL, 251.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Limburgan; Limburger; Limburgish', [Definition] = NULL, [SortOrder] = 251.00 WHERE [Code] = 'lim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lin') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lin', 'Lingala', NULL, 252.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Lingala', [Definition] = NULL, [SortOrder] = 252.00 WHERE [Code] = 'lin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lit') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lit', 'Lithuanian', NULL, 253.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Lithuanian', [Definition] = NULL, [SortOrder] = 253.00 WHERE [Code] = 'lit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'jbo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbo', 'Lojban', NULL, 254.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Lojban', [Definition] = NULL, [SortOrder] = 254.00 WHERE [Code] = 'jbo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nds') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nds', 'Low German; Low Saxon; German, Low; Saxon, Low', NULL, 255.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Low German; Low Saxon; German, Low; Saxon, Low', [Definition] = NULL, [SortOrder] = 255.00 WHERE [Code] = 'nds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'dsb') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsb', 'Lower Sorbian', NULL, 256.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Lower Sorbian', [Definition] = NULL, [SortOrder] = 256.00 WHERE [Code] = 'dsb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'loz') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loz', 'Lozi', NULL, 257.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Lozi', [Definition] = NULL, [SortOrder] = 257.00 WHERE [Code] = 'loz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lub') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lub', 'Luba-Katanga', NULL, 258.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Luba-Katanga', [Definition] = NULL, [SortOrder] = 258.00 WHERE [Code] = 'lub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lua') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lua', 'Luba-Lulua', NULL, 259.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Luba-Lulua', [Definition] = NULL, [SortOrder] = 259.00 WHERE [Code] = 'lua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lui') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lui', 'Luiseno', NULL, 260.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Luiseno', [Definition] = NULL, [SortOrder] = 260.00 WHERE [Code] = 'lui' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'smj') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smj', 'Lule Sami', NULL, 261.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Lule Sami', [Definition] = NULL, [SortOrder] = 261.00 WHERE [Code] = 'smj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lun') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lun', 'Lunda', NULL, 262.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Lunda', [Definition] = NULL, [SortOrder] = 262.00 WHERE [Code] = 'lun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'luo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luo', 'Luo (Kenya and Tanzania)', NULL, 263.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Luo (Kenya and Tanzania)', [Definition] = NULL, [SortOrder] = 263.00 WHERE [Code] = 'luo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lus') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lus', 'Lushai', NULL, 264.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Lushai', [Definition] = NULL, [SortOrder] = 264.00 WHERE [Code] = 'lus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ltz') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltz', 'Luxembourgish; Letzeburgesch', NULL, 265.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Luxembourgish; Letzeburgesch', [Definition] = NULL, [SortOrder] = 265.00 WHERE [Code] = 'ltz' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mac') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mac', 'Macedonian', NULL, 266.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Macedonian', [Definition] = NULL, [SortOrder] = 266.00 WHERE [Code] = 'mac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mad') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mad', 'Madurese', NULL, 267.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Madurese', [Definition] = NULL, [SortOrder] = 267.00 WHERE [Code] = 'mad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mag') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mag', 'Magahi', NULL, 268.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Magahi', [Definition] = NULL, [SortOrder] = 268.00 WHERE [Code] = 'mag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mai') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mai', 'Maithili', NULL, 269.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Maithili', [Definition] = NULL, [SortOrder] = 269.00 WHERE [Code] = 'mai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mak') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mak', 'Makasar', NULL, 270.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Makasar', [Definition] = NULL, [SortOrder] = 270.00 WHERE [Code] = 'mak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mlg') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlg', 'Malagasy', NULL, 271.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Malagasy', [Definition] = NULL, [SortOrder] = 271.00 WHERE [Code] = 'mlg' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'may') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('may', 'Malay', NULL, 272.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Malay', [Definition] = NULL, [SortOrder] = 272.00 WHERE [Code] = 'may' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mal') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mal', 'Malayalam', NULL, 273.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Malayalam', [Definition] = NULL, [SortOrder] = 273.00 WHERE [Code] = 'mal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mlt') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlt', 'Maltese', NULL, 274.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Maltese', [Definition] = NULL, [SortOrder] = 274.00 WHERE [Code] = 'mlt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mnc') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnc', 'Manchu', NULL, 275.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Manchu', [Definition] = NULL, [SortOrder] = 275.00 WHERE [Code] = 'mnc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mdr') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdr', 'Mandar', NULL, 276.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Mandar', [Definition] = NULL, [SortOrder] = 276.00 WHERE [Code] = 'mdr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'man') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('man', 'Mandingo', NULL, 277.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Mandingo', [Definition] = NULL, [SortOrder] = 277.00 WHERE [Code] = 'man' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mni') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mni', 'Manipuri', NULL, 278.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Manipuri', [Definition] = NULL, [SortOrder] = 278.00 WHERE [Code] = 'mni' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mno') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mno', 'Manobo languages', NULL, 279.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Manobo languages', [Definition] = NULL, [SortOrder] = 279.00 WHERE [Code] = 'mno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'glv') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glv', 'Manx', NULL, 280.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Manx', [Definition] = NULL, [SortOrder] = 280.00 WHERE [Code] = 'glv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mao') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mao', 'Maori', NULL, 281.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Maori', [Definition] = NULL, [SortOrder] = 281.00 WHERE [Code] = 'mao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'arn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arn', 'Mapudungun; Mapuche', NULL, 282.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Mapudungun; Mapuche', [Definition] = NULL, [SortOrder] = 282.00 WHERE [Code] = 'arn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mar') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mar', 'Marathi', NULL, 283.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Marathi', [Definition] = NULL, [SortOrder] = 283.00 WHERE [Code] = 'mar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'chm') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chm', 'Mari', NULL, 284.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Mari', [Definition] = NULL, [SortOrder] = 284.00 WHERE [Code] = 'chm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mah') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mah', 'Marshallese', NULL, 285.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Marshallese', [Definition] = NULL, [SortOrder] = 285.00 WHERE [Code] = 'mah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mwr') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwr', 'Marwari', NULL, 286.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Marwari', [Definition] = NULL, [SortOrder] = 286.00 WHERE [Code] = 'mwr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mas') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mas', 'Masai', NULL, 287.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Masai', [Definition] = NULL, [SortOrder] = 287.00 WHERE [Code] = 'mas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'myn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myn', 'Mayan languages', NULL, 288.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Mayan languages', [Definition] = NULL, [SortOrder] = 288.00 WHERE [Code] = 'myn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'men') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('men', 'Mende', NULL, 289.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Mende', [Definition] = NULL, [SortOrder] = 289.00 WHERE [Code] = 'men' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mic') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mic', 'Mi''kmaq; Micmac', NULL, 290.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Mi''kmaq; Micmac', [Definition] = NULL, [SortOrder] = 290.00 WHERE [Code] = 'mic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'min') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('min', 'Minangkabau', NULL, 291.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Minangkabau', [Definition] = NULL, [SortOrder] = 291.00 WHERE [Code] = 'min' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mwl') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwl', 'Mirandese', NULL, 292.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Mirandese', [Definition] = NULL, [SortOrder] = 292.00 WHERE [Code] = 'mwl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'moh') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moh', 'Mohawk', NULL, 293.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Mohawk', [Definition] = NULL, [SortOrder] = 293.00 WHERE [Code] = 'moh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mdf') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdf', 'Moksha', NULL, 294.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Moksha', [Definition] = NULL, [SortOrder] = 294.00 WHERE [Code] = 'mdf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mkh') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkh', 'Mon-Khmer languages', NULL, 295.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Mon-Khmer languages', [Definition] = NULL, [SortOrder] = 295.00 WHERE [Code] = 'mkh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'lol') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lol', 'Mongo', NULL, 296.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Mongo', [Definition] = NULL, [SortOrder] = 296.00 WHERE [Code] = 'lol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mon') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mon', 'Mongolian', NULL, 297.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Mongolian', [Definition] = NULL, [SortOrder] = 297.00 WHERE [Code] = 'mon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'cnr') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnr', 'Montenegrin', NULL, 298.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Montenegrin', [Definition] = NULL, [SortOrder] = 298.00 WHERE [Code] = 'cnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mos') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mos', 'Mossi', NULL, 299.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Mossi', [Definition] = NULL, [SortOrder] = 299.00 WHERE [Code] = 'mos' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mul') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mul', 'Multiple languages', NULL, 300.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Multiple languages', [Definition] = NULL, [SortOrder] = 300.00 WHERE [Code] = 'mul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mun') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mun', 'Munda languages', NULL, 301.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Munda languages', [Definition] = NULL, [SortOrder] = 301.00 WHERE [Code] = 'mun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nqo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqo', 'N''Ko', NULL, 302.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'N''Ko', [Definition] = NULL, [SortOrder] = 302.00 WHERE [Code] = 'nqo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nah') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nah', 'Nahuatl languages', NULL, 303.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Nahuatl languages', [Definition] = NULL, [SortOrder] = 303.00 WHERE [Code] = 'nah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nau') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nau', 'Nauru', NULL, 304.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Nauru', [Definition] = NULL, [SortOrder] = 304.00 WHERE [Code] = 'nau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nav') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nav', 'Navajo; Navaho', NULL, 305.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Navajo; Navaho', [Definition] = NULL, [SortOrder] = 305.00 WHERE [Code] = 'nav' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nde') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nde', 'Ndebele, North; North Ndebele', NULL, 306.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ndebele, North; North Ndebele', [Definition] = NULL, [SortOrder] = 306.00 WHERE [Code] = 'nde' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nbl') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbl', 'Ndebele, South; South Ndebele', NULL, 307.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ndebele, South; South Ndebele', [Definition] = NULL, [SortOrder] = 307.00 WHERE [Code] = 'nbl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ndo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndo', 'Ndonga', NULL, 308.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ndonga', [Definition] = NULL, [SortOrder] = 308.00 WHERE [Code] = 'ndo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nap') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nap', 'Neapolitan', NULL, 309.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Neapolitan', [Definition] = NULL, [SortOrder] = 309.00 WHERE [Code] = 'nap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'new') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('new', 'Nepal Bhasa; Newari', NULL, 310.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Nepal Bhasa; Newari', [Definition] = NULL, [SortOrder] = 310.00 WHERE [Code] = 'new' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nep') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nep', 'Nepali', NULL, 311.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Nepali', [Definition] = NULL, [SortOrder] = 311.00 WHERE [Code] = 'nep' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nia') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nia', 'Nias', NULL, 312.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Nias', [Definition] = NULL, [SortOrder] = 312.00 WHERE [Code] = 'nia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nic') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nic', 'Niger-Kordofanian languages', NULL, 313.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Niger-Kordofanian languages', [Definition] = NULL, [SortOrder] = 313.00 WHERE [Code] = 'nic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ssa') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssa', 'Nilo-Saharan languages', NULL, 314.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Nilo-Saharan languages', [Definition] = NULL, [SortOrder] = 314.00 WHERE [Code] = 'ssa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'niu') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niu', 'Niuean', NULL, 315.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Niuean', [Definition] = NULL, [SortOrder] = 315.00 WHERE [Code] = 'niu' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'zxx') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zxx', 'No linguistic content; Not applicable', NULL, 316.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'No linguistic content; Not applicable', [Definition] = NULL, [SortOrder] = 316.00 WHERE [Code] = 'zxx' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nog') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nog', 'Nogai', NULL, 317.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Nogai', [Definition] = NULL, [SortOrder] = 317.00 WHERE [Code] = 'nog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'non') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('non', 'Norse, Old', NULL, 318.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Norse, Old', [Definition] = NULL, [SortOrder] = 318.00 WHERE [Code] = 'non' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nai') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nai', 'North American Indian languages', NULL, 319.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'North American Indian languages', [Definition] = NULL, [SortOrder] = 319.00 WHERE [Code] = 'nai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'frr') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frr', 'Northern Frisian', NULL, 320.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Northern Frisian', [Definition] = NULL, [SortOrder] = 320.00 WHERE [Code] = 'frr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sme') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sme', 'Northern Sami', NULL, 321.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Northern Sami', [Definition] = NULL, [SortOrder] = 321.00 WHERE [Code] = 'sme' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nor') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nor', 'Norwegian', NULL, 322.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Norwegian', [Definition] = NULL, [SortOrder] = 322.00 WHERE [Code] = 'nor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nno') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nno', 'Norwegian Nynorsk; Nynorsk, Norwegian', NULL, 323.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Norwegian Nynorsk; Nynorsk, Norwegian', [Definition] = NULL, [SortOrder] = 323.00 WHERE [Code] = 'nno' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nub') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nub', 'Nubian languages', NULL, 324.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Nubian languages', [Definition] = NULL, [SortOrder] = 324.00 WHERE [Code] = 'nub' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nym') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nym', 'Nyamwezi', NULL, 325.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Nyamwezi', [Definition] = NULL, [SortOrder] = 325.00 WHERE [Code] = 'nym' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nyn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyn', 'Nyankole', NULL, 326.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Nyankole', [Definition] = NULL, [SortOrder] = 326.00 WHERE [Code] = 'nyn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nyo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyo', 'Nyoro', NULL, 327.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Nyoro', [Definition] = NULL, [SortOrder] = 327.00 WHERE [Code] = 'nyo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nzi') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzi', 'Nzima', NULL, 328.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Nzima', [Definition] = NULL, [SortOrder] = 328.00 WHERE [Code] = 'nzi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'oci') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oci', 'Occitan (post 1500)', NULL, 329.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Occitan (post 1500)', [Definition] = NULL, [SortOrder] = 329.00 WHERE [Code] = 'oci' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'arc') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arc', 'Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)', NULL, 330.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)', [Definition] = NULL, [SortOrder] = 330.00 WHERE [Code] = 'arc' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'oji') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oji', 'Ojibwa', NULL, 331.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ojibwa', [Definition] = NULL, [SortOrder] = 331.00 WHERE [Code] = 'oji' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ori') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ori', 'Oriya', NULL, 332.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Oriya', [Definition] = NULL, [SortOrder] = 332.00 WHERE [Code] = 'ori' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'orm') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orm', 'Oromo', NULL, 333.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Oromo', [Definition] = NULL, [SortOrder] = 333.00 WHERE [Code] = 'orm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'osa') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osa', 'Osage', NULL, 334.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Osage', [Definition] = NULL, [SortOrder] = 334.00 WHERE [Code] = 'osa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'oss') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oss', 'Ossetian; Ossetic', NULL, 335.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ossetian; Ossetic', [Definition] = NULL, [SortOrder] = 335.00 WHERE [Code] = 'oss' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'oto') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oto', 'Otomian languages', NULL, 336.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Otomian languages', [Definition] = NULL, [SortOrder] = 336.00 WHERE [Code] = 'oto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'pal') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pal', 'Pahlavi', NULL, 337.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Pahlavi', [Definition] = NULL, [SortOrder] = 337.00 WHERE [Code] = 'pal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'pau') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pau', 'Palauan', NULL, 338.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Palauan', [Definition] = NULL, [SortOrder] = 338.00 WHERE [Code] = 'pau' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'pli') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pli', 'Pali', NULL, 339.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Pali', [Definition] = NULL, [SortOrder] = 339.00 WHERE [Code] = 'pli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'pam') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pam', 'Pampanga; Kapampangan', NULL, 340.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Pampanga; Kapampangan', [Definition] = NULL, [SortOrder] = 340.00 WHERE [Code] = 'pam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'pag') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pag', 'Pangasinan', NULL, 341.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Pangasinan', [Definition] = NULL, [SortOrder] = 341.00 WHERE [Code] = 'pag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'pan') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pan', 'Panjabi; Punjabi', NULL, 342.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Panjabi; Punjabi', [Definition] = NULL, [SortOrder] = 342.00 WHERE [Code] = 'pan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'pap') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pap', 'Papiamento', NULL, 343.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Papiamento', [Definition] = NULL, [SortOrder] = 343.00 WHERE [Code] = 'pap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'paa') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paa', 'Papuan languages', NULL, 344.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Papuan languages', [Definition] = NULL, [SortOrder] = 344.00 WHERE [Code] = 'paa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'nso') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nso', 'Pedi; Sepedi; Northern Sotho', NULL, 345.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Pedi; Sepedi; Northern Sotho', [Definition] = NULL, [SortOrder] = 345.00 WHERE [Code] = 'nso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'per') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('per', 'Persian', NULL, 346.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Persian', [Definition] = NULL, [SortOrder] = 346.00 WHERE [Code] = 'per' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'peo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peo', 'Persian, Old (ca.600-400 B.C.)', NULL, 347.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Persian, Old (ca.600-400 B.C.)', [Definition] = NULL, [SortOrder] = 347.00 WHERE [Code] = 'peo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'phi') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phi', 'Philippine languages', NULL, 348.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Philippine languages', [Definition] = NULL, [SortOrder] = 348.00 WHERE [Code] = 'phi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'phn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phn', 'Phoenician', NULL, 349.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Phoenician', [Definition] = NULL, [SortOrder] = 349.00 WHERE [Code] = 'phn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'pon') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pon', 'Pohnpeian', NULL, 350.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Pohnpeian', [Definition] = NULL, [SortOrder] = 350.00 WHERE [Code] = 'pon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'pol') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pol', 'Polish', NULL, 351.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Polish', [Definition] = NULL, [SortOrder] = 351.00 WHERE [Code] = 'pol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'por') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('por', 'Portuguese', NULL, 352.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Portuguese', [Definition] = NULL, [SortOrder] = 352.00 WHERE [Code] = 'por' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'pra') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pra', 'Prakrit languages', NULL, 353.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Prakrit languages', [Definition] = NULL, [SortOrder] = 353.00 WHERE [Code] = 'pra' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'pro') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pro', 'Provençal, Old (to 1500); Occitan, Old (to 1500)', NULL, 354.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Provençal, Old (to 1500); Occitan, Old (to 1500)', [Definition] = NULL, [SortOrder] = 354.00 WHERE [Code] = 'pro' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'pus') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pus', 'Pushto; Pashto', NULL, 355.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Pushto; Pashto', [Definition] = NULL, [SortOrder] = 355.00 WHERE [Code] = 'pus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'que') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('que', 'Quechua', NULL, 356.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Quechua', [Definition] = NULL, [SortOrder] = 356.00 WHERE [Code] = 'que' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'raj') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raj', 'Rajasthani', NULL, 357.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Rajasthani', [Definition] = NULL, [SortOrder] = 357.00 WHERE [Code] = 'raj' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'rap') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rap', 'Rapanui', NULL, 358.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Rapanui', [Definition] = NULL, [SortOrder] = 358.00 WHERE [Code] = 'rap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'rar') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rar', 'Rarotongan; Cook Islands Maori', NULL, 359.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Rarotongan; Cook Islands Maori', [Definition] = NULL, [SortOrder] = 359.00 WHERE [Code] = 'rar' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'roa') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roa', 'Romance languages', NULL, 360.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Romance languages', [Definition] = NULL, [SortOrder] = 360.00 WHERE [Code] = 'roa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'rum') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rum', 'Romanian; Moldavian; Moldovan', NULL, 361.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Romanian; Moldavian; Moldovan', [Definition] = NULL, [SortOrder] = 361.00 WHERE [Code] = 'rum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'roh') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roh', 'Romansh', NULL, 362.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Romansh', [Definition] = NULL, [SortOrder] = 362.00 WHERE [Code] = 'roh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'rom') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rom', 'Romany', NULL, 363.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Romany', [Definition] = NULL, [SortOrder] = 363.00 WHERE [Code] = 'rom' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'run') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('run', 'Rundi', NULL, 364.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Rundi', [Definition] = NULL, [SortOrder] = 364.00 WHERE [Code] = 'run' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'rus') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rus', 'Russian', NULL, 365.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Russian', [Definition] = NULL, [SortOrder] = 365.00 WHERE [Code] = 'rus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sal') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sal', 'Salishan languages', NULL, 366.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Salishan languages', [Definition] = NULL, [SortOrder] = 366.00 WHERE [Code] = 'sal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sam') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sam', 'Samaritan Aramaic', NULL, 367.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Samaritan Aramaic', [Definition] = NULL, [SortOrder] = 367.00 WHERE [Code] = 'sam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'smi') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smi', 'Sami languages', NULL, 368.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sami languages', [Definition] = NULL, [SortOrder] = 368.00 WHERE [Code] = 'smi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'smo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smo', 'Samoan', NULL, 369.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Samoan', [Definition] = NULL, [SortOrder] = 369.00 WHERE [Code] = 'smo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sad') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sad', 'Sandawe', NULL, 370.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sandawe', [Definition] = NULL, [SortOrder] = 370.00 WHERE [Code] = 'sad' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sag') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sag', 'Sango', NULL, 371.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sango', [Definition] = NULL, [SortOrder] = 371.00 WHERE [Code] = 'sag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'san') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('san', 'Sanskrit', NULL, 372.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sanskrit', [Definition] = NULL, [SortOrder] = 372.00 WHERE [Code] = 'san' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sat') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sat', 'Santali', NULL, 373.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Santali', [Definition] = NULL, [SortOrder] = 373.00 WHERE [Code] = 'sat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'srd') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srd', 'Sardinian', NULL, 374.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sardinian', [Definition] = NULL, [SortOrder] = 374.00 WHERE [Code] = 'srd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sas') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sas', 'Sasak', NULL, 375.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sasak', [Definition] = NULL, [SortOrder] = 375.00 WHERE [Code] = 'sas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sco') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sco', 'Scots', NULL, 376.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Scots', [Definition] = NULL, [SortOrder] = 376.00 WHERE [Code] = 'sco' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sel') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sel', 'Selkup', NULL, 377.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Selkup', [Definition] = NULL, [SortOrder] = 377.00 WHERE [Code] = 'sel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sem') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sem', 'Semitic languages', NULL, 378.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Semitic languages', [Definition] = NULL, [SortOrder] = 378.00 WHERE [Code] = 'sem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'srp') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srp', 'Serbian', NULL, 379.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Serbian', [Definition] = NULL, [SortOrder] = 379.00 WHERE [Code] = 'srp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'srr') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srr', 'Serer', NULL, 380.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Serer', [Definition] = NULL, [SortOrder] = 380.00 WHERE [Code] = 'srr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'shn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shn', 'Shan', NULL, 381.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Shan', [Definition] = NULL, [SortOrder] = 381.00 WHERE [Code] = 'shn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sna') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sna', 'Shona', NULL, 382.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Shona', [Definition] = NULL, [SortOrder] = 382.00 WHERE [Code] = 'sna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'iii') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iii', 'Sichuan Yi; Nuosu', NULL, 383.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sichuan Yi; Nuosu', [Definition] = NULL, [SortOrder] = 383.00 WHERE [Code] = 'iii' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'scn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scn', 'Sicilian', NULL, 384.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sicilian', [Definition] = NULL, [SortOrder] = 384.00 WHERE [Code] = 'scn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sid') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sid', 'Sidamo', NULL, 385.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sidamo', [Definition] = NULL, [SortOrder] = 385.00 WHERE [Code] = 'sid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sgn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgn', 'Sign Languages', NULL, 386.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sign Languages', [Definition] = NULL, [SortOrder] = 386.00 WHERE [Code] = 'sgn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'bla') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bla', 'Siksika', NULL, 387.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Siksika', [Definition] = NULL, [SortOrder] = 387.00 WHERE [Code] = 'bla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'snd') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snd', 'Sindhi', NULL, 388.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sindhi', [Definition] = NULL, [SortOrder] = 388.00 WHERE [Code] = 'snd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sin') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sin', 'Sinhala; Sinhalese', NULL, 389.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sinhala; Sinhalese', [Definition] = NULL, [SortOrder] = 389.00 WHERE [Code] = 'sin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sit') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sit', 'Sino-Tibetan languages', NULL, 390.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sino-Tibetan languages', [Definition] = NULL, [SortOrder] = 390.00 WHERE [Code] = 'sit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sio') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sio', 'Siouan languages', NULL, 391.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Siouan languages', [Definition] = NULL, [SortOrder] = 391.00 WHERE [Code] = 'sio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sms') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sms', 'Skolt Sami', NULL, 392.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Skolt Sami', [Definition] = NULL, [SortOrder] = 392.00 WHERE [Code] = 'sms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'den') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('den', 'Slave (Athapascan)', NULL, 393.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Slave (Athapascan)', [Definition] = NULL, [SortOrder] = 393.00 WHERE [Code] = 'den' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sla') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sla', 'Slavic languages', NULL, 394.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Slavic languages', [Definition] = NULL, [SortOrder] = 394.00 WHERE [Code] = 'sla' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'slo') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slo', 'Slovak', NULL, 395.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Slovak', [Definition] = NULL, [SortOrder] = 395.00 WHERE [Code] = 'slo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'slv') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slv', 'Slovenian', NULL, 396.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Slovenian', [Definition] = NULL, [SortOrder] = 396.00 WHERE [Code] = 'slv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sog') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sog', 'Sogdian', NULL, 397.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sogdian', [Definition] = NULL, [SortOrder] = 397.00 WHERE [Code] = 'sog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'som') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('som', 'Somali', NULL, 398.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Somali', [Definition] = NULL, [SortOrder] = 398.00 WHERE [Code] = 'som' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'son') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('son', 'Songhai languages', NULL, 399.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Songhai languages', [Definition] = NULL, [SortOrder] = 399.00 WHERE [Code] = 'son' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'snk') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snk', 'Soninke', NULL, 400.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Soninke', [Definition] = NULL, [SortOrder] = 400.00 WHERE [Code] = 'snk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'wen') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wen', 'Sorbian languages', NULL, 401.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sorbian languages', [Definition] = NULL, [SortOrder] = 401.00 WHERE [Code] = 'wen' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sot') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sot', 'Sotho, Southern', NULL, 402.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sotho, Southern', [Definition] = NULL, [SortOrder] = 402.00 WHERE [Code] = 'sot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sai') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sai', 'South American Indian languages', NULL, 403.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'South American Indian languages', [Definition] = NULL, [SortOrder] = 403.00 WHERE [Code] = 'sai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'alt') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alt', 'Southern Altai', NULL, 404.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Southern Altai', [Definition] = NULL, [SortOrder] = 404.00 WHERE [Code] = 'alt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sma') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sma', 'Southern Sami', NULL, 405.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Southern Sami', [Definition] = NULL, [SortOrder] = 405.00 WHERE [Code] = 'sma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'spa') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spa', 'Spanish; Castilian', NULL, 406.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Spanish; Castilian', [Definition] = NULL, [SortOrder] = 406.00 WHERE [Code] = 'spa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'srn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srn', 'Sranan Tongo', NULL, 407.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sranan Tongo', [Definition] = NULL, [SortOrder] = 407.00 WHERE [Code] = 'srn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'zgh') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgh', 'Standard Moroccan Tamazight', NULL, 408.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Standard Moroccan Tamazight', [Definition] = NULL, [SortOrder] = 408.00 WHERE [Code] = 'zgh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'suk') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suk', 'Sukuma', NULL, 409.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sukuma', [Definition] = NULL, [SortOrder] = 409.00 WHERE [Code] = 'suk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sux') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sux', 'Sumerian', NULL, 410.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sumerian', [Definition] = NULL, [SortOrder] = 410.00 WHERE [Code] = 'sux' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sun') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sun', 'Sundanese', NULL, 411.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Sundanese', [Definition] = NULL, [SortOrder] = 411.00 WHERE [Code] = 'sun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sus') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sus', 'Susu', NULL, 412.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Susu', [Definition] = NULL, [SortOrder] = 412.00 WHERE [Code] = 'sus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'swa') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swa', 'Swahili', NULL, 413.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Swahili', [Definition] = NULL, [SortOrder] = 413.00 WHERE [Code] = 'swa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ssw') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssw', 'Swati', NULL, 414.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Swati', [Definition] = NULL, [SortOrder] = 414.00 WHERE [Code] = 'ssw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'swe') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swe', 'Swedish', NULL, 415.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Swedish', [Definition] = NULL, [SortOrder] = 415.00 WHERE [Code] = 'swe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'gsw') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsw', 'Swiss German; Alemannic; Alsatian', NULL, 416.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Swiss German; Alemannic; Alsatian', [Definition] = NULL, [SortOrder] = 416.00 WHERE [Code] = 'gsw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'syr') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syr', 'Syriac', NULL, 417.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Syriac', [Definition] = NULL, [SortOrder] = 417.00 WHERE [Code] = 'syr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tgl') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgl', 'Tagalog', NULL, 418.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tagalog', [Definition] = NULL, [SortOrder] = 418.00 WHERE [Code] = 'tgl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tah') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tah', 'Tahitian', NULL, 419.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tahitian', [Definition] = NULL, [SortOrder] = 419.00 WHERE [Code] = 'tah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tai') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tai', 'Tai languages', NULL, 420.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tai languages', [Definition] = NULL, [SortOrder] = 420.00 WHERE [Code] = 'tai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tgk') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgk', 'Tajik', NULL, 421.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tajik', [Definition] = NULL, [SortOrder] = 421.00 WHERE [Code] = 'tgk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tmh') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmh', 'Tamashek', NULL, 422.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tamashek', [Definition] = NULL, [SortOrder] = 422.00 WHERE [Code] = 'tmh' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tam') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tam', 'Tamil', NULL, 423.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tamil', [Definition] = NULL, [SortOrder] = 423.00 WHERE [Code] = 'tam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tat') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tat', 'Tatar', NULL, 424.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tatar', [Definition] = NULL, [SortOrder] = 424.00 WHERE [Code] = 'tat' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tel') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tel', 'Telugu', NULL, 425.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Telugu', [Definition] = NULL, [SortOrder] = 425.00 WHERE [Code] = 'tel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ter') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ter', 'Tereno', NULL, 426.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tereno', [Definition] = NULL, [SortOrder] = 426.00 WHERE [Code] = 'ter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tet') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tet', 'Tetum', NULL, 427.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tetum', [Definition] = NULL, [SortOrder] = 427.00 WHERE [Code] = 'tet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tha') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tha', 'Thai', NULL, 428.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Thai', [Definition] = NULL, [SortOrder] = 428.00 WHERE [Code] = 'tha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tib') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tib', 'Tibetan', NULL, 429.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tibetan', [Definition] = NULL, [SortOrder] = 429.00 WHERE [Code] = 'tib' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tig') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tig', 'Tigre', NULL, 430.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tigre', [Definition] = NULL, [SortOrder] = 430.00 WHERE [Code] = 'tig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tir') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tir', 'Tigrinya', NULL, 431.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tigrinya', [Definition] = NULL, [SortOrder] = 431.00 WHERE [Code] = 'tir' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tem') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tem', 'Timne', NULL, 432.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Timne', [Definition] = NULL, [SortOrder] = 432.00 WHERE [Code] = 'tem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tiv') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiv', 'Tiv', NULL, 433.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tiv', [Definition] = NULL, [SortOrder] = 433.00 WHERE [Code] = 'tiv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tli') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tli', 'Tlingit', NULL, 434.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tlingit', [Definition] = NULL, [SortOrder] = 434.00 WHERE [Code] = 'tli' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tpi') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpi', 'Tok Pisin', NULL, 435.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tok Pisin', [Definition] = NULL, [SortOrder] = 435.00 WHERE [Code] = 'tpi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tkl') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkl', 'Tokelau', NULL, 436.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tokelau', [Definition] = NULL, [SortOrder] = 436.00 WHERE [Code] = 'tkl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tog') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tog', 'Tonga (Nyasa)', NULL, 437.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tonga (Nyasa)', [Definition] = NULL, [SortOrder] = 437.00 WHERE [Code] = 'tog' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ton') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ton', 'Tonga (Tonga Islands)', NULL, 438.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tonga (Tonga Islands)', [Definition] = NULL, [SortOrder] = 438.00 WHERE [Code] = 'ton' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tsi') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsi', 'Tsimshian', NULL, 439.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tsimshian', [Definition] = NULL, [SortOrder] = 439.00 WHERE [Code] = 'tsi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tso') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tso', 'Tsonga', NULL, 440.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tsonga', [Definition] = NULL, [SortOrder] = 440.00 WHERE [Code] = 'tso' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tsn') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsn', 'Tswana', NULL, 441.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tswana', [Definition] = NULL, [SortOrder] = 441.00 WHERE [Code] = 'tsn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tum') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tum', 'Tumbuka', NULL, 442.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tumbuka', [Definition] = NULL, [SortOrder] = 442.00 WHERE [Code] = 'tum' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tup') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tup', 'Tupi languages', NULL, 443.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tupi languages', [Definition] = NULL, [SortOrder] = 443.00 WHERE [Code] = 'tup' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tur') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tur', 'Turkish', NULL, 444.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Turkish', [Definition] = NULL, [SortOrder] = 444.00 WHERE [Code] = 'tur' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ota') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ota', 'Turkish, Ottoman (1500-1928)', NULL, 445.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Turkish, Ottoman (1500-1928)', [Definition] = NULL, [SortOrder] = 445.00 WHERE [Code] = 'ota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tuk') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuk', 'Turkmen', NULL, 446.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Turkmen', [Definition] = NULL, [SortOrder] = 446.00 WHERE [Code] = 'tuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tvl') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvl', 'Tuvalu', NULL, 447.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tuvalu', [Definition] = NULL, [SortOrder] = 447.00 WHERE [Code] = 'tvl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'tyv') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyv', 'Tuvinian', NULL, 448.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Tuvinian', [Definition] = NULL, [SortOrder] = 448.00 WHERE [Code] = 'tyv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'twi') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twi', 'Twi', NULL, 449.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Twi', [Definition] = NULL, [SortOrder] = 449.00 WHERE [Code] = 'twi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'udm') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udm', 'Udmurt', NULL, 450.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Udmurt', [Definition] = NULL, [SortOrder] = 450.00 WHERE [Code] = 'udm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'uga') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uga', 'Ugaritic', NULL, 451.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ugaritic', [Definition] = NULL, [SortOrder] = 451.00 WHERE [Code] = 'uga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'uig') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uig', 'Uighur; Uyghur', NULL, 452.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Uighur; Uyghur', [Definition] = NULL, [SortOrder] = 452.00 WHERE [Code] = 'uig' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ukr') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukr', 'Ukrainian', NULL, 453.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Ukrainian', [Definition] = NULL, [SortOrder] = 453.00 WHERE [Code] = 'ukr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'umb') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umb', 'Umbundu', NULL, 454.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Umbundu', [Definition] = NULL, [SortOrder] = 454.00 WHERE [Code] = 'umb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'mis') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mis', 'Uncoded languages', NULL, 455.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Uncoded languages', [Definition] = NULL, [SortOrder] = 455.00 WHERE [Code] = 'mis' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'und') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('und', 'Undetermined', NULL, 456.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Undetermined', [Definition] = NULL, [SortOrder] = 456.00 WHERE [Code] = 'und' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'hsb') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsb', 'Upper Sorbian', NULL, 457.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Upper Sorbian', [Definition] = NULL, [SortOrder] = 457.00 WHERE [Code] = 'hsb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'urd') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urd', 'Urdu', NULL, 458.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Urdu', [Definition] = NULL, [SortOrder] = 458.00 WHERE [Code] = 'urd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'uzb') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uzb', 'Uzbek', NULL, 459.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Uzbek', [Definition] = NULL, [SortOrder] = 459.00 WHERE [Code] = 'uzb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'vai') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vai', 'Vai', NULL, 460.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Vai', [Definition] = NULL, [SortOrder] = 460.00 WHERE [Code] = 'vai' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ven') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ven', 'Venda', NULL, 461.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Venda', [Definition] = NULL, [SortOrder] = 461.00 WHERE [Code] = 'ven' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'vie') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vie', 'Vietnamese', NULL, 462.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Vietnamese', [Definition] = NULL, [SortOrder] = 462.00 WHERE [Code] = 'vie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'vol') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vol', 'Volapük', NULL, 463.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Volapük', [Definition] = NULL, [SortOrder] = 463.00 WHERE [Code] = 'vol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'vot') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vot', 'Votic', NULL, 464.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Votic', [Definition] = NULL, [SortOrder] = 464.00 WHERE [Code] = 'vot' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'wak') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wak', 'Wakashan languages', NULL, 465.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Wakashan languages', [Definition] = NULL, [SortOrder] = 465.00 WHERE [Code] = 'wak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'wln') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wln', 'Walloon', NULL, 466.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Walloon', [Definition] = NULL, [SortOrder] = 466.00 WHERE [Code] = 'wln' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'war') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('war', 'Waray', NULL, 467.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Waray', [Definition] = NULL, [SortOrder] = 467.00 WHERE [Code] = 'war' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'was') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('was', 'Washo', NULL, 468.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Washo', [Definition] = NULL, [SortOrder] = 468.00 WHERE [Code] = 'was' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'wel') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wel', 'Welsh', NULL, 469.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Welsh', [Definition] = NULL, [SortOrder] = 469.00 WHERE [Code] = 'wel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'fry') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fry', 'Western Frisian', NULL, 470.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Western Frisian', [Definition] = NULL, [SortOrder] = 470.00 WHERE [Code] = 'fry' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'wal') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wal', 'Wolaitta; Wolaytta', NULL, 471.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Wolaitta; Wolaytta', [Definition] = NULL, [SortOrder] = 471.00 WHERE [Code] = 'wal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'wol') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wol', 'Wolof', NULL, 472.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Wolof', [Definition] = NULL, [SortOrder] = 472.00 WHERE [Code] = 'wol' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'xho') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xho', 'Xhosa', NULL, 473.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Xhosa', [Definition] = NULL, [SortOrder] = 473.00 WHERE [Code] = 'xho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'sah') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sah', 'Yakut', NULL, 474.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Yakut', [Definition] = NULL, [SortOrder] = 474.00 WHERE [Code] = 'sah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'yao') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yao', 'Yao', NULL, 475.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Yao', [Definition] = NULL, [SortOrder] = 475.00 WHERE [Code] = 'yao' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'yap') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yap', 'Yapese', NULL, 476.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Yapese', [Definition] = NULL, [SortOrder] = 476.00 WHERE [Code] = 'yap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'yid') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yid', 'Yiddish', NULL, 477.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Yiddish', [Definition] = NULL, [SortOrder] = 477.00 WHERE [Code] = 'yid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'yor') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yor', 'Yoruba', NULL, 478.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Yoruba', [Definition] = NULL, [SortOrder] = 478.00 WHERE [Code] = 'yor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'ypk') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypk', 'Yupik languages', NULL, 479.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Yupik languages', [Definition] = NULL, [SortOrder] = 479.00 WHERE [Code] = 'ypk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'znd') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('znd', 'Zande languages', NULL, 480.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Zande languages', [Definition] = NULL, [SortOrder] = 480.00 WHERE [Code] = 'znd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'zap') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zap', 'Zapotec', NULL, 481.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Zapotec', [Definition] = NULL, [SortOrder] = 481.00 WHERE [Code] = 'zap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'zza') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zza', 'Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki', NULL, 482.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki', [Definition] = NULL, [SortOrder] = 482.00 WHERE [Code] = 'zza' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'zen') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zen', 'Zenaga', NULL, 483.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Zenaga', [Definition] = NULL, [SortOrder] = 483.00 WHERE [Code] = 'zen' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'zha') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zha', 'Zhuang; Chuang', NULL, 484.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Zhuang; Chuang', [Definition] = NULL, [SortOrder] = 484.00 WHERE [Code] = 'zha' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'zul') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zul', 'Zulu', NULL, 485.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Zulu', [Definition] = NULL, [SortOrder] = 485.00 WHERE [Code] = 'zul' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguage] WHERE [Code] = 'zun') BEGIN INSERT INTO dbo.[RefLanguage]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zun', 'Zuni', NULL, 486.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguage] -SET [Description] = 'Zuni', [Definition] = NULL, [SortOrder] = 486.00 WHERE [Code] = 'zun' END -END - -PRINT N'Populate RefLanguageUseType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLanguageUseType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguageUseType] WHERE [Code] = 'Correspondence') BEGIN INSERT INTO dbo.[RefLanguageUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Correspondence', 'Correspondence - - ', 'The language specified by the related Language Code is the language the person uses for both written and spoken correspondence.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguageUseType] -SET [Description] = 'Correspondence - - ', [Definition] = 'The language specified by the related Language Code is the language the person uses for both written and spoken correspondence.', [SortOrder] = 1.00 WHERE [Code] = 'Correspondence' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguageUseType] WHERE [Code] = 'Dominant') BEGIN INSERT INTO dbo.[RefLanguageUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Dominant', 'Dominant language', 'The language specified by the related Language Code is the person''s dominant language.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguageUseType] -SET [Description] = 'Dominant language', [Definition] = 'The language specified by the related Language Code is the person''s dominant language.', [SortOrder] = 2.00 WHERE [Code] = 'Dominant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguageUseType] WHERE [Code] = 'Home') BEGIN INSERT INTO dbo.[RefLanguageUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Home', 'Home language', 'The language specified by the related Language Code is the language the person uses at home.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguageUseType] -SET [Description] = 'Home language', [Definition] = 'The language specified by the related Language Code is the language the person uses at home.', [SortOrder] = 3.00 WHERE [Code] = 'Home' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguageUseType] WHERE [Code] = 'Native') BEGIN INSERT INTO dbo.[RefLanguageUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Native', 'Native language', 'The language specified by the related Language Code is the person''s native language.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguageUseType] -SET [Description] = 'Native language', [Definition] = 'The language specified by the related Language Code is the person''s native language.', [SortOrder] = 4.00 WHERE [Code] = 'Native' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguageUseType] WHERE [Code] = 'OtherLanguageProficiency') BEGIN INSERT INTO dbo.[RefLanguageUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherLanguageProficiency', 'Other language proficiency', 'The language specified by the related Language Code is the language the person''s other language proficiency.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguageUseType] -SET [Description] = 'Other language proficiency', [Definition] = 'The language specified by the related Language Code is the language the person''s other language proficiency.', [SortOrder] = 5.00 WHERE [Code] = 'OtherLanguageProficiency' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguageUseType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefLanguageUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The function and context in which a person uses the language specified by the related Language Code is in a category not yet defined in CEDS.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguageUseType] -SET [Description] = 'Other', [Definition] = 'The function and context in which a person uses the language specified by the related Language Code is in a category not yet defined in CEDS.', [SortOrder] = 6.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguageUseType] WHERE [Code] = 'Spoken') BEGIN INSERT INTO dbo.[RefLanguageUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Spoken', 'Spoken Correspondence', 'The language specified by the related Language Code is the language the person uses for spoken correspondence.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguageUseType] -SET [Description] = 'Spoken Correspondence', [Definition] = 'The language specified by the related Language Code is the language the person uses for spoken correspondence.', [SortOrder] = 6.00 WHERE [Code] = 'Spoken' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLanguageUseType] WHERE [Code] = 'Written') BEGIN INSERT INTO dbo.[RefLanguageUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Written', 'Written Correspondence', 'The language specified by the related Language Code is the language the person uses for written correspondence.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLanguageUseType] -SET [Description] = 'Written Correspondence', [Definition] = 'The language specified by the related Language Code is the language the person uses for written correspondence.', [SortOrder] = 7.00 WHERE [Code] = 'Written' END -END - -PRINT N'Populate RefLeaFundsTransferType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLeaFundsTransferType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaFundsTransferType] WHERE [Code] = 'FromEligibleProgram') BEGIN INSERT INTO dbo.[RefLeaFundsTransferType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FromEligibleProgram', 'From Eligible Program', 'The LEA transferred funds from an eligible program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaFundsTransferType] -SET [Description] = 'From Eligible Program', [Definition] = 'The LEA transferred funds from an eligible program.', [SortOrder] = 1.00 WHERE [Code] = 'FromEligibleProgram' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaFundsTransferType] WHERE [Code] = 'ToEligibleProgram') BEGIN INSERT INTO dbo.[RefLeaFundsTransferType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ToEligibleProgram', 'To Eligible Program', 'The LEA transferred funds to an eligible program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaFundsTransferType] -SET [Description] = 'To Eligible Program', [Definition] = 'The LEA transferred funds to an eligible program.', [SortOrder] = 2.00 WHERE [Code] = 'ToEligibleProgram' END -END - -PRINT N'Populate RefLeaImprovementStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLeaImprovementStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaImprovementStatus] WHERE [Code] = 'CorrectiveAction') BEGIN INSERT INTO dbo.[RefLeaImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CorrectiveAction', 'Corrective action', 'The improvement stage for AYP of the local education agency (LEA) is: Corrective Action.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaImprovementStatus] -SET [Description] = 'Corrective action', [Definition] = 'The improvement stage for AYP of the local education agency (LEA) is: Corrective Action.', [SortOrder] = 1.00 WHERE [Code] = 'CorrectiveAction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaImprovementStatus] WHERE [Code] = 'Year1') BEGIN INSERT INTO dbo.[RefLeaImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Year1', 'Improvement status Year 1', 'The improvement stage for AYP of the local education agency (LEA) is: Improvement status Year 1', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaImprovementStatus] -SET [Description] = 'Improvement status Year 1', [Definition] = 'The improvement stage for AYP of the local education agency (LEA) is: Improvement status Year 1', [SortOrder] = 2.00 WHERE [Code] = 'Year1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaImprovementStatus] WHERE [Code] = 'Year2') BEGIN INSERT INTO dbo.[RefLeaImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Year2', 'Improvement status Year 2', 'The improvement stage for AYP of the local education agency (LEA) is: Improvement status Year 2', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaImprovementStatus] -SET [Description] = 'Improvement status Year 2', [Definition] = 'The improvement stage for AYP of the local education agency (LEA) is: Improvement status Year 2', [SortOrder] = 3.00 WHERE [Code] = 'Year2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaImprovementStatus] WHERE [Code] = 'NotIdentified') BEGIN INSERT INTO dbo.[RefLeaImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotIdentified', 'Not identified for improvement', 'The improvement stage for AYP of the local education agency (LEA) is: Not identified for improvement', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaImprovementStatus] -SET [Description] = 'Not identified for improvement', [Definition] = 'The improvement stage for AYP of the local education agency (LEA) is: Not identified for improvement', [SortOrder] = 4.00 WHERE [Code] = 'NotIdentified' END -END - -PRINT N'Populate RefLearnerActionType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearnerActionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'abandoned') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abandoned', 'Abandoned', 'Indicates the activity provider has determined that the session was abnormally terminated either by an actor or due to a system failure.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Abandoned', [Definition] = 'Indicates the activity provider has determined that the session was abnormally terminated either by an actor or due to a system failure.', [SortOrder] = 1.00 WHERE [Code] = 'abandoned' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'answered') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('answered', 'Answered', 'Indicates the actor replied to a question, where the object is generally an activity representing the question. The text of the answer will often be included in the response inside result.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Answered', [Definition] = 'Indicates the actor replied to a question, where the object is generally an activity representing the question. The text of the answer will often be included in the response inside result.', [SortOrder] = 2.00 WHERE [Code] = 'answered' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'asked') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asked', 'Asked', 'Indicates an inquiry by an actor with the expectation of a response or answer to a question.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Asked', [Definition] = 'Indicates an inquiry by an actor with the expectation of a response or answer to a question.', [SortOrder] = 3.00 WHERE [Code] = 'asked' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'attempted') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('attempted', 'Attempted', 'Indicates the actor made an effort to access the object. An attempt statement without additional activities could be considered incomplete in some cases.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Attempted', [Definition] = 'Indicates the actor made an effort to access the object. An attempt statement without additional activities could be considered incomplete in some cases.', [SortOrder] = 4.00 WHERE [Code] = 'attempted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'attended') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('attended', 'Attended', 'Indicates the actor was present at a virtual or physical event or activity.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Attended', [Definition] = 'Indicates the actor was present at a virtual or physical event or activity.', [SortOrder] = 5.00 WHERE [Code] = 'attended' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'commented') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('commented', 'Commented', 'Indicates the actor provided digital or written annotations on or about an object.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Commented', [Definition] = 'Indicates the actor provided digital or written annotations on or about an object.', [SortOrder] = 6.00 WHERE [Code] = 'commented' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'completed') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('completed', 'Completed', 'Indicates the actor finished or concluded the activity normally.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Completed', [Definition] = 'Indicates the actor finished or concluded the activity normally.', [SortOrder] = 7.00 WHERE [Code] = 'completed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'exited') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('exited', 'Exited', 'Indicates the actor intentionally departed from the activity or object.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Exited', [Definition] = 'Indicates the actor intentionally departed from the activity or object.', [SortOrder] = 8.00 WHERE [Code] = 'exited' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'experienced') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('experienced', 'Experienced', 'Indicates the actor only encountered the object, and is applicable in situations where a specific achievement or completion is not required.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Experienced', [Definition] = 'Indicates the actor only encountered the object, and is applicable in situations where a specific achievement or completion is not required.', [SortOrder] = 9.00 WHERE [Code] = 'experienced' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'failed') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('failed', 'Failed', 'Indicates the actor did not successfully pass an activity to a level of predetermined satisfaction.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Failed', [Definition] = 'Indicates the actor did not successfully pass an activity to a level of predetermined satisfaction.', [SortOrder] = 10.00 WHERE [Code] = 'failed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'imported') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imported', 'Imported', 'Indicates the actor introduced an object into a physical or virtual location.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Imported', [Definition] = 'Indicates the actor introduced an object into a physical or virtual location.', [SortOrder] = 11.00 WHERE [Code] = 'imported' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'initialized') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('initialized', 'Initialized', 'Indicates the activity provider has determined that the actor successfully started an activity.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Initialized', [Definition] = 'Indicates the activity provider has determined that the actor successfully started an activity.', [SortOrder] = 12.00 WHERE [Code] = 'initialized' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'interacted') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('interacted', 'Interacted', 'Indicates the actor engaged with a physical or virtual object.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Interacted', [Definition] = 'Indicates the actor engaged with a physical or virtual object.', [SortOrder] = 13.00 WHERE [Code] = 'interacted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'launched') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('launched', 'Launched', 'Indicates the actor attempted to start an activity.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Launched', [Definition] = 'Indicates the actor attempted to start an activity.', [SortOrder] = 14.00 WHERE [Code] = 'launched' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'logged-in') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('logged-in', 'Logged-In', 'Indicates the actor gained access to a system or service by identifying and authenticating with the credentials provided by the actor.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Logged-In', [Definition] = 'Indicates the actor gained access to a system or service by identifying and authenticating with the credentials provided by the actor.', [SortOrder] = 15.00 WHERE [Code] = 'logged-in' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'logged-out') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('logged-out', 'Logged-Out', 'Indicates the actor either lost or discontinued access to a system or service.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Logged-Out', [Definition] = 'Indicates the actor either lost or discontinued access to a system or service.', [SortOrder] = 16.00 WHERE [Code] = 'logged-out' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'mastered') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mastered', 'Mastered', 'Indicates the highest level of comprehension or competence the actor performed in an activity.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Mastered', [Definition] = 'Indicates the highest level of comprehension or competence the actor performed in an activity.', [SortOrder] = 17.00 WHERE [Code] = 'mastered' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'passed') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('passed', 'Passed', 'Indicates the actor successfully passed an activity to a level of predetermined satisfaction.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Passed', [Definition] = 'Indicates the actor successfully passed an activity to a level of predetermined satisfaction.', [SortOrder] = 18.00 WHERE [Code] = 'passed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'preferred') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('preferred', 'Preferred', 'Indicates the selected choices, favored options or settings of an actor in relation to an object or activity.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Preferred', [Definition] = 'Indicates the selected choices, favored options or settings of an actor in relation to an object or activity.', [SortOrder] = 19.00 WHERE [Code] = 'preferred' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'progressed') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('progressed', 'Progressed', 'Indicates a value of how much of an actor has advanced or moved through an activity.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Progressed', [Definition] = 'Indicates a value of how much of an actor has advanced or moved through an activity.', [SortOrder] = 20.00 WHERE [Code] = 'progressed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'registered') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('registered', 'Registered', 'Indicates the actor is officially enrolled or inducted in an activity.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Registered', [Definition] = 'Indicates the actor is officially enrolled or inducted in an activity.', [SortOrder] = 21.00 WHERE [Code] = 'registered' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'responded') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('responded', 'Responded', 'Indicates an actor reacted or replied to an object.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Responded', [Definition] = 'Indicates an actor reacted or replied to an object.', [SortOrder] = 22.00 WHERE [Code] = 'responded' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'resumed') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('resumed', 'Resumed', 'Indicates the application has determined that the actor continued or reopened a suspended attempt on an activity.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Resumed', [Definition] = 'Indicates the application has determined that the actor continued or reopened a suspended attempt on an activity.', [SortOrder] = 23.00 WHERE [Code] = 'resumed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'satisfied') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('satisfied', 'Satisfied', 'Indicates that the authority or activity provider determined the actor has fulfilled the criteria of the object or activity.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Satisfied', [Definition] = 'Indicates that the authority or activity provider determined the actor has fulfilled the criteria of the object or activity.', [SortOrder] = 24.00 WHERE [Code] = 'satisfied' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'scored') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scored', 'Scored', 'Indicates a numerical value related to an actor''s performance on an activity.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Scored', [Definition] = 'Indicates a numerical value related to an actor''s performance on an activity.', [SortOrder] = 25.00 WHERE [Code] = 'scored' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'shared') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shared', 'Shared', 'Indicates the actor''s intent to openly provide access to an object of common interest to other actors or groups.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Shared', [Definition] = 'Indicates the actor''s intent to openly provide access to an object of common interest to other actors or groups.', [SortOrder] = 26.00 WHERE [Code] = 'shared' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'suspended') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suspended', 'Suspended', 'Indicates the status of a temporarily halted activity when an actor''s intent is returning to the or object activity at a later time.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Suspended', [Definition] = 'Indicates the status of a temporarily halted activity when an actor''s intent is returning to the or object activity at a later time.', [SortOrder] = 27.00 WHERE [Code] = 'suspended' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'terminated') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('terminated', 'Terminated', 'Indicates that the actor successfully ended an activity.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Terminated', [Definition] = 'Indicates that the actor successfully ended an activity.', [SortOrder] = 28.00 WHERE [Code] = 'terminated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'voided') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('voided', 'Voided', 'A special reserved verb used by a LRS or application to mark a statement as invalid. See the xAPI specification for details on Voided statements.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Voided', [Definition] = 'A special reserved verb used by a LRS or application to mark a statement as invalid. See the xAPI specification for details on Voided statements.', [SortOrder] = 29.00 WHERE [Code] = 'voided' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActionType] WHERE [Code] = 'waived') BEGIN INSERT INTO dbo.[RefLearnerActionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waived', 'Waived', 'Indicates that the learning activity requirements were met by means other than completing the activity. A waived statement is used to indicate that the activity may be skipped by the actor.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActionType] -SET [Description] = 'Waived', [Definition] = 'Indicates that the learning activity requirements were met by means other than completing the activity. A waived statement is used to indicate that the activity may be skipped by the actor.', [SortOrder] = 30.00 WHERE [Code] = 'waived' END -END - -PRINT N'Populate RefLearnerActivityAddToGradeBookFlag table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearnerActivityAddToGradeBookFlag]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActivityAddToGradeBookFlag] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefLearnerActivityAddToGradeBookFlag]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActivityAddToGradeBookFlag] -SET [Description] = 'Yes', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActivityAddToGradeBookFlag] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefLearnerActivityAddToGradeBookFlag]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActivityAddToGradeBookFlag] -SET [Description] = 'No', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActivityAddToGradeBookFlag] WHERE [Code] = 'NotSelected') BEGIN INSERT INTO dbo.[RefLearnerActivityAddToGradeBookFlag]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotSelected', 'Not selected', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActivityAddToGradeBookFlag] -SET [Description] = 'Not selected', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'NotSelected' END -END - -PRINT N'Populate RefLearnerActivityMaximumTimeAllowedUnits table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearnerActivityMaximumTimeAllowedUnits]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActivityMaximumTimeAllowedUnits] WHERE [Code] = 'Week') BEGIN INSERT INTO dbo.[RefLearnerActivityMaximumTimeAllowedUnits]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Week', 'Week', 'The value specified for Learner Activity Maximum Time Allowed is a number of weeks.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActivityMaximumTimeAllowedUnits] -SET [Description] = 'Week', [Definition] = 'The value specified for Learner Activity Maximum Time Allowed is a number of weeks.', [SortOrder] = 1.00 WHERE [Code] = 'Week' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActivityMaximumTimeAllowedUnits] WHERE [Code] = 'Day') BEGIN INSERT INTO dbo.[RefLearnerActivityMaximumTimeAllowedUnits]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Day', 'Day', 'The value specified for Learner Activity Maximum Time Allowed is a number of days.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActivityMaximumTimeAllowedUnits] -SET [Description] = 'Day', [Definition] = 'The value specified for Learner Activity Maximum Time Allowed is a number of days.', [SortOrder] = 2.00 WHERE [Code] = 'Day' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActivityMaximumTimeAllowedUnits] WHERE [Code] = 'Hour') BEGIN INSERT INTO dbo.[RefLearnerActivityMaximumTimeAllowedUnits]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Hour', 'Hour', 'The value specified for Learner Activity Maximum Time Allowed is a number of hours.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActivityMaximumTimeAllowedUnits] -SET [Description] = 'Hour', [Definition] = 'The value specified for Learner Activity Maximum Time Allowed is a number of hours.', [SortOrder] = 3.00 WHERE [Code] = 'Hour' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActivityMaximumTimeAllowedUnits] WHERE [Code] = 'Minute') BEGIN INSERT INTO dbo.[RefLearnerActivityMaximumTimeAllowedUnits]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Minute', 'Minute', 'The value specified for Learner Activity Maximum Time Allowed is a number of minute.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActivityMaximumTimeAllowedUnits] -SET [Description] = 'Minute', [Definition] = 'The value specified for Learner Activity Maximum Time Allowed is a number of minute.', [SortOrder] = 4.00 WHERE [Code] = 'Minute' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActivityMaximumTimeAllowedUnits] WHERE [Code] = 'Second') BEGIN INSERT INTO dbo.[RefLearnerActivityMaximumTimeAllowedUnits]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Second', 'Second', 'The value specified for Learner Activity Maximum Time Allowed is a number of seconds.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActivityMaximumTimeAllowedUnits] -SET [Description] = 'Second', [Definition] = 'The value specified for Learner Activity Maximum Time Allowed is a number of seconds.', [SortOrder] = 5.00 WHERE [Code] = 'Second' END -END - -PRINT N'Populate RefLearnerActivityType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearnerActivityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActivityType] WHERE [Code] = 'Assignment') BEGIN INSERT INTO dbo.[RefLearnerActivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assignment', 'Assignment', 'The type of work assigned to the learner is an assignment.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActivityType] -SET [Description] = 'Assignment', [Definition] = 'The type of work assigned to the learner is an assignment.', [SortOrder] = 1.00 WHERE [Code] = 'Assignment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActivityType] WHERE [Code] = 'LearningResource') BEGIN INSERT INTO dbo.[RefLearnerActivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LearningResource', 'Learning Resource', 'The type of assignment to the learner is a learning resource.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActivityType] -SET [Description] = 'Learning Resource', [Definition] = 'The type of assignment to the learner is a learning resource.', [SortOrder] = 2.00 WHERE [Code] = 'LearningResource' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActivityType] WHERE [Code] = 'Activity') BEGIN INSERT INTO dbo.[RefLearnerActivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Activity', 'Activity', 'The type of work assigned to the learner is an activity.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActivityType] -SET [Description] = 'Activity', [Definition] = 'The type of work assigned to the learner is an activity.', [SortOrder] = 3.00 WHERE [Code] = 'Activity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearnerActivityType] WHERE [Code] = 'Lesson') BEGIN INSERT INTO dbo.[RefLearnerActivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Lesson', 'Lesson', 'The type of work assigned to the learner is a lesson.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearnerActivityType] -SET [Description] = 'Lesson', [Definition] = 'The type of work assigned to the learner is a lesson.', [SortOrder] = 4.00 WHERE [Code] = 'Lesson' END -END - -PRINT N'Populate RefLearningResourceAccessAPIType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceAccessAPIType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessAPIType] WHERE [Code] = 'AndroidAccessibility') BEGIN INSERT INTO dbo.[RefLearningResourceAccessAPIType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AndroidAccessibility', 'Android Accessibility', 'The learning resource is compatible with Android Accessibility.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessAPIType] -SET [Description] = 'Android Accessibility', [Definition] = 'The learning resource is compatible with Android Accessibility.', [SortOrder] = 2.00 WHERE [Code] = 'AndroidAccessibility' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessAPIType] WHERE [Code] = 'ARIA') BEGIN INSERT INTO dbo.[RefLearningResourceAccessAPIType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ARIA', 'ARIA', 'The learning resource is compatible with ARIA for accessibility.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessAPIType] -SET [Description] = 'ARIA', [Definition] = 'The learning resource is compatible with ARIA for accessibility.', [SortOrder] = 4.00 WHERE [Code] = 'ARIA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessAPIType] WHERE [Code] = 'ATK') BEGIN INSERT INTO dbo.[RefLearningResourceAccessAPIType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ATK', 'ATK', 'The learning resource is compatible with ATK for accessibility.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessAPIType] -SET [Description] = 'ATK', [Definition] = 'The learning resource is compatible with ATK for accessibility.', [SortOrder] = 6.00 WHERE [Code] = 'ATK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessAPIType] WHERE [Code] = 'AT-SPI') BEGIN INSERT INTO dbo.[RefLearningResourceAccessAPIType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AT-SPI', 'AT-SPI', 'The learning resource is compatible with AT-SPI for accessibility.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessAPIType] -SET [Description] = 'AT-SPI', [Definition] = 'The learning resource is compatible with AT-SPI for accessibility.', [SortOrder] = 8.00 WHERE [Code] = 'AT-SPI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessAPIType] WHERE [Code] = 'BlackberryAccessibility') BEGIN INSERT INTO dbo.[RefLearningResourceAccessAPIType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BlackberryAccessibility', 'Blackberry Accessibility', 'The learning resource is compatible with Blackberry Accessibility.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessAPIType] -SET [Description] = 'Blackberry Accessibility', [Definition] = 'The learning resource is compatible with Blackberry Accessibility.', [SortOrder] = 10.00 WHERE [Code] = 'BlackberryAccessibility' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessAPIType] WHERE [Code] = 'iAccessible2') BEGIN INSERT INTO dbo.[RefLearningResourceAccessAPIType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iAccessible2', 'I Accessible2', 'The learning resource is compatible with I Accessible2.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessAPIType] -SET [Description] = 'I Accessible2', [Definition] = 'The learning resource is compatible with I Accessible2.', [SortOrder] = 12.00 WHERE [Code] = 'iAccessible2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessAPIType] WHERE [Code] = 'iOSAccessibility') BEGIN INSERT INTO dbo.[RefLearningResourceAccessAPIType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iOSAccessibility', 'iOS Accessibility', 'The learning resource is compatible with iOS Accessibility.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessAPIType] -SET [Description] = 'iOS Accessibility', [Definition] = 'The learning resource is compatible with iOS Accessibility.', [SortOrder] = 14.00 WHERE [Code] = 'iOSAccessibility' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessAPIType] WHERE [Code] = 'JavaAccessibility') BEGIN INSERT INTO dbo.[RefLearningResourceAccessAPIType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JavaAccessibility', 'Java Accessibility', 'The learning resource is compatible with Java Accessibility.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessAPIType] -SET [Description] = 'Java Accessibility', [Definition] = 'The learning resource is compatible with Java Accessibility.', [SortOrder] = 16.00 WHERE [Code] = 'JavaAccessibility' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessAPIType] WHERE [Code] = 'MacOSXAccessibility') BEGIN INSERT INTO dbo.[RefLearningResourceAccessAPIType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MacOSXAccessibility', 'Mac OSX Accessibility', 'The learning resource is compatible with Mac OSX Accessibility.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessAPIType] -SET [Description] = 'Mac OSX Accessibility', [Definition] = 'The learning resource is compatible with Mac OSX Accessibility.', [SortOrder] = 18.00 WHERE [Code] = 'MacOSXAccessibility' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessAPIType] WHERE [Code] = 'MSAA') BEGIN INSERT INTO dbo.[RefLearningResourceAccessAPIType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MSAA', 'MSAA', 'The learning resource is compatible with MSAA.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessAPIType] -SET [Description] = 'MSAA', [Definition] = 'The learning resource is compatible with MSAA.', [SortOrder] = 20.00 WHERE [Code] = 'MSAA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessAPIType] WHERE [Code] = 'UIAutomation') BEGIN INSERT INTO dbo.[RefLearningResourceAccessAPIType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UIAutomation', 'UI Automation', 'The learning resource is compatible with the UI Automation.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessAPIType] -SET [Description] = 'UI Automation', [Definition] = 'The learning resource is compatible with the UI Automation.', [SortOrder] = 22.00 WHERE [Code] = 'UIAutomation' END -END - -PRINT N'Populate RefLearningResourceAccessHazardType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceAccessHazardType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessHazardType] WHERE [Code] = 'Flashing') BEGIN INSERT INTO dbo.[RefLearningResourceAccessHazardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Flashing', 'Flashing', 'Flashing is a characteristic of the described learning resource that is physiologically dangerous to some users.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessHazardType] -SET [Description] = 'Flashing', [Definition] = 'Flashing is a characteristic of the described learning resource that is physiologically dangerous to some users.', [SortOrder] = 4.00 WHERE [Code] = 'Flashing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessHazardType] WHERE [Code] = 'MotionSimulation') BEGIN INSERT INTO dbo.[RefLearningResourceAccessHazardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MotionSimulation', 'Motion simulation', 'Motion simulation is a characteristic of the described learning resource that is physiologically dangerous to some users.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessHazardType] -SET [Description] = 'Motion simulation', [Definition] = 'Motion simulation is a characteristic of the described learning resource that is physiologically dangerous to some users.', [SortOrder] = 6.00 WHERE [Code] = 'MotionSimulation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessHazardType] WHERE [Code] = 'Sound') BEGIN INSERT INTO dbo.[RefLearningResourceAccessHazardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Sound', 'Sound', 'Sound is a characteristic of the described learning resource that is physiologically dangerous to some users.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessHazardType] -SET [Description] = 'Sound', [Definition] = 'Sound is a characteristic of the described learning resource that is physiologically dangerous to some users.', [SortOrder] = 8.00 WHERE [Code] = 'Sound' END -END - -PRINT N'Populate RefLearningResourceAccessModeType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceAccessModeType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessModeType] WHERE [Code] = 'auditory') BEGIN INSERT INTO dbo.[RefLearningResourceAccessModeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auditory', 'Auditory', 'Auditory is an access mode through which the intellectual content of a described learning resource or adaptation is communicated.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessModeType] -SET [Description] = 'Auditory', [Definition] = 'Auditory is an access mode through which the intellectual content of a described learning resource or adaptation is communicated.', [SortOrder] = 2.00 WHERE [Code] = 'auditory' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessModeType] WHERE [Code] = 'colorDependent') BEGIN INSERT INTO dbo.[RefLearningResourceAccessModeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('colorDependent', 'Color Dependent', 'Color Dependent is an access mode through which the intellectual content of a described learning resource or adaptation is communicated.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessModeType] -SET [Description] = 'Color Dependent', [Definition] = 'Color Dependent is an access mode through which the intellectual content of a described learning resource or adaptation is communicated.', [SortOrder] = 4.00 WHERE [Code] = 'colorDependent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessModeType] WHERE [Code] = 'tactile') BEGIN INSERT INTO dbo.[RefLearningResourceAccessModeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tactile', 'Tactile', 'Tactile is an access mode through which the intellectual content of a described learning resource or adaptation is communicated.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessModeType] -SET [Description] = 'Tactile', [Definition] = 'Tactile is an access mode through which the intellectual content of a described learning resource or adaptation is communicated.', [SortOrder] = 6.00 WHERE [Code] = 'tactile' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessModeType] WHERE [Code] = 'textOnImage') BEGIN INSERT INTO dbo.[RefLearningResourceAccessModeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('textOnImage', 'Text On Image', 'Text On Image is an access mode through which the intellectual content of a described learning resource or adaptation is communicated.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessModeType] -SET [Description] = 'Text On Image', [Definition] = 'Text On Image is an access mode through which the intellectual content of a described learning resource or adaptation is communicated.', [SortOrder] = 8.00 WHERE [Code] = 'textOnImage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessModeType] WHERE [Code] = 'textual') BEGIN INSERT INTO dbo.[RefLearningResourceAccessModeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('textual', 'Textual', 'Textual is an access mode through which the intellectual content of a described learning resource or adaptation is communicated.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessModeType] -SET [Description] = 'Textual', [Definition] = 'Textual is an access mode through which the intellectual content of a described learning resource or adaptation is communicated.', [SortOrder] = 10.00 WHERE [Code] = 'textual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessModeType] WHERE [Code] = 'visual') BEGIN INSERT INTO dbo.[RefLearningResourceAccessModeType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('visual', 'Visual', 'Visual is an access mode through which the intellectual content of a described learning resource or adaptation is communicated.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessModeType] -SET [Description] = 'Visual', [Definition] = 'Visual is an access mode through which the intellectual content of a described learning resource or adaptation is communicated.', [SortOrder] = 12.00 WHERE [Code] = 'visual' END -END - -PRINT N'Populate RefLearningResourceAccessRightsUrl table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceAccessRightsUrl]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessRightsUrl] WHERE [Code] = 'FreeAccess') BEGIN INSERT INTO dbo.[RefLearningResourceAccessRightsUrl]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FreeAccess', 'Free Access', 'The right to view and/or download material without financial, registration, or excessive advertising barriers. [https://ceds.ed.gov/element/001561#FreeAccess]', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessRightsUrl] -SET [Description] = 'Free Access', [Definition] = 'The right to view and/or download material without financial, registration, or excessive advertising barriers. [https://ceds.ed.gov/element/001561#FreeAccess]', [SortOrder] = 0.00 WHERE [Code] = 'FreeAccess' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessRightsUrl] WHERE [Code] = 'FreeAccessWithRegistration') BEGIN INSERT INTO dbo.[RefLearningResourceAccessRightsUrl]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FreeAccessWithRegistration', 'Free Access with Registration', 'The right to view and/or download material without financial barriers but users are required to register or experience some other low-barrier to use. [https://ceds.ed.gov/element/001561#FreeAccessWithRegistration]', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessRightsUrl] -SET [Description] = 'Free Access with Registration', [Definition] = 'The right to view and/or download material without financial barriers but users are required to register or experience some other low-barrier to use. [https://ceds.ed.gov/element/001561#FreeAccessWithRegistration]', [SortOrder] = 1.00 WHERE [Code] = 'FreeAccessWithRegistration' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessRightsUrl] WHERE [Code] = 'LimitedFreeAccess') BEGIN INSERT INTO dbo.[RefLearningResourceAccessRightsUrl]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LimitedFreeAccess', 'Limited Free Access', 'Some material is available for viewing and/or downloading but most material tends to be accessible through other means. [https://ceds.ed.gov/element/001561#LimitedFreeAccess]', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessRightsUrl] -SET [Description] = 'Limited Free Access', [Definition] = 'Some material is available for viewing and/or downloading but most material tends to be accessible through other means. [https://ceds.ed.gov/element/001561#LimitedFreeAccess]', [SortOrder] = 3.00 WHERE [Code] = 'LimitedFreeAccess' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessRightsUrl] WHERE [Code] = 'AvailableForPurchase') BEGIN INSERT INTO dbo.[RefLearningResourceAccessRightsUrl]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AvailableForPurchase', 'Available for Purchase', 'The right to view, keep, and/or download material upon payment of a one-time fee. [https://ceds.ed.gov/element/001561#AvailableForPurchase]', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessRightsUrl] -SET [Description] = 'Available for Purchase', [Definition] = 'The right to view, keep, and/or download material upon payment of a one-time fee. [https://ceds.ed.gov/element/001561#AvailableForPurchase]', [SortOrder] = 5.00 WHERE [Code] = 'AvailableForPurchase' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessRightsUrl] WHERE [Code] = 'AvailableBySubscription') BEGIN INSERT INTO dbo.[RefLearningResourceAccessRightsUrl]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AvailableBySubscription', 'Available by Subscription', 'The right to view and/or download material, often for a set period of time, by way of a financial agreement between rights holders and authorized users. [https://ceds.ed.gov/element/001561#AvailableBySubscription]', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessRightsUrl] -SET [Description] = 'Available by Subscription', [Definition] = 'The right to view and/or download material, often for a set period of time, by way of a financial agreement between rights holders and authorized users. [https://ceds.ed.gov/element/001561#AvailableBySubscription]', [SortOrder] = 7.00 WHERE [Code] = 'AvailableBySubscription' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAccessRightsUrl] WHERE [Code] = 'PublisherDefined') BEGIN INSERT INTO dbo.[RefLearningResourceAccessRightsUrl]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PublisherDefined', 'Publisher Defined', 'Publisher defined conditions that govern the user’s ability to access a learning resource.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAccessRightsUrl] -SET [Description] = 'Publisher Defined', [Definition] = 'Publisher defined conditions that govern the user’s ability to access a learning resource.', [SortOrder] = 9.00 WHERE [Code] = 'PublisherDefined' END -END - -PRINT N'Populate RefLearningResourceAuthorType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceAuthorType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAuthorType] WHERE [Code] = 'Organization') BEGIN INSERT INTO dbo.[RefLearningResourceAuthorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Organization', 'Organization', 'The specified author of the learning resource is an organization.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAuthorType] -SET [Description] = 'Organization', [Definition] = 'The specified author of the learning resource is an organization.', [SortOrder] = 1.00 WHERE [Code] = 'Organization' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceAuthorType] WHERE [Code] = 'Person') BEGIN INSERT INTO dbo.[RefLearningResourceAuthorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Person', 'Person', 'The specified author of the learning resource is a person.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceAuthorType] -SET [Description] = 'Person', [Definition] = 'The specified author of the learning resource is a person.', [SortOrder] = 2.00 WHERE [Code] = 'Person' END -END - -PRINT N'Populate RefLearningResourceBookFormatType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceBookFormatType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceBookFormatType] WHERE [Code] = 'Ebook') BEGIN INSERT INTO dbo.[RefLearningResourceBookFormatType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Ebook', 'Ebook', 'Ebook is the specific format for the learning resource that is a book.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceBookFormatType] -SET [Description] = 'Ebook', [Definition] = 'Ebook is the specific format for the learning resource that is a book.', [SortOrder] = 2.00 WHERE [Code] = 'Ebook' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceBookFormatType] WHERE [Code] = 'Hardcover') BEGIN INSERT INTO dbo.[RefLearningResourceBookFormatType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Hardcover', 'Hardcover', 'Hardcover is the specific format for the learning resource that is a book.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceBookFormatType] -SET [Description] = 'Hardcover', [Definition] = 'Hardcover is the specific format for the learning resource that is a book.', [SortOrder] = 4.00 WHERE [Code] = 'Hardcover' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceBookFormatType] WHERE [Code] = 'Paperback') BEGIN INSERT INTO dbo.[RefLearningResourceBookFormatType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Paperback', 'Paperback', 'Paperback is the specific format for the learning resource that is a book.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceBookFormatType] -SET [Description] = 'Paperback', [Definition] = 'Paperback is the specific format for the learning resource that is a book.', [SortOrder] = 6.00 WHERE [Code] = 'Paperback' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceBookFormatType] WHERE [Code] = 'DAISY202') BEGIN INSERT INTO dbo.[RefLearningResourceBookFormatType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DAISY202', 'DAISY202', 'DAISY202 is the specific format for the learning resource that is a book.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceBookFormatType] -SET [Description] = 'DAISY202', [Definition] = 'DAISY202 is the specific format for the learning resource that is a book.', [SortOrder] = 8.00 WHERE [Code] = 'DAISY202' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceBookFormatType] WHERE [Code] = 'DAISY3') BEGIN INSERT INTO dbo.[RefLearningResourceBookFormatType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DAISY3', 'DAISY3', 'DAISY3 is the specific format for the learning resource that is a book.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceBookFormatType] -SET [Description] = 'DAISY3', [Definition] = 'DAISY3 is the specific format for the learning resource that is a book.', [SortOrder] = 10.00 WHERE [Code] = 'DAISY3' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceBookFormatType] WHERE [Code] = 'EPUB2') BEGIN INSERT INTO dbo.[RefLearningResourceBookFormatType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EPUB2', 'EPUB2', 'EPUB2 is the specific format for the learning resource that is a book.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceBookFormatType] -SET [Description] = 'EPUB2', [Definition] = 'EPUB2 is the specific format for the learning resource that is a book.', [SortOrder] = 12.00 WHERE [Code] = 'EPUB2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceBookFormatType] WHERE [Code] = 'EPUB3') BEGIN INSERT INTO dbo.[RefLearningResourceBookFormatType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EPUB3', 'EPUB3', 'EPUB3 is the specific format for the learning resource that is a book.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceBookFormatType] -SET [Description] = 'EPUB3', [Definition] = 'EPUB3 is the specific format for the learning resource that is a book.', [SortOrder] = 14.00 WHERE [Code] = 'EPUB3' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceBookFormatType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefLearningResourceBookFormatType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The specific format for the learning resource that is a book is in a category not yet defined in CEDS.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceBookFormatType] -SET [Description] = 'Other', [Definition] = 'The specific format for the learning resource that is a book is in a category not yet defined in CEDS.', [SortOrder] = 16.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefLearningResourceCompetencyAlignmentType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceCompetencyAlignmentType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceCompetencyAlignmentType] WHERE [Code] = 'Assesses') BEGIN INSERT INTO dbo.[RefLearningResourceCompetencyAlignmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assesses', 'Assesses', 'The learning resource Assesses the aligned competency.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceCompetencyAlignmentType] -SET [Description] = 'Assesses', [Definition] = 'The learning resource Assesses the aligned competency.', [SortOrder] = 1.00 WHERE [Code] = 'Assesses' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceCompetencyAlignmentType] WHERE [Code] = 'Teaches') BEGIN INSERT INTO dbo.[RefLearningResourceCompetencyAlignmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Teaches', 'Teaches', 'The learning resource Teaches the aligned competency.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceCompetencyAlignmentType] -SET [Description] = 'Teaches', [Definition] = 'The learning resource Teaches the aligned competency.', [SortOrder] = 2.00 WHERE [Code] = 'Teaches' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceCompetencyAlignmentType] WHERE [Code] = 'Requires') BEGIN INSERT INTO dbo.[RefLearningResourceCompetencyAlignmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Requires', 'Requires', 'The learning resource Requires the aligned competency.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceCompetencyAlignmentType] -SET [Description] = 'Requires', [Definition] = 'The learning resource Requires the aligned competency.', [SortOrder] = 3.00 WHERE [Code] = 'Requires' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceCompetencyAlignmentType] WHERE [Code] = 'TextComplexity') BEGIN INSERT INTO dbo.[RefLearningResourceCompetencyAlignmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TextComplexity', 'Text Complexity', 'The aligned item specifies the Text Complexity of the learning resource.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceCompetencyAlignmentType] -SET [Description] = 'Text Complexity', [Definition] = 'The aligned item specifies the Text Complexity of the learning resource.', [SortOrder] = 4.00 WHERE [Code] = 'TextComplexity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceCompetencyAlignmentType] WHERE [Code] = 'ReadingLevel') BEGIN INSERT INTO dbo.[RefLearningResourceCompetencyAlignmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReadingLevel', 'Reading Level', 'The aligned item specifies the Reading Level of the learning resource.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceCompetencyAlignmentType] -SET [Description] = 'Reading Level', [Definition] = 'The aligned item specifies the Reading Level of the learning resource.', [SortOrder] = 5.00 WHERE [Code] = 'ReadingLevel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceCompetencyAlignmentType] WHERE [Code] = 'EducationalSubject') BEGIN INSERT INTO dbo.[RefLearningResourceCompetencyAlignmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EducationalSubject', 'Educational Subject', 'The aligned item specifies the Educational Subject of the learning resource.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceCompetencyAlignmentType] -SET [Description] = 'Educational Subject', [Definition] = 'The aligned item specifies the Educational Subject of the learning resource.', [SortOrder] = 6.00 WHERE [Code] = 'EducationalSubject' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceCompetencyAlignmentType] WHERE [Code] = 'EducationLevel') BEGIN INSERT INTO dbo.[RefLearningResourceCompetencyAlignmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EducationLevel', 'Education Level', 'The aligned item specifies the Education Level of the learning resource.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceCompetencyAlignmentType] -SET [Description] = 'Education Level', [Definition] = 'The aligned item specifies the Education Level of the learning resource.', [SortOrder] = 7.00 WHERE [Code] = 'EducationLevel' END -END - -PRINT N'Populate RefLearningResourceControlFlexibilityType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceControlFlexibilityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceControlFlexibilityType] WHERE [Code] = 'fullAudioControl') BEGIN INSERT INTO dbo.[RefLearningResourceControlFlexibilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fullAudioControl', 'Full Audio Control', 'Audio input is sufficient to control the described learning resource.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceControlFlexibilityType] -SET [Description] = 'Full Audio Control', [Definition] = 'Audio input is sufficient to control the described learning resource.', [SortOrder] = 2.00 WHERE [Code] = 'fullAudioControl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceControlFlexibilityType] WHERE [Code] = 'fullKeyboardControl') BEGIN INSERT INTO dbo.[RefLearningResourceControlFlexibilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fullKeyboardControl', 'Full Keyboard Control', 'Keyboard input is sufficient to control the described learning resource.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceControlFlexibilityType] -SET [Description] = 'Full Keyboard Control', [Definition] = 'Keyboard input is sufficient to control the described learning resource.', [SortOrder] = 4.00 WHERE [Code] = 'fullKeyboardControl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceControlFlexibilityType] WHERE [Code] = 'fullMouseControl') BEGIN INSERT INTO dbo.[RefLearningResourceControlFlexibilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fullMouseControl', 'Full Mouse Control', 'Mouse input is sufficient to control the described learning resource.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceControlFlexibilityType] -SET [Description] = 'Full Mouse Control', [Definition] = 'Mouse input is sufficient to control the described learning resource.', [SortOrder] = 6.00 WHERE [Code] = 'fullMouseControl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceControlFlexibilityType] WHERE [Code] = 'fullTouchControl') BEGIN INSERT INTO dbo.[RefLearningResourceControlFlexibilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fullTouchControl', 'Full Touch Control', 'Touch input is sufficient to control the described learning resource.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceControlFlexibilityType] -SET [Description] = 'Full Touch Control', [Definition] = 'Touch input is sufficient to control the described learning resource.', [SortOrder] = 8.00 WHERE [Code] = 'fullTouchControl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceControlFlexibilityType] WHERE [Code] = 'fullVideoControl') BEGIN INSERT INTO dbo.[RefLearningResourceControlFlexibilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fullVideoControl', 'Full Video Control', ' Video input is sufficient to control the described learning resource.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceControlFlexibilityType] -SET [Description] = 'Full Video Control', [Definition] = ' Video input is sufficient to control the described learning resource.', [SortOrder] = 10.00 WHERE [Code] = 'fullVideoControl' END -END - -PRINT N'Populate RefLearningResourceDigitalMediaType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceDigitalMediaType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceDigitalMediaType] WHERE [Code] = 'application') BEGIN INSERT INTO dbo.[RefLearningResourceDigitalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('application', 'Application', 'The AINA registered Media Type of the digital resource is: Application', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceDigitalMediaType] -SET [Description] = 'Application', [Definition] = 'The AINA registered Media Type of the digital resource is: Application', [SortOrder] = 2.00 WHERE [Code] = 'application' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceDigitalMediaType] WHERE [Code] = 'audio') BEGIN INSERT INTO dbo.[RefLearningResourceDigitalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('audio', 'Audio', 'The AINA registered Media Type of the digital resource is: Audio', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceDigitalMediaType] -SET [Description] = 'Audio', [Definition] = 'The AINA registered Media Type of the digital resource is: Audio', [SortOrder] = 4.00 WHERE [Code] = 'audio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceDigitalMediaType] WHERE [Code] = 'example') BEGIN INSERT INTO dbo.[RefLearningResourceDigitalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('example', 'Example', 'The AINA registered Media Type of the digital resource is: Example', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceDigitalMediaType] -SET [Description] = 'Example', [Definition] = 'The AINA registered Media Type of the digital resource is: Example', [SortOrder] = 6.00 WHERE [Code] = 'example' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceDigitalMediaType] WHERE [Code] = 'image') BEGIN INSERT INTO dbo.[RefLearningResourceDigitalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('image', 'Image', 'The AINA registered Media Type of the digital resource is: Image', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceDigitalMediaType] -SET [Description] = 'Image', [Definition] = 'The AINA registered Media Type of the digital resource is: Image', [SortOrder] = 8.00 WHERE [Code] = 'image' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceDigitalMediaType] WHERE [Code] = 'message') BEGIN INSERT INTO dbo.[RefLearningResourceDigitalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('message', 'Message', 'The AINA registered Media Type of the digital resource is: Message', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceDigitalMediaType] -SET [Description] = 'Message', [Definition] = 'The AINA registered Media Type of the digital resource is: Message', [SortOrder] = 10.00 WHERE [Code] = 'message' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceDigitalMediaType] WHERE [Code] = 'model') BEGIN INSERT INTO dbo.[RefLearningResourceDigitalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('model', 'Model', 'The AINA registered Media Type of the digital resource is: Model', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceDigitalMediaType] -SET [Description] = 'Model', [Definition] = 'The AINA registered Media Type of the digital resource is: Model', [SortOrder] = 12.00 WHERE [Code] = 'model' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceDigitalMediaType] WHERE [Code] = 'multipart') BEGIN INSERT INTO dbo.[RefLearningResourceDigitalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('multipart', 'Multipart', 'The AINA registered Media Type of the digital resource is: Multipart', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceDigitalMediaType] -SET [Description] = 'Multipart', [Definition] = 'The AINA registered Media Type of the digital resource is: Multipart', [SortOrder] = 14.00 WHERE [Code] = 'multipart' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceDigitalMediaType] WHERE [Code] = 'text') BEGIN INSERT INTO dbo.[RefLearningResourceDigitalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('text', 'Text', 'The AINA registered Media Type of the digital resource is: Text', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceDigitalMediaType] -SET [Description] = 'Text', [Definition] = 'The AINA registered Media Type of the digital resource is: Text', [SortOrder] = 16.00 WHERE [Code] = 'text' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceDigitalMediaType] WHERE [Code] = 'video') BEGIN INSERT INTO dbo.[RefLearningResourceDigitalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('video', 'Video', 'The AINA registered Media Type of the digital resource is: Video', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceDigitalMediaType] -SET [Description] = 'Video', [Definition] = 'The AINA registered Media Type of the digital resource is: Video', [SortOrder] = 18.00 WHERE [Code] = 'video' END -END - -PRINT N'Populate RefLearningResourceEducationalUse table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceEducationalUse]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceEducationalUse] WHERE [Code] = 'CurriculumInstruction') BEGIN INSERT INTO dbo.[RefLearningResourceEducationalUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CurriculumInstruction', 'Curriculum/Instruction', 'Primary purpose of the resource is to support the instructional process, student learning, or to provide information about the curriculum.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceEducationalUse] -SET [Description] = 'Curriculum/Instruction', [Definition] = 'Primary purpose of the resource is to support the instructional process, student learning, or to provide information about the curriculum.', [SortOrder] = 2.00 WHERE [Code] = 'CurriculumInstruction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceEducationalUse] WHERE [Code] = 'Assessment') BEGIN INSERT INTO dbo.[RefLearningResourceEducationalUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assessment', 'Assessment', 'Primary purpose of the resource is to evaluate learning, either before or after instruction occurs.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceEducationalUse] -SET [Description] = 'Assessment', [Definition] = 'Primary purpose of the resource is to evaluate learning, either before or after instruction occurs.', [SortOrder] = 4.00 WHERE [Code] = 'Assessment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceEducationalUse] WHERE [Code] = 'ProfessionalDevelopment') BEGIN INSERT INTO dbo.[RefLearningResourceEducationalUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ProfessionalDevelopment', 'Professional Development', 'Primary purpose of the resource is to provide instruction for a teacher or other education professional.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceEducationalUse] -SET [Description] = 'Professional Development', [Definition] = 'Primary purpose of the resource is to provide instruction for a teacher or other education professional.', [SortOrder] = 6.00 WHERE [Code] = 'ProfessionalDevelopment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceEducationalUse] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefLearningResourceEducationalUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Primary purpose of the resource is in a category not yet defined by CEDS.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceEducationalUse] -SET [Description] = 'Other', [Definition] = 'Primary purpose of the resource is in a category not yet defined by CEDS.', [SortOrder] = 8.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefLearningResourceIntendedEndUserRole table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceIntendedEndUserRole]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceIntendedEndUserRole] WHERE [Code] = 'Administrator') BEGIN INSERT INTO dbo.[RefLearningResourceIntendedEndUserRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Administrator', 'Administrator', 'The resource was produced for use by Administrators.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceIntendedEndUserRole] -SET [Description] = 'Administrator', [Definition] = 'The resource was produced for use by Administrators.', [SortOrder] = 1.00 WHERE [Code] = 'Administrator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceIntendedEndUserRole] WHERE [Code] = 'Mentor') BEGIN INSERT INTO dbo.[RefLearningResourceIntendedEndUserRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Mentor', 'Mentor', 'The resource was produced for use by Mentors.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceIntendedEndUserRole] -SET [Description] = 'Mentor', [Definition] = 'The resource was produced for use by Mentors.', [SortOrder] = 2.00 WHERE [Code] = 'Mentor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceIntendedEndUserRole] WHERE [Code] = 'Parent') BEGIN INSERT INTO dbo.[RefLearningResourceIntendedEndUserRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Parent', 'Parent', 'The resource was produced for use by Parents.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceIntendedEndUserRole] -SET [Description] = 'Parent', [Definition] = 'The resource was produced for use by Parents.', [SortOrder] = 3.00 WHERE [Code] = 'Parent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceIntendedEndUserRole] WHERE [Code] = 'Peer-Tutor') BEGIN INSERT INTO dbo.[RefLearningResourceIntendedEndUserRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Peer-Tutor', 'Peer- Tutor', 'The resource was produced for use by Peer-Tutors.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceIntendedEndUserRole] -SET [Description] = 'Peer- Tutor', [Definition] = 'The resource was produced for use by Peer-Tutors.', [SortOrder] = 4.00 WHERE [Code] = 'Peer-Tutor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceIntendedEndUserRole] WHERE [Code] = 'Specialist') BEGIN INSERT INTO dbo.[RefLearningResourceIntendedEndUserRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Specialist', 'Specialist', 'The resource was produced for use by Specialists.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceIntendedEndUserRole] -SET [Description] = 'Specialist', [Definition] = 'The resource was produced for use by Specialists.', [SortOrder] = 5.00 WHERE [Code] = 'Specialist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceIntendedEndUserRole] WHERE [Code] = 'Student') BEGIN INSERT INTO dbo.[RefLearningResourceIntendedEndUserRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Student', 'Student', 'The resource was produced for use by Students.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceIntendedEndUserRole] -SET [Description] = 'Student', [Definition] = 'The resource was produced for use by Students.', [SortOrder] = 6.00 WHERE [Code] = 'Student' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceIntendedEndUserRole] WHERE [Code] = 'Teacher') BEGIN INSERT INTO dbo.[RefLearningResourceIntendedEndUserRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Teacher', 'Teacher', 'The resource was produced for use by Teachers.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceIntendedEndUserRole] -SET [Description] = 'Teacher', [Definition] = 'The resource was produced for use by Teachers.', [SortOrder] = 7.00 WHERE [Code] = 'Teacher' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceIntendedEndUserRole] WHERE [Code] = 'Team') BEGIN INSERT INTO dbo.[RefLearningResourceIntendedEndUserRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Team', 'Team', 'The resource was produced for use by Teams.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceIntendedEndUserRole] -SET [Description] = 'Team', [Definition] = 'The resource was produced for use by Teams.', [SortOrder] = 8.00 WHERE [Code] = 'Team' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceIntendedEndUserRole] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefLearningResourceIntendedEndUserRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The resource was produced for use by a category of person or group not yet defined in the CEDS vocabulary.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceIntendedEndUserRole] -SET [Description] = 'Other', [Definition] = 'The resource was produced for use by a category of person or group not yet defined in the CEDS vocabulary.', [SortOrder] = 9.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefLearningResourceInteractionMode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceInteractionMode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceInteractionMode] WHERE [Code] = 'Asynchronous') BEGIN INSERT INTO dbo.[RefLearningResourceInteractionMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Asynchronous', 'Student-oriented teaching and learning which is not organized around participants interacting at the same time and in the same space.', 'Student-oriented teaching and learning which is not organized around participants interacting at the same time and in the same space.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceInteractionMode] -SET [Description] = 'Student-oriented teaching and learning which is not organized around participants interacting at the same time and in the same space.', [Definition] = 'Student-oriented teaching and learning which is not organized around participants interacting at the same time and in the same space.', [SortOrder] = 1.00 WHERE [Code] = 'Asynchronous' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceInteractionMode] WHERE [Code] = 'Synchronous') BEGIN INSERT INTO dbo.[RefLearningResourceInteractionMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Synchronous', 'Group-oriented teaching and learning organized around participants interacting at the same time and in the same space.', 'Group-oriented teaching and learning organized around participants interacting at the same time and in the same space.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceInteractionMode] -SET [Description] = 'Group-oriented teaching and learning organized around participants interacting at the same time and in the same space.', [Definition] = 'Group-oriented teaching and learning organized around participants interacting at the same time and in the same space.', [SortOrder] = 2.00 WHERE [Code] = 'Synchronous' END -END - -PRINT N'Populate RefLearningResourceInteractivityType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceInteractivityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceInteractivityType] WHERE [Code] = 'Active') BEGIN INSERT INTO dbo.[RefLearningResourceInteractivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Active', 'Active', 'The predominate mode of learning supported by the learning resource is: Active', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceInteractivityType] -SET [Description] = 'Active', [Definition] = 'The predominate mode of learning supported by the learning resource is: Active', [SortOrder] = 1.00 WHERE [Code] = 'Active' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceInteractivityType] WHERE [Code] = 'Expositive') BEGIN INSERT INTO dbo.[RefLearningResourceInteractivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Expositive', 'Expositive', 'The predominate mode of learning supported by the learning resource is: Expositive', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceInteractivityType] -SET [Description] = 'Expositive', [Definition] = 'The predominate mode of learning supported by the learning resource is: Expositive', [SortOrder] = 2.00 WHERE [Code] = 'Expositive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceInteractivityType] WHERE [Code] = 'Mixed') BEGIN INSERT INTO dbo.[RefLearningResourceInteractivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Mixed', 'Mixed', 'The predominate mode of learning supported by the learning resource is: Mixed', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceInteractivityType] -SET [Description] = 'Mixed', [Definition] = 'The predominate mode of learning supported by the learning resource is: Mixed', [SortOrder] = 3.00 WHERE [Code] = 'Mixed' END -END - -PRINT N'Populate RefLearningResourceMediaFeatureType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceMediaFeatureType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'alternativeText') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alternativeText', 'Alternative Text', 'Accessible content features included with the learning resource include Alternative Text.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Alternative Text', [Definition] = 'Accessible content features included with the learning resource include Alternative Text.', [SortOrder] = 2.00 WHERE [Code] = 'alternativeText' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'audioDescription') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('audioDescription', 'Audio Description', 'Accessible content features included with the learning resource include Audio Description.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Audio Description', [Definition] = 'Accessible content features included with the learning resource include Audio Description.', [SortOrder] = 4.00 WHERE [Code] = 'audioDescription' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'braille') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('braille', 'Braille', 'Accessible content features included with the learning resource include Braille.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Braille', [Definition] = 'Accessible content features included with the learning resource include Braille.', [SortOrder] = 6.00 WHERE [Code] = 'braille' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'captions') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('captions', 'Captions', 'Accessible content features included with the learning resource include Captions.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Captions', [Definition] = 'Accessible content features included with the learning resource include Captions.', [SortOrder] = 8.00 WHERE [Code] = 'captions' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'ChemML') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChemML', 'Chem M L', 'Accessible content features included with the learning resource include Chem M L.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Chem M L', [Definition] = 'Accessible content features included with the learning resource include Chem M L.', [SortOrder] = 10.00 WHERE [Code] = 'ChemML' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'describedMath') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('describedMath', 'Described Math', 'Accessible content features included with the learning resource include Described Math.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Described Math', [Definition] = 'Accessible content features included with the learning resource include Described Math.', [SortOrder] = 12.00 WHERE [Code] = 'describedMath' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'displayTransformability') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('displayTransformability', 'Display Transformability', 'Accessible content features included with the learning resource include Display Transformability.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Display Transformability', [Definition] = 'Accessible content features included with the learning resource include Display Transformability.', [SortOrder] = 14.00 WHERE [Code] = 'displayTransformability' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'haptic') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haptic', 'Haptic', 'Accessible content features included with the learning resource include Haptic.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Haptic', [Definition] = 'Accessible content features included with the learning resource include Haptic.', [SortOrder] = 16.00 WHERE [Code] = 'haptic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'highContrast') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('highContrast', 'High Contrast', 'Accessible content features included with the learning resource include High Contrast.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'High Contrast', [Definition] = 'Accessible content features included with the learning resource include High Contrast.', [SortOrder] = 18.00 WHERE [Code] = 'highContrast' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'largePrint') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('largePrint', 'Large Print', 'Accessible content features included with the learning resource include Large Print.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Large Print', [Definition] = 'Accessible content features included with the learning resource include Large Print.', [SortOrder] = 20.00 WHERE [Code] = 'largePrint' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'latex') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('latex', 'Latex', 'Accessible content features included with the learning resource include Latex.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Latex', [Definition] = 'Accessible content features included with the learning resource include Latex.', [SortOrder] = 22.00 WHERE [Code] = 'latex' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'longDescription') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('longDescription', 'Long Description', 'Accessible content features included with the learning resource include Long Description.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Long Description', [Definition] = 'Accessible content features included with the learning resource include Long Description.', [SortOrder] = 24.00 WHERE [Code] = 'longDescription' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'MathML') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MathML', 'Math M L', 'Accessible content features included with the learning resource include Math M L.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Math M L', [Definition] = 'Accessible content features included with the learning resource include Math M L.', [SortOrder] = 26.00 WHERE [Code] = 'MathML' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'musicBraille') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('musicBraille', 'Music Braille', 'Accessible content features included with the learning resource include Music Braille.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Music Braille', [Definition] = 'Accessible content features included with the learning resource include Music Braille.', [SortOrder] = 28.00 WHERE [Code] = 'musicBraille' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'nemethBraille') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nemethBraille', 'Nemeth Braille', 'Accessible content features included with the learning resource include Nemeth Braille.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Nemeth Braille', [Definition] = 'Accessible content features included with the learning resource include Nemeth Braille.', [SortOrder] = 30.00 WHERE [Code] = 'nemethBraille' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'signLanguage') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('signLanguage', 'Sign Language', 'Accessible content features included with the learning resource include Sign Language.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Sign Language', [Definition] = 'Accessible content features included with the learning resource include Sign Language.', [SortOrder] = 32.00 WHERE [Code] = 'signLanguage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'structuralNavigation') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('structuralNavigation', 'Structural Navigation', 'Accessible content features included with the learning resource include Structural Navigation.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Structural Navigation', [Definition] = 'Accessible content features included with the learning resource include Structural Navigation.', [SortOrder] = 34.00 WHERE [Code] = 'structuralNavigation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'tactileGraphics') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tactileGraphics', 'Tactile Graphics', 'Accessible content features included with the learning resource include Tactile Graphics.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Tactile Graphics', [Definition] = 'Accessible content features included with the learning resource include Tactile Graphics.', [SortOrder] = 36.00 WHERE [Code] = 'tactileGraphics' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'tactileObject') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tactileObject', 'Tactile Object', 'Accessible content features included with the learning resource include Tactile Object.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Tactile Object', [Definition] = 'Accessible content features included with the learning resource include Tactile Object.', [SortOrder] = 37.00 WHERE [Code] = 'tactileObject' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceMediaFeatureType] WHERE [Code] = 'transcript') BEGIN INSERT INTO dbo.[RefLearningResourceMediaFeatureType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('transcript', 'Transcript', 'Accessible content features included with the learning resource include Transcript.', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceMediaFeatureType] -SET [Description] = 'Transcript', [Definition] = 'Accessible content features included with the learning resource include Transcript.', [SortOrder] = 38.00 WHERE [Code] = 'transcript' END -END - -PRINT N'Populate RefLearningResourcePhysicalMediaType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourcePhysicalMediaType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'AudioCD') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AudioCD', 'Audio CD', 'Audio CD is a type of physical media on which the Learning Resource is delivered or available.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Audio CD', [Definition] = 'Audio CD is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 1.00 WHERE [Code] = 'AudioCD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Audiotape') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Audiotape', 'Audiotape', 'Audiotape is a type of physical media on which the Learning Resource is delivered or available.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Audiotape', [Definition] = 'Audiotape is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 2.00 WHERE [Code] = 'Audiotape' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Calculator') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Calculator', 'Calculator', 'Calculator is a type of physical media on which the Learning Resource is delivered or available.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Calculator', [Definition] = 'Calculator is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 3.00 WHERE [Code] = 'Calculator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'CD-I') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CD-I', 'CD-I', 'CD-I is a type of physical media on which the Learning Resource is delivered or available.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'CD-I', [Definition] = 'CD-I is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 4.00 WHERE [Code] = 'CD-I' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'CD-ROM') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CD-ROM', 'CD-ROM', 'CD-ROM is a type of physical media on which the Learning Resource is delivered or available.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'CD-ROM', [Definition] = 'CD-ROM is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 5.00 WHERE [Code] = 'CD-ROM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Diskette') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Diskette', 'Diskette', 'Diskette is a type of physical media on which the Learning Resource is delivered or available.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Diskette', [Definition] = 'Diskette is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 6.00 WHERE [Code] = 'Diskette' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'DuplicationMaster') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DuplicationMaster', 'Duplication Master', 'Duplication Master is a type of physical media on which the Learning Resource is delivered or available.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Duplication Master', [Definition] = 'Duplication Master is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 7.00 WHERE [Code] = 'DuplicationMaster' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'DVD') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DVD', 'DVD/ Blu-ray', 'DVD/ Blu-ray is a type of physical media on which the Learning Resource is delivered or available.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'DVD/ Blu-ray', [Definition] = 'DVD/ Blu-ray is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 8.00 WHERE [Code] = 'DVD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'E-Mail') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('E-Mail', 'E-Mail', 'E-Mail is a type of physical media on which the Learning Resource is delivered or available.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'E-Mail', [Definition] = 'E-Mail is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 9.00 WHERE [Code] = 'E-Mail' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'ElectronicSlides') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ElectronicSlides', 'Electronic Slides', 'Electronic Slides is a type of physical media on which the Learning Resource is delivered or available.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Electronic Slides', [Definition] = 'Electronic Slides is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 10.00 WHERE [Code] = 'ElectronicSlides' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'FieldTrip') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FieldTrip', 'Field Trip', 'Field Trip is a type of physical media on which the Learning Resource is delivered or available.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Field Trip', [Definition] = 'Field Trip is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 11.00 WHERE [Code] = 'FieldTrip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Filmstrip') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Filmstrip', 'Filmstrip', 'Filmstrip is a type of physical media on which the Learning Resource is delivered or available.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Filmstrip', [Definition] = 'Filmstrip is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 12.00 WHERE [Code] = 'Filmstrip' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Flash') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Flash', 'Flash', 'Flash is a type of physical media on which the Learning Resource is delivered or available.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Flash', [Definition] = 'Flash is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 13.00 WHERE [Code] = 'Flash' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Image') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Image', 'Image', 'Image is a type of physical media on which the Learning Resource is delivered or available.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Image', [Definition] = 'Image is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 14.00 WHERE [Code] = 'Image' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'In-Person') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('In-Person', 'In-Person/Speaker', 'In-Person/Speaker is a type of physical media on which the Learning Resource is delivered or available.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'In-Person/Speaker', [Definition] = 'In-Person/Speaker is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 15.00 WHERE [Code] = 'In-Person' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'InteractiveWhiteboard') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InteractiveWhiteboard', 'Interactive Whiteboard', 'Interactive Whiteboard is a type of physical media on which the Learning Resource is delivered or available.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Interactive Whiteboard', [Definition] = 'Interactive Whiteboard is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 16.00 WHERE [Code] = 'InteractiveWhiteboard' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Manipulative') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Manipulative', 'Manipulative', 'Manipulative is a type of physical media on which the Learning Resource is delivered or available.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Manipulative', [Definition] = 'Manipulative is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 17.00 WHERE [Code] = 'Manipulative' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'MBL') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MBL', 'MBL (Microcomputer Based)', 'MBL (Microcomputer Based) is a type of physical media on which the Learning Resource is delivered or available.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'MBL (Microcomputer Based)', [Definition] = 'MBL (Microcomputer Based) is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 18.00 WHERE [Code] = 'MBL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Microfiche') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Microfiche', 'Microfiche', 'Microfiche is a type of physical media on which the Learning Resource is delivered or available.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Microfiche', [Definition] = 'Microfiche is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 19.00 WHERE [Code] = 'Microfiche' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Overhead') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Overhead', 'Overhead', 'Overhead is a type of physical media on which the Learning Resource is delivered or available.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Overhead', [Definition] = 'Overhead is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 20.00 WHERE [Code] = 'Overhead' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Pamphlet') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Pamphlet', 'Pamphlet', 'Pamphlet is a type of physical media on which the Learning Resource is delivered or available.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Pamphlet', [Definition] = 'Pamphlet is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 21.00 WHERE [Code] = 'Pamphlet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'PDF') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PDF', 'PDF', 'PDF is a type of physical media on which the Learning Resource is delivered or available.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'PDF', [Definition] = 'PDF is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 22.00 WHERE [Code] = 'PDF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Person-to-Person') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Person-to-Person', 'Person-to-Person', 'Person-to-Person is a type of physical media on which the Learning Resource is delivered or available.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Person-to-Person', [Definition] = 'Person-to-Person is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 23.00 WHERE [Code] = 'Person-to-Person' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'PhonographRecord') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PhonographRecord', 'Phonograph Record', 'Phonograph Record is a type of physical media on which the Learning Resource is delivered or available.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Phonograph Record', [Definition] = 'Phonograph Record is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 24.00 WHERE [Code] = 'PhonographRecord' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Photo') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Photo', 'Photo', 'Photo is a type of physical media on which the Learning Resource is delivered or available.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Photo', [Definition] = 'Photo is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 25.00 WHERE [Code] = 'Photo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Podcast') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Podcast', 'Podcast', 'Podcast is a type of physical media on which the Learning Resource is delivered or available.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Podcast', [Definition] = 'Podcast is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 26.00 WHERE [Code] = 'Podcast' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Printed') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Printed', 'Printed', 'Printed is a type of physical media on which the Learning Resource is delivered or available.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Printed', [Definition] = 'Printed is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 27.00 WHERE [Code] = 'Printed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Radio') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Radio', 'Radio', 'Radio is a type of physical media on which the Learning Resource is delivered or available.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Radio', [Definition] = 'Radio is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 28.00 WHERE [Code] = 'Radio' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Robotics') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Robotics', 'Robotics', 'Robotics is a type of physical media on which the Learning Resource is delivered or available.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Robotics', [Definition] = 'Robotics is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 29.00 WHERE [Code] = 'Robotics' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Satellite') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Satellite', 'Satellite', 'Satellite is a type of physical media on which the Learning Resource is delivered or available.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Satellite', [Definition] = 'Satellite is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 30.00 WHERE [Code] = 'Satellite' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Slides') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Slides', 'Slides', 'Slides is a type of physical media on which the Learning Resource is delivered or available.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Slides', [Definition] = 'Slides is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 31.00 WHERE [Code] = 'Slides' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Television') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Television', 'Television', 'Television is a type of physical media on which the Learning Resource is delivered or available.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Television', [Definition] = 'Television is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 32.00 WHERE [Code] = 'Television' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Transparency') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Transparency', 'Transparency', 'Transparency is a type of physical media on which the Learning Resource is delivered or available.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Transparency', [Definition] = 'Transparency is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 33.00 WHERE [Code] = 'Transparency' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'VideoConference') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VideoConference', 'Video Conference', 'Video Conference is a type of physical media on which the Learning Resource is delivered or available.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Video Conference', [Definition] = 'Video Conference is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 34.00 WHERE [Code] = 'VideoConference' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourcePhysicalMediaType] WHERE [Code] = 'Videodisc') BEGIN INSERT INTO dbo.[RefLearningResourcePhysicalMediaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Videodisc', 'Videodisc', 'Videodisc is a type of physical media on which the Learning Resource is delivered or available.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourcePhysicalMediaType] -SET [Description] = 'Videodisc', [Definition] = 'Videodisc is a type of physical media on which the Learning Resource is delivered or available.', [SortOrder] = 35.00 WHERE [Code] = 'Videodisc' END -END - -PRINT N'Populate RefLearningResourceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLearningResourceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'AlternateAssessment') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AlternateAssessment', 'Alternate Assessment', 'An assessment that is used to evaluate the performance of students who are unable to participate in general state assessments even with accommodations.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Alternate Assessment', [Definition] = 'An assessment that is used to evaluate the performance of students who are unable to participate in general state assessments even with accommodations.', [SortOrder] = 2.00 WHERE [Code] = 'AlternateAssessment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'AssessmentItem') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssessmentItem', 'Assessment Item', 'A specific prompt, that defines a question or protocol for a measurable activity that triggers a response from a person used to determine whether the person has mastered a learning objective.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Assessment Item', [Definition] = 'A specific prompt, that defines a question or protocol for a measurable activity that triggers a response from a person used to determine whether the person has mastered a learning objective.', [SortOrder] = 4.00 WHERE [Code] = 'AssessmentItem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'Course') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Course', 'Course', 'A series of units and lessons used to teach the skills and knowledge required by its curriculum.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Course', [Definition] = 'A series of units and lessons used to teach the skills and knowledge required by its curriculum.', [SortOrder] = 6.00 WHERE [Code] = 'Course' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'DemonstrationSimulation') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DemonstrationSimulation', 'Demonstration/Simulation', 'An imitation or modeling of a real-world process.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Demonstration/Simulation', [Definition] = 'An imitation or modeling of a real-world process.', [SortOrder] = 8.00 WHERE [Code] = 'DemonstrationSimulation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'EducatorCurriculumGuide') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EducatorCurriculumGuide', 'Educator/Curriculum Guide', 'A document that defines what concepts should be taught and/or how a concept should be taught effectively.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Educator/Curriculum Guide', [Definition] = 'A document that defines what concepts should be taught and/or how a concept should be taught effectively.', [SortOrder] = 10.00 WHERE [Code] = 'EducatorCurriculumGuide' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'FormativeAssessment') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FormativeAssessment', 'Formative assessment', 'A process used by teachers and students during instruction that provides feedback to adjust ongoing teaching and learning to improve students’ achievement of intended instructional outcomes. (CCSSO FAST SCASS, 2006)', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Formative assessment', [Definition] = 'A process used by teachers and students during instruction that provides feedback to adjust ongoing teaching and learning to improve students’ achievement of intended instructional outcomes. (CCSSO FAST SCASS, 2006)', [SortOrder] = 12.00 WHERE [Code] = 'FormativeAssessment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'ImagesVisuals') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ImagesVisuals', 'Images/Visuals', 'Visual media, including but not limited to pictures, graphics, diagrams, figures, illustrations, charts, and maps.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Images/Visuals', [Definition] = 'Visual media, including but not limited to pictures, graphics, diagrams, figures, illustrations, charts, and maps.', [SortOrder] = 14.00 WHERE [Code] = 'ImagesVisuals' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'InterimSummativeAssessment') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InterimSummativeAssessment', 'Interim/Summative Assessment', 'An assessment instrument used to evaluate student learning at the end of an instructional unit by comparing it against some standard or benchmark. A learning resource of this type may be an "assessment form," i.e. one instance of the assessment instrument that can equate scores with another instance of the same assessment.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Interim/Summative Assessment', [Definition] = 'An assessment instrument used to evaluate student learning at the end of an instructional unit by comparing it against some standard or benchmark. A learning resource of this type may be an "assessment form," i.e. one instance of the assessment instrument that can equate scores with another instance of the same assessment.', [SortOrder] = 18.00 WHERE [Code] = 'InterimSummativeAssessment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'LearningActivity') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LearningActivity', 'Learning Activity', 'Activities engaged in by the learner for the purpose of acquiring certain skills, concepts, or knowledge, whether guided by an instructor or not. A Lesson may define one or more learning activities.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Learning Activity', [Definition] = 'Activities engaged in by the learner for the purpose of acquiring certain skills, concepts, or knowledge, whether guided by an instructor or not. A Lesson may define one or more learning activities.', [SortOrder] = 22.00 WHERE [Code] = 'LearningActivity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'Lesson') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Lesson', 'Lesson', 'A detailed description of the course of instruction for a ­short period of time that is used by a teacher to guide class instruction.  A Unit contains one or more lessons.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Lesson', [Definition] = 'A detailed description of the course of instruction for a ­short period of time that is used by a teacher to guide class instruction.  A Unit contains one or more lessons.', [SortOrder] = 24.00 WHERE [Code] = 'Lesson' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'PrimarySource') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrimarySource', 'Primary Source', 'An artifact, document, recording, or other source of information that was created at the time under study and provides first-hand testimony or direct evidence concerning a topic under investigation.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Primary Source', [Definition] = 'An artifact, document, recording, or other source of information that was created at the time under study and provides first-hand testimony or direct evidence concerning a topic under investigation.', [SortOrder] = 26.00 WHERE [Code] = 'PrimarySource' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'RubricScoringGuide') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RubricScoringGuide', 'Rubric/Scoring Guide', 'A document or guide that is used to delineate consistent criteria for grading.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Rubric/Scoring Guide', [Definition] = 'A document or guide that is used to delineate consistent criteria for grading.', [SortOrder] = 28.00 WHERE [Code] = 'RubricScoringGuide' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'SelfAssessment') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SelfAssessment', 'Self Assessment', 'An assessment in which the user gathers information about and reflects on his or her own knowledge, skills, learning, or attitudes.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Self Assessment', [Definition] = 'An assessment in which the user gathers information about and reflects on his or her own knowledge, skills, learning, or attitudes.', [SortOrder] = 32.00 WHERE [Code] = 'SelfAssessment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'Text') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Text', 'Text', 'The body of a printed work, to include reading passages.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Text', [Definition] = 'The body of a printed work, to include reading passages.', [SortOrder] = 34.00 WHERE [Code] = 'Text' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'Textbook') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Textbook', 'Textbook', 'A book used as a standard source of information on a particular subject.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Textbook', [Definition] = 'A book used as a standard source of information on a particular subject.', [SortOrder] = 36.00 WHERE [Code] = 'Textbook' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'Unit') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unit', 'Unit', 'A long-range plan of instruction on a particular concept; it contains multiple lessons that are related.', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Unit', [Definition] = 'A long-range plan of instruction on a particular concept; it contains multiple lessons that are related.', [SortOrder] = 38.00 WHERE [Code] = 'Unit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLearningResourceType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefLearningResourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'A type of learning resource in a category not yet defined by CEDS. ', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLearningResourceType] -SET [Description] = 'Other', [Definition] = 'A type of learning resource in a category not yet defined by CEDS. ', [SortOrder] = 40.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefLeaType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLeaType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaType] WHERE [Code] = 'RegularNotInSupervisoryUnion') BEGIN INSERT INTO dbo.[RefLeaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RegularNotInSupervisoryUnion', 'Regular public school district that is NOT a component of a supervisory union', 'A local government administrative authority which governs the education system at a specified local level on behalf of the public and the state and is NOT a component of a supervisory union.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaType] -SET [Description] = 'Regular public school district that is NOT a component of a supervisory union', [Definition] = 'A local government administrative authority which governs the education system at a specified local level on behalf of the public and the state and is NOT a component of a supervisory union.', [SortOrder] = 1.00 WHERE [Code] = 'RegularNotInSupervisoryUnion' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaType] WHERE [Code] = 'RegularInSupervisoryUnion') BEGIN INSERT INTO dbo.[RefLeaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RegularInSupervisoryUnion', 'Regular public school district that is a component of a supervisory union', 'A local government administrative authority which governs the education system at a specified local level on behalf of the public and the state and is a component of a supervisory union.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaType] -SET [Description] = 'Regular public school district that is a component of a supervisory union', [Definition] = 'A local government administrative authority which governs the education system at a specified local level on behalf of the public and the state and is a component of a supervisory union.', [SortOrder] = 2.00 WHERE [Code] = 'RegularInSupervisoryUnion' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaType] WHERE [Code] = 'SupervisoryUnion') BEGIN INSERT INTO dbo.[RefLeaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SupervisoryUnion', ' Supervisory Union', 'An administrative center or county superintendent''s office serving as the administrative center.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaType] -SET [Description] = ' Supervisory Union', [Definition] = 'An administrative center or county superintendent''s office serving as the administrative center.', [SortOrder] = 3.00 WHERE [Code] = 'SupervisoryUnion' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaType] WHERE [Code] = 'SpecializedPublicSchoolDistrict') BEGIN INSERT INTO dbo.[RefLeaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpecializedPublicSchoolDistrict', 'Specialized Public School District', 'A school district that operates one or more schools that are designed for a specific educational need or purpose.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaType] -SET [Description] = 'Specialized Public School District', [Definition] = 'A school district that operates one or more schools that are designed for a specific educational need or purpose.', [SortOrder] = 4.00 WHERE [Code] = 'SpecializedPublicSchoolDistrict' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaType] WHERE [Code] = 'ServiceAgency') BEGIN INSERT INTO dbo.[RefLeaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ServiceAgency', 'Service Agency', 'An agency that does not operate schools, instead it provides specialized educational services (such as career and technical education) or related services (such as services in IEPs) to other education agencies that the agencies cannot readily provide for themselves.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaType] -SET [Description] = 'Service Agency', [Definition] = 'An agency that does not operate schools, instead it provides specialized educational services (such as career and technical education) or related services (such as services in IEPs) to other education agencies that the agencies cannot readily provide for themselves.', [SortOrder] = 5.00 WHERE [Code] = 'ServiceAgency' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaType] WHERE [Code] = 'StateOperatedAgency') BEGIN INSERT INTO dbo.[RefLeaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateOperatedAgency', 'State Operated Agency', 'An organization overseen by a state agency that operates schools or programs that provide public elementary and/or secondary level instruction.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaType] -SET [Description] = 'State Operated Agency', [Definition] = 'An organization overseen by a state agency that operates schools or programs that provide public elementary and/or secondary level instruction.', [SortOrder] = 6.00 WHERE [Code] = 'StateOperatedAgency' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaType] WHERE [Code] = 'FederalOperatedAgency') BEGIN INSERT INTO dbo.[RefLeaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FederalOperatedAgency', 'Federal Operated Agency', 'An organization overseen by a federal agency that operates schools or programs that provide public elementary and/or secondary level instruction.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaType] -SET [Description] = 'Federal Operated Agency', [Definition] = 'An organization overseen by a federal agency that operates schools or programs that provide public elementary and/or secondary level instruction.', [SortOrder] = 7.00 WHERE [Code] = 'FederalOperatedAgency' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaType] WHERE [Code] = 'IndependentCharterDistrict') BEGIN INSERT INTO dbo.[RefLeaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IndependentCharterDistrict', 'Independent Charter District', 'An independent charter district is an education unit created under the state charter legislation that is not under the administrative control of another local education agency and that operates one or more charter schools – and only charter schools.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaType] -SET [Description] = 'Independent Charter District', [Definition] = 'An independent charter district is an education unit created under the state charter legislation that is not under the administrative control of another local education agency and that operates one or more charter schools – and only charter schools.', [SortOrder] = 8.00 WHERE [Code] = 'IndependentCharterDistrict' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefLeaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other Local Education Agencies', 'Category for an agency providing elementary or secondary instruction or support services to use when one of the other types defined in CEDS is not appropriate.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaType] -SET [Description] = 'Other Local Education Agencies', [Definition] = 'Category for an agency providing elementary or secondary instruction or support services to use when one of the other types defined in CEDS is not appropriate.', [SortOrder] = 8.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefLeaveEventType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLeaveEventType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'Administrative') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Administrative', 'Administrative', 'Administrative is the type of leave event for staff.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Administrative', [Definition] = 'Administrative is the type of leave event for staff.', [SortOrder] = 2.00 WHERE [Code] = 'Administrative' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'AnnualLeave') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AnnualLeave', 'Annual leave', 'Annual leave is the type of leave event for staff.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Annual leave', [Definition] = 'Annual leave is the type of leave event for staff.', [SortOrder] = 4.00 WHERE [Code] = 'AnnualLeave' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'Bereavement') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Bereavement', 'Bereavement', 'Bereavement is the type of leave event for staff.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Bereavement', [Definition] = 'Bereavement is the type of leave event for staff.', [SortOrder] = 6.00 WHERE [Code] = 'Bereavement' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'CompensatoryLeaveTime') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CompensatoryLeaveTime', 'Compensatory leave time', 'Compensatory leave time is the type of leave event for staff.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Compensatory leave time', [Definition] = 'Compensatory leave time is the type of leave event for staff.', [SortOrder] = 8.00 WHERE [Code] = 'CompensatoryLeaveTime' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'FamilyAndMedicalLeave') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FamilyAndMedicalLeave', 'Family and medical leave', 'Family and medical leave is the type of leave event for staff.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Family and medical leave', [Definition] = 'Family and medical leave is the type of leave event for staff.', [SortOrder] = 10.00 WHERE [Code] = 'FamilyAndMedicalLeave' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'FlexTime') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FlexTime', 'Flex time', 'Flex time is the type of leave event for staff.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Flex time', [Definition] = 'Flex time is the type of leave event for staff.', [SortOrder] = 11.00 WHERE [Code] = 'FlexTime' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'GovernmentRequested') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GovernmentRequested', 'Government-requested', 'Government-requested is the type of leave event for staff.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Government-requested', [Definition] = 'Government-requested is the type of leave event for staff.', [SortOrder] = 12.00 WHERE [Code] = 'GovernmentRequested' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'JuryDuty') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JuryDuty', 'Jury Duty', 'Jury Duty is the type of leave event for staff.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Jury Duty', [Definition] = 'Jury Duty is the type of leave event for staff.', [SortOrder] = 13.00 WHERE [Code] = 'JuryDuty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'MilitaryLeave') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MilitaryLeave', 'Military leave', 'Military leave is the type of leave event for staff.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Military leave', [Definition] = 'Military leave is the type of leave event for staff.', [SortOrder] = 14.00 WHERE [Code] = 'MilitaryLeave' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is the type of leave event for staff.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Other', [Definition] = 'Other is the type of leave event for staff.', [SortOrder] = 16.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'Personal') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Personal', 'Personal', 'Personal is the type of leave event for staff.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Personal', [Definition] = 'Personal is the type of leave event for staff.', [SortOrder] = 18.00 WHERE [Code] = 'Personal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'ProfessionalDevelopment') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ProfessionalDevelopment', 'Professional development', 'Professional development is the type of leave event for staff.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Professional development', [Definition] = 'Professional development is the type of leave event for staff.', [SortOrder] = 19.00 WHERE [Code] = 'ProfessionalDevelopment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'ReleaseTime') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReleaseTime', 'Release time', 'Release time is the type of leave event for staff.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Release time', [Definition] = 'Release time is the type of leave event for staff.', [SortOrder] = 20.00 WHERE [Code] = 'ReleaseTime' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'SabbaticalLeave') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SabbaticalLeave', 'Sabbatical leave', 'Sabbatical leave is the type of leave event for staff.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Sabbatical leave', [Definition] = 'Sabbatical leave is the type of leave event for staff.', [SortOrder] = 22.00 WHERE [Code] = 'SabbaticalLeave' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'SickLeave') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SickLeave', 'Sick leave', 'Sick leave is the type of leave event for staff.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Sick leave', [Definition] = 'Sick leave is the type of leave event for staff.', [SortOrder] = 24.00 WHERE [Code] = 'SickLeave' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'Suspension') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Suspension', 'Suspension', 'Suspension is the type of leave event for staff.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Suspension', [Definition] = 'Suspension is the type of leave event for staff.', [SortOrder] = 26.00 WHERE [Code] = 'Suspension' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLeaveEventType] WHERE [Code] = 'WorkersCompensation') BEGIN INSERT INTO dbo.[RefLeaveEventType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WorkersCompensation', 'Workers compensation', 'Workers compensation is the type of leave event for staff.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLeaveEventType] -SET [Description] = 'Workers compensation', [Definition] = 'Workers compensation is the type of leave event for staff.', [SortOrder] = 32.00 WHERE [Code] = 'WorkersCompensation' END -END - -PRINT N'Populate RefLevelOfInstitution table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLevelOfInstitution]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLevelOfInstitution] WHERE [Code] = 'FourYear') BEGIN INSERT INTO dbo.[RefLevelOfInstitution]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FourYear', 'Four or more years', 'The postsecondary institution''s highest level of offering is a program of four or more years.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLevelOfInstitution] -SET [Description] = 'Four or more years', [Definition] = 'The postsecondary institution''s highest level of offering is a program of four or more years.', [SortOrder] = 1.00 WHERE [Code] = 'FourYear' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLevelOfInstitution] WHERE [Code] = 'TwoToFour') BEGIN INSERT INTO dbo.[RefLevelOfInstitution]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TwoToFour', 'At least 2 but less than 4 years', 'The postsecondary institution''s highest level of offering is a program of at least 2 but less than 4 years.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLevelOfInstitution] -SET [Description] = 'At least 2 but less than 4 years', [Definition] = 'The postsecondary institution''s highest level of offering is a program of at least 2 but less than 4 years.', [SortOrder] = 2.00 WHERE [Code] = 'TwoToFour' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLevelOfInstitution] WHERE [Code] = 'LessThanTwo') BEGIN INSERT INTO dbo.[RefLevelOfInstitution]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LessThanTwo', 'Less than 2 years (below associate)', 'The postsecondary institution''s highest level of offering is a program of less than 2 years (below associate).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLevelOfInstitution] -SET [Description] = 'Less than 2 years (below associate)', [Definition] = 'The postsecondary institution''s highest level of offering is a program of less than 2 years (below associate).', [SortOrder] = 3.00 WHERE [Code] = 'LessThanTwo' END -END - -PRINT N'Populate RefLicenseExempt table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLicenseExempt]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLicenseExempt] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefLicenseExempt]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLicenseExempt] -SET [Description] = 'Yes', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLicenseExempt] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefLicenseExempt]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLicenseExempt] -SET [Description] = 'No', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLicenseExempt] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefLicenseExempt]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLicenseExempt] -SET [Description] = 'Not applicable', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefLiteracyAssessment table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefLiteracyAssessment]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLiteracyAssessment] WHERE [Code] = 'TABE') BEGIN INSERT INTO dbo.[RefLiteracyAssessment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TABE', 'TABE', 'TABE is the type of literacy test administered.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLiteracyAssessment] -SET [Description] = 'TABE', [Definition] = 'TABE is the type of literacy test administered.', [SortOrder] = 1.00 WHERE [Code] = 'TABE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLiteracyAssessment] WHERE [Code] = 'CASAS') BEGIN INSERT INTO dbo.[RefLiteracyAssessment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CASAS', 'CASAS', 'CASAS is the type of literacy test administered.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLiteracyAssessment] -SET [Description] = 'CASAS', [Definition] = 'CASAS is the type of literacy test administered.', [SortOrder] = 2.00 WHERE [Code] = 'CASAS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLiteracyAssessment] WHERE [Code] = 'BEST') BEGIN INSERT INTO dbo.[RefLiteracyAssessment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BEST', 'BEST', 'BEST is the type of literacy test administered.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLiteracyAssessment] -SET [Description] = 'BEST', [Definition] = 'BEST is the type of literacy test administered.', [SortOrder] = 3.00 WHERE [Code] = 'BEST' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLiteracyAssessment] WHERE [Code] = 'BESTPlus') BEGIN INSERT INTO dbo.[RefLiteracyAssessment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BESTPlus', 'BESTPlus', 'BESTPlus is the type of literacy test administered.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLiteracyAssessment] -SET [Description] = 'BESTPlus', [Definition] = 'BESTPlus is the type of literacy test administered.', [SortOrder] = 4.00 WHERE [Code] = 'BESTPlus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLiteracyAssessment] WHERE [Code] = 'BESTLiteracy') BEGIN INSERT INTO dbo.[RefLiteracyAssessment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BESTLiteracy', 'BEST Literacy', 'BEST Literacy is the type of literacy test administered.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLiteracyAssessment] -SET [Description] = 'BEST Literacy', [Definition] = 'BEST Literacy is the type of literacy test administered.', [SortOrder] = 5.00 WHERE [Code] = 'BESTLiteracy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLiteracyAssessment] WHERE [Code] = 'PPVT-III') BEGIN INSERT INTO dbo.[RefLiteracyAssessment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PPVT-III', 'PPVT-III', 'PPVT-III is the type of literacy test administered.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLiteracyAssessment] -SET [Description] = 'PPVT-III', [Definition] = 'PPVT-III is the type of literacy test administered.', [SortOrder] = 6.00 WHERE [Code] = 'PPVT-III' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLiteracyAssessment] WHERE [Code] = 'PPVT-IV') BEGIN INSERT INTO dbo.[RefLiteracyAssessment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PPVT-IV', 'PPVT-IV', 'PPVT-IV is the type of literacy test administered.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLiteracyAssessment] -SET [Description] = 'PPVT-IV', [Definition] = 'PPVT-IV is the type of literacy test administered.', [SortOrder] = 7.00 WHERE [Code] = 'PPVT-IV' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLiteracyAssessment] WHERE [Code] = 'TVIP') BEGIN INSERT INTO dbo.[RefLiteracyAssessment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TVIP', 'TVIP', 'TVIP is the type of literacy test administered.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLiteracyAssessment] -SET [Description] = 'TVIP', [Definition] = 'TVIP is the type of literacy test administered.', [SortOrder] = 8.00 WHERE [Code] = 'TVIP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLiteracyAssessment] WHERE [Code] = 'PALSPreKUpperCase') BEGIN INSERT INTO dbo.[RefLiteracyAssessment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PALSPreKUpperCase', 'PALS PreK Upper Case', 'PALS PreK Upper Case is the type of literacy test administered.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLiteracyAssessment] -SET [Description] = 'PALS PreK Upper Case', [Definition] = 'PALS PreK Upper Case is the type of literacy test administered.', [SortOrder] = 9.00 WHERE [Code] = 'PALSPreKUpperCase' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLiteracyAssessment] WHERE [Code] = 'PEPScaleI') BEGIN INSERT INTO dbo.[RefLiteracyAssessment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PEPScaleI', 'PEP Scale I', 'PEP Scale I is the type of literacy test administered.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLiteracyAssessment] -SET [Description] = 'PEP Scale I', [Definition] = 'PEP Scale I is the type of literacy test administered.', [SortOrder] = 10.00 WHERE [Code] = 'PEPScaleI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLiteracyAssessment] WHERE [Code] = 'PEPScaleII') BEGIN INSERT INTO dbo.[RefLiteracyAssessment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PEPScaleII', 'PEP Scale II', 'PEP Scale II is the type of literacy test administered.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLiteracyAssessment] -SET [Description] = 'PEP Scale II', [Definition] = 'PEP Scale II is the type of literacy test administered.', [SortOrder] = 11.00 WHERE [Code] = 'PEPScaleII' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLiteracyAssessment] WHERE [Code] = 'PEPScaleIII') BEGIN INSERT INTO dbo.[RefLiteracyAssessment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PEPScaleIII', 'PEP Scale III', 'PEP Scale III is the type of literacy test administered.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLiteracyAssessment] -SET [Description] = 'PEP Scale III', [Definition] = 'PEP Scale III is the type of literacy test administered.', [SortOrder] = 12.00 WHERE [Code] = 'PEPScaleIII' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLiteracyAssessment] WHERE [Code] = 'PEPScaleIV') BEGIN INSERT INTO dbo.[RefLiteracyAssessment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PEPScaleIV', 'PEP Scale IV', 'PEP Scale IV is the type of literacy test administered.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLiteracyAssessment] -SET [Description] = 'PEP Scale IV', [Definition] = 'PEP Scale IV is the type of literacy test administered.', [SortOrder] = 13.00 WHERE [Code] = 'PEPScaleIV' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefLiteracyAssessment] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefLiteracyAssessment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The type of literacy test administered is in a category not yet defined by CEDS.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefLiteracyAssessment] -SET [Description] = 'Other', [Definition] = 'The type of literacy test administered is in a category not yet defined by CEDS.', [SortOrder] = 14.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefMagnetSpecialProgram table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMagnetSpecialProgram]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMagnetSpecialProgram] WHERE [Code] = 'All') BEGIN INSERT INTO dbo.[RefMagnetSpecialProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('All', 'All students participate', 'All students participate in the academic or social focus of the magnet or special program emphasis school.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMagnetSpecialProgram] -SET [Description] = 'All students participate', [Definition] = 'All students participate in the academic or social focus of the magnet or special program emphasis school.', [SortOrder] = 1.00 WHERE [Code] = 'All' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMagnetSpecialProgram] WHERE [Code] = 'None') BEGIN INSERT INTO dbo.[RefMagnetSpecialProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('None', 'No students participate', 'No students participate in the academic or social focus of the magnet or special program emphasis school.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMagnetSpecialProgram] -SET [Description] = 'No students participate', [Definition] = 'No students participate in the academic or social focus of the magnet or special program emphasis school.', [SortOrder] = 2.00 WHERE [Code] = 'None' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMagnetSpecialProgram] WHERE [Code] = 'Some') BEGIN INSERT INTO dbo.[RefMagnetSpecialProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Some', 'Some, but not all, students participate', 'Some, but not all, students participate in the academic or social focus of the magnet or special program emphasis school.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMagnetSpecialProgram] -SET [Description] = 'Some, but not all, students participate', [Definition] = 'Some, but not all, students participate in the academic or social focus of the magnet or special program emphasis school.', [SortOrder] = 3.00 WHERE [Code] = 'Some' END -END - -PRINT N'Populate RefMedicalAlertIndicator table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMedicalAlertIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMedicalAlertIndicator] WHERE [Code] = 'Chronic') BEGIN INSERT INTO dbo.[RefMedicalAlertIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Chronic', 'Chronic', 'The person has an alert indicator for a chronic medical/health condition.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMedicalAlertIndicator] -SET [Description] = 'Chronic', [Definition] = 'The person has an alert indicator for a chronic medical/health condition.', [SortOrder] = 1.00 WHERE [Code] = 'Chronic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMedicalAlertIndicator] WHERE [Code] = 'Acute') BEGIN INSERT INTO dbo.[RefMedicalAlertIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Acute', 'Acute', 'The person has an alert indicator for an acute medical/health condition.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMedicalAlertIndicator] -SET [Description] = 'Acute', [Definition] = 'The person has an alert indicator for an acute medical/health condition.', [SortOrder] = 2.00 WHERE [Code] = 'Acute' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMedicalAlertIndicator] WHERE [Code] = 'None') BEGIN INSERT INTO dbo.[RefMedicalAlertIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('None', 'None', 'The person does not have an alert indicator for a medical/health condition.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMedicalAlertIndicator] -SET [Description] = 'None', [Definition] = 'The person does not have an alert indicator for a medical/health condition.', [SortOrder] = 3.00 WHERE [Code] = 'None' END -END - -PRINT N'Populate RefMepEnrollmentType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMepEnrollmentType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepEnrollmentType] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefMepEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Basic School Program', 'Basic School Program is the type of school/migrant education project in which instruction and/or support services are provided.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepEnrollmentType] -SET [Description] = 'Basic School Program', [Definition] = 'Basic School Program is the type of school/migrant education project in which instruction and/or support services are provided.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepEnrollmentType] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefMepEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Regular Term MEP-Funded Project', 'Regular Term MEP-Funded Project is the type of school/migrant education project in which instruction and/or support services are provided.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepEnrollmentType] -SET [Description] = 'Regular Term MEP-Funded Project', [Definition] = 'Regular Term MEP-Funded Project is the type of school/migrant education project in which instruction and/or support services are provided.', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepEnrollmentType] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefMepEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Summer/Intersession MEP-Funded Project', 'Summer/Intersession MEP-Funded Project is the type of school/migrant education project in which instruction and/or support services are provided.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepEnrollmentType] -SET [Description] = 'Summer/Intersession MEP-Funded Project', [Definition] = 'Summer/Intersession MEP-Funded Project is the type of school/migrant education project in which instruction and/or support services are provided.', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepEnrollmentType] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefMepEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Year Round MEP-Funded Project', 'Year Round MEP-Funded Project is the type of school/migrant education project in which instruction and/or support services are provided.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepEnrollmentType] -SET [Description] = 'Year Round MEP-Funded Project', [Definition] = 'Year Round MEP-Funded Project is the type of school/migrant education project in which instruction and/or support services are provided.', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepEnrollmentType] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefMepEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Basic School Program and Regular-Term MEP-Funded Project', 'Basic School Program and Regular-Term MEP-Funded Project is the type of school/migrant education project in which instruction and/or support services are provided.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepEnrollmentType] -SET [Description] = 'Basic School Program and Regular-Term MEP-Funded Project', [Definition] = 'Basic School Program and Regular-Term MEP-Funded Project is the type of school/migrant education project in which instruction and/or support services are provided.', [SortOrder] = 5.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepEnrollmentType] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefMepEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Residency Only (none of the above)', 'Residency Only (none of the above)', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepEnrollmentType] -SET [Description] = 'Residency Only (none of the above)', [Definition] = 'Residency Only (none of the above)', [SortOrder] = 6.00 WHERE [Code] = '06' END -END - -PRINT N'Populate RefMepProjectBased table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMepProjectBased]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepProjectBased] WHERE [Code] = 'SchoolBased') BEGIN INSERT INTO dbo.[RefMepProjectBased]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SchoolBased', 'School-based MEP Project', 'School-based Migrant Education Program Project', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepProjectBased] -SET [Description] = 'School-based MEP Project', [Definition] = 'School-based Migrant Education Program Project', [SortOrder] = 1.00 WHERE [Code] = 'SchoolBased' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepProjectBased] WHERE [Code] = 'NonSchoolBased') BEGIN INSERT INTO dbo.[RefMepProjectBased]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NonSchoolBased', 'Non-school-based MEP project', 'Non-school-based Migrant Education Program project', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepProjectBased] -SET [Description] = 'Non-school-based MEP project', [Definition] = 'Non-school-based Migrant Education Program project', [SortOrder] = 2.00 WHERE [Code] = 'NonSchoolBased' END -END - -PRINT N'Populate RefMepProjectType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMepProjectType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepProjectType] WHERE [Code] = 'SchoolDay') BEGIN INSERT INTO dbo.[RefMepProjectType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SchoolDay', 'Regular school year - school day only', 'The project funded in whole or in part by Migrant Education Program funds is available during the regular school year - school day only.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepProjectType] -SET [Description] = 'Regular school year - school day only', [Definition] = 'The project funded in whole or in part by Migrant Education Program funds is available during the regular school year - school day only.', [SortOrder] = 1.00 WHERE [Code] = 'SchoolDay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepProjectType] WHERE [Code] = 'ExtendedDay') BEGIN INSERT INTO dbo.[RefMepProjectType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ExtendedDay', 'Regular school year - school day/extended day', 'The project funded in whole or in part by Migrant Education Program funds is available during the regular school year - school day/extended day.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepProjectType] -SET [Description] = 'Regular school year - school day/extended day', [Definition] = 'The project funded in whole or in part by Migrant Education Program funds is available during the regular school year - school day/extended day.', [SortOrder] = 2.00 WHERE [Code] = 'ExtendedDay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepProjectType] WHERE [Code] = 'SummerIntersession') BEGIN INSERT INTO dbo.[RefMepProjectType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SummerIntersession', 'Summer/intersession only', 'The project funded in whole or in part by Migrant Education Program funds is available during summer/intersession only.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepProjectType] -SET [Description] = 'Summer/intersession only', [Definition] = 'The project funded in whole or in part by Migrant Education Program funds is available during summer/intersession only.', [SortOrder] = 3.00 WHERE [Code] = 'SummerIntersession' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepProjectType] WHERE [Code] = 'YearRound') BEGIN INSERT INTO dbo.[RefMepProjectType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YearRound', 'Year round', 'The project funded in whole or in part by Migrant Education Program funds is available year round.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepProjectType] -SET [Description] = 'Year round', [Definition] = 'The project funded in whole or in part by Migrant Education Program funds is available year round.', [SortOrder] = 4.00 WHERE [Code] = 'YearRound' END -END - -PRINT N'Populate RefMepServiceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMepServiceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepServiceType] WHERE [Code] = 'CounselingServices') BEGIN INSERT INTO dbo.[RefMepServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CounselingServices', 'Counseling Services', 'Counseling Services provided as part of a Migrant Education Program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepServiceType] -SET [Description] = 'Counseling Services', [Definition] = 'Counseling Services provided as part of a Migrant Education Program.', [SortOrder] = 1.00 WHERE [Code] = 'CounselingServices' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepServiceType] WHERE [Code] = 'HighSchoolAccrual') BEGIN INSERT INTO dbo.[RefMepServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HighSchoolAccrual', 'High School Accrual', 'High School Accrual provided as part of a Migrant Education Program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepServiceType] -SET [Description] = 'High School Accrual', [Definition] = 'High School Accrual provided as part of a Migrant Education Program.', [SortOrder] = 2.00 WHERE [Code] = 'HighSchoolAccrual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepServiceType] WHERE [Code] = 'InstructionalServices') BEGIN INSERT INTO dbo.[RefMepServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InstructionalServices', 'Instructional Services', 'Instructional Services provided as part of a Migrant Education Program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepServiceType] -SET [Description] = 'Instructional Services', [Definition] = 'Instructional Services provided as part of a Migrant Education Program.', [SortOrder] = 3.00 WHERE [Code] = 'InstructionalServices' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepServiceType] WHERE [Code] = 'MathematicsInstruction') BEGIN INSERT INTO dbo.[RefMepServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MathematicsInstruction', 'Mathematics Instruction', 'Mathematics Instruction provided as part of a Migrant Education Program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepServiceType] -SET [Description] = 'Mathematics Instruction', [Definition] = 'Mathematics Instruction provided as part of a Migrant Education Program.', [SortOrder] = 4.00 WHERE [Code] = 'MathematicsInstruction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepServiceType] WHERE [Code] = 'ReadingInstruction') BEGIN INSERT INTO dbo.[RefMepServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReadingInstruction', 'Reading Instruction', 'Reading Instruction provided as part of a Migrant Education Program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepServiceType] -SET [Description] = 'Reading Instruction', [Definition] = 'Reading Instruction provided as part of a Migrant Education Program.', [SortOrder] = 5.00 WHERE [Code] = 'ReadingInstruction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepServiceType] WHERE [Code] = 'ReferralServices') BEGIN INSERT INTO dbo.[RefMepServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReferralServices', 'Referral Services', 'Referral Services provided as part of a Migrant Education Program.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepServiceType] -SET [Description] = 'Referral Services', [Definition] = 'Referral Services provided as part of a Migrant Education Program.', [SortOrder] = 6.00 WHERE [Code] = 'ReferralServices' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepServiceType] WHERE [Code] = 'SupportServices') BEGIN INSERT INTO dbo.[RefMepServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SupportServices', 'Support Services', 'Support Services provided as part of a Migrant Education Program.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepServiceType] -SET [Description] = 'Support Services', [Definition] = 'Support Services provided as part of a Migrant Education Program.', [SortOrder] = 7.00 WHERE [Code] = 'SupportServices' END -END - -PRINT N'Populate RefMepSessionType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMepSessionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepSessionType] WHERE [Code] = 'RegularSchoolYear') BEGIN INSERT INTO dbo.[RefMepSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RegularSchoolYear', 'Regular School Year', 'The Migrant Education Program operates during the Regular School Year.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepSessionType] -SET [Description] = 'Regular School Year', [Definition] = 'The Migrant Education Program operates during the Regular School Year.', [SortOrder] = 1.00 WHERE [Code] = 'RegularSchoolYear' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepSessionType] WHERE [Code] = 'SummerTerm') BEGIN INSERT INTO dbo.[RefMepSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SummerTerm', 'Summer Term or Intersession', 'The Migrant Education Program operates during the Summer Term or Intersession.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepSessionType] -SET [Description] = 'Summer Term or Intersession', [Definition] = 'The Migrant Education Program operates during the Summer Term or Intersession.', [SortOrder] = 2.00 WHERE [Code] = 'SummerTerm' END -END - -PRINT N'Populate RefMepStaffCategory table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMepStaffCategory]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepStaffCategory] WHERE [Code] = 'Teachers') BEGIN INSERT INTO dbo.[RefMepStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Teachers', 'Teachers', 'Teachers is the category of staff working in the Migrant Education Program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepStaffCategory] -SET [Description] = 'Teachers', [Definition] = 'Teachers is the category of staff working in the Migrant Education Program.', [SortOrder] = 1.00 WHERE [Code] = 'Teachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepStaffCategory] WHERE [Code] = 'Paraprofessionals') BEGIN INSERT INTO dbo.[RefMepStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Paraprofessionals', 'Paraprofessionals', 'Paraprofessionals is the category of staff working in the Migrant Education Program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepStaffCategory] -SET [Description] = 'Paraprofessionals', [Definition] = 'Paraprofessionals is the category of staff working in the Migrant Education Program.', [SortOrder] = 2.00 WHERE [Code] = 'Paraprofessionals' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepStaffCategory] WHERE [Code] = 'Counselors') BEGIN INSERT INTO dbo.[RefMepStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Counselors', 'Counselors', 'Counselors is the category of staff working in the Migrant Education Program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepStaffCategory] -SET [Description] = 'Counselors', [Definition] = 'Counselors is the category of staff working in the Migrant Education Program.', [SortOrder] = 3.00 WHERE [Code] = 'Counselors' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepStaffCategory] WHERE [Code] = 'Administrators') BEGIN INSERT INTO dbo.[RefMepStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Administrators', 'Administrators', 'Administrators is the category of staff working in the Migrant Education Program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepStaffCategory] -SET [Description] = 'Administrators', [Definition] = 'Administrators is the category of staff working in the Migrant Education Program.', [SortOrder] = 4.00 WHERE [Code] = 'Administrators' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepStaffCategory] WHERE [Code] = 'Recruiters') BEGIN INSERT INTO dbo.[RefMepStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Recruiters', 'Recruiters', 'Recruiters is the category of staff working in the Migrant Education Program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepStaffCategory] -SET [Description] = 'Recruiters', [Definition] = 'Recruiters is the category of staff working in the Migrant Education Program.', [SortOrder] = 5.00 WHERE [Code] = 'Recruiters' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMepStaffCategory] WHERE [Code] = 'RecordsTransferStaff') BEGIN INSERT INTO dbo.[RefMepStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RecordsTransferStaff', 'Records Transfer Staff', 'Records Transfer Staff is the category of staff working in the Migrant Education Program.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMepStaffCategory] -SET [Description] = 'Records Transfer Staff', [Definition] = 'Records Transfer Staff is the category of staff working in the Migrant Education Program.', [SortOrder] = 6.00 WHERE [Code] = 'RecordsTransferStaff' END -END - -PRINT N'Populate RefMethodOfServiceDelivery table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMethodOfServiceDelivery]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMethodOfServiceDelivery] WHERE [Code] = 'Individual') BEGIN INSERT INTO dbo.[RefMethodOfServiceDelivery]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Individual', 'Individual', 'The services will be provided individually.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMethodOfServiceDelivery] -SET [Description] = 'Individual', [Definition] = 'The services will be provided individually.', [SortOrder] = 2.00 WHERE [Code] = 'Individual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMethodOfServiceDelivery] WHERE [Code] = 'Group') BEGIN INSERT INTO dbo.[RefMethodOfServiceDelivery]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Group', 'Group', 'The services will be provided in a group.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMethodOfServiceDelivery] -SET [Description] = 'Group', [Definition] = 'The services will be provided in a group.', [SortOrder] = 4.00 WHERE [Code] = 'Group' END -END - -PRINT N'Populate RefMilitaryActiveStudentIndicator table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMilitaryActiveStudentIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryActiveStudentIndicator] WHERE [Code] = 'NotActive') BEGIN INSERT INTO dbo.[RefMilitaryActiveStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotActive', 'Not Active', 'Student is not active in the military.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryActiveStudentIndicator] -SET [Description] = 'Not Active', [Definition] = 'Student is not active in the military.', [SortOrder] = 1.00 WHERE [Code] = 'NotActive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryActiveStudentIndicator] WHERE [Code] = 'Active') BEGIN INSERT INTO dbo.[RefMilitaryActiveStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Active', 'Active', 'Student is an Active member of the Active Duty Forces, National Guard, or Reserve Forces.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryActiveStudentIndicator] -SET [Description] = 'Active', [Definition] = 'Student is an Active member of the Active Duty Forces, National Guard, or Reserve Forces.', [SortOrder] = 3.00 WHERE [Code] = 'Active' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryActiveStudentIndicator] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefMilitaryActiveStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'It is unknown whether or not the Student is active in the military.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryActiveStudentIndicator] -SET [Description] = 'Unknown', [Definition] = 'It is unknown whether or not the Student is active in the military.', [SortOrder] = 5.00 WHERE [Code] = 'Unknown' END -END - -PRINT N'Populate RefMilitaryBranch table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMilitaryBranch]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryBranch] WHERE [Code] = 'Army') BEGIN INSERT INTO dbo.[RefMilitaryBranch]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Army', 'Army', 'U.S. Army', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryBranch] -SET [Description] = 'Army', [Definition] = 'U.S. Army', [SortOrder] = 1.00 WHERE [Code] = 'Army' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryBranch] WHERE [Code] = 'MarineCorps') BEGIN INSERT INTO dbo.[RefMilitaryBranch]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MarineCorps', 'Marine Corps', 'U.S. Marine Corps', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryBranch] -SET [Description] = 'Marine Corps', [Definition] = 'U.S. Marine Corps', [SortOrder] = 2.00 WHERE [Code] = 'MarineCorps' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryBranch] WHERE [Code] = 'Navy') BEGIN INSERT INTO dbo.[RefMilitaryBranch]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Navy', 'Navy', 'U.S. Navy', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryBranch] -SET [Description] = 'Navy', [Definition] = 'U.S. Navy', [SortOrder] = 3.00 WHERE [Code] = 'Navy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryBranch] WHERE [Code] = 'AirForce') BEGIN INSERT INTO dbo.[RefMilitaryBranch]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AirForce', 'Air Force', 'U.S. Air Force', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryBranch] -SET [Description] = 'Air Force', [Definition] = 'U.S. Air Force', [SortOrder] = 4.00 WHERE [Code] = 'AirForce' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryBranch] WHERE [Code] = 'SpaceForce') BEGIN INSERT INTO dbo.[RefMilitaryBranch]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpaceForce', 'Space Force', 'U.S. Space Force', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryBranch] -SET [Description] = 'Space Force', [Definition] = 'U.S. Space Force', [SortOrder] = 5.00 WHERE [Code] = 'SpaceForce' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryBranch] WHERE [Code] = 'CoastGuard') BEGIN INSERT INTO dbo.[RefMilitaryBranch]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CoastGuard', 'Coast Guard', 'U.S. Coast Guard', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryBranch] -SET [Description] = 'Coast Guard', [Definition] = 'U.S. Coast Guard', [SortOrder] = 6.00 WHERE [Code] = 'CoastGuard' END -END - -PRINT N'Populate RefMilitaryConnectedStudentIndicator table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMilitaryConnectedStudentIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryConnectedStudentIndicator] WHERE [Code] = 'NotMilitaryConnected') BEGIN INSERT INTO dbo.[RefMilitaryConnectedStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotMilitaryConnected', 'Not Military Connected', 'Student is not military-connected.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryConnectedStudentIndicator] -SET [Description] = 'Not Military Connected', [Definition] = 'Student is not military-connected.', [SortOrder] = 1.00 WHERE [Code] = 'NotMilitaryConnected' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryConnectedStudentIndicator] WHERE [Code] = 'ActiveDuty') BEGIN INSERT INTO dbo.[RefMilitaryConnectedStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ActiveDuty', 'Active Duty', 'Student is a dependent of a member of the Active Duty Forces (full-time) Army, Navy, Air Force, Marine Corps, or Coast Guard or is a dependent of a member on Full-Time National Guard Duty.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryConnectedStudentIndicator] -SET [Description] = 'Active Duty', [Definition] = 'Student is a dependent of a member of the Active Duty Forces (full-time) Army, Navy, Air Force, Marine Corps, or Coast Guard or is a dependent of a member on Full-Time National Guard Duty.', [SortOrder] = 3.00 WHERE [Code] = 'ActiveDuty' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryConnectedStudentIndicator] WHERE [Code] = 'NationalGuardOrReserve') BEGIN INSERT INTO dbo.[RefMilitaryConnectedStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NationalGuardOrReserve', 'National Guard Or Reserve', 'Student is a dependent of a member of the National Guard (not full-time duty) or Reserve Forces (Army, Navy, Air Force, Marine Corps, or Coast Guard).', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryConnectedStudentIndicator] -SET [Description] = 'National Guard Or Reserve', [Definition] = 'Student is a dependent of a member of the National Guard (not full-time duty) or Reserve Forces (Army, Navy, Air Force, Marine Corps, or Coast Guard).', [SortOrder] = 5.00 WHERE [Code] = 'NationalGuardOrReserve' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryConnectedStudentIndicator] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefMilitaryConnectedStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'It is unknown whether or not the student is military-connected.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryConnectedStudentIndicator] -SET [Description] = 'Unknown', [Definition] = 'It is unknown whether or not the student is military-connected.', [SortOrder] = 7.00 WHERE [Code] = 'Unknown' END -END - -PRINT N'Populate RefMilitaryVeteranStudentIndicator table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMilitaryVeteranStudentIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStudentIndicator] WHERE [Code] = 'NotVeteran') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotVeteran', 'Not a Veteran', 'Student is not a veteran of the military.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStudentIndicator] -SET [Description] = 'Not a Veteran', [Definition] = 'Student is not a veteran of the military.', [SortOrder] = 1.00 WHERE [Code] = 'NotVeteran' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStudentIndicator] WHERE [Code] = 'Veteran') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Veteran', 'Veteran', 'Student is a Veteran of the Active Duty Forces, National Guard, or Reserve Forces.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStudentIndicator] -SET [Description] = 'Veteran', [Definition] = 'Student is a Veteran of the Active Duty Forces, National Guard, or Reserve Forces.', [SortOrder] = 3.00 WHERE [Code] = 'Veteran' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStudentIndicator] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'It is unknown whether or not the Student is a veteran of the military.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStudentIndicator] -SET [Description] = 'Unknown', [Definition] = 'It is unknown whether or not the Student is a veteran of the military.', [SortOrder] = 5.00 WHERE [Code] = 'Unknown' END -END - -PRINT N'Populate RefMultipleIntelligenceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMultipleIntelligenceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMultipleIntelligenceType] WHERE [Code] = 'Linguistic') BEGIN INSERT INTO dbo.[RefMultipleIntelligenceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Linguistic', 'Linguistic', 'The learning standard item or competency fits into the Linguistic intelligence modality. ', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMultipleIntelligenceType] -SET [Description] = 'Linguistic', [Definition] = 'The learning standard item or competency fits into the Linguistic intelligence modality. ', [SortOrder] = 1.00 WHERE [Code] = 'Linguistic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMultipleIntelligenceType] WHERE [Code] = 'Logic-mathematical') BEGIN INSERT INTO dbo.[RefMultipleIntelligenceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Logic-mathematical', 'Logic-mathematical', 'The learning standard item or competency fits into the Logic-mathematical intelligence modality.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMultipleIntelligenceType] -SET [Description] = 'Logic-mathematical', [Definition] = 'The learning standard item or competency fits into the Logic-mathematical intelligence modality.', [SortOrder] = 2.00 WHERE [Code] = 'Logic-mathematical' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMultipleIntelligenceType] WHERE [Code] = 'Musical') BEGIN INSERT INTO dbo.[RefMultipleIntelligenceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Musical', 'Musical', 'The learning standard item or competency fits into the Musical intelligence modality.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMultipleIntelligenceType] -SET [Description] = 'Musical', [Definition] = 'The learning standard item or competency fits into the Musical intelligence modality.', [SortOrder] = 3.00 WHERE [Code] = 'Musical' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMultipleIntelligenceType] WHERE [Code] = 'Spatial') BEGIN INSERT INTO dbo.[RefMultipleIntelligenceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Spatial', 'Spatial', 'The learning standard item or competency fits into the Spatial intelligence modality.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMultipleIntelligenceType] -SET [Description] = 'Spatial', [Definition] = 'The learning standard item or competency fits into the Spatial intelligence modality.', [SortOrder] = 4.00 WHERE [Code] = 'Spatial' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMultipleIntelligenceType] WHERE [Code] = 'BodilyKinesthetic') BEGIN INSERT INTO dbo.[RefMultipleIntelligenceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BodilyKinesthetic', 'Bodily/kinesthetic', 'The learning standard item or competency fits into the Bodily/kinesthetic intelligence modality.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMultipleIntelligenceType] -SET [Description] = 'Bodily/kinesthetic', [Definition] = 'The learning standard item or competency fits into the Bodily/kinesthetic intelligence modality.', [SortOrder] = 5.00 WHERE [Code] = 'BodilyKinesthetic' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMultipleIntelligenceType] WHERE [Code] = 'Interpersonal') BEGIN INSERT INTO dbo.[RefMultipleIntelligenceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Interpersonal', 'Interpersonal', 'The learning standard item or competency fits into the Interpersonal intelligence modality.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMultipleIntelligenceType] -SET [Description] = 'Interpersonal', [Definition] = 'The learning standard item or competency fits into the Interpersonal intelligence modality.', [SortOrder] = 6.00 WHERE [Code] = 'Interpersonal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMultipleIntelligenceType] WHERE [Code] = 'Intrapersonal') BEGIN INSERT INTO dbo.[RefMultipleIntelligenceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Intrapersonal', 'Intrapersonal', 'The learning standard item or competency fits into the Intrapersonal intelligence modality.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMultipleIntelligenceType] -SET [Description] = 'Intrapersonal', [Definition] = 'The learning standard item or competency fits into the Intrapersonal intelligence modality.', [SortOrder] = 7.00 WHERE [Code] = 'Intrapersonal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMultipleIntelligenceType] WHERE [Code] = 'Naturalistic') BEGIN INSERT INTO dbo.[RefMultipleIntelligenceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Naturalistic', 'Naturalistic', 'The learning standard item or competency fits into the Naturalistic intelligence modality.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMultipleIntelligenceType] -SET [Description] = 'Naturalistic', [Definition] = 'The learning standard item or competency fits into the Naturalistic intelligence modality.', [SortOrder] = 8.00 WHERE [Code] = 'Naturalistic' END -END - -PRINT N'Populate RefNaepAspectsOfReading table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefNaepAspectsOfReading]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNaepAspectsOfReading] WHERE [Code] = 'DevelopingInterpretation') BEGIN INSERT INTO dbo.[RefNaepAspectsOfReading]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DevelopingInterpretation', 'Developing Interpretation', 'To develop an interpretation, the reader must extend initial impressions to arrive at a more complete understanding of what was read. This involves linking information across parts of a text as well as focusing on specific information.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNaepAspectsOfReading] -SET [Description] = 'Developing Interpretation', [Definition] = 'To develop an interpretation, the reader must extend initial impressions to arrive at a more complete understanding of what was read. This involves linking information across parts of a text as well as focusing on specific information.', [SortOrder] = 1.00 WHERE [Code] = 'DevelopingInterpretation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNaepAspectsOfReading] WHERE [Code] = 'MakingReaderTextConnections') BEGIN INSERT INTO dbo.[RefNaepAspectsOfReading]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MakingReaderTextConnections', 'Making reader/text connections', 'To make reader/text connections, the reader must link information in the text with knowledge and experience. This might include applying ideas in the text to the real world, and responses must be text based.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNaepAspectsOfReading] -SET [Description] = 'Making reader/text connections', [Definition] = 'To make reader/text connections, the reader must link information in the text with knowledge and experience. This might include applying ideas in the text to the real world, and responses must be text based.', [SortOrder] = 2.00 WHERE [Code] = 'MakingReaderTextConnections' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNaepAspectsOfReading] WHERE [Code] = 'ExaminingContentAndStructure') BEGIN INSERT INTO dbo.[RefNaepAspectsOfReading]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ExaminingContentAndStructure', 'Examining content and structure', 'Examining text content and structure requires critically evaluating, comparing and contrasting, and understanding the effect of features such as irony, humor, and organization. Readers are required to stand apart from the text, consider it objectively, and evaluate its quality and appropriateness, using text content and structure.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNaepAspectsOfReading] -SET [Description] = 'Examining content and structure', [Definition] = 'Examining text content and structure requires critically evaluating, comparing and contrasting, and understanding the effect of features such as irony, humor, and organization. Readers are required to stand apart from the text, consider it objectively, and evaluate its quality and appropriateness, using text content and structure.', [SortOrder] = 3.00 WHERE [Code] = 'ExaminingContentAndStructure' END -END - -PRINT N'Populate RefNaepMathComplexityLevel table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefNaepMathComplexityLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNaepMathComplexityLevel] WHERE [Code] = 'LowComplexity') BEGIN INSERT INTO dbo.[RefNaepMathComplexityLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LowComplexity', 'Low complexity', 'This category relies heavily on the recall and recognition of previously learned concepts and principles. Items typically specify what the student is to do, which is often to carry out some procedure that can be performed mechanically. It is not left to the student to come up with an original method or solution.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNaepMathComplexityLevel] -SET [Description] = 'Low complexity', [Definition] = 'This category relies heavily on the recall and recognition of previously learned concepts and principles. Items typically specify what the student is to do, which is often to carry out some procedure that can be performed mechanically. It is not left to the student to come up with an original method or solution.', [SortOrder] = 1.00 WHERE [Code] = 'LowComplexity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNaepMathComplexityLevel] WHERE [Code] = 'ModerateComplexity') BEGIN INSERT INTO dbo.[RefNaepMathComplexityLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ModerateComplexity', 'Moderate complexity', 'Items in the moderate-complexity category involve more flexibility of thinking and choice among alternatives than do those in the low-complexity category. They require a response that goes beyond the habitual, is not specified, and ordinarily has more than a single step. The student is expected to decide what to do, using informal methods of reasoning and problem-solving strategies, and to bring together skill and knowledge from various domains.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNaepMathComplexityLevel] -SET [Description] = 'Moderate complexity', [Definition] = 'Items in the moderate-complexity category involve more flexibility of thinking and choice among alternatives than do those in the low-complexity category. They require a response that goes beyond the habitual, is not specified, and ordinarily has more than a single step. The student is expected to decide what to do, using informal methods of reasoning and problem-solving strategies, and to bring together skill and knowledge from various domains.', [SortOrder] = 2.00 WHERE [Code] = 'ModerateComplexity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNaepMathComplexityLevel] WHERE [Code] = 'HighComplexity') BEGIN INSERT INTO dbo.[RefNaepMathComplexityLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HighComplexity', 'High complexity', 'High-complexity items make heavy demands on students, who must engage in more abstract reasoning, planning, analysis, judgment, and creative thought. A satisfactory response to the item requires that the student think in an abstract and sophisticated way.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNaepMathComplexityLevel] -SET [Description] = 'High complexity', [Definition] = 'High-complexity items make heavy demands on students, who must engage in more abstract reasoning, planning, analysis, judgment, and creative thought. A satisfactory response to the item requires that the student think in an abstract and sophisticated way.', [SortOrder] = 3.00 WHERE [Code] = 'HighComplexity' END -END - -PRINT N'Populate RefNationalSchoolLunchProgramStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefNationalSchoolLunchProgramStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNationalSchoolLunchProgramStatus] WHERE [Code] = 'NSLPCEO') BEGIN INSERT INTO dbo.[RefNationalSchoolLunchProgramStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NSLPCEO', 'Community Eligibility Option', 'The classification of participation by the school in the National School Lunch Program is participating under the Community Eligibility Option.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNationalSchoolLunchProgramStatus] -SET [Description] = 'Community Eligibility Option', [Definition] = 'The classification of participation by the school in the National School Lunch Program is participating under the Community Eligibility Option.', [SortOrder] = 1.00 WHERE [Code] = 'NSLPCEO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNationalSchoolLunchProgramStatus] WHERE [Code] = 'NSLPNO') BEGIN INSERT INTO dbo.[RefNationalSchoolLunchProgramStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NSLPNO', 'Not Participating', 'The classification of participation by the school in the National School Lunch Program is not participating.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNationalSchoolLunchProgramStatus] -SET [Description] = 'Not Participating', [Definition] = 'The classification of participation by the school in the National School Lunch Program is not participating.', [SortOrder] = 2.00 WHERE [Code] = 'NSLPNO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNationalSchoolLunchProgramStatus] WHERE [Code] = 'NSLPWOPRO') BEGIN INSERT INTO dbo.[RefNationalSchoolLunchProgramStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NSLPWOPRO', 'Participating Without Provision or Community Eligibility Option', 'The classification of participation by the school in the National School Lunch Program is participating without using any Provision or the Community Eligibility Option.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNationalSchoolLunchProgramStatus] -SET [Description] = 'Participating Without Provision or Community Eligibility Option', [Definition] = 'The classification of participation by the school in the National School Lunch Program is participating without using any Provision or the Community Eligibility Option.', [SortOrder] = 3.00 WHERE [Code] = 'NSLPWOPRO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNationalSchoolLunchProgramStatus] WHERE [Code] = 'NSLPPRO1') BEGIN INSERT INTO dbo.[RefNationalSchoolLunchProgramStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NSLPPRO1', 'Provision 1', 'The classification of participation by the school in the National School Lunch Program is participating under Provision 1.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNationalSchoolLunchProgramStatus] -SET [Description] = 'Provision 1', [Definition] = 'The classification of participation by the school in the National School Lunch Program is participating under Provision 1.', [SortOrder] = 4.00 WHERE [Code] = 'NSLPPRO1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNationalSchoolLunchProgramStatus] WHERE [Code] = 'NSLPPRO2') BEGIN INSERT INTO dbo.[RefNationalSchoolLunchProgramStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NSLPPRO2', 'Provision 2', 'The classification of participation by the school in the National School Lunch Program is participating under Provision 2.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNationalSchoolLunchProgramStatus] -SET [Description] = 'Provision 2', [Definition] = 'The classification of participation by the school in the National School Lunch Program is participating under Provision 2.', [SortOrder] = 5.00 WHERE [Code] = 'NSLPPRO2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNationalSchoolLunchProgramStatus] WHERE [Code] = 'NSLPPRO3') BEGIN INSERT INTO dbo.[RefNationalSchoolLunchProgramStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NSLPPRO3', 'Provision 3', 'The classification of participation by the school in the National School Lunch Program is participating under Provision 3.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNationalSchoolLunchProgramStatus] -SET [Description] = 'Provision 3', [Definition] = 'The classification of participation by the school in the National School Lunch Program is participating under Provision 3.', [SortOrder] = 6.00 WHERE [Code] = 'NSLPPRO3' END -END - -PRINT N'Populate RefNeedDeterminationMethod table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefNeedDeterminationMethod]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeedDeterminationMethod] WHERE [Code] = 'Federal') BEGIN INSERT INTO dbo.[RefNeedDeterminationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Federal', 'Federal', 'Federal', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeedDeterminationMethod] -SET [Description] = 'Federal', [Definition] = 'Federal', [SortOrder] = 1.00 WHERE [Code] = 'Federal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeedDeterminationMethod] WHERE [Code] = 'Institutional') BEGIN INSERT INTO dbo.[RefNeedDeterminationMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Institutional', 'Institutional', 'Institutional', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeedDeterminationMethod] -SET [Description] = 'Institutional', [Definition] = 'Institutional', [SortOrder] = 2.00 WHERE [Code] = 'Institutional' END -END - -PRINT N'Populate RefNeglectedProgramType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefNeglectedProgramType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'NeglectedPrograms') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NeglectedPrograms', 'Neglected programs', 'Neglected programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Neglected programs', [Definition] = 'Neglected programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 1.00 WHERE [Code] = 'NeglectedPrograms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'JuvenileDetention') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JuvenileDetention', 'Juvenile Detention', 'Juvenile Detention is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Juvenile Detention', [Definition] = 'Juvenile Detention is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 2.00 WHERE [Code] = 'JuvenileDetention' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'JuvenileCorrection') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JuvenileCorrection', 'Juvenile Correction', 'Juvenile Correction is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Juvenile Correction', [Definition] = 'Juvenile Correction is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 3.00 WHERE [Code] = 'JuvenileCorrection' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'AdultCorrection') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdultCorrection', 'Adult Correction', 'Adult Correction is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Adult Correction', [Definition] = 'Adult Correction is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 4.00 WHERE [Code] = 'AdultCorrection' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'AtRiskPrograms') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AtRiskPrograms', 'At-risk programs', 'At-risk programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'At-risk programs', [Definition] = 'At-risk programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 5.00 WHERE [Code] = 'AtRiskPrograms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'OtherPrograms') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherPrograms', 'Other Programs', 'Other Programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Other Programs', [Definition] = 'Other Programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 6.00 WHERE [Code] = 'OtherPrograms' END -END - -PRINT N'Populate RefNonPromotionReason table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefNonPromotionReason]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNonPromotionReason] WHERE [Code] = 'FailedTestingRequirements') BEGIN INSERT INTO dbo.[RefNonPromotionReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FailedTestingRequirements', 'Failed to meet testing requirements', 'Failed to meet testing requirements is the primary reason why a staff member determined that a student should not be promoted (or be demoted).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNonPromotionReason] -SET [Description] = 'Failed to meet testing requirements', [Definition] = 'Failed to meet testing requirements is the primary reason why a staff member determined that a student should not be promoted (or be demoted).', [SortOrder] = 1.00 WHERE [Code] = 'FailedTestingRequirements' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNonPromotionReason] WHERE [Code] = 'Illness') BEGIN INSERT INTO dbo.[RefNonPromotionReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Illness', 'Illness', 'Illness is the primary reason why a staff member determined that a student should not be promoted (or be demoted).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNonPromotionReason] -SET [Description] = 'Illness', [Definition] = 'Illness is the primary reason why a staff member determined that a student should not be promoted (or be demoted).', [SortOrder] = 2.00 WHERE [Code] = 'Illness' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNonPromotionReason] WHERE [Code] = 'Immaturity') BEGIN INSERT INTO dbo.[RefNonPromotionReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Immaturity', 'Immaturity', 'Immaturity is the primary reason why a staff member determined that a student should not be promoted (or be demoted).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNonPromotionReason] -SET [Description] = 'Immaturity', [Definition] = 'Immaturity is the primary reason why a staff member determined that a student should not be promoted (or be demoted).', [SortOrder] = 3.00 WHERE [Code] = 'Immaturity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNonPromotionReason] WHERE [Code] = 'InadequatePerformance') BEGIN INSERT INTO dbo.[RefNonPromotionReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InadequatePerformance', 'Inadequate performance', 'Inadequate performance is the primary reason why a staff member determined that a student should not be promoted (or be demoted).', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNonPromotionReason] -SET [Description] = 'Inadequate performance', [Definition] = 'Inadequate performance is the primary reason why a staff member determined that a student should not be promoted (or be demoted).', [SortOrder] = 4.00 WHERE [Code] = 'InadequatePerformance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNonPromotionReason] WHERE [Code] = 'InsufficientCredits') BEGIN INSERT INTO dbo.[RefNonPromotionReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InsufficientCredits', 'Insufficient credits', 'Insufficient credits is the primary reason why a staff member determined that a student should not be promoted (or be demoted).', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNonPromotionReason] -SET [Description] = 'Insufficient credits', [Definition] = 'Insufficient credits is the primary reason why a staff member determined that a student should not be promoted (or be demoted).', [SortOrder] = 5.00 WHERE [Code] = 'InsufficientCredits' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNonPromotionReason] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefNonPromotionReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is the primary reason why a staff member determined that a student should not be promoted (or be demoted).', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNonPromotionReason] -SET [Description] = 'Other', [Definition] = 'Other is the primary reason why a staff member determined that a student should not be promoted (or be demoted).', [SortOrder] = 6.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNonPromotionReason] WHERE [Code] = 'ProlongedAbsence') BEGIN INSERT INTO dbo.[RefNonPromotionReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ProlongedAbsence', 'Prolonged absence', 'Prolonged absence is the primary reason why a staff member determined that a student should not be promoted (or be demoted).', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNonPromotionReason] -SET [Description] = 'Prolonged absence', [Definition] = 'Prolonged absence is the primary reason why a staff member determined that a student should not be promoted (or be demoted).', [SortOrder] = 7.00 WHERE [Code] = 'ProlongedAbsence' END -END - -PRINT N'Populate RefNonTraditionalGenderStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefNonTraditionalGenderStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNonTraditionalGenderStatus] WHERE [Code] = 'Underrepresented') BEGIN INSERT INTO dbo.[RefNonTraditionalGenderStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Underrepresented', 'Members of an underrepresented gender group', 'CTE participants were members of an underrepresented gender group.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNonTraditionalGenderStatus] -SET [Description] = 'Members of an underrepresented gender group', [Definition] = 'CTE participants were members of an underrepresented gender group.', [SortOrder] = 1.00 WHERE [Code] = 'Underrepresented' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNonTraditionalGenderStatus] WHERE [Code] = 'NotUnderrepresented') BEGIN INSERT INTO dbo.[RefNonTraditionalGenderStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotUnderrepresented', 'Not members of an underrepresented gender group', 'CTE participants were not members of an underrepresented gender group.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNonTraditionalGenderStatus] -SET [Description] = 'Not members of an underrepresented gender group', [Definition] = 'CTE participants were not members of an underrepresented gender group.', [SortOrder] = 2.00 WHERE [Code] = 'NotUnderrepresented' END -END - -PRINT N'Populate RefNumberOfDependentsType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefNumberOfDependentsType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNumberOfDependentsType] WHERE [Code] = 'All') BEGIN INSERT INTO dbo.[RefNumberOfDependentsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('All', 'All', 'The dependents are the person''s children, spouse, and person other than the children or spouse', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNumberOfDependentsType] -SET [Description] = 'All', [Definition] = 'The dependents are the person''s children, spouse, and person other than the children or spouse', [SortOrder] = 1.00 WHERE [Code] = 'All' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNumberOfDependentsType] WHERE [Code] = 'Children') BEGIN INSERT INTO dbo.[RefNumberOfDependentsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Children', 'Children', 'The dependents are the person''s children.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNumberOfDependentsType] -SET [Description] = 'Children', [Definition] = 'The dependents are the person''s children.', [SortOrder] = 2.00 WHERE [Code] = 'Children' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNumberOfDependentsType] WHERE [Code] = 'PersonOtherThanChildrenOrSpouse') BEGIN INSERT INTO dbo.[RefNumberOfDependentsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PersonOtherThanChildrenOrSpouse', 'Person other than children or spouse', 'The dependent is a person other than the person''s children or spouse', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNumberOfDependentsType] -SET [Description] = 'Person other than children or spouse', [Definition] = 'The dependent is a person other than the person''s children or spouse', [SortOrder] = 3.00 WHERE [Code] = 'PersonOtherThanChildrenOrSpouse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNumberOfDependentsType] WHERE [Code] = 'Spouse') BEGIN INSERT INTO dbo.[RefNumberOfDependentsType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Spouse', 'Spouse', 'The dependent is the person''s spouse.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNumberOfDependentsType] -SET [Description] = 'Spouse', [Definition] = 'The dependent is the person''s spouse.', [SortOrder] = 4.00 WHERE [Code] = 'Spouse' END -END - -PRINT N'Populate RefOrganizationLocationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationLocationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationLocationType] WHERE [Code] = 'Mailing') BEGIN INSERT INTO dbo.[RefOrganizationLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Mailing', 'Mailing', 'Mailing is specified as the type of address listed for an organization.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationLocationType] -SET [Description] = 'Mailing', [Definition] = 'Mailing is specified as the type of address listed for an organization.', [SortOrder] = 1.00 WHERE [Code] = 'Mailing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationLocationType] WHERE [Code] = 'Physical') BEGIN INSERT INTO dbo.[RefOrganizationLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Physical', 'Physical', 'Physical is specified as the type of address listed for an organization.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationLocationType] -SET [Description] = 'Physical', [Definition] = 'Physical is specified as the type of address listed for an organization.', [SortOrder] = 2.00 WHERE [Code] = 'Physical' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationLocationType] WHERE [Code] = 'Shipping') BEGIN INSERT INTO dbo.[RefOrganizationLocationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Shipping', 'Shipping', 'Shipping is specified as the type of address listed for an organization.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationLocationType] -SET [Description] = 'Shipping', [Definition] = 'Shipping is specified as the type of address listed for an organization.', [SortOrder] = 3.00 WHERE [Code] = 'Shipping' END -END - -PRINT N'Populate RefOrganizationMonitoringNotifications table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationMonitoringNotifications]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationMonitoringNotifications] WHERE [Code] = 'Announced') BEGIN INSERT INTO dbo.[RefOrganizationMonitoringNotifications]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Announced', 'Announced', 'The organization received notification about monitoring.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationMonitoringNotifications] -SET [Description] = 'Announced', [Definition] = 'The organization received notification about monitoring.', [SortOrder] = 1.00 WHERE [Code] = 'Announced' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationMonitoringNotifications] WHERE [Code] = 'Unannounced') BEGIN INSERT INTO dbo.[RefOrganizationMonitoringNotifications]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unannounced', 'Unannounced', 'The organization did not received notification about monitoring.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationMonitoringNotifications] -SET [Description] = 'Unannounced', [Definition] = 'The organization did not received notification about monitoring.', [SortOrder] = 2.00 WHERE [Code] = 'Unannounced' END -END - -PRINT N'Populate RefOrganizationRelationship table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationRelationship]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationRelationship] WHERE [Code] = 'AuthorizingBody') BEGIN INSERT INTO dbo.[RefOrganizationRelationship]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AuthorizingBody', 'Authorizing Body', 'The primary entity with legal authority to create or close the organization.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationRelationship] -SET [Description] = 'Authorizing Body', [Definition] = 'The primary entity with legal authority to create or close the organization.', [SortOrder] = 1.00 WHERE [Code] = 'AuthorizingBody' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationRelationship] WHERE [Code] = 'OperatingBody') BEGIN INSERT INTO dbo.[RefOrganizationRelationship]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OperatingBody', 'Operating Body', 'The entity responsible for operating the organization.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationRelationship] -SET [Description] = 'Operating Body', [Definition] = 'The entity responsible for operating the organization.', [SortOrder] = 2.00 WHERE [Code] = 'OperatingBody' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationRelationship] WHERE [Code] = 'SecondaryAuthorizingBody') BEGIN INSERT INTO dbo.[RefOrganizationRelationship]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SecondaryAuthorizingBody', 'Secondary Authorizing Body', 'The secondary entity with legal authority to create or close the organization.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationRelationship] -SET [Description] = 'Secondary Authorizing Body', [Definition] = 'The secondary entity with legal authority to create or close the organization.', [SortOrder] = 3.00 WHERE [Code] = 'SecondaryAuthorizingBody' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationRelationship] WHERE [Code] = 'RelatedBody') BEGIN INSERT INTO dbo.[RefOrganizationRelationship]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RelatedBody', 'Related Body', 'An entity related to another entity, but that does not have authorizing or operating responsibility over the other entity.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationRelationship] -SET [Description] = 'Related Body', [Definition] = 'An entity related to another entity, but that does not have authorizing or operating responsibility over the other entity.', [SortOrder] = 4.00 WHERE [Code] = 'RelatedBody' END -END - -PRINT N'Populate RefOtherNameType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOtherNameType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOtherNameType] WHERE [Code] = 'Alias') BEGIN INSERT INTO dbo.[RefOtherNameType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Alias', 'Alias', 'The value specified for Other Name is the person''s Alias.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOtherNameType] -SET [Description] = 'Alias', [Definition] = 'The value specified for Other Name is the person''s Alias.', [SortOrder] = 1.00 WHERE [Code] = 'Alias' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOtherNameType] WHERE [Code] = 'Nickname') BEGIN INSERT INTO dbo.[RefOtherNameType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Nickname', 'Nickname', 'The value specified for Other Name is the person''s Nickname.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOtherNameType] -SET [Description] = 'Nickname', [Definition] = 'The value specified for Other Name is the person''s Nickname.', [SortOrder] = 2.00 WHERE [Code] = 'Nickname' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOtherNameType] WHERE [Code] = 'OtherName') BEGIN INSERT INTO dbo.[RefOtherNameType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherName', 'Other name', 'The value specified for Other Name is the person''s Other name.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOtherNameType] -SET [Description] = 'Other name', [Definition] = 'The value specified for Other Name is the person''s Other name.', [SortOrder] = 3.00 WHERE [Code] = 'OtherName' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOtherNameType] WHERE [Code] = 'PreviousLegalName') BEGIN INSERT INTO dbo.[RefOtherNameType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PreviousLegalName', 'Previous legal name', 'The value specified for Other Name is the person''s Previous legal name.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOtherNameType] -SET [Description] = 'Previous legal name', [Definition] = 'The value specified for Other Name is the person''s Previous legal name.', [SortOrder] = 4.00 WHERE [Code] = 'PreviousLegalName' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOtherNameType] WHERE [Code] = 'PreferredFamilyName') BEGIN INSERT INTO dbo.[RefOtherNameType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PreferredFamilyName', 'Preferred Family Name', 'The value specified for Other Name is the person''s Preferred Family Name.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOtherNameType] -SET [Description] = 'Preferred Family Name', [Definition] = 'The value specified for Other Name is the person''s Preferred Family Name.', [SortOrder] = 6.00 WHERE [Code] = 'PreferredFamilyName' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOtherNameType] WHERE [Code] = 'PreferredGivenName') BEGIN INSERT INTO dbo.[RefOtherNameType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PreferredGivenName', 'Preferred Given Name', 'The value specified for Other Name is the person''s Preferred Given Name.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOtherNameType] -SET [Description] = 'Preferred Given Name', [Definition] = 'The value specified for Other Name is the person''s Preferred Given Name.', [SortOrder] = 8.00 WHERE [Code] = 'PreferredGivenName' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOtherNameType] WHERE [Code] = 'FullName') BEGIN INSERT INTO dbo.[RefOtherNameType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullName', 'Full Name', 'The value specified for Other Name is the person''s Full Name.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOtherNameType] -SET [Description] = 'Full Name', [Definition] = 'The value specified for Other Name is the person''s Full Name.', [SortOrder] = 10.00 WHERE [Code] = 'FullName' END -END - -PRINT N'Populate RefOutcomeTimePoint table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOutcomeTimePoint]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOutcomeTimePoint] WHERE [Code] = 'Baseline') BEGIN INSERT INTO dbo.[RefOutcomeTimePoint]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Baseline', 'Baseline - at entry', 'Baseline - at entry is the point in time for which the result is used for an outcome measure.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOutcomeTimePoint] -SET [Description] = 'Baseline - at entry', [Definition] = 'Baseline - at entry is the point in time for which the result is used for an outcome measure.', [SortOrder] = 2.00 WHERE [Code] = 'Baseline' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOutcomeTimePoint] WHERE [Code] = 'AtExit') BEGIN INSERT INTO dbo.[RefOutcomeTimePoint]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AtExit', 'At exit', 'At exit is the point in time for which the result is used for an outcome measure.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOutcomeTimePoint] -SET [Description] = 'At exit', [Definition] = 'At exit is the point in time for which the result is used for an outcome measure.', [SortOrder] = 4.00 WHERE [Code] = 'AtExit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOutcomeTimePoint] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefOutcomeTimePoint]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', 'Not applicable is the point in time for which the result is used for an outcome measure.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOutcomeTimePoint] -SET [Description] = 'Not applicable', [Definition] = 'Not applicable is the point in time for which the result is used for an outcome measure.', [SortOrder] = 6.00 WHERE [Code] = 'NA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOutcomeTimePoint] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefOutcomeTimePoint]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other is the point in time for which the result is used for an outcome measure.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOutcomeTimePoint] -SET [Description] = 'Other', [Definition] = 'Other is the point in time for which the result is used for an outcome measure.', [SortOrder] = 8.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefOutOfFieldStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOutOfFieldStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOutOfFieldStatus] WHERE [Code] = 'TCHOUTFLD') BEGIN INSERT INTO dbo.[RefOutOfFieldStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TCHOUTFLD', 'Not teaching in field', 'The teacher has been identified as teaching in the subject or field for which they are not certified or licensed.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOutOfFieldStatus] -SET [Description] = 'Not teaching in field', [Definition] = 'The teacher has been identified as teaching in the subject or field for which they are not certified or licensed.', [SortOrder] = 1.00 WHERE [Code] = 'TCHOUTFLD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOutOfFieldStatus] WHERE [Code] = 'TCHINFLD') BEGIN INSERT INTO dbo.[RefOutOfFieldStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TCHINFLD', 'Teaching in field', 'The teacher has been identified as teaching in the subject or field for which they are certified or licensed.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOutOfFieldStatus] -SET [Description] = 'Teaching in field', [Definition] = 'The teacher has been identified as teaching in the subject or field for which they are certified or licensed.', [SortOrder] = 2.00 WHERE [Code] = 'TCHINFLD' END -END - -PRINT N'Populate RefParaprofessionalQualification table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefParaprofessionalQualification]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParaprofessionalQualification] WHERE [Code] = 'Qualified') BEGIN INSERT INTO dbo.[RefParaprofessionalQualification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Qualified', 'Qualified', 'The paraprofessional is qualified for their assignment according to state definition.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParaprofessionalQualification] -SET [Description] = 'Qualified', [Definition] = 'The paraprofessional is qualified for their assignment according to state definition.', [SortOrder] = 1.00 WHERE [Code] = 'Qualified' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParaprofessionalQualification] WHERE [Code] = 'NotQualified') BEGIN INSERT INTO dbo.[RefParaprofessionalQualification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotQualified', 'Not Qualified', 'The paraprofessional is NOT qualified for their assignment according to state definition.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParaprofessionalQualification] -SET [Description] = 'Not Qualified', [Definition] = 'The paraprofessional is NOT qualified for their assignment according to state definition.', [SortOrder] = 2.00 WHERE [Code] = 'NotQualified' END -END - -PRINT N'Populate RefParticipationStatusAyp table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefParticipationStatusAyp]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationStatusAyp] WHERE [Code] = 'Met') BEGIN INSERT INTO dbo.[RefParticipationStatusAyp]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Met', 'Met 95%', 'The school or district met the 95 percent participation requirement.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationStatusAyp] -SET [Description] = 'Met 95%', [Definition] = 'The school or district met the 95 percent participation requirement.', [SortOrder] = 1.00 WHERE [Code] = 'Met' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationStatusAyp] WHERE [Code] = 'DidNotMeet') BEGIN INSERT INTO dbo.[RefParticipationStatusAyp]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DidNotMeet', 'Did not Meet 95%', 'The school or district did NOT meet the 95 percent participation requirement.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationStatusAyp] -SET [Description] = 'Did not Meet 95%', [Definition] = 'The school or district did NOT meet the 95 percent participation requirement.', [SortOrder] = 2.00 WHERE [Code] = 'DidNotMeet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationStatusAyp] WHERE [Code] = 'TooFewStudents') BEGIN INSERT INTO dbo.[RefParticipationStatusAyp]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TooFewStudents', 'Too Few Students for Reliability', 'There were too Few Students for Reliability.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationStatusAyp] -SET [Description] = 'Too Few Students for Reliability', [Definition] = 'There were too Few Students for Reliability.', [SortOrder] = 3.00 WHERE [Code] = 'TooFewStudents' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationStatusAyp] WHERE [Code] = 'NoStudents') BEGIN INSERT INTO dbo.[RefParticipationStatusAyp]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoStudents', 'No Students in the subgroup', 'There were no Students in the subgroup.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationStatusAyp] -SET [Description] = 'No Students in the subgroup', [Definition] = 'There were no Students in the subgroup.', [SortOrder] = 4.00 WHERE [Code] = 'NoStudents' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationStatusAyp] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefParticipationStatusAyp]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', 'The 95 percent participation status does Not apply.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationStatusAyp] -SET [Description] = 'Not applicable', [Definition] = 'The 95 percent participation status does Not apply.', [SortOrder] = 5.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefPDActivityApprovedPurpose table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPDActivityApprovedPurpose]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityApprovedPurpose] WHERE [Code] = 'QRIS') BEGIN INSERT INTO dbo.[RefPDActivityApprovedPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('QRIS', 'Quality Rating and Improvement System', 'Quality Rating and Improvement System is the purposes for which the professional development activity was approved.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityApprovedPurpose] -SET [Description] = 'Quality Rating and Improvement System', [Definition] = 'Quality Rating and Improvement System is the purposes for which the professional development activity was approved.', [SortOrder] = 2.00 WHERE [Code] = 'QRIS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityApprovedPurpose] WHERE [Code] = 'Licensing') BEGIN INSERT INTO dbo.[RefPDActivityApprovedPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Licensing', 'Licensing', 'Licensing is the purposes for which the professional development activity was approved.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityApprovedPurpose] -SET [Description] = 'Licensing', [Definition] = 'Licensing is the purposes for which the professional development activity was approved.', [SortOrder] = 4.00 WHERE [Code] = 'Licensing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityApprovedPurpose] WHERE [Code] = 'StateStandard') BEGIN INSERT INTO dbo.[RefPDActivityApprovedPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateStandard', 'State standard', 'State standard is the purposes for which the professional development activity was approved.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityApprovedPurpose] -SET [Description] = 'State standard', [Definition] = 'State standard is the purposes for which the professional development activity was approved.', [SortOrder] = 6.00 WHERE [Code] = 'StateStandard' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityApprovedPurpose] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefPDActivityApprovedPurpose]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The purposes for which the professional development activity was approved is in a category not yet defined by CEDS.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityApprovedPurpose] -SET [Description] = 'Other', [Definition] = 'The purposes for which the professional development activity was approved is in a category not yet defined by CEDS.', [SortOrder] = 8.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefPDActivityCreditType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPDActivityCreditType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityCreditType] WHERE [Code] = 'Hours') BEGIN INSERT INTO dbo.[RefPDActivityCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Hours', 'Hours', 'Hours is the type of professional development credit awarded.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityCreditType] -SET [Description] = 'Hours', [Definition] = 'Hours is the type of professional development credit awarded.', [SortOrder] = 2.00 WHERE [Code] = 'Hours' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityCreditType] WHERE [Code] = 'CEUs') BEGIN INSERT INTO dbo.[RefPDActivityCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CEUs', 'Continuing Education Units', 'Continuing Education Units is the type of professional development credit awarded.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityCreditType] -SET [Description] = 'Continuing Education Units', [Definition] = 'Continuing Education Units is the type of professional development credit awarded.', [SortOrder] = 4.00 WHERE [Code] = 'CEUs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityCreditType] WHERE [Code] = 'QuarterCredits') BEGIN INSERT INTO dbo.[RefPDActivityCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('QuarterCredits', 'Quarter credits', 'Quarter credits is the type of professional development credit awarded.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityCreditType] -SET [Description] = 'Quarter credits', [Definition] = 'Quarter credits is the type of professional development credit awarded.', [SortOrder] = 6.00 WHERE [Code] = 'QuarterCredits' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityCreditType] WHERE [Code] = 'SemesterCredits') BEGIN INSERT INTO dbo.[RefPDActivityCreditType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SemesterCredits', 'Semester credits', 'Semester credits is the type of professional development credit awarded.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityCreditType] -SET [Description] = 'Semester credits', [Definition] = 'Semester credits is the type of professional development credit awarded.', [SortOrder] = 8.00 WHERE [Code] = 'SemesterCredits' END -END - -PRINT N'Populate RefPDActivityEducationLevelsAddressed table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPDActivityEducationLevelsAddressed]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'IN') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IN', 'Infant', 'Infant is the age group or education level to which the professional development activity''s content pertains.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Infant', [Definition] = 'Infant is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 1.00 WHERE [Code] = 'IN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'TO') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TO', 'Toddler', 'Toddler is the age group or education level to which the professional development activity''s content pertains.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Toddler', [Definition] = 'Toddler is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 3.00 WHERE [Code] = 'TO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'PR') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PR', 'Preschool', 'Preschool is the age group or education level to which the professional development activity''s content pertains.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Preschool', [Definition] = 'Preschool is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 5.00 WHERE [Code] = 'PR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'PK') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PK', 'Prekindergarten', 'Prekindergarten is the age group or education level to which the professional development activity''s content pertains.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Prekindergarten', [Definition] = 'Prekindergarten is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 7.00 WHERE [Code] = 'PK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'TK') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TK', 'Transitional Kindergarten', 'Transitional Kindergarten is the age group or education level to which the professional development activity''s content pertains.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Transitional Kindergarten', [Definition] = 'Transitional Kindergarten is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 9.00 WHERE [Code] = 'TK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'KG') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KG', 'Kindergarten', 'Kindergarten is the age group or education level to which the professional development activity''s content pertains.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Kindergarten', [Definition] = 'Kindergarten is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 11.00 WHERE [Code] = 'KG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'First grade', 'First grade is the age group or education level to which the professional development activity''s content pertains.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'First grade', [Definition] = 'First grade is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 13.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Second grade', 'Second grade is the age group or education level to which the professional development activity''s content pertains.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Second grade', [Definition] = 'Second grade is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 15.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Third grade', 'Third grade is the age group or education level to which the professional development activity''s content pertains.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Third grade', [Definition] = 'Third grade is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 17.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Fourth grade', 'Fourth grade is the age group or education level to which the professional development activity''s content pertains.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Fourth grade', [Definition] = 'Fourth grade is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 19.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Fifth grade', 'Fifth grade is the age group or education level to which the professional development activity''s content pertains.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Fifth grade', [Definition] = 'Fifth grade is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 21.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Sixth grade', 'Sixth grade is the age group or education level to which the professional development activity''s content pertains.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Sixth grade', [Definition] = 'Sixth grade is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 23.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Seventh grade', 'Seventh grade is the age group or education level to which the professional development activity''s content pertains.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Seventh grade', [Definition] = 'Seventh grade is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 25.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Eighth grade', 'Eighth grade is the age group or education level to which the professional development activity''s content pertains.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Eighth grade', [Definition] = 'Eighth grade is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 27.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Ninth grade', 'Ninth grade is the age group or education level to which the professional development activity''s content pertains.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Ninth grade', [Definition] = 'Ninth grade is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 29.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Tenth grade', 'Tenth grade is the age group or education level to which the professional development activity''s content pertains.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Tenth grade', [Definition] = 'Tenth grade is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 31.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Eleventh grade', 'Eleventh grade is the age group or education level to which the professional development activity''s content pertains.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Eleventh grade', [Definition] = 'Eleventh grade is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 33.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Twelfth grade', 'Twelfth grade is the age group or education level to which the professional development activity''s content pertains.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Twelfth grade', [Definition] = 'Twelfth grade is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 35.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = '13') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13', 'Grade 13', 'Grade 13 is the age group or education level to which the professional development activity''s content pertains.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Grade 13', [Definition] = 'Grade 13 is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 37.00 WHERE [Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'AS') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AS', 'Associate''s degree', 'Associate''s degree is the age group or education level to which the professional development activity''s content pertains.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Associate''s degree', [Definition] = 'Associate''s degree is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 39.00 WHERE [Code] = 'AS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'BA') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BA', 'Bachelor''s degree', 'Bachelor''s degree is the age group or education level to which the professional development activity''s content pertains.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Bachelor''s degree', [Definition] = 'Bachelor''s degree is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 41.00 WHERE [Code] = 'BA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'PB') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PB', 'Post-baccalaureate certificate', 'Post-baccalaureate certificate is the age group or education level to which the professional development activity''s content pertains.', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Post-baccalaureate certificate', [Definition] = 'Post-baccalaureate certificate is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 43.00 WHERE [Code] = 'PB' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'MD') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MD', 'Master''s degree', 'Master''s degree is the age group or education level to which the professional development activity''s content pertains.', 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Master''s degree', [Definition] = 'Master''s degree is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 45.00 WHERE [Code] = 'MD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'PM') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PM', 'Post-master''s certificate', 'Post-master''s certificate is the age group or education level to which the professional development activity''s content pertains.', 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Post-master''s certificate', [Definition] = 'Post-master''s certificate is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 47.00 WHERE [Code] = 'PM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'DO') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DO', 'Doctoral degree', 'Doctoral degree is the age group or education level to which the professional development activity''s content pertains.', 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Doctoral degree', [Definition] = 'Doctoral degree is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 49.00 WHERE [Code] = 'DO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'PD') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PD', 'Post-doctoral certificate', 'Post-doctoral certificate is the age group or education level to which the professional development activity''s content pertains.', 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Post-doctoral certificate', [Definition] = 'Post-doctoral certificate is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 51.00 WHERE [Code] = 'PD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'AE') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AE', 'Adult education', 'Adult education is the age group or education level to which the professional development activity''s content pertains.', 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Adult education', [Definition] = 'Adult education is the age group or education level to which the professional development activity''s content pertains.', [SortOrder] = 53.00 WHERE [Code] = 'AE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityEducationLevelsAddressed] WHERE [Code] = 'OT') BEGIN INSERT INTO dbo.[RefPDActivityEducationLevelsAddressed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OT', 'Other', 'The age group or education level to which the professional development activity''s content pertains is not yet defined in CEDS.', 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityEducationLevelsAddressed] -SET [Description] = 'Other', [Definition] = 'The age group or education level to which the professional development activity''s content pertains is not yet defined in CEDS.', [SortOrder] = 55.00 WHERE [Code] = 'OT' END -END - -PRINT N'Populate RefPDActivityLevel table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPDActivityLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityLevel] WHERE [Code] = 'Beginner') BEGIN INSERT INTO dbo.[RefPDActivityLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Beginner', 'Beginner', 'The level of expertise for the professional development activity is beginner.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityLevel] -SET [Description] = 'Beginner', [Definition] = 'The level of expertise for the professional development activity is beginner.', [SortOrder] = 2.00 WHERE [Code] = 'Beginner' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityLevel] WHERE [Code] = 'Intermediate') BEGIN INSERT INTO dbo.[RefPDActivityLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Intermediate', 'Intermediate', 'The level of expertise for the professional development activity is intermediate.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityLevel] -SET [Description] = 'Intermediate', [Definition] = 'The level of expertise for the professional development activity is intermediate.', [SortOrder] = 4.00 WHERE [Code] = 'Intermediate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityLevel] WHERE [Code] = 'Advanced') BEGIN INSERT INTO dbo.[RefPDActivityLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Advanced', 'Advanced', 'The level of expertise for the professional development activity is advanced.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityLevel] -SET [Description] = 'Advanced', [Definition] = 'The level of expertise for the professional development activity is advanced.', [SortOrder] = 6.00 WHERE [Code] = 'Advanced' END -END - -PRINT N'Populate RefPDActivityTargetAudience table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPDActivityTargetAudience]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'AdministrativeSupportStaff') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdministrativeSupportStaff', 'Administrative Support Staff', 'Staff members who provide direct support to administrators, business office support, data processing, or support of the teaching and administrative duties of the office of the principal or department chairpersons, including clerical staff and secretaries.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Administrative Support Staff', [Definition] = 'Staff members who provide direct support to administrators, business office support, data processing, or support of the teaching and administrative duties of the office of the principal or department chairpersons, including clerical staff and secretaries.', [SortOrder] = 1.00 WHERE [Code] = 'AdministrativeSupportStaff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'Administrators') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Administrators', 'Administrators', 'Executive officers or managers of education agencies or institutions, including superintendents, deputies, and assistant superintendents; other persons with district-wide responsibilities: e.g., business managers, administrative assistants, and professional instructional support staff. In addition, staff members whose activities are concerned with directing and managing the operation of a particular school including principals, assistant principals, and other assistants; persons who supervise school operations, assign duties to staff members, supervise and maintain the records of the school, and coordinate school instructional activities with those of the education agency, including department chairpersons.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Administrators', [Definition] = 'Executive officers or managers of education agencies or institutions, including superintendents, deputies, and assistant superintendents; other persons with district-wide responsibilities: e.g., business managers, administrative assistants, and professional instructional support staff. In addition, staff members whose activities are concerned with directing and managing the operation of a particular school including principals, assistant principals, and other assistants; persons who supervise school operations, assign duties to staff members, supervise and maintain the records of the school, and coordinate school instructional activities with those of the education agency, including department chairpersons.', [SortOrder] = 3.00 WHERE [Code] = 'Administrators' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'AllOtherSupportStaff') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AllOtherSupportStaff', 'All Other Support Staff ', 'Support staff not reported in instructional or student support. Other support staff includes employees such as data processing, health, plant and equipment maintenance, bus drivers, security, and food service workers.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'All Other Support Staff ', [Definition] = 'Support staff not reported in instructional or student support. Other support staff includes employees such as data processing, health, plant and equipment maintenance, bus drivers, security, and food service workers.', [SortOrder] = 5.00 WHERE [Code] = 'AllOtherSupportStaff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'BehavioralSpecialists') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BehavioralSpecialists', 'Behavioral Specialists', 'Behavioral Specialists', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Behavioral Specialists', [Definition] = 'Behavioral Specialists', [SortOrder] = 7.00 WHERE [Code] = 'BehavioralSpecialists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'ELAssistantTeachers') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ELAssistantTeachers', 'Early Leaning Assistant Teachers', 'Assistant Teachers of general level instruction and/or services delivery classified by state and local practice from birth to Kindergarten.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Early Leaning Assistant Teachers', [Definition] = 'Assistant Teachers of general level instruction and/or services delivery classified by state and local practice from birth to Kindergarten.', [SortOrder] = 9.00 WHERE [Code] = 'ELAssistantTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'ELTeachers') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ELTeachers', 'Early Learning Teachers', 'Teachers of general level instruction and/or service delivery classified by state and local practice from birth to Kindergarten.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Early Learning Teachers', [Definition] = 'Teachers of general level instruction and/or service delivery classified by state and local practice from birth to Kindergarten.', [SortOrder] = 10.00 WHERE [Code] = 'ELTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'ElementaryTeachers') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ElementaryTeachers', 'Elementary Teachers', 'Teachers of general level instruction classified by state and local practice as elementary and composed of any span of grades not above grade 8.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Elementary Teachers', [Definition] = 'Teachers of general level instruction classified by state and local practice as elementary and composed of any span of grades not above grade 8.', [SortOrder] = 11.00 WHERE [Code] = 'ElementaryTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'FamilyServiceWorkers') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FamilyServiceWorkers', 'Family Service Workers', 'Professional staff members assigned specific duties related to staff providing in-home and other services (including needs assessment, development of service plans, family advocacy, and coordination of service delivery) to families of children participating in early care and education programs.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Family Service Workers', [Definition] = 'Professional staff members assigned specific duties related to staff providing in-home and other services (including needs assessment, development of service plans, family advocacy, and coordination of service delivery) to families of children participating in early care and education programs.', [SortOrder] = 15.00 WHERE [Code] = 'FamilyServiceWorkers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'HealthSpecialists') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HealthSpecialists', 'Health Specialists', 'Professional staff members or supervisors assigned specific duties related to providing any Health services that are not specific to mental health.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Health Specialists', [Definition] = 'Professional staff members or supervisors assigned specific duties related to providing any Health services that are not specific to mental health.', [SortOrder] = 17.00 WHERE [Code] = 'HealthSpecialists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'HomeVisitors') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HomeVisitors', 'Home Visitors', 'Professional staff members assigned specific duties related to visiting a child or pregnant woman''s home for the purpose of assisting parents in fostering the growth and development of their child.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Home Visitors', [Definition] = 'Professional staff members assigned specific duties related to visiting a child or pregnant woman''s home for the purpose of assisting parents in fostering the growth and development of their child.', [SortOrder] = 19.00 WHERE [Code] = 'HomeVisitors' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'InstructionalCoordinators') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InstructionalCoordinators', 'Instructional Coordinators', 'Staff supervising instructional programs including professional staff members or supervisors in an early learning program assigned specific duties related to instruction , or supervisors at a school district or sub-district level including curriculum coordinators or supervisors; in-service training staff; Title I supervisors; home economics supervisors; educational television staff; coordinators and supervisors of audiovisual services; and staff engaged in development of computer-assisted instruction.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Instructional Coordinators', [Definition] = 'Staff supervising instructional programs including professional staff members or supervisors in an early learning program assigned specific duties related to instruction , or supervisors at a school district or sub-district level including curriculum coordinators or supervisors; in-service training staff; Title I supervisors; home economics supervisors; educational television staff; coordinators and supervisors of audiovisual services; and staff engaged in development of computer-assisted instruction.', [SortOrder] = 21.00 WHERE [Code] = 'InstructionalCoordinators' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'KindergartenTeachers') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KindergartenTeachers', 'Kindergarten Teachers', 'Teachers of a group or class that is part of a public school program and is taught during the year preceding the first grade.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Kindergarten Teachers', [Definition] = 'Teachers of a group or class that is part of a public school program and is taught during the year preceding the first grade.', [SortOrder] = 23.00 WHERE [Code] = 'KindergartenTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'LibraryMediaSpecialists') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LibraryMediaSpecialists', 'Librarians/Media Specialists', 'A professional staff member or supervisor assigned specific duties and school time for professional library and media service activities. Activities include: selecting, acquiring, preparing, cataloging, and circulating books and other printed materials; planning the use of library and media services by students, teachers and other members of the instructional staff; and guiding individuals in their use of media services and library materials, (whether maintained separately or as part of an instructional materials center).', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Librarians/Media Specialists', [Definition] = 'A professional staff member or supervisor assigned specific duties and school time for professional library and media service activities. Activities include: selecting, acquiring, preparing, cataloging, and circulating books and other printed materials; planning the use of library and media services by students, teachers and other members of the instructional staff; and guiding individuals in their use of media services and library materials, (whether maintained separately or as part of an instructional materials center).', [SortOrder] = 25.00 WHERE [Code] = 'LibraryMediaSpecialists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'LibraryMediaSupportStaff') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LibraryMediaSupportStaff', 'Library/Media Support Staff', 'Staff members who render other library or media services, such as preparing, caring for, and making available to members of the instructional staff the equipment, films, filmstrips, transparencies, tapes, TV programs, and similar materials (whether maintained separately as part of an instructional materials center).', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Library/Media Support Staff', [Definition] = 'Staff members who render other library or media services, such as preparing, caring for, and making available to members of the instructional staff the equipment, films, filmstrips, transparencies, tapes, TV programs, and similar materials (whether maintained separately as part of an instructional materials center).', [SortOrder] = 27.00 WHERE [Code] = 'LibraryMediaSupportStaff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'MentalHealthSpecialists') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MentalHealthSpecialists', 'Mental Health Specialists', 'Professional staff members or supervisors assigned specific duties related to Mental Health.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Mental Health Specialists', [Definition] = 'Professional staff members or supervisors assigned specific duties related to Mental Health.', [SortOrder] = 29.00 WHERE [Code] = 'MentalHealthSpecialists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'NutritionSpecialists') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NutritionSpecialists', 'Nutrition Specialists', 'Professional staff members or supervisors assigned specific duties related to Nutrition.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Nutrition Specialists', [Definition] = 'Professional staff members or supervisors assigned specific duties related to Nutrition.', [SortOrder] = 31.00 WHERE [Code] = 'NutritionSpecialists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'Paraprofessionals') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Paraprofessionals', 'Paraprofessionals', 'Paraprofessionals are employees who provide instructional support, including those who: (1) provide one-on-one tutoring if such tutoring is scheduled at a time when a student would not otherwise receive instruction from a teacher, (2) assist with classroom management, such as organizing instructional and other materials, (3) provide instructional assistance in a computer laboratory, (4) conduct parental involvement activities, (5) provide support in a library or media center, (6) act as a translator, or (7) provide instructional support services under the direct supervision of a teacher.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Paraprofessionals', [Definition] = 'Paraprofessionals are employees who provide instructional support, including those who: (1) provide one-on-one tutoring if such tutoring is scheduled at a time when a student would not otherwise receive instruction from a teacher, (2) assist with classroom management, such as organizing instructional and other materials, (3) provide instructional assistance in a computer laboratory, (4) conduct parental involvement activities, (5) provide support in a library or media center, (6) act as a translator, or (7) provide instructional support services under the direct supervision of a teacher.', [SortOrder] = 35.00 WHERE [Code] = 'Paraprofessionals' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'PartCEarlyInterventionists') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartCEarlyInterventionists', 'Part C Early Interventionists', 'Professional staff members employed to provide early intervention services to infants and toddlers with disabilities or at-risk of experiencing a substantial developmental delay as defined by Part C of the Individuals with Disabilities Education Act (IDEA): The Early Intervention Program for Infants and Toddlers with Disabilities.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Part C Early Interventionists', [Definition] = 'Professional staff members employed to provide early intervention services to infants and toddlers with disabilities or at-risk of experiencing a substantial developmental delay as defined by Part C of the Individuals with Disabilities Education Act (IDEA): The Early Intervention Program for Infants and Toddlers with Disabilities.', [SortOrder] = 37.00 WHERE [Code] = 'PartCEarlyInterventionists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'PartCServiceCoordinators') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartCServiceCoordinators', 'Part C Service Coordinators', 'Professional staff members employed to coordinate early intervention services to infants and toddlers with disabilities or at-risk of experiencing a substantial developmental delay as defined by Part C of the Individuals with Disabilities Education Act (IDEA): The Early Intervention Program for Infants and Toddlers with Disabilities.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Part C Service Coordinators', [Definition] = 'Professional staff members employed to coordinate early intervention services to infants and toddlers with disabilities or at-risk of experiencing a substantial developmental delay as defined by Part C of the Individuals with Disabilities Education Act (IDEA): The Early Intervention Program for Infants and Toddlers with Disabilities.', [SortOrder] = 39.00 WHERE [Code] = 'PartCServiceCoordinators' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'SchoolCounselors') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SchoolCounselors', 'School Counselors', 'Professional staff members assigned specific duties and school time for any of the following activities: counseling with students and parents, consulting with other staff members on learning problems, evaluating student abilities, assisting students in making education and career choices, assisting students in personal and social development, providing referral assistance, and/or working with other staff members in planning and conducting guidance programs for students. School counselors may be reported by elementary and secondary level when that information is available.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'School Counselors', [Definition] = 'Professional staff members assigned specific duties and school time for any of the following activities: counseling with students and parents, consulting with other staff members on learning problems, evaluating student abilities, assisting students in making education and career choices, assisting students in personal and social development, providing referral assistance, and/or working with other staff members in planning and conducting guidance programs for students. School counselors may be reported by elementary and secondary level when that information is available.', [SortOrder] = 41.00 WHERE [Code] = 'SchoolCounselors' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'SecondaryTeachers') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SecondaryTeachers', 'Secondary Teachers', 'Teachers of a general level of instruction classified by state and local practice as secondary and composed of any span of grades beginning with the next grade following the elementary grades and ending with or below grade 12.', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Secondary Teachers', [Definition] = 'Teachers of a general level of instruction classified by state and local practice as secondary and composed of any span of grades beginning with the next grade following the elementary grades and ending with or below grade 12.', [SortOrder] = 43.00 WHERE [Code] = 'SecondaryTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'SocialWorkers') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SocialWorkers', 'Social Workers', 'Social workers assist people by helping them cope with and solve issues in their everyday lives, such as family and personal problems and dealing with relationships. ', 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Social Workers', [Definition] = 'Social workers assist people by helping them cope with and solve issues in their everyday lives, such as family and personal problems and dealing with relationships. ', [SortOrder] = 45.00 WHERE [Code] = 'SocialWorkers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'SpecialEducationTeachers') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpecialEducationTeachers', 'Special Education Teachers', 'Special Education teachers include teachers employed to provide special education services to children with disabilities, including preschool teachers, itinerant/consulting teachers, and home/hospital teachers. This count should include teachers of children with disabilities in separate schools and facilities. ', 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Special Education Teachers', [Definition] = 'Special Education teachers include teachers employed to provide special education services to children with disabilities, including preschool teachers, itinerant/consulting teachers, and home/hospital teachers. This count should include teachers of children with disabilities in separate schools and facilities. ', [SortOrder] = 47.00 WHERE [Code] = 'SpecialEducationTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'SpecialNeedsSpecialists') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpecialNeedsSpecialists', 'Special Needs Specialists', 'Professional staff members or supervisors assigned specific duties related to special needs learners.', 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Special Needs Specialists', [Definition] = 'Professional staff members or supervisors assigned specific duties related to special needs learners.', [SortOrder] = 49.00 WHERE [Code] = 'SpecialNeedsSpecialists' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'StudentSupportServicesStaff') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StudentSupportServicesStaff', 'Student Support Services Staff', 'Professional and supervisory staff providing non-instructional services to students including attendance officers; staff providing health, psychology, speech pathology, audiology, or social services; and supervisors of the preceding staff and of health, transportation, and food service workers.', 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Student Support Services Staff', [Definition] = 'Professional and supervisory staff providing non-instructional services to students including attendance officers; staff providing health, psychology, speech pathology, audiology, or social services; and supervisors of the preceding staff and of health, transportation, and food service workers.', [SortOrder] = 51.00 WHERE [Code] = 'StudentSupportServicesStaff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'UngradedTeachers') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UngradedTeachers', 'Ungraded Teachers', 'Teachers of classes or programs to which students are assigned without standard grade designation.', 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Ungraded Teachers', [Definition] = 'Teachers of classes or programs to which students are assigned without standard grade designation.', [SortOrder] = 53.00 WHERE [Code] = 'UngradedTeachers' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityTargetAudience] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefPDActivityTargetAudience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The professional development activity is intended for an audience category not yet defined in CEDS.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityTargetAudience] -SET [Description] = 'Other', [Definition] = 'The professional development activity is intended for an audience category not yet defined in CEDS.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefPDActivityType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPDActivityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityType] WHERE [Code] = 'CollegeCourse') BEGIN INSERT INTO dbo.[RefPDActivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CollegeCourse', 'College Course', 'The type of professional development activity is a College Course.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityType] -SET [Description] = 'College Course', [Definition] = 'The type of professional development activity is a College Course.', [SortOrder] = 2.00 WHERE [Code] = 'CollegeCourse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityType] WHERE [Code] = 'Coaching') BEGIN INSERT INTO dbo.[RefPDActivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Coaching', 'Coaching', 'The type of professional development activity is Coaching.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityType] -SET [Description] = 'Coaching', [Definition] = 'The type of professional development activity is Coaching.', [SortOrder] = 6.00 WHERE [Code] = 'Coaching' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityType] WHERE [Code] = 'Mentoring') BEGIN INSERT INTO dbo.[RefPDActivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Mentoring', 'Mentoring', 'The type of professional development activity is Mentoring.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityType] -SET [Description] = 'Mentoring', [Definition] = 'The type of professional development activity is Mentoring.', [SortOrder] = 8.00 WHERE [Code] = 'Mentoring' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityType] WHERE [Code] = 'Consultation') BEGIN INSERT INTO dbo.[RefPDActivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Consultation', 'Consultation', 'The type of professional development activity is Consultation.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityType] -SET [Description] = 'Consultation', [Definition] = 'The type of professional development activity is Consultation.', [SortOrder] = 10.00 WHERE [Code] = 'Consultation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityType] WHERE [Code] = 'P2P') BEGIN INSERT INTO dbo.[RefPDActivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('P2P', 'Person-to-Person', 'The type of professional development activity is Person-to-Person.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityType] -SET [Description] = 'Person-to-Person', [Definition] = 'The type of professional development activity is Person-to-Person.', [SortOrder] = 12.00 WHERE [Code] = 'P2P' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityType] WHERE [Code] = 'TechnicalAssistance') BEGIN INSERT INTO dbo.[RefPDActivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TechnicalAssistance', 'Technical Assistance', 'The type of professional development activity is Technical Assistance.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityType] -SET [Description] = 'Technical Assistance', [Definition] = 'The type of professional development activity is Technical Assistance.', [SortOrder] = 14.00 WHERE [Code] = 'TechnicalAssistance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityType] WHERE [Code] = 'Advisement') BEGIN INSERT INTO dbo.[RefPDActivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Advisement', 'Advisement', 'The type of professional development activity is Advisement.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityType] -SET [Description] = 'Advisement', [Definition] = 'The type of professional development activity is Advisement.', [SortOrder] = 16.00 WHERE [Code] = 'Advisement' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityType] WHERE [Code] = 'OneTimeWorkshopTraining') BEGIN INSERT INTO dbo.[RefPDActivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OneTimeWorkshopTraining', 'One-time Workshop Training', 'The type of professional development activity is One-time Workshop Training.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityType] -SET [Description] = 'One-time Workshop Training', [Definition] = 'The type of professional development activity is One-time Workshop Training.', [SortOrder] = 18.00 WHERE [Code] = 'OneTimeWorkshopTraining' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityType] WHERE [Code] = 'SeriesOfWorkshopsTraining') BEGIN INSERT INTO dbo.[RefPDActivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SeriesOfWorkshopsTraining', 'Series of Workshops Training', 'The type of professional development activity is Series of Workshops Training.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityType] -SET [Description] = 'Series of Workshops Training', [Definition] = 'The type of professional development activity is Series of Workshops Training.', [SortOrder] = 19.00 WHERE [Code] = 'SeriesOfWorkshopsTraining' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDActivityType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefPDActivityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The type of professional development activity is in a category not yet defined by CEDS.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDActivityType] -SET [Description] = 'Other', [Definition] = 'The type of professional development activity is in a category not yet defined by CEDS.', [SortOrder] = 20.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefPDAudienceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPDAudienceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDAudienceType] WHERE [Code] = 'Individual') BEGIN INSERT INTO dbo.[RefPDAudienceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Individual', 'Individual', 'The professional development activity is intended for delivery to an individual.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDAudienceType] -SET [Description] = 'Individual', [Definition] = 'The professional development activity is intended for delivery to an individual.', [SortOrder] = 1.00 WHERE [Code] = 'Individual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDAudienceType] WHERE [Code] = 'Group') BEGIN INSERT INTO dbo.[RefPDAudienceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Group', 'Group', 'The professional development activity is intended for delivery to a group.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDAudienceType] -SET [Description] = 'Group', [Definition] = 'The professional development activity is intended for delivery to a group.', [SortOrder] = 2.00 WHERE [Code] = 'Group' END -END - -PRINT N'Populate RefPDDeliveryMethod table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPDDeliveryMethod]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDDeliveryMethod] WHERE [Code] = 'Onsite') BEGIN INSERT INTO dbo.[RefPDDeliveryMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Onsite', 'Onsite', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDDeliveryMethod] -SET [Description] = 'Onsite', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'Onsite' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDDeliveryMethod] WHERE [Code] = 'Virtual') BEGIN INSERT INTO dbo.[RefPDDeliveryMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Virtual', 'Virtual classroom', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDDeliveryMethod] -SET [Description] = 'Virtual classroom', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'Virtual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDDeliveryMethod] WHERE [Code] = 'Off-Site') BEGIN INSERT INTO dbo.[RefPDDeliveryMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Off-Site', 'Off-site classroom', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDDeliveryMethod] -SET [Description] = 'Off-site classroom', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = 'Off-Site' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDDeliveryMethod] WHERE [Code] = 'Conference') BEGIN INSERT INTO dbo.[RefPDDeliveryMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Conference', 'Conference', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDDeliveryMethod] -SET [Description] = 'Conference', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = 'Conference' END -END - -PRINT N'Populate RefPDInstructionalDeliveryMode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPDInstructionalDeliveryMode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDInstructionalDeliveryMode] WHERE [Code] = 'Broadcast') BEGIN INSERT INTO dbo.[RefPDInstructionalDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Broadcast', 'Broadcast', 'The primary setting or medium of the professional development delivery is Broadcast.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDInstructionalDeliveryMode] -SET [Description] = 'Broadcast', [Definition] = 'The primary setting or medium of the professional development delivery is Broadcast.', [SortOrder] = 2.00 WHERE [Code] = 'Broadcast' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDInstructionalDeliveryMode] WHERE [Code] = 'Correspondence') BEGIN INSERT INTO dbo.[RefPDInstructionalDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Correspondence', 'Correspondence', 'The primary setting or medium of the professional development delivery is Correspondence.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDInstructionalDeliveryMode] -SET [Description] = 'Correspondence', [Definition] = 'The primary setting or medium of the professional development delivery is Correspondence.', [SortOrder] = 4.00 WHERE [Code] = 'Correspondence' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDInstructionalDeliveryMode] WHERE [Code] = 'EarlyCollege') BEGIN INSERT INTO dbo.[RefPDInstructionalDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EarlyCollege', 'Early College', 'The primary setting or medium of the professional development delivery is Early College.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDInstructionalDeliveryMode] -SET [Description] = 'Early College', [Definition] = 'The primary setting or medium of the professional development delivery is Early College.', [SortOrder] = 6.00 WHERE [Code] = 'EarlyCollege' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDInstructionalDeliveryMode] WHERE [Code] = 'AudioVideo') BEGIN INSERT INTO dbo.[RefPDInstructionalDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AudioVideo', 'Interactive Audio/Video', 'The primary setting or medium of the professional development delivery is Interactive Audio/Video.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDInstructionalDeliveryMode] -SET [Description] = 'Interactive Audio/Video', [Definition] = 'The primary setting or medium of the professional development delivery is Interactive Audio/Video.', [SortOrder] = 8.00 WHERE [Code] = 'AudioVideo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDInstructionalDeliveryMode] WHERE [Code] = 'Conference') BEGIN INSERT INTO dbo.[RefPDInstructionalDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Conference', 'Conference', 'The primary setting or medium of the professional development delivery is Conference.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDInstructionalDeliveryMode] -SET [Description] = 'Conference', [Definition] = 'The primary setting or medium of the professional development delivery is Conference.', [SortOrder] = 10.00 WHERE [Code] = 'Conference' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDInstructionalDeliveryMode] WHERE [Code] = 'Online') BEGIN INSERT INTO dbo.[RefPDInstructionalDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Online', 'Online', 'The primary setting or medium of the professional development delivery is Online.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDInstructionalDeliveryMode] -SET [Description] = 'Online', [Definition] = 'The primary setting or medium of the professional development delivery is Online.', [SortOrder] = 12.00 WHERE [Code] = 'Online' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDInstructionalDeliveryMode] WHERE [Code] = 'IndependentStudy') BEGIN INSERT INTO dbo.[RefPDInstructionalDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IndependentStudy', 'Independent Study', 'The primary setting or medium of the professional development delivery is Independent Study.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDInstructionalDeliveryMode] -SET [Description] = 'Independent Study', [Definition] = 'The primary setting or medium of the professional development delivery is Independent Study.', [SortOrder] = 14.00 WHERE [Code] = 'IndependentStudy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDInstructionalDeliveryMode] WHERE [Code] = 'FaceToFace') BEGIN INSERT INTO dbo.[RefPDInstructionalDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FaceToFace', 'Face To Face', 'The primary setting or medium of the professional development delivery is Face To Face.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDInstructionalDeliveryMode] -SET [Description] = 'Face To Face', [Definition] = 'The primary setting or medium of the professional development delivery is Face To Face.', [SortOrder] = 16.00 WHERE [Code] = 'FaceToFace' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDInstructionalDeliveryMode] WHERE [Code] = 'BlendedLearning') BEGIN INSERT INTO dbo.[RefPDInstructionalDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BlendedLearning', 'Blended Learning', 'The primary setting or medium of the professional development delivery is Blended Learning.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDInstructionalDeliveryMode] -SET [Description] = 'Blended Learning', [Definition] = 'The primary setting or medium of the professional development delivery is Blended Learning.', [SortOrder] = 18.00 WHERE [Code] = 'BlendedLearning' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDInstructionalDeliveryMode] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefPDInstructionalDeliveryMode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The primary setting or medium of the professional development delivery is in a category not yet defined in CEDS.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDInstructionalDeliveryMode] -SET [Description] = 'Other', [Definition] = 'The primary setting or medium of the professional development delivery is in a category not yet defined in CEDS.', [SortOrder] = 20.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefPDSessionStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPDSessionStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDSessionStatus] WHERE [Code] = 'Registering') BEGIN INSERT INTO dbo.[RefPDSessionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Registering', 'Registering', 'The person is registering for the professional development session.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDSessionStatus] -SET [Description] = 'Registering', [Definition] = 'The person is registering for the professional development session.', [SortOrder] = 2.00 WHERE [Code] = 'Registering' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDSessionStatus] WHERE [Code] = 'Completed') BEGIN INSERT INTO dbo.[RefPDSessionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Completed', 'Completed', 'The person completed the professional development session.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDSessionStatus] -SET [Description] = 'Completed', [Definition] = 'The person completed the professional development session.', [SortOrder] = 4.00 WHERE [Code] = 'Completed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPDSessionStatus] WHERE [Code] = 'Cancelled') BEGIN INSERT INTO dbo.[RefPDSessionStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Cancelled', 'Cancelled', 'The professional development session was cancelled.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPDSessionStatus] -SET [Description] = 'Cancelled', [Definition] = 'The professional development session was cancelled.', [SortOrder] = 6.00 WHERE [Code] = 'Cancelled' END -END - -PRINT N'Populate RefPersonalInformationType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPersonalInformationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationType] WHERE [Code] = 'Address') BEGIN INSERT INTO dbo.[RefPersonalInformationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Address', 'Address', 'Address is the type of personal information verified through the Personal Information Verification evidence.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationType] -SET [Description] = 'Address', [Definition] = 'Address is the type of personal information verified through the Personal Information Verification evidence.', [SortOrder] = 1.00 WHERE [Code] = 'Address' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationType] WHERE [Code] = 'Birthdate') BEGIN INSERT INTO dbo.[RefPersonalInformationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Birthdate', 'Birthdate', 'Birthdate is the type of personal information verified through the Personal Information Verification evidence.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationType] -SET [Description] = 'Birthdate', [Definition] = 'Birthdate is the type of personal information verified through the Personal Information Verification evidence.', [SortOrder] = 2.00 WHERE [Code] = 'Birthdate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationType] WHERE [Code] = 'Name') BEGIN INSERT INTO dbo.[RefPersonalInformationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Name', 'Name', 'Name is the type of personal information verified through the Personal Information Verification evidence.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationType] -SET [Description] = 'Name', [Definition] = 'Name is the type of personal information verified through the Personal Information Verification evidence.', [SortOrder] = 3.00 WHERE [Code] = 'Name' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationType] WHERE [Code] = 'TelephoneNumber') BEGIN INSERT INTO dbo.[RefPersonalInformationType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TelephoneNumber', 'Telephone Number', 'Telephone Number is the type of personal information verified through the Personal Information Verification evidence.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationType] -SET [Description] = 'Telephone Number', [Definition] = 'Telephone Number is the type of personal information verified through the Personal Information Verification evidence.', [SortOrder] = 4.00 WHERE [Code] = 'TelephoneNumber' END -END - -PRINT N'Populate RefPersonalInformationVerification table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPersonalInformationVerification]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '01003') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01003', 'Baptismal or church certificate', 'Baptismal or church certificate was used as evidence to verify a person''s name, address, date of birth, etc.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Baptismal or church certificate', [Definition] = 'Baptismal or church certificate was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 1.00 WHERE [Code] = '01003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '01004') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01004', 'Birth certificate', 'Birth certificate was used as evidence to verify a person''s name, address, date of birth, etc.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Birth certificate', [Definition] = 'Birth certificate was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 2.00 WHERE [Code] = '01004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '01012') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01012', 'Driver''s license', 'Driver''s license was used as evidence to verify a person''s name, address, date of birth, etc.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Driver''s license', [Definition] = 'Driver''s license was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 3.00 WHERE [Code] = '01012' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '01005') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01005', 'Entry in family Bible', 'Entry in family Bible was used as evidence to verify a person''s name, address, date of birth, etc.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Entry in family Bible', [Definition] = 'Entry in family Bible was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 4.00 WHERE [Code] = '01005' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '01006') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01006', 'Hospital certificate', 'Hospital certificate was used as evidence to verify a person''s name, address, date of birth, etc.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Hospital certificate', [Definition] = 'Hospital certificate was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 5.00 WHERE [Code] = '01006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '01013') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01013', 'Immigration document/visa', 'Immigration document/visa was used as evidence to verify a person''s name, address, date of birth, etc.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Immigration document/visa', [Definition] = 'Immigration document/visa was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 6.00 WHERE [Code] = '01013' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '02382') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02382', 'Life insurance policy', 'Life insurance policy was used as evidence to verify a person''s name, address, date of birth, etc.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Life insurance policy', [Definition] = 'Life insurance policy was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 7.00 WHERE [Code] = '02382' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Evidence used to verify a person''s name, address, date of birth, etc. is in a category not yet defined in CEDS.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Other', [Definition] = 'Evidence used to verify a person''s name, address, date of birth, etc. is in a category not yet defined in CEDS.', [SortOrder] = 8.00 WHERE [Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '03424') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03424', 'Other non-official document', 'Other non-official document was used as evidence to verify a person''s name, address, date of birth, etc.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Other non-official document', [Definition] = 'Other non-official document was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 9.00 WHERE [Code] = '03424' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '03423') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03423', 'Other official document', 'Other official document was used as evidence to verify a person''s name, address, date of birth, etc.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Other official document', [Definition] = 'Other official document was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 10.00 WHERE [Code] = '03423' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '01007') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01007', 'Parent''s affidavit', 'Parent''s affidavit was used as evidence to verify a person''s name, address, date of birth, etc.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Parent''s affidavit', [Definition] = 'Parent''s affidavit was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 11.00 WHERE [Code] = '01007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '01008') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01008', 'Passport', 'Passport was used as evidence to verify a person''s name, address, date of birth, etc.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Passport', [Definition] = 'Passport was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 12.00 WHERE [Code] = '01008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '01009') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01009', 'Physician''s certificate', 'Physician''s certificate was used as evidence to verify a person''s name, address, date of birth, etc.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Physician''s certificate', [Definition] = 'Physician''s certificate was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 13.00 WHERE [Code] = '01009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '01010') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01010', 'Previously verified school records', 'Previously verified school records was used as evidence to verify a person''s name, address, date of birth, etc.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Previously verified school records', [Definition] = 'Previously verified school records was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 14.00 WHERE [Code] = '01010' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '01011') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01011', 'State-issued ID', 'State-issued ID was used as evidence to verify a person''s name, address, date of birth, etc.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'State-issued ID', [Definition] = 'State-issued ID was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 15.00 WHERE [Code] = '01011' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '73095') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73095', 'Approved Transfer', 'An approved student transfer in the student information system was used as evidence to verify a person''s name, address, date of birth, etc.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Approved Transfer', [Definition] = 'An approved student transfer in the student information system was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 16.00 WHERE [Code] = '73095' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '73102') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73102', 'Birth Registration Form', 'A birth registration form was used as evidence to verify a person''s name, address, date of birth, etc.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Birth Registration Form', [Definition] = 'A birth registration form was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 17.00 WHERE [Code] = '73102' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '73097') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73097', 'Citizenship Card', 'A citizenship card was used as evidence to verify a person''s name, address, date of birth, etc.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Citizenship Card', [Definition] = 'A citizenship card was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 18.00 WHERE [Code] = '73097' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '73100') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73100', 'Lease Agreement', 'A lease agreement was used as evidence to verify a person''s name, address, date of birth, etc.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Lease Agreement', [Definition] = 'A lease agreement was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 19.00 WHERE [Code] = '73100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '73093') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73093', 'Non-Parent Affidavit of Residence', 'A non-parent''s affidavit of residency was used as evidence to verify a person''s name, address, date of birth, etc.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Non-Parent Affidavit of Residence', [Definition] = 'A non-parent''s affidavit of residency was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 20.00 WHERE [Code] = '73093' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '73094') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73094', 'Parent''s Affidavit of Residence', 'A parent/guardian affidavit of residency was used as evidence to verify a person''s name, address, date of birth, etc.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Parent''s Affidavit of Residence', [Definition] = 'A parent/guardian affidavit of residency was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 21.00 WHERE [Code] = '73094' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '73101') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73101', 'Purchase Agreement', 'A purchase agreement was used as evidence to verify a person''s name, address, date of birth, etc.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Purchase Agreement', [Definition] = 'A purchase agreement was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 22.00 WHERE [Code] = '73101' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '73092') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73092', 'Residence Verification Form', 'A form verifying residency was used as evidence to verify a person''s name, address, date of birth, etc.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Residence Verification Form', [Definition] = 'A form verifying residency was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 23.00 WHERE [Code] = '73092' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '73098') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73098', 'Tax Bill', 'A tax bill was used as evidence to verify a person''s name, address, date of birth, etc.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Tax Bill', [Definition] = 'A tax bill was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 24.00 WHERE [Code] = '73098' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '73091') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73091', 'Telephone Bill', 'A telephone bill was used as evidence to verify a person''s name, address, date of birth, etc.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Telephone Bill', [Definition] = 'A telephone bill was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 25.00 WHERE [Code] = '73091' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '73099') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73099', 'Utility Bill', 'A utility bill was used as evidence to verify a person''s name, address, date of birth, etc.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Utility Bill', [Definition] = 'A utility bill was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 26.00 WHERE [Code] = '73099' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonalInformationVerification] WHERE [Code] = '73096') BEGIN INSERT INTO dbo.[RefPersonalInformationVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73096', 'Water Bill', 'A water bill was used as evidence to verify a person''s name, address, date of birth, etc.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonalInformationVerification] -SET [Description] = 'Water Bill', [Definition] = 'A water bill was used as evidence to verify a person''s name, address, date of birth, etc.', [SortOrder] = 27.00 WHERE [Code] = '73096' END -END - -PRINT N'Populate RefPersonRelationshipType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPersonRelationshipType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Aunt') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Aunt', 'Aunt', 'The person is the related person''s Aunt.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Aunt', [Definition] = 'The person is the related person''s Aunt.', [SortOrder] = 6.00 WHERE [Code] = 'Aunt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Brother') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Brother', 'Brother', 'The person is the related person''s Brother.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Brother', [Definition] = 'The person is the related person''s Brother.', [SortOrder] = 8.00 WHERE [Code] = 'Brother' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'BrotherInLaw') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BrotherInLaw', 'Brother-in-law', 'The person is the related person''s Brother-in-law.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Brother-in-law', [Definition] = 'The person is the related person''s Brother-in-law.', [SortOrder] = 10.00 WHERE [Code] = 'BrotherInLaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'CourtAppointedGuardian') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CourtAppointedGuardian', 'Court appointed guardian', 'The person is the related person''s court appointed guardian.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Court appointed guardian', [Definition] = 'The person is the related person''s court appointed guardian.', [SortOrder] = 11.00 WHERE [Code] = 'CourtAppointedGuardian' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Daughter') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Daughter', 'Daughter', 'The person is the related person''s Daughter.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Daughter', [Definition] = 'The person is the related person''s Daughter.', [SortOrder] = 13.00 WHERE [Code] = 'Daughter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'DaughterInLaw') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DaughterInLaw', 'Daughter-in-law', 'The person is the related person''s Aunt.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Daughter-in-law', [Definition] = 'The person is the related person''s Aunt.', [SortOrder] = 14.00 WHERE [Code] = 'DaughterInLaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Employer') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Employer', 'Employer', 'The person is the related person''s Employer.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Employer', [Definition] = 'The person is the related person''s Employer.', [SortOrder] = 16.00 WHERE [Code] = 'Employer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Father') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Father', 'Father', 'The person is the related person''s Father.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Father', [Definition] = 'The person is the related person''s Father.', [SortOrder] = 17.00 WHERE [Code] = 'Father' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'FathersSignificantOther') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FathersSignificantOther', 'Father''s significant other', 'The person is the significant other of the related person''s Father.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Father''s significant other', [Definition] = 'The person is the significant other of the related person''s Father.', [SortOrder] = 18.00 WHERE [Code] = 'FathersSignificantOther' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'FathersCivilPartner') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FathersCivilPartner', 'Father''s civil partner', 'The person is a legal partner of the related person''s father, established by a civil union other than marriage.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Father''s civil partner', [Definition] = 'The person is a legal partner of the related person''s father, established by a civil union other than marriage.', [SortOrder] = 19.00 WHERE [Code] = 'FathersCivilPartner' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'FatherInLaw') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FatherInLaw', 'Father-in-law', 'The person is the father of the related person''s spouse.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Father-in-law', [Definition] = 'The person is the father of the related person''s spouse.', [SortOrder] = 22.00 WHERE [Code] = 'FatherInLaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Fiance') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Fiance', 'Fiance', 'The person is a man who is engaged to be married to the related person.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Fiance', [Definition] = 'The person is a man who is engaged to be married to the related person.', [SortOrder] = 23.00 WHERE [Code] = 'Fiance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Fiancee') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Fiancee', 'Fiancee', 'The person is a woman who is engaged to be married to the related person.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Fiancee', [Definition] = 'The person is a woman who is engaged to be married to the related person.', [SortOrder] = 24.00 WHERE [Code] = 'Fiancee' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Friend') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Friend', 'Friend', 'The person is the related person''s Friend.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Friend', [Definition] = 'The person is the related person''s Friend.', [SortOrder] = 30.00 WHERE [Code] = 'Friend' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Grandfather') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Grandfather', 'Grandfather', 'The person is the related person''s Grandfather.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Grandfather', [Definition] = 'The person is the related person''s Grandfather.', [SortOrder] = 32.00 WHERE [Code] = 'Grandfather' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Grandmother') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Grandmother', 'Grandmother', 'The person is the related person''s Grandmother.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Grandmother', [Definition] = 'The person is the related person''s Grandmother.', [SortOrder] = 33.00 WHERE [Code] = 'Grandmother' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Husband') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Husband', 'Husband', 'The person is the related person''s Husband.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Husband', [Definition] = 'The person is the related person''s Husband.', [SortOrder] = 37.00 WHERE [Code] = 'Husband' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'MothersSignificantOther') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MothersSignificantOther', 'Mother''s significant other', 'The person is the significant other of the related person''s Mother.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Mother''s significant other', [Definition] = 'The person is the significant other of the related person''s Mother.', [SortOrder] = 41.00 WHERE [Code] = 'MothersSignificantOther' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Mother') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Mother', 'Mother', 'The person is the related person''s Mother', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Mother', [Definition] = 'The person is the related person''s Mother', [SortOrder] = 43.00 WHERE [Code] = 'Mother' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'MothersCivilPartner') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MothersCivilPartner', 'Mother''s civil partner', 'The person is a legal partner of the related person''s mother, established by a civil union other than marriage.', 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Mother''s civil partner', [Definition] = 'The person is a legal partner of the related person''s mother, established by a civil union other than marriage.', [SortOrder] = 44.00 WHERE [Code] = 'MothersCivilPartner' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Nephew') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Nephew', 'Nephew', 'The person is the related person''s Nephew.', 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Nephew', [Definition] = 'The person is the related person''s Nephew.', [SortOrder] = 46.00 WHERE [Code] = 'Nephew' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Niece') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Niece', 'Niece', 'The person is the related person''s Niece.', 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Niece', [Definition] = 'The person is the related person''s Niece.', [SortOrder] = 47.00 WHERE [Code] = 'Niece' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The person is related to the related person in a way not represented by other standard options.', 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Other', [Definition] = 'The person is related to the related person in a way not represented by other standard options.', [SortOrder] = 49.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'SignificantOther') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SignificantOther', 'Significant other', 'The person is the Significant other of the related person.', 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Significant other', [Definition] = 'The person is the Significant other of the related person.', [SortOrder] = 53.00 WHERE [Code] = 'SignificantOther' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Sister') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Sister', 'Sister', 'The person is the related person''s Sister.', 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Sister', [Definition] = 'The person is the related person''s Sister.', [SortOrder] = 55.00 WHERE [Code] = 'Sister' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Son') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Son', 'Son', 'The person is the related person''s Son.', 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Son', [Definition] = 'The person is the related person''s Son.', [SortOrder] = 58.00 WHERE [Code] = 'Son' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'The person is the related person''s Unknown.', 61.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Unknown', [Definition] = 'The person is the related person''s Unknown.', [SortOrder] = 61.00 WHERE [Code] = 'Unknown' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Uncle') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Uncle', 'Uncle', 'The person is the related person''s Uncle.', 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Uncle', [Definition] = 'The person is the related person''s Uncle.', [SortOrder] = 62.00 WHERE [Code] = 'Uncle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Ward') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Ward', 'Ward', 'The person is the related person''s Ward.', 63.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Ward', [Definition] = 'The person is the related person''s Ward.', [SortOrder] = 63.00 WHERE [Code] = 'Ward' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Wife') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Wife', 'Wife', 'The person is the related person''s Wife.', 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Wife', [Definition] = 'The person is the related person''s Wife.', [SortOrder] = 64.00 WHERE [Code] = 'Wife' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'AdoptedDaughter') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdoptedDaughter', 'Adopted Daughter', 'The person is the related person''s Adopted Daughter.', 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Adopted Daughter', [Definition] = 'The person is the related person''s Adopted Daughter.', [SortOrder] = 65.00 WHERE [Code] = 'AdoptedDaughter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'AdoptedSon') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdoptedSon', 'Adopted son', 'The person is the related person''s Adopted son.', 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Adopted son', [Definition] = 'The person is the related person''s Adopted son.', [SortOrder] = 66.00 WHERE [Code] = 'AdoptedSon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'AdoptiveParent') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdoptiveParent', 'Adoptive parent', 'The person is the related person''s Adoptive parent.', 67.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Adoptive parent', [Definition] = 'The person is the related person''s Adoptive parent.', [SortOrder] = 67.00 WHERE [Code] = 'AdoptiveParent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Advisor') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Advisor', 'Advisor', 'The person is the related person''s Advisor.', 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Advisor', [Definition] = 'The person is the related person''s Advisor.', [SortOrder] = 68.00 WHERE [Code] = 'Advisor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'AgencyRepresentative') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AgencyRepresentative', 'Agency representative', 'The person is the related person''s Agency representative.', 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Agency representative', [Definition] = 'The person is the related person''s Agency representative.', [SortOrder] = 69.00 WHERE [Code] = 'AgencyRepresentative' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Cousin') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Cousin', 'Cousin', 'The person is the related person''s Cousin.', 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Cousin', [Definition] = 'The person is the related person''s Cousin.', [SortOrder] = 70.00 WHERE [Code] = 'Cousin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Dependent') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Dependent', 'Dependent', 'The person is the related person''s Dependent.', 71.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Dependent', [Definition] = 'The person is the related person''s Dependent.', [SortOrder] = 71.00 WHERE [Code] = 'Dependent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'FamilyMember') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FamilyMember', 'Family member', 'The person is the related person''s Family member.', 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Family member', [Definition] = 'The person is the related person''s Family member.', [SortOrder] = 72.00 WHERE [Code] = 'FamilyMember' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'FormerHusband') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FormerHusband', 'Former husband', 'The person is the related person''s Former husband.', 73.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Former husband', [Definition] = 'The person is the related person''s Former husband.', [SortOrder] = 73.00 WHERE [Code] = 'FormerHusband' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'FormerWife') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FormerWife', 'Former wife', 'The person is the related person''s Former wife.', 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Former wife', [Definition] = 'The person is the related person''s Former wife.', [SortOrder] = 74.00 WHERE [Code] = 'FormerWife' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'FosterDaughter') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FosterDaughter', 'Foster daughter', 'The person is the related person''s Foster daughter.', 75.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Foster daughter', [Definition] = 'The person is the related person''s Foster daughter.', [SortOrder] = 75.00 WHERE [Code] = 'FosterDaughter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'FosterFather') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FosterFather', 'Foster father', 'The person is the related person''s Foster father.', 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Foster father', [Definition] = 'The person is the related person''s Foster father.', [SortOrder] = 76.00 WHERE [Code] = 'FosterFather' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'FosterMother') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FosterMother', 'Foster mother', 'The person is the related person''s Foster mother.', 77.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Foster mother', [Definition] = 'The person is the related person''s Foster mother.', [SortOrder] = 77.00 WHERE [Code] = 'FosterMother' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'FosterParent') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FosterParent', 'Foster Parent', 'The person is the related person''s Foster Parent.', 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Foster Parent', [Definition] = 'The person is the related person''s Foster Parent.', [SortOrder] = 78.00 WHERE [Code] = 'FosterParent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'FosterSon') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FosterSon', 'Foster son', 'The person is the related person''s Foster son.', 79.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Foster son', [Definition] = 'The person is the related person''s Foster son.', [SortOrder] = 79.00 WHERE [Code] = 'FosterSon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Godparent') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Godparent', 'Godparent', 'The person is the related person''s Godparent.', 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Godparent', [Definition] = 'The person is the related person''s Godparent.', [SortOrder] = 80.00 WHERE [Code] = 'Godparent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Granddaughter') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Granddaughter', 'Granddaughter', 'The person is the related person''s Granddaughter.', 81.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Granddaughter', [Definition] = 'The person is the related person''s Granddaughter.', [SortOrder] = 81.00 WHERE [Code] = 'Granddaughter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Grandparent') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Grandparent', 'Grandparent', 'The person is the related person''s Grandparent.', 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Grandparent', [Definition] = 'The person is the related person''s Grandparent.', [SortOrder] = 82.00 WHERE [Code] = 'Grandparent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Grandson') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Grandson', 'Grandson', 'The person is the related person''s Grandson.', 83.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Grandson', [Definition] = 'The person is the related person''s Grandson.', [SortOrder] = 83.00 WHERE [Code] = 'Grandson' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'GreatAunt') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GreatAunt', 'Great aunt', 'The person is the related person''s Great aunt.', 84.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Great aunt', [Definition] = 'The person is the related person''s Great aunt.', [SortOrder] = 84.00 WHERE [Code] = 'GreatAunt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'GreatGrandparent') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GreatGrandparent', 'Great grandparent', 'The person is the related person''s Great grandparent.', 85.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Great grandparent', [Definition] = 'The person is the related person''s Great grandparent.', [SortOrder] = 85.00 WHERE [Code] = 'GreatGrandparent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'GreatUncle') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GreatUncle', 'Great uncle', 'The person is the related person''s Great uncle.', 86.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Great uncle', [Definition] = 'The person is the related person''s Great uncle.', [SortOrder] = 86.00 WHERE [Code] = 'GreatUncle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'HalfBrother') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HalfBrother', 'Half-brother', 'The person is the related person''s Half-brother.', 87.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Half-brother', [Definition] = 'The person is the related person''s Half-brother.', [SortOrder] = 87.00 WHERE [Code] = 'HalfBrother' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'HalfSister') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HalfSister', 'Half-sister', 'The person is the related person''s Half-sister.', 88.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Half-sister', [Definition] = 'The person is the related person''s Half-sister.', [SortOrder] = 88.00 WHERE [Code] = 'HalfSister' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'LifePartner') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LifePartner', 'Life partner', 'The person is the related person''s Life partner.', 89.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Life partner', [Definition] = 'The person is the related person''s Life partner.', [SortOrder] = 89.00 WHERE [Code] = 'LifePartner' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'LifePartnerOfParent') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LifePartnerOfParent', 'Life partner of parent', 'The person is the related person''s Life partner of parent.', 90.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Life partner of parent', [Definition] = 'The person is the related person''s Life partner of parent.', [SortOrder] = 90.00 WHERE [Code] = 'LifePartnerOfParent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'MotherInLaw') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MotherInLaw', 'Mother-in-law', 'The person is the related person''s Mother-in-law', 91.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Mother-in-law', [Definition] = 'The person is the related person''s Mother-in-law', [SortOrder] = 91.00 WHERE [Code] = 'MotherInLaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Neighbor') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Neighbor', 'Neighbor', 'The person is the related person''s Neighbor.', 92.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Neighbor', [Definition] = 'The person is the related person''s Neighbor.', [SortOrder] = 92.00 WHERE [Code] = 'Neighbor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Parent') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Parent', 'Parent', 'The person is the related person''s Parent.', 93.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Parent', [Definition] = 'The person is the related person''s Parent.', [SortOrder] = 93.00 WHERE [Code] = 'Parent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Partner') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Partner', 'Partner', 'The person is the related person''s Partner.', 94.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Partner', [Definition] = 'The person is the related person''s Partner.', [SortOrder] = 94.00 WHERE [Code] = 'Partner' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'PartnerOfParent') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartnerOfParent', 'Partner of parent', 'The person is the related person''s Partner of parent.', 95.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Partner of parent', [Definition] = 'The person is the related person''s Partner of parent.', [SortOrder] = 95.00 WHERE [Code] = 'PartnerOfParent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'ProbationOfficer') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ProbationOfficer', 'Probation officer', 'The person is the related person''s Probation officer.', 96.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Probation officer', [Definition] = 'The person is the related person''s Probation officer.', [SortOrder] = 96.00 WHERE [Code] = 'ProbationOfficer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Relative') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Relative', 'Relative', 'The person is the related person''s Relative.', 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Relative', [Definition] = 'The person is the related person''s Relative.', [SortOrder] = 97.00 WHERE [Code] = 'Relative' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Sibling') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Sibling', 'Sibling', 'The person is the related person''s Sibling.', 98.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Sibling', [Definition] = 'The person is the related person''s Sibling.', [SortOrder] = 98.00 WHERE [Code] = 'Sibling' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'SisterInLaw') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SisterInLaw', 'Sister-in-law', 'The person is the related person''s Sister-in-law', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Sister-in-law', [Definition] = 'The person is the related person''s Sister-in-law', [SortOrder] = 99.00 WHERE [Code] = 'SisterInLaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'SonInLaw') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SonInLaw', 'Son-in-law', 'The person is the related person''s Son-in-law', 100.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Son-in-law', [Definition] = 'The person is the related person''s Son-in-law', [SortOrder] = 100.00 WHERE [Code] = 'SonInLaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Spouse') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Spouse', 'Spouse', 'The person is the related person''s Spouse.', 101.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Spouse', [Definition] = 'The person is the related person''s Spouse.', [SortOrder] = 101.00 WHERE [Code] = 'Spouse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Stepbrother') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Stepbrother', 'Stepbrother', 'The person is the related person''s Stepbrother.', 102.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Stepbrother', [Definition] = 'The person is the related person''s Stepbrother.', [SortOrder] = 102.00 WHERE [Code] = 'Stepbrother' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Stepdaughter') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Stepdaughter', 'Stepdaughter', 'The person is the related person''s Stepdaughter.', 103.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Stepdaughter', [Definition] = 'The person is the related person''s Stepdaughter.', [SortOrder] = 103.00 WHERE [Code] = 'Stepdaughter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Stepfather') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Stepfather', 'Stepfather', 'The person is the related person''s Stepfather.', 104.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Stepfather', [Definition] = 'The person is the related person''s Stepfather.', [SortOrder] = 104.00 WHERE [Code] = 'Stepfather' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Stepmother') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Stepmother', 'Stepmother', 'The person is the related person''s Stepmother.', 105.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Stepmother', [Definition] = 'The person is the related person''s Stepmother.', [SortOrder] = 105.00 WHERE [Code] = 'Stepmother' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Stepparent') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Stepparent', 'Stepparent', 'The person is the related person''s Stepparent.', 106.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Stepparent', [Definition] = 'The person is the related person''s Stepparent.', [SortOrder] = 106.00 WHERE [Code] = 'Stepparent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Stepsister') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Stepsister', 'Stepsister', 'The person is the related person''s Stepsister.', 107.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Stepsister', [Definition] = 'The person is the related person''s Stepsister.', [SortOrder] = 107.00 WHERE [Code] = 'Stepsister' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonRelationshipType] WHERE [Code] = 'Stepson') BEGIN INSERT INTO dbo.[RefPersonRelationshipType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Stepson', 'Stepson', 'The person is the related person''s Stepson.', 108.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonRelationshipType] -SET [Description] = 'Stepson', [Definition] = 'The person is the related person''s Stepson.', [SortOrder] = 108.00 WHERE [Code] = 'Stepson' END -END - -PRINT N'Populate RefPersonTelephoneNumberType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPersonTelephoneNumberType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonTelephoneNumberType] WHERE [Code] = 'Home') BEGIN INSERT INTO dbo.[RefPersonTelephoneNumberType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Home', 'Home phone number', 'Home phone number is the type of communication number listed for a person.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonTelephoneNumberType] -SET [Description] = 'Home phone number', [Definition] = 'Home phone number is the type of communication number listed for a person.', [SortOrder] = 1.00 WHERE [Code] = 'Home' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonTelephoneNumberType] WHERE [Code] = 'Work') BEGIN INSERT INTO dbo.[RefPersonTelephoneNumberType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Work', 'Work phone number', 'Work phone number is the type of communication number listed for a person.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonTelephoneNumberType] -SET [Description] = 'Work phone number', [Definition] = 'Work phone number is the type of communication number listed for a person.', [SortOrder] = 3.00 WHERE [Code] = 'Work' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonTelephoneNumberType] WHERE [Code] = 'Mobile') BEGIN INSERT INTO dbo.[RefPersonTelephoneNumberType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Mobile', 'Mobile phone number', 'Mobile phone number is the type of communication number listed for a person.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonTelephoneNumberType] -SET [Description] = 'Mobile phone number', [Definition] = 'Mobile phone number is the type of communication number listed for a person.', [SortOrder] = 5.00 WHERE [Code] = 'Mobile' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonTelephoneNumberType] WHERE [Code] = 'Fax') BEGIN INSERT INTO dbo.[RefPersonTelephoneNumberType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Fax', 'Fax number', 'Fax number is the type of communication number listed for a person.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonTelephoneNumberType] -SET [Description] = 'Fax number', [Definition] = 'Fax number is the type of communication number listed for a person.', [SortOrder] = 7.00 WHERE [Code] = 'Fax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonTelephoneNumberType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefPersonTelephoneNumberType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The type of communication number listed for a person is in a category not yet defined in CEDS.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonTelephoneNumberType] -SET [Description] = 'Other', [Definition] = 'The type of communication number listed for a person is in a category not yet defined in CEDS.', [SortOrder] = 9.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefPESCAwardLevelType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPESCAwardLevelType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '1.1') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1.1', 'Certificate of completion', 'Certificate of completion', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Certificate of completion', [Definition] = 'Certificate of completion', [SortOrder] = NULL WHERE [Code] = '1.1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '1.2') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1.2', 'Certificate of proficiency', 'Certificate of proficiency', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Certificate of proficiency', [Definition] = 'Certificate of proficiency', [SortOrder] = NULL WHERE [Code] = '1.2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '2.0') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2.0', 'Certificate', 'Certificate', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Certificate', [Definition] = 'Certificate', [SortOrder] = NULL WHERE [Code] = '2.0' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '2.1') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2.1', 'Postsecondary Certificate Or Diploma (less than one year)', 'Postsecondary Certificate Or Diploma (less than one year)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Postsecondary Certificate Or Diploma (less than one year)', [Definition] = 'Postsecondary Certificate Or Diploma (less than one year)', [SortOrder] = NULL WHERE [Code] = '2.1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '2.2') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2.2', 'Postsecondary Certificate Or Diploma (one year or more but less than four years)', 'Postsecondary Certificate Or Diploma (one year or more but less than four years)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Postsecondary Certificate Or Diploma (one year or more but less than four years)', [Definition] = 'Postsecondary Certificate Or Diploma (one year or more but less than four years)', [SortOrder] = NULL WHERE [Code] = '2.2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '2.3') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2.3', 'Associate Degree (e.g., Associate In Arts, Associate In Science)', 'Associate Degree (e.g., Associate In Arts, Associate In Science)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Associate Degree (e.g., Associate In Arts, Associate In Science)', [Definition] = 'Associate Degree (e.g., Associate In Arts, Associate In Science)', [SortOrder] = NULL WHERE [Code] = '2.3' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '2.4') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2.4', 'Baccalaureate Degree', 'Baccalaureate Degree', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Baccalaureate Degree', [Definition] = 'Baccalaureate Degree', [SortOrder] = NULL WHERE [Code] = '2.4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '2.5') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2.5', 'Baccalaureate (Honors) Degree', 'Baccalaureate (Honors) Degree', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Baccalaureate (Honors) Degree', [Definition] = 'Baccalaureate (Honors) Degree', [SortOrder] = NULL WHERE [Code] = '2.5' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '2.6') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2.6', 'Postsecondary Certificate Or Diploma (one year or more but less than two years)', 'Postsecondary Certificate Or Diploma (one year or more but less than two years)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Postsecondary Certificate Or Diploma (one year or more but less than two years)', [Definition] = 'Postsecondary Certificate Or Diploma (one year or more but less than two years)', [SortOrder] = NULL WHERE [Code] = '2.6' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '2.7') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2.7', 'Postsecondary Certificate Or Diploma (two years or more but less than four years)', 'Postsecondary Certificate Or Diploma (two years or more but less than four years)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Postsecondary Certificate Or Diploma (two years or more but less than four years)', [Definition] = 'Postsecondary Certificate Or Diploma (two years or more but less than four years)', [SortOrder] = NULL WHERE [Code] = '2.7' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '3.1') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3.1', 'First Professional Degree', 'First Professional Degree', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'First Professional Degree', [Definition] = 'First Professional Degree', [SortOrder] = NULL WHERE [Code] = '3.1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '3.2') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3.2', 'Post-Professional Degree', 'Post-Professional Degree', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Post-Professional Degree', [Definition] = 'Post-Professional Degree', [SortOrder] = NULL WHERE [Code] = '3.2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '4.1') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4.1', 'Graduate Certificate', 'Graduate Certificate', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Graduate Certificate', [Definition] = 'Graduate Certificate', [SortOrder] = NULL WHERE [Code] = '4.1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '4.2') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4.2', 'Master''s Degree', 'Master''s Degree', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Master''s Degree', [Definition] = 'Master''s Degree', [SortOrder] = NULL WHERE [Code] = '4.2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '4.3') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4.3', 'Intermediate Graduate Degree', 'Intermediate Graduate Degree', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Intermediate Graduate Degree', [Definition] = 'Intermediate Graduate Degree', [SortOrder] = NULL WHERE [Code] = '4.3' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '4.4') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4.4', 'Doctoral Degree', 'Doctoral Degree', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Doctoral Degree', [Definition] = 'Doctoral Degree', [SortOrder] = NULL WHERE [Code] = '4.4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '4.5') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4.5', 'Post-doctoral Award', 'Post-doctoral Award', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Post-doctoral Award', [Definition] = 'Post-doctoral Award', [SortOrder] = NULL WHERE [Code] = '4.5' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'B17') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B17', 'Did not complete secondary school', 'Did not complete secondary school', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Did not complete secondary school', [Definition] = 'Did not complete secondary school', [SortOrder] = NULL WHERE [Code] = 'B17' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'B18') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B18', 'Standard High School Diploma which may or may not include an exit test', 'Standard High School Diploma which may or may not include an exit test', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Standard High School Diploma which may or may not include an exit test', [Definition] = 'Standard High School Diploma which may or may not include an exit test', [SortOrder] = NULL WHERE [Code] = 'B18' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'B19') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B19', 'Advanced or honors diploma', 'Advanced or honors diploma', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Advanced or honors diploma', [Definition] = 'Advanced or honors diploma', [SortOrder] = NULL WHERE [Code] = 'B19' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'B20') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B20', 'Vocational diploma', 'Vocational diploma', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Vocational diploma', [Definition] = 'Vocational diploma', [SortOrder] = NULL WHERE [Code] = 'B20' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'B21') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B21', 'Special Education Diploma normally for students with a disability', 'Special Education Diploma normally for students with a disability', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Special Education Diploma normally for students with a disability', [Definition] = 'Special Education Diploma normally for students with a disability', [SortOrder] = NULL WHERE [Code] = 'B21' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'B22') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B22', 'Certificate of completion or attendance', 'Certificate of completion or attendance', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Certificate of completion or attendance', [Definition] = 'Certificate of completion or attendance', [SortOrder] = NULL WHERE [Code] = 'B22' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'B23') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B23', 'Special certificate of completion or attendance', 'Special certificate of completion or attendance', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Special certificate of completion or attendance', [Definition] = 'Special certificate of completion or attendance', [SortOrder] = NULL WHERE [Code] = 'B23' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'B24') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B24', 'General Education Development Test Diploma (GED)', 'General Education Development Test Diploma (GED)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'General Education Development Test Diploma (GED)', [Definition] = 'General Education Development Test Diploma (GED)', [SortOrder] = NULL WHERE [Code] = 'B24' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'B25') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B25', 'Other high school equivalency diploma', 'Other high school equivalency diploma', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Other high school equivalency diploma', [Definition] = 'Other high school equivalency diploma', [SortOrder] = NULL WHERE [Code] = 'B25' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'B26') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B26', 'International diploma or certificate (such as International Baccalaureate)', 'International diploma or certificate (such as International Baccalaureate)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'International diploma or certificate (such as International Baccalaureate)', [Definition] = 'International diploma or certificate (such as International Baccalaureate)', [SortOrder] = NULL WHERE [Code] = 'B26' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'B27') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B27', 'Standard High School Diploma with only 3 year curriculum', 'Standard High School Diploma with only 3 year curriculum', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Standard High School Diploma with only 3 year curriculum', [Definition] = 'Standard High School Diploma with only 3 year curriculum', [SortOrder] = NULL WHERE [Code] = 'B27' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'B28') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B28', 'Met all graduation requirements except for required exit test', 'Met all graduation requirements except for required exit test', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Met all graduation requirements except for required exit test', [Definition] = 'Met all graduation requirements except for required exit test', [SortOrder] = NULL WHERE [Code] = 'B28' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'IPEDS1') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IPEDS1', 'Postsecondary award, certificate, or diploma of less than one academic year (less than 900 contact or clock hours)', 'Postsecondary award, certificate, or diploma of less than one academic year (less than 900 contact or clock hours)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Postsecondary award, certificate, or diploma of less than one academic year (less than 900 contact or clock hours)', [Definition] = 'Postsecondary award, certificate, or diploma of less than one academic year (less than 900 contact or clock hours)', [SortOrder] = NULL WHERE [Code] = 'IPEDS1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'IPEDS10') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IPEDS10', 'First-Professional Degree', 'First-Professional Degree', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'First-Professional Degree', [Definition] = 'First-Professional Degree', [SortOrder] = NULL WHERE [Code] = 'IPEDS10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'IPEDS11') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IPEDS11', 'First-Professional Certificate (Post-Degree)', 'First-Professional Certificate (Post-Degree)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'First-Professional Certificate (Post-Degree)', [Definition] = 'First-Professional Certificate (Post-Degree)', [SortOrder] = NULL WHERE [Code] = 'IPEDS11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'IPEDS17') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IPEDS17', 'Doctor''s degree - research/scholarship', 'Doctor''s degree - research/scholarship', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Doctor''s degree - research/scholarship', [Definition] = 'Doctor''s degree - research/scholarship', [SortOrder] = NULL WHERE [Code] = 'IPEDS17' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'IPEDS18') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IPEDS18', 'Doctor''s degree - professional practice', 'Doctor''s degree - professional practice', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Doctor''s degree - professional practice', [Definition] = 'Doctor''s degree - professional practice', [SortOrder] = NULL WHERE [Code] = 'IPEDS18' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'IPEDS19') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IPEDS19', 'Doctor''s degree - other Award Levels', 'Doctor''s degree - other Award Levels', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Doctor''s degree - other Award Levels', [Definition] = 'Doctor''s degree - other Award Levels', [SortOrder] = NULL WHERE [Code] = 'IPEDS19' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'IPEDS2') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IPEDS2', 'Postsecondary award, certificate, or diploma of at least one but less than two academic years (at least 900 but less than 1800 contact or clock hours)', 'Postsecondary award, certificate, or diploma of at least one but less than two academic years (at least 900 but less than 1800 contact or clock hours)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Postsecondary award, certificate, or diploma of at least one but less than two academic years (at least 900 but less than 1800 contact or clock hours)', [Definition] = 'Postsecondary award, certificate, or diploma of at least one but less than two academic years (at least 900 but less than 1800 contact or clock hours)', [SortOrder] = NULL WHERE [Code] = 'IPEDS2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'IPEDS3') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IPEDS3', 'Associate''s Degree', 'Associate''s Degree', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Associate''s Degree', [Definition] = 'Associate''s Degree', [SortOrder] = NULL WHERE [Code] = 'IPEDS3' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'IPEDS4') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IPEDS4', 'Postsecondary award, certificate, or diploma of at least two but less than four academic years (at least 1800 contact or clock hours)', 'Postsecondary award, certificate, or diploma of at least two but less than four academic years (at least 1800 contact or clock hours)', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Postsecondary award, certificate, or diploma of at least two but less than four academic years (at least 1800 contact or clock hours)', [Definition] = 'Postsecondary award, certificate, or diploma of at least two but less than four academic years (at least 1800 contact or clock hours)', [SortOrder] = NULL WHERE [Code] = 'IPEDS4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'IPEDS5') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IPEDS5', 'Bachelor''s Degree or equivalent', 'Bachelor''s Degree or equivalent', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Bachelor''s Degree or equivalent', [Definition] = 'Bachelor''s Degree or equivalent', [SortOrder] = NULL WHERE [Code] = 'IPEDS5' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'IPEDS6') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IPEDS6', 'Postbaccalaureate Certificate', 'Postbaccalaureate Certificate', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Postbaccalaureate Certificate', [Definition] = 'Postbaccalaureate Certificate', [SortOrder] = NULL WHERE [Code] = 'IPEDS6' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'IPEDS7') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IPEDS7', 'Master''s Degree', 'Master''s Degree', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Master''s Degree', [Definition] = 'Master''s Degree', [SortOrder] = NULL WHERE [Code] = 'IPEDS7' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'IPEDS8') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IPEDS8', 'Post Masters Certificate', 'Post Masters Certificate', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Post Masters Certificate', [Definition] = 'Post Masters Certificate', [SortOrder] = NULL WHERE [Code] = 'IPEDS8' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'IPEDS9') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IPEDS9', 'Doctor''s Degree', 'Doctor''s Degree', NULL) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Doctor''s Degree', [Definition] = 'Doctor''s Degree', [SortOrder] = NULL WHERE [Code] = 'IPEDS9' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'CEGEP') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CEGEP', 'CEGEP (an award made by Canadian secondary schools that is typically equivalent to a high school diploma plus one year of college level courses)', 'CEGEP (an award made by Canadian secondary schools that is typically equivalent to a high school diploma plus one year of college level courses)', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'CEGEP (an award made by Canadian secondary schools that is typically equivalent to a high school diploma plus one year of college level courses)', [Definition] = 'CEGEP (an award made by Canadian secondary schools that is typically equivalent to a high school diploma plus one year of college level courses)', [SortOrder] = 1.00 WHERE [Code] = 'CEGEP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = 'FrenchBaccalaureate') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FrenchBaccalaureate', 'French Baccalaureate (award made to high school students that allows French and international students to obtain a standardized qualification)', 'French Baccalaureate (an award made to high school students who complete a rigorous program of study including foreign languages. It allows French and international students to obtain a standardized qualification, typically at the age of 18)', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'French Baccalaureate (award made to high school students that allows French and international students to obtain a standardized qualification)', [Definition] = 'French Baccalaureate (an award made to high school students who complete a rigorous program of study including foreign languages. It allows French and international students to obtain a standardized qualification, typically at the age of 18)', [SortOrder] = 2.00 WHERE [Code] = 'FrenchBaccalaureate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '4.0') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4.0', 'Graduate non-degree - value to represent an award from graduate coursework that is not a certificate or degree', 'Graduate non-degree - value to represent an award from graduate coursework that is not a certificate or degree', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Graduate non-degree - value to represent an award from graduate coursework that is not a certificate or degree', [Definition] = 'Graduate non-degree - value to represent an award from graduate coursework that is not a certificate or degree', [SortOrder] = 3.00 WHERE [Code] = '4.0' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '3.3') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3.3', 'Graduate Professional - value to represent an award from graduate coursework in a professional program', 'Graduate Professional - value to represent an award from graduate coursework in a professional program', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Graduate Professional - value to represent an award from graduate coursework in a professional program', [Definition] = 'Graduate Professional - value to represent an award from graduate coursework in a professional program', [SortOrder] = 4.00 WHERE [Code] = '3.3' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '0.0') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('0.0', 'Other - value to represent an award that does not otherwise fit existing enumerations', 'Other - value to represent an award that does not otherwise fit existing enumerations', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Other - value to represent an award that does not otherwise fit existing enumerations', [Definition] = 'Other - value to represent an award that does not otherwise fit existing enumerations', [SortOrder] = 5.00 WHERE [Code] = '0.0' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '1.5') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1.5', 'Statement of achievement', 'Statement of achievement', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Statement of achievement', [Definition] = 'Statement of achievement', [SortOrder] = 6.00 WHERE [Code] = '1.5' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '1.4') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1.4', 'Statement of completion', 'Statement of completion', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Statement of completion', [Definition] = 'Statement of completion', [SortOrder] = 7.00 WHERE [Code] = '1.4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '1.3') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1.3', 'Statement of participation', 'Statement of participation', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Statement of participation', [Definition] = 'Statement of participation', [SortOrder] = 8.00 WHERE [Code] = '1.3' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPESCAwardLevelType] WHERE [Code] = '2.8') BEGIN INSERT INTO dbo.[RefPESCAwardLevelType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2.8', 'Undergraduate non-degree - value to represent an award from undergraduate coursework that is not a certificate or degree', 'Undergraduate non-degree - value to represent an award from undergraduate coursework that is not a certificate or degree', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPESCAwardLevelType] -SET [Description] = 'Undergraduate non-degree - value to represent an award from undergraduate coursework that is not a certificate or degree', [Definition] = 'Undergraduate non-degree - value to represent an award from undergraduate coursework that is not a certificate or degree', [SortOrder] = 9.00 WHERE [Code] = '2.8' END -END - -PRINT N'Populate RefPopulationServed table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPopulationServed]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPopulationServed] WHERE [Code] = 'ELL') BEGIN INSERT INTO dbo.[RefPopulationServed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ELL', 'English language learners', 'The program provides services to meet the needs of English language learners.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPopulationServed] -SET [Description] = 'English language learners', [Definition] = 'The program provides services to meet the needs of English language learners.', [SortOrder] = 1.00 WHERE [Code] = 'ELL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPopulationServed] WHERE [Code] = 'CWD') BEGIN INSERT INTO dbo.[RefPopulationServed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CWD', 'Children with disabilities', 'The program provides services to meet the needs of children with disabilities.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPopulationServed] -SET [Description] = 'Children with disabilities', [Definition] = 'The program provides services to meet the needs of children with disabilities.', [SortOrder] = 2.00 WHERE [Code] = 'CWD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPopulationServed] WHERE [Code] = 'Homeless') BEGIN INSERT INTO dbo.[RefPopulationServed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Homeless', 'Homeless', 'The program provides services to meet the needs of homeless.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPopulationServed] -SET [Description] = 'Homeless', [Definition] = 'The program provides services to meet the needs of homeless.', [SortOrder] = 4.00 WHERE [Code] = 'Homeless' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPopulationServed] WHERE [Code] = 'MentalHealth') BEGIN INSERT INTO dbo.[RefPopulationServed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MentalHealth', 'Mental health', 'The program provides mental health services.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPopulationServed] -SET [Description] = 'Mental health', [Definition] = 'The program provides mental health services.', [SortOrder] = 5.00 WHERE [Code] = 'MentalHealth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPopulationServed] WHERE [Code] = 'SpecialHealthNeeds') BEGIN INSERT INTO dbo.[RefPopulationServed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpecialHealthNeeds', 'Special health needs', 'The program provides services to meet the needs of learners with special health needs.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPopulationServed] -SET [Description] = 'Special health needs', [Definition] = 'The program provides services to meet the needs of learners with special health needs.', [SortOrder] = 6.00 WHERE [Code] = 'SpecialHealthNeeds' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPopulationServed] WHERE [Code] = 'Foster') BEGIN INSERT INTO dbo.[RefPopulationServed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Foster', 'Foster', 'The program provides services to meet the needs of foster children and families.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPopulationServed] -SET [Description] = 'Foster', [Definition] = 'The program provides services to meet the needs of foster children and families.', [SortOrder] = 7.00 WHERE [Code] = 'Foster' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPopulationServed] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefPopulationServed]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The program provides services to meet the needs of learners in a category not yet defined in CEDS.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPopulationServed] -SET [Description] = 'Other', [Definition] = 'The program provides services to meet the needs of learners in a category not yet defined in CEDS.', [SortOrder] = 10.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefPreAndPostTestIndicator table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPreAndPostTestIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPreAndPostTestIndicator] WHERE [Code] = 'PreAndPostTest') BEGIN INSERT INTO dbo.[RefPreAndPostTestIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PreAndPostTest', 'The student took both a pre-test and post-test', 'The student took both a pre-test and post-test.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPreAndPostTestIndicator] -SET [Description] = 'The student took both a pre-test and post-test', [Definition] = 'The student took both a pre-test and post-test.', [SortOrder] = 1.00 WHERE [Code] = 'PreAndPostTest' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPreAndPostTestIndicator] WHERE [Code] = 'DidNotTakeBoth') BEGIN INSERT INTO dbo.[RefPreAndPostTestIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DidNotTakeBoth', 'The student did not take both a pre-test and a post-test', 'The student did not take both a pre-test and a post-test.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPreAndPostTestIndicator] -SET [Description] = 'The student did not take both a pre-test and a post-test', [Definition] = 'The student did not take both a pre-test and a post-test.', [SortOrder] = 2.00 WHERE [Code] = 'DidNotTakeBoth' END -END - -PRINT N'Populate RefPredominantCalendarSystem table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPredominantCalendarSystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPredominantCalendarSystem] WHERE [Code] = 'Semester') BEGIN INSERT INTO dbo.[RefPredominantCalendarSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Semester', 'Semester ', 'The institution structures most of its courses for the academic year by Semester.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPredominantCalendarSystem] -SET [Description] = 'Semester ', [Definition] = 'The institution structures most of its courses for the academic year by Semester.', [SortOrder] = 1.00 WHERE [Code] = 'Semester' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPredominantCalendarSystem] WHERE [Code] = 'Quarter') BEGIN INSERT INTO dbo.[RefPredominantCalendarSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Quarter', 'Quarter ', 'The institution structures most of its courses for the academic year by Quarter.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPredominantCalendarSystem] -SET [Description] = 'Quarter ', [Definition] = 'The institution structures most of its courses for the academic year by Quarter.', [SortOrder] = 2.00 WHERE [Code] = 'Quarter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPredominantCalendarSystem] WHERE [Code] = 'Trimester') BEGIN INSERT INTO dbo.[RefPredominantCalendarSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Trimester', 'Trimester', 'The institution structures most of its courses for the academic year by Trimester.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPredominantCalendarSystem] -SET [Description] = 'Trimester', [Definition] = 'The institution structures most of its courses for the academic year by Trimester.', [SortOrder] = 3.00 WHERE [Code] = 'Trimester' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPredominantCalendarSystem] WHERE [Code] = '4-1-4') BEGIN INSERT INTO dbo.[RefPredominantCalendarSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4-1-4', '4-1-4 or similar plan', 'The institution structures most of its courses for the academic year by 4-1-4 or similar plan.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPredominantCalendarSystem] -SET [Description] = '4-1-4 or similar plan', [Definition] = 'The institution structures most of its courses for the academic year by 4-1-4 or similar plan.', [SortOrder] = 4.00 WHERE [Code] = '4-1-4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPredominantCalendarSystem] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefPredominantCalendarSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other academic plan', 'The institution structures most of its courses for the academic year by an academic plan not yet defined in CEDS.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPredominantCalendarSystem] -SET [Description] = 'Other academic plan', [Definition] = 'The institution structures most of its courses for the academic year by an academic plan not yet defined in CEDS.', [SortOrder] = 5.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPredominantCalendarSystem] WHERE [Code] = 'DiffersByProgram') BEGIN INSERT INTO dbo.[RefPredominantCalendarSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DiffersByProgram', 'Differs by program', 'The method by which an institution structures most of its courses for the academic year differs by program.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPredominantCalendarSystem] -SET [Description] = 'Differs by program', [Definition] = 'The method by which an institution structures most of its courses for the academic year differs by program.', [SortOrder] = 6.00 WHERE [Code] = 'DiffersByProgram' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPredominantCalendarSystem] WHERE [Code] = 'ContinuousBasis') BEGIN INSERT INTO dbo.[RefPredominantCalendarSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ContinuousBasis', 'Continuous basis', 'The institution structures most of its courses for the academic year on a continuous basis.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPredominantCalendarSystem] -SET [Description] = 'Continuous basis', [Definition] = 'The institution structures most of its courses for the academic year on a continuous basis.', [SortOrder] = 7.00 WHERE [Code] = 'ContinuousBasis' END -END - -PRINT N'Populate RefPreKEligibleAgesNonIDEA table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPreKEligibleAgesNonIDEA]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPreKEligibleAgesNonIDEA] WHERE [Code] = 'Age0-2') BEGIN INSERT INTO dbo.[RefPreKEligibleAgesNonIDEA]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Age0-2', 'Students aged 0-2', 'The prekindergarten program is available to students aged 0-2.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPreKEligibleAgesNonIDEA] -SET [Description] = 'Students aged 0-2', [Definition] = 'The prekindergarten program is available to students aged 0-2.', [SortOrder] = 1.00 WHERE [Code] = 'Age0-2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPreKEligibleAgesNonIDEA] WHERE [Code] = 'Age3') BEGIN INSERT INTO dbo.[RefPreKEligibleAgesNonIDEA]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Age3', 'Students aged 3', 'The prekindergarten program is available to students aged 3.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPreKEligibleAgesNonIDEA] -SET [Description] = 'Students aged 3', [Definition] = 'The prekindergarten program is available to students aged 3.', [SortOrder] = 2.00 WHERE [Code] = 'Age3' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPreKEligibleAgesNonIDEA] WHERE [Code] = 'Age4') BEGIN INSERT INTO dbo.[RefPreKEligibleAgesNonIDEA]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Age4', 'Students aged 4', 'The prekindergarten program is available to students aged 4.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPreKEligibleAgesNonIDEA] -SET [Description] = 'Students aged 4', [Definition] = 'The prekindergarten program is available to students aged 4.', [SortOrder] = 3.00 WHERE [Code] = 'Age4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPreKEligibleAgesNonIDEA] WHERE [Code] = 'NoPreK') BEGIN INSERT INTO dbo.[RefPreKEligibleAgesNonIDEA]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoPreK', 'No pre-kindergarten or only for IDEA students', 'No pre-kindergarten is available or only for IDEA students.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPreKEligibleAgesNonIDEA] -SET [Description] = 'No pre-kindergarten or only for IDEA students', [Definition] = 'No pre-kindergarten is available or only for IDEA students.', [SortOrder] = 4.00 WHERE [Code] = 'NoPreK' END -END - -PRINT N'Populate RefPrekindergartenEligibility table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPrekindergartenEligibility]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrekindergartenEligibility] WHERE [Code] = 'All') BEGIN INSERT INTO dbo.[RefPrekindergartenEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('All', 'All students', 'All students', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrekindergartenEligibility] -SET [Description] = 'All students', [Definition] = 'All students', [SortOrder] = 1.00 WHERE [Code] = 'All' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrekindergartenEligibility] WHERE [Code] = 'IDEA') BEGIN INSERT INTO dbo.[RefPrekindergartenEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IDEA', 'Students with disabilities (IDEA)', 'Students with disabilities (IDEA)', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrekindergartenEligibility] -SET [Description] = 'Students with disabilities (IDEA)', [Definition] = 'Students with disabilities (IDEA)', [SortOrder] = 2.00 WHERE [Code] = 'IDEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrekindergartenEligibility] WHERE [Code] = 'TitleI') BEGIN INSERT INTO dbo.[RefPrekindergartenEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TitleI', 'Students in Title I schools', 'Students in Title I schools', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrekindergartenEligibility] -SET [Description] = 'Students in Title I schools', [Definition] = 'Students in Title I schools', [SortOrder] = 3.00 WHERE [Code] = 'TitleI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrekindergartenEligibility] WHERE [Code] = 'LowIncome') BEGIN INSERT INTO dbo.[RefPrekindergartenEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LowIncome', 'Students from low income families', 'Students from low income families', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrekindergartenEligibility] -SET [Description] = 'Students from low income families', [Definition] = 'Students from low income families', [SortOrder] = 4.00 WHERE [Code] = 'LowIncome' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrekindergartenEligibility] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefPrekindergartenEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrekindergartenEligibility] -SET [Description] = 'Other', [Definition] = 'Other', [SortOrder] = 5.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefPresentAttendanceCategory table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPresentAttendanceCategory]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPresentAttendanceCategory] WHERE [Code] = '13290') BEGIN INSERT INTO dbo.[RefPresentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13290', 'Present - Disciplinary action, receiving instruction', 'The student has been removed from the regular instructional setting for disciplinary reasons and is receiving instruction. In-school suspension typically falls within this category, but it also includes out-of-school suspension if instructional services are provided.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPresentAttendanceCategory] -SET [Description] = 'Present - Disciplinary action, receiving instruction', [Definition] = 'The student has been removed from the regular instructional setting for disciplinary reasons and is receiving instruction. In-school suspension typically falls within this category, but it also includes out-of-school suspension if instructional services are provided.', [SortOrder] = 1.00 WHERE [Code] = '13290' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPresentAttendanceCategory] WHERE [Code] = '13288') BEGIN INSERT INTO dbo.[RefPresentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13288', 'Present - In school, regular instructional program', 'The student is in class. This includes attendance at sites other than the school of record if the site is part of the student’s regular instructional program approved by the school, district, and/or state. Examples of other sites are institutions of higher education, vocational/technical centers, and special education centers.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPresentAttendanceCategory] -SET [Description] = 'Present - In school, regular instructional program', [Definition] = 'The student is in class. This includes attendance at sites other than the school of record if the site is part of the student’s regular instructional program approved by the school, district, and/or state. Examples of other sites are institutions of higher education, vocational/technical centers, and special education centers.', [SortOrder] = 2.00 WHERE [Code] = '13288' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPresentAttendanceCategory] WHERE [Code] = '13289') BEGIN INSERT INTO dbo.[RefPresentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13289', 'Present - Nontraditional school setting, regular instructional program', 'The student is engaged in the regular instructional program in a nontraditional school setting. Examples include hospital- or homebound instruction, as well as off-campus distance education.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPresentAttendanceCategory] -SET [Description] = 'Present - Nontraditional school setting, regular instructional program', [Definition] = 'The student is engaged in the regular instructional program in a nontraditional school setting. Examples include hospital- or homebound instruction, as well as off-campus distance education.', [SortOrder] = 3.00 WHERE [Code] = '13289' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPresentAttendanceCategory] WHERE [Code] = '13291') BEGIN INSERT INTO dbo.[RefPresentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13291', 'Present - Out of school, regular instructional program activity', 'The student is involved in an activity outside of school that is part of the regular instructional program, such as a field trip or work-study. The student is under the direct supervision of school personnel or someone who has been designated to act in place of school personnel.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPresentAttendanceCategory] -SET [Description] = 'Present - Out of school, regular instructional program activity', [Definition] = 'The student is involved in an activity outside of school that is part of the regular instructional program, such as a field trip or work-study. The student is under the direct supervision of school personnel or someone who has been designated to act in place of school personnel.', [SortOrder] = 4.00 WHERE [Code] = '13291' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPresentAttendanceCategory] WHERE [Code] = '13292') BEGIN INSERT INTO dbo.[RefPresentAttendanceCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13292', 'Present - Out of school, school-approved extracurricular or cocurricular activity', 'The student is outside of school, participating in instruction that is related to, but not part of, the regular curriculum. Examples include school-approved extracurricular or cocurricular activities, such as a debate, an athletic competition, or a conference that has educational value.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPresentAttendanceCategory] -SET [Description] = 'Present - Out of school, school-approved extracurricular or cocurricular activity', [Definition] = 'The student is outside of school, participating in instruction that is related to, but not part of, the regular curriculum. Examples include school-approved extracurricular or cocurricular activities, such as a debate, an athletic competition, or a conference that has educational value.', [SortOrder] = 5.00 WHERE [Code] = '13292' END -END - -PRINT N'Populate RefPrimaryLearningDeviceAccess table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPrimaryLearningDeviceAccess]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrimaryLearningDeviceAccess] WHERE [Code] = 'NotShared') BEGIN INSERT INTO dbo.[RefPrimaryLearningDeviceAccess]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotShared', 'Not Shared', 'The primary learning device is not shared with another individual.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrimaryLearningDeviceAccess] -SET [Description] = 'Not Shared', [Definition] = 'The primary learning device is not shared with another individual.', [SortOrder] = 1.00 WHERE [Code] = 'NotShared' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrimaryLearningDeviceAccess] WHERE [Code] = 'Shared') BEGIN INSERT INTO dbo.[RefPrimaryLearningDeviceAccess]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Shared', 'Shared', 'The primary learning device is shared with another individual.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrimaryLearningDeviceAccess] -SET [Description] = 'Shared', [Definition] = 'The primary learning device is shared with another individual.', [SortOrder] = 2.00 WHERE [Code] = 'Shared' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrimaryLearningDeviceAccess] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefPrimaryLearningDeviceAccess]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'It is not known whether the primary learning device is shared with another individual.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrimaryLearningDeviceAccess] -SET [Description] = 'Unknown', [Definition] = 'It is not known whether the primary learning device is shared with another individual.', [SortOrder] = 3.00 WHERE [Code] = 'Unknown' END -END - -PRINT N'Populate RefPrimaryLearningDeviceAwayFromSchool table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPrimaryLearningDeviceAwayFromSchool]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrimaryLearningDeviceAwayFromSchool] WHERE [Code] = 'Chromebook') BEGIN INSERT INTO dbo.[RefPrimaryLearningDeviceAwayFromSchool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Chromebook', 'Chromebook', 'A Chromebook is the type of device the student uses most often to complete learning activities away from school.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrimaryLearningDeviceAwayFromSchool] -SET [Description] = 'Chromebook', [Definition] = 'A Chromebook is the type of device the student uses most often to complete learning activities away from school.', [SortOrder] = 1.00 WHERE [Code] = 'Chromebook' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrimaryLearningDeviceAwayFromSchool] WHERE [Code] = 'DesktopComputer') BEGIN INSERT INTO dbo.[RefPrimaryLearningDeviceAwayFromSchool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DesktopComputer', 'Desktop Computer', 'A desktop computer is the type of device the student uses most often to complete learning activities away from school.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrimaryLearningDeviceAwayFromSchool] -SET [Description] = 'Desktop Computer', [Definition] = 'A desktop computer is the type of device the student uses most often to complete learning activities away from school.', [SortOrder] = 2.00 WHERE [Code] = 'DesktopComputer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrimaryLearningDeviceAwayFromSchool] WHERE [Code] = 'LaptopComputer') BEGIN INSERT INTO dbo.[RefPrimaryLearningDeviceAwayFromSchool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LaptopComputer', 'Laptop Computer', 'A Laptop Computer is the type of device the student uses most often to complete learning activities away from school.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrimaryLearningDeviceAwayFromSchool] -SET [Description] = 'Laptop Computer', [Definition] = 'A Laptop Computer is the type of device the student uses most often to complete learning activities away from school.', [SortOrder] = 3.00 WHERE [Code] = 'LaptopComputer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrimaryLearningDeviceAwayFromSchool] WHERE [Code] = 'None') BEGIN INSERT INTO dbo.[RefPrimaryLearningDeviceAwayFromSchool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('None', 'None', 'There is not a device the student uses to complete learning activities away from school.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrimaryLearningDeviceAwayFromSchool] -SET [Description] = 'None', [Definition] = 'There is not a device the student uses to complete learning activities away from school.', [SortOrder] = 4.00 WHERE [Code] = 'None' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrimaryLearningDeviceAwayFromSchool] WHERE [Code] = 'Smartphone') BEGIN INSERT INTO dbo.[RefPrimaryLearningDeviceAwayFromSchool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Smartphone', 'Smartphone', 'A Smartphone is the type of device the student uses most often to complete learning activities away from school.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrimaryLearningDeviceAwayFromSchool] -SET [Description] = 'Smartphone', [Definition] = 'A Smartphone is the type of device the student uses most often to complete learning activities away from school.', [SortOrder] = 5.00 WHERE [Code] = 'Smartphone' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrimaryLearningDeviceAwayFromSchool] WHERE [Code] = 'Tablet') BEGIN INSERT INTO dbo.[RefPrimaryLearningDeviceAwayFromSchool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Tablet', 'Tablet', 'A Tablet is the type of device the student uses most often to complete learning activities away from school.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrimaryLearningDeviceAwayFromSchool] -SET [Description] = 'Tablet', [Definition] = 'A Tablet is the type of device the student uses most often to complete learning activities away from school.', [SortOrder] = 6.00 WHERE [Code] = 'Tablet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrimaryLearningDeviceAwayFromSchool] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefPrimaryLearningDeviceAwayFromSchool]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The type of device the student uses most often to complete learning activities away from school is not yet defined.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrimaryLearningDeviceAwayFromSchool] -SET [Description] = 'Other', [Definition] = 'The type of device the student uses most often to complete learning activities away from school is not yet defined.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefPrimaryLearningDeviceProvider table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPrimaryLearningDeviceProvider]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrimaryLearningDeviceProvider] WHERE [Code] = 'Personal') BEGIN INSERT INTO dbo.[RefPrimaryLearningDeviceProvider]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Personal', 'Personal', 'The provider of the primary learning device is the student or guardian.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrimaryLearningDeviceProvider] -SET [Description] = 'Personal', [Definition] = 'The provider of the primary learning device is the student or guardian.', [SortOrder] = 1.00 WHERE [Code] = 'Personal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrimaryLearningDeviceProvider] WHERE [Code] = 'School') BEGIN INSERT INTO dbo.[RefPrimaryLearningDeviceProvider]([Code], [Description], [Definition], [SortOrder]) -VALUES ('School', 'School', 'The provider of the primary learning device is the school.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrimaryLearningDeviceProvider] -SET [Description] = 'School', [Definition] = 'The provider of the primary learning device is the school.', [SortOrder] = 2.00 WHERE [Code] = 'School' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPrimaryLearningDeviceProvider] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefPrimaryLearningDeviceProvider]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The provider of the primary learning device is not yet defined.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPrimaryLearningDeviceProvider] -SET [Description] = 'Other', [Definition] = 'The provider of the primary learning device is not yet defined.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefProfessionalDevelopmentFinancialSupport table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProfessionalDevelopmentFinancialSupport]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalDevelopmentFinancialSupport] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefProfessionalDevelopmentFinancialSupport]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'One time non-credit', 'One time financial assistance received in support of the non-credit professional development activity.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalDevelopmentFinancialSupport] -SET [Description] = 'One time non-credit', [Definition] = 'One time financial assistance received in support of the non-credit professional development activity.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalDevelopmentFinancialSupport] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefProfessionalDevelopmentFinancialSupport]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'One time credit paid', 'One time credit paid in support of the non-credit professional development activity.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalDevelopmentFinancialSupport] -SET [Description] = 'One time credit paid', [Definition] = 'One time credit paid in support of the non-credit professional development activity.', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalDevelopmentFinancialSupport] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefProfessionalDevelopmentFinancialSupport]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'On-going non-credit paid', 'On-going non-credit paid in support of the non-credit professional development activity.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalDevelopmentFinancialSupport] -SET [Description] = 'On-going non-credit paid', [Definition] = 'On-going non-credit paid in support of the non-credit professional development activity.', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalDevelopmentFinancialSupport] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefProfessionalDevelopmentFinancialSupport]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'On-going credit paid', 'On-going credit paid in support of the non-credit professional development activity.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalDevelopmentFinancialSupport] -SET [Description] = 'On-going credit paid', [Definition] = 'On-going credit paid in support of the non-credit professional development activity.', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalDevelopmentFinancialSupport] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefProfessionalDevelopmentFinancialSupport]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Salary bonus', 'Salary bonus received in support of the non-credit professional development activity.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalDevelopmentFinancialSupport] -SET [Description] = 'Salary bonus', [Definition] = 'Salary bonus received in support of the non-credit professional development activity.', [SortOrder] = 5.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalDevelopmentFinancialSupport] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefProfessionalDevelopmentFinancialSupport]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Wage enhancement', 'Wage enhancement received in support of the non-credit professional development activity.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalDevelopmentFinancialSupport] -SET [Description] = 'Wage enhancement', [Definition] = 'Wage enhancement received in support of the non-credit professional development activity.', [SortOrder] = 6.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalDevelopmentFinancialSupport] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefProfessionalDevelopmentFinancialSupport]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Tuition reimbursement', 'Tuition reimbursement received in support of the non-credit professional development activity.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalDevelopmentFinancialSupport] -SET [Description] = 'Tuition reimbursement', [Definition] = 'Tuition reimbursement received in support of the non-credit professional development activity.', [SortOrder] = 7.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalDevelopmentFinancialSupport] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefProfessionalDevelopmentFinancialSupport]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Travel child care', 'Travel child care received in support of the non-credit professional development activity.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalDevelopmentFinancialSupport] -SET [Description] = 'Travel child care', [Definition] = 'Travel child care received in support of the non-credit professional development activity.', [SortOrder] = 8.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalDevelopmentFinancialSupport] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefProfessionalDevelopmentFinancialSupport]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Release time', 'Release time received in support of the non-credit professional development activity.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalDevelopmentFinancialSupport] -SET [Description] = 'Release time', [Definition] = 'Release time received in support of the non-credit professional development activity.', [SortOrder] = 9.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalDevelopmentFinancialSupport] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefProfessionalDevelopmentFinancialSupport]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Scholarship', 'Scholarship received in support of the non-credit professional development activity.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalDevelopmentFinancialSupport] -SET [Description] = 'Scholarship', [Definition] = 'Scholarship received in support of the non-credit professional development activity.', [SortOrder] = 10.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalDevelopmentFinancialSupport] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefProfessionalDevelopmentFinancialSupport]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Loan', 'Loan received in support of the non-credit professional development activity.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalDevelopmentFinancialSupport] -SET [Description] = 'Loan', [Definition] = 'Loan received in support of the non-credit professional development activity.', [SortOrder] = 11.00 WHERE [Code] = '11' END -END - -PRINT N'Populate RefProfessionalEducationJobClassification table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProfessionalEducationJobClassification]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalEducationJobClassification] WHERE [Code] = '04723') BEGIN INSERT INTO dbo.[RefProfessionalEducationJobClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04723', 'Athletic coach', 'Athletic coach', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalEducationJobClassification] -SET [Description] = 'Athletic coach', [Definition] = 'Athletic coach', [SortOrder] = 1.00 WHERE [Code] = '04723' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalEducationJobClassification] WHERE [Code] = '04724') BEGIN INSERT INTO dbo.[RefProfessionalEducationJobClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04724', 'Behavioral management specialist', 'Behavioral management specialist', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalEducationJobClassification] -SET [Description] = 'Behavioral management specialist', [Definition] = 'Behavioral management specialist', [SortOrder] = 2.00 WHERE [Code] = '04724' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalEducationJobClassification] WHERE [Code] = '04725') BEGIN INSERT INTO dbo.[RefProfessionalEducationJobClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04725', 'Counselor', 'Counselor', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalEducationJobClassification] -SET [Description] = 'Counselor', [Definition] = 'Counselor', [SortOrder] = 3.00 WHERE [Code] = '04725' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalEducationJobClassification] WHERE [Code] = '04726') BEGIN INSERT INTO dbo.[RefProfessionalEducationJobClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04726', 'Curriculum specialist', 'Curriculum specialist', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalEducationJobClassification] -SET [Description] = 'Curriculum specialist', [Definition] = 'Curriculum specialist', [SortOrder] = 4.00 WHERE [Code] = '04726' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalEducationJobClassification] WHERE [Code] = '04727') BEGIN INSERT INTO dbo.[RefProfessionalEducationJobClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04727', 'Education diagnostician', 'Education diagnostician', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalEducationJobClassification] -SET [Description] = 'Education diagnostician', [Definition] = 'Education diagnostician', [SortOrder] = 5.00 WHERE [Code] = '04727' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalEducationJobClassification] WHERE [Code] = '04728') BEGIN INSERT INTO dbo.[RefProfessionalEducationJobClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04728', 'Librarian/media consultant', 'Librarian/media consultant', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalEducationJobClassification] -SET [Description] = 'Librarian/media consultant', [Definition] = 'Librarian/media consultant', [SortOrder] = 6.00 WHERE [Code] = '04728' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalEducationJobClassification] WHERE [Code] = '04729') BEGIN INSERT INTO dbo.[RefProfessionalEducationJobClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04729', 'Remedial specialist', 'Remedial specialist', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalEducationJobClassification] -SET [Description] = 'Remedial specialist', [Definition] = 'Remedial specialist', [SortOrder] = 7.00 WHERE [Code] = '04729' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalEducationJobClassification] WHERE [Code] = '04730') BEGIN INSERT INTO dbo.[RefProfessionalEducationJobClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04730', 'Student activity advisor/non athletic coach', 'Student activity advisor/non athletic coach', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalEducationJobClassification] -SET [Description] = 'Student activity advisor/non athletic coach', [Definition] = 'Student activity advisor/non athletic coach', [SortOrder] = 8.00 WHERE [Code] = '04730' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalEducationJobClassification] WHERE [Code] = '04731') BEGIN INSERT INTO dbo.[RefProfessionalEducationJobClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04731', 'Student teacher', 'Student teacher', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalEducationJobClassification] -SET [Description] = 'Student teacher', [Definition] = 'Student teacher', [SortOrder] = 9.00 WHERE [Code] = '04731' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalEducationJobClassification] WHERE [Code] = '04732') BEGIN INSERT INTO dbo.[RefProfessionalEducationJobClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04732', 'Teacher', 'Teacher', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalEducationJobClassification] -SET [Description] = 'Teacher', [Definition] = 'Teacher', [SortOrder] = 10.00 WHERE [Code] = '04732' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalEducationJobClassification] WHERE [Code] = '04733') BEGIN INSERT INTO dbo.[RefProfessionalEducationJobClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04733', 'Teacher trainer', 'Teacher trainer', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalEducationJobClassification] -SET [Description] = 'Teacher trainer', [Definition] = 'Teacher trainer', [SortOrder] = 11.00 WHERE [Code] = '04733' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalEducationJobClassification] WHERE [Code] = '04734') BEGIN INSERT INTO dbo.[RefProfessionalEducationJobClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04734', 'Teaching intern', 'Teaching intern', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalEducationJobClassification] -SET [Description] = 'Teaching intern', [Definition] = 'Teaching intern', [SortOrder] = 12.00 WHERE [Code] = '04734' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalEducationJobClassification] WHERE [Code] = '04735') BEGIN INSERT INTO dbo.[RefProfessionalEducationJobClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04735', 'Resource teacher', 'Resource teacher', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalEducationJobClassification] -SET [Description] = 'Resource teacher', [Definition] = 'Resource teacher', [SortOrder] = 13.00 WHERE [Code] = '04735' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalEducationJobClassification] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefProfessionalEducationJobClassification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalEducationJobClassification] -SET [Description] = 'Other', [Definition] = 'Other', [SortOrder] = 14.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefProfessionalTechnicalCredentialType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProfessionalTechnicalCredentialType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalTechnicalCredentialType] WHERE [Code] = 'OccupationalLicense') BEGIN INSERT INTO dbo.[RefProfessionalTechnicalCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OccupationalLicense', 'Occupational License', 'Occupational License was conferred for competency in a specific area measured by a set of pre-established standards.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalTechnicalCredentialType] -SET [Description] = 'Occupational License', [Definition] = 'Occupational License was conferred for competency in a specific area measured by a set of pre-established standards.', [SortOrder] = 1.00 WHERE [Code] = 'OccupationalLicense' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalTechnicalCredentialType] WHERE [Code] = 'IndustryCertification') BEGIN INSERT INTO dbo.[RefProfessionalTechnicalCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IndustryCertification', 'Industry-recognized Certification', 'Industry-recognized Certification was conferred for competency in a specific area measured by a set of pre-established standards.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalTechnicalCredentialType] -SET [Description] = 'Industry-recognized Certification', [Definition] = 'Industry-recognized Certification was conferred for competency in a specific area measured by a set of pre-established standards.', [SortOrder] = 2.00 WHERE [Code] = 'IndustryCertification' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalTechnicalCredentialType] WHERE [Code] = 'ApprenticeshipCertificate') BEGIN INSERT INTO dbo.[RefProfessionalTechnicalCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ApprenticeshipCertificate', 'Apprenticeship Certificate', 'Apprenticeship Certificate was conferred for competency in a specific area measured by a set of pre-established standards.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalTechnicalCredentialType] -SET [Description] = 'Apprenticeship Certificate', [Definition] = 'Apprenticeship Certificate was conferred for competency in a specific area measured by a set of pre-established standards.', [SortOrder] = 3.00 WHERE [Code] = 'ApprenticeshipCertificate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalTechnicalCredentialType] WHERE [Code] = 'EmployerCertification') BEGIN INSERT INTO dbo.[RefProfessionalTechnicalCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EmployerCertification', 'Employer certification', 'Employer certification was conferred for competency in a specific area measured by a set of pre-established standards.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalTechnicalCredentialType] -SET [Description] = 'Employer certification', [Definition] = 'Employer certification was conferred for competency in a specific area measured by a set of pre-established standards.', [SortOrder] = 5.00 WHERE [Code] = 'EmployerCertification' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalTechnicalCredentialType] WHERE [Code] = 'PreEmploymentTraining') BEGIN INSERT INTO dbo.[RefProfessionalTechnicalCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PreEmploymentTraining', 'Pre-employment training certificate', 'Pre-employment training certificate was conferred for competency in a specific area measured by a set of pre-established standards.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalTechnicalCredentialType] -SET [Description] = 'Pre-employment training certificate', [Definition] = 'Pre-employment training certificate was conferred for competency in a specific area measured by a set of pre-established standards.', [SortOrder] = 7.00 WHERE [Code] = 'PreEmploymentTraining' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfessionalTechnicalCredentialType] WHERE [Code] = 'OtherOccupational') BEGIN INSERT INTO dbo.[RefProfessionalTechnicalCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherOccupational', 'Other recognized occupational skills credential', 'Other recognized occupational skills credential was conferred for competency in a specific area measured by a set of pre-established standards.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfessionalTechnicalCredentialType] -SET [Description] = 'Other recognized occupational skills credential', [Definition] = 'Other recognized occupational skills credential was conferred for competency in a specific area measured by a set of pre-established standards.', [SortOrder] = 9.00 WHERE [Code] = 'OtherOccupational' END -END - -PRINT N'Populate RefProficiencyStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProficiencyStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProficiencyStatus] WHERE [Code] = 'Proficient') BEGIN INSERT INTO dbo.[RefProficiencyStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Proficient', 'Proficient', 'The student''s scores were proficient.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProficiencyStatus] -SET [Description] = 'Proficient', [Definition] = 'The student''s scores were proficient.', [SortOrder] = 1.00 WHERE [Code] = 'Proficient' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProficiencyStatus] WHERE [Code] = 'NotProficient') BEGIN INSERT INTO dbo.[RefProficiencyStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotProficient', 'Not proficient', 'The student''s scores were NOT proficient.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProficiencyStatus] -SET [Description] = 'Not proficient', [Definition] = 'The student''s scores were NOT proficient.', [SortOrder] = 2.00 WHERE [Code] = 'NotProficient' END -END - -PRINT N'Populate RefProficiencyTargetAyp table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProficiencyTargetAyp]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProficiencyTargetAyp] WHERE [Code] = 'Met') BEGIN INSERT INTO dbo.[RefProficiencyTargetAyp]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Met', 'Met: Regular Determination', 'The school or district met the proficiency target using the Regular Determination.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProficiencyTargetAyp] -SET [Description] = 'Met: Regular Determination', [Definition] = 'The school or district met the proficiency target using the Regular Determination.', [SortOrder] = 1.00 WHERE [Code] = 'Met' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProficiencyTargetAyp] WHERE [Code] = 'MetGrowthModel') BEGIN INSERT INTO dbo.[RefProficiencyTargetAyp]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MetGrowthModel', 'Met: Growth Model ', 'The school or district met the proficiency target using the Growth Model.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProficiencyTargetAyp] -SET [Description] = 'Met: Growth Model ', [Definition] = 'The school or district met the proficiency target using the Growth Model.', [SortOrder] = 2.00 WHERE [Code] = 'MetGrowthModel' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProficiencyTargetAyp] WHERE [Code] = 'MetBecauseSafeHarbor') BEGIN INSERT INTO dbo.[RefProficiencyTargetAyp]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MetBecauseSafeHarbor', 'Met Because of Safe Harbor', 'The school or district met the proficiency target using the Because of Safe Harbor.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProficiencyTargetAyp] -SET [Description] = 'Met Because of Safe Harbor', [Definition] = 'The school or district met the proficiency target using the Because of Safe Harbor.', [SortOrder] = 3.00 WHERE [Code] = 'MetBecauseSafeHarbor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProficiencyTargetAyp] WHERE [Code] = 'DidNotMeetTarget') BEGIN INSERT INTO dbo.[RefProficiencyTargetAyp]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DidNotMeetTarget', 'Did Not Meet Target', 'The school or district did NOT meet the proficiency target.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProficiencyTargetAyp] -SET [Description] = 'Did Not Meet Target', [Definition] = 'The school or district did NOT meet the proficiency target.', [SortOrder] = 4.00 WHERE [Code] = 'DidNotMeetTarget' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProficiencyTargetAyp] WHERE [Code] = 'TooFewStudents') BEGIN INSERT INTO dbo.[RefProficiencyTargetAyp]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TooFewStudents', 'Too Few Students for Reliability', 'Too Few Students for Reliability.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProficiencyTargetAyp] -SET [Description] = 'Too Few Students for Reliability', [Definition] = 'Too Few Students for Reliability.', [SortOrder] = 5.00 WHERE [Code] = 'TooFewStudents' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProficiencyTargetAyp] WHERE [Code] = 'NoStudents') BEGIN INSERT INTO dbo.[RefProficiencyTargetAyp]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoStudents', 'No Students in the Sub-group', 'No Students in the Sub-group.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProficiencyTargetAyp] -SET [Description] = 'No Students in the Sub-group', [Definition] = 'No Students in the Sub-group.', [SortOrder] = 6.00 WHERE [Code] = 'NoStudents' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProficiencyTargetAyp] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefProficiencyTargetAyp]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', 'Not applicable.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProficiencyTargetAyp] -SET [Description] = 'Not applicable', [Definition] = 'Not applicable.', [SortOrder] = 7.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefProfitStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProfitStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfitStatus] WHERE [Code] = 'ForProfit') BEGIN INSERT INTO dbo.[RefProfitStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ForProfit', 'For-profit facility', 'The facility is for-profit.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfitStatus] -SET [Description] = 'For-profit facility', [Definition] = 'The facility is for-profit.', [SortOrder] = 1.00 WHERE [Code] = 'ForProfit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfitStatus] WHERE [Code] = 'NonProfit') BEGIN INSERT INTO dbo.[RefProfitStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NonProfit', 'Non-profit facility', 'The facility is non-profit.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfitStatus] -SET [Description] = 'Non-profit facility', [Definition] = 'The facility is non-profit.', [SortOrder] = 2.00 WHERE [Code] = 'NonProfit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProfitStatus] WHERE [Code] = 'GovernmentRun') BEGIN INSERT INTO dbo.[RefProfitStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GovernmentRun', 'Government run facility', 'The facility is government run.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProfitStatus] -SET [Description] = 'Government run facility', [Definition] = 'The facility is government run.', [SortOrder] = 3.00 WHERE [Code] = 'GovernmentRun' END -END - -PRINT N'Populate RefProgramDayLength table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProgramDayLength]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramDayLength] WHERE [Code] = 'FullDay') BEGIN INSERT INTO dbo.[RefProgramDayLength]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullDay', 'Full-day', 'The program is provided to the students it serves as a full-day program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramDayLength] -SET [Description] = 'Full-day', [Definition] = 'The program is provided to the students it serves as a full-day program.', [SortOrder] = 1.00 WHERE [Code] = 'FullDay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramDayLength] WHERE [Code] = 'Part-day') BEGIN INSERT INTO dbo.[RefProgramDayLength]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Part-day', 'Part-day', 'The program is provided to the students it serves as a part-day program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramDayLength] -SET [Description] = 'Part-day', [Definition] = 'The program is provided to the students it serves as a part-day program.', [SortOrder] = 2.00 WHERE [Code] = 'Part-day' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramDayLength] WHERE [Code] = 'NotProvided') BEGIN INSERT INTO dbo.[RefProgramDayLength]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotProvided', 'Not provided', 'Program is not provided.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramDayLength] -SET [Description] = 'Not provided', [Definition] = 'Program is not provided.', [SortOrder] = 3.00 WHERE [Code] = 'NotProvided' END -END - -PRINT N'Populate RefProgramExitReason table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProgramExitReason]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '06262') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06262', 'Attempts to contact the parent and/or child were unsuccessful', 'Attempts to contact the parent and/or child were unsuccessful.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Attempts to contact the parent and/or child were unsuccessful', [Definition] = 'Attempts to contact the parent and/or child were unsuccessful.', [SortOrder] = 1.00 WHERE [Code] = '06262' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02226') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02226', 'Completion of IFSP prior to reaching maximum age for Part C', 'Completion of IFSP prior to reaching maximum age for Part C', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Completion of IFSP prior to reaching maximum age for Part C', [Definition] = 'Completion of IFSP prior to reaching maximum age for Part C', [SortOrder] = 2.00 WHERE [Code] = '02226' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '01923') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01923', 'Died or is permanently incapacitated', 'Died or is permanently incapacitated', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Died or is permanently incapacitated', [Definition] = 'Died or is permanently incapacitated', [SortOrder] = 5.00 WHERE [Code] = '01923' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '01927') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01927', 'Discontinued schooling', 'Discontinued schooling', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Discontinued schooling', [Definition] = 'Discontinued schooling', [SortOrder] = 6.00 WHERE [Code] = '01927' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02222') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02222', 'Discontinued schooling, not special education', 'Discontinued schooling, not special education', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Discontinued schooling, not special education', [Definition] = 'Discontinued schooling, not special education', [SortOrder] = 7.00 WHERE [Code] = '02222' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02221') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02221', 'Discontinued schooling, special education only', 'Discontinued schooling, special education only', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Discontinued schooling, special education only', [Definition] = 'Discontinued schooling, special education only', [SortOrder] = 8.00 WHERE [Code] = '02221' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02227') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02227', 'Eligible for IDEA, Part B', 'Eligible for IDEA, Part B', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Eligible for IDEA, Part B', [Definition] = 'Eligible for IDEA, Part B', [SortOrder] = 9.00 WHERE [Code] = '02227' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02224') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02224', 'Expulsion', 'Expulsion', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Expulsion', [Definition] = 'Expulsion', [SortOrder] = 10.00 WHERE [Code] = '02224' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02212') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02212', 'Graduated with a high school diploma', 'Graduated with a high school diploma', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Graduated with a high school diploma', [Definition] = 'Graduated with a high school diploma', [SortOrder] = 11.00 WHERE [Code] = '02212' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02231') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02231', 'Moved out of state', 'Moved out of state', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Moved out of state', [Definition] = 'Moved out of state', [SortOrder] = 12.00 WHERE [Code] = '02231' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02216') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02216', 'No longer receiving special education', 'No longer receiving special education', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'No longer receiving special education', [Definition] = 'No longer receiving special education', [SortOrder] = 13.00 WHERE [Code] = '02216' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '06261') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06261', 'Not eligible for Part B, exit with no referrals', 'Not eligible for Part B, exit with no referrals', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Not eligible for Part B, exit with no referrals', [Definition] = 'Not eligible for Part B, exit with no referrals', [SortOrder] = 14.00 WHERE [Code] = '06261' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '73075') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73075', 'Moved within the US, not known to be continuing', 'Moved within the US, not known to be continuing', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Moved within the US, not known to be continuing', [Definition] = 'Moved within the US, not known to be continuing', [SortOrder] = 14.00 WHERE [Code] = '73075' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02228') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02228', 'Not eligible for Part B, exit with referrals to other programs', 'Not eligible for Part B, exit with referrals to other programs', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Not eligible for Part B, exit with referrals to other programs', [Definition] = 'Not eligible for Part B, exit with referrals to other programs', [SortOrder] = 15.00 WHERE [Code] = '02228' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02230') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02230', 'Part B eligibility not determined', 'Part B eligibility not determined', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Part B eligibility not determined', [Definition] = 'Part B eligibility not determined', [SortOrder] = 16.00 WHERE [Code] = '02230' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02214') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02214', 'Program completion', 'Program completion', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Program completion', [Definition] = 'Program completion', [SortOrder] = 17.00 WHERE [Code] = '02214' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02225') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02225', 'Program discontinued', 'Program discontinued', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Program discontinued', [Definition] = 'Program discontinued', [SortOrder] = 18.00 WHERE [Code] = '02225' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02215') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02215', 'Reached maximum age', 'Reached maximum age', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Reached maximum age', [Definition] = 'Reached maximum age', [SortOrder] = 19.00 WHERE [Code] = '02215' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02213') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02213', 'Received certificate of completion, modified diploma, or finished IEP requirements', 'Received certificate of completion, modified diploma, or finished IEP requirements', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Received certificate of completion, modified diploma, or finished IEP requirements', [Definition] = 'Received certificate of completion, modified diploma, or finished IEP requirements', [SortOrder] = 20.00 WHERE [Code] = '02213' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02217') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02217', 'Refused services', 'Refused services', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Refused services', [Definition] = 'Refused services', [SortOrder] = 21.00 WHERE [Code] = '02217' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '73076') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73076', 'Student data claimed in error/never attended', 'Student data claimed in error/never attended', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Student data claimed in error/never attended', [Definition] = 'Student data claimed in error/never attended', [SortOrder] = 24.00 WHERE [Code] = '73076' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '73078') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73078', 'Student moved to another country, may or may not be continuing', 'Student moved to another country, may or may not be continuing', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Student moved to another country, may or may not be continuing', [Definition] = 'Student moved to another country, may or may not be continuing', [SortOrder] = 25.00 WHERE [Code] = '73078' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '73079') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73079', 'Student with disabilities remaining in school to receive transitional services', 'Student with disabilities who met the district graduation requirements for a regular diploma, but is remaining in school to receive transitional services deemed necessary by the IEP team.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Student with disabilities remaining in school to receive transitional services', [Definition] = 'Student with disabilities who met the district graduation requirements for a regular diploma, but is remaining in school to receive transitional services deemed necessary by the IEP team.', [SortOrder] = 25.00 WHERE [Code] = '73079' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02220') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02220', 'Suspended from school', 'Suspended from school', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Suspended from school', [Definition] = 'Suspended from school', [SortOrder] = 26.00 WHERE [Code] = '02220' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02406') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02406', 'Transferred to another district or school, known not to be continuing in program/service', 'Transferred to another district or school, known not to be continuing in program/service', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Transferred to another district or school, known not to be continuing in program/service', [Definition] = 'Transferred to another district or school, known not to be continuing in program/service', [SortOrder] = 30.00 WHERE [Code] = '02406' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02218') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02218', 'Transferred to another district or school, known to be continuing in program/service', 'Transferred to another district or school, known to be continuing in program/service', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Transferred to another district or school, known to be continuing in program/service', [Definition] = 'Transferred to another district or school, known to be continuing in program/service', [SortOrder] = 31.00 WHERE [Code] = '02218' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02219') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02219', 'Transferred to another district or school, not known to be continuing in program/service', 'Transferred to another district or school, not known to be continuing in program/service', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Transferred to another district or school, not known to be continuing in program/service', [Definition] = 'Transferred to another district or school, not known to be continuing in program/service', [SortOrder] = 32.00 WHERE [Code] = '02219' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '73077') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73077', 'Transferred to a juvenile or adult correctional facility where educational services are not provided', 'Transferred to a juvenile or adult correctional facility where educational services are not provided', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Transferred to a juvenile or adult correctional facility where educational services are not provided', [Definition] = 'Transferred to a juvenile or adult correctional facility where educational services are not provided', [SortOrder] = 36.00 WHERE [Code] = '73077' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02233') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02233', 'Unknown reason', 'Unknown reason', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Unknown reason', [Definition] = 'Unknown reason', [SortOrder] = 37.00 WHERE [Code] = '02233' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '02232') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02232', 'Withdrawal by a parent (or guardian)', 'Withdrawal by a parent (or guardian)', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Withdrawal by a parent (or guardian)', [Definition] = 'Withdrawal by a parent (or guardian)', [SortOrder] = 38.00 WHERE [Code] = '02232' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramExitReason] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefProgramExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramExitReason] -SET [Description] = 'Other', [Definition] = 'Other', [SortOrder] = 40.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefProgramGiftedEligibility table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProgramGiftedEligibility]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '13452') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13452', 'General Intellectual Aptitude only', 'The student''s eligibility for Gifted/Talented program is in the category: General Intellectual Aptitude only.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'General Intellectual Aptitude only', [Definition] = 'The student''s eligibility for Gifted/Talented program is in the category: General Intellectual Aptitude only.', [SortOrder] = 0.00 WHERE [Code] = '13452' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '13453') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13453', 'Specific Academic Aptitude only', 'The student''s eligibility for Gifted/Talented program is in the category: Specific Academic Aptitude only.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'Specific Academic Aptitude only', [Definition] = 'The student''s eligibility for Gifted/Talented program is in the category: Specific Academic Aptitude only.', [SortOrder] = 2.00 WHERE [Code] = '13453' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '13454') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13454', 'Visual/Performing Arts only', 'The student''s eligibility for Gifted/Talented program is in the category: Visual/Performing Arts only.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'Visual/Performing Arts only', [Definition] = 'The student''s eligibility for Gifted/Talented program is in the category: Visual/Performing Arts only.', [SortOrder] = 4.00 WHERE [Code] = '13454' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '13456') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13456', 'General Intellectual Aptitude & Specific Academic Aptitude', 'The student''s eligibility for Gifted/Talented program is in the category: General Intellectual Aptitude & Specific Academic Aptitude.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'General Intellectual Aptitude & Specific Academic Aptitude', [Definition] = 'The student''s eligibility for Gifted/Talented program is in the category: General Intellectual Aptitude & Specific Academic Aptitude.', [SortOrder] = 6.00 WHERE [Code] = '13456' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '13457') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13457', 'General Intellectual Aptitude & Visual/Performing Arts', 'The student''s eligibility for Gifted/Talented program is in the category: General Intellectual Aptitude & Visual/Performing Arts.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'General Intellectual Aptitude & Visual/Performing Arts', [Definition] = 'The student''s eligibility for Gifted/Talented program is in the category: General Intellectual Aptitude & Visual/Performing Arts.', [SortOrder] = 8.00 WHERE [Code] = '13457' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '13458') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13458', 'General Intellectual Aptitude & Technical/Practical Arts', 'The student''s eligibility for Gifted/Talented program is in the category: General Intellectual Aptitude & Technical/Practical Arts.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'General Intellectual Aptitude & Technical/Practical Arts', [Definition] = 'The student''s eligibility for Gifted/Talented program is in the category: General Intellectual Aptitude & Technical/Practical Arts.', [SortOrder] = 10.00 WHERE [Code] = '13458' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '13459') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13459', 'Specific Academic Aptitude & Visual/Performing Arts', 'The student''s eligibility for Gifted/Talented program is in the category: Specific Academic Aptitude & Visual/Performing Arts.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'Specific Academic Aptitude & Visual/Performing Arts', [Definition] = 'The student''s eligibility for Gifted/Talented program is in the category: Specific Academic Aptitude & Visual/Performing Arts.', [SortOrder] = 12.00 WHERE [Code] = '13459' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '13460') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13460', 'Specific Academic Aptitude & Technical/Practical Arts', 'The student''s eligibility for Gifted/Talented program is in the category: Specific Academic Aptitude & Technical/Practical Arts.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'Specific Academic Aptitude & Technical/Practical Arts', [Definition] = 'The student''s eligibility for Gifted/Talented program is in the category: Specific Academic Aptitude & Technical/Practical Arts.', [SortOrder] = 14.00 WHERE [Code] = '13460' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '13461') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13461', 'Visual/Performing Arts & Technical/Practical Arts', 'The student''s eligibility for Gifted/Talented program is in the category: Visual/Performing Arts & Technical/Practical Arts.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'Visual/Performing Arts & Technical/Practical Arts', [Definition] = 'The student''s eligibility for Gifted/Talented program is in the category: Visual/Performing Arts & Technical/Practical Arts.', [SortOrder] = 16.00 WHERE [Code] = '13461' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '13462') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13462', 'General Intellectual Aptitude, Specific Academic Aptitude, and Visual Performing Arts', 'The student''s eligibility for Gifted/Talented program is in the category: General Intellectual Aptitude, Specific Academic Aptitude, and Visual Performing Arts.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'General Intellectual Aptitude, Specific Academic Aptitude, and Visual Performing Arts', [Definition] = 'The student''s eligibility for Gifted/Talented program is in the category: General Intellectual Aptitude, Specific Academic Aptitude, and Visual Performing Arts.', [SortOrder] = 18.00 WHERE [Code] = '13462' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '13463') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13463', 'General Intellectual Aptitude, Specific Academic Aptitude, & Technical/Practical Arts', 'The student''s eligibility for Gifted/Talented program is in the category: General Intellectual Aptitude, Specific Academic Aptitude, & Technical/Practical Arts.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'General Intellectual Aptitude, Specific Academic Aptitude, & Technical/Practical Arts', [Definition] = 'The student''s eligibility for Gifted/Talented program is in the category: General Intellectual Aptitude, Specific Academic Aptitude, & Technical/Practical Arts.', [SortOrder] = 20.00 WHERE [Code] = '13463' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '13464') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13464', 'Specific Academic Aptitude, Visual/Performing Arts, & Technical/Practical Arts', 'The student''s eligibility for Gifted/Talented program is in the category: Specific Academic Aptitude, Visual/Performing Arts, & Technical/Practical Arts.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'Specific Academic Aptitude, Visual/Performing Arts, & Technical/Practical Arts', [Definition] = 'The student''s eligibility for Gifted/Talented program is in the category: Specific Academic Aptitude, Visual/Performing Arts, & Technical/Practical Arts.', [SortOrder] = 22.00 WHERE [Code] = '13464' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '13465') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13465', 'General Intellectual & Specific Academic Aptitude, Visual/Performing Arts & Technical/Practical Arts', 'The student''s eligibility for Gifted/Talented program is in the category: General Intellectual & Specific Academic Aptitude, Visual/Performing Arts & Technical/Practical Arts.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'General Intellectual & Specific Academic Aptitude, Visual/Performing Arts & Technical/Practical Arts', [Definition] = 'The student''s eligibility for Gifted/Talented program is in the category: General Intellectual & Specific Academic Aptitude, Visual/Performing Arts & Technical/Practical Arts.', [SortOrder] = 24.00 WHERE [Code] = '13465' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '06002') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06002', 'Not specified', 'The student''s eligibility for Gifted/Talented program is in the category is not specified.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'Not specified', [Definition] = 'The student''s eligibility for Gifted/Talented program is in the category is not specified.', [SortOrder] = 26.00 WHERE [Code] = '06002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramGiftedEligibility] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefProgramGiftedEligibility]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'The student''s eligibility for Gifted/Talented program is in a category not yet defined in CEDS.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramGiftedEligibility] -SET [Description] = 'Other', [Definition] = 'The student''s eligibility for Gifted/Talented program is in a category not yet defined in CEDS.', [SortOrder] = 28.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefProgramLengthHoursType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProgramLengthHoursType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramLengthHoursType] WHERE [Code] = 'Credit') BEGIN INSERT INTO dbo.[RefProgramLengthHoursType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Credit', 'Credit', 'Credit is the type of hours (credit or contact) by which the normal length of a program of study is measured.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramLengthHoursType] -SET [Description] = 'Credit', [Definition] = 'Credit is the type of hours (credit or contact) by which the normal length of a program of study is measured.', [SortOrder] = 1.00 WHERE [Code] = 'Credit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramLengthHoursType] WHERE [Code] = 'Contact') BEGIN INSERT INTO dbo.[RefProgramLengthHoursType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Contact', 'Contact', 'Contact is the type of hours (credit or contact) by which the normal length of a program of study is measured.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramLengthHoursType] -SET [Description] = 'Contact', [Definition] = 'Contact is the type of hours (credit or contact) by which the normal length of a program of study is measured.', [SortOrder] = 2.00 WHERE [Code] = 'Contact' END -END - -PRINT N'Populate RefProgramSponsorType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProgramSponsorType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramSponsorType] WHERE [Code] = 'Business') BEGIN INSERT INTO dbo.[RefProgramSponsorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Business', 'Business', 'A business is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramSponsorType] -SET [Description] = 'Business', [Definition] = 'A business is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', [SortOrder] = 1.00 WHERE [Code] = 'Business' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramSponsorType] WHERE [Code] = 'EducationOrganizationNetwork') BEGIN INSERT INTO dbo.[RefProgramSponsorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EducationOrganizationNetwork', 'Education organization network', 'An education organization network is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramSponsorType] -SET [Description] = 'Education organization network', [Definition] = 'An education organization network is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', [SortOrder] = 2.00 WHERE [Code] = 'EducationOrganizationNetwork' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramSponsorType] WHERE [Code] = 'EducationServiceCenter') BEGIN INSERT INTO dbo.[RefProgramSponsorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EducationServiceCenter', 'Education Service Center', 'An education Service Center is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramSponsorType] -SET [Description] = 'Education Service Center', [Definition] = 'An education Service Center is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', [SortOrder] = 3.00 WHERE [Code] = 'EducationServiceCenter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramSponsorType] WHERE [Code] = 'Federal') BEGIN INSERT INTO dbo.[RefProgramSponsorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Federal', 'Federal government', 'The federal government is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramSponsorType] -SET [Description] = 'Federal government', [Definition] = 'The federal government is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', [SortOrder] = 4.00 WHERE [Code] = 'Federal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramSponsorType] WHERE [Code] = 'LEA') BEGIN INSERT INTO dbo.[RefProgramSponsorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LEA', 'Local education agency', 'The local education agency is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramSponsorType] -SET [Description] = 'Local education agency', [Definition] = 'The local education agency is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', [SortOrder] = 5.00 WHERE [Code] = 'LEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramSponsorType] WHERE [Code] = 'NonProfit') BEGIN INSERT INTO dbo.[RefProgramSponsorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NonProfit', 'Non-profit organization', 'A non-profit organization is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramSponsorType] -SET [Description] = 'Non-profit organization', [Definition] = 'A non-profit organization is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', [SortOrder] = 7.00 WHERE [Code] = 'NonProfit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramSponsorType] WHERE [Code] = 'Postsecondary') BEGIN INSERT INTO dbo.[RefProgramSponsorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Postsecondary', 'Postsecondary institution', 'A postsecondary institution is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramSponsorType] -SET [Description] = 'Postsecondary institution', [Definition] = 'A postsecondary institution is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', [SortOrder] = 9.00 WHERE [Code] = 'Postsecondary' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramSponsorType] WHERE [Code] = 'Private') BEGIN INSERT INTO dbo.[RefProgramSponsorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Private', 'Private organization', 'A private organization is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramSponsorType] -SET [Description] = 'Private organization', [Definition] = 'A private organization is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', [SortOrder] = 11.00 WHERE [Code] = 'Private' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramSponsorType] WHERE [Code] = 'Regional') BEGIN INSERT INTO dbo.[RefProgramSponsorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Regional', 'Regional or intermediate education agency', 'A regional or intermediate education agency is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramSponsorType] -SET [Description] = 'Regional or intermediate education agency', [Definition] = 'A regional or intermediate education agency is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', [SortOrder] = 13.00 WHERE [Code] = 'Regional' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramSponsorType] WHERE [Code] = 'Religious') BEGIN INSERT INTO dbo.[RefProgramSponsorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Religious', 'Religious organization', 'A religious organization is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramSponsorType] -SET [Description] = 'Religious organization', [Definition] = 'A religious organization is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', [SortOrder] = 15.00 WHERE [Code] = 'Religious' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramSponsorType] WHERE [Code] = 'School') BEGIN INSERT INTO dbo.[RefProgramSponsorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('School', 'School', 'The school is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramSponsorType] -SET [Description] = 'School', [Definition] = 'The school is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', [SortOrder] = 17.00 WHERE [Code] = 'School' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramSponsorType] WHERE [Code] = 'SEA') BEGIN INSERT INTO dbo.[RefProgramSponsorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SEA', 'State Education Agency', 'The State Education Agency is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramSponsorType] -SET [Description] = 'State Education Agency', [Definition] = 'The State Education Agency is providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', [SortOrder] = 19.00 WHERE [Code] = 'SEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramSponsorType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefProgramSponsorType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The category of organization providing funds for the particular educational or service program or activity or for an individual''s participation in the program or activity is not yet defined in CEDS.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramSponsorType] -SET [Description] = 'Other', [Definition] = 'The category of organization providing funds for the particular educational or service program or activity or for an individual''s participation in the program or activity is not yet defined in CEDS.', [SortOrder] = 21.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefProgramType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProgramType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '73056') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73056', 'Adult Basic Education', 'Adult Basic Education', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Adult Basic Education', [Definition] = 'Adult Basic Education', [SortOrder] = 0.00 WHERE [Code] = '73056' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '73058') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73058', 'Adult English as a Second Language', 'Adult English as a Second Language', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Adult English as a Second Language', [Definition] = 'Adult English as a Second Language', [SortOrder] = 2.00 WHERE [Code] = '73058' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '73057') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73057', 'Adult Secondary Education', 'Adult Secondary Education', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Adult Secondary Education', [Definition] = 'Adult Secondary Education', [SortOrder] = 4.00 WHERE [Code] = '73057' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04961') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04961', 'Alternative Education', 'Alternative Education', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Alternative Education', [Definition] = 'Alternative Education', [SortOrder] = 10.00 WHERE [Code] = '04961' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04932') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04932', 'Athletics', 'Athletics', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Athletics', [Definition] = 'Athletics', [SortOrder] = 12.00 WHERE [Code] = '04932' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04923') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04923', 'Bilingual education program', 'Bilingual education program', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Bilingual education program', [Definition] = 'Bilingual education program', [SortOrder] = 13.00 WHERE [Code] = '04923' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04906') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04906', 'Career and Technical Education', 'Career and Technical Education', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Career and Technical Education', [Definition] = 'Career and Technical Education', [SortOrder] = 14.00 WHERE [Code] = '04906' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04931') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04931', 'Cocurricular programs', 'Cocurricular programs', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Cocurricular programs', [Definition] = 'Cocurricular programs', [SortOrder] = 16.00 WHERE [Code] = '04931' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04958') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04958', 'College preparatory', 'College preparatory', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'College preparatory', [Definition] = 'College preparatory', [SortOrder] = 18.00 WHERE [Code] = '04958' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04945') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04945', 'Community service program', 'Community service program', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Community service program', [Definition] = 'Community service program', [SortOrder] = 20.00 WHERE [Code] = '04945' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04944') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04944', 'Community/junior college education program', 'Community/junior college education program', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Community/junior college education program', [Definition] = 'Community/junior college education program', [SortOrder] = 22.00 WHERE [Code] = '04944' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04922') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04922', 'Compensatory services for disadvantaged students', 'Compensatory services for disadvantaged students', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Compensatory services for disadvantaged students', [Definition] = 'Compensatory services for disadvantaged students', [SortOrder] = 24.00 WHERE [Code] = '04922' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '73059') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73059', 'Continuing Education', 'Continuing Education', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Continuing Education', [Definition] = 'Continuing Education', [SortOrder] = 25.00 WHERE [Code] = '73059' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04956') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04956', 'Counseling services', 'Counseling services', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Counseling services', [Definition] = 'Counseling services', [SortOrder] = 26.00 WHERE [Code] = '04956' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '14609') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14609', 'Early Head Start', 'Early Head Start', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Early Head Start', [Definition] = 'Early Head Start', [SortOrder] = 27.00 WHERE [Code] = '14609' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04928') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04928', 'English as a second language (ESL) program', 'English as a second language (ESL) program', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'English as a second language (ESL) program', [Definition] = 'English as a second language (ESL) program', [SortOrder] = 28.00 WHERE [Code] = '04928' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04919') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04919', 'Even Start', 'Even Start', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Even Start', [Definition] = 'Even Start', [SortOrder] = 30.00 WHERE [Code] = '04919' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04955') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04955', 'Extended day/child care services', 'Extended day/child care services', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Extended day/child care services', [Definition] = 'Extended day/child care services', [SortOrder] = 32.00 WHERE [Code] = '04955' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75000') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75000', 'Foster Care', 'Foster Care', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Foster Care', [Definition] = 'Foster Care', [SortOrder] = 33.00 WHERE [Code] = '75000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04930') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04930', 'Gifted and talented program', 'Gifted and talented program', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Gifted and talented program', [Definition] = 'Gifted and talented program', [SortOrder] = 34.00 WHERE [Code] = '04930' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04918') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04918', 'Head start', 'Head start', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Head start', [Definition] = 'Head start', [SortOrder] = 36.00 WHERE [Code] = '04918' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04963') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04963', 'Health Services Program', 'Health Services Program', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Health Services Program', [Definition] = 'Health Services Program', [SortOrder] = 38.00 WHERE [Code] = '04963' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04957') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04957', 'Immigrant education', 'Immigrant education', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Immigrant education', [Definition] = 'Immigrant education', [SortOrder] = 40.00 WHERE [Code] = '04957' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04921') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04921', 'Indian education', 'Indian education', 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Indian education', [Definition] = 'Indian education', [SortOrder] = 42.00 WHERE [Code] = '04921' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04959') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04959', 'International Baccalaureate', 'International Baccalaureate', 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'International Baccalaureate', [Definition] = 'International Baccalaureate', [SortOrder] = 44.00 WHERE [Code] = '04959' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04962') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04962', 'Library/Media Services Program', 'Library/Media Services Program', 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Library/Media Services Program', [Definition] = 'Library/Media Services Program', [SortOrder] = 46.00 WHERE [Code] = '04962' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04960') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04960', 'Magnet/Special Program Emphasis', 'Magnet/Special Program Emphasis', 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Magnet/Special Program Emphasis', [Definition] = 'Magnet/Special Program Emphasis', [SortOrder] = 48.00 WHERE [Code] = '04960' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04920') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04920', 'Migrant education', 'Migrant education', 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Migrant education', [Definition] = 'Migrant education', [SortOrder] = 50.00 WHERE [Code] = '04920' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04887') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04887', 'Regular education', 'Regular education', 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Regular education', [Definition] = 'Regular education', [SortOrder] = 52.00 WHERE [Code] = '04887' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04964') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04964', 'Remedial education', 'Remedial education', 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Remedial education', [Definition] = 'Remedial education', [SortOrder] = 54.00 WHERE [Code] = '04964' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04967') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04967', 'Section 504 Placement', 'Section 504 Placement', 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Section 504 Placement', [Definition] = 'Section 504 Placement', [SortOrder] = 56.00 WHERE [Code] = '04967' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04966') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04966', 'Service learning', 'Service learning', 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Service learning', [Definition] = 'Service learning', [SortOrder] = 58.00 WHERE [Code] = '04966' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04888') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04888', 'Special Education Services', 'Special Education Services', 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Special Education Services', [Definition] = 'Special Education Services', [SortOrder] = 60.00 WHERE [Code] = '04888' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04954') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04954', 'Student retention/ Dropout Prevention', 'Student retention/ Dropout Prevention', 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Student retention/ Dropout Prevention', [Definition] = 'Student retention/ Dropout Prevention', [SortOrder] = 62.00 WHERE [Code] = '04954' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04953') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04953', 'Substance abuse education/prevention', 'Substance abuse education/prevention', 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Substance abuse education/prevention', [Definition] = 'Substance abuse education/prevention', [SortOrder] = 64.00 WHERE [Code] = '04953' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '73204') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73204', 'Targeted intervention program', 'Targeted intervention program', 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Targeted intervention program', [Definition] = 'Targeted intervention program', [SortOrder] = 65.00 WHERE [Code] = '73204' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04968') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04968', 'Teacher professional development / Mentoring', 'Teacher professional development / Mentoring', 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Teacher professional development / Mentoring', [Definition] = 'Teacher professional development / Mentoring', [SortOrder] = 66.00 WHERE [Code] = '04968' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '04917') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04917', 'Technical preparatory', 'Technical preparatory', 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Technical preparatory', [Definition] = 'Technical preparatory', [SortOrder] = 68.00 WHERE [Code] = '04917' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75001') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75001', 'Title I', 'Title I', 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Title I', [Definition] = 'Title I', [SortOrder] = 69.00 WHERE [Code] = '75001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '73090') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73090', 'Work-based Learning Opportunities', 'Work-based Learning Opportunities', 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Work-based Learning Opportunities', [Definition] = 'Work-based Learning Opportunities', [SortOrder] = 70.00 WHERE [Code] = '73090' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75014') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75014', 'Autism program', 'A program specifically designed for students with the IDEA Disability Type autism.', 71.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Autism program', [Definition] = 'A program specifically designed for students with the IDEA Disability Type autism.', [SortOrder] = 71.00 WHERE [Code] = '75014' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'The program type is in a category not yet defined in CEDS.', 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Other', [Definition] = 'The program type is in a category not yet defined in CEDS.', [SortOrder] = 72.00 WHERE [Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75015') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75015', 'Early childhood special education tier one program', 'A program specifically designed for early childhood special education students that provides services to special education students with an intensity defined by the state or other authoritative organization.', 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Early childhood special education tier one program', [Definition] = 'A program specifically designed for early childhood special education students that provides services to special education students with an intensity defined by the state or other authoritative organization.', [SortOrder] = 72.00 WHERE [Code] = '75015' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75016') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75016', 'Early childhood special education tier two program', 'A program specifically designed for early childhood special education students that provides services to special education students with an intensity, as defined by the state or other authoritative organization, greater than the early childhood special education tier one program.', 73.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Early childhood special education tier two program', [Definition] = 'A program specifically designed for early childhood special education students that provides services to special education students with an intensity, as defined by the state or other authoritative organization, greater than the early childhood special education tier one program.', [SortOrder] = 73.00 WHERE [Code] = '75016' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75002') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75002', 'Early College', 'A program of study in which students participate in a comprehensive plan that integrates their high school course of study and an intentionally designed authentic postsecondary experience leading to their regular high school diploma, an official college transcript, and transferable college credit towards a recognized postsecondary degree or credential.', 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Early College', [Definition] = 'A program of study in which students participate in a comprehensive plan that integrates their high school course of study and an intentionally designed authentic postsecondary experience leading to their regular high school diploma, an official college transcript, and transferable college credit towards a recognized postsecondary degree or credential.', [SortOrder] = 74.00 WHERE [Code] = '75002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75006') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75006', 'Emotional disturbance program', 'A program specifically designed for students with the IDEA Disability Type emotional disturbance.', 75.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Emotional disturbance program', [Definition] = 'A program specifically designed for students with the IDEA Disability Type emotional disturbance.', [SortOrder] = 75.00 WHERE [Code] = '75006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75008') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75008', 'Hearing impairment program', 'A program specifically designed for students with the IDEA Disability Type hearing impairment.', 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Hearing impairment program', [Definition] = 'A program specifically designed for students with the IDEA Disability Type hearing impairment.', [SortOrder] = 76.00 WHERE [Code] = '75008' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75017') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75017', 'K12 Resource Program', 'A program designed to provide additional resources to special education students.', 77.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'K12 Resource Program', [Definition] = 'A program designed to provide additional resources to special education students.', [SortOrder] = 77.00 WHERE [Code] = '75017' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75003') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75003', 'Mild cognitive disability program', 'A program specifically designed for students who have been determined to have a mild cognitive disability.', 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Mild cognitive disability program', [Definition] = 'A program specifically designed for students who have been determined to have a mild cognitive disability.', [SortOrder] = 78.00 WHERE [Code] = '75003' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75004') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75004', 'Moderate cognitive disability program', 'A program specifically designed for students who have been determined to have a moderate cognitive disability.', 79.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Moderate cognitive disability program', [Definition] = 'A program specifically designed for students who have been determined to have a moderate cognitive disability.', [SortOrder] = 79.00 WHERE [Code] = '75004' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75012') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75012', 'Multiple disabilities program', 'A program specifically designed for students with the IDEA Disability type multiple disabilities.', 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Multiple disabilities program', [Definition] = 'A program specifically designed for students with the IDEA Disability type multiple disabilities.', [SortOrder] = 80.00 WHERE [Code] = '75012' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75011') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75011', 'Orthopedic impairment', 'A program specifically designed for students with the IDEA Disability Type orthopedic impairments.', 81.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Orthopedic impairment', [Definition] = 'A program specifically designed for students with the IDEA Disability Type orthopedic impairments.', [SortOrder] = 81.00 WHERE [Code] = '75011' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75010') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75010', 'Other health impairment', 'A program specifically designed for students with the IDEA Disability Type other health impairments.', 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Other health impairment', [Definition] = 'A program specifically designed for students with the IDEA Disability Type other health impairments.', [SortOrder] = 82.00 WHERE [Code] = '75010' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75005') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75005', 'Significant cognitive disability program', 'A program specifically designed for students who have been determined to have a significant cognitive disability.', 83.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Significant cognitive disability program', [Definition] = 'A program specifically designed for students who have been determined to have a significant cognitive disability.', [SortOrder] = 83.00 WHERE [Code] = '75005' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75007') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75007', 'Specific learning disability program', 'A program specifically designed for students with the IDEA Disability Type specific learning disability', 84.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Specific learning disability program', [Definition] = 'A program specifically designed for students with the IDEA Disability Type specific learning disability', [SortOrder] = 84.00 WHERE [Code] = '75007' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75013') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75013', 'Speech or language impairment program', 'A program specifically designed for students with the IDEA Disability Type speech or language impairment.', 85.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Speech or language impairment program', [Definition] = 'A program specifically designed for students with the IDEA Disability Type speech or language impairment.', [SortOrder] = 85.00 WHERE [Code] = '75013' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75009') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75009', 'Visual impairment program', 'A program specifically designed for students with the IDEA Disability Type visual health impairment.', 86.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Visual impairment program', [Definition] = 'A program specifically designed for students with the IDEA Disability Type visual health impairment.', [SortOrder] = 86.00 WHERE [Code] = '75009' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75018') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75018', 'Hospital', 'Hospital', 87.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Hospital', [Definition] = 'Hospital', [SortOrder] = 87.00 WHERE [Code] = '75018' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '76000') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('76000', 'McKinney-Vento Homeless', 'McKinney-Vento Education for Homeless Children and Youth Program', 88.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'McKinney-Vento Homeless', [Definition] = 'McKinney-Vento Education for Homeless Children and Youth Program', [SortOrder] = 88.00 WHERE [Code] = '76000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '77000') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('77000', 'Title III LIEP', 'Title III language instruction educational program (LIEP)', 89.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] -SET [Description] = 'Title III LIEP', [Definition] = 'Title III language instruction educational program (LIEP)', [SortOrder] = 89.00 WHERE [Code] = '77000' END -END - -PRINT N'Populate RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus] WHERE [Code] = 'NOSTUDENTS') BEGIN INSERT INTO dbo.[RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NOSTUDENTS', 'No students in the subgroup', 'There are no students in a student subgroup.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus] -SET [Description] = 'No students in the subgroup', [Definition] = 'There are no students in a student subgroup.', [SortOrder] = 1.00 WHERE [Code] = 'NOSTUDENTS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus] WHERE [Code] = 'STTDEF') BEGIN INSERT INTO dbo.[RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('STTDEF', 'State defined status', 'A status defined by the state.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus] -SET [Description] = 'State defined status', [Definition] = 'A status defined by the state.', [SortOrder] = 2.00 WHERE [Code] = 'STTDEF' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus] WHERE [Code] = 'TOOFEW') BEGIN INSERT INTO dbo.[RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TOOFEW', 'Too few students', 'The number of students in the school or for a student group was less than the minimum group size necessary or required to reliably calculate the indicator.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus] -SET [Description] = 'Too few students', [Definition] = 'The number of students in the school or for a student group was less than the minimum group size necessary or required to reliably calculate the indicator.', [SortOrder] = 3.00 WHERE [Code] = 'TOOFEW' END -END - -PRINT N'Populate RefProgressLevel table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProgressLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgressLevel] WHERE [Code] = 'NEGGRADE') BEGIN INSERT INTO dbo.[RefProgressLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NEGGRADE', 'Negative grade level change', 'The students showed a negative grade level change from the pre- to post- test', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgressLevel] -SET [Description] = 'Negative grade level change', [Definition] = 'The students showed a negative grade level change from the pre- to post- test', [SortOrder] = 1.00 WHERE [Code] = 'NEGGRADE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgressLevel] WHERE [Code] = 'NOCHANGE') BEGIN INSERT INTO dbo.[RefProgressLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NOCHANGE', 'No change', 'The students showed no change from the pre- to post- test', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgressLevel] -SET [Description] = 'No change', [Definition] = 'The students showed no change from the pre- to post- test', [SortOrder] = 2.00 WHERE [Code] = 'NOCHANGE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgressLevel] WHERE [Code] = 'UPHALFGRADE') BEGIN INSERT INTO dbo.[RefProgressLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UPHALFGRADE', 'Improvement of up to one half grade level', 'The students showed improvement of up to one half grade level from the pre- to post- test', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgressLevel] -SET [Description] = 'Improvement of up to one half grade level', [Definition] = 'The students showed improvement of up to one half grade level from the pre- to post- test', [SortOrder] = 3.00 WHERE [Code] = 'UPHALFGRADE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgressLevel] WHERE [Code] = 'UPONEGRADE') BEGIN INSERT INTO dbo.[RefProgressLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UPONEGRADE', 'Improvement from one half grade level up to one full grade level', 'The students showed improvement from one half grade level up to one full grade level from the pre- to post- test', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgressLevel] -SET [Description] = 'Improvement from one half grade level up to one full grade level', [Definition] = 'The students showed improvement from one half grade level up to one full grade level from the pre- to post- test', [SortOrder] = 4.00 WHERE [Code] = 'UPONEGRADE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgressLevel] WHERE [Code] = 'UPGTONE') BEGIN INSERT INTO dbo.[RefProgressLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UPGTONE', 'Improvement of more than one full grade level', 'The students showed improvement of more than one full grade level from the pre- to post- test', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgressLevel] -SET [Description] = 'Improvement of more than one full grade level', [Definition] = 'The students showed improvement of more than one full grade level from the pre- to post- test', [SortOrder] = 5.00 WHERE [Code] = 'UPGTONE' END -END - -PRINT N'Populate RefProjectBasedLearningType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProjectBasedLearningType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProjectBasedLearningType] WHERE [Code] = '1000') BEGIN INSERT INTO dbo.[RefProjectBasedLearningType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1000', 'Primarily Projects', 'Projects are a central approach to learning core content and skills, rather than added on as extra activities once core content is covered.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProjectBasedLearningType] -SET [Description] = 'Primarily Projects', [Definition] = 'Projects are a central approach to learning core content and skills, rather than added on as extra activities once core content is covered.', [SortOrder] = 1.00 WHERE [Code] = '1000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProjectBasedLearningType] WHERE [Code] = '1001') BEGIN INSERT INTO dbo.[RefProjectBasedLearningType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1001', 'Student-developed', 'Projects are developed by students with teacher guidance. Students are likely to be working on diverse project topics and goals.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProjectBasedLearningType] -SET [Description] = 'Student-developed', [Definition] = 'Projects are developed by students with teacher guidance. Students are likely to be working on diverse project topics and goals.', [SortOrder] = 2.00 WHERE [Code] = '1001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProjectBasedLearningType] WHERE [Code] = '1002') BEGIN INSERT INTO dbo.[RefProjectBasedLearningType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1002', 'Teacher-developed', 'Projects are developed by teachers and executed by students.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProjectBasedLearningType] -SET [Description] = 'Teacher-developed', [Definition] = 'Projects are developed by teachers and executed by students.', [SortOrder] = 3.00 WHERE [Code] = '1002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProjectBasedLearningType] WHERE [Code] = '9999') BEGIN INSERT INTO dbo.[RefProjectBasedLearningType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('9999', 'Other', 'The type of project-based instruction being offered is in a category not yet defined in CEDS.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProjectBasedLearningType] -SET [Description] = 'Other', [Definition] = 'The type of project-based instruction being offered is in a category not yet defined in CEDS.', [SortOrder] = 99.00 WHERE [Code] = '9999' END -END - -PRINT N'Populate RefPromotionReason table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPromotionReason]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPromotionReason] WHERE [Code] = 'AcceleratedPromotion') BEGIN INSERT INTO dbo.[RefPromotionReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AcceleratedPromotion', 'Accelerated promotion', 'Accelerated promotion is the nature of the student''s promotion or progress at the end of a given school term.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPromotionReason] -SET [Description] = 'Accelerated promotion', [Definition] = 'Accelerated promotion is the nature of the student''s promotion or progress at the end of a given school term.', [SortOrder] = 1.00 WHERE [Code] = 'AcceleratedPromotion' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPromotionReason] WHERE [Code] = 'ContinuousPromotion') BEGIN INSERT INTO dbo.[RefPromotionReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ContinuousPromotion', 'Continuous promotion', 'Continuous promotion is the nature of the student''s promotion or progress at the end of a given school term.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPromotionReason] -SET [Description] = 'Continuous promotion', [Definition] = 'Continuous promotion is the nature of the student''s promotion or progress at the end of a given school term.', [SortOrder] = 2.00 WHERE [Code] = 'ContinuousPromotion' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPromotionReason] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefPromotionReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The nature of the student''s promotion or progress at the end of a given school term is in a category not yet defined in CEDS.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPromotionReason] -SET [Description] = 'Other', [Definition] = 'The nature of the student''s promotion or progress at the end of a given school term is in a category not yet defined in CEDS.', [SortOrder] = 3.00 WHERE [Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPromotionReason] WHERE [Code] = 'ProbationaryPromotion') BEGIN INSERT INTO dbo.[RefPromotionReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ProbationaryPromotion', 'Probationary promotion', 'Probationary promotion is the nature of the student''s promotion or progress at the end of a given school term.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPromotionReason] -SET [Description] = 'Probationary promotion', [Definition] = 'Probationary promotion is the nature of the student''s promotion or progress at the end of a given school term.', [SortOrder] = 4.00 WHERE [Code] = 'ProbationaryPromotion' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPromotionReason] WHERE [Code] = 'RegularPromotion') BEGIN INSERT INTO dbo.[RefPromotionReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RegularPromotion', 'Regular promotion', 'Regular promotion is the nature of the student''s promotion or progress at the end of a given school term.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPromotionReason] -SET [Description] = 'Regular promotion', [Definition] = 'Regular promotion is the nature of the student''s promotion or progress at the end of a given school term.', [SortOrder] = 5.00 WHERE [Code] = 'RegularPromotion' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPromotionReason] WHERE [Code] = 'VariableProgress') BEGIN INSERT INTO dbo.[RefPromotionReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VariableProgress', 'Variable progress', 'Variable progress is the nature of the student''s promotion or progress at the end of a given school term.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPromotionReason] -SET [Description] = 'Variable progress', [Definition] = 'Variable progress is the nature of the student''s promotion or progress at the end of a given school term.', [SortOrder] = 6.00 WHERE [Code] = 'VariableProgress' END -END - -PRINT N'Populate RefProofOfResidencyType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefProofOfResidencyType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProofOfResidencyType] WHERE [Code] = 'BankStatement') BEGIN INSERT INTO dbo.[RefProofOfResidencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BankStatement', 'Bank statement', 'Bank statement was used as proof of residency.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProofOfResidencyType] -SET [Description] = 'Bank statement', [Definition] = 'Bank statement was used as proof of residency.', [SortOrder] = 1.00 WHERE [Code] = 'BankStatement' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProofOfResidencyType] WHERE [Code] = 'UtilityBill') BEGIN INSERT INTO dbo.[RefProofOfResidencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UtilityBill', 'Utility bill', 'Utility bill was used as proof of residency.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProofOfResidencyType] -SET [Description] = 'Utility bill', [Definition] = 'Utility bill was used as proof of residency.', [SortOrder] = 2.00 WHERE [Code] = 'UtilityBill' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProofOfResidencyType] WHERE [Code] = 'Lease') BEGIN INSERT INTO dbo.[RefProofOfResidencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Lease', 'Lease', 'Lease was used as proof of residency.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProofOfResidencyType] -SET [Description] = 'Lease', [Definition] = 'Lease was used as proof of residency.', [SortOrder] = 3.00 WHERE [Code] = 'Lease' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefProofOfResidencyType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefProofOfResidencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'Other was used as proof of residency.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProofOfResidencyType] -SET [Description] = 'Other', [Definition] = 'Other was used as proof of residency.', [SortOrder] = 4.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefPsEnrollmentAction table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPsEnrollmentAction]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentAction] WHERE [Code] = 'NoInformation') BEGIN INSERT INTO dbo.[RefPsEnrollmentAction]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoInformation', 'No information', 'No information is available about the action taken with respect to postsecondary enrollment by the student who graduated from the school, LEA or state in the past two years.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentAction] -SET [Description] = 'No information', [Definition] = 'No information is available about the action taken with respect to postsecondary enrollment by the student who graduated from the school, LEA or state in the past two years.', [SortOrder] = 1.00 WHERE [Code] = 'NoInformation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentAction] WHERE [Code] = 'Enrolled') BEGIN INSERT INTO dbo.[RefPsEnrollmentAction]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Enrolled', 'Enrolled', 'The student who graduated from the school, LEA or state in the past two years enrolled in a postsecondary institution.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentAction] -SET [Description] = 'Enrolled', [Definition] = 'The student who graduated from the school, LEA or state in the past two years enrolled in a postsecondary institution.', [SortOrder] = 2.00 WHERE [Code] = 'Enrolled' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentAction] WHERE [Code] = 'NotEnrolled') BEGIN INSERT INTO dbo.[RefPsEnrollmentAction]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotEnrolled', 'Not enrolled', 'The student who graduated from the school, LEA or state in the past two years was NOT enrolled in a postsecondary institution.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentAction] -SET [Description] = 'Not enrolled', [Definition] = 'The student who graduated from the school, LEA or state in the past two years was NOT enrolled in a postsecondary institution.', [SortOrder] = 3.00 WHERE [Code] = 'NotEnrolled' END -END - -PRINT N'Populate RefPsEnrollmentAwardType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPsEnrollmentAwardType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentAwardType] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefPsEnrollmentAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Postsecondary award, certificate, or diploma of less than 1 academic year', 'Postsecondary award, certificate, or diploma of less than 1 academic year is the award level in which the person is currently enrolled.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentAwardType] -SET [Description] = 'Postsecondary award, certificate, or diploma of less than 1 academic year', [Definition] = 'Postsecondary award, certificate, or diploma of less than 1 academic year is the award level in which the person is currently enrolled.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentAwardType] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefPsEnrollmentAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Postsecondary award, certificate, or diploma of at least 1 but less than 2 academic years', 'Postsecondary award, certificate, or diploma of at least 1 but less than 2 academic years is the award level in which the person is currently enrolled.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentAwardType] -SET [Description] = 'Postsecondary award, certificate, or diploma of at least 1 but less than 2 academic years', [Definition] = 'Postsecondary award, certificate, or diploma of at least 1 but less than 2 academic years is the award level in which the person is currently enrolled.', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentAwardType] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefPsEnrollmentAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Associate''s Degree', 'Associate''s Degree is the award level in which the person is currently enrolled.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentAwardType] -SET [Description] = 'Associate''s Degree', [Definition] = 'Associate''s Degree is the award level in which the person is currently enrolled.', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentAwardType] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefPsEnrollmentAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Postsecondary award, certificate, or diploma of at least 2 but less than 4 academic years', 'Postsecondary award, certificate, or diploma of at least 2 but less than 4 academic years is the award level in which the person is currently enrolled.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentAwardType] -SET [Description] = 'Postsecondary award, certificate, or diploma of at least 2 but less than 4 academic years', [Definition] = 'Postsecondary award, certificate, or diploma of at least 2 but less than 4 academic years is the award level in which the person is currently enrolled.', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentAwardType] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefPsEnrollmentAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Bachelor''s Degree', 'Bachelor''s Degree is the award level in which the person is currently enrolled.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentAwardType] -SET [Description] = 'Bachelor''s Degree', [Definition] = 'Bachelor''s Degree is the award level in which the person is currently enrolled.', [SortOrder] = 5.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentAwardType] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefPsEnrollmentAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Postbaccalaureate Certificate', 'Postbaccalaureate Certificate is the award level in which the person is currently enrolled.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentAwardType] -SET [Description] = 'Postbaccalaureate Certificate', [Definition] = 'Postbaccalaureate Certificate is the award level in which the person is currently enrolled.', [SortOrder] = 6.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentAwardType] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefPsEnrollmentAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Master''s Degree', 'Master''s Degree is the award level in which the person is currently enrolled.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentAwardType] -SET [Description] = 'Master''s Degree', [Definition] = 'Master''s Degree is the award level in which the person is currently enrolled.', [SortOrder] = 7.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentAwardType] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefPsEnrollmentAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Post-Master''s Certificate', 'Post-Master''s Certificate is the award level in which the person is currently enrolled.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentAwardType] -SET [Description] = 'Post-Master''s Certificate', [Definition] = 'Post-Master''s Certificate is the award level in which the person is currently enrolled.', [SortOrder] = 8.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentAwardType] WHERE [Code] = '17') BEGIN INSERT INTO dbo.[RefPsEnrollmentAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('17', 'Doctor''s Degree-Research/Scholarship', 'Doctor''s Degree-Research/Scholarship is the award level in which the person is currently enrolled.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentAwardType] -SET [Description] = 'Doctor''s Degree-Research/Scholarship', [Definition] = 'Doctor''s Degree-Research/Scholarship is the award level in which the person is currently enrolled.', [SortOrder] = 9.00 WHERE [Code] = '17' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentAwardType] WHERE [Code] = '18') BEGIN INSERT INTO dbo.[RefPsEnrollmentAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('18', 'Doctor''s Degree-Professional Practice', 'Doctor''s Degree-Professional Practice is the award level in which the person is currently enrolled.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentAwardType] -SET [Description] = 'Doctor''s Degree-Professional Practice', [Definition] = 'Doctor''s Degree-Professional Practice is the award level in which the person is currently enrolled.', [SortOrder] = 10.00 WHERE [Code] = '18' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentAwardType] WHERE [Code] = '19') BEGIN INSERT INTO dbo.[RefPsEnrollmentAwardType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('19', 'Doctor''s Degree-Other', 'Doctor''s Degree-Other is the award level in which the person is currently enrolled.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentAwardType] -SET [Description] = 'Doctor''s Degree-Other', [Definition] = 'Doctor''s Degree-Other is the award level in which the person is currently enrolled.', [SortOrder] = 11.00 WHERE [Code] = '19' END -END - -PRINT N'Populate RefPsEnrollmentStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPsEnrollmentStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentStatus] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefPsEnrollmentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Full-time', 'The student is enrolled full-time as defined by the institution for the specified term. ', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentStatus] -SET [Description] = 'Full-time', [Definition] = 'The student is enrolled full-time as defined by the institution for the specified term. ', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentStatus] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefPsEnrollmentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Less than full-time but at least half-time', 'The student is enrolled less than full-time but at least half-time as defined by the institution for the specified term. ', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentStatus] -SET [Description] = 'Less than full-time but at least half-time', [Definition] = 'The student is enrolled less than full-time but at least half-time as defined by the institution for the specified term. ', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentStatus] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefPsEnrollmentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Less than half-time', 'The student is enrolled Less than half-time as defined by the institution for the specified term. ', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentStatus] -SET [Description] = 'Less than half-time', [Definition] = 'The student is enrolled Less than half-time as defined by the institution for the specified term. ', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentStatus] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefPsEnrollmentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Less than full-time but at least three quarter-time', 'The student is enrolled Less than full-time but at least three quarter-time as defined by the institution for the specified term. ', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentStatus] -SET [Description] = 'Less than full-time but at least three quarter-time', [Definition] = 'The student is enrolled Less than full-time but at least three quarter-time as defined by the institution for the specified term. ', [SortOrder] = 5.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentStatus] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefPsEnrollmentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Less than three quarter-time but at least half-time', 'The student is enrolled Less than three quarter-time but at least half-time as defined by the institution for the specified term. ', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentStatus] -SET [Description] = 'Less than three quarter-time but at least half-time', [Definition] = 'The student is enrolled Less than three quarter-time but at least half-time as defined by the institution for the specified term. ', [SortOrder] = 7.00 WHERE [Code] = '05' END -END - -PRINT N'Populate RefPsEnrollmentType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPsEnrollmentType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentType] WHERE [Code] = 'FirstTime') BEGIN INSERT INTO dbo.[RefPsEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FirstTime', 'First time at institution, non-transfer in', 'The person''s enrollment type associated with the enrollment award level at the beginning of a term is: First time at institution, non-transfer in.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentType] -SET [Description] = 'First time at institution, non-transfer in', [Definition] = 'The person''s enrollment type associated with the enrollment award level at the beginning of a term is: First time at institution, non-transfer in.', [SortOrder] = 1.00 WHERE [Code] = 'FirstTime' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentType] WHERE [Code] = 'Continuing') BEGIN INSERT INTO dbo.[RefPsEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Continuing', 'Continuing', 'The person''s enrollment type associated with the enrollment award level at the beginning of a term is: Continuing.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentType] -SET [Description] = 'Continuing', [Definition] = 'The person''s enrollment type associated with the enrollment award level at the beginning of a term is: Continuing.', [SortOrder] = 2.00 WHERE [Code] = 'Continuing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentType] WHERE [Code] = 'Re-admit') BEGIN INSERT INTO dbo.[RefPsEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Re-admit', 'Re-admit', 'The person''s enrollment type associated with the enrollment award level at the beginning of a term is: Re-admit.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentType] -SET [Description] = 'Re-admit', [Definition] = 'The person''s enrollment type associated with the enrollment award level at the beginning of a term is: Re-admit.', [SortOrder] = 3.00 WHERE [Code] = 'Re-admit' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsEnrollmentType] WHERE [Code] = 'TransferIn') BEGIN INSERT INTO dbo.[RefPsEnrollmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TransferIn', 'Transfer in', 'The person''s enrollment type associated with the enrollment award level at the beginning of a term is: Transfer in.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsEnrollmentType] -SET [Description] = 'Transfer in', [Definition] = 'The person''s enrollment type associated with the enrollment award level at the beginning of a term is: Transfer in.', [SortOrder] = 4.00 WHERE [Code] = 'TransferIn' END -END - -PRINT N'Populate RefPSExitOrWithdrawalType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPSExitOrWithdrawalType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPSExitOrWithdrawalType] WHERE [Code] = 'Withdrawn') BEGIN INSERT INTO dbo.[RefPSExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Withdrawn', 'Withdrawn', 'A student enrolled in a postsecondary institution who has withdrawn, dropped out, failed to re-enroll or been terminated, expelled or dismissed by the institution is considered withdrawn.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPSExitOrWithdrawalType] -SET [Description] = 'Withdrawn', [Definition] = 'A student enrolled in a postsecondary institution who has withdrawn, dropped out, failed to re-enroll or been terminated, expelled or dismissed by the institution is considered withdrawn.', [SortOrder] = 1.00 WHERE [Code] = 'Withdrawn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPSExitOrWithdrawalType] WHERE [Code] = 'Graduated') BEGIN INSERT INTO dbo.[RefPSExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Graduated', 'Graduated', 'A student who was enrolled in an eligible postsecondary institution and completed the requirements for graduation or the program of study in which he/she was enrolled is considered graduated.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPSExitOrWithdrawalType] -SET [Description] = 'Graduated', [Definition] = 'A student who was enrolled in an eligible postsecondary institution and completed the requirements for graduation or the program of study in which he/she was enrolled is considered graduated.', [SortOrder] = 3.00 WHERE [Code] = 'Graduated' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPSExitOrWithdrawalType] WHERE [Code] = 'ApprovedLeaveOfAbsence') BEGIN INSERT INTO dbo.[RefPSExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ApprovedLeaveOfAbsence', 'Approved Leave of Absence', 'A student who is enrolled in an eligible postsecondary institution and has met the requirements for an approved student loan leave of absence and, therefore, is not required to attend classes for a specified period of time. For purposes of Title IV, HEA program loan borrower, an institution does not have to treat a leave of absence as a withdrawal if it is an approved leave of absence. An approved student loan leave of absence must not exceed 180 days in any 12-month-period. The number of days in a leave of absence is counted beginning with the first day of the student’s initial leave of absence in a 12-month period. If a student does not resume attendance at the institution at or before the end of a leave of absence, the institution must treat the student as a withdrawal in accordance with CFR 668.22(d).', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPSExitOrWithdrawalType] -SET [Description] = 'Approved Leave of Absence', [Definition] = 'A student who is enrolled in an eligible postsecondary institution and has met the requirements for an approved student loan leave of absence and, therefore, is not required to attend classes for a specified period of time. For purposes of Title IV, HEA program loan borrower, an institution does not have to treat a leave of absence as a withdrawal if it is an approved leave of absence. An approved student loan leave of absence must not exceed 180 days in any 12-month-period. The number of days in a leave of absence is counted beginning with the first day of the student’s initial leave of absence in a 12-month period. If a student does not resume attendance at the institution at or before the end of a leave of absence, the institution must treat the student as a withdrawal in accordance with CFR 668.22(d).', [SortOrder] = 5.00 WHERE [Code] = 'ApprovedLeaveOfAbsence' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPSExitOrWithdrawalType] WHERE [Code] = 'Deceased') BEGIN INSERT INTO dbo.[RefPSExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Deceased', 'Deceased', 'Student is deceased.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPSExitOrWithdrawalType] -SET [Description] = 'Deceased', [Definition] = 'Student is deceased.', [SortOrder] = 7.00 WHERE [Code] = 'Deceased' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPSExitOrWithdrawalType] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefPSExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'Student''s exit circumstances are unknown.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPSExitOrWithdrawalType] -SET [Description] = 'Unknown', [Definition] = 'Student''s exit circumstances are unknown.', [SortOrder] = 9.00 WHERE [Code] = 'Unknown' END -END - -PRINT N'Populate RefPSProgramLevel table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPSProgramLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPSProgramLevel] WHERE [Code] = 'Major') BEGIN INSERT INTO dbo.[RefPSProgramLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Major', 'Major', 'Major is the concentration of study for the postsecondary program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPSProgramLevel] -SET [Description] = 'Major', [Definition] = 'Major is the concentration of study for the postsecondary program.', [SortOrder] = 1.00 WHERE [Code] = 'Major' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPSProgramLevel] WHERE [Code] = 'Minor') BEGIN INSERT INTO dbo.[RefPSProgramLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Minor', 'Minor', 'Minor is the concentration of study for the postsecondary program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPSProgramLevel] -SET [Description] = 'Minor', [Definition] = 'Minor is the concentration of study for the postsecondary program.', [SortOrder] = 3.00 WHERE [Code] = 'Minor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPSProgramLevel] WHERE [Code] = 'Certificate') BEGIN INSERT INTO dbo.[RefPSProgramLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Certificate', 'Certificate', 'Certificate is the concentration of study for the postsecondary program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPSProgramLevel] -SET [Description] = 'Certificate', [Definition] = 'Certificate is the concentration of study for the postsecondary program.', [SortOrder] = 5.00 WHERE [Code] = 'Certificate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPSProgramLevel] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefPSProgramLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The concentration of study for the postsecondary program is in a category not yet defined in CEDS. ', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPSProgramLevel] -SET [Description] = 'Other', [Definition] = 'The concentration of study for the postsecondary program is in a category not yet defined in CEDS. ', [SortOrder] = 7.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefPsStudentLevel table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPsStudentLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsStudentLevel] WHERE [Code] = 'Undergraduate') BEGIN INSERT INTO dbo.[RefPsStudentLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Undergraduate', 'Undergraduate', 'The person enrolling in credit-granting courses at the postsecondary institution is at the undergraduate level.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsStudentLevel] -SET [Description] = 'Undergraduate', [Definition] = 'The person enrolling in credit-granting courses at the postsecondary institution is at the undergraduate level.', [SortOrder] = 1.00 WHERE [Code] = 'Undergraduate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPsStudentLevel] WHERE [Code] = 'Graduate') BEGIN INSERT INTO dbo.[RefPsStudentLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Graduate', 'Graduate', 'The person enrolling in credit-granting courses at the postsecondary institution is at the graduate level.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPsStudentLevel] -SET [Description] = 'Graduate', [Definition] = 'The person enrolling in credit-granting courses at the postsecondary institution is at the graduate level.', [SortOrder] = 2.00 WHERE [Code] = 'Graduate' END -END - -PRINT N'Populate RefPublicSchoolChoiceStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPublicSchoolChoiceStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPublicSchoolChoiceStatus] WHERE [Code] = 'ImplementedAllGrades') BEGIN INSERT INTO dbo.[RefPublicSchoolChoiceStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ImplementedAllGrades', 'Implemented at all grade levels', 'Public school choice was implemented at all grade levels.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPublicSchoolChoiceStatus] -SET [Description] = 'Implemented at all grade levels', [Definition] = 'Public school choice was implemented at all grade levels.', [SortOrder] = 1.00 WHERE [Code] = 'ImplementedAllGrades' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPublicSchoolChoiceStatus] WHERE [Code] = 'ImplementedSomeGrades') BEGIN INSERT INTO dbo.[RefPublicSchoolChoiceStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ImplementedSomeGrades', 'Implemented at some but not all grade levels', 'Public school choice was implemented at some but not all grade levels.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPublicSchoolChoiceStatus] -SET [Description] = 'Implemented at some but not all grade levels', [Definition] = 'Public school choice was implemented at some but not all grade levels.', [SortOrder] = 2.00 WHERE [Code] = 'ImplementedSomeGrades' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPublicSchoolChoiceStatus] WHERE [Code] = 'UnableToImplement') BEGIN INSERT INTO dbo.[RefPublicSchoolChoiceStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UnableToImplement', 'Unable to implement at any grades levels', 'Public school choice was unable to be implemented at any grades levels.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPublicSchoolChoiceStatus] -SET [Description] = 'Unable to implement at any grades levels', [Definition] = 'Public school choice was unable to be implemented at any grades levels.', [SortOrder] = 3.00 WHERE [Code] = 'UnableToImplement' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPublicSchoolChoiceStatus] WHERE [Code] = 'NotRequiredToImplement') BEGIN INSERT INTO dbo.[RefPublicSchoolChoiceStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotRequiredToImplement', 'Not required to implement public school choice', 'The LEA was not required to implement public school choice.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPublicSchoolChoiceStatus] -SET [Description] = 'Not required to implement public school choice', [Definition] = 'The LEA was not required to implement public school choice.', [SortOrder] = 4.00 WHERE [Code] = 'NotRequiredToImplement' END -END - -PRINT N'Populate RefPublicSchoolResidence table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPublicSchoolResidence]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPublicSchoolResidence] WHERE [Code] = '01652') BEGIN INSERT INTO dbo.[RefPublicSchoolResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01652', 'Resident of administrative unit and usual school attendance area', 'The person is/was a resident of administrative unit and usual school attendance area.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPublicSchoolResidence] -SET [Description] = 'Resident of administrative unit and usual school attendance area', [Definition] = 'The person is/was a resident of administrative unit and usual school attendance area.', [SortOrder] = 1.00 WHERE [Code] = '01652' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPublicSchoolResidence] WHERE [Code] = '01653') BEGIN INSERT INTO dbo.[RefPublicSchoolResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01653', 'Resident of administrative unit, but of other school attendance area', 'The person is/was a resident of administrative unit, but of other school attendance area.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPublicSchoolResidence] -SET [Description] = 'Resident of administrative unit, but of other school attendance area', [Definition] = 'The person is/was a resident of administrative unit, but of other school attendance area.', [SortOrder] = 2.00 WHERE [Code] = '01653' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPublicSchoolResidence] WHERE [Code] = '01654') BEGIN INSERT INTO dbo.[RefPublicSchoolResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01654', 'Resident of this state, but not of this administrative unit', 'The person is/was a resident of this state, but not of this administrative unit.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPublicSchoolResidence] -SET [Description] = 'Resident of this state, but not of this administrative unit', [Definition] = 'The person is/was a resident of this state, but not of this administrative unit.', [SortOrder] = 3.00 WHERE [Code] = '01654' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPublicSchoolResidence] WHERE [Code] = '01655') BEGIN INSERT INTO dbo.[RefPublicSchoolResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01655', 'Resident of an administrative unit that crosses state boundaries', 'The person is/was a resident of an administrative unit that crosses state boundaries.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPublicSchoolResidence] -SET [Description] = 'Resident of an administrative unit that crosses state boundaries', [Definition] = 'The person is/was a resident of an administrative unit that crosses state boundaries.', [SortOrder] = 4.00 WHERE [Code] = '01655' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPublicSchoolResidence] WHERE [Code] = '01656') BEGIN INSERT INTO dbo.[RefPublicSchoolResidence]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01656', 'Resident of another state', 'The person is/was a resident of another state.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPublicSchoolResidence] -SET [Description] = 'Resident of another state', [Definition] = 'The person is/was a resident of another state.', [SortOrder] = 5.00 WHERE [Code] = '01656' END -END - -PRINT N'Populate RefPurposeOfMonitoringVisit table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPurposeOfMonitoringVisit]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPurposeOfMonitoringVisit] WHERE [Code] = 'LicensingVisits') BEGIN INSERT INTO dbo.[RefPurposeOfMonitoringVisit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LicensingVisits', 'Licensing Visits', 'The monitoring visit is for licensing.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPurposeOfMonitoringVisit] -SET [Description] = 'Licensing Visits', [Definition] = 'The monitoring visit is for licensing.', [SortOrder] = 1.00 WHERE [Code] = 'LicensingVisits' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPurposeOfMonitoringVisit] WHERE [Code] = 'HeathSafety') BEGIN INSERT INTO dbo.[RefPurposeOfMonitoringVisit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HeathSafety', 'Health and Safety', 'The monitoring visit is for Health and Safety.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPurposeOfMonitoringVisit] -SET [Description] = 'Health and Safety', [Definition] = 'The monitoring visit is for Health and Safety.', [SortOrder] = 3.00 WHERE [Code] = 'HeathSafety' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPurposeOfMonitoringVisit] WHERE [Code] = 'Renewal') BEGIN INSERT INTO dbo.[RefPurposeOfMonitoringVisit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Renewal', 'Renewal', 'The monitoring visit is for Renewal.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPurposeOfMonitoringVisit] -SET [Description] = 'Renewal', [Definition] = 'The monitoring visit is for Renewal.', [SortOrder] = 5.00 WHERE [Code] = 'Renewal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPurposeOfMonitoringVisit] WHERE [Code] = 'Review') BEGIN INSERT INTO dbo.[RefPurposeOfMonitoringVisit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Review', 'Review', 'The monitoring visit is for Review.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPurposeOfMonitoringVisit] -SET [Description] = 'Review', [Definition] = 'The monitoring visit is for Review.', [SortOrder] = 7.00 WHERE [Code] = 'Review' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPurposeOfMonitoringVisit] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefPurposeOfMonitoringVisit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The monitoring visit is for Other.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPurposeOfMonitoringVisit] -SET [Description] = 'Other', [Definition] = 'The monitoring visit is for Other.', [SortOrder] = 9.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefQrisParticipation table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefQrisParticipation]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefQrisParticipation] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefQrisParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', 'Yes: Provider does participate in the QRIS', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefQrisParticipation] -SET [Description] = 'Yes', [Definition] = 'Yes: Provider does participate in the QRIS', [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefQrisParticipation] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefQrisParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', 'No: Provider is eligible, but does not participate in the QRIS', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefQrisParticipation] -SET [Description] = 'No', [Definition] = 'No: Provider is eligible, but does not participate in the QRIS', [SortOrder] = 2.00 WHERE [Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefQrisParticipation] WHERE [Code] = 'NotEligible') BEGIN INSERT INTO dbo.[RefQrisParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotEligible', 'Not Eligible', 'The State has an operating QRIS in the provider’s area, but the provider is not eligible to participate', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefQrisParticipation] -SET [Description] = 'Not Eligible', [Definition] = 'The State has an operating QRIS in the provider’s area, but the provider is not eligible to participate', [SortOrder] = 3.00 WHERE [Code] = 'NotEligible' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefQrisParticipation] WHERE [Code] = 'NoOperatingQRIS') BEGIN INSERT INTO dbo.[RefQrisParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoOperatingQRIS', 'No Operating QRIS', 'The State does not have an operating QRIS in the provider’s area', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefQrisParticipation] -SET [Description] = 'No Operating QRIS', [Definition] = 'The State does not have an operating QRIS in the provider’s area', [SortOrder] = 4.00 WHERE [Code] = 'NoOperatingQRIS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefQrisParticipation] WHERE [Code] = 'InformationUnavailable') BEGIN INSERT INTO dbo.[RefQrisParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InformationUnavailable', 'Information Unavailable', 'The State has an operating QRIS in the provider’s area, but information is currently unavailable at the provider level', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefQrisParticipation] -SET [Description] = 'Information Unavailable', [Definition] = 'The State has an operating QRIS in the provider’s area, but information is currently unavailable at the provider level', [SortOrder] = 5.00 WHERE [Code] = 'InformationUnavailable' END -END - -PRINT N'Populate RefReapAlternativeFundingStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefReapAlternativeFundingStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReapAlternativeFundingStatus] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefReapAlternativeFundingStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReapAlternativeFundingStatus] -SET [Description] = 'Yes', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReapAlternativeFundingStatus] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefReapAlternativeFundingStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReapAlternativeFundingStatus] -SET [Description] = 'No', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReapAlternativeFundingStatus] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefReapAlternativeFundingStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReapAlternativeFundingStatus] -SET [Description] = 'Not applicable', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefReasonDelayTransitionConf table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefReasonDelayTransitionConf]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReasonDelayTransitionConf] WHERE [Code] = 'Family') BEGIN INSERT INTO dbo.[RefReasonDelayTransitionConf]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Family', 'Family', 'The reasons for the delay of a transition conference is attributed to the family.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReasonDelayTransitionConf] -SET [Description] = 'Family', [Definition] = 'The reasons for the delay of a transition conference is attributed to the family.', [SortOrder] = 2.00 WHERE [Code] = 'Family' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReasonDelayTransitionConf] WHERE [Code] = 'Program') BEGIN INSERT INTO dbo.[RefReasonDelayTransitionConf]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Program', 'Program', 'The reasons for the delay of a transition conference is attributed to the program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReasonDelayTransitionConf] -SET [Description] = 'Program', [Definition] = 'The reasons for the delay of a transition conference is attributed to the program.', [SortOrder] = 4.00 WHERE [Code] = 'Program' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReasonDelayTransitionConf] WHERE [Code] = 'BeyondProgramControl') BEGIN INSERT INTO dbo.[RefReasonDelayTransitionConf]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BeyondProgramControl', 'Other beyond the control of the program', 'The reasons for the delay of a transition conference is other, beyond the control of the program.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReasonDelayTransitionConf] -SET [Description] = 'Other beyond the control of the program', [Definition] = 'The reasons for the delay of a transition conference is other, beyond the control of the program.', [SortOrder] = 6.00 WHERE [Code] = 'BeyondProgramControl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReasonDelayTransitionConf] WHERE [Code] = 'Promotion') BEGIN INSERT INTO dbo.[RefReasonDelayTransitionConf]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Promotion', 'Promotion or advancement', 'The reasons for the delay of a transition conference is attributed to promotion or advancement.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReasonDelayTransitionConf] -SET [Description] = 'Promotion or advancement', [Definition] = 'The reasons for the delay of a transition conference is attributed to promotion or advancement.', [SortOrder] = 99.00 WHERE [Code] = 'Promotion' END -END - -PRINT N'Populate RefReconstitutedStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefReconstitutedStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReconstitutedStatus] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefReconstitutedStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Reconstituted school', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReconstitutedStatus] -SET [Description] = 'Reconstituted school', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReconstitutedStatus] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefReconstitutedStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'Not a reconstituted school', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReconstitutedStatus] -SET [Description] = 'Not a reconstituted school', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'No' END -END - -PRINT N'Populate RefRecordStatusCreatorEntity table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefRecordStatusCreatorEntity]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRecordStatusCreatorEntity] WHERE [Code] = 'Organization') BEGIN INSERT INTO dbo.[RefRecordStatusCreatorEntity]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Organization', 'Organization', 'An Organization created the Record Status Type.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRecordStatusCreatorEntity] -SET [Description] = 'Organization', [Definition] = 'An Organization created the Record Status Type.', [SortOrder] = 1.00 WHERE [Code] = 'Organization' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRecordStatusCreatorEntity] WHERE [Code] = 'Person') BEGIN INSERT INTO dbo.[RefRecordStatusCreatorEntity]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Person', 'Person', 'A Person created the Record Status Type.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRecordStatusCreatorEntity] -SET [Description] = 'Person', [Definition] = 'A Person created the Record Status Type.', [SortOrder] = 2.00 WHERE [Code] = 'Person' END -END - -PRINT N'Populate RefRecordStatusType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefRecordStatusType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRecordStatusType] WHERE [Code] = 'Certified') BEGIN INSERT INTO dbo.[RefRecordStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Certified', 'Certified', 'A person or organization with authority over this record or this process indicated the record was complete and accurate to the best of their knowledge.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRecordStatusType] -SET [Description] = 'Certified', [Definition] = 'A person or organization with authority over this record or this process indicated the record was complete and accurate to the best of their knowledge.', [SortOrder] = 1.00 WHERE [Code] = 'Certified' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRecordStatusType] WHERE [Code] = 'Decertified') BEGIN INSERT INTO dbo.[RefRecordStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Decertified', 'Decertified', 'A person or organization with authority over this record or this process indicated they wish to reverse the decision that was previously indicated through the status of Certified.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRecordStatusType] -SET [Description] = 'Decertified', [Definition] = 'A person or organization with authority over this record or this process indicated they wish to reverse the decision that was previously indicated through the status of Certified.', [SortOrder] = 2.00 WHERE [Code] = 'Decertified' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRecordStatusType] WHERE [Code] = 'Deleted') BEGIN INSERT INTO dbo.[RefRecordStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Deleted', 'Deleted', 'This record is no longer valid.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRecordStatusType] -SET [Description] = 'Deleted', [Definition] = 'This record is no longer valid.', [SortOrder] = 3.00 WHERE [Code] = 'Deleted' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRecordStatusType] WHERE [Code] = 'InProcess') BEGIN INSERT INTO dbo.[RefRecordStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InProcess', 'In Process', 'The data in this record are potentially transactional in nature.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRecordStatusType] -SET [Description] = 'In Process', [Definition] = 'The data in this record are potentially transactional in nature.', [SortOrder] = 4.00 WHERE [Code] = 'InProcess' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRecordStatusType] WHERE [Code] = 'Published') BEGIN INSERT INTO dbo.[RefRecordStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Published', 'Published', 'The data in this record is in use or was used for federal, state, or local reporting or to fulfill research or data request purposes.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRecordStatusType] -SET [Description] = 'Published', [Definition] = 'The data in this record is in use or was used for federal, state, or local reporting or to fulfill research or data request purposes.', [SortOrder] = 5.00 WHERE [Code] = 'Published' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRecordStatusType] WHERE [Code] = 'Retired') BEGIN INSERT INTO dbo.[RefRecordStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Retired', 'Retired', 'The data in this record was once valid for use and is no longer valid for use per the requirements defined by the organization responsible for the record.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRecordStatusType] -SET [Description] = 'Retired', [Definition] = 'The data in this record was once valid for use and is no longer valid for use per the requirements defined by the organization responsible for the record.', [SortOrder] = 6.00 WHERE [Code] = 'Retired' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRecordStatusType] WHERE [Code] = 'Submitted') BEGIN INSERT INTO dbo.[RefRecordStatusType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Submitted', 'Submitted', 'The data in this record are not transactional in nature but are complete and do not require any formal certification process.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRecordStatusType] -SET [Description] = 'Submitted', [Definition] = 'The data in this record are not transactional in nature but are complete and do not require any formal certification process.', [SortOrder] = 7.00 WHERE [Code] = 'Submitted' END -END - -PRINT N'Populate RefReferralOutcome table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefReferralOutcome]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReferralOutcome] WHERE [Code] = 'WaitingList') BEGIN INSERT INTO dbo.[RefReferralOutcome]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WaitingList', 'Waiting list', 'The student is on a waiting list to receive services based on the referral.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReferralOutcome] -SET [Description] = 'Waiting list', [Definition] = 'The student is on a waiting list to receive services based on the referral.', [SortOrder] = 2.00 WHERE [Code] = 'WaitingList' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReferralOutcome] WHERE [Code] = 'ParentDeclined') BEGIN INSERT INTO dbo.[RefReferralOutcome]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ParentDeclined', 'Parent declined service', 'Parent declined service offered based on the referral.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReferralOutcome] -SET [Description] = 'Parent declined service', [Definition] = 'Parent declined service offered based on the referral.', [SortOrder] = 4.00 WHERE [Code] = 'ParentDeclined' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReferralOutcome] WHERE [Code] = 'Enrolled') BEGIN INSERT INTO dbo.[RefReferralOutcome]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Enrolled', 'Enrolled', 'The student is enrolled based on the referral.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReferralOutcome] -SET [Description] = 'Enrolled', [Definition] = 'The student is enrolled based on the referral.', [SortOrder] = 6.00 WHERE [Code] = 'Enrolled' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReferralOutcome] WHERE [Code] = 'Unreachable') BEGIN INSERT INTO dbo.[RefReferralOutcome]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unreachable', 'Unable to contact parent/family/guardian', 'The service provider has been unable to contact parent/family/guardian.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReferralOutcome] -SET [Description] = 'Unable to contact parent/family/guardian', [Definition] = 'The service provider has been unable to contact parent/family/guardian.', [SortOrder] = 8.00 WHERE [Code] = 'Unreachable' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReferralOutcome] WHERE [Code] = 'NotEligible') BEGIN INSERT INTO dbo.[RefReferralOutcome]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotEligible', 'Not eligible', 'The student is not eligible to receive services related to the referral.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReferralOutcome] -SET [Description] = 'Not eligible', [Definition] = 'The student is not eligible to receive services related to the referral.', [SortOrder] = 10.00 WHERE [Code] = 'NotEligible' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReferralOutcome] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefReferralOutcome]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The outcome of the referral is in a category not yet defined in CEDS.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReferralOutcome] -SET [Description] = 'Other', [Definition] = 'The outcome of the referral is in a category not yet defined in CEDS.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefReimbursementType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefReimbursementType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReimbursementType] WHERE [Code] = 'FeeForService') BEGIN INSERT INTO dbo.[RefReimbursementType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FeeForService', 'Fee for Service', 'Reimbursed via fee for service.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReimbursementType] -SET [Description] = 'Fee for Service', [Definition] = 'Reimbursed via fee for service.', [SortOrder] = 1.00 WHERE [Code] = 'FeeForService' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReimbursementType] WHERE [Code] = 'CapitatedRate') BEGIN INSERT INTO dbo.[RefReimbursementType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CapitatedRate', 'Capitated Rate', 'Reimbursed via capitated rate.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReimbursementType] -SET [Description] = 'Capitated Rate', [Definition] = 'Reimbursed via capitated rate.', [SortOrder] = 3.00 WHERE [Code] = 'CapitatedRate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReimbursementType] WHERE [Code] = 'GrantContract') BEGIN INSERT INTO dbo.[RefReimbursementType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GrantContract', 'Grant/contract', 'Reimbursed via grant/contract.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReimbursementType] -SET [Description] = 'Grant/contract', [Definition] = 'Reimbursed via grant/contract.', [SortOrder] = 5.00 WHERE [Code] = 'GrantContract' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReimbursementType] WHERE [Code] = 'Subsidy') BEGIN INSERT INTO dbo.[RefReimbursementType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Subsidy', 'Subsidy', 'Reimbursed via subsidy.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReimbursementType] -SET [Description] = 'Subsidy', [Definition] = 'Reimbursed via subsidy.', [SortOrder] = 7.00 WHERE [Code] = 'Subsidy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefReimbursementType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefReimbursementType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The reimbursement type is in a category not yet defined in CEDS.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefReimbursementType] -SET [Description] = 'Other', [Definition] = 'The reimbursement type is in a category not yet defined in CEDS.', [SortOrder] = 9.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefRestructuringAction table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefRestructuringAction]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRestructuringAction] WHERE [Code] = 'RA1') BEGIN INSERT INTO dbo.[RefRestructuringAction]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RA1', 'Replacement of all or most of the school staff (which may include the principal)', 'Replacement of all or most of the school staff (which may include the principal) is the type of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRestructuringAction] -SET [Description] = 'Replacement of all or most of the school staff (which may include the principal)', [Definition] = 'Replacement of all or most of the school staff (which may include the principal) is the type of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', [SortOrder] = 1.00 WHERE [Code] = 'RA1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRestructuringAction] WHERE [Code] = 'RA2') BEGIN INSERT INTO dbo.[RefRestructuringAction]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RA2', 'Reopening the school as a public charter school', 'Reopening the school as a public charter school is the type of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRestructuringAction] -SET [Description] = 'Reopening the school as a public charter school', [Definition] = 'Reopening the school as a public charter school is the type of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', [SortOrder] = 2.00 WHERE [Code] = 'RA2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRestructuringAction] WHERE [Code] = 'RA3') BEGIN INSERT INTO dbo.[RefRestructuringAction]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RA3', 'Entering into a contract with a private entity to operate the school', 'Entering into a contract with a private entity to operate the school is the type of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRestructuringAction] -SET [Description] = 'Entering into a contract with a private entity to operate the school', [Definition] = 'Entering into a contract with a private entity to operate the school is the type of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', [SortOrder] = 3.00 WHERE [Code] = 'RA3' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRestructuringAction] WHERE [Code] = 'RA4') BEGIN INSERT INTO dbo.[RefRestructuringAction]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RA4', 'Take of the school by the state', 'Take of the school by the state is the type of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRestructuringAction] -SET [Description] = 'Take of the school by the state', [Definition] = 'Take of the school by the state is the type of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', [SortOrder] = 4.00 WHERE [Code] = 'RA4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRestructuringAction] WHERE [Code] = 'RA5') BEGIN INSERT INTO dbo.[RefRestructuringAction]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RA5', 'Other major restructuring of the school governance', 'Other major restructuring of the school governance is the type of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRestructuringAction] -SET [Description] = 'Other major restructuring of the school governance', [Definition] = 'Other major restructuring of the school governance is the type of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', [SortOrder] = 5.00 WHERE [Code] = 'RA5' END -END - -PRINT N'Populate RefRlisProgramUse table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefRlisProgramUse]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRlisProgramUse] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefRlisProgramUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Teacher recruitment and retention', 'Teacher recruitment and retention, including the use of signing bonuses and other financial incentives', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRlisProgramUse] -SET [Description] = 'Teacher recruitment and retention', [Definition] = 'Teacher recruitment and retention, including the use of signing bonuses and other financial incentives', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRlisProgramUse] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefRlisProgramUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Teacher professional development', 'Teacher professional development, including programs that train teachers to utilize technology to improve teaching and to train special needs teachers', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRlisProgramUse] -SET [Description] = 'Teacher professional development', [Definition] = 'Teacher professional development, including programs that train teachers to utilize technology to improve teaching and to train special needs teachers', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRlisProgramUse] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefRlisProgramUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Educational technology', 'Educational technology, including software and hardware as described in Title II, Part D', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRlisProgramUse] -SET [Description] = 'Educational technology', [Definition] = 'Educational technology, including software and hardware as described in Title II, Part D', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRlisProgramUse] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefRlisProgramUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Parental involvement activities', 'Parental involvement activities uses of the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRlisProgramUse] -SET [Description] = 'Parental involvement activities', [Definition] = 'Parental involvement activities uses of the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRlisProgramUse] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefRlisProgramUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Activities authorized under the Safe and Drug-Free Schools Program (Title IV, Part A)', 'Activities authorized under the Safe and Drug-Free Schools Program (Title IV, Part A) using the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRlisProgramUse] -SET [Description] = 'Activities authorized under the Safe and Drug-Free Schools Program (Title IV, Part A)', [Definition] = 'Activities authorized under the Safe and Drug-Free Schools Program (Title IV, Part A) using the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', [SortOrder] = 5.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRlisProgramUse] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefRlisProgramUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Activities authorized under Title I, Part A', 'Activities authorized under Title I, Part A using the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRlisProgramUse] -SET [Description] = 'Activities authorized under Title I, Part A', [Definition] = 'Activities authorized under Title I, Part A using the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', [SortOrder] = 6.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRlisProgramUse] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefRlisProgramUse]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Activities authorized under Title III (Language instruction for English Learner and immigrant students)', 'Activities authorized under Title III (Language instruction for English Learner and immigrant students) using the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRlisProgramUse] -SET [Description] = 'Activities authorized under Title III (Language instruction for English Learner and immigrant students)', [Definition] = 'Activities authorized under Title III (Language instruction for English Learner and immigrant students) using the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', [SortOrder] = 7.00 WHERE [Code] = '07' END -END - -PRINT N'Populate RefRole table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefRole]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'AEStaff') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AEStaff', 'AE Staff', 'A person for whom instruction and/or services are provided in an Adult Education program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] -SET [Description] = 'AE Staff', [Definition] = 'A person for whom instruction and/or services are provided in an Adult Education program.', [SortOrder] = 1.00 WHERE [Code] = 'AEStaff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'AEStudent') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AEStudent', 'AE Student', 'An individual who performs specified activities for any public or private education institution, agency, or household that provides instructional and/or support services to students or staff in a Career and Technical Education program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] -SET [Description] = 'AE Student', [Definition] = 'An individual who performs specified activities for any public or private education institution, agency, or household that provides instructional and/or support services to students or staff in a Career and Technical Education program.', [SortOrder] = 2.00 WHERE [Code] = 'AEStudent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'CTEStaff') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CTEStaff', 'CTE Staff', 'A person for whom instruction, services, and/or care are provided in a Career and Technical Education program and who has met the state-defined threshold of Career and Technical Education participation.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] -SET [Description] = 'CTE Staff', [Definition] = 'A person for whom instruction, services, and/or care are provided in a Career and Technical Education program and who has met the state-defined threshold of Career and Technical Education participation.', [SortOrder] = 3.00 WHERE [Code] = 'CTEStaff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'CTEStudent') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CTEStudent', 'CTE Student', 'An individual who is an applicant of a postsecondary institution.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] -SET [Description] = 'CTE Student', [Definition] = 'An individual who is an applicant of a postsecondary institution.', [SortOrder] = 4.00 WHERE [Code] = 'CTEStudent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'ELChild') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ELChild', 'EL Child', 'A person for whom instruction, services, and/or care are provided in an early childhood program under the jurisdiction of a school, education agency, or other institution or program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] -SET [Description] = 'EL Child', [Definition] = 'A person for whom instruction, services, and/or care are provided in an early childhood program under the jurisdiction of a school, education agency, or other institution or program.', [SortOrder] = 5.00 WHERE [Code] = 'ELChild' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'ELStaff') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ELStaff', 'EL Staff', 'A person who performs specified activities for a public or private education institution, agency, or household that provides instructional and/or support services to students or staff at the early childhood level.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] -SET [Description] = 'EL Staff', [Definition] = 'A person who performs specified activities for a public or private education institution, agency, or household that provides instructional and/or support services to students or staff at the early childhood level.', [SortOrder] = 6.00 WHERE [Code] = 'ELStaff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'K12Staff') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('K12Staff', 'K12 Staff', 'An individual who performs specified activities for any public or private education institution, agency, or household that provides instructional and/or support services to students or staff at the early childhood level through high school completion.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] -SET [Description] = 'K12 Staff', [Definition] = 'An individual who performs specified activities for any public or private education institution, agency, or household that provides instructional and/or support services to students or staff at the early childhood level through high school completion.', [SortOrder] = 7.00 WHERE [Code] = 'K12Staff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'K12Student') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('K12Student', 'K12 Student', 'A person for whom instruction, services, and/or care are provided in an elementary or secondary educational program under the jurisdiction of a school, education agency, or other institution or program.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] -SET [Description] = 'K12 Student', [Definition] = 'A person for whom instruction, services, and/or care are provided in an elementary or secondary educational program under the jurisdiction of a school, education agency, or other institution or program.', [SortOrder] = 8.00 WHERE [Code] = 'K12Student' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'ParentGuardian') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ParentGuardian', 'Parent/Guardian', 'A person having parental or legal guardianship responsibility for a learner.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] -SET [Description] = 'Parent/Guardian', [Definition] = 'A person having parental or legal guardianship responsibility for a learner.', [SortOrder] = 9.00 WHERE [Code] = 'ParentGuardian' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'PSApplicant') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PSApplicant', 'PS Applicant', 'A person who performs specified activities for any public or private education institution, agency, or household that provides instructional and/or support services to students or staff at the postsecondary level.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] -SET [Description] = 'PS Applicant', [Definition] = 'A person who performs specified activities for any public or private education institution, agency, or household that provides instructional and/or support services to students or staff at the postsecondary level.', [SortOrder] = 10.00 WHERE [Code] = 'PSApplicant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'PSStaff') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PSStaff', 'PS Staff', 'An individual who is a prospect, applicant, admitted student, enrolled student, or alum of a postsecondary institution.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] -SET [Description] = 'PS Staff', [Definition] = 'An individual who is a prospect, applicant, admitted student, enrolled student, or alum of a postsecondary institution.', [SortOrder] = 11.00 WHERE [Code] = 'PSStaff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'PSStudent') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PSStudent', 'PS Student', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] -SET [Description] = 'PS Student', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = 'PSStudent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'WorkforceProgramParticipant') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WorkforceProgramParticipant', 'Workforce Program Participant', 'A person who is employed by an Adult Education program.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] -SET [Description] = 'Workforce Program Participant', [Definition] = 'A person who is employed by an Adult Education program.', [SortOrder] = 13.00 WHERE [Code] = 'WorkforceProgramParticipant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'ChiefStateSchoolOfficer') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChiefStateSchoolOfficer', 'Chief State School Officer', 'A public official who heads the department of elementary and secondary education in either a state, the District of Columbia, the Department of Defense Education Activity, the Bureau of Indian Education or one of the U.S. extra-state jurisdictions.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] -SET [Description] = 'Chief State School Officer', [Definition] = 'A public official who heads the department of elementary and secondary education in either a state, the District of Columbia, the Department of Defense Education Activity, the Bureau of Indian Education or one of the U.S. extra-state jurisdictions.', [SortOrder] = 14.00 WHERE [Code] = 'ChiefStateSchoolOfficer' END -END - -PRINT N'Populate RefSCEDCourseLevel table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSCEDCourseLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseLevel] WHERE [Code] = 'B') BEGIN INSERT INTO dbo.[RefSCEDCourseLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B', 'Basic or remedial', 'The course''s level of rigor is basic or remedial.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseLevel] -SET [Description] = 'Basic or remedial', [Definition] = 'The course''s level of rigor is basic or remedial.', [SortOrder] = 2.00 WHERE [Code] = 'B' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseLevel] WHERE [Code] = 'E') BEGIN INSERT INTO dbo.[RefSCEDCourseLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('E', 'Enriched or advanced', 'The course''s level of rigor is enriched or advanced.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseLevel] -SET [Description] = 'Enriched or advanced', [Definition] = 'The course''s level of rigor is enriched or advanced.', [SortOrder] = 4.00 WHERE [Code] = 'E' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseLevel] WHERE [Code] = 'G') BEGIN INSERT INTO dbo.[RefSCEDCourseLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('G', 'General or regular', 'The course''s level of rigor is general or regular.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseLevel] -SET [Description] = 'General or regular', [Definition] = 'The course''s level of rigor is general or regular.', [SortOrder] = 6.00 WHERE [Code] = 'G' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseLevel] WHERE [Code] = 'H') BEGIN INSERT INTO dbo.[RefSCEDCourseLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('H', 'Honors', 'The course''s level of rigor is honors.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseLevel] -SET [Description] = 'Honors', [Definition] = 'The course''s level of rigor is honors.', [SortOrder] = 8.00 WHERE [Code] = 'H' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseLevel] WHERE [Code] = 'C') BEGIN INSERT INTO dbo.[RefSCEDCourseLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('C', 'College', 'The course''s level of rigor is college.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseLevel] -SET [Description] = 'College', [Definition] = 'The course''s level of rigor is college.', [SortOrder] = 10.00 WHERE [Code] = 'C' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseLevel] WHERE [Code] = 'X') BEGIN INSERT INTO dbo.[RefSCEDCourseLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('X', 'No specified level of rigor', 'The course has no specified level of rigor.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseLevel] -SET [Description] = 'No specified level of rigor', [Definition] = 'The course has no specified level of rigor.', [SortOrder] = 12.00 WHERE [Code] = 'X' END -END - -PRINT N'Populate RefSCEDCourseSubjectArea table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSCEDCourseSubjectArea]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'English Language and Literature', 'English Language and Literature is the intended major subject area of the education course.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'English Language and Literature', [Definition] = 'English Language and Literature is the intended major subject area of the education course.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Mathematics', 'Mathematics is the intended major subject area of the education course.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Mathematics', [Definition] = 'Mathematics is the intended major subject area of the education course.', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Life and Physical Sciences', 'Life and Physical Sciences is the intended major subject area of the education course.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Life and Physical Sciences', [Definition] = 'Life and Physical Sciences is the intended major subject area of the education course.', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Social Sciences and History', 'Social Sciences and History is the intended major subject area of the education course.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Social Sciences and History', [Definition] = 'Social Sciences and History is the intended major subject area of the education course.', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Visual and Performing Arts', 'Visual and Performing Arts is the intended major subject area of the education course.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Visual and Performing Arts', [Definition] = 'Visual and Performing Arts is the intended major subject area of the education course.', [SortOrder] = 5.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Religious Education and Theology', 'Religious Education and Theology is the intended major subject area of the education course.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Religious Education and Theology', [Definition] = 'Religious Education and Theology is the intended major subject area of the education course.', [SortOrder] = 7.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Physical, Health, and Safety Education', 'Physical, Health, and Safety Education is the intended major subject area of the education course.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Physical, Health, and Safety Education', [Definition] = 'Physical, Health, and Safety Education is the intended major subject area of the education course.', [SortOrder] = 8.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Military Science', 'Military Science is the intended major subject area of the education course.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Military Science', [Definition] = 'Military Science is the intended major subject area of the education course.', [SortOrder] = 9.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Information Technology', 'Information Technology is the intended major subject area of the education course.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Information Technology', [Definition] = 'Information Technology is the intended major subject area of the education course.', [SortOrder] = 10.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Communication and Audio/Visual Technology', 'Communication and Audio/Visual Technology is the intended major subject area of the education course.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Communication and Audio/Visual Technology', [Definition] = 'Communication and Audio/Visual Technology is the intended major subject area of the education course.', [SortOrder] = 11.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Business and Marketing', 'Business and Marketing is the intended major subject area of the education course.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Business and Marketing', [Definition] = 'Business and Marketing is the intended major subject area of the education course.', [SortOrder] = 12.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '13') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13', 'Manufacturing', 'Manufacturing is the intended major subject area of the education course.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Manufacturing', [Definition] = 'Manufacturing is the intended major subject area of the education course.', [SortOrder] = 13.00 WHERE [Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '14') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14', 'Health Care Sciences', 'Health Care Sciences is the intended major subject area of the education course.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Health Care Sciences', [Definition] = 'Health Care Sciences is the intended major subject area of the education course.', [SortOrder] = 14.00 WHERE [Code] = '14' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '15') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('15', 'Public, Protective, and Government Service', 'Public, Protective, and Government Service is the intended major subject area of the education course.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Public, Protective, and Government Service', [Definition] = 'Public, Protective, and Government Service is the intended major subject area of the education course.', [SortOrder] = 15.00 WHERE [Code] = '15' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '16') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('16', 'Hospitality and Tourism', 'Hospitality and Tourism is the intended major subject area of the education course.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Hospitality and Tourism', [Definition] = 'Hospitality and Tourism is the intended major subject area of the education course.', [SortOrder] = 16.00 WHERE [Code] = '16' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '17') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('17', 'Architecture and Construction', 'Architecture and Construction is the intended major subject area of the education course.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Architecture and Construction', [Definition] = 'Architecture and Construction is the intended major subject area of the education course.', [SortOrder] = 17.00 WHERE [Code] = '17' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '18') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('18', 'Agriculture, Food, and Natural Resources', 'Agriculture, Food, and Natural Resources is the intended major subject area of the education course.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Agriculture, Food, and Natural Resources', [Definition] = 'Agriculture, Food, and Natural Resources is the intended major subject area of the education course.', [SortOrder] = 18.00 WHERE [Code] = '18' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '19') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('19', 'Human Services', 'Human Services is the intended major subject area of the education course.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Human Services', [Definition] = 'Human Services is the intended major subject area of the education course.', [SortOrder] = 19.00 WHERE [Code] = '19' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '20') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('20', 'Transportation, Distribution and Logistics', 'Transportation, Distribution and Logistics is the intended major subject area of the education course.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Transportation, Distribution and Logistics', [Definition] = 'Transportation, Distribution and Logistics is the intended major subject area of the education course.', [SortOrder] = 20.00 WHERE [Code] = '20' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '21') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('21', 'Engineering and Technology', 'Engineering and Technology is the intended major subject area of the education course.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Engineering and Technology', [Definition] = 'Engineering and Technology is the intended major subject area of the education course.', [SortOrder] = 21.00 WHERE [Code] = '21' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '22') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('22', 'Miscellaneous', 'Miscellaneous is the intended major subject area of the education course.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Miscellaneous', [Definition] = 'Miscellaneous is the intended major subject area of the education course.', [SortOrder] = 22.00 WHERE [Code] = '22' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '23') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('23', 'Non-Subject-Specific', 'Non-Subject-Specific is the intended major subject area of the education course.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'Non-Subject-Specific', [Definition] = 'Non-Subject-Specific is the intended major subject area of the education course.', [SortOrder] = 23.00 WHERE [Code] = '23' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSCEDCourseSubjectArea] WHERE [Code] = '24') BEGIN INSERT INTO dbo.[RefSCEDCourseSubjectArea]([Code], [Description], [Definition], [SortOrder]) -VALUES ('24', 'World Languages', 'World Languages is the intended major subject area of the education course.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSCEDCourseSubjectArea] -SET [Description] = 'World Languages', [Definition] = 'World Languages is the intended major subject area of the education course.', [SortOrder] = 23.00 WHERE [Code] = '24' END -END - -PRINT N'Populate RefScheduledWellChildScreening table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefScheduledWellChildScreening]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = 'Newborn') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Newborn', 'Newborn well child visit', 'Newborn well child visit.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = 'Newborn well child visit', [Definition] = 'Newborn well child visit.', [SortOrder] = 1.00 WHERE [Code] = 'Newborn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = '3To5Days') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3To5Days', '3 to 5 days well child visit', '3 to 5 days well child visit.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = '3 to 5 days well child visit', [Definition] = '3 to 5 days well child visit.', [SortOrder] = 3.00 WHERE [Code] = '3To5Days' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = '1Month') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1Month', '1 month well child visit', '1 month well child visit.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = '1 month well child visit', [Definition] = '1 month well child visit.', [SortOrder] = 5.00 WHERE [Code] = '1Month' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = '2Months') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2Months', '2 months well child visit', '2 months well child visit.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = '2 months well child visit', [Definition] = '2 months well child visit.', [SortOrder] = 7.00 WHERE [Code] = '2Months' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = '4Months') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4Months', '4 months well child visit', '4 months well child visit.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = '4 months well child visit', [Definition] = '4 months well child visit.', [SortOrder] = 9.00 WHERE [Code] = '4Months' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = '6Months') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('6Months', '6 months well child visit', '6 months well child visit.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = '6 months well child visit', [Definition] = '6 months well child visit.', [SortOrder] = 11.00 WHERE [Code] = '6Months' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = '9Months') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('9Months', '9 months well child visit', '9 months well child visit.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = '9 months well child visit', [Definition] = '9 months well child visit.', [SortOrder] = 13.00 WHERE [Code] = '9Months' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = '12Months') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12Months', '12 months well child visit', '12 months well child visit.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = '12 months well child visit', [Definition] = '12 months well child visit.', [SortOrder] = 15.00 WHERE [Code] = '12Months' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = '15Months') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('15Months', '15 months well child visit', '15 months well child visit.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = '15 months well child visit', [Definition] = '15 months well child visit.', [SortOrder] = 17.00 WHERE [Code] = '15Months' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = '18Months') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('18Months', '18 months well child visit', '18 months well child visit.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = '18 months well child visit', [Definition] = '18 months well child visit.', [SortOrder] = 19.00 WHERE [Code] = '18Months' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = '24Months') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('24Months', '24 months well child visit', '24 months well child visit.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = '24 months well child visit', [Definition] = '24 months well child visit.', [SortOrder] = 21.00 WHERE [Code] = '24Months' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = '30Months') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('30Months', '30 months well child visit', '30 months well child visit.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = '30 months well child visit', [Definition] = '30 months well child visit.', [SortOrder] = 23.00 WHERE [Code] = '30Months' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = '36Months') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('36Months', '36 months well child visit', '36 months well child visit.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = '36 months well child visit', [Definition] = '36 months well child visit.', [SortOrder] = 25.00 WHERE [Code] = '36Months' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = '48Months') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('48Months', '48 months well child visit', '48 months well child visit.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = '48 months well child visit', [Definition] = '48 months well child visit.', [SortOrder] = 27.00 WHERE [Code] = '48Months' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScheduledWellChildScreening] WHERE [Code] = '60Months') BEGIN INSERT INTO dbo.[RefScheduledWellChildScreening]([Code], [Description], [Definition], [SortOrder]) -VALUES ('60Months', '60 months well child visit', '60 months well child visit.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScheduledWellChildScreening] -SET [Description] = '60 months well child visit', [Definition] = '60 months well child visit.', [SortOrder] = 29.00 WHERE [Code] = '60Months' END -END - -PRINT N'Populate RefSchoolFoodServiceProgram table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSchoolFoodServiceProgram]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'FreeBreakfast') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FreeBreakfast', 'Free breakfast', 'The student participates in the free breakfast food service program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Free breakfast', [Definition] = 'The student participates in the free breakfast food service program.', [SortOrder] = 1.00 WHERE [Code] = 'FreeBreakfast' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'FreeLunch') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FreeLunch', 'Free lunch', 'The student participates in the free lunch food service program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Free lunch', [Definition] = 'The student participates in the free lunch food service program.', [SortOrder] = 2.00 WHERE [Code] = 'FreeLunch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'FreeMilk') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FreeMilk', 'Free milk', 'The student participates in the Free milk food service program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Free milk', [Definition] = 'The student participates in the Free milk food service program.', [SortOrder] = 3.00 WHERE [Code] = 'FreeMilk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'FreeSnack') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FreeSnack', 'Free snack', 'The student participates in the Free snack food service program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Free snack', [Definition] = 'The student participates in the Free snack food service program.', [SortOrder] = 4.00 WHERE [Code] = 'FreeSnack' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'FreeSupper') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FreeSupper', 'Free supper', 'The student participates in the Free supper food service program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Free supper', [Definition] = 'The student participates in the Free supper food service program.', [SortOrder] = 5.00 WHERE [Code] = 'FreeSupper' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'FullPriceBreakfast') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullPriceBreakfast', 'Full price breakfast', 'The student participates in the Full price breakfast food service program.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Full price breakfast', [Definition] = 'The student participates in the Full price breakfast food service program.', [SortOrder] = 6.00 WHERE [Code] = 'FullPriceBreakfast' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'FullPriceLunch') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullPriceLunch', 'Full price lunch', 'The student participates in the Full price lunch food service program.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Full price lunch', [Definition] = 'The student participates in the Full price lunch food service program.', [SortOrder] = 7.00 WHERE [Code] = 'FullPriceLunch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'FullPriceMilk') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullPriceMilk', 'Full price milk', 'The student participates in the Full price milk food service program.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Full price milk', [Definition] = 'The student participates in the Full price milk food service program.', [SortOrder] = 8.00 WHERE [Code] = 'FullPriceMilk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'FullPriceSnack') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullPriceSnack', 'Full price snack', 'The student participates in the Full price snack food service program.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Full price snack', [Definition] = 'The student participates in the Full price snack food service program.', [SortOrder] = 9.00 WHERE [Code] = 'FullPriceSnack' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'FullPriceSupper') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullPriceSupper', 'Full price supper', 'The student participates in the Full price supper food service program.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Full price supper', [Definition] = 'The student participates in the Full price supper food service program.', [SortOrder] = 10.00 WHERE [Code] = 'FullPriceSupper' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'ReducedPriceBreakfast') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReducedPriceBreakfast', 'Reduced price breakfast', 'The student participates in the Reduced price breakfast food service program.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Reduced price breakfast', [Definition] = 'The student participates in the Reduced price breakfast food service program.', [SortOrder] = 11.00 WHERE [Code] = 'ReducedPriceBreakfast' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'ReducedPriceLunch') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReducedPriceLunch', 'Reduced price lunch', 'The student participates in the Reduced price lunch food service program.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Reduced price lunch', [Definition] = 'The student participates in the Reduced price lunch food service program.', [SortOrder] = 12.00 WHERE [Code] = 'ReducedPriceLunch' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'ReducedPriceSnack') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReducedPriceSnack', 'Reduced price snack', 'The student participates in the Reduced price snac food service program.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Reduced price snack', [Definition] = 'The student participates in the Reduced price snac food service program.', [SortOrder] = 13.00 WHERE [Code] = 'ReducedPriceSnack' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'ReducedPriceSupper') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReducedPriceSupper', 'Reduced price supper', 'The student participates in the Reduced price supper food service program.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Reduced price supper', [Definition] = 'The student participates in the Reduced price supper food service program.', [SortOrder] = 14.00 WHERE [Code] = 'ReducedPriceSupper' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolFoodServiceProgram] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefSchoolFoodServiceProgram]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The student participates in a category of the food service program not yet defined in CEDS.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolFoodServiceProgram] -SET [Description] = 'Other', [Definition] = 'The student participates in a category of the food service program not yet defined in CEDS.', [SortOrder] = 15.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefSchoolImprovementFunds table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSchoolImprovementFunds]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolImprovementFunds] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefSchoolImprovementFunds]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolImprovementFunds] -SET [Description] = 'Yes', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolImprovementFunds] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefSchoolImprovementFunds]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolImprovementFunds] -SET [Description] = 'No', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'No' END -END - -PRINT N'Populate RefSchoolImprovementStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSchoolImprovementStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolImprovementStatus] WHERE [Code] = 'CorrectiveAction') BEGIN INSERT INTO dbo.[RefSchoolImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CorrectiveAction', 'Corrective action', 'Corrective action is the type of intervention used by the school under the School Improvement Grant (SIG).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolImprovementStatus] -SET [Description] = 'Corrective action', [Definition] = 'Corrective action is the type of intervention used by the school under the School Improvement Grant (SIG).', [SortOrder] = 1.00 WHERE [Code] = 'CorrectiveAction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolImprovementStatus] WHERE [Code] = 'Year1') BEGIN INSERT INTO dbo.[RefSchoolImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Year1', 'Improvement status Year 1', 'Improvement status Year 1 is the type of intervention used by the school under the School Improvement Grant (SIG).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolImprovementStatus] -SET [Description] = 'Improvement status Year 1', [Definition] = 'Improvement status Year 1 is the type of intervention used by the school under the School Improvement Grant (SIG).', [SortOrder] = 2.00 WHERE [Code] = 'Year1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolImprovementStatus] WHERE [Code] = 'Year2') BEGIN INSERT INTO dbo.[RefSchoolImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Year2', 'Improvement status Year 2', 'Improvement status Year 2 is the type of intervention used by the school under the School Improvement Grant (SIG).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolImprovementStatus] -SET [Description] = 'Improvement status Year 2', [Definition] = 'Improvement status Year 2 is the type of intervention used by the school under the School Improvement Grant (SIG).', [SortOrder] = 3.00 WHERE [Code] = 'Year2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolImprovementStatus] WHERE [Code] = 'Planning') BEGIN INSERT INTO dbo.[RefSchoolImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Planning', 'Planning for restructuring', 'Planning for restructuring is the type of intervention used by the school under the School Improvement Grant (SIG).', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolImprovementStatus] -SET [Description] = 'Planning for restructuring', [Definition] = 'Planning for restructuring is the type of intervention used by the school under the School Improvement Grant (SIG).', [SortOrder] = 4.00 WHERE [Code] = 'Planning' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolImprovementStatus] WHERE [Code] = 'Restructuring') BEGIN INSERT INTO dbo.[RefSchoolImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Restructuring', 'Restructuring', 'Restructuring is the type of intervention used by the school under the School Improvement Grant (SIG).', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolImprovementStatus] -SET [Description] = 'Restructuring', [Definition] = 'Restructuring is the type of intervention used by the school under the School Improvement Grant (SIG).', [SortOrder] = 5.00 WHERE [Code] = 'Restructuring' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolImprovementStatus] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefSchoolImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', 'The type of intervention used by the school under the School Improvement Grant (SIG) is not applicable.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolImprovementStatus] -SET [Description] = 'Not applicable', [Definition] = 'The type of intervention used by the school under the School Improvement Grant (SIG) is not applicable.', [SortOrder] = 10.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefSchoolLevel table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSchoolLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolLevel] WHERE [Code] = '00013') BEGIN INSERT INTO dbo.[RefSchoolLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00013', 'Adult', 'Adult is an education level that the education institution serves.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolLevel] -SET [Description] = 'Adult', [Definition] = 'Adult is an education level that the education institution serves.', [SortOrder] = 1.00 WHERE [Code] = '00013' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolLevel] WHERE [Code] = '01302') BEGIN INSERT INTO dbo.[RefSchoolLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01302', 'All levels', 'The institution serves all levels.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolLevel] -SET [Description] = 'All levels', [Definition] = 'The institution serves all levels.', [SortOrder] = 2.00 WHERE [Code] = '01302' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolLevel] WHERE [Code] = '01304') BEGIN INSERT INTO dbo.[RefSchoolLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01304', 'Elementary', 'Elementary is an education level that the education institution serves.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolLevel] -SET [Description] = 'Elementary', [Definition] = 'Elementary is an education level that the education institution serves.', [SortOrder] = 3.00 WHERE [Code] = '01304' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolLevel] WHERE [Code] = '02402') BEGIN INSERT INTO dbo.[RefSchoolLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02402', 'High school', 'High school is an education level that the education institution serves.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolLevel] -SET [Description] = 'High school', [Definition] = 'High school is an education level that the education institution serves.', [SortOrder] = 4.00 WHERE [Code] = '02402' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolLevel] WHERE [Code] = '00787') BEGIN INSERT INTO dbo.[RefSchoolLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00787', 'Infant/toddler', 'Infant/toddler is an education level that the education institution serves.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolLevel] -SET [Description] = 'Infant/toddler', [Definition] = 'Infant/toddler is an education level that the education institution serves.', [SortOrder] = 5.00 WHERE [Code] = '00787' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolLevel] WHERE [Code] = '02399') BEGIN INSERT INTO dbo.[RefSchoolLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02399', 'Intermediate', 'Intermediate is an education level that the education institution serves.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolLevel] -SET [Description] = 'Intermediate', [Definition] = 'Intermediate is an education level that the education institution serves.', [SortOrder] = 6.00 WHERE [Code] = '02399' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolLevel] WHERE [Code] = '02602') BEGIN INSERT INTO dbo.[RefSchoolLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02602', 'Junior high school', 'Junior high school is an education level that the education institution serves.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolLevel] -SET [Description] = 'Junior high school', [Definition] = 'Junior high school is an education level that the education institution serves.', [SortOrder] = 7.00 WHERE [Code] = '02602' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolLevel] WHERE [Code] = '02400') BEGIN INSERT INTO dbo.[RefSchoolLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02400', 'Middle', 'Middle is an education level that the education institution serves.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolLevel] -SET [Description] = 'Middle', [Definition] = 'Middle is an education level that the education institution serves.', [SortOrder] = 8.00 WHERE [Code] = '02400' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolLevel] WHERE [Code] = '01981') BEGIN INSERT INTO dbo.[RefSchoolLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01981', 'Pre-kindergarten/early childhood', 'Pre-kindergarten/early childhood is an education level that the education institution serves.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolLevel] -SET [Description] = 'Pre-kindergarten/early childhood', [Definition] = 'Pre-kindergarten/early childhood is an education level that the education institution serves.', [SortOrder] = 9.00 WHERE [Code] = '01981' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolLevel] WHERE [Code] = '02397') BEGIN INSERT INTO dbo.[RefSchoolLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02397', 'Primary', 'Primary is an education level that the education institution serves.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolLevel] -SET [Description] = 'Primary', [Definition] = 'Primary is an education level that the education institution serves.', [SortOrder] = 10.00 WHERE [Code] = '02397' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolLevel] WHERE [Code] = '02403') BEGIN INSERT INTO dbo.[RefSchoolLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02403', 'Secondary', 'Secondary is an education level that the education institution serves.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolLevel] -SET [Description] = 'Secondary', [Definition] = 'Secondary is an education level that the education institution serves.', [SortOrder] = 11.00 WHERE [Code] = '02403' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolLevel] WHERE [Code] = '73066') BEGIN INSERT INTO dbo.[RefSchoolLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73066', 'Joint secondary and postsecondary', 'Joint secondary and postsecondary is an education level that the education institution serves.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolLevel] -SET [Description] = 'Joint secondary and postsecondary', [Definition] = 'Joint secondary and postsecondary is an education level that the education institution serves.', [SortOrder] = 12.00 WHERE [Code] = '73066' END -END - -PRINT N'Populate RefSchoolType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSchoolType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolType] WHERE [Code] = 'Regular') BEGIN INSERT INTO dbo.[RefSchoolType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Regular', 'Regular School', 'A school that does not focus primarily on career and technical, special, or alternative education, although it may provide these programs in addition to a regular curriculum.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolType] -SET [Description] = 'Regular School', [Definition] = 'A school that does not focus primarily on career and technical, special, or alternative education, although it may provide these programs in addition to a regular curriculum.', [SortOrder] = 1.00 WHERE [Code] = 'Regular' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolType] WHERE [Code] = 'Special') BEGIN INSERT INTO dbo.[RefSchoolType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Special', 'Special Education School', 'A school that focuses primarily on serving the educational needs of students with disabilities (IDEA) and which adapts curriculum, materials, or instruction for these students.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolType] -SET [Description] = 'Special Education School', [Definition] = 'A school that focuses primarily on serving the educational needs of students with disabilities (IDEA) and which adapts curriculum, materials, or instruction for these students.', [SortOrder] = 2.00 WHERE [Code] = 'Special' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolType] WHERE [Code] = 'CareerAndTechnical') BEGIN INSERT INTO dbo.[RefSchoolType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CareerAndTechnical', 'Career and Technical Education School', 'A school that focuses primarily on providing secondary students with an occupationally relevant or career–related curriculum, including formal preparation for technical or professional occupations.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolType] -SET [Description] = 'Career and Technical Education School', [Definition] = 'A school that focuses primarily on providing secondary students with an occupationally relevant or career–related curriculum, including formal preparation for technical or professional occupations.', [SortOrder] = 3.00 WHERE [Code] = 'CareerAndTechnical' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolType] WHERE [Code] = 'Alternative') BEGIN INSERT INTO dbo.[RefSchoolType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Alternative', 'Alternative Education School', 'A school that addresses the needs of students that typically cannot be met in a regular school program and is designed to meet the needs of students with academic difficulties, students with discipline problems, or both students with academic difficulties and discipline problems.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolType] -SET [Description] = 'Alternative Education School', [Definition] = 'A school that addresses the needs of students that typically cannot be met in a regular school program and is designed to meet the needs of students with academic difficulties, students with discipline problems, or both students with academic difficulties and discipline problems.', [SortOrder] = 4.00 WHERE [Code] = 'Alternative' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSchoolType] WHERE [Code] = 'Reportable') BEGIN INSERT INTO dbo.[RefSchoolType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Reportable', 'Reportable Program', 'The permitted value "reportable program" is available for SEAs that have data to report to EDFacts at the school level that the SEA has determined does not meet the definition of a public elementary/secondary school.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSchoolType] -SET [Description] = 'Reportable Program', [Definition] = 'The permitted value "reportable program" is available for SEAs that have data to report to EDFacts at the school level that the SEA has determined does not meet the definition of a public elementary/secondary school.', [SortOrder] = 5.00 WHERE [Code] = 'Reportable' END -END - -PRINT N'Populate RefScoreMetricType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefScoreMetricType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00512') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00512', 'Achievement/proficiency level', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Achievement/proficiency level', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = '00512' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00494') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00494', 'ACT score', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'ACT score', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = '00494' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00490') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00490', 'Age score', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Age score', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = '00490' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00491') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00491', 'C-scaled scores', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'C-scaled scores', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = '00491' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00492') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00492', 'College Board examination scores', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'College Board examination scores', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = '00492' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00493') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00493', 'Grade equivalent or grade-level indicator', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Grade equivalent or grade-level indicator', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = '00493' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '03473') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03473', 'Graduation score', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Graduation score', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = '03473' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '03474') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03474', 'Growth/value-added/indexing', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Growth/value-added/indexing', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = '03474' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '03475') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03475', 'International Baccalaureate score', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'International Baccalaureate score', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = '03475' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00144') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00144', 'Letter grade/mark', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Letter grade/mark', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = '00144' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00513') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00513', 'Mastery level', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Mastery level', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = '00513' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00497') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00497', 'Normal curve equivalent', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Normal curve equivalent', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = '00497' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00498') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00498', 'Normalized standard score', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Normalized standard score', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = '00498' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00499') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00499', 'Number score', NULL, 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Number score', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = '00499' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00500') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00500', 'Pass-fail', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Pass-fail', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = '00500' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '03476') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03476', 'Percentile', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Percentile', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = '03476' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00502') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00502', 'Percentile rank', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Percentile rank', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = '00502' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00503') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00503', 'Proficiency level', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Proficiency level', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = '00503' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '03477') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03477', 'Promotion score', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Promotion score', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = '03477' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00504') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00504', 'Ranking', NULL, 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Ranking', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = '00504' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00505') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00505', 'Ratio IQ''s', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Ratio IQ''s', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = '00505' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '03478') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03478', 'Raw score', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Raw score', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = '03478' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '03479') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03479', 'Scale score', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Scale score', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = '03479' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00506') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00506', 'Standard age score', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Standard age score', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = '00506' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00508') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00508', 'Stanine score', NULL, 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Stanine score', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = '00508' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00509') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00509', 'Sten score', NULL, 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Sten score', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = '00509' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00510') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00510', 'T-score', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'T-score', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = '00510' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '03480') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03480', 'Workplace readiness score', NULL, 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Workplace readiness score', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = '03480' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '00511') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00511', 'Z-score', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Z-score', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = '00511' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '03481') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03481', 'SAT Score', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'SAT Score', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = '03481' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefScoreMetricType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefScoreMetricType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefScoreMetricType] -SET [Description] = 'Other', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefServiceFrequency table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefServiceFrequency]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceFrequency] WHERE [Code] = 'Daily') BEGIN INSERT INTO dbo.[RefServiceFrequency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Daily', 'Daily', 'The service is planned to be provided Daily.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceFrequency] -SET [Description] = 'Daily', [Definition] = 'The service is planned to be provided Daily.', [SortOrder] = 2.00 WHERE [Code] = 'Daily' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceFrequency] WHERE [Code] = 'Weekly') BEGIN INSERT INTO dbo.[RefServiceFrequency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Weekly', 'Weekly', 'The service is planned to be provided Weekly.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceFrequency] -SET [Description] = 'Weekly', [Definition] = 'The service is planned to be provided Weekly.', [SortOrder] = 4.00 WHERE [Code] = 'Weekly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceFrequency] WHERE [Code] = 'Biweekly') BEGIN INSERT INTO dbo.[RefServiceFrequency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Biweekly', 'Biweekly', 'The service is planned to be provided Biweekly.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceFrequency] -SET [Description] = 'Biweekly', [Definition] = 'The service is planned to be provided Biweekly.', [SortOrder] = 6.00 WHERE [Code] = 'Biweekly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceFrequency] WHERE [Code] = 'Monthly') BEGIN INSERT INTO dbo.[RefServiceFrequency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Monthly', 'Monthly', 'The service is planned to be provided Monthly.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceFrequency] -SET [Description] = 'Monthly', [Definition] = 'The service is planned to be provided Monthly.', [SortOrder] = 8.00 WHERE [Code] = 'Monthly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceFrequency] WHERE [Code] = 'Bimonthly') BEGIN INSERT INTO dbo.[RefServiceFrequency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Bimonthly', 'Bimonthly', 'The service is planned to be provided Bimonthly.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceFrequency] -SET [Description] = 'Bimonthly', [Definition] = 'The service is planned to be provided Bimonthly.', [SortOrder] = 10.00 WHERE [Code] = 'Bimonthly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceFrequency] WHERE [Code] = 'Quarterly') BEGIN INSERT INTO dbo.[RefServiceFrequency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Quarterly', 'Quarterly', 'The service is planned to be provided Quarterly.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceFrequency] -SET [Description] = 'Quarterly', [Definition] = 'The service is planned to be provided Quarterly.', [SortOrder] = 12.00 WHERE [Code] = 'Quarterly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceFrequency] WHERE [Code] = 'Semiannually') BEGIN INSERT INTO dbo.[RefServiceFrequency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Semiannually', 'Semiannually', 'The service is planned to be provided Semiannually.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceFrequency] -SET [Description] = 'Semiannually', [Definition] = 'The service is planned to be provided Semiannually.', [SortOrder] = 14.00 WHERE [Code] = 'Semiannually' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceFrequency] WHERE [Code] = 'Annually') BEGIN INSERT INTO dbo.[RefServiceFrequency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Annually', 'Annually', 'The service is planned to be provided Annually.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceFrequency] -SET [Description] = 'Annually', [Definition] = 'The service is planned to be provided Annually.', [SortOrder] = 16.00 WHERE [Code] = 'Annually' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceFrequency] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefServiceFrequency]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The service is planned to be provided at a frequency not yet defined in CEDS.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceFrequency] -SET [Description] = 'Other', [Definition] = 'The service is planned to be provided at a frequency not yet defined in CEDS.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefServiceOption table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefServiceOption]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceOption] WHERE [Code] = 'FullDayFullYear') BEGIN INSERT INTO dbo.[RefServiceOption]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullDayFullYear', 'Full-day/full-year', 'Full-day/full-year is the nature of the early childhood program, class or group in which a person is enrolled.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceOption] -SET [Description] = 'Full-day/full-year', [Definition] = 'Full-day/full-year is the nature of the early childhood program, class or group in which a person is enrolled.', [SortOrder] = 1.00 WHERE [Code] = 'FullDayFullYear' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceOption] WHERE [Code] = 'FullDayPartYear') BEGIN INSERT INTO dbo.[RefServiceOption]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullDayPartYear', 'Full-day/part-year', 'Full-day/part-year is the nature of the early childhood program, class or group in which a person is enrolled.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceOption] -SET [Description] = 'Full-day/part-year', [Definition] = 'Full-day/part-year is the nature of the early childhood program, class or group in which a person is enrolled.', [SortOrder] = 2.00 WHERE [Code] = 'FullDayPartYear' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceOption] WHERE [Code] = 'PartDayFullYear') BEGIN INSERT INTO dbo.[RefServiceOption]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartDayFullYear', 'Part-day/full-year', 'Part-day/full-year is the nature of the early childhood program, class or group in which a person is enrolled.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceOption] -SET [Description] = 'Part-day/full-year', [Definition] = 'Part-day/full-year is the nature of the early childhood program, class or group in which a person is enrolled.', [SortOrder] = 3.00 WHERE [Code] = 'PartDayFullYear' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceOption] WHERE [Code] = 'PartDayPartYear') BEGIN INSERT INTO dbo.[RefServiceOption]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartDayPartYear', 'Part-day/part-year', 'Part-day/part-year is the nature of the early childhood program, class or group in which a person is enrolled.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceOption] -SET [Description] = 'Part-day/part-year', [Definition] = 'Part-day/part-year is the nature of the early childhood program, class or group in which a person is enrolled.', [SortOrder] = 4.00 WHERE [Code] = 'PartDayPartYear' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceOption] WHERE [Code] = 'HomeBased') BEGIN INSERT INTO dbo.[RefServiceOption]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HomeBased', 'Home based', 'Home based is the nature of the early childhood program, class or group in which a person is enrolled.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceOption] -SET [Description] = 'Home based', [Definition] = 'Home based is the nature of the early childhood program, class or group in which a person is enrolled.', [SortOrder] = 5.00 WHERE [Code] = 'HomeBased' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServiceOption] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefServiceOption]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', 'The nature of the early childhood program, class or group in which a person is enrolled is not applicable.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServiceOption] -SET [Description] = 'Not applicable', [Definition] = 'The nature of the early childhood program, class or group in which a person is enrolled is not applicable.', [SortOrder] = 6.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefServices table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefServices]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Assistive technology services', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Assistive technology services', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Audiology services', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Audiology services', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Family training/counseling services', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Family training/counseling services', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Health services', NULL, 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Health services', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Medical services', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Medical services', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Nursing services', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Nursing services', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Nutrition services', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Nutrition services', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Occupational therapy', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Occupational therapy', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Physical therapy', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Physical therapy', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Psychological services', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Psychological services', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Sign language and cued language services', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Sign language and cued language services', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Service coordination', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Service coordination', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '13') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13', 'Social work services', NULL, 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Social work services', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '14') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14', 'Special instruction', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Special instruction', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = '14' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '15') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('15', 'Speech-language pathology services', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Speech-language pathology services', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = '15' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '16') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('16', 'Vision services', NULL, 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Vision services', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = '16' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '17') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('17', 'Behavioral health', NULL, 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Behavioral health', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = '17' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '18') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('18', 'Transportation', NULL, 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Transportation', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = '18' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '98') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('98', 'None', NULL, 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'None', [Definition] = NULL, [SortOrder] = 97.00 WHERE [Code] = '98' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefServices] WHERE [Code] = '99') BEGIN INSERT INTO dbo.[RefServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('99', 'Other', NULL, 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefServices] -SET [Description] = 'Other', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = '99' END -END - -PRINT N'Populate RefSessionType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSessionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSessionType] WHERE [Code] = 'FullSchoolYear') BEGIN INSERT INTO dbo.[RefSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullSchoolYear', 'Full School Year', 'A regular school term consisting of no major subdivision of time segments. It usually begins in the late summer or early fall and ends in late spring or early summer (e.g., elementary school).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSessionType] -SET [Description] = 'Full School Year', [Definition] = 'A regular school term consisting of no major subdivision of time segments. It usually begins in the late summer or early fall and ends in late spring or early summer (e.g., elementary school).', [SortOrder] = 1.00 WHERE [Code] = 'FullSchoolYear' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSessionType] WHERE [Code] = 'Intersession') BEGIN INSERT INTO dbo.[RefSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Intersession', 'Intersession', 'A short session which occurs between longer sessions.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSessionType] -SET [Description] = 'Intersession', [Definition] = 'A short session which occurs between longer sessions.', [SortOrder] = 2.00 WHERE [Code] = 'Intersession' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSessionType] WHERE [Code] = 'LongSession') BEGIN INSERT INTO dbo.[RefSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LongSession', 'Long Session', 'A session that is longer than a semester but shorter than a full year.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSessionType] -SET [Description] = 'Long Session', [Definition] = 'A session that is longer than a semester but shorter than a full year.', [SortOrder] = 3.00 WHERE [Code] = 'LongSession' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSessionType] WHERE [Code] = 'MiniTerm') BEGIN INSERT INTO dbo.[RefSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MiniTerm', 'Mini Term', 'A school term which is shorter than a regular session.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSessionType] -SET [Description] = 'Mini Term', [Definition] = 'A school term which is shorter than a regular session.', [SortOrder] = 4.00 WHERE [Code] = 'MiniTerm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSessionType] WHERE [Code] = 'Quarter') BEGIN INSERT INTO dbo.[RefSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Quarter', 'Quarter', 'One of four equal segments into which a school year is divided.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSessionType] -SET [Description] = 'Quarter', [Definition] = 'One of four equal segments into which a school year is divided.', [SortOrder] = 5.00 WHERE [Code] = 'Quarter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSessionType] WHERE [Code] = 'Quinmester') BEGIN INSERT INTO dbo.[RefSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Quinmester', 'Quinmester', 'One of five equal segments into which a school year is divided.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSessionType] -SET [Description] = 'Quinmester', [Definition] = 'One of five equal segments into which a school year is divided.', [SortOrder] = 6.00 WHERE [Code] = 'Quinmester' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSessionType] WHERE [Code] = 'Semester') BEGIN INSERT INTO dbo.[RefSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Semester', 'Semester', 'One of two equal segments into which a school year is divided.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSessionType] -SET [Description] = 'Semester', [Definition] = 'One of two equal segments into which a school year is divided.', [SortOrder] = 7.00 WHERE [Code] = 'Semester' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSessionType] WHERE [Code] = 'SummerTerm') BEGIN INSERT INTO dbo.[RefSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SummerTerm', 'Summer Term', 'A school term which takes place in the summer between two regular school terms.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSessionType] -SET [Description] = 'Summer Term', [Definition] = 'A school term which takes place in the summer between two regular school terms.', [SortOrder] = 8.00 WHERE [Code] = 'SummerTerm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSessionType] WHERE [Code] = 'Trimester') BEGIN INSERT INTO dbo.[RefSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Trimester', 'Trimester', 'One of three equal segments into which a school year is divided.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSessionType] -SET [Description] = 'Trimester', [Definition] = 'One of three equal segments into which a school year is divided.', [SortOrder] = 9.00 WHERE [Code] = 'Trimester' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSessionType] WHERE [Code] = 'TwelveMonth') BEGIN INSERT INTO dbo.[RefSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TwelveMonth', 'Twelve Month', 'An educational program that operates on a full twelve month cycle.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSessionType] -SET [Description] = 'Twelve Month', [Definition] = 'An educational program that operates on a full twelve month cycle.', [SortOrder] = 10.00 WHERE [Code] = 'TwelveMonth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSessionType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefSessionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The session type is in a category not yet defined in CEDS.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSessionType] -SET [Description] = 'Other', [Definition] = 'The session type is in a category not yet defined in CEDS.', [SortOrder] = 11.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefSex table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSex]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSex] WHERE [Code] = 'Male') BEGIN INSERT INTO dbo.[RefSex]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Male', 'Male', 'Male', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSex] -SET [Description] = 'Male', [Definition] = 'Male', [SortOrder] = 1.00 WHERE [Code] = 'Male' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSex] WHERE [Code] = 'Female') BEGIN INSERT INTO dbo.[RefSex]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Female', 'Female', 'Female', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSex] -SET [Description] = 'Female', [Definition] = 'Female', [SortOrder] = 2.00 WHERE [Code] = 'Female' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSex] WHERE [Code] = 'NotSelected') BEGIN INSERT INTO dbo.[RefSex]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotSelected', 'Not selected', 'Gender is not selected', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSex] -SET [Description] = 'Not selected', [Definition] = 'Gender is not selected', [SortOrder] = 3.00 WHERE [Code] = 'NotSelected' END -END - -PRINT N'Populate RefSigInterventionType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSigInterventionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSigInterventionType] WHERE [Code] = 'Turnaround') BEGIN INSERT INTO dbo.[RefSigInterventionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Turnaround', 'Turnaround model', 'Turnaround model is the type of intervention used by the school under the School Improvement Grant (SIG).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSigInterventionType] -SET [Description] = 'Turnaround model', [Definition] = 'Turnaround model is the type of intervention used by the school under the School Improvement Grant (SIG).', [SortOrder] = 1.00 WHERE [Code] = 'Turnaround' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSigInterventionType] WHERE [Code] = 'Restart') BEGIN INSERT INTO dbo.[RefSigInterventionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Restart', 'Restart model', 'Restart model is the type of intervention used by the school under the School Improvement Grant (SIG).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSigInterventionType] -SET [Description] = 'Restart model', [Definition] = 'Restart model is the type of intervention used by the school under the School Improvement Grant (SIG).', [SortOrder] = 2.00 WHERE [Code] = 'Restart' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSigInterventionType] WHERE [Code] = 'Closure') BEGIN INSERT INTO dbo.[RefSigInterventionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Closure', 'School closure model', 'School closure model is the type of intervention used by the school under the School Improvement Grant (SIG).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSigInterventionType] -SET [Description] = 'School closure model', [Definition] = 'School closure model is the type of intervention used by the school under the School Improvement Grant (SIG).', [SortOrder] = 3.00 WHERE [Code] = 'Closure' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSigInterventionType] WHERE [Code] = 'Transformation') BEGIN INSERT INTO dbo.[RefSigInterventionType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Transformation', 'Transformation model', 'Transformation model is the type of intervention used by the school under the School Improvement Grant (SIG).', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSigInterventionType] -SET [Description] = 'Transformation model', [Definition] = 'Transformation model is the type of intervention used by the school under the School Improvement Grant (SIG).', [SortOrder] = 4.00 WHERE [Code] = 'Transformation' END -END - -PRINT N'Populate RefSingleSexClassStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSingleSexClassStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSingleSexClassStatus] WHERE [Code] = 'MaleOnly') BEGIN INSERT INTO dbo.[RefSingleSexClassStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MaleOnly', 'Male-only', 'Male-only is specified for a section in a co-educational school where only male or only female students are permitted to take the course.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSingleSexClassStatus] -SET [Description] = 'Male-only', [Definition] = 'Male-only is specified for a section in a co-educational school where only male or only female students are permitted to take the course.', [SortOrder] = 1.00 WHERE [Code] = 'MaleOnly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSingleSexClassStatus] WHERE [Code] = 'FemaleOnly') BEGIN INSERT INTO dbo.[RefSingleSexClassStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FemaleOnly', 'Female-only', 'Female-only is specified for a section in a co-educational school where only male or only female students are permitted to take the course.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSingleSexClassStatus] -SET [Description] = 'Female-only', [Definition] = 'Female-only is specified for a section in a co-educational school where only male or only female students are permitted to take the course.', [SortOrder] = 2.00 WHERE [Code] = 'FemaleOnly' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSingleSexClassStatus] WHERE [Code] = 'NotSingleSex') BEGIN INSERT INTO dbo.[RefSingleSexClassStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotSingleSex', 'Not a single-sex class', 'Not a single-sex class is specified for a section in a co-educational school where only male or only female students are permitted to take the course.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSingleSexClassStatus] -SET [Description] = 'Not a single-sex class', [Definition] = 'Not a single-sex class is specified for a section in a co-educational school where only male or only female students are permitted to take the course.', [SortOrder] = 3.00 WHERE [Code] = 'NotSingleSex' END -END - -PRINT N'Populate RefSpaceUseType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSpaceUseType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '02633') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02633', 'Administration', 'Administration is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Administration', [Definition] = 'Administration is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 2.00 WHERE [Code] = '02633' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '02634') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02634', 'Assembly', 'Assembly is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Assembly', [Definition] = 'Assembly is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 4.00 WHERE [Code] = '02634' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '02631') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02631', 'Athletic', 'Athletic is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Athletic', [Definition] = 'Athletic is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 6.00 WHERE [Code] = '02631' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '02628') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02628', 'Basic classroom', 'Basic classroom is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Basic classroom', [Definition] = 'Basic classroom is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 8.00 WHERE [Code] = '02628' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '02635') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02635', 'Corridors', 'Corridors is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Corridors', [Definition] = 'Corridors is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 10.00 WHERE [Code] = '02635' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '02639') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02639', 'Dormitory room', 'Dormitory room is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Dormitory room', [Definition] = 'Dormitory room is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 12.00 WHERE [Code] = '02639' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '02638') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02638', 'Food service', 'Food service is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Food service', [Definition] = 'Food service is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 14.00 WHERE [Code] = '02638' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '02630') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02630', 'Library/media', 'Library/media is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Library/media', [Definition] = 'Library/media is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 16.00 WHERE [Code] = '02630' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '02773') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02773', 'Multi-purpose room', 'Multi-purpose room is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Multi-purpose room', [Definition] = 'Multi-purpose room is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 18.00 WHERE [Code] = '02773' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '02636') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02636', 'Operational support', 'Operational support is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Operational support', [Definition] = 'Operational support is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 20.00 WHERE [Code] = '02636' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '03017') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03017', 'Restroom', 'Restroom is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Restroom', [Definition] = 'Restroom is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 22.00 WHERE [Code] = '03017' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '02629') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02629', 'Specialty classroom', 'Specialty classroom is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Specialty classroom', [Definition] = 'Specialty classroom is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 24.00 WHERE [Code] = '02629' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '02637') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02637', 'Storage', 'Storage is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Storage', [Definition] = 'Storage is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 26.00 WHERE [Code] = '02637' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '02788') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02788', 'Storage - hazardous materials', 'Storage - hazardous materials is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Storage - hazardous materials', [Definition] = 'Storage - hazardous materials is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 28.00 WHERE [Code] = '02788' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '02632') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02632', 'Student support', 'Student support is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Student support', [Definition] = 'Student support is the primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', [SortOrder] = 30.00 WHERE [Code] = '02632' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpaceUseType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefSpaceUseType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'The primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design is in a category not yet defined in CEDS.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpaceUseType] -SET [Description] = 'Other', [Definition] = 'The primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design is in a category not yet defined in CEDS.', [SortOrder] = 32.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefSpecialEducationAgeGroupTaught table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSpecialEducationAgeGroupTaught]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationAgeGroupTaught] WHERE [Code] = '3TO5') BEGIN INSERT INTO dbo.[RefSpecialEducationAgeGroupTaught]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3TO5', '3 through 5', 'The age range of special education students taught is 3 through 5.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationAgeGroupTaught] -SET [Description] = '3 through 5', [Definition] = 'The age range of special education students taught is 3 through 5.', [SortOrder] = 1.00 WHERE [Code] = '3TO5' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationAgeGroupTaught] WHERE [Code] = '6TO21') BEGIN INSERT INTO dbo.[RefSpecialEducationAgeGroupTaught]([Code], [Description], [Definition], [SortOrder]) -VALUES ('6TO21', '6 through 21', 'The age range of special education students taught is 6 through 21.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationAgeGroupTaught] -SET [Description] = '6 through 21', [Definition] = 'The age range of special education students taught is 6 through 21.', [SortOrder] = 2.00 WHERE [Code] = '6TO21' END -END - -PRINT N'Populate RefSpecialEducationExitReason table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSpecialEducationExitReason]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'HighSchoolDiploma') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HighSchoolDiploma', 'Graduated with regular high school diploma', 'Graduated with regular high school diploma is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Graduated with regular high school diploma', [Definition] = 'Graduated with regular high school diploma is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 1.00 WHERE [Code] = 'HighSchoolDiploma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'ReceivedCertificate') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReceivedCertificate', 'Received a certificate', 'Received a certificate is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Received a certificate', [Definition] = 'Received a certificate is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 2.00 WHERE [Code] = 'ReceivedCertificate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'ReachedMaximumAge') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReachedMaximumAge', 'Reached maximum age', 'Reached maximum age is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Reached maximum age', [Definition] = 'Reached maximum age is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 3.00 WHERE [Code] = 'ReachedMaximumAge' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'Died') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Died', 'Died', 'Died is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Died', [Definition] = 'Died is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 4.00 WHERE [Code] = 'Died' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'MovedAndContinuing') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MovedAndContinuing', 'Moved, known to be continuing', 'Moved, known to be continuing is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Moved, known to be continuing', [Definition] = 'Moved, known to be continuing is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 5.00 WHERE [Code] = 'MovedAndContinuing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'DroppedOut') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DroppedOut', 'Dropped out', 'Dropped out is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Dropped out', [Definition] = 'Dropped out is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 6.00 WHERE [Code] = 'DroppedOut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'Transferred') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Transferred', 'Transferred to regular education', 'Transferred to regular education is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Transferred to regular education', [Definition] = 'Transferred to regular education is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 7.00 WHERE [Code] = 'Transferred' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'PartCNoLongerEligible') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartCNoLongerEligible', 'No longer eligible for Part C prior to reaching age three.', 'No longer eligible for Part C prior to reaching age three is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'No longer eligible for Part C prior to reaching age three.', [Definition] = 'No longer eligible for Part C prior to reaching age three is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 9.00 WHERE [Code] = 'PartCNoLongerEligible' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'PartBEligibleExitingPartC') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartBEligibleExitingPartC', 'Part B eligible, exiting Part C.', 'Part B eligible, exiting Part C is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Part B eligible, exiting Part C.', [Definition] = 'Part B eligible, exiting Part C is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 11.00 WHERE [Code] = 'PartBEligibleExitingPartC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'PartBEligibleContinuingPartC') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartBEligibleContinuingPartC', 'Part B eligible, continuing in Part C.', 'Part B eligible, continuing in Part C is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Part B eligible, continuing in Part C.', [Definition] = 'Part B eligible, continuing in Part C is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 13.00 WHERE [Code] = 'PartBEligibleContinuingPartC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'NotPartBEligibleExitingPartCWithReferrrals') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotPartBEligibleExitingPartCWithReferrrals', 'Not eligible for Part B, exit with referrals to other programs.', 'Not eligible for Part B, exit with referrals to other programs is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Not eligible for Part B, exit with referrals to other programs.', [Definition] = 'Not eligible for Part B, exit with referrals to other programs is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 15.00 WHERE [Code] = 'NotPartBEligibleExitingPartCWithReferrrals' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'NotPartBEligibleExitingPartCWithoutReferrrals') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotPartBEligibleExitingPartCWithoutReferrrals', 'Not eligible for Part B, exit with no referrals.', 'Not eligible for Part B, exit with no referrals is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Not eligible for Part B, exit with no referrals.', [Definition] = 'Not eligible for Part B, exit with no referrals is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 17.00 WHERE [Code] = 'NotPartBEligibleExitingPartCWithoutReferrrals' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'PartBEligibilityNotDeterminedExitingPartC') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PartBEligibilityNotDeterminedExitingPartC', 'Part B eligibility not determined.', 'Part B eligibility not determined is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Part B eligibility not determined.', [Definition] = 'Part B eligibility not determined is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 19.00 WHERE [Code] = 'PartBEligibilityNotDeterminedExitingPartC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'WithdrawalByParent') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WithdrawalByParent', 'Withdrawal by parent (or guardian).', 'Withdrawal by parent (or guardian) is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Withdrawal by parent (or guardian).', [Definition] = 'Withdrawal by parent (or guardian) is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 21.00 WHERE [Code] = 'WithdrawalByParent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'MovedOutOfState') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MovedOutOfState', 'Moved out of State', 'Moved out of State is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Moved out of State', [Definition] = 'Moved out of State is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 23.00 WHERE [Code] = 'MovedOutOfState' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'Unreachable') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unreachable', 'Attempts to contact the parent and/or child were unsuccessful.', 'Attempts to contact the parent and/or child were unsuccessful is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Attempts to contact the parent and/or child were unsuccessful.', [Definition] = 'Attempts to contact the parent and/or child were unsuccessful is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 25.00 WHERE [Code] = 'Unreachable' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'GraduatedAlternateDiploma') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GraduatedAlternateDiploma', 'Graduated with an alternate diploma', 'Graduated with an alternate diploma is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Graduated with an alternate diploma', [Definition] = 'Graduated with an alternate diploma is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 26.00 WHERE [Code] = 'GraduatedAlternateDiploma' END -END - -PRINT N'Populate RefSpecialEducationStaffCategory table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSpecialEducationStaffCategory]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationStaffCategory] WHERE [Code] = 'PSYCH') BEGIN INSERT INTO dbo.[RefSpecialEducationStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PSYCH', 'Psychologists', 'The special education staff member is categorized as a Psychologist.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationStaffCategory] -SET [Description] = 'Psychologists', [Definition] = 'The special education staff member is categorized as a Psychologist.', [SortOrder] = 1.00 WHERE [Code] = 'PSYCH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationStaffCategory] WHERE [Code] = 'SOCIALWORK') BEGIN INSERT INTO dbo.[RefSpecialEducationStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SOCIALWORK', 'Social Workers', 'The special education staff member is categorized as a Social Worker.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationStaffCategory] -SET [Description] = 'Social Workers', [Definition] = 'The special education staff member is categorized as a Social Worker.', [SortOrder] = 2.00 WHERE [Code] = 'SOCIALWORK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationStaffCategory] WHERE [Code] = 'OCCTHERAP') BEGIN INSERT INTO dbo.[RefSpecialEducationStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OCCTHERAP', 'Occupational Therapists', 'The special education staff member is categorized as a Occupational Therapist.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationStaffCategory] -SET [Description] = 'Occupational Therapists', [Definition] = 'The special education staff member is categorized as a Occupational Therapist.', [SortOrder] = 3.00 WHERE [Code] = 'OCCTHERAP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationStaffCategory] WHERE [Code] = 'AUDIO') BEGIN INSERT INTO dbo.[RefSpecialEducationStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AUDIO', 'Audiologists', 'The special education staff member is categorized as a Audiologist.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationStaffCategory] -SET [Description] = 'Audiologists', [Definition] = 'The special education staff member is categorized as a Audiologist.', [SortOrder] = 4.00 WHERE [Code] = 'AUDIO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationStaffCategory] WHERE [Code] = 'PEANDREC') BEGIN INSERT INTO dbo.[RefSpecialEducationStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PEANDREC', 'Physical Education Teachers and Recreation and Therapeutic Recreation Specialists', 'The special education staff member is categorized as a Physical Education Teacher/Recreation and Therapeutic Recreation Specialist.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationStaffCategory] -SET [Description] = 'Physical Education Teachers and Recreation and Therapeutic Recreation Specialists', [Definition] = 'The special education staff member is categorized as a Physical Education Teacher/Recreation and Therapeutic Recreation Specialist.', [SortOrder] = 5.00 WHERE [Code] = 'PEANDREC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationStaffCategory] WHERE [Code] = 'PHYSTHERAP') BEGIN INSERT INTO dbo.[RefSpecialEducationStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PHYSTHERAP', 'Physical Therapists', 'The special education staff member is categorized as a Physical Therapist.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationStaffCategory] -SET [Description] = 'Physical Therapists', [Definition] = 'The special education staff member is categorized as a Physical Therapist.', [SortOrder] = 6.00 WHERE [Code] = 'PHYSTHERAP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationStaffCategory] WHERE [Code] = 'SPEECHPATH') BEGIN INSERT INTO dbo.[RefSpecialEducationStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SPEECHPATH', 'Speech-Language Pathologists', 'The special education staff member is categorized as a Speech-Language Pathologist.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationStaffCategory] -SET [Description] = 'Speech-Language Pathologists', [Definition] = 'The special education staff member is categorized as a Speech-Language Pathologist.', [SortOrder] = 7.00 WHERE [Code] = 'SPEECHPATH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationStaffCategory] WHERE [Code] = 'INTERPRET') BEGIN INSERT INTO dbo.[RefSpecialEducationStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('INTERPRET', 'Interpreters', 'The special education staff member is categorized as a Interpreter.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationStaffCategory] -SET [Description] = 'Interpreters', [Definition] = 'The special education staff member is categorized as a Interpreter.', [SortOrder] = 8.00 WHERE [Code] = 'INTERPRET' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationStaffCategory] WHERE [Code] = 'COUNSELOR') BEGIN INSERT INTO dbo.[RefSpecialEducationStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('COUNSELOR', 'Counselors and Rehabilitation Counselors', 'The special education staff member is categorized as a Counselor/Rehabilitation Counselor.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationStaffCategory] -SET [Description] = 'Counselors and Rehabilitation Counselors', [Definition] = 'The special education staff member is categorized as a Counselor/Rehabilitation Counselor.', [SortOrder] = 9.00 WHERE [Code] = 'COUNSELOR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationStaffCategory] WHERE [Code] = 'ORIENTMOBIL') BEGIN INSERT INTO dbo.[RefSpecialEducationStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ORIENTMOBIL', 'Orientation and Mobility Specialists', 'The special education staff member is categorized as a Orientation and Mobility Specialist.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationStaffCategory] -SET [Description] = 'Orientation and Mobility Specialists', [Definition] = 'The special education staff member is categorized as a Orientation and Mobility Specialist.', [SortOrder] = 10.00 WHERE [Code] = 'ORIENTMOBIL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationStaffCategory] WHERE [Code] = 'MEDNURSE') BEGIN INSERT INTO dbo.[RefSpecialEducationStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MEDNURSE', 'Medical/Nursing Service Staff', 'The special education staff member is categorized as Medical/Nursing Service Staff.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationStaffCategory] -SET [Description] = 'Medical/Nursing Service Staff', [Definition] = 'The special education staff member is categorized as Medical/Nursing Service Staff.', [SortOrder] = 11.00 WHERE [Code] = 'MEDNURSE' END -END - -PRINT N'Populate RefSpecialEducationTeacherQualificationStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSpecialEducationTeacherQualificationStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationTeacherQualificationStatus] WHERE [Code] = 'SPEDTCHFULCRT') BEGIN INSERT INTO dbo.[RefSpecialEducationTeacherQualificationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SPEDTCHFULCRT', 'Fully certified', 'The special education teacher is fully certified in the state.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationTeacherQualificationStatus] -SET [Description] = 'Fully certified', [Definition] = 'The special education teacher is fully certified in the state.', [SortOrder] = 1.00 WHERE [Code] = 'SPEDTCHFULCRT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationTeacherQualificationStatus] WHERE [Code] = 'SPEDTCHNFULCRT') BEGIN INSERT INTO dbo.[RefSpecialEducationTeacherQualificationStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SPEDTCHNFULCRT', 'Not fully certified', 'The special education teacher is not fully certified in the state.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationTeacherQualificationStatus] -SET [Description] = 'Not fully certified', [Definition] = 'The special education teacher is not fully certified in the state.', [SortOrder] = 2.00 WHERE [Code] = 'SPEDTCHNFULCRT' END -END - -PRINT N'Populate RefStaffCompensationSourceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefStaffCompensationSourceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStaffCompensationSourceType] WHERE [Code] = 'K12School') BEGIN INSERT INTO dbo.[RefStaffCompensationSourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('K12School', 'K12 School', 'The K12 School is the source for the staff compensation a person receives.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStaffCompensationSourceType] -SET [Description] = 'K12 School', [Definition] = 'The K12 School is the source for the staff compensation a person receives.', [SortOrder] = 1.00 WHERE [Code] = 'K12School' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStaffCompensationSourceType] WHERE [Code] = 'LEA') BEGIN INSERT INTO dbo.[RefStaffCompensationSourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LEA', 'Local Education Agency', 'The Local Education Agency is the source for the staff compensation a person receives.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStaffCompensationSourceType] -SET [Description] = 'Local Education Agency', [Definition] = 'The Local Education Agency is the source for the staff compensation a person receives.', [SortOrder] = 2.00 WHERE [Code] = 'LEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStaffCompensationSourceType] WHERE [Code] = 'State') BEGIN INSERT INTO dbo.[RefStaffCompensationSourceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('State', 'State', 'The State is the source for the staff compensation a person receives.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStaffCompensationSourceType] -SET [Description] = 'State', [Definition] = 'The State is the source for the staff compensation a person receives.', [SortOrder] = 3.00 WHERE [Code] = 'State' END -END - -PRINT N'Populate RefStaffPerformanceLevel table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefStaffPerformanceLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStaffPerformanceLevel] WHERE [Code] = 'FAL1') BEGIN INSERT INTO dbo.[RefStaffPerformanceLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FAL1', 'Level 1 (lowest level)', 'Level 1 (lowest level) is the level used in the district evaluation system for the teacher or principal performance rating.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStaffPerformanceLevel] -SET [Description] = 'Level 1 (lowest level)', [Definition] = 'Level 1 (lowest level) is the level used in the district evaluation system for the teacher or principal performance rating.', [SortOrder] = 1.00 WHERE [Code] = 'FAL1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStaffPerformanceLevel] WHERE [Code] = 'FAL2') BEGIN INSERT INTO dbo.[RefStaffPerformanceLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FAL2', 'Level 2', 'Level 2 is the level used in the district evaluation system for the teacher or principal performance rating.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStaffPerformanceLevel] -SET [Description] = 'Level 2', [Definition] = 'Level 2 is the level used in the district evaluation system for the teacher or principal performance rating.', [SortOrder] = 2.00 WHERE [Code] = 'FAL2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStaffPerformanceLevel] WHERE [Code] = 'FAL3') BEGIN INSERT INTO dbo.[RefStaffPerformanceLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FAL3', 'Level 3', 'Level 3 is the level used in the district evaluation system for the teacher or principal performance rating.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStaffPerformanceLevel] -SET [Description] = 'Level 3', [Definition] = 'Level 3 is the level used in the district evaluation system for the teacher or principal performance rating.', [SortOrder] = 3.00 WHERE [Code] = 'FAL3' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStaffPerformanceLevel] WHERE [Code] = 'FAL4') BEGIN INSERT INTO dbo.[RefStaffPerformanceLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FAL4', 'Level 4', 'Level 4 is the level used in the district evaluation system for the teacher or principal performance rating.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStaffPerformanceLevel] -SET [Description] = 'Level 4', [Definition] = 'Level 4 is the level used in the district evaluation system for the teacher or principal performance rating.', [SortOrder] = 4.00 WHERE [Code] = 'FAL4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStaffPerformanceLevel] WHERE [Code] = 'FAL5') BEGIN INSERT INTO dbo.[RefStaffPerformanceLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FAL5', 'Level 5', 'Level 5 is the level used in the district evaluation system for the teacher or principal performance rating.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStaffPerformanceLevel] -SET [Description] = 'Level 5', [Definition] = 'Level 5 is the level used in the district evaluation system for the teacher or principal performance rating.', [SortOrder] = 5.00 WHERE [Code] = 'FAL5' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStaffPerformanceLevel] WHERE [Code] = 'FAL6') BEGIN INSERT INTO dbo.[RefStaffPerformanceLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FAL6', 'Level 6 (highest level)', 'Level 6 (highest level) is the level used in the district evaluation system for the teacher or principal performance rating.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStaffPerformanceLevel] -SET [Description] = 'Level 6 (highest level)', [Definition] = 'Level 6 (highest level) is the level used in the district evaluation system for the teacher or principal performance rating.', [SortOrder] = 6.00 WHERE [Code] = 'FAL6' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStaffPerformanceLevel] WHERE [Code] = 'EVALNR') BEGIN INSERT INTO dbo.[RefStaffPerformanceLevel]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EVALNR', 'Evaluated, not ranked', 'Evaluated, not ranked is the level used in the district evaluation system for the teacher or principal performance rating.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStaffPerformanceLevel] -SET [Description] = 'Evaluated, not ranked', [Definition] = 'Evaluated, not ranked is the level used in the district evaluation system for the teacher or principal performance rating.', [SortOrder] = 7.00 WHERE [Code] = 'EVALNR' END -END - -PRINT N'Populate RefStandardizedAdmissionTest table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefStandardizedAdmissionTest]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'SAT_Reading') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SAT_Reading', 'SAT Reading', 'SAT Reading is a test used for admissions purposes.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'SAT Reading', [Definition] = 'SAT Reading is a test used for admissions purposes.', [SortOrder] = 1.00 WHERE [Code] = 'SAT_Reading' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'SAT_Writing') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SAT_Writing', 'SAT Writing', 'SAT Writing is a test used for admissions purposes.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'SAT Writing', [Definition] = 'SAT Writing is a test used for admissions purposes.', [SortOrder] = 2.00 WHERE [Code] = 'SAT_Writing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'SAT_Math') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SAT_Math', 'SAT Math', 'SAT Math is a test used for admissions purposes.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'SAT Math', [Definition] = 'SAT Math is a test used for admissions purposes.', [SortOrder] = 3.00 WHERE [Code] = 'SAT_Math' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'SAT_Total') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SAT_Total', 'SAT Total', 'SAT Total is a test used for admissions purposes.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'SAT Total', [Definition] = 'SAT Total is a test used for admissions purposes.', [SortOrder] = 4.00 WHERE [Code] = 'SAT_Total' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'ACT_English') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ACT_English', 'ACT English', 'ACT English is a test used for admissions purposes.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'ACT English', [Definition] = 'ACT English is a test used for admissions purposes.', [SortOrder] = 5.00 WHERE [Code] = 'ACT_English' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'ACT_Math') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ACT_Math', 'ACT Math', 'ACT Math is a test used for admissions purposes.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'ACT Math', [Definition] = 'ACT Math is a test used for admissions purposes.', [SortOrder] = 6.00 WHERE [Code] = 'ACT_Math' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'ACT_Reading') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ACT_Reading', 'ACT Reading', 'ACT Reading is a test used for admissions purposes.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'ACT Reading', [Definition] = 'ACT Reading is a test used for admissions purposes.', [SortOrder] = 7.00 WHERE [Code] = 'ACT_Reading' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'ACT_Science') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ACT_Science', 'ACT Science', 'ACT Science is a test used for admissions purposes.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'ACT Science', [Definition] = 'ACT Science is a test used for admissions purposes.', [SortOrder] = 8.00 WHERE [Code] = 'ACT_Science' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'ACT_Composite') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ACT_Composite', 'ACT Composite', 'ACT Composite is a test used for admissions purposes.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'ACT Composite', [Definition] = 'ACT Composite is a test used for admissions purposes.', [SortOrder] = 9.00 WHERE [Code] = 'ACT_Composite' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'COMPASS_reading') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('COMPASS_reading', 'COMPASS reading', 'COMPASS reading is a test used for admissions purposes.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'COMPASS reading', [Definition] = 'COMPASS reading is a test used for admissions purposes.', [SortOrder] = 10.00 WHERE [Code] = 'COMPASS_reading' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'COMPASS_writing') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('COMPASS_writing', 'COMPASS writing', 'COMPASS writing is a test used for admissions purposes.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'COMPASS writing', [Definition] = 'COMPASS writing is a test used for admissions purposes.', [SortOrder] = 11.00 WHERE [Code] = 'COMPASS_writing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'COMPASS_math') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('COMPASS_math', 'COMPASS math', 'COMPASS math is a test used for admissions purposes.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'COMPASS math', [Definition] = 'COMPASS math is a test used for admissions purposes.', [SortOrder] = 12.00 WHERE [Code] = 'COMPASS_math' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'Accuplacer_reading') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Accuplacer_reading', 'Accuplacer reading', 'Accuplacer reading is a test used for admissions purposes.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'Accuplacer reading', [Definition] = 'Accuplacer reading is a test used for admissions purposes.', [SortOrder] = 13.00 WHERE [Code] = 'Accuplacer_reading' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'Accuplacer_writing') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Accuplacer_writing', 'Accuplacer writing', 'Accuplacer writing is a test used for admissions purposes.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'Accuplacer writing', [Definition] = 'Accuplacer writing is a test used for admissions purposes.', [SortOrder] = 14.00 WHERE [Code] = 'Accuplacer_writing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'Accuplacer_math') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Accuplacer_math', 'Accuplacer math', 'Accuplacer math is a test used for admissions purposes.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'Accuplacer math', [Definition] = 'Accuplacer math is a test used for admissions purposes.', [SortOrder] = 15.00 WHERE [Code] = 'Accuplacer_math' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStandardizedAdmissionTest] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefStandardizedAdmissionTest]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The test type used for admissions purposes is not yet included in CEDS as a Standardized Admissions Test Type.', 100.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStandardizedAdmissionTest] -SET [Description] = 'Other', [Definition] = 'The test type used for admissions purposes is not yet included in CEDS as a Standardized Admissions Test Type.', [SortOrder] = 100.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefState table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefState]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'AK') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AK', 'Alaska', 'Alaska', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Alaska', [Definition] = 'Alaska', [SortOrder] = 1.00 WHERE [Code] = 'AK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'AL') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AL', 'Alabama', 'Alabama', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Alabama', [Definition] = 'Alabama', [SortOrder] = 2.00 WHERE [Code] = 'AL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'AR') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AR', 'Arkansas', 'Arkansas', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Arkansas', [Definition] = 'Arkansas', [SortOrder] = 3.00 WHERE [Code] = 'AR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'AS') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AS', 'American Samoa', 'American Samoa', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'American Samoa', [Definition] = 'American Samoa', [SortOrder] = 4.00 WHERE [Code] = 'AS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'AZ') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AZ', 'Arizona', 'Arizona', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Arizona', [Definition] = 'Arizona', [SortOrder] = 5.00 WHERE [Code] = 'AZ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'CA') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CA', 'California', 'California', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'California', [Definition] = 'California', [SortOrder] = 6.00 WHERE [Code] = 'CA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'CO') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CO', 'Colorado', 'Colorado', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Colorado', [Definition] = 'Colorado', [SortOrder] = 7.00 WHERE [Code] = 'CO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'CT') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CT', 'Connecticut', 'Connecticut', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Connecticut', [Definition] = 'Connecticut', [SortOrder] = 8.00 WHERE [Code] = 'CT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'DC') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DC', 'District of Columbia', 'District of Columbia', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'District of Columbia', [Definition] = 'District of Columbia', [SortOrder] = 9.00 WHERE [Code] = 'DC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'DE') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DE', 'Delaware', 'Delaware', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Delaware', [Definition] = 'Delaware', [SortOrder] = 10.00 WHERE [Code] = 'DE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'FL') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FL', 'Florida', 'Florida', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Florida', [Definition] = 'Florida', [SortOrder] = 11.00 WHERE [Code] = 'FL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'FM') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FM', 'Federated States of Micronesia', 'Federated States of Micronesia', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Federated States of Micronesia', [Definition] = 'Federated States of Micronesia', [SortOrder] = 12.00 WHERE [Code] = 'FM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'GA') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GA', 'Georgia', 'Georgia', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Georgia', [Definition] = 'Georgia', [SortOrder] = 13.00 WHERE [Code] = 'GA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'GU') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GU', 'Guam', 'Guam', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Guam', [Definition] = 'Guam', [SortOrder] = 14.00 WHERE [Code] = 'GU' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'HI') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HI', 'Hawaii', 'Hawaii', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Hawaii', [Definition] = 'Hawaii', [SortOrder] = 15.00 WHERE [Code] = 'HI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'IA') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IA', 'Iowa', 'Iowa', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Iowa', [Definition] = 'Iowa', [SortOrder] = 16.00 WHERE [Code] = 'IA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'ID') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ID', 'Idaho', 'Idaho', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Idaho', [Definition] = 'Idaho', [SortOrder] = 17.00 WHERE [Code] = 'ID' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'IL') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IL', 'Illinois', 'Illinois', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Illinois', [Definition] = 'Illinois', [SortOrder] = 18.00 WHERE [Code] = 'IL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'IN') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IN', 'Indiana', 'Indiana', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Indiana', [Definition] = 'Indiana', [SortOrder] = 19.00 WHERE [Code] = 'IN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'KS') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KS', 'Kansas', 'Kansas', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Kansas', [Definition] = 'Kansas', [SortOrder] = 20.00 WHERE [Code] = 'KS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'KY') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KY', 'Kentucky', 'Kentucky', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Kentucky', [Definition] = 'Kentucky', [SortOrder] = 21.00 WHERE [Code] = 'KY' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'LA') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LA', 'Louisiana', 'Louisiana', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Louisiana', [Definition] = 'Louisiana', [SortOrder] = 22.00 WHERE [Code] = 'LA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'MA') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MA', 'Massachusetts', 'Massachusetts', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Massachusetts', [Definition] = 'Massachusetts', [SortOrder] = 23.00 WHERE [Code] = 'MA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'MD') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MD', 'Maryland', 'Maryland', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Maryland', [Definition] = 'Maryland', [SortOrder] = 24.00 WHERE [Code] = 'MD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'ME') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ME', 'Maine', 'Maine', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Maine', [Definition] = 'Maine', [SortOrder] = 25.00 WHERE [Code] = 'ME' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'MH') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MH', 'Marshall Islands', 'Marshall Islands', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Marshall Islands', [Definition] = 'Marshall Islands', [SortOrder] = 26.00 WHERE [Code] = 'MH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'MI') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MI', 'Michigan', 'Michigan', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Michigan', [Definition] = 'Michigan', [SortOrder] = 27.00 WHERE [Code] = 'MI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'MN') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MN', 'Minnesota', 'Minnesota', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Minnesota', [Definition] = 'Minnesota', [SortOrder] = 28.00 WHERE [Code] = 'MN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'MO') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MO', 'Missouri', 'Missouri', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Missouri', [Definition] = 'Missouri', [SortOrder] = 29.00 WHERE [Code] = 'MO' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'MP') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MP', 'Northern Marianas', 'Northern Marianas', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Northern Marianas', [Definition] = 'Northern Marianas', [SortOrder] = 30.00 WHERE [Code] = 'MP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'MS') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MS', 'Mississippi', 'Mississippi', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Mississippi', [Definition] = 'Mississippi', [SortOrder] = 31.00 WHERE [Code] = 'MS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'MT') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MT', 'Montana', 'Montana', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Montana', [Definition] = 'Montana', [SortOrder] = 32.00 WHERE [Code] = 'MT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'NC') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NC', 'North Carolina', 'North Carolina', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'North Carolina', [Definition] = 'North Carolina', [SortOrder] = 33.00 WHERE [Code] = 'NC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'ND') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ND', 'North Dakota', 'North Dakota', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'North Dakota', [Definition] = 'North Dakota', [SortOrder] = 34.00 WHERE [Code] = 'ND' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'NE') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NE', 'Nebraska', 'Nebraska', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Nebraska', [Definition] = 'Nebraska', [SortOrder] = 35.00 WHERE [Code] = 'NE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'NH') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NH', 'New Hampshire', 'New Hampshire', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'New Hampshire', [Definition] = 'New Hampshire', [SortOrder] = 36.00 WHERE [Code] = 'NH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'NJ') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NJ', 'New Jersey', 'New Jersey', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'New Jersey', [Definition] = 'New Jersey', [SortOrder] = 37.00 WHERE [Code] = 'NJ' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'NM') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NM', 'New Mexico', 'New Mexico', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'New Mexico', [Definition] = 'New Mexico', [SortOrder] = 38.00 WHERE [Code] = 'NM' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'NV') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NV', 'Nevada', 'Nevada', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Nevada', [Definition] = 'Nevada', [SortOrder] = 39.00 WHERE [Code] = 'NV' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'NY') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NY', 'New York', 'New York', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'New York', [Definition] = 'New York', [SortOrder] = 40.00 WHERE [Code] = 'NY' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'OH') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OH', 'Ohio', 'Ohio', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Ohio', [Definition] = 'Ohio', [SortOrder] = 41.00 WHERE [Code] = 'OH' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'OK') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OK', 'Oklahoma', 'Oklahoma', 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Oklahoma', [Definition] = 'Oklahoma', [SortOrder] = 42.00 WHERE [Code] = 'OK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'OR') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OR', 'Oregon', 'Oregon', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Oregon', [Definition] = 'Oregon', [SortOrder] = 43.00 WHERE [Code] = 'OR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'PA') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PA', 'Pennsylvania', 'Pennsylvania', 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Pennsylvania', [Definition] = 'Pennsylvania', [SortOrder] = 44.00 WHERE [Code] = 'PA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'PR') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PR', 'Puerto Rico', 'Puerto Rico', 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Puerto Rico', [Definition] = 'Puerto Rico', [SortOrder] = 45.00 WHERE [Code] = 'PR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'PW') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PW', 'Palau', 'Palau', 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Palau', [Definition] = 'Palau', [SortOrder] = 46.00 WHERE [Code] = 'PW' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'RI') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RI', 'Rhode Island', 'Rhode Island', 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Rhode Island', [Definition] = 'Rhode Island', [SortOrder] = 47.00 WHERE [Code] = 'RI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'SC') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SC', 'South Carolina', 'South Carolina', 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'South Carolina', [Definition] = 'South Carolina', [SortOrder] = 48.00 WHERE [Code] = 'SC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'SD') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SD', 'South Dakota', 'South Dakota', 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'South Dakota', [Definition] = 'South Dakota', [SortOrder] = 49.00 WHERE [Code] = 'SD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'TN') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TN', 'Tennessee', 'Tennessee', 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Tennessee', [Definition] = 'Tennessee', [SortOrder] = 50.00 WHERE [Code] = 'TN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'TX') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TX', 'Texas', 'Texas', 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Texas', [Definition] = 'Texas', [SortOrder] = 51.00 WHERE [Code] = 'TX' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'UT') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UT', 'Utah', 'Utah', 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Utah', [Definition] = 'Utah', [SortOrder] = 52.00 WHERE [Code] = 'UT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'VA') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VA', 'Virginia', 'Virginia', 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Virginia', [Definition] = 'Virginia', [SortOrder] = 53.00 WHERE [Code] = 'VA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'VI') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VI', 'Virgin Islands', 'Virgin Islands', 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Virgin Islands', [Definition] = 'Virgin Islands', [SortOrder] = 54.00 WHERE [Code] = 'VI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'VT') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VT', 'Vermont', 'Vermont', 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Vermont', [Definition] = 'Vermont', [SortOrder] = 55.00 WHERE [Code] = 'VT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'WA') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WA', 'Washington', 'Washington', 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Washington', [Definition] = 'Washington', [SortOrder] = 56.00 WHERE [Code] = 'WA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'WI') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WI', 'Wisconsin', 'Wisconsin', 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Wisconsin', [Definition] = 'Wisconsin', [SortOrder] = 57.00 WHERE [Code] = 'WI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'WV') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WV', 'West Virginia', 'West Virginia', 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'West Virginia', [Definition] = 'West Virginia', [SortOrder] = 58.00 WHERE [Code] = 'WV' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'WY') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WY', 'Wyoming', 'Wyoming', 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Wyoming', [Definition] = 'Wyoming', [SortOrder] = 59.00 WHERE [Code] = 'WY' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'AA') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AA', 'Armed Forces America', 'Armed Forces America', 90.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Armed Forces America', [Definition] = 'Armed Forces America', [SortOrder] = 90.00 WHERE [Code] = 'AA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'AE') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AE', 'Armed Forces Africa, Canada, Europe, and Mideast', 'Armed Forces Africa, Canada, Europe, and Mideast', 91.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Armed Forces Africa, Canada, Europe, and Mideast', [Definition] = 'Armed Forces Africa, Canada, Europe, and Mideast', [SortOrder] = 91.00 WHERE [Code] = 'AE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'AP') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AP', 'Armed Forces Pacific', 'Armed Forces Pacific', 92.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Armed Forces Pacific', [Definition] = 'Armed Forces Pacific', [SortOrder] = 92.00 WHERE [Code] = 'AP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'BI') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BI', 'Bureau of Indian Affairs', NULL, 93.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Bureau of Indian Affairs', [Definition] = NULL, [SortOrder] = 93.00 WHERE [Code] = 'BI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'DD') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DD', 'Department of Defense Domestic', NULL, 94.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Department of Defense Domestic', [Definition] = NULL, [SortOrder] = 94.00 WHERE [Code] = 'DD' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefState] WHERE [Code] = 'DO') BEGIN INSERT INTO dbo.[RefState]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DO', 'Department of Defense Overseas', NULL, 95.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefState] -SET [Description] = 'Department of Defense Overseas', [Definition] = NULL, [SortOrder] = 95.00 WHERE [Code] = 'DO' END -END - -PRINT N'Populate RefStateANSICode table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefStateANSICode]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Alabama', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Alabama', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Alaska', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Alaska', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Arizona', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Arizona', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Arkansas', NULL, 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Arkansas', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'California', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'California', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Colorado', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Colorado', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Connecticut', NULL, 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Connecticut', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Delaware', NULL, 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Delaware', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'District of Columbia', NULL, 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'District of Columbia', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Florida', NULL, 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Florida', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '13') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13', 'Georgia', NULL, 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Georgia', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '15') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('15', 'Hawaii', NULL, 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Hawaii', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = '15' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '16') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('16', 'Idaho', NULL, 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Idaho', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = '16' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '17') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('17', 'Illinois', NULL, 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Illinois', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = '17' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '18') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('18', 'Indiana', NULL, 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Indiana', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = '18' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '19') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('19', 'Iowa', NULL, 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Iowa', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = '19' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '20') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('20', 'Kansas ', NULL, 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Kansas ', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = '20' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '21') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('21', 'Kentucky', NULL, 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Kentucky', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = '21' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '22') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('22', 'Louisiana', NULL, 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Louisiana', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = '22' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '23') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('23', 'Maine', NULL, 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Maine', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = '23' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '24') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('24', 'Maryland', NULL, 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Maryland', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = '24' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '25') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('25', 'Massachusetts', NULL, 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Massachusetts', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = '25' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '26') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('26', 'Michigan', NULL, 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Michigan', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = '26' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '27') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('27', 'Minnesota', NULL, 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Minnesota', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = '27' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '28') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('28', 'Mississippi', NULL, 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Mississippi', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = '28' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '29') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('29', 'Missouri', NULL, 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Missouri', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = '29' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '30') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('30', 'Montana', NULL, 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Montana', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = '30' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '31') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('31', 'Nebraska', NULL, 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Nebraska', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = '31' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '32') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('32', 'Nevada', NULL, 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Nevada', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = '32' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '33') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('33', 'New Hampshire', NULL, 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'New Hampshire', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = '33' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '34') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('34', 'New Jersey', NULL, 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'New Jersey', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = '34' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '35') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('35', 'New Mexico', NULL, 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'New Mexico', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = '35' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '36') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('36', 'New York', NULL, 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'New York', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = '36' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '37') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('37', 'North Carolina', NULL, 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'North Carolina', [Definition] = NULL, [SortOrder] = 37.00 WHERE [Code] = '37' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '38') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('38', 'North Dakota', NULL, 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'North Dakota', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = '38' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '39') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('39', 'Ohio', NULL, 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Ohio', [Definition] = NULL, [SortOrder] = 39.00 WHERE [Code] = '39' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '40') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('40', 'Oklahoma', NULL, 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Oklahoma', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = '40' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '41') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('41', 'Oregon', NULL, 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Oregon', [Definition] = NULL, [SortOrder] = 41.00 WHERE [Code] = '41' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '42') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('42', 'Pennsylvania', NULL, 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Pennsylvania', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = '42' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '44') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('44', 'Rhode Island', NULL, 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Rhode Island', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = '44' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '45') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('45', 'South Carolina', NULL, 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'South Carolina', [Definition] = NULL, [SortOrder] = 45.00 WHERE [Code] = '45' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '46') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('46', 'South Dakota', NULL, 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'South Dakota', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = '46' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '47') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('47', 'Tennessee', NULL, 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Tennessee', [Definition] = NULL, [SortOrder] = 47.00 WHERE [Code] = '47' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '48') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('48', 'Texas', NULL, 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Texas', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = '48' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '49') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('49', 'Utah', NULL, 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Utah', [Definition] = NULL, [SortOrder] = 49.00 WHERE [Code] = '49' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '50') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('50', 'Vermont', NULL, 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Vermont', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = '50' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '51') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('51', 'Virginia', NULL, 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Virginia', [Definition] = NULL, [SortOrder] = 51.00 WHERE [Code] = '51' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '53') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('53', 'Washington', NULL, 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Washington', [Definition] = NULL, [SortOrder] = 53.00 WHERE [Code] = '53' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '54') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('54', 'West Virginia', NULL, 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'West Virginia', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = '54' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '55') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('55', 'Wisconsin', NULL, 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Wisconsin', [Definition] = NULL, [SortOrder] = 55.00 WHERE [Code] = '55' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '56') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('56', 'Wyoming', NULL, 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Wyoming', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = '56' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '60') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('60', 'American Samoa', NULL, 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'American Samoa', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = '60' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '64') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('64', 'Federated States of Micronesia', NULL, 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Federated States of Micronesia', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = '64' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '66') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('66', 'Guam', NULL, 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Guam', [Definition] = NULL, [SortOrder] = 66.00 WHERE [Code] = '66' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '68') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('68', 'Marshall Islands', NULL, 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Marshall Islands', [Definition] = NULL, [SortOrder] = 68.00 WHERE [Code] = '68' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '69') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('69', 'Northern Mariana Islands', NULL, 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Northern Mariana Islands', [Definition] = NULL, [SortOrder] = 69.00 WHERE [Code] = '69' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '70') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('70', 'Palau ', NULL, 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Palau ', [Definition] = NULL, [SortOrder] = 70.00 WHERE [Code] = '70' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '72') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('72', 'Puerto Rico', NULL, 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Puerto Rico', [Definition] = NULL, [SortOrder] = 72.00 WHERE [Code] = '72' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '78') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('78', 'Virgin Islands of the U.S.', NULL, 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Virgin Islands of the U.S.', [Definition] = NULL, [SortOrder] = 78.00 WHERE [Code] = '78' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '59') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('59', 'Bureau of Indian Affairs', NULL, 79.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Bureau of Indian Affairs', [Definition] = NULL, [SortOrder] = 79.00 WHERE [Code] = '59' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '63') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('63', 'Department of Defense Combined', NULL, 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Department of Defense Combined', [Definition] = NULL, [SortOrder] = 80.00 WHERE [Code] = '63' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '61') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('61', 'Department of Defense Domestic', NULL, 81.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Department of Defense Domestic', [Definition] = NULL, [SortOrder] = 81.00 WHERE [Code] = '61' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStateANSICode] WHERE [Code] = '58') BEGIN INSERT INTO dbo.[RefStateANSICode]([Code], [Description], [Definition], [SortOrder]) -VALUES ('58', 'Department of Defense Overseas', NULL, 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStateANSICode] -SET [Description] = 'Department of Defense Overseas', [Definition] = NULL, [SortOrder] = 82.00 WHERE [Code] = '58' END -END - -PRINT N'Populate RefStatePovertyDesignation table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefStatePovertyDesignation]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStatePovertyDesignation] WHERE [Code] = 'HighQuartile') BEGIN INSERT INTO dbo.[RefStatePovertyDesignation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HighQuartile', ' High poverty quartile school', 'The school is a high poverty quartile school according to state’s indicator of poverty.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStatePovertyDesignation] -SET [Description] = ' High poverty quartile school', [Definition] = 'The school is a high poverty quartile school according to state’s indicator of poverty.', [SortOrder] = 1.00 WHERE [Code] = 'HighQuartile' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStatePovertyDesignation] WHERE [Code] = 'LowQuartile') BEGIN INSERT INTO dbo.[RefStatePovertyDesignation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LowQuartile', 'Low poverty quartile school', 'The school is a low poverty quartile school according to state’s indicator of poverty.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStatePovertyDesignation] -SET [Description] = 'Low poverty quartile school', [Definition] = 'The school is a low poverty quartile school according to state’s indicator of poverty.', [SortOrder] = 2.00 WHERE [Code] = 'LowQuartile' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStatePovertyDesignation] WHERE [Code] = 'Neither') BEGIN INSERT INTO dbo.[RefStatePovertyDesignation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Neither', 'Neither high nor low poverty quartile school', 'The school is neither high nor low poverty quartile school according to state’s indicator of poverty.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStatePovertyDesignation] -SET [Description] = 'Neither high nor low poverty quartile school', [Definition] = 'The school is neither high nor low poverty quartile school according to state’s indicator of poverty.', [SortOrder] = 3.00 WHERE [Code] = 'Neither' END -END - -PRINT N'Populate RefStudentEnrollmentAccessType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefStudentEnrollmentAccessType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentEnrollmentAccessType] WHERE [Code] = '75027') BEGIN INSERT INTO dbo.[RefStudentEnrollmentAccessType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75027', 'Feeder school rights', 'Feeder school rights is specified as the designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentEnrollmentAccessType] -SET [Description] = 'Feeder school rights', [Definition] = 'Feeder school rights is specified as the designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', [SortOrder] = 1.00 WHERE [Code] = '75027' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentEnrollmentAccessType] WHERE [Code] = '75028') BEGIN INSERT INTO dbo.[RefStudentEnrollmentAccessType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75028', 'Geographic right', 'Geographic right is specified as the designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentEnrollmentAccessType] -SET [Description] = 'Geographic right', [Definition] = 'Geographic right is specified as the designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', [SortOrder] = 2.00 WHERE [Code] = '75028' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentEnrollmentAccessType] WHERE [Code] = '75029') BEGIN INSERT INTO dbo.[RefStudentEnrollmentAccessType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75029', 'Lottery', 'Lottery is specified as the designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentEnrollmentAccessType] -SET [Description] = 'Lottery', [Definition] = 'Lottery is specified as the designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', [SortOrder] = 3.00 WHERE [Code] = '75029' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentEnrollmentAccessType] WHERE [Code] = '75030') BEGIN INSERT INTO dbo.[RefStudentEnrollmentAccessType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75030', 'Policy preference', 'Policy that modifies student assignment based on preferences associated with such things as walk distances, racial or ethnic diversity, and family risk factors.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentEnrollmentAccessType] -SET [Description] = 'Policy preference', [Definition] = 'Policy that modifies student assignment based on preferences associated with such things as walk distances, racial or ethnic diversity, and family risk factors.', [SortOrder] = 4.00 WHERE [Code] = '75030' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentEnrollmentAccessType] WHERE [Code] = '75031') BEGIN INSERT INTO dbo.[RefStudentEnrollmentAccessType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('75031', 'Selective admissions', 'Selective admissions is specified as the designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentEnrollmentAccessType] -SET [Description] = 'Selective admissions', [Definition] = 'Selective admissions is specified as the designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', [SortOrder] = 5.00 WHERE [Code] = '75031' END -END - -PRINT N'Populate RefStudentSchoolAffiliationStateDefinedStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefStudentSchoolAffiliationStateDefinedStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSchoolAffiliationStateDefinedStatus] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefStudentSchoolAffiliationStateDefinedStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The option is not yet defined in CEDS', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSchoolAffiliationStateDefinedStatus] -SET [Description] = 'Other', [Definition] = 'The option is not yet defined in CEDS', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefStudentSupportServiceAvailabilityType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefStudentSupportServiceAvailabilityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceAvailabilityType] WHERE [Code] = '100') BEGIN INSERT INTO dbo.[RefStudentSupportServiceAvailabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('100', 'All students', 'All students are eligible to receive support services, not just students receiving aid and services under Section 504 of the Rehabilitation Act of 1973, or under the Individuals with Disabilities Education Act (IDEA).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceAvailabilityType] -SET [Description] = 'All students', [Definition] = 'All students are eligible to receive support services, not just students receiving aid and services under Section 504 of the Rehabilitation Act of 1973, or under the Individuals with Disabilities Education Act (IDEA).', [SortOrder] = 1.00 WHERE [Code] = '100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceAvailabilityType] WHERE [Code] = '102') BEGIN INSERT INTO dbo.[RefStudentSupportServiceAvailabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('102', 'English learners', 'Support services are reserved for students who are English learners.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceAvailabilityType] -SET [Description] = 'English learners', [Definition] = 'Support services are reserved for students who are English learners.', [SortOrder] = 2.00 WHERE [Code] = '102' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceAvailabilityType] WHERE [Code] = '105') BEGIN INSERT INTO dbo.[RefStudentSupportServiceAvailabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('105', 'Students from low-income families', 'Support services are reserved for students from low-income families.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceAvailabilityType] -SET [Description] = 'Students from low-income families', [Definition] = 'Support services are reserved for students from low-income families.', [SortOrder] = 3.00 WHERE [Code] = '105' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceAvailabilityType] WHERE [Code] = '104') BEGIN INSERT INTO dbo.[RefStudentSupportServiceAvailabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('104', 'Students in Title 1 schools', 'Support services are reserved for students who are enrolled in/attend schools that are designated as Title 1.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceAvailabilityType] -SET [Description] = 'Students in Title 1 schools', [Definition] = 'Support services are reserved for students who are enrolled in/attend schools that are designated as Title 1.', [SortOrder] = 4.00 WHERE [Code] = '104' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceAvailabilityType] WHERE [Code] = '103') BEGIN INSERT INTO dbo.[RefStudentSupportServiceAvailabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('103', 'Students with 504 plan', 'Support services are reserved for students with a 504 plan.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceAvailabilityType] -SET [Description] = 'Students with 504 plan', [Definition] = 'Support services are reserved for students with a 504 plan.', [SortOrder] = 5.00 WHERE [Code] = '103' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceAvailabilityType] WHERE [Code] = '101') BEGIN INSERT INTO dbo.[RefStudentSupportServiceAvailabilityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('101', 'Students with disabilities', 'Accommodations are reserved for students receiving aid and services under Section 504 of the Rehabilitation Act of 1973, as amended, or under the Individuals with Disabilities Education Act (IDEA) according to an Individualized Education Program (IEP), Individual Family Service Plan (IFSP), or service plan.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceAvailabilityType] -SET [Description] = 'Students with disabilities', [Definition] = 'Accommodations are reserved for students receiving aid and services under Section 504 of the Rehabilitation Act of 1973, as amended, or under the Individuals with Disabilities Education Act (IDEA) according to an Individualized Education Program (IEP), Individual Family Service Plan (IFSP), or service plan.', [SortOrder] = 6.00 WHERE [Code] = '101' END -END - -PRINT N'Populate RefStudentSupportServiceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefStudentSupportServiceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00290') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00290', 'Adaptive physical education', 'Programs designed to foster the development of the following physical activities: physical and motor fitness: fundamental motor skills and patterns; skills in aquatics and dance, including individual and group games; and sports (including intramural and lifetime sports). This term also includes special physical education, adapted physical education, movement education, and motor development.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Adaptive physical education', [Definition] = 'Programs designed to foster the development of the following physical activities: physical and motor fitness: fundamental motor skills and patterns; skills in aquatics and dance, including individual and group games; and sports (including intramural and lifetime sports). This term also includes special physical education, adapted physical education, movement education, and motor development.', [SortOrder] = 1.00 WHERE [Code] = '00290' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00291') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00291', 'Art therapy', 'Programs that enable individuals who have mental, emotional, social, or physical problems to achieve self-expression and emotional release by communicating their emotions and conflicts graphically through painting, drawing, sculpting or other art forms. Art therapy can be used as diagnostic tool or a treatment technique.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Art therapy', [Definition] = 'Programs that enable individuals who have mental, emotional, social, or physical problems to achieve self-expression and emotional release by communicating their emotions and conflicts graphically through painting, drawing, sculpting or other art forms. Art therapy can be used as diagnostic tool or a treatment technique.', [SortOrder] = 2.00 WHERE [Code] = '00291' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00292') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00292', 'Assistive technology services', 'Programs that directly assist an individual with disabilities in the selection, acquisition, or use of an assistive technology device. Such assistance includes: 1) the evaluation of the needs of an individual, including a functional evaluation of the individual in his or her customary environment; 2) purchasing, leasing, or otherwise providing for the acquisition of assistive technology devices; 3) selecting, designing, fitting, customizing, adopting, applying, maintaining, repairing, or replacing assistive technology devices; 4) coordinating and using other therapies, interventions, or services (e.g., those associated with existing education and rehabilitation plans and programs); 5) training and technical assistance for an individual or, if appropriate, an individuals'' family members; and 6) training or technical assistance for professionals (including those providing early intervention services), employers, or other individuals who are substantially involved.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Assistive technology services', [Definition] = 'Programs that directly assist an individual with disabilities in the selection, acquisition, or use of an assistive technology device. Such assistance includes: 1) the evaluation of the needs of an individual, including a functional evaluation of the individual in his or her customary environment; 2) purchasing, leasing, or otherwise providing for the acquisition of assistive technology devices; 3) selecting, designing, fitting, customizing, adopting, applying, maintaining, repairing, or replacing assistive technology devices; 4) coordinating and using other therapies, interventions, or services (e.g., those associated with existing education and rehabilitation plans and programs); 5) training and technical assistance for an individual or, if appropriate, an individuals'' family members; and 6) training or technical assistance for professionals (including those providing early intervention services), employers, or other individuals who are substantially involved.', [SortOrder] = 3.00 WHERE [Code] = '00292' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00293') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00293', 'Audiological services', 'Services that include: 1)identification of individuals with hearing loss: 2) determination of the range, nature, and degree of hearing loss, and communication functions, by use of audiological evaluation, and speech conservation; 4) creation and administration of programs for prevention of hearing loss; 5) counseling and guidance of students, parent/guardians, and teachers regarding hearing loss; and 6) determination of an individual''s need for group and individual amplification, selecting and fitting an appropriate aid, and evaluating the effectiveness of amplification.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Audiological services', [Definition] = 'Services that include: 1)identification of individuals with hearing loss: 2) determination of the range, nature, and degree of hearing loss, and communication functions, by use of audiological evaluation, and speech conservation; 4) creation and administration of programs for prevention of hearing loss; 5) counseling and guidance of students, parent/guardians, and teachers regarding hearing loss; and 6) determination of an individual''s need for group and individual amplification, selecting and fitting an appropriate aid, and evaluating the effectiveness of amplification.', [SortOrder] = 4.00 WHERE [Code] = '00293' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73050') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73050', 'Augmentative Communication Service', 'Augmentative Communication Service is provided to the person or a group of persons.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Augmentative Communication Service', [Definition] = 'Augmentative Communication Service is provided to the person or a group of persons.', [SortOrder] = 5.00 WHERE [Code] = '73050' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73051') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73051', 'Autism Spectrum Disorder Service', 'Autism Spectrum Disorder Service is provided to the person or a group of persons.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Autism Spectrum Disorder Service', [Definition] = 'Autism Spectrum Disorder Service is provided to the person or a group of persons.', [SortOrder] = 6.00 WHERE [Code] = '73051' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73052') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73052', 'Behavior and Behavioral Consultation Service', 'Behavior and Behavioral Consultation Service is provided to the person or a group of persons.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Behavior and Behavioral Consultation Service', [Definition] = 'Behavior and Behavioral Consultation Service is provided to the person or a group of persons.', [SortOrder] = 7.00 WHERE [Code] = '73052' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73053') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73053', 'Braille Service', 'Braille Service is provided to the person or a group of persons.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Braille Service', [Definition] = 'Braille Service is provided to the person or a group of persons.', [SortOrder] = 8.00 WHERE [Code] = '73053' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00889') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00889', 'Career and technical education rehabilitation training and job placement', 'Programs that provide adaptive career and technical education training as a method of rehabilitating students with special needs, including those with disabilities. Program support continues beyond the rehabilitation and training phases, and includes job placement services.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Career and technical education rehabilitation training and job placement', [Definition] = 'Programs that provide adaptive career and technical education training as a method of rehabilitating students with special needs, including those with disabilities. Program support continues beyond the rehabilitation and training phases, and includes job placement services.', [SortOrder] = 9.00 WHERE [Code] = '00889' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00878') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00878', 'Case management services', 'Programs that develop case plans for the evaluation, treatment and/or care of individuals who, because of age, illness, disability or other difficulties, are unable to arrange for services on their own behalf. The services also assess the individual''s needs, coordinate the delivery of services, ensure that services are obtained in accordance with the case plan, and monitor progress to ensure that services are having a desired impact.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Case management services', [Definition] = 'Programs that develop case plans for the evaluation, treatment and/or care of individuals who, because of age, illness, disability or other difficulties, are unable to arrange for services on their own behalf. The services also assess the individual''s needs, coordinate the delivery of services, ensure that services are obtained in accordance with the case plan, and monitor progress to ensure that services are having a desired impact.', [SortOrder] = 10.00 WHERE [Code] = '00878' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00295') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00295', 'Children''s protective services', 'Programs that investigate reports of child abuse, neglect, and abandonment, and provide for the temporary placement of a child who, for his or her own protection, has been removed from custody of his or her parent/guardians. Program staff works with families that are experiencing the problem of child abuse with the objective of facilitating continued family unification or reunification. These programs also provide ongoing support services for children in permanent placement.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Children''s protective services', [Definition] = 'Programs that investigate reports of child abuse, neglect, and abandonment, and provide for the temporary placement of a child who, for his or her own protection, has been removed from custody of his or her parent/guardians. Program staff works with families that are experiencing the problem of child abuse with the objective of facilitating continued family unification or reunification. These programs also provide ongoing support services for children in permanent placement.', [SortOrder] = 11.00 WHERE [Code] = '00295' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00881') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00881', 'Communication services', 'Programs that help participants develop or refine their communication skills, usually by focusing on communication in a particular context (e.g., helping a parent/guardian communicate with a child or helping professionals communicate with their clients). Training may emphasize active listening skills, problem-solving skills, conflict resolution techniques, body language, empathy, sensitivity to the values and/or cultural background of other, genuineness and other facets of the communication process.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Communication services', [Definition] = 'Programs that help participants develop or refine their communication skills, usually by focusing on communication in a particular context (e.g., helping a parent/guardian communicate with a child or helping professionals communicate with their clients). Training may emphasize active listening skills, problem-solving skills, conflict resolution techniques, body language, empathy, sensitivity to the values and/or cultural background of other, genuineness and other facets of the communication process.', [SortOrder] = 12.00 WHERE [Code] = '00881' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73057') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73057', 'Community based career training', 'Career education and training provided to all students in community work settings.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Community based career training', [Definition] = 'Career education and training provided to all students in community work settings.', [SortOrder] = 13.00 WHERE [Code] = '73057' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73056') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73056', 'Community based career training for Special Education', 'Career education and training provided specifically to students with disabilities in community work settings.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Community based career training for Special Education', [Definition] = 'Career education and training provided specifically to students with disabilities in community work settings.', [SortOrder] = 14.00 WHERE [Code] = '73056' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00882') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00882', 'Community recreational services', 'Programs that provide equipment and facilities that ensure individuals with special needs can participate in specific recreational activities, games, or sports of their choice, regardless of age.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Community recreational services', [Definition] = 'Programs that provide equipment and facilities that ensure individuals with special needs can participate in specific recreational activities, games, or sports of their choice, regardless of age.', [SortOrder] = 15.00 WHERE [Code] = '00882' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73048') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73048', 'Curriculum planning', 'Curriculum planning is provided to the person or a group of persons.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Curriculum planning', [Definition] = 'Curriculum planning is provided to the person or a group of persons.', [SortOrder] = 16.00 WHERE [Code] = '73048' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00334') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00334', 'Developmental childcare program', 'An organized program that provides childcare services on a regular basis for a group of children; the program is directed toward the facilitation of several developmental areas.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Developmental childcare program', [Definition] = 'An organized program that provides childcare services on a regular basis for a group of children; the program is directed toward the facilitation of several developmental areas.', [SortOrder] = 17.00 WHERE [Code] = '00334' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73047') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73047', 'Early Intervention / Early Childhood Special Education Special Service', 'The design of learning environments and activities that promote the child''s acquisition of skills in a variety of developmental areas, include cognitive processes and social interaction. ', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Early Intervention / Early Childhood Special Education Special Service', [Definition] = 'The design of learning environments and activities that promote the child''s acquisition of skills in a variety of developmental areas, include cognitive processes and social interaction. ', [SortOrder] = 18.00 WHERE [Code] = '73047' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00297') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00297', 'Early intervention services', 'A program which provides services that: 1) are designed to meet the development needs of each child and family eligible, and are focused on enhancing the child''s development; 2) are selected in collaboration with the parent/guardian; 3) are provided under public supervision by qualified personnel, in conformity with an individualized family service plan; 4) are offered at no cost unless subject to federal or state law mandating a system of payments (including a schedule of sliding fees); and 5) meet the standards of the state.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Early intervention services', [Definition] = 'A program which provides services that: 1) are designed to meet the development needs of each child and family eligible, and are focused on enhancing the child''s development; 2) are selected in collaboration with the parent/guardian; 3) are provided under public supervision by qualified personnel, in conformity with an individualized family service plan; 4) are offered at no cost unless subject to federal or state law mandating a system of payments (including a schedule of sliding fees); and 5) meet the standards of the state.', [SortOrder] = 19.00 WHERE [Code] = '00297' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00298') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00298', 'Educational therapy', 'Programs that provide diagnostic and treatment services which combine psychotherapeutic and tutorial techniques for individuals who have learning disabilities such as dyslexia, perceptual problems, emotional problems or other difficulties.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Educational therapy', [Definition] = 'Programs that provide diagnostic and treatment services which combine psychotherapeutic and tutorial techniques for individuals who have learning disabilities such as dyslexia, perceptual problems, emotional problems or other difficulties.', [SortOrder] = 20.00 WHERE [Code] = '00298' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73054') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73054', 'ESL/Migrant Service', 'ESL/Migrant Service is provided to the person or a group of persons.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'ESL/Migrant Service', [Definition] = 'ESL/Migrant Service is provided to the person or a group of persons.', [SortOrder] = 21.00 WHERE [Code] = '73054' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00299') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00299', 'Family counseling', 'Programs that offer therapeutic sessions that focus on the system of relationships and communication patterns between family members and attempt to modify those relationships and patterns to achieve greater harmony. The therapist focuses on the family as a unit rather than concentrating on the member who has been singled out as being in need of treatment.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Family counseling', [Definition] = 'Programs that offer therapeutic sessions that focus on the system of relationships and communication patterns between family members and attempt to modify those relationships and patterns to achieve greater harmony. The therapist focuses on the family as a unit rather than concentrating on the member who has been singled out as being in need of treatment.', [SortOrder] = 22.00 WHERE [Code] = '00299' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00333') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00333', 'Family training, counseling, and home visits', 'Services provided, as appropriate, by social workers, psychologists, and other qualified personnel to assist the family of a child eligible under this part in understanding the special needs of the child and enhancing the child''s development.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Family training, counseling, and home visits', [Definition] = 'Services provided, as appropriate, by social workers, psychologists, and other qualified personnel to assist the family of a child eligible under this part in understanding the special needs of the child and enhancing the child''s development.', [SortOrder] = 23.00 WHERE [Code] = '00333' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00303') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00303', 'Health care', 'Programs whose primary purpose is to help individuals achieve and maintain physical well-being through the study, prevention, screening, evaluation and treatment of individuals who have illnesses, injuries, or disabilities.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Health care', [Definition] = 'Programs whose primary purpose is to help individuals achieve and maintain physical well-being through the study, prevention, screening, evaluation and treatment of individuals who have illnesses, injuries, or disabilities.', [SortOrder] = 24.00 WHERE [Code] = '00303' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73060') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73060', 'Homebound or Hospitalized', 'Services provided to students in the home or in the hospital who are at home or who have been hospitalized.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Homebound or Hospitalized', [Definition] = 'Services provided to students in the home or in the hospital who are at home or who have been hospitalized.', [SortOrder] = 25.00 WHERE [Code] = '73060' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00883') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00883', 'Independent living', 'Assistance provided to individuals with special needs including those with disabilities: 1) to learn the basic skills of daily living through individual and group counseling and instruction; 2) to experience and practice coping with real or simulated life situational demands; or 3) to use assistive devices, special equipment, or specialized assistant.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Independent living', [Definition] = 'Assistance provided to individuals with special needs including those with disabilities: 1) to learn the basic skills of daily living through individual and group counseling and instruction; 2) to experience and practice coping with real or simulated life situational demands; or 3) to use assistive devices, special equipment, or specialized assistant.', [SortOrder] = 26.00 WHERE [Code] = '00883' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73058') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73058', 'Individual career education', 'Career education and training provided to students in a personalized or individual setting.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Individual career education', [Definition] = 'Career education and training provided to students in a personalized or individual setting.', [SortOrder] = 27.00 WHERE [Code] = '73058' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73059') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73059', 'Individual career education for special education', 'Career education provided specifically to students with disabilities in a personalized or individual setting.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Individual career education for special education', [Definition] = 'Career education provided specifically to students with disabilities in a personalized or individual setting.', [SortOrder] = 28.00 WHERE [Code] = '73059' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73049') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73049', 'Instructional Aide/Assistant/Intervener Service', 'Instructional Aide/Assistant/Intervener Service is provided to the person or a group of persons.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Instructional Aide/Assistant/Intervener Service', [Definition] = 'Instructional Aide/Assistant/Intervener Service is provided to the person or a group of persons.', [SortOrder] = 29.00 WHERE [Code] = '73049' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00304') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00304', 'Interpretation for the hearing impaired', 'Services that enable students who have hearing impairments to communicate their needs manually, verbally, or in writing.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Interpretation for the hearing impaired', [Definition] = 'Services that enable students who have hearing impairments to communicate their needs manually, verbally, or in writing.', [SortOrder] = 30.00 WHERE [Code] = '00304' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00332') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00332', 'Medical services only for diagnostic or evaluation purposes', 'Services provided by a licensed physician to determine a child''s developmental status and need for early intervention services.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Medical services only for diagnostic or evaluation purposes', [Definition] = 'Services provided by a licensed physician to determine a child''s developmental status and need for early intervention services.', [SortOrder] = 31.00 WHERE [Code] = '00332' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00305') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00305', 'Mental health counseling', 'Programs that specialize in the treatment of students who have adjustment or behavior problems, emotional disturbances, personality disorders, incipient illnesses, and/or other comparable conditions', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Mental health counseling', [Definition] = 'Programs that specialize in the treatment of students who have adjustment or behavior problems, emotional disturbances, personality disorders, incipient illnesses, and/or other comparable conditions', [SortOrder] = 32.00 WHERE [Code] = '00305' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00884') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00884', 'Mental health services', 'Programs that provide services to individuals who have been hospitalized for treatment of acute or chronic mental or emotional disturbances, and facilitate their return to the community. The programs also offer psychiatric treatment in a setting that is less restrictive than inpatient hospitalization.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Mental health services', [Definition] = 'Programs that provide services to individuals who have been hospitalized for treatment of acute or chronic mental or emotional disturbances, and facilitate their return to the community. The programs also offer psychiatric treatment in a setting that is less restrictive than inpatient hospitalization.', [SortOrder] = 33.00 WHERE [Code] = '00884' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00306') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00306', 'Music therapy', 'Programs that use music and music-related activities to help the student maintain mental functioning, to facilitate social and emotional growth, to promote communication, to develop constructive use of leisure time and to improve or maintain motor and perceptual skills. Music can be used as a passive agent as in the case of listening to music to aid in reminiscence, reality orientation or relaxation; or as an active creative process in which the client participates in musical production.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Music therapy', [Definition] = 'Programs that use music and music-related activities to help the student maintain mental functioning, to facilitate social and emotional growth, to promote communication, to develop constructive use of leisure time and to improve or maintain motor and perceptual skills. Music can be used as a passive agent as in the case of listening to music to aid in reminiscence, reality orientation or relaxation; or as an active creative process in which the client participates in musical production.', [SortOrder] = 34.00 WHERE [Code] = '00306' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00300') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00300', 'National School Nutrition programs', 'A federally-funded program that provides supplemental nutrition in the form of a free meal, free snack, or free milk for income-eligible students who are unable to pay the cost. Public and non-profit private schools participating in the program are reimbursed for the meal/snack/milk served.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'National School Nutrition programs', [Definition] = 'A federally-funded program that provides supplemental nutrition in the form of a free meal, free snack, or free milk for income-eligible students who are unable to pay the cost. Public and non-profit private schools participating in the program are reimbursed for the meal/snack/milk served.', [SortOrder] = 35.00 WHERE [Code] = '00300' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00308') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00308', 'Note-taking assistance', 'Programs that assist students who are unable to make their own record of classes or lectures.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Note-taking assistance', [Definition] = 'Programs that assist students who are unable to make their own record of classes or lectures.', [SortOrder] = 36.00 WHERE [Code] = '00308' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00335') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00335', 'Nursing service', 'Services that are provided for the assessment of health status for the purpose of providing nursing care, including the identification of patterns of human response to actual or potential health problems. They also include the provision of nursing care to prevent health problems, restore or improve functioning, and promote optimal health and development. Finally, they involve the administration of medications, treatments, and regimens prescribed by a licensed physician.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Nursing service', [Definition] = 'Services that are provided for the assessment of health status for the purpose of providing nursing care, including the identification of patterns of human response to actual or potential health problems. They also include the provision of nursing care to prevent health problems, restore or improve functioning, and promote optimal health and development. Finally, they involve the administration of medications, treatments, and regimens prescribed by a licensed physician.', [SortOrder] = 37.00 WHERE [Code] = '00335' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00336') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00336', 'Nutrition services', 'Services that conduct individual assessments in nutritional history and dietary intake; anthropometrics, biochemical, and clinical variables; feeding skills and feeding problems; and food habits and food preferences. They also develop and monitor appropriate plans to address the nutritional needs of eligible children, and make referrals to appropriate community resources to carry out nutritional programs.', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Nutrition services', [Definition] = 'Services that conduct individual assessments in nutritional history and dietary intake; anthropometrics, biochemical, and clinical variables; feeding skills and feeding problems; and food habits and food preferences. They also develop and monitor appropriate plans to address the nutritional needs of eligible children, and make referrals to appropriate community resources to carry out nutritional programs.', [SortOrder] = 38.00 WHERE [Code] = '00336' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00309') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00309', 'Occupational therapy', 'Services that address the functional needs of an individual relating to adaptive development, adaptive behavior and play, and sensory, motor, and postural development. These services are designed to improve the individual''s functional ability to perform tasks in the home, school, and community settings and include: 1) identification assessment and intervention; 2) adaptation of the environment, and selection, design and fabrication of assistive and orthodontic devices to facilitate the development and promote the acquisition of functional skills; and 3) prevention or minimization of the impact of initial or future impairment, delay in development, or loss of functional ability.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Occupational therapy', [Definition] = 'Services that address the functional needs of an individual relating to adaptive development, adaptive behavior and play, and sensory, motor, and postural development. These services are designed to improve the individual''s functional ability to perform tasks in the home, school, and community settings and include: 1) identification assessment and intervention; 2) adaptation of the environment, and selection, design and fabrication of assistive and orthodontic devices to facilitate the development and promote the acquisition of functional skills; and 3) prevention or minimization of the impact of initial or future impairment, delay in development, or loss of functional ability.', [SortOrder] = 39.00 WHERE [Code] = '00309' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00310') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00310', 'Orientation and mobility services', 'Programs that help individuals who are blind or who have visual impairments to develop the fundamental spatial concepts and skills that are necessary for maximum mobility and independent living. Instruction focuses on moving safely and efficiently in the school, home or community environment, and usually includes procedures for street crossings, travel in unfamiliar areas, utilization of public transportation, and appropriate use of aids such as sighted guides or canes.', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Orientation and mobility services', [Definition] = 'Programs that help individuals who are blind or who have visual impairments to develop the fundamental spatial concepts and skills that are necessary for maximum mobility and independent living. Instruction focuses on moving safely and efficiently in the school, home or community environment, and usually includes procedures for street crossings, travel in unfamiliar areas, utilization of public transportation, and appropriate use of aids such as sighted guides or canes.', [SortOrder] = 40.00 WHERE [Code] = '00310' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'A student support service not yet defined in CEDS is provided to the person or a group of persons.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Other', [Definition] = 'A student support service not yet defined in CEDS is provided to the person or a group of persons.', [SortOrder] = 41.00 WHERE [Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00311') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00311', 'Parenting skills assistance', 'Programs that offer classes, groups, or other educational opportunities for parents or potential parents who want to acquire the knowledge and skills to be effective in their parenting role.', 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Parenting skills assistance', [Definition] = 'Programs that offer classes, groups, or other educational opportunities for parents or potential parents who want to acquire the knowledge and skills to be effective in their parenting role.', [SortOrder] = 42.00 WHERE [Code] = '00311' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00312') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00312', 'Peer services', 'Programs that specialize in assisting the student through peer interaction. Such programs include peer counseling, tutoring, and leadership activities.', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Peer services', [Definition] = 'Programs that specialize in assisting the student through peer interaction. Such programs include peer counseling, tutoring, and leadership activities.', [SortOrder] = 43.00 WHERE [Code] = '00312' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00313') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00313', 'Physical therapy', 'Services to prevent or alleviate movement dysfunction and related functional problems that include: 1) screening, evaluation, and assessment of children and youth with disabilities to identify movement dysfunction; 2) obtaining, interpreting, and integrating information appropriate to program planning to prevent or alleviate movement dysfunction and related functional problems; and 3) providing individual or group services or treatment to prevent, alleviate, or compensate for movement dysfunction and related functional problems.', 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Physical therapy', [Definition] = 'Services to prevent or alleviate movement dysfunction and related functional problems that include: 1) screening, evaluation, and assessment of children and youth with disabilities to identify movement dysfunction; 2) obtaining, interpreting, and integrating information appropriate to program planning to prevent or alleviate movement dysfunction and related functional problems; and 3) providing individual or group services or treatment to prevent, alleviate, or compensate for movement dysfunction and related functional problems.', [SortOrder] = 44.00 WHERE [Code] = '00313' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00331') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00331', 'Psychological services', 'Services that address the psychological needs of the individual through the administering of psychological needs of the individual through the administering of psychological and developmental tests, and other assessment procedures. They also involve the interpretation of assessment results. In addition, they include obtaining, integrating, and interpreting information about individual behavior, and individual and family conditions related to learning, mental health, and development. Finally, the services also involve the planning and management of a program of psychological services, including psychological counseling for children and parents, family counseling, consultation on child development, parent training, and education programs.', 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Psychological services', [Definition] = 'Services that address the psychological needs of the individual through the administering of psychological needs of the individual through the administering of psychological and developmental tests, and other assessment procedures. They also involve the interpretation of assessment results. In addition, they include obtaining, integrating, and interpreting information about individual behavior, and individual and family conditions related to learning, mental health, and development. Finally, the services also involve the planning and management of a program of psychological services, including psychological counseling for children and parents, family counseling, consultation on child development, parent training, and education programs.', [SortOrder] = 45.00 WHERE [Code] = '00331' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00314') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00314', 'Reader service', 'Programs that provide textbook reading services for individuals who are blind or have visual impairments.', 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Reader service', [Definition] = 'Programs that provide textbook reading services for individuals who are blind or have visual impairments.', [SortOrder] = 46.00 WHERE [Code] = '00314' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00315') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00315', 'Recreation service', 'Programs that may include: 1) assessment of leisure function; 2) therapeutic recreation services; 3) recreation programs in schools and community agencies; and 4) leisure education.', 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Recreation service', [Definition] = 'Programs that may include: 1) assessment of leisure function; 2) therapeutic recreation services; 3) recreation programs in schools and community agencies; and 4) leisure education.', [SortOrder] = 47.00 WHERE [Code] = '00315' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00318') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00318', 'Rehabilitation counseling services', 'Programs that provide a combination of treatment and education services designed to restore maximum functioning , a sense of well-being, and a personally satisfying level of independence in individuals who have temporary or permanent disabilities.', 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Rehabilitation counseling services', [Definition] = 'Programs that provide a combination of treatment and education services designed to restore maximum functioning , a sense of well-being, and a personally satisfying level of independence in individuals who have temporary or permanent disabilities.', [SortOrder] = 48.00 WHERE [Code] = '00318' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00885') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00885', 'Residential services', 'Programs that provide a therapeutic living environment in community-based residential facilities for individuals with special needs, including those with emotional and/or behavioral problems. Such individuals require a structure, supervised treatment program that may include individual, group, family, and other treatment modalities as appropriate.', 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Residential services', [Definition] = 'Programs that provide a therapeutic living environment in community-based residential facilities for individuals with special needs, including those with emotional and/or behavioral problems. Such individuals require a structure, supervised treatment program that may include individual, group, family, and other treatment modalities as appropriate.', [SortOrder] = 49.00 WHERE [Code] = '00885' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73046') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73046', 'Respite Care', 'Temporary childcare services that are short-term and non-medical in nature, provided either in or out of the home. These services are designed to provide temporary relief to the primary caregiver.', 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Respite Care', [Definition] = 'Temporary childcare services that are short-term and non-medical in nature, provided either in or out of the home. These services are designed to provide temporary relief to the primary caregiver.', [SortOrder] = 50.00 WHERE [Code] = '73046' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00319') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00319', 'School clothing', 'Programs that pay for or provide new or used clothing to students who need appropriate school attire and whose parent/guardians are unable to afford these items at retail prices.', 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'School clothing', [Definition] = 'Programs that pay for or provide new or used clothing to students who need appropriate school attire and whose parent/guardians are unable to afford these items at retail prices.', [SortOrder] = 51.00 WHERE [Code] = '00319' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00302') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00302', 'School counseling', 'Programs that provide advice and guidance for students who need assistance in choosing course or areas for major study, preparing for a vocation or further education, or coping with personal or learning problems.', 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'School counseling', [Definition] = 'Programs that provide advice and guidance for students who need assistance in choosing course or areas for major study, preparing for a vocation or further education, or coping with personal or learning problems.', [SortOrder] = 52.00 WHERE [Code] = '00302' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00320') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00320', 'School health nursing services', 'Services provided by a qualified school health nurse or other registered nurse/nurse practitioner.', 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'School health nursing services', [Definition] = 'Services provided by a qualified school health nurse or other registered nurse/nurse practitioner.', [SortOrder] = 53.00 WHERE [Code] = '00320' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73061') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73061', 'School Psychologist', 'Services provided by a school psychologist directly to the student.', 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'School Psychologist', [Definition] = 'Services provided by a school psychologist directly to the student.', [SortOrder] = 54.00 WHERE [Code] = '73061' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00294') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00294', 'Service coordination (case management services)', 'Activities carried out by service coordinator to assist and enable an eligible student and his/her family to receive the rights, procedural safeguards, and services that are authorized to provided under the State''s early intervention program. The specific activities include: coordinating the performance of evaluations and assessments; facilitating and anticipating in the development, review, and evaluation of individualized family service plans; assisting families in identifying available service providers; coordinating and monitoring the delivery of available services; informing families of the availability of advocacy services; coordinating with medical and health providers; and facilitating the development of a transition plan to preschool services, if appropriate.', 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Service coordination (case management services)', [Definition] = 'Activities carried out by service coordinator to assist and enable an eligible student and his/her family to receive the rights, procedural safeguards, and services that are authorized to provided under the State''s early intervention program. The specific activities include: coordinating the performance of evaluations and assessments; facilitating and anticipating in the development, review, and evaluation of individualized family service plans; assisting families in identifying available service providers; coordinating and monitoring the delivery of available services; informing families of the availability of advocacy services; coordinating with medical and health providers; and facilitating the development of a transition plan to preschool services, if appropriate.', [SortOrder] = 55.00 WHERE [Code] = '00294' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00337') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00337', 'Social work services', 'Services that involve making home visits to evaluate a child''s living conditions and patterns of parent-child interaction; preparing a social or emotional developmental assessment of the child within the family context; providing individual and family-group counseling with parents and other family members, and appropriate social skill-building activities with the child and parents; working with those problems in a child''s and family''s living situation (home, community, and any center where early intervention services are provided) that affect the child''s maximum utilization of early intervention services; and identifying, mobilizing, and coordinating community resources and services to enable the child and family to receive maximum benefit from early intervention services.', 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Social work services', [Definition] = 'Services that involve making home visits to evaluate a child''s living conditions and patterns of parent-child interaction; preparing a social or emotional developmental assessment of the child within the family context; providing individual and family-group counseling with parents and other family members, and appropriate social skill-building activities with the child and parents; working with those problems in a child''s and family''s living situation (home, community, and any center where early intervention services are provided) that affect the child''s maximum utilization of early intervention services; and identifying, mobilizing, and coordinating community resources and services to enable the child and family to receive maximum benefit from early intervention services.', [SortOrder] = 56.00 WHERE [Code] = '00337' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00321') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00321', 'Special transportation', 'Transportation arrangements provided to students to and from home, school, or other service sites.', 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Special transportation', [Definition] = 'Transportation arrangements provided to students to and from home, school, or other service sites.', [SortOrder] = 57.00 WHERE [Code] = '00321' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00322') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00322', 'Speech-language therapy', 'Individual or group therapy sessions that focus on the remediation of specific communicative or pharyngeal disorders and delays in the development of communication skills including: 1) speech sounds that are omitted, replaced by substitute sounds, or distorted; 2) voice problems in which pitch, loudness or quality of voice are affected; or 3) stuttering. Therapy includes the identification of an individual with such disorders and developmental delays, including the diagnosis and appraisal of specific disorders and delays in those skills. It also includes referral for medical or other professional services necessary for the habilitation or rehabilitation of individuals with those disorders and developmental delays. Finally, it includes the provision of services for habilitation, rehabilitation, or prevention of such disorder and developmental delays.', 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Speech-language therapy', [Definition] = 'Individual or group therapy sessions that focus on the remediation of specific communicative or pharyngeal disorders and delays in the development of communication skills including: 1) speech sounds that are omitted, replaced by substitute sounds, or distorted; 2) voice problems in which pitch, loudness or quality of voice are affected; or 3) stuttering. Therapy includes the identification of an individual with such disorders and developmental delays, including the diagnosis and appraisal of specific disorders and delays in those skills. It also includes referral for medical or other professional services necessary for the habilitation or rehabilitation of individuals with those disorders and developmental delays. Finally, it includes the provision of services for habilitation, rehabilitation, or prevention of such disorder and developmental delays.', [SortOrder] = 58.00 WHERE [Code] = '00322' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00323') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00323', 'Study skills assistance', 'Programs that provide individual or small group assistance for students who want to improve their study habits, test preparation skills and test-taking techniques.', 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Study skills assistance', [Definition] = 'Programs that provide individual or small group assistance for students who want to improve their study habits, test preparation skills and test-taking techniques.', [SortOrder] = 59.00 WHERE [Code] = '00323' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00324') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00324', 'Substance abuse education/prevention', 'Programs that provide a variety of services including: 1) individual, group and/or family counseling; 2) knowledge and skill-enhancing activities; and 3) structured groups that focus on family dynamics, problem solving, self-esteem, and/or similar issues. These programs care for students who are at risk of drug abuse (e.g., those who are currently in an experimental stage (light use), who have family members or peer groups who use alcohol or drugs, or who have behavioral, emotional, or other problems at home, in school, in the community, or with the criminal justice system). Substance abuse education programs also offer presentations about the risks of substance use to students at school and various other community settings.', 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Substance abuse education/prevention', [Definition] = 'Programs that provide a variety of services including: 1) individual, group and/or family counseling; 2) knowledge and skill-enhancing activities; and 3) structured groups that focus on family dynamics, problem solving, self-esteem, and/or similar issues. These programs care for students who are at risk of drug abuse (e.g., those who are currently in an experimental stage (light use), who have family members or peer groups who use alcohol or drugs, or who have behavioral, emotional, or other problems at home, in school, in the community, or with the criminal justice system). Substance abuse education programs also offer presentations about the risks of substance use to students at school and various other community settings.', [SortOrder] = 60.00 WHERE [Code] = '00324' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00886') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00886', 'Supported employment services', 'Programs that find paid, meaningful work in a variety of integrated settings for individuals who have special needs, including those with developmental disabilities. Services include assigning a "job coach" to work side-by-side with each client, offering advocacy to the employer and other employees, training in basic job skills and work-related behaviors, assisting with specific tasks as needed, and providing initial and ongoing support as required to ensure that the individual retains competitive employment.', 61.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Supported employment services', [Definition] = 'Programs that find paid, meaningful work in a variety of integrated settings for individuals who have special needs, including those with developmental disabilities. Services include assigning a "job coach" to work side-by-side with each client, offering advocacy to the employer and other employees, training in basic job skills and work-related behaviors, assisting with specific tasks as needed, and providing initial and ongoing support as required to ensure that the individual retains competitive employment.', [SortOrder] = 61.00 WHERE [Code] = '00886' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73062') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73062', 'Teacher consultant for autism', 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of autism, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Teacher consultant for autism', [Definition] = 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of autism, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', [SortOrder] = 62.00 WHERE [Code] = '73062' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73064') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73064', 'Teacher Consultant for disturbance emotional', 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of emotional disturbance, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', 63.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Teacher Consultant for disturbance emotional', [Definition] = 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of emotional disturbance, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', [SortOrder] = 63.00 WHERE [Code] = '73064' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73066') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73066', 'Teacher consultant for hearing impairment', 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of hearing impairment, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Teacher consultant for hearing impairment', [Definition] = 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of hearing impairment, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', [SortOrder] = 64.00 WHERE [Code] = '73066' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73063') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73063', 'Teacher Consultant for intellectual disability', 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of intellectual disability, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Teacher Consultant for intellectual disability', [Definition] = 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of intellectual disability, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', [SortOrder] = 65.00 WHERE [Code] = '73063' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73068') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73068', 'Teacher consultant for orthopedic impairment', 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of orthopedic impairment, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Teacher consultant for orthopedic impairment', [Definition] = 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of orthopedic impairment, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', [SortOrder] = 66.00 WHERE [Code] = '73068' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73069') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73069', 'Teacher consultant for other health impairment', 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of other health impairment, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', 67.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Teacher consultant for other health impairment', [Definition] = 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of other health impairment, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', [SortOrder] = 67.00 WHERE [Code] = '73069' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73065') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73065', 'Teacher consultant for specifical learning disability', 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of specific learning disability, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Teacher consultant for specifical learning disability', [Definition] = 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of specific learning disability, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', [SortOrder] = 68.00 WHERE [Code] = '73065' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73067') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73067', 'Teacher consultant for visual impairment', 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of visual impairment, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Teacher consultant for visual impairment', [Definition] = 'Services provided by a staff member who specializes in helping teachers by providing in classroom strategies for working with students with an IDEA Disability Type of visual impairment, providing professional development to local educators, and assisting in developing strategies to help parents work with their child at home.', [SortOrder] = 69.00 WHERE [Code] = '73067' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00887') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00887', 'Technological aids', 'Structural or sensory aids provided to students with special physical or physiological needs in order to help them to better adapt to everyday work and/or learning environments.', 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Technological aids', [Definition] = 'Structural or sensory aids provided to students with special physical or physiological needs in order to help them to better adapt to everyday work and/or learning environments.', [SortOrder] = 70.00 WHERE [Code] = '00887' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00325') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00325', 'Teen/adolescent family planning', 'Programs that offer family planning services including pregnancy counseling, birth control, and pregnancy testing which are especially designed to meet the needs and concerns of teenage students who are pregnant or are concerned about becoming pregnant or impregnating.', 71.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Teen/adolescent family planning', [Definition] = 'Programs that offer family planning services including pregnancy counseling, birth control, and pregnancy testing which are especially designed to meet the needs and concerns of teenage students who are pregnant or are concerned about becoming pregnant or impregnating.', [SortOrder] = 71.00 WHERE [Code] = '00325' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00326') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00326', 'Test assistance', 'Programs that provide assistance for students with disabilities who need help in reading or writing responses to test items. Examples of such assistance include the administration of untimed tests and the presence of test facilitators for children with autism.', 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Test assistance', [Definition] = 'Programs that provide assistance for students with disabilities who need help in reading or writing responses to test items. Examples of such assistance include the administration of untimed tests and the presence of test facilitators for children with autism.', [SortOrder] = 72.00 WHERE [Code] = '00326' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00327') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00327', 'Translation/interpreter services', 'Services that allow individuals who can not comprehend or communicate using either the spoken or written word to understand or express themselves (e.g., foreign language translator and sign language interpreter).', 73.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Translation/interpreter services', [Definition] = 'Services that allow individuals who can not comprehend or communicate using either the spoken or written word to understand or express themselves (e.g., foreign language translator and sign language interpreter).', [SortOrder] = 73.00 WHERE [Code] = '00327' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00888') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00888', 'Transportation services', 'Services that provide transportation for individuals, or make arrangements to transport individuals, to and from sites in which they are involved in vocational or life situations.', 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Transportation services', [Definition] = 'Services that provide transportation for individuals, or make arrangements to transport individuals, to and from sites in which they are involved in vocational or life situations.', [SortOrder] = 74.00 WHERE [Code] = '00888' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00329') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00329', 'Tutoring services', 'Individualized or small group instruction for students who need assistance in learning one or more components of a prescribed curriculum. Tutoring usually supplements a regular school program, and may be provided by peer students, teachers, or other personnel at school, in an individual''s home, or at a community agency site.', 75.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Tutoring services', [Definition] = 'Individualized or small group instruction for students who need assistance in learning one or more components of a prescribed curriculum. Tutoring usually supplements a regular school program, and may be provided by peer students, teachers, or other personnel at school, in an individual''s home, or at a community agency site.', [SortOrder] = 75.00 WHERE [Code] = '00329' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '00330') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00330', 'Vision services', 'Services that include: 1) evaluation and assessment of visual functioning, including the diagnosis and appraisal of specific visual disorders, delays, and disabilities; 2) referrals for medical or other professional services necessary for the habilitation or rehabilitation of visual functioning disorders; and 3) training for communication, communication, orientation and mobility, visual, and independent living skills, and any additional training necessary to activate visual motor abilities.', 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Vision services', [Definition] = 'Services that include: 1) evaluation and assessment of visual functioning, including the diagnosis and appraisal of specific visual disorders, delays, and disabilities; 2) referrals for medical or other professional services necessary for the habilitation or rehabilitation of visual functioning disorders; and 3) training for communication, communication, orientation and mobility, visual, and independent living skills, and any additional training necessary to activate visual motor abilities.', [SortOrder] = 76.00 WHERE [Code] = '00330' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73055') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73055', 'Work-based Learning', 'Sustained interactions with industry or community professionals in real workplace settings, to the extent practicable, or simulated environments at an educational institution that foster in-depth, firsthand engagement with the tasks required in a given career field, that are aligned to curriculum and instruction.', 77.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] -SET [Description] = 'Work-based Learning', [Definition] = 'Sustained interactions with industry or community professionals in real workplace settings, to the extent practicable, or simulated environments at an educational institution that foster in-depth, firsthand engagement with the tasks required in a given career field, that are aligned to curriculum and instruction.', [SortOrder] = 77.00 WHERE [Code] = '73055' END -END - -PRINT N'Populate RefSupervisedClinicalExperience table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefSupervisedClinicalExperience]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSupervisedClinicalExperience] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefSupervisedClinicalExperience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSupervisedClinicalExperience] -SET [Description] = 'Yes', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSupervisedClinicalExperience] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefSupervisedClinicalExperience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSupervisedClinicalExperience] -SET [Description] = 'No', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSupervisedClinicalExperience] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefSupervisedClinicalExperience]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSupervisedClinicalExperience] -SET [Description] = 'Not applicable', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefTargetedSupportAndImprovementStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTargetedSupportAndImprovementStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTargetedSupportAndImprovementStatus] WHERE [Code] = 'NOTTSI') BEGIN INSERT INTO dbo.[RefTargetedSupportAndImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NOTTSI', 'Not targeted support and improvement', 'Not targeted support and improvement is the designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTargetedSupportAndImprovementStatus] -SET [Description] = 'Not targeted support and improvement', [Definition] = 'Not targeted support and improvement is the designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', [SortOrder] = 1.00 WHERE [Code] = 'NOTTSI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTargetedSupportAndImprovementStatus] WHERE [Code] = 'TSI') BEGIN INSERT INTO dbo.[RefTargetedSupportAndImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TSI', 'Targeted support and improvement', 'Targeted support and improvement is the designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTargetedSupportAndImprovementStatus] -SET [Description] = 'Targeted support and improvement', [Definition] = 'Targeted support and improvement is the designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', [SortOrder] = 2.00 WHERE [Code] = 'TSI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTargetedSupportAndImprovementStatus] WHERE [Code] = 'TSIEXIT') BEGIN INSERT INTO dbo.[RefTargetedSupportAndImprovementStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TSIEXIT', 'Targeted support and improvement - exit status', 'Targeted support and improvement - exit status is the designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTargetedSupportAndImprovementStatus] -SET [Description] = 'Targeted support and improvement - exit status', [Definition] = 'Targeted support and improvement - exit status is the designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', [SortOrder] = 3.00 WHERE [Code] = 'TSIEXIT' END -END - -PRINT N'Populate RefTeacherEducationCredentialExam table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTeacherEducationCredentialExam]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherEducationCredentialExam] WHERE [Code] = 'PraxisI') BEGIN INSERT INTO dbo.[RefTeacherEducationCredentialExam]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PraxisI', 'Praxis I', 'Praxis I examination is/was used to assess teacher candidate''s knowledge and skills.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherEducationCredentialExam] -SET [Description] = 'Praxis I', [Definition] = 'Praxis I examination is/was used to assess teacher candidate''s knowledge and skills.', [SortOrder] = 1.00 WHERE [Code] = 'PraxisI' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherEducationCredentialExam] WHERE [Code] = 'PraxisII') BEGIN INSERT INTO dbo.[RefTeacherEducationCredentialExam]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PraxisII', 'Praxis II', 'Praxis II examination is/was used to assess teacher candidate''s knowledge and skills.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherEducationCredentialExam] -SET [Description] = 'Praxis II', [Definition] = 'Praxis II examination is/was used to assess teacher candidate''s knowledge and skills.', [SortOrder] = 2.00 WHERE [Code] = 'PraxisII' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherEducationCredentialExam] WHERE [Code] = 'ACTFL') BEGIN INSERT INTO dbo.[RefTeacherEducationCredentialExam]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ACTFL', 'ACTFL', 'ACTFL is/was used to assess teacher candidate''s knowledge and skills.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherEducationCredentialExam] -SET [Description] = 'ACTFL', [Definition] = 'ACTFL is/was used to assess teacher candidate''s knowledge and skills.', [SortOrder] = 3.00 WHERE [Code] = 'ACTFL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherEducationCredentialExam] WHERE [Code] = 'StateExam') BEGIN INSERT INTO dbo.[RefTeacherEducationCredentialExam]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StateExam', 'State Exam', 'State Exam is/was used to assess teacher candidate''s knowledge and skills.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherEducationCredentialExam] -SET [Description] = 'State Exam', [Definition] = 'State Exam is/was used to assess teacher candidate''s knowledge and skills.', [SortOrder] = 4.00 WHERE [Code] = 'StateExam' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherEducationCredentialExam] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefTeacherEducationCredentialExam]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'An examination used to assess teacher candidate''s knowledge and skills is of a type not yet included in CEDS.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherEducationCredentialExam] -SET [Description] = 'Other', [Definition] = 'An examination used to assess teacher candidate''s knowledge and skills is of a type not yet included in CEDS.', [SortOrder] = 5.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefTeacherEducationTestCompany table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTeacherEducationTestCompany]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherEducationTestCompany] WHERE [Code] = '1') BEGIN INSERT INTO dbo.[RefTeacherEducationTestCompany]([Code], [Description], [Definition], [SortOrder]) -VALUES ('1', 'Educational Testing Service (ETS)', 'Educational Testing Service (ETS) is the company that provides the examination used in the teacher education program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherEducationTestCompany] -SET [Description] = 'Educational Testing Service (ETS)', [Definition] = 'Educational Testing Service (ETS) is the company that provides the examination used in the teacher education program.', [SortOrder] = 1.00 WHERE [Code] = '1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherEducationTestCompany] WHERE [Code] = '2') BEGIN INSERT INTO dbo.[RefTeacherEducationTestCompany]([Code], [Description], [Definition], [SortOrder]) -VALUES ('2', 'Evaluation Systems Group of Pearson', 'Evaluation Systems Group of Pearson is the company that provides the examination used in the teacher education program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherEducationTestCompany] -SET [Description] = 'Evaluation Systems Group of Pearson', [Definition] = 'Evaluation Systems Group of Pearson is the company that provides the examination used in the teacher education program.', [SortOrder] = 2.00 WHERE [Code] = '2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherEducationTestCompany] WHERE [Code] = '3') BEGIN INSERT INTO dbo.[RefTeacherEducationTestCompany]([Code], [Description], [Definition], [SortOrder]) -VALUES ('3', 'College Board', 'College Board is the company that provides the examination used in the teacher education program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherEducationTestCompany] -SET [Description] = 'College Board', [Definition] = 'College Board is the company that provides the examination used in the teacher education program.', [SortOrder] = 3.00 WHERE [Code] = '3' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherEducationTestCompany] WHERE [Code] = '4') BEGIN INSERT INTO dbo.[RefTeacherEducationTestCompany]([Code], [Description], [Definition], [SortOrder]) -VALUES ('4', 'American Board for Certification of Teacher Excellence (ABCTE)', 'American Board for Certification of Teacher Excellence (ABCTE) is the company that provides the examination used in the teacher education program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherEducationTestCompany] -SET [Description] = 'American Board for Certification of Teacher Excellence (ABCTE)', [Definition] = 'American Board for Certification of Teacher Excellence (ABCTE) is the company that provides the examination used in the teacher education program.', [SortOrder] = 4.00 WHERE [Code] = '4' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherEducationTestCompany] WHERE [Code] = '5') BEGIN INSERT INTO dbo.[RefTeacherEducationTestCompany]([Code], [Description], [Definition], [SortOrder]) -VALUES ('5', 'American Council on the Teaching of Foreign Languages (ACTFL)', 'American Council on the Teaching of Foreign Languages (ACTFL) is the company that provides the examination used in the teacher education program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherEducationTestCompany] -SET [Description] = 'American Council on the Teaching of Foreign Languages (ACTFL)', [Definition] = 'American Council on the Teaching of Foreign Languages (ACTFL) is the company that provides the examination used in the teacher education program.', [SortOrder] = 5.00 WHERE [Code] = '5' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherEducationTestCompany] WHERE [Code] = '98') BEGIN INSERT INTO dbo.[RefTeacherEducationTestCompany]([Code], [Description], [Definition], [SortOrder]) -VALUES ('98', 'State', 'The state provides the examination used in the teacher education program.', 98.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherEducationTestCompany] -SET [Description] = 'State', [Definition] = 'The state provides the examination used in the teacher education program.', [SortOrder] = 98.00 WHERE [Code] = '98' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherEducationTestCompany] WHERE [Code] = '99') BEGIN INSERT INTO dbo.[RefTeacherEducationTestCompany]([Code], [Description], [Definition], [SortOrder]) -VALUES ('99', 'Other', 'The company that provides the examination used in the teacher education program is not yet included in CEDS.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherEducationTestCompany] -SET [Description] = 'Other', [Definition] = 'The company that provides the examination used in the teacher education program is not yet included in CEDS.', [SortOrder] = 99.00 WHERE [Code] = '99' END -END - -PRINT N'Populate RefTeacherPrepCompleterStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTeacherPrepCompleterStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherPrepCompleterStatus] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefTeacherPrepCompleterStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherPrepCompleterStatus] -SET [Description] = 'Yes', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherPrepCompleterStatus] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefTeacherPrepCompleterStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherPrepCompleterStatus] -SET [Description] = 'No', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherPrepCompleterStatus] WHERE [Code] = 'NA') BEGIN INSERT INTO dbo.[RefTeacherPrepCompleterStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NA', 'Not applicable', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherPrepCompleterStatus] -SET [Description] = 'Not applicable', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'NA' END -END - -PRINT N'Populate RefTeacherPrepEnrollmentStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTeacherPrepEnrollmentStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherPrepEnrollmentStatus] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefTeacherPrepEnrollmentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', 'The person is NOT pursuing certification as a teacher.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherPrepEnrollmentStatus] -SET [Description] = 'No', [Definition] = 'The person is NOT pursuing certification as a teacher.', [SortOrder] = 1.00 WHERE [Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherPrepEnrollmentStatus] WHERE [Code] = 'SeekingCandidacy') BEGIN INSERT INTO dbo.[RefTeacherPrepEnrollmentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SeekingCandidacy', 'Seeking Candidacy', 'The person is seeking candidacy and pursuing certification as a teacher.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherPrepEnrollmentStatus] -SET [Description] = 'Seeking Candidacy', [Definition] = 'The person is seeking candidacy and pursuing certification as a teacher.', [SortOrder] = 2.00 WHERE [Code] = 'SeekingCandidacy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeacherPrepEnrollmentStatus] WHERE [Code] = 'Enrolled') BEGIN INSERT INTO dbo.[RefTeacherPrepEnrollmentStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Enrolled', 'Enrolled', 'The person is enrolled in a program and pursuing certification as a teacher.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeacherPrepEnrollmentStatus] -SET [Description] = 'Enrolled', [Definition] = 'The person is enrolled in a program and pursuing certification as a teacher.', [SortOrder] = 3.00 WHERE [Code] = 'Enrolled' END -END - -PRINT N'Populate RefTeachingAssignmentRole table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTeachingAssignmentRole]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingAssignmentRole] WHERE [Code] = 'LeadTeacher') BEGIN INSERT INTO dbo.[RefTeachingAssignmentRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LeadTeacher', 'Lead Teacher', 'Lead teacher with the primary responsibility for student learning in the assigned class section', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingAssignmentRole] -SET [Description] = 'Lead Teacher', [Definition] = 'Lead teacher with the primary responsibility for student learning in the assigned class section', [SortOrder] = 1.00 WHERE [Code] = 'LeadTeacher' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingAssignmentRole] WHERE [Code] = 'TeamTeacher') BEGIN INSERT INTO dbo.[RefTeachingAssignmentRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TeamTeacher', 'Team Teacher', ' Team teacher with shared responsibility for student learning within the assigned class section', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingAssignmentRole] -SET [Description] = 'Team Teacher', [Definition] = ' Team teacher with shared responsibility for student learning within the assigned class section', [SortOrder] = 2.00 WHERE [Code] = 'TeamTeacher' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingAssignmentRole] WHERE [Code] = 'ContributingProfessional') BEGIN INSERT INTO dbo.[RefTeachingAssignmentRole]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ContributingProfessional', 'Contributing Professional', 'Contributing professional who has been assigned the responsibility to provide additional services that support and increase a student learning', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingAssignmentRole] -SET [Description] = 'Contributing Professional', [Definition] = 'Contributing professional who has been assigned the responsibility to provide additional services that support and increase a student learning', [SortOrder] = 3.00 WHERE [Code] = 'ContributingProfessional' END -END - -PRINT N'Populate RefTeachingCredentialBasis table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTeachingCredentialBasis]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialBasis] WHERE [Code] = '01050') BEGIN INSERT INTO dbo.[RefTeachingCredentialBasis]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01050', 'Associate''s degree (two years or more) ', 'Associate''s degree (two years or more) is the pre-determined criteria for granting the teaching credential that a person holds.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialBasis] -SET [Description] = 'Associate''s degree (two years or more) ', [Definition] = 'Associate''s degree (two years or more) is the pre-determined criteria for granting the teaching credential that a person holds.', [SortOrder] = 0.00 WHERE [Code] = '01050' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialBasis] WHERE [Code] = '01235') BEGIN INSERT INTO dbo.[RefTeachingCredentialBasis]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01235', '4-year bachelor''s degree', '4-year bachelor''s degree is the pre-determined criteria for granting the teaching credential that a person holds.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialBasis] -SET [Description] = '4-year bachelor''s degree', [Definition] = '4-year bachelor''s degree is the pre-determined criteria for granting the teaching credential that a person holds.', [SortOrder] = 2.00 WHERE [Code] = '01235' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialBasis] WHERE [Code] = '01236') BEGIN INSERT INTO dbo.[RefTeachingCredentialBasis]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01236', '5-year bachelor''s degree', '5-year bachelor''s degree is the pre-determined criteria for granting the teaching credential that a person holds.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialBasis] -SET [Description] = '5-year bachelor''s degree', [Definition] = '5-year bachelor''s degree is the pre-determined criteria for granting the teaching credential that a person holds.', [SortOrder] = 4.00 WHERE [Code] = '01236' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialBasis] WHERE [Code] = '73205') BEGIN INSERT INTO dbo.[RefTeachingCredentialBasis]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73205', 'Post-baccalaureate certificate', 'Post-baccalaureate certificate is the pre-determined criteria for granting the teaching credential that a person holds.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialBasis] -SET [Description] = 'Post-baccalaureate certificate', [Definition] = 'Post-baccalaureate certificate is the pre-determined criteria for granting the teaching credential that a person holds.', [SortOrder] = 5.00 WHERE [Code] = '73205' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialBasis] WHERE [Code] = '01237') BEGIN INSERT INTO dbo.[RefTeachingCredentialBasis]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01237', 'Master''s degree', 'Master''s degree is the pre-determined criteria for granting the teaching credential that a person holds.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialBasis] -SET [Description] = 'Master''s degree', [Definition] = 'Master''s degree is the pre-determined criteria for granting the teaching credential that a person holds.', [SortOrder] = 6.00 WHERE [Code] = '01237' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialBasis] WHERE [Code] = '73081') BEGIN INSERT INTO dbo.[RefTeachingCredentialBasis]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73081', 'Post-master’s certificate', 'Post-master’s certificate is the pre-determined criteria for granting the teaching credential that a person holds.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialBasis] -SET [Description] = 'Post-master’s certificate', [Definition] = 'Post-master’s certificate is the pre-determined criteria for granting the teaching credential that a person holds.', [SortOrder] = 7.00 WHERE [Code] = '73081' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialBasis] WHERE [Code] = '01238') BEGIN INSERT INTO dbo.[RefTeachingCredentialBasis]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01238', 'Doctoral degree', 'Doctoral degree is the pre-determined criteria for granting the teaching credential that a person holds.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialBasis] -SET [Description] = 'Doctoral degree', [Definition] = 'Doctoral degree is the pre-determined criteria for granting the teaching credential that a person holds.', [SortOrder] = 8.00 WHERE [Code] = '01238' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialBasis] WHERE [Code] = '73206') BEGIN INSERT INTO dbo.[RefTeachingCredentialBasis]([Code], [Description], [Definition], [SortOrder]) -VALUES ('73206', 'Post-doctoral certificate', 'Post-doctoral certificate is the pre-determined criteria for granting the teaching credential that a person holds.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialBasis] -SET [Description] = 'Post-doctoral certificate', [Definition] = 'Post-doctoral certificate is the pre-determined criteria for granting the teaching credential that a person holds.', [SortOrder] = 9.00 WHERE [Code] = '73206' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialBasis] WHERE [Code] = '01239') BEGIN INSERT INTO dbo.[RefTeachingCredentialBasis]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01239', 'Met state testing requirement', 'Met state testing requirement is the pre-determined criteria for granting the teaching credential that a person holds.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialBasis] -SET [Description] = 'Met state testing requirement', [Definition] = 'Met state testing requirement is the pre-determined criteria for granting the teaching credential that a person holds.', [SortOrder] = 10.00 WHERE [Code] = '01239' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialBasis] WHERE [Code] = '01240') BEGIN INSERT INTO dbo.[RefTeachingCredentialBasis]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01240', 'Special/alternative program completion', 'Special/alternative program completion is the pre-determined criteria for granting the teaching credential that a person holds.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialBasis] -SET [Description] = 'Special/alternative program completion', [Definition] = 'Special/alternative program completion is the pre-determined criteria for granting the teaching credential that a person holds.', [SortOrder] = 12.00 WHERE [Code] = '01240' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialBasis] WHERE [Code] = '01241') BEGIN INSERT INTO dbo.[RefTeachingCredentialBasis]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01241', 'Relevant experience', 'Relevant experience is the pre-determined criteria for granting the teaching credential that a person holds.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialBasis] -SET [Description] = 'Relevant experience', [Definition] = 'Relevant experience is the pre-determined criteria for granting the teaching credential that a person holds.', [SortOrder] = 14.00 WHERE [Code] = '01241' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialBasis] WHERE [Code] = '01242') BEGIN INSERT INTO dbo.[RefTeachingCredentialBasis]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01242', 'Credentials based on reciprocation with another state', 'Credentials based on reciprocation with another state is the pre-determined criteria for granting the teaching credential that a person holds.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialBasis] -SET [Description] = 'Credentials based on reciprocation with another state', [Definition] = 'Credentials based on reciprocation with another state is the pre-determined criteria for granting the teaching credential that a person holds.', [SortOrder] = 16.00 WHERE [Code] = '01242' END -END - -PRINT N'Populate RefTeachingCredentialType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTeachingCredentialType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialType] WHERE [Code] = 'Emergency') BEGIN INSERT INTO dbo.[RefTeachingCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Emergency', 'Emergency', 'Emergency is the category of legal document giving authorization for the person to perform teaching assignment services.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialType] -SET [Description] = 'Emergency', [Definition] = 'Emergency is the category of legal document giving authorization for the person to perform teaching assignment services.', [SortOrder] = 1.00 WHERE [Code] = 'Emergency' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialType] WHERE [Code] = 'Intern') BEGIN INSERT INTO dbo.[RefTeachingCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Intern', 'Intern', 'Intern is the category of legal document giving authorization for the person to perform teaching assignment services.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialType] -SET [Description] = 'Intern', [Definition] = 'Intern is the category of legal document giving authorization for the person to perform teaching assignment services.', [SortOrder] = 2.00 WHERE [Code] = 'Intern' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialType] WHERE [Code] = 'Master') BEGIN INSERT INTO dbo.[RefTeachingCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Master', 'Master', 'Master is the category of legal document giving authorization for the person to perform teaching assignment services.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialType] -SET [Description] = 'Master', [Definition] = 'Master is the category of legal document giving authorization for the person to perform teaching assignment services.', [SortOrder] = 3.00 WHERE [Code] = 'Master' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialType] WHERE [Code] = 'Nonrenewable') BEGIN INSERT INTO dbo.[RefTeachingCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Nonrenewable', 'Nonrenewable', 'Nonrenewable is the category of legal document giving authorization for the person to perform teaching assignment services.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialType] -SET [Description] = 'Nonrenewable', [Definition] = 'Nonrenewable is the category of legal document giving authorization for the person to perform teaching assignment services.', [SortOrder] = 4.00 WHERE [Code] = 'Nonrenewable' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialType] WHERE [Code] = 'Probationary') BEGIN INSERT INTO dbo.[RefTeachingCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Probationary', 'Probationary/initial', 'Probationary/initial is the category of legal document giving authorization for the person to perform teaching assignment services.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialType] -SET [Description] = 'Probationary/initial', [Definition] = 'Probationary/initial is the category of legal document giving authorization for the person to perform teaching assignment services.', [SortOrder] = 5.00 WHERE [Code] = 'Probationary' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialType] WHERE [Code] = 'Professional') BEGIN INSERT INTO dbo.[RefTeachingCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Professional', 'Professional', 'Professional is the category of legal document giving authorization for the person to perform teaching assignment services.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialType] -SET [Description] = 'Professional', [Definition] = 'Professional is the category of legal document giving authorization for the person to perform teaching assignment services.', [SortOrder] = 6.00 WHERE [Code] = 'Professional' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialType] WHERE [Code] = 'Provisional') BEGIN INSERT INTO dbo.[RefTeachingCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Provisional', 'Provisional', 'Provisional is the category of legal document giving authorization for the person to perform teaching assignment services.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialType] -SET [Description] = 'Provisional', [Definition] = 'Provisional is the category of legal document giving authorization for the person to perform teaching assignment services.', [SortOrder] = 7.00 WHERE [Code] = 'Provisional' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialType] WHERE [Code] = 'Regular') BEGIN INSERT INTO dbo.[RefTeachingCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Regular', 'Regular/standard', 'Regular/standard is the category of legal document giving authorization for the person to perform teaching assignment services.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialType] -SET [Description] = 'Regular/standard', [Definition] = 'Regular/standard is the category of legal document giving authorization for the person to perform teaching assignment services.', [SortOrder] = 8.00 WHERE [Code] = 'Regular' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialType] WHERE [Code] = 'Retired') BEGIN INSERT INTO dbo.[RefTeachingCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Retired', 'Retired', 'Retired is the category of legal document giving authorization for the person to perform teaching assignment services.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialType] -SET [Description] = 'Retired', [Definition] = 'Retired is the category of legal document giving authorization for the person to perform teaching assignment services.', [SortOrder] = 9.00 WHERE [Code] = 'Retired' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialType] WHERE [Code] = 'Specialist') BEGIN INSERT INTO dbo.[RefTeachingCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Specialist', 'Specialist', 'Specialist is the category of legal document giving authorization for the person to perform teaching assignment services.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialType] -SET [Description] = 'Specialist', [Definition] = 'Specialist is the category of legal document giving authorization for the person to perform teaching assignment services.', [SortOrder] = 10.00 WHERE [Code] = 'Specialist' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialType] WHERE [Code] = 'Substitute') BEGIN INSERT INTO dbo.[RefTeachingCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Substitute', 'Substitute', 'Substitute is the category of legal document giving authorization for the person to perform teaching assignment services.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialType] -SET [Description] = 'Substitute', [Definition] = 'Substitute is the category of legal document giving authorization for the person to perform teaching assignment services.', [SortOrder] = 11.00 WHERE [Code] = 'Substitute' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialType] WHERE [Code] = 'TeacherAssistant') BEGIN INSERT INTO dbo.[RefTeachingCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TeacherAssistant', 'Teacher assistant', 'Teacher assistant is the category of legal document giving authorization for the person to perform teaching assignment services.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialType] -SET [Description] = 'Teacher assistant', [Definition] = 'Teacher assistant is the category of legal document giving authorization for the person to perform teaching assignment services.', [SortOrder] = 12.00 WHERE [Code] = 'TeacherAssistant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialType] WHERE [Code] = 'Temporary') BEGIN INSERT INTO dbo.[RefTeachingCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Temporary', 'Temporary', 'Temporary is the category of legal document giving authorization for the person to perform teaching assignment services.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialType] -SET [Description] = 'Temporary', [Definition] = 'Temporary is the category of legal document giving authorization for the person to perform teaching assignment services.', [SortOrder] = 13.00 WHERE [Code] = 'Temporary' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTeachingCredentialType] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefTeachingCredentialType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is the category of legal document giving authorization for the person to perform teaching assignment services.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTeachingCredentialType] -SET [Description] = 'Other', [Definition] = 'Other is the category of legal document giving authorization for the person to perform teaching assignment services.', [SortOrder] = 14.00 WHERE [Code] = '09999' END -END - -PRINT N'Populate RefTechnicalAssistanceDeliveryType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTechnicalAssistanceDeliveryType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceDeliveryType] WHERE [Code] = 'Onsite') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceDeliveryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Onsite', 'Onsite', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceDeliveryType] -SET [Description] = 'Onsite', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'Onsite' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceDeliveryType] WHERE [Code] = 'Virtual') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceDeliveryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Virtual', 'Virtual classroom', NULL, 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceDeliveryType] -SET [Description] = 'Virtual classroom', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'Virtual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceDeliveryType] WHERE [Code] = 'Off-Site') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceDeliveryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Off-Site', 'Off-site classroom', NULL, 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceDeliveryType] -SET [Description] = 'Off-site classroom', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = 'Off-Site' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceDeliveryType] WHERE [Code] = 'Conference') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceDeliveryType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Conference', 'Conference', NULL, 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceDeliveryType] -SET [Description] = 'Conference', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = 'Conference' END -END - -PRINT N'Populate RefTechnicalAssistanceType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTechnicalAssistanceType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceType] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Core Knowledge Area', 'Core Knowledge Area is the type of technical assistance provided.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceType] -SET [Description] = 'Core Knowledge Area', [Definition] = 'Core Knowledge Area is the type of technical assistance provided.', [SortOrder] = 2.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceType] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Health Safety Technical Assistance', 'Health Safety Technical Assistance is the type of technical assistance provided.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceType] -SET [Description] = 'Health Safety Technical Assistance', [Definition] = 'Health Safety Technical Assistance is the type of technical assistance provided.', [SortOrder] = 4.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceType] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Inclusion Technical Assistance', 'Inclusion Technical Assistance is the type of technical assistance provided.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceType] -SET [Description] = 'Inclusion Technical Assistance', [Definition] = 'Inclusion Technical Assistance is the type of technical assistance provided.', [SortOrder] = 6.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceType] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Infant Toddler Care Technical Assistance', 'Infant Toddler Care Technical Assistance is the type of technical assistance provided.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceType] -SET [Description] = 'Infant Toddler Care Technical Assistance', [Definition] = 'Infant Toddler Care Technical Assistance is the type of technical assistance provided.', [SortOrder] = 8.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceType] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Mental Health Technical Assistance', 'Mental Health Technical Assistance is the type of technical assistance provided.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceType] -SET [Description] = 'Mental Health Technical Assistance', [Definition] = 'Mental Health Technical Assistance is the type of technical assistance provided.', [SortOrder] = 10.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceType] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Program Administration and Management Practices Technical Assistance', 'Program Administration and Management Practices Technical Assistance is the type of technical assistance provided.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceType] -SET [Description] = 'Program Administration and Management Practices Technical Assistance', [Definition] = 'Program Administration and Management Practices Technical Assistance is the type of technical assistance provided.', [SortOrder] = 12.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceType] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'School Age Technical Assistance', 'School Age Technical Assistance is the type of technical assistance provided.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceType] -SET [Description] = 'School Age Technical Assistance', [Definition] = 'School Age Technical Assistance is the type of technical assistance provided.', [SortOrder] = 14.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceType] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Understanding Developmental Screening Technical Assistance', 'Understanding Developmental Screening Technical Assistance is the type of technical assistance provided.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceType] -SET [Description] = 'Understanding Developmental Screening Technical Assistance', [Definition] = 'Understanding Developmental Screening Technical Assistance is the type of technical assistance provided.', [SortOrder] = 16.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceType] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Dual Language Learner Technical Assistance', 'Dual Language Learner Technical Assistance is the type of technical assistance provided.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceType] -SET [Description] = 'Dual Language Learner Technical Assistance', [Definition] = 'Dual Language Learner Technical Assistance is the type of technical assistance provided.', [SortOrder] = 18.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceType] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Language and Literacy Development', 'Language and Literacy Development is the type of technical assistance provided.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceType] -SET [Description] = 'Language and Literacy Development', [Definition] = 'Language and Literacy Development is the type of technical assistance provided.', [SortOrder] = 20.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceType] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Cognition and General Knowledge (including early mathematics and early scientific development)', 'Cognition and General Knowledge (including early mathematics and early scientific development) is the type of technical assistance provided.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceType] -SET [Description] = 'Cognition and General Knowledge (including early mathematics and early scientific development)', [Definition] = 'Cognition and General Knowledge (including early mathematics and early scientific development) is the type of technical assistance provided.', [SortOrder] = 22.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceType] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Approaches Toward Learning', 'Approaches Toward Learning is the type of technical assistance provided.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceType] -SET [Description] = 'Approaches Toward Learning', [Definition] = 'Approaches Toward Learning is the type of technical assistance provided.', [SortOrder] = 24.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceType] WHERE [Code] = '13') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13', 'Physical Well-being and Motor Development (including adaptive skills)', 'Physical Well-being and Motor Development (including adaptive skills) is the type of technical assistance provided.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceType] -SET [Description] = 'Physical Well-being and Motor Development (including adaptive skills)', [Definition] = 'Physical Well-being and Motor Development (including adaptive skills) is the type of technical assistance provided.', [SortOrder] = 26.00 WHERE [Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnicalAssistanceType] WHERE [Code] = '14') BEGIN INSERT INTO dbo.[RefTechnicalAssistanceType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14', 'Social and Emotional Development', 'Social and Emotional Development is the type of technical assistance provided.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnicalAssistanceType] -SET [Description] = 'Social and Emotional Development', [Definition] = 'Social and Emotional Development is the type of technical assistance provided.', [SortOrder] = 28.00 WHERE [Code] = '14' END -END - -PRINT N'Populate RefTechnologyLiteracyStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTechnologyLiteracyStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnologyLiteracyStatus] WHERE [Code] = 'TechnologyLiterate') BEGIN INSERT INTO dbo.[RefTechnologyLiteracyStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TechnologyLiterate', 'Technology literate', 'Technology literate is the technology literacy of person(s) in 8th grade.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnologyLiteracyStatus] -SET [Description] = 'Technology literate', [Definition] = 'Technology literate is the technology literacy of person(s) in 8th grade.', [SortOrder] = 1.00 WHERE [Code] = 'TechnologyLiterate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTechnologyLiteracyStatus] WHERE [Code] = 'NotTechnologyLiterate') BEGIN INSERT INTO dbo.[RefTechnologyLiteracyStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotTechnologyLiterate', 'Not technology literate', 'Not technology literate is the technology literacy of person(s) in 8th grade.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTechnologyLiteracyStatus] -SET [Description] = 'Not technology literate', [Definition] = 'Not technology literate is the technology literacy of person(s) in 8th grade.', [SortOrder] = 2.00 WHERE [Code] = 'NotTechnologyLiterate' END -END - -PRINT N'Populate RefTelephoneNumberListedStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTelephoneNumberListedStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTelephoneNumberListedStatus] WHERE [Code] = 'Listed') BEGIN INSERT INTO dbo.[RefTelephoneNumberListedStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Listed', 'Listed', 'The telephone number is listed under a directory assistance service.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTelephoneNumberListedStatus] -SET [Description] = 'Listed', [Definition] = 'The telephone number is listed under a directory assistance service.', [SortOrder] = 1.00 WHERE [Code] = 'Listed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTelephoneNumberListedStatus] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefTelephoneNumberListedStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'It is not known if the telephone number is listed under a directory assistance service.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTelephoneNumberListedStatus] -SET [Description] = 'Unknown', [Definition] = 'It is not known if the telephone number is listed under a directory assistance service.', [SortOrder] = 2.00 WHERE [Code] = 'Unknown' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTelephoneNumberListedStatus] WHERE [Code] = 'Unlisted') BEGIN INSERT INTO dbo.[RefTelephoneNumberListedStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unlisted', 'Unlisted', 'The telephone number is not listed under a directory assistance service.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTelephoneNumberListedStatus] -SET [Description] = 'Unlisted', [Definition] = 'The telephone number is not listed under a directory assistance service.', [SortOrder] = 3.00 WHERE [Code] = 'Unlisted' END -END - -PRINT N'Populate RefTelephoneNumberType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTelephoneNumberType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTelephoneNumberType] WHERE [Code] = 'Home') BEGIN INSERT INTO dbo.[RefTelephoneNumberType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Home', 'Home phone number', 'Home phone number is the type of communication number listed for a person.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTelephoneNumberType] -SET [Description] = 'Home phone number', [Definition] = 'Home phone number is the type of communication number listed for a person.', [SortOrder] = 1.00 WHERE [Code] = 'Home' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTelephoneNumberType] WHERE [Code] = 'Work') BEGIN INSERT INTO dbo.[RefTelephoneNumberType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Work', 'Work phone number', 'Work phone number is the type of communication number listed for a person.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTelephoneNumberType] -SET [Description] = 'Work phone number', [Definition] = 'Work phone number is the type of communication number listed for a person.', [SortOrder] = 3.00 WHERE [Code] = 'Work' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTelephoneNumberType] WHERE [Code] = 'Mobile') BEGIN INSERT INTO dbo.[RefTelephoneNumberType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Mobile', 'Mobile phone number', 'Mobile phone number is the type of communication number listed for a person.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTelephoneNumberType] -SET [Description] = 'Mobile phone number', [Definition] = 'Mobile phone number is the type of communication number listed for a person.', [SortOrder] = 5.00 WHERE [Code] = 'Mobile' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTelephoneNumberType] WHERE [Code] = 'Fax') BEGIN INSERT INTO dbo.[RefTelephoneNumberType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Fax', 'Fax number', 'Fax number is the type of communication number listed for a person.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTelephoneNumberType] -SET [Description] = 'Fax number', [Definition] = 'Fax number is the type of communication number listed for a person.', [SortOrder] = 7.00 WHERE [Code] = 'Fax' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTelephoneNumberType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefTelephoneNumberType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The type of communication number listed for a person is in a category not yet defined in CEDS.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTelephoneNumberType] -SET [Description] = 'Other', [Definition] = 'The type of communication number listed for a person is in a category not yet defined in CEDS.', [SortOrder] = 9.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefTenureSystem table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTenureSystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTenureSystem] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefTenureSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTenureSystem] -SET [Description] = 'Yes', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTenureSystem] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefTenureSystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTenureSystem] -SET [Description] = 'No', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'No' END -END - -PRINT N'Populate RefTextComplexitySystem table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTextComplexitySystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Automated Readability Index', 'Automated Readability Index is specified as the scaling system used to specify the text complexity of an assessment item.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Automated Readability Index', [Definition] = 'Automated Readability Index is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Bormuth Index', 'Bormuth Index is specified as the scaling system used to specify the text complexity of an assessment item.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Bormuth Index', [Definition] = 'Bormuth Index is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 3.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Coleman Liau Index', 'Coleman Liau Index is specified as the scaling system used to specify the text complexity of an assessment item.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Coleman Liau Index', [Definition] = 'Coleman Liau Index is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 5.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Coh-Metrix Readability', 'Coh-Metrix Readability is specified as the scaling system used to specify the text complexity of an assessment item.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Coh-Metrix Readability', [Definition] = 'Coh-Metrix Readability is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 7.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Dale-Chall Readability Formula', 'Dale-Chall Readability Formula is specified as the scaling system used to specify the text complexity of an assessment item.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Dale-Chall Readability Formula', [Definition] = 'Dale-Chall Readability Formula is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 9.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Flesch-Kincaid Grade Level', 'Flesch-Kincaid Grade Level is specified as the scaling system used to specify the text complexity of an assessment item.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Flesch-Kincaid Grade Level', [Definition] = 'Flesch-Kincaid Grade Level is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 11.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Flesch Reading Ease Formula', 'Flesch Reading Ease Formula is specified as the scaling system used to specify the text complexity of an assessment item.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Flesch Reading Ease Formula', [Definition] = 'Flesch Reading Ease Formula is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 12.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'FORCAST', 'FORCAST is specified as the scaling system used to specify the text complexity of an assessment item.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'FORCAST', [Definition] = 'FORCAST is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 13.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Fry Readability Formula', 'Fry Readability Formula is specified as the scaling system used to specify the text complexity of an assessment item.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Fry Readability Formula', [Definition] = 'Fry Readability Formula is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 15.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Gunning-Fog Scale', 'Gunning-Fog Scale is specified as the scaling system used to specify the text complexity of an assessment item.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Gunning-Fog Scale', [Definition] = 'Gunning-Fog Scale is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 17.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Hull Formula', 'Hull Formula is specified as the scaling system used to specify the text complexity of an assessment item.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Hull Formula', [Definition] = 'Hull Formula is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 19.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Lexile', 'Lexile is specified as the scaling system used to specify the text complexity of an assessment item.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Lexile', [Definition] = 'Lexile is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 21.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '13') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13', 'Linsear Write Formula', 'Linsear Write Formula is specified as the scaling system used to specify the text complexity of an assessment item.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Linsear Write Formula', [Definition] = 'Linsear Write Formula is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 23.00 WHERE [Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '14') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14', 'McAlpine EFLAW', 'McAlpine EFLAW is specified as the scaling system used to specify the text complexity of an assessment item.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'McAlpine EFLAW', [Definition] = 'McAlpine EFLAW is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 25.00 WHERE [Code] = '14' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '15') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('15', 'Powers-Sumner-Kearl', 'Powers-Sumner-Kearl is specified as the scaling system used to specify the text complexity of an assessment item.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Powers-Sumner-Kearl', [Definition] = 'Powers-Sumner-Kearl is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 27.00 WHERE [Code] = '15' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '16') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('16', 'Raygor Readability Estimate', 'Raygor Readability Estimate is specified as the scaling system used to specify the text complexity of an assessment item.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Raygor Readability Estimate', [Definition] = 'Raygor Readability Estimate is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 29.00 WHERE [Code] = '16' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '17') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('17', 'SMOG Index', 'SMOG Index is specified as the scaling system used to specify the text complexity of an assessment item.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'SMOG Index', [Definition] = 'SMOG Index is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 31.00 WHERE [Code] = '17' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '18') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('18', 'Spache Readability Formula', 'Spache Readability Formula is specified as the scaling system used to specify the text complexity of an assessment item.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Spache Readability Formula', [Definition] = 'Spache Readability Formula is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 33.00 WHERE [Code] = '18' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTextComplexitySystem] WHERE [Code] = '19') BEGIN INSERT INTO dbo.[RefTextComplexitySystem]([Code], [Description], [Definition], [SortOrder]) -VALUES ('19', 'Strain Index', 'Strain Index is specified as the scaling system used to specify the text complexity of an assessment item.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTextComplexitySystem] -SET [Description] = 'Strain Index', [Definition] = 'Strain Index is specified as the scaling system used to specify the text complexity of an assessment item.', [SortOrder] = 35.00 WHERE [Code] = '19' END -END - -PRINT N'Populate RefTimeForCompletionUnits table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTimeForCompletionUnits]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTimeForCompletionUnits] WHERE [Code] = 'Hours') BEGIN INSERT INTO dbo.[RefTimeForCompletionUnits]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Hours', 'Hours', 'The value given for Normal Length of Time for Completion is in Hours.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTimeForCompletionUnits] -SET [Description] = 'Hours', [Definition] = 'The value given for Normal Length of Time for Completion is in Hours.', [SortOrder] = 1.00 WHERE [Code] = 'Hours' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTimeForCompletionUnits] WHERE [Code] = 'Weeks') BEGIN INSERT INTO dbo.[RefTimeForCompletionUnits]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Weeks', 'Weeks', 'The value given for Normal Length of Time for Completion is in Weeks.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTimeForCompletionUnits] -SET [Description] = 'Weeks', [Definition] = 'The value given for Normal Length of Time for Completion is in Weeks.', [SortOrder] = 2.00 WHERE [Code] = 'Weeks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTimeForCompletionUnits] WHERE [Code] = 'Quarters') BEGIN INSERT INTO dbo.[RefTimeForCompletionUnits]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Quarters', 'Quarters', 'The value given for Normal Length of Time for Completion is in Quarters.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTimeForCompletionUnits] -SET [Description] = 'Quarters', [Definition] = 'The value given for Normal Length of Time for Completion is in Quarters.', [SortOrder] = 3.00 WHERE [Code] = 'Quarters' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTimeForCompletionUnits] WHERE [Code] = 'Semesters') BEGIN INSERT INTO dbo.[RefTimeForCompletionUnits]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Semesters', 'Semesters', 'The value given for Normal Length of Time for Completion is in Semesters.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTimeForCompletionUnits] -SET [Description] = 'Semesters', [Definition] = 'The value given for Normal Length of Time for Completion is in Semesters.', [SortOrder] = 4.00 WHERE [Code] = 'Semesters' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTimeForCompletionUnits] WHERE [Code] = 'Years') BEGIN INSERT INTO dbo.[RefTimeForCompletionUnits]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Years', 'Years', 'The value given for Normal Length of Time for Completion is in Years.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTimeForCompletionUnits] -SET [Description] = 'Years', [Definition] = 'The value given for Normal Length of Time for Completion is in Years.', [SortOrder] = 5.00 WHERE [Code] = 'Years' END -END - -PRINT N'Populate RefTitleIIIAccountability table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTitleIIIAccountability]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIIAccountability] WHERE [Code] = 'PROGRESS') BEGIN INSERT INTO dbo.[RefTitleIIIAccountability]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PROGRESS', 'Making progress', 'The student is making progress toward English proficiency.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIIAccountability] -SET [Description] = 'Making progress', [Definition] = 'The student is making progress toward English proficiency.', [SortOrder] = 1.00 WHERE [Code] = 'PROGRESS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIIAccountability] WHERE [Code] = 'NOPROGRESS') BEGIN INSERT INTO dbo.[RefTitleIIIAccountability]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NOPROGRESS', 'Did not make progress', 'The student did not make progress toward English proficiency.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIIAccountability] -SET [Description] = 'Did not make progress', [Definition] = 'The student did not make progress toward English proficiency.', [SortOrder] = 2.00 WHERE [Code] = 'NOPROGRESS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIIAccountability] WHERE [Code] = 'PROFICIENT') BEGIN INSERT INTO dbo.[RefTitleIIIAccountability]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PROFICIENT', 'Attained proficiency', 'The student attained English proficiency.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIIAccountability] -SET [Description] = 'Attained proficiency', [Definition] = 'The student attained English proficiency.', [SortOrder] = 3.00 WHERE [Code] = 'PROFICIENT' END -END - -PRINT N'Populate RefTitleIIILanguageInstructionProgramType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTitleIIILanguageInstructionProgramType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIILanguageInstructionProgramType] WHERE [Code] = 'DualLanguage') BEGIN INSERT INTO dbo.[RefTitleIIILanguageInstructionProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DualLanguage', 'Dual language', 'The type of Title III language instructional program is Dual language.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIILanguageInstructionProgramType] -SET [Description] = 'Dual language', [Definition] = 'The type of Title III language instructional program is Dual language.', [SortOrder] = 1.00 WHERE [Code] = 'DualLanguage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIILanguageInstructionProgramType] WHERE [Code] = 'TwoWayImmersion') BEGIN INSERT INTO dbo.[RefTitleIIILanguageInstructionProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TwoWayImmersion', 'Two-way immersion', 'The type of Title III language instructional program is Two-way immersion.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIILanguageInstructionProgramType] -SET [Description] = 'Two-way immersion', [Definition] = 'The type of Title III language instructional program is Two-way immersion.', [SortOrder] = 2.00 WHERE [Code] = 'TwoWayImmersion' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIILanguageInstructionProgramType] WHERE [Code] = 'TransitionalBilingual') BEGIN INSERT INTO dbo.[RefTitleIIILanguageInstructionProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TransitionalBilingual', 'Transitional bilingual', 'The type of Title III language instructional program is Transitional bilingual.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIILanguageInstructionProgramType] -SET [Description] = 'Transitional bilingual', [Definition] = 'The type of Title III language instructional program is Transitional bilingual.', [SortOrder] = 3.00 WHERE [Code] = 'TransitionalBilingual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIILanguageInstructionProgramType] WHERE [Code] = 'DevelopmentalBilingual') BEGIN INSERT INTO dbo.[RefTitleIIILanguageInstructionProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DevelopmentalBilingual', 'Developmental bilingual', 'The type of Title III language instructional program is Developmental bilingual.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIILanguageInstructionProgramType] -SET [Description] = 'Developmental bilingual', [Definition] = 'The type of Title III language instructional program is Developmental bilingual.', [SortOrder] = 4.00 WHERE [Code] = 'DevelopmentalBilingual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIILanguageInstructionProgramType] WHERE [Code] = 'HeritageLanguage') BEGIN INSERT INTO dbo.[RefTitleIIILanguageInstructionProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HeritageLanguage', 'Heritage language', 'The type of Title III language instructional program is Heritage language.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIILanguageInstructionProgramType] -SET [Description] = 'Heritage language', [Definition] = 'The type of Title III language instructional program is Heritage language.', [SortOrder] = 5.00 WHERE [Code] = 'HeritageLanguage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIILanguageInstructionProgramType] WHERE [Code] = 'ShelteredEnglishInstruction') BEGIN INSERT INTO dbo.[RefTitleIIILanguageInstructionProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ShelteredEnglishInstruction', 'Sheltered English instruction', 'The type of Title III language instructional program is Sheltered English instruction.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIILanguageInstructionProgramType] -SET [Description] = 'Sheltered English instruction', [Definition] = 'The type of Title III language instructional program is Sheltered English instruction.', [SortOrder] = 6.00 WHERE [Code] = 'ShelteredEnglishInstruction' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIILanguageInstructionProgramType] WHERE [Code] = 'StructuredEnglishImmersion') BEGIN INSERT INTO dbo.[RefTitleIIILanguageInstructionProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StructuredEnglishImmersion', 'Structured English immersion', 'The type of Title III language instructional program is Structured English immersion.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIILanguageInstructionProgramType] -SET [Description] = 'Structured English immersion', [Definition] = 'The type of Title III language instructional program is Structured English immersion.', [SortOrder] = 7.00 WHERE [Code] = 'StructuredEnglishImmersion' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIILanguageInstructionProgramType] WHERE [Code] = 'SDAIE') BEGIN INSERT INTO dbo.[RefTitleIIILanguageInstructionProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SDAIE', 'Specially designed academic instruction delivered in English (SDAIE)', 'The type of Title III language instructional program is Specially designed academic instruction delivered in English (SDAIE).', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIILanguageInstructionProgramType] -SET [Description] = 'Specially designed academic instruction delivered in English (SDAIE)', [Definition] = 'The type of Title III language instructional program is Specially designed academic instruction delivered in English (SDAIE).', [SortOrder] = 8.00 WHERE [Code] = 'SDAIE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIILanguageInstructionProgramType] WHERE [Code] = 'ContentBasedESL') BEGIN INSERT INTO dbo.[RefTitleIIILanguageInstructionProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ContentBasedESL', 'Content-based ESL', 'The type of Title III language instructional program is Content-based ESL.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIILanguageInstructionProgramType] -SET [Description] = 'Content-based ESL', [Definition] = 'The type of Title III language instructional program is Content-based ESL.', [SortOrder] = 9.00 WHERE [Code] = 'ContentBasedESL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIILanguageInstructionProgramType] WHERE [Code] = 'PullOutESL') BEGIN INSERT INTO dbo.[RefTitleIIILanguageInstructionProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PullOutESL', 'Pull-out ESL', 'The type of Title III language instructional program is Pull-out ESL.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIILanguageInstructionProgramType] -SET [Description] = 'Pull-out ESL', [Definition] = 'The type of Title III language instructional program is Pull-out ESL.', [SortOrder] = 10.00 WHERE [Code] = 'PullOutESL' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIILanguageInstructionProgramType] WHERE [Code] = 'NewcomerPrograms') BEGIN INSERT INTO dbo.[RefTitleIIILanguageInstructionProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NewcomerPrograms', 'Newcomer Programs', 'The type of Title III language instructional program is Newcomer Programs.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIILanguageInstructionProgramType] -SET [Description] = 'Newcomer Programs', [Definition] = 'The type of Title III language instructional program is Newcomer Programs.', [SortOrder] = 11.00 WHERE [Code] = 'NewcomerPrograms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIILanguageInstructionProgramType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefTitleIIILanguageInstructionProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The type of Title III language instructional program is in a category not yet included in CEDS.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIILanguageInstructionProgramType] -SET [Description] = 'Other', [Definition] = 'The type of Title III language instructional program is in a category not yet included in CEDS.', [SortOrder] = 12.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefTitleIIIProfessionalDevelopmentType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTitleIIIProfessionalDevelopmentType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIIProfessionalDevelopmentType] WHERE [Code] = 'InstructionalStrategies') BEGIN INSERT INTO dbo.[RefTitleIIIProfessionalDevelopmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InstructionalStrategies', 'Instructional strategies', 'The type of Title III professional development utilized is Instructional strategies.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIIProfessionalDevelopmentType] -SET [Description] = 'Instructional strategies', [Definition] = 'The type of Title III professional development utilized is Instructional strategies.', [SortOrder] = 1.00 WHERE [Code] = 'InstructionalStrategies' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIIProfessionalDevelopmentType] WHERE [Code] = 'Assessment') BEGIN INSERT INTO dbo.[RefTitleIIIProfessionalDevelopmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Assessment', 'Assessment', 'The type of Title III professional development utilized is Assessment.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIIProfessionalDevelopmentType] -SET [Description] = 'Assessment', [Definition] = 'The type of Title III professional development utilized is Assessment.', [SortOrder] = 2.00 WHERE [Code] = 'Assessment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIIProfessionalDevelopmentType] WHERE [Code] = 'ELPContentStandards') BEGIN INSERT INTO dbo.[RefTitleIIIProfessionalDevelopmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ELPContentStandards', 'ELP and content standards', 'The type of Title III professional development utilized is ELP and content standards.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIIProfessionalDevelopmentType] -SET [Description] = 'ELP and content standards', [Definition] = 'The type of Title III professional development utilized is ELP and content standards.', [SortOrder] = 3.00 WHERE [Code] = 'ELPContentStandards' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIIProfessionalDevelopmentType] WHERE [Code] = 'CurriculumAlignmentELP') BEGIN INSERT INTO dbo.[RefTitleIIIProfessionalDevelopmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CurriculumAlignmentELP', 'Curriculum alignment to ELP standards', 'The type of Title III professional development utilized is Curriculum alignment to ELP standards.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIIProfessionalDevelopmentType] -SET [Description] = 'Curriculum alignment to ELP standards', [Definition] = 'The type of Title III professional development utilized is Curriculum alignment to ELP standards.', [SortOrder] = 4.00 WHERE [Code] = 'CurriculumAlignmentELP' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIIProfessionalDevelopmentType] WHERE [Code] = 'SubjectMatter') BEGIN INSERT INTO dbo.[RefTitleIIIProfessionalDevelopmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SubjectMatter', 'Subject matter', 'The type of Title III professional development utilized is Subject matter.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIIProfessionalDevelopmentType] -SET [Description] = 'Subject matter', [Definition] = 'The type of Title III professional development utilized is Subject matter.', [SortOrder] = 5.00 WHERE [Code] = 'SubjectMatter' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIIProfessionalDevelopmentType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefTitleIIIProfessionalDevelopmentType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The type of Title III professional development utilized is in a category not yet defined in CEDS.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIIProfessionalDevelopmentType] -SET [Description] = 'Other', [Definition] = 'The type of Title III professional development utilized is in a category not yet defined in CEDS.', [SortOrder] = 6.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefTitleIIndicator table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTitleIIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIndicator] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefTitleIIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Public Targeted Assistance Program', 'Public Targeted Assistance Program', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIndicator] -SET [Description] = 'Public Targeted Assistance Program', [Definition] = 'Public Targeted Assistance Program', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIndicator] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefTitleIIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Public Schoolwide Program', 'Public Schoolwide Program', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIndicator] -SET [Description] = 'Public Schoolwide Program', [Definition] = 'Public Schoolwide Program', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIndicator] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefTitleIIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Private school students participating', 'Private school students participating', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIndicator] -SET [Description] = 'Private school students participating', [Definition] = 'Private school students participating', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIndicator] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefTitleIIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Local Neglected Program', 'Local Neglected Program', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIndicator] -SET [Description] = 'Local Neglected Program', [Definition] = 'Local Neglected Program', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIIndicator] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefTitleIIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Was not served', 'Was not served', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIIndicator] -SET [Description] = 'Was not served', [Definition] = 'Was not served', [SortOrder] = 5.00 WHERE [Code] = '05' END -END - -PRINT N'Populate RefTitleIInstructionalServices table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTitleIInstructionalServices]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIInstructionalServices] WHERE [Code] = 'ReadingLanguageArts') BEGIN INSERT INTO dbo.[RefTitleIInstructionalServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReadingLanguageArts', 'Reading/Language Arts', 'The student is participating in and served by a Reading/Language Arts program under Title I, Part A of ESEA as amended.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIInstructionalServices] -SET [Description] = 'Reading/Language Arts', [Definition] = 'The student is participating in and served by a Reading/Language Arts program under Title I, Part A of ESEA as amended.', [SortOrder] = 1.00 WHERE [Code] = 'ReadingLanguageArts' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIInstructionalServices] WHERE [Code] = 'Mathematics') BEGIN INSERT INTO dbo.[RefTitleIInstructionalServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Mathematics', 'Mathematics', 'The student is participating in and served by a Mathematics program under Title I, Part A of ESEA as amended.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIInstructionalServices] -SET [Description] = 'Mathematics', [Definition] = 'The student is participating in and served by a Mathematics program under Title I, Part A of ESEA as amended.', [SortOrder] = 2.00 WHERE [Code] = 'Mathematics' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIInstructionalServices] WHERE [Code] = 'Science') BEGIN INSERT INTO dbo.[RefTitleIInstructionalServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Science', 'Science', 'The student is participating in and served by a Science program under Title I, Part A of ESEA as amended.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIInstructionalServices] -SET [Description] = 'Science', [Definition] = 'The student is participating in and served by a Science program under Title I, Part A of ESEA as amended.', [SortOrder] = 3.00 WHERE [Code] = 'Science' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIInstructionalServices] WHERE [Code] = 'SocialSciences') BEGIN INSERT INTO dbo.[RefTitleIInstructionalServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SocialSciences', 'Social Sciences', 'The student is participating in and served by a Social Sciences program under Title I, Part A of ESEA as amended.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIInstructionalServices] -SET [Description] = 'Social Sciences', [Definition] = 'The student is participating in and served by a Social Sciences program under Title I, Part A of ESEA as amended.', [SortOrder] = 4.00 WHERE [Code] = 'SocialSciences' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIInstructionalServices] WHERE [Code] = 'CareerAndTechnical') BEGIN INSERT INTO dbo.[RefTitleIInstructionalServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CareerAndTechnical', 'Career and Technical Education', 'The student is participating in and served by a Career and Technical Education program under Title I, Part A of ESEA as amended.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIInstructionalServices] -SET [Description] = 'Career and Technical Education', [Definition] = 'The student is participating in and served by a Career and Technical Education program under Title I, Part A of ESEA as amended.', [SortOrder] = 5.00 WHERE [Code] = 'CareerAndTechnical' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIInstructionalServices] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefTitleIInstructionalServices]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The student is participating in and served by a program under Title I, Part A of ESEA as amended in a subject/category not yet defined in CEDS.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIInstructionalServices] -SET [Description] = 'Other', [Definition] = 'The student is participating in and served by a program under Title I, Part A of ESEA as amended in a subject/category not yet defined in CEDS.', [SortOrder] = 6.00 WHERE [Code] = 'Other' END -END - -PRINT N'Populate RefTitleIProgramStaffCategory table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTitleIProgramStaffCategory]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIProgramStaffCategory] WHERE [Code] = 'TitleITeacher') BEGIN INSERT INTO dbo.[RefTitleIProgramStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TitleITeacher', 'Title I Teachers', 'Title I Teachers is the category of staff working in a Title I program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIProgramStaffCategory] -SET [Description] = 'Title I Teachers', [Definition] = 'Title I Teachers is the category of staff working in a Title I program.', [SortOrder] = 1.00 WHERE [Code] = 'TitleITeacher' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIProgramStaffCategory] WHERE [Code] = 'TitleIParaprofessional') BEGIN INSERT INTO dbo.[RefTitleIProgramStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TitleIParaprofessional', 'Title I Paraprofessionals ', 'Title I Paraprofessionals is the category of staff working in a Title I program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIProgramStaffCategory] -SET [Description] = 'Title I Paraprofessionals ', [Definition] = 'Title I Paraprofessionals is the category of staff working in a Title I program.', [SortOrder] = 2.00 WHERE [Code] = 'TitleIParaprofessional' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIProgramStaffCategory] WHERE [Code] = 'TitleISupportStaff') BEGIN INSERT INTO dbo.[RefTitleIProgramStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TitleISupportStaff', 'Title I Clerical Support Staff', 'Title I Clerical Support Staff is the category of staff working in a Title I program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIProgramStaffCategory] -SET [Description] = 'Title I Clerical Support Staff', [Definition] = 'Title I Clerical Support Staff is the category of staff working in a Title I program.', [SortOrder] = 3.00 WHERE [Code] = 'TitleISupportStaff' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIProgramStaffCategory] WHERE [Code] = 'TitleIAdministrator') BEGIN INSERT INTO dbo.[RefTitleIProgramStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TitleIAdministrator', 'Title I Administrators (non-clerical)', 'Title I Administrators (non-clerical) is the category of staff working in a Title I program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIProgramStaffCategory] -SET [Description] = 'Title I Administrators (non-clerical)', [Definition] = 'Title I Administrators (non-clerical) is the category of staff working in a Title I program.', [SortOrder] = 4.00 WHERE [Code] = 'TitleIAdministrator' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIProgramStaffCategory] WHERE [Code] = 'TitleIOtherParaprofessional') BEGIN INSERT INTO dbo.[RefTitleIProgramStaffCategory]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TitleIOtherParaprofessional', 'Title I Other Paraprofessionals', 'Title I Other Paraprofessionals is the category of staff working in a Title I program.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIProgramStaffCategory] -SET [Description] = 'Title I Other Paraprofessionals', [Definition] = 'Title I Other Paraprofessionals is the category of staff working in a Title I program.', [SortOrder] = 5.00 WHERE [Code] = 'TitleIOtherParaprofessional' END -END - -PRINT N'Populate RefTitleIProgramType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTitleIProgramType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIProgramType] WHERE [Code] = 'TargetedAssistanceProgram') BEGIN INSERT INTO dbo.[RefTitleIProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TargetedAssistanceProgram', 'Public Targeted Assistance Program', 'The type of Title I program offered in the school or district Is Public Targeted Assistance Program', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIProgramType] -SET [Description] = 'Public Targeted Assistance Program', [Definition] = 'The type of Title I program offered in the school or district Is Public Targeted Assistance Program', [SortOrder] = 1.00 WHERE [Code] = 'TargetedAssistanceProgram' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIProgramType] WHERE [Code] = 'SchoolwideProgram') BEGIN INSERT INTO dbo.[RefTitleIProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SchoolwideProgram', 'Public Schoolwide Program', 'The type of Title I program offered in the school or district Is Public Schoolwide Program', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIProgramType] -SET [Description] = 'Public Schoolwide Program', [Definition] = 'The type of Title I program offered in the school or district Is Public Schoolwide Program', [SortOrder] = 2.00 WHERE [Code] = 'SchoolwideProgram' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIProgramType] WHERE [Code] = 'PrivateSchoolStudents') BEGIN INSERT INTO dbo.[RefTitleIProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrivateSchoolStudents', 'Private School Students Participating', 'The type of Title I program offered in the school or district Is Private School Students Participating', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIProgramType] -SET [Description] = 'Private School Students Participating', [Definition] = 'The type of Title I program offered in the school or district Is Private School Students Participating', [SortOrder] = 3.00 WHERE [Code] = 'PrivateSchoolStudents' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleIProgramType] WHERE [Code] = 'LocalNeglectedProgram') BEGIN INSERT INTO dbo.[RefTitleIProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LocalNeglectedProgram', 'Local Neglected Program', 'The type of Title I program offered in the school or district Is Local Neglected Program', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleIProgramType] -SET [Description] = 'Local Neglected Program', [Definition] = 'The type of Title I program offered in the school or district Is Local Neglected Program', [SortOrder] = 4.00 WHERE [Code] = 'LocalNeglectedProgram' END -END - -PRINT N'Populate RefTitleISchoolStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTitleISchoolStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleISchoolStatus] WHERE [Code] = 'TGELGBNOPROG') BEGIN INSERT INTO dbo.[RefTitleISchoolStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TGELGBNOPROG', 'Title I Targeted Assistance Eligible School- No Program', 'The school is designated under state and federal regulations as being eligible for participation in Title I Targeted Assistance Eligible School- No Program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleISchoolStatus] -SET [Description] = 'Title I Targeted Assistance Eligible School- No Program', [Definition] = 'The school is designated under state and federal regulations as being eligible for participation in Title I Targeted Assistance Eligible School- No Program.', [SortOrder] = 1.00 WHERE [Code] = 'TGELGBNOPROG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleISchoolStatus] WHERE [Code] = 'TGELGBTGPROG') BEGIN INSERT INTO dbo.[RefTitleISchoolStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TGELGBTGPROG', 'Title I Targeted Assistance School', 'The school is designated under state and federal regulations as being eligible for participation in Title I Targeted Assistance School.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleISchoolStatus] -SET [Description] = 'Title I Targeted Assistance School', [Definition] = 'The school is designated under state and federal regulations as being eligible for participation in Title I Targeted Assistance School.', [SortOrder] = 2.00 WHERE [Code] = 'TGELGBTGPROG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleISchoolStatus] WHERE [Code] = 'SWELIGTGPROG') BEGIN INSERT INTO dbo.[RefTitleISchoolStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SWELIGTGPROG', 'Title I, Schoolwide eligible-Title I Targeted Assistance Program', 'The school is designated under state and federal regulations as being eligible for participation in Title I, Schoolwide eligible-Title I Targeted Assistance Program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleISchoolStatus] -SET [Description] = 'Title I, Schoolwide eligible-Title I Targeted Assistance Program', [Definition] = 'The school is designated under state and federal regulations as being eligible for participation in Title I, Schoolwide eligible-Title I Targeted Assistance Program.', [SortOrder] = 3.00 WHERE [Code] = 'SWELIGTGPROG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleISchoolStatus] WHERE [Code] = 'SWELIGNOPROG') BEGIN INSERT INTO dbo.[RefTitleISchoolStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SWELIGNOPROG', 'Title I Schoolwide Eligible School - No Program', 'The school is designated under state and federal regulations as being eligible for participation in Title I Schoolwide Eligible School - No Program.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleISchoolStatus] -SET [Description] = 'Title I Schoolwide Eligible School - No Program', [Definition] = 'The school is designated under state and federal regulations as being eligible for participation in Title I Schoolwide Eligible School - No Program.', [SortOrder] = 4.00 WHERE [Code] = 'SWELIGNOPROG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleISchoolStatus] WHERE [Code] = 'SWELIGSWPROG') BEGIN INSERT INTO dbo.[RefTitleISchoolStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SWELIGSWPROG', 'Title I Schoolwide School', 'The school is designated under state and federal regulations as being eligible for participation in Title I Schoolwide School.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleISchoolStatus] -SET [Description] = 'Title I Schoolwide School', [Definition] = 'The school is designated under state and federal regulations as being eligible for participation in Title I Schoolwide School.', [SortOrder] = 5.00 WHERE [Code] = 'SWELIGSWPROG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTitleISchoolStatus] WHERE [Code] = 'NOTTITLE1ELIG') BEGIN INSERT INTO dbo.[RefTitleISchoolStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NOTTITLE1ELIG', 'Not a Title I School', 'The school is designated under state and federal regulations as being Not a Title I School.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTitleISchoolStatus] -SET [Description] = 'Not a Title I School', [Definition] = 'The school is designated under state and federal regulations as being Not a Title I School.', [SortOrder] = 6.00 WHERE [Code] = 'NOTTITLE1ELIG' END -END - -PRINT N'Populate RefTransferOutIndicator table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTransferOutIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTransferOutIndicator] WHERE [Code] = 'Yes') BEGIN INSERT INTO dbo.[RefTransferOutIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Yes', 'Yes', NULL, 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTransferOutIndicator] -SET [Description] = 'Yes', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'Yes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTransferOutIndicator] WHERE [Code] = 'No') BEGIN INSERT INTO dbo.[RefTransferOutIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('No', 'No', NULL, 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTransferOutIndicator] -SET [Description] = 'No', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTransferOutIndicator] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefTransferOutIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', NULL, 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTransferOutIndicator] -SET [Description] = 'Unknown', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'Unknown' END -END - -PRINT N'Populate RefTransferReady table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTransferReady]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTransferReady] WHERE [Code] = 'YesStateDefined') BEGIN INSERT INTO dbo.[RefTransferReady]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YesStateDefined', 'Yes, state defined', 'The person has successfully completed a transfer-preparatory program as defined by the state.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTransferReady] -SET [Description] = 'Yes, state defined', [Definition] = 'The person has successfully completed a transfer-preparatory program as defined by the state.', [SortOrder] = 1.00 WHERE [Code] = 'YesStateDefined' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTransferReady] WHERE [Code] = 'YesInstitutionDefined') BEGIN INSERT INTO dbo.[RefTransferReady]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YesInstitutionDefined', 'Yes, institution defined', 'The person has successfully completed a transfer-preparatory program as defined by the institution.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTransferReady] -SET [Description] = 'Yes, institution defined', [Definition] = 'The person has successfully completed a transfer-preparatory program as defined by the institution.', [SortOrder] = 2.00 WHERE [Code] = 'YesInstitutionDefined' END -END - -PRINT N'Populate RefTribalAffiliation table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTribalAffiliation]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AbsenteeShawneeTribeofIndiansofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AbsenteeShawneeTribeofIndiansofOklahoma', 'Absentee-Shawnee Tribe of Indians of Oklahoma', 'Absentee-Shawnee Tribe of Indians of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Absentee-Shawnee Tribe of Indians of Oklahoma', [Definition] = 'Absentee-Shawnee Tribe of Indians of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 1.00 WHERE [Code] = 'AbsenteeShawneeTribeofIndiansofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AgdaaguxTribeofKingCove') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AgdaaguxTribeofKingCove', 'Agdaagux Tribe of King Cove', 'Agdaagux Tribe of King Cove is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Agdaagux Tribe of King Cove', [Definition] = 'Agdaagux Tribe of King Cove is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 2.00 WHERE [Code] = 'AgdaaguxTribeofKingCove' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AguaCalienteBandofCahuillaIndiansoftheAgua') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AguaCalienteBandofCahuillaIndiansoftheAgua', 'Agua Caliente Band of Cahuilla Indians of the Agua Caliente Indian Reservation, California', 'Agua Caliente Band of Cahuilla Indians of the Agua Caliente Indian Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Agua Caliente Band of Cahuilla Indians of the Agua Caliente Indian Reservation, California', [Definition] = 'Agua Caliente Band of Cahuilla Indians of the Agua Caliente Indian Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 3.00 WHERE [Code] = 'AguaCalienteBandofCahuillaIndiansoftheAgua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AkChinIndianCommunity') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AkChinIndianCommunity', 'Ak-Chin Indian Community', 'Ak-Chin Indian Community (previously listed as Ak Chin Indian Community of the Maricopa (Ak Chin) Indian Reservation, Arizona) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ak-Chin Indian Community', [Definition] = 'Ak-Chin Indian Community (previously listed as Ak Chin Indian Community of the Maricopa (Ak Chin) Indian Reservation, Arizona) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 4.00 WHERE [Code] = 'AkChinIndianCommunity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AkiachakNativeCommunity') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AkiachakNativeCommunity', 'Akiachak Native Community', 'Akiachak Native Community is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Akiachak Native Community', [Definition] = 'Akiachak Native Community is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 5.00 WHERE [Code] = 'AkiachakNativeCommunity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AkiakNativeCommunity') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AkiakNativeCommunity', 'Akiak Native Community', 'Akiak Native Community is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Akiak Native Community', [Definition] = 'Akiak Native Community is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 6.00 WHERE [Code] = 'AkiakNativeCommunity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AlabamaCoushattaTribeofTexas') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AlabamaCoushattaTribeofTexas', 'Alabama-Coushatta Tribe of Texas', 'Alabama-Coushatta Tribe of Texas (previously listed as Alabama Coushatta Tribes of Texas) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Alabama-Coushatta Tribe of Texas', [Definition] = 'Alabama-Coushatta Tribe of Texas (previously listed as Alabama Coushatta Tribes of Texas) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 7.00 WHERE [Code] = 'AlabamaCoushattaTribeofTexas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AlabamaQuassarteTribalTown') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AlabamaQuassarteTribalTown', 'Alabama-Quassarte Tribal Town', 'Alabama-Quassarte Tribal Town is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Alabama-Quassarte Tribal Town', [Definition] = 'Alabama-Quassarte Tribal Town is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 8.00 WHERE [Code] = 'AlabamaQuassarteTribalTown' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AlatnaVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AlatnaVillage', 'Alatna Village', 'Alatna Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Alatna Village', [Definition] = 'Alatna Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 9.00 WHERE [Code] = 'AlatnaVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AlgaaciqNativeVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AlgaaciqNativeVillage', 'Algaaciq Native Village', 'Algaaciq Native Village (St. Mary''s) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Algaaciq Native Village', [Definition] = 'Algaaciq Native Village (St. Mary''s) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 10.00 WHERE [Code] = 'AlgaaciqNativeVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AllakaketVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AllakaketVillage', 'Allakaket Village', 'Allakaket Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Allakaket Village', [Definition] = 'Allakaket Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 11.00 WHERE [Code] = 'AllakaketVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AlturasIndianRancheriaCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AlturasIndianRancheriaCalifornia', 'Alturas Indian Rancheria, California', 'Alturas Indian Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Alturas Indian Rancheria, California', [Definition] = 'Alturas Indian Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 12.00 WHERE [Code] = 'AlturasIndianRancheriaCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AlutiiqTribeofOldHarbor') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AlutiiqTribeofOldHarbor', 'Alutiiq Tribe of Old Harbor', 'Alutiiq Tribe of Old Harbor (previously listed as Native Village of Old Harbor and Village of Old Harbor) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Alutiiq Tribe of Old Harbor', [Definition] = 'Alutiiq Tribe of Old Harbor (previously listed as Native Village of Old Harbor and Village of Old Harbor) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 13.00 WHERE [Code] = 'AlutiiqTribeofOldHarbor' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AngoonCommunityAssociation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AngoonCommunityAssociation', 'Angoon Community Association', 'Angoon Community Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Angoon Community Association', [Definition] = 'Angoon Community Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 14.00 WHERE [Code] = 'AngoonCommunityAssociation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AnvikVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AnvikVillage', 'Anvik Village', 'Anvik Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Anvik Village', [Definition] = 'Anvik Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 15.00 WHERE [Code] = 'AnvikVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ApacheTribeofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ApacheTribeofOklahoma', 'Apache Tribe of Oklahoma', 'Apache Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Apache Tribe of Oklahoma', [Definition] = 'Apache Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 16.00 WHERE [Code] = 'ApacheTribeofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ArcticVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ArcticVillage', 'Arctic Village', 'Arctic Village (See Native Village of Venetie Tribal Government) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Arctic Village', [Definition] = 'Arctic Village (See Native Village of Venetie Tribal Government) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 17.00 WHERE [Code] = 'ArcticVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AroostookBandofMicmacs') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AroostookBandofMicmacs', 'Aroostook Band of Micmacs', 'Aroostook Band of Micmacs (previously listed as Aroostook Band of Micmac Indians) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Aroostook Band of Micmacs', [Definition] = 'Aroostook Band of Micmacs (previously listed as Aroostook Band of Micmac Indians) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 18.00 WHERE [Code] = 'AroostookBandofMicmacs' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AsacarsarmiutTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AsacarsarmiutTribe', 'Asa''carsarmiut Tribe', 'Asa''carsarmiut Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Asa''carsarmiut Tribe', [Definition] = 'Asa''carsarmiut Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 19.00 WHERE [Code] = 'AsacarsarmiutTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AssiniboineandSiouxTribesoftheFortPeckIndian') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AssiniboineandSiouxTribesoftheFortPeckIndian', 'Assiniboine and Sioux Tribes of the Fort Peck Indian Reservation, Montana', 'Assiniboine and Sioux Tribes of the Fort Peck Indian Reservation, Montana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Assiniboine and Sioux Tribes of the Fort Peck Indian Reservation, Montana', [Definition] = 'Assiniboine and Sioux Tribes of the Fort Peck Indian Reservation, Montana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 20.00 WHERE [Code] = 'AssiniboineandSiouxTribesoftheFortPeckIndian' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AugustineBandofCahuillaIndiansCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AugustineBandofCahuillaIndiansCalifornia', 'Augustine Band of Cahuilla Indians, California', 'Augustine Band of Cahuilla Indians, California (previously listed as Augustine Band of Cahuilla Mission Indians of the Augustine Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Augustine Band of Cahuilla Indians, California', [Definition] = 'Augustine Band of Cahuilla Indians, California (previously listed as Augustine Band of Cahuilla Mission Indians of the Augustine Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 21.00 WHERE [Code] = 'AugustineBandofCahuillaIndiansCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BadRiverBandoftheLakeSuperiorTribeofChippewa') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BadRiverBandoftheLakeSuperiorTribeofChippewa', 'Bad River Band of the Lake Superior Tribe of Chippewa Indians of the Bad River Reservation, Wisconsin', 'Bad River Band of the Lake Superior Tribe of Chippewa Indians of the Bad River Reservation, Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Bad River Band of the Lake Superior Tribe of Chippewa Indians of the Bad River Reservation, Wisconsin', [Definition] = 'Bad River Band of the Lake Superior Tribe of Chippewa Indians of the Bad River Reservation, Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 22.00 WHERE [Code] = 'BadRiverBandoftheLakeSuperiorTribeofChippewa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BayMillsIndianCommunityMichigan') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BayMillsIndianCommunityMichigan', 'Bay Mills Indian Community, Michigan', 'Bay Mills Indian Community, Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Bay Mills Indian Community, Michigan', [Definition] = 'Bay Mills Indian Community, Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 23.00 WHERE [Code] = 'BayMillsIndianCommunityMichigan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BearRiverBandoftheRohnervilleRancheriaCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BearRiverBandoftheRohnervilleRancheriaCalifornia', 'Bear River Band of the Rohnerville Rancheria, California', 'Bear River Band of the Rohnerville Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Bear River Band of the Rohnerville Rancheria, California', [Definition] = 'Bear River Band of the Rohnerville Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 24.00 WHERE [Code] = 'BearRiverBandoftheRohnervilleRancheriaCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BeaverVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BeaverVillage', 'Beaver Village', 'Beaver Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Beaver Village', [Definition] = 'Beaver Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 25.00 WHERE [Code] = 'BeaverVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BerryCreekRancheriaofMaiduIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BerryCreekRancheriaofMaiduIndiansofCalifornia', 'Berry Creek Rancheria of Maidu Indians of California', 'Berry Creek Rancheria of Maidu Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Berry Creek Rancheria of Maidu Indians of California', [Definition] = 'Berry Creek Rancheria of Maidu Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 26.00 WHERE [Code] = 'BerryCreekRancheriaofMaiduIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BigLagoonRancheriaCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BigLagoonRancheriaCalifornia', 'Big Lagoon Rancheria, California', 'Big Lagoon Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Big Lagoon Rancheria, California', [Definition] = 'Big Lagoon Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 27.00 WHERE [Code] = 'BigLagoonRancheriaCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BigPinePaiuteTribeoftheOwensValley') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BigPinePaiuteTribeoftheOwensValley', 'Big Pine Paiute Tribe of the Owens Valley', 'Big Pine Paiute Tribe of the Owens Valley (previously listed as Big Pine Band of Owens Valley Paiute Shoshone Indians of the Big Pine Reservation, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Big Pine Paiute Tribe of the Owens Valley', [Definition] = 'Big Pine Paiute Tribe of the Owens Valley (previously listed as Big Pine Band of Owens Valley Paiute Shoshone Indians of the Big Pine Reservation, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 28.00 WHERE [Code] = 'BigPinePaiuteTribeoftheOwensValley' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BigSandyRancheriaofWesternMonoIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BigSandyRancheriaofWesternMonoIndiansofCalifornia', 'Big Sandy Rancheria of Western Mono Indians of California', 'Big Sandy Rancheria of Western Mono Indians of California (previously listed as Big Sandy Rancheria of Mono Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 29.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Big Sandy Rancheria of Western Mono Indians of California', [Definition] = 'Big Sandy Rancheria of Western Mono Indians of California (previously listed as Big Sandy Rancheria of Mono Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 29.00 WHERE [Code] = 'BigSandyRancheriaofWesternMonoIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BigValleyBandofPomoIndiansoftheBigValleyRancheria') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BigValleyBandofPomoIndiansoftheBigValleyRancheria', 'Big Valley Band of Pomo Indians of the Big Valley Rancheria, California', 'Big Valley Band of Pomo Indians of the Big Valley Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Big Valley Band of Pomo Indians of the Big Valley Rancheria, California', [Definition] = 'Big Valley Band of Pomo Indians of the Big Valley Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 30.00 WHERE [Code] = 'BigValleyBandofPomoIndiansoftheBigValleyRancheria' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BirchCreekTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BirchCreekTribe', 'Birch Creek Tribe', 'Birch Creek Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 31.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Birch Creek Tribe', [Definition] = 'Birch Creek Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 31.00 WHERE [Code] = 'BirchCreekTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BishopPaiuteTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BishopPaiuteTribe', 'Bishop Paiute Tribe', 'Bishop Paiute Tribe (previously listed as Paiute-Shoshone Indians of the Bishop Community of the Bishop Colony, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 32.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Bishop Paiute Tribe', [Definition] = 'Bishop Paiute Tribe (previously listed as Paiute-Shoshone Indians of the Bishop Community of the Bishop Colony, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 32.00 WHERE [Code] = 'BishopPaiuteTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BlackfeetTribeoftheBlackfeetIndianReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BlackfeetTribeoftheBlackfeetIndianReservation', 'Blackfeet Tribe of the Blackfeet Indian Reservation of Montana', 'Blackfeet Tribe of the Blackfeet Indian Reservation of Montana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 33.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Blackfeet Tribe of the Blackfeet Indian Reservation of Montana', [Definition] = 'Blackfeet Tribe of the Blackfeet Indian Reservation of Montana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 33.00 WHERE [Code] = 'BlackfeetTribeoftheBlackfeetIndianReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BlueLakeRancheriaCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BlueLakeRancheriaCalifornia', 'Blue Lake Rancheria, California', 'Blue Lake Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 34.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Blue Lake Rancheria, California', [Definition] = 'Blue Lake Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 34.00 WHERE [Code] = 'BlueLakeRancheriaCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BridgeportIndianColony') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BridgeportIndianColony', 'Bridgeport Indian Colony', 'Bridgeport Indian Colony (previously listed as Bridgeport Paiute Indian Colony of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 35.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Bridgeport Indian Colony', [Definition] = 'Bridgeport Indian Colony (previously listed as Bridgeport Paiute Indian Colony of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 35.00 WHERE [Code] = 'BridgeportIndianColony' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BuenaVistaRancheriaofMeWukIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BuenaVistaRancheriaofMeWukIndiansofCalifornia', 'Buena Vista Rancheria of Me-Wuk Indians of California', 'Buena Vista Rancheria of Me-Wuk Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 36.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Buena Vista Rancheria of Me-Wuk Indians of California', [Definition] = 'Buena Vista Rancheria of Me-Wuk Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 36.00 WHERE [Code] = 'BuenaVistaRancheriaofMeWukIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'BurnsPaiuteTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('BurnsPaiuteTribe', 'Burns Paiute Tribe', 'Burns Paiute Tribe (previously listed as Burns Paiute Tribe of the Burns Paiute Indian Colony of Oregon) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 37.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Burns Paiute Tribe', [Definition] = 'Burns Paiute Tribe (previously listed as Burns Paiute Tribe of the Burns Paiute Indian Colony of Oregon) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 37.00 WHERE [Code] = 'BurnsPaiuteTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CabazonBandofMissionIndiansCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CabazonBandofMissionIndiansCalifornia', 'Cabazon Band of Mission Indians, California', 'Cabazon Band of Mission Indians, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 38.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cabazon Band of Mission Indians, California', [Definition] = 'Cabazon Band of Mission Indians, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 38.00 WHERE [Code] = 'CabazonBandofMissionIndiansCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CachilDeHeBandofWintunIndiansoftheColusaIndian') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CachilDeHeBandofWintunIndiansoftheColusaIndian', 'Cachil DeHe Band of Wintun Indians of the Colusa Indian Community of the Colusa Rancheria, California', 'Cachil DeHe Band of Wintun Indians of the Colusa Indian Community of the Colusa Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 39.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cachil DeHe Band of Wintun Indians of the Colusa Indian Community of the Colusa Rancheria, California', [Definition] = 'Cachil DeHe Band of Wintun Indians of the Colusa Indian Community of the Colusa Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 39.00 WHERE [Code] = 'CachilDeHeBandofWintunIndiansoftheColusaIndian' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CaddoNationofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CaddoNationofOklahoma', 'Caddo Nation of Oklahoma', 'Caddo Nation of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Caddo Nation of Oklahoma', [Definition] = 'Caddo Nation of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 40.00 WHERE [Code] = 'CaddoNationofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CahtoTribeoftheLaytonvilleRancheria') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CahtoTribeoftheLaytonvilleRancheria', 'Cahto Tribe of the Laytonville Rancheria', 'Cahto Tribe of the Laytonville Rancheria is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 41.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cahto Tribe of the Laytonville Rancheria', [Definition] = 'Cahto Tribe of the Laytonville Rancheria is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 41.00 WHERE [Code] = 'CahtoTribeoftheLaytonvilleRancheria' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CahuillaBandofIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CahuillaBandofIndians', 'Cahuilla Band of Indians', 'Cahuilla Band of Indians (previously listed as Cahuilla Band of Mission Indians of the Cahuilla Reservation, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 42.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cahuilla Band of Indians', [Definition] = 'Cahuilla Band of Indians (previously listed as Cahuilla Band of Mission Indians of the Cahuilla Reservation, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 42.00 WHERE [Code] = 'CahuillaBandofIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CaliforniaValleyMiwokTribeCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CaliforniaValleyMiwokTribeCalifornia', 'California Valley Miwok Tribe, California', 'California Valley Miwok Tribe, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 43.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'California Valley Miwok Tribe, California', [Definition] = 'California Valley Miwok Tribe, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 43.00 WHERE [Code] = 'CaliforniaValleyMiwokTribeCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CampoBandofDieguenoMissionIndiansoftheCampoIndian') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CampoBandofDieguenoMissionIndiansoftheCampoIndian', 'Campo Band of Diegueno Mission Indians of the Campo Indian Reservation, California', 'Campo Band of Diegueno Mission Indians of the Campo Indian Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 44.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Campo Band of Diegueno Mission Indians of the Campo Indian Reservation, California', [Definition] = 'Campo Band of Diegueno Mission Indians of the Campo Indian Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 44.00 WHERE [Code] = 'CampoBandofDieguenoMissionIndiansoftheCampoIndian' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CapitanGrandeBandofDieguenoMissionIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CapitanGrandeBandofDieguenoMissionIndians', 'Capitan Grande Band of Diegueno Mission Indians of California', 'Capitan Grande Band of Diegueno Mission Indians of California (Barona Group of Capitan Grande Band of Mission Indians of the Barona Reservation, California; Viejas (Baron Long) Group of Capitan Grande Band of Mission Indians of the Viejas Reservation, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 45.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Capitan Grande Band of Diegueno Mission Indians of California', [Definition] = 'Capitan Grande Band of Diegueno Mission Indians of California (Barona Group of Capitan Grande Band of Mission Indians of the Barona Reservation, California; Viejas (Baron Long) Group of Capitan Grande Band of Mission Indians of the Viejas Reservation, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 45.00 WHERE [Code] = 'CapitanGrandeBandofDieguenoMissionIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CatawbaIndianNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CatawbaIndianNation', 'Catawba Indian Nation', 'Catawba Indian Nation (aka Catawba Tribe of South Carolina) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 46.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Catawba Indian Nation', [Definition] = 'Catawba Indian Nation (aka Catawba Tribe of South Carolina) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 46.00 WHERE [Code] = 'CatawbaIndianNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CayugaNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CayugaNation', 'Cayuga Nation', 'Cayuga Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 47.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cayuga Nation', [Definition] = 'Cayuga Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 47.00 WHERE [Code] = 'CayugaNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CedarvilleRancheriaCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CedarvilleRancheriaCalifornia', 'Cedarville Rancheria, California', 'Cedarville Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 48.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cedarville Rancheria, California', [Definition] = 'Cedarville Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 48.00 WHERE [Code] = 'CedarvilleRancheriaCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CentralCounciloftheTlingitHaidaIndianTribes') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CentralCounciloftheTlingitHaidaIndianTribes', 'Central Council of the Tlingit & Haida Indian Tribes', 'Central Council of the Tlingit & Haida Indian Tribes is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 49.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Central Council of the Tlingit & Haida Indian Tribes', [Definition] = 'Central Council of the Tlingit & Haida Indian Tribes is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 49.00 WHERE [Code] = 'CentralCounciloftheTlingitHaidaIndianTribes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChalkyitsikVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChalkyitsikVillage', 'Chalkyitsik Village', 'Chalkyitsik Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chalkyitsik Village', [Definition] = 'Chalkyitsik Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 50.00 WHERE [Code] = 'ChalkyitsikVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CheeshNaTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CheeshNaTribe', 'Cheesh-Na Tribe', 'Cheesh-Na Tribe (previously listed as Native Village of Chistochina) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 51.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cheesh-Na Tribe', [Definition] = 'Cheesh-Na Tribe (previously listed as Native Village of Chistochina) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 51.00 WHERE [Code] = 'CheeshNaTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChemehueviIndianTribeoftheChemehueviReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChemehueviIndianTribeoftheChemehueviReservation', 'Chemehuevi Indian Tribe of the Chemehuevi Reservation, California', 'Chemehuevi Indian Tribe of the Chemehuevi Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 52.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chemehuevi Indian Tribe of the Chemehuevi Reservation, California', [Definition] = 'Chemehuevi Indian Tribe of the Chemehuevi Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 52.00 WHERE [Code] = 'ChemehueviIndianTribeoftheChemehueviReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CherAeHeightsIndianCommunityoftheTrinidadRancheria') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CherAeHeightsIndianCommunityoftheTrinidadRancheria', 'Cher-Ae Heights Indian Community of the Trinidad Rancheria, California', 'Cher-Ae Heights Indian Community of the Trinidad Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 53.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cher-Ae Heights Indian Community of the Trinidad Rancheria, California', [Definition] = 'Cher-Ae Heights Indian Community of the Trinidad Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 53.00 WHERE [Code] = 'CherAeHeightsIndianCommunityoftheTrinidadRancheria' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CherokeeNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CherokeeNation', 'Cherokee Nation', 'Cherokee Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 54.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cherokee Nation', [Definition] = 'Cherokee Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 54.00 WHERE [Code] = 'CherokeeNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChevakNativeVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChevakNativeVillage', 'Chevak Native Village', 'Chevak Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 55.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chevak Native Village', [Definition] = 'Chevak Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 55.00 WHERE [Code] = 'ChevakNativeVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CheyenneandArapahoTribesOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CheyenneandArapahoTribesOklahoma', 'Cheyenne and Arapaho Tribes, Oklahoma', 'Cheyenne and Arapaho Tribes, Oklahoma (previously listed as Cheyenne-Arapaho Tribes of Oklahoma) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 56.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cheyenne and Arapaho Tribes, Oklahoma', [Definition] = 'Cheyenne and Arapaho Tribes, Oklahoma (previously listed as Cheyenne-Arapaho Tribes of Oklahoma) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 56.00 WHERE [Code] = 'CheyenneandArapahoTribesOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CheyenneRiverSiouxTribeoftheCheyenneRiver') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CheyenneRiverSiouxTribeoftheCheyenneRiver', 'Cheyenne River Sioux Tribe of the Cheyenne River Reservation, South Dakota', 'Cheyenne River Sioux Tribe of the Cheyenne River Reservation, South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 57.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cheyenne River Sioux Tribe of the Cheyenne River Reservation, South Dakota', [Definition] = 'Cheyenne River Sioux Tribe of the Cheyenne River Reservation, South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 57.00 WHERE [Code] = 'CheyenneRiverSiouxTribeoftheCheyenneRiver' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChickahominyIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChickahominyIndianTribe', 'Chickahominy Indian Tribe', 'Chickahominy Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 58.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chickahominy Indian Tribe', [Definition] = 'Chickahominy Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 58.00 WHERE [Code] = 'ChickahominyIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChickahominyIndianTribe—EasternDivision') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChickahominyIndianTribe—EasternDivision', 'Chickahominy Indian Tribe—Eastern Division', 'Chickahominy Indian Tribe—Eastern Division is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 59.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chickahominy Indian Tribe—Eastern Division', [Definition] = 'Chickahominy Indian Tribe—Eastern Division is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 59.00 WHERE [Code] = 'ChickahominyIndianTribe—EasternDivision' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChickaloonNativeVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChickaloonNativeVillage', 'Chickaloon Native Village', 'Chickaloon Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chickaloon Native Village', [Definition] = 'Chickaloon Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 60.00 WHERE [Code] = 'ChickaloonNativeVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChickenRanchRancheriaofMeWukIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChickenRanchRancheriaofMeWukIndiansofCalifornia', 'Chicken Ranch Rancheria of Me-Wuk Indians of California', 'Chicken Ranch Rancheria of Me-Wuk Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 61.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chicken Ranch Rancheria of Me-Wuk Indians of California', [Definition] = 'Chicken Ranch Rancheria of Me-Wuk Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 61.00 WHERE [Code] = 'ChickenRanchRancheriaofMeWukIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChignikBayTribalCouncil') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChignikBayTribalCouncil', 'Chignik Bay Tribal Council', 'Chignik Bay Tribal Council (previously listed as Native Village of Chignik) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 62.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chignik Bay Tribal Council', [Definition] = 'Chignik Bay Tribal Council (previously listed as Native Village of Chignik) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 62.00 WHERE [Code] = 'ChignikBayTribalCouncil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChignikLakeVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChignikLakeVillage', 'Chignik Lake Village', 'Chignik Lake Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 63.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chignik Lake Village', [Definition] = 'Chignik Lake Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 63.00 WHERE [Code] = 'ChignikLakeVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChilkatIndianVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChilkatIndianVillage', 'Chilkat Indian Village', 'Chilkat Indian Village (Klukwan) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 64.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chilkat Indian Village', [Definition] = 'Chilkat Indian Village (Klukwan) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 64.00 WHERE [Code] = 'ChilkatIndianVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChilkootIndianAssociation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChilkootIndianAssociation', 'Chilkoot Indian Association', 'Chilkoot Indian Association (Haines) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 65.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chilkoot Indian Association', [Definition] = 'Chilkoot Indian Association (Haines) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 65.00 WHERE [Code] = 'ChilkootIndianAssociation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChinikEskimoCommunity') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChinikEskimoCommunity', 'Chinik Eskimo Community', 'Chinik Eskimo Community (Golovin) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 66.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chinik Eskimo Community', [Definition] = 'Chinik Eskimo Community (Golovin) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 66.00 WHERE [Code] = 'ChinikEskimoCommunity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChippewaCreeIndiansoftheRockyBoysReservationMonta') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChippewaCreeIndiansoftheRockyBoysReservationMonta', 'Chippewa Cree Indians of the Rocky Boy''s Reservation, Montana', 'Chippewa Cree Indians of the Rocky Boy''s Reservation, Montana (previously listed as Chippewa-Cree Indians of the Rocky Boy''s Reservation, Montana) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 67.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chippewa Cree Indians of the Rocky Boy''s Reservation, Montana', [Definition] = 'Chippewa Cree Indians of the Rocky Boy''s Reservation, Montana (previously listed as Chippewa-Cree Indians of the Rocky Boy''s Reservation, Montana) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 67.00 WHERE [Code] = 'ChippewaCreeIndiansoftheRockyBoysReservationMonta' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChitimachaTribeofLouisiana') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChitimachaTribeofLouisiana', 'Chitimacha Tribe of Louisiana', 'Chitimacha Tribe of Louisiana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 68.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chitimacha Tribe of Louisiana', [Definition] = 'Chitimacha Tribe of Louisiana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 68.00 WHERE [Code] = 'ChitimachaTribeofLouisiana' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ChuloonawickNativeVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ChuloonawickNativeVillage', 'Chuloonawick Native Village', 'Chuloonawick Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 69.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Chuloonawick Native Village', [Definition] = 'Chuloonawick Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 69.00 WHERE [Code] = 'ChuloonawickNativeVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CircleNativeCommunity') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CircleNativeCommunity', 'Circle Native Community', 'Circle Native Community is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Circle Native Community', [Definition] = 'Circle Native Community is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 70.00 WHERE [Code] = 'CircleNativeCommunity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CitizenPotawatomiNationOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CitizenPotawatomiNationOklahoma', 'Citizen Potawatomi Nation, Oklahoma', 'Citizen Potawatomi Nation, Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 71.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Citizen Potawatomi Nation, Oklahoma', [Definition] = 'Citizen Potawatomi Nation, Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 71.00 WHERE [Code] = 'CitizenPotawatomiNationOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CloverdaleRancheriaofPomoIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CloverdaleRancheriaofPomoIndiansofCalifornia', 'Cloverdale Rancheria of Pomo Indians of California', 'Cloverdale Rancheria of Pomo Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 72.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cloverdale Rancheria of Pomo Indians of California', [Definition] = 'Cloverdale Rancheria of Pomo Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 72.00 WHERE [Code] = 'CloverdaleRancheriaofPomoIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CocopahTribeofArizona') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CocopahTribeofArizona', 'Cocopah Tribe of Arizona', 'Cocopah Tribe of Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 73.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cocopah Tribe of Arizona', [Definition] = 'Cocopah Tribe of Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 73.00 WHERE [Code] = 'CocopahTribeofArizona' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CoeurDAleneTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CoeurDAleneTribe', 'Coeur D''Alene Tribe', 'Coeur D''Alene Tribe (previously listed as Coeur D''Alene Tribe of the Coeur D''Alene Reservation, Idaho) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 74.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Coeur D''Alene Tribe', [Definition] = 'Coeur D''Alene Tribe (previously listed as Coeur D''Alene Tribe of the Coeur D''Alene Reservation, Idaho) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 74.00 WHERE [Code] = 'CoeurDAleneTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ColdSpringsRancheriaofMonoIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ColdSpringsRancheriaofMonoIndiansofCalifornia', 'Cold Springs Rancheria of Mono Indians of California', 'Cold Springs Rancheria of Mono Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 75.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cold Springs Rancheria of Mono Indians of California', [Definition] = 'Cold Springs Rancheria of Mono Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 75.00 WHERE [Code] = 'ColdSpringsRancheriaofMonoIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ColoradoRiverIndianTribesoftheColoradoRiverIndian') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ColoradoRiverIndianTribesoftheColoradoRiverIndian', 'Colorado River Indian Tribes of the Colorado River Indian Reservation, Arizona and California', 'Colorado River Indian Tribes of the Colorado River Indian Reservation, Arizona and California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 76.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Colorado River Indian Tribes of the Colorado River Indian Reservation, Arizona and California', [Definition] = 'Colorado River Indian Tribes of the Colorado River Indian Reservation, Arizona and California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 76.00 WHERE [Code] = 'ColoradoRiverIndianTribesoftheColoradoRiverIndian' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ComancheNationOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ComancheNationOklahoma', 'Comanche Nation, Oklahoma', 'Comanche Nation, Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 77.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Comanche Nation, Oklahoma', [Definition] = 'Comanche Nation, Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 77.00 WHERE [Code] = 'ComancheNationOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ConfederatedSalishandKootenaiTribesoftheFlatheadRe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ConfederatedSalishandKootenaiTribesoftheFlatheadRe', 'Confederated Salish and Kootenai Tribes of the Flathead Reservation', 'Confederated Salish and Kootenai Tribes of the Flathead Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 78.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Confederated Salish and Kootenai Tribes of the Flathead Reservation', [Definition] = 'Confederated Salish and Kootenai Tribes of the Flathead Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 78.00 WHERE [Code] = 'ConfederatedSalishandKootenaiTribesoftheFlatheadRe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ConfederatedTribesandBandsoftheYakamaNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ConfederatedTribesandBandsoftheYakamaNation', 'Confederated Tribes and Bands of the Yakama Nation', 'Confederated Tribes and Bands of the Yakama Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 79.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Confederated Tribes and Bands of the Yakama Nation', [Definition] = 'Confederated Tribes and Bands of the Yakama Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 79.00 WHERE [Code] = 'ConfederatedTribesandBandsoftheYakamaNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ConfederatedTribesofSiletzIndiansofOregon') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ConfederatedTribesofSiletzIndiansofOregon', 'Confederated Tribes of Siletz Indians of Oregon', 'Confederated Tribes of Siletz Indians of Oregon (previously listed as Confederated Tribes of the Siletz Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Confederated Tribes of Siletz Indians of Oregon', [Definition] = 'Confederated Tribes of Siletz Indians of Oregon (previously listed as Confederated Tribes of the Siletz Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 80.00 WHERE [Code] = 'ConfederatedTribesofSiletzIndiansofOregon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ConfederatedTribesoftheChehalisReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ConfederatedTribesoftheChehalisReservation', 'Confederated Tribes of the Chehalis Reservation', 'Confederated Tribes of the Chehalis Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 81.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Confederated Tribes of the Chehalis Reservation', [Definition] = 'Confederated Tribes of the Chehalis Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 81.00 WHERE [Code] = 'ConfederatedTribesoftheChehalisReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ConfederatedTribesoftheColvilleReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ConfederatedTribesoftheColvilleReservation', 'Confederated Tribes of the Colville Reservation', 'Confederated Tribes of the Colville Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 82.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Confederated Tribes of the Colville Reservation', [Definition] = 'Confederated Tribes of the Colville Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 82.00 WHERE [Code] = 'ConfederatedTribesoftheColvilleReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ConfederatedTribesoftheCoosLowerUmpquaandSiuslaw') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ConfederatedTribesoftheCoosLowerUmpquaandSiuslaw', 'Confederated Tribes of the Coos, Lower Umpqua and Siuslaw Indians', 'Confederated Tribes of the Coos, Lower Umpqua and Siuslaw Indians is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 83.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Confederated Tribes of the Coos, Lower Umpqua and Siuslaw Indians', [Definition] = 'Confederated Tribes of the Coos, Lower Umpqua and Siuslaw Indians is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 83.00 WHERE [Code] = 'ConfederatedTribesoftheCoosLowerUmpquaandSiuslaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ConfederatedTribesoftheGoshuteReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ConfederatedTribesoftheGoshuteReservation', 'Confederated Tribes of the Goshute Reservation, Nevada and Utah', 'Confederated Tribes of the Goshute Reservation, Nevada and Utah is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 84.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Confederated Tribes of the Goshute Reservation, Nevada and Utah', [Definition] = 'Confederated Tribes of the Goshute Reservation, Nevada and Utah is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 84.00 WHERE [Code] = 'ConfederatedTribesoftheGoshuteReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ConfederatedTribesoftheGrandRondeCommunityofOregon') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ConfederatedTribesoftheGrandRondeCommunityofOregon', 'Confederated Tribes of the Grand Ronde Community of Oregon', 'Confederated Tribes of the Grand Ronde Community of Oregon is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 85.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Confederated Tribes of the Grand Ronde Community of Oregon', [Definition] = 'Confederated Tribes of the Grand Ronde Community of Oregon is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 85.00 WHERE [Code] = 'ConfederatedTribesoftheGrandRondeCommunityofOregon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ConfederatedTribesoftheUmatillaIndianReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ConfederatedTribesoftheUmatillaIndianReservation', 'Confederated Tribes of the Umatilla Indian Reservation', 'Confederated Tribes of the Umatilla Indian Reservation (previously listed as Confederated Tribes of the Umatilla Reservation, Oregon) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 86.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Confederated Tribes of the Umatilla Indian Reservation', [Definition] = 'Confederated Tribes of the Umatilla Indian Reservation (previously listed as Confederated Tribes of the Umatilla Reservation, Oregon) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 86.00 WHERE [Code] = 'ConfederatedTribesoftheUmatillaIndianReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ConfederatedTribesoftheWarmSpringsReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ConfederatedTribesoftheWarmSpringsReservation', 'Confederated Tribes of the Warm Springs Reservation of Oregon', 'Confederated Tribes of the Warm Springs Reservation of Oregon is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 87.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Confederated Tribes of the Warm Springs Reservation of Oregon', [Definition] = 'Confederated Tribes of the Warm Springs Reservation of Oregon is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 87.00 WHERE [Code] = 'ConfederatedTribesoftheWarmSpringsReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CoquilleIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CoquilleIndianTribe', 'Coquille Indian Tribe', 'Coquille Indian Tribe (previously listed as Coquille Tribe of Oregon) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 88.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Coquille Indian Tribe', [Definition] = 'Coquille Indian Tribe (previously listed as Coquille Tribe of Oregon) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 88.00 WHERE [Code] = 'CoquilleIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CoushattaTribeofLouisiana') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CoushattaTribeofLouisiana', 'Coushatta Tribe of Louisiana', 'Coushatta Tribe of Louisiana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 89.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Coushatta Tribe of Louisiana', [Definition] = 'Coushatta Tribe of Louisiana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 89.00 WHERE [Code] = 'CoushattaTribeofLouisiana' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CowCreekBandofUmpquaTribeofIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CowCreekBandofUmpquaTribeofIndians', 'Cow Creek Band of Umpqua Tribe of Indians', 'Cow Creek Band of Umpqua Tribe of Indians (previously listed as Cow Creek Band of Umpqua Indians of Oregon) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 90.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cow Creek Band of Umpqua Tribe of Indians', [Definition] = 'Cow Creek Band of Umpqua Tribe of Indians (previously listed as Cow Creek Band of Umpqua Indians of Oregon) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 90.00 WHERE [Code] = 'CowCreekBandofUmpquaTribeofIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CowlitzIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CowlitzIndianTribe', 'Cowlitz Indian Tribe', 'Cowlitz Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 91.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Cowlitz Indian Tribe', [Definition] = 'Cowlitz Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 91.00 WHERE [Code] = 'CowlitzIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CoyoteValleyBandofPomoIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CoyoteValleyBandofPomoIndiansofCalifornia', 'Coyote Valley Band of Pomo Indians of California', 'Coyote Valley Band of Pomo Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 92.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Coyote Valley Band of Pomo Indians of California', [Definition] = 'Coyote Valley Band of Pomo Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 92.00 WHERE [Code] = 'CoyoteValleyBandofPomoIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CraigTribalAssociation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CraigTribalAssociation', 'Craig Tribal Association', 'Craig Tribal Association (previously listed as Craig Community Association) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 93.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Craig Tribal Association', [Definition] = 'Craig Tribal Association (previously listed as Craig Community Association) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 93.00 WHERE [Code] = 'CraigTribalAssociation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CrowCreekSiouxTribeoftheCrowCreekReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CrowCreekSiouxTribeoftheCrowCreekReservation', 'Crow Creek Sioux Tribe of the Crow Creek Reservation, South Dakota', 'Crow Creek Sioux Tribe of the Crow Creek Reservation, South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 94.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Crow Creek Sioux Tribe of the Crow Creek Reservation, South Dakota', [Definition] = 'Crow Creek Sioux Tribe of the Crow Creek Reservation, South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 94.00 WHERE [Code] = 'CrowCreekSiouxTribeoftheCrowCreekReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CrowTribeofMontana') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CrowTribeofMontana', 'Crow Tribe of Montana', 'Crow Tribe of Montana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 95.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Crow Tribe of Montana', [Definition] = 'Crow Tribe of Montana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 95.00 WHERE [Code] = 'CrowTribeofMontana' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'CuryungTribalCouncil') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CuryungTribalCouncil', 'Curyung Tribal Council', 'Curyung Tribal Council is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 96.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Curyung Tribal Council', [Definition] = 'Curyung Tribal Council is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 96.00 WHERE [Code] = 'CuryungTribalCouncil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'DelawareNationOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DelawareNationOklahoma', 'Delaware Nation, Oklahoma', 'Delaware Nation, Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 97.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Delaware Nation, Oklahoma', [Definition] = 'Delaware Nation, Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 97.00 WHERE [Code] = 'DelawareNationOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'DelawareTribeofIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DelawareTribeofIndians', 'Delaware Tribe of Indians', 'Delaware Tribe of Indians is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 98.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Delaware Tribe of Indians', [Definition] = 'Delaware Tribe of Indians is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 98.00 WHERE [Code] = 'DelawareTribeofIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'DouglasIndianAssociation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DouglasIndianAssociation', 'Douglas Indian Association', 'Douglas Indian Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Douglas Indian Association', [Definition] = 'Douglas Indian Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 99.00 WHERE [Code] = 'DouglasIndianAssociation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'DryCreekRancheriaBandofPomoIndiansCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DryCreekRancheriaBandofPomoIndiansCalifornia', 'Dry Creek Rancheria Band of Pomo Indians, California', 'Dry Creek Rancheria Band of Pomo Indians, California (previously listed as Dry Creek Rancheria of Pomo Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 100.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Dry Creek Rancheria Band of Pomo Indians, California', [Definition] = 'Dry Creek Rancheria Band of Pomo Indians, California (previously listed as Dry Creek Rancheria of Pomo Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 100.00 WHERE [Code] = 'DryCreekRancheriaBandofPomoIndiansCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'DuckwaterShoshoneTribeoftheDuckwaterReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('DuckwaterShoshoneTribeoftheDuckwaterReservation', 'Duckwater Shoshone Tribe of the Duckwater Reservation, Nevada', 'Duckwater Shoshone Tribe of the Duckwater Reservation, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 101.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Duckwater Shoshone Tribe of the Duckwater Reservation, Nevada', [Definition] = 'Duckwater Shoshone Tribe of the Duckwater Reservation, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 101.00 WHERE [Code] = 'DuckwaterShoshoneTribeoftheDuckwaterReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'EasternBandofCherokeeIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EasternBandofCherokeeIndians', 'Eastern Band of Cherokee Indians', 'Eastern Band of Cherokee Indians is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 102.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Eastern Band of Cherokee Indians', [Definition] = 'Eastern Band of Cherokee Indians is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 102.00 WHERE [Code] = 'EasternBandofCherokeeIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'EasternShawneeTribeofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EasternShawneeTribeofOklahoma', 'Eastern Shawnee Tribe of Oklahoma', 'Eastern Shawnee Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 103.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Eastern Shawnee Tribe of Oklahoma', [Definition] = 'Eastern Shawnee Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 103.00 WHERE [Code] = 'EasternShawneeTribeofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'EasternShoshoneTribeoftheWindRiverReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EasternShoshoneTribeoftheWindRiverReservation', 'Eastern Shoshone Tribe of the Wind River Reservation, Wyoming', 'Eastern Shoshone Tribe of the Wind River Reservation, Wyoming (previously listed as Shoshone Tribe of the Wind River Reservation, Wyoming) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 104.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Eastern Shoshone Tribe of the Wind River Reservation, Wyoming', [Definition] = 'Eastern Shoshone Tribe of the Wind River Reservation, Wyoming (previously listed as Shoshone Tribe of the Wind River Reservation, Wyoming) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 104.00 WHERE [Code] = 'EasternShoshoneTribeoftheWindRiverReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'EgegikVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EgegikVillage', 'Egegik Village', 'Egegik Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 105.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Egegik Village', [Definition] = 'Egegik Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 105.00 WHERE [Code] = 'EgegikVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'EklutnaNativeVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EklutnaNativeVillage', 'Eklutna Native Village', 'Eklutna Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 106.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Eklutna Native Village', [Definition] = 'Eklutna Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 106.00 WHERE [Code] = 'EklutnaNativeVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ElemIndianColonyofPomoIndiansoftheSulphurBank') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ElemIndianColonyofPomoIndiansoftheSulphurBank', 'Elem Indian Colony of Pomo Indians of the Sulphur Bank Rancheria, California', 'Elem Indian Colony of Pomo Indians of the Sulphur Bank Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 107.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Elem Indian Colony of Pomo Indians of the Sulphur Bank Rancheria, California', [Definition] = 'Elem Indian Colony of Pomo Indians of the Sulphur Bank Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 107.00 WHERE [Code] = 'ElemIndianColonyofPomoIndiansoftheSulphurBank' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ElkValleyRancheriaCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ElkValleyRancheriaCalifornia', 'Elk Valley Rancheria, California', 'Elk Valley Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 108.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Elk Valley Rancheria, California', [Definition] = 'Elk Valley Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 108.00 WHERE [Code] = 'ElkValleyRancheriaCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ElyShoshoneTribeofNevada') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ElyShoshoneTribeofNevada', 'Ely Shoshone Tribe of Nevada', 'Ely Shoshone Tribe of Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 109.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ely Shoshone Tribe of Nevada', [Definition] = 'Ely Shoshone Tribe of Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 109.00 WHERE [Code] = 'ElyShoshoneTribeofNevada' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'EmmonakVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EmmonakVillage', 'Emmonak Village', 'Emmonak Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 110.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Emmonak Village', [Definition] = 'Emmonak Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 110.00 WHERE [Code] = 'EmmonakVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'EnterpriseRancheriaofMaiduIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EnterpriseRancheriaofMaiduIndiansofCalifornia', 'Enterprise Rancheria of Maidu Indians of California', 'Enterprise Rancheria of Maidu Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 111.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Enterprise Rancheria of Maidu Indians of California', [Definition] = 'Enterprise Rancheria of Maidu Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 111.00 WHERE [Code] = 'EnterpriseRancheriaofMaiduIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'EvansvilleVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EvansvilleVillage', 'Evansville Village', 'Evansville Village (aka Bettles Field) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 112.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Evansville Village', [Definition] = 'Evansville Village (aka Bettles Field) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 112.00 WHERE [Code] = 'EvansvilleVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'EwiiaapaaypBandofKumeyaayIndiansCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('EwiiaapaaypBandofKumeyaayIndiansCalifornia', 'Ewiiaapaayp Band of Kumeyaay Indians, California', 'Ewiiaapaayp Band of Kumeyaay Indians, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 113.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ewiiaapaayp Band of Kumeyaay Indians, California', [Definition] = 'Ewiiaapaayp Band of Kumeyaay Indians, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 113.00 WHERE [Code] = 'EwiiaapaaypBandofKumeyaayIndiansCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'FederatedIndiansofGratonRancheriaCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FederatedIndiansofGratonRancheriaCalifornia', 'Federated Indians of Graton Rancheria, California', 'Federated Indians of Graton Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 114.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Federated Indians of Graton Rancheria, California', [Definition] = 'Federated Indians of Graton Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 114.00 WHERE [Code] = 'FederatedIndiansofGratonRancheriaCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'FlandreauSanteeSiouxTribeofSouthDakota') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FlandreauSanteeSiouxTribeofSouthDakota', 'Flandreau Santee Sioux Tribe of South Dakota', 'Flandreau Santee Sioux Tribe of South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 115.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Flandreau Santee Sioux Tribe of South Dakota', [Definition] = 'Flandreau Santee Sioux Tribe of South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 115.00 WHERE [Code] = 'FlandreauSanteeSiouxTribeofSouthDakota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ForestCountyPotawatomiCommunityWisconsin') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ForestCountyPotawatomiCommunityWisconsin', 'Forest County Potawatomi Community, Wisconsin', 'Forest County Potawatomi Community, Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 116.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Forest County Potawatomi Community, Wisconsin', [Definition] = 'Forest County Potawatomi Community, Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 116.00 WHERE [Code] = 'ForestCountyPotawatomiCommunityWisconsin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'FortBelknapIndianCommunityoftheFortBelknap') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FortBelknapIndianCommunityoftheFortBelknap', 'Fort Belknap Indian Community of the Fort Belknap Reservation of Montana', 'Fort Belknap Indian Community of the Fort Belknap Reservation of Montana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 117.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Fort Belknap Indian Community of the Fort Belknap Reservation of Montana', [Definition] = 'Fort Belknap Indian Community of the Fort Belknap Reservation of Montana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 117.00 WHERE [Code] = 'FortBelknapIndianCommunityoftheFortBelknap' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'FortBidwellIndianCommunityoftheFortBidwell') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FortBidwellIndianCommunityoftheFortBidwell', 'Fort Bidwell Indian Community of the Fort Bidwell Reservation of California', 'Fort Bidwell Indian Community of the Fort Bidwell Reservation of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 118.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Fort Bidwell Indian Community of the Fort Bidwell Reservation of California', [Definition] = 'Fort Bidwell Indian Community of the Fort Bidwell Reservation of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 118.00 WHERE [Code] = 'FortBidwellIndianCommunityoftheFortBidwell' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'FortIndependenceIndianCommunityofPaiuteIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FortIndependenceIndianCommunityofPaiuteIndians', 'Fort Independence Indian Community of Paiute Indians of the Fort Independence Reservation, California', 'Fort Independence Indian Community of Paiute Indians of the Fort Independence Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 119.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Fort Independence Indian Community of Paiute Indians of the Fort Independence Reservation, California', [Definition] = 'Fort Independence Indian Community of Paiute Indians of the Fort Independence Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 119.00 WHERE [Code] = 'FortIndependenceIndianCommunityofPaiuteIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'FortMcDermittPaiuteandShoshoneTribesoftheFort') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FortMcDermittPaiuteandShoshoneTribesoftheFort', 'Fort McDermitt Paiute and Shoshone Tribes of the Fort McDermitt Indian Reservation, Nevada and Oregon', 'Fort McDermitt Paiute and Shoshone Tribes of the Fort McDermitt Indian Reservation, Nevada and Oregon is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 120.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Fort McDermitt Paiute and Shoshone Tribes of the Fort McDermitt Indian Reservation, Nevada and Oregon', [Definition] = 'Fort McDermitt Paiute and Shoshone Tribes of the Fort McDermitt Indian Reservation, Nevada and Oregon is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 120.00 WHERE [Code] = 'FortMcDermittPaiuteandShoshoneTribesoftheFort' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'FortMcDowellYavapaiNationArizona') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FortMcDowellYavapaiNationArizona', 'Fort McDowell Yavapai Nation, Arizona', 'Fort McDowell Yavapai Nation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 121.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Fort McDowell Yavapai Nation, Arizona', [Definition] = 'Fort McDowell Yavapai Nation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 121.00 WHERE [Code] = 'FortMcDowellYavapaiNationArizona' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'FortMojaveIndianTribeofArizonaCaliforniaNevada') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FortMojaveIndianTribeofArizonaCaliforniaNevada', 'Fort Mojave Indian Tribe of Arizona, California & Nevada', 'Fort Mojave Indian Tribe of Arizona, California & Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 122.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Fort Mojave Indian Tribe of Arizona, California & Nevada', [Definition] = 'Fort Mojave Indian Tribe of Arizona, California & Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 122.00 WHERE [Code] = 'FortMojaveIndianTribeofArizonaCaliforniaNevada' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'FortSillApacheTribeofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FortSillApacheTribeofOklahoma', 'Fort Sill Apache Tribe of Oklahoma', 'Fort Sill Apache Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 123.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Fort Sill Apache Tribe of Oklahoma', [Definition] = 'Fort Sill Apache Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 123.00 WHERE [Code] = 'FortSillApacheTribeofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'GalenaVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GalenaVillage', 'Galena Village', 'Galena Village (aka Louden Village) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 124.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Galena Village', [Definition] = 'Galena Village (aka Louden Village) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 124.00 WHERE [Code] = 'GalenaVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'GilaRiverIndianCommunityoftheGilaRiverIndian') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GilaRiverIndianCommunityoftheGilaRiverIndian', 'Gila River Indian Community of the Gila River Indian Reservation, Arizona', 'Gila River Indian Community of the Gila River Indian Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 125.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Gila River Indian Community of the Gila River Indian Reservation, Arizona', [Definition] = 'Gila River Indian Community of the Gila River Indian Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 125.00 WHERE [Code] = 'GilaRiverIndianCommunityoftheGilaRiverIndian' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'GrandTraverseBandofOttawaandChippewaIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GrandTraverseBandofOttawaandChippewaIndians', 'Grand Traverse Band of Ottawa and Chippewa Indians, Michigan', 'Grand Traverse Band of Ottawa and Chippewa Indians, Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 126.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Grand Traverse Band of Ottawa and Chippewa Indians, Michigan', [Definition] = 'Grand Traverse Band of Ottawa and Chippewa Indians, Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 126.00 WHERE [Code] = 'GrandTraverseBandofOttawaandChippewaIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'GreenvilleRancheria') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GreenvilleRancheria', 'Greenville Rancheria', 'Greenville Rancheria (previously listed as Greenville Rancheria of Maidu Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 127.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Greenville Rancheria', [Definition] = 'Greenville Rancheria (previously listed as Greenville Rancheria of Maidu Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 127.00 WHERE [Code] = 'GreenvilleRancheria' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'GrindstoneIndianRancheriaofWintunWailakiIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GrindstoneIndianRancheriaofWintunWailakiIndians', 'Grindstone Indian Rancheria of Wintun-Wailaki Indians of California', 'Grindstone Indian Rancheria of Wintun-Wailaki Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 128.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Grindstone Indian Rancheria of Wintun-Wailaki Indians of California', [Definition] = 'Grindstone Indian Rancheria of Wintun-Wailaki Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 128.00 WHERE [Code] = 'GrindstoneIndianRancheriaofWintunWailakiIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'GuidivilleRancheriaofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GuidivilleRancheriaofCalifornia', 'Guidiville Rancheria of California', 'Guidiville Rancheria of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 129.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Guidiville Rancheria of California', [Definition] = 'Guidiville Rancheria of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 129.00 WHERE [Code] = 'GuidivilleRancheriaofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'GulkanaVillageCouncil') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('GulkanaVillageCouncil', 'Gulkana Village Council', 'Gulkana Village Council (previously listed as Gulkana Village) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 130.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Gulkana Village Council', [Definition] = 'Gulkana Village Council (previously listed as Gulkana Village) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 130.00 WHERE [Code] = 'GulkanaVillageCouncil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HabematolelPomoofUpperLakeCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HabematolelPomoofUpperLakeCalifornia', 'Habematolel Pomo of Upper Lake, California', 'Habematolel Pomo of Upper Lake, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 131.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Habematolel Pomo of Upper Lake, California', [Definition] = 'Habematolel Pomo of Upper Lake, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 131.00 WHERE [Code] = 'HabematolelPomoofUpperLakeCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HannahvilleIndianCommunityMichigan') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HannahvilleIndianCommunityMichigan', 'Hannahville Indian Community, Michigan', 'Hannahville Indian Community, Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 132.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Hannahville Indian Community, Michigan', [Definition] = 'Hannahville Indian Community, Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 132.00 WHERE [Code] = 'HannahvilleIndianCommunityMichigan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HavasupaiTribeoftheHavasupaiReservationArizona') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HavasupaiTribeoftheHavasupaiReservationArizona', 'Havasupai Tribe of the Havasupai Reservation, Arizona', 'Havasupai Tribe of the Havasupai Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 133.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Havasupai Tribe of the Havasupai Reservation, Arizona', [Definition] = 'Havasupai Tribe of the Havasupai Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 133.00 WHERE [Code] = 'HavasupaiTribeoftheHavasupaiReservationArizona' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HealyLakeVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HealyLakeVillage', 'Healy Lake Village', 'Healy Lake Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 134.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Healy Lake Village', [Definition] = 'Healy Lake Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 134.00 WHERE [Code] = 'HealyLakeVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HoChunkNationofWisconsin') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HoChunkNationofWisconsin', 'Ho-Chunk Nation of Wisconsin', 'Ho-Chunk Nation of Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 135.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ho-Chunk Nation of Wisconsin', [Definition] = 'Ho-Chunk Nation of Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 135.00 WHERE [Code] = 'HoChunkNationofWisconsin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HohIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HohIndianTribe', 'Hoh Indian Tribe', 'Hoh Indian Tribe (previously listed as Hoh Indian Tribe of the Hoh Indian Reservation, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 136.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Hoh Indian Tribe', [Definition] = 'Hoh Indian Tribe (previously listed as Hoh Indian Tribe of the Hoh Indian Reservation, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 136.00 WHERE [Code] = 'HohIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HolyCrossTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HolyCrossTribe', 'Holy Cross Tribe', 'Holy Cross Tribe (previously listed as Holy Cross Village) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 137.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Holy Cross Tribe', [Definition] = 'Holy Cross Tribe (previously listed as Holy Cross Village) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 137.00 WHERE [Code] = 'HolyCrossTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HoonahIndianAssociation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HoonahIndianAssociation', 'Hoonah Indian Association', 'Hoonah Indian Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 138.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Hoonah Indian Association', [Definition] = 'Hoonah Indian Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 138.00 WHERE [Code] = 'HoonahIndianAssociation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HoopaValleyTribeCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HoopaValleyTribeCalifornia', 'Hoopa Valley Tribe, California', 'Hoopa Valley Tribe, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 139.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Hoopa Valley Tribe, California', [Definition] = 'Hoopa Valley Tribe, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 139.00 WHERE [Code] = 'HoopaValleyTribeCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HopiTribeofArizona') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HopiTribeofArizona', 'Hopi Tribe of Arizona', 'Hopi Tribe of Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 140.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Hopi Tribe of Arizona', [Definition] = 'Hopi Tribe of Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 140.00 WHERE [Code] = 'HopiTribeofArizona' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HoplandBandofPomoIndiansCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HoplandBandofPomoIndiansCalifornia', 'Hopland Band of Pomo Indians, California', 'Hopland Band of Pomo Indians, California (previously listed as Hopland Band of Pomo Indians of the Hopland Rancheria, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 141.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Hopland Band of Pomo Indians, California', [Definition] = 'Hopland Band of Pomo Indians, California (previously listed as Hopland Band of Pomo Indians of the Hopland Rancheria, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 141.00 WHERE [Code] = 'HoplandBandofPomoIndiansCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HoultonBandofMaliseetIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HoultonBandofMaliseetIndians', 'Houlton Band of Maliseet Indians', 'Houlton Band of Maliseet Indians is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 142.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Houlton Band of Maliseet Indians', [Definition] = 'Houlton Band of Maliseet Indians is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 142.00 WHERE [Code] = 'HoultonBandofMaliseetIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HualapaiIndianTribeoftheHualapaiIndianReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HualapaiIndianTribeoftheHualapaiIndianReservation', 'Hualapai Indian Tribe of the Hualapai Indian Reservation, Arizona', 'Hualapai Indian Tribe of the Hualapai Indian Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 143.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Hualapai Indian Tribe of the Hualapai Indian Reservation, Arizona', [Definition] = 'Hualapai Indian Tribe of the Hualapai Indian Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 143.00 WHERE [Code] = 'HualapaiIndianTribeoftheHualapaiIndianReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HughesVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HughesVillage', 'Hughes Village', 'Hughes Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 144.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Hughes Village', [Definition] = 'Hughes Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 144.00 WHERE [Code] = 'HughesVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HusliaVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HusliaVillage', 'Huslia Village', 'Huslia Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 145.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Huslia Village', [Definition] = 'Huslia Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 145.00 WHERE [Code] = 'HusliaVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'HydaburgCooperativeAssociation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('HydaburgCooperativeAssociation', 'Hydaburg Cooperative Association', 'Hydaburg Cooperative Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 146.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Hydaburg Cooperative Association', [Definition] = 'Hydaburg Cooperative Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 146.00 WHERE [Code] = 'HydaburgCooperativeAssociation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'IgiugigVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IgiugigVillage', 'Igiugig Village', 'Igiugig Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 147.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Igiugig Village', [Definition] = 'Igiugig Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 147.00 WHERE [Code] = 'IgiugigVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'IipayNationofSantaYsabelCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IipayNationofSantaYsabelCalifornia', 'Iipay Nation of Santa Ysabel, California', 'Iipay Nation of Santa Ysabel, California (previously listed as Santa Ysabel Band of Diegueno Mission Indians of the Santa Ysabel Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 148.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Iipay Nation of Santa Ysabel, California', [Definition] = 'Iipay Nation of Santa Ysabel, California (previously listed as Santa Ysabel Band of Diegueno Mission Indians of the Santa Ysabel Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 148.00 WHERE [Code] = 'IipayNationofSantaYsabelCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'InajaBandofDieguenoMissionIndiansoftheInaja') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InajaBandofDieguenoMissionIndiansoftheInaja', 'Inaja Band of Diegueno Mission Indians of the Inaja and Cosmit Reservation, California', 'Inaja Band of Diegueno Mission Indians of the Inaja and Cosmit Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 149.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Inaja Band of Diegueno Mission Indians of the Inaja and Cosmit Reservation, California', [Definition] = 'Inaja Band of Diegueno Mission Indians of the Inaja and Cosmit Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 149.00 WHERE [Code] = 'InajaBandofDieguenoMissionIndiansoftheInaja' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'InupiatCommunityoftheArcticSlope') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InupiatCommunityoftheArcticSlope', 'Inupiat Community of the Arctic Slope', 'Inupiat Community of the Arctic Slope is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 150.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Inupiat Community of the Arctic Slope', [Definition] = 'Inupiat Community of the Arctic Slope is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 150.00 WHERE [Code] = 'InupiatCommunityoftheArcticSlope' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'IoneBandofMiwokIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IoneBandofMiwokIndiansofCalifornia', 'Ione Band of Miwok Indians of California', 'Ione Band of Miwok Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 151.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ione Band of Miwok Indians of California', [Definition] = 'Ione Band of Miwok Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 151.00 WHERE [Code] = 'IoneBandofMiwokIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'IowaTribeofKansasandNebraska') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IowaTribeofKansasandNebraska', 'Iowa Tribe of Kansas and Nebraska', 'Iowa Tribe of Kansas and Nebraska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 152.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Iowa Tribe of Kansas and Nebraska', [Definition] = 'Iowa Tribe of Kansas and Nebraska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 152.00 WHERE [Code] = 'IowaTribeofKansasandNebraska' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'IowaTribeofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IowaTribeofOklahoma', 'Iowa Tribe of Oklahoma', 'Iowa Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 153.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Iowa Tribe of Oklahoma', [Definition] = 'Iowa Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 153.00 WHERE [Code] = 'IowaTribeofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'IqurmuitTraditionalCouncil') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IqurmuitTraditionalCouncil', 'Iqugmiut Traditional Council', 'Iqugmiut Traditional Council (previously listed as Iqurmuit Traditional Council) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 154.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Iqugmiut Traditional Council', [Definition] = 'Iqugmiut Traditional Council (previously listed as Iqurmuit Traditional Council) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 154.00 WHERE [Code] = 'IqurmuitTraditionalCouncil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'IvanofBayTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('IvanofBayTribe', 'Ivanof Bay Tribe', 'Ivanof Bay Tribe (previously listed as Ivanoff Bay Tribe and Ivanoff Bay Village) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 155.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ivanof Bay Tribe', [Definition] = 'Ivanof Bay Tribe (previously listed as Ivanoff Bay Tribe and Ivanoff Bay Village) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 155.00 WHERE [Code] = 'IvanofBayTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'JacksonBandofMiwukIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JacksonBandofMiwukIndians', 'Jackson Band of Miwuk Indians', 'Jackson Band of Miwuk Indians (previously listed as Jackson Rancheria of Me-Wuk Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 156.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Jackson Band of Miwuk Indians', [Definition] = 'Jackson Band of Miwuk Indians (previously listed as Jackson Rancheria of Me-Wuk Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 156.00 WHERE [Code] = 'JacksonBandofMiwukIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'JamestownSKlallamTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JamestownSKlallamTribe', 'Jamestown S''Klallam Tribe', 'Jamestown S''Klallam Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 157.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Jamestown S''Klallam Tribe', [Definition] = 'Jamestown S''Klallam Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 157.00 WHERE [Code] = 'JamestownSKlallamTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'JamulIndianVillageofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JamulIndianVillageofCalifornia', 'Jamul Indian Village of California', 'Jamul Indian Village of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 158.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Jamul Indian Village of California', [Definition] = 'Jamul Indian Village of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 158.00 WHERE [Code] = 'JamulIndianVillageofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'JenaBandofChoctawIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JenaBandofChoctawIndians', 'Jena Band of Choctaw Indians', 'Jena Band of Choctaw Indians is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 159.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Jena Band of Choctaw Indians', [Definition] = 'Jena Band of Choctaw Indians is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 159.00 WHERE [Code] = 'JenaBandofChoctawIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'JicarillaApacheNationNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JicarillaApacheNationNewMexico', 'Jicarilla Apache Nation, New Mexico', 'Jicarilla Apache Nation, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 160.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Jicarilla Apache Nation, New Mexico', [Definition] = 'Jicarilla Apache Nation, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 160.00 WHERE [Code] = 'JicarillaApacheNationNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KaguyakVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KaguyakVillage', 'Kaguyak Village', 'Kaguyak Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 161.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kaguyak Village', [Definition] = 'Kaguyak Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 161.00 WHERE [Code] = 'KaguyakVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KaibabBandofPaiuteIndiansoftheKaibabIndian') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KaibabBandofPaiuteIndiansoftheKaibabIndian', 'Kaibab Band of Paiute Indians of the Kaibab Indian Reservation, Arizona', 'Kaibab Band of Paiute Indians of the Kaibab Indian Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 162.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kaibab Band of Paiute Indians of the Kaibab Indian Reservation, Arizona', [Definition] = 'Kaibab Band of Paiute Indians of the Kaibab Indian Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 162.00 WHERE [Code] = 'KaibabBandofPaiuteIndiansoftheKaibabIndian' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KaktovikVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KaktovikVillage', 'Kaktovik Village', 'Kaktovik Village (aka Barter Island) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 163.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kaktovik Village', [Definition] = 'Kaktovik Village (aka Barter Island) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 163.00 WHERE [Code] = 'KaktovikVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KalispelIndianCommunityoftheKalispelReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KalispelIndianCommunityoftheKalispelReservation', 'Kalispel Indian Community of the Kalispel Reservation', 'Kalispel Indian Community of the Kalispel Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 164.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kalispel Indian Community of the Kalispel Reservation', [Definition] = 'Kalispel Indian Community of the Kalispel Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 164.00 WHERE [Code] = 'KalispelIndianCommunityoftheKalispelReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KarukTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KarukTribe', 'Karuk Tribe', 'Karuk Tribe (previously listed as Karuk Tribe of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 165.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Karuk Tribe', [Definition] = 'Karuk Tribe (previously listed as Karuk Tribe of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 165.00 WHERE [Code] = 'KarukTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KashiaBandofPomoIndiansoftheStewartsPointRancheria') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KashiaBandofPomoIndiansoftheStewartsPointRancheria', 'Kashia Band of Pomo Indians of the Stewarts Point Rancheria, California', 'Kashia Band of Pomo Indians of the Stewarts Point Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 166.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kashia Band of Pomo Indians of the Stewarts Point Rancheria, California', [Definition] = 'Kashia Band of Pomo Indians of the Stewarts Point Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 166.00 WHERE [Code] = 'KashiaBandofPomoIndiansoftheStewartsPointRancheria' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KasiglukTraditionalEldersCouncil') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KasiglukTraditionalEldersCouncil', 'Kasigluk Traditional Elders Council', 'Kasigluk Traditional Elders Council is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 167.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kasigluk Traditional Elders Council', [Definition] = 'Kasigluk Traditional Elders Council is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 167.00 WHERE [Code] = 'KasiglukTraditionalEldersCouncil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KawNationOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KawNationOklahoma', 'Kaw Nation, Oklahoma', 'Kaw Nation, Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 168.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kaw Nation, Oklahoma', [Definition] = 'Kaw Nation, Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 168.00 WHERE [Code] = 'KawNationOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KenaitzeIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KenaitzeIndianTribe', 'Kenaitze Indian Tribe', 'Kenaitze Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 169.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kenaitze Indian Tribe', [Definition] = 'Kenaitze Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 169.00 WHERE [Code] = 'KenaitzeIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KetchikanIndianCorporation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KetchikanIndianCorporation', 'Ketchikan Indian Community', 'Ketchikan Indian Corporation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 170.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ketchikan Indian Community', [Definition] = 'Ketchikan Indian Corporation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 170.00 WHERE [Code] = 'KetchikanIndianCorporation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KeweenawBayIndianCommunityMichigan') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KeweenawBayIndianCommunityMichigan', 'Keweenaw Bay Indian Community, Michigan', 'Keweenaw Bay Indian Community, Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 171.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Keweenaw Bay Indian Community, Michigan', [Definition] = 'Keweenaw Bay Indian Community, Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 171.00 WHERE [Code] = 'KeweenawBayIndianCommunityMichigan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KialegeeTribalTown') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KialegeeTribalTown', 'Kialegee Tribal Town', 'Kialegee Tribal Town is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 172.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kialegee Tribal Town', [Definition] = 'Kialegee Tribal Town is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 172.00 WHERE [Code] = 'KialegeeTribalTown' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KickapooTraditionalTribeofTexas') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KickapooTraditionalTribeofTexas', 'Kickapoo Traditional Tribe of Texas', 'Kickapoo Traditional Tribe of Texas is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 173.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kickapoo Traditional Tribe of Texas', [Definition] = 'Kickapoo Traditional Tribe of Texas is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 173.00 WHERE [Code] = 'KickapooTraditionalTribeofTexas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KickapooTribeofIndiansoftheKickapooReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KickapooTribeofIndiansoftheKickapooReservation', 'Kickapoo Tribe of Indians of the Kickapoo Reservation in Kansas', 'Kickapoo Tribe of Indians of the Kickapoo Reservation in Kansas is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 174.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kickapoo Tribe of Indians of the Kickapoo Reservation in Kansas', [Definition] = 'Kickapoo Tribe of Indians of the Kickapoo Reservation in Kansas is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 174.00 WHERE [Code] = 'KickapooTribeofIndiansoftheKickapooReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KickapooTribeofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KickapooTribeofOklahoma', 'Kickapoo Tribe of Oklahoma', 'Kickapoo Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 175.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kickapoo Tribe of Oklahoma', [Definition] = 'Kickapoo Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 175.00 WHERE [Code] = 'KickapooTribeofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KingIslandNativeCommunity') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KingIslandNativeCommunity', 'King Island Native Community', 'King Island Native Community is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 176.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'King Island Native Community', [Definition] = 'King Island Native Community is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 176.00 WHERE [Code] = 'KingIslandNativeCommunity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KingSalmonTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KingSalmonTribe', 'King Salmon Tribe', 'King Salmon Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 177.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'King Salmon Tribe', [Definition] = 'King Salmon Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 177.00 WHERE [Code] = 'KingSalmonTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KiowaIndianTribeofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KiowaIndianTribeofOklahoma', 'Kiowa Indian Tribe of Oklahoma', 'Kiowa Indian Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 178.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kiowa Indian Tribe of Oklahoma', [Definition] = 'Kiowa Indian Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 178.00 WHERE [Code] = 'KiowaIndianTribeofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KlamathTribes') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KlamathTribes', 'Klamath Tribes', 'Klamath Tribes is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 179.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Klamath Tribes', [Definition] = 'Klamath Tribes is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 179.00 WHERE [Code] = 'KlamathTribes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KlawockCooperativeAssociation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KlawockCooperativeAssociation', 'Klawock Cooperative Association', 'Klawock Cooperative Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 180.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Klawock Cooperative Association', [Definition] = 'Klawock Cooperative Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 180.00 WHERE [Code] = 'KlawockCooperativeAssociation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KletselDeheBandofWintunIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KletselDeheBandofWintunIndians', 'Kletsel Dehe Band of Wintun Indians', 'Kletsel Dehe Band of Wintun Indians (previously listed as Cortina Indian Rancheria and the Cortina Indian Rancheria of Wintun Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 181.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kletsel Dehe Band of Wintun Indians', [Definition] = 'Kletsel Dehe Band of Wintun Indians (previously listed as Cortina Indian Rancheria and the Cortina Indian Rancheria of Wintun Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 181.00 WHERE [Code] = 'KletselDeheBandofWintunIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KnikTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KnikTribe', 'Knik Tribe', 'Knik Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 182.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Knik Tribe', [Definition] = 'Knik Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 182.00 WHERE [Code] = 'KnikTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KoiNationofNorthernCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KoiNationofNorthernCalifornia', 'Koi Nation of Northern California', 'Koi Nation of Northern California (previously listed as Lower Lake Rancheria, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 183.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Koi Nation of Northern California', [Definition] = 'Koi Nation of Northern California (previously listed as Lower Lake Rancheria, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 183.00 WHERE [Code] = 'KoiNationofNorthernCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KokhanokVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KokhanokVillage', 'Kokhanok Village', 'Kokhanok Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 184.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kokhanok Village', [Definition] = 'Kokhanok Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 184.00 WHERE [Code] = 'KokhanokVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KootenaiTribeofIdaho') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KootenaiTribeofIdaho', 'Kootenai Tribe of Idaho', 'Kootenai Tribe of Idaho is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 185.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Kootenai Tribe of Idaho', [Definition] = 'Kootenai Tribe of Idaho is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 185.00 WHERE [Code] = 'KootenaiTribeofIdaho' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KoyukukNativeVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KoyukukNativeVillage', 'Koyukuk Native Village', 'Koyukuk Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 186.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Koyukuk Native Village', [Definition] = 'Koyukuk Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 186.00 WHERE [Code] = 'KoyukukNativeVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LaJollaBandofLuisenoIndiansCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LaJollaBandofLuisenoIndiansCalifornia', 'La Jolla Band of Luiseno Indians, California', 'La Jolla Band of Luiseno Indians, California (previously listed as La Jolla Band of Luiseno Mission Indians of the La Jolla Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 187.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'La Jolla Band of Luiseno Indians, California', [Definition] = 'La Jolla Band of Luiseno Indians, California (previously listed as La Jolla Band of Luiseno Mission Indians of the La Jolla Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 187.00 WHERE [Code] = 'LaJollaBandofLuisenoIndiansCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LaPostaBandofDieguenoMissionIndiansoftheLaPosta') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LaPostaBandofDieguenoMissionIndiansoftheLaPosta', 'La Posta Band of Diegueno Mission Indians of the La Posta Indian Reservation, California', 'La Posta Band of Diegueno Mission Indians of the La Posta Indian Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 188.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'La Posta Band of Diegueno Mission Indians of the La Posta Indian Reservation, California', [Definition] = 'La Posta Band of Diegueno Mission Indians of the La Posta Indian Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 188.00 WHERE [Code] = 'LaPostaBandofDieguenoMissionIndiansoftheLaPosta' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LacCourteOreillesBandofLakeSuperiorChippewaIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LacCourteOreillesBandofLakeSuperiorChippewaIndians', 'Lac Courte Oreilles Band of Lake Superior Chippewa Indians of Wisconsin', 'Lac Courte Oreilles Band of Lake Superior Chippewa Indians of Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 189.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Lac Courte Oreilles Band of Lake Superior Chippewa Indians of Wisconsin', [Definition] = 'Lac Courte Oreilles Band of Lake Superior Chippewa Indians of Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 189.00 WHERE [Code] = 'LacCourteOreillesBandofLakeSuperiorChippewaIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LacduFlambeauBandofLakeSuperiorChippewaIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LacduFlambeauBandofLakeSuperiorChippewaIndians', 'Lac du Flambeau Band of Lake Superior Chippewa Indians of the Lac du Flambeau Reservation of Wisconsin', 'Lac du Flambeau Band of Lake Superior Chippewa Indians of the Lac du Flambeau Reservation of Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 190.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Lac du Flambeau Band of Lake Superior Chippewa Indians of the Lac du Flambeau Reservation of Wisconsin', [Definition] = 'Lac du Flambeau Band of Lake Superior Chippewa Indians of the Lac du Flambeau Reservation of Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 190.00 WHERE [Code] = 'LacduFlambeauBandofLakeSuperiorChippewaIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LacVieuxDesertBandofLakeSuperiorChippewaIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LacVieuxDesertBandofLakeSuperiorChippewaIndians', 'Lac Vieux Desert Band of Lake Superior Chippewa Indians of Michigan', 'Lac Vieux Desert Band of Lake Superior Chippewa Indians of Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 191.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Lac Vieux Desert Band of Lake Superior Chippewa Indians of Michigan', [Definition] = 'Lac Vieux Desert Band of Lake Superior Chippewa Indians of Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 191.00 WHERE [Code] = 'LacVieuxDesertBandofLakeSuperiorChippewaIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LasVegasTribeofPaiuteIndiansoftheLasVegasIndian') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LasVegasTribeofPaiuteIndiansoftheLasVegasIndian', 'Las Vegas Tribe of Paiute Indians of the Las Vegas Indian Colony, Nevada', 'Las Vegas Tribe of Paiute Indians of the Las Vegas Indian Colony, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 192.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Las Vegas Tribe of Paiute Indians of the Las Vegas Indian Colony, Nevada', [Definition] = 'Las Vegas Tribe of Paiute Indians of the Las Vegas Indian Colony, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 192.00 WHERE [Code] = 'LasVegasTribeofPaiuteIndiansoftheLasVegasIndian' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LevelockVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LevelockVillage', 'Levelock Village', 'Levelock Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 193.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Levelock Village', [Definition] = 'Levelock Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 193.00 WHERE [Code] = 'LevelockVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LimeVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LimeVillage', 'Lime Village', 'Lime Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 194.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Lime Village', [Definition] = 'Lime Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 194.00 WHERE [Code] = 'LimeVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LittleRiverBandofOttawaIndiansMichigan') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LittleRiverBandofOttawaIndiansMichigan', 'Little River Band of Ottawa Indians, Michigan', 'Little River Band of Ottawa Indians, Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 195.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Little River Band of Ottawa Indians, Michigan', [Definition] = 'Little River Band of Ottawa Indians, Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 195.00 WHERE [Code] = 'LittleRiverBandofOttawaIndiansMichigan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LittleShellTribeofChippewaIndiansofMontana') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LittleShellTribeofChippewaIndiansofMontana', 'Little Shell Tribe of Chippewa Indians of Montana', 'Little Shell Tribe of Chippewa Indians of Montana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 196.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Little Shell Tribe of Chippewa Indians of Montana', [Definition] = 'Little Shell Tribe of Chippewa Indians of Montana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 196.00 WHERE [Code] = 'LittleShellTribeofChippewaIndiansofMontana' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LittleTraverseBayBandsofOdawaIndiansMichigan') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LittleTraverseBayBandsofOdawaIndiansMichigan', 'Little Traverse Bay Bands of Odawa Indians, Michigan', 'Little Traverse Bay Bands of Odawa Indians, Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 197.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Little Traverse Bay Bands of Odawa Indians, Michigan', [Definition] = 'Little Traverse Bay Bands of Odawa Indians, Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 197.00 WHERE [Code] = 'LittleTraverseBayBandsofOdawaIndiansMichigan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LonePinePaiuteShoshoneTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LonePinePaiuteShoshoneTribe', 'Lone Pine Paiute-Shoshone Tribe', 'Lone Pine Paiute-Shoshone Tribe (previously listed as Paiute-Shoshone Indians of the Lone Pine Community of the Lone Pine Reservation, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 198.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Lone Pine Paiute-Shoshone Tribe', [Definition] = 'Lone Pine Paiute-Shoshone Tribe (previously listed as Paiute-Shoshone Indians of the Lone Pine Community of the Lone Pine Reservation, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 198.00 WHERE [Code] = 'LonePinePaiuteShoshoneTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LosCoyotesBandofCahuillaandCupenoIndiansCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LosCoyotesBandofCahuillaandCupenoIndiansCalifornia', 'Los Coyotes Band of Cahuilla and Cupeno Indians, California', 'Los Coyotes Band of Cahuilla and Cupeno Indians, California (previously listed as Los Coyotes Band of Cahuilla & Cupeno Indians of the Los Coyotes Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 199.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Los Coyotes Band of Cahuilla and Cupeno Indians, California', [Definition] = 'Los Coyotes Band of Cahuilla and Cupeno Indians, California (previously listed as Los Coyotes Band of Cahuilla & Cupeno Indians of the Los Coyotes Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 199.00 WHERE [Code] = 'LosCoyotesBandofCahuillaandCupenoIndiansCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LovelockPaiuteTribeoftheLovelockIndianColonyNevada') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LovelockPaiuteTribeoftheLovelockIndianColonyNevada', 'Lovelock Paiute Tribe of the Lovelock Indian Colony, Nevada', 'Lovelock Paiute Tribe of the Lovelock Indian Colony, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 200.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Lovelock Paiute Tribe of the Lovelock Indian Colony, Nevada', [Definition] = 'Lovelock Paiute Tribe of the Lovelock Indian Colony, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 200.00 WHERE [Code] = 'LovelockPaiuteTribeoftheLovelockIndianColonyNevada' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LowerBruleSiouxTribeoftheLowerBruleReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LowerBruleSiouxTribeoftheLowerBruleReservation', 'Lower Brule Sioux Tribe of the Lower Brule Reservation, South Dakota', 'Lower Brule Sioux Tribe of the Lower Brule Reservation, South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 201.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Lower Brule Sioux Tribe of the Lower Brule Reservation, South Dakota', [Definition] = 'Lower Brule Sioux Tribe of the Lower Brule Reservation, South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 201.00 WHERE [Code] = 'LowerBruleSiouxTribeoftheLowerBruleReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LowerElwhaTribalCommunity') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LowerElwhaTribalCommunity', 'Lower Elwha Tribal Community', 'Lower Elwha Tribal Community (previously listed as Lower Elwha Tribal Community of the Lower Elwha Reservation, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 202.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Lower Elwha Tribal Community', [Definition] = 'Lower Elwha Tribal Community (previously listed as Lower Elwha Tribal Community of the Lower Elwha Reservation, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 202.00 WHERE [Code] = 'LowerElwhaTribalCommunity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LowerSiouxIndianCommunityintheStateofMinnesota') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LowerSiouxIndianCommunityintheStateofMinnesota', 'Lower Sioux Indian Community in the State of Minnesota', 'Lower Sioux Indian Community in the State of Minnesota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 203.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Lower Sioux Indian Community in the State of Minnesota', [Definition] = 'Lower Sioux Indian Community in the State of Minnesota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 203.00 WHERE [Code] = 'LowerSiouxIndianCommunityintheStateofMinnesota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LummiTribeoftheLummiReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LummiTribeoftheLummiReservation', 'Lummi Tribe of the Lummi Reservation', 'Lummi Tribe of the Lummi Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 204.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Lummi Tribe of the Lummi Reservation', [Definition] = 'Lummi Tribe of the Lummi Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 204.00 WHERE [Code] = 'LummiTribeoftheLummiReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'LyttonRancheriaofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('LyttonRancheriaofCalifornia', 'Lytton Rancheria of California', 'Lytton Rancheria of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 205.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Lytton Rancheria of California', [Definition] = 'Lytton Rancheria of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 205.00 WHERE [Code] = 'LyttonRancheriaofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MakahIndianTribeoftheMakahIndianReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MakahIndianTribeoftheMakahIndianReservation', 'Makah Indian Tribe of the Makah Indian Reservation', 'Makah Indian Tribe of the Makah Indian Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 206.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Makah Indian Tribe of the Makah Indian Reservation', [Definition] = 'Makah Indian Tribe of the Makah Indian Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 206.00 WHERE [Code] = 'MakahIndianTribeoftheMakahIndianReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ManchesterBandofPomoIndiansoftheManchester') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ManchesterBandofPomoIndiansoftheManchester', 'Manchester Band of Pomo Indians of the Manchester Rancheria, California', 'Manchester Band of Pomo Indians of the Manchester Rancheria, California (previously listed as Manchester Band of Pomo Indians of the Manchester- Point Arena Rancheria, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 207.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Manchester Band of Pomo Indians of the Manchester Rancheria, California', [Definition] = 'Manchester Band of Pomo Indians of the Manchester Rancheria, California (previously listed as Manchester Band of Pomo Indians of the Manchester- Point Arena Rancheria, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 207.00 WHERE [Code] = 'ManchesterBandofPomoIndiansoftheManchester' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ManleyHotSpringsVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ManleyHotSpringsVillage', 'Manley Hot Springs Village', 'Manley Hot Springs Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 208.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Manley Hot Springs Village', [Definition] = 'Manley Hot Springs Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 208.00 WHERE [Code] = 'ManleyHotSpringsVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ManokotakVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ManokotakVillage', 'Manokotak Village', 'Manokotak Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 209.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Manokotak Village', [Definition] = 'Manokotak Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 209.00 WHERE [Code] = 'ManokotakVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ManzanitaBandofDieguenoMissionIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ManzanitaBandofDieguenoMissionIndians', 'Manzanita Band of Diegueno Mission Indians of the Manzanita Reservation, California', 'Manzanita Band of Diegueno Mission Indians of the Manzanita Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 210.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Manzanita Band of Diegueno Mission Indians of the Manzanita Reservation, California', [Definition] = 'Manzanita Band of Diegueno Mission Indians of the Manzanita Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 210.00 WHERE [Code] = 'ManzanitaBandofDieguenoMissionIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MashantucketPequotIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MashantucketPequotIndianTribe', 'Mashantucket Pequot Indian Tribe', 'Mashantucket Pequot Indian Tribe (previously listed as Mashantucket Pequot Tribe of Connecticut) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 211.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Mashantucket Pequot Indian Tribe', [Definition] = 'Mashantucket Pequot Indian Tribe (previously listed as Mashantucket Pequot Tribe of Connecticut) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 211.00 WHERE [Code] = 'MashantucketPequotIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MashpeeWampanoagTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MashpeeWampanoagTribe', 'Mashpee Wampanoag Tribe', 'Mashpee Wampanoag Tribe (previously listed as Mashpee Wampanoag Indian Tribal Council, Inc.) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 212.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Mashpee Wampanoag Tribe', [Definition] = 'Mashpee Wampanoag Tribe (previously listed as Mashpee Wampanoag Indian Tribal Council, Inc.) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 212.00 WHERE [Code] = 'MashpeeWampanoagTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MatchebenashshewishBandofPottawatomiIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MatchebenashshewishBandofPottawatomiIndians', 'Match-e-be-nash-she-wish Band of Pottawatomi Indians of Michigan', 'Match-e-be-nash-she-wish Band of Pottawatomi Indians of Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 213.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Match-e-be-nash-she-wish Band of Pottawatomi Indians of Michigan', [Definition] = 'Match-e-be-nash-she-wish Band of Pottawatomi Indians of Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 213.00 WHERE [Code] = 'MatchebenashshewishBandofPottawatomiIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'McGrathNativeVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('McGrathNativeVillage', 'McGrath Native Village', 'McGrath Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 214.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'McGrath Native Village', [Definition] = 'McGrath Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 214.00 WHERE [Code] = 'McGrathNativeVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MechoopdaIndianTribeofChicoRancheriaCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MechoopdaIndianTribeofChicoRancheriaCalifornia', 'Mechoopda Indian Tribe of Chico Rancheria, California', 'Mechoopda Indian Tribe of Chico Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 215.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Mechoopda Indian Tribe of Chico Rancheria, California', [Definition] = 'Mechoopda Indian Tribe of Chico Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 215.00 WHERE [Code] = 'MechoopdaIndianTribeofChicoRancheriaCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MenomineeIndianTribeofWisconsin') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MenomineeIndianTribeofWisconsin', 'Menominee Indian Tribe of Wisconsin', 'Menominee Indian Tribe of Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 216.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Menominee Indian Tribe of Wisconsin', [Definition] = 'Menominee Indian Tribe of Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 216.00 WHERE [Code] = 'MenomineeIndianTribeofWisconsin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MentastaTraditionalCouncil') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MentastaTraditionalCouncil', 'Mentasta Traditional Council', 'Mentasta Traditional Council is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 217.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Mentasta Traditional Council', [Definition] = 'Mentasta Traditional Council is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 217.00 WHERE [Code] = 'MentastaTraditionalCouncil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MesaGrandeBandofDieguenoMissionIndiansoftheMesa') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MesaGrandeBandofDieguenoMissionIndiansoftheMesa', 'Mesa Grande Band of Diegueno Mission Indians of the Mesa Grande Reservation, California', 'Mesa Grande Band of Diegueno Mission Indians of the Mesa Grande Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 218.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Mesa Grande Band of Diegueno Mission Indians of the Mesa Grande Reservation, California', [Definition] = 'Mesa Grande Band of Diegueno Mission Indians of the Mesa Grande Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 218.00 WHERE [Code] = 'MesaGrandeBandofDieguenoMissionIndiansoftheMesa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MescaleroApacheTribeoftheMescaleroReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MescaleroApacheTribeoftheMescaleroReservation', 'Mescalero Apache Tribe of the Mescalero Reservation, New Mexico', 'Mescalero Apache Tribe of the Mescalero Reservation, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 219.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Mescalero Apache Tribe of the Mescalero Reservation, New Mexico', [Definition] = 'Mescalero Apache Tribe of the Mescalero Reservation, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 219.00 WHERE [Code] = 'MescaleroApacheTribeoftheMescaleroReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MetlakatlaIndianCommunityAnnetteIslandReserve') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MetlakatlaIndianCommunityAnnetteIslandReserve', 'Metlakatla Indian Community, Annette Island Reserve', 'Metlakatla Indian Community, Annette Island Reserve is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 220.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Metlakatla Indian Community, Annette Island Reserve', [Definition] = 'Metlakatla Indian Community, Annette Island Reserve is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 220.00 WHERE [Code] = 'MetlakatlaIndianCommunityAnnetteIslandReserve' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MiamiTribeofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MiamiTribeofOklahoma', 'Miami Tribe of Oklahoma', 'Miami Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 221.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Miami Tribe of Oklahoma', [Definition] = 'Miami Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 221.00 WHERE [Code] = 'MiamiTribeofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MiccosukeeTribeofIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MiccosukeeTribeofIndians', 'Miccosukee Tribe of Indians', 'Miccosukee Tribe of Indians is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 222.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Miccosukee Tribe of Indians', [Definition] = 'Miccosukee Tribe of Indians is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 222.00 WHERE [Code] = 'MiccosukeeTribeofIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MiddletownRancheriaofPomoIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MiddletownRancheriaofPomoIndiansofCalifornia', 'Middletown Rancheria of Pomo Indians of California', 'Middletown Rancheria of Pomo Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 223.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Middletown Rancheria of Pomo Indians of California', [Definition] = 'Middletown Rancheria of Pomo Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 223.00 WHERE [Code] = 'MiddletownRancheriaofPomoIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MinnesotaChippewaTribeMinnesota') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MinnesotaChippewaTribeMinnesota', 'Minnesota Chippewa Tribe, Minnesota', 'Minnesota Chippewa Tribe, Minnesota (Six component reservations: Bois Forte Band (Nett Lake); Fond du Lac Band; Grand Portage Band; Leech Lake Band; Mille Lacs Band; White Earth Band) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 224.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Minnesota Chippewa Tribe, Minnesota', [Definition] = 'Minnesota Chippewa Tribe, Minnesota (Six component reservations: Bois Forte Band (Nett Lake); Fond du Lac Band; Grand Portage Band; Leech Lake Band; Mille Lacs Band; White Earth Band) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 224.00 WHERE [Code] = 'MinnesotaChippewaTribeMinnesota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MississippiBandofChoctawIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MississippiBandofChoctawIndians', 'Mississippi Band of Choctaw Indians', 'Mississippi Band of Choctaw Indians is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 225.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Mississippi Band of Choctaw Indians', [Definition] = 'Mississippi Band of Choctaw Indians is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 225.00 WHERE [Code] = 'MississippiBandofChoctawIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MoapaBandofPaiuteIndiansoftheMoapaRiverIndian') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MoapaBandofPaiuteIndiansoftheMoapaRiverIndian', 'Moapa Band of Paiute Indians of the Moapa River Indian Reservation, Nevada', 'Moapa Band of Paiute Indians of the Moapa River Indian Reservation, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 226.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Moapa Band of Paiute Indians of the Moapa River Indian Reservation, Nevada', [Definition] = 'Moapa Band of Paiute Indians of the Moapa River Indian Reservation, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 226.00 WHERE [Code] = 'MoapaBandofPaiuteIndiansoftheMoapaRiverIndian' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TheModocTribeofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TheModocTribeofOklahoma', 'Modoc Nation', 'Modoc Nation (previously listed as The Modoc Tribe of Oklahoma) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 227.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Modoc Nation', [Definition] = 'Modoc Nation (previously listed as The Modoc Tribe of Oklahoma) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 227.00 WHERE [Code] = 'TheModocTribeofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MoheganTribeofIndiansofConnecticut') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MoheganTribeofIndiansofConnecticut', 'Mohegan Tribe of Indians of Connecticut', 'Mohegan Tribe of Indians of Connecticut (previously listed as Mohegan Indian Tribe of Connecticut) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 228.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Mohegan Tribe of Indians of Connecticut', [Definition] = 'Mohegan Tribe of Indians of Connecticut (previously listed as Mohegan Indian Tribe of Connecticut) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 228.00 WHERE [Code] = 'MoheganTribeofIndiansofConnecticut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MonacanIndianNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MonacanIndianNation', 'Monacan Indian Nation', 'Monacan Indian Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 229.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Monacan Indian Nation', [Definition] = 'Monacan Indian Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 229.00 WHERE [Code] = 'MonacanIndianNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MooretownRancheriaofMaiduIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MooretownRancheriaofMaiduIndiansofCalifornia', 'Mooretown Rancheria of Maidu Indians of California', 'Mooretown Rancheria of Maidu Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 230.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Mooretown Rancheria of Maidu Indians of California', [Definition] = 'Mooretown Rancheria of Maidu Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 230.00 WHERE [Code] = 'MooretownRancheriaofMaiduIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MorongoBandofMissionIndiansCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MorongoBandofMissionIndiansCalifornia', 'Morongo Band of Mission Indians, California', 'Morongo Band of Mission Indians, California (previously listed as Morongo Band of Cahuilla Mission Indians of the Morongo Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 231.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Morongo Band of Mission Indians, California', [Definition] = 'Morongo Band of Mission Indians, California (previously listed as Morongo Band of Cahuilla Mission Indians of the Morongo Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 231.00 WHERE [Code] = 'MorongoBandofMissionIndiansCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'MuckleshootIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('MuckleshootIndianTribe', 'Muckleshoot Indian Tribe', 'Muckleshoot Indian Tribe (previously listed as Muckleshoot Indian Tribe of the Muckleshoot Reservation, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 232.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Muckleshoot Indian Tribe', [Definition] = 'Muckleshoot Indian Tribe (previously listed as Muckleshoot Indian Tribe of the Muckleshoot Reservation, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 232.00 WHERE [Code] = 'MuckleshootIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NaknekNativeVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NaknekNativeVillage', 'Naknek Native Village', 'Naknek Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 233.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Naknek Native Village', [Definition] = 'Naknek Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 233.00 WHERE [Code] = 'NaknekNativeVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NansemondIndianNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NansemondIndianNation', 'Nansemond Indian Nation', 'Nansemond Indian Nation (previously listed as Nansemond Indian Tribe) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 234.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Nansemond Indian Nation', [Definition] = 'Nansemond Indian Nation (previously listed as Nansemond Indian Tribe) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 234.00 WHERE [Code] = 'NansemondIndianNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NarragansettIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NarragansettIndianTribe', 'Narragansett Indian Tribe', 'Narragansett Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 235.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Narragansett Indian Tribe', [Definition] = 'Narragansett Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 235.00 WHERE [Code] = 'NarragansettIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofAfognak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofAfognak', 'Native Village of Afognak', 'Native Village of Afognak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 236.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Afognak', [Definition] = 'Native Village of Afognak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 236.00 WHERE [Code] = 'NativeVillageofAfognak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofAkhiok') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofAkhiok', 'Native Village of Akhiok', 'Native Village of Akhiok is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 237.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Akhiok', [Definition] = 'Native Village of Akhiok is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 237.00 WHERE [Code] = 'NativeVillageofAkhiok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofAkutan') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofAkutan', 'Native Village of Akutan', 'Native Village of Akutan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 238.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Akutan', [Definition] = 'Native Village of Akutan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 238.00 WHERE [Code] = 'NativeVillageofAkutan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofAleknagik') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofAleknagik', 'Native Village of Aleknagik', 'Native Village of Aleknagik is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 239.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Aleknagik', [Definition] = 'Native Village of Aleknagik is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 239.00 WHERE [Code] = 'NativeVillageofAleknagik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofAmbler') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofAmbler', 'Native Village of Ambler', 'Native Village of Ambler is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 240.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Ambler', [Definition] = 'Native Village of Ambler is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 240.00 WHERE [Code] = 'NativeVillageofAmbler' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofAtka') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofAtka', 'Native Village of Atka', 'Native Village of Atka is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 241.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Atka', [Definition] = 'Native Village of Atka is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 241.00 WHERE [Code] = 'NativeVillageofAtka' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'AtqasukVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AtqasukVillage', 'Native Village of Atqasuk', 'Atqasuk Village (Atkasook) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 242.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Atqasuk', [Definition] = 'Atqasuk Village (Atkasook) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 242.00 WHERE [Code] = 'AtqasukVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofBarrowInupiatTraditionalGovernment') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofBarrowInupiatTraditionalGovernment', 'Native Village of Barrow Inupiat Traditional Government', 'Native Village of Barrow Inupiat Traditional Government is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 243.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Barrow Inupiat Traditional Government', [Definition] = 'Native Village of Barrow Inupiat Traditional Government is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 243.00 WHERE [Code] = 'NativeVillageofBarrowInupiatTraditionalGovernment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofBelkofski') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofBelkofski', 'Native Village of Belkofski', 'Native Village of Belkofski is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 244.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Belkofski', [Definition] = 'Native Village of Belkofski is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 244.00 WHERE [Code] = 'NativeVillageofBelkofski' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofBrevigMission') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofBrevigMission', 'Native Village of Brevig Mission', 'Native Village of Brevig Mission is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 245.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Brevig Mission', [Definition] = 'Native Village of Brevig Mission is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 245.00 WHERE [Code] = 'NativeVillageofBrevigMission' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofBuckland') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofBuckland', 'Native Village of Buckland', 'Native Village of Buckland is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 246.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Buckland', [Definition] = 'Native Village of Buckland is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 246.00 WHERE [Code] = 'NativeVillageofBuckland' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofCantwell') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofCantwell', 'Native Village of Cantwell', 'Native Village of Cantwell is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 247.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Cantwell', [Definition] = 'Native Village of Cantwell is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 247.00 WHERE [Code] = 'NativeVillageofCantwell' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofChenega') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofChenega', 'Native Village of Chenega', 'Native Village of Chenega (aka Chanega) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 248.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Chenega', [Definition] = 'Native Village of Chenega (aka Chanega) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 248.00 WHERE [Code] = 'NativeVillageofChenega' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofChignikLagoon') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofChignikLagoon', 'Native Village of Chignik Lagoon', 'Native Village of Chignik Lagoon is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 249.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Chignik Lagoon', [Definition] = 'Native Village of Chignik Lagoon is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 249.00 WHERE [Code] = 'NativeVillageofChignikLagoon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofChitina') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofChitina', 'Native Village of Chitina', 'Native Village of Chitina is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 250.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Chitina', [Definition] = 'Native Village of Chitina is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 250.00 WHERE [Code] = 'NativeVillageofChitina' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofChuathbaluk') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofChuathbaluk', 'Native Village of Chuathbaluk', 'Native Village of Chuathbaluk (Russian Mission, Kuskokwim) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 251.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Chuathbaluk', [Definition] = 'Native Village of Chuathbaluk (Russian Mission, Kuskokwim) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 251.00 WHERE [Code] = 'NativeVillageofChuathbaluk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofCouncil') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofCouncil', 'Native Village of Council', 'Native Village of Council is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 252.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Council', [Definition] = 'Native Village of Council is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 252.00 WHERE [Code] = 'NativeVillageofCouncil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofDeering') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofDeering', 'Native Village of Deering', 'Native Village of Deering is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 253.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Deering', [Definition] = 'Native Village of Deering is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 253.00 WHERE [Code] = 'NativeVillageofDeering' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofDiomede') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofDiomede', 'Native Village of Diomede', 'Native Village of Diomede (aka Inalik) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 254.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Diomede', [Definition] = 'Native Village of Diomede (aka Inalik) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 254.00 WHERE [Code] = 'NativeVillageofDiomede' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofEagle') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofEagle', 'Native Village of Eagle', 'Native Village of Eagle is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 255.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Eagle', [Definition] = 'Native Village of Eagle is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 255.00 WHERE [Code] = 'NativeVillageofEagle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofEek') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofEek', 'Native Village of Eek', 'Native Village of Eek is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 256.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Eek', [Definition] = 'Native Village of Eek is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 256.00 WHERE [Code] = 'NativeVillageofEek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofEkuk') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofEkuk', 'Native Village of Ekuk', 'Native Village of Ekuk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 257.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Ekuk', [Definition] = 'Native Village of Ekuk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 257.00 WHERE [Code] = 'NativeVillageofEkuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofEkwok') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofEkwok', 'Native Village of Ekwok', 'Native Village of Ekwok (previously listed as Ekwok Village) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 258.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Ekwok', [Definition] = 'Native Village of Ekwok (previously listed as Ekwok Village) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 258.00 WHERE [Code] = 'NativeVillageofEkwok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofElim') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofElim', 'Native Village of Elim', 'Native Village of Elim is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 259.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Elim', [Definition] = 'Native Village of Elim is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 259.00 WHERE [Code] = 'NativeVillageofElim' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofEyak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofEyak', 'Native Village of Eyak', 'Native Village of Eyak (Cordova) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 260.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Eyak', [Definition] = 'Native Village of Eyak (Cordova) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 260.00 WHERE [Code] = 'NativeVillageofEyak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofFalsePass') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofFalsePass', 'Native Village of False Pass', 'Native Village of False Pass is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 261.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of False Pass', [Definition] = 'Native Village of False Pass is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 261.00 WHERE [Code] = 'NativeVillageofFalsePass' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofFortYukon') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofFortYukon', 'Native Village of Fort Yukon', 'Native Village of Fort Yukon is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 262.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Fort Yukon', [Definition] = 'Native Village of Fort Yukon is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 262.00 WHERE [Code] = 'NativeVillageofFortYukon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofGakona') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofGakona', 'Native Village of Gakona', 'Native Village of Gakona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 263.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Gakona', [Definition] = 'Native Village of Gakona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 263.00 WHERE [Code] = 'NativeVillageofGakona' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofGambell') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofGambell', 'Native Village of Gambell', 'Native Village of Gambell is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 264.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Gambell', [Definition] = 'Native Village of Gambell is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 264.00 WHERE [Code] = 'NativeVillageofGambell' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofGeorgetown') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofGeorgetown', 'Native Village of Georgetown', 'Native Village of Georgetown is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 265.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Georgetown', [Definition] = 'Native Village of Georgetown is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 265.00 WHERE [Code] = 'NativeVillageofGeorgetown' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofGoodnewsBay') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofGoodnewsBay', 'Native Village of Goodnews Bay', 'Native Village of Goodnews Bay is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 266.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Goodnews Bay', [Definition] = 'Native Village of Goodnews Bay is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 266.00 WHERE [Code] = 'NativeVillageofGoodnewsBay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofHamilton') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofHamilton', 'Native Village of Hamilton', 'Native Village of Hamilton is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 267.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Hamilton', [Definition] = 'Native Village of Hamilton is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 267.00 WHERE [Code] = 'NativeVillageofHamilton' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofHooperBay') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofHooperBay', 'Native Village of Hooper Bay', 'Native Village of Hooper Bay is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 268.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Hooper Bay', [Definition] = 'Native Village of Hooper Bay is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 268.00 WHERE [Code] = 'NativeVillageofHooperBay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofKanatak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofKanatak', 'Native Village of Kanatak', 'Native Village of Kanatak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 269.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Kanatak', [Definition] = 'Native Village of Kanatak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 269.00 WHERE [Code] = 'NativeVillageofKanatak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofKarluk') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofKarluk', 'Native Village of Karluk', 'Native Village of Karluk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 270.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Karluk', [Definition] = 'Native Village of Karluk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 270.00 WHERE [Code] = 'NativeVillageofKarluk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofKiana') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofKiana', 'Native Village of Kiana', 'Native Village of Kiana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 271.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Kiana', [Definition] = 'Native Village of Kiana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 271.00 WHERE [Code] = 'NativeVillageofKiana' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofKipnuk') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofKipnuk', 'Native Village of Kipnuk', 'Native Village of Kipnuk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 272.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Kipnuk', [Definition] = 'Native Village of Kipnuk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 272.00 WHERE [Code] = 'NativeVillageofKipnuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofKivalina') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofKivalina', 'Native Village of Kivalina', 'Native Village of Kivalina is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 273.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Kivalina', [Definition] = 'Native Village of Kivalina is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 273.00 WHERE [Code] = 'NativeVillageofKivalina' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofKlutiKaah') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofKlutiKaah', 'Native Village of Kluti Kaah', 'Native Village of Kluti Kaah (aka Copper Center) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 274.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Kluti Kaah', [Definition] = 'Native Village of Kluti Kaah (aka Copper Center) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 274.00 WHERE [Code] = 'NativeVillageofKlutiKaah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofKobuk') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofKobuk', 'Native Village of Kobuk', 'Native Village of Kobuk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 275.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Kobuk', [Definition] = 'Native Village of Kobuk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 275.00 WHERE [Code] = 'NativeVillageofKobuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofKongiganak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofKongiganak', 'Native Village of Kongiganak', 'Native Village of Kongiganak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 276.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Kongiganak', [Definition] = 'Native Village of Kongiganak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 276.00 WHERE [Code] = 'NativeVillageofKongiganak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofKotzebue') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofKotzebue', 'Native Village of Kotzebue', 'Native Village of Kotzebue is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 277.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Kotzebue', [Definition] = 'Native Village of Kotzebue is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 277.00 WHERE [Code] = 'NativeVillageofKotzebue' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofKoyuk') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofKoyuk', 'Native Village of Koyuk', 'Native Village of Koyuk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 278.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Koyuk', [Definition] = 'Native Village of Koyuk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 278.00 WHERE [Code] = 'NativeVillageofKoyuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofKwigillingok') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofKwigillingok', 'Native Village of Kwigillingok', 'Native Village of Kwigillingok is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 279.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Kwigillingok', [Definition] = 'Native Village of Kwigillingok is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 279.00 WHERE [Code] = 'NativeVillageofKwigillingok' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofKwinhagak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofKwinhagak', 'Native Village of Kwinhagak', 'Native Village of Kwinhagak (aka Quinhagak) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 280.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Kwinhagak', [Definition] = 'Native Village of Kwinhagak (aka Quinhagak) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 280.00 WHERE [Code] = 'NativeVillageofKwinhagak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofLarsenBay') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofLarsenBay', 'Native Village of Larsen Bay', 'Native Village of Larsen Bay is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 281.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Larsen Bay', [Definition] = 'Native Village of Larsen Bay is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 281.00 WHERE [Code] = 'NativeVillageofLarsenBay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofMarshall') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofMarshall', 'Native Village of Marshall', 'Native Village of Marshall (aka Fortuna Ledge) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 282.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Marshall', [Definition] = 'Native Village of Marshall (aka Fortuna Ledge) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 282.00 WHERE [Code] = 'NativeVillageofMarshall' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofMarysIgloo') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofMarysIgloo', 'Native Village of Mary''s Igloo', 'Native Village of Mary''s Igloo is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 283.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Mary''s Igloo', [Definition] = 'Native Village of Mary''s Igloo is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 283.00 WHERE [Code] = 'NativeVillageofMarysIgloo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofMekoryuk') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofMekoryuk', 'Native Village of Mekoryuk', 'Native Village of Mekoryuk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 284.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Mekoryuk', [Definition] = 'Native Village of Mekoryuk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 284.00 WHERE [Code] = 'NativeVillageofMekoryuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofMinto') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofMinto', 'Native Village of Minto', 'Native Village of Minto is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 285.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Minto', [Definition] = 'Native Village of Minto is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 285.00 WHERE [Code] = 'NativeVillageofMinto' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofNanwalek') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofNanwalek', 'Native Village of Nanwalek', 'Native Village of Nanwalek (aka English Bay) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 286.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Nanwalek', [Definition] = 'Native Village of Nanwalek (aka English Bay) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 286.00 WHERE [Code] = 'NativeVillageofNanwalek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofNapaimute') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofNapaimute', 'Native Village of Napaimute', 'Native Village of Napaimute is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 287.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Napaimute', [Definition] = 'Native Village of Napaimute is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 287.00 WHERE [Code] = 'NativeVillageofNapaimute' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofNapakiak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofNapakiak', 'Native Village of Napakiak', 'Native Village of Napakiak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 288.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Napakiak', [Definition] = 'Native Village of Napakiak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 288.00 WHERE [Code] = 'NativeVillageofNapakiak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofNapaskiak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofNapaskiak', 'Native Village of Napaskiak', 'Native Village of Napaskiak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 289.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Napaskiak', [Definition] = 'Native Village of Napaskiak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 289.00 WHERE [Code] = 'NativeVillageofNapaskiak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofNelsonLagoon') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofNelsonLagoon', 'Native Village of Nelson Lagoon', 'Native Village of Nelson Lagoon is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 290.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Nelson Lagoon', [Definition] = 'Native Village of Nelson Lagoon is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 290.00 WHERE [Code] = 'NativeVillageofNelsonLagoon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofNightmute') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofNightmute', 'Native Village of Nightmute', 'Native Village of Nightmute is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 291.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Nightmute', [Definition] = 'Native Village of Nightmute is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 291.00 WHERE [Code] = 'NativeVillageofNightmute' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofNikolski') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofNikolski', 'Native Village of Nikolski', 'Native Village of Nikolski is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 292.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Nikolski', [Definition] = 'Native Village of Nikolski is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 292.00 WHERE [Code] = 'NativeVillageofNikolski' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofNoatak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofNoatak', 'Native Village of Noatak', 'Native Village of Noatak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 293.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Noatak', [Definition] = 'Native Village of Noatak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 293.00 WHERE [Code] = 'NativeVillageofNoatak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofNuiqsut') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofNuiqsut', 'Native Village of Nuiqsut', 'Native Village of Nuiqsut (aka Nooiksut) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 294.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Nuiqsut', [Definition] = 'Native Village of Nuiqsut (aka Nooiksut) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 294.00 WHERE [Code] = 'NativeVillageofNuiqsut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofNunamIqua') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofNunamIqua', 'Native Village of Nunam Iqua', 'Native Village of Nunam Iqua (previously listed as Native Village of Sheldon''s Point) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 295.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Nunam Iqua', [Definition] = 'Native Village of Nunam Iqua (previously listed as Native Village of Sheldon''s Point) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 295.00 WHERE [Code] = 'NativeVillageofNunamIqua' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofNunapitchuk') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofNunapitchuk', 'Native Village of Nunapitchuk', 'Native Village of Nunapitchuk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 296.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Nunapitchuk', [Definition] = 'Native Village of Nunapitchuk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 296.00 WHERE [Code] = 'NativeVillageofNunapitchuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofOuzinkie') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofOuzinkie', 'Native Village of Ouzinkie', 'Native Village of Ouzinkie is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 297.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Ouzinkie', [Definition] = 'Native Village of Ouzinkie is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 297.00 WHERE [Code] = 'NativeVillageofOuzinkie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofPaimiut') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofPaimiut', 'Native Village of Paimiut', 'Native Village of Paimiut is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 298.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Paimiut', [Definition] = 'Native Village of Paimiut is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 298.00 WHERE [Code] = 'NativeVillageofPaimiut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofPerryville') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofPerryville', 'Native Village of Perryville', 'Native Village of Perryville is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 299.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Perryville', [Definition] = 'Native Village of Perryville is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 299.00 WHERE [Code] = 'NativeVillageofPerryville' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofPilotPoint') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofPilotPoint', 'Native Village of Pilot Point', 'Native Village of Pilot Point is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 300.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Pilot Point', [Definition] = 'Native Village of Pilot Point is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 300.00 WHERE [Code] = 'NativeVillageofPilotPoint' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofPointHope') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofPointHope', 'Native Village of Point Hope', 'Native Village of Point Hope is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 301.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Point Hope', [Definition] = 'Native Village of Point Hope is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 301.00 WHERE [Code] = 'NativeVillageofPointHope' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofPointLay') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofPointLay', 'Native Village of Point Lay', 'Native Village of Point Lay is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 302.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Point Lay', [Definition] = 'Native Village of Point Lay is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 302.00 WHERE [Code] = 'NativeVillageofPointLay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofPortGraham') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofPortGraham', 'Native Village of Port Graham', 'Native Village of Port Graham is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 303.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Port Graham', [Definition] = 'Native Village of Port Graham is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 303.00 WHERE [Code] = 'NativeVillageofPortGraham' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofPortHeiden') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofPortHeiden', 'Native Village of Port Heiden', 'Native Village of Port Heiden is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 304.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Port Heiden', [Definition] = 'Native Village of Port Heiden is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 304.00 WHERE [Code] = 'NativeVillageofPortHeiden' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofPortLions') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofPortLions', 'Native Village of Port Lions', 'Native Village of Port Lions is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 305.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Port Lions', [Definition] = 'Native Village of Port Lions is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 305.00 WHERE [Code] = 'NativeVillageofPortLions' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofRuby') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofRuby', 'Native Village of Ruby', 'Native Village of Ruby is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 306.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Ruby', [Definition] = 'Native Village of Ruby is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 306.00 WHERE [Code] = 'NativeVillageofRuby' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofSaintMichael') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofSaintMichael', 'Native Village of Saint Michael', 'Native Village of Saint Michael is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 307.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Saint Michael', [Definition] = 'Native Village of Saint Michael is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 307.00 WHERE [Code] = 'NativeVillageofSaintMichael' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofSavoonga') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofSavoonga', 'Native Village of Savoonga', 'Native Village of Savoonga is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 308.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Savoonga', [Definition] = 'Native Village of Savoonga is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 308.00 WHERE [Code] = 'NativeVillageofSavoonga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofScammonBay') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofScammonBay', 'Native Village of Scammon Bay', 'Native Village of Scammon Bay is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 309.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Scammon Bay', [Definition] = 'Native Village of Scammon Bay is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 309.00 WHERE [Code] = 'NativeVillageofScammonBay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofSelawik') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofSelawik', 'Native Village of Selawik', 'Native Village of Selawik is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 310.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Selawik', [Definition] = 'Native Village of Selawik is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 310.00 WHERE [Code] = 'NativeVillageofSelawik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofShaktoolik') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofShaktoolik', 'Native Village of Shaktoolik', 'Native Village of Shaktoolik is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 311.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Shaktoolik', [Definition] = 'Native Village of Shaktoolik is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 311.00 WHERE [Code] = 'NativeVillageofShaktoolik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofShishmaref') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofShishmaref', 'Native Village of Shishmaref', 'Native Village of Shishmaref is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 312.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Shishmaref', [Definition] = 'Native Village of Shishmaref is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 312.00 WHERE [Code] = 'NativeVillageofShishmaref' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofShungnak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofShungnak', 'Native Village of Shungnak', 'Native Village of Shungnak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 313.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Shungnak', [Definition] = 'Native Village of Shungnak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 313.00 WHERE [Code] = 'NativeVillageofShungnak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofStevens') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofStevens', 'Native Village of Stevens', 'Native Village of Stevens is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 314.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Stevens', [Definition] = 'Native Village of Stevens is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 314.00 WHERE [Code] = 'NativeVillageofStevens' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofTanacross') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofTanacross', 'Native Village of Tanacross', 'Native Village of Tanacross is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 315.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Tanacross', [Definition] = 'Native Village of Tanacross is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 315.00 WHERE [Code] = 'NativeVillageofTanacross' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofTanana') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofTanana', 'Native Village of Tanana', 'Native Village of Tanana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 316.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Tanana', [Definition] = 'Native Village of Tanana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 316.00 WHERE [Code] = 'NativeVillageofTanana' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofTatitlek') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofTatitlek', 'Native Village of Tatitlek', 'Native Village of Tatitlek is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 317.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Tatitlek', [Definition] = 'Native Village of Tatitlek is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 317.00 WHERE [Code] = 'NativeVillageofTatitlek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofTazlina') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofTazlina', 'Native Village of Tazlina', 'Native Village of Tazlina is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 318.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Tazlina', [Definition] = 'Native Village of Tazlina is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 318.00 WHERE [Code] = 'NativeVillageofTazlina' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofTeller') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofTeller', 'Native Village of Teller', 'Native Village of Teller is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 319.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Teller', [Definition] = 'Native Village of Teller is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 319.00 WHERE [Code] = 'NativeVillageofTeller' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofTetlin') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofTetlin', 'Native Village of Tetlin', 'Native Village of Tetlin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 320.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Tetlin', [Definition] = 'Native Village of Tetlin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 320.00 WHERE [Code] = 'NativeVillageofTetlin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofTuntutuliak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofTuntutuliak', 'Native Village of Tuntutuliak', 'Native Village of Tuntutuliak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 321.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Tuntutuliak', [Definition] = 'Native Village of Tuntutuliak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 321.00 WHERE [Code] = 'NativeVillageofTuntutuliak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofTununak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofTununak', 'Native Village of Tununak', 'Native Village of Tununak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 322.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Tununak', [Definition] = 'Native Village of Tununak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 322.00 WHERE [Code] = 'NativeVillageofTununak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofTyonek') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofTyonek', 'Native Village of Tyonek', 'Native Village of Tyonek is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 323.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Tyonek', [Definition] = 'Native Village of Tyonek is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 323.00 WHERE [Code] = 'NativeVillageofTyonek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofUnalakleet') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofUnalakleet', 'Native Village of Unalakleet', 'Native Village of Unalakleet is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 324.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Unalakleet', [Definition] = 'Native Village of Unalakleet is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 324.00 WHERE [Code] = 'NativeVillageofUnalakleet' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofUnga') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofUnga', 'Native Village of Unga', 'Native Village of Unga is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 325.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Unga', [Definition] = 'Native Village of Unga is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 325.00 WHERE [Code] = 'NativeVillageofUnga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofVenetieTribalGovernment') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofVenetieTribalGovernment', 'Native Village of Venetie Tribal Government', 'Native Village of Venetie Tribal Government (Arctic Village and Village of Venetie) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 326.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Venetie Tribal Government', [Definition] = 'Native Village of Venetie Tribal Government (Arctic Village and Village of Venetie) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 326.00 WHERE [Code] = 'NativeVillageofVenetieTribalGovernment' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofWales') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofWales', 'Native Village of Wales', 'Native Village of Wales is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 327.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of Wales', [Definition] = 'Native Village of Wales is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 327.00 WHERE [Code] = 'NativeVillageofWales' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofWhiteMountain') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofWhiteMountain', 'Native Village of White Mountain', 'Native Village of White Mountain is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 328.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Native Village of White Mountain', [Definition] = 'Native Village of White Mountain is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 328.00 WHERE [Code] = 'NativeVillageofWhiteMountain' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NavajoNationArizonaNewMexicoUtah') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NavajoNationArizonaNewMexicoUtah', 'Navajo Nation, Arizona, New Mexico, & Utah', 'Navajo Nation, Arizona, New Mexico & Utah is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 329.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Navajo Nation, Arizona, New Mexico, & Utah', [Definition] = 'Navajo Nation, Arizona, New Mexico & Utah is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 329.00 WHERE [Code] = 'NavajoNationArizonaNewMexicoUtah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NenanaNativeAssociation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NenanaNativeAssociation', 'Nenana Native Association', 'Nenana Native Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 330.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Nenana Native Association', [Definition] = 'Nenana Native Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 330.00 WHERE [Code] = 'NenanaNativeAssociation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NewKoliganekVillageCouncil') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NewKoliganekVillageCouncil', 'New Koliganek Village Council', 'New Koliganek Village Council is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 331.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'New Koliganek Village Council', [Definition] = 'New Koliganek Village Council is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 331.00 WHERE [Code] = 'NewKoliganekVillageCouncil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NewStuyahokVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NewStuyahokVillage', 'New Stuyahok Village', 'New Stuyahok Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 332.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'New Stuyahok Village', [Definition] = 'New Stuyahok Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 332.00 WHERE [Code] = 'NewStuyahokVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NewhalenVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NewhalenVillage', 'Newhalen Village', 'Newhalen Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 333.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Newhalen Village', [Definition] = 'Newhalen Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 333.00 WHERE [Code] = 'NewhalenVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NewtokVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NewtokVillage', 'Newtok Village', 'Newtok Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 334.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Newtok Village', [Definition] = 'Newtok Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 334.00 WHERE [Code] = 'NewtokVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NezPerceTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NezPerceTribe', 'Nez Perce Tribe', 'Nez Perce Tribe (previously listed as Nez Perce Tribe of Idaho) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 335.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Nez Perce Tribe', [Definition] = 'Nez Perce Tribe (previously listed as Nez Perce Tribe of Idaho) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 335.00 WHERE [Code] = 'NezPerceTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NikolaiVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NikolaiVillage', 'Nikolai Village', 'Nikolai Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 336.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Nikolai Village', [Definition] = 'Nikolai Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 336.00 WHERE [Code] = 'NikolaiVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NinilchikVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NinilchikVillage', 'Ninilchik Village', 'Ninilchik Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 337.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ninilchik Village', [Definition] = 'Ninilchik Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 337.00 WHERE [Code] = 'NinilchikVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NisquallyIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NisquallyIndianTribe', 'Nisqually Indian Tribe', 'Nisqually Indian Tribe (previously listed as Nisqually Indian Tribe of the Nisqually Reservation, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 338.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Nisqually Indian Tribe', [Definition] = 'Nisqually Indian Tribe (previously listed as Nisqually Indian Tribe of the Nisqually Reservation, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 338.00 WHERE [Code] = 'NisquallyIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NomeEskimoCommunity') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NomeEskimoCommunity', 'Nome Eskimo Community', 'Nome Eskimo Community is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 339.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Nome Eskimo Community', [Definition] = 'Nome Eskimo Community is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 339.00 WHERE [Code] = 'NomeEskimoCommunity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NondaltonVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NondaltonVillage', 'Nondalton Village', 'Nondalton Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 340.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Nondalton Village', [Definition] = 'Nondalton Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 340.00 WHERE [Code] = 'NondaltonVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NooksackIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NooksackIndianTribe', 'Nooksack Indian Tribe', 'Nooksack Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 341.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Nooksack Indian Tribe', [Definition] = 'Nooksack Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 341.00 WHERE [Code] = 'NooksackIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NoorvikNativeCommunity') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoorvikNativeCommunity', 'Noorvik Native Community', 'Noorvik Native Community is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 342.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Noorvik Native Community', [Definition] = 'Noorvik Native Community is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 342.00 WHERE [Code] = 'NoorvikNativeCommunity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ArapahoTribeoftheWindRiverReservationWyoming') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ArapahoTribeoftheWindRiverReservationWyoming', 'Northern Arapaho Tribe of the Wind River Reservation, Wyoming', 'Arapaho Tribe of the Wind River Reservation, Wyoming is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 343.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Northern Arapaho Tribe of the Wind River Reservation, Wyoming', [Definition] = 'Arapaho Tribe of the Wind River Reservation, Wyoming is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 343.00 WHERE [Code] = 'ArapahoTribeoftheWindRiverReservationWyoming' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NorthernCheyenneTribeoftheNorthernCheyenneIndian') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NorthernCheyenneTribeoftheNorthernCheyenneIndian', 'Northern Cheyenne Tribe of the Northern Cheyenne Indian Reservation, Montana', 'Northern Cheyenne Tribe of the Northern Cheyenne Indian Reservation, Montana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 344.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Northern Cheyenne Tribe of the Northern Cheyenne Indian Reservation, Montana', [Definition] = 'Northern Cheyenne Tribe of the Northern Cheyenne Indian Reservation, Montana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 344.00 WHERE [Code] = 'NorthernCheyenneTribeoftheNorthernCheyenneIndian' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NorthforkRancheriaofMonoIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NorthforkRancheriaofMonoIndiansofCalifornia', 'Northfork Rancheria of Mono Indians of California', 'Northfork Rancheria of Mono Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 345.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Northfork Rancheria of Mono Indians of California', [Definition] = 'Northfork Rancheria of Mono Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 345.00 WHERE [Code] = 'NorthforkRancheriaofMonoIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NorthwayVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NorthwayVillage', 'Northway Village', 'Northway Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 346.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Northway Village', [Definition] = 'Northway Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 346.00 WHERE [Code] = 'NorthwayVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NorthwesternBandoftheShoshoneNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NorthwesternBandoftheShoshoneNation', 'Northwestern Band of the Shoshone Nation', 'Northwestern Band of the Shoshone Nation (previously listed as Northwestern Band of Shoshoni Nation and the Northwestern Band of Shoshoni Nation of Utah (Washakie)) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 347.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Northwestern Band of the Shoshone Nation', [Definition] = 'Northwestern Band of the Shoshone Nation (previously listed as Northwestern Band of Shoshoni Nation and the Northwestern Band of Shoshoni Nation of Utah (Washakie)) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 347.00 WHERE [Code] = 'NorthwesternBandoftheShoshoneNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NottawaseppiHuronBandofthePotawatomiMichigan') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NottawaseppiHuronBandofthePotawatomiMichigan', 'Nottawaseppi Huron Band of the Potawatomi, Michigan', 'Nottawaseppi Huron Band of the Potawatomi, Michigan (previously listed as Huron Potawatomi, Inc.) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 348.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Nottawaseppi Huron Band of the Potawatomi, Michigan', [Definition] = 'Nottawaseppi Huron Band of the Potawatomi, Michigan (previously listed as Huron Potawatomi, Inc.) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 348.00 WHERE [Code] = 'NottawaseppiHuronBandofthePotawatomiMichigan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NulatoVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NulatoVillage', 'Nulato Village', 'Nulato Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 349.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Nulato Village', [Definition] = 'Nulato Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 349.00 WHERE [Code] = 'NulatoVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NunakauyarmiutTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NunakauyarmiutTribe', 'Nunakauyarmiut Tribe', 'Nunakauyarmiut Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 350.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Nunakauyarmiut Tribe', [Definition] = 'Nunakauyarmiut Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 350.00 WHERE [Code] = 'NunakauyarmiutTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OglalaSiouxTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OglalaSiouxTribe', 'Oglala Sioux Tribe', 'Oglala Sioux Tribe (previously listed as Oglala Sioux Tribe of the Pine Ridge Reservation, South Dakota) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 351.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Oglala Sioux Tribe', [Definition] = 'Oglala Sioux Tribe (previously listed as Oglala Sioux Tribe of the Pine Ridge Reservation, South Dakota) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 351.00 WHERE [Code] = 'OglalaSiouxTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OhkayOwingehNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OhkayOwingehNewMexico', 'Ohkay Owingeh, New Mexico', 'Ohkay Owingeh, New Mexico (previously listed as Pueblo of San Juan) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 352.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ohkay Owingeh, New Mexico', [Definition] = 'Ohkay Owingeh, New Mexico (previously listed as Pueblo of San Juan) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 352.00 WHERE [Code] = 'OhkayOwingehNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OmahaTribeofNebraska') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OmahaTribeofNebraska', 'Omaha Tribe of Nebraska', 'Omaha Tribe of Nebraska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 353.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Omaha Tribe of Nebraska', [Definition] = 'Omaha Tribe of Nebraska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 353.00 WHERE [Code] = 'OmahaTribeofNebraska' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OneidaIndianNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OneidaIndianNation', 'Oneida Indian Nation', 'Oneida Indian Nation (previously listed as Oneida Nation of New York) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 354.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Oneida Indian Nation', [Definition] = 'Oneida Indian Nation (previously listed as Oneida Nation of New York) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 354.00 WHERE [Code] = 'OneidaIndianNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OneidaNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OneidaNation', 'Oneida Nation', 'Oneida Nation (previously listed as Oneida Tribe of Indians of Wisconsin) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 355.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Oneida Nation', [Definition] = 'Oneida Nation (previously listed as Oneida Tribe of Indians of Wisconsin) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 355.00 WHERE [Code] = 'OneidaNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OnondagaNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OnondagaNation', 'Onondaga Nation', 'Onondaga Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 356.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Onondaga Nation', [Definition] = 'Onondaga Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 356.00 WHERE [Code] = 'OnondagaNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OrganizedVillageofGrayling') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OrganizedVillageofGrayling', 'Organized Village of Grayling', 'Organized Village of Grayling (aka Holikachuk) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 357.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Organized Village of Grayling', [Definition] = 'Organized Village of Grayling (aka Holikachuk) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 357.00 WHERE [Code] = 'OrganizedVillageofGrayling' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OrganizedVillageofKake') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OrganizedVillageofKake', 'Organized Village of Kake', 'Organized Village of Kake is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 358.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Organized Village of Kake', [Definition] = 'Organized Village of Kake is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 358.00 WHERE [Code] = 'OrganizedVillageofKake' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OrganizedVillageofKasaan') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OrganizedVillageofKasaan', 'Organized Village of Kasaan', 'Organized Village of Kasaan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 359.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Organized Village of Kasaan', [Definition] = 'Organized Village of Kasaan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 359.00 WHERE [Code] = 'OrganizedVillageofKasaan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OrganizedVillageofKwethluk') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OrganizedVillageofKwethluk', 'Organized Village of Kwethluk', 'Organized Village of Kwethluk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 360.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Organized Village of Kwethluk', [Definition] = 'Organized Village of Kwethluk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 360.00 WHERE [Code] = 'OrganizedVillageofKwethluk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OrganizedVillageofSaxman') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OrganizedVillageofSaxman', 'Organized Village of Saxman', 'Organized Village of Saxman is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 361.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Organized Village of Saxman', [Definition] = 'Organized Village of Saxman is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 361.00 WHERE [Code] = 'OrganizedVillageofSaxman' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OrutsararmiutTraditionalNativeCouncil') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OrutsararmiutTraditionalNativeCouncil', 'Orutsararmiut Traditional Native Council', 'Orutsararmiut Traditional Native Council (previously listed as Orutsararmuit Native Village (aka Bethel)) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 362.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Orutsararmiut Traditional Native Council', [Definition] = 'Orutsararmiut Traditional Native Council (previously listed as Orutsararmuit Native Village (aka Bethel)) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 362.00 WHERE [Code] = 'OrutsararmiutTraditionalNativeCouncil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OscarvilleTraditionalVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OscarvilleTraditionalVillage', 'Oscarville Traditional Village', 'Oscarville Traditional Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 363.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Oscarville Traditional Village', [Definition] = 'Oscarville Traditional Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 363.00 WHERE [Code] = 'OscarvilleTraditionalVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OtoeMissouriaTribeofIndiansOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtoeMissouriaTribeofIndiansOklahoma', 'Otoe-Missouria Tribe of Indians, Oklahoma', 'Otoe-Missouria Tribe of Indians, Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 364.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Otoe-Missouria Tribe of Indians, Oklahoma', [Definition] = 'Otoe-Missouria Tribe of Indians, Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 364.00 WHERE [Code] = 'OtoeMissouriaTribeofIndiansOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'OttawaTribeofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OttawaTribeofOklahoma', 'Ottawa Tribe of Oklahoma', 'Ottawa Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 365.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ottawa Tribe of Oklahoma', [Definition] = 'Ottawa Tribe of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 365.00 WHERE [Code] = 'OttawaTribeofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PaiuteIndianTribeofUtah') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PaiuteIndianTribeofUtah', 'Paiute Indian Tribe of Utah', 'Paiute Indian Tribe of Utah (Cedar Band of Paiutes, Kanosh Band of Paiutes, Koosharem Band of Paiutes, Indian Peaks Band of Paiutes, and Shivwits Band of Paiutes (previously listed as Paiute Indian Tribe of Utah (Cedar City Band of Paiutes, Kanosh Band of Paiutes, Koosharem Band of Paiutes, Indian Peaks Band of Paiutes, and Shivwits Band of Paiutes)) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 366.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Paiute Indian Tribe of Utah', [Definition] = 'Paiute Indian Tribe of Utah (Cedar Band of Paiutes, Kanosh Band of Paiutes, Koosharem Band of Paiutes, Indian Peaks Band of Paiutes, and Shivwits Band of Paiutes (previously listed as Paiute Indian Tribe of Utah (Cedar City Band of Paiutes, Kanosh Band of Paiutes, Koosharem Band of Paiutes, Indian Peaks Band of Paiutes, and Shivwits Band of Paiutes)) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 366.00 WHERE [Code] = 'PaiuteIndianTribeofUtah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PaiuteShoshoneTribeoftheFallonReservationandColony') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PaiuteShoshoneTribeoftheFallonReservationandColony', 'Paiute-Shoshone Tribe of the Fallon Reservation and Colony, Nevada', 'Paiute-Shoshone Tribe of the Fallon Reservation and Colony, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 367.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Paiute-Shoshone Tribe of the Fallon Reservation and Colony, Nevada', [Definition] = 'Paiute-Shoshone Tribe of the Fallon Reservation and Colony, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 367.00 WHERE [Code] = 'PaiuteShoshoneTribeoftheFallonReservationandColony' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PalaBandofMissionIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PalaBandofMissionIndians', 'Pala Band of Mission Indians', 'Pala Band of Mission Indians (previously listed as Pala Band of Luiseno Mission Indians of the Pala Reservation, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 368.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pala Band of Mission Indians', [Definition] = 'Pala Band of Mission Indians (previously listed as Pala Band of Luiseno Mission Indians of the Pala Reservation, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 368.00 WHERE [Code] = 'PalaBandofMissionIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PamunkeyIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PamunkeyIndianTribe', 'Pamunkey Indian Tribe', 'Pamunkey Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 369.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pamunkey Indian Tribe', [Definition] = 'Pamunkey Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 369.00 WHERE [Code] = 'PamunkeyIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PascuaYaquiTribeofArizona') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PascuaYaquiTribeofArizona', 'Pascua Yaqui Tribe of Arizona', 'Pascua Yaqui Tribe of Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 370.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pascua Yaqui Tribe of Arizona', [Definition] = 'Pascua Yaqui Tribe of Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 370.00 WHERE [Code] = 'PascuaYaquiTribeofArizona' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PaskentaBandofNomlakiIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PaskentaBandofNomlakiIndiansofCalifornia', 'Paskenta Band of Nomlaki Indians of California', 'Paskenta Band of Nomlaki Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 371.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Paskenta Band of Nomlaki Indians of California', [Definition] = 'Paskenta Band of Nomlaki Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 371.00 WHERE [Code] = 'PaskentaBandofNomlakiIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PassamaquoddyTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PassamaquoddyTribe', 'Passamaquoddy Tribe', 'Passamaquoddy Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 372.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Passamaquoddy Tribe', [Definition] = 'Passamaquoddy Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 372.00 WHERE [Code] = 'PassamaquoddyTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PauloffHarborVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PauloffHarborVillage', 'Pauloff Harbor Village', 'Pauloff Harbor Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 373.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pauloff Harbor Village', [Definition] = 'Pauloff Harbor Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 373.00 WHERE [Code] = 'PauloffHarborVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PaumaBandofLuisenoMissionIndiansofthePaumaYuima') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PaumaBandofLuisenoMissionIndiansofthePaumaYuima', 'Pauma Band of Luiseno Mission Indians of the Pauma & Yuima Reservation, California', 'Pauma Band of Luiseno Mission Indians of the Pauma & Yuima Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 374.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pauma Band of Luiseno Mission Indians of the Pauma & Yuima Reservation, California', [Definition] = 'Pauma Band of Luiseno Mission Indians of the Pauma & Yuima Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 374.00 WHERE [Code] = 'PaumaBandofLuisenoMissionIndiansofthePaumaYuima' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PawneeNationofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PawneeNationofOklahoma', 'Pawnee Nation of Oklahoma', 'Pawnee Nation of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 375.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pawnee Nation of Oklahoma', [Definition] = 'Pawnee Nation of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 375.00 WHERE [Code] = 'PawneeNationofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PechangaBandofLuisenoMissionIndiansofthePechanga') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PechangaBandofLuisenoMissionIndiansofthePechanga', 'Pechanga Band of Luiseno Mission Indians of the Pechanga Reservation, California', 'Pechanga Band of Luiseno Mission Indians of the Pechanga Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 376.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pechanga Band of Luiseno Mission Indians of the Pechanga Reservation, California', [Definition] = 'Pechanga Band of Luiseno Mission Indians of the Pechanga Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 376.00 WHERE [Code] = 'PechangaBandofLuisenoMissionIndiansofthePechanga' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PedroBayVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PedroBayVillage', 'Pedro Bay Village', 'Pedro Bay Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 377.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pedro Bay Village', [Definition] = 'Pedro Bay Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 377.00 WHERE [Code] = 'PedroBayVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PenobscotNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PenobscotNation', 'Penobscot Nation', 'Penobscot Nation (previously listed as Penobscot Tribe of Maine) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 378.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Penobscot Nation', [Definition] = 'Penobscot Nation (previously listed as Penobscot Tribe of Maine) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 378.00 WHERE [Code] = 'PenobscotNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PeoriaTribeofIndiansofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PeoriaTribeofIndiansofOklahoma', 'Peoria Tribe of Indians of Oklahoma', 'Peoria Tribe of Indians of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 379.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Peoria Tribe of Indians of Oklahoma', [Definition] = 'Peoria Tribe of Indians of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 379.00 WHERE [Code] = 'PeoriaTribeofIndiansofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PetersburgIndianAssociation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PetersburgIndianAssociation', 'Petersburg Indian Association', 'Petersburg Indian Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 380.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Petersburg Indian Association', [Definition] = 'Petersburg Indian Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 380.00 WHERE [Code] = 'PetersburgIndianAssociation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PicayuneRancheriaofChukchansiIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PicayuneRancheriaofChukchansiIndiansofCalifornia', 'Picayune Rancheria of Chukchansi Indians of California', 'Picayune Rancheria of Chukchansi Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 381.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Picayune Rancheria of Chukchansi Indians of California', [Definition] = 'Picayune Rancheria of Chukchansi Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 381.00 WHERE [Code] = 'PicayuneRancheriaofChukchansiIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PilotStationTraditionalVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PilotStationTraditionalVillage', 'Pilot Station Traditional Village', 'Pilot Station Traditional Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 382.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pilot Station Traditional Village', [Definition] = 'Pilot Station Traditional Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 382.00 WHERE [Code] = 'PilotStationTraditionalVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PinolevillePomoNationCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PinolevillePomoNationCalifornia', 'Pinoleville Pomo Nation, California', 'Pinoleville Pomo Nation, California (previously listed as Pinoleville Rancheria of Pomo Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 383.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pinoleville Pomo Nation, California', [Definition] = 'Pinoleville Pomo Nation, California (previously listed as Pinoleville Rancheria of Pomo Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 383.00 WHERE [Code] = 'PinolevillePomoNationCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PitRiverTribeCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PitRiverTribeCalifornia', 'Pit River Tribe, California', 'Pit River Tribe, California (includes XL Ranch, Big Bend, Likely, Lookout, Montgomery Creek and Roaring Creek Rancherias) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 384.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pit River Tribe, California', [Definition] = 'Pit River Tribe, California (includes XL Ranch, Big Bend, Likely, Lookout, Montgomery Creek and Roaring Creek Rancherias) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 384.00 WHERE [Code] = 'PitRiverTribeCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'NativeVillageofPitkasPoint') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NativeVillageofPitkasPoint', 'Pitka''s Point Traditional Council', 'Pitka''s Point Traditional Council (previously listed as Native Village of Pitka''s Point) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 385.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pitka''s Point Traditional Council', [Definition] = 'Pitka''s Point Traditional Council (previously listed as Native Village of Pitka''s Point) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 385.00 WHERE [Code] = 'NativeVillageofPitkasPoint' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PlatinumTraditionalVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PlatinumTraditionalVillage', 'Platinum Traditional Village', 'Platinum Traditional Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 386.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Platinum Traditional Village', [Definition] = 'Platinum Traditional Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 386.00 WHERE [Code] = 'PlatinumTraditionalVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PoarchBandofCreeks') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PoarchBandofCreeks', 'Poarch Band of Creek Indians', 'Poarch Band of Creeks (previously listed as Poarch Band of Creek Indians of Alabama) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 387.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Poarch Band of Creek Indians', [Definition] = 'Poarch Band of Creeks (previously listed as Poarch Band of Creek Indians of Alabama) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 387.00 WHERE [Code] = 'PoarchBandofCreeks' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PokagonBandofPotawatomiIndiansMichiganandIndiana') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PokagonBandofPotawatomiIndiansMichiganandIndiana', 'Pokagon Band of Potawatomi Indians, Michigan and Indiana', 'Pokagon Band of Potawatomi Indians, Michigan and Indiana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 388.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pokagon Band of Potawatomi Indians, Michigan and Indiana', [Definition] = 'Pokagon Band of Potawatomi Indians, Michigan and Indiana is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 388.00 WHERE [Code] = 'PokagonBandofPotawatomiIndiansMichiganandIndiana' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PoncaTribeofIndiansofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PoncaTribeofIndiansofOklahoma', 'Ponca Tribe of Indians of Oklahoma', 'Ponca Tribe of Indians of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 389.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ponca Tribe of Indians of Oklahoma', [Definition] = 'Ponca Tribe of Indians of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 389.00 WHERE [Code] = 'PoncaTribeofIndiansofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PoncaTribeofNebraska') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PoncaTribeofNebraska', 'Ponca Tribe of Nebraska', 'Ponca Tribe of Nebraska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 390.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ponca Tribe of Nebraska', [Definition] = 'Ponca Tribe of Nebraska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 390.00 WHERE [Code] = 'PoncaTribeofNebraska' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PortGambleSKlallamTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PortGambleSKlallamTribe', 'Port Gamble S''Klallam Tribe', 'Port Gamble S''Klallam Tribe (previously listed as Port Gamble Band of S''Klallam Indians) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 391.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Port Gamble S''Klallam Tribe', [Definition] = 'Port Gamble S''Klallam Tribe (previously listed as Port Gamble Band of S''Klallam Indians) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 391.00 WHERE [Code] = 'PortGambleSKlallamTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PortageCreekVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PortageCreekVillage', 'Portage Creek Village', 'Portage Creek Village (aka Ohgsenakale) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 392.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Portage Creek Village', [Definition] = 'Portage Creek Village (aka Ohgsenakale) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 392.00 WHERE [Code] = 'PortageCreekVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PotterValleyTribeCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PotterValleyTribeCalifornia', 'Potter Valley Tribe, California', 'Potter Valley Tribe, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 393.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Potter Valley Tribe, California', [Definition] = 'Potter Valley Tribe, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 393.00 WHERE [Code] = 'PotterValleyTribeCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PrairieBandPotawatomiNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrairieBandPotawatomiNation', 'Prairie Band Potawatomi Nation', 'Prairie Band Potawatomi Nation (previously listed as Prairie Band of Potawatomi Nation, Kansas) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 394.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Prairie Band Potawatomi Nation', [Definition] = 'Prairie Band Potawatomi Nation (previously listed as Prairie Band of Potawatomi Nation, Kansas) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 394.00 WHERE [Code] = 'PrairieBandPotawatomiNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PrairieIslandIndianCommunityintheStateofMinnesota') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PrairieIslandIndianCommunityintheStateofMinnesota', 'Prairie Island Indian Community in the State of Minnesota', 'Prairie Island Indian Community in the State of Minnesota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 395.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Prairie Island Indian Community in the State of Minnesota', [Definition] = 'Prairie Island Indian Community in the State of Minnesota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 395.00 WHERE [Code] = 'PrairieIslandIndianCommunityintheStateofMinnesota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PribilofIslandsAleutCommunitiesofSt.PaulSt.George') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PribilofIslandsAleutCommunitiesofSt.PaulSt.George', 'Pribilof Islands Aleut Communities of St. Paul & St. George Islands', 'Pribilof Islands Aleut Communities of St. Paul & St. George Islands is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 396.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pribilof Islands Aleut Communities of St. Paul & St. George Islands', [Definition] = 'Pribilof Islands Aleut Communities of St. Paul & St. George Islands is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 396.00 WHERE [Code] = 'PribilofIslandsAleutCommunitiesofSt.PaulSt.George' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofAcomaNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofAcomaNewMexico', 'Pueblo of Acoma, New Mexico', 'Pueblo of Acoma, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 397.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of Acoma, New Mexico', [Definition] = 'Pueblo of Acoma, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 397.00 WHERE [Code] = 'PuebloofAcomaNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofCochitiNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofCochitiNewMexico', 'Pueblo of Cochiti, New Mexico', 'Pueblo of Cochiti, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 398.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of Cochiti, New Mexico', [Definition] = 'Pueblo of Cochiti, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 398.00 WHERE [Code] = 'PuebloofCochitiNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofIsletaNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofIsletaNewMexico', 'Pueblo of Isleta, New Mexico', 'Pueblo of Isleta, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 399.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of Isleta, New Mexico', [Definition] = 'Pueblo of Isleta, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 399.00 WHERE [Code] = 'PuebloofIsletaNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofJemezNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofJemezNewMexico', 'Pueblo of Jemez, New Mexico', 'Pueblo of Jemez, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 400.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of Jemez, New Mexico', [Definition] = 'Pueblo of Jemez, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 400.00 WHERE [Code] = 'PuebloofJemezNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofLagunaNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofLagunaNewMexico', 'Pueblo of Laguna, New Mexico', 'Pueblo of Laguna, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 401.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of Laguna, New Mexico', [Definition] = 'Pueblo of Laguna, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 401.00 WHERE [Code] = 'PuebloofLagunaNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofNambeNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofNambeNewMexico', 'Pueblo of Nambe, New Mexico', 'Pueblo of Nambe, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 402.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of Nambe, New Mexico', [Definition] = 'Pueblo of Nambe, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 402.00 WHERE [Code] = 'PuebloofNambeNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofPicurisNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofPicurisNewMexico', 'Pueblo of Picuris, New Mexico', 'Pueblo of Picuris, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 403.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of Picuris, New Mexico', [Definition] = 'Pueblo of Picuris, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 403.00 WHERE [Code] = 'PuebloofPicurisNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofPojoaqueNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofPojoaqueNewMexico', 'Pueblo of Pojoaque, New Mexico', 'Pueblo of Pojoaque, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 404.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of Pojoaque, New Mexico', [Definition] = 'Pueblo of Pojoaque, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 404.00 WHERE [Code] = 'PuebloofPojoaqueNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofSanFelipeNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofSanFelipeNewMexico', 'Pueblo of San Felipe, New Mexico', 'Pueblo of San Felipe, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 405.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of San Felipe, New Mexico', [Definition] = 'Pueblo of San Felipe, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 405.00 WHERE [Code] = 'PuebloofSanFelipeNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofSanIldefonsoNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofSanIldefonsoNewMexico', 'Pueblo of San Ildefonso, New Mexico', 'Pueblo of San Ildefonso, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 406.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of San Ildefonso, New Mexico', [Definition] = 'Pueblo of San Ildefonso, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 406.00 WHERE [Code] = 'PuebloofSanIldefonsoNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofSandiaNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofSandiaNewMexico', 'Pueblo of Sandia, New Mexico', 'Pueblo of Sandia, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 407.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of Sandia, New Mexico', [Definition] = 'Pueblo of Sandia, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 407.00 WHERE [Code] = 'PuebloofSandiaNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofSantaAnaNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofSantaAnaNewMexico', 'Pueblo of Santa Ana, New Mexico', 'Pueblo of Santa Ana, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 408.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of Santa Ana, New Mexico', [Definition] = 'Pueblo of Santa Ana, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 408.00 WHERE [Code] = 'PuebloofSantaAnaNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofSantaClaraNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofSantaClaraNewMexico', 'Pueblo of Santa Clara, New Mexico', 'Pueblo of Santa Clara, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 409.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of Santa Clara, New Mexico', [Definition] = 'Pueblo of Santa Clara, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 409.00 WHERE [Code] = 'PuebloofSantaClaraNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofTaosNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofTaosNewMexico', 'Pueblo of Taos, New Mexico', 'Pueblo of Taos, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 410.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of Taos, New Mexico', [Definition] = 'Pueblo of Taos, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 410.00 WHERE [Code] = 'PuebloofTaosNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofTesuqueNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofTesuqueNewMexico', 'Pueblo of Tesuque, New Mexico', 'Pueblo of Tesuque, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 411.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of Tesuque, New Mexico', [Definition] = 'Pueblo of Tesuque, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 411.00 WHERE [Code] = 'PuebloofTesuqueNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuebloofZiaNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuebloofZiaNewMexico', 'Pueblo of Zia, New Mexico', 'Pueblo of Zia, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 412.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pueblo of Zia, New Mexico', [Definition] = 'Pueblo of Zia, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 412.00 WHERE [Code] = 'PuebloofZiaNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PuyallupTribeofthePuyallupReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PuyallupTribeofthePuyallupReservation', 'Puyallup Tribe of the Puyallup Reservation', 'Puyallup Tribe of the Puyallup Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 413.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Puyallup Tribe of the Puyallup Reservation', [Definition] = 'Puyallup Tribe of the Puyallup Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 413.00 WHERE [Code] = 'PuyallupTribeofthePuyallupReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'PyramidLakePaiuteTribeofthePyramidLakeReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PyramidLakePaiuteTribeofthePyramidLakeReservation', 'Pyramid Lake Paiute Tribe of the Pyramid Lake Reservation, Nevada', 'Pyramid Lake Paiute Tribe of the Pyramid Lake Reservation, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 414.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Pyramid Lake Paiute Tribe of the Pyramid Lake Reservation, Nevada', [Definition] = 'Pyramid Lake Paiute Tribe of the Pyramid Lake Reservation, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 414.00 WHERE [Code] = 'PyramidLakePaiuteTribeofthePyramidLakeReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'QaganTayagunginTribeofSandPointVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('QaganTayagunginTribeofSandPointVillage', 'Qagan Tayagungin Tribe of Sand Point', 'Qagan Tayagungin Tribe of Sand Point (previously listed as Qagan Tayagungin Tribe of Sand Point Village) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 415.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Qagan Tayagungin Tribe of Sand Point', [Definition] = 'Qagan Tayagungin Tribe of Sand Point (previously listed as Qagan Tayagungin Tribe of Sand Point Village) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 415.00 WHERE [Code] = 'QaganTayagunginTribeofSandPointVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'QawalanginTribeofUnalaska') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('QawalanginTribeofUnalaska', 'Qawalangin Tribe of Unalaska', 'Qawalangin Tribe of Unalaska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 416.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Qawalangin Tribe of Unalaska', [Definition] = 'Qawalangin Tribe of Unalaska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 416.00 WHERE [Code] = 'QawalanginTribeofUnalaska' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TheQuapawTribeofIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TheQuapawTribeofIndians', 'Quapaw Nation', 'Quapaw Nation (previously listed as The Quapaw Tribe of Indians) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 417.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Quapaw Nation', [Definition] = 'Quapaw Nation (previously listed as The Quapaw Tribe of Indians) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 417.00 WHERE [Code] = 'TheQuapawTribeofIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'QuartzValleyIndianCommunityoftheQuartzValley') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('QuartzValleyIndianCommunityoftheQuartzValley', 'Quartz Valley Indian Community of the Quartz Valley Reservation of California', 'Quartz Valley Indian Community of the Quartz Valley Reservation of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 418.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Quartz Valley Indian Community of the Quartz Valley Reservation of California', [Definition] = 'Quartz Valley Indian Community of the Quartz Valley Reservation of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 418.00 WHERE [Code] = 'QuartzValleyIndianCommunityoftheQuartzValley' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'QuechanTribeoftheFortYumaIndianReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('QuechanTribeoftheFortYumaIndianReservation', 'Quechan Tribe of the Fort Yuma Indian Reservation, California & Arizona', 'Quechan Tribe of the Fort Yuma Indian Reservation, California & Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 419.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Quechan Tribe of the Fort Yuma Indian Reservation, California & Arizona', [Definition] = 'Quechan Tribe of the Fort Yuma Indian Reservation, California & Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 419.00 WHERE [Code] = 'QuechanTribeoftheFortYumaIndianReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'QuileuteTribeoftheQuileuteReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('QuileuteTribeoftheQuileuteReservation', 'Quileute Tribe of the Quileute Reservation', 'Quileute Tribe of the Quileute Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 420.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Quileute Tribe of the Quileute Reservation', [Definition] = 'Quileute Tribe of the Quileute Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 420.00 WHERE [Code] = 'QuileuteTribeoftheQuileuteReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'QuinaultIndianNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('QuinaultIndianNation', 'Quinault Indian Nation', 'Quinault Indian Nation (previously listed as Quinault Tribe of the Quinault Reservation, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 421.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Quinault Indian Nation', [Definition] = 'Quinault Indian Nation (previously listed as Quinault Tribe of the Quinault Reservation, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 421.00 WHERE [Code] = 'QuinaultIndianNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'RamonaBandofCahuillaCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RamonaBandofCahuillaCalifornia', 'Ramona Band of Cahuilla, California', 'Ramona Band of Cahuilla, California (previously listed as Ramona Band or Village of Cahuilla Mission Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 422.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ramona Band of Cahuilla, California', [Definition] = 'Ramona Band of Cahuilla, California (previously listed as Ramona Band or Village of Cahuilla Mission Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 422.00 WHERE [Code] = 'RamonaBandofCahuillaCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'RampartVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RampartVillage', 'Rampart Village', 'Rampart Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 423.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Rampart Village', [Definition] = 'Rampart Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 423.00 WHERE [Code] = 'RampartVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'RappahannockTribeInc.') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RappahannockTribeInc.', 'Rappahannock Tribe, Inc.', 'Rappahannock Tribe, Inc. is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 424.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Rappahannock Tribe, Inc.', [Definition] = 'Rappahannock Tribe, Inc. is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 424.00 WHERE [Code] = 'RappahannockTribeInc.' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'RedCliffBandofLakeSuperiorChippewaIndiansof') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RedCliffBandofLakeSuperiorChippewaIndiansof', 'Red Cliff Band of Lake Superior Chippewa Indians of Wisconsin', 'Red Cliff Band of Lake Superior Chippewa Indians of Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 425.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Red Cliff Band of Lake Superior Chippewa Indians of Wisconsin', [Definition] = 'Red Cliff Band of Lake Superior Chippewa Indians of Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 425.00 WHERE [Code] = 'RedCliffBandofLakeSuperiorChippewaIndiansof' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'RedLakeBandofChippewaIndiansMinnesota') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RedLakeBandofChippewaIndiansMinnesota', 'Red Lake Band of Chippewa Indians, Minnesota', 'Red Lake Band of Chippewa Indians, Minnesota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 426.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Red Lake Band of Chippewa Indians, Minnesota', [Definition] = 'Red Lake Band of Chippewa Indians, Minnesota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 426.00 WHERE [Code] = 'RedLakeBandofChippewaIndiansMinnesota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ReddingRancheriaCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ReddingRancheriaCalifornia', 'Redding Rancheria, California', 'Redding Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 427.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Redding Rancheria, California', [Definition] = 'Redding Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 427.00 WHERE [Code] = 'ReddingRancheriaCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'RedwoodValleyorLittleRiverBandofPomoIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RedwoodValleyorLittleRiverBandofPomoIndians', 'Redwood Valley or Little River Band of Pomo Indians of the Redwood Valley Rancheria California', 'Redwood Valley or Little River Band of Pomo Indians of the Redwood Valley Rancheria California (previously listed as Redwood Valley Rancheria of Pomo Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 428.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Redwood Valley or Little River Band of Pomo Indians of the Redwood Valley Rancheria California', [Definition] = 'Redwood Valley or Little River Band of Pomo Indians of the Redwood Valley Rancheria California (previously listed as Redwood Valley Rancheria of Pomo Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 428.00 WHERE [Code] = 'RedwoodValleyorLittleRiverBandofPomoIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'RenoSparksIndianColonyNevada') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RenoSparksIndianColonyNevada', 'Reno-Sparks Indian Colony, Nevada', 'Reno-Sparks Indian Colony, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 429.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Reno-Sparks Indian Colony, Nevada', [Definition] = 'Reno-Sparks Indian Colony, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 429.00 WHERE [Code] = 'RenoSparksIndianColonyNevada' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ResighiniRancheriaCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ResighiniRancheriaCalifornia', 'Resighini Rancheria, California', 'Resighini Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 430.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Resighini Rancheria, California', [Definition] = 'Resighini Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 430.00 WHERE [Code] = 'ResighiniRancheriaCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'RinconBandofLuisenoMissionIndiansoftheRincon') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RinconBandofLuisenoMissionIndiansoftheRincon', 'Rincon Band of Luiseno Mission Indians of Rincon Reservation, California', 'Rincon Band of Luiseno Mission Indians of Rincon Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 431.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Rincon Band of Luiseno Mission Indians of Rincon Reservation, California', [Definition] = 'Rincon Band of Luiseno Mission Indians of Rincon Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 431.00 WHERE [Code] = 'RinconBandofLuisenoMissionIndiansoftheRincon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'RobinsonRancheria') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RobinsonRancheria', 'Robinson Rancheria', 'Robinson Rancheria (previously listed as Robinson Rancheria Band of Pomo Indians, California and the Robinson Rancheria of Pomo Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 432.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Robinson Rancheria', [Definition] = 'Robinson Rancheria (previously listed as Robinson Rancheria Band of Pomo Indians, California and the Robinson Rancheria of Pomo Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 432.00 WHERE [Code] = 'RobinsonRancheria' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'RosebudSiouxTribeoftheRosebudIndianReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RosebudSiouxTribeoftheRosebudIndianReservation', 'Rosebud Sioux Tribe of the Rosebud Indian Reservation, South Dakota', 'Rosebud Sioux Tribe of the Rosebud Indian Reservation, South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 433.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Rosebud Sioux Tribe of the Rosebud Indian Reservation, South Dakota', [Definition] = 'Rosebud Sioux Tribe of the Rosebud Indian Reservation, South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 433.00 WHERE [Code] = 'RosebudSiouxTribeoftheRosebudIndianReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'RoundValleyIndianTribesRoundValleyReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('RoundValleyIndianTribesRoundValleyReservation', 'Round Valley Indian Tribes, Round Valley Reservation, California', 'Round Valley Indian Tribes, Round Valley Reservation, California (previously listed as Round Valley Indian Tribes of the Round Valley Reservation, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 434.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Round Valley Indian Tribes, Round Valley Reservation, California', [Definition] = 'Round Valley Indian Tribes, Round Valley Reservation, California (previously listed as Round Valley Indian Tribes of the Round Valley Reservation, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 434.00 WHERE [Code] = 'RoundValleyIndianTribesRoundValleyReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SacFoxNationofMissouriinKansasandNebraska') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SacFoxNationofMissouriinKansasandNebraska', 'Sac & Fox Nation of Missouri in Kansas and Nebraska', 'Sac & Fox Nation of Missouri in Kansas and Nebraska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 435.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Sac & Fox Nation of Missouri in Kansas and Nebraska', [Definition] = 'Sac & Fox Nation of Missouri in Kansas and Nebraska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 435.00 WHERE [Code] = 'SacFoxNationofMissouriinKansasandNebraska' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SacFoxNationOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SacFoxNationOklahoma', 'Sac & Fox Nation, Oklahoma', 'Sac & Fox Nation, Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 436.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Sac & Fox Nation, Oklahoma', [Definition] = 'Sac & Fox Nation, Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 436.00 WHERE [Code] = 'SacFoxNationOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SacFoxTribeoftheMississippiinIowa') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SacFoxTribeoftheMississippiinIowa', 'Sac & Fox Tribe of the Mississippi in Iowa', 'Sac & Fox Tribe of the Mississippi in Iowa is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 437.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Sac & Fox Tribe of the Mississippi in Iowa', [Definition] = 'Sac & Fox Tribe of the Mississippi in Iowa is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 437.00 WHERE [Code] = 'SacFoxTribeoftheMississippiinIowa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SaginawChippewaIndianTribeofMichigan') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SaginawChippewaIndianTribeofMichigan', 'Saginaw Chippewa Indian Tribe of Michigan', 'Saginaw Chippewa Indian Tribe of Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 438.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Saginaw Chippewa Indian Tribe of Michigan', [Definition] = 'Saginaw Chippewa Indian Tribe of Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 438.00 WHERE [Code] = 'SaginawChippewaIndianTribeofMichigan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SaintGeorgeIsland') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SaintGeorgeIsland', 'Saint George Island', 'Saint George Island (See Pribilof Islands Aleut Communities of St. Paul & St. George Islands) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 439.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Saint George Island', [Definition] = 'Saint George Island (See Pribilof Islands Aleut Communities of St. Paul & St. George Islands) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 439.00 WHERE [Code] = 'SaintGeorgeIsland' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SaintPaulIsland') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SaintPaulIsland', 'Saint Paul Island', 'Saint Paul Island (See Pribilof Islands Aleut Communities of St. Paul & St. George Islands) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 440.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Saint Paul Island', [Definition] = 'Saint Paul Island (See Pribilof Islands Aleut Communities of St. Paul & St. George Islands) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 440.00 WHERE [Code] = 'SaintPaulIsland' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SaintRegisMohawkTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SaintRegisMohawkTribe', 'Saint Regis Mohawk Tribe', 'Saint Regis Mohawk Tribe (previously listed as St. Regis Band of Mohawk Indians of New York) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 441.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Saint Regis Mohawk Tribe', [Definition] = 'Saint Regis Mohawk Tribe (previously listed as St. Regis Band of Mohawk Indians of New York) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 441.00 WHERE [Code] = 'SaintRegisMohawkTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SalamatofTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SalamatofTribe', 'Salamatof Tribe', 'Salamatof Tribe (previously listed as Village of Salamatoff) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 442.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Salamatof Tribe', [Definition] = 'Salamatof Tribe (previously listed as Village of Salamatoff) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 442.00 WHERE [Code] = 'SalamatofTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SaltRiverPimaMaricopaIndianCommunityoftheSaltRiver') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SaltRiverPimaMaricopaIndianCommunityoftheSaltRiver', 'Salt River Pima-Maricopa Indian Community of the Salt River Reservation, Arizona', 'Salt River Pima-Maricopa Indian Community of the Salt River Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 443.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Salt River Pima-Maricopa Indian Community of the Salt River Reservation, Arizona', [Definition] = 'Salt River Pima-Maricopa Indian Community of the Salt River Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 443.00 WHERE [Code] = 'SaltRiverPimaMaricopaIndianCommunityoftheSaltRiver' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SamishIndianNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SamishIndianNation', 'Samish Indian Nation', 'Samish Indian Nation (previously listed as Samish Indian Tribe, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 444.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Samish Indian Nation', [Definition] = 'Samish Indian Nation (previously listed as Samish Indian Tribe, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 444.00 WHERE [Code] = 'SamishIndianNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SanCarlosApacheTribeoftheSanCarlosReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SanCarlosApacheTribeoftheSanCarlosReservation', 'San Carlos Apache Tribe of the San Carlos Reservation, Arizona', 'San Carlos Apache Tribe of the San Carlos Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 445.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'San Carlos Apache Tribe of the San Carlos Reservation, Arizona', [Definition] = 'San Carlos Apache Tribe of the San Carlos Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 445.00 WHERE [Code] = 'SanCarlosApacheTribeoftheSanCarlosReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SanJuanSouthernPaiuteTribeofArizona') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SanJuanSouthernPaiuteTribeofArizona', 'San Juan Southern Paiute Tribe of Arizona', 'San Juan Southern Paiute Tribe of Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 446.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'San Juan Southern Paiute Tribe of Arizona', [Definition] = 'San Juan Southern Paiute Tribe of Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 446.00 WHERE [Code] = 'SanJuanSouthernPaiuteTribeofArizona' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SanManuelBandofMissionIndiansCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SanManuelBandofMissionIndiansCalifornia', 'San Manuel Band of Mission Indians, California', 'San Manuel Band of Mission Indians, California (previously listed as San Manual Band of Serrano Mission Indians of the San Manual Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 447.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'San Manuel Band of Mission Indians, California', [Definition] = 'San Manuel Band of Mission Indians, California (previously listed as San Manual Band of Serrano Mission Indians of the San Manual Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 447.00 WHERE [Code] = 'SanManuelBandofMissionIndiansCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SanPasqualBandofDieguenoMissionIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SanPasqualBandofDieguenoMissionIndiansofCalifornia', 'San Pasqual Band of Diegueno Mission Indians of California', 'San Pasqual Band of Diegueno Mission Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 448.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'San Pasqual Band of Diegueno Mission Indians of California', [Definition] = 'San Pasqual Band of Diegueno Mission Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 448.00 WHERE [Code] = 'SanPasqualBandofDieguenoMissionIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SantaRosaBandofCahuillaIndiansCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SantaRosaBandofCahuillaIndiansCalifornia', 'Santa Rosa Band of Cahuilla Indians, California', 'Santa Rosa Band of Cahuilla Indians, California (previously listed as Santa Rosa Band of Cahuilla Mission Indians of the Santa Rosa Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 449.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Santa Rosa Band of Cahuilla Indians, California', [Definition] = 'Santa Rosa Band of Cahuilla Indians, California (previously listed as Santa Rosa Band of Cahuilla Mission Indians of the Santa Rosa Reservation) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 449.00 WHERE [Code] = 'SantaRosaBandofCahuillaIndiansCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SantaRosaIndianCommunityoftheSantaRosaRancheria') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SantaRosaIndianCommunityoftheSantaRosaRancheria', 'Santa Rosa Indian Community of the Santa Rosa Rancheria, California', 'Santa Rosa Indian Community of the Santa Rosa Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 450.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Santa Rosa Indian Community of the Santa Rosa Rancheria, California', [Definition] = 'Santa Rosa Indian Community of the Santa Rosa Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 450.00 WHERE [Code] = 'SantaRosaIndianCommunityoftheSantaRosaRancheria' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SantaYnezBandofChumashMissionIndiansoftheSantaYnez') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SantaYnezBandofChumashMissionIndiansoftheSantaYnez', 'Santa Ynez Band of Chumash Mission Indians of the Santa Ynez Reservation, California', 'Santa Ynez Band of Chumash Mission Indians of the Santa Ynez Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 451.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Santa Ynez Band of Chumash Mission Indians of the Santa Ynez Reservation, California', [Definition] = 'Santa Ynez Band of Chumash Mission Indians of the Santa Ynez Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 451.00 WHERE [Code] = 'SantaYnezBandofChumashMissionIndiansoftheSantaYnez' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SanteeSiouxNationNebraska') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SanteeSiouxNationNebraska', 'Santee Sioux Nation, Nebraska', 'Santee Sioux Nation, Nebraska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 452.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Santee Sioux Nation, Nebraska', [Definition] = 'Santee Sioux Nation, Nebraska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 452.00 WHERE [Code] = 'SanteeSiouxNationNebraska' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'KewaPuebloNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KewaPuebloNewMexico', 'Santo Domingo Pueblo', 'Kewa Pueblo, New Mexico (previously listed as Pueblo of Santo Domingo) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 453.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Santo Domingo Pueblo', [Definition] = 'Kewa Pueblo, New Mexico (previously listed as Pueblo of Santo Domingo) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 453.00 WHERE [Code] = 'KewaPuebloNewMexico' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SaukSuiattleIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SaukSuiattleIndianTribe', 'Sauk-Suiattle Indian Tribe', 'Sauk-Suiattle Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 454.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Sauk-Suiattle Indian Tribe', [Definition] = 'Sauk-Suiattle Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 454.00 WHERE [Code] = 'SaukSuiattleIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SaultSte.MarieTribeofChippewaIndiansMichigan') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SaultSte.MarieTribeofChippewaIndiansMichigan', 'Sault Ste. Marie Tribe of Chippewa Indians, Michigan', 'Sault Ste. Marie Tribe of Chippewa Indians, Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 455.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Sault Ste. Marie Tribe of Chippewa Indians, Michigan', [Definition] = 'Sault Ste. Marie Tribe of Chippewa Indians, Michigan is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 455.00 WHERE [Code] = 'SaultSte.MarieTribeofChippewaIndiansMichigan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ScottsValleyBandofPomoIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ScottsValleyBandofPomoIndiansofCalifornia', 'Scotts Valley Band of Pomo Indians of California', 'Scotts Valley Band of Pomo Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 456.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Scotts Valley Band of Pomo Indians of California', [Definition] = 'Scotts Valley Band of Pomo Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 456.00 WHERE [Code] = 'ScottsValleyBandofPomoIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SeldoviaVillageTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SeldoviaVillageTribe', 'Seldovia Village Tribe', 'Seldovia Village Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 457.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Seldovia Village Tribe', [Definition] = 'Seldovia Village Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 457.00 WHERE [Code] = 'SeldoviaVillageTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SeminoleTribeofFlorida') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SeminoleTribeofFlorida', 'Seminole Tribe of Florida', 'Seminole Tribe of Florida (previously listed as Seminole Tribe of Florida (Dania, Big Cypress, Brighton, Hollywood & Tampa Reservations)) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 458.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Seminole Tribe of Florida', [Definition] = 'Seminole Tribe of Florida (previously listed as Seminole Tribe of Florida (Dania, Big Cypress, Brighton, Hollywood & Tampa Reservations)) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 458.00 WHERE [Code] = 'SeminoleTribeofFlorida' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SenecaNationofIndians') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SenecaNationofIndians', 'Seneca Nation of Indians', 'Seneca Nation of Indians (previously listed as Seneca Nation of New York) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 459.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Seneca Nation of Indians', [Definition] = 'Seneca Nation of Indians (previously listed as Seneca Nation of New York) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 459.00 WHERE [Code] = 'SenecaNationofIndians' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SenecaCayugaNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SenecaCayugaNation', 'Seneca-Cayuga Nation', 'Seneca-Cayuga Nation (previously listed as Seneca-Cayuga Tribe of Oklahoma) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 460.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Seneca-Cayuga Nation', [Definition] = 'Seneca-Cayuga Nation (previously listed as Seneca-Cayuga Tribe of Oklahoma) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 460.00 WHERE [Code] = 'SenecaCayugaNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ShagelukNativeVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ShagelukNativeVillage', 'Shageluk Native Village', 'Shageluk Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 461.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Shageluk Native Village', [Definition] = 'Shageluk Native Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 461.00 WHERE [Code] = 'ShagelukNativeVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ShakopeeMdewakantonSiouxCommunityofMinnesota') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ShakopeeMdewakantonSiouxCommunityofMinnesota', 'Shakopee Mdewakanton Sioux Community of Minnesota', 'Shakopee Mdewakanton Sioux Community of Minnesota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 462.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Shakopee Mdewakanton Sioux Community of Minnesota', [Definition] = 'Shakopee Mdewakanton Sioux Community of Minnesota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 462.00 WHERE [Code] = 'ShakopeeMdewakantonSiouxCommunityofMinnesota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ShawneeTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ShawneeTribe', 'Shawnee Tribe', 'Shawnee Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 463.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Shawnee Tribe', [Definition] = 'Shawnee Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 463.00 WHERE [Code] = 'ShawneeTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SherwoodValleyRancheriaofPomoIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SherwoodValleyRancheriaofPomoIndiansofCalifornia', 'Sherwood Valley Rancheria of Pomo Indians of California', 'Sherwood Valley Rancheria of Pomo Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 464.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Sherwood Valley Rancheria of Pomo Indians of California', [Definition] = 'Sherwood Valley Rancheria of Pomo Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 464.00 WHERE [Code] = 'SherwoodValleyRancheriaofPomoIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ShingleSpringsBandofMiwokIndiansShingleSprings') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ShingleSpringsBandofMiwokIndiansShingleSprings', 'Shingle Springs Band of Miwok Indians, Shingle Springs Rancheria', 'Shingle Springs Band of Miwok Indians, Shingle Springs Rancheria (Verona Tract), California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 465.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Shingle Springs Band of Miwok Indians, Shingle Springs Rancheria', [Definition] = 'Shingle Springs Band of Miwok Indians, Shingle Springs Rancheria (Verona Tract), California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 465.00 WHERE [Code] = 'ShingleSpringsBandofMiwokIndiansShingleSprings' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ShinnecockIndianNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ShinnecockIndianNation', 'Shinnecock Indian Nation', 'Shinnecock Indian Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 466.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Shinnecock Indian Nation', [Definition] = 'Shinnecock Indian Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 466.00 WHERE [Code] = 'ShinnecockIndianNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ShoalwaterBayIndianTribeoftheShoalwaterBayIndian') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ShoalwaterBayIndianTribeoftheShoalwaterBayIndian', 'Shoalwater Bay Indian Tribe of the Shoalwater Bay Indian Reservation', 'Shoalwater Bay Indian Tribe of the Shoalwater Bay Indian Reservation (previously listed as Shoalwater Bay Tribe of the Shoalwater Bay Indian Reservation, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 467.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Shoalwater Bay Indian Tribe of the Shoalwater Bay Indian Reservation', [Definition] = 'Shoalwater Bay Indian Tribe of the Shoalwater Bay Indian Reservation (previously listed as Shoalwater Bay Tribe of the Shoalwater Bay Indian Reservation, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 467.00 WHERE [Code] = 'ShoalwaterBayIndianTribeoftheShoalwaterBayIndian' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ShoshoneBannockTribesoftheFortHallReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ShoshoneBannockTribesoftheFortHallReservation', 'Shoshone-Bannock Tribes of the Fort Hall Reservation', 'Shoshone-Bannock Tribes of the Fort Hall Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 468.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Shoshone-Bannock Tribes of the Fort Hall Reservation', [Definition] = 'Shoshone-Bannock Tribes of the Fort Hall Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 468.00 WHERE [Code] = 'ShoshoneBannockTribesoftheFortHallReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ShoshonePaiuteTribesoftheDuckValleyReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ShoshonePaiuteTribesoftheDuckValleyReservation', 'Shoshone-Paiute Tribes of the Duck Valley Reservation, Nevada', 'Shoshone-Paiute Tribes of the Duck Valley Reservation, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 469.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Shoshone-Paiute Tribes of the Duck Valley Reservation, Nevada', [Definition] = 'Shoshone-Paiute Tribes of the Duck Valley Reservation, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 469.00 WHERE [Code] = 'ShoshonePaiuteTribesoftheDuckValleyReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SissetonWahpetonOyateoftheLakeTraverseReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SissetonWahpetonOyateoftheLakeTraverseReservation', 'Sisseton-Wahpeton Oyate of the Lake Traverse Reservation, South Dakota', 'Sisseton-Wahpeton Oyate of the Lake Traverse Reservation, South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 470.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Sisseton-Wahpeton Oyate of the Lake Traverse Reservation, South Dakota', [Definition] = 'Sisseton-Wahpeton Oyate of the Lake Traverse Reservation, South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 470.00 WHERE [Code] = 'SissetonWahpetonOyateoftheLakeTraverseReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SitkaTribeofAlaska') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SitkaTribeofAlaska', 'Sitka Tribe of Alaska', 'Sitka Tribe of Alaska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 471.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Sitka Tribe of Alaska', [Definition] = 'Sitka Tribe of Alaska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 471.00 WHERE [Code] = 'SitkaTribeofAlaska' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SkagwayVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SkagwayVillage', 'Skagway Village', 'Skagway Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 472.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Skagway Village', [Definition] = 'Skagway Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 472.00 WHERE [Code] = 'SkagwayVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SkokomishIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SkokomishIndianTribe', 'Skokomish Indian Tribe', 'Skokomish Indian Tribe (previously listed as Skokomish Indian Tribe of the Skokomish Reservation, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 473.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Skokomish Indian Tribe', [Definition] = 'Skokomish Indian Tribe (previously listed as Skokomish Indian Tribe of the Skokomish Reservation, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 473.00 WHERE [Code] = 'SkokomishIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SkullValleyBandofGoshuteIndiansofUtah') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SkullValleyBandofGoshuteIndiansofUtah', 'Skull Valley Band of Goshute Indians of Utah', 'Skull Valley Band of Goshute Indians of Utah is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 474.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Skull Valley Band of Goshute Indians of Utah', [Definition] = 'Skull Valley Band of Goshute Indians of Utah is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 474.00 WHERE [Code] = 'SkullValleyBandofGoshuteIndiansofUtah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SnoqualmieIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SnoqualmieIndianTribe', 'Snoqualmie Indian Tribe', 'Snoqualmie Indian Tribe (previously listed as Snoqualmie Tribe, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 475.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Snoqualmie Indian Tribe', [Definition] = 'Snoqualmie Indian Tribe (previously listed as Snoqualmie Tribe, Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 475.00 WHERE [Code] = 'SnoqualmieIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SobobaBandofLuisenoIndiansCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SobobaBandofLuisenoIndiansCalifornia', 'Soboba Band of Luiseno Indians, California', 'Soboba Band of Luiseno Indians, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 476.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Soboba Band of Luiseno Indians, California', [Definition] = 'Soboba Band of Luiseno Indians, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 476.00 WHERE [Code] = 'SobobaBandofLuisenoIndiansCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SokaogonChippewaCommunityWisconsin') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SokaogonChippewaCommunityWisconsin', 'Sokaogon Chippewa Community, Wisconsin', 'Sokaogon Chippewa Community, Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 477.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Sokaogon Chippewa Community, Wisconsin', [Definition] = 'Sokaogon Chippewa Community, Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 477.00 WHERE [Code] = 'SokaogonChippewaCommunityWisconsin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SouthNaknekVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SouthNaknekVillage', 'South Naknek Village', 'South Naknek Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 478.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'South Naknek Village', [Definition] = 'South Naknek Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 478.00 WHERE [Code] = 'SouthNaknekVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SouthernUteIndianTribeoftheSouthernUteReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SouthernUteIndianTribeoftheSouthernUteReservation', 'Southern Ute Indian Tribe of the Southern Ute Reservation, Colorado', 'Southern Ute Indian Tribe of the Southern Ute Reservation, Colorado is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 479.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Southern Ute Indian Tribe of the Southern Ute Reservation, Colorado', [Definition] = 'Southern Ute Indian Tribe of the Southern Ute Reservation, Colorado is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 479.00 WHERE [Code] = 'SouthernUteIndianTribeoftheSouthernUteReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SpiritLakeTribeNorthDakota') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpiritLakeTribeNorthDakota', 'Spirit Lake Tribe, North Dakota', 'Spirit Lake Tribe, North Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 480.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Spirit Lake Tribe, North Dakota', [Definition] = 'Spirit Lake Tribe, North Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 480.00 WHERE [Code] = 'SpiritLakeTribeNorthDakota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SpokaneTribeoftheSpokaneReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SpokaneTribeoftheSpokaneReservation', 'Spokane Tribe of the Spokane Reservation', 'Spokane Tribe of the Spokane Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 481.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Spokane Tribe of the Spokane Reservation', [Definition] = 'Spokane Tribe of the Spokane Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 481.00 WHERE [Code] = 'SpokaneTribeoftheSpokaneReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SquaxinIslandTribeoftheSquaxinIslandReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SquaxinIslandTribeoftheSquaxinIslandReservation', 'Squaxin Island Tribe of the Squaxin Island Reservation', 'Squaxin Island Tribe of the Squaxin Island Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 482.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Squaxin Island Tribe of the Squaxin Island Reservation', [Definition] = 'Squaxin Island Tribe of the Squaxin Island Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 482.00 WHERE [Code] = 'SquaxinIslandTribeoftheSquaxinIslandReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'St.CroixChippewaIndiansofWisconsin') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('St.CroixChippewaIndiansofWisconsin', 'St. Croix Chippewa Indians of Wisconsin', 'St. Croix Chippewa Indians of Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 483.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'St. Croix Chippewa Indians of Wisconsin', [Definition] = 'St. Croix Chippewa Indians of Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 483.00 WHERE [Code] = 'St.CroixChippewaIndiansofWisconsin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'StandingRockSiouxTribeofNorthSouthDakota') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StandingRockSiouxTribeofNorthSouthDakota', 'Standing Rock Sioux Tribe of North & South Dakota', 'Standing Rock Sioux Tribe of North & South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 484.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Standing Rock Sioux Tribe of North & South Dakota', [Definition] = 'Standing Rock Sioux Tribe of North & South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 484.00 WHERE [Code] = 'StandingRockSiouxTribeofNorthSouthDakota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'StebbinsCommunityAssociation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StebbinsCommunityAssociation', 'Stebbins Community Association', 'Stebbins Community Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 485.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Stebbins Community Association', [Definition] = 'Stebbins Community Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 485.00 WHERE [Code] = 'StebbinsCommunityAssociation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'StillaguamishTribeofIndiansofWashington') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StillaguamishTribeofIndiansofWashington', 'Stillaguamish Tribe of Indians of Washington', 'Stillaguamish Tribe of Indians of Washington (previously listed as Stillaguamish Tribe of Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 486.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Stillaguamish Tribe of Indians of Washington', [Definition] = 'Stillaguamish Tribe of Indians of Washington (previously listed as Stillaguamish Tribe of Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 486.00 WHERE [Code] = 'StillaguamishTribeofIndiansofWashington' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'StockbridgeMunseeCommunityWisconsin') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('StockbridgeMunseeCommunityWisconsin', 'Stockbridge Munsee Community, Wisconsin', 'Stockbridge Munsee Community, Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 487.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Stockbridge Munsee Community, Wisconsin', [Definition] = 'Stockbridge Munsee Community, Wisconsin is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 487.00 WHERE [Code] = 'StockbridgeMunseeCommunityWisconsin' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SummitLakePaiuteTribeofNevada') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SummitLakePaiuteTribeofNevada', 'Summit Lake Paiute Tribe of Nevada', 'Summit Lake Paiute Tribe of Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 488.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Summit Lake Paiute Tribe of Nevada', [Definition] = 'Summit Lake Paiute Tribe of Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 488.00 WHERE [Code] = 'SummitLakePaiuteTribeofNevada' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SunaqTribeofKodiak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SunaqTribeofKodiak', 'Sun''aq Tribe of Kodiak', 'Sun''aq Tribe of Kodiak (previously listed as Shoonaq'' Tribe of Kodiak) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 489.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Sun''aq Tribe of Kodiak', [Definition] = 'Sun''aq Tribe of Kodiak (previously listed as Shoonaq'' Tribe of Kodiak) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 489.00 WHERE [Code] = 'SunaqTribeofKodiak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SuquamishIndianTribeofthePortMadisonReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SuquamishIndianTribeofthePortMadisonReservation', 'Suquamish Indian Tribe of the Port Madison Reservation', 'Suquamish Indian Tribe of the Port Madison Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 490.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Suquamish Indian Tribe of the Port Madison Reservation', [Definition] = 'Suquamish Indian Tribe of the Port Madison Reservation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 490.00 WHERE [Code] = 'SuquamishIndianTribeofthePortMadisonReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SusanvilleIndianRancheriaCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SusanvilleIndianRancheriaCalifornia', 'Susanville Indian Rancheria, California', 'Susanville Indian Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 491.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Susanville Indian Rancheria, California', [Definition] = 'Susanville Indian Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 491.00 WHERE [Code] = 'SusanvilleIndianRancheriaCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SwinomishIndianTribalCommunity') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SwinomishIndianTribalCommunity', 'Swinomish Indian Tribal Community', 'Swinomish Indian Tribal Community (previously listed as Swinomish Indians of the Swinomish Reservation of Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 492.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Swinomish Indian Tribal Community', [Definition] = 'Swinomish Indian Tribal Community (previously listed as Swinomish Indians of the Swinomish Reservation of Washington) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 492.00 WHERE [Code] = 'SwinomishIndianTribalCommunity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'SycuanBandoftheKumeyaayNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SycuanBandoftheKumeyaayNation', 'Sycuan Band of the Kumeyaay Nation', 'Sycuan Band of the Kumeyaay Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 493.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Sycuan Band of the Kumeyaay Nation', [Definition] = 'Sycuan Band of the Kumeyaay Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 493.00 WHERE [Code] = 'SycuanBandoftheKumeyaayNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TableMountainRancheria') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TableMountainRancheria', 'Table Mountain Rancheria', 'Table Mountain Rancheria (previously listed as Table Mountain Rancheria of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 494.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Table Mountain Rancheria', [Definition] = 'Table Mountain Rancheria (previously listed as Table Mountain Rancheria of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 494.00 WHERE [Code] = 'TableMountainRancheria' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TakotnaVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TakotnaVillage', 'Takotna Village', 'Takotna Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 495.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Takotna Village', [Definition] = 'Takotna Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 495.00 WHERE [Code] = 'TakotnaVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TangirnaqNativeVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TangirnaqNativeVillage', 'Tangirnaq Native Village', 'Tangirnaq Native Village (previously listed as Lesnoi Village (aka Woody Island)) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 496.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Tangirnaq Native Village', [Definition] = 'Tangirnaq Native Village (previously listed as Lesnoi Village (aka Woody Island)) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 496.00 WHERE [Code] = 'TangirnaqNativeVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TeMoakTribeofWesternShoshoneIndiansofNevada') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TeMoakTribeofWesternShoshoneIndiansofNevada', 'Te-Moak Tribe of Western Shoshone Indians of Nevada', 'Te-Moak Tribe of Western Shoshone Indians of Nevada (Four constituent bands: Battle Mountain Band; Elko Band; South Fork Band and Wells Band) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 497.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Te-Moak Tribe of Western Shoshone Indians of Nevada', [Definition] = 'Te-Moak Tribe of Western Shoshone Indians of Nevada (Four constituent bands: Battle Mountain Band; Elko Band; South Fork Band and Wells Band) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 497.00 WHERE [Code] = 'TeMoakTribeofWesternShoshoneIndiansofNevada' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TejonIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TejonIndianTribe', 'Tejon Indian Tribe', 'Tejon Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 498.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Tejon Indian Tribe', [Definition] = 'Tejon Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 498.00 WHERE [Code] = 'TejonIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TelidaVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TelidaVillage', 'Telida Village', 'Telida Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 499.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Telida Village', [Definition] = 'Telida Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 499.00 WHERE [Code] = 'TelidaVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TheChickasawNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TheChickasawNation', 'The Chickasaw Nation', 'The Chickasaw Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 500.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'The Chickasaw Nation', [Definition] = 'The Chickasaw Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 500.00 WHERE [Code] = 'TheChickasawNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TheChoctawNationofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TheChoctawNationofOklahoma', 'The Choctaw Nation of Oklahoma', 'The Choctaw Nation of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 501.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'The Choctaw Nation of Oklahoma', [Definition] = 'The Choctaw Nation of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 501.00 WHERE [Code] = 'TheChoctawNationofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TheMuscogee') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TheMuscogee', 'The Muscogee', 'The Muscogee (Creek) Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 502.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'The Muscogee', [Definition] = 'The Muscogee (Creek) Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 502.00 WHERE [Code] = 'TheMuscogee' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TheOsageNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TheOsageNation', 'The Osage Nation', 'The Osage Nation (previously listed as Osage Tribe) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 503.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'The Osage Nation', [Definition] = 'The Osage Nation (previously listed as Osage Tribe) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 503.00 WHERE [Code] = 'TheOsageNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TheSeminoleNationofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TheSeminoleNationofOklahoma', 'The Seminole Nation of Oklahoma', 'The Seminole Nation of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 504.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'The Seminole Nation of Oklahoma', [Definition] = 'The Seminole Nation of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 504.00 WHERE [Code] = 'TheSeminoleNationofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ThlopthloccoTribalTown') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ThlopthloccoTribalTown', 'Thlopthlocco Tribal Town', 'Thlopthlocco Tribal Town is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 505.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Thlopthlocco Tribal Town', [Definition] = 'Thlopthlocco Tribal Town is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 505.00 WHERE [Code] = 'ThlopthloccoTribalTown' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ThreeAffiliatedTribesoftheFortBertholdReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ThreeAffiliatedTribesoftheFortBertholdReservation', 'Three Affiliated Tribes of the Fort Berthold Reservation, North Dakota', 'Three Affiliated Tribes of the Fort Berthold Reservation, North Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 506.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Three Affiliated Tribes of the Fort Berthold Reservation, North Dakota', [Definition] = 'Three Affiliated Tribes of the Fort Berthold Reservation, North Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 506.00 WHERE [Code] = 'ThreeAffiliatedTribesoftheFortBertholdReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TimbishaShoshoneTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TimbishaShoshoneTribe', 'Timbisha Shoshone Tribe', 'Timbisha Shoshone Tribe (previously listed as Death Valley Timbi-sha Shoshone Tribe and the Death Valley Timbi-Sha Shoshone Band of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 507.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Timbisha Shoshone Tribe', [Definition] = 'Timbisha Shoshone Tribe (previously listed as Death Valley Timbi-sha Shoshone Tribe and the Death Valley Timbi-Sha Shoshone Band of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 507.00 WHERE [Code] = 'TimbishaShoshoneTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TohonoOodhamNationofArizona') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TohonoOodhamNationofArizona', 'Tohono O''odham Nation of Arizona', 'Tohono O''odham Nation of Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 508.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Tohono O''odham Nation of Arizona', [Definition] = 'Tohono O''odham Nation of Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 508.00 WHERE [Code] = 'TohonoOodhamNationofArizona' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TolowaDeeniNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TolowaDeeniNation', 'Tolowa Dee-ni'' Nation', 'Tolowa Dee-ni'' Nation (previously listed as Smith River Rancheria, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 509.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Tolowa Dee-ni'' Nation', [Definition] = 'Tolowa Dee-ni'' Nation (previously listed as Smith River Rancheria, California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 509.00 WHERE [Code] = 'TolowaDeeniNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TonawandaBandofSeneca') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TonawandaBandofSeneca', 'Tonawanda Band of Seneca', 'Tonawanda Band of Seneca (previously listed as Tonawanda Band of Seneca Indians of New York) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 510.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Tonawanda Band of Seneca', [Definition] = 'Tonawanda Band of Seneca (previously listed as Tonawanda Band of Seneca Indians of New York) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 510.00 WHERE [Code] = 'TonawandaBandofSeneca' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TonkawaTribeofIndiansofOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TonkawaTribeofIndiansofOklahoma', 'Tonkawa Tribe of Indians of Oklahoma', 'Tonkawa Tribe of Indians of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 511.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Tonkawa Tribe of Indians of Oklahoma', [Definition] = 'Tonkawa Tribe of Indians of Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 511.00 WHERE [Code] = 'TonkawaTribeofIndiansofOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TontoApacheTribeofArizona') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TontoApacheTribeofArizona', 'Tonto Apache Tribe of Arizona', 'Tonto Apache Tribe of Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 512.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Tonto Apache Tribe of Arizona', [Definition] = 'Tonto Apache Tribe of Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 512.00 WHERE [Code] = 'TontoApacheTribeofArizona' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TorresMartinezDesertCahuillaIndiansCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TorresMartinezDesertCahuillaIndiansCalifornia', 'Torres Martinez Desert Cahuilla Indians, California', 'Torres Martinez Desert Cahuilla Indians, California (previously listed as Torres- Martinez Band of Cahuilla Mission Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 513.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Torres Martinez Desert Cahuilla Indians, California', [Definition] = 'Torres Martinez Desert Cahuilla Indians, California (previously listed as Torres- Martinez Band of Cahuilla Mission Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 513.00 WHERE [Code] = 'TorresMartinezDesertCahuillaIndiansCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TraditionalVillageofTogiak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TraditionalVillageofTogiak', 'Traditional Village of Togiak', 'Traditional Village of Togiak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 514.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Traditional Village of Togiak', [Definition] = 'Traditional Village of Togiak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 514.00 WHERE [Code] = 'TraditionalVillageofTogiak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TulalipTribesofWashington') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TulalipTribesofWashington', 'Tulalip Tribes of Washington', 'Tulalip Tribes of Washington (previously listed as Tulalip Tribes of the Tulalip Reservation, Washington is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 515.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Tulalip Tribes of Washington', [Definition] = 'Tulalip Tribes of Washington (previously listed as Tulalip Tribes of the Tulalip Reservation, Washington is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 515.00 WHERE [Code] = 'TulalipTribesofWashington' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TuleRiverIndianTribeoftheTuleRiverReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TuleRiverIndianTribeoftheTuleRiverReservation', 'Tule River Indian Tribe of the Tule River Reservation, California', 'Tule River Indian Tribe of the Tule River Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 516.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Tule River Indian Tribe of the Tule River Reservation, California', [Definition] = 'Tule River Indian Tribe of the Tule River Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 516.00 WHERE [Code] = 'TuleRiverIndianTribeoftheTuleRiverReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TuluksakNativeCommunity') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TuluksakNativeCommunity', 'Tuluksak Native Community', 'Tuluksak Native Community is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 517.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Tuluksak Native Community', [Definition] = 'Tuluksak Native Community is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 517.00 WHERE [Code] = 'TuluksakNativeCommunity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TunicaBiloxiIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TunicaBiloxiIndianTribe', 'Tunica-Biloxi Indian Tribe', 'Tunica-Biloxi Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 518.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Tunica-Biloxi Indian Tribe', [Definition] = 'Tunica-Biloxi Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 518.00 WHERE [Code] = 'TunicaBiloxiIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TuolumneBandofMeWukIndiansoftheTuolumneRancheria') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TuolumneBandofMeWukIndiansoftheTuolumneRancheria', 'Tuolumne Band of Me-Wuk Indians of the Tuolumne Rancheria of California', 'Tuolumne Band of Me-Wuk Indians of the Tuolumne Rancheria of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 519.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Tuolumne Band of Me-Wuk Indians of the Tuolumne Rancheria of California', [Definition] = 'Tuolumne Band of Me-Wuk Indians of the Tuolumne Rancheria of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 519.00 WHERE [Code] = 'TuolumneBandofMeWukIndiansoftheTuolumneRancheria' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TurtleMountainBandofChippewaIndiansofNorthDakota') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TurtleMountainBandofChippewaIndiansofNorthDakota', 'Turtle Mountain Band of Chippewa Indians of North Dakota', 'Turtle Mountain Band of Chippewa Indians of North Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 520.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Turtle Mountain Band of Chippewa Indians of North Dakota', [Definition] = 'Turtle Mountain Band of Chippewa Indians of North Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 520.00 WHERE [Code] = 'TurtleMountainBandofChippewaIndiansofNorthDakota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TuscaroraNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TuscaroraNation', 'Tuscarora Nation', 'Tuscarora Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 521.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Tuscarora Nation', [Definition] = 'Tuscarora Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 521.00 WHERE [Code] = 'TuscaroraNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TwentyNinePalmsBandofMissionIndiansofCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TwentyNinePalmsBandofMissionIndiansofCalifornia', 'Twenty-Nine Palms Band of Mission Indians of California', 'Twenty-Nine Palms Band of Mission Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 522.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Twenty-Nine Palms Band of Mission Indians of California', [Definition] = 'Twenty-Nine Palms Band of Mission Indians of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 522.00 WHERE [Code] = 'TwentyNinePalmsBandofMissionIndiansofCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'TwinHillsVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('TwinHillsVillage', 'Twin Hills Village', 'Twin Hills Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 523.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Twin Hills Village', [Definition] = 'Twin Hills Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 523.00 WHERE [Code] = 'TwinHillsVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'UgashikVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UgashikVillage', 'Ugashik Village', 'Ugashik Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 524.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ugashik Village', [Definition] = 'Ugashik Village is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 524.00 WHERE [Code] = 'UgashikVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'UmkumiutNativeVillage') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UmkumiutNativeVillage', 'Umkumiut Native Village', 'Umkumiut Native Village (previously listed as Umkumiute Native Village) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 525.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Umkumiut Native Village', [Definition] = 'Umkumiut Native Village (previously listed as Umkumiute Native Village) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 525.00 WHERE [Code] = 'UmkumiutNativeVillage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'UnitedAuburnIndianCommunityoftheAuburnRancheria') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UnitedAuburnIndianCommunityoftheAuburnRancheria', 'United Auburn Indian Community of the Auburn Rancheria of California', 'United Auburn Indian Community of the Auburn Rancheria of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 526.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'United Auburn Indian Community of the Auburn Rancheria of California', [Definition] = 'United Auburn Indian Community of the Auburn Rancheria of California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 526.00 WHERE [Code] = 'UnitedAuburnIndianCommunityoftheAuburnRancheria' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'UnitedKeetoowahBandofCherokeeIndiansinOklahoma') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UnitedKeetoowahBandofCherokeeIndiansinOklahoma', 'United Keetoowah Band of Cherokee Indians in Oklahoma', 'United Keetoowah Band of Cherokee Indians in Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 527.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'United Keetoowah Band of Cherokee Indians in Oklahoma', [Definition] = 'United Keetoowah Band of Cherokee Indians in Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 527.00 WHERE [Code] = 'UnitedKeetoowahBandofCherokeeIndiansinOklahoma' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'UpperMattaponiTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UpperMattaponiTribe', 'Upper Mattaponi Tribe', 'Upper Mattaponi Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 528.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Upper Mattaponi Tribe', [Definition] = 'Upper Mattaponi Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 528.00 WHERE [Code] = 'UpperMattaponiTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'UpperSiouxCommunityMinnesota') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UpperSiouxCommunityMinnesota', 'Upper Sioux Community, Minnesota', 'Upper Sioux Community, Minnesota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 529.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Upper Sioux Community, Minnesota', [Definition] = 'Upper Sioux Community, Minnesota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 529.00 WHERE [Code] = 'UpperSiouxCommunityMinnesota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'UpperSkagitIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UpperSkagitIndianTribe', 'Upper Skagit Indian Tribe', 'Upper Skagit Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 530.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Upper Skagit Indian Tribe', [Definition] = 'Upper Skagit Indian Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 530.00 WHERE [Code] = 'UpperSkagitIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'UteIndianTribeoftheUintahOurayReservationUtah') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UteIndianTribeoftheUintahOurayReservationUtah', 'Ute Indian Tribe of the Uintah & Ouray Reservation, Utah', 'Ute Indian Tribe of the Uintah & Ouray Reservation, Utah is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 531.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ute Indian Tribe of the Uintah & Ouray Reservation, Utah', [Definition] = 'Ute Indian Tribe of the Uintah & Ouray Reservation, Utah is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 531.00 WHERE [Code] = 'UteIndianTribeoftheUintahOurayReservationUtah' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'UteMountainUteTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UteMountainUteTribe', 'Ute Mountain Ute Tribe', 'Ute Mountain Ute Tribe (previously listed as Ute Mountain Tribe of the Ute Mountain Reservation, Colorado, New Mexico & Utah) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 532.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ute Mountain Ute Tribe', [Definition] = 'Ute Mountain Ute Tribe (previously listed as Ute Mountain Tribe of the Ute Mountain Reservation, Colorado, New Mexico & Utah) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 532.00 WHERE [Code] = 'UteMountainUteTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'UtuUtuGwaituPaiuteTribeoftheBentonPaiute') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UtuUtuGwaituPaiuteTribeoftheBentonPaiute', 'Utu Utu Gwaitu Paiute Tribe of the Benton Paiute Reservation, California', 'Utu Utu Gwaitu Paiute Tribe of the Benton Paiute Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 533.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Utu Utu Gwaitu Paiute Tribe of the Benton Paiute Reservation, California', [Definition] = 'Utu Utu Gwaitu Paiute Tribe of the Benton Paiute Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 533.00 WHERE [Code] = 'UtuUtuGwaituPaiuteTribeoftheBentonPaiute' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'Viejas') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Viejas', 'Viejas', NULL, 534.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Viejas', [Definition] = NULL, [SortOrder] = 534.00 WHERE [Code] = 'Viejas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofAlakanuk') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofAlakanuk', 'Village of Alakanuk', 'Village of Alakanuk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 535.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Alakanuk', [Definition] = 'Village of Alakanuk is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 535.00 WHERE [Code] = 'VillageofAlakanuk' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofAnaktuvukPass') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofAnaktuvukPass', 'Village of Anaktuvuk Pass', 'Village of Anaktuvuk Pass is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 536.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Anaktuvuk Pass', [Definition] = 'Village of Anaktuvuk Pass is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 536.00 WHERE [Code] = 'VillageofAnaktuvukPass' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofAniak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofAniak', 'Village of Aniak', 'Village of Aniak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 537.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Aniak', [Definition] = 'Village of Aniak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 537.00 WHERE [Code] = 'VillageofAniak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofAtmautluak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofAtmautluak', 'Village of Atmautluak', 'Village of Atmautluak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 538.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Atmautluak', [Definition] = 'Village of Atmautluak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 538.00 WHERE [Code] = 'VillageofAtmautluak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofBillMooresSlough') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofBillMooresSlough', 'Village of Bill Moore''s Slough', 'Village of Bill Moore''s Slough is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 539.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Bill Moore''s Slough', [Definition] = 'Village of Bill Moore''s Slough is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 539.00 WHERE [Code] = 'VillageofBillMooresSlough' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofChefornak') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofChefornak', 'Village of Chefornak', 'Village of Chefornak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 540.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Chefornak', [Definition] = 'Village of Chefornak is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 540.00 WHERE [Code] = 'VillageofChefornak' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofClarksPoint') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofClarksPoint', 'Village of Clarks Point', 'Village of Clarks Point is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 541.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Clarks Point', [Definition] = 'Village of Clarks Point is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 541.00 WHERE [Code] = 'VillageofClarksPoint' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofCrookedCreek') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofCrookedCreek', 'Village of Crooked Creek', 'Village of Crooked Creek is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 542.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Crooked Creek', [Definition] = 'Village of Crooked Creek is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 542.00 WHERE [Code] = 'VillageofCrookedCreek' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofDotLake') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofDotLake', 'Village of Dot Lake', 'Village of Dot Lake is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 543.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Dot Lake', [Definition] = 'Village of Dot Lake is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 543.00 WHERE [Code] = 'VillageofDotLake' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofIliamna') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofIliamna', 'Village of Iliamna', 'Village of Iliamna is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 544.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Iliamna', [Definition] = 'Village of Iliamna is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 544.00 WHERE [Code] = 'VillageofIliamna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofKalskag') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofKalskag', 'Village of Kalskag', 'Village of Kalskag is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 545.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Kalskag', [Definition] = 'Village of Kalskag is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 545.00 WHERE [Code] = 'VillageofKalskag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofKaltag') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofKaltag', 'Village of Kaltag', 'Village of Kaltag is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 546.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Kaltag', [Definition] = 'Village of Kaltag is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 546.00 WHERE [Code] = 'VillageofKaltag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofKotlik') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofKotlik', 'Village of Kotlik', 'Village of Kotlik is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 547.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Kotlik', [Definition] = 'Village of Kotlik is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 547.00 WHERE [Code] = 'VillageofKotlik' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofLowerKalskag') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofLowerKalskag', 'Village of Lower Kalskag', 'Village of Lower Kalskag is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 548.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Lower Kalskag', [Definition] = 'Village of Lower Kalskag is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 548.00 WHERE [Code] = 'VillageofLowerKalskag' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofOhogamiut') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofOhogamiut', 'Village of Ohogamiut', 'Village of Ohogamiut is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 549.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Ohogamiut', [Definition] = 'Village of Ohogamiut is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 549.00 WHERE [Code] = 'VillageofOhogamiut' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofRedDevil') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofRedDevil', 'Village of Red Devil', 'Village of Red Devil is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 550.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Red Devil', [Definition] = 'Village of Red Devil is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 550.00 WHERE [Code] = 'VillageofRedDevil' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofSleetmute') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofSleetmute', 'Village of Sleetmute', 'Village of Sleetmute is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 551.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Sleetmute', [Definition] = 'Village of Sleetmute is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 551.00 WHERE [Code] = 'VillageofSleetmute' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofSolomon') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofSolomon', 'Village of Solomon', 'Village of Solomon is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 552.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Solomon', [Definition] = 'Village of Solomon is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 552.00 WHERE [Code] = 'VillageofSolomon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofStonyRiver') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofStonyRiver', 'Village of Stony River', 'Village of Stony River is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 553.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Stony River', [Definition] = 'Village of Stony River is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 553.00 WHERE [Code] = 'VillageofStonyRiver' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofVenetie') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofVenetie', 'Village of Venetie', 'Village of Venetie (See Native Village of Venetie Tribal Government) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 554.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Venetie', [Definition] = 'Village of Venetie (See Native Village of Venetie Tribal Government) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 554.00 WHERE [Code] = 'VillageofVenetie' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'VillageofWainwright') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('VillageofWainwright', 'Village of Wainwright', 'Village of Wainwright is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 555.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Village of Wainwright', [Definition] = 'Village of Wainwright is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 555.00 WHERE [Code] = 'VillageofWainwright' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'WalkerRiverPaiuteTribeoftheWalkerRiverReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WalkerRiverPaiuteTribeoftheWalkerRiverReservation', 'Walker River Paiute Tribe of the Walker River Reservation, Nevada', 'Walker River Paiute Tribe of the Walker River Reservation, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 556.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Walker River Paiute Tribe of the Walker River Reservation, Nevada', [Definition] = 'Walker River Paiute Tribe of the Walker River Reservation, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 556.00 WHERE [Code] = 'WalkerRiverPaiuteTribeoftheWalkerRiverReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'WampanoagTribeofGayHead') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WampanoagTribeofGayHead', 'Wampanoag Tribe of Gay Head', 'Wampanoag Tribe of Gay Head (Aquinnah) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 557.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Wampanoag Tribe of Gay Head', [Definition] = 'Wampanoag Tribe of Gay Head (Aquinnah) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 557.00 WHERE [Code] = 'WampanoagTribeofGayHead' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'WashoeTribeofNevadaCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WashoeTribeofNevadaCalifornia', 'Washoe Tribe of Nevada & California', 'Washoe Tribe of Nevada & California (Carson Colony, Dresslerville Colony, Woodfords Community, Stewart Community & Washoe Ranches) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 558.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Washoe Tribe of Nevada & California', [Definition] = 'Washoe Tribe of Nevada & California (Carson Colony, Dresslerville Colony, Woodfords Community, Stewart Community & Washoe Ranches) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 558.00 WHERE [Code] = 'WashoeTribeofNevadaCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'WhiteMountainApacheTribeoftheFortApacheReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WhiteMountainApacheTribeoftheFortApacheReservation', 'White Mountain Apache Tribe of the Fort Apache Reservation, Arizona', 'White Mountain Apache Tribe of the Fort Apache Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 559.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'White Mountain Apache Tribe of the Fort Apache Reservation, Arizona', [Definition] = 'White Mountain Apache Tribe of the Fort Apache Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 559.00 WHERE [Code] = 'WhiteMountainApacheTribeoftheFortApacheReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'WichitaandAffiliatedTribes') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WichitaandAffiliatedTribes', 'Wichita and Affiliated Tribes', 'Wichita and Affiliated Tribes (Wichita, Keechi, Waco & Tawakonie), Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 560.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Wichita and Affiliated Tribes', [Definition] = 'Wichita and Affiliated Tribes (Wichita, Keechi, Waco & Tawakonie), Oklahoma is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 560.00 WHERE [Code] = 'WichitaandAffiliatedTribes' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'WiltonRancheriaCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WiltonRancheriaCalifornia', 'Wilton Rancheria, California', 'Wilton Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 561.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Wilton Rancheria, California', [Definition] = 'Wilton Rancheria, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 561.00 WHERE [Code] = 'WiltonRancheriaCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'WinnebagoTribeofNebraska') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WinnebagoTribeofNebraska', 'Winnebago Tribe of Nebraska', 'Winnebago Tribe of Nebraska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 562.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Winnebago Tribe of Nebraska', [Definition] = 'Winnebago Tribe of Nebraska is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 562.00 WHERE [Code] = 'WinnebagoTribeofNebraska' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'WinnemuccaIndianColonyofNevada') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WinnemuccaIndianColonyofNevada', 'Winnemucca Indian Colony of Nevada', 'Winnemucca Indian Colony of Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 563.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Winnemucca Indian Colony of Nevada', [Definition] = 'Winnemucca Indian Colony of Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 563.00 WHERE [Code] = 'WinnemuccaIndianColonyofNevada' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'WiyotTribeCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WiyotTribeCalifornia', 'Wiyot Tribe, California', 'Wiyot Tribe, California (previously listed as Table Bluff Reservation—Wiyot Tribe) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 564.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Wiyot Tribe, California', [Definition] = 'Wiyot Tribe, California (previously listed as Table Bluff Reservation—Wiyot Tribe) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 564.00 WHERE [Code] = 'WiyotTribeCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'WrangellCooperativeAssociation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WrangellCooperativeAssociation', 'Wrangell Cooperative Association', 'Wrangell Cooperative Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 565.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Wrangell Cooperative Association', [Definition] = 'Wrangell Cooperative Association is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 565.00 WHERE [Code] = 'WrangellCooperativeAssociation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'WyandotteNation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('WyandotteNation', 'Wyandotte Nation', 'Wyandotte Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 566.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Wyandotte Nation', [Definition] = 'Wyandotte Nation is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 566.00 WHERE [Code] = 'WyandotteNation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'YakutatTlingitTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YakutatTlingitTribe', 'Yakutat Tlingit Tribe', 'Yakutat Tlingit Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 567.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Yakutat Tlingit Tribe', [Definition] = 'Yakutat Tlingit Tribe is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 567.00 WHERE [Code] = 'YakutatTlingitTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'YanktonSiouxTribeofSouthDakota') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YanktonSiouxTribeofSouthDakota', 'Yankton Sioux Tribe of South Dakota', 'Yankton Sioux Tribe of South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 568.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Yankton Sioux Tribe of South Dakota', [Definition] = 'Yankton Sioux Tribe of South Dakota is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 568.00 WHERE [Code] = 'YanktonSiouxTribeofSouthDakota' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'YavapaiApacheNationoftheCampVerdeIndianReservation') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YavapaiApacheNationoftheCampVerdeIndianReservation', 'Yavapai-Apache Nation of the Camp Verde Indian Reservation, Arizona', 'Yavapai-Apache Nation of the Camp Verde Indian Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 569.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Yavapai-Apache Nation of the Camp Verde Indian Reservation, Arizona', [Definition] = 'Yavapai-Apache Nation of the Camp Verde Indian Reservation, Arizona is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 569.00 WHERE [Code] = 'YavapaiApacheNationoftheCampVerdeIndianReservation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'YavapaiPrescottIndianTribe') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YavapaiPrescottIndianTribe', 'Yavapai-Prescott Indian Tribe', 'Yavapai-Prescott Indian Tribe (previously listed as Yavapai-Prescott Tribe of the Yavapai Reservation, Arizona) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 570.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Yavapai-Prescott Indian Tribe', [Definition] = 'Yavapai-Prescott Indian Tribe (previously listed as Yavapai-Prescott Tribe of the Yavapai Reservation, Arizona) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 570.00 WHERE [Code] = 'YavapaiPrescottIndianTribe' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'YeringtonPaiuteTribeoftheYeringtonColonyCampbell') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YeringtonPaiuteTribeoftheYeringtonColonyCampbell', 'Yerington Paiute Tribe of the Yerington Colony & Campbell Ranch, Nevada', 'Yerington Paiute Tribe of the Yerington Colony & Campbell Ranch, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 571.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Yerington Paiute Tribe of the Yerington Colony & Campbell Ranch, Nevada', [Definition] = 'Yerington Paiute Tribe of the Yerington Colony & Campbell Ranch, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 571.00 WHERE [Code] = 'YeringtonPaiuteTribeoftheYeringtonColonyCampbell' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'YochaDeheWintunNationCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YochaDeheWintunNationCalifornia', 'Yocha Dehe Wintun Nation, California', 'Yocha Dehe Wintun Nation, California (previously listed as Rumsey Indian Rancheria of Wintun Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 572.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Yocha Dehe Wintun Nation, California', [Definition] = 'Yocha Dehe Wintun Nation, California (previously listed as Rumsey Indian Rancheria of Wintun Indians of California) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 572.00 WHERE [Code] = 'YochaDeheWintunNationCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'YombaShoshoneTribeoftheYombaReservationNevada') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YombaShoshoneTribeoftheYombaReservationNevada', 'Yomba Shoshone Tribe of the Yomba Reservation, Nevada', 'Yomba Shoshone Tribe of the Yomba Reservation, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 573.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Yomba Shoshone Tribe of the Yomba Reservation, Nevada', [Definition] = 'Yomba Shoshone Tribe of the Yomba Reservation, Nevada is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 573.00 WHERE [Code] = 'YombaShoshoneTribeoftheYombaReservationNevada' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'YsletaDelSurPueblo') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YsletaDelSurPueblo', 'Ysleta del Sur Pueblo', 'Ysleta del Sur Pueblo (previously listed as Ysleta Del Sur Pueblo of Texas) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 574.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Ysleta del Sur Pueblo', [Definition] = 'Ysleta del Sur Pueblo (previously listed as Ysleta Del Sur Pueblo of Texas) is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 574.00 WHERE [Code] = 'YsletaDelSurPueblo' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'YupiitofAndreafski') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YupiitofAndreafski', 'Yupiit of Andreafski', 'Yupiit of Andreafski is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 575.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Yupiit of Andreafski', [Definition] = 'Yupiit of Andreafski is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 575.00 WHERE [Code] = 'YupiitofAndreafski' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'YurokTribeoftheYurokReservationCalifornia') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('YurokTribeoftheYurokReservationCalifornia', 'Yurok Tribe of the Yurok Reservation, California', 'Yurok Tribe of the Yurok Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 576.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Yurok Tribe of the Yurok Reservation, California', [Definition] = 'Yurok Tribe of the Yurok Reservation, California is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 576.00 WHERE [Code] = 'YurokTribeoftheYurokReservationCalifornia' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTribalAffiliation] WHERE [Code] = 'ZuniTribeoftheZuniReservationNewMexico') BEGIN INSERT INTO dbo.[RefTribalAffiliation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ZuniTribeoftheZuniReservationNewMexico', 'Zuni Tribe of the Zuni Reservation, New Mexico', 'Zuni Tribe of the Zuni Reservation, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', 577.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTribalAffiliation] -SET [Description] = 'Zuni Tribe of the Zuni Reservation, New Mexico', [Definition] = 'Zuni Tribe of the Zuni Reservation, New Mexico is the Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', [SortOrder] = 577.00 WHERE [Code] = 'ZuniTribeoftheZuniReservationNewMexico' END -END - -PRINT N'Populate RefTrimesterWhenPrenatalCareBegan table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTrimesterWhenPrenatalCareBegan]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTrimesterWhenPrenatalCareBegan] WHERE [Code] = 'FirstTrimester') BEGIN INSERT INTO dbo.[RefTrimesterWhenPrenatalCareBegan]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FirstTrimester', 'First trimester', 'The child''s mother began receiving prenatal health care in the first trimester.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTrimesterWhenPrenatalCareBegan] -SET [Description] = 'First trimester', [Definition] = 'The child''s mother began receiving prenatal health care in the first trimester.', [SortOrder] = 1.00 WHERE [Code] = 'FirstTrimester' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTrimesterWhenPrenatalCareBegan] WHERE [Code] = 'SecondTrimester') BEGIN INSERT INTO dbo.[RefTrimesterWhenPrenatalCareBegan]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SecondTrimester', 'Second trimester', 'The child''s mother began receiving prenatal health care in the second trimester.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTrimesterWhenPrenatalCareBegan] -SET [Description] = 'Second trimester', [Definition] = 'The child''s mother began receiving prenatal health care in the second trimester.', [SortOrder] = 3.00 WHERE [Code] = 'SecondTrimester' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTrimesterWhenPrenatalCareBegan] WHERE [Code] = 'ThirdTrimester') BEGIN INSERT INTO dbo.[RefTrimesterWhenPrenatalCareBegan]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ThirdTrimester', 'Third trimester', 'The child''s mother began receiving prenatal health care in the third trimester.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTrimesterWhenPrenatalCareBegan] -SET [Description] = 'Third trimester', [Definition] = 'The child''s mother began receiving prenatal health care in the third trimester.', [SortOrder] = 5.00 WHERE [Code] = 'ThirdTrimester' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTrimesterWhenPrenatalCareBegan] WHERE [Code] = 'NoPrenatalHealthCare') BEGIN INSERT INTO dbo.[RefTrimesterWhenPrenatalCareBegan]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoPrenatalHealthCare', 'No prenatal health care', 'The child''s mother did not receive prenatal health care.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTrimesterWhenPrenatalCareBegan] -SET [Description] = 'No prenatal health care', [Definition] = 'The child''s mother did not receive prenatal health care.', [SortOrder] = 7.00 WHERE [Code] = 'NoPrenatalHealthCare' END -END - -PRINT N'Populate RefTuitionResidencyType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTuitionResidencyType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTuitionResidencyType] WHERE [Code] = 'InDistrict') BEGIN INSERT INTO dbo.[RefTuitionResidencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InDistrict', 'In-district', 'The person''s residency status for tuition purposes is: In-district.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTuitionResidencyType] -SET [Description] = 'In-district', [Definition] = 'The person''s residency status for tuition purposes is: In-district.', [SortOrder] = 1.00 WHERE [Code] = 'InDistrict' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTuitionResidencyType] WHERE [Code] = 'InState') BEGIN INSERT INTO dbo.[RefTuitionResidencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('InState', 'In-state', 'The person''s residency status for tuition purposes is: In-state.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTuitionResidencyType] -SET [Description] = 'In-state', [Definition] = 'The person''s residency status for tuition purposes is: In-state.', [SortOrder] = 2.00 WHERE [Code] = 'InState' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTuitionResidencyType] WHERE [Code] = 'OutOfState') BEGIN INSERT INTO dbo.[RefTuitionResidencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OutOfState', 'Out-of-state', 'The person''s residency status for tuition purposes is: Out-of-state.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTuitionResidencyType] -SET [Description] = 'Out-of-state', [Definition] = 'The person''s residency status for tuition purposes is: Out-of-state.', [SortOrder] = 3.00 WHERE [Code] = 'OutOfState' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTuitionResidencyType] WHERE [Code] = 'NoDifferential') BEGIN INSERT INTO dbo.[RefTuitionResidencyType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NoDifferential', 'No differential tuition based on residency', 'No differential tuition based on residency is provided.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTuitionResidencyType] -SET [Description] = 'No differential tuition based on residency', [Definition] = 'No differential tuition based on residency is provided.', [SortOrder] = 4.00 WHERE [Code] = 'NoDifferential' END -END - -PRINT N'Populate RefTuitionUnit table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefTuitionUnit]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTuitionUnit] WHERE [Code] = 'PerTerm') BEGIN INSERT INTO dbo.[RefTuitionUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PerTerm', 'Per Term', 'Tuition is being charged Per Term.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTuitionUnit] -SET [Description] = 'Per Term', [Definition] = 'Tuition is being charged Per Term.', [SortOrder] = 1.00 WHERE [Code] = 'PerTerm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTuitionUnit] WHERE [Code] = 'PerYear') BEGIN INSERT INTO dbo.[RefTuitionUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PerYear', 'Per Year', 'Tuition is being charged Per Year.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTuitionUnit] -SET [Description] = 'Per Year', [Definition] = 'Tuition is being charged Per Year.', [SortOrder] = 2.00 WHERE [Code] = 'PerYear' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTuitionUnit] WHERE [Code] = 'PerProgram') BEGIN INSERT INTO dbo.[RefTuitionUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PerProgram', 'Per Program', 'Tuition is being charged Per Program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTuitionUnit] -SET [Description] = 'Per Program', [Definition] = 'Tuition is being charged Per Program.', [SortOrder] = 3.00 WHERE [Code] = 'PerProgram' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTuitionUnit] WHERE [Code] = 'PerCourse') BEGIN INSERT INTO dbo.[RefTuitionUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PerCourse', 'Per Course', 'Tuition is being charged Per Course.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTuitionUnit] -SET [Description] = 'Per Course', [Definition] = 'Tuition is being charged Per Course.', [SortOrder] = 4.00 WHERE [Code] = 'PerCourse' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefTuitionUnit] WHERE [Code] = 'PerCredit') BEGIN INSERT INTO dbo.[RefTuitionUnit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PerCredit', 'Per Credit', 'Tuition is being charged Per Credit.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefTuitionUnit] -SET [Description] = 'Per Credit', [Definition] = 'Tuition is being charged Per Credit.', [SortOrder] = 5.00 WHERE [Code] = 'PerCredit' END -END - -PRINT N'Populate RefUSCitizenshipStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefUSCitizenshipStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefUSCitizenshipStatus] WHERE [Code] = 'USCitizen') BEGIN INSERT INTO dbo.[RefUSCitizenshipStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('USCitizen', 'US Citizen', 'The person is a US Citizen.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefUSCitizenshipStatus] -SET [Description] = 'US Citizen', [Definition] = 'The person is a US Citizen.', [SortOrder] = 1.00 WHERE [Code] = 'USCitizen' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefUSCitizenshipStatus] WHERE [Code] = 'PermanentResident') BEGIN INSERT INTO dbo.[RefUSCitizenshipStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PermanentResident', 'Permanent resident', 'The person is a Permanent resident.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefUSCitizenshipStatus] -SET [Description] = 'Permanent resident', [Definition] = 'The person is a Permanent resident.', [SortOrder] = 2.00 WHERE [Code] = 'PermanentResident' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefUSCitizenshipStatus] WHERE [Code] = 'ResidentAlien') BEGIN INSERT INTO dbo.[RefUSCitizenshipStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ResidentAlien', 'Resident alien', 'The person is a Resident alien.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefUSCitizenshipStatus] -SET [Description] = 'Resident alien', [Definition] = 'The person is a Resident alien.', [SortOrder] = 3.00 WHERE [Code] = 'ResidentAlien' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefUSCitizenshipStatus] WHERE [Code] = 'NonResidentAlien') BEGIN INSERT INTO dbo.[RefUSCitizenshipStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NonResidentAlien', 'Non-resident alien', 'The person is a Non-resident alien.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefUSCitizenshipStatus] -SET [Description] = 'Non-resident alien', [Definition] = 'The person is a Non-resident alien.', [SortOrder] = 4.00 WHERE [Code] = 'NonResidentAlien' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefUSCitizenshipStatus] WHERE [Code] = 'Refugee') BEGIN INSERT INTO dbo.[RefUSCitizenshipStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Refugee', 'Refugee', 'The person is a Refugee.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefUSCitizenshipStatus] -SET [Description] = 'Refugee', [Definition] = 'The person is a Refugee.', [SortOrder] = 5.00 WHERE [Code] = 'Refugee' END -END - -PRINT N'Populate RefVirtualSchoolStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefVirtualSchoolStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefVirtualSchoolStatus] WHERE [Code] = 'FaceVirtual') BEGIN INSERT INTO dbo.[RefVirtualSchoolStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FaceVirtual', 'Face Virtual', 'The school focuses on a systematic program of virtual instruction but includes some physical meetings among students or with teachers.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefVirtualSchoolStatus] -SET [Description] = 'Face Virtual', [Definition] = 'The school focuses on a systematic program of virtual instruction but includes some physical meetings among students or with teachers.', [SortOrder] = 1.00 WHERE [Code] = 'FaceVirtual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefVirtualSchoolStatus] WHERE [Code] = 'FullVirtual') BEGIN INSERT INTO dbo.[RefVirtualSchoolStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FullVirtual', 'Full Virtual', 'The school has no physical building where students meet with each other or with teachers and all instruction is virtual.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefVirtualSchoolStatus] -SET [Description] = 'Full Virtual', [Definition] = 'The school has no physical building where students meet with each other or with teachers and all instruction is virtual.', [SortOrder] = 2.00 WHERE [Code] = 'FullVirtual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefVirtualSchoolStatus] WHERE [Code] = 'NotVirtual') BEGIN INSERT INTO dbo.[RefVirtualSchoolStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotVirtual', 'Not Virtual', 'The school does not offer any virtual instruction.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefVirtualSchoolStatus] -SET [Description] = 'Not Virtual', [Definition] = 'The school does not offer any virtual instruction.', [SortOrder] = 3.00 WHERE [Code] = 'NotVirtual' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefVirtualSchoolStatus] WHERE [Code] = 'SupplementalVirtual') BEGIN INSERT INTO dbo.[RefVirtualSchoolStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SupplementalVirtual', 'Supplemental Virtual', 'The school offers virtual courses but virtual instruction is not the primary means of instruction.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefVirtualSchoolStatus] -SET [Description] = 'Supplemental Virtual', [Definition] = 'The school offers virtual courses but virtual instruction is not the primary means of instruction.', [SortOrder] = 4.00 WHERE [Code] = 'SupplementalVirtual' END -END - -PRINT N'Populate RefVisaType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefVisaType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefVisaType] WHERE [Code] = 'F1') BEGIN INSERT INTO dbo.[RefVisaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('F1', 'Foreign Student Visa', 'The non-US citizen''s Visa type is Foreign Student Visa.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefVisaType] -SET [Description] = 'Foreign Student Visa', [Definition] = 'The non-US citizen''s Visa type is Foreign Student Visa.', [SortOrder] = 1.00 WHERE [Code] = 'F1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefVisaType] WHERE [Code] = 'M1') BEGIN INSERT INTO dbo.[RefVisaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('M1', 'Foreign Student pursuing vocational or non-academic studies Visa', 'The non-US citizen''s Visa type is Foreign Student pursuing vocational or non-academic studies Visa.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefVisaType] -SET [Description] = 'Foreign Student pursuing vocational or non-academic studies Visa', [Definition] = 'The non-US citizen''s Visa type is Foreign Student pursuing vocational or non-academic studies Visa.', [SortOrder] = 2.00 WHERE [Code] = 'M1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefVisaType] WHERE [Code] = 'H1') BEGIN INSERT INTO dbo.[RefVisaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('H1', 'Employment Visa', 'The non-US citizen''s Visa type is Employment Visa.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefVisaType] -SET [Description] = 'Employment Visa', [Definition] = 'The non-US citizen''s Visa type is Employment Visa.', [SortOrder] = 3.00 WHERE [Code] = 'H1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefVisaType] WHERE [Code] = 'B1') BEGIN INSERT INTO dbo.[RefVisaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B1', 'Business Visa', 'The non-US citizen''s Visa type is Business Visa.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefVisaType] -SET [Description] = 'Business Visa', [Definition] = 'The non-US citizen''s Visa type is Business Visa.', [SortOrder] = 4.00 WHERE [Code] = 'B1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefVisaType] WHERE [Code] = 'B2') BEGIN INSERT INTO dbo.[RefVisaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('B2', 'Tourist Visa', 'The non-US citizen''s Visa type is Tourist Visa.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefVisaType] -SET [Description] = 'Tourist Visa', [Definition] = 'The non-US citizen''s Visa type is Tourist Visa.', [SortOrder] = 5.00 WHERE [Code] = 'B2' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefVisaType] WHERE [Code] = 'J1') BEGIN INSERT INTO dbo.[RefVisaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('J1', 'Exchange Scholar Visa', 'The non-US citizen''s Visa type is Exchange Scholar Visa.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefVisaType] -SET [Description] = 'Exchange Scholar Visa', [Definition] = 'The non-US citizen''s Visa type is Exchange Scholar Visa.', [SortOrder] = 6.00 WHERE [Code] = 'J1' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefVisaType] WHERE [Code] = 'OV') BEGIN INSERT INTO dbo.[RefVisaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OV', 'Other Visa', 'The non-US citizen''s Visa type is Other Visa.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefVisaType] -SET [Description] = 'Other Visa', [Definition] = 'The non-US citizen''s Visa type is Other Visa.', [SortOrder] = 7.00 WHERE [Code] = 'OV' END -END - -PRINT N'Populate RefVisionScreeningStatus table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefVisionScreeningStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefVisionScreeningStatus] WHERE [Code] = 'Passed') BEGIN INSERT INTO dbo.[RefVisionScreeningStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Passed', 'Passed', 'The person passed the screening.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefVisionScreeningStatus] -SET [Description] = 'Passed', [Definition] = 'The person passed the screening.', [SortOrder] = 1.00 WHERE [Code] = 'Passed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefVisionScreeningStatus] WHERE [Code] = 'FurtherEvaluation') BEGIN INSERT INTO dbo.[RefVisionScreeningStatus]([Code], [Description], [Definition], [SortOrder]) -VALUES ('FurtherEvaluation', 'Further Evaluation Needed', 'Further evaluation is needed.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefVisionScreeningStatus] -SET [Description] = 'Further Evaluation Needed', [Definition] = 'Further evaluation is needed.', [SortOrder] = 2.00 WHERE [Code] = 'FurtherEvaluation' END -END - -PRINT N'Populate RefWageCollectionMethod table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefWageCollectionMethod]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWageCollectionMethod] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefWageCollectionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Collected as an hourly wage amount', 'The wage data for an employment record was collected as an hourly wage amount.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWageCollectionMethod] -SET [Description] = 'Collected as an hourly wage amount', [Definition] = 'The wage data for an employment record was collected as an hourly wage amount.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWageCollectionMethod] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefWageCollectionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Collected as salary and converted to an hourly wage amount', 'The wage data for an employment record was collected as salary and converted to an hourly wage amount.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWageCollectionMethod] -SET [Description] = 'Collected as salary and converted to an hourly wage amount', [Definition] = 'The wage data for an employment record was collected as salary and converted to an hourly wage amount.', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWageCollectionMethod] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefWageCollectionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Collected in both methods but method not tracked on an individual record', 'The wage data for an employment record was collected in both methods but method not tracked on an individual record.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWageCollectionMethod] -SET [Description] = 'Collected in both methods but method not tracked on an individual record', [Definition] = 'The wage data for an employment record was collected in both methods but method not tracked on an individual record.', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWageCollectionMethod] WHERE [Code] = '99') BEGIN INSERT INTO dbo.[RefWageCollectionMethod]([Code], [Description], [Definition], [SortOrder]) -VALUES ('99', 'Wage data not present', 'Wage data not present in the employment record.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWageCollectionMethod] -SET [Description] = 'Wage data not present', [Definition] = 'Wage data not present in the employment record.', [SortOrder] = 4.00 WHERE [Code] = '99' END -END - -PRINT N'Populate RefWageVerification table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefWageVerification]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWageVerification] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefWageVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Verified', 'The wage information has been verified.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWageVerification] -SET [Description] = 'Verified', [Definition] = 'The wage information has been verified.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWageVerification] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefWageVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Not verified', 'The wage information has NOT been verified.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWageVerification] -SET [Description] = 'Not verified', [Definition] = 'The wage information has NOT been verified.', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWageVerification] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefWageVerification]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Wage data not present', 'Wage data not present.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWageVerification] -SET [Description] = 'Wage data not present', [Definition] = 'Wage data not present.', [SortOrder] = 3.00 WHERE [Code] = '03' END -END - -PRINT N'Populate RefWeaponType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefWeaponType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'Firearm') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Firearm', 'Firearm', 'Any weapon (including a starter gun) which will or is designed to or may readily be converted to expel a projectile by the action of an explosive; the frame or receiver of any such weapon; any firearm muffler or firearm silencer; or any destructive device.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Firearm', [Definition] = 'Any weapon (including a starter gun) which will or is designed to or may readily be converted to expel a projectile by the action of an explosive; the frame or receiver of any such weapon; any firearm muffler or firearm silencer; or any destructive device.', [SortOrder] = 0.00 WHERE [Code] = 'Firearm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'Handgun') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Handgun', 'Handgun', 'Any firearm which has a short stock and is designed to be held and fired by the use of a single hand.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Handgun', [Definition] = 'Any firearm which has a short stock and is designed to be held and fired by the use of a single hand.', [SortOrder] = 2.00 WHERE [Code] = 'Handgun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'Shotgun') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Shotgun', 'Shotgun', 'A weapon designed or redesigned, made or remade, and intended to be fired from the shoulder and designed or redesigned and made or remade to use the energy of an explosive to fire through a smooth bore either a number of ball shots or a single projectile for each single pull of the trigger.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Shotgun', [Definition] = 'A weapon designed or redesigned, made or remade, and intended to be fired from the shoulder and designed or redesigned and made or remade to use the energy of an explosive to fire through a smooth bore either a number of ball shots or a single projectile for each single pull of the trigger.', [SortOrder] = 4.00 WHERE [Code] = 'Shotgun' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'Rifle') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Rifle', 'Rifle', 'A weapon designed or redesigned, made or remade, and intended to be fired from the shoulder and designed or redesigned and made or remade to use the energy of an explosive to fire only a single projectile through a rifled bore for each single pull of the trigger.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Rifle', [Definition] = 'A weapon designed or redesigned, made or remade, and intended to be fired from the shoulder and designed or redesigned and made or remade to use the energy of an explosive to fire only a single projectile through a rifled bore for each single pull of the trigger.', [SortOrder] = 6.00 WHERE [Code] = 'Rifle' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'OtherFirearm') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherFirearm', 'Other Firearm', 'Other type of firearm', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Other Firearm', [Definition] = 'Other type of firearm', [SortOrder] = 8.00 WHERE [Code] = 'OtherFirearm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'Knife') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Knife', 'Knife', 'The weapon involved was a knife.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Knife', [Definition] = 'The weapon involved was a knife.', [SortOrder] = 10.00 WHERE [Code] = 'Knife' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'KnifeLessThanTwoPointFiveInches') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KnifeLessThanTwoPointFiveInches', 'Knife Less Than 2.5 Inches', 'Knife with blade length less than 2.5 inches - the weapon involved was a knife with a blade less than 2.5 inches in length.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Knife Less Than 2.5 Inches', [Definition] = 'Knife with blade length less than 2.5 inches - the weapon involved was a knife with a blade less than 2.5 inches in length.', [SortOrder] = 12.00 WHERE [Code] = 'KnifeLessThanTwoPointFiveInches' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'KnifeLessThanThreeInches') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KnifeLessThanThreeInches', 'Knife Less Than Three Inches', 'Knife with blade length less than 3 inches in length - the weapon involved was a knife with a blade at least 2.5 inches in length, but less than 3 inches in length.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Knife Less Than Three Inches', [Definition] = 'Knife with blade length less than 3 inches in length - the weapon involved was a knife with a blade at least 2.5 inches in length, but less than 3 inches in length.', [SortOrder] = 14.00 WHERE [Code] = 'KnifeLessThanThreeInches' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'KnifeGreaterThanThreeInches') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('KnifeGreaterThanThreeInches', 'Knife Greater Than Three Inches', 'Knife with blade length greater than or equal to 3 inches - the weapon involved was a knife with a blade 3 inches or greater in length.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Knife Greater Than Three Inches', [Definition] = 'Knife with blade length greater than or equal to 3 inches - the weapon involved was a knife with a blade 3 inches or greater in length.', [SortOrder] = 16.00 WHERE [Code] = 'KnifeGreaterThanThreeInches' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'OtherSharpObject') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherSharpObject', 'Other sharp object', 'The weapon involved was another type of sharp object, (e.g., razor blade, ice pick, dirk, Chinese star, other pointed instrument [used as a weapon]).', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Other sharp object', [Definition] = 'The weapon involved was another type of sharp object, (e.g., razor blade, ice pick, dirk, Chinese star, other pointed instrument [used as a weapon]).', [SortOrder] = 18.00 WHERE [Code] = 'OtherSharpObject' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'OtherObject') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherObject', 'Other object', 'The weapon involved was another known object (e.g., chain, nunchakus, brass knuckle, billy club, electrical weapon or device [stun gun], BB or pellet gun).', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Other object', [Definition] = 'The weapon involved was another known object (e.g., chain, nunchakus, brass knuckle, billy club, electrical weapon or device [stun gun], BB or pellet gun).', [SortOrder] = 20.00 WHERE [Code] = 'OtherObject' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'Substance') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Substance', 'Substance used as weapon', 'The weapon involved was a substance (e.g., mace, tear gas) that was used as a weapon.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Substance used as weapon', [Definition] = 'The weapon involved was a substance (e.g., mace, tear gas) that was used as a weapon.', [SortOrder] = 22.00 WHERE [Code] = 'Substance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'OtherWeapon') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherWeapon', 'Other weapon', 'The incident involved a weapon other than those described above.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Other weapon', [Definition] = 'The incident involved a weapon other than those described above.', [SortOrder] = 24.00 WHERE [Code] = 'OtherWeapon' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'None') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('None', 'None', 'No weapon was used in the incident', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'None', [Definition] = 'No weapon was used in the incident', [SortOrder] = 26.00 WHERE [Code] = 'None' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown weapon', 'A weapon was used in the incident, but the type is unknown.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Unknown weapon', [Definition] = 'A weapon was used in the incident, but the type is unknown.', [SortOrder] = 28.00 WHERE [Code] = 'Unknown' END -END - -PRINT N'Populate RefWfProgramParticipation table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefWfProgramParticipation]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Labor Exchange Services', 'The person''s workforce and employment development program participation is Labor Exchange Services.', 0.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Labor Exchange Services', [Definition] = 'The person''s workforce and employment development program participation is Labor Exchange Services.', [SortOrder] = 0.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Adult Workforce Investment Act Program', 'The person''s workforce and employment development program participation is an Adult Workforce Investment Act Program.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Adult Workforce Investment Act Program', [Definition] = 'The person''s workforce and employment development program participation is an Adult Workforce Investment Act Program.', [SortOrder] = 1.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Dislocated Worker Workforce Investment Act Program', 'The person''s workforce and employment development program participation is a Dislocated Worker Workforce Investment Act Program.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Dislocated Worker Workforce Investment Act Program', [Definition] = 'The person''s workforce and employment development program participation is a Dislocated Worker Workforce Investment Act Program.', [SortOrder] = 2.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Youth Workforce Investment Act Program', 'The person''s workforce and employment development program participation is a Youth Workforce Investment Act Program.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Youth Workforce Investment Act Program', [Definition] = 'The person''s workforce and employment development program participation is a Youth Workforce Investment Act Program.', [SortOrder] = 3.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Job Corps', 'The person''s workforce and employment development program participation is the Job Corps.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Job Corps', [Definition] = 'The person''s workforce and employment development program participation is the Job Corps.', [SortOrder] = 4.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Adult Education and Literacy', 'The person''s workforce and employment development program participation is Adult Education and Literacy.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Adult Education and Literacy', [Definition] = 'The person''s workforce and employment development program participation is Adult Education and Literacy.', [SortOrder] = 5.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'National Farmworker Jobs Program', 'The person''s workforce and employment development program participation is with the National Farmworker Jobs Program.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'National Farmworker Jobs Program', [Definition] = 'The person''s workforce and employment development program participation is with the National Farmworker Jobs Program.', [SortOrder] = 6.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Indian and Native American Programs', 'The person''s workforce and employment development program participation is with the Indian and Native American Programs.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Indian and Native American Programs', [Definition] = 'The person''s workforce and employment development program participation is with the Indian and Native American Programs.', [SortOrder] = 7.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Veteran''s Programs', 'The person''s workforce and employment development program participation is with the Veteran''s Programs.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Veteran''s Programs', [Definition] = 'The person''s workforce and employment development program participation is with the Veteran''s Programs.', [SortOrder] = 8.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Trade Adjustment Assistance Program', 'The person''s workforce and employment development program participation is with the Trade Adjustment Assistance Program.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Trade Adjustment Assistance Program', [Definition] = 'The person''s workforce and employment development program participation is with the Trade Adjustment Assistance Program.', [SortOrder] = 9.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'YouthBuild Program', 'The person''s workforce and employment development program participation is with the YouthBuild Program.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'YouthBuild Program', [Definition] = 'The person''s workforce and employment development program participation is with the YouthBuild Program.', [SortOrder] = 10.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Title V Older Worker Program', 'The person''s workforce and employment development program participation is with the Title V Older Worker Program.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Title V Older Worker Program', [Definition] = 'The person''s workforce and employment development program participation is with the Title V Older Worker Program.', [SortOrder] = 20.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '13') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13', 'Registered Apprenticeship', 'The person''s workforce and employment development program participation is a Registered Apprenticeship.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Registered Apprenticeship', [Definition] = 'The person''s workforce and employment development program participation is a Registered Apprenticeship.', [SortOrder] = 21.00 WHERE [Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '14') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14', 'Non-traditional Apprenticeship', 'The person''s workforce and employment development program participation is a Non-traditional Apprenticeship.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Non-traditional Apprenticeship', [Definition] = 'The person''s workforce and employment development program participation is a Non-traditional Apprenticeship.', [SortOrder] = 22.00 WHERE [Code] = '14' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '15') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('15', 'Vocational Rehabilitation', 'The person''s workforce and employment development program participation is Vocational Rehabilitation.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Vocational Rehabilitation', [Definition] = 'The person''s workforce and employment development program participation is Vocational Rehabilitation.', [SortOrder] = 23.00 WHERE [Code] = '15' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '16') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('16', 'Food Stamp Employment and Training Program', 'The person''s workforce and employment development program participation is with the Food Stamp Employment and Training Program.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Food Stamp Employment and Training Program', [Definition] = 'The person''s workforce and employment development program participation is with the Food Stamp Employment and Training Program.', [SortOrder] = 24.00 WHERE [Code] = '16' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '17') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('17', 'TANF Employment and Training Program', 'The person''s workforce and employment development program participation is with the TANF Employment and Training Program.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'TANF Employment and Training Program', [Definition] = 'The person''s workforce and employment development program participation is with the TANF Employment and Training Program.', [SortOrder] = 25.00 WHERE [Code] = '17' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '18') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('18', 'Other On-The-Job training Program', 'The person''s workforce and employment development program participation is with an Other On-The-Job training Program.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Other On-The-Job training Program', [Definition] = 'The person''s workforce and employment development program participation is with an Other On-The-Job training Program.', [SortOrder] = 26.00 WHERE [Code] = '18' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '19') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('19', 'Other Workforce Related Employment and Training Program', 'The person''s workforce and employment development program participation is with the an Other Workforce Related Employment and Training Program.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'Other Workforce Related Employment and Training Program', [Definition] = 'The person''s workforce and employment development program participation is with the an Other Workforce Related Employment and Training Program.', [SortOrder] = 27.00 WHERE [Code] = '19' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '99') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) -VALUES ('99', 'No identified services', 'No identified services are related to the person''s workforce and employment development program participation. ', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] -SET [Description] = 'No identified services', [Definition] = 'No identified services are related to the person''s workforce and employment development program participation. ', [SortOrder] = 28.00 WHERE [Code] = '99' END -END - -PRINT N'Populate RefWIOABarrierstoEmployment table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefWIOABarrierstoEmployment]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '805') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('805', 'Cultural barriers', 'The participant has a perception of him-or herself as possessing attitudes, beliefs, customs, or practices that influence a way of thinking, acting, or working that may serve as a hindrance to employment.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Cultural barriers', [Definition] = 'The participant has a perception of him-or herself as possessing attitudes, beliefs, customs, or practices that influence a way of thinking, acting, or working that may serve as a hindrance to employment.', [SortOrder] = 1.00 WHERE [Code] = '805' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '807') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('807', 'Displaced homemaker', 'The participant has been providing unpaid services to family members in the home and (a) has been dependent on the income of another family member but is no longer supported by that income; (b) is the dependent spouse of a member of the armed forces on active duty whose family income is significantly reduced because of (i) a deployment or a call or order to active duty pursuant to a provision of law, (ii) a permanent change of station, or (iii) the service-connected death or disability of the member; and (c) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Displaced homemaker', [Definition] = 'The participant has been providing unpaid services to family members in the home and (a) has been dependent on the income of another family member but is no longer supported by that income; (b) is the dependent spouse of a member of the armed forces on active duty whose family income is significantly reduced because of (i) a deployment or a call or order to active duty pursuant to a provision of law, (ii) a permanent change of station, or (iii) the service-connected death or disability of the member; and (c) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', [SortOrder] = 2.00 WHERE [Code] = '807' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '803') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('803', 'English language learner', 'The participant has limited ability in speaking, reading, writing, or understanding the English language that may serve as a hindrance to employment.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'English language learner', [Definition] = 'The participant has limited ability in speaking, reading, writing, or understanding the English language that may serve as a hindrance to employment.', [SortOrder] = 3.00 WHERE [Code] = '803' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '601') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('601', 'Exhausting Temporary Assistance for Needy Families (TANF) within 2 years', 'The participant is within 2 years of exhausting lifetime eligibility under Part A of Title IV of the Social Security Act (42 U.S.C. 601 et seq.), regardless of whether he or she is receiving these benefits at program entry.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Exhausting Temporary Assistance for Needy Families (TANF) within 2 years', [Definition] = 'The participant is within 2 years of exhausting lifetime eligibility under Part A of Title IV of the Social Security Act (42 U.S.C. 601 et seq.), regardless of whether he or she is receiving these benefits at program entry.', [SortOrder] = 4.00 WHERE [Code] = '601' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '801') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('801', 'Ex-offender', 'The participant is a person who either (a) has been subject to any stage of the criminal justice process for committing a status offense or delinquent act, or (b) requires assistance in overcoming barriers to employment resulting from a record of arrest or conviction.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Ex-offender', [Definition] = 'The participant is a person who either (a) has been subject to any stage of the criminal justice process for committing a status offense or delinquent act, or (b) requires assistance in overcoming barriers to employment resulting from a record of arrest or conviction.', [SortOrder] = 5.00 WHERE [Code] = '801' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '800') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('800', 'Homeless or runaway youth', 'The participant lacks a fixed, regular, and adequate nighttime residence; has a primary nighttime residence that is a public or private place not designed for or ordinarily used as a regular sleeping accommodation for human beings; is a migratory child who in the preceding 36 months was required to move from one school district to another due to changes in the parent''s or parent''s spouse''s seasonal employment in agriculture, dairy, or fishing work; or is under 18 years of age and absents himself or herself from home or place of legal residence without the permission of his or her family (i.e., runaway youth). However, a participant who may be sleeping in a temporary accommodation while away from home should not, as a result of that fact alone, be recorded as homeless.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Homeless or runaway youth', [Definition] = 'The participant lacks a fixed, regular, and adequate nighttime residence; has a primary nighttime residence that is a public or private place not designed for or ordinarily used as a regular sleeping accommodation for human beings; is a migratory child who in the preceding 36 months was required to move from one school district to another due to changes in the parent''s or parent''s spouse''s seasonal employment in agriculture, dairy, or fishing work; or is under 18 years of age and absents himself or herself from home or place of legal residence without the permission of his or her family (i.e., runaway youth). However, a participant who may be sleeping in a temporary accommodation while away from home should not, as a result of that fact alone, be recorded as homeless.', [SortOrder] = 6.00 WHERE [Code] = '800' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '202') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('202', 'Individual with disabilities', 'The participant indicates that he or she has a disability, defined as a physical or mental impairment, that substantially limits one or more of the person''s major life activities, as defined under the Americans with Disabilities Act of 1990.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Individual with disabilities', [Definition] = 'The participant indicates that he or she has a disability, defined as a physical or mental impairment, that substantially limits one or more of the person''s major life activities, as defined under the Americans with Disabilities Act of 1990.', [SortOrder] = 7.00 WHERE [Code] = '202' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '402') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('402', 'Long-term unemployed', 'The participant has been unemployed for 27 or more consecutive weeks.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Long-term unemployed', [Definition] = 'The participant has been unemployed for 27 or more consecutive weeks.', [SortOrder] = 8.00 WHERE [Code] = '402' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '804') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('804', 'Low literacy level', 'The participant has an inability to compute and solve problems or read, write, or speak English at a level necessary to function on the job, in the participant''s family, or in society, which may serve as a hindrance to employment.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Low literacy level', [Definition] = 'The participant has an inability to compute and solve problems or read, write, or speak English at a level necessary to function on the job, in the participant''s family, or in society, which may serve as a hindrance to employment.', [SortOrder] = 9.00 WHERE [Code] = '804' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '802') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('802', 'Low-income', 'The participant (a) receives, or in the 6 months prior to application to the program has received, or is a member of a family that is receiving in the past 6 months assistance through the Supplemental Nutrition Assistance Program (SNAP), the TANF program, the Supplemental Security Income (SSI) program, or State or local income-based public assistance; (b) is in a family with total family income that does not exceed the higher of the poverty line or 70% of the lower living standard income level; (c) is a youth who receives, or is eligible to receive, a free or reduced-price lunch; (d) is a foster child on behalf of whom State or local government payments are made; (e) is a participant with a disability whose own income is the poverty line but who is a member of a family whose income does not meet this requirement; (f) is a homeless participant or homeless child or youth or runaway youth; or (g) is a youth living in a high-poverty area.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Low-income', [Definition] = 'The participant (a) receives, or in the 6 months prior to application to the program has received, or is a member of a family that is receiving in the past 6 months assistance through the Supplemental Nutrition Assistance Program (SNAP), the TANF program, the Supplemental Security Income (SSI) program, or State or local income-based public assistance; (b) is in a family with total family income that does not exceed the higher of the poverty line or 70% of the lower living standard income level; (c) is a youth who receives, or is eligible to receive, a free or reduced-price lunch; (d) is a foster child on behalf of whom State or local government payments are made; (e) is a participant with a disability whose own income is the poverty line but who is a member of a family whose income does not meet this requirement; (f) is a homeless participant or homeless child or youth or runaway youth; or (g) is a youth living in a high-poverty area.', [SortOrder] = 10.00 WHERE [Code] = '802' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '808') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('808', 'Migrant and seasonal farmworker', 'The participant is a low-income individual who for 12 consecutive months out of the 24 months prior to application for the program involved has been primarily employed in agriculture or fish farming labor that is characterized by chronic unemployment or underemployment, and faces multiple barriers to economic self-sufficiency.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Migrant and seasonal farmworker', [Definition] = 'The participant is a low-income individual who for 12 consecutive months out of the 24 months prior to application for the program involved has been primarily employed in agriculture or fish farming labor that is characterized by chronic unemployment or underemployment, and faces multiple barriers to economic self-sufficiency.', [SortOrder] = 11.00 WHERE [Code] = '808' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '806') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('806', 'Single parent', 'The participant is a single, separated, divorced, or widowed individual who has primary responsibility for one or more dependent children under age 18 (including single pregnant women).', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Single parent', [Definition] = 'The participant is a single, separated, divorced, or widowed individual who has primary responsibility for one or more dependent children under age 18 (including single pregnant women).', [SortOrder] = 12.00 WHERE [Code] = '806' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '704') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('704', 'Youth in foster care or who has aged out of system', 'The participant is a person who is currently in foster care or has aged out of the foster care system.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Youth in foster care or who has aged out of system', [Definition] = 'The participant is a person who is currently in foster care or has aged out of the foster care system.', [SortOrder] = 13.00 WHERE [Code] = '704' END -END - -PRINT N'Populate RefWorkbasedLearningOpportunityType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefWorkbasedLearningOpportunityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'Apprenticeship') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Apprenticeship', 'Apprenticeship', 'Apprenticeship is the type of work-based learning opportunity the student participated in.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] -SET [Description] = 'Apprenticeship', [Definition] = 'Apprenticeship is the type of work-based learning opportunity the student participated in.', [SortOrder] = 2.00 WHERE [Code] = 'Apprenticeship' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'ClinicalWork') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ClinicalWork', 'Clinical work experience', 'Clinical work experience is the type of work-based learning opportunity the student participated in.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] -SET [Description] = 'Clinical work experience', [Definition] = 'Clinical work experience is the type of work-based learning opportunity the student participated in.', [SortOrder] = 4.00 WHERE [Code] = 'ClinicalWork' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'CooperativeEducation') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('CooperativeEducation', 'Cooperative education', 'Cooperative education is the type of work-based learning opportunity the student participated in.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] -SET [Description] = 'Cooperative education', [Definition] = 'Cooperative education is the type of work-based learning opportunity the student participated in.', [SortOrder] = 5.00 WHERE [Code] = 'CooperativeEducation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'JobShadowing') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JobShadowing', 'Job shadowing', 'Job shadowing is the type of work-based learning opportunity the student participated in.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] -SET [Description] = 'Job shadowing', [Definition] = 'Job shadowing is the type of work-based learning opportunity the student participated in.', [SortOrder] = 6.00 WHERE [Code] = 'JobShadowing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'Mentorship') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Mentorship', 'Mentorship', 'Mentorship is the type of work-based learning opportunity the student participated in.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] -SET [Description] = 'Mentorship', [Definition] = 'Mentorship is the type of work-based learning opportunity the student participated in.', [SortOrder] = 8.00 WHERE [Code] = 'Mentorship' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'NonPaidInternship') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NonPaidInternship', 'Non-Paid Internship', 'Non-Paid Internship is the type of work-based learning opportunity the student participated in.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] -SET [Description] = 'Non-Paid Internship', [Definition] = 'Non-Paid Internship is the type of work-based learning opportunity the student participated in.', [SortOrder] = 9.00 WHERE [Code] = 'NonPaidInternship' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'OnTheJob') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OnTheJob', 'On-the-Job', 'On-the-Job is the type of work-based learning opportunity the student participated in.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] -SET [Description] = 'On-the-Job', [Definition] = 'On-the-Job is the type of work-based learning opportunity the student participated in.', [SortOrder] = 10.00 WHERE [Code] = 'OnTheJob' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'PaidInternship') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('PaidInternship', 'Paid internship', 'Paid internship is the type of work-based learning opportunity the student participated in.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] -SET [Description] = 'Paid internship', [Definition] = 'Paid internship is the type of work-based learning opportunity the student participated in.', [SortOrder] = 11.00 WHERE [Code] = 'PaidInternship' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'ServiceLearning') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ServiceLearning', 'Service learning', 'Service learning is the type of work-based learning opportunity the student participated in.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] -SET [Description] = 'Service learning', [Definition] = 'Service learning is the type of work-based learning opportunity the student participated in.', [SortOrder] = 16.00 WHERE [Code] = 'ServiceLearning' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'SupervisedAgricultural') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('SupervisedAgricultural', 'Supervised agricultural experience', 'Supervised agricultural experience is the type of work-based learning opportunity the student participated in.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] -SET [Description] = 'Supervised agricultural experience', [Definition] = 'Supervised agricultural experience is the type of work-based learning opportunity the student participated in.', [SortOrder] = 18.00 WHERE [Code] = 'SupervisedAgricultural' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'UnpaidInternship') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('UnpaidInternship', 'Unpaid internship', 'Unpaid internship is the type of work-based learning opportunity the student participated in.', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] -SET [Description] = 'Unpaid internship', [Definition] = 'Unpaid internship is the type of work-based learning opportunity the student participated in.', [SortOrder] = 30.00 WHERE [Code] = 'UnpaidInternship' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Other', 'Other', 'The type of work-based learning opportunity the student participated in is in a category not yet defined in CEDS.', 99.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] -SET [Description] = 'Other', [Definition] = 'The type of work-based learning opportunity the student participated in is in a category not yet defined in CEDS.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END -END -GO - -DECLARE @updateExisting bit = 1 - -PRINT N'Populate RefOrganizationIdentifierType table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationIdentifierType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '000006') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('000006', 'Activity Identifier') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'Activity Identifier' WHERE [Code] = '000006' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '000055') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('000055', 'Course Identifier') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'Course Identifier' WHERE [Code] = '000055' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '000056') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('000056', 'Course Code System') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'Course Code System' WHERE [Code] = '000056' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '000111') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('000111', 'Federal School Code') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'Federal School Code' WHERE [Code] = '000111' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '000166') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('000166', 'Institution IPEDS UnitID') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'Institution IPEDS UnitID' WHERE [Code] = '000166' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '000175') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('000175', 'Local Education Agency Supervisory Union Identification Number') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'Local Education Agency Supervisory Union Identification Number' WHERE [Code] = '000175' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '000203') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('000203', 'Office of Postsecondary Education Identifier') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'Office of Postsecondary Education Identifier' WHERE [Code] = '000203' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '000625') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('000625', 'Program Identifier') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'Program Identifier' WHERE [Code] = '000625' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '000781') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('000781', 'Adult Education Service Provider Identification System') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'Adult Education Service Provider Identification System' WHERE [Code] = '000781' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '000827') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('000827', 'Organization Identification System') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'Organization Identification System' WHERE [Code] = '000827' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '000978') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('000978', 'Course Section Identifier') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'Course Section Identifier' WHERE [Code] = '000978' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '001072') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('001072', 'Local Education Agency Identification System') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'Local Education Agency Identification System' WHERE [Code] = '001072' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '001073') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('001073', 'School Identification System') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'School Identification System' WHERE [Code] = '001073' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '001280') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('001280', 'Agency Course Identifier') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'Agency Course Identifier' WHERE [Code] = '001280' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentifierType] WHERE [Code] = '001315') BEGIN INSERT INTO dbo.[RefOrganizationIdentifierType]([Code], [Description]) -VALUES ('001315', 'Course Section Number') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentifierType] -SET [Description] = 'Course Section Number' WHERE [Code] = '001315' END -END - - -PRINT N'Populate RefPersonIdentifierType table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPersonIdentifierType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentifierType] WHERE [Code] = '000785') BEGIN INSERT INTO dbo.[RefPersonIdentifierType]([Code], [Description]) -VALUES ('000785', 'Child Identification System') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentifierType] -SET [Description] = 'Child Identification System' WHERE [Code] = '000785' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentifierType] WHERE [Code] = '001074') BEGIN INSERT INTO dbo.[RefPersonIdentifierType]([Code], [Description]) -VALUES ('001074', 'Staff Member Identification System') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentifierType] -SET [Description] = 'Staff Member Identification System' WHERE [Code] = '001074' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentifierType] WHERE [Code] = '001075') BEGIN INSERT INTO dbo.[RefPersonIdentifierType]([Code], [Description]) -VALUES ('001075', 'Student Identification System') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentifierType] -SET [Description] = 'Student Identification System' WHERE [Code] = '001075' END -END - - -PRINT N'Populate RefEducationLevelType table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEducationLevelType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevelType] WHERE [Code] = '000141') BEGIN INSERT INTO dbo.[RefEducationLevelType]([Code], [Description]) -VALUES ('000141', 'Highest Level of Education Completed') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevelType] -SET [Description] = 'Highest Level of Education Completed' WHERE [Code] = '000141' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevelType] WHERE [Code] = '000725') BEGIN INSERT INTO dbo.[RefEducationLevelType]([Code], [Description]) -VALUES ('000725', 'Competency Definition Education Level') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevelType] -SET [Description] = 'Competency Definition Education Level' WHERE [Code] = '000725' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevelType] WHERE [Code] = '001229') BEGIN INSERT INTO dbo.[RefEducationLevelType]([Code], [Description]) -VALUES ('001229', 'Maternal Guardian Education') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevelType] -SET [Description] = 'Maternal Guardian Education' WHERE [Code] = '001229' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevelType] WHERE [Code] = '001230') BEGIN INSERT INTO dbo.[RefEducationLevelType]([Code], [Description]) -VALUES ('001230', 'Paternal Guardian Education') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevelType] -SET [Description] = 'Paternal Guardian Education' WHERE [Code] = '001230' END -END - - -PRINT N'Populate RefGradeLevelType table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGradeLevelType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '000100') BEGIN INSERT INTO dbo.[RefGradeLevelType]([Code], [Description]) -VALUES ('000100', 'Entry Grade Level') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevelType] -SET [Description] = 'Entry Grade Level' WHERE [Code] = '000100' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '000125') BEGIN INSERT INTO dbo.[RefGradeLevelType]([Code], [Description]) -VALUES ('000125', 'Grade Level When Course Taken') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevelType] -SET [Description] = 'Grade Level When Course Taken' WHERE [Code] = '000125' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '000126') BEGIN INSERT INTO dbo.[RefGradeLevelType]([Code], [Description]) -VALUES ('000126', 'Grade Level When Assessed') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevelType] -SET [Description] = 'Grade Level When Assessed' WHERE [Code] = '000126' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '000131') BEGIN INSERT INTO dbo.[RefGradeLevelType]([Code], [Description]) -VALUES ('000131', 'Grades Offered') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevelType] -SET [Description] = 'Grades Offered' WHERE [Code] = '000131' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '000177') BEGIN INSERT INTO dbo.[RefGradeLevelType]([Code], [Description]) -VALUES ('000177', 'Assessment Level for Which Designed') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevelType] -SET [Description] = 'Assessment Level for Which Designed' WHERE [Code] = '000177' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '001057') BEGIN INSERT INTO dbo.[RefGradeLevelType]([Code], [Description]) -VALUES ('001057', 'Assessment Registration Grade Level to Be Assessed') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevelType] -SET [Description] = 'Assessment Registration Grade Level to Be Assessed' WHERE [Code] = '001057' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '001210') BEGIN INSERT INTO dbo.[RefGradeLevelType]([Code], [Description]) -VALUES ('001210', 'Exit Grade Level') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevelType] -SET [Description] = 'Exit Grade Level' WHERE [Code] = '001210' END -END - - -PRINT N'Populate RefOperationalStatusType table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOperationalStatusType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatusType] WHERE [Code] = '000174') BEGIN INSERT INTO dbo.[RefOperationalStatusType]([Code], [Description]) -VALUES ('000174', 'Local Education Agency Operational Status') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatusType] -SET [Description] = 'Local Education Agency Operational Status' WHERE [Code] = '000174' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatusType] WHERE [Code] = '000533') BEGIN INSERT INTO dbo.[RefOperationalStatusType]([Code], [Description]) -VALUES ('000533', 'School Operational Status') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatusType] -SET [Description] = 'School Operational Status' WHERE [Code] = '000533' END -END - - -PRINT N'Populate RefAddressType table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefAddressType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefAddressType] WHERE [Code] = '000010') BEGIN INSERT INTO dbo.[RefAddressType]([Code], [Description]) -VALUES ('000010', 'Address Type for Learner or Family') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAddressType] -SET [Description] = 'Address Type for Learner or Family' WHERE [Code] = '000010' END -END - - -PRINT N'Populate RefOrganizationElementType table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationElementType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationElementType] WHERE [Code] = '001078') BEGIN INSERT INTO dbo.[RefOrganizationElementType]([Code], [Description]) -VALUES ('001078', 'Adult Education Provider Type') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationElementType] -SET [Description] = 'Adult Education Provider Type' WHERE [Code] = '001078' END -END - - -PRINT N'Populate RefRoleStatusType table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefRoleStatusType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatusType] WHERE [Code] = '000094') BEGIN INSERT INTO dbo.[RefRoleStatusType]([Code], [Description]) -VALUES ('000094', 'Enrollment Status') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatusType] -SET [Description] = 'Enrollment Status' WHERE [Code] = '000094' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatusType] WHERE [Code] = '000096') BEGIN INSERT INTO dbo.[RefRoleStatusType]([Code], [Description]) -VALUES ('000096', 'Postsecondary Enrollment Status') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatusType] -SET [Description] = 'Postsecondary Enrollment Status' WHERE [Code] = '000096' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatusType] WHERE [Code] = '000347') BEGIN INSERT INTO dbo.[RefRoleStatusType]([Code], [Description]) -VALUES ('000347', 'Employment Status') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatusType] -SET [Description] = 'Employment Status' WHERE [Code] = '000347' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatusType] WHERE [Code] = '000767') BEGIN INSERT INTO dbo.[RefRoleStatusType]([Code], [Description]) -VALUES ('000767', 'Teacher Preparation Program Enrollment Status') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatusType] -SET [Description] = 'Teacher Preparation Program Enrollment Status' WHERE [Code] = '000767' END -END - - -PRINT N'Populate RefPersonStatusType table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPersonStatusType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'EconomicDisadvantage') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('EconomicDisadvantage', 'Economic Disadvantage') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Economic Disadvantage' WHERE [Code] = 'EconomicDisadvantage' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'HomelessUnaccompaniedYouth') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('HomelessUnaccompaniedYouth', 'Homeless Unaccompanied Youth') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Homeless Unaccompanied Youth' WHERE [Code] = 'HomelessUnaccompaniedYouth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'IDEA') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('IDEA', 'IDEA') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'IDEA' WHERE [Code] = 'IDEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'EnglishLearner') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('EnglishLearner', 'English Learner') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'English Learner' WHERE [Code] = 'EnglishLearner' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'Migrant') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('Migrant', 'Migrant') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Migrant' WHERE [Code] = 'Migrant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'SchoolChoiceAppliedforTransfer') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('SchoolChoiceAppliedforTransfer', 'School Choice Applied for Transfer') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'School Choice Applied for Transfer' WHERE [Code] = 'SchoolChoiceAppliedforTransfer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'SchoolChoiceEligibleforTransfer') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('SchoolChoiceEligibleforTransfer', 'School Choice Eligible for Transfer') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'School Choice Eligible for Transfer' WHERE [Code] = 'SchoolChoiceEligibleforTransfer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'SchoolChoiceTransfer') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('SchoolChoiceTransfer', 'School Choice Transfer') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'School Choice Transfer' WHERE [Code] = 'SchoolChoiceTransfer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'TitleISchoolSupplementalServicesApplied') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('TitleISchoolSupplementalServicesApplied', 'Title I School Supplemental Services Applied') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Title I School Supplemental Services Applied' WHERE [Code] = 'TitleISchoolSupplementalServicesApplied' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'TitleISchoolSupplementalServicesEligible') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('TitleISchoolSupplementalServicesEligible', 'Title I School Supplemental Services Eligible') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Title I School Supplemental Services Eligible' WHERE [Code] = 'TitleISchoolSupplementalServicesEligible' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'TitleISchoolSupplementalServicesReceived') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('TitleISchoolSupplementalServicesReceived', 'Title I School Supplemental Services Received') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Title I School Supplemental Services Received' WHERE [Code] = 'TitleISchoolSupplementalServicesReceived' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'TitleIIIImmigrant') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('TitleIIIImmigrant', 'Title III Immigrant') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Title III Immigrant' WHERE [Code] = 'TitleIIIImmigrant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'Truant') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('Truant', 'Truant') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Truant' WHERE [Code] = 'Truant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'SingleParentorSinglePregnantWoman') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('SingleParentorSinglePregnantWoman', 'Single Parent or Single Pregnant Woman') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Single Parent or Single Pregnant Woman' WHERE [Code] = 'SingleParentorSinglePregnantWoman' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'PerkinsEnglishLearner') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('PerkinsEnglishLearner', 'Perkins English Learner') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Perkins English Learner' WHERE [Code] = 'PerkinsEnglishLearner' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'Low-income') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('Low-income', 'Low-income') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Low-income' WHERE [Code] = 'Low-income' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'DislocatedWorker') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('DislocatedWorker', 'Dislocated Worker') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Dislocated Worker' WHERE [Code] = 'DislocatedWorker' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'PublicAssistance') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('PublicAssistance', 'Public Assistance') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Public Assistance' WHERE [Code] = 'PublicAssistance' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'RuralResidency') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('RuralResidency', 'Rural Residency') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Rural Residency' WHERE [Code] = 'RuralResidency' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'ProfessionalAssociationMembership') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('ProfessionalAssociationMembership', 'Professional Association Membership') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Professional Association Membership' WHERE [Code] = 'ProfessionalAssociationMembership' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'StateApprovedTrainer') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('StateApprovedTrainer', 'State Approved Trainer') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'State Approved Trainer' WHERE [Code] = 'StateApprovedTrainer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'StateApprovedTechnicalAssistanceProvider') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('StateApprovedTechnicalAssistanceProvider', 'State Approved Technical Assistance Provider') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'State Approved Technical Assistance Provider' WHERE [Code] = 'StateApprovedTechnicalAssistanceProvider' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonStatusType] WHERE [Code] = 'AwaitingFosterCare') BEGIN INSERT INTO dbo.[RefPersonStatusType]([Code], [Description]) -VALUES ('AwaitingFosterCare', 'Awaiting Foster Care') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonStatusType] -SET [Description] = 'Awaiting Foster Care' WHERE [Code] = 'AwaitingFosterCare' END -END - - -PRINT N'Populate RefParticipationType table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefParticipationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationType] WHERE [Code] = 'GEDPreparationProgramParticipation') BEGIN INSERT INTO dbo.[RefParticipationType]([Code], [Description]) -VALUES ('GEDPreparationProgramParticipation', 'GED Preparation Program Participation') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationType] -SET [Description] = 'GED Preparation Program Participation' WHERE [Code] = 'GEDPreparationProgramParticipation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationType] WHERE [Code] = 'GiftedandTalented') BEGIN INSERT INTO dbo.[RefParticipationType]([Code], [Description]) -VALUES ('GiftedandTalented', 'Gifted and Talented') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationType] -SET [Description] = 'Gifted and Talented' WHERE [Code] = 'GiftedandTalented' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationType] WHERE [Code] = 'HomelessServiced') BEGIN INSERT INTO dbo.[RefParticipationType]([Code], [Description]) -VALUES ('HomelessServiced', 'Homeless Serviced') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationType] -SET [Description] = 'Homeless Serviced' WHERE [Code] = 'HomelessServiced' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationType] WHERE [Code] = 'MigrantEducationProgramParticipation') BEGIN INSERT INTO dbo.[RefParticipationType]([Code], [Description]) -VALUES ('MigrantEducationProgramParticipation', 'Migrant Education Program Participation') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationType] -SET [Description] = 'Migrant Education Program Participation' WHERE [Code] = 'MigrantEducationProgramParticipation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationType] WHERE [Code] = 'NeglectedorDelinquent') BEGIN INSERT INTO dbo.[RefParticipationType]([Code], [Description]) -VALUES ('NeglectedorDelinquent', 'Neglected or Delinquent') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationType] -SET [Description] = 'Neglected or Delinquent' WHERE [Code] = 'NeglectedorDelinquent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationType] WHERE [Code] = 'Section504') BEGIN INSERT INTO dbo.[RefParticipationType]([Code], [Description]) -VALUES ('Section504', 'Section 504') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationType] -SET [Description] = 'Section 504' WHERE [Code] = 'Section504' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationType] WHERE [Code] = 'TitleIIIImmigrantParticipation') BEGIN INSERT INTO dbo.[RefParticipationType]([Code], [Description]) -VALUES ('TitleIIIImmigrantParticipation', 'Title III Immigrant Participation') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationType] -SET [Description] = 'Title III Immigrant Participation' WHERE [Code] = 'TitleIIIImmigrantParticipation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationType] WHERE [Code] = 'TitleISchoolwideProgramParticipation') BEGIN INSERT INTO dbo.[RefParticipationType]([Code], [Description]) -VALUES ('TitleISchoolwideProgramParticipation', 'Title I Schoolwide Program Participation') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationType] -SET [Description] = 'Title I Schoolwide Program Participation' WHERE [Code] = 'TitleISchoolwideProgramParticipation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationType] WHERE [Code] = 'TitleITargetedAssistanceParticipation') BEGIN INSERT INTO dbo.[RefParticipationType]([Code], [Description]) -VALUES ('TitleITargetedAssistanceParticipation', 'Title I Targeted Assistance Participation') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationType] -SET [Description] = 'Title I Targeted Assistance Participation' WHERE [Code] = 'TitleITargetedAssistanceParticipation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationType] WHERE [Code] = 'TitleIIIEnglishLearnerParticipation') BEGIN INSERT INTO dbo.[RefParticipationType]([Code], [Description]) -VALUES ('TitleIIIEnglishLearnerParticipation', 'Title III English Learner Participation') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationType] -SET [Description] = 'Title III English Learner Participation' WHERE [Code] = 'TitleIIIEnglishLearnerParticipation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationType] WHERE [Code] = 'KindergartenProgramParticipation') BEGIN INSERT INTO dbo.[RefParticipationType]([Code], [Description]) -VALUES ('KindergartenProgramParticipation', 'Kindergarten Program Participation') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationType] -SET [Description] = 'Kindergarten Program Participation' WHERE [Code] = 'KindergartenProgramParticipation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefParticipationType] WHERE [Code] = 'CareerPathwaysProgramParticipation') BEGIN INSERT INTO dbo.[RefParticipationType]([Code], [Description]) -VALUES ('CareerPathwaysProgramParticipation', 'Career Pathways Program Participation') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefParticipationType] -SET [Description] = 'Career Pathways Program Participation' WHERE [Code] = 'CareerPathwaysProgramParticipation' END -END - - -PRINT N'Populate RefOrganizationIndicator table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'AP Course Self Selection') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('AP Course Self Selection', 'Advanced Placement Course Self Selection') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Advanced Placement Course Self Selection' WHERE [Code] = 'AP Course Self Selection' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'PersistentlyLowestAchievingSchool') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('PersistentlyLowestAchievingSchool', 'Persistently Lowest Achieving School') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Persistently Lowest Achieving School' WHERE [Code] = 'PersistentlyLowestAchievingSchool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'SharedTime') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('SharedTime', 'Shared Time') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Shared Time' WHERE [Code] = 'SharedTime' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'AbilityGrouping') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('AbilityGrouping', 'Ability Grouping') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Ability Grouping' WHERE [Code] = 'AbilityGrouping' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'ProgramProvidesTranslatedMaterials') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('ProgramProvidesTranslatedMaterials', 'Program Provides Translated Materials') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Program Provides Translated Materials' WHERE [Code] = 'ProgramProvidesTranslatedMaterials' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'EarlyLearningProgramDevelopmentalScreening') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('EarlyLearningProgramDevelopmentalScreening', 'Early Learning Program Developmental Screening') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Early Learning Program Developmental Screening' WHERE [Code] = 'EarlyLearningProgramDevelopmentalScreening' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'ProgramProvidesWrittenHandbook') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('ProgramProvidesWrittenHandbook', 'Program Provides Written Handbook') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Program Provides Written Handbook' WHERE [Code] = 'ProgramProvidesWrittenHandbook' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'ProgramCollectsParentalFeedback') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('ProgramCollectsParentalFeedback', 'Program Collects Parental Feedback') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Program Collects Parental Feedback' WHERE [Code] = 'ProgramCollectsParentalFeedback' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'ProgramProvidesParentInvolvementOpportunity') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('ProgramProvidesParentInvolvementOpportunity', 'Program Provides Parent Involvement Opportunity') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Program Provides Parent Involvement Opportunity' WHERE [Code] = 'ProgramProvidesParentInvolvementOpportunity' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'ProgramProvidesParentEducation') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('ProgramProvidesParentEducation', 'Program Provides Parent Education') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Program Provides Parent Education' WHERE [Code] = 'ProgramProvidesParentEducation' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'AssessmentSharedwithParents') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('AssessmentSharedwithParents', 'Assessment Shared with Parents') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Assessment Shared with Parents' WHERE [Code] = 'AssessmentSharedwithParents' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'ProgramFollowsSalaryScale') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('ProgramFollowsSalaryScale', 'Program Follows Salary Scale') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Program Follows Salary Scale' WHERE [Code] = 'ProgramFollowsSalaryScale' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'DifferentialShiftPay') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('DifferentialShiftPay', 'Differential Shift Pay') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Differential Shift Pay' WHERE [Code] = 'DifferentialShiftPay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'Interdisciplinary') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('Interdisciplinary', 'Interdisciplinary') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Interdisciplinary' WHERE [Code] = 'Interdisciplinary' END -END - - -PRINT N'Populate RefEntityType table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEntityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12000') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12000', 'Early Learning', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Early Learning', [SortOrder] = 10.00 WHERE [Code] = '12000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12001') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12001', 'K12', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'K12', [SortOrder] = 20.00 WHERE [Code] = '12001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12002') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12002', 'Postsecondary', 30.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Postsecondary', [SortOrder] = 30.00 WHERE [Code] = '12002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12112') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12112', 'Career and Technical', 40.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Career and Technical', [SortOrder] = 40.00 WHERE [Code] = '12112' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12113') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12113', 'Adult Education', 50.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Adult Education', [SortOrder] = 50.00 WHERE [Code] = '12113' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12114') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12114', 'Workforce', 60.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Workforce', [SortOrder] = 60.00 WHERE [Code] = '12114' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12089') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12089', 'Assessments', 70.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Assessments', [SortOrder] = 70.00 WHERE [Code] = '12089' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12482') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12482', 'Credentials', 80.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Credentials', [SortOrder] = 80.00 WHERE [Code] = '12482' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12104') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12104', 'Competencies', 90.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Competencies', [SortOrder] = 90.00 WHERE [Code] = '12104' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12123') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12123', 'Learning Resources', 100.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Learning Resources', [SortOrder] = 100.00 WHERE [Code] = '12123' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12571') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12571', 'Facilities', 110.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Facilities', [SortOrder] = 110.00 WHERE [Code] = '12571' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12566') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12566', 'Implementation Variables', 120.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Implementation Variables', [SortOrder] = 120.00 WHERE [Code] = '12566' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12440') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12440', 'Authentication and Authorization', 130.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Authentication and Authorization', [SortOrder] = 130.00 WHERE [Code] = '12440' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = 'Course') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('Course', 'Course Table', 1) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Course Table', [SortOrder] = 1 WHERE [Code] = 'Course' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = 'LearningResource') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('LearningResource', 'LearningResource Table', 2) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'LearningResource Table', [SortOrder] = 2 WHERE [Code] = 'LearningResource' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = 'AssessmentItem') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('AssessmentItem', 'AssessmentItem Table', 3) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'AssessmentItem Table', [SortOrder] = 3 WHERE [Code] = 'AssessmentItem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = 'RubricCriterion') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('RubricCriterion', 'RubricCriterion Table', 4) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'RubricCriterion Table', [SortOrder] = 4 WHERE [Code] = 'RubricCriterion' END -END -GO - -DECLARE @updateExisting bit = 1 - - -PRINT N'Populate RefOrganizationIdentificationSystem table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationIdentificationSystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'Intermediate') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'Intermediate', 'Intermediate agency course code', 'The related Course Code is based on the intermediate agency defined course code system.', 1.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Course Code System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Course Code is based on the intermediate agency defined course code system.', [SortOrder] = 1.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'Intermediate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'LEA') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'LEA', 'LEA course code', 'The related Course Code is based on the LEA defined course code system.', 2.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Course Code System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Course Code is based on the LEA defined course code system.', [SortOrder] = 2.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'LEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'NCES') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'NCES', 'NCES Pilot Standard National Course Classification System for Secondary Education Codes', 'The related Course Code is based on the NCES Pilot Standard National Course Classification System for Secondary Education Codes.', 3.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Course Code System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Course Code is based on the NCES Pilot Standard National Course Classification System for Secondary Education Codes.', [SortOrder] = 3.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'NCES' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'Other', 'Other', 'The related Course Code is based on a course code system not yet categorized within CEDS.', 4.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Course Code System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Course Code is based on a course code system not yet categorized within CEDS.', [SortOrder] = 4.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'SCED') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'SCED', 'School Codes for the Exchange of Data (SCED) course code', 'The related Course Code is based on the School Codes for the Exchange of Data (SCED) course code system.', 5.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Course Code System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Course Code is based on the School Codes for the Exchange of Data (SCED) course code system.', [SortOrder] = 5.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'SCED' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'School') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'School', 'School course code', 'The related Course Code is based on the school''s course code system.', 6.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Course Code System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Course Code is based on the school''s course code system.', [SortOrder] = 6.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'School' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'State') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'State', 'State course code', 'The related Course Code is based on the State course code system.', 7.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Course Code System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Course Code is based on the State course code system.', [SortOrder] = 7.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'State' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'University') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'University', 'University course code', 'The related Course Code is based on the university course code system.', 8.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Course Code System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Course Code is based on the university course code system.', [SortOrder] = 8.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Course Code System' AND r.[Code] = 'University' END -END - -PRINT N'Populate RefOrganizationIdentificationSystem table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationIdentificationSystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'School') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'School', 'School-assigned number', 'The related Adult Education Service Provider Identifier uses the school-assigned number.', 1.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Adult Education Service Provider Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Adult Education Service Provider Identifier uses the school-assigned number.', [SortOrder] = 1.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'School' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'ACT') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'ACT', 'College Board/ACT program code set of PK-grade 12 institutions', 'The related Adult Education Service Provider Identifier uses the College Board/ACT program code set of PK-grade 12 institutions.', 2.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Adult Education Service Provider Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Adult Education Service Provider Identifier uses the College Board/ACT program code set of PK-grade 12 institutions.', [SortOrder] = 2.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'ACT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'LEA') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'LEA', 'Local Education Agency assigned number', 'The related Adult Education Service Provider Identifier uses the Local Education Agency assigned number.', 3.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Adult Education Service Provider Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Adult Education Service Provider Identifier uses the Local Education Agency assigned number.', [SortOrder] = 3.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'LEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'SEA') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'SEA', 'State Education Agency assigned number', 'The related Adult Education Service Provider Identifier uses the State Education Agency assigned number.', 4.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Adult Education Service Provider Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Adult Education Service Provider Identifier uses the State Education Agency assigned number.', [SortOrder] = 4.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'SEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'NCES') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'NCES', 'National Center for Education Statistics assigned number', 'The related Adult Education Service Provider Identifier uses the National Center for Education Statistics assigned number.', 5.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Adult Education Service Provider Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Adult Education Service Provider Identifier uses the National Center for Education Statistics assigned number.', [SortOrder] = 5.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'NCES' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'Federal') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'Federal', 'Federal identification number', 'The related Adult Education Service Provider Identifier uses the Federal identification number.', 6.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Adult Education Service Provider Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Adult Education Service Provider Identifier uses the Federal identification number.', [SortOrder] = 6.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'Federal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'DUNS') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'DUNS', 'Dun and Bradstreet number', 'The related Adult Education Service Provider Identifier uses the Dun and Bradstreet number.', 7.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Adult Education Service Provider Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Adult Education Service Provider Identifier uses the Dun and Bradstreet number.', [SortOrder] = 7.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'DUNS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'OtherFederal') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'OtherFederal', 'Other federally assigned number', 'The related Adult Education Service Provider Identifier uses an other federally assigned number.', 8.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Adult Education Service Provider Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Adult Education Service Provider Identifier uses an other federally assigned number.', [SortOrder] = 8.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'OtherFederal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'Other', 'Other', 'The related Adult Education Service Provider Identifier uses another identification system not yet defined n the CEDS vocabulary.', 9.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Adult Education Service Provider Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Adult Education Service Provider Identifier uses another identification system not yet defined n the CEDS vocabulary.', [SortOrder] = 9.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'SAM') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'SAM', 'System for Award Management Unique Entity Identifier', 'The related Adult Education Service Provider Identifier uses the System for Award Management (SAM) Unique Entity Identifier (UEI).', 9.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Adult Education Service Provider Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Adult Education Service Provider Identifier uses the System for Award Management (SAM) Unique Entity Identifier (UEI).', [SortOrder] = 9.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Adult Education Service Provider Identification System' AND r.[Code] = 'SAM' END -END - -PRINT N'Populate RefOrganizationIdentificationSystem table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationIdentificationSystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'School') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'School', 'School-assigned number', 'The Organization Identifier is a School-assigned number.', 1.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Organization Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The Organization Identifier is a School-assigned number.', [SortOrder] = 1.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'School' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'ACT') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'ACT', 'College Board/ACT program code set of PK-grade 12 institutions', 'The Organization Identifier is from the College Board/ACT program code set of PK-grade 12 institutions.', 2.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Organization Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The Organization Identifier is from the College Board/ACT program code set of PK-grade 12 institutions.', [SortOrder] = 2.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'ACT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'LEA') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'LEA', 'Local Education Agency assigned number', 'The Organization Identifier is a Local Education Agency assigned number.', 3.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Organization Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The Organization Identifier is a Local Education Agency assigned number.', [SortOrder] = 3.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'LEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'SEA') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'SEA', 'State Education Agency assigned number', 'The Organization Identifier is a State Education Agency assigned number.', 4.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Organization Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The Organization Identifier is a State Education Agency assigned number.', [SortOrder] = 4.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'SEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'NCES') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'NCES', 'National Center for Education Statistics assigned number', 'The Organization Identifier is a National Center for Education Statistics assigned number.', 5.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Organization Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The Organization Identifier is a National Center for Education Statistics assigned number.', [SortOrder] = 5.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'NCES' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'FEIN') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'FEIN', 'Federal employer identification number', 'The Organization Identifier is the organization''s Federal identification number.', 6.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Organization Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The Organization Identifier is the organization''s Federal identification number.', [SortOrder] = 6.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'FEIN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'DUNS') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'DUNS', 'Dun and Bradstreet number', 'The Organization Identifier is the organization''s Dun and Bradstreet number.', 7.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Organization Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The Organization Identifier is the organization''s Dun and Bradstreet number.', [SortOrder] = 7.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'DUNS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'OtherFederal') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'OtherFederal', 'Other federally assigned number', 'The Organization Identifier is an other federally assigned number.', 8.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Organization Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The Organization Identifier is an other federally assigned number.', [SortOrder] = 8.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'OtherFederal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'LicenseNumber') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'LicenseNumber', 'License Number', 'The Organization Identifier is a license number. A permit from an authority to own or use something, do a particular thing, or carry on a trade.', 9.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Organization Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The Organization Identifier is a license number. A permit from an authority to own or use something, do a particular thing, or carry on a trade.', [SortOrder] = 9.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'LicenseNumber' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'Other', 'Other', 'The Organization Identifier is from an identification system not yet defined in CEDS.', 9.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Organization Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The Organization Identifier is from an identification system not yet defined in CEDS.', [SortOrder] = 9.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'SAM') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'SAM', 'System for Award Management Unique Entity Identifier', 'The Organization Identifier is the organization''s System for Award Management (SAM) Unique Entity Identifier (UEI).', 10.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Organization Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The Organization Identifier is the organization''s System for Award Management (SAM) Unique Entity Identifier (UEI).', [SortOrder] = 10.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Organization Identification System' AND r.[Code] = 'SAM' END -END - -PRINT N'Populate RefOrganizationIdentificationSystem table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationIdentificationSystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'District') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'District', 'District-assigned number', 'The related Local Education Agency Identifier uses the District-assigned number.', 1.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Local Education Agency Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Local Education Agency Identifier uses the District-assigned number.', [SortOrder] = 1.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'District' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'ACT') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'ACT', 'College Board/ACT program code set of PK-grade 12 institutions', 'The related Local Education Agency Identifier uses the College Board/ACT program code set of PK-grade 12 institutions.', 2.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Local Education Agency Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Local Education Agency Identifier uses the College Board/ACT program code set of PK-grade 12 institutions.', [SortOrder] = 2.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'ACT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'SEA') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'SEA', 'State Education Agency assigned number', 'The related Local Education Agency Identifier uses the State Education Agency assigned number.', 3.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Local Education Agency Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Local Education Agency Identifier uses the State Education Agency assigned number.', [SortOrder] = 3.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'SEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'NCES') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'NCES', 'National Center for Education Statistics assigned number', 'The related Local Education Agency Identifier uses the National Center for Education Statistics assigned number.', 4.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Local Education Agency Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Local Education Agency Identifier uses the National Center for Education Statistics assigned number.', [SortOrder] = 4.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'NCES' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'Federal') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'Federal', 'Federal identification number', 'The related Local Education Agency Identifier uses the Federal identification number.', 5.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Local Education Agency Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Local Education Agency Identifier uses the Federal identification number.', [SortOrder] = 5.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'Federal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'DUNS') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'DUNS', 'Dun and Bradstreet number', 'The related Local Education Agency Identifier uses the Dun and Bradstreet number.', 6.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Local Education Agency Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Local Education Agency Identifier uses the Dun and Bradstreet number.', [SortOrder] = 6.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'DUNS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'CENSUSID') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'CENSUSID', 'Census Bureau identification code', 'The related Local Education Agency Identifier uses the Census Bureau identification code.', 6.10, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Local Education Agency Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Local Education Agency Identifier uses the Census Bureau identification code.', [SortOrder] = 6.10 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'CENSUSID' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'OtherFederal') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'OtherFederal', 'Other federally assigned number', 'The related Local Education Agency Identifier uses the Other federally assigned number.', 7.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Local Education Agency Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Local Education Agency Identifier uses the Other federally assigned number.', [SortOrder] = 7.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'OtherFederal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'Other', 'Other', 'The related Local Education Agency Identifier is based on an identification system not yet defined in CEDS.', 8.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Local Education Agency Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Local Education Agency Identifier is based on an identification system not yet defined in CEDS.', [SortOrder] = 8.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'SAM') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'SAM', 'System for Award Management Unique Entity Identifier', 'The related Local Education Agency Identifier uses the System for Award Management (SAM) Unique Entity Identifier (UEI).', 8.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'Local Education Agency Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related Local Education Agency Identifier uses the System for Award Management (SAM) Unique Entity Identifier (UEI).', [SortOrder] = 8.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'Local Education Agency Identification System' AND r.[Code] = 'SAM' END -END - -PRINT N'Populate RefOrganizationIdentificationSystem table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationIdentificationSystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'School') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'School', 'School-assigned number', 'The related School Identifier uses a School-assigned number.', 1.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'School Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related School Identifier uses a School-assigned number.', [SortOrder] = 1.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'School' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'ACT') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'ACT', 'College Board/ACT program code set of PK-grade 12 institutions', 'The related School Identifier uses the College Board/ACT program code set of PK-grade 12 institutions.', 2.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'School Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related School Identifier uses the College Board/ACT program code set of PK-grade 12 institutions.', [SortOrder] = 2.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'ACT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'LEA') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'LEA', 'Local Education Agency assigned number', 'The related School Identifier uses a Local Education Agency assigned number.', 3.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'School Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related School Identifier uses a Local Education Agency assigned number.', [SortOrder] = 3.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'LEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'SEA') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'SEA', 'State Education Agency assigned number', 'The related School Identifier uses the State Education Agency assigned number.', 4.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'School Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related School Identifier uses the State Education Agency assigned number.', [SortOrder] = 4.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'SEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'NCES') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'NCES', 'National Center for Education Statistics assigned number', 'The related School Identifier uses the National Center for Education Statistics assigned number.', 5.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'School Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related School Identifier uses the National Center for Education Statistics assigned number.', [SortOrder] = 5.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'NCES' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'Federal') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'Federal', 'Federal identification number', 'The related School Identifier uses the federal identification number.', 6.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'School Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related School Identifier uses the federal identification number.', [SortOrder] = 6.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'Federal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'DUNS') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'DUNS', 'Dun and Bradstreet number', 'The related School Identifier uses the Dun and Bradstreet number.', 7.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'School Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related School Identifier uses the Dun and Bradstreet number.', [SortOrder] = 7.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'DUNS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'OtherFederal') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'OtherFederal', 'Other federally assigned number', 'The related School Identifier uses another federally assigned number.', 8.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'School Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related School Identifier uses another federally assigned number.', [SortOrder] = 8.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'OtherFederal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'StateUniversitySystem') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'StateUniversitySystem', 'State University System assigned number', 'The related School Identifier uses a State University System assigned number.', 8.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'School Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related School Identifier uses a State University System assigned number.', [SortOrder] = 8.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'StateUniversitySystem' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'Other', 'Other', 'The related School Identifier uses an identification system not yet categorized in CEDS.', 9.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'School Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related School Identifier uses an identification system not yet categorized in CEDS.', [SortOrder] = 9.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'SAM') BEGIN INSERT INTO dbo.[RefOrganizationIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefOrganizationIdentifierTypeId]) -SELECT 'SAM', 'System for Award Management Unique Entity Identifier', 'The related School Identifier uses the System for Award Management (SAM) Unique Entity Identifier (UEI).', 9.00, [RefOrganizationIdentifierTypeId] -FROM dbo.RefOrganizationIdentifierType WHERE Description = 'School Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIdentificationSystem] -SET [Definition] = 'The related School Identifier uses the System for Award Management (SAM) Unique Entity Identifier (UEI).', [SortOrder] = 9.00 -FROM dbo.[RefOrganizationIdentificationSystem] r INNER JOIN dbo.RefOrganizationIdentifierType t ON t.RefOrganizationIdentifierTypeId = r.RefOrganizationIdentifierTypeId WHERE t.[Description] = 'School Identification System' AND r.[Code] = 'SAM' END -END - - -PRINT N'Populate RefPersonIdentificationSystem table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPersonIdentificationSystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'CanadianSIN') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'CanadianSIN', 'Canadian Social Insurance Number', 'The related Child Identifier uses the child''s Canadian Social Insurance Number.', 1.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Child Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Child Identifier uses the child''s Canadian Social Insurance Number.', [SortOrder] = 1.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'CanadianSIN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'District') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'District', 'District-assigned number', 'The related Child Identifier uses the child''s District-assigned number.', 2.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Child Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Child Identifier uses the child''s District-assigned number.', [SortOrder] = 2.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'District' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'Family') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'Family', 'Family unit number', 'The related Child Identifier uses the child''s Family unit number.', 3.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Child Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Child Identifier uses the child''s Family unit number.', [SortOrder] = 3.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'Family' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'Federal') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'Federal', 'Federal identification number', 'The related Child Identifier uses the child''s Federal identification number.', 4.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Child Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Child Identifier uses the child''s Federal identification number.', [SortOrder] = 4.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'Federal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'NationalMigrant') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'NationalMigrant', 'National migrant number', 'The related Child Identifier uses the child''s National migrant number.', 5.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Child Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Child Identifier uses the child''s National migrant number.', [SortOrder] = 5.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'NationalMigrant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'School') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'School', 'School-assigned number', 'The related Child Identifier uses the child''s School-assigned number.', 6.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Child Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Child Identifier uses the child''s School-assigned number.', [SortOrder] = 6.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'School' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'SSN') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'SSN', 'Social Security Administration number', 'The related Child Identifier uses the child''s Social Security Administration number.', 7.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Child Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Child Identifier uses the child''s Social Security Administration number.', [SortOrder] = 7.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'SSN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'State') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'State', 'State-assigned number', 'The related Child Identifier uses the child''s State-assigned number.', 8.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Child Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Child Identifier uses the child''s State-assigned number.', [SortOrder] = 8.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'State' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'StateMigrant') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'StateMigrant', 'State migrant number', 'The related Child Identifier uses the child''s State migrant number.', 9.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Child Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Child Identifier uses the child''s State migrant number.', [SortOrder] = 9.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'StateMigrant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'Program') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'Program', 'Program-assigned number', 'The related Child Identifier uses the child''s Program-assigned number.', 10.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Child Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Child Identifier uses the child''s Program-assigned number.', [SortOrder] = 10.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'Program' END -END - -PRINT N'Populate RefPersonIdentificationSystem table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPersonIdentificationSystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'SSN') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'SSN', 'Social Security Administration number', 'The related Staff Identifier uses the staff member''s Social Security Administration number.', 1.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier uses the staff member''s Social Security Administration number.', [SortOrder] = 1.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'SSN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'USVisa') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'USVisa', 'US government Visa number', 'The related Staff Identifier uses the staff member''s US government Visa number.', 2.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier uses the staff member''s US government Visa number.', [SortOrder] = 2.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'USVisa' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'PIN') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'PIN', 'Personal identification number', 'The related Staff Identifier uses the staff member''s Personal identification number.', 3.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier uses the staff member''s Personal identification number.', [SortOrder] = 3.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'PIN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'Federal') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'Federal', 'Federal identification number', 'The related Staff Identifier uses the staff member''s Federal identification number.', 4.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier uses the staff member''s Federal identification number.', [SortOrder] = 4.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'Federal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'DriversLicense') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'DriversLicense', 'Driver''s license number', 'The related Staff Identifier uses the staff member''s Driver''s license number.', 5.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier uses the staff member''s Driver''s license number.', [SortOrder] = 5.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'DriversLicense' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'Medicaid') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'Medicaid', 'Medicaid number', 'The related Staff Identifier uses the staff member''s Medicaid number.', 6.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier uses the staff member''s Medicaid number.', [SortOrder] = 6.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'Medicaid' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'HealthRecord') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'HealthRecord', 'Health record number', 'The related Staff Identifier uses the staff member''s Health record number.', 7.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier uses the staff member''s Health record number.', [SortOrder] = 7.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'HealthRecord' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'ProfessionalCertificate') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'ProfessionalCertificate', 'Professional certificate or license number', 'The related Staff Identifier uses the staff member''s Professional certificate or license number.', 8.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier uses the staff member''s Professional certificate or license number.', [SortOrder] = 8.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'ProfessionalCertificate' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'School') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'School', 'School-assigned number', 'The related Staff Identifier uses the staff member''s School-assigned number.', 9.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier uses the staff member''s School-assigned number.', [SortOrder] = 9.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'School' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'District') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'District', 'District-assigned number', 'The related Staff Identifier uses the staff member''s District-assigned number.', 10.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier uses the staff member''s District-assigned number.', [SortOrder] = 10.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'District' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'State') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'State', 'State-assigned number', 'The related Staff Identifier uses the staff member''s State-assigned number.', 11.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier uses the staff member''s State-assigned number.', [SortOrder] = 11.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'State' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'OtherFederal') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'OtherFederal', 'Other federally assigned number', 'The related Staff Identifier uses the staff member''s Other federally assigned number.', 12.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier uses the staff member''s Other federally assigned number.', [SortOrder] = 12.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'OtherFederal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'SelectiveService') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'SelectiveService', 'Selective Service Number', 'The related Staff Identifier uses the staff member''s Selective Service Number.', 13.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier uses the staff member''s Selective Service Number.', [SortOrder] = 13.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'SelectiveService' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'CanadianSIN') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'CanadianSIN', 'Canadian Social Insurance Number', 'The related Staff Identifier uses the staff member''s Canadian Social Insurance Number.', 14.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier uses the staff member''s Canadian Social Insurance Number.', [SortOrder] = 14.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'CanadianSIN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'Other', 'Other', 'The related Staff Identifier is from an identification system not yet defined in CEDS.', 15.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Staff Identifier is from an identification system not yet defined in CEDS.', [SortOrder] = 15.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'Other' END -END - -PRINT N'Populate RefPersonIdentificationSystem table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPersonIdentificationSystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'CanadianSIN') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'CanadianSIN', 'Canadian Social Insurance Number', 'The related Student Identifier uses the student''s Canadian Social Insurance Number.', 1.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Student Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Student Identifier uses the student''s Canadian Social Insurance Number.', [SortOrder] = 1.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'CanadianSIN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'District') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'District', 'District-assigned number', 'The related Student Identifier uses the student''s district-assigned number.', 2.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Student Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Student Identifier uses the student''s district-assigned number.', [SortOrder] = 2.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'District' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'Family') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'Family', 'Family unit number', 'The related Student Identifier uses the student''s family unit number.', 3.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Student Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Student Identifier uses the student''s family unit number.', [SortOrder] = 3.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'Family' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'Federal') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'Federal', 'Federal identification number', 'The related Student Identifier uses the student''s federal identification number.', 4.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Student Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Student Identifier uses the student''s federal identification number.', [SortOrder] = 4.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'Federal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'NationalMigrant') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'NationalMigrant', 'National migrant number', 'The related Student Identifier uses the student''s national migrant number.', 5.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Student Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Student Identifier uses the student''s national migrant number.', [SortOrder] = 5.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'NationalMigrant' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'School') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'School', 'School-assigned number', 'The related Student Identifier uses the student''s school-assigned number.', 6.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Student Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Student Identifier uses the student''s school-assigned number.', [SortOrder] = 6.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'School' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'SSN') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'SSN', 'Social Security Administration number', 'The related Student Identifier uses the student''s Social Security Administration number.', 7.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Student Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Student Identifier uses the student''s Social Security Administration number.', [SortOrder] = 7.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'SSN' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'State') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'State', 'State-assigned number', 'The related Student Identifier uses the student''s state-assigned number.', 8.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Student Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Student Identifier uses the student''s state-assigned number.', [SortOrder] = 8.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'State' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'StateMigrant') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) -SELECT 'StateMigrant', 'State migrant number', 'The related Student Identifier uses the student''s State migrant number.', 9.00, [RefPersonIdentifierTypeId] -FROM dbo.RefPersonIdentifierType WHERE Description = 'Student Identification System' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] -SET [Definition] = 'The related Student Identifier uses the student''s State migrant number.', [SortOrder] = 9.00 -FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'StateMigrant' END -END - - -PRINT N'Populate RefEducationLevel table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEducationLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01043') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01043', 'No school completed ', 'No school completed is the extent of formal instruction a person has received.', 0.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'No school completed is the extent of formal instruction a person has received.', [SortOrder] = 0.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01043' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00788') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00788', 'Preschool ', 'Preschool is the extent of formal instruction a person has received.', 1.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Preschool is the extent of formal instruction a person has received.', [SortOrder] = 1.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00788' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00805') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00805', 'Kindergarten ', 'Kindergarten is the extent of formal instruction a person has received.', 2.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Kindergarten is the extent of formal instruction a person has received.', [SortOrder] = 2.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00805' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00790') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00790', 'First grade ', 'First grade is the extent of formal instruction a person has received.', 3.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'First grade is the extent of formal instruction a person has received.', [SortOrder] = 3.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00790' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00791') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00791', 'Second grade ', 'Second grade is the extent of formal instruction a person has received.', 4.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Second grade is the extent of formal instruction a person has received.', [SortOrder] = 4.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00791' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00792') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00792', 'Third grade ', 'Third grade is the extent of formal instruction a person has received.', 5.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Third grade is the extent of formal instruction a person has received.', [SortOrder] = 5.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00792' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00793') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00793', 'Fourth grade ', 'Fourth grade is the extent of formal instruction a person has received.', 6.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Fourth grade is the extent of formal instruction a person has received.', [SortOrder] = 6.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00793' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00794') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00794', 'Fifth grade ', 'Fifth grade is the extent of formal instruction a person has received.', 7.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Fifth grade is the extent of formal instruction a person has received.', [SortOrder] = 7.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00794' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00795') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00795', 'Sixth grade ', 'Sixth grade is the extent of formal instruction a person has received.', 8.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Sixth grade is the extent of formal instruction a person has received.', [SortOrder] = 8.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00795' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00796') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00796', 'Seventh grade ', 'Seventh grade is the extent of formal instruction a person has received.', 9.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Seventh grade is the extent of formal instruction a person has received.', [SortOrder] = 9.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00796' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00798') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00798', 'Eighth grade ', 'Eighth grade is the extent of formal instruction a person has received.', 10.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Eighth grade is the extent of formal instruction a person has received.', [SortOrder] = 10.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00798' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00799') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00799', 'Ninth grade ', 'Ninth grade is the extent of formal instruction a person has received.', 11.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Ninth grade is the extent of formal instruction a person has received.', [SortOrder] = 11.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00799' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00800') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00800', 'Tenth grade ', 'Tenth grade is the extent of formal instruction a person has received.', 12.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Tenth grade is the extent of formal instruction a person has received.', [SortOrder] = 12.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00800' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00801') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00801', 'Eleventh Grade ', 'Eleventh Grade is the extent of formal instruction a person has received.', 13.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Eleventh Grade is the extent of formal instruction a person has received.', [SortOrder] = 13.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00801' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01809') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01809', '12th grade, no diploma ', '12th grade, no diploma is the extent of formal instruction a person has received.', 14.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = '12th grade, no diploma is the extent of formal instruction a person has received.', [SortOrder] = 14.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01809' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01044') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01044', 'High school diploma ', 'High school diploma is the extent of formal instruction a person has received.', 15.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'High school diploma is the extent of formal instruction a person has received.', [SortOrder] = 15.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01044' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '02408') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '02408', 'High school completers (e.g., certificate of attendance) ', 'High school completers (e.g., certificate of attendance) is the extent of formal instruction a person has received.', 16.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'High school completers (e.g., certificate of attendance) is the extent of formal instruction a person has received.', [SortOrder] = 16.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '02408' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '02409') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '02409', 'High school equivalency (e.g., GED) ', 'High school equivalency (e.g., GED) is the extent of formal instruction a person has received.', 17.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'High school equivalency (e.g., GED) is the extent of formal instruction a person has received.', [SortOrder] = 17.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '02409' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00803') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00803', 'Grade 13', 'Grade 13 is the extent of formal instruction a person has received.', 18.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Grade 13 is the extent of formal instruction a person has received.', [SortOrder] = 18.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00803' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00819') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00819', 'Career and Technical Education certificate', 'Career and Technical Education certificate is the extent of formal instruction a person has received.', 18.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Career and Technical Education certificate is the extent of formal instruction a person has received.', [SortOrder] = 18.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '00819' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01049') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01049', 'Some college but no degree ', 'Some college but no degree is the extent of formal instruction a person has received.', 19.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Some college but no degree is the extent of formal instruction a person has received.', [SortOrder] = 19.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01049' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01047') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01047', 'Formal award, certificate or diploma (less than one year) ', 'Formal award, certificate or diploma (less than one year) is the extent of formal instruction a person has received.', 20.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Formal award, certificate or diploma (less than one year) is the extent of formal instruction a person has received.', [SortOrder] = 20.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01047' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01048') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01048', 'Formal award, certificate or diploma (more than or equal to one year) ', 'Formal award, certificate or diploma (more than or equal to one year) is the extent of formal instruction a person has received.', 21.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Formal award, certificate or diploma (more than or equal to one year) is the extent of formal instruction a person has received.', [SortOrder] = 21.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01048' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01050') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01050', 'Associate''s degree (two years or more) ', 'Associate''s degree (two years or more) is the extent of formal instruction a person has received.', 22.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Associate''s degree (two years or more) is the extent of formal instruction a person has received.', [SortOrder] = 22.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01050' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '73063') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '73063', 'Adult education certification, endorsement, or degree', 'Adult education certification, endorsement, or degree is the extent of formal instruction a person has received.', 22.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Adult education certification, endorsement, or degree is the extent of formal instruction a person has received.', [SortOrder] = 22.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '73063' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01051') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01051', 'Bachelor''s (Baccalaureate) degree ', 'Bachelor''s (Baccalaureate) degree is the extent of formal instruction a person has received.', 24.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Bachelor''s (Baccalaureate) degree is the extent of formal instruction a person has received.', [SortOrder] = 24.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01051' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01054') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01054', 'Master''s degree (e.g., M.A., M.S., M. Eng., M.Ed., M.S.W., M.B.A., M.L.S.) ', 'Master''s degree (e.g., M.A., M.S., M. Eng., M.Ed., M.S.W., M.B.A., M.L.S.) is the extent of formal instruction a person has received.', 25.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Master''s degree (e.g., M.A., M.S., M. Eng., M.Ed., M.S.W., M.B.A., M.L.S.) is the extent of formal instruction a person has received.', [SortOrder] = 25.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01054' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01055') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01055', 'Specialist''s degree (e.g., Ed.S.) ', 'Specialist''s degree (e.g., Ed.S.) is the extent of formal instruction a person has received.', 26.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Specialist''s degree (e.g., Ed.S.) is the extent of formal instruction a person has received.', [SortOrder] = 26.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01055' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '73081') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '73081', 'Post-master’s certificate', 'Post-master’s certificate is the extent of formal instruction a person has received.', 26.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Post-master’s certificate is the extent of formal instruction a person has received.', [SortOrder] = 26.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '73081' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01052') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01052', 'Graduate certificate ', 'Graduate certificate is the extent of formal instruction a person has received.', 27.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Graduate certificate is the extent of formal instruction a person has received.', [SortOrder] = 27.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01052' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01057') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01057', 'Doctoral (Doctor''s) degree ', 'Doctoral (Doctor''s) degree is the extent of formal instruction a person has received.', 28.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Doctoral (Doctor''s) degree is the extent of formal instruction a person has received.', [SortOrder] = 28.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01057' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01053') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01053', 'First-professional degree ', 'First-professional degree is the extent of formal instruction a person has received.', 29.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'First-professional degree is the extent of formal instruction a person has received.', [SortOrder] = 29.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01053' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01056') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01056', 'Post-professional degree ', 'Post-professional degree is the extent of formal instruction a person has received.', 30.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Post-professional degree is the extent of formal instruction a person has received.', [SortOrder] = 30.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '01056' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '73082') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '73082', 'Doctor’s degree-research/scholarship', 'Doctor’s degree-research/scholarship is the extent of formal instruction a person has received.', 31.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Doctor’s degree-research/scholarship is the extent of formal instruction a person has received.', [SortOrder] = 31.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '73082' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '73083') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '73083', 'Doctor’s degree-professional practice', 'Doctor’s degree-professional practice is the extent of formal instruction a person has received.', 31.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Doctor’s degree-professional practice is the extent of formal instruction a person has received.', [SortOrder] = 31.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '73083' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '73084') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '73084', 'Doctor’s degree-other', 'Doctor’s degree-other is the extent of formal instruction a person has received.', 31.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Doctor’s degree-other is the extent of formal instruction a person has received.', [SortOrder] = 31.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '73084' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '73085') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '73085', 'Doctor’s degree-research/scholarship', 'Doctor’s degree-research/scholarship is the extent of formal instruction a person has received.', 31.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Doctor’s degree-research/scholarship is the extent of formal instruction a person has received.', [SortOrder] = 31.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '73085' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '09999') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '09999', 'Other', 'The extent of formal instruction a person has received is in a category not yet defined in CEDS.', 32.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Highest Level of Education Completed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'The extent of formal instruction a person has received is in a category not yet defined in CEDS.', [SortOrder] = 32.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Highest Level of Education Completed' AND r.[Code] = '09999' END -END - -PRINT N'Populate RefEducationLevel table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEducationLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01043') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01043', 'No school completed ', 'No school completed is the extent of formal instruction a person has received.', 0.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'No school completed is the extent of formal instruction a person has received.', [SortOrder] = 0.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01043' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00788') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00788', 'Preschool ', 'Preschool is the extent of formal instruction a person has received.', 1.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Preschool is the extent of formal instruction a person has received.', [SortOrder] = 1.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00788' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00805') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00805', 'Kindergarten ', 'Kindergarten is the extent of formal instruction a person has received.', 2.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Kindergarten is the extent of formal instruction a person has received.', [SortOrder] = 2.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00805' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00790') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00790', 'First grade ', 'First grade is the extent of formal instruction a person has received.', 3.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'First grade is the extent of formal instruction a person has received.', [SortOrder] = 3.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00790' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00791') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00791', 'Second grade ', 'Second grade is the extent of formal instruction a person has received.', 4.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Second grade is the extent of formal instruction a person has received.', [SortOrder] = 4.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00791' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00792') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00792', 'Third grade ', 'Third grade is the extent of formal instruction a person has received.', 5.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Third grade is the extent of formal instruction a person has received.', [SortOrder] = 5.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00792' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00793') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00793', 'Fourth grade ', 'Fourth grade is the extent of formal instruction a person has received.', 6.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Fourth grade is the extent of formal instruction a person has received.', [SortOrder] = 6.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00793' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00794') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00794', 'Fifth grade ', 'Fifth grade is the extent of formal instruction a person has received.', 7.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Fifth grade is the extent of formal instruction a person has received.', [SortOrder] = 7.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00794' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00795') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00795', 'Sixth grade ', 'Sixth grade is the extent of formal instruction a person has received.', 8.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Sixth grade is the extent of formal instruction a person has received.', [SortOrder] = 8.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00795' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00796') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00796', 'Seventh grade ', 'Seventh grade is the extent of formal instruction a person has received.', 9.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Seventh grade is the extent of formal instruction a person has received.', [SortOrder] = 9.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00796' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00798') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00798', 'Eighth grade ', 'Eighth grade is the extent of formal instruction a person has received.', 10.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Eighth grade is the extent of formal instruction a person has received.', [SortOrder] = 10.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00798' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00799') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00799', 'Ninth grade ', 'Ninth grade is the extent of formal instruction a person has received.', 11.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Ninth grade is the extent of formal instruction a person has received.', [SortOrder] = 11.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00799' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00800') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00800', 'Tenth grade ', 'Tenth grade is the extent of formal instruction a person has received.', 12.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Tenth grade is the extent of formal instruction a person has received.', [SortOrder] = 12.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00800' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00801') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00801', 'Eleventh Grade ', 'Eleventh Grade is the extent of formal instruction a person has received.', 13.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Eleventh Grade is the extent of formal instruction a person has received.', [SortOrder] = 13.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00801' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01809') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01809', '12th grade, no diploma ', '12th grade, no diploma is the extent of formal instruction a person has received.', 14.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = '12th grade, no diploma is the extent of formal instruction a person has received.', [SortOrder] = 14.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01809' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01044') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01044', 'High school diploma ', 'High school diploma is the extent of formal instruction a person has received.', 15.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'High school diploma is the extent of formal instruction a person has received.', [SortOrder] = 15.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01044' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '02408') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '02408', 'High school completers (e.g., certificate of attendance) ', 'High school completers (e.g., certificate of attendance) is the extent of formal instruction a person has received.', 16.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'High school completers (e.g., certificate of attendance) is the extent of formal instruction a person has received.', [SortOrder] = 16.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '02408' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '02409') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '02409', 'High school equivalency (e.g., GED) ', 'High school equivalency (e.g., GED) is the extent of formal instruction a person has received.', 17.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'High school equivalency (e.g., GED) is the extent of formal instruction a person has received.', [SortOrder] = 17.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '02409' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00803') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00803', 'Grade 13', 'Grade 13 is the extent of formal instruction a person has received.', 18.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Grade 13 is the extent of formal instruction a person has received.', [SortOrder] = 18.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00803' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00819') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '00819', 'Career and Technical Education certificate', 'Career and Technical Education certificate is the extent of formal instruction a person has received.', 18.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Career and Technical Education certificate is the extent of formal instruction a person has received.', [SortOrder] = 18.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '00819' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01049') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01049', 'Some college but no degree ', 'Some college but no degree is the extent of formal instruction a person has received.', 19.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Some college but no degree is the extent of formal instruction a person has received.', [SortOrder] = 19.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01049' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01047') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01047', 'Formal award, certificate or diploma (less than one year) ', 'Formal award, certificate or diploma (less than one year) is the extent of formal instruction a person has received.', 20.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Formal award, certificate or diploma (less than one year) is the extent of formal instruction a person has received.', [SortOrder] = 20.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01047' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01048') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01048', 'Formal award, certificate or diploma (more than or equal to one year) ', 'Formal award, certificate or diploma (more than or equal to one year) is the extent of formal instruction a person has received.', 21.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Formal award, certificate or diploma (more than or equal to one year) is the extent of formal instruction a person has received.', [SortOrder] = 21.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01048' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01050') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01050', 'Associate''s degree (two years or more) ', 'Associate''s degree (two years or more) is the extent of formal instruction a person has received.', 22.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Associate''s degree (two years or more) is the extent of formal instruction a person has received.', [SortOrder] = 22.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01050' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '73063') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '73063', 'Adult education certification, endorsement, or degree', 'Adult education certification, endorsement, or degree is the extent of formal instruction a person has received.', 22.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Adult education certification, endorsement, or degree is the extent of formal instruction a person has received.', [SortOrder] = 22.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '73063' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01051') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01051', 'Bachelor''s (Baccalaureate) degree ', 'Bachelor''s (Baccalaureate) degree is the extent of formal instruction a person has received.', 24.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Bachelor''s (Baccalaureate) degree is the extent of formal instruction a person has received.', [SortOrder] = 24.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01051' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01054') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01054', 'Master''s degree (e.g., M.A., M.S., M. Eng., M.Ed., M.S.W., M.B.A., M.L.S.) ', 'Master''s degree (e.g., M.A., M.S., M. Eng., M.Ed., M.S.W., M.B.A., M.L.S.) is the extent of formal instruction a person has received.', 25.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Master''s degree (e.g., M.A., M.S., M. Eng., M.Ed., M.S.W., M.B.A., M.L.S.) is the extent of formal instruction a person has received.', [SortOrder] = 25.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01054' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01055') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01055', 'Specialist''s degree (e.g., Ed.S.) ', 'Specialist''s degree (e.g., Ed.S.) is the extent of formal instruction a person has received.', 26.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Specialist''s degree (e.g., Ed.S.) is the extent of formal instruction a person has received.', [SortOrder] = 26.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01055' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '73081') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '73081', 'Post-master’s certificate', 'Post-master’s certificate is the extent of formal instruction a person has received.', 26.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Post-master’s certificate is the extent of formal instruction a person has received.', [SortOrder] = 26.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '73081' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01052') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01052', 'Graduate certificate ', 'Graduate certificate is the extent of formal instruction a person has received.', 27.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Graduate certificate is the extent of formal instruction a person has received.', [SortOrder] = 27.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01052' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01057') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01057', 'Doctoral (Doctor''s) degree ', 'Doctoral (Doctor''s) degree is the extent of formal instruction a person has received.', 28.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Doctoral (Doctor''s) degree is the extent of formal instruction a person has received.', [SortOrder] = 28.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01057' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01053') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01053', 'First-professional degree ', 'First-professional degree is the extent of formal instruction a person has received.', 29.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'First-professional degree is the extent of formal instruction a person has received.', [SortOrder] = 29.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01053' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01056') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01056', 'Post-professional degree ', 'Post-professional degree is the extent of formal instruction a person has received.', 30.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Post-professional degree is the extent of formal instruction a person has received.', [SortOrder] = 30.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '01056' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '73082') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '73082', 'Doctor’s degree-research/scholarship', 'Doctor’s degree-research/scholarship is the extent of formal instruction a person has received.', 31.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Doctor’s degree-research/scholarship is the extent of formal instruction a person has received.', [SortOrder] = 31.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '73082' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '73083') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '73083', 'Doctor’s degree-professional practice', 'Doctor’s degree-professional practice is the extent of formal instruction a person has received.', 31.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Doctor’s degree-professional practice is the extent of formal instruction a person has received.', [SortOrder] = 31.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '73083' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '73084') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '73084', 'Doctor’s degree-other', 'Doctor’s degree-other is the extent of formal instruction a person has received.', 31.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Doctor’s degree-other is the extent of formal instruction a person has received.', [SortOrder] = 31.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '73084' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '73085') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '73085', 'Doctor’s degree-research/scholarship', 'Doctor’s degree-research/scholarship is the extent of formal instruction a person has received.', 31.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'Doctor’s degree-research/scholarship is the extent of formal instruction a person has received.', [SortOrder] = 31.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '73085' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '09999') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '09999', 'Other', 'The extent of formal instruction a person has received is in a category not yet defined in CEDS.', 32.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Competency Definition Education Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = 'The extent of formal instruction a person has received is in a category not yet defined in CEDS.', [SortOrder] = 32.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Competency Definition Education Level' AND r.[Code] = '09999' END -END - -PRINT N'Populate RefEducationLevel table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEducationLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01', 'Less than high school', NULL, 0.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Maternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 0.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '02', 'High school diploma or equivalent', NULL, 2.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Maternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 2.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '03', 'Some college but no formal award', NULL, 4.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Maternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 4.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '04', 'Certificate, less than an Associate''s degree', NULL, 6.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Maternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 6.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '05', 'Associate''s degree', NULL, 8.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Maternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 8.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '06', 'Baccalaureate degree', NULL, 10.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Maternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 10.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '07', 'Master''s degree', NULL, 12.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Maternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 12.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '08', 'Doctoral/Professional degree', NULL, 14.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Maternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 14.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '09', 'Unknown', NULL, 16.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Maternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 16.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Maternal Guardian Education' AND r.[Code] = '09' END -END - -PRINT N'Populate RefEducationLevel table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEducationLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '01', 'Less than high school', NULL, 0.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Paternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 0.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '02', 'High school diploma or equivalent', NULL, 2.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Paternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 2.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '03', 'Some college but no formal award', NULL, 4.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Paternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 4.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '04', 'Certificate, less than an Associate''s degree', NULL, 6.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Paternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 6.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '05', 'Associate''s degree', NULL, 8.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Paternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 8.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '06', 'Baccalaureate degree', NULL, 10.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Paternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 10.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '07', 'Master''s degree', NULL, 12.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Paternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 12.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '08', 'Doctoral/Professional degree', NULL, 14.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Paternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 14.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefEducationLevel]([Code], [Description], [Definition], [SortOrder], [RefEducationLevelTypeId]) -SELECT '09', 'Unknown', NULL, 16.00, [RefEducationLevelTypeId] -FROM dbo.RefEducationLevelType WHERE Description = 'Paternal Guardian Education' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEducationLevel] -SET [Definition] = NULL, [SortOrder] = 16.00 -FROM dbo.[RefEducationLevel] r INNER JOIN dbo.RefEducationLevelType t ON t.RefEducationLevelTypeId = r.RefEducationLevelTypeId WHERE t.[Description] = 'Paternal Guardian Education' AND r.[Code] = '09' END -END - - -PRINT N'Populate RefGradeLevel table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGradeLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN - -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = 'ABE') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = 'AE', [Definition] = 'Adult Education is a grade offered by the education institution.', [Description] = 'Adult Education' WHERE [Code] = 'ABE' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = 'ASE') BEGIN -UPDATE dbo.[RefGradeLevel] SET [RecordEndDateTime] = '2023-02-28' WHERE [Code] = 'ASE' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = 'AdultESL') BEGIN -UPDATE dbo.[RefGradeLevel] SET [RecordEndDateTime] = '2023-02-28' WHERE [Code] = 'AdultESL' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00788') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = 'PR', [Description] = 'Preschool' WHERE [Code] = '00788' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00805') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = 'KG', [Description] = 'Kindergarten' WHERE [Code] = '00805' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00790') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '01', [Description] = 'First grade' WHERE [Code] = '00790' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00791') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '02', [Description] = 'Second grade' WHERE [Code] = '00791' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00792') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '03', [Description] = 'Third grade' WHERE [Code] = '00792' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00793') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '04', [Description] = 'Fourth grade' WHERE [Code] = '00793' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00794') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '05', [Description] = 'Fifth grade' WHERE [Code] = '00794' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00795') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '06', [Description] = 'Sixth grade' WHERE [Code] = '00795' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00796') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '07', [Description] = 'Seventh grade' WHERE [Code] = '00796' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00798') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '08', [Description] = 'Eighth grade' WHERE [Code] = '00798' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00799') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '09', [Description] = 'Ninth grade' WHERE [Code] = '00799' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00800') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '10', [Description] = 'Tenth grade' WHERE [Code] = '00800' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00801') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '11', [Description] = 'Eleventh grade' WHERE [Code] = '00801' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '01809') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '12', [Description] = 'Twelfth grade' WHERE [Code] = '01809' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '09999') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = 'Other', [Description] = 'Other' WHERE [Code] = '09999' -END - -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'IT') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'IT', 'Infant/toddler', NULL, 1.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 1.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'IT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'PR') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PR', 'Preschool', NULL, 2.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 2.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'PR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'PK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PK', 'Prekindergarten', NULL, 3.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 3.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'PK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'TK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'TK', 'Transitional Kindergarten', NULL, 4.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 4.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'TK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'KG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'KG', 'Kindergarten', NULL, 5.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 5.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'KG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01', 'First grade', NULL, 6.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 6.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '02', 'Second grade', NULL, 7.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 7.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '03', 'Third grade', NULL, 8.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 8.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '04', 'Fourth grade', NULL, 9.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 9.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '05', 'Fifth grade', NULL, 10.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 10.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '06', 'Sixth grade', NULL, 11.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 11.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '07', 'Seventh grade', NULL, 12.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 12.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '08', 'Eighth grade', NULL, 13.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 13.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '09', 'Ninth grade', NULL, 14.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 14.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '10') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '10', 'Tenth grade', NULL, 15.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 15.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '11') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '11', 'Eleventh grade', NULL, 16.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 16.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '12') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '12', 'Twelfth grade', NULL, 17.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 17.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '13') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '13', 'Grade 13', NULL, 18.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 18.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'PS') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PS', 'Postsecondary', NULL, 19.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 19.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'PS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'UG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'UG', 'Ungraded', NULL, 21.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 21.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'UG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'AE') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'AE', 'Adult Education', NULL, 22.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 22.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'AE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'Other', 'Other', NULL, 22.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 22.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'Other' END -END - -PRINT N'Populate RefGradeLevel table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGradeLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'IT') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'IT', 'Infant/toddler', NULL, 1.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 1.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'IT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'PR') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PR', 'Preschool', NULL, 2.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 2.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'PR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'PK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PK', 'Prekindergarten', NULL, 3.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 3.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'PK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'TK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'TK', 'Transitional Kindergarten', NULL, 4.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 4.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'TK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'KG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'KG', 'Kindergarten', NULL, 5.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 5.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'KG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01', 'First grade', NULL, 6.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 6.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '02', 'Second grade', NULL, 7.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 7.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '03', 'Third grade', NULL, 8.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 8.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '04', 'Fourth grade', NULL, 9.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 9.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '05', 'Fifth grade', NULL, 10.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 10.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '06', 'Sixth grade', NULL, 11.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 11.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '07', 'Seventh grade', NULL, 12.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 12.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '08', 'Eighth grade', NULL, 13.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 13.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '09', 'Ninth grade', NULL, 14.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 14.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '10') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '10', 'Tenth grade', NULL, 15.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 15.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '11') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '11', 'Eleventh grade', NULL, 16.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 16.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '12') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '12', 'Twelfth grade', NULL, 17.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 17.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '13') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '13', 'Grade 13', NULL, 18.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 18.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'PS') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PS', 'Postsecondary', NULL, 19.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 19.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'PS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'UG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'UG', 'Ungraded', NULL, 21.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 21.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'UG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'AE') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'AE', 'Adult Education', NULL, 22.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 22.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'AE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'Other', 'Other', NULL, 22.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Course Taken' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 22.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Course Taken' AND r.[Code] = 'Other' END -END - -PRINT N'Populate RefGradeLevel table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGradeLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'IT') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'IT', 'Infant/toddler', 'Infant/toddler', 1.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Infant/toddler', [SortOrder] = 1.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'IT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'PR') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PR', 'Preschool', 'Preschool', 2.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Preschool', [SortOrder] = 2.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'PR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'PK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PK', 'Prekindergarten', 'Prekindergarten', 3.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Prekindergarten', [SortOrder] = 3.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'PK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'TK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'TK', 'Transitional Kindergarten', 'Transitional Kindergarten', 4.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Transitional Kindergarten', [SortOrder] = 4.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'TK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'KG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'KG', 'Kindergarten', 'Kindergarten', 5.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Kindergarten', [SortOrder] = 5.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'KG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01', 'First grade', 'First grade', 6.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'First grade', [SortOrder] = 6.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '02', 'Second grade', 'Second grade', 7.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Second grade', [SortOrder] = 7.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '03', 'Third grade', 'Third grade', 8.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Third grade', [SortOrder] = 8.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '04', 'Fourth grade', 'Fourth grade', 9.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Fourth grade', [SortOrder] = 9.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '05', 'Fifth grade', 'Fifth grade', 10.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Fifth grade', [SortOrder] = 10.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '06', 'Sixth grade', 'Sixth grade', 11.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Sixth grade', [SortOrder] = 11.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '07', 'Seventh grade', 'Seventh grade', 12.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Seventh grade', [SortOrder] = 12.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '08', 'Eighth grade', 'Eighth grade', 13.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Eighth grade', [SortOrder] = 13.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '09', 'Ninth grade', 'Ninth grade', 14.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Ninth grade', [SortOrder] = 14.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '10') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '10', 'Tenth grade', 'Tenth grade', 15.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Tenth grade', [SortOrder] = 15.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '11') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '11', 'Eleventh grade', 'Eleventh grade', 16.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Eleventh grade', [SortOrder] = 16.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '12') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '12', 'Twelfth grade', 'Twelfth grade', 17.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Twelfth grade', [SortOrder] = 17.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '13') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '13', 'Grade 13', 'Grade 13', 18.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Grade 13', [SortOrder] = 18.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'PS') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PS', 'Postsecondary', 'Postsecondary', 19.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Postsecondary', [SortOrder] = 19.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'PS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'UG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'UG', 'Ungraded', 'Ungraded', 21.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Ungraded', [SortOrder] = 21.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'UG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'Other', 'Other', 'Other', 22.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Other', [SortOrder] = 22.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'Other' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'OutOfSchool') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'OutOfSchool', 'Out of school', 'Out of school', 30.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Out of school', [SortOrder] = 30.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'OutOfSchool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'AE') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'AE', 'Adult Education', 'Adult Education', 31.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grade Level When Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Adult Education', [SortOrder] = 31.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grade Level When Assessed' AND r.[Code] = 'AE' END -END - -PRINT N'Populate RefGradeLevel table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGradeLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'IT') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'IT', 'Infant/toddler', 'Infant/toddler is a grade offered by the education institution.', 1.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Infant/toddler is a grade offered by the education institution.', [SortOrder] = 1.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'IT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'PR') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PR', 'Preschool', 'Preschool is a grade offered by the education institution.', 2.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Preschool is a grade offered by the education institution.', [SortOrder] = 2.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'PR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'PK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PK', 'Prekindergarten', 'Prekindergarten is a grade offered by the education institution.', 3.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Prekindergarten is a grade offered by the education institution.', [SortOrder] = 3.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'PK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'TK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'TK', 'Transitional Kindergarten', 'Transitional Kindergarten is a grade offered by the education institution.', 4.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Transitional Kindergarten is a grade offered by the education institution.', [SortOrder] = 4.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'TK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'KG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'KG', 'Kindergarten', 'Kindergarten is a grade offered by the education institution.', 5.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Kindergarten is a grade offered by the education institution.', [SortOrder] = 5.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'KG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01', 'First grade', 'First grade is a grade offered by the education institution.', 6.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'First grade is a grade offered by the education institution.', [SortOrder] = 6.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '02', 'Second grade', 'Second grade is a grade offered by the education institution.', 7.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Second grade is a grade offered by the education institution.', [SortOrder] = 7.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '03', 'Third grade', 'Third grade is a grade offered by the education institution.', 8.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Third grade is a grade offered by the education institution.', [SortOrder] = 8.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '04', 'Fourth grade', 'Fourth grade is a grade offered by the education institution.', 9.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Fourth grade is a grade offered by the education institution.', [SortOrder] = 9.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '05', 'Fifth grade', 'Fifth grade is a grade offered by the education institution.', 10.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Fifth grade is a grade offered by the education institution.', [SortOrder] = 10.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '06', 'Sixth grade', 'Sixth grade is a grade offered by the education institution.', 11.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Sixth grade is a grade offered by the education institution.', [SortOrder] = 11.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '07', 'Seventh grade', 'Seventh grade is a grade offered by the education institution.', 12.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Seventh grade is a grade offered by the education institution.', [SortOrder] = 12.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '08', 'Eighth grade', 'Eighth grade is a grade offered by the education institution.', 13.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Eighth grade is a grade offered by the education institution.', [SortOrder] = 13.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '09', 'Ninth grade', 'Ninth grade is a grade offered by the education institution.', 14.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Ninth grade is a grade offered by the education institution.', [SortOrder] = 14.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '10') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '10', 'Tenth grade', 'Tenth grade is a grade offered by the education institution.', 15.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Tenth grade is a grade offered by the education institution.', [SortOrder] = 15.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '11') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '11', 'Eleventh grade', 'Eleventh grade is a grade offered by the education institution.', 16.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Eleventh grade is a grade offered by the education institution.', [SortOrder] = 16.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '12') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '12', 'Twelfth grade', 'Twelfth grade is a grade offered by the education institution.', 17.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Twelfth grade is a grade offered by the education institution.', [SortOrder] = 17.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '13') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '13', 'Grade 13', 'Grade 13 is a grade offered by the education institution.', 18.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Grade 13 is a grade offered by the education institution.', [SortOrder] = 18.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'PS') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PS', 'Postsecondary', 'Postsecondary is a grade offered by the education institution.', 19.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Postsecondary is a grade offered by the education institution.', [SortOrder] = 19.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'PS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'UG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'UG', 'Ungraded', 'Ungraded is a grade offered by the education institution.', 24.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Ungraded is a grade offered by the education institution.', [SortOrder] = 24.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'UG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'AE') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'AE', 'Adult Education', 'Adult Education is a grade offered by the education institution.', 25.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Adult Education is a grade offered by the education institution.', [SortOrder] = 25.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'AE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'Other', 'Other', 'The grade offered by the education institution is not yet defined in CEDS.', 25.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Grades Offered' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'The grade offered by the education institution is not yet defined in CEDS.', [SortOrder] = 25.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Grades Offered' AND r.[Code] = 'Other' END -END - -PRINT N'Populate RefGradeLevel table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGradeLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'Birth') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'Birth', 'Birth', 'Birth is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', -2.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Birth is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = -2.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'Birth' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'Prenatal') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'Prenatal', 'Prenatal', 'Prenatal is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', -1.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Prenatal is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = -1.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'Prenatal' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'IT') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'IT', 'Infant/toddler', 'Infant/toddler is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 1.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Infant/toddler is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 1.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'IT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'PR') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PR', 'Preschool', 'Preschool is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 2.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Preschool is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 2.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'PR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'PK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PK', 'Prekindergarten', 'Prekindergarten is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 3.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Prekindergarten is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 3.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'PK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'TK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'TK', 'Transitional Kindergarten', 'Transitional Kindergarten is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 4.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Transitional Kindergarten is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 4.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'TK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'KG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'KG', 'Kindergarten', 'Kindergarten is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 5.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Kindergarten is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 5.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'KG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01', 'First grade', 'First grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 6.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'First grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 6.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '02', 'Second grade', 'Second grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 7.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Second grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 7.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '03', 'Third grade', 'Third grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 8.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Third grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 8.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '04', 'Fourth grade', 'Fourth grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 9.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Fourth grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 9.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '05', 'Fifth grade', 'Fifth grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 10.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Fifth grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 10.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '06', 'Sixth grade', 'Sixth grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 11.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Sixth grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 11.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '07', 'Seventh grade', 'Seventh grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 12.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Seventh grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 12.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '08', 'Eighth grade', 'Eighth grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 13.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Eighth grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 13.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '09', 'Ninth grade', 'Ninth grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 14.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Ninth grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 14.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '10') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '10', 'Tenth grade', 'Tenth grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 15.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Tenth grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 15.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '11') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '11', 'Eleventh grade', 'Eleventh grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 16.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Eleventh grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 16.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '12') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '12', 'Twelfth grade', 'Twelfth grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 17.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Twelfth grade is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 17.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '13') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '13', 'Grade 13', 'Grade 13 is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 18.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Grade 13 is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 18.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'PS') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PS', 'Postsecondary', 'Postsecondary is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 19.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Postsecondary is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 19.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'PS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'UG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'UG', 'Ungraded', 'Ungraded is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 21.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Ungraded is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 21.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'UG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'AE') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'AE', 'Adult Education', 'Adult education is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 22.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Adult education is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 22.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'AE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'Other', 'Other', 'Other is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', 22.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Level for Which Designed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Other is specified as the typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', [SortOrder] = 22.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Level for Which Designed' AND r.[Code] = 'Other' END -END - -PRINT N'Populate RefGradeLevel table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGradeLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01043') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01043', 'No school completed ', 'No school completed is the extent of formal instruction a person has received.', 0.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'No school completed is the extent of formal instruction a person has received.', [SortOrder] = 0.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01043' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'IT') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'IT', 'Infant/toddler', 'Infant/toddler is the extent of formal instruction a person has received.', 1.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Infant/toddler is the extent of formal instruction a person has received.', [SortOrder] = 1.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'IT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'PR') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PR', 'Preschool', 'Preschool is the extent of formal instruction a person has received.', 2.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Preschool is the extent of formal instruction a person has received.', [SortOrder] = 2.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'PR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'PK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PK', 'Prekindergarten', 'Prekindergarten is the extent of formal instruction a person has received.', 3.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Prekindergarten is the extent of formal instruction a person has received.', [SortOrder] = 3.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'PK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'TK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'TK', 'Transitional Kindergarten', 'Transitional Kindergarten is the extent of formal instruction a person has received.', 4.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Transitional Kindergarten is the extent of formal instruction a person has received.', [SortOrder] = 4.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'TK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'KG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'KG', 'Kindergarten', 'Kindergarten is the extent of formal instruction a person has received.', 5.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Kindergarten is the extent of formal instruction a person has received.', [SortOrder] = 5.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'KG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01', 'First grade', 'First grade is the extent of formal instruction a person has received.', 6.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'First grade is the extent of formal instruction a person has received.', [SortOrder] = 6.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '02', 'Second grade', 'Second grade is the extent of formal instruction a person has received.', 7.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Second grade is the extent of formal instruction a person has received.', [SortOrder] = 7.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '03', 'Third grade', 'Third grade is the extent of formal instruction a person has received.', 8.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Third grade is the extent of formal instruction a person has received.', [SortOrder] = 8.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '04', 'Fourth grade', 'Fourth grade is the extent of formal instruction a person has received.', 9.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Fourth grade is the extent of formal instruction a person has received.', [SortOrder] = 9.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '05', 'Fifth grade', 'Fifth grade is the extent of formal instruction a person has received.', 10.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Fifth grade is the extent of formal instruction a person has received.', [SortOrder] = 10.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '06', 'Sixth grade', 'Sixth grade is the extent of formal instruction a person has received.', 11.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Sixth grade is the extent of formal instruction a person has received.', [SortOrder] = 11.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '07', 'Seventh grade', 'Seventh grade is the extent of formal instruction a person has received.', 12.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Seventh grade is the extent of formal instruction a person has received.', [SortOrder] = 12.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '08', 'Eighth grade', 'Eighth grade is the extent of formal instruction a person has received.', 13.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Eighth grade is the extent of formal instruction a person has received.', [SortOrder] = 13.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '09', 'Ninth grade', 'Ninth grade is the extent of formal instruction a person has received.', 14.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Ninth grade is the extent of formal instruction a person has received.', [SortOrder] = 14.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '10') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '10', 'Tenth grade', 'Tenth grade is the extent of formal instruction a person has received.', 15.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Tenth grade is the extent of formal instruction a person has received.', [SortOrder] = 15.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '11') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '11', 'Eleventh grade', 'Eleventh grade is the extent of formal instruction a person has received.', 16.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Eleventh grade is the extent of formal instruction a person has received.', [SortOrder] = 16.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '12') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '12', 'Twelfth grade', 'Twelfth grade is the extent of formal instruction a person has received.', 17.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Twelfth grade is the extent of formal instruction a person has received.', [SortOrder] = 17.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '13') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '13', 'Grade 13', 'Grade 13 is the extent of formal instruction a person has received.', 18.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Grade 13 is the extent of formal instruction a person has received.', [SortOrder] = 18.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'PS') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PS', 'Postsecondary', 'Postsecondary is the extent of formal instruction a person has received.', 19.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Postsecondary is the extent of formal instruction a person has received.', [SortOrder] = 19.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'PS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'UG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'UG', 'Ungraded', 'Ungraded', 20.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Ungraded', [SortOrder] = 20.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'UG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'AE') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'AE', 'Adult Education', 'Adult Education is the extent of formal instruction a person has received.', 21.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Adult Education is the extent of formal instruction a person has received.', [SortOrder] = 21.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'AE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01044') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01044', 'High school diploma ', 'High school diploma is the extent of formal instruction a person has received.', 22.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'High school diploma is the extent of formal instruction a person has received.', [SortOrder] = 22.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01044' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '02408') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '02408', 'High school completers (e.g., certificate of attendance) ', 'High school completers (e.g., certificate of attendance) is the extent of formal instruction a person has received.', 23.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'High school completers (e.g., certificate of attendance) is the extent of formal instruction a person has received.', [SortOrder] = 23.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '02408' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '02409') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '02409', 'High school equivalency (e.g., GED) ', 'High school equivalency (e.g., GED) is the extent of formal instruction a person has received.', 24.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'High school equivalency (e.g., GED) is the extent of formal instruction a person has received.', [SortOrder] = 24.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '02409' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '00819') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '00819', 'Career and Technical Education certificate', 'Career and Technical Education certificate is the extent of formal instruction a person has received.', 25.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Career and Technical Education certificate is the extent of formal instruction a person has received.', [SortOrder] = 25.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '00819' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01049') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01049', 'Some college but no degree ', 'Some college but no degree is the extent of formal instruction a person has received.', 26.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Some college but no degree is the extent of formal instruction a person has received.', [SortOrder] = 26.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01049' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01047') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01047', 'Formal award, certificate or diploma (less than one year) ', 'Formal award, certificate or diploma (less than one year) is the extent of formal instruction a person has received.', 27.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Formal award, certificate or diploma (less than one year) is the extent of formal instruction a person has received.', [SortOrder] = 27.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01047' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01048') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01048', 'Formal award, certificate or diploma (more than or equal to one year) ', 'Formal award, certificate or diploma (more than or equal to one year) is the extent of formal instruction a person has received.', 28.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Formal award, certificate or diploma (more than or equal to one year) is the extent of formal instruction a person has received.', [SortOrder] = 28.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01048' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01050') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01050', 'Associate''s degree (two years or more) ', 'Associate''s degree (two years or more) is the extent of formal instruction a person has received.', 29.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Associate''s degree (two years or more) is the extent of formal instruction a person has received.', [SortOrder] = 29.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01050' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '73063') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '73063', 'Adult education certification, endorsement, or degree', 'Adult education certification, endorsement, or degree is the extent of formal instruction a person has received.', 30.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Adult education certification, endorsement, or degree is the extent of formal instruction a person has received.', [SortOrder] = 30.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '73063' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01051') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01051', 'Bachelor''s (Baccalaureate) degree ', 'Bachelor''s (Baccalaureate) degree is the extent of formal instruction a person has received.', 31.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Bachelor''s (Baccalaureate) degree is the extent of formal instruction a person has received.', [SortOrder] = 31.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01051' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01054') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01054', 'Master''s degree (e.g., M.A., M.S., M. Eng., M.Ed., M.S.W., M.B.A., M.L.S.) ', 'Master''s degree (e.g., M.A., M.S., M. Eng., M.Ed., M.S.W., M.B.A., M.L.S.) is the extent of formal instruction a person has received.', 32.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Master''s degree (e.g., M.A., M.S., M. Eng., M.Ed., M.S.W., M.B.A., M.L.S.) is the extent of formal instruction a person has received.', [SortOrder] = 32.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01054' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01055') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01055', 'Specialist''s degree (e.g., Ed.S.) ', 'Specialist''s degree (e.g., Ed.S.) is the extent of formal instruction a person has received.', 33.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Specialist''s degree (e.g., Ed.S.) is the extent of formal instruction a person has received.', [SortOrder] = 33.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01055' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '73081') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '73081', 'Post-master’s certificate', 'Post-master’s certificate is the extent of formal instruction a person has received.', 34.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Post-master’s certificate is the extent of formal instruction a person has received.', [SortOrder] = 34.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '73081' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01052') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01052', 'Graduate certificate ', 'Graduate certificate is the extent of formal instruction a person has received.', 35.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Graduate certificate is the extent of formal instruction a person has received.', [SortOrder] = 35.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01052' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01057') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01057', 'Doctoral (Doctor''s) degree ', 'Doctoral (Doctor''s) degree is the extent of formal instruction a person has received.', 36.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Doctoral (Doctor''s) degree is the extent of formal instruction a person has received.', [SortOrder] = 36.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01057' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01053') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01053', 'First-professional degree ', 'First-professional degree is the extent of formal instruction a person has received.', 37.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'First-professional degree is the extent of formal instruction a person has received.', [SortOrder] = 37.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01053' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01056') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01056', 'Post-professional degree ', 'Post-professional degree is the extent of formal instruction a person has received.', 38.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Post-professional degree is the extent of formal instruction a person has received.', [SortOrder] = 38.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '01056' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '73083') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '73083', 'Doctor’s degree-professional practice', 'Doctor’s degree-professional practice is the extent of formal instruction a person has received.', 39.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Doctor’s degree-professional practice is the extent of formal instruction a person has received.', [SortOrder] = 39.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '73083' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '73084') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '73084', 'Doctor’s degree-other', 'Doctor’s degree-other is the extent of formal instruction a person has received.', 40.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Doctor’s degree-other is the extent of formal instruction a person has received.', [SortOrder] = 40.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '73084' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '73085') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '73085', 'Doctor’s degree-research/scholarship', 'Doctor’s degree-research/scholarship is the extent of formal instruction a person has received.', 41.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'Doctor’s degree-research/scholarship is the extent of formal instruction a person has received.', [SortOrder] = 41.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = '73085' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'Other', 'Other', 'The extent of formal instruction a person has received is in a category not yet defined in CEDS.', 42.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Assessment Registration Grade Level to Be Assessed' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = 'The extent of formal instruction a person has received is in a category not yet defined in CEDS.', [SortOrder] = 42.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'Other' END -END - -PRINT N'Populate RefGradeLevel table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGradeLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'IT') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'IT', 'Infant/toddler', NULL, 1.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 1.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'IT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PR') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PR', 'Preschool', NULL, 2.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 2.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PK', 'Prekindergarten', NULL, 3.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 3.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'TK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'TK', 'Transitional Kindergarten', NULL, 4.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 4.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'TK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'KG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'KG', 'Kindergarten', NULL, 5.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 5.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'KG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '01', 'First grade', NULL, 6.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 6.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '02', 'Second grade', NULL, 7.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 7.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '03', 'Third grade', NULL, 8.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 8.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '04', 'Fourth grade', NULL, 9.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 9.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '05', 'Fifth grade', NULL, 10.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 10.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '06', 'Sixth grade', NULL, 11.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 11.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '07', 'Seventh grade', NULL, 12.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 12.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '08', 'Eighth grade', NULL, 13.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 13.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '09', 'Ninth grade', NULL, 14.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 14.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '10') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '10', 'Tenth grade', NULL, 15.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 15.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '11') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '11', 'Eleventh grade', NULL, 16.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 16.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '12') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '12', 'Twelfth grade', NULL, 17.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 17.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '13') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT '13', 'Grade 13', NULL, 18.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 18.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PS') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'PS', 'Postsecondary', NULL, 19.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 19.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'UG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'UG', 'Ungraded', NULL, 21.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 21.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'UG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'AE') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'AE', 'Adult Education', NULL, 22.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 22.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'AE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) -SELECT 'Other', 'Other', NULL, 22.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] -SET [Definition] = NULL, [SortOrder] = 22.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'Other' END -END - - -PRINT N'Populate RefOperationalStatus table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOperationalStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'Open') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'Open', 'Open', 'The operational condition of a local education agency (LEA) at the start of the school year is Open.', 1.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'Local Education Agency Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'The operational condition of a local education agency (LEA) at the start of the school year is Open.', [SortOrder] = 1.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'Open' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'Closed') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'Closed', 'Closed', 'The operational condition of a local education agency (LEA) at the start of the school year is Closed.', 2.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'Local Education Agency Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'The operational condition of a local education agency (LEA) at the start of the school year is Closed.', [SortOrder] = 2.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'Closed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'New') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'New', 'New', 'The operational condition of a local education agency (LEA) at the start of the school year is New.', 3.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'Local Education Agency Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'The operational condition of a local education agency (LEA) at the start of the school year is New.', [SortOrder] = 3.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'New' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'Added') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'Added', 'Added', 'The operational condition of a local education agency (LEA) at the start of the school year is Added.', 4.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'Local Education Agency Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'The operational condition of a local education agency (LEA) at the start of the school year is Added.', [SortOrder] = 4.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'Added' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'ChangedBoundary') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'ChangedBoundary', 'Changed boundary', 'The operational condition of a local education agency (LEA) at the start of the school year is Changed boundary.', 5.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'Local Education Agency Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'The operational condition of a local education agency (LEA) at the start of the school year is Changed boundary.', [SortOrder] = 5.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'ChangedBoundary' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'Inactive') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'Inactive', 'Inactive', 'The operational condition of a local education agency (LEA) at the start of the school year is Inactive.', 6.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'Local Education Agency Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'The operational condition of a local education agency (LEA) at the start of the school year is Inactive.', [SortOrder] = 6.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'Inactive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'FutureAgency') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'FutureAgency', 'Future agency', 'The operational condition of a local education agency (LEA) at the start of the school year is Future agency.', 7.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'Local Education Agency Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'The operational condition of a local education agency (LEA) at the start of the school year is Future agency.', [SortOrder] = 7.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'FutureAgency' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'Reopened') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'Reopened', 'Reopened', 'The operational condition of a local education agency (LEA) at the start of the school year is Reopened.', 8.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'Local Education Agency Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'The operational condition of a local education agency (LEA) at the start of the school year is Reopened.', [SortOrder] = 8.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'Local Education Agency Operational Status' AND r.[Code] = 'Reopened' END -END - -PRINT N'Populate RefOperationalStatus table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOperationalStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'Open') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'Open', 'Open', 'Open is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', 1.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'School Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'Open is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', [SortOrder] = 1.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'Open' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'Closed') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'Closed', 'Closed', 'Closed is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', 2.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'School Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'Closed is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', [SortOrder] = 2.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'Closed' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'New') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'New', 'New', 'New is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', 3.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'School Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'New is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', [SortOrder] = 3.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'New' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'Added') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'Added', 'Added', 'Added is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', 4.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'School Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'Added is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', [SortOrder] = 4.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'Added' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'ChangedAgency') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'ChangedAgency', 'Changed Agency', 'Changed Agency is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', 5.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'School Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'Changed Agency is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', [SortOrder] = 5.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'ChangedAgency' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'Inactive') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'Inactive', 'Inactive', 'Inactive is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', 6.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'School Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'Inactive is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', [SortOrder] = 6.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'Inactive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'FutureSchool') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'FutureSchool', 'Future school', 'Future school is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', 7.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'School Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'Future school is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', [SortOrder] = 7.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'FutureSchool' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'Reopened') BEGIN INSERT INTO dbo.[RefOperationalStatus]([Code], [Description], [Definition], [SortOrder], [RefOperationalStatusTypeId]) -SELECT 'Reopened', 'Reopened', 'Reopened is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', 8.00, [RefOperationalStatusTypeId] -FROM dbo.RefOperationalStatusType WHERE Description = 'School Operational Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOperationalStatus] -SET [Definition] = 'Reopened is the status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', [SortOrder] = 8.00 -FROM dbo.[RefOperationalStatus] r INNER JOIN dbo.RefOperationalStatusType t ON t.RefOperationalStatusTypeId = r.RefOperationalStatusTypeId WHERE t.[Description] = 'School Operational Status' AND r.[Code] = 'Reopened' END -END - - -PRINT N'Populate RefPersonLocationType table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefPersonLocationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'Mailing') BEGIN INSERT INTO dbo.[RefPersonLocationType]([Code], [Description], [Definition], [SortOrder], [RefAddressTypeId]) -SELECT 'Mailing', 'Mailing', 'Mailing is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', 1.00, [RefAddressTypeId] -FROM dbo.RefAddressType WHERE Description = 'Address Type for Learner or Family' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonLocationType] -SET [Definition] = 'Mailing is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', [SortOrder] = 1.00 -FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'Mailing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'Physical') BEGIN INSERT INTO dbo.[RefPersonLocationType]([Code], [Description], [Definition], [SortOrder], [RefAddressTypeId]) -SELECT 'Physical', 'Physical', 'Physical is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', 2.00, [RefAddressTypeId] -FROM dbo.RefAddressType WHERE Description = 'Address Type for Learner or Family' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonLocationType] -SET [Definition] = 'Physical is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', [SortOrder] = 2.00 -FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'Physical' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'Billing') BEGIN INSERT INTO dbo.[RefPersonLocationType]([Code], [Description], [Definition], [SortOrder], [RefAddressTypeId]) -SELECT 'Billing', 'Billing address', 'Billing address is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', 3.00, [RefAddressTypeId] -FROM dbo.RefAddressType WHERE Description = 'Address Type for Learner or Family' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonLocationType] -SET [Definition] = 'Billing address is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', [SortOrder] = 3.00 -FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'Billing' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'Shipping') BEGIN INSERT INTO dbo.[RefPersonLocationType]([Code], [Description], [Definition], [SortOrder], [RefAddressTypeId]) -SELECT 'Shipping', 'Shipping', 'Shipping is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', 3.00, [RefAddressTypeId] -FROM dbo.RefAddressType WHERE Description = 'Address Type for Learner or Family' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonLocationType] -SET [Definition] = 'Shipping is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', [SortOrder] = 3.00 -FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'Shipping' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'OnCampus') BEGIN INSERT INTO dbo.[RefPersonLocationType]([Code], [Description], [Definition], [SortOrder], [RefAddressTypeId]) -SELECT 'OnCampus', 'On campus', 'On campus is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', 5.00, [RefAddressTypeId] -FROM dbo.RefAddressType WHERE Description = 'Address Type for Learner or Family' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonLocationType] -SET [Definition] = 'On campus is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', [SortOrder] = 5.00 -FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'OnCampus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'OffCampus') BEGIN INSERT INTO dbo.[RefPersonLocationType]([Code], [Description], [Definition], [SortOrder], [RefAddressTypeId]) -SELECT 'OffCampus', 'Off-campus, temporary', 'Off-campus, temporary is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', 6.00, [RefAddressTypeId] -FROM dbo.RefAddressType WHERE Description = 'Address Type for Learner or Family' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonLocationType] -SET [Definition] = 'Off-campus, temporary is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', [SortOrder] = 6.00 -FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'OffCampus' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'PermanentStudent') BEGIN INSERT INTO dbo.[RefPersonLocationType]([Code], [Description], [Definition], [SortOrder], [RefAddressTypeId]) -SELECT 'PermanentStudent', 'Permanent, student', 'Permanent, student is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', 7.00, [RefAddressTypeId] -FROM dbo.RefAddressType WHERE Description = 'Address Type for Learner or Family' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonLocationType] -SET [Definition] = 'Permanent, student is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', [SortOrder] = 7.00 -FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'PermanentStudent' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'PermanentAdmission') BEGIN INSERT INTO dbo.[RefPersonLocationType]([Code], [Description], [Definition], [SortOrder], [RefAddressTypeId]) -SELECT 'PermanentAdmission', 'Permanent, at time of admission', 'Permanent, at time of admission is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', 8.00, [RefAddressTypeId] -FROM dbo.RefAddressType WHERE Description = 'Address Type for Learner or Family' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonLocationType] -SET [Definition] = 'Permanent, at time of admission is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', [SortOrder] = 8.00 -FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'PermanentAdmission' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'FatherAddress') BEGIN INSERT INTO dbo.[RefPersonLocationType]([Code], [Description], [Definition], [SortOrder], [RefAddressTypeId]) -SELECT 'FatherAddress', 'Father''s address', 'Father''s address is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', 9.00, [RefAddressTypeId] -FROM dbo.RefAddressType WHERE Description = 'Address Type for Learner or Family' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonLocationType] -SET [Definition] = 'Father''s address is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', [SortOrder] = 9.00 -FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'FatherAddress' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'MotherAddress') BEGIN INSERT INTO dbo.[RefPersonLocationType]([Code], [Description], [Definition], [SortOrder], [RefAddressTypeId]) -SELECT 'MotherAddress', 'Mother''s address', 'Mother''s address is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', 10.00, [RefAddressTypeId] -FROM dbo.RefAddressType WHERE Description = 'Address Type for Learner or Family' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonLocationType] -SET [Definition] = 'Mother''s address is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', [SortOrder] = 10.00 -FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'MotherAddress' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'GuardianAddress') BEGIN INSERT INTO dbo.[RefPersonLocationType]([Code], [Description], [Definition], [SortOrder], [RefAddressTypeId]) -SELECT 'GuardianAddress', 'Guardian''s address', 'Guardian''s address is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', 11.00, [RefAddressTypeId] -FROM dbo.RefAddressType WHERE Description = 'Address Type for Learner or Family' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonLocationType] -SET [Definition] = 'Guardian''s address is specified as the type of address listed for a learner or a parent, guardian, family member or related person.', [SortOrder] = 11.00 -FROM dbo.[RefPersonLocationType] r INNER JOIN dbo.RefAddressType t ON t.RefAddressTypeId = r.RefAddressTypeId WHERE t.[Description] = 'Address Type for Learner or Family' AND r.[Code] = 'GuardianAddress' END -END - - -PRINT N'Populate RefOrganizationType table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'LEA') BEGIN INSERT INTO dbo.[RefOrganizationType]([Code], [Description], [Definition], [SortOrder], [RefOrganizationElementTypeId]) -SELECT 'LEA', 'Local Education Agency', 'Local Education Agency is specified as the type of institution responsible for providing adult education instructional services.', 1.00, [RefOrganizationElementTypeId] -FROM dbo.RefOrganizationElementType WHERE Description = 'Adult Education Provider Type' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationType] -SET [Definition] = 'Local Education Agency is specified as the type of institution responsible for providing adult education instructional services.', [SortOrder] = 1.00 -FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'LEA' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'PostsecondaryInstitution') BEGIN INSERT INTO dbo.[RefOrganizationType]([Code], [Description], [Definition], [SortOrder], [RefOrganizationElementTypeId]) -SELECT 'PostsecondaryInstitution', 'Postsecondary Institution', 'Postsecondary Institution is specified as the type of institution responsible for providing adult education instructional services.', 2.00, [RefOrganizationElementTypeId] -FROM dbo.RefOrganizationElementType WHERE Description = 'Adult Education Provider Type' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationType] -SET [Definition] = 'Postsecondary Institution is specified as the type of institution responsible for providing adult education instructional services.', [SortOrder] = 2.00 -FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'PostsecondaryInstitution' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'CommunityBasedOrganization') BEGIN INSERT INTO dbo.[RefOrganizationType]([Code], [Description], [Definition], [SortOrder], [RefOrganizationElementTypeId]) -SELECT 'CommunityBasedOrganization', 'Community-Based Organization', 'Community-Based Organization is specified as the type of institution responsible for providing adult education instructional services.', 3.00, [RefOrganizationElementTypeId] -FROM dbo.RefOrganizationElementType WHERE Description = 'Adult Education Provider Type' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationType] -SET [Definition] = 'Community-Based Organization is specified as the type of institution responsible for providing adult education instructional services.', [SortOrder] = 3.00 -FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'CommunityBasedOrganization' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'Library') BEGIN INSERT INTO dbo.[RefOrganizationType]([Code], [Description], [Definition], [SortOrder], [RefOrganizationElementTypeId]) -SELECT 'Library', 'Library', 'Library is specified as the type of institution responsible for providing adult education instructional services.', 4.00, [RefOrganizationElementTypeId] -FROM dbo.RefOrganizationElementType WHERE Description = 'Adult Education Provider Type' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationType] -SET [Definition] = 'Library is specified as the type of institution responsible for providing adult education instructional services.', [SortOrder] = 4.00 -FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'Library' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'CorrectionalInstitution') BEGIN INSERT INTO dbo.[RefOrganizationType]([Code], [Description], [Definition], [SortOrder], [RefOrganizationElementTypeId]) -SELECT 'CorrectionalInstitution', 'Correctional Institution', 'Correctional Institution is specified as the type of institution responsible for providing adult education instructional services.', 5.00, [RefOrganizationElementTypeId] -FROM dbo.RefOrganizationElementType WHERE Description = 'Adult Education Provider Type' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationType] -SET [Definition] = 'Correctional Institution is specified as the type of institution responsible for providing adult education instructional services.', [SortOrder] = 5.00 -FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'CorrectionalInstitution' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'OtherInstitution') BEGIN INSERT INTO dbo.[RefOrganizationType]([Code], [Description], [Definition], [SortOrder], [RefOrganizationElementTypeId]) -SELECT 'OtherInstitution', 'Other Institution', 'Other Institution is specified as the type of institution responsible for providing adult education instructional services.', 6.00, [RefOrganizationElementTypeId] -FROM dbo.RefOrganizationElementType WHERE Description = 'Adult Education Provider Type' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationType] -SET [Definition] = 'Other Institution is specified as the type of institution responsible for providing adult education instructional services.', [SortOrder] = 6.00 -FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'OtherInstitution' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'OtherAgency') BEGIN INSERT INTO dbo.[RefOrganizationType]([Code], [Description], [Definition], [SortOrder], [RefOrganizationElementTypeId]) -SELECT 'OtherAgency', 'Other state or local government agency', 'Other state or local government agency is specified as the type of institution responsible for providing adult education instructional services.', 7.00, [RefOrganizationElementTypeId] -FROM dbo.RefOrganizationElementType WHERE Description = 'Adult Education Provider Type' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationType] -SET [Definition] = 'Other state or local government agency is specified as the type of institution responsible for providing adult education instructional services.', [SortOrder] = 7.00 -FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'OtherAgency' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefOrganizationType]([Code], [Description], [Definition], [SortOrder], [RefOrganizationElementTypeId]) -SELECT 'Other', 'Other', 'Other is specified as the type of institution responsible for providing adult education instructional services.', 8.00, [RefOrganizationElementTypeId] -FROM dbo.RefOrganizationElementType WHERE Description = 'Adult Education Provider Type' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationType] -SET [Definition] = 'Other is specified as the type of institution responsible for providing adult education instructional services.', [SortOrder] = 8.00 -FROM dbo.[RefOrganizationType] r INNER JOIN dbo.RefOrganizationElementType t ON t.RefOrganizationElementTypeId = r.RefOrganizationElementTypeId WHERE t.[Description] = 'Adult Education Provider Type' AND r.[Code] = 'Other' END -END - - -PRINT N'Populate RefRoleStatus table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefRoleStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Enrollment Status' AND r.[Code] = '01812') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '01812', 'Concurrently enrolled', 'The student is concurrently enrolled.', 1.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Enrollment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'The student is concurrently enrolled.', [SortOrder] = 1.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Enrollment Status' AND r.[Code] = '01812' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Enrollment Status' AND r.[Code] = '01811') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '01811', 'Currently enrolled', 'The student is currently enrolled.', 2.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Enrollment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'The student is currently enrolled.', [SortOrder] = 2.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Enrollment Status' AND r.[Code] = '01811' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Enrollment Status' AND r.[Code] = '01810') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '01810', 'Previously enrolled', 'The student was previously enrolled.', 3.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Enrollment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'The student was previously enrolled.', [SortOrder] = 3.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Enrollment Status' AND r.[Code] = '01810' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Enrollment Status' AND r.[Code] = '01813') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '01813', 'Transferring (will enroll)', 'The student is transferring (will enroll).', 4.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Enrollment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'The student is transferring (will enroll).', [SortOrder] = 4.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Enrollment Status' AND r.[Code] = '01813' END -END - -PRINT N'Populate RefRoleStatus table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefRoleStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Postsecondary Enrollment Status' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '01', 'Full-time', 'The student is enrolled full-time as defined by the institution for the specified term. ', 1.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Postsecondary Enrollment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'The student is enrolled full-time as defined by the institution for the specified term. ', [SortOrder] = 1.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Postsecondary Enrollment Status' AND r.[Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Postsecondary Enrollment Status' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '02', 'Less than full-time but at least half-time', 'The student is enrolled less than full-time but at least half-time as defined by the institution for the specified term. ', 2.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Postsecondary Enrollment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'The student is enrolled less than full-time but at least half-time as defined by the institution for the specified term. ', [SortOrder] = 2.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Postsecondary Enrollment Status' AND r.[Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Postsecondary Enrollment Status' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '03', 'Less than half-time', 'The student is enrolled Less than half-time as defined by the institution for the specified term. ', 3.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Postsecondary Enrollment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'The student is enrolled Less than half-time as defined by the institution for the specified term. ', [SortOrder] = 3.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Postsecondary Enrollment Status' AND r.[Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Postsecondary Enrollment Status' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '04', 'Less than full-time but at least three quarter-time', 'The student is enrolled Less than full-time but at least three quarter-time as defined by the institution for the specified term. ', 5.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Postsecondary Enrollment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'The student is enrolled Less than full-time but at least three quarter-time as defined by the institution for the specified term. ', [SortOrder] = 5.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Postsecondary Enrollment Status' AND r.[Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Postsecondary Enrollment Status' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '05', 'Less than three quarter-time but at least half-time', 'The student is enrolled Less than three quarter-time but at least half-time as defined by the institution for the specified term. ', 7.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Postsecondary Enrollment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'The student is enrolled Less than three quarter-time but at least half-time as defined by the institution for the specified term. ', [SortOrder] = 7.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Postsecondary Enrollment Status' AND r.[Code] = '05' END -END - -PRINT N'Populate RefRoleStatus table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefRoleStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01384') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '01384', 'Contingent upon funding', 'Contingent upon funding is the condition under which a person has agreed to serve as an employee.', 1.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Employment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'Contingent upon funding is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 1.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01384' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01379') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '01379', 'Contractual', 'Contractual is the condition under which a person has agreed to serve as an employee.', 2.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Employment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'Contractual is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 2.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01379' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '06071') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '06071', 'Employed or affiliated with outside agency part-time', 'Employed or affiliated with outside agency part-time is the condition under which a person has agreed to serve as an employee.', 3.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Employment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'Employed or affiliated with outside agency part-time is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 3.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '06071' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01383') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '01383', 'Employed or affiliated with outside organization', 'Employed or affiliated with outside organization is the condition under which a person has agreed to serve as an employee.', 4.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Employment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'Employed or affiliated with outside organization is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 4.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01383' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01385') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '01385', 'Non-contractual', 'Non-contractual is the condition under which a person has agreed to serve as an employee.', 5.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Employment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'Non-contractual is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 5.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01385' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '09999') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '09999', 'Other', 'Other is the condition under which a person has agreed to serve as an employee.', 6.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Employment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'Other is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 6.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '09999' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01378') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '01378', 'Probationary', 'Probationary is the condition under which a person has agreed to serve as an employee.', 7.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Employment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'Probationary is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 7.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01378' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '06070') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '06070', 'Self-employed part-time', 'Self-employed part-time is the condition under which a person has agreed to serve as an employee.', 8.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Employment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'Self-employed part-time is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 8.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '06070' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01380') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '01380', 'Substitute/temporary', 'Substitute/temporary is the condition under which a person has agreed to serve as an employee.', 9.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Employment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'Substitute/temporary is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 9.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01380' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01381') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '01381', 'Tenured or permanent', 'Tenured or permanent is the condition under which a person has agreed to serve as an employee.', 10.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Employment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'Tenured or permanent is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 10.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01381' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01382') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT '01382', 'Volunteer/no contract', 'Volunteer/no contract is the condition under which a person has agreed to serve as an employee.', 11.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Employment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'Volunteer/no contract is the condition under which a person has agreed to serve as an employee.', [SortOrder] = 11.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Employment Status' AND r.[Code] = '01382' END -END - -PRINT N'Populate RefRoleStatus table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefRoleStatus]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Teacher Preparation Program Enrollment Status' AND r.[Code] = 'No') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT 'No', 'No', 'The person is NOT pursuing certification as a teacher.', 1.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Teacher Preparation Program Enrollment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'The person is NOT pursuing certification as a teacher.', [SortOrder] = 1.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Teacher Preparation Program Enrollment Status' AND r.[Code] = 'No' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Teacher Preparation Program Enrollment Status' AND r.[Code] = 'SeekingCandidacy') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT 'SeekingCandidacy', 'Seeking Candidacy', 'The person is seeking candidacy and pursuing certification as a teacher.', 2.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Teacher Preparation Program Enrollment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'The person is seeking candidacy and pursuing certification as a teacher.', [SortOrder] = 2.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Teacher Preparation Program Enrollment Status' AND r.[Code] = 'SeekingCandidacy' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Teacher Preparation Program Enrollment Status' AND r.[Code] = 'Enrolled') BEGIN INSERT INTO dbo.[RefRoleStatus]([Code], [Description], [Definition], [SortOrder], [RefRoleStatusTypeId]) -SELECT 'Enrolled', 'Enrolled', 'The person is enrolled in a program and pursuing certification as a teacher.', 3.00, [RefRoleStatusTypeId] -FROM dbo.RefRoleStatusType WHERE Description = 'Teacher Preparation Program Enrollment Status' -END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRoleStatus] -SET [Definition] = 'The person is enrolled in a program and pursuing certification as a teacher.', [SortOrder] = 3.00 -FROM dbo.[RefRoleStatus] r INNER JOIN dbo.RefRoleStatusType t ON t.RefRoleStatusTypeId = r.RefRoleStatusTypeId WHERE t.[Description] = 'Teacher Preparation Program Enrollment Status' AND r.[Code] = 'Enrolled' END -END - - -PRINT N'Populate RefEmployeeBenefit table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEmployeeBenefit]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '01') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('01', 'Health insurance', 'Health insurance is offered by a program/facility/employer.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Health insurance', [Definition] = 'Health insurance is offered by a program/facility/employer.', [SortOrder] = 1.00 WHERE [Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '02') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('02', 'Dental insurance', 'Dental insurance is offered by a program/facility/employer.', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Dental insurance', [Definition] = 'Dental insurance is offered by a program/facility/employer.', [SortOrder] = 2.00 WHERE [Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '03') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03', 'Vision', 'Vision benefits are offered by a program/facility/employer.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Vision', [Definition] = 'Vision benefits are offered by a program/facility/employer.', [SortOrder] = 3.00 WHERE [Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '04') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04', 'Disability insurance', 'Disability insurance is offered by a program/facility/employer.', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Disability insurance', [Definition] = 'Disability insurance is offered by a program/facility/employer.', [SortOrder] = 4.00 WHERE [Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '05') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('05', 'Retirement', 'Retirement benefits are offered by a program/facility/employer.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Retirement', [Definition] = 'Retirement benefits are offered by a program/facility/employer.', [SortOrder] = 5.00 WHERE [Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '06') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('06', 'Professional membership fees paid', 'Professional membership fee payment is offered by a program/facility/employer.', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Professional membership fees paid', [Definition] = 'Professional membership fee payment is offered by a program/facility/employer.', [SortOrder] = 6.00 WHERE [Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '07') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('07', 'Sick leave', 'Sick leave is offered by a program/facility/employer.', 7.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Sick leave', [Definition] = 'Sick leave is offered by a program/facility/employer.', [SortOrder] = 7.00 WHERE [Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '08') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('08', 'Leave', 'Leave is offered by a program/facility/employer.', 8.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Leave', [Definition] = 'Leave is offered by a program/facility/employer.', [SortOrder] = 8.00 WHERE [Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '09') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09', 'Vacation', 'Vacation is offered by a program/facility/employer.', 9.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Vacation', [Definition] = 'Vacation is offered by a program/facility/employer.', [SortOrder] = 9.00 WHERE [Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '10') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('10', 'Holiday', 'Holiday is offered by a program/facility/employer.', 10.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Holiday', [Definition] = 'Holiday is offered by a program/facility/employer.', [SortOrder] = 10.00 WHERE [Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '11') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('11', 'Personal leave', 'Personal leave is offered by a program/facility/employer.', 11.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Personal leave', [Definition] = 'Personal leave is offered by a program/facility/employer.', [SortOrder] = 11.00 WHERE [Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '12') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('12', 'Family leave', 'Family leave is offered by a program/facility/employer.', 12.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Family leave', [Definition] = 'Family leave is offered by a program/facility/employer.', [SortOrder] = 12.00 WHERE [Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '13') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13', 'Bereavement leave', 'Bereavement leave is offered by a program/facility/employer.', 13.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Bereavement leave', [Definition] = 'Bereavement leave is offered by a program/facility/employer.', [SortOrder] = 13.00 WHERE [Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '14') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('14', 'Jury duty leave', 'Jury duty leave is offered by a program/facility/employer.', 14.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Jury duty leave', [Definition] = 'Jury duty leave is offered by a program/facility/employer.', [SortOrder] = 14.00 WHERE [Code] = '14' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '15') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('15', 'Life insurance', 'Life insurance is offered by a program/facility/employer.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Life insurance', [Definition] = 'Life insurance is offered by a program/facility/employer.', [SortOrder] = 15.00 WHERE [Code] = '15' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '16') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('16', 'Maternity leave', 'Maternity leave is offered by a program/facility/employer.', 16.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Maternity leave', [Definition] = 'Maternity leave is offered by a program/facility/employer.', [SortOrder] = 16.00 WHERE [Code] = '16' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '17') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('17', 'Paternity leave', 'Paternity leave is offered by a program/facility/employer.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Paternity leave', [Definition] = 'Paternity leave is offered by a program/facility/employer.', [SortOrder] = 17.00 WHERE [Code] = '17' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '18') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('18', 'Family medical leave', 'Family medical leave is offered by a program/facility/employer.', 18.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Family medical leave', [Definition] = 'Family medical leave is offered by a program/facility/employer.', [SortOrder] = 18.00 WHERE [Code] = '18' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '19') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('19', 'Flex plan-dependent care', 'Flex plan-dependent care is offered by a program/facility/employer.', 19.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Flex plan-dependent care', [Definition] = 'Flex plan-dependent care is offered by a program/facility/employer.', [SortOrder] = 19.00 WHERE [Code] = '19' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '20') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('20', 'Flex plan-medical (MSA/HSA)', 'Flex plan-medical (MSA/HSA) is offered by a program/facility/employer.', 20.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Flex plan-medical (MSA/HSA)', [Definition] = 'Flex plan-medical (MSA/HSA) is offered by a program/facility/employer.', [SortOrder] = 20.00 WHERE [Code] = '20' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '21') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('21', 'Transportation', 'Transportation is offered by a program/facility/employer.', 21.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Transportation', [Definition] = 'Transportation is offered by a program/facility/employer.', [SortOrder] = 21.00 WHERE [Code] = '21' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '22') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('22', 'Parking', 'Parking is offered by a program/facility/employer.', 22.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Parking', [Definition] = 'Parking is offered by a program/facility/employer.', [SortOrder] = 22.00 WHERE [Code] = '22' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '23') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('23', 'Flex schedule/time', 'Flex schedule/time is offered by a program/facility/employer.', 23.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Flex schedule/time', [Definition] = 'Flex schedule/time is offered by a program/facility/employer.', [SortOrder] = 23.00 WHERE [Code] = '23' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '24') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('24', 'Employee Assistance Program (EAP)', 'Employee Assistance Program (EAP) is offered by a program/facility/employer.', 24.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Employee Assistance Program (EAP)', [Definition] = 'Employee Assistance Program (EAP) is offered by a program/facility/employer.', [SortOrder] = 24.00 WHERE [Code] = '24' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '25') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('25', 'Paid training', 'Paid training is offered by a program/facility/employer.', 25.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Paid training', [Definition] = 'Paid training is offered by a program/facility/employer.', [SortOrder] = 25.00 WHERE [Code] = '25' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '26') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('26', 'Tuition reimbursement', 'Tuition reimbursement is offered by a program/facility/employer.', 26.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Tuition reimbursement', [Definition] = 'Tuition reimbursement is offered by a program/facility/employer.', [SortOrder] = 26.00 WHERE [Code] = '26' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '27') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('27', 'Child care fee assistance', 'Child care fee assistance is offered by a program/facility/employer.', 27.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Child care fee assistance', [Definition] = 'Child care fee assistance is offered by a program/facility/employer.', [SortOrder] = 27.00 WHERE [Code] = '27' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmployeeBenefit] WHERE [Code] = '28') BEGIN INSERT INTO dbo.[RefEmployeeBenefit]([Code], [Description], [Definition], [SortOrder]) -VALUES ('28', 'Bonus', 'Bonus is offered by a program/facility/employer.', 28.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] -SET [Description] = 'Bonus', [Definition] = 'Bonus is offered by a program/facility/employer.', [SortOrder] = 28.00 WHERE [Code] = '28' END -END - -PRINT N'Populate RefRace table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefRace]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceAmericanIndianorAlaskaNative') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'AmericanIndianorAlaskaNative', [Definition] = 'A person having origins in any of the original peoples of North and South America (including Central America), and who maintains cultural identification through tribal affiliation or community attachment.', [Description] = 'American Indian or Alaska Native' WHERE [Code] = 'RaceAmericanIndianorAlaskaNative' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'AmericanIndianorAlaskaNative') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('AmericanIndianorAlaskaNative', 'American Indian or Alaska Native', 'A person having origins in any of the original peoples of North and South America (including Central America), and who maintains cultural identification through tribal affiliation or community attachment.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'American Indian or Alaska Native', [Definition] = 'A person having origins in any of the original peoples of North and South America (including Central America), and who maintains cultural identification through tribal affiliation or community attachment.' WHERE [Code] = 'AmericanIndianOrAlaskaNative' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceAsian') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'Asian', [Description] = 'Asian', [Definition] = 'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian Subcontinent. This area includes, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.' WHERE [Code] = 'RaceAsian' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'Asian') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('Asian', 'Asian', 'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian Subcontinent. This area includes, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Asian', [Definition] = 'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian Subcontinent. This area includes, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.' WHERE [Code] = 'Asian' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceBlackorAfricanAmerican') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'BlackOrAfricanAmerican', [Description] = 'Black or African American', [Definition] = 'A person having origins in any of the black racial groups of Africa.' WHERE [Code] = 'RaceBlackorAfricanAmerican' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'BlackOrAfricanAmerican') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('BlackOrAfricanAmerican', 'Black or African American', 'A person having origins in any of the black racial groups of Africa.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Black or African American', [Definition] = 'A person having origins in any of the black racial groups of Africa.' WHERE [Code] = 'BlackOrAfricanAmerican' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceNativeHawaiianorOtherPacificIslander') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'NativeHawaiianOrOtherPacificIslander', [Description] = 'Native Hawaiian or Other Pacific Islander', [Definition] = 'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.' WHERE [Code] = 'RaceNativeHawaiianorOtherPacificIslander' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'NativeHawaiianOrOtherPacificIslander') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('NativeHawaiianOrOtherPacificIslander', 'Native Hawaiian or Other Pacific Islander', 'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Native Hawaiian or Other Pacific Islander', [Definition] = 'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.' WHERE [Code] = 'NativeHawaiianOrOtherPacificIslander' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceDemographicRaceTwoOrMoreRaces') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'DemographicRaceTwoOrMoreRaces', [Description] = 'Demographic Race Two or More Races', [Definition] = 'A person having origins in any of more than one of the racial groups.' WHERE [Code] = 'RaceDemographicRaceTwoOrMoreRaces' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'DemographicRaceTwoOrMoreRaces') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('DemographicRaceTwoOrMoreRaces', 'Demographic Race Two Or More Races', 'A person having origins in any of more than one of the racial groups.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Demographic Race Two Or More Races', [Definition] = 'A person having origins in any of more than one of the racial groups.' WHERE [Code] = 'DemographicRaceTwoOrMoreRaces' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceAndEthnicityUnknown') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('RaceAndEthnicityUnknown', 'Race And Ethnicity Unknown', 'The category used to report a person whose race and ethnicity are not known.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Race And Ethnicity Unknown', [Definition] = 'The category used to report a person whose race and ethnicity are not known.' WHERE [Code] = 'RaceAndEthnicityUnknown' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceWhite') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'White', [Description] = 'White', [Definition] = 'A person having origins in any of the original peoples of Europe, Middle East, or North Africa.' WHERE [Code] = 'RaceWhite' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'White') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('White', 'White', 'A person having origins in any of the original peoples of Europe, Middle East, or North Africa.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'White', [Definition] = 'A person having origins in any of the original peoples of Europe, Middle East, or North Africa.' WHERE [Code] = 'White' END -END -GO - - - ------------------------------------------- -----Section 6 Update The Metadata -------- ------------------------------------------- - -IF EXISTS (SELECT '1' - FROM sys.objects o - JOIN sys.columns c - ON o.object_Id = c.object_Id - JOIN sys.extended_properties ep - ON c.object_id = ep.major_id - AND c.column_id = ep.minor_id - WHERE o.type = 'U' - AND o.name = 'PersonDemographicRace' - AND c.name = 'RefRaceId' - AND ep.name = 'MS_Description') - BEGIN - - EXEC sys.sp_dropextendedproperty @name=N'MS_Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' - - END - -IF EXISTS (SELECT '1' - FROM sys.objects o - JOIN sys.columns c - ON o.object_Id = c.object_Id - JOIN sys.extended_properties ep - ON c.object_id = ep.major_id - AND c.column_id = ep.minor_id - WHERE o.type = 'U' - AND o.name = 'PersonDemographicRace' - AND c.name = 'RefRaceId' - AND ep.name = 'CEDS_Def_Desc') - BEGIN - - EXEC sys.sp_dropextendedproperty @name=N'CEDS_Def_Desc', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' - - END - -IF EXISTS (SELECT '1' - FROM sys.objects o - JOIN sys.columns c - ON o.object_Id = c.object_Id - JOIN sys.extended_properties ep - ON c.object_id = ep.major_id - AND c.column_id = ep.minor_id - WHERE o.type = 'U' - AND o.name = 'PersonDemographicRace' - AND c.name = 'RefRaceId' - AND ep.name = 'CEDS_Element') - BEGIN - - EXEC sys.sp_dropextendedproperty @name=N'CEDS_Element', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' - - END - -IF EXISTS (SELECT '1' - FROM sys.objects o - JOIN sys.columns c - ON o.object_Id = c.object_Id - JOIN sys.extended_properties ep - ON c.object_id = ep.major_id - AND c.column_id = ep.minor_id - WHERE o.type = 'U' - AND o.name = 'PersonDemographicRace' - AND c.name = 'RefRaceId' - AND ep.name = 'CEDS_GlobalId') - BEGIN - - EXEC sys.sp_dropextendedproperty @name=N'CEDS_GlobalId', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' - - END - -IF EXISTS (SELECT '1' - FROM sys.objects o - JOIN sys.columns c - ON o.object_Id = c.object_Id - JOIN sys.extended_properties ep - ON c.object_id = ep.major_id - AND c.column_id = ep.minor_id - WHERE o.type = 'U' - AND o.name = 'PersonDemographicRace' - AND c.name = 'RefRaceId' - AND ep.name = 'CEDS_URL') - BEGIN - - EXEC sys.sp_dropextendedproperty @name=N'CEDS_URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' - - END - -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='Code'; -GO - -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='Description' - -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseCode', @level2type='COLUMN', @level2name='Code' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseCode', @level2type='COLUMN', @level2name='Definition' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseCode', @level2type='COLUMN', @level2name='SortOrder' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='Code' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='Definition' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='Description' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='SortOrder' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The origins of a person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Race' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001943' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22955' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique five-digit number assigned to each federal program as listed in the Assistance Listings. See https://sam.gov/content/assistance-listings' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Federal Program Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000547' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21538' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationEnrollmentCapacityId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationEnrollmentCapacityId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationEnrollmentCapacityId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002012' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationEnrollmentCapacityId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationEnrollmentCapacityId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefExitOrWithdrawalStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefExitOrWithdrawalStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Exit or Withdrawal Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefExitOrWithdrawalStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000108' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefExitOrWithdrawalStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21108' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefExitOrWithdrawalStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramSubgrantCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An additional code appended to the Federal Program Code used to identify a subgrant of the grant identified by the Federal Program Code.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramSubgrantCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Federal Program Subgrant Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramSubgrantCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002010' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramSubgrantCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22980' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramSubgrantCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalBalanceSheetCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe balance sheet accounts and statement of net position accounts which are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalBalanceSheetCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Balance Sheet Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalBalanceSheetCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002007' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalBalanceSheetCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22982' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalBalanceSheetCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalFundClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify a fund which is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalFundClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Fund Classification' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalFundClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002008' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalFundClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22983' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalFundClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalProgramCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalProgramCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Program Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalProgramCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002009' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalProgramCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22984' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalProgramCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalRevenueCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to record revenue and other receivables by source.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalRevenueCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Revenue Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalRevenueCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002003' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalRevenueCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22985' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalRevenueCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalFunctionCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the activity for which a service or material object is acquired.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalFunctionCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Function Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalFunctionCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002004' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalFunctionCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22986' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalFunctionCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify the segregation of expenditures by instructional level.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Level of Instruction Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002006' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22987' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalObjectCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the service or commodity obtained as the result of a specific expenditure.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalObjectCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Object Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalObjectCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002005' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalObjectCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22988' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalObjectCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefFullTimeStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an individual is employed for a standard number of hours (as determined by civil or organizational policies) in a week, month, or other period of time.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefFullTimeStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Full-time Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefFullTimeStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000736' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefFullTimeStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21713' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefFullTimeStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefInstructionalStaffContractLengthId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The contracted teaching period for faculty.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefInstructionalStaffContractLengthId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Instructional Staff Contract Length' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefInstructionalStaffContractLengthId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000735' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefInstructionalStaffContractLengthId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21712' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefInstructionalStaffContractLengthId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefInternetAccessId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of internet access available.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefInternetAccessId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Internet Access' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefInternetAccessId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000587' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefInternetAccessId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21580' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefInternetAccessId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefIpedsOccupationalCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report employees.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefIpedsOccupationalCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Occupational Category' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefIpedsOccupationalCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000731' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefIpedsOccupationalCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21708' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefIpedsOccupationalCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefLeaTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N' The classification of education agencies within the geographic boundaries of a state according to the level of administrative and operational control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefLeaTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefLeaTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000537' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefLeaTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21528' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefLeaTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'MepPersonnelIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a staff member''s salary is paid by the Title I, Part C Migrant Education Program (MEP) of ESEA as amended.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'MepPersonnelIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Personnel Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'MepPersonnelIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000543' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'MepPersonnelIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21534' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'MepPersonnelIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefNationalSchoolLunchProgramStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of participation by a school in the National School Lunch Program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefNationalSchoolLunchProgramStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'National School Lunch Program Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefNationalSchoolLunchProgramStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001767' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefNationalSchoolLunchProgramStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22748' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefNationalSchoolLunchProgramStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefPredominantCalendarSystemId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which an institution structures most of its courses for the academic year.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefPredominantCalendarSystemId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Predominant Calendar System' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefPredominantCalendarSystemId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000729' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefPredominantCalendarSystemId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21705' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefPredominantCalendarSystemId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProgramType', @level2type=N'COLUMN',@level2name=N'PrimaryProgramIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the associated program is the primary function of this organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProgramType', @level2type=N'COLUMN',@level2name=N'PrimaryProgramIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Primary Program Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProgramType', @level2type=N'COLUMN',@level2name=N'PrimaryProgramIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002013' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProgramType', @level2type=N'COLUMN',@level2name=N'PrimaryProgramIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22990' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProgramType', @level2type=N'COLUMN',@level2name=N'PrimaryProgramIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'ProjectBasedLearningIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that an instructional model is being implemented wherein a student learns through answering complex questions or solving for real-world problems. Also called problem-based learning, inquiry-based learning, or learning-by-doing.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'ProjectBasedLearningIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Project-Based Learning Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'ProjectBasedLearningIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001991' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'ProjectBasedLearningIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22991' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'ProjectBasedLearningIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RefProjectBasedLearningTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of project-based instruction being offered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RefProjectBasedLearningTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Project-Based Learning Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RefProjectBasedLearningTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001992' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RefProjectBasedLearningTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22992' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RefProjectBasedLearningTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'OrganizationProjectBasedLearningId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of project-based instruction being offered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'OrganizationProjectBasedLearningId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Project-Based Learning Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'OrganizationProjectBasedLearningId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001992' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'OrganizationProjectBasedLearningId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22992' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'OrganizationProjectBasedLearningId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefPublicSchoolResidenceId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the location of a persons legal residence relative to (within or outside) the boundaries of the public school attended and its administrative unit.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefPublicSchoolResidenceId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Public School Residence Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefPublicSchoolResidenceId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000532' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefPublicSchoolResidenceId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21523' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefPublicSchoolResidenceId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefSchoolLevelId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the level of the education institution.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefSchoolLevelId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'School Level' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefSchoolLevelId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000241' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefSchoolLevelId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21241' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefSchoolLevelId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationTeacherQualificationStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether special education teachers are fully certified in the State..' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationTeacherQualificationStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Special Education Teacher Qualification Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationTeacherQualificationStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001996' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationTeacherQualificationStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22993' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationTeacherQualificationStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefStatePovertyDesignationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation of a school’s poverty quartile for purposes of determining classes taught by highly qualified teachers in high and low poverty schools, according to state’s indicator of poverty.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefStatePovertyDesignationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'State Poverty Designation' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefStatePovertyDesignationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000585' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefStatePovertyDesignationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21578' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefStatePovertyDesignationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN',@level2name=N'RefStudentSupportServiceAvailabilityTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The group of students to whom related or ancillary service is offered within the formal educational system or by an outside agency which provides non-instructional service to support the general welfare of students.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN',@level2name=N'RefStudentSupportServiceAvailabilityTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Availability Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN',@level2name=N'RefStudentSupportServiceAvailabilityTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001998' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN',@level2name=N'RefStudentSupportServiceAvailabilityTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22994' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN',@level2name=N'RefStudentSupportServiceAvailabilityTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'TitleITargetedAssistanceStaffFunded'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a staff member is targeted assistance (TAS) program staff funded by Title I, Part A, Section 1115 of ESEA as amended.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'TitleITargetedAssistanceStaffFunded'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Title I Targeted Assistance Staff Funded' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'TitleITargetedAssistanceStaffFunded'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000552' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'TitleITargetedAssistanceStaffFunded'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21543' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'TitleITargetedAssistanceStaffFunded'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefVirtualSchoolStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the extent to which a school offers instruction in which students and teachers are separated by time and/or location, and interaction occurs via computers and/or telecommunications technologies.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefVirtualSchoolStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Virtual School Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefVirtualSchoolStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001766' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefVirtualSchoolStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22747' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefVirtualSchoolStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefBlendedLearningModelTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefBlendedLearningModelTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Blended Learning Model Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefBlendedLearningModelTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001287' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefBlendedLearningModelTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22253' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefBlendedLearningModelTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefClassroomPositionTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of position the staff member holds in the specific course section.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefClassroomPositionTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Classroom Position Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefClassroomPositionTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000622' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefClassroomPositionTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21615' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefClassroomPositionTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ItinerantTeacher'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a teacher provides instruction in more than one instructional site.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ItinerantTeacher'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Itinerant Teacher' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ItinerantTeacher'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000528' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ItinerantTeacher'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21519' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ItinerantTeacher'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefK12StaffClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The titles of employment, official status, or rank of education staff.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefK12StaffClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'K12 Staff Classification' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefK12StaffClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000087' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefK12StaffClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21087' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefK12StaffClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefProfessionalEducationJobClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A general job classification that describes staff that performs duties requiring a high degree of knowledge and skills generally acquired through at least a baccalaureate degree (or its equivalent obtained through special study and/or experience) including skills in the field of education, educational psychology, educational social work, or an education therapy field.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefProfessionalEducationJobClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Professional Educational Job Classification' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefProfessionalEducationJobClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000220' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefProfessionalEducationJobClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21220' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefProfessionalEducationJobClassificationId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001917' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN',@level2name=N'RefK12ResponsibilityTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of services/instruction the school is responsible for providing to the student.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN',@level2name=N'RefK12ResponsibilityTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Responsible School Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN',@level2name=N'RefK12ResponsibilityTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000595' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN',@level2name=N'RefK12ResponsibilityTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21588' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN',@level2name=N'RefK12ResponsibilityTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001517' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseLevelId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N' The course''s level of rigor.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseLevelId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Level' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseLevelId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001516' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseLevelId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22488' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseLevelId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseSubjectAreaId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended major subject area of the education course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseSubjectAreaId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Subject Area' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseSubjectAreaId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001518' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseSubjectAreaId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseSubjectAreaId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationAgeGroupTaughtId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The age range of special education students taught.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationAgeGroupTaughtId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Special Education Age Group Taught' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationAgeGroupTaughtId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000564' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationAgeGroupTaughtId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21556' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationAgeGroupTaughtId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationParaprofessional'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a paraprofessional is employed or contracted to work with children with disabilities who are ages 3 through 21.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationParaprofessional'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Special Education Paraprofessional' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationParaprofessional'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000261' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationParaprofessional'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21261' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationParaprofessional'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationRelatedServicesPersonnel'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a related services person is employed or contracted to work with children with disabilities who are ages 3 through 21.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationRelatedServicesPersonnel'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Special Education Related Services Personnel' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationRelatedServicesPersonnel'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000262' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationRelatedServicesPersonnel'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21262' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationRelatedServicesPersonnel'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationStaffCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationStaffCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Special Education Support Services Category' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationStaffCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000558' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationStaffCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21549' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationStaffCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationTeacher'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a teacher is employed or contracted to work with children with disabilities who are ages 3 through 21.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationTeacher'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Special Education Teacher' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationTeacher'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000264' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationTeacher'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21264' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationTeacher'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'FullTimeEquivalency'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'FullTimeEquivalency'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Staff Full Time Equivalency' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'FullTimeEquivalency'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000118' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'FullTimeEquivalency'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21118' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'FullTimeEquivalency'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ContributionPercentage'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A percentage used to weight the educator''s assigned responsibility for student learning in a Class Section, particularly when more than one educator is assigned to the class section.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ContributionPercentage'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Teaching Assignment Contribution Percentage' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ContributionPercentage'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000649' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ContributionPercentage'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21651' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ContributionPercentage'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTeachingAssignmentRoleId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role that the Staff Member has been assigned for a Class Section. (A teacher may have the lead responsibility for one section and serve a supporting role for another section of the same course.)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTeachingAssignmentRoleId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Teaching Assignment Role' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTeachingAssignmentRoleId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000648' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTeachingAssignmentRoleId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21650' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTeachingAssignmentRoleId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTitleIProgramStaffCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of employment, official status, or rank for staff working in a Title I program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTitleIProgramStaffCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Title I Program Staff Category' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTitleIProgramStaffCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000283' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTitleIProgramStaffCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21283' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTitleIProgramStaffCategoryId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CteCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CteCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CteCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001517' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CteCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CteCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'AdjustedCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of participants that can be served in a program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'AdjustedCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Adjusted Capacity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'AdjustedCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001999' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'AdjustedCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22972' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'AdjustedCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RefAdjustedCapacityReasonTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the reason for adjusted capacity in a program. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RefAdjustedCapacityReasonTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Adjusted Capacity Reason Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RefAdjustedCapacityReasonTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002000' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RefAdjustedCapacityReasonTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22973' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RefAdjustedCapacityReasonTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationFunds', @level2type=N'COLUMN',@level2name=N'RefAdministrativeFundingControlId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of education institution as classified by its funding source.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationFunds', @level2type=N'COLUMN',@level2name=N'RefAdministrativeFundingControlId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Administrative Funding Control' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationFunds', @level2type=N'COLUMN',@level2name=N'RefAdministrativeFundingControlId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000012' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationFunds', @level2type=N'COLUMN',@level2name=N'RefAdministrativeFundingControlId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21012' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationFunds', @level2type=N'COLUMN',@level2name=N'RefAdministrativeFundingControlId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12Course', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12Course', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12Course', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001517' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12Course', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12Course', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'AnnualBaseContractualSalary'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total annual base contractual salary of a person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'AnnualBaseContractualSalary'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Annual Base Contractual Salary' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'AnnualBaseContractualSalary'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000744' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'AnnualBaseContractualSalary'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21722' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'AnnualBaseContractualSalary'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Assessment', @level2type=N'COLUMN',@level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of assessments administered to English Learners.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Assessment', @level2type=N'COLUMN',@level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Assessment Type Administered to English Learners' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Assessment', @level2type=N'COLUMN',@level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001995' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Assessment', @level2type=N'COLUMN',@level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22974' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Assessment', @level2type=N'COLUMN',@level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'ContractDaysOfServicePerYear'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days per year that a person is expected to work as outlined specifically in his or her employment agreement.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'ContractDaysOfServicePerYear'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Contract Days of Service Per Year' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'ContractDaysOfServicePerYear'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000047' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'ContractDaysOfServicePerYear'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21047' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'ContractDaysOfServicePerYear'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefEmploymentContractTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of employment contract used by an institution.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefEmploymentContractTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Contract Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefEmploymentContractTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000737' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefEmploymentContractTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21714' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefEmploymentContractTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefControlOfInstitutionId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of whether a postsecondary institution is operated by publicly elected or appointed officials (public control) or by privately elected or appointed officials and derives its major source of funds from private sources (private control). ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefControlOfInstitutionId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Control of Institution' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefControlOfInstitutionId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000048' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefControlOfInstitutionId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21048' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefControlOfInstitutionId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'CourseLevelApprovalIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that there are school or program developed requirements for student participation in the course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'CourseLevelApprovalIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Course Level Approval Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'CourseLevelApprovalIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001994' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'CourseLevelApprovalIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22975' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'CourseLevelApprovalIndicator'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'RefCourseLevelTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'RefCourseLevelTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Course Level Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'RefCourseLevelTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001312' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'RefCourseLevelTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'RefCourseLevelTypeId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAge2AndOlderCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of children ages two and above that can be served.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAge2AndOlderCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Age 2 and Older Capacity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAge2AndOlderCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002001' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAge2AndOlderCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22976' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAge2AndOlderCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAgeUnder2Capacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of children under the age of two that can be served.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAgeUnder2Capacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Age Under 2 Capacity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAgeUnder2Capacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002002' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAgeUnder2Capacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22977' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAgeUnder2Capacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefEdFactsCertificationStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an educator holds the certification or licensure required by their assignment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefEdFactsCertificationStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Certification Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefEdFactsCertificationStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001997' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefEdFactsCertificationStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22978' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefEdFactsCertificationStatusId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationCalendarSessionId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationCalendarSessionId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationCalendarSessionId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002012' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationCalendarSessionId'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationCalendarSessionId'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002012' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityUtilization', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityUtilization', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityUtilization', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002012' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityUtilization', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityUtilization', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique five-digit number assigned to each federal program as listed in the Assistance Listings. See https://sam.gov/content/assistance-listings' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Federal Program Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000547' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21538' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An additional code appended to the Federal Program Code used to identify a subgrant of the grant identified by the Federal Program Code.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Federal Program Subgrant Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002010' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22980' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSCEDCourseCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSCEDCourseCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSCEDCourseCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001517' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSCEDCourseCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSCEDCourseCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of organization that created the coding system for the financial account information.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Coding System Organization Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002011' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22981' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe balance sheet accounts and statement of net position accounts which are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Balance Sheet Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002007' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22982' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify a fund which is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Fund Classification' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002008' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22983' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Program Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002009' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22984' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to record revenue and other receivables by source.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Revenue Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002003' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22985' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the activity for which a service or material object is acquired.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Function Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002004' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22986' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify the segregation of expenditures by instructional level.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Level of Instruction Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002006' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22987' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the service or commodity obtained as the result of a specific expenditure.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Object Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002005' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22988' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether special education teachers are fully certified in the State..' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Special Education Teacher Qualification Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001996' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22993' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The group of students to whom related or ancillary service is offered within the formal educational system or by an outside agency which provides non-instructional service to support the general welfare of students.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Availability Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001998' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22994' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the reason for adjusted capacity in a program. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Adjusted Capacity Reason Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002000' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22973' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of project-based instruction being offered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Project-Based Learning Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001992' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22992' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of assessments administered to English Learners.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Assessment Type Administered to English Learners' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001995' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22974' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners'; -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an educator holds the certification or licensure required by their assignment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Certification Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001997' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22978' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001917' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20898' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001917' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20898' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001917' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20898' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' -GO - -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Based on URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'BasedOnUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Intended End User Role', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceIntendedEndUserRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Time Required', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TimeRequired' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Typical Age Range Minimum', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Typical Age Range Maximum', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Interactivity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Text Complexity Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Text Complexity System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Short Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Family Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyTitle' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Family Short Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyShortName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RefLearnerActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Prerequisite', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Prerequisite' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Creation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Maximum Time Allowed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumTimeAllowed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Maximum Time Allowed Unit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityMaximumTimeAllowedUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Due Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Due Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Maximum Attempts Allowed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumAttemptsAllowed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Add to Grade Book Flag', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityAddToGradeBookFlagId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Release Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'ReleaseDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Weight', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Possible Points', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'PossiblePoints' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Rubric URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RubricUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Scaffolding Item Flag', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScaffoldingItemFlag' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Hint Count', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintCount' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Hint Included Answer', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintIncludedAnswer' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response First Attempt Duration', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'FirstAttemptDuration' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Start Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Administration Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Administration Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Administration Start Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Administration Finish Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Administration Finish Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Security Issue', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Security Issue', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Date Updated', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateUpdated' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Date Created', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Enrollment Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEnrollmentStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Administration Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Sequence Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Sequence Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section GUID', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment GUID', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accreditation Agency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefAccreditationAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Licensing Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefELFacilityLicensingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Start Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionStartTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session End Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionEndTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed While Enrolled', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed While Enrolled', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed While Enrolled', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed While Enrolled', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed After Exit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed After Exit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed After Exit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed After Exit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quarterly Earnings', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'Earnings' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmploymentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Person Employed in Multiple Jobs Count', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'EmployedInMultipleJobsCount' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Record Reference Period Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Record Reference Period End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Record Administrative Data Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefERAdministrativeDataSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Workforce Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefWfProgramParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Educational Use', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceEducationalUseId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Delivery Device Details', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'DeliveryDeviceDetails' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Assigned Support', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Assigned Support', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Assigned Support', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'AssignedSupport' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Assigned Support', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssignedSupportFlag' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Activate by Default', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Activate by Default', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Activate by Default', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Activate by Default', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Provider', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Provider' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Preliminary Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'PreliminaryIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diagnostic Statement Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatementSource' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Number of Responses', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'NumberOfResponses' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Subtest Item Weight Correct', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightCorrect' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Subtest Item Weight Incorrect', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightIncorrect' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Subtest Item Weight Not Attempted', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightNotAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Identifier Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentSubtestIdentifierTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Days of Instruction', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'DaysOfInstructionPriorToAssessment' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Retest Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RetestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Creation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Scheduled Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Scheduled End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Actual Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Actual Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Actual End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Actual End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Language Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedsProfileContentLanguageLearnerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Hazard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Support Tool Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSupportToolId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Usage Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Usage Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Link Indication Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedLinkIndicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Speech Rate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'SpeechRate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Volume', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Volume' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Invert Color Choice', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'InvertColorChoice' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Magnification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'Magnification' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Braille Grade Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleGradeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Number of Braille Dots Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedNumberOfBrailleDotsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Number of Braille Cells', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'NumberOfBrailleCells' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Braille Mark Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleMarkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Braille Dot Pressure', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'BrailleDotPressure' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Braille Status Cell Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleStatusCellTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Item Translation Display Language Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ItemTranslationDisplayLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Funding Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'FundingSource' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Publish Activity Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'PublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'Capacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session End Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Evaluation Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationMethod' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Evaluation Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Expiration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SessionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Location Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'LocationName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Start Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDSessionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Instructional Delivery Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDInstructionalDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Initiative Maximum Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Initiative Minimum Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Initiative Score Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ScoreLevel' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Initiative Participation Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Initiative Participation End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Initiative Participation Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Revenue Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Level Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Level Feedback', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Feedback' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Level Position', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Level Quality Label', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Quality' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Level Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Score' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Position', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Weight', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Grade Span', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDGradeSpan' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Referral Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Referral Outcome', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RefReferralOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Referral Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Reason' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Referral Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Source' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Referral Type Received', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralTypeReceived' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Referred To', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferredTo' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Short Name of Organization', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reason for Declined Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ReasonForDeclinedServices' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Sponsoring Agency Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SponsoringAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Approved Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Approved Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Delivery Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Delivery Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Thesis or Dissertation Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'ThesisOrDissertationTitle' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Union Membership Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Weeks Employed Per Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'WeeksEmployedPerYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Work-based Learning Opportunity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Work-based Learning Opportunity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Work-based Learning Opportunity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Work-based Learning Opportunity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Work-based Learning Opportunity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Part C to Part B Notification Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA IEP Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAIEPStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Outcome Time Point', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefOutcomeTimePointId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Outcomes Summary Progress A Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressAIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Outcomes Summary Progress B Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressBIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Outcomes Summary Progress C Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressCIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Outcomes Summary Rating A', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingAId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Outcomes Summary Rating B', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingBId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Outcomes Summary Rating C', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingCId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Method of Service Delivery', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefMethodOfServiceDeliveryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Valid End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Valid Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other Last Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other First Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other Middle Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Subject Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Subject Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Subject Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Subject Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Subject Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Planned Service Frequency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefServiceFrequencyId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Planned Service Duration', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceDuration' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reason for Delay of Transition Conference', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RefReasonDelayTransitionConfId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Previous Version Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'PreviousVersionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Current Version Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CurrentVersionIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accreditation Agency Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accreditation Agency Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Activity Time Involved', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTimeInvolved' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Activity Time Measurement Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RefActivityTimeMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'APIP Interaction Sequence Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'APIPInteractionSequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Activity Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'ActivityDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Administration Period Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentAdministrationPeriodDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Adaptive Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Algorithm Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Algorithm Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmVersion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form GUID', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormGUID' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Item Field Test Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentFormSectionItemFieldTestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Descriptive Feedback Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AssessmentItemResponseDescriptiveFeedbackDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Score Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemResponseScoreStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Database Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionDatabaseName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session GUID', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionGUID' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Completion Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentRegistrationCompletionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Completion Status Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssessmentRegistrationCompletionStatusDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Data Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultDataTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Revision Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentRevisionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Descriptive Feedback Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultDescriptiveFeedbackDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Score Standard Error', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultScoreStandardError' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Score Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Open Enrollment Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolOpenEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Department Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Department Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Insurance Deductible', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'InsuranceDeductible' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Public Education Mill Rate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'PublicEducationMillRate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Total Assessed Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityTotalAssessedValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Campus Facility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Component or Fixture Check Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureCheckDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Component or Fixture Serviced Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Component or Fixture Scheduled Serviced Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureScheduledServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Component or Fixture Useful Life', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureUsefulLife' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Available Utilized Instructional Space', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'AvailableUtilizedInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Capacity Factor Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingCapacityFactorIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Enrollment Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'FacilityEnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Relationship Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RefOrganizationRelationshipId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Ownership Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityOwnershipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Source URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkSourceUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Typical Age Range Minimum', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Typical Age Range Maximum', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Date Effective', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefDateEffective' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Offered Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Offered End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'CTDL Audience Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCTDLAudienceLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Agent Role Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAgentRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Progress Achieving English Language Proficiency Indicator Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Progress Achieving English Language Proficiency State Defined Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ProgressAcheivingEnglishLearnerProficiencyStateDefinedStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApipDescription', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Race', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RefRaceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Paraprofessional Qualification Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefParaprofessionalQualificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Participation Status for Math', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Participation Status for Reading and Language Arts', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusRlaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Persistently Dangerous Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'PersistentlyDangerousStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Personal Title or Prefix', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Prefix' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Position Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'PositionTitle' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Postal Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Postal Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Prekindergarten Eligibility', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Prekindergarten Eligible Ages for Non-IDEA Students', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RefPreKEligibleAgesNonIDEAId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Disability Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'PrimaryDisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Telephone Number Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Telephone Number Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Educational Job Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Educational Job Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proficiency Target Status for Math', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Length Hours', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'ProgramLengthHours' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Length Hours Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefProgramLengthHoursTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RefProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Projected Graduation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ProjectedGraduationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Public School Choice Implementation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolChoiceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reason Not Tested', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotTestedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Recognition for Participation or Performance in an Activity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RefActivityRecognitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reconstituted Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefReconstitutedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Related Competency Definitions', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RelatedCompetencyDefinitions' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Restructuring Action', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefRestructuringActionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Retirement Benefits', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationRetirementBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Salary for Teaching Assignment Only Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'SalaryForTeachingAssignmentOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Improvement Funds Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementFundsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Improvement Grant Intervention Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSigInterventionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Year Minutes', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Score Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Sequence of Course', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SCEDSequenceOfCourse' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Designator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'SessionDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Sex', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefSexId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Single Sex Class Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefSingleSexClassStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Exit Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Paraprofessional', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Paraprofessional', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Related Services Personnel', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Related Services Personnel', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Services Exit Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationServicesExitDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Teacher', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Teacher', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Standardized Admission Test Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'StandardizedAdmissionTestScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Standardized Admission Test Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RefStandardizedAdmissionTestId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Abbreviation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State of Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefStateOfResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Street Number and Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Street Number and Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Attendance Rate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'AttendanceRate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsStudentLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Credential Basis', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Credential Basis', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Credential Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Credential Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefPersonTelephoneNumberTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RefTitleIIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Instructional Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIInstructionalServicesId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Program Staff Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Program Staff Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I School Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefTitleISchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Support Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RefK12LeaTitleISupportServiceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title IV Participant and Recipient', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'TitleIVParticipantAndRecipient' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Total Benefits', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Size of High School Graduating Class', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'TotalNumberInClass' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Size of High School Graduating Class', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolGraduatingClassSize' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Total Salary', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalSalary' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Transfer-ready', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefTransferReadyId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tuition Residency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefTuitionResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'United States Citizenship Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefUSCitizenshipStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Years of Prior Teaching Experience', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Eligibility Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proof of Residency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proof of Residency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Immunization Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'ImmunizationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Required Immunization', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Vision Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefVisionScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hearing Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHearingScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dental Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Weight at Birth', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeightAtBirth' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Weeks of Gestation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeeksOfGestation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Developmental Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Developmental Evaluation Finding', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEvaluationFindingId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Language Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'ISO 639-2 Language Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Services Received', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesReceivedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Services Received', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefServicesId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Application Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Application Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'EnrollmentDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Participation in School Food Service Programs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Participation in School Food Service Programs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RefSchoolFoodServiceProgramId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Custodial Parent or Guardian Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'CustodialRelationshipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of People in Family', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInFamily' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of People in Household', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInHousehold' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Family Income', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIncome' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Source of Family Income', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefFamilyIncomeSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Income Calculation Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefIncomeCalculationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21481', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21482', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefKindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21485', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21486', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21487', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'DaysInSession' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'FirstInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21489', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'LastInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MinutesPerDay' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21492', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21493', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21494', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21495', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21496', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentCost' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21497', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentReporterTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21498', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentReporterId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21500', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21501', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21502', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DurationOfDisciplinaryAction' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21503', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RelatedToZeroTolerancePolicy' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21504', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'FullYearExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21505', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'ShortenedExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21506', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentTimeDescriptionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21508', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21509', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21509', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21510', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassBeginningTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21511', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassEndingTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21512', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassMeetingDays' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21513', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassPeriod' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21514', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'TimeDayIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21515', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RefInstructionLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21516', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'PrimaryAssignment' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21519', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21519', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21520', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstEntryDateIntoUSSchool' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21521', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21522', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefNonPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21523', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21523', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21526', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentSchoolAgeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21527', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIIAccountabilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21529', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodOfCwdId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21530', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21531', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotCompletingId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21532', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21533', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ConsolidatedMepFundsStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21534', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21534', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21536', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21537', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'TechnologySkillsStandardsMet' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21538', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21544', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusRLAId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21546', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodFirearmsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21547', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIDEADisciplineMethodFirearmId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21548', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefFirearmTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21549', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21549', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21549', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21550', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefIDEAEnvironmentELId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21550', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentECId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21553', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21553', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21554', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'PrioritizedForServices' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21555', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ContinuationOfServicesStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefTechnologyLiteracyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21560', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'PublicSchoolChoiceFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21563', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21563', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21564', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentPretestOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21565', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefProficiencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21566', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesSchoolChoice20PercentObligation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21569', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'DisabilityStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21570', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'EducationalServicesAfterRemoval' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21573', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'SingleParentOrSinglePregnantWoman' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21577', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21577', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21578', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21578', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21579', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentActionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21580', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21580', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21581', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefNonTraditionalGenderStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21582', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RefStaffPerformanceLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21585', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteParticipant' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21586', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteNonTraditionalCompletion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefK12ResponsibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21590', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'LocationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21590', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'Location' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21591', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'AlternateDayName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21592', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAbsentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21593', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefPresentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21594', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21595', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22008', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22008', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22009', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Provider' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22010', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'PreliminaryIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22011', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatementSource' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'NumberOfResponses' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22013', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightCorrect' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22014', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightIncorrect' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22015', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightNotAttempted' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22016', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentSubtestIdentifierTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22017', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'DaysOfInstructionPriorToAssessment' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22018', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RetestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22019', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22020', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22022', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22023', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22023', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22024', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22024', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedsProfileContentLanguageLearnerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSupportToolId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22028', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22028', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22029', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedLinkIndicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'SpeechRate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22032', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Volume' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22033', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'InvertColorChoice' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22034', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'Magnification' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleGradeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22036', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedNumberOfBrailleDotsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22037', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'NumberOfBrailleCells' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22038', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleMarkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22040', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'BrailleDotPressure' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleStatusCellTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22042', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ItemTranslationDisplayLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'KeywordTranslationLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefKeywordTranslationsLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSigningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22045', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedAlternativeRepresentationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22046', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSpokenSourcePreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ReadAtStartPreferenceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22049', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUserSpokenPreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22050', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'AssessmentNeedDirectionsOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22051', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedMaskingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22052', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementTextMessagingString' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22053', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementSoundFileUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22055', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'AssessmentNeedTimeMultiplier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22056', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'LineReaderHighlightColor' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'OverlayColor' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22058', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'ForegroundColor' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22059', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'BackgroundColor' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedIncreasedWhitespacingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22061', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22062', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'ScorePublishDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22065', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CardiopulmonaryResuscitationCertification' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22066', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'FirstAidCertification' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22067', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22068', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22069', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22070', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22070', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22070', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22070', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22070', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21644', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RefOrganizationLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21152', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21765', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeInstructionalProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefGoalsForAttendingAdultEducationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21769', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'PostsecondaryTransitionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21771', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21775', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefAeCertificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21787', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalApprovedECCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22031', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Pitch' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepMathComplexityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22075', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22076', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedbackSource' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22077', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22077', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22078', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22166', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepAspectsOfReadingId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22101', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssessmentNeedType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22102', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22103', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingTemplateUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22104', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22105', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22106', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'OutcomeDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22107', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22109', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ModalFeedbackXml' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22110', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ItemBodyXml' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22111', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22111', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22191', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'FinalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22156', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22157', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightHolderName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22158', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22159', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22160', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22161', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22162', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22466', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22467', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22467', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22468', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'ThesisOrDissertationTitle' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22469', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22470', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'WeeksEmployedPerYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22472', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22473', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAIEPStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22475', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefOutcomeTimePointId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22476', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressAIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22477', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressBIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22478', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressCIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22479', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingAId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22480', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingBId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22481', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingCId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22482', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefMethodOfServiceDeliveryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22483', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22484', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22485', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22486', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22487', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22492', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefServiceFrequencyId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22493', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceDuration' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22494', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RefReasonDelayTransitionConfId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22498', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'PreviousVersionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CurrentVersionIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22500', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22500', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22502', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTimeInvolved' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22503', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RefActivityTimeMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22504', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'APIPInteractionSequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22505', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'ActivityDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22506', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentAdministrationPeriodDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22507', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22508', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22509', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmVersion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22510', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormGUID' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22511', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentFormSectionItemFieldTestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22512', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AssessmentItemResponseDescriptiveFeedbackDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22513', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemResponseScoreStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22514', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionDatabaseName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22515', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionGUID' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22516', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentRegistrationCompletionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22517', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssessmentRegistrationCompletionStatusDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultDataTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22519', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentRevisionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22520', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultDescriptiveFeedbackDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22522', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultScoreStandardError' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22523', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22524', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolOpenEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22525', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22525', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22526', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22529', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesOfferedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22530', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'AccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22530', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialAccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22531', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22532', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialExpenditureProjectReportingCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22533', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionActorIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22534', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22535', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22536', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22537', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessRightsUrlId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22540', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAuthorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22541', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22542', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceDateModified' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22544', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorEmail' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22545', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherEmail' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22547', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22548', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkPublicationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22549', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefSequence' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22552', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22552', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22553', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22553', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22554', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22554', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22555', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryConnectedStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryActiveStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22557', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryVeteranStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22560', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'StaffApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22561', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefBillableBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22562', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationExitDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22885', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'FacilityEnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22886', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RefOrganizationRelationshipId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22887', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityOwnershipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22888', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkSourceUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22889', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22890', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22891', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefDateEffective' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22892', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22893', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22894', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCTDLAudienceLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22895', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAgentRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22896', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22897', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ProgressAcheivingEnglishLearnerProficiencyStateDefinedStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApipDescription', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22955', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RefRaceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21110', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21112', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidAwardAmount' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21113', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21115', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21117', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstTimePostsecondaryStudent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21118', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21118', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21118', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21121', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'GenerationCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21123', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21123', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21124', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21124', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21125', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21125', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21126', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelToBeAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21126', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21127', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverage' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21128', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21128', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21128', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21129', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'GradePointAverageGivenSession' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21130', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21131', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21131', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21132', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyCohortYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21133', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21134', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefGunFreeSchoolsActReportingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21135', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'HarassmentOrBullyingPolicy' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21136', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationHealthBenefits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21137', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21137', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21140', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefHighSchoolGraduationRateIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21141', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21141', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21142', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'HighlyQualifiedTeacherIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21143', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'HireDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21144', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'HispanicLatinoEthnicity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21146', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RefHomelessNighttimeResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21149', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'HomelessnessStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21150', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'HonorDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21165', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InitialEnrollmentTerm' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21167', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefInstitutionTelephoneTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21168', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursAttempted' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21169', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefInstructionalActivityHoursId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21170', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefIntegratedTechnologyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21171', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'LastQualifyingMoveDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21172', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21173', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21175', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'SupervisoryUnionIdentificationNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefMagnetSpecialProgramId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21182', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MarkingPeriodName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21183', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MidTermMark' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21184', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21186', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21187', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21188', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefMepStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21190', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'CountyName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21190', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'AddressCountyName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21191', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'NameOfInstitution' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21194', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RefNeglectedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefVisaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21197', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'NormalLengthTimeForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21198', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefTimeForCompletionUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21201', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysAbsent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21202', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21202', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21205', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationOtherBenefits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21206', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'OtherName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21207', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefParaprofessionalQualificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21209', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusRlaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21210', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'PersistentlyDangerousStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21212', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Prefix' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21213', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'PositionTitle' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21214', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21214', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21216', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21217', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RefPreKEligibleAgesNonIDEAId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21218', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'PrimaryDisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21219', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21219', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21220', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21220', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21221', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21222', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21223', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'ProgramLengthHours' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21224', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefProgramLengthHoursTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21225', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RefProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21226', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ProjectedGraduationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21227', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolChoiceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type of academic distinctions earned by or awarded to the student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicHonorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the state, district, or school met the Adequate Yearly Progress (AYP) requirements for the school year, as determined by the state-established criteria.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAypStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of education institution as classified by its funding source.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdministrativeFundingControl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the specific group of students whose needs the alternative school is designed to meet.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAlternativeSchoolFocus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of the academic content or subject area (e.g., arts, mathematics, reading, or a foreign language) being evaluated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicSubject', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a student participated in an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentParticipationIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason for which an assessment is designed or delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method that the instructor of the course uses to report the performance and achievement of all students. It may be a qualitative method such as individualized teacher comments or a quantitative method such as a letter or a numerical grade. In some cases, more than one type of reporting method may be used.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionAssessmentReportingMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category of an assessment based on format and content.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Basic Classification is an update of the traditional classification framework developed by the Carnegie Commission on Higher Education in 1970 to support its research program, and later published in 1973 for use by other researchers.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCarnegieBasicClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether the CIP Code is referencing an enrollment program or an award program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The version of CIP being reported.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipVersion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of whether a postsecondary institution is operated by publicly elected or appointed officials (public control) or by privately elected or appointed officials and derives its major source of funds from private sources (private control). ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefControlOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of corrective actions under ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectiveActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique two character International Organization for Standardization (ISO) code for the country in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCountry', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credit (unit, semester, or quarter) associated with the credit hours earned for the course. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseGpaApplicability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the general nature and difficulty of instruction provided throughout a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelCharacteristic', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that an academic course has been repeated by a student and how that repeat is to be computed in the student''s academic grade average.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseRepeatCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the category of credential a person holds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value awarded for the completion of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditTypeEarned', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of how CTE concentrators are included in the state''s computation of its graduation rate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteGraduationRateInclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of a person''s attendance associated with an Attendance Event Type and Attendance Event Date in an organization-person-role context.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s classification as dependent or independent with regards to eligibility for Title IV Federal Student aid.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDependencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The titles of employment, official status, or rank of education staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12StaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of electronic mail (e-mail) address listed for a person or organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmailType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' An indication of whether the school or district met the Elementary/Middle Additional Indicator requirement in accordance with state definition for the purpose of determining Adequate Yearly Progress (AYP).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefElementaryMiddleAdditional', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of the student''s progress at the end of a given school term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEndOfTermStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether a student''s name was, is, or will be officially registered on the roll of a school or schools.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the enrollment type associated with the enrollment award level of a person at the beginning of a term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the student''s enrollment status for a particular term as defined by the institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The process by which a student enters a school during a given academic session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Those persons who may be removed (deleted) from a cohort (or subcohort). For the Graduation Rates and Fall Enrollment retention rate reporting, persons may be removed from a cohort if they left the institution for one of the following reasons: death or total and permanent disability; service in the armed forces (including those called to active duty); service with a foreign aid service of the federal government, such as the Peace Corps; or service on official church missions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCohortExclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The circumstances under which the student exited from membership in an educational institution. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of financial aid awarded to a person for the academic term/year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the reported Grade Point Average is weighted or unweighted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGpaWeightedIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or local education agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, as defined by Title 18, Section 921.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGunFreeSchoolsActReportingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of diploma/credential that is awarded to a person in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the High School Graduation Rate requirement in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolGraduationRateIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary nighttime residence of the person at the time the person was identified as homeless.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHomelessNighttimeResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of increased learning time provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncreasedLearningTimeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of communication number listed for an organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstitutionTelephoneType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of measure of student instructional activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalActivityHours', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the extent to which the district has effectively and fully integrated technology, as defined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIntegratedTechnologyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the improvement stage for AYP of the local education agency (LEA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of whether a postsecondary institution''s highest level of offering is a program of 4-years or higher (4 year), 2-but-less-than 4-years (2 year), or less than 2-years.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLevelOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A school that has been designed: 1) to attract students of different racial/ethnic backgrounds for the purpose of reducing, preventing, or eliminating racial isolation; and/or 2)to provide an academic or social focus on a particular theme (e.g., science/math, performing arts, gifted/talented, career academy or foreign language).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMagnetSpecialProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of services received by participating migrant students in the migrant education program (MEP).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time of year that a Migrant Education Program operates.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of employment, official status, or rank of staff working in the Migrant Education Program (MEP).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeglectedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of a non-US citizen''s Visa type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of measurement for length of time for completion.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTimeForCompletionUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether paraprofessionals are classified as qualified for their assignment according to state definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParaprofessionalQualification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the 95 percent participation requirement in the mathematics assessment in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParticipationStatusAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The groups of students for whom pre-kindergarten programs are available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrekindergartenEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ages of children not served under IDEA to whom the LEA''s pre-kindergarten services are available. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreKEligibleAgesNonIDEA', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The major or overriding disability condition that best describes a person''s impairment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A general job classification that describes staff that performs duties requiring a high degree of knowledge and skills generally acquired through at least a baccalaureate degree (or its equivalent obtained through special study and/or experience) including skills in the field of education, educational psychology, educational social work, or an education therapy field.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalEducationJobClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the math proficiency target in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyTargetAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The documented or assumed reason a student is no longer being served by a special program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of hours (credit or contact) by which the normal length of a program of study is measured.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramLengthHoursType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The system outlining instructional or non-instructional activities and procedures designed to accomplish a predetermined educational objective or set of objectives or to provide support services to a person and/or the community.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the LEA was able to implement the provisions for public school choice under Title I, Part A, Section 1116 of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolChoiceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason a student is not tested.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotTested', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of recognition given to the student for accomplishments in a co-curricular, or extra-curricular activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityRecognitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the school was restructured, transformed or otherwise changed as a consequence of the state’s accountability system under ESEA or as a result of School Improvement Grants (SIG).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReconstitutedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRestructuringAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school received funds under Section 1003 of ESEA, as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementFunds', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of intervention used by the school under the School Improvement Grant (SIG).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSigInterventionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the improvement stage of the school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the level of the education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of education institution as classified by its primary focus. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A prescribed span of time when an education institution is open, instruction is provided, and students are under the direction and guidance of teachers and/or education institution administration. A session may be interrupted by one or more vacations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The concept describing the biological traits that distinguish the males and females of a species.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSex', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Section in a co-educational school where only male or only female students are permitted to take the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSingleSexClassStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason children who were in special education at the start of the reporting period were not in special education at the end of the reporting period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of test prepared and administered by an agency that is independent of any postsecondary education institution and is typically used for admissions purposes. Tests provide information about prospective students and their academic qualifications relative to a national sample.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStandardizedAdmissionTest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The abbreviation for the state (within the United States) or outlying area in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefState', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Classification of a person enrolling in credit-granting courses at a postsecondary institution since completing high school (or its equivalent) as either an undergraduate or graduate student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsStudentLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of related or ancillary services offered or provided to a person or a group of persons within the formal educational system or by an outside agency which provides non-instructional services to support the general welfare of students. This includes physical and emotional health, the ability to select an appropriate course of study, admission to appropriate educational programs, and the ability to adjust to and remain in school through the completion of programs. In serving a student with an identified disability, related services include developmental, corrective, or supportive services required to ensure that the person benefits from special education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the pre-determined criteria for granting the teaching credential that a person holds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialBasis', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the category of a legal document giving authorization to perform teaching assignment services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of communication number listed for a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of communication number listed for a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An access mode through which the intellectual content of a described learning resource or adaptation is communicated; if adaptations for the resource are known, the access modes of those adaptations are not included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessModeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Specifies the format for a learning resource that is a book. Other options may be considered for inclusion in the option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceBookFormatType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies a single input method that is sufficient to control the described learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceControlFlexibilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The media or file subtype of the digital resource being based on the Media Types and Subtypes, formerly known as MIME types, defined by the Internet Assigned Numbers Authority (IANA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaSubType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The media or file type of the digital resource being based on the media types defined by the Internet Assigned Numbers Authority (AINA) at http://www.iana.org/assignments/media-types.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Accessible content features included with the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceMediaFeatureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of physical media on which the Learning Resource is delivered or available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourcePhysicalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'When the Competency Definition is used as a node in a learning map, this element supports alternative pathways based on a learner''s accessibility profile. The type selected indicates which accessibility profile the node is designed to address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefNodeAccessibilityProfile', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates if the competency described in the Competency Definition Statement can be tested using one or more assessment items.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefTestabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A taxonomy system for coding postsecondary courses in NCES research studies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNCESCollegeCourseMapCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of audience for the professional development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDAudienceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which a session is delivered', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDDeliveryMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The purposes for which an activity is approved.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityApprovedPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credit awarded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the level of a professional development activity on the beginner to advanced continuum.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The indication of the type of professional development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The current status of a professional development session', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDSessionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary setting or medium of professional development delivery.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDInstructionalDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'These codes are for recording revenue and other receivables by source. Major revenue categories have codes ending in 00 and are further subdivided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountRevenueCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The outcome of the referral.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReferralOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A categorization of the audience for which the professional development activity is intended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityTargetAudience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method of delivery of technical assistance received/provided', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceDeliveryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of technical assistance provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work-based learning opportunity a student participated in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWorkbasedLearningOpportunityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of an individualized services plan for a specified reporting period or on a specified date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAIEPStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The point in time for which the result is used for an outcome measure.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutcomeTimePoint', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which the services will be provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMethodOfServiceDelivery', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The course''s level of rigor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended major subject area of the education course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseSubjectArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The frequency that a service is planned to be provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceFrequency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reasons for the delay of a transition conference.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReasonDelayTransitionConf', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of measurement for the amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityTimeMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of scoring a person''s response to an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseScoreStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The completion and scoring status for an instance of a person taking an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentRegistrationCompletionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The data type of the assessment result score value.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultDataType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates the purpose for which this assessment score instance was recorded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This classification permits expenditures to be segregated by instructional level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLevelOfInstructionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A Uniform Resource Locator (URL) that identifies the conditions that govern the user’s ability to access a learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessRightsUrl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of entity, organization or person, that authored the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAuthorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary type of interaction, synchronous or asynchronous, defined for the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student’s parent or guardian is on Active Duty, in the National Guard, or in the Reserve components of the United States military services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryConnectedStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is currently serving on Active Duty, in the National Guard, or in the Reserve components of the United States military services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryActiveStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is a veteran who served on Active Duty, in the National Guard, or in the Reserve components of the United States military services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of consideration given a type of admission criteria used at an institution during the selection process.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of admission consideration used at an institution during the selection process.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The event/action that results in a billable action.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBillableBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of a student''s referral to or placement into developmental education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationReferralStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of developmental education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a individual requested a Family Education Rights and Privacy Act (FERPA) block to withhold the release of the person''s directory information.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDirectoryInformationBlockStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title/role of employment, official status, or rank of education staff', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEducationStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLocalRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of service provided to a child.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' Funds that originate at the State, and not from a federal or local source, that contribute to EL program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELStateRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the core knowledge expertise of a trainer of a professional development experience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELTrainerCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which the formal education is verified.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEducationVerificationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is receiving Veteran''s benefits.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Veteran''s benefits a person is receiving.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level describing the concentration of study for a postsecondary program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSProgramLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The circumstances under which the student exited from enrollment in a postsecondary institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A billable basis which defines payment. This is how state agencies/programs move funding to the local provider/agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReimbursementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The individual well child visit scheduled according to the AAP recommended periodicity schedule.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScheduledWellChildScreening', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether the student has transferred to another institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferOutIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The trimester of pregnancy in which a child''s mother began receiving prenatal health care.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTrimesterWhenPrenatalCareBegan', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason for the termination of the employment relationship.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Non domestic residence in which the early learning setting is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunityBasedType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title/role of employment, official status, or rank of early learning service professionals', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceProfessionalStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The code for the specific language or dialect that a person uses to communicate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6393Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code for a specific language family, which supplements the language groups and families in the ISO 639-2 Language Code.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6395LanguageFamily', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A branch of the U.S. Military applicable for specifying more details when using Military Connected Student Indicator, Military Active Student Indicator, Military Veteran Student Indicator, and Military Enlistment After Exit elements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryBranch', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Lumina Foundation''s Degree Qualifications Profile offers reference points for what students should know and be able to do upon completion of associate, bachelor''s and master''s degrees – in any field of study. The DQP Categories of Learning provide a profile of what degrees mean within which specific proficiencies may be defined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDQPCategoriesOfLearning', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of organization that is a separate legal entity that 1) contracts with one or more charter schools to manage, operate, and oversee the charter schools; or 2) holds a charter, or charters, to operate multiple charter schools.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolManagementOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category under which a person under 3 years of age is eligible for early intervention services under IDEA Part C.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAPartCEligibilityCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTribalAffiliation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Prerequisite conditions for earning an academic award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardPrerequisiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPESCAwardLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS financial position classification used by degree-granting public institutions using GASB Reporting Standards for reporting the assets, liabilities, and net position in a manner consistent with the Statement of Net Position in the General Purpose Financial Statements (GPFS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS financial position classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting the assets, liabilities, and net assets in a manner consistent with the Statement of Financial Position in the General Purpose Financial Statements (GPFS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue classification used by degree-granting public institutions using GASB Reporting Standards for reporting revenues and other additions by source including all operating revenues, nonoperating revenues, and other additions for the reporting period. This includes unrestricted and restricted revenues and additions, whether expendable or nonexpendable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues and investment return by source in a manner consistent with the definitions from the National Association of College and University Business Officers (NACUBO) Financial Accounting and Reporting Manual for Higher Education (FARM).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue restriction classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues by restriction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenueRestriction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A natural expense classification is a method of grouping expenses according to the type of costs that are incurred. The classifications tell what was purchased rather than why an expense was incurred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSNaturalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue category used by degree-granting public institutions using GASB Reporting Standards for the reporting of resources received for supporting student scholarships and fellowships.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue category used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for the reporting of resources received for supporting student grant aid.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the functional expense category where the institution allocates its intercollegiate athletics expenses.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSIntercollegiateAthleticsExpenses', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Method of reporting Pell Grants in IPEDS by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBPellGrantTransactions', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Frequency by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportSchedule', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of evidence appropriate for assessing achievement of a goal or short-term objective.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Legal category for an IEP annual goal or short-term objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPGoalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A method by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000439', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMedicalAlertIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000440', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectBased', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000447', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIILanguageInstructionProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000449', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToEducatingHomeless', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000451', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaFundsTransferType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000463', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000466', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLiteracyAssessment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000486', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRlisProgramUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000487', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIProfessionalDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplinaryActionTaken', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramDayLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000506', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentReporterType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000509', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehavior', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000510', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000515', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentTimeDescriptionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000524', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000530', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000531', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000532', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000535', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentSchoolAge', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000536', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIAccountability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000537', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000538', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodOfCwd', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000539', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemovalReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000540', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotCompleting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000541', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemoval', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000545', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000548', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramFundingAllocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000555', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodFirearms', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisciplineMethodFirearm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000557', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFirearmType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentEC', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEnvironmentEL', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000560', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReapAlternativeFundingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000561', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000564', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationAgeGroupTaught', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000566', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnologyLiteracyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000571', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreAndPostTestIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000572', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPretestOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000573', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000585', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStatePovertyDesignation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000586', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000587', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffPerformanceLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000599', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAbsentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000600', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPresentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000601', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000603', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCalendarEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000605', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContentStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000609', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineLengthDifferenceReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000618', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000620', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000621', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000622', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefClassroomPositionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000624', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaveEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000627', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehaviorSecondary', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000634', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOtherNameType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000648', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingAssignmentRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000652', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000698', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyFrameworkPublicationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000710', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCurriculumFrameworkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaDistinctionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000716', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramSponsorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000727', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicTermDesignator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000728', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDistanceEducationCourseEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000729', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPredominantCalendarSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000731', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIpedsOccupationalCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000735', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffContractLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFullTimeStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000737', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentContractType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000738', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTenureSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000739', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffFacultyTenure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000740', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicRank', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000741', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000743', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateAssistantIpedsCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000746', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000756', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmittedStudent', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000758', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGradePointAverageDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationTestCompany', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000768', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepCompleterStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000769', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAltRouteToCertificationOrLicensure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000770', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCriticalTeacherShortageCandidate', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000771', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSupervisedClinicalExperience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000773', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationCredentialExam', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000774', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationExamScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000779', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtIntake', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtPosttest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000782', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeSpecialProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalTechnicalCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000784', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAePostsecondaryTransitionAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000786', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000798', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageCollectionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000806', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentAssociateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalDevelopmentFinancialSupport', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000813', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHigherEducationInstitutionAccreditationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000819', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELGroupSizeStandardMet', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000828', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramLicenseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000829', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodProgramEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000834', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPopulationServed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000857', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunicationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000862', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERSRuralUrbanContinuumCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000869', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefAssociationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000875', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBloomsTaxonomyDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000876', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMultipleIntelligenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000877', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencySetCompletionCriteria', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000879', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceCompetencyAlignmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000907', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTextComplexitySystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000923', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceIntendedEndUserRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000934', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000942', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000945', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityMaximumTimeAllowedUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000949', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityAddToGradeBookFlag', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000976', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEnrollmentStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000982', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccreditationAgency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000984', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFacilityLicensingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000987', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedAfterExit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000994', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERAdministrativeDataSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000997', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWfProgramParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001000', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentELDevelopmentalDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001002', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceEducationalUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001014', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSubtestIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001018', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Award Level Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Honors Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicHonorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adequate Yearly Progress Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAypStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Administrative Funding Control', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdministrativeFundingControl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Alternative School Focus Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAlternativeSchoolFocus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Academic Subject', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicSubject', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Participation Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentParticipationIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Purpose', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Assessment Reporting Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionAssessmentReportingMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Campus Residency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Carnegie Basic Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCarnegieBasicClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Use', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipVersion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Control of Institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefControlOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Corrective Action Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectiveActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Country Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCountry', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Units', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Grade Point Average Applicability', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseGpaApplicability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Characteristic', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelCharacteristic', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Repeat Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseRepeatCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credit Unit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditTypeEarned', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career and Technical Education Graduation Rate Inclusion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteGraduationRateInclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Attendance Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dependency Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDependencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'K12 Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12StaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Electronic Mail Address Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmailType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Elementary-Middle Additional Indicator Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefElementaryMiddleAdditional', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Eligibility Status for School Food Service Programs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'End of Term Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEndOfTermStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Enrollment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Enrollment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Entry Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cohort Exclusion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCohortExclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit or Withdrawal Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit or Withdrawal Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Award Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Weighted Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGpaWeightedIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Gun Free Schools Act Reporting Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGunFreeSchoolsActReportingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Diploma Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Graduation Rate Indicator Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolGraduationRateIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Homeless Primary Nighttime Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHomelessNighttimeResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Increased Learning Time Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncreasedLearningTimeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Institution Telephone Number Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstitutionTelephoneType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Activity Hours Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalActivityHours', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Integrated Technology Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIntegratedTechnologyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Level of Institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLevelOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Magnet or Special Program Emphasis School', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMagnetSpecialProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Services Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Session Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Staff Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Neglected or Delinquent Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeglectedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Visa Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Normal Length of Time for Completion Units', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTimeForCompletionUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Paraprofessional Qualification Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParaprofessionalQualification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Participation Status for Math', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParticipationStatusAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Prekindergarten Eligibility', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrekindergartenEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Prekindergarten Eligible Ages for Non-IDEA Students', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreKEligibleAgesNonIDEA', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Disability Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Educational Job Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalEducationJobClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proficiency Target Status for Math', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyTargetAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Length Hours Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramLengthHoursType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Public School Choice Implementation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolChoiceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reason Not Tested', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotTested', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Recognition for Participation or Performance in an Activity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityRecognitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reconstituted Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReconstitutedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Restructuring Action', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRestructuringAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Improvement Funds Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementFunds', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Improvement Grant Intervention Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSigInterventionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Sex', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSex', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Single Sex Class Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSingleSexClassStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Exit Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Standardized Admission Test Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStandardizedAdmissionTest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Abbreviation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefState', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsStudentLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Credential Basis', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialBasis', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Credential Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Instructional Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIInstructionalServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Program Staff Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I School Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleISchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Support Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12LeaTitleISupportService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Transfer-ready', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferReady', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tuition Residency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'United States Citizenship Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefUSCitizenshipStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Eligibility Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proof of Residency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProofOfResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Vision Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisionScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hearing Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHearingScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dental Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Developmental Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Developmental Evaluation Finding', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEvaluationFinding', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Language Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLanguageUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'ISO 639-2 Language Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6392Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Services Received', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Services Received', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Participation in School Food Service Programs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Participation in School Food Service Programs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolFoodServiceProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Source of Family Income', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFamilyIncomeSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Income Calculation Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncomeCalculationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Insurance Coverage', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHealthInsuranceCoverage', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dental Insurance Coverage Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalInsuranceCoverageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Level of Specialization in Early Learning', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLevelOfSpecialization', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Degree or Certificate Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDegreeOrCertificateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Credential', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodCredential', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'License Exempt', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLicenseExempt', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Option Variation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceOption', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Setting', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnvironmentSetting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Rating and Improvement System Participation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefQrisParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Type for Learner or Family', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment in Postsecondary Award Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Award Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Mechanical System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Vertical Transportation System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingVerticalTransportationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Administrative Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAdministrativeSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Art Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingArtSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Basic Classroom Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingBasicClassroomDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Career-Technical Education Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCareerTechEducationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Circulation Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCirculationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Environmental or Energy Performance Rating Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnvOrEnergyPerformanceRatingCat', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Furnishings Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFurnishingsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Food Service Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFoodServiceSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Indoor Athletic or Physical Education Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingIndoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Library or Media Center Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingLibMediaCenterSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Operations or Maintenance Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOperationsOrMaintSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Outdoor Athletic or Physical Education Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Outdoor or Non-athletic Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorOrNonathleticSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Performing Arts Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPerformingArtsSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building School Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSchoolDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Science Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingScienceSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Site Outdoor Area Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteOutdoorAreaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Space Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpaceDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Special Education Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpecEdSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Student Support Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingStudentSupportSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Assembly Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAssemblySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Full Service Kitchen Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFullServiceKitchenType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Instructional Space Factor Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingInstructionalSpaceFactorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Joint Use Rationale Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseRationaleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Joint Use Scheduling Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseSchedulingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Joint User Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUserType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Community Use Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommunityUseSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Site Use Restrictions Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSiteUseRestrictionsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Enrollment Access Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentEnrollmentAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Audit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityAuditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Charter School Realty Access Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCharterSchoolRealtyAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Cleaning Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCleaningStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Compliance Agency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceAgencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Energy Conservation Measure Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergyConservationMeasureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Energy Source Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergySourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Management Emergency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMgmtEmergencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Capital Program Management Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityCapitalProgramMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Operations Management Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityOperationsMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Hazardous Materials or Condition Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityHazardousMaterialsOrCondType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Joint Development Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityJointDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Maintenance Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMaintStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Naturally Occurring Hazard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityNaturallyOccurringHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Utility Provider Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityProviderType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Utility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Plan Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Mandate Authority Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMandateAuthorityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Financing Fee Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFinancingFeeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Lease Amount Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseAmountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Lease Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Mortgage Interest Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Mortgage Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Campus Facility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Relationship Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationRelationship', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'CTDL Audience Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLAudienceLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Agent Role Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAgentRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Progress Achieving English Language Proficiency Indicator Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Additional Targeted Support and Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Comprehensive Support and Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefComprehensiveSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Entry Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramEntryReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Targeted Support and Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number Listed Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberListedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Program Exit Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdultEducationProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Barrier to Internet Access In Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToInternetAccessInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDataCollectionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Academic or Career and Technical Outcome Exit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Academic or Career and Technical Outcome Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Teacher Inexperienced Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEDFactsTeacherInexperiencedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Teacher Out of Field Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutOfFieldStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Access Type In Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccessTypeInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Performance In Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetPerformanceInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Dependents Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNumberOfDependentsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Personal Information Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Learning Device Access', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Learning Device Away From School', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAwayFromSchool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Learning Device Provider', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceProvider', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Race', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRace', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Creator Entity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusCreatorEntity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Role', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Source Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffCompensationSourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student School Affiliation State Defined Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSchoolAffiliationStateDefinedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'WIOA Barriers to Employment', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWIOABarrierstoEmployment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22293', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDoctoralExamsRequiredCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22294', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFederalFundingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationMonitoringNotifications', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPurposeOfMonitoringVisit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22302', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOtherFederalFundingSources', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22303', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOutcomeMeasurementLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProfessionalDevelopmentTopicArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22306', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibilityStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22309', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedPriorToEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatusWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22314', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountFundClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22316', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountProgramCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountBalanceSheetCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureFunctionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22322', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureObjectCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22323', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyOfService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22324', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateOrDoctoralExamResultsStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22337', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentMultipleOffenseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22339', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPerpetratorInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22341', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPersonRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22352', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramPlannedServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12EndOfCourseRequirement', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22358', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessAPIType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22359', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22360', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessModeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22363', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceBookFormatType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22364', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceControlFlexibilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22365', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaSubType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22366', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22368', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceMediaFeatureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22370', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourcePhysicalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22377', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefNodeAccessibilityProfile', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22380', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefTestabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22383', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNCESCollegeCourseMapCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22399', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDAudienceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22401', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDDeliveryMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22403', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityApprovedPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22406', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22409', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22412', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22428', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDSessionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22429', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDInstructionalDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22440', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountRevenueCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22454', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReferralOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22464', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityTargetAudience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22466', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceDeliveryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22467', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWorkbasedLearningOpportunityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22473', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAIEPStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22475', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutcomeTimePoint', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22482', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMethodOfServiceDelivery', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseSubjectArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22492', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceFrequency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22494', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReasonDelayTransitionConf', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22503', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityTimeMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22513', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseScoreStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22516', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentRegistrationCompletionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultDataType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22523', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22531', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLevelOfInstructionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22537', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessRightsUrl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22540', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAuthorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22555', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryConnectedStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryActiveStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22557', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22561', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBillableBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22567', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationReferralStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22568', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22569', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDirectoryInformationBlockStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22581', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEducationStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22582', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLocalRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22583', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22584', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELStateRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22585', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELTrainerCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22586', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEducationVerificationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22595', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSProgramLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22601', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReimbursementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScheduledWellChildScreening', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferOutIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTrimesterWhenPrenatalCareBegan', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22613', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22614', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunityBasedType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceProfessionalStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22618', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6393Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22619', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6395LanguageFamily', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22621', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryBranch', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22622', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDQPCategoriesOfLearning', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22631', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolManagementOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22637', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAPartCEligibilityCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22638', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTribalAffiliation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22640', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22647', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardPrerequisiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22649', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPESCAwardLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22651', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22652', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22653', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22654', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22655', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenueRestriction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22656', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22657', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSNaturalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22658', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22659', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22660', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSIntercollegiateAthleticsExpenses', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22661', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBPellGrantTransactions', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A meaningful raw score, derived score, or statistical expression of the performance of a person on an assessment. The type of result is indicated by the Assessment Score Metric Type element. The results can be expressed as a number, percentile, range, level, etc. The score relates to all scored items or a sub test scoring one aspect of performance on the test. This value may or may not correspond to one or more Performance Levels.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Where a specific course lies when it is part of a consecutive sequence of courses. This element should be interpreted as "part ''n'' of ''m'' parts.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SCEDSequenceOfCourse' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic session for which the data are recorded and applicable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Designator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic session for which the data are recorded and applicable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'SessionDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A prescribed span of time when an education institution is open, instruction is provided, and students are under the direction and guidance of teachers and/or education institution administration. A session may be interrupted by one or more vacations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The concept describing the biological traits that distinguish the males and females of a species.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefSexId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Section in a co-educational school where only male or only female students are permitted to take the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefSingleSexClassStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason children who were in special education at the start of the reporting period were not in special education at the end of the reporting period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a paraprofessional is employed or contracted to work with children with disabilities who are ages 3 through 21.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a paraprofessional is employed or contracted to work with children with disabilities who are ages 3 through 21.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a related services person is employed or contracted to work with children with disabilities who are ages 3 through 21.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a related services person is employed or contracted to work with children with disabilities who are ages 3 through 21.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day a child with disabilities (IDEA) ages 14 through 21 exited special education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationServicesExitDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a teacher is employed or contracted to work with children with disabilities who are ages 3 through 21.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a teacher is employed or contracted to work with children with disabilities who are ages 3 through 21.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The quantitative score on a standardized admission test reported to a postsecondary institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'StandardizedAdmissionTestScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of test prepared and administered by an agency that is independent of any postsecondary education institution and is typically used for admissions purposes. Tests provide information about prospective students and their academic qualifications relative to a national sample.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RefStandardizedAdmissionTestId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The abbreviation for the state (within the United States) or outlying area in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An person''s permanent address as determined by such evidence as a driver''s license or voter registration. For entering freshmen, state of residence may be the legal state of residence of a parent or guardian.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefStateOfResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The street number and street name or post office box number of an address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The street number and street name or post office box number of an address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of school days during the regular school year (plus summer, if applicable, if part of implementing the restart, transformation, or turnaround model) the student attended school divided by the maximum number of days the student could have attended school during the regular school year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'AttendanceRate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Classification of a person enrolling in credit-granting courses at a postsecondary institution since completing high school (or its equivalent) as either an undergraduate or graduate student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsStudentLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of related or ancillary services offered or provided to a person or a group of persons within the formal educational system or by an outside agency which provides non-instructional services to support the general welfare of students. This includes physical and emotional health, the ability to select an appropriate course of study, admission to appropriate educational programs, and the ability to adjust to and remain in school through the completion of programs. In serving a student with an identified disability, related services include developmental, corrective, or supportive services required to ensure that the person benefits from special education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of related or ancillary services offered or provided to a person or a group of persons within the formal educational system or by an outside agency which provides non-instructional services to support the general welfare of students. This includes physical and emotional health, the ability to select an appropriate course of study, admission to appropriate educational programs, and the ability to adjust to and remain in school through the completion of programs. In serving a student with an identified disability, related services include developmental, corrective, or supportive services required to ensure that the person benefits from special education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of related or ancillary services offered or provided to a person or a group of persons within the formal educational system or by an outside agency which provides non-instructional services to support the general welfare of students. This includes physical and emotional health, the ability to select an appropriate course of study, admission to appropriate educational programs, and the ability to adjust to and remain in school through the completion of programs. In serving a student with an identified disability, related services include developmental, corrective, or supportive services required to ensure that the person benefits from special education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of the subtest (e.g., vocabulary, measurement, or geometry).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name or title of the subtest.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the pre-determined criteria for granting the teaching credential that a person holds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the pre-determined criteria for granting the teaching credential that a person holds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the category of a legal document giving authorization to perform teaching assignment services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the category of a legal document giving authorization to perform teaching assignment services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The telephone number including the area code, and extension, if applicable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The telephone number including the area code, and extension, if applicable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of communication number listed for a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefPersonTelephoneNumberTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is participating in and served by programs under Title I, Part A of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RefTitleIIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of instructional services provided to students in ESEA Title I programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIInstructionalServicesId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of employment, official status, or rank for staff working in a Title I program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of employment, official status, or rank for staff working in a Title I program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Title I program offered in the school or district.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a school is designated under state and federal regulations as being eligible for participation in programs authorized by Title I of ESEA as amended and whether it has a Title I program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefTitleISchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of support services provided to students in Title I programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RefK12LeaTitleISupportServiceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person who receives Title IV aid. Title IV aid includes grant aid, work study aid, and loan aid such as: Federal Pell Grant, Federal Supplemental Educational Opportunity Grant (FSEOG), Teacher Education Assistance for College and Higher Education (TEACH) Grant, Federal Work-Study, Federal Perkins Loan, Subsidized Direct or FFEL Stafford Loan, and Unsubsidized Direct or FFEL Stafford Loan. Title IV aid specifications are defined by the instructions for the IPEDS Student Financial Aid survey.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'TitleIVParticipantAndRecipient' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Sum of retirement, health, and all other benefits, or total benefits paid by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider’s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of students in the student''s high school graduating class.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'TotalNumberInClass' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of students in the student''s high school graduating class.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolGraduatingClassSize' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Total annualized salary of staff at the specific school/program indicated on the record in the school/program year specified on the record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalSalary' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person who has successfully completed a transfer-preparatory program as defined by the state or by the institution if no official state definition exists.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefTransferReadyId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s residency status for tuition purposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefTuitionResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether or not the person is a US citizen.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefUSCitizenshipStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of years prior to this job that a person has previously held a teaching position in one or more education institutions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Category under which the person is eligible for an early childhood program or service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An accepted form of proof of residency in the district/county/other locality.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An accepted form of proof of residency in the district/county/other locality.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of an immunization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'ImmunizationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that an immunization is specifically required by an organization or governing body.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Status of an examination used to measure a person''s ability to see.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefVisionScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Status of an examination used to measure a person''s ability to perceive sounds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHearingScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The condition of a person''s mouth or oral cavity; more specifically the condition of the hard tissues (i.e., teeth and jaws) and the soft tissues (i.e., gums, tongue, lips, palate, mouth floor, and inner cheeks). Good oral health denotes the absence of clinically manifested disease or abnormalities of the oral cavity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The weight of a child at birth in pounds and ounces.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeightAtBirth' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of weeks during gestational period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeeksOfGestation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Child developmental delay/disability determined by procedure used by appropriate qualified personnel.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEvaluationFindingId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the function and context in which a person uses a language to communicate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The code for the specific language or dialect that a person uses to communicate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type of program developed for a student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of service that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesReceivedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of service that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefServicesId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which an individual application is received by the organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which an individual application is received by the organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a person is considered officially enrolled in the program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'EnrollmentDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student''s participation in free, reduced price, full price breakfast, lunch, snack, supper, and milk programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student''s participation in free, reduced price, full price breakfast, lunch, snack, supper, and milk programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RefSchoolFoodServiceProgramId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a person has legal custody of a child.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'CustodialRelationshipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Total number of persons in immediate family. Family means for the purposes of the regulations in this part all persons: (i) Living in the same household who are: (A) Supported by the income of the parent(s) or guardian(s) of the child enrolling or participating in the program; or (B) Related to the child by blood, marriage, or adoption; or (ii) Related to the child enrolling or participating in the program as parents or siblings, by blood, marriage, or adoption.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInFamily' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Total number of persons residing in the same household.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInHousehold' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student was served by Title I, Part D, Subpart 1 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'AchievementIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student was served by Title I, Part D, Subpart 2 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'OutcomeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Staff member who has a Teacher of Record responsibility for a Class Section based upon the state''s definition of Teacher of Record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'TeacherOfRecord' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role that the Staff Member has been assigned for a Class Section. (A teacher may have the lead responsibility for one section and serve a supporting role for another section of the same course.)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role that the Staff Member has been assigned for a Class Section. (A teacher may have the lead responsibility for one section and serve a supporting role for another section of the same course.)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A percentage used to weight the educator''s assigned responsibility for student learning in a Class Section, particularly when more than one educator is assigned to the class section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A percentage used to weight the educator''s assigned responsibility for student learning in a Class Section, particularly when more than one educator is assigned to the class section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The process by which a student enters a school (Course Section) during a given academic session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEntryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of the first day after the date of a person''s last enrollment in a course section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'ExitWithdrawalDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The circumstances under which the student exited from membership in a course section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of interscholastic sports in which only male students participate. Sports include distinct sports such as football, basketball, soccer but not intramural sports or cheerleading.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of interscholastic sports in which only female students participate. Sports include distinct sports such as football, basketball, soccer but not intramural sports or cheerleading.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of interscholastic teams in which only male students participate. Teams include each competitive level team in each sport, such as freshman team, junior varsity team, and varsity team but not intramural sports or cheerleading.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of interscholastic teams in which only female students participate. Teams include each competitive level team in each sport, such as freshman team, junior varsity team, and varsity team but not intramural sports or cheerleading.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of male students who participated on an interscholastic team. A student should be counted once for each team he was on.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsMale' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of female students who participated on an interscholastic team. A student should be counted once for each team she was on.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsFemale' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The globally unique identifier (GUID) issued by the publisher of the competency framework that uniquely identifies the definition in the hierarchy of competency definitions using a RFC 4122 compliant 32-character hexadecimal string, such as 21EC2020-3AEA-1069-A2DD-08002B30309D.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The text of the statement. The textual content that either describes a specific competency or describes a less granular group of competencies within the taxonomy of the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The class of statement in the structure of statements in the Competency Framework according to a controlled vocabulary, specified as a textual label.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A human-referenceable code designated by the publisher to identify the item in the hierarchy of competency definitions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An unambiguous reference to the competency framework using a network-resolvable URI.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'URI' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the revision of the competency framework as a version number or date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The person or organization chiefly responsible for the intellectual content of the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A textual description of the scope and contents of the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The publication status of the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefCompetencyFrameworkPublicationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A legal, quasi-legal, organizational or institutional domain of the entity mandating the use of the statement--e.g., California.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Jurisdiction' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day the competency framework was adopted by the jurisdiction in which it was intended to apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day the competency framework was deprecated/replaced by the jurisdiction in which it was intended to apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The topic or academic subject of the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Subject' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of a vision screening.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'VisionScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator (URL) for the unique address of a Web page.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'Website' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of a hearing screening.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HearingScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of a dental screening', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'DentalScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of points possible for the assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum number of points possible for the assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A psychometric measure provided for an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category of charter school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the student cohort.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the standard curriculum used for this course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the standard curriculum used for this course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaDistinctionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique identifier of an immediate prerequisite Competency Definition, a competency needed prior to learning this one. (Some items may have no prerequisites while others may have one or more prerequisites. This should only be used to represent the immediate predecessors in a competency-based pathway, i.e. not prerequisites of prerequisites.)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'AssociatedEntityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of organization providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefProgramSponsorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to an assessment performance level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A label representing the performance level appropriate for use on a report.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Label' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the rules to produce a student test/subtest score from for a grouping of student item scores.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Rules' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The score given to a person''s response to an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The education level, grade level or primary instructional level at which a Competency Definition is intended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic year for which the data apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AcademicYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic term for which the data apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic term for which the data apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual''s enrollment in a course or courses in which the instructional content is delivered exclusively via distance education. Distance education is education that uses one or more technologies to deliver instruction to students who are separated from the instructor and to support regular and substantive interaction between the students and the instructor synchronously or asynchronously. Technologies used for instruction may include: Internet; one-way and two-way transmissions through open broadcasts, closed circuit, cable, microwave, broadband lines, fiber optics, satellite or wireless communication devices; audio conferencing; and video cassette, DVDs, and CD-ROMs, if the cassette, DVDs, and CD-ROMs are used in a course in conjunction with the technologies listed above.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDistanceEducationCourseEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which an institution structures most of its courses for the academic year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which an institution structures most of its courses for the academic year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A Bureau of Labor Statistics coding system for classifying occupations by work performed and, in some cases, on the skills, education and training needed to perform the work at a competent level. See https://www.bls.gov/soc/2018/major_groups.htm.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'StandardOccupationalClassification' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report employees.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report employees.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Staff whose primary function/occupational activity is primarily instruction or instruction combined with research and/or public service. Does not include medical school staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'InstructionalStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Staff employed by or employees working in the medical school component of a postsecondary institution or in a free standing medical school. Does not include staff employed by or employees working strictly in a hospital associated with a medical school or those who work in health or allied health schools or departments such as dentistry, veterinary medicine, nursing or dental hygiene.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'MedicalSchoolStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Persons identified by the institution as such and typically those whose initial assignments are made for the purpose of conducting instruction, research or public service as a principal activity (or activities). They may hold academic rank titles of professor, associate professor, assistant professor, instructor, lecturer or the equivalent of any of those academic ranks. Faculty may also include the chancellor/president, provost, vice provosts, deans, directors or the equivalent, as well as associate deans, assistant deans and executive officers of academic departments (chairpersons, heads or the equivalent) if their principal activity is instruction combined with research and/or public service. The designation as "faculty" is separate from the activities to which they may be currently assigned. For example, a newly appointed president of an institution may also be appointed as a faculty member. Graduate, instruction, and research assistants are not included in this category.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'FacultyStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The contracted teaching period for faculty.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The contracted teaching period for faculty.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an individual is employed for a standard number of hours (as determined by civil or organizational policies) in a week, month, or other period of time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an individual is employed for a standard number of hours (as determined by civil or organizational policies) in a week, month, or other period of time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of employment contract used by an institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of employment contract used by an institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether an institution has personnel positions that lead to consideration for tenure.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefTenureSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the type of faculty status a person has if, by institutional definition, a staff member has faculty status.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffFacultyTenureId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic rank of staff whose primary responsibility is instruction, research, and/or public service. Institutions without standard academic ranks should code staff whose primary responsibility is instruction, research, and/or public service as "No Academic Rank."', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefAcademicRankId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type(s) of instruction being delivered by staff whose primary responsibility is instruction. Instruction that is for "credit" can be applied toward the requirements for a postsecondary degree, diploma, certificate or other formal award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Graduate-level students employed on a part-time basis, not limited to, but often employed for the primary purpose of assisting in classroom or laboratory instruction or in the conduct of research. Graduate students having titles such as graduate assistant, teaching assistant, teaching associate, teaching fellow, or research assistant typically hold these positions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'GraduateAssistantStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report graduate assistants.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefGraduateAssistantIpedsCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total annual base contractual salary of a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total annual base contractual salary of a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The published tuition for first time, full-time undergraduate students (lower of in-district or in-state for public institutions). Tuition may be charged per term, per course, per credit or per program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'TuitionPublished' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The component for which tuition is being charged. It might be a time period (term, quarter, year, etc.) or it might be an entity of education (course, credit hour, etc.).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RefTuitionUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Fixed sum charged to persons for items not covered by tuition and required of such a large proportion of all students that the student who does not pay the charge is the exception.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RequiredStudentFees' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Specifies as part of an Assessment Personal Needs Profile the type of masks the user is able to create to cover portions of the question until needed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedMaskingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The text string that is to be displayed to the user as an expression of encouragement when Masking is specified as part of an Assessment Personal Needs Profile. It is left to the system to determine when to display this string.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementTextMessagingString' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The URI of the sound file that is to be played to the user as an expression of encouragement when Masking is specified as part of an Assessment Personal Needs Profile. It is left to the system to determine when to play this audio file.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementSoundFileUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the multiplier to be applied to the time limit to determine the total testing time allowed when Additional Testing Time is specified as part of an Assessment Personal Needs Profile. If the value is ‘unlimited’ then there is no time limit for the test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'AssessmentNeedTimeMultiplier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The color defined as part of an Assessment Personal Needs Profile to be used to highlight the point of line reader activity i.e. the line being read.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'LineReaderHighlightColor' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This is the preferred color for the overlay for screen enhancement defined as part of an Assessment Personal Needs Profile.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'OverlayColor' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This is the preferred Foreground color for screen enhancement defined as part of an Assessment Personal Needs Profile.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'ForegroundColor' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This is the preferred Background color for screen enhancement defined as part of an Assessment Personal Needs Profile.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'BackgroundColor' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the user preferences for white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedIncreasedWhitespacingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates rules about use of results based on Special Events before, during or after the test. The option set values are determined by the testing program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date set by the testing program when the test scores are published. For formative or classroom assessments, this will likely be the date when the scored the individual test. For summative assessments, this date is likely set for a group of assessments when the processing system releases the scores.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'ScorePublishDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the license/credential awarded by a given profession.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date an individual''s cardiopulmonary resuscitation (CPR) training certification expires.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CardiopulmonaryResuscitationCertification' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date an individual''s first aid training certification expires.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'FirstAidCertification' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which an individual begins a course, an education program or a staff development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which an individual completed a course, an education program or a staff development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' A specific response to an assessment item by the person being assessed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of address listed for an organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RefOrganizationLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to an assessment by a school, school system, a state, or other agency or entity. This may be the publisher identifier.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of instructional program in which an adult is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeInstructionalProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s reasons for attending an adult education class or program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefGoalsForAttendingAdultEducationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a person previously enrolled in adult education entered and began to receive instructional services or training at a postsecondary institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'PostsecondaryTransitionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The condition under which a person has agreed to serve as an employee.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the category of the adult education certification a person holds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefAeCertificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Total semester credits earned in early childhood regardless of whether credits are earned as part of an early childhood degree program, other degree program or outside of a degree program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalApprovedECCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the pitch of a speech synthesizer.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Pitch' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Complexity levels defined by the National Assessment of Educational Progress (NAEP 2005a Framework).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepMathComplexityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The language in which the assessment form is designed to be delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The language in which the assessment form is designed to be delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the Subtest was published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the source of the descriptive feedback that was given to a learner based on a scored/evaluated portion of an assessment. May indicate if this is teacher, scorer, or system generated feedback. Values for this attribute would be determined by the assessment program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedbackSource' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Describes special events that occur before during or after the assessment session that may impact use of results according to rules related to the Assessment Registration Testing Indicator.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Describes special events that occur before during or after the assessment session that may impact use of results according to rules related to the Assessment Registration Testing Indicator.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A network-resolvable Uniform Resource Locator (URL) pointing to the authoritative reference for the hierarchal parent of the competency definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Aspects of reading defined by the National Assessment of Educational Progress (NAEP 2005b Framework).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepAspectsOfReadingId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of need identified for a learner as part of an assessment need profile.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssessmentNeedType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Describes an issue related to the security of a testing instrument identified during a specific instance of delivering an assessment to a specific person during a specific time period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'These templates are described using the processing language defined in IMS Global APIP specification and are distributed (in XML form) along with it. Delivery engines that support generalized response processing do not need to implement special mechanisms to support them as a template file can be parsed directly while processing the assessment item that refers to it. This element provides the URL for the template.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingTemplateUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Response processing is the process by which the Delivery Engine assigns outcomes based on the learner''s responses. The outcomes may be used to provide feedback to the learner Feedback is either provided immediately following the end of the learner''s attempt or it is provided at some later time, perhaps as part of a summary report on the item session. The XML from the IMS Global APIP Specification would be included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Response declarations state what the response variables include. The response declaration may assign an optional correct response. The XML from the IMS Global APIP Specification would be included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Outcome variables are declared by outcome declarations. Their value is set either from a default given in the declaration itself or by a responseRule during response processing. The XML from the IMS Global APIP Specification would be included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'OutcomeDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Template declarations declare item variables that are to be used specifically for the purposes of cloning items. They can have their value set only during template processing. They are referred to within the item body in order to individualize the clone and possibly also within the response Processing rules if the cloning process affects the way the item is scored. The XML from the IMS Global APIP Specification would be included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Template processing consists of one or more template rules that are followed by the cloning engine or delivery system in order to assign values to the template variables. Template processing is identical in form to responseProcessing except that the purpose is to assign values to template variables, not outcome variables. The XML from the IMS Global APIP Specification would be included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Modal feedback is shown to the candidate directly following response processing. The value of an outcome variable is used in conjunction with the showHide and identifier attributes to determine whether or not the feedback is shown in a similar way to feedbackElement. The XML from the IMS Global APIP Specification would be included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ModalFeedbackXml' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The item body contains the text, graphics, media objects, and interactions that describe the item''s content and information about how it is structured. The body is presented by combining it with stylesheet information, either explicitly or implicitly using the default style rules of the delivery or authoring system. This element contains the appropriate XML from the IMS Global APIP Specification defining the various item body interactions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ItemBodyXml' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This indicator determines whether an assessment item is an adaptive item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This indicator determines whether an assessment item is an adaptive item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the mark is a final mark the learner has earned for the course section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'FinalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' A short description of the Learning Resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name(s) of the person(s) or organization(s) holding the copyright for the Learning Resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightHolderName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The copyright year for the Learning Resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The significant topicality of the Learning Resource using free-text keywords and phrases.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the scaling system used to specify the Peer Rating.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual score, rating or level assigned to a Learning Resource by a person within the boundaries set by a Peer Rating System that may be aggregated to derive an overall score for the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The maximum value allowed by the Peer Rating System.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum value allowed by the Peer Rating System.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The optimum value allowed by the Peer Rating System. The optimum or best rating may be the maximum value, the minimum value, or something in between.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'OptimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' A list of product tokens (keywords) with optional comments that identifies the client hardware and software with which the assessment was delivered to the student during the assessment session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'PlatformUserAgent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator (URL) for the unique address of a web page describing the competency-based completion criteria for the qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'CriteriaUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum value in the range of text complexity applicable to a language competency definition using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum value in the range of text complexity applicable to a language competency definition using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of the accommodation when ''Accommodation Type'' is set to ''Other''.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'OtherDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a childcare, early education, or early learning program, school, institution, program, or course section focuses primarily on instruction in which children and teachers are separated by time and/or location and interact through the use of computers and/or telecommunications technology.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a childcare, early education, or early learning program, school, institution, program, or course section focuses primarily on instruction in which children and teachers are separated by time and/or location and interact through the use of computers and/or telecommunications technology.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary setting or medium of delivery for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique identifier for the test attempt assigned by the delivery system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestAttemptIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the qualification, achievement, personal or organizational quality, or aspect of an identity was conferred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date, if any, on which the qualification, achievement, personal or organizational quality, or aspect of an identity expires or requires renewal.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the goal becomes active.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the goal expires or has been achieved.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the Peer Rating was entered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of a provider that can authenticate the identity of an person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Identifier (URI) of the Authentication Identity Provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderUri' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The login identifier for the person for the specified Authentication Identity Provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'LoginIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the an associated person may begin to use the specified Authentication Identity Provider to authenticate identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time at which a professional development session ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method used to evaluate a professional development session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationMethod' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The score or rating used to determine if a professional development session was successful.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day on which any certificate awarded as part of a professional development activity expires.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique, non-duplicated, identification number assigned by the registry data system for a session of a particular professional development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SessionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of a location where a professional development session will be held.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'LocationName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day a professional development session begins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time at which a professional development session begins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The current status of a professional development session', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDSessionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary setting or medium of professional development delivery.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDInstructionalDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum score option for the QRIS or other quality initiative.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum score option for the QRIS or other quality initiative.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The score, rating or level received by a program for its Quality Rating and Improvement System (QRIS) or other quality initiative.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ScoreLevel' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Site participates in a quality improvement initiative component other than QRIS.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The quality initiative end date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The quality initiative start date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'These codes are for recording revenue and other receivables by source. Major revenue categories have codes ending in 00 and are further subdivided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A textual label for category by which Rubric Criterion may be grouped.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Text describing a criterion that must be met to demonstrate quality for a product, process, or performance task.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Text describing one or more benchmarks that must be met to achieve a degree of achievement on a product, process, or performance task.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Pre-defined feedback text to be relayed to the person or organization being evaluated. This may include guidance and suggestions for improvement or development.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Feedback' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A numeric value representing the level''s position in the list of levels defined for the Rubric Criterion.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A qualitative description of this degree of achievement used for column headers or row labels in tabular rubrics.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Quality' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The points awarded for achieving this level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Score' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A numeric value representing this criterion''s position in the criteria list for this rubric.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title of the rubric criterion.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A numeric weight assigned to this Rubric Criterion, used for scored rubrics.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Text describing the intended use of the rubric.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The grade span for which the course is appropriate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDGradeSpan' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date of referral.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The outcome of the referral.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RefReferralOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason for the referral.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Reason' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The person, program, or organization making the initial referral.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Source' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of service that a child or family has received a referral for.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralTypeReceived' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program or organization to which the child/family was referred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferredTo' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the organization, which could be abbreviated form of the full legally accepted name.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason given for declining the recommended services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ReasonForDeclinedServices' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the sponsoring agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SponsoringAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the technical assistance was approved.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the technical assistance was approved.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method of delivery of technical assistance received/provided', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method of delivery of technical assistance received/provided', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of technical assistance provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of technical assistance provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title of the thesis or dissertation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'ThesisOrDissertationTitle' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the labor organization of which the person is a member.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of weeks employed by year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'WeeksEmployedPerYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work-based learning opportunity a student participated in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work-based learning opportunity a student participated in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work-based learning opportunity a student participated in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work-based learning opportunity a student participated in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work-based learning opportunity a student participated in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date that notification is provided to the State Education Agency (SEA) and local education agency (LEA) of residence for a child potentially eligible for Part B (619) preschool services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of an individualized services plan for a specified reporting period or on a specified date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAIEPStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The point in time for which the result is used for an outcome measure.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefOutcomeTimePointId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the child demonstrates progress in positive social-emotional skills, including social relationships.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressAIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the child demonstrates progress in acquisition and use of knowledge and skills, including early language/communication.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressBIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the child demonstrates progress in use of appropriate behaviors to meet their needs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressCIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Child''s level of functioning in positive social-emotional skills (including social relationships).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingAId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Child''s level of functioning in the acquisition and use of knowledge and skills (including early language/communication.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingBId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Child''s level of functioning in the use of appropriate behaviors to meet their needs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingCId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which the services will be provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefMethodOfServiceDeliveryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day the competency definition was deprecated/replaced by the jurisdiction in which it was intended to apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day the competency definition was adopted by the jurisdiction in which it was intended to apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A last name given to a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A first name given to a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A middle name given to a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The course''s level of rigor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The course''s level of rigor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The course''s level of rigor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended major subject area of the education course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended major subject area of the education course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended major subject area of the education course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended major subject area of the education course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended major subject area of the education course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The frequency that a service is planned to be provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefServiceFrequencyId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The length, in hours, that delivery of the service is planned.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceDuration' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reasons for the delay of a transition conference.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RefReasonDelayTransitionConfId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique identifier of the previous version of the Competency Definition if the statement was modified.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'PreviousVersionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that this is the most current version of the Competency Definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CurrentVersionIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full name of an agency that accredited a school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full name of an agency that accredited a school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTimeInvolved' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of measurement for the amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RefActivityTimeMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position of this APIP Interaction in a sequence of interactions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'APIPInteractionSequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the events and procedures that take place under the purview of an organized activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'ActivityDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The period or window in which an assessment is supposed to be administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentAdministrationPeriodDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the assessment form was generated using an algorithm rather than a fixed form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An identifier for algorithm used to generate a custom form for an adaptive test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The version of the algorithm used to generate a custom form for an adaptive test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmVersion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityFederalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system that protects the facility against fire.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingFireProtectionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which the heat is distributed and delivered throughout the room(s) or building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHeatingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The building service system that provides for heating, ventilation and air-conditioning.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHVACSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Equipment that is installed for use in support of instructional program such as kilns for art, planetarium equipment for astronomy, fitness equipment for physical education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'BuildingInstitutionalEquipmentDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Mechanical means for moving people and equipment within buildings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalConveyingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The component of an on-site system for supplying, eliminating, and treating water.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingPlumbingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system that protects the facility from intrusion.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSecuritySystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityStateOrLocalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific law, rule, regulation, or standard of a state or local government that pertains to public school facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'FacilityStateOrLocalMandateName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The means through which voice, video, audio, and data information are conveyed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingTechnologyWiringSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The location at which the identified hazardous material is found.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityLocationOfHazardousMaterials' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The major manufactured systems required to operate a building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of any type of environmental hazards within range of the facility that has the potential to seriously affect the health, safety and operation of school facilities and their occupants.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityNearbyEnvHazardDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system that is installed in the building or site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system used to convey persons or freight between floors.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingVerticalTransportationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed primarily for conducting administrative and business functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAdministrativeSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed to support the teaching and learning of 2 dimensional or 3 dimensional visual arts.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingArtSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classroom designed for instruction of a particular age group, but not a specific subject.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingBasicClassroomDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary design or purpose of a building, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCareerTechEducationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A space designed to enable people to move within the building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCirculationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary groupings that rating organizations use to evaluate environmental sustainability and energy use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingEnvOrEnergyPerformanceRatingCatId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Moveable assets that are provided so the building or interior assets can be utilized by occupants for their intended purposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilityFurnishingsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space located, designed, furnished and equipped to support meal programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFoodServiceSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingIndoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingLibMediaCenterSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOperationsOrMaintSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The outdoor space located, designed, furnished, and equipped primarily for recreation, play and outdoor environmental education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorOrNonathleticSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed, located, furnished, and equipped for instruction and support of music and drama curricula and productions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingPerformingArtsSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The physical layout and character of a school facility, as determined by age groups served and educational programs provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingSchoolDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed, located, furnished, and equipped for instruction and experimentation in science.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingScienceSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designated constructed outdoor area on a public school site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteOutdoorAreaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary design or purpose of a space, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpaceDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpecEdSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingStudentSupportSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the architect of record for the building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitectName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the architectural firm responsible for the building design.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitecturalFirmName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An area designed primarily for theater productions, assemblies, and other large gatherings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAssemblySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year that the school, building, site, system, component, equipment, or fixture compliance status was determined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceDeterminationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the inspection or process that indicates conformity to the requirements or standards specified in federal, state, or local standards or codes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the component, system, or finish that needs replacement, repair, or maintenance to perform at an optimal level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComponentDeficiencyDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to a component by a school, school system, state, or other agency or entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The estimated cost to bring systems, components, finishes, fixtures, or equipment to a state of good repair.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityEstimatedCostToEliminateDeferredMaint' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year by which a hazardous condition of a site or building is expected to be remediated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityHazardousCondExpectedRemediationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of kitchen housed in the facility as defined by whether it prepares food to be served onsite and/or at additional locations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFullServiceKitchenTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the seriousness a threat or hazardous material poses.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year that the site or building is tested for a specific hazardous material.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionTestingDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of a meaningful raw score of statistical expression of the performance on an inspection.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionScoreResultDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the standard violation(s) found in the inspection.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionViolationDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year in which the system, component, equipment, or fixture was originally installed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'InstallationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total cost of acquiring, owning, operating, and disposing of a building, facility, or piece of equipment over its useful life.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'LifecycleCost' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the designed and constructed improvements made to a site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingSiteImprovementDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation as to whether the space is considered an instructional space under state or local guidelines.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingInstructionalSpaceFactorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reasons for permitting and participating in joint-use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseRationaleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of designation of non school district users by the amount of time they have access to public school for joint use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseSchedulingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of users sharing school district controlled, owned, or utilized facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUserTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed primarily for community or shared use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingCommunityUseSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of hours that all or part of a building is used for purposes other than general education by the community or other organizations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingHoursOfPublicUsePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area of space directly used for instruction excluding circulation, administration, student services, and building support.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNetAreaOfInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of teaching stations, as defined by how many spaces have, or could have, a teacher assigned to them for classroom instruction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfTeachingStations' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the policy that enables the community or other organizations to use all or part of a building for purposes other than general education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingPublicUsePolicyDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A characterization of a site that would define restrictions or opportunities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefBuildingSiteUseRestrictionsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area in square feet measured between the principal wall that faces at or near floor level, including alcove spaces, and the outer limits of space designed to serve the activity. Structural space is excluded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingSpaceUtilizationArea' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefStudentEnrollmentAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the space in a school, including circulation, administration offices, support spaces, and common areas, is not part of the calculation for capacity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingUnassignedSpaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RefFacilityAuditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of real estate vehicle through which a public charter school has access and control of its building space.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCharterSchoolRealtyAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The standard for cleanliness, and benchmarks for how much space can be assigned to one properly supplied custodian to meet these standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCleaningStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agency that has ultimate responsibility for the compliance determination.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceAgencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of modification to, or replacement of, a piece of equipment or building shell/system that increases energy efficiency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergyConservationMeasureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the company that designs, procures, finances, installs, maintains, and guarantees the performance of energy conservation measures in an owner''s facility or facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'BuildingEnergyServiceCompanyName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The source of energy that directly powers a school district facility or building system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergySourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMgmtEmergencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of management organization for planning, design, and construction of major capital projects.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityCapitalProgramMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of management arrangements whereby a district oversees and manages its facilities operations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityOperationsMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of hazardous materials or conditions tested for at a site or building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityHazardousMaterialsOrCondTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of development where two or more entities partner to plan, site, design, and/or build a new school or renovate an existing school to better support the joint use of the building and/or land.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityJointDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The standard for maintenance of a component, system, or building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityMaintStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of natural hazard that can affect the health, safety and operation of school facilities and their occupants.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityNaturallyOccurringHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of how utilities are supplied to a site or a building by a company or provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityProviderTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of utility used in the operation of a facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day and year in which a certificate of occupancy was granted by the appropriate local authority.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingDateOfCertificateOfOccupancy' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year of the systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'FacilityAuditDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the management and accountability plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'FacilitiesPlanDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the record should not be published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the record should not be published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the record should not be published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the record should not be published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the record should not be published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the record should not be published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual: (A) who is a displaced homemaker, as defined in section 3 of the Workforce Innovation and Opportunity Act (29 U.S.C. 3102); or (B) who (i)(I) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; or (II) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (ii) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual: (A) who is a displaced homemaker, as defined in section 3 of the Workforce Innovation and Opportunity Act (29 U.S.C. 3102); or (B) who (i)(I) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; or (II) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (ii) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of device the student uses most often to complete learning activities away from school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAwayFromSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the primary learning device is shared or not shared with another individual', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAccessId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The provider of the primary learning device.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceProviderId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the student is able to access the internet in their primary place of residence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'InternetAccessInResidence' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the barrier to having internet access in the student''s primary place of residence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefBarrierToInternetAccessInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary type of internet service used in the student''s primary place of residence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetAccessTypeInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the student can complete the full range of learning activities, including video streaming and assignment upload, without interruptions caused by poor internet performance in their primary place of residence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetPerformanceInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The midpoint between the lowest and highest quarterly wage, in U.S. dollars, for the total number of persons included in the cohort for the period of time between the Employment Record Reference Period Start Date and Employment Record Reference Period End Date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'CohortMedianEarnings' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The documented or assumed reason the person is no longer being served by the adult education program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAdultEducationProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A self-identified barrier as defined by the Workforce Innovation and Opportunity Act (WIOA) that is presumed to affect placement of a participant in unsubsidized employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RefWIOABarrierstoEmploymentId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether or not the individual has received services as identified in sec. 134(c)(2) of the Workforce Innovation and Opportunity Act (WIOA) consisting of (a) basic career services, (b) individualized career services, or (c) follow-up services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOACareerServices' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether or not the individual has received services as defined by the Workforce Innovation and Opportunity Act (WIOA), one or more courses or classes, or a structured regimen that provides the services in 20 CFR part 680.200 and leads to: (a) An industry-recognized certificate or certification, a certificate of completion of a registered apprenticeship, a license recognized by the State involved or the Federal Government, an associate or baccalaureate degree, or community college certificate of completion; (b) Consistent with § 680.350, a secondary school diploma or its equivalent; (c) Employment; or (d) Measurable skill gains toward a credential described in paragraph (a) or (b) of this section or employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOATrainingServices' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The origins of a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RefRaceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A parent, guardian, or student declined to report sufficient information for identifying a student''s federal race and/or ethnicity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'FederalRaceAndEthnicityDeclined' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of personal information verified through the Personal Information Verification evidence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the way in which a person relates to an organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RefRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The term First Generation College Student means an individual both of whose parents did not complete a baccalaureate degree or in the case of any individual who regularly resided with and received support from only one parent, an individual whose only such parent did not complete a baccalaureate degree.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'FirstGenerationCollegeStudent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) based on the person''s latitude and longitude location.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideEstimate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The standard error applied to the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideStandardError' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day on which the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) was processed through the BlindSIDE resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideDateProcessed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The begin year for the American Community Survey (ACS) period estimates used to construct the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageBeginYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end year for the American Community Survey (ACS) period estimates used to construct the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageEndYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This degree is the highest degree that can be awarded in this classification of instructional programs field or program area.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefinitionTerminalDegreeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the adult education participant received a secondary school diploma or its recognized equivalent while enrolled in the adult education program or within one year of exiting the adult education program and entered into postsecondary education within one year of exiting the adult education program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the adult education participant received a secondary school diploma or its recognized equivalent while enrolled in the adult education program or within one year of exiting the adult education program and was employed within one year of exiting the adult education program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentEmployedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the adult education participant received a postsecondary credential while enrolled in the adult education program or within one year of exiting the adult education program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSCredentialIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days a person is tardy when school is in session during a given reporting period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysTardy' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The source for the staff compensation a person receives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RefStaffCompensationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The annual sum of payments given to staff in addition to their regular wages.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationAnnualSupplement' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Compensation paid to a staff member based on their years of service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationLongevity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether teachers have been identified as inexperienced as defined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEDFactsTeacherInexperiencedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether teachers have been identified as teaching a subject or field for which they are not certified or licensed as defined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefOutOfFieldStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the nature of a student''s affiliation, as defined by the state, with a public school and used generally, but not exclusively, for the purpose of determining residency, funding, or accountability.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefStudentSchoolAffiliationStateDefinedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The identifier specified by the source system that uniquely identifies the data collection.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemDataCollectionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the source system that provided the data within the collection.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A human readable name used to identify the data within the collection.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of what is included in the data within the context of the data collection based on the source system and collection period as defined by the Data Collection Open Date and Data Collection Close Date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the data collection opens or commences.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionOpenDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the data collection closes or ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionCloseDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year for a reported school session for which the data is applicable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionAcademicSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year for a reported school session in which the data collection occurs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A process indicator of the level of stability, quality, and/or preparedness of the record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A process indicator of the level of stability, quality, and/or preparedness of the record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the record was marked with the Record Status Type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the record was marked with the Record Status Type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of entity that created or indicated the Record Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of entity that created or indicated the Record Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The speed that data or information can be sent from one''s device to another device or server on the internet in megabits per second.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetUploadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The speed that data or information can be downloaded from a server on the internet to one''s device in megabits per second.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetDownloadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date and, optionally, time that the information was gathered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetSpeedTestDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of academic or career and technical outcome attained while enrolled in the program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of academic or career and technical outcome attained up to 90 days after exiting the facility or program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A minor student under the age of 18 who has been granted by legal action to have the power and capacity of an adult.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'EmancipatedMinor' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Number of people, including the student, who will attend at least half-time in the current academic year, a program that leads to a college degree or certificate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfHouseholdCollegeStudents' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The student''s relationship to the dependents who live with the student or receive more than half of the student''s support', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefNumberOfDependentsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Pell-eligible students whose parent or guardian was a member of the U.S. armed forces and died as a result of military service performed in Iraq or Afghanistan after the events of 9/11 or a public safety officer and died as a result of active service in the line of duty. At the time of the parent''s or guardian''s death, the student must be less than 24 years of age or enrolled in college or career school at least part-time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'ChildrenOfFallenHeroesIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the component part that is being evaluated and scored.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'PartName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The actual quantitative or qualitative assessment of a person''s performance on a component part that is being evaluated. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The quantitative or qualitative range of possible scores/rating for a person''s performance on a component part (e.g., 0 - 10; Poor, Fair, Average, Good, Excellent).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the parent or guardian of this student was administered the Home Language Survey - a questionnaire given to parents or guardians that helps schools and local education agencies identify which students are potential English Learners and who will require assessment of their English language proficiency to determine whether they are eligible for language assistance services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day on which the Home Language Survey is known to have been administered to the parent or guardian of this student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A process indicator of the level of stability, quality, and/or preparedness of the collection of data.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'RefDataCollectionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that an instructional model is being implemented wherein a student learns through answering complex questions or solving for real-world problems. Also called problem-based learning, inquiry-based learning, or learning-by-doing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'ProjectBasedLearningIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of project-based instruction being offered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'OrganizationProjectBasedLearningId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of project-based instruction being offered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'RefProjectBasedLearningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that there are school or program developed requirements for student participation in the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CourseLevelApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of assessments administered to English Learners.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether special education teachers are fully certified in the State..', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationTeacherQualificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an educator holds the certification or licensure required by their assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEdFactsCertificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The group of students to whom related or ancillary service is offered within the formal educational system or by an outside agency which provides non-instructional service to support the general welfare of students.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceAvailabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of participants that can be served in a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'AdjustedCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the reason for adjusted capacity in a program. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'RefAdjustedCapacityReasonTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefKindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000494', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000495', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000496', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'DaysInSession' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000497', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'FirstInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000498', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'LastInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000500', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MinutesPerDay' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000501', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000502', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000503', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000504', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000505', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentCost' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000506', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentReporterTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000507', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentReporterId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000508', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000509', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000510', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000511', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DurationOfDisciplinaryAction' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000512', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RelatedToZeroTolerancePolicy' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000513', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'FullYearExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000514', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'ShortenedExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000515', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentTimeDescriptionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000517', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000519', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassBeginningTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000520', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassEndingTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000521', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassMeetingDays' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000522', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassPeriod' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000523', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'TimeDayIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000524', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RefInstructionLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000525', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'PrimaryAssignment' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000529', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstEntryDateIntoUSSchool' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000530', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000531', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefNonPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000532', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000532', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000535', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentSchoolAgeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000536', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIIAccountabilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000537', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000537', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000538', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodOfCwdId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000539', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000540', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotCompletingId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000541', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000542', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ConsolidatedMepFundsStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000545', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000546', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'TechnologySkillsStandardsMet' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000547', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000552', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000552', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000553', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusRLAId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000555', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodFirearmsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIDEADisciplineMethodFirearmId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000557', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefFirearmTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefIDEAEnvironmentELId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentECId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000561', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000561', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000562', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'PrioritizedForServices' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000563', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ContinuationOfServicesStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000564', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000564', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000566', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefTechnologyLiteracyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000567', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000568', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'PublicSchoolChoiceFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000571', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000571', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000572', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentPretestOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000573', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefProficiencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000574', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesSchoolChoice20PercentObligation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000577', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'DisabilityStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000578', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'EducationalServicesAfterRemoval' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000580', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'SingleParentOrSinglePregnantWoman' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000584', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000584', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000585', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000585', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000586', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentActionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000587', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000587', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefNonTraditionalGenderStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RefStaffPerformanceLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000592', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteParticipant' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000593', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteNonTraditionalCompletion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000595', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefK12ResponsibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000597', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'LocationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000597', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'Location' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000598', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'AlternateDayName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000599', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAbsentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000600', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefPresentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000601', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000603', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RefCalendarEventType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000605', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefContentStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000606', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000606', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000607', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000607', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000609', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineLengthDifferenceReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000612', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000613', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000614', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000616', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000616', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000618', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000618', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000618', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000620', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000621', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000622', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001093', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001094', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001122', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepAspectsOfReadingId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001127', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssessmentNeedType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001130', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001131', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingTemplateUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001132', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001133', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001134', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'OutcomeDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001135', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001136', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001137', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ModalFeedbackXml' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ItemBodyXml' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001139', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001139', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001142', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'FinalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001143', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001144', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightHolderName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001145', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001146', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001147', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001148', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001149', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001150', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001151', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'OptimumValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001152', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'PlatformUserAgent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001153', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'CriteriaUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001154', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001155', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001157', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'OtherDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001160', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001160', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001161', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001162', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestAttemptIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001163', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001165', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001166', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001167', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001168', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001169', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderUri' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001170', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'LoginIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001171', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001172', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001173', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001174', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Uri' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001175', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'ApplicationRoleName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001176', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001177', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001182', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001182', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001182', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001183', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001184', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001184', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001184', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001185', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AccommodationList' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001186', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001187', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001188', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PlatformsSupported' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001189', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001190', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RefAssessmentFormSectionIdentificationSystemId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001191', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001192', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionTimeLimit' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001193', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionSealed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001194', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionReentry' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001195', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssetTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001197', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001198', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssestIdentifierType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001201', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Owner' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001202', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentXML' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001203', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentMimeType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001204', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001206', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001207', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'SpaceDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefSpaceUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001210', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001211', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefWeaponTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001212', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionStaffRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001214', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Tier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001215', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'ContainerOnly' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001216', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001217', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'CorrectIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001218', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001219', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatement' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001223', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RefFinancialAidApplicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001224', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefNeedDeterminationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001225', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001225', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001226', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'LanguageTranslationPolicy' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001227', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001228', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001229', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefMaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001230', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefPaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001231', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramDateType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001232', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'IndividualizedProgramDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001233', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'NonInclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001234', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001235', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTransitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001236', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001237', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramLocationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001238', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanMeetingParticipants' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001239', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignedBy' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001240', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignatureDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanReevaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001242', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationFTE' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001242', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001244', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefProgramGiftedEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001245', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'CategorySystem' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001246', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001248', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001249', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Notes' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001250', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001251', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterA' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001252', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterB' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001253', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryDifficultyCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterC' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001255', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD1' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001256', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD2' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001257', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD3' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD4' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001259', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD5' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001260', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD6' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001261', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'LinkingItemIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001262', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'PointBiserialCorrelationValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001651', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractIdNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001652', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractApprovalDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001653', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractRenewalDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001654', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'NSLPDirectCertificationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001655', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'MaximumCapacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001656', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAPartCEligibilityCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001657', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefTribalAffiliationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001658', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001659', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001660', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001661', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedReason' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001662', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RevocationListURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001663', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001664', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001665', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RequirementsURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001666', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardPrerequisiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001667', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RepeatabilityMaximumNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001668', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefPESCAwardLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001669', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'EvidenceURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001670', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001671', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001672', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001673', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001674', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueRestrictionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001675', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001676', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSNaturalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001677', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001678', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001679', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSIntercollegiateAthleticsExpensesId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001680', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBPellGrantTransactionsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001681', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportScheduleId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001682', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'TransferOfRightsStatement' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001683', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001684', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'MeetingDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001685', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001686', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Applicability' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001687', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'IEPAlternativeAssessmentRationale' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001688', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'ReasonDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001689', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001690', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'CurrentPerformanceDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001691', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AccuracyPercent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001692', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AttemptsCount' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001693', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'Metric' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001694', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'SuccessCount' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001695', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001696', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Schedule' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001697', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RefGoalMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001698', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RefIEPGoalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001699', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressReportDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001700', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001701', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001701', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001702', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RefGoalStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001703', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'Status' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001704', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'IDEAPlacementRationale' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001705', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'AcademicDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001706', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'FunctionalDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001707', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'GeneralEducationDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001708', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'PreschoolDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001709', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentStrengthsDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001710', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'ParentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001711', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'DeclinedServicesDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RefFrequencyUnitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001714', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'InstancesPerCycle' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001715', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'FrequencyLength' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001716', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'DurationInMinutes' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001717', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ExtendsOutsideSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001718', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'SettingDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001719', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RefIEPAuthorizationDocumentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001720', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RefAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001721', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AcceptanceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001722', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'DecisionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001723', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001724', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001725', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AuthorizationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001726', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001727', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001728', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RefIEPEligibilityEvaluationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001729', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RefIDEAEligibilityEvaluationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001730', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001731', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'EvaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001732', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ParentObservations' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001733', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefIDEADisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001734', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001735', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'AlternateName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001737', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'ApproverName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001738', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAssessMethodTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001739', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RefCredentialIdentifierSystemId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001740', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001741', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'EstimatedDuration' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001742', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialNAICSIndustryType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001743', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001744', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegionException' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001745', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Keywords' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001746', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MaximumDuration' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001747', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumAge' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001748', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumDuration' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001749', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefIntendedPurposeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001750', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RegionGeoJSON' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001751', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001752', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ValidationMethodDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001753', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefVerificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001754', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001755', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001755', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001756', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefONETSOCOccupationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001757', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypeURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001761', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'StateFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001762', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'LEAFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001763', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'SchoolFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001764', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingArea' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001765', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'SignificantCognitiveDisabilityIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001768', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityAcquisitionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001769', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityAdditionYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001770', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityBuildingPermanency' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001771', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001772', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingHistoricStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001773', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteArea' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001774', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityBlockNumberArea' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001775', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001776', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001777', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingPrimaryUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000031', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'AwaitingInitialIDEAEvaluationStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000032', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationBaseSalary' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000033', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Birthdate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCampusResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000036', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteCompleter' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000037', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteConcentrator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000038', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefCarnegieBasicClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000039', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000039', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000040', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000040', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000042', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ClassRankingDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCipUseId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000045', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipVersionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000046', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000047', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000047', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000049', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RefCorrectiveActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000050', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000051', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000053', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'AcademicGrade' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000054', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000058', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CreditValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000059', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000061', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelCharacteristicsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000063', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'CourseOverrideSchool' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'QualityPointsEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000065', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000065', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000066', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SubjectAbbreviation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000070', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'IssuanceDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000071', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000074', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000074', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000074', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000075', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefCteGraduationRateInclusionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000076', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000077', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'DegreeApplicability' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000078', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateSeekingStudent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000079', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefDependencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000080', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'DesegregationOrderOrPlan' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'AwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000082', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000083', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000084', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000084', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000085', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DualCreditDualEnrollmentCredits' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000088', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'ElectronicMailAddress' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000088', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'EmailAddress' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000091', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefElementaryMiddleAdditionalId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000092', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000093', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEndOfTermStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000094', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000095', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000096', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000098', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'EntryDateIntoPostsecondary' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000099', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000100', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000101', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'TimeRequiredForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000102', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Outcome' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000103', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000104', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000105', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'System' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000106', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCohortExclusionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000110', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000112', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidAwardAmount' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000113', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000115', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000117', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstTimePostsecondaryStudent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000118', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000118', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000118', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000121', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'GenerationCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000123', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000123', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000124', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000124', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000125', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000125', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000126', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelToBeAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000126', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000127', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverage' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000128', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000128', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000128', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000129', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'GradePointAverageGivenSession' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000130', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000131', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000131', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000132', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyCohortYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000133', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000134', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefGunFreeSchoolsActReportingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000135', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'HarassmentOrBullyingPolicy' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000136', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationHealthBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day or year and month on which the academic award was conferred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The descriptive title for the academic award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardTitle' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type of academic distinctions earned by or awarded to the student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RefAcademicHonorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title of the accountability report.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AccountabilityReportTitle' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of address listed for a learner or a parent, guardian, family member or related person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the state, district, or school met the Adequate Yearly Progress (AYP) requirements for the school year, as determined by the state-established criteria.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAypStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of education institution as classified by its funding source.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of education institution as classified by its funding source.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of education institution as classified by its funding source.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication whether a course is aligned with the established standards of a curriculum framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication whether a course is aligned with the established standards of a curriculum framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the district or school used an approved alternate approach for calculating Adequate Yearly Progress (AYP).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AlternateAypApproachIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the specific group of students whose needs the alternative school is designed to meet.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefAlternativeSchoolFocusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits awarded a student by the postsecondary institution based on successful completion of advanced placement courses and/or advanced placement tests. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AdvancedPlacementCreditsAwarded' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The apartment, room, or suite number of an address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The apartment, room, or suite number of an address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of the academic content or subject area (e.g., arts, mathematics, reading, or a foreign language) being evaluated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of the academic content or subject area (e.g., arts, mathematics, reading, or a foreign language) being evaluated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of a given assessment form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a student participated in an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentParticipationIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason for which an assessment is designed or delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason for which an assessment is designed or delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason for which an assessment is designed or delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method that the instructor of the course uses to report the performance and achievement of all students. It may be a qualitative method such as individualized teacher comments or a quantitative method such as a letter or a numerical grade. In some cases, more than one type of reporting method may be used.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RefCourseSectionAssessmentReportingMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title or name of the assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category of an assessment based on format and content.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Measured in Carnegie units, the amount of credit available to a student who successfully meets the objectives of the course. A course meeting every day for one period of the school day over the span of a school year offers one Carnegie unit. A Carnegie unit is thus a measure of "seat time" rather than a measure of attainment of the course objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Measured in Carnegie units, the amount of credit available to a student who successfully meets the objectives of the course. A course meeting every day for one period of the school day over the span of a school year offers one Carnegie unit. A Carnegie unit is thus a measure of "seat time" rather than a measure of attainment of the course objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Measured in Carnegie units, the amount of credit available to a student who successfully meets the objectives of the course. A course meeting every day for one period of the school day over the span of a school year offers one Carnegie unit. A Carnegie unit is thus a measure of "seat time" rather than a measure of attainment of the course objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Awaiting initial evaluation for special education programs and related services under the Individuals with Disabilities Education Act (IDEA). ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'AwaitingInitialIDEAEvaluationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The salary or wage a person is paid before deductions (excluding differentials) but including annuities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationBaseSalary' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a person was born.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Birthdate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCampusResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student who reached a state-defined threshold of a career and technical education program/pathway.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteCompleter' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student who has met the state-defined threshold of career and technical education concentrators, as defined in the State''s approved Perkins IV State Plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteConcentrator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Basic Classification is an update of the traditional classification framework developed by the Carnegie Commission on Higher Education in 1970 to support its research program, and later published in 1973 for use by other researchers.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefCarnegieBasicClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a public school provides free public elementary and/or secondary education to eligible students under a specific charter executed, pursuant to a state charter school law, by an authorized chartering agency/authority and that is designated by such authority to be a public charter school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a public school provides free public elementary and/or secondary education to eligible students under a specific charter executed, pursuant to a state charter school law, by an authorized chartering agency/authority and that is designated by such authority to be a public charter school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the city in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the city in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic rank of a student in relation to his or her high school graduating class (e.g., 1, 2, 3) based on high school GPA.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic rank of a student in relation to his or her high school graduating class (e.g., 1, 2, 3) based on high school GPA.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date class ranking was determined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ClassRankingDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether the CIP Code is referencing an enrollment program or an award program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCipUseId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The version of CIP being reported.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipVersionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The school year in which the student entered the baseline group used for computing completion rates (e.g., high school, program).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days per year that a person is expected to work as outlined specifically in his or her employment agreement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days per year that a person is expected to work as outlined specifically in his or her employment agreement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of whether a postsecondary institution is operated by publicly elected or appointed officials (public control) or by privately elected or appointed officials and derives its major source of funds from private sources (private control). ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of whether a postsecondary institution is operated by publicly elected or appointed officials (public control) or by privately elected or appointed officials and derives its major source of funds from private sources (private control). ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of corrective actions under ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RefCorrectiveActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique two character International Organization for Standardization (ISO) code for the country in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique two digit International Organization for Standardization (ISO) code for the country in which a person is born.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The final grade awarded for participation in the course. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'AcademicGrade' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day an instance of a course officially began.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credit (unit, semester, or quarter) associated with the credit hours earned for the course. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credit (unit, semester, or quarter) associated with the credit hours earned for the course. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credit (unit, semester, or quarter) associated with the credit hours earned for the course. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of credit available to the student who successfully meets the objectives of the course or learning opportunity based on the units defined by Credit Unit Type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CreditValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day an instance of a course ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the general nature and difficulty of instruction provided throughout a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelCharacteristicsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The school where the credit was earned if different from the institution reporting. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'CourseOverrideSchool' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The numerical value assigned to a letter grade to provide a basis of quantitative determination of an average. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'QualityPointsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that an academic course has been repeated by a student and how that repeat is to be computed in the student''s academic grade average.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that an academic course has been repeated by a student and how that repeat is to be computed in the student''s academic grade average.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The alphabetic abbreviation of the academic department or discipline offering the course. It is one part of the total course identifier number. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SubjectAbbreviation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which an active credential was issued to a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'IssuanceDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the category of credential a person holds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value awarded for the completion of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value awarded for the completion of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cumulative number of credits a person attempts to earn by taking courses during their enrollment in their current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cumulative number of credits a person attempts to earn by taking courses during their enrollment in their current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cumulative number of credits a person attempts to earn by taking courses during their enrollment in their current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cumulative number of credits a person earns by completing courses or examinations during their enrollment in the current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cumulative number of credits a person earns by completing courses or examinations during their enrollment in the current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cumulative number of credits a person earns by completing courses or examinations during their enrollment in the current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Total income of family from all sources. Income includes money, wages or salary before deductions; net income from non-farm self-employment; net income from farm self-employment; regular payments from Social Security or railroad retirement; payments from unemployment compensation, strike benefits from union funds, workers’ compensation, veterans benefits (with the exception noted below), public assistance (including Temporary Assistance for Needy Families, Supplemental Security Income, Emergency Assistance money payments, and non-Federally funded General Assistance or General Relief money payments); training stipends; alimony, child support, and military family allotments or other regular support from an absent family member or someone not living in the household; private pensions, government employee pensions (including military retirement pay), and regular insurance or annuity payments; college or university scholarships, grants, fellowships, and assistantships; and dividends, interest, net rental income, net royalties, and periodic receipts from estates or trusts; and net gambling or lottery winnings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIncome' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Sources of total family income.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefFamilyIncomeSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The calculation method used by a program to determine total family income.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefIncomeCalculationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of insurance covering an person''s hospitalization and other health or medical care.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHealthInsuranceCoverageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The source of insurance covering an person''s dental care.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalInsuranceCoverageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The extent to which a person concentrates upon a particular subject matter area during his or her period of study at an educational institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELLevelOfSpecializationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the degree or certificate earned by a person. This includes honorary degrees conferred upon an individual.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateTitleOrSubject' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of degree or certificate earned by a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefDegreeOrCertificateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The credential related to early childhood education or development held by a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodCredentialId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The condition under which a person has agreed to serve as an employee.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The condition under which a person has agreed to serve as an employee.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a program or center received its initial license.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicensingDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a program or center received its initial license.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a program or center received its continuing license.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a program or center received its continuing license.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program or center is legally exempt from licensing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program or center is legally exempt from licensing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a program or center began operation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'OperationalStatusEffectiveDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Nature of early childhood program, class or group in which a person is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Nature of early childhood program, class or group in which a person is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Nature of early childhood program, class or group in which a person is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of hours per day the site or classroom is open for children to attend.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of hours per day the site or classroom is open for children to attend.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days per week the site or classroom is open for children to attend.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days per week the site or classroom is open for children to attend.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The site or setting in which early childhood care, education, and/or services are provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The site or setting in which early childhood care, education, and/or services are provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Program site participates in a Quality Rating and Improvement System (QRIS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RefQrisParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The score, rating or level received by a program for its Quality Rating and Improvement System (QRIS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the award level in which the person is currently enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credit hours and/or contact hours successfully completed by a person during a term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credit hours and/or contact hours successfully completed by a person during a term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the financial aid type being reported is aid that has been awarded, accepted or dispersed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to a room by a school, school system, state, or other agency or entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'ClassroomIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to a room by a school, school system, state, or other agency or entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'ClassroomId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'IdentificationSystem' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of a given assessment form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'FormNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to an assessment subtest.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The shortened name identifying the assessment for use in reference and/or reports.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Abbreviation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific method used to report the performance and achievement of the assessment. This is the metric that is being used to derive the scores.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific method used to report the performance and achievement of the assessment. This is the metric that is being used to derive the scores.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This provides the next steps for instruction for the student based upon the assessment results and student characteristics.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'InstructionalRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The language that the assessment is administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This is the objective that the assessment is measuring.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A category of accommodations needed for a given assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAssessmentAccommodationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the assessment is a secure assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the assessment is a secure assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific accommodation necessary for assessment or instruction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific accommodation necessary for assessment or instruction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The platform with which the assessment was delivered to the student during the assessment session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentPlatformTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The version of the subtest that is included for the assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An unusual event occurred during the administration of the assessment. This could include fire alarm, student became ill, etc.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An unusual event occurred during the administration of the assessment. This could include fire alarm, student became ill, etc.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific type of assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The percentage of students who answered the item correctly during trial testing of the item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Difficulty' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of psychometric measure provided for assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemCharacteristicTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The distribution of responses for each choice in the assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'ResponseChoicePattern' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum value possible for the measurement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum value for the measurement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The optimal value for this measurement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'OptimalValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The analysis of the distractors provided for a specific assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'DistractorAnalysis' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The statement of the question or prompt for an Assessment Item to which the student responds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stem' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total amount of time in seconds or milliseconds that a person spent responding to a given assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Duration' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of time allotted for a specific item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the response for a given item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessItemResponseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A tool or aid set used while viewing the item. This can include things like a calculator, reference tools, etc.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AidSetUsed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The overall time a learner actually spent during the assessment session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'TimeAssessed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The duration of time allotted for the assessment session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of assessment administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The metric or scale used for score reporting.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'ScoreMetric' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Lowest possible score for the performance level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'LowerCutScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Highest possible score for the performance level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'UpperCutScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title of the rubric.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An identifier assigned to a rubric.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The URL location where the rubric may be found.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'UrlReference' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The American National Standards Institute (ANSI) two-digit code for the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RefStateANSICodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of a person''s relationship to another person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RefPersonRelationshipTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The name of the city in which a person was born.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The abbreviation for the name of the state (within the United States) or extra-state jurisdiction in which a person was born.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The evidence by which a child''s date of birth is confirmed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The evidence by which a child''s date of birth is confirmed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Reason why the student is being served under the continuation of services provision of the MEP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefContinuationOfServicesReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day on which the child is no longer eligible for the Migrant Education Program. This date should initially be a date equal to 36 months from the Qualifying Arrival Date to indicate the end of MEP eligibility or the student reaches 22 years of age, whichever comes first.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MepEligibilityExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the person is a twin, triplet, etc.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'MultipleBirthIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The qualifying arrival date (QAD) is the month, date, and year that the child completed a move with his or her parent to enable the parent to find qualifying employment. In some cases, the child and worker may not always move together, in which case the QAD would be the date that the child joins the worker who has already moved, or the date the worker joins the child who has already moved. The QAD is the date the child''s eligibility for the Migrant Education Program begins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MigrantStudentQualifyingArrivalDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the city in which the child resided prior to the qualifying move.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'QualifyingMoveFromCity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The abbreviation code for a country (other than the US) area in which the child resided prior to the qualifying move.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromCountryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The postal abbreviation code for a state (within the United States) or outlying area in which the child resided prior to the qualifying move.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromStateId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The NCES school identification number that identifies the school or facility from which a student expects to graduate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'DesignatedGraduationSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of school/migrant education project in which instruction and/or support services are provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether the school or MEP program has immunization records on file for the student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ImmunizationRecordFlag' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Alert indicator for a medical/health condition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefMedicalAlertIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates the type of MEP project based on the location where the MEP services are held.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepProjectBasedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an institution has any residence hall or housing facility located on- or off-campus that is owned or controlled by an institution and used by the institution in direct support of or in a manner related to, the institution''s educational purposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'InstitutionallyControlledHousingStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The charges for an academic year for rooming accommodations for a typical student sharing a room with one other student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RoomCharges' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The charges assessed students for an academic year for the maximum meal plan available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BoardCharges' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The average cost for books and supplies for a typical student for an entire academic year (or program). Does not include unusual costs for special groups of students (e.g., engineering or art majors) unless they constitute the majority of students at an institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BooksAndSuppliesCosts' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of money (estimated by the financial aid office) needed by a person to cover expenses such as laundry, transportation, and entertainment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'OtherStudentExpenses' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total amount institutions estimate that undergraduate-level full-time, first-time degree-seeking students will pay to attend before financial aid is considered. This price includes tuition and fees, books and supplies, room and board, and certain other designated expenses such as transportation. These estimates are the average amounts used by the financial aid office to determine a student’s financial aid.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'PriceOfAttendance' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A single fixed amount of money charged by an institution that covers tuition, required fees, room, and board. For some institutions, this amount may also cover books and supplies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'ComprehensiveFee' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who has fulfilled the institution’s requirements to be considered for admission (including payment or waiving of the application fee, if any) and who has been notified of one of the following actions: admission, nonadmission, placement on waiting list, or application withdrawn (by applicant or institution). Include early decision, early action, and students who began studies during summer in this cohort.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'PostsecondaryApplicant' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Applicant who has been granted an official offer to enroll in a postsecondary institution. Admitted applicants should include wait-listed students who were subsequently offered admission.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefAdmittedStudentId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person who meets the admission requirements but will only be offered a place in the class if space becomes available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'WaitListedStudent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The domain to which the Grade Point Average is referencing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGradePointAverageDomainId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The High School Rank divided by the Size of High School Graduating Class expressed as a percentage.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolPercentile' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The student resides in a residence hall or housing facility owned or controlled by an institution within the same reasonably contiguous geographic area and used by the institution in direct support of or in a manner related to, the institution''s educational purposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'HousingOnCampus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student is in membership of a chiefly social organization of men students at a college or university, usually designated by Greek letters.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FraternityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student is in membership in a chiefly social organization of women students at a college or university, usually designated by Greek letters.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'SororityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Any applicant who submits any one of the institutionally required financial aid applications/forms, such as the Free Application for Federal Student Aid (FAFSA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidApplicant' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of financial need as determined by an institution using the federal methodology and/or your institution''s own standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialNeed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the company that provides the examination used in the teacher education program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationTestCompanyId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is pursuing certification as a teacher.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person completed a state-approved teacher preparation program. The fact that a person has or has not been recommended to the state for initial certification or licensure may not be used as a criterion for determining who is a program completer.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepCompleterStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is enrolled in an alternative teacher preparation program as defined by Title II.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefAltRouteToCertificationOrLicensureId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is pursuing licensure/certification in a field designated as a shortage area as defined by Title II.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefCriticalTeacherShortageCandidateId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is enrolled in a supervised clinical experience (including student teaching) as part of a teacher preparation program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefSupervisedClinicalExperienceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the number of clock hours (minimum) a student is required to complete associated with a supervised clinical experience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'ClinicalExperienceClockHours' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of examination used to assess teacher candidate''s knowledge and skills.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationCredentialExamId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the type of credential exam associated with a given exam score.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationExamScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtIntakeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtPosttestId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type, by location or delivery mode, of adult education instruction program in which an adult participates.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeSpecialProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The action taken with respect to postsecondary enrollment by the learner after program exit or when co-enrolled in ABE and postsecondary with respect to enrollment in a postsecondary educational or occupational skills program building on prior services or training received.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAePostsecondaryTransitionActionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The titles of employment, official status, or rank of adult education staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to a family by a school, school system, a state, or other agency or entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of years that a person has previously held a teaching position in one or more adult education programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAeTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of years that a person has previously held a teaching position in one or more adult education programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAETeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Staff has a degree in early childhood regardless of level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'ECDegreeOrCertificateHolder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of instructional hours completed by an adult enrolled in a distance learning program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'ProxyContactHours' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Total number of college credits earned, including all credits within a degree and outside a degree, regardless of whether they all are early childhood credits.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalCollegeCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of hours worked per week in employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HoursWorkedPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Hourly wage associated with the employment position being reported.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HourlyWage' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Method used for the collection of wage data for an employment record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageCollectionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the person is a member of a union.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Number of clock hours of training required for providers to meet requirements of the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RequiredTrainingClockHours' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'State where the professional license/credential was issued.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefIssuingStateId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of Child Development Associate credential as defined by options.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of Child Development Associate credential as defined by options.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefChildDevAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to the Professional Development Activity as assigned by the organization offering the training.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to the Professional Development Activity as assigned by the organization offering the training.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title of an activity designed for the purpose of developing someone professionally.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title of an activity designed for the purpose of developing someone professionally.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTitle' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a scholarship was received for the person to participate in the professional development.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a scholarship was received for the person to participate in the professional development.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of financial assistance received in support of non-credit professional development activities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of financial assistance received in support of non-credit professional development activities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the core knowledge areas addressed by Early Learning professional development.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RefCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of college course credit hours an individual has successfully completed that are related to K-12 education, parks and recreation, and juvenile justice.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of college course credit hours an individual has successfully completed that are related to K-12 education, parks and recreation, and juvenile justice.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the accreditation status of a higher education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the accreditation status of a higher education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the wage information has been verified.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a class or group serves children with special needs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ServesChildrenWithSpecialNeeds' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of curriculum used in an early learning classroom or group.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ELClassGroupCurriculumType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a program meets NAEYC or NAFCC standards for infant group sizes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefELGroupSizeStandardMetId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of operating weeks per year for an early learning program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'ELProgramAnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of operating weeks per year for an early learning program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'AnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The current licensing status for an early learning program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefELProgramLicenseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodProgramEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date Quality Rating and Improvement System score, level or rating was awarded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date Quality Rating and Improvement System score, level or rating expires.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QRISExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the for-profit status of a facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefProfitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Number of child fatalities at the program in the past year, as defined by the State', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfFatalities' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Number of child injuries at the program in the past year, as defined by the State.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfInjuries' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a program''s license was suspended due to violations as determined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseSuspensionStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a program''s license was revoked due to violations as determined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseRevocationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day when an accreditation was awarded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day when an accreditation expires.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Number of quality levels in the Quality Rating and Improvement System (QRIS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'NumberQrisLevels' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of classrooms for a program, facility, location, or other educational environment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'NumberOfClassrooms' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a program uses a health or safety checklist or documentation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ProgramHeathSafetyChecklistUseStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Program provides services to meet the needs of children in special circumstances.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefPopulationServedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date after which the an associated person is no longer allowed to use the specified Authentication Identity Provider to authenticate identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of a data system or application which an authenticated person may access.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Identifier (URI) of a data system or application which an authenticated person may access.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Uri' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The user role for which the person is allowed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'ApplicationRoleName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the an associated person is authorized to start using the application with the specified role.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date after which the an associated person is no longer allowed to use the application with the specified role.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If the assessment is provided with an item bank, then this identifies the item bank: a unique code or number used by the item banking system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If the assessment is provided with an item bank, then this identifies the item bank: a unique code or number used by the item banking system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If the assessment is provided with an item bank, then this identifies the item bank: a unique code or number used by the item banking system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If the assessment is provided with an item bank, then this is the name of the item bank.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If the assessment is provided with an item bank, then this is the name of the item bank.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If the assessment is provided with an item bank, then this is the name of the item bank.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The version number of the Assessment Form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The published date of an educational resource, such as instructional media, an assessment form, or section of an assessment form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The published date of an educational resource, such as instructional media, an assessment form, or section of an assessment form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The published date of an educational resource, such as instructional media, an assessment form, or section of an assessment form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The human readable list of one or more of the specific accommodations available. If no accommodations are provided, then this list will not be present.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AccommodationList' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The beginning date of the time period in which the form is intended to be administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ending date of the time period in which the assessment form is intended to be administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A human readable list of delivery platforms the form will support.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PlatformsSupported' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The version number of the Assessment Form Section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used for identification of an Assessment Form Section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RefAssessmentFormSectionIdentificationSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to the Assessment Form Section using the system specified by Identification System for Assessment Form Section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If this section is timed, then this will identify the maximum amount of time the test taker can spend within this section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionTimeLimit' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates this section is sealed, meaning the test taker cannot enter the section until authorized by the proctor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionSealed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that this section can be re-entered, meaning the test taker can return to this section after they have left the section. A common example of this is a two section test where one section does not allow the use of a calculator and the other does. Typically the test taker cannot return to the non-calculator section after they have used a calculator.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionReentry' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A version number or label defined by the publisher.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Specifies a predominant type of assessment asset represented by the Learning Resource. Assessment assets represent any content used to compose an assessment item, is referenced by an item but not part of the item content itself, or is content that is included as part of a section within an assessment form. Assets can be static content such as art work or dynamic assets such as calculators.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssetTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date that this version of the asset was made available for use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique code identifying the Assessment Asset provided by the authoring system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of identifier that is provided for this asset.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssestIdentifierType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the Assessment Asset.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the ownership rights holder or publisher of the asset.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Owner' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'XML encoded in UTF-8 representing the content of the Assessment Asset.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentXML' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'MIME type to specifically indicate the Assessment Asset content type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentMimeType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator (URL) location of the external Assessment Asset content.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'How a building is principally used, regardless of its original design.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the space, as determined by its physical layout and built-in systems and equipment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'SpaceDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefSpaceUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The grade level or primary instructional level at which a student exits a school, program, or an educational institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the type of weapon used during an incident.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefWeaponTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of role served related to the administration of an assessment session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionStaffRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'In a hierarchy of subtests, this element represents the level of the sub test in the hierarchy. The top tier and default is zero.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Tier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'In a hierarchy of subtests, this indicates that this tier is only used as a level in the hierarchy and does not represent a scoring model.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'ContainerOnly' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the version of the learning resource as defined by the publisher.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the possible response is the correct response.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'CorrectIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A feedback message designed to be reported with the assessment performance level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A statement intended for use by education professionals, using professional terminology, to interpret learner needs based on the scored/evaluated portion of an assessment. This statement may inform Descriptive Feedback given to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatement' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of financial application completed by an individual.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RefFinancialAidApplicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The methodology used to determine an individual''s financial need.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefNeedDeterminationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The oldest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The oldest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the organization or class/group has translation services available .', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'LanguageTranslationPolicy' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day that a status became applicable to an individual.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The last year, month and day when a status applied to an individual.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The highest level of education attained by a person''s mother or maternal guardian', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefMaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The highest level of education attained by a person''s father or paternal guardian', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefPaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the significance of a date to an individualized program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramDateType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the status of an individualized program for a student is significantly altered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'IndividualizedProgramDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of minutes per week that a student with disabilities is served in a special education setting separate from his or her non-disabled peers.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'NonInclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of minutes per week that a student with disabilities is served in a regular classroom with his or her non-disabled peers.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The post-school transition plan for the student recorded on their Individualized Education Program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTransitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the status of the service plan for a child is established or significantly altered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The place in which a child''s service plan meeting is held.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramLocationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position titles of individuals who attend the service plan meeting.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanMeetingParticipants' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position titles of individuals who sign a written service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignedBy' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the service plan document is signed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignatureDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date student will be reevaluated for continued placement in a support program(s).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanReevaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Calculated ratio of time the student is in a special education setting. Values range from 0.00 to 1.00. If the student is in a special education setting 25% of the time, the value is .25; if 100% of the time, the value is 1.00.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationFTE' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Calculated ratio of time the student is in a special education setting. Values range from 0.00 to 1.00. If the student is in a special education setting 25% of the time, the value is .25; if 100% of the time, the value is 1.00.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'State/local code used to determine a student''s eligibility for Gifted/Talented program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefProgramGiftedEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The system that defines the categories of the qualification, achievement, personal or organizational quality, or aspect of an identity used in Credential Category Type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'CategorySystem' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The education level, grade level or primary instructional level at which a Learning Resource is intended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the type of immunization that an individual has satisfactorily received. (Note: The International Classification of Diseases (ICD) is maintained by the World Health Organization. The ICD is revised periodically to incorporate changes in the medical field, the most updated and detailed list of International Statistical Classification of Diseases and Related Health Problems can be found at http://www.who.int/classifications/apps/icd/icd10online).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about the derivation of a Competency Definition Statement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Notes' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A label assigned by the publisher indicating the version of the competency framework statement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Item Response Theory value representing the discrimination of the item. The a parameter is found by taking the slope of the line tangent to the item characteristic curve at the inflection point, B. The parameter is the steepness of the curve at its steepest point.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterA' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Item Response Theory value representing the difficulty of the item. It is the Theta value for the location of the inflection point of the item characteristic curve.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterB' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A category for the difficulty of the item based on the Item Response Theory value.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryDifficultyCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Item Response Theory value for multiple choice items representing the guessing of the item. The c parameter is a lower asymptote. It is the low point of the curve as it moves to negative infinity on the horizontal axis. You can think of c as the probability that a chicken would get the item right.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterC' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'For polytomous assessment items with more than two possible responses, this is the item response theory value representing the threshold between the first and second item characteristic functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD1' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'For polytomous assessment items with more than two possible responses, this is the item response theory value representing the threshold between the second and third item characteristic functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD2' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'For polytomous assessment items with more than three possible responses, this is the item response theory value representing the threshold between the third and fourth item characteristic functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD3' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'For polytomous assessment items with more than four possible responses, this is the item response theory value representing the threshold between the fourth and fifth item characteristic functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD4' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'For polytomous assessment items with more than five possible responses, this is the item response theory value representing the threshold between the fifth and sixth item characteristic functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD5' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'For polytomous assessment items with more than six possible responses, this is the item response theory value representing the threshold between the sixth and seventh item characteristic functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD6' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the item is intended to be administered in two different grades for the goal of establishing cross grade comparison.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'LinkingItemIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The globally unique identifier of an Assessment Form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormGUID' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the assessment item is being field tested on this form of the test, and is not to be included for scoring.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentFormSectionItemFieldTestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date and time the descriptive feedback was entered in response to the results from a scored/evaluated assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AssessmentItemResponseDescriptiveFeedbackDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of scoring a person''s response to an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemResponseScoreStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the database that was used to administer the test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionDatabaseName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A globally unique identifier for an instance of a person taking an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionGUID' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The completion and scoring status for an instance of a person taking an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentRegistrationCompletionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date and time the completion and scoring status was changed for an instance of a person taking an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssessmentRegistrationCompletionStatusDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The data type of the assessment result score value.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultDataTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year that the conceptual design for the assessment was most recently revised substantially.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentRevisionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date and time the descriptive feedback was entered for a scored/evaluated portion of an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultDescriptiveFeedbackDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The measure of sampling variability and measurement error for the score, the amount of error to be expected in the score.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultScoreStandardError' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates the purpose for which this assessment score instance was recorded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the charter school offers open enrollment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolOpenEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Department with jurisdiction over this course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Department with jurisdiction over this course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the crisis that caused the displacement of students.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the crisis ceased to affect the agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the crisis ceased to affect the agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of service offered by an organization that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesOfferedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A number given to a financial account within a local source accounting system. The number may be a concatenation of a standard prefix for the type of account with digits added that have specific meaning within the local system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'AccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A number given to a financial account within a local source accounting system. The number may be a concatenation of a standard prefix for the type of account with digits added that have specific meaning within the local system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialAccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This classification permits expenditures to be segregated by instructional level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The project/reporting code permits organizations to accumulate expenditures to meet a variety of specialized reporting requirements at the local, state, and federal levels. It is a three-digit code with the format 00X. The first two digits identify the particular funding source, authority, or expenditure purpose for which a special record or report is required. The third digit is available to identify particular projects and the fiscal year of the appropriation within that funding source. Each classification is presented by a code range followed by a description.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialExpenditureProjectReportingCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' A unique identifier for the person performing the learner action. The identifier should be encrypted when integrating learning experience data across systems to secure the privacy of the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionActorIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the object upon which the person has performed the Learner Action.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A globally unique identifier for the object upon which the learning has performed the Learner Action which may be a URL with information about a learning resource or to launch the resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of object upon which a person has performed the Learner Action.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A Uniform Resource Locator (URL) that identifies the conditions that govern the user’s ability to access a learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessRightsUrlId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of entity, organization or person, that authored the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAuthorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A Uniform Resource Locator (URL) attributed to the author of a learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The most recent date that the learning resource was updated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceDateModified' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary type of interaction, synchronous or asynchronous, defined for the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An email address for the author of the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorEmail' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An email address for the publisher of the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherEmail' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A Uniform Resource Locator (URL) attributed to the publisher of a learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which this content was first published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkPublicationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A set of one or more alphanumeric characters and/or symbols denoting the positioning of the statement being described in a sequential listing of statements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefSequence' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The narrative of the student performance in a course section as submitted by the instructor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The narrative of the student performance in a course section as submitted by the instructor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of credits required for a student to graduate from the school of enrollment or complete a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of credits required for a student to graduate from the school of enrollment or complete a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that tuition for person''s participation in a program, service, or course is funded or partially funded by an external grant program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that tuition for person''s participation in a program, service, or course is funded or partially funded by an external grant program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student’s parent or guardian is on Active Duty, in the National Guard, or in the Reserve components of the United States military services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryConnectedStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is currently serving on Active Duty, in the National Guard, or in the Reserve components of the United States military services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryActiveStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is a veteran who served on Active Duty, in the National Guard, or in the Reserve components of the United States military services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryVeteranStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of consideration given a type of admission criteria used at an institution during the selection process.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of admission consideration used at an institution during the selection process.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Individual is approved to Work with Children', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'StaffApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The event/action that results in a billable action.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefBillableBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the person ceased to participate in a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationExitDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the person began to participate in a career pathway program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the organization awarding the individual''s credential or license.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialOrLicenseAwardEntity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of a student''s referral to or placement into developmental education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationReferralStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of developmental education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of developmental education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a individual requested a Family Education Rights and Privacy Act (FERPA) block to withhold the release of the person''s directory information.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDirectoryInformationBlockStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Denotes whether the family member can receive Early Childhood Education and Assistance Program (ECEAP) information for the child in question.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ECEAPEligibility' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date the required document was verified for the enrollment application', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifier for an enrollment application document record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Document name for an enrollment application document record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Document type for an enrollment application document record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifier for the application for enrollment or direct services filled out on behalf of a child', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies a specific document required for enrollment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationRequiredDocument' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the reason for verification of enrollment application information', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationReasonType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title/role of employment, official status, or rank of education staff', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEducationStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELLocalRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of service provided to a child.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefELServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' Funds that originate at the State, and not from a federal or local source, that contribute to EL program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELStateRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the core knowledge expertise of a trainer of a professional development experience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefELTrainerCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which the formal education is verified.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefEducationVerificationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is receiving Veteran''s benefits.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Veteran''s benefits a person is receiving.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The school year for which the student''s financial aid application and award data apply. Generally, this is the 12-month period from July 1 to June 30.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The school year for which the student''s financial aid application and award data apply. Generally, this is the 12-month period from July 1 to June 30.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Denotes whether this family member is counted in the family size as it pertains to the federal poverty level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'IncludedInCountedFamilySize' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic year, generally extending from September to June, in which IPEDS data is collected. Most Institutional Characteristics, Salaries, Fall Staff, Fall Enrollment, and Employees by Assigned Position data are collected for the current year; Completions, 12-Month Enrollment, Student Financial Aid, and Finance data collections cover the prior year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'IPEDSCollectionYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date that a Memorandum of Understanding between the Early Learning Organization and the Service Partner is determined to expire.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The effective date that a Memorandum of Understanding between the Early Learning Organization and the Service Partner Organization is effective.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level describing the concentration of study for a postsecondary program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefPSProgramLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The circumstances under which the student exited from enrollment in a postsecondary institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPSExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Priority points used to determine eligibility and placement order', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'EligibilityPriorityPoints' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a training activity has been approved through a state process.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentActivityStateApprovedStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Professional development plan is approved by the employee''s supervisor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanApprovedBySupervisor' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the professional development plan is completed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A billable basis which defines payment. This is how state agencies/programs move funding to the local provider/agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefReimbursementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The individual well child visit scheduled according to the AAP recommended periodicity schedule.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RefScheduledWellChildScreeningId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of management and accountability plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the district or state requirements or guidelines for the design and construction of school facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The authority that mandates through law, regulation, or standard that pertains to a specific mandate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMandateAuthorityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of fee that one must pay when getting a mortgage.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RefFacilityFinancingFeeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of money the school must pay to rent the facility that it is in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'FacilityLeaseAmount' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category of payment that a school must pay to rent the facility that it is in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseAmountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount the borrower pays the lender to compensate the lender for the use of money to purchase a building or facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityMortgageInterestAmount' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of interest paid on a mortgage to the lender to compensate the lender for the use of money to purchase a building or facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of a mortgage as it relates to priority of payment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of indebtedness allowed by law to be carried by the school district.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'IndebtednessAmountAllowed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The dollar amount a school district must pay before its insurance will compensate it for loss.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'InsuranceDeductible' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The millage rate used to calculate property tax revenue for K-12 public education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'PublicEducationMillRate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total assessed value of property that constitutes the basis for public borrowing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityTotalAssessedValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary purpose for which a campus is designed and/or used.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year that the condition of a system, component, equipment, or fixture was checked.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureCheckDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year a system, component, equipment, or fixture was serviced for repair or routine maintenance.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year a major component, system, equipment, or fixture is scheduled to be serviced for preventive or routine maintenance.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureScheduledServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The anticipated time (in years) from the time of installation or service that a properly maintained system, component, equipment, or fixture is expected to operate effectively and efficiently.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureUsefulLife' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the instruction space in a school is used in the calculation of student capacity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'AvailableUtilizedInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation as to whether the space is included in the calculation of school building capacity under state or local guidelines.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingCapacityFactorIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of age appropriate students who can be enrolled in a facility such that the district''s programmatic, operational, and student/teacher work load requirements are met.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'FacilityEnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of one organization’s relationship to another.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RefOrganizationRelationshipId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates the public or private entity holds legal title to the building and/or site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityOwnershipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A URL that resolves to the original or authoritative competency framework document.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkSourceUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The typical minimum age at which a person learns the defined competency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The typical maximum age at which a person learns the defined competency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Effective date of the content of a credential definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefDateEffective' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The first date a credential was offered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The last date a credential was offered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of level indicating a point in a progression through an educational or training context, for which the credential is intended; select from an existing enumeration of such types.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCTDLAudienceLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role that an organization or person has in relation to this Credential Definition based on terms defined by Credential Engine.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAgentRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category used to report the school''s performance on the progress of achieving the English language proficiency indicator.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The state defined status assigned to the school''s performance on the progress of achieving the English language proficiency indicator.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ProgressAcheivingEnglishLearnerProficiencyStateDefinedStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApipDescription', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of children ages two and above that can be served.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAge2AndOlderCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of children under the age of two that can be served.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAgeUnder2Capacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to record revenue and other receivables by source.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the activity for which a service or material object is acquired.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the service or commodity obtained as the result of a specific expenditure.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify the segregation of expenditures by instructional level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe balance sheet accounts and statement of net position accounts which are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify a fund which is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An additional code appended to the Federal Program Code used to identify a subgrant of the grant identified by the Federal Program Code.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramSubgrantCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationEnrollmentCapacityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the associated program is the primary function of this organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'PrimaryProgramIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000622', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000624', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefLeaveEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000627', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorSecondaryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000630', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000632', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000633', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000633', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000634', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RefOtherNameTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000635', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'AchievementIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000636', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'OutcomeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000647', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'TeacherOfRecord' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000648', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000648', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000649', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000649', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEntryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000651', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'ExitWithdrawalDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000652', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000653', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000654', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000655', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000656', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000657', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsMale' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000658', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsFemale' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000689', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000690', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000691', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000692', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000693', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'URI' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000694', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000695', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000696', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000697', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000698', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefCompetencyFrameworkPublicationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000699', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Jurisdiction' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000700', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000701', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000702', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Subject' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000703', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'VisionScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000704', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'Website' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000705', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HearingScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000706', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'DentalScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000707', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000708', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000709', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000710', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000711', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaDistinctionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000715', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'AssociatedEntityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000716', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefProgramSponsorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000717', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000718', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Label' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000719', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Rules' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000724', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000725', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000726', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AcademicYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000727', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000727', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000728', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDistanceEducationCourseEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000729', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000729', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000730', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'StandardOccupationalClassification' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000731', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000731', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000732', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'InstructionalStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000733', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'MedicalSchoolStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000734', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'FacultyStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000735', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000735', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000737', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000737', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000738', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefTenureSystemId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000739', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffFacultyTenureId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000740', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefAcademicRankId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000741', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000742', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'GraduateAssistantStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000743', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefGraduateAssistantIpedsCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000744', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000744', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000745', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'TuitionPublished' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000746', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RefTuitionUnitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000747', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RequiredStudentFees' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000748', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'InstitutionallyControlledHousingStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000749', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RoomCharges' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000750', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BoardCharges' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000751', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BooksAndSuppliesCosts' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000752', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'OtherStudentExpenses' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000753', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'PriceOfAttendance' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000754', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'ComprehensiveFee' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000755', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'PostsecondaryApplicant' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000756', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefAdmittedStudentId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000757', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'WaitListedStudent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000758', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGradePointAverageDomainId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000759', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolPercentile' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000760', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'HousingOnCampus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000761', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FraternityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000762', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'SororityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000763', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidApplicant' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000765', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialNeed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationTestCompanyId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000768', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepCompleterStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000769', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefAltRouteToCertificationOrLicensureId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000770', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefCriticalTeacherShortageCandidateId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000771', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefSupervisedClinicalExperienceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000772', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'ClinicalExperienceClockHours' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000773', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationCredentialExamId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000774', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationExamScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000779', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtIntakeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtPosttestId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000782', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeSpecialProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000784', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAePostsecondaryTransitionActionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000786', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000787', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000788', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAeTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000788', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAETeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000789', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'ECDegreeOrCertificateHolder' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000790', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'ProxyContactHours' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001263', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'ReleaseStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001264', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'DIFValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001265', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'KappaValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001266', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryKappaAlgorithmId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001267', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'BodyText' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001268', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stimulus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001269', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'PossibleResponseOption' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001270', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001271', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001272', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MarkingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SchedulingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001274', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'AttendanceTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001275', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EventDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001276', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefAccommodationsNeededTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdvancedPlacementCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001279', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RefPDActivityEducationLevelsAddressedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001281', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'ReactionDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001282', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergySeverityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001284', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ResultXML' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001287', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001287', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001287', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001288', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001288', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001288', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001288', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001288', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001289', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'LastUpdated' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001290', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RefCareerEducationPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001292', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolAuthorizerAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001292', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001293', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolApprovalYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefCorrectionalEducationFacilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001298', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001301', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseApplicableEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001302', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CertificationDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001303', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001306', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FundingProgram' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001307', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseHonorsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001308', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001309', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'CourseInstructionSiteName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionSiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001311', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001313', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'CourseNarrativeExplanationGrade' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001314', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'CourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001316', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CourseTotal' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001317', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefCreditHoursAppliedOtherProgramId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001318', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CTEInstructorIndustryCertification' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001319', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityDeterminationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001322', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'IEPPlacementMeetingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001323', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DistanceEducationProgramEnrollmentInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001324', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyAdmitInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001326', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralExamTakenDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001327', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDoctoralExamsRequiredCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001328', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001328', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001329', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'GroupSize' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001330', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefOrganizationMonitoringNotificationsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001331', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001332', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001333', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefPurposeOfMonitoringVisitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001334', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'TypeOfMonitoring' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001336', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefELOutcomeMeasurementLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001337', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELProfessionalDevelopmentTopicAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001338', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001339', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001340', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'StatusDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001341', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'EmergencyContactInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001342', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmployedPriorToEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001343', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001344', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FamilyConsumerSciencesCourseInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001345', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001346', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001347', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001348', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001349', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001350', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'ActualValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001351', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'BudgetedValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001352', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidIncomeLevel' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001354', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001356', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefFrequencyOfServiceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001357', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefGraduateOrDoctoralExamResultsStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001358', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningEquipmentUsed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001359', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningFollowUpRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001360', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'PartB619PotentialEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001363', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001364', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001365', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001366', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDeclineDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001367', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'DateOfTransitionPlan' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001369', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentMultipleOffenseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001371', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentPerpetratorInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001373', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RefIncidentPersonRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001374', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RegulationViolatedDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001375', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RelatedToDisabilityManifestationInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001376', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'ReportedToLawEnforcementInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001381', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001383', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramPlannedServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001384', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantProvider' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001386', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefK12EndOfCourseRequirementId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001388', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001389', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessAPITypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001390', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001391', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessModeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001392', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'AdaptationURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001393', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AssistiveTechnologiesCompatibleInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001394', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceBookFormatTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001395', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceControlFlexibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001396', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaSubTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001397', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001398', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AdaptedFromURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001778', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001779', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityCensusTract' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001781', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionDateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001782', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionMaterialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityExpectedLife' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001784', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'FacilityReplacementValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001785', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfStories' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001786', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001787', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteImprovementLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001788', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearBuilt' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001789', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearOfLastModernization' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001790', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingAirDistributionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001791', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCommMgmtComponentSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001792', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001793', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilitySystemOrComponentConditionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001794', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCoolingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001795', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingElectricalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001796', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityApplicableFederalMandateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001797', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityFederalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001798', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingFireProtectionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001799', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHeatingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001800', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHVACSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001801', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'BuildingInstitutionalEquipmentDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001802', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalConveyingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001803', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingPlumbingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001804', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSecuritySystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityStateOrLocalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001806', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'FacilityStateOrLocalMandateName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001807', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingTechnologyWiringSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001808', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityLocationOfHazardousMaterials' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001810', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityNearbyEnvHazardDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingVerticalTransportationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001813', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAdministrativeSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001814', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingArtSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001815', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingBasicClassroomDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001816', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001817', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCareerTechEducationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCirculationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001819', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingEnvOrEnergyPerformanceRatingCatId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001820', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilityFurnishingsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001821', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFoodServiceSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001822', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingIndoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001823', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingLibMediaCenterSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOperationsOrMaintSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001825', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001826', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorOrNonathleticSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001827', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingPerformingArtsSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001828', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingSchoolDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001829', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingScienceSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001830', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteOutdoorAreaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001831', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpaceDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001832', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpecEdSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001833', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingStudentSupportSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001834', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitectName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001835', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitecturalFirmName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001836', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAssemblySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001837', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceDeterminationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001838', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001839', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComponentDeficiencyDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001840', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001841', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityEstimatedCostToEliminateDeferredMaint' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001842', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityHazardousCondExpectedRemediationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001843', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFullServiceKitchenTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001844', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001845', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionTestingDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001846', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionScoreResultDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001847', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionViolationDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001848', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'InstallationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001849', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'LifecycleCost' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001850', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingSiteImprovementDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001851', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingInstructionalSpaceFactorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseRationaleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001853', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseSchedulingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001854', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUserTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001855', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingCommunityUseSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001856', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingHoursOfPublicUsePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001857', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNetAreaOfInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001858', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfTeachingStations' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001859', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingPublicUsePolicyDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001860', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefBuildingSiteUseRestrictionsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001861', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingSpaceUtilizationArea' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001862', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefStudentEnrollmentAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001863', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingUnassignedSpaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001864', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RefFacilityAuditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001865', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCharterSchoolRealtyAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001866', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCleaningStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001867', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceAgencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001868', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergyConservationMeasureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001869', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'BuildingEnergyServiceCompanyName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001870', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergySourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001871', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMgmtEmergencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001872', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityCapitalProgramMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001873', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityOperationsMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001874', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityHazardousMaterialsOrCondTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001875', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityJointDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001876', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityMaintStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001877', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityNaturallyOccurringHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001878', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityProviderTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001879', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001880', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingDateOfCertificateOfOccupancy' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001881', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'FacilityAuditDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001882', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'FacilitiesPlanDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001883', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001884', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001885', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMandateAuthorityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001886', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RefFacilityFinancingFeeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001887', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'FacilityLeaseAmount' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001888', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseAmountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001889', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001890', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityMortgageInterestAmount' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001891', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001892', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001893', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'IndebtednessAmountAllowed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001894', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'InsuranceDeductible' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001895', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'PublicEducationMillRate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001896', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityTotalAssessedValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001897', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureCheckDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001900', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureScheduledServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001943', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RefRaceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000137', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000137', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000140', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefHighSchoolGraduationRateIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000141', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000141', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000142', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'HighlyQualifiedTeacherIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000143', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'HireDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000144', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'HispanicLatinoEthnicity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000146', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RefHomelessNighttimeResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000149', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'HomelessnessStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000150', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'HonorDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000165', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InitialEnrollmentTerm' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000167', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefInstitutionTelephoneTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000168', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursAttempted' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000169', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefInstructionalActivityHoursId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000170', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefIntegratedTechnologyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000171', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'LastQualifyingMoveDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000172', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000173', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000175', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'SupervisoryUnionIdentificationNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefMagnetSpecialProgramId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000182', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MarkingPeriodName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000183', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MidTermMark' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000184', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000186', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000187', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000188', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefMepStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000190', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'CountyName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000190', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'AddressCountyName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000191', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'NameOfInstitution' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000194', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RefNeglectedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefVisaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000197', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'NormalLengthTimeForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000198', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefTimeForCompletionUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000201', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysAbsent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000202', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000202', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000205', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationOtherBenefits' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000206', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'OtherName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000207', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefParaprofessionalQualificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000209', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusRlaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000210', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'PersistentlyDangerousStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000212', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Prefix' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000213', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'PositionTitle' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000214', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000214', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000216', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000217', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RefPreKEligibleAgesNonIDEAId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000218', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'PrimaryDisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000219', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000219', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000220', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000220', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000221', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000222', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000223', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'ProgramLengthHours' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000224', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefProgramLengthHoursTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000225', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RefProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000226', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ProjectedGraduationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000227', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolChoiceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000228', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotTestedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000229', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RefActivityRecognitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000230', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefReconstitutedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000231', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RelatedCompetencyDefinitions' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000232', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefRestructuringActionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000233', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationRetirementBenefits' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000234', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'SalaryForTeachingAssignmentOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000238', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementFundsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000239', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSigInterventionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000240', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000242', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000243', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000244', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000245', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000250', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SCEDSequenceOfCourse' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000252', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Designator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000252', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'SessionDesignator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000255', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefSexId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefSingleSexClassStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000260', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000261', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000261', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000262', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000262', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000263', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationServicesExitDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000264', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000264', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000265', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'StandardizedAdmissionTestScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000266', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RefStandardizedAdmissionTestId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000267', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000268', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefStateOfResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000269', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000269', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000271', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'AttendanceRate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000272', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsStudentLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000274', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000275', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000279', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000279', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000280', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefPersonTelephoneNumberTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000281', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RefTitleIIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000282', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIInstructionalServicesId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000284', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Prekindergarten Daily Length', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Kindergarten Daily Length', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefKindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Calendar Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Calendar Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Days in Session', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'DaysInSession' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'First Instruction Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'FirstInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Last Instruction Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'LastInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Minutes', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Minutes Per Day', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MinutesPerDay' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Cost', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentCost' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Reporter Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentReporterTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reporter Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentReporterId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Behavior', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Injury Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Duration of Disciplinary Action', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DurationOfDisciplinaryAction' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Related to Zero Tolerance Policy', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RelatedToZeroTolerancePolicy' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Full Year Expulsion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'FullYearExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Shortened Expulsion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'ShortenedExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Time Description Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentTimeDescriptionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Core Academic Course', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Core Academic Course', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Class Beginning Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassBeginningTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Class Ending Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassEndingTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Class Meeting Days', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassMeetingDays' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Class Period', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassPeriod' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Timetable Day Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'TimeDayIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Receiving Location of Instruction', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RefInstructionLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Assignment Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'PrimaryAssignment' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Itinerant Teacher', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Itinerant Teacher', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'First Entry Date into a US School', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstEntryDateIntoUSSchool' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Promotion Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Nonpromotion Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefNonPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Public School Residence Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Public School Residence Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Educational Environment for School Age', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentSchoolAgeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title III Accountability Progress Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIIAccountabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Method of Children with Disabilities', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodOfCwdId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Interim Removal Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Reason Not Completing', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotCompletingId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Interim Removal', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Consolidated Migrant Education Program Funds Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ConsolidatedMepFundsStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Personnel Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Personnel Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technology Skills Standards Met', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'TechnologySkillsStandardsMet' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Federal Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Targeted Assistance Staff Funded', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Targeted Assistance Staff Funded', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proficiency Target Status for Reading and Language Arts', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusRLAId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Method for Firearms Incidents', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodFirearmsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Discipline Method for Firearms Incidents', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIDEADisciplineMethodFirearmId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Firearm Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefFirearmTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Support Services Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Support Services Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Support Services Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Educational Environment for Early Childhood', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefIDEAEnvironmentELId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Educational Environment for Early Childhood', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentECId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Progress Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Progress Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Prioritized for Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'PrioritizedForServices' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Continuation of Services Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ContinuationOfServicesStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Age Group Taught', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Age Group Taught', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technology Literacy Status in 8th Grade', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefTechnologyLiteracyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Supplemental Educational Services Funds Spent', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Public School Choice Funds Spent', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'PublicSchoolChoiceFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Pre and Post Test Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Pre and Post Test Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Pretest Outcome', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentPretestOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proficiency Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefProficiencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Supplemental Education Services Public School Choice Twenty Percent Obligation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesSchoolChoice20PercentObligation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disability Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'DisabilityStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Educational Services After Removal', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'EducationalServicesAfterRemoval' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Single Parent or Single Pregnant Woman Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'SingleParentOrSinglePregnantWoman' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cohort Graduation Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cohort Graduation Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Poverty Designation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Poverty Designation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Enrollment Action', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentActionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Access', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Access', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Technical Education Nontraditional Gender Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefNonTraditionalGenderStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Faculty and Administration Performance Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RefStaffPerformanceLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career and Technical Education Participant', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteParticipant' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career and Technical Education Nontraditional Completion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteNonTraditionalCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Responsible School Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefK12ResponsibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Additional Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Additional Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Additional Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Additional Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'LocationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'Location' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Alternate Day Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'AlternateDayName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Absent Attendance Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAbsentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Present Attendance Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefPresentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Attendance Event Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Site Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Site Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Calendar Event Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RefCalendarEventType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Content Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefContentStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Latitude', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Latitude', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Longitude', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Longitude', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Action Length Difference Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineLengthDifferenceReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Displaced Student Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Displaced Student Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Crisis Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Crisis Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Crisis Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Crisis Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Keyword Translation Language Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'KeywordTranslationLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Keyword Translation Language Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefKeywordTranslationsLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Signing Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSigningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Alternative Representation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedAlternativeRepresentationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Spoken Source Preference Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSpokenSourcePreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Read at Start Preference', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ReadAtStartPreferenceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need User Spoken Preference Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUserSpokenPreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Directions Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'AssessmentNeedDirectionsOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Masking Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedMaskingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Text Messaging String', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementTextMessagingString' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Sound File URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementSoundFileUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Time Multiplier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'AssessmentNeedTimeMultiplier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Line Reader Highlight Color', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'LineReaderHighlightColor' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Overlay Color', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'OverlayColor' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Foreground Color', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'ForegroundColor' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Background Color', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'BackgroundColor' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Increased Whitespacing Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedIncreasedWhitespacingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Testing Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Score Publish Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'ScorePublishDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Name of Professional Credential or License', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cardiopulmonary Resuscitation Certification Expiration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CardiopulmonaryResuscitationCertification' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'First Aid Certification Expiration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'FirstAidCertification' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Professional Development Activity Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Professional Development Activity Completion Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment NAICS Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment NAICS Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment NAICS Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment NAICS Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment NAICS Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Type for Organization', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RefOrganizationLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Instructional Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeInstructionalProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goals for Attending Adult Education', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefGoalsForAttendingAdultEducationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Postsecondary Transition Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'PostsecondaryTransitionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Staff Employment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Certification Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefAeCertificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Total Approved Early Childhood Credits Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalApprovedECCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Pitch', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Pitch' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NAEP Mathematical Complexity Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepMathComplexityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Published Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Descriptive Feedback Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedbackSource' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Special Event Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Special Event Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Parent URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NAEP Aspects of Reading', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepAspectsOfReadingId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssessmentNeedType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Security Issue', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Response Processing Template URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingTemplateUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Response Processing XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Response Declaration XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Outcome Declaration XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'OutcomeDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Template Declaration XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Template Processing XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Modal Feedback XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ModalFeedbackXml' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Item Body XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ItemBodyXml' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Adaptive Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Adaptive Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Course Section Mark Final Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'FinalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Copyright Holder Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightHolderName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Copyright Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Concept Keyword', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Peer Rating System Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Peer Rating Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Peer Rating System Maximum Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Peer Rating System Minimum Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Peer Rating System Optimum Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'OptimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Platform User Agent', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'PlatformUserAgent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Criteria URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'CriteriaUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Text Complexity Minimum Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Text Complexity Maximum Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accommodation Other Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'OtherDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Virtual Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Virtual Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Instructional Delivery Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Test Attempt Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestAttemptIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Award Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Award End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Peer Rating Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authentication Identity Provider Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authentication Identity Provider URI', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderUri' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authentication Identity Provider Login Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'LoginIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authentication Identity Provider Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authentication Identity Provider End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization Application Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization Application URI', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Uri' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization Application Role Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'ApplicationRoleName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Bank Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Bank Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Bank Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Bank Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Bank Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Bank Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Published Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Published Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Published Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Accommodation List', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AccommodationList' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Intended Administration Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Intended Administration End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Platforms Supported', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PlatformsSupported' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Identification System for Assessment Form Section', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RefAssessmentFormSectionIdentificationSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Time Limit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionTimeLimit' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Sealed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionSealed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Reentry', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionReentry' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssetTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Crisis Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Crisis End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Crisis End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Services Offered', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesOfferedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'AccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialAccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Level of Instruction Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Project Reporting Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialExpenditureProjectReportingCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Actor Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionActorIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Object Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Object Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Object Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access Rights URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessRightsUrlId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Author Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAuthorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Author URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Date Modified', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceDateModified' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Interaction Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Author Email', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorEmail' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Publisher Email', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherEmail' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Publisher URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Publication Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkPublicationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Sequence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefSequence' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Course Section Grade Narrative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Course Section Grade Narrative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Required', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Required', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tuition Funded', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tuition Funded', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Connected Student Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryConnectedStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Active Student Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryActiveStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Veteran Student Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryVeteranStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Admission Consideration Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Admission Consideration Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Approval Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'StaffApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Billable Basis Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefBillableBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Pathways Program Participation Exit Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationExitDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Pathways Program Participation Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential or License Award Entity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialOrLicenseAwardEntity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Developmental Education Referral Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationReferralStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Developmental Education Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Developmental Education Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Directory Information Block Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDirectoryInformationBlockStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Education and Assistance Program Eligibility', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ECEAPEligibility' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Enrollment Application Verification Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Enrollment Application Document Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Enrollment Application Document Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Enrollment Application Document Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Application Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Application Required Document', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationRequiredDocument' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Enrollment Application Verification Reason Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationReasonType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Education Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEducationStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Local Revenue Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELLocalRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefELServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning State Revenue Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELStateRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Trainer Core Knowledge Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefELTrainerCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Education Verification Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefEducationVerificationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Veteran’s Benefit Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Veteran’s Benefit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Year Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Year Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Included in Counted Family Size', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'IncludedInCountedFamilySize' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Collection Year Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'IPEDSCollectionYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Memorandum of Understanding End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Memorandum of Understanding Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Program Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefPSProgramLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Exit or Withdrawal Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPSExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Eligibility Priority Points', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'EligibilityPriorityPoints' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity State Approved Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentActivityStateApprovedStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Plan Approved by Supervisor', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanApprovedBySupervisor' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Plan Completion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reimbursement Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefReimbursementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Scheduled Well Child Screening', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RefScheduledWellChildScreeningId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Partner Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Partner Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Site Preference Rank', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'SitePreferenceRank' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Training and Technical Assistance Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'TrainingAndTechnicalAssistanceLevel' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Transfer-out Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefTransferOutIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Trimester When Prenatal Care Began', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RefTrimesterWhenPrenatalCareBeganId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Well Child Screening Received Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'WellChildScreeningReceivedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Employment Separation Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Community-based Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefCommunityBasedTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Inclusive Setting Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Inclusive Setting Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Inclusive Setting Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ServiceDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Service Professional Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELServiceProfessionalStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Fiscal Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Branch', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryBranchId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'DQP Categories of Learning', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefDQPCategoriesOfLearningId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Fiscal Period Begin Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodBeginDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Fiscal Period End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Accounting Period Encumbered Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'EncumberedValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Program Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Program Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'ProgramNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Accounting Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Accounting Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Attendance Event Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Management Organization Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolManagementOrganizationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Contract Id Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractIdNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Contract Approval Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractApprovalDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Contract Renewal Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractRenewalDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'National School Lunch Program Direct Certification Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'NSLPDirectCertificationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Maximum Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'MaximumCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Part C Eligibility Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAPartCEligibilityCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tribal Affiliation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefTribalAffiliationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Functional Expense Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Revoked Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Revoked Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedReason' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Issuer Revocation List URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RevocationListURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Image URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Completion Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Award Requirements URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RequirementsURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Award Prerequisite Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardPrerequisiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Repeatability Maximum Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RepeatabilityMaximumNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12FederalFundAllocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolIndicatorStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaAlternateFundUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Start Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Start Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'End Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'End Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Full Time Equivalency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Entry Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramEntryReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Comprehensive Support and Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefComprehensiveSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Targeted Support and Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Additional Targeted Support and Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAdditionalTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Levels Approved', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Levels Approved', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number Listed Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number Listed Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Do Not Publish Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Do Not Publish Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Do Not Publish Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Do Not Publish Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Do Not Publish Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Do Not Publish Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Out of Workforce Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Out of Workforce Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Learning Device Away From School', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAwayFromSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Learning Device Access', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAccessId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Learning Device Provider', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceProviderId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Access In Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'InternetAccessInResidence' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Barrier to Internet Access In Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefBarrierToInternetAccessInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Access Type In Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetAccessTypeInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Performance In Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetPerformanceInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cohort Median Earnings', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'CohortMedianEarnings' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Program Exit Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAdultEducationProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'WIOA Barriers to Employment', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RefWIOABarrierstoEmploymentId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'WIOA Career Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOACareerServices' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'WIOA Training Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOATrainingServices' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Federal Race and Ethnicity Declined', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'FederalRaceAndEthnicityDeclined' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Personal Information Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Role', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RefRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'First Generation College Student', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'FirstGenerationCollegeStudent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NCES SIDE Estimate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideEstimate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NCES SIDE Standard Error', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideStandardError' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NCES SIDE Date Processed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideDateProcessed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NCES SIDE Vintage Begin Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageBeginYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NCES SIDE Vintage End Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageEndYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Terminal Degree Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefinitionTerminalDegreeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Credential Attainment Postsecondary Enrollment Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Credential Attainment Employed Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentEmployedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Credential Attainment Postsecondary Credential Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSCredentialIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Days Tardy', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysTardy' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Source Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RefStaffCompensationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Annual Supplement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationAnnualSupplement' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Longevity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationLongevity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Teacher Inexperienced Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEDFactsTeacherInexperiencedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Teacher Out of Field Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefOutOfFieldStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student School Affiliation State Defined Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefStudentSchoolAffiliationStateDefinedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Source System Data Collection Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemDataCollectionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Source System Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection Open Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionOpenDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection Close Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionCloseDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection Academic School Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionAcademicSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection School Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Creator Entity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Creator Entity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Upload Speed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetUploadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Download Speed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetDownloadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Speed Test Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetSpeedTestDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Academic or Career and Technical Outcome Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Academic or Career and Technical Outcome Exit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Emancipated Minor', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'EmancipatedMinor' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Household College Students', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfHouseholdCollegeStudents' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Dependents Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefNumberOfDependentsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Children of Fallen Heroes Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'ChildrenOfFallenHeroesIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Evaluation Part Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'PartName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Evaluation Part Score or Rating', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Evaluation Part Scale', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Home Language Survey Administration Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Home Language Survey Administration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'RefDataCollectionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Project-Based Learning Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'ProjectBasedLearningIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Project-Based Learning Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'OrganizationProjectBasedLearningId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Insurance Coverage', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHealthInsuranceCoverageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dental Insurance Coverage Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalInsuranceCoverageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Level of Specialization in Early Learning', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELLevelOfSpecializationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Degree or Certificate Title or Subject', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateTitleOrSubject' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Degree or Certificate Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefDegreeOrCertificateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Credential', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodCredentialId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Initial License Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicensingDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Initial License Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Continuing License Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Continuing License Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'License Exempt', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'License Exempt', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Operation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'OperationalStatusEffectiveDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Option Variation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Option Variation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Option Variation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hours Available Per Day', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hours Available Per Day', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Days Available Per Week', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Days Available Per Week', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Setting', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Setting', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Rating and Improvement System Participation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RefQrisParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Rating and Improvement System Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment in Postsecondary Award Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Activity Hours Completed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Activity Hours Completed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Award Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classroom Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'ClassroomIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classroom Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'ClassroomId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Identification System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'IdentificationSystem' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'FormNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Abbreviation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Abbreviation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Score Metric Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Score Metric Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Recommendation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'InstructionalRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Objective', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Accommodation Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAssessmentAccommodationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Secure Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Secure Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accommodation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accommodation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Platform Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentPlatformTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Special Circumstance Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Special Circumstance Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Difficulty', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Difficulty' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Characteristic Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemCharacteristicTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Choice Pattern', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'ResponseChoicePattern' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Minimum Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Maximum Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Optimal Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'OptimalValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Distractor Analysis', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'DistractorAnalysis' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Stem', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stem' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Duration', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Duration' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Allotted Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessItemResponseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Aid Set Used', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AidSetUsed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Time Assessed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'TimeAssessed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Allotted Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Type Administered', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Performance Level Score Metric', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'ScoreMetric' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Performance Level Lower Cut Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'LowerCutScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Performance Level Upper Cut Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'UpperCutScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric URL Reference', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'UrlReference' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State ANSI Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RefStateANSICodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Person Relationship Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RefPersonRelationshipTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'City of Birth', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State of Birth Abbreviation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Birthdate Verification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Birthdate Verification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Continuation of Services Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefContinuationOfServicesReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Eligibility Expiration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MepEligibilityExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Multiple Birth Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'MultipleBirthIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Student Qualifying Arrival Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MigrantStudentQualifyingArrivalDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Qualifying Move From City', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'QualifyingMoveFromCity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Qualifying Move From Country', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromCountryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Qualifying Move From State', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromStateId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Designated Graduation School Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'DesignatedGraduationSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Enrollment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Immunization Record Flag', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ImmunizationRecordFlag' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Medical Alert Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefMedicalAlertIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Project Based', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepProjectBasedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Appealed Adequate Yearly Progress Designation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDesignation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adequate Yearly Progress Appeal Changed Designation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealChangedDesignation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adequate Yearly Progress Appeal Process Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Transferability of Funds', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'StateTransferabilityOfFunds' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title III Language Instruction Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title III Language Instruction Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instruction Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instruction Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Barrier to Educating Homeless', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefBarrierToEducatingHomelessId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Assessment Standards Funding', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessStandardsFunding' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Assessment Administration Funding', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessmentAdminFunding' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Date State Received Title III Allocation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateStateReceivedTitleIIIAllocation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Date Title III Funds Available to Subgrantees', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateTitleIIIFundsAvailableToSubgrantees' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Days for Title III Subgrants', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'NumberOfDaysForTitleIIISubgrants' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Innovative Dollars Spent', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Innovative Dollars Spent on Strategic Priorities', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpentOnStrategicPriorities' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Project Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepProjectTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Innovative Programs Funds Received', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeProgramsFundsReceived' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Literacy Assessment Administered Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RefLiteracyAssessmentId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Literacy Goal Met Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyGoalMetStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Literacy Post Test Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPostTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Literacy Pre Test Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPreTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Indicator Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'IndicatorName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Instrument', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Instrument' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Collection Frequency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'CollectionFrequency' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Year Most Recent Collection', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'MostRecentCollection' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21595', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RefCalendarEventType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21598', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefContentStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21599', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21599', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21600', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21600', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineLengthDifferenceReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21603', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21603', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21604', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21605', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21606', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21607', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21609', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21609', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21613', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21614', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21615', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21615', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefLeaveEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21620', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorSecondaryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21623', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21625', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21626', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21626', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21627', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RefOtherNameTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21636', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'AchievementIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21638', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'OutcomeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21649', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'TeacherOfRecord' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21651', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21651', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21652', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEntryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21653', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'ExitWithdrawalDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21654', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21660', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21661', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21662', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21663', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21664', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsMale' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21665', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsFemale' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21666', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21667', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21668', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21669', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21670', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'URI' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21671', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21672', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21673', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21674', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21675', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefCompetencyFrameworkPublicationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21676', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Jurisdiction' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21677', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21678', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21679', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Subject' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21680', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'VisionScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21300', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'Website' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21681', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HearingScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21682', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'DentalScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21683', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21684', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21685', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21686', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21687', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21688', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21688', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21689', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaDistinctionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21691', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'AssociatedEntityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21692', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefProgramSponsorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21693', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21694', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Label' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21695', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Rules' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21700', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21701', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21702', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AcademicYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21703', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21703', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21704', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDistanceEducationCourseEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21705', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21705', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21707', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'StandardOccupationalClassification' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21708', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21708', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21709', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'InstructionalStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21710', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'MedicalSchoolStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21711', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'FacultyStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21714', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21714', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21715', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefTenureSystemId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21716', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffFacultyTenureId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21717', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefAcademicRankId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21719', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21720', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'GraduateAssistantStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21721', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefGraduateAssistantIpedsCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21722', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21722', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21723', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'TuitionPublished' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21725', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RefTuitionUnitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22163', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'OptimumValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22112', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'PlatformUserAgent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22113', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'CriteriaUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22114', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22115', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22116', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'OtherDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22167', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22167', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22168', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22119', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestAttemptIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22120', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22121', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22169', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22170', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22171', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22122', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22123', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderUri' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22124', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'LoginIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22125', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22126', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22127', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22128', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Uri' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22129', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'ApplicationRoleName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22130', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22131', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22132', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22132', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22132', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22133', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22133', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22133', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22134', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22135', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22135', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22135', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22136', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AccommodationList' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22137', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22139', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PlatformsSupported' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22140', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22141', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RefAssessmentFormSectionIdentificationSystemId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22142', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22143', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionTimeLimit' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22144', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionSealed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22145', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionReentry' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22146', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22147', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssetTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22148', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22149', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22150', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssestIdentifierType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22151', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22152', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Owner' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22153', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentXML' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22154', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentMimeType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22155', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22173', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22174', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'SpaceDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22175', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefSpaceUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22177', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefWeaponTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22179', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionStaffRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22180', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Tier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'ContainerOnly' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22182', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22183', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'CorrectIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22184', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22185', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatement' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22186', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RefFinancialAidApplicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22188', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefNeedDeterminationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22189', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22189', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22190', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'LanguageTranslationPolicy' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22192', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22193', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22194', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefMaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22195', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefPaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramDateType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22197', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'IndividualizedProgramDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22198', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'NonInclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTransitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22201', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22202', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramLocationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22203', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanMeetingParticipants' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22204', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignedBy' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22205', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignatureDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22207', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanReevaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationFTE' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22210', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefProgramGiftedEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22211', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'CategorySystem' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22212', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22214', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22215', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Notes' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22216', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22217', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterA' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22218', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterB' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22219', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryDifficultyCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22220', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterC' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22221', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD1' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22222', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD2' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22223', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD3' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22224', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD4' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22225', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD5' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22226', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD6' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22227', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'LinkingItemIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22228', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'PointBiserialCorrelationValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22229', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'ReleaseStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22563', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22566', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialOrLicenseAwardEntity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22567', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationReferralStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22568', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22568', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22569', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDirectoryInformationBlockStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22570', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ECEAPEligibility' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22571', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22572', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22573', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22574', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22576', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22578', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationRequiredDocument' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22579', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationReasonType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22581', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEducationStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22582', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELLocalRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22583', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefELServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22584', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELStateRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22585', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefELTrainerCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22586', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefEducationVerificationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22590', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22590', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22591', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'IncludedInCountedFamilySize' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22592', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'IPEDSCollectionYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22593', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22594', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22595', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefPSProgramLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPSExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22597', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'EligibilityPriorityPoints' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22598', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentActivityStateApprovedStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22599', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanApprovedBySupervisor' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22600', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanCompletion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22601', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefReimbursementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RefScheduledWellChildScreeningId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22603', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22606', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22608', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'SitePreferenceRank' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22609', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'TrainingAndTechnicalAssistanceLevel' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefTransferOutIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RefTrimesterWhenPrenatalCareBeganId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22612', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'WellChildScreeningReceivedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22613', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22614', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefCommunityBasedTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22615', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22615', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22615', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22616', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ServiceDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELServiceProfessionalStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22620', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22621', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryBranchId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22622', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefDQPCategoriesOfLearningId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22623', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodBeginDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22624', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22625', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'EncumberedValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22626', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22627', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'ProgramNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22628', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22629', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22630', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22631', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolManagementOrganizationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22632', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractIdNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22633', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractApprovalDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22634', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractRenewalDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22635', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'NSLPDirectCertificationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22636', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'MaximumCapacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22637', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAPartCEligibilityCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22638', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefTribalAffiliationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22639', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22640', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22641', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22642', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedReason' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22643', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RevocationListURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22644', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22645', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22646', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RequirementsURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22647', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardPrerequisiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22648', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RepeatabilityMaximumNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22649', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefPESCAwardLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'EvidenceURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22651', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22652', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22653', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22654', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22655', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueRestrictionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22656', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22657', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSNaturalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22658', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22659', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22660', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSIntercollegiateAthleticsExpensesId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22661', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBPellGrantTransactionsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22662', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportScheduleId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22663', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'TransferOfRightsStatement' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22664', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22665', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'MeetingDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22666', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22667', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Applicability' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22668', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'IEPAlternativeAssessmentRationale' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22669', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'ReasonDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22670', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22671', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'CurrentPerformanceDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22672', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AccuracyPercent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22673', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AttemptsCount' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22674', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'Metric' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22675', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'SuccessCount' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12FederalFundAllocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22900', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22900', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22901', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22901', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22906', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22909', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramEntryReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22904', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefComprehensiveSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22910', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22902', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAdditionalTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22907', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22907', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22911', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22911', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22908', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21228', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotTestedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21229', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RefActivityRecognitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21230', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefReconstitutedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21231', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RelatedCompetencyDefinitions' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21232', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefRestructuringActionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21233', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationRetirementBenefits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21234', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'SalaryForTeachingAssignmentOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21238', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementFundsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21239', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSigInterventionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21240', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21242', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21243', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21244', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21245', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21250', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SCEDSequenceOfCourse' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21252', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Designator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21252', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'SessionDesignator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21255', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefSexId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefSingleSexClassStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21260', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21261', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21261', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21262', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21262', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21263', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationServicesExitDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21264', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21264', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21265', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'StandardizedAdmissionTestScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21266', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RefStandardizedAdmissionTestId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21267', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21268', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefStateOfResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21269', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21269', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21271', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'AttendanceRate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21272', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsStudentLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21274', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21275', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21279', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21279', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21280', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefPersonTelephoneNumberTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21281', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RefTitleIIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21282', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIInstructionalServicesId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21284', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21285', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefTitleISchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21289', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RefK12LeaTitleISupportServiceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21292', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'TitleIVParticipantAndRecipient' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21293', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalBenefits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21294', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'TotalNumberInClass' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21294', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolGraduatingClassSize' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21295', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalSalary' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefTransferReadyId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21297', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefTuitionResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefUSCitizenshipStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21302', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21305', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21305', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21306', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'ImmunizationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21307', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21308', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefVisionScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21309', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHearingScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeightAtBirth' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21313', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeeksOfGestation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21314', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21315', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEvaluationFindingId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21316', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21317', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesReceivedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefServicesId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21323', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21323', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21324', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'EnrollmentDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RefSchoolFoodServiceProgramId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21328', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'CustodialRelationshipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21329', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInFamily' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21330', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInHousehold' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21331', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIncome' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21332', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefFamilyIncomeSourceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21333', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefIncomeCalculationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21334', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHealthInsuranceCoverageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalInsuranceCoverageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21340', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELLevelOfSpecializationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21341', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateTitleOrSubject' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21342', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefDegreeOrCertificateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21344', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodCredentialId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21346', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21346', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21347', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicensingDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21347', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21348', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is participating in and served by programs under Title I, Part A of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of instructional services provided to students in ESEA Title I programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIInstructionalServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of employment, official status, or rank for staff working in a Title I program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Title I program offered in the school or district.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a school is designated under state and federal regulations as being eligible for participation in programs authorized by Title I of ESEA as amended and whether it has a Title I program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleISchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of support services provided to students in Title I programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12LeaTitleISupportService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person who has successfully completed a transfer-preparatory program as defined by the state or by the institution if no official state definition exists.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferReady', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s residency status for tuition purposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether or not the person is a US citizen.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefUSCitizenshipStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Category under which the person is eligible for an early childhood program or service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An accepted form of proof of residency in the district/county/other locality.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProofOfResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Status of an examination used to measure a person''s ability to see.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisionScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Status of an examination used to measure a person''s ability to perceive sounds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHearingScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The condition of a person''s mouth or oral cavity; more specifically the condition of the hard tissues (i.e., teeth and jaws) and the soft tissues (i.e., gums, tongue, lips, palate, mouth floor, and inner cheeks). Good oral health denotes the absence of clinically manifested disease or abnormalities of the oral cavity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Child developmental delay/disability determined by procedure used by appropriate qualified personnel.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEvaluationFinding', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the function and context in which a person uses a language to communicate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLanguageUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The code for the specific language or dialect that a person uses to communicate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6392Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type of program developed for a student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of service that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of service that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student''s participation in free, reduced price, full price breakfast, lunch, snack, supper, and milk programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student''s participation in free, reduced price, full price breakfast, lunch, snack, supper, and milk programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolFoodServiceProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Sources of total family income.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFamilyIncomeSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The calculation method used by a program to determine total family income.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncomeCalculationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of insurance covering an person''s hospitalization and other health or medical care.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHealthInsuranceCoverage', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The source of insurance covering an person''s dental care.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalInsuranceCoverageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The extent to which a person concentrates upon a particular subject matter area during his or her period of study at an educational institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLevelOfSpecialization', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of degree or certificate earned by a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDegreeOrCertificateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The credential related to early childhood education or development held by a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodCredential', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The condition under which a person has agreed to serve as an employee.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program or center is legally exempt from licensing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLicenseExempt', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Nature of early childhood program, class or group in which a person is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceOption', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The site or setting in which early childhood care, education, and/or services are provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnvironmentSetting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Program site participates in a Quality Rating and Improvement System (QRIS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefQrisParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of address listed for a learner or a parent, guardian, family member or related person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the award level in which the person is currently enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the financial aid type being reported is aid that has been awarded, accepted or dispersed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific method used to report the performance and achievement of the assessment. This is the metric that is being used to derive the scores.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScoreMetricType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A category of accommodations needed for a given assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAccommodationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific accommodation necessary for assessment or instruction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The platform with which the assessment was delivered to the student during the assessment session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPlatformType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An unusual event occurred during the administration of the assessment. This could include fire alarm, student became ill, etc.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionSpecialCircumstanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific type of assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of psychometric measure provided for assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemCharacteristicType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the response for a given item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of assessment administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministered', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The American National Standards Institute (ANSI) two-digit code for the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStateANSICode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of a person''s relationship to another person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonRelationshipType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Reason why the student is being served under the continuation of services provision of the MEP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContinuationOfServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of school/migrant education project in which instruction and/or support services are provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Alert indicator for a medical/health condition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMedicalAlertIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates the type of MEP project based on the location where the MEP services are held.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectBased', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Title III language instructional education programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIILanguageInstructionProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Barriers to the enrollment and success of homeless children and youths.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToEducatingHomeless', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the type of transfer for an LEAs that transferred funds from an eligible program to another eligible program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaFundsTransferType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of project funded in whole or in part by MEP funds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of literacy test administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLiteracyAssessment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of use of the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRlisProgramUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Title III professional development utilized.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIProfessionalDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the consequences of an incident for the student(s) involved in an incident as perpetrator(s).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplinaryActionTaken', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The portion of a day that a pre-kindergarten program is provided to the students it serves.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramDayLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information on the type of person who reported the incident. When known and/or if useful, use a more specific option code (e.g., "Counselor" rather than "Professional Staff").', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentReporterType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Categories of behavior coded for use in describing an incident.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehavior', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the occurrence of physical injury to participants involved in the incident and, if so, the level of injury sustained.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code for the description of the time of day that an incident took place.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentTimeDescriptionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of location at which instruction or service takes place.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of the student''s promotion or progress at the end of a given school term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason as to why a staff member determined that a student should not be promoted (or be demoted).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the location of a persons legal residence relative to (within or outside) the boundaries of the public school attended and its administrative unit.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The setting in which children ages 6 through 21, receive special education and related services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentSchoolAge', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the progress made by a student toward English proficiency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIAccountability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The classification of education agencies within the geographic boundaries of a state according to the level of administrative and operational control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of suspension or expulsion used for the discipline of children with disabilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodOfCwd', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reasons why children with disabilities were unilaterally removed from their current educational placement to an interim alternative educational setting.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemovalReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason a participant did not complete an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotCompleting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of interim removal from current educational setting experienced by children with disabilities (IDEA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemoval', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason why the student was disciplined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of federal program funding allocation or distribution made.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramFundingAllocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method used to discipline students who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodFirearms', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The methods used to discipline students who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisciplineMethodFirearm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of firearm.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFirearmType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program in which children ages 3 through 5 attend and in which these children receive special education and related services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentEC', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program in which children ages 3 through 5 attend and in which these children receive special education and related services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEnvironmentEL', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the local education agency (LEA) notified the state of the LEA''s intention to use REAP-Flex Alternative Uses of Funding Authority during the school year as specified in the Title VI, Section 6211 of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReapAlternativeFundingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of progress shown in academic subjects.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The age range of special education students taught.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationAgeGroupTaught', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the technology literacy of 8th graders.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnologyLiteracyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether students took both a pre-test and a post-test to measure academic improvement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreAndPostTestIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The results of a pre-test in academic subjects.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPretestOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a student''s scores were proficient.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation of a school’s poverty quartile for purposes of determining classes taught by highly qualified teachers in high and low poverty schools, according to state’s indicator of poverty.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStatePovertyDesignation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The action taken with respect to postsecondary enrollment by the student who graduated from the school, LEA or state in the past two years.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of internet access available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether CTE participants were members of an underrepresented gender group (where one gender comprises less than 25 percent of the persons employed in those occupations or field of work).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether CTE participants were members of an underrepresented gender group (where one gender comprises less than 25 percent of the persons employed in those occupations or field of work).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The levels used in district evaluation systems for assigning teacher or principal performance ratings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffPerformanceLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Status toward achievement of the annual goal or short-term objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of time by which a cycle is defined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of Individualized Education Plan document authorized.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPAuthorizationDocumentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of person who authorized the decision or document.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Purpose within the IEP lifecycle for which the eligibility evaluation is conducted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPEligibilityEvaluationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Category of evaluation used for IDEA eligibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEligibilityEvaluationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A category of disability that describes a person’s impairment defined by the Individuals with Disabilities Education Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method used to conduct the assessment being referenced.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAssessMethodType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used for identification and record-keeping purposes by a credentialing organization to refer to a qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialIdentifierSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the credential offered by a credentialing organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended type of application of the credential by the holder.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefIntendedPurposeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A resource describing the means by which someone can verify whether a credential has been attained by a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefVerificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credentialing organization or entity as defined by the Credential Transparency Description Language.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The O*NET-SOC taxonomy defines the set of occupations across the world of work based on the Standard Occupational Classification.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefONETSOCOccupationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the extent to which a school offers instruction in which students and teachers are separated by time and/or location, and interaction occurs via computers and/or telecommunications technologies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVirtualSchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of participation by a school in the National School Lunch Program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNationalSchoolLunchProgramStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether or not a building is eligible to be or has been declared a landmark or historic building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHistoricStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary use type of the building in which a school is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPrimaryUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The generalized use or control of a campus, independent of program type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Designation of the nature of the construction completion date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary material used for the construction of a building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionMaterialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of location of the designed and constructed improvements made to a site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteImprovementLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary means by which air is circulated, freshened, and exhausted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAirDistributionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system, interface, and management components for carrying voice, video, and data throughout a building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommMgmtComponentSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school, building, site, system, component, equipment, vehicle, or fixture conforms to the requirements or standards specified in federal, state, or local standards or codes or other officially required guidelines or regulations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The rating of the system or component functions under the demands of its regular operation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySystemOrComponentCondition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of mechanical systems and building designs used for cooling.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCoolingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The components and system required to distribute electricity throughout the building or site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingElectricalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The particular federal law, regulation, or standard that pertains to a school facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityApplicableFederalMandateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFederalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system that protects the facility against fire.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFireProtectionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which the heat is distributed and delivered throughout the room(s) or building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHeatingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The building service system that provides for heating, ventilation and air-conditioning.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHVACSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Mechanical means for moving people and equipment within buildings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalConveyingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The component of an on-site system for supplying, eliminating, and treating water.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPlumbingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system that protects the facility from intrusion.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSecuritySystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStateOrLocalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The means through which voice, video, audio, and data information are conveyed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingTechnologyWiringSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The major manufactured systems required to operate a building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system that is installed in the building or site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system used to convey persons or freight between floors.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingVerticalTransportationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed primarily for conducting administrative and business functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAdministrativeSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed to support the teaching and learning of 2 dimensional or 3 dimensional visual arts.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingArtSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classroom designed for instruction of a particular age group, but not a specific subject.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingBasicClassroomDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary design or purpose of a building, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCareerTechEducationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A space designed to enable people to move within the building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCirculationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary groupings that rating organizations use to evaluate environmental sustainability and energy use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnvOrEnergyPerformanceRatingCat', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Moveable assets that are provided so the building or interior assets can be utilized by occupants for their intended purposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFurnishingsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space located, designed, furnished and equipped to support meal programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFoodServiceSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingIndoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingLibMediaCenterSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOperationsOrMaintSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The outdoor space located, designed, furnished, and equipped primarily for recreation, play and outdoor environmental education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorOrNonathleticSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed, located, furnished, and equipped for instruction and support of music and drama curricula and productions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPerformingArtsSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The physical layout and character of a school facility, as determined by age groups served and educational programs provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSchoolDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed, located, furnished, and equipped for instruction and experimentation in science.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingScienceSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designated constructed outdoor area on a public school site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteOutdoorAreaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary design or purpose of a space, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpaceDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpecEdSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingStudentSupportSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An area designed primarily for theater productions, assemblies, and other large gatherings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAssemblySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of kitchen housed in the facility as defined by whether it prepares food to be served onsite and/or at additional locations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFullServiceKitchenType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation as to whether the space is considered an instructional space under state or local guidelines.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingInstructionalSpaceFactorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reasons for permitting and participating in joint-use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseRationaleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of designation of non school district users by the amount of time they have access to public school for joint use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseSchedulingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of users sharing school district controlled, owned, or utilized facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUserType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed primarily for community or shared use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommunityUseSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A characterization of a site that would define restrictions or opportunities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSiteUseRestrictionsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentEnrollmentAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityAuditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of real estate vehicle through which a public charter school has access and control of its building space.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCharterSchoolRealtyAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The standard for cleanliness, and benchmarks for how much space can be assigned to one properly supplied custodian to meet these standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCleaningStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agency that has ultimate responsibility for the compliance determination.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceAgencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of modification to, or replacement of, a piece of equipment or building shell/system that increases energy efficiency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergyConservationMeasureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The source of energy that directly powers a school district facility or building system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergySourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMgmtEmergencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of management organization for planning, design, and construction of major capital projects.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityCapitalProgramMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of management arrangements whereby a district oversees and manages its facilities operations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityOperationsMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of hazardous materials or conditions tested for at a site or building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityHazardousMaterialsOrCondType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of development where two or more entities partner to plan, site, design, and/or build a new school or renovate an existing school to better support the joint use of the building and/or land.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityJointDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The standard for maintenance of a component, system, or building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMaintStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of natural hazard that can affect the health, safety and operation of school facilities and their occupants.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityNaturallyOccurringHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of how utilities are supplied to a site or a building by a company or provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityProviderType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of utility used in the operation of a facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of management and accountability plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the district or state requirements or guidelines for the design and construction of school facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The authority that mandates through law, regulation, or standard that pertains to a specific mandate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMandateAuthorityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of fee that one must pay when getting a mortgage.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFinancingFeeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category of payment that a school must pay to rent the facility that it is in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseAmountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of interest paid on a mortgage to the lender to compensate the lender for the use of money to purchase a building or facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of a mortgage as it relates to priority of payment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary purpose for which a campus is designed and/or used.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001023', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLanguageLearnerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001024', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSupportTool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUsageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLinkIndicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001032', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleGradeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001033', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedNumberOfBrailleDots', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleMarkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001037', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleStatusCellType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001040', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSigningType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedAlternativeRepresentationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001042', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSpokenSourcePreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUserSpokenPreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001046', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedMaskingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001054', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedIncreasedWhitespacingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001066', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001077', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeInstructionalProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001078', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001079', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalsForAttendingAdultEducation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001083', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001085', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeCertificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001088', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepMathComplexityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001122', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepAspectsOfReading', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001158', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefApipInteractionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001161', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001190', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentFormSectionIdentificationSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001206', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpaceUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001209', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCounty', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001211', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWeaponType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001212', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionStaffRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001223', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidApplicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001224', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeedDeterminationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001231', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001235', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramTransitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001237', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001244', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramGiftedEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001248', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefImmunizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001253', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryDifficultyCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001266', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryKappaAlgorithm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationsNeededType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdvancedPlacementCourseCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001279', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityEducationLevelsAddressed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001282', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergySeverity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001287', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBlendedLearningModelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001288', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerCluster', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001290', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerEducationPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001292', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectionalEducationFacilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseAcademicGradeStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001301', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseApplicableEducationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001303', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001307', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseHonorsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001308', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionSiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001311', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001317', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditHoursAppliedOtherProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001319', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityDeterminationSourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001327', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDoctoralExamsRequiredCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001328', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFederalFundingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001330', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationMonitoringNotifications', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001333', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPurposeOfMonitoringVisit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOtherFederalFundingSources', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001336', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOutcomeMeasurementLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001337', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProfessionalDevelopmentTopicArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001339', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibilityStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001342', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedPriorToEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001343', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatusWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001345', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001347', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountFundClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001349', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountProgramCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountBalanceSheetCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001354', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureFunctionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureObjectCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001356', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyOfService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001357', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateOrDoctoralExamResultsStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001369', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentMultipleOffenseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001371', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPerpetratorInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001373', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPersonRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001383', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramPlannedServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001386', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12EndOfCourseRequirement', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001389', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessAPIType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001390', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001391', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessModeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001394', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceBookFormatType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001395', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceControlFlexibilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001396', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaSubType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001397', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001399', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceMediaFeatureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001401', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourcePhysicalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001408', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefNodeAccessibilityProfile', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001411', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefTestabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001414', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNCESCollegeCourseMapCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001430', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDAudienceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001431', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDDeliveryMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001433', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityApprovedPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001436', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001439', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001442', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001457', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDSessionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001458', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDInstructionalDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001468', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountRevenueCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001482', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReferralOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001492', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityTargetAudience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001494', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceDeliveryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001495', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWorkbasedLearningOpportunityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001501', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAIEPStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001503', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutcomeTimePoint', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001510', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMethodOfServiceDelivery', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001516', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseSubjectArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001519', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceFrequency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001521', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReasonDelayTransitionConf', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityTimeMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001538', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseScoreStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001541', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentRegistrationCompletionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultDataType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001547', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001555', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLevelOfInstructionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001561', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessRightsUrl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001562', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAuthorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001565', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001576', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryConnectedStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001577', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryActiveStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001578', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001579', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001580', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001582', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBillableBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationReferralStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Score Metric Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScoreMetricType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Accommodation Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAccommodationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accommodation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Platform Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPlatformType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Special Circumstance Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionSpecialCircumstanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Characteristic Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemCharacteristicType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Type Administered', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministered', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State ANSI Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStateANSICode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Person Relationship Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonRelationshipType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Continuation of Services Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContinuationOfServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Enrollment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Medical Alert Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMedicalAlertIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Project Based', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectBased', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title III Language Instruction Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIILanguageInstructionProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Barrier to Educating Homeless', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToEducatingHomeless', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Funds Transfer Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaFundsTransferType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Project Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Literacy Assessment Administered Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLiteracyAssessment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Type of Use of the Rural Low-Income Schools Program', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRlisProgramUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title III Professional Development Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIProfessionalDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disciplinary Action Taken', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplinaryActionTaken', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Prekindergarten Daily Length', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramDayLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Reporter Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentReporterType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Behavior', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehavior', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Injury Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Time Description Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentTimeDescriptionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Receiving Location of Instruction', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Promotion Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Nonpromotion Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Public School Residence Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Educational Environment for School Age', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentSchoolAge', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title III Accountability Progress Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIAccountability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Method of Children with Disabilities', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodOfCwd', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Interim Removal Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemovalReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Reason Not Completing', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotCompleting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Interim Removal', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemoval', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Federal Programs Funding Allocation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramFundingAllocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Method for Firearms Incidents', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodFirearms', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Discipline Method for Firearms Incidents', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisciplineMethodFirearm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Firearm Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFirearmType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Support Services Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Educational Environment for Early Childhood', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentEC', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Educational Environment for Early Childhood', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEnvironmentEL', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rural Education Achievement Program Alternative Funding Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReapAlternativeFundingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Progress Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Age Group Taught', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationAgeGroupTaught', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technology Literacy Status in 8th Grade', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnologyLiteracyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Pre and Post Test Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreAndPostTestIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Pretest Outcome', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPretestOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proficiency Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Poverty Designation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStatePovertyDesignation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Enrollment Action', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Access', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Technical Education Nontraditional Gender Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Technical Education Nontraditional Gender Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Faculty and Administration Performance Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffPerformanceLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Additional Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Absent Attendance Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAbsentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Present Attendance Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPresentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Attendance Event Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Calendar Event Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCalendarEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Content Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContentStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Action Length Difference Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineLengthDifferenceReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Personal Information Verification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Separation Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Separation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classroom Position Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefClassroomPositionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Leave Event Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaveEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Secondary Incident Behavior', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehaviorSecondary', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other Name Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOtherNameType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Type for Organization', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Assignment Role', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingAssignmentRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Entry Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Exit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Publication Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyFrameworkPublicationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Curriculum Framework Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCurriculumFrameworkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Diploma Distinction Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaDistinctionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Sponsor Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramSponsorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Term Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicTermDesignator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Distance Education Course Enrollment', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDistanceEducationCourseEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Predominant Calendar System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPredominantCalendarSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Occupational Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIpedsOccupationalCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Staff Contract Length', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffContractLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Full-time Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFullTimeStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Contract Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentContractType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tenure System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTenureSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Staff Faculty Tenure Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffFacultyTenure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Rank', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicRank', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instruction Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Graduate Assistant IPEDS Occupation Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateAssistantIpedsCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tuition Unit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Admitted Student', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmittedStudent', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Domain', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGradePointAverageDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Education Test Company', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationTestCompany', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Preparation Program Enrollment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Preparation Program Completer Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepCompleterStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Alternative Route to Certification or Licensure', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAltRouteToCertificationOrLicensure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Critical Teacher Shortage Area Candidate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCriticalTeacherShortageCandidate', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Supervised Clinical Experience', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSupervisedClinicalExperience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Education Credential Exam Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationCredentialExam', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Education Credential Exam Score Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationExamScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Educational Functioning Level at Intake', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtIntake', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Educational Functioning Level at Posttest', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtPosttest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Instructional Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeInstructionalProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Special Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeSpecialProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goals for Attending Adult Education', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalsForAttendingAdultEducation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Postsecondary Transition Action', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAePostsecondaryTransitionAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Staff Employment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Certification Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeCertificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Provider Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional or Technical Credential Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalTechnicalCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Wage Collection Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageCollectionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Development Associate Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentAssociateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Financial Support Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalDevelopmentFinancialSupport', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Core Knowledge Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Higher Education Institution Accreditation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHigherEducationInstitutionAccreditationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Wage Verification Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Group Size Standards Met', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELGroupSizeStandardMet', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21002', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicHonorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21011', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAypStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdministrativeFundingControl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21015', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAlternativeSchoolFocus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicSubject', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentParticipationIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionAssessmentReportingMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21029', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21038', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCarnegieBasicClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21045', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipVersion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefControlOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21049', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectiveActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21050', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCountry', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseGpaApplicability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21061', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelCharacteristic', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21065', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseRepeatCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21071', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditTypeEarned', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21075', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteGraduationRateInclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21076', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21079', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDependencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12StaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmailType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21091', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefElementaryMiddleAdditional', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21092', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21093', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEndOfTermStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21094', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21095', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21096', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21099', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21106', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCohortExclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21110', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21113', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21123', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGpaWeightedIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21134', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGunFreeSchoolsActReportingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21140', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolGraduationRateIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21146', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHomelessNighttimeResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncreasedLearningTimeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21167', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstitutionTelephoneType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21169', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalActivityHours', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21170', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIntegratedTechnologyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21173', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLevelOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMagnetSpecialProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21186', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21187', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21188', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21194', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeglectedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21198', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTimeForCompletionUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21207', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParaprofessionalQualification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParticipationStatusAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21216', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrekindergartenEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21217', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreKEligibleAgesNonIDEA', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21218', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21220', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalEducationJobClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21221', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyTargetAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21222', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21224', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramLengthHoursType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21225', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21227', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolChoiceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21228', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotTested', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21229', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityRecognitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21230', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReconstitutedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21232', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRestructuringAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21238', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementFunds', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21239', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSigInterventionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21240', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21242', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21255', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSex', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSingleSexClassStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21260', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21266', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStandardizedAdmissionTest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21267', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefState', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21272', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsStudentLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialBasis', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21280', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21280', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21281', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21282', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIInstructionalServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21284', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21285', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleISchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21289', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12LeaTitleISupportService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferReady', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21297', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefUSCitizenshipStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21305', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProofOfResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21308', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisionScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21309', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHearingScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21314', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21315', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEvaluationFinding', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21316', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLanguageUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21317', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6392Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolFoodServiceProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21332', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFamilyIncomeSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21333', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncomeCalculationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21334', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHealthInsuranceCoverage', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalInsuranceCoverageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21340', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLevelOfSpecialization', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22662', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportSchedule', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22678', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22679', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPGoalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22682', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22683', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22694', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22700', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPAuthorizationDocumentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22701', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22709', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPEligibilityEvaluationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22710', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEligibilityEvaluationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22714', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22719', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAssessMethodType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22720', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialIdentifierSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22721', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22730', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefIntendedPurposeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22734', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefVerificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22737', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefONETSOCOccupationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22747', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVirtualSchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22748', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNationalSchoolLunchProgramStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22753', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHistoricStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22758', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPrimaryUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22759', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22762', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22763', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionMaterialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22768', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteImprovementLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22771', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAirDistributionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22772', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommMgmtComponentSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22773', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22774', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySystemOrComponentCondition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22775', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCoolingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22776', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingElectricalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22777', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityApplicableFederalMandateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22778', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFederalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22779', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFireProtectionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHeatingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22781', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHVACSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalConveyingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22784', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPlumbingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22785', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSecuritySystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22786', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStateOrLocalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22788', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingTechnologyWiringSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22790', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22792', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22793', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingVerticalTransportationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22794', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAdministrativeSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22795', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingArtSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22796', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingBasicClassroomDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22797', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22798', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCareerTechEducationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22799', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCirculationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22800', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnvOrEnergyPerformanceRatingCat', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22801', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFurnishingsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22802', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFoodServiceSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22803', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingIndoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22804', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingLibMediaCenterSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOperationsOrMaintSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22806', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22807', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorOrNonathleticSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22808', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPerformingArtsSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSchoolDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22810', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingScienceSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteOutdoorAreaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpaceDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22813', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpecEdSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22814', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingStudentSupportSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22817', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAssemblySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFullServiceKitchenType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22832', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingInstructionalSpaceFactorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22833', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseRationaleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22834', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseSchedulingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22835', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUserType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22836', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommunityUseSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22841', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSiteUseRestrictionsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22843', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentEnrollmentAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22845', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityAuditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22846', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCharterSchoolRealtyAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22847', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCleaningStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22848', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceAgencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22849', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergyConservationMeasureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22851', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergySourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMgmtEmergencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22853', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityCapitalProgramMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22854', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityOperationsMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22855', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityHazardousMaterialsOrCondType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22856', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityJointDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22857', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMaintStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22858', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityNaturallyOccurringHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22859', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityProviderType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22860', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22864', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22865', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22866', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMandateAuthorityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22867', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFinancingFeeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22869', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseAmountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22870', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22872', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22873', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22878', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22886', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationRelationship', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22894', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLAudienceLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22895', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAgentRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22896', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22902', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22904', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefComprehensiveSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22909', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramEntryReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22910', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22911', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberListedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22915', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdultEducationProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22916', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToInternetAccessInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22926', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDataCollectionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of how CTE concentrators are included in the state''s computation of its graduation rate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefCteGraduationRateInclusionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of a person''s attendance associated with an Attendance Event Type and Attendance Event Date in an organization-person-role context.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the course is a part of a degree program. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'DegreeApplicability' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Person is enrolled in courses for credit and recognized by the institution as seeking a degree, certificate, or other formal award. High school students also enrolled in postsecondary courses for credit are not considered degree/certificate-seeking.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateSeekingStudent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s classification as dependent or independent with regards to eligibility for Title IV Federal Student aid.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefDependencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication whether the LEA is covered by a desegregation plan either ordered by a court or entered into with the Office for Civil Rights under Title VI of the Civil Rights Act of 1964.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'DesegregationOrderOrPlan' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'AwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a discipline action ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a discipline action begins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person who ; (A) (i) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; (ii) has been dependent on the income of another family member but is no longer supported by that income; or (iii) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (B) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person who ; (A) (i) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; (ii) has been dependent on the income of another family member but is no longer supported by that income; or (iii) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (B) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits awarded a student by the postsecondary institution based on successful completion of dual credit/dual enrollment courses. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DualCreditDualEnrollmentCredits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The titles of employment, official status, or rank of education staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The titles of employment, official status, or rank of education staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The titles of employment, official status, or rank of education staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the person or organization belongs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'ElectronicMailAddress' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the person or organization belongs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'EmailAddress' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of electronic mail (e-mail) address listed for a person or organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of electronic mail (e-mail) address listed for a person or organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' An indication of whether the school or district met the Elementary/Middle Additional Indicator requirement in accordance with state definition for the purpose of determining Adequate Yearly Progress (AYP).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefElementaryMiddleAdditionalId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of the student''s progress at the end of a given school term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEndOfTermStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether a student''s name was, is, or will be officially registered on the roll of a school or schools.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the enrollment type associated with the enrollment award level of a person at the beginning of a term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the student''s enrollment status for a particular term as defined by the institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a person entered and began to receive instructional services at a postsecondary institution for the first time after completing high school (or its equivalent). ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'EntryDateIntoPostsecondary' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The process by which a student enters a school during a given academic session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The grade level or primary instructional level at which a student enters and receives services in a school or an educational institution during a given academic session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The actual or estimated number of clock minutes required for course completion. This number is especially important for career and technical education course and may represent (in minutes) the clock hour requirement of the course, the number of minutes (or clock hours) of class time per week, times the number of equivalent weeks the class typically meets.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'TimeRequiredForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The result of an assessment of a person''s performance.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Outcome' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The quantitative or qualitative range of possible scores/rating for a person''s overall performance (e.g., 0 - 10; Poor, Fair, Average, Good, Excellent).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The actual quantitative or qualitative assessment of a person''s overall performance.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The instrument and/or set of procedures with which a person''s performance is assessed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'System' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Those persons who may be removed (deleted) from a cohort (or subcohort). For the Graduation Rates and Fall Enrollment retention rate reporting, persons may be removed from a cohort if they left the institution for one of the following reasons: death or total and permanent disability; service in the armed forces (including those called to active duty); service with a foreign aid service of the federal government, such as the Peace Corps; or service on official church missions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCohortExclusionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The circumstances under which the student exited from membership in an educational institution. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of financial aid awarded to a person for the term/year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidAwardAmount' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of financial aid awarded to a person for the academic term/year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full legal first name given to a person at birth, baptism, or through legal change.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person who has no prior postsecondary experience attending any institution for the first time at the undergraduate level since completing high school (or its equivalent). This includes persons enrolled in academic or occupational programs. It also includes persons enrolled in the fall term who attended college for the first time in the prior summer term, and persons who entered with advanced standing (college credits earned before graduation from high school).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstTimePostsecondaryStudent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An appendage, if any, used to denote a person''s generation in his family (e.g., Jr., Sr., III).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'GenerationCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the reported Grade Point Average is weighted or unweighted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the reported Grade Point Average is weighted or unweighted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A final indicator of student performance in a course section as submitted by the instructor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A final indicator of student performance in a course section as submitted by the instructor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student''s grade level at time of course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student''s grade level at time of course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The grade or developmental level of a student when assessed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelToBeAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The grade or developmental level of a student when assessed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The value of the total quality points divided by the Credit Hours for Grade Point Average. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverage' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A measure of average performance in all courses taken by a person during his or her school career as determined for record-keeping purposes. This is obtained by dividing the total grade points received by the total number of credits attempted. This usually includes grade points received and credits attempted in his or her current school as well as those transferred from schools in which the person was previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A measure of average performance in all courses taken by a person during his or her school career as determined for record-keeping purposes. This is obtained by dividing the total grade points received by the total number of credits attempted. This usually includes grade points received and credits attempted in his or her current school as well as those transferred from schools in which the person was previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A measure of average performance in all courses taken by a person during his or her school career as determined for record-keeping purposes. This is obtained by dividing the total grade points received by the total number of credits attempted. This usually includes grade points received and credits attempted in his or her current school as well as those transferred from schools in which the person was previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A measure of average performance in all courses taken by a person during a given session. This is obtained by dividing the total grade points received by the number of credits attempted for the same session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'GradePointAverageGivenSession' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cumulative number of grade points a person earns by successfully completing courses or examinations during his or her enrollment in the current school as well as those transferred from schools in which the person had been previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific grade or combination of grades offered by an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific grade or combination of grades offered by an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic year in which a student entered as part of the GRS cohort.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyCohortYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether or not the student is in a GRS cohort; meaning the student began as a first-time, full-time, degree seeking student in the fall of a given year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or local education agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, as defined by Title 18, Section 921.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefGunFreeSchoolsActReportingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the education unit has adopted written policy prohibiting harassment and bullying on the basis of a civil rights law.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'HarassmentOrBullyingPolicy' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Contributions made by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider''s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationHealthBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that this course credit is required for a high school diploma.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that this course credit is required for a high school diploma.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of diploma/credential that is awarded to a person in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of diploma/credential that is awarded to a person in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the High School Graduation Rate requirement in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefHighSchoolGraduationRateIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a school or district appealed its AYP designation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDesignation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the appeal resulted in a change in a school or district''s AYP designation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealChangedDesignation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The last date that an appeal of an AYP designation was processed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Did the State transfer funds under the State Transferability authority of Section 6123(a)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'StateTransferabilityOfFunds' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Title III language instructional education programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Title III language instructional education programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The language of instruction, other than English, used in the program or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The language of instruction, other than English, used in the program or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Barriers to the enrollment and success of homeless children and youths.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefBarrierToEducatingHomelessId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The percentage of funds used to pay the costs of the development of the State assessments and standards required by section 1111(b).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessStandardsFunding' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The percentage of funds used to administer assessments required by section 1111(b) or to carry out other activities described in section 6111 and other activities related to ensuring that the State’s schools and local educational agencies are held accountable for results.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessmentAdminFunding' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Annual date the State receives the Title III allocation from U.S. Department of Education (ED).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateStateReceivedTitleIIIAllocation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Annual date that Title III funds are available to approved subgrantees.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateTitleIIIFundsAvailableToSubgrantees' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Average number of days for States receiving Title III funds to make subgrants to subgrantees beginning from July 1 of each year, except under conditions where funds are being withheld.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'NumberOfDaysForTitleIIISubgrants' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total Title V, Part A funds expended by LEAs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total amount of Title V, Part A funds expended by LEAs for the four strategic priorities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpentOnStrategicPriorities' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of project funded in whole or in part by MEP funds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepProjectTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total Title V, Part A funds received by LEAs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeProgramsFundsReceived' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of literacy test administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RefLiteracyAssessmentId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The participant showed "significant learning gains" on measures of reading, the definition of which is determined at the State level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyGoalMetStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The participant completed a literacy post-test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPostTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The participant completed a literacy pre-test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPreTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the performance indicator for student behaviors under the Safe and Drug-Free Schools and Communities Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'IndicatorName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The instrument or data source for reported performance indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Instrument' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The frequency of data collection for performance indicator under the Safe and Drug-Free Schools and Communities Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'CollectionFrequency' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic year of the most recent collection of the performance indicator under the Sage and Drug-Free Schools and Communities Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'MostRecentCollection' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The targeted performance for the given indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Target' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Actual performance for the given indicator of student behavior under the Safe and Drug-Free Schools and Communities Act', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Performance' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The baseline of the performance indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Baseline' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic year the baseline was established.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'BaselineYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date the school exited school improvement status.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'SchoolImprovementExitDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a Title III program or activity was terminated due to failure to meet goals.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'TerminatedTitleIIIProgramFailure' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a Neglected or Delinquent student obtained employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'ObtainedEmployment' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An institution/facility/program that serves more than one programming purpose. For example, the same facility may run both a juvenile correction program and a juvenile detention program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'ProgramInMultiplePurposeFacility' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of use of the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RefRlisProgramUseId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Title III professional development utilized.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RefTitleIIIProfessionalDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the consequences of an incident for the student(s) involved in an incident as perpetrator(s).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplinaryActionTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The portion of a day that a pre-kindergarten program is provided to the students it serves.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The portion of a day that a kindergarten program is provided to the students it serves.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefKindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number assigned by a school district to a school calendar.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description or identification of the calendar.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of days that the school was or is anticipated to be in session during the school year. Also included are days on which the education institution facility is closed and the student body as a whole is engaged in planned activities off-campus under the guidance and direction of staff members.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'DaysInSession' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of the first day of student instruction for the school year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'FirstInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of the last day of student instruction (including days or times that students are present for purposes of testing and/or evaluation, but not including whole or part-days whose sole purposes is for distribution of report cards).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'LastInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of instruction minutes in a given session, as determined by time in class, time on task (e.g., engaged in a class), or as estimated by a qualified course designer.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of minutes in the day in which the school is normally in session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MinutesPerDay' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A locally assigned unique identifier (within the school or school district) to identify each specific incident or occurrence. The same identifier should be used to document the entire incident even if it included multiple offenses and multiple offenders.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the incident occurred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the time of day the incident took place.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A locally assigned unique number or alphanumeric code used to capture precise information on locations specific to a school (e.g., building number, class number, hall number, school bus number, computer station number, or internet protocol (IP) address).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The value of any quantifiable monetary loss directly resulting from the incident. Examples include the value of repairs necessitated by vandalism of a school facility, the value of personnel resources used for repairs or consumed by the incident, the value of stolen items, and the value of time consumed by an incident (e.g., instructional time involved in evacuating a school during a false fire alarm). Cost may be reported by specific monetary amount or range.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentCost' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information on the type of person who reported the incident. When known and/or if useful, use a more specific option code (e.g., "Counselor" rather than "Professional Staff").', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentReporterTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the reporter of the incident using a pre-existing unique student identifier or unique staff identifier, when the reporter is a student or staff member.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentReporterId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description for an incident.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Categories of behavior coded for use in describing an incident.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the occurrence of physical injury to participants involved in the incident and, if so, the level of injury sustained.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The length, in school days, of the disciplinary action.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DurationOfDisciplinaryAction' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether or not any of the disciplinary actions taken against a student were imposed as a consequence of state or local zero tolerance policies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RelatedToZeroTolerancePolicy' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An expulsion with or without services for a period of one full year (i.e., 365 days).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'FullYearExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An expulsion with or without services that is shortened to a term of less than one year by the superintendent or chief administrator of a school district.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'ShortenedExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code for the description of the time of day that an incident took place.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentTimeDescriptionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the course content and/or goals. Reference may be made to state or national content standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The course meets the state definition of a core academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The course meets the state definition of a core academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the time of day the class begins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassBeginningTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the time of day the class ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassEndingTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The day(s) of the week (e.g., Monday, Wednesday) that the class meets or an indication that a class meets "out-of-school" or "self-paced".', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassMeetingDays' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the portion of a typical daily session in which students receive instruction in a specified subject (e.g., morning, sixth period, block period, or AB schedules).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassPeriod' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique identifier for the locally defined rotation cycle date code when the class meets (e.g., in a two day schedule, valid values could be "A" and "B", or "1" and "2").', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'TimeDayIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of location at which instruction or service takes place.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RefInstructionLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the assignment is the staff member''s primary assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'PrimaryAssignment' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a teacher provides instruction in more than one instructional site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a teacher provides instruction in more than one instructional site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of a person''s initial enrollment into a United States school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstEntryDateIntoUSSchool' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of the student''s promotion or progress at the end of a given school term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason as to why a staff member determined that a student should not be promoted (or be demoted).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefNonPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the location of a persons legal residence relative to (within or outside) the boundaries of the public school attended and its administrative unit.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the location of a persons legal residence relative to (within or outside) the boundaries of the public school attended and its administrative unit.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The setting in which children ages 6 through 21, receive special education and related services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentSchoolAgeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the progress made by a student toward English proficiency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIIAccountabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The classification of education agencies within the geographic boundaries of a state according to the level of administrative and operational control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The classification of education agencies within the geographic boundaries of a state according to the level of administrative and operational control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of suspension or expulsion used for the discipline of children with disabilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodOfCwdId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reasons why children with disabilities were unilaterally removed from their current educational placement to an interim alternative educational setting.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason a participant did not complete an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotCompletingId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of interim removal from current educational setting experienced by children with disabilities (IDEA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school has a school-wide program, as defined by current law, in which federal Migrant Education Program (MEP) funds are consolidated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ConsolidatedMepFundsStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a staff member''s salary is paid by the Title I, Part C Migrant Education Program (MEP) of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of communication methods with parents.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefCommunicationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Rural-Urban Continuum Codes form a classification scheme that distinguishes metropolitan (metro) counties by the population size of their metro area, and nonmetropolitan (nonmetro) counties by degree of urbanization and adjacency to a metro area or areas. The metro and nonmetro categories have been subdivided into three metro and six nonmetro groupings, resulting in a nine-part county codification. The codes allow researchers working with county data to break such data into finer residential groups beyond a simple metro-nonmetro dichotomy, particularly for the analysis of trends in nonmetro areas that may be related to degree of rurality and metro proximity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RefERSRuralUrbanContinuumCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of children for which a state licensed a facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'StateLicensedFacilityCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The benefits offered by a program/facility/employer for full-time staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'FullTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The benefits offered by a program/facility/employer for part-time staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'PartTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the nature of the association between a Competency Definition and an associated data object such as a Learning Resource, an Assessment Item, or even another Competency Definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefAssociationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A URI that establishes uniqueness of an association between a competency definition and another competency item or other objects such as learning resources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'CompetencyDefAssociationIdentifierURI' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The globally unique identifier (GUID) issued by the publisher of the competency framework that uniquely identifies the parent item in the hierarchy of competency definitions using a RFC 4122 compliant 32-character hexadecimal string, such as 21EC2020-3AEA-1069-A2DD-08002B30309D.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A human-referenceable code designated by the publisher to identify the parent item in the hierarchy of competency definitions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A network-resolvable Uniform Resource Locator (URL) pointing to the authoritative reference for the competency definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Classification of the Competency Definition using Bloom''s Taxonomy Domains. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefBloomsTaxonomyDomainId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Classification of the Competency Definition using intelligences defined for Howard Earl Gardner''s Theory of Multiple Intelligences.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefMultipleIntelligenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The criteria for the set of competencies that represent completion or partial completion of a unit, course, program, degree, certification, or other achievement/award. Specifies whether completion requires achievement of all items in the set or some number of items.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RefCompletionCriteriaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum number of competencies in the set that must be achieved for completion or partial completion of a unit, course, program, degree, certification, or other achievement/award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'CompletionCriteriaThreshold' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The alignment relationship between the resource and a competency definition object.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefLearningResourceCompetencyAlignmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The default language of the text used for the content in the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The default language of the text used for the content in the competency definition statement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A legal document giving official permission to do something with the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full text or URL reference to a legal document giving official permission to do something with the competency definition statement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The entity responsible for making the competency framework available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Publisher' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The information about rights held in and over the resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Rights' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The person or organization owning or managing rights over the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RightsHolder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The significant topicality of the competency definition using free-text keywords and phrases.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The topicality of the competency definition, e.g. "Pythagorean Theorem," "Trigonometric functions," "Forces and energy," "Scientific method," "Oral history," etc.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptTerm' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique identifier of the person who assigned the assessment to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssignedByPersonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The formative descriptive feedback that was given to a learner based on a scored/evaluated portion of an assessment as recorded in the result entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The formative descriptive feedback that was given to a learner in response to the results from a scored/evaluated assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A category for defining the qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title assigned to a qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator (URL) for the unique address of an image representing an award or badge associated with the qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ImageUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The criteria for competency-based completion of the qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'Criteria' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator (URL) from which the qualification, achievement, personal or organizational quality, or aspect of an identity was issued.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'AwardIssuerOriginURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A statement or reference describing the evidence that the learner met the criteria for attainment of the qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'One or more statements that describes the criteria used by teachers and students to check for attainment of a goal.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'SuccessCriteria' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A statement that describes the desired outcomes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A message provided to the person being assessed after giving a response that matches the possible response.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'FeedbackMessage' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position of this response in the list of responses displayed, such as for a multiple choice item type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The complexity of the text using the scaling system defined by Text Complexity System, e.g. Lexile™ for assessment items with a reading passage.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The scaling system used to specify the text complexity of an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefTextComplexitySystemId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of each distracter on an assessment item, explaining why it is there, what misunderstandings it exposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The scaling system used to specify the text complexity of a competency item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator where the resource may be accessed, or a proxy for the resource, such as an information page for a commercially available resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Url' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title of the resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The descriptive name for the subject of the content for the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The code used to identify the organization of subject matter and related learning experiences addressed by the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The system that is used to identify the organization of subject matter and related learning experiences addressed by the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCodeSystem' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the resource was created.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of a person or organization credited with the creation of the resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the organization credited with publishing the resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublisherName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary language of the resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The URL where the owner specifies permissions for using the resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceLicenseURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A resource that was used in the creation of this resource. This term can be repeated for multiple sources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'BasedOnUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The individual or group for which the resource was produced.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceIntendedEndUserRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The approximate or typical time it takes to work with or through this learning resource for the typical intended target audience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TimeRequired' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum for the typical range of ages of the content’s intended end user.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum for the typical range of ages of the content’s intended end user.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The predominate mode of learning supported by the learning resource. Acceptable values are active, expositive, or mixed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The predominate type or kind characterizing the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The complexity of the text using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The scaling system used to specify the text complexity of an Learning Resource', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An abbreviated title for an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full title of the Assessment Family. An Assessment Family is a set of assessments with a common name, jurisdiction, or focus, such as Graduate Record Exam or National Assessment of Educational Progress.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyTitle' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The abbreviated title of the Assessment Family. An Assessment Family is a set of assessments with a common name, jurisdiction, or focus.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyShortName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of action taken by the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RefLearnerActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The value representing input by the learner using an online system, such as a value entered in response to an assessment question, or the URL of a learning resource link clicked.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date and time at which the action was taken.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The default language used for the assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title for work assigned to the learner, which can comprise of learning resources, activities, and assessments.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description and context for the assignment described in a way that the learner can understand.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of the skills or competencies the student must have to engage in assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Prerequisite' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work assigned to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The creation date of the assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time required to complete the assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumTimeAllowed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of time of the Maximum Time Allowed value.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityMaximumTimeAllowedUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date assignment is due.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time the assignment is due.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number attempts a student may make on this assignment. Assumed to be unlimited if zero or omitted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumAttemptsAllowed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the assignment as one that is graded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityAddToGradeBookFlagId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the student was informed about an assignment or that an automated system displays the assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'ReleaseDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The percentage weight of the assignment during the particular course or term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of possible points for an assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'PossiblePoints' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator pointing to a rubric that may be used to evaluate learner performance on the assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RubricUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the response is to a scaffolding problem rather than the main/assigned problem. A scaffolding item is a follow-up formative assessment item used to assess prerequisite or component skills, presented immediately after a learner gives an incorrect answer on the previous item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScaffoldingItemFlag' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of hints presented as the learner responded to a formative assessment item. This may include hints requested by the learner or hints automatically presented such as in an online tutoring system. Presentation of a scaffolding item is a separate response record and not counted as a hint.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintCount' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that one of the hints presented included the correct answer.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintIncludedAnswer' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of time in seconds or milliseconds that a person took to give an initial response, a first attempt to answer a formative assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'FirstAttemptDuration' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time of day that the assessment item was presented to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the assessment item was presented to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The code given to the assessment event by a state or other authority directing overall administration.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The correlation between correct answers on this item and total correct answers on the test during a previous administration. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'PointBiserialCorrelationValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the assessment item has been released to the public.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'ReleaseStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A value representing the Differential Item Functioning, also referred to as measurement bias, for the assessment item. The value represents differences in the functioning of the item across groups which are matched on the attribute being measure by the item. The value is calculated using Mantel-Haenszel approach or a comparable algorithm so that a value of 1.0 represents no bias.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'DIFValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The measure used to represent the degree of agreement among raters.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'KappaValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The algorithm used to derive the Assessment Item Kappa Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryKappaAlgorithmId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The complete text of an assessment item including all applicable parts such as stimulus, stem, and possible response options presented.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'BodyText' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The text, source (e.g., video clip), and/or graphic about which the assessment item is written. The stimulus provides the context of the item/task to which the student must respond.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stimulus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The possible response presented to the participant within a selected-response/multiple-choice assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'PossibleResponseOption' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code given to the session, usually for a session that represents a term within the school year such as a marking term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A short description of the Session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the session is a marking term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MarkingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the session is a scheduling term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SchedulingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the session is an attendance term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'AttendanceTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date of the scheduled or unscheduled calendar event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EventDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A name used for the day of the calendar event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of health accommodations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefAccommodationsNeededTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Course areas for advanced placement or credit. For a list of codes see http://apcentral.collegeboard.com/apc/public/courses/teachers_corner/index.html .', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdvancedPlacementCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An age group or education level to which the professional development activity''s content pertains.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RefPDActivityEducationLevelsAddressedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Describes symptoms know to be associated with a person''s reaction to an allergen.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'ReactionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of severity of a person''s reaction to an allergen.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergySeverityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The assessment item result formatted according to the IMS Global QTI Specification.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ResultXML' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which an individual''s professional development career plan was last updated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'LastUpdated' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an individual completed an individualized guidance and counseling plan', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RefCareerEducationPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agency that authorized the establishment or continuation of a charter school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolAuthorizerAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agency that authorized the establishment or continuation of a charter school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The school year in which a charter school was initially approved.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolApprovalYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of facility in which an inmate receives correctional education services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefCorrectionalEducationFacilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The grading scale used by an academic educational institution for an academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Additional information regarding the context of the given grade.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Additional information regarding the context of the given grade.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The education level, grade level or primary instructional level at which a course is intended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseApplicableEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the certification or recognition associated with this course (ex. Networking, CAD, etc.)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CertificationDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of enrollment associated with the credit hours for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of credit associated with the credit hours earned for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A program through which the course is funded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FundingProgram' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the course is or can be counted as an honors course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseHonorsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary method of instruction used for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the location at which the course is taught.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'CourseInstructionSiteName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the type of location at which the course is taught.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionSiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary type of interaction, synchronous or asynchronous, defined for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The narrative of the grade awarded to an individual in an academic course in those cases where a course does not receive a letter or numeric grade included in the grading scale of the Course Academic Grade Qualifier.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'CourseNarrativeExplanationGrade' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The official reference number portion of a course identifier. This number normally designates the level of the course as well as the level of the individual expected to enroll in the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'CourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of courses listed on a transcript. Used as a check digit for integrity purposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CourseTotal' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefCreditHoursAppliedOtherProgramId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a Career and Technical Education (CTE) instructor holds a current industry-recognized credential related to their teaching field.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CTEInstructorIndustryCertification' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code indicating the disability condition status.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of disability conditions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of disability determination sources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityDeterminationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an offense and/or disciplinary action resulted in a meeting of a student’s Individualized Education Program (IEP) team to determine appropriate placement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'IEPPlacementMeetingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual''s enrollment in a program for which all the required coursework for program completion is able to be completed via distance education courses. Distance education is education that uses one or more technologies to deliver instruction to individuals who are separated from the instructor and to support regular and substantive interaction between the individuals and the instructor synchronously or asynchronously.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DistanceEducationProgramEnrollmentInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The individual''s status in being admitted as a doctoral candidate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyAdmitInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the individual was admitted to doctoral candidate status.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the individual took an exam for advancement in, continuation or completion of a doctoral program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralExamTakenDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A qualifier identifying the types of exams required of doctoral level individuals.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDoctoralExamsRequiredCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Federal source, even if administered by state or local, that contributes to the EL program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Federal source, even if administered by state or local, that contributes to the EL program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of slots/spaces available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'GroupSize' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Whether the organization received notification about monitoring', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefOrganizationMonitoringNotificationsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date that monitoring visit began.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date that monitoring visit ended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The purpose for the monitoring visit.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefPurposeOfMonitoringVisitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of monitoring on the organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'TypeOfMonitoring' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The other contributing funding sources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The other contributing funding sources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Use for outcome measures in early learning.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefELOutcomeMeasurementLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The topical area of competence needed for Staff professional development.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELProfessionalDevelopmentTopicAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day on which the child is no longer eligible for the Program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of eligibility for the child.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date of status of eligibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'StatusDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the person is a designated emergency contact for the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'EmergencyContactInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, before enrolling in secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmployedPriorToEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the individual''s employment status while enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the course is associated with the Family and Consumer Sciences plan of study.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FamilyConsumerSciencesCourseInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A label for a grouping of financial accounts, based on type and purpose.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description for the financial account in an organization''s accounting system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the type of services that the partner organization provides.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of a non-person entity such as an organization, institution, agency or business, that partners with the Early Learning Organization to provide services to enrolled children/families.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The applicant preference that the family has for the program sites.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'SitePreferenceRank' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of expertise an individual training and technical assistance specialist has based on a set of established criteria.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'TrainingAndTechnicalAssistanceLevel' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether the student has transferred to another institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefTransferOutIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The trimester of pregnancy in which a child''s mother began receiving prenatal health care.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RefTrimesterWhenPrenatalCareBeganId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of a well child visit.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'WellChildScreeningReceivedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason for the termination of the employment relationship.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Non domestic residence in which the early learning setting is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefCommunityBasedTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that services are provided to the child in a place where children of all abilities learn together.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that services are provided to the child in a place where children of all abilities learn together.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that services are provided to the child in a place where children of all abilities learn together.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day on which a service was provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ServiceDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title/role of employment, official status, or rank of early learning service professionals', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELServiceProfessionalStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year an organization uses for budgeting, accounting, and reporting financials.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A branch of the U.S. Military applicable for specifying more details when using Military Connected Student Indicator, Military Active Student Indicator, Military Veteran Student Indicator, and Military Enlistment After Exit elements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryBranchId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Lumina Foundation''s Degree Qualifications Profile offers reference points for what students should know and be able to do upon completion of associate, bachelor''s and master''s degrees – in any field of study. The DQP Categories of Learning provide a profile of what degrees mean within which specific proficiencies may be defined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefDQPCategoriesOfLearningId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which an accounting period begins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodBeginDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which an accounting period ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The planned or obligated expense value of a financial account for the specified accounting period or fiscal year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'EncumberedValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name given to the program area in an organization''s accounting system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A number given to a program area within an organization''s accounting system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'ProgramNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The value of a financial account balance or transaction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date of a financial transaction or when an account balance is reported.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which an attendance event takes place.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of organization that is a separate legal entity that 1) contracts with one or more charter schools to manage, operate, and oversee the charter schools; or 2) holds a charter, or charters, to operate multiple charter schools.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolManagementOrganizationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique number the SEA assigns to the contract (or charter) that authorizes the charter school to operate in the state under the state''s charter school legislation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractIdNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The effective date of the contract (or charter) that an approved charter school authorizer authorized the charter school to operate in the state under the state''s charter school legislation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractApprovalDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date by which the charter school must renew its contract (or charter) with an approved charter school authorizer in order to continue to operate in the state under the state''s charter school legislation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractRenewalDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the student''s National School Lunch Program (NSLP) eligibility has been determined through direct certification.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'NSLPDirectCertificationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of students the Course Section can maintain.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'MaximumCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category under which a person under 3 years of age is eligible for early intervention services under IDEA Part C.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAPartCEligibilityCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefTribalAffiliationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A globally unique identifier by which the creator/owner/provider of a credential recognizes the qualification, achievement, personal or organizational quality, or aspect of an identity in transactions with the external environment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the qualification, achievement, personal or organizational quality, or aspect of an identity was revoked.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Published reason for revocation of a credential award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedReason' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The URL to a document that includes a list of credential award assertions an issuer has revoked.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RevocationListURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator (URL) for the unique address of an image representing the Organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the person''s requirements for earning a credential were met or completed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A URL to a page that describes the requirements for the credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RequirementsURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Prerequisite conditions for earning an academic award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardPrerequisiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of times the course may be taken or completed for credit.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RepeatabilityMaximumNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefPESCAwardLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A URL to a page that describes the evidence that the learner met the criteria for attainment of the credential award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'EvidenceURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS financial position classification used by degree-granting public institutions using GASB Reporting Standards for reporting the assets, liabilities, and net position in a manner consistent with the Statement of Net Position in the General Purpose Financial Statements (GPFS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS financial position classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting the assets, liabilities, and net assets in a manner consistent with the Statement of Financial Position in the General Purpose Financial Statements (GPFS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue classification used by degree-granting public institutions using GASB Reporting Standards for reporting revenues and other additions by source including all operating revenues, nonoperating revenues, and other additions for the reporting period. This includes unrestricted and restricted revenues and additions, whether expendable or nonexpendable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues and investment return by source in a manner consistent with the definitions from the National Association of College and University Business Officers (NACUBO) Financial Accounting and Reporting Manual for Higher Education (FARM).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue restriction classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues by restriction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueRestrictionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A natural expense classification is a method of grouping expenses according to the type of costs that are incurred. The classifications tell what was purchased rather than why an expense was incurred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSNaturalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue category used by degree-granting public institutions using GASB Reporting Standards for the reporting of resources received for supporting student scholarships and fellowships.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue category used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for the reporting of resources received for supporting student grant aid.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the functional expense category where the institution allocates its intercollegiate athletics expenses.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSIntercollegiateAthleticsExpensesId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Method of reporting Pell Grants in IPEDS by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBPellGrantTransactionsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Frequency by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportScheduleId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Beginning not later than one year before the child reaches the age of majority under State law, the IEP must include a statement that the child has been informed of the child''s rights under Part B of the Individuals with Disabilities Education Act, if any, that will transfer to the child on reaching the age of majority under §300.520.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'TransferOfRightsStatement' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the status of the service plan for a child effectively ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which a child''s service plan meeting is held.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'MeetingDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of a specific accommodation or change to standards or practices that will be made.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Circumstances in which the accommodation or change to standards or practices will be applied.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Applicability' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A statement of why— (A) The child cannot participate in the regular assessment; and (B) The particular alternate assessment selected is appropriate for the child.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'IEPAlternativeAssessmentRationale' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of the reason changes were made to the individualized program service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'ReasonDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of the changes made to the individualized program service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Current performance explanation related to the annual goal or short-term objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'CurrentPerformanceDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The percent of correct results that will be considered to represent successful achievement of a goal.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AccuracyPercent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of attempts representing a completed trial for assessing achievement of a goal.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AttemptsCount' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A metric used for evaluating achievement of a goal.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'Metric' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of correct results that will be considered to represent successful achievement of a goal.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'SuccessCount' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The procedures and/or instruments that will be used to measure achievement of a goal or short-term objective.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Frequency of evaluation of progress toward meeting the goal or short-term objective.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Schedule' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of evidence appropriate for assessing achievement of a goal or short-term objective.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RefGoalMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Legal category for an IEP annual goal or short-term objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RefIEPGoalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressReportDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the progress report used to notify parents of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A method by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A method by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Status toward achievement of the annual goal or short-term objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RefGoalStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of status toward achievement of the annual goal or short-term objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'Status' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The rationale for the placement decision and if applicable, an explanation of the extent, if any, to which the child will not participate with nondisabled children in the regular class and in the activities described in paragraph (a)(4) of CFR. §300.320.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'IDEAPlacementRationale' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'How the child''s disability affects the child''s academic achievement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'AcademicDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000792', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalCollegeCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000796', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HoursWorkedPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000797', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HourlyWage' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000798', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageCollectionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000799', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000804', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RequiredTrainingClockHours' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefIssuingStateId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000806', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000806', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefChildDevAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000810', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000810', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTitle' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000813', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RefCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000816', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000816', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000819', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000822', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ServesChildrenWithSpecialNeeds' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000823', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ELClassGroupCurriculumType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefELGroupSizeStandardMetId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000825', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'ELProgramAnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000825', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'AnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000828', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefELProgramLicenseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000829', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodProgramEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000830', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000831', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QRISExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000834', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefProfitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000835', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfFatalities' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000836', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfInjuries' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000837', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseSuspensionStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000838', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseRevocationStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000840', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000841', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000843', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'NumberQrisLevels' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000844', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'NumberOfClassrooms' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000851', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ProgramHeathSafetyChecklistUseStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefPopulationServedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000857', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefCommunicationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000862', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RefERSRuralUrbanContinuumCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000865', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'StateLicensedFacilityCapacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000866', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'FullTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000867', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'PartTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000869', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefAssociationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000871', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'CompetencyDefAssociationIdentifierURI' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000872', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000873', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000874', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000875', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefBloomsTaxonomyDomainId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000876', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefMultipleIntelligenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000877', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RefCompletionCriteriaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000878', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'CompletionCriteriaThreshold' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000879', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefLearningResourceCompetencyAlignmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000880', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000881', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000882', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000883', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000884', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Publisher' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000885', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Rights' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000886', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RightsHolder' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000887', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000888', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptTerm' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000889', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssignedByPersonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000890', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000891', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000892', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000893', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000894', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ImageUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000895', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000896', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'Criteria' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000900', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'AwardIssuerOriginURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000901', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000902', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'SuccessCriteria' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000903', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000904', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'FeedbackMessage' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000906', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000907', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefTextComplexitySystemId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000908', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000910', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000911', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Url' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000912', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000913', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000914', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000915', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCodeSystem' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000916', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublisherName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000919', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000921', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceLicenseURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000922', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'BasedOnUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000923', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceIntendedEndUserRoleId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000924', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TimeRequired' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000925', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000926', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000929', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000930', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000931', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000932', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyTitle' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000933', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyShortName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000934', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RefLearnerActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000935', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000937', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000938', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000939', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000940', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000941', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Prerequisite' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000942', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000943', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000944', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumTimeAllowed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000945', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityMaximumTimeAllowedUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000946', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000947', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000948', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumAttemptsAllowed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000949', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityAddToGradeBookFlagId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000950', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'ReleaseDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000951', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000952', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'PossiblePoints' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000953', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RubricUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000954', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScaffoldingItemFlag' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000955', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintCount' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000956', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintIncludedAnswer' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000957', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'FirstAttemptDuration' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001399', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RefLearningResourceMediaFeatureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001400', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PeerRatingSampleSize' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001401', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RefLearningResourcePhysicalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001402', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'ConnectionCitation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001403', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001404', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001405', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001406', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001407', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001408', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefNodeAccessibilityProfileId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001409', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001411', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefTestabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001412', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'MilitaryEnlistmentAfterExit' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001413', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'NCAAEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001414', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefNCESCollegeCourseMapCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001415', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'NumberOfDependents' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001416', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseCompletedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001417', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001419', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'SeekingAccreditationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001420', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OriginalCourseIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001421', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'OtherRaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001422', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OverrideSchoolCourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001423', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactPriorityNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001424', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactRestrictions' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001425', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'LivesWithIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001426', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'PostsecondaryEnteringStudentInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001427', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'EnteringTerm' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001428', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'PrimaryContactIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001429', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'ProfessionalCertificateOrLicenseNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001430', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDAudienceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001431', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDDeliveryMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001432', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ApprovalCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001433', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityApprovedPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001434', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001435', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Cost' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001436', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001437', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Credits' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001438', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001439', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001440', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001442', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001443', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'FundingSource' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001445', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'PublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001446', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'Capacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001447', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001448', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001449', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationMethod' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001450', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001451', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001452', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SessionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001454', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'LocationName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001455', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001456', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001457', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDSessionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001458', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDInstructionalDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001460', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001461', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001462', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ScoreLevel' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001463', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001464', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001465', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001468', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001469', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001470', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001472', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Feedback' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001473', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001474', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Quality' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001475', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Score' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001476', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001477', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001478', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001479', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001480', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDGradeSpan' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001481', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001482', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RefReferralOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001483', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Reason' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001484', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Source' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001485', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralTypeReceived' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001486', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferredTo' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001487', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ReasonForDeclinedServices' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001489', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SponsoringAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001493', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001493', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001494', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001494', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001495', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001495', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001496', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'ThesisOrDissertationTitle' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001497', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001498', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'WeeksEmployedPerYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001500', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001501', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAIEPStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001503', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefOutcomeTimePointId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001504', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressAIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001505', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressBIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001506', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressCIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001507', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingAId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001508', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingBId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001509', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingCId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001510', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefMethodOfServiceDeliveryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001511', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001512', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001513', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001514', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001515', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001516', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001516', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001516', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001517', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001517', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001517', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001517', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001517', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001519', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefServiceFrequencyId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001520', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceDuration' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001521', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RefReasonDelayTransitionConfId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001901', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureUsefulLife' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001902', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'AvailableUtilizedInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001903', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingCapacityFactorIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001904', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'FacilityEnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RefOrganizationRelationshipId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001906', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityOwnershipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001907', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkSourceUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001908', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001909', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001910', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefDateEffective' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001911', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001912', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001913', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCTDLAudienceLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001914', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAgentRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001915', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001916', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ProgressAcheivingEnglishLearnerProficiencyStateDefinedStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApipDescription', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001919', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001919', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001920', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001920', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001921', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001922', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramEntryReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001923', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefComprehensiveSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001924', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001925', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAdditionalTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001926', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001926', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000285', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefTitleISchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000289', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RefK12LeaTitleISupportServiceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000292', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'TitleIVParticipantAndRecipient' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000293', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalBenefits' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000294', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'TotalNumberInClass' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000294', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolGraduatingClassSize' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000295', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalSalary' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefTransferReadyId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000297', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefTuitionResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefUSCitizenshipStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000302', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000305', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000305', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000306', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'ImmunizationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000307', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000308', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefVisionScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000309', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHearingScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeightAtBirth' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000313', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeeksOfGestation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000314', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000315', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEvaluationFindingId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000316', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000317', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesReceivedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefServicesId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000323', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000323', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000324', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'EnrollmentDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RefSchoolFoodServiceProgramId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000329', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'CustodialRelationshipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000330', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInFamily' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000331', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInHousehold' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000332', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIncome' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000333', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefFamilyIncomeSourceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000334', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefIncomeCalculationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHealthInsuranceCoverageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000336', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalInsuranceCoverageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000341', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELLevelOfSpecializationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000342', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateTitleOrSubject' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000343', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefDegreeOrCertificateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000345', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodCredentialId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000347', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000347', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000348', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicensingDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000348', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000349', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000349', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000350', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000350', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000351', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'OperationalStatusEffectiveDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000354', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000354', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000356', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000356', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000357', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RefQrisParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000358', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000361', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000362', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000362', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000363', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000364', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'ClassroomIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000364', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'ClassroomId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000365', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'IdentificationSystem' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000366', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'FormNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000367', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000368', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Abbreviation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000369', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000369', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000370', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'InstructionalRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000371', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000382', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000383', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAssessmentAccommodationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000384', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000384', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000385', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000385', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000386', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentPlatformTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000388', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000389', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000389', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000390', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000391', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Difficulty' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000392', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemCharacteristicTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000393', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'ResponseChoicePattern' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000395', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000396', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000397', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'OptimalValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000398', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'DistractorAnalysis' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000400', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stem' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000402', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Duration' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000403', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000405', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessItemResponseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000406', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AidSetUsed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000407', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'TimeAssessed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000408', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000415', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000417', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'ScoreMetric' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000418', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'LowerCutScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000419', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'UpperCutScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000421', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000422', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000423', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'UrlReference' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000424', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RefStateANSICodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000425', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RefPersonRelationshipTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000426', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000427', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000428', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000428', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000429', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefContinuationOfServicesReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000430', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MepEligibilityExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000431', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'MultipleBirthIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000432', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MigrantStudentQualifyingArrivalDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000433', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'QualifyingMoveFromCity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000434', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromCountryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000435', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromStateId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000436', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'DesignatedGraduationSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000437', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000438', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ImmunizationRecordFlag' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000439', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefMedicalAlertIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000440', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepProjectBasedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Value Qualifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Value Qualifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Personal Information Verification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Personal Information Verification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Personal Information Verification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Separation Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Separation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classroom Position Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classroom Position Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Leave Event Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefLeaveEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Secondary Incident Behavior', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorSecondaryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Site Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Youngest Age Authorized to Serve', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Youngest Age Authorized to Serve', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other Name Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RefOtherNameTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Neglected or Delinquent Academic Achievement Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'AchievementIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Neglected or Delinquent Academic Outcome Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'OutcomeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher of Record', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'TeacherOfRecord' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Assignment Role', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Assignment Role', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Assignment Contribution Percentage', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Assignment Contribution Percentage', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Entry Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEntryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Exit Withdrawal Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'ExitWithdrawalDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Exit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Interscholastic Sports - Male Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Interscholastic Sports - Female Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Interscholastic Teams - Male Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Interscholastic Teams - Female Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Interscholastic Sport Participants - Male Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsMale' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Interscholastic Sport Participants - Female Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsFemale' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Statement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Identifier URI', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'URI' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Creator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Publication Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefCompetencyFrameworkPublicationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Jurisdiction', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Jurisdiction' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Valid Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Valid End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Subject', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Subject' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Vision Screening Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'VisionScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Web Site Address', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'Website' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hearing Screening Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HearingScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dental Screening Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'DentalScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Maximum Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Minimum Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Characteristic Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cohort Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Curriculum Framework Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Curriculum Framework Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Diploma Distinction Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaDistinctionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Prerequisite Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'AssociatedEntityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Sponsor Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefProgramSponsorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Performance Level Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Performance Level Label', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Label' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Rules', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Rules' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Score Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Education Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Year Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AcademicYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Term Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Term Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Distance Education Course Enrollment', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDistanceEducationCourseEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Predominant Calendar System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Predominant Calendar System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Standard Occupational Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'StandardOccupationalClassification' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Occupational Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Occupational Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Staff Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'InstructionalStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Medical School Staff Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'MedicalSchoolStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Faculty Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'FacultyStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Staff Contract Length', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Staff Contract Length', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Full-time Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Full-time Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Contract Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Contract Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tenure System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefTenureSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Staff Faculty Tenure Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffFacultyTenureId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Rank', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefAcademicRankId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instruction Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Graduate Assistant Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'GraduateAssistantStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Graduate Assistant IPEDS Occupation Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefGraduateAssistantIpedsCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Annual Base Contractual Salary', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Annual Base Contractual Salary', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tuition - Published', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'TuitionPublished' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tuition Unit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RefTuitionUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Required Student Fees', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RequiredStudentFees' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Institutionally Controlled Housing Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'InstitutionallyControlledHousingStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Room Charges', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RoomCharges' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Board Charges', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BoardCharges' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Books and Supplies Costs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BooksAndSuppliesCosts' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other Student Expenses', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'OtherStudentExpenses' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Price of Attendance', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'PriceOfAttendance' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Comprehensive Fee', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'ComprehensiveFee' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Applicant', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'PostsecondaryApplicant' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Admitted Student', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefAdmittedStudentId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Wait Listed Student', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'WaitListedStudent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Domain', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGradePointAverageDomainId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Percentile', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolPercentile' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Student Housing On-Campus', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'HousingOnCampus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Fraternity Participation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FraternityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Sorority Participation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'SororityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Applicant', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidApplicant' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Need', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialNeed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Education Test Company', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationTestCompanyId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Preparation Program Enrollment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Preparation Program Completer Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepCompleterStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Alternative Route to Certification or Licensure', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefAltRouteToCertificationOrLicensureId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Critical Teacher Shortage Area Candidate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefCriticalTeacherShortageCandidateId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Published Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Identifier Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssestIdentifierType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Owner', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Owner' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Content XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentXML' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Content Mime Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentMimeType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Content URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Use Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Space Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'SpaceDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Space Use Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefSpaceUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit Grade Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Weapon Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefWeaponTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Staff Role Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionStaffRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Subtest Tier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Tier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Subtest Container Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'ContainerOnly' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Possible Response Correct Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'CorrectIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Performance Level Descriptive Feedback', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Diagnostic Statement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatement' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Application Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RefFinancialAidApplicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Need Determination Methodology', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefNeedDeterminationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Oldest Age Authorized to Serve', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Oldest Age Authorized to Serve', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Language Translation Policy', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'LanguageTranslationPolicy' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Status Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Status End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Maternal Guardian Education', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefMaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Paternal Guardian Education', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefPaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Date Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramDateType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'IndividualizedProgramDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program NonInclusion Minutes Per Week', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'NonInclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Inclusion Minutes Per Week', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Transition Plan Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTransitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Meeting Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramLocationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Meeting Participants', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanMeetingParticipants' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Signed By', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignedBy' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Signature Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignatureDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Reevaluation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanReevaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Full Time Equivalency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationFTE' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Full Time Equivalency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Gifted Eligibility Criteria', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefProgramGiftedEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Category System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'CategorySystem' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Education Level ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Immunization Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Notes', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Notes' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter A', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterA' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter B', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterB' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter Difficulty Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryDifficultyCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter C', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterC' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter D1', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD1' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter D2', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD2' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter D3', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD3' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter D4', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD4' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter D5', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD5' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter D6', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD6' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Linking Item Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'LinkingItemIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Point Biserial Correlation Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'PointBiserialCorrelationValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Release Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'ReleaseStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory DIF Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'DIFValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Kappa Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'KappaValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Kappa Algorithm', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryKappaAlgorithmId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Body Text', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'BodyText' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Stimulus', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stimulus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Possible Response Option', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'PossibleResponseOption' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Marking Term Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MarkingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Scheduling Term Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SchedulingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Attendance Term Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'AttendanceTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Calendar Event Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EventDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Calendar Event Day Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accommodations Needed Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefAccommodationsNeededTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Advanced Placement Course Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdvancedPlacementCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Education Levels Addressed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RefPDActivityEducationLevelsAddressedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Allergy Reaction Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'ReactionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Allergy Severity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergySeverityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Allergy Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Result XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ResultXML' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Blended Learning Model Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Blended Learning Model Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Blended Learning Model Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Cluster', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Cluster', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Cluster', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Cluster', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Cluster', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Education Plan Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'LastUpdated' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Education Plan Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RefCareerEducationPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Authorizer Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolAuthorizerAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Authorizer Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Approval Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolApprovalYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Correctional Education Facility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefCorrectionalEducationFacilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Academic Grade Scale Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Academic Grade Status Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Academic Grade Status Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Applicable Education Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseApplicableEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Certification Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CertificationDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Basis Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Funding Program', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FundingProgram' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Honors Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseHonorsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Instruction Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Instruction Site Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'CourseInstructionSiteName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Instruction Site Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionSiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Interaction Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Narrative Explanation Grade', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'CourseNarrativeExplanationGrade' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'CourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Total', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CourseTotal' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'PESC Award Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefPESCAwardLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Award Evidence URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'EvidenceURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Financial Position Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Financial Position Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Revenue Restriction Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueRestrictionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Functional Expense Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance Natural Expense Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSNaturalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Scholarships and Fellowships Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Scholarships and Fellowships Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance Intercollegiate Athletics Expenses', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSIntercollegiateAthleticsExpensesId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Pell Grant Transactions', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBPellGrantTransactionsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Progress Report Schedule', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportScheduleId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Transfer of Rights Statement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'TransferOfRightsStatement' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Meeting Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'MeetingDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Accommodation Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Accommodation Applicability', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Applicability' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Alternative Assessment Rationale', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'IEPAlternativeAssessmentRationale' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Amendment Reason Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'ReasonDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Amendment Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Current Performance Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'CurrentPerformanceDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Criterion Accuracy Percent', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AccuracyPercent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Criterion Attempts Count', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AttemptsCount' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Criterion Metric', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'Metric' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Criterion Success Count', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'SuccessCount' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Schedule', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Schedule' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RefGoalMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Goal Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RefIEPGoalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Progress Report Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressReportDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Progress Report Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Progress Report Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Progress Report Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RefGoalStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'Status' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Placement Rationale', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'IDEAPlacementRationale' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Present Level Academic Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'AcademicDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Present Level Functional Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'FunctionalDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Present Level General Education Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'GeneralEducationDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Present Level Preschool Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'PreschoolDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Present Level Student Strengths Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentStrengthsDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Present Level Parent Concern Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'ParentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Present Level Student Concern Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Declined Services Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'DeclinedServicesDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Frequency Unit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RefFrequencyUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Frequency Instances Per Cycle', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'InstancesPerCycle' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Frequency Length', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'FrequencyLength' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Duration Length in Minutes', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'DurationInMinutes' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Extends Outside School Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ExtendsOutsideSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Setting Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'SettingDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Authorization Document Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RefIEPAuthorizationDocumentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorizer Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RefAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization Acceptance Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AcceptanceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization Decision Explanation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'DecisionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Authorization Rejected Portion Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Authorization Rejected Portion Explanation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AuthorizationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Consent to Evaluation Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Consent to Evaluation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Eligibility Evaluation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RefIEPEligibilityEvaluationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Eligibility Evaluation Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RefIDEAEligibilityEvaluationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Eligibility Evaluation Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Eligibility Evaluation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'EvaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Eligibility Parent Observations Explanation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ParentObservations' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Disability Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefIDEADisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Advanced Standing Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Advanced Standing URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Alternate Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'AlternateName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Award Approver Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'ApproverName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Assessment Method Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAssessMethodTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Identifier System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RefCredentialIdentifierSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Estimated Duration', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'EstimatedDuration' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition NAICS Industry Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialNAICSIndustryType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Jurisdiction Region', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Jurisdiction Region Exception', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegionException' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Keywords', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Keywords' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Maximum Duration', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MaximumDuration' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Minimum Age', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumAge' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Minimum Duration', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumDuration' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Intended Purpose Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefIntendedPurposeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Region GeoJSON', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RegionGeoJSON' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Revoked Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Validation Method Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ValidationMethodDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Verification Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefVerificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'CTDL Organization Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'CTDL Organization Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'O*NET-SOC Occupation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefONETSOCOccupationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Type URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypeURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Full Academic Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'StateFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'LEA Full Academic Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'LEAFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Full Academic Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'SchoolFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingArea' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Significant Cognitive Disability Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'SignificantCognitiveDisabilityIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Virtual School Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Virtual School Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'National School Lunch Program Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'National School Lunch Program Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Acquisition Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityAcquisitionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Addition Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityAdditionYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Building Permanency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityBuildingPermanency' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Construction Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Historic Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingHistoricStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Site Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteArea' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Block Number Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityBlockNumberArea' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Addition Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Addition Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Primary Use Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingPrimaryUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Campus Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Census Tract', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityCensusTract' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Construction Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Construction Date Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionDateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Project-Based Learning Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'RefProjectBasedLearningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Approval Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CourseLevelApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Type Administered to English Learners', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Teacher Qualification Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationTeacherQualificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Certification Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEdFactsCertificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Availability Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceAvailabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adjusted Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'AdjustedCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adjusted Capacity Reason Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'RefAdjustedCapacityReasonTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Age 2 and Older Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAge2AndOlderCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Age Under 2 Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAgeUnder2Capacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Revenue Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Function Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Object Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Level of Instruction Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Balance Sheet Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Fund Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Federal Program Subgrant Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramSubgrantCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationEnrollmentCapacityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Program Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'PrimaryProgramIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Award Level Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Award Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardTitle' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Honors Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RefAcademicHonorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accountability Report Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AccountabilityReportTitle' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Type for Learner or Family', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adequate Yearly Progress Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAypStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Administrative Funding Control', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Administrative Funding Control', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Administrative Funding Control', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Aligned with Standards', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Aligned with Standards', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Alternate Adequate Yearly Progress Approach Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AlternateAypApproachIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Alternative School Focus Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefAlternativeSchoolFocusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Advanced Placement Credits Awarded', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AdvancedPlacementCreditsAwarded' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Apartment Room or Suite Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Apartment Room or Suite Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Academic Subject', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Academic Subject', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Participation Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentParticipationIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Purpose', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Purpose', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Purpose', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Assessment Reporting Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RefCourseSectionAssessmentReportingMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Available Carnegie Unit Credit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Available Carnegie Unit Credit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Available Carnegie Unit Credit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Awaiting Initial IDEA Evaluation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'AwaitingInitialIDEAEvaluationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Base Salary', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationBaseSalary' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Birthdate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Birthdate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Campus Residency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCampusResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career and Technical Education Completer', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteCompleter' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career and Technical Education Concentrator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteConcentrator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Carnegie Basic Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefCarnegieBasicClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address City', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address City', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Student Class Rank', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Student Class Rank', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Class Ranking Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ClassRankingDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Use', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCipUseId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipVersionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cohort Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Contract Days of Service Per Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Contract Days of Service Per Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Control of Institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Control of Institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Corrective Action Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RefCorrectiveActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Country Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Country of Birth Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Academic Grade', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'AcademicGrade' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Begin Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Units', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Units', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Units', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credit Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CreditValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Grade Point Average Applicability', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Grade Point Average Applicability', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Grade Point Average Applicability', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Grade Point Average Applicability', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Characteristic', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelCharacteristicsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Override School', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'CourseOverrideSchool' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Quality Points Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'QualityPointsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Repeat Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Repeat Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Subject Abbreviation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SubjectAbbreviation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Issuance Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'IssuanceDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credit Unit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credit Unit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Attempted Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Attempted Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Attempted Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Earned Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Earned Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Earned Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career and Technical Education Graduation Rate Inclusion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefCteGraduationRateInclusionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Attendance Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Degree Applicability', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'DegreeApplicability' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Degree or Certificate Seeking Student', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateSeekingStudent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dependency Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefDependencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Desegregation Order or Plan', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'DesegregationOrderOrPlan' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diploma or Credential Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Target', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Target' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Performance', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Performance' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Baseline', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Baseline' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Baseline Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'BaselineYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Improvement Exit Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'SchoolImprovementExitDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Terminated Title III Programs Due to Failure', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'TerminatedTitleIIIProgramFailure' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Neglected or Delinquent Obtained Employment', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'ObtainedEmployment' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program in Multiple Purpose Facility', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'ProgramInMultiplePurposeFacility' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Type of Use of the Rural Low-Income Schools Program', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RefRlisProgramUseId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title III Professional Development Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RefTitleIIIProfessionalDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disciplinary Action Taken', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplinaryActionTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21726', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RequiredStudentFees' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21727', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'InstitutionallyControlledHousingStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21728', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RoomCharges' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21729', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BoardCharges' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21730', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BooksAndSuppliesCosts' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21731', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'OtherStudentExpenses' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21732', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'PriceOfAttendance' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21733', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'ComprehensiveFee' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21735', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'PostsecondaryApplicant' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefAdmittedStudentId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21738', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'WaitListedStudent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21739', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGradePointAverageDomainId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21740', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolPercentile' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21741', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'HousingOnCampus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21743', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FraternityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21744', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'SororityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21745', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidApplicant' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21747', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialNeed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21748', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationTestCompanyId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21749', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21750', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepCompleterStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21751', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefAltRouteToCertificationOrLicensureId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21753', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefCriticalTeacherShortageCandidateId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21754', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefSupervisedClinicalExperienceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21755', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'ClinicalExperienceClockHours' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21756', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationCredentialExamId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21757', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationExamScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21763', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtIntakeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21764', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtPosttestId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeSpecialProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21768', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAePostsecondaryTransitionActionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21770', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21784', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21774', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAeTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21774', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAETeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21786', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'ECDegreeOrCertificateHolder' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21776', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'ProxyContactHours' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21791', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalCollegeCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21795', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HoursWorkedPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21796', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HourlyWage' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21797', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageCollectionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21798', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21803', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RequiredTrainingClockHours' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21804', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefIssuingStateId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefChildDevAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21808', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21808', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTitle' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21810', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21810', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RefCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21815', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21815', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21817', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21817', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21821', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ServesChildrenWithSpecialNeeds' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21822', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ELClassGroupCurriculumType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21823', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefELGroupSizeStandardMetId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'ELProgramAnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'AnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21828', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefELProgramLicenseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21829', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodProgramEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21830', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21831', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QRISExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21834', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefProfitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21835', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfFatalities' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21836', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfInjuries' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21837', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseSuspensionStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21838', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseRevocationStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21840', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21841', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21843', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'NumberQrisLevels' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21844', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'NumberOfClassrooms' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21851', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ProgramHeathSafetyChecklistUseStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefPopulationServedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21857', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefCommunicationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21862', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RefERSRuralUrbanContinuumCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21865', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'StateLicensedFacilityCapacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21866', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'FullTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21867', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'PartTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21869', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefAssociationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21871', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'CompetencyDefAssociationIdentifierURI' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21872', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21873', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21874', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21875', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefBloomsTaxonomyDomainId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21876', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefMultipleIntelligenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21877', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RefCompletionCriteriaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21878', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'CompletionCriteriaThreshold' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21879', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefLearningResourceCompetencyAlignmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21880', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21881', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21882', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21883', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21884', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Publisher' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21885', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Rights' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22230', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'DIFValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22231', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'KappaValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22232', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryKappaAlgorithmId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22233', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'BodyText' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22234', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stimulus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22235', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'PossibleResponseOption' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22236', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22237', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22238', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MarkingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22239', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SchedulingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22240', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'AttendanceTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EventDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22242', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22243', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefAccommodationsNeededTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22244', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdvancedPlacementCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22245', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RefPDActivityEducationLevelsAddressedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22247', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'ReactionDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22248', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergySeverityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22249', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22250', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ResultXML' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22253', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22253', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22253', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22255', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'LastUpdated' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22256', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RefCareerEducationPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolAuthorizerAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22259', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolApprovalYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22262', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefCorrectionalEducationFacilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22264', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22265', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22265', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22267', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseApplicableEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22268', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CertificationDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22269', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22270', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22272', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FundingProgram' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseHonorsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22274', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22275', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'CourseInstructionSiteName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22276', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionSiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22279', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'CourseNarrativeExplanationGrade' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22280', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'CourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22282', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CourseTotal' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefCreditHoursAppliedOtherProgramId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22284', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CTEInstructorIndustryCertification' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22285', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22286', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22287', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityDeterminationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22288', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'IEPPlacementMeetingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22289', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DistanceEducationProgramEnrollmentInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22290', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyAdmitInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22291', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22292', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralExamTakenDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22293', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDoctoralExamsRequiredCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22294', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22294', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22295', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'GroupSize' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefOrganizationMonitoringNotificationsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22297', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22298', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefPurposeOfMonitoringVisitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22300', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'TypeOfMonitoring' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22302', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22302', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22303', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefELOutcomeMeasurementLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELProfessionalDevelopmentTopicAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22305', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22306', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22307', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'StatusDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22308', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'EmergencyContactInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22309', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmployedPriorToEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22311', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FamilyConsumerSciencesCourseInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22313', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22314', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22315', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22316', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22317', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'ActualValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22318', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'BudgetedValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22319', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidIncomeLevel' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22322', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22323', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefFrequencyOfServiceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22324', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefGraduateOrDoctoralExamResultsStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningEquipmentUsed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22326', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningFollowUpRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22327', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'PartB619PotentialEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22330', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22331', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22333', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22334', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDeclineDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'DateOfTransitionPlan' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22337', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentMultipleOffenseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22676', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22677', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Schedule' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22678', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RefGoalMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22679', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RefIEPGoalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22680', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressReportDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22681', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22682', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22682', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22683', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RefGoalStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22684', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'Status' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22685', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'IDEAPlacementRationale' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22686', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'AcademicDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22687', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'FunctionalDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22688', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'GeneralEducationDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22689', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'PreschoolDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22690', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentStrengthsDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22691', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'ParentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22692', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22693', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'DeclinedServicesDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22694', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RefFrequencyUnitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22695', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'InstancesPerCycle' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22696', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'FrequencyLength' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22697', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'DurationInMinutes' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22698', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ExtendsOutsideSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22699', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'SettingDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22700', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RefIEPAuthorizationDocumentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22701', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RefAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22702', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AcceptanceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22703', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'DecisionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22704', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22705', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22706', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AuthorizationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22707', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22708', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22709', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RefIEPEligibilityEvaluationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22710', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RefIDEAEligibilityEvaluationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22711', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'EvaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ParentObservations' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22714', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefIDEADisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22715', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22716', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22717', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'AlternateName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22718', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'ApproverName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22719', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAssessMethodTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22720', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RefCredentialIdentifierSystemId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22721', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22722', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'EstimatedDuration' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22723', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialNAICSIndustryType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22724', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22725', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegionException' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22726', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Keywords' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22727', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MaximumDuration' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22728', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumAge' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22729', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumDuration' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22730', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefIntendedPurposeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22731', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RegionGeoJSON' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22732', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22733', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ValidationMethodDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22734', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefVerificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22735', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22737', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefONETSOCOccupationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22738', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypeURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22742', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'StateFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22743', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'LEAFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22744', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'SchoolFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22745', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingArea' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22746', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'SignificantCognitiveDisabilityIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22747', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22747', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22748', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22748', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22749', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityAcquisitionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22750', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityAdditionYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22751', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityBuildingPermanency' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22752', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22753', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingHistoricStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22754', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteArea' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22755', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityBlockNumberArea' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22756', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22757', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22758', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingPrimaryUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22759', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22760', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityCensusTract' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22761', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22762', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionDateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22763', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionMaterialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22764', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityExpectedLife' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22765', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'FacilityReplacementValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfStories' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22768', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteImprovementLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22769', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearBuilt' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22770', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearOfLastModernization' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22771', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingAirDistributionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22772', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCommMgmtComponentSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22773', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22774', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilitySystemOrComponentConditionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22775', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCoolingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22776', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingElectricalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22777', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityApplicableFederalMandateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22778', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityFederalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22779', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingFireProtectionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHeatingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolIndicatorStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaAlternateFundUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22908', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22953', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAwayFromSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22952', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAccessId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22954', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceProviderId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22936', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'InternetAccessInResidence' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22916', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefBarrierToInternetAccessInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22937', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetAccessTypeInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22939', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetPerformanceInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'CohortMedianEarnings' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22915', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAdultEducationProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22969', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RefWIOABarrierstoEmploymentId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22970', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOACareerServices' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22971', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOATrainingServices' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22932', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'FederalRaceAndEthnicityDeclined' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22951', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22959', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RefRoleId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22933', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'FirstGenerationCollegeStudent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22944', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideEstimate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22945', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideStandardError' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22943', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideDateProcessed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22946', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageBeginYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22947', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageEndYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22919', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefinitionTerminalDegreeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22914', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22912', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentEmployedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22913', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSCredentialIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22948', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysTardy' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22964', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RefStaffCompensationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22962', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationAnnualSupplement' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22963', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationLongevity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22929', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEDFactsTeacherInexperiencedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22930', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefOutOfFieldStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22968', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefStudentSchoolAffiliationStateDefinedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22960', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemDataCollectionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22961', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22923', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22922', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22924', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionOpenDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22921', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionCloseDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22920', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionAcademicSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22925', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22958', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22958', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22957', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22957', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22956', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22956', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22941', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetUploadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22938', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetDownloadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22940', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetSpeedTestDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22931', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'EmancipatedMinor' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22950', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfHouseholdCollegeStudents' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22949', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefNumberOfDependentsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'ChildrenOfFallenHeroesIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22965', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'PartName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22967', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22966', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22935', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22934', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22926', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'RefDataCollectionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22991', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'ProjectBasedLearningIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22992', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'OrganizationProjectBasedLearningId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22992', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'RefProjectBasedLearningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22975', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CourseLevelApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22974', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22993', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationTeacherQualificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22978', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEdFactsCertificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22994', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceAvailabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22972', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'AdjustedCapacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22973', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'RefAdjustedCapacityReasonTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22976', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAge2AndOlderCapacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22977', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAgeUnder2Capacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22985', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22986', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22987', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22982', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22983', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22984', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22980', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramSubgrantCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationEnrollmentCapacityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'PrimaryProgramIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21001', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21002', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21003', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardTitle' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RefAcademicHonorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AccountabilityReportTitle' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21358', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21011', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAypStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21013', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21013', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21014', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AlternateAypApproachIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21015', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefAlternativeSchoolFocusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21018', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AdvancedPlacementCreditsAwarded' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21019', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21019', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21348', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21349', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21349', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21350', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'OperationalStatusEffectiveDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21352', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21352', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21352', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21354', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21354', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21356', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RefQrisParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21357', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21360', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21361', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21361', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21362', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21507', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'ClassroomIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21507', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'ClassroomId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21158', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'IdentificationSystem' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21365', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'FormNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21366', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21367', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Abbreviation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21368', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21368', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21369', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'InstructionalRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21370', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21373', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21374', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAssessmentAccommodationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21375', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21375', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21376', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21376', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21377', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentPlatformTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21379', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21380', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21380', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21382', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21383', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Difficulty' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21384', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemCharacteristicTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21385', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'ResponseChoicePattern' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21387', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21388', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21389', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'OptimalValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21390', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'DistractorAnalysis' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21392', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stem' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21394', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Duration' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21395', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21396', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessItemResponseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21397', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AidSetUsed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21398', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'TimeAssessed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21399', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21405', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21407', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'ScoreMetric' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21408', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'LowerCutScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21409', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'UpperCutScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21411', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21412', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21413', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'UrlReference' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21414', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RefStateANSICodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21415', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RefPersonRelationshipTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21416', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21417', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21418', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21418', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21419', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefContinuationOfServicesReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21420', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MepEligibilityExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21421', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'MultipleBirthIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21422', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MigrantStudentQualifyingArrivalDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21423', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'QualifyingMoveFromCity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21424', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromCountryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21425', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromStateId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21426', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'DesignatedGraduationSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21427', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21428', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ImmunizationRecordFlag' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21429', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefMedicalAlertIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21430', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepProjectBasedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21432', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDesignation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21433', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealChangedDesignation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21434', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21435', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'StateTransferabilityOfFunds' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21437', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21437', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21438', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21438', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21439', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefBarrierToEducatingHomelessId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21443', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessStandardsFunding' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21444', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessmentAdminFunding' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21445', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateStateReceivedTitleIIIAllocation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21446', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateTitleIIIFundsAvailableToSubgrantees' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21447', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'NumberOfDaysForTitleIIISubgrants' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21451', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21452', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpentOnStrategicPriorities' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21453', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepProjectTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21454', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeProgramsFundsReceived' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21456', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RefLiteracyAssessmentId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21457', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyGoalMetStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21458', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPostTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21459', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPreTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21461', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'IndicatorName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21462', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Instrument' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21463', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'CollectionFrequency' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21464', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'MostRecentCollection' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21465', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Target' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21466', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Performance' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The category that describes how the student spends his or her time not physically present on school grounds and not participating in instruction or instruction-related activities at an approved off-grounds location.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAbsentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category that describes how the student spends his or her time when attending an instructional program approved by the state and/or school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPresentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of attendance event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of scheduled or unscheduled calendar event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCalendarEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an assessment conforms to a standard.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContentStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineLengthDifferenceReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies where the incident occurred and whether or not it occurred on campus.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The evidence by which a persons name, address, date of birth, etc. is confirmed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason for the termination of the employment relationship.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type of separation occurring between a person and the organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of position the staff member holds in the specific course section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefClassroomPositionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of the leave event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaveEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Supplemental information about an incident when the primary offense is more serious in nature than alcohol or drug, etc. offenses.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehaviorSecondary', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of previous, alternate or other names for a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOtherNameType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of address listed for an organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role that the Staff Member has been assigned for a Class Section. (A teacher may have the lead responsibility for one section and serve a supporting role for another section of the same course.)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingAssignmentRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The process by which a student enters a school (Course Section) during a given academic session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The circumstances under which the student exited from membership in a course section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The publication status of the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyFrameworkPublicationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category of charter school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the standard curriculum used for this course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCurriculumFrameworkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaDistinctionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of organization providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramSponsorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic term for which the data apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicTermDesignator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual''s enrollment in a course or courses in which the instructional content is delivered exclusively via distance education. Distance education is education that uses one or more technologies to deliver instruction to students who are separated from the instructor and to support regular and substantive interaction between the students and the instructor synchronously or asynchronously. Technologies used for instruction may include: Internet; one-way and two-way transmissions through open broadcasts, closed circuit, cable, microwave, broadband lines, fiber optics, satellite or wireless communication devices; audio conferencing; and video cassette, DVDs, and CD-ROMs, if the cassette, DVDs, and CD-ROMs are used in a course in conjunction with the technologies listed above.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDistanceEducationCourseEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which an institution structures most of its courses for the academic year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPredominantCalendarSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report employees.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIpedsOccupationalCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The contracted teaching period for faculty.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffContractLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an individual is employed for a standard number of hours (as determined by civil or organizational policies) in a week, month, or other period of time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFullTimeStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of employment contract used by an institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentContractType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether an institution has personnel positions that lead to consideration for tenure.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTenureSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the type of faculty status a person has if, by institutional definition, a staff member has faculty status.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffFacultyTenure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic rank of staff whose primary responsibility is instruction, research, and/or public service. Institutions without standard academic ranks should code staff whose primary responsibility is instruction, research, and/or public service as "No Academic Rank."', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicRank', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type(s) of instruction being delivered by staff whose primary responsibility is instruction. Instruction that is for "credit" can be applied toward the requirements for a postsecondary degree, diploma, certificate or other formal award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report graduate assistants.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateAssistantIpedsCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The component for which tuition is being charged. It might be a time period (term, quarter, year, etc.) or it might be an entity of education (course, credit hour, etc.).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Applicant who has been granted an official offer to enroll in a postsecondary institution. Admitted applicants should include wait-listed students who were subsequently offered admission.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmittedStudent', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The domain to which the Grade Point Average is referencing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGradePointAverageDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the company that provides the examination used in the teacher education program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationTestCompany', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is pursuing certification as a teacher.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person completed a state-approved teacher preparation program. The fact that a person has or has not been recommended to the state for initial certification or licensure may not be used as a criterion for determining who is a program completer.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepCompleterStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is enrolled in an alternative teacher preparation program as defined by Title II.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAltRouteToCertificationOrLicensure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is pursuing licensure/certification in a field designated as a shortage area as defined by Title II.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCriticalTeacherShortageCandidate', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is enrolled in a supervised clinical experience (including student teaching) as part of a teacher preparation program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSupervisedClinicalExperience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of examination used to assess teacher candidate''s knowledge and skills.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationCredentialExam', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the type of credential exam associated with a given exam score.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationExamScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtIntake', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtPosttest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of instructional program in which an adult is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeInstructionalProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type, by location or delivery mode, of adult education instruction program in which an adult participates.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeSpecialProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s reasons for attending an adult education class or program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalsForAttendingAdultEducation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The action taken with respect to postsecondary enrollment by the learner after program exit or when co-enrolled in ABE and postsecondary with respect to enrollment in a postsecondary educational or occupational skills program building on prior services or training received.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAePostsecondaryTransitionAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The titles of employment, official status, or rank of adult education staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The condition under which a person has agreed to serve as an employee.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the category of the adult education certification a person holds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeCertificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of institution responsible for providing adult education instructional services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalTechnicalCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Method used for the collection of wage data for an employment record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageCollectionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of Child Development Associate credential as defined by options.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentAssociateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of financial assistance received in support of non-credit professional development activities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalDevelopmentFinancialSupport', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the core knowledge areas addressed by Early Learning professional development.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the accreditation status of a higher education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHigherEducationInstitutionAccreditationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the wage information has been verified.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a program meets NAEYC or NAFCC standards for infant group sizes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELGroupSizeStandardMet', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The current licensing status for an early learning program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramLicenseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodProgramEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the for-profit status of a facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Program provides services to meet the needs of children in special circumstances.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPopulationServed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of communication methods with parents.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunicationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Rural-Urban Continuum Codes form a classification scheme that distinguishes metropolitan (metro) counties by the population size of their metro area, and nonmetropolitan (nonmetro) counties by degree of urbanization and adjacency to a metro area or areas. The metro and nonmetro categories have been subdivided into three metro and six nonmetro groupings, resulting in a nine-part county codification. The codes allow researchers working with county data to break such data into finer residential groups beyond a simple metro-nonmetro dichotomy, particularly for the analysis of trends in nonmetro areas that may be related to degree of rurality and metro proximity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERSRuralUrbanContinuumCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the nature of the association between a Competency Definition and an associated data object such as a Learning Resource, an Assessment Item, or even another Competency Definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefAssociationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Classification of the Competency Definition using Bloom''s Taxonomy Domains. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBloomsTaxonomyDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Classification of the Competency Definition using intelligences defined for Howard Earl Gardner''s Theory of Multiple Intelligences.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMultipleIntelligenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The criteria for the set of competencies that represent completion or partial completion of a unit, course, program, degree, certification, or other achievement/award. Specifies whether completion requires achievement of all items in the set or some number of items.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencySetCompletionCriteria', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The alignment relationship between the resource and a competency definition object.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceCompetencyAlignmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The scaling system used to specify the text complexity of an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTextComplexitySystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The individual or group for which the resource was produced.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceIntendedEndUserRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The predominate mode of learning supported by the learning resource. Acceptable values are active, expositive, or mixed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The predominate type or kind characterizing the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of action taken by the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work assigned to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of time of the Maximum Time Allowed value.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityMaximumTimeAllowedUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the assignment as one that is graded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityAddToGradeBookFlag', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status related to a student enrollment in an instance of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEnrollmentStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The agency that accredited a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccreditationAgency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the facility license.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFacilityLicensingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedAfterExit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of one organization’s relationship to another.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationRelationship', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of level indicating a point in a progression through an educational or training context, for which the credential is intended; select from an existing enumeration of such types.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLAudienceLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role that an organization or person has in relation to this Credential Definition based on terms defined by Credential Engine.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAgentRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category used to report the school''s performance on the progress of achieving the English language proficiency indicator.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation given to a school by the state for additional targeted support and improvement as part of its statewide system of annual meaningful differentiation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefComprehensiveSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The documented or assumed reason a person is being served by a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramEntryReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a telephone number is listed under a directory assistance service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberListedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The documented or assumed reason the person is no longer being served by the adult education program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdultEducationProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the barrier to having internet access in the student''s primary place of residence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToInternetAccessInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A process indicator of the level of stability, quality, and/or preparedness of the collection of data.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDataCollectionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of academic or career and technical outcome attained up to 90 days after exiting the facility or program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of academic or career and technical outcome attained while enrolled in the program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether teachers have been identified as inexperienced as defined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEDFactsTeacherInexperiencedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether teachers have been identified as teaching a subject or field for which they are not certified or licensed as defined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutOfFieldStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary type of internet service used in the student''s primary place of residence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccessTypeInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the student can complete the full range of learning activities, including video streaming and assignment upload, without interruptions caused by poor internet performance in their primary place of residence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetPerformanceInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The student''s relationship to the dependents who live with the student or receive more than half of the student''s support', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNumberOfDependentsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of personal information verified through the Personal Information Verification evidence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the primary learning device is shared or not shared with another individual', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of device the student uses most often to complete learning activities away from school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAwayFromSchool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The provider of the primary learning device.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceProvider', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The origins of a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRace', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of entity that created or indicated the Record Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusCreatorEntity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A process indicator of the level of stability, quality, and/or preparedness of the record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the way in which a person relates to an organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The source for the staff compensation a person receives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffCompensationSourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the nature of a student''s affiliation, as defined by the state, with a public school and used generally, but not exclusively, for the purpose of determining residency, funding, or accountability.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSchoolAffiliationStateDefinedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A self-identified barrier as defined by the Workforce Innovation and Opportunity Act (WIOA) that is presumed to affect placement of a participant in unsubsidized employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWIOABarrierstoEmployment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001590', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDirectoryInformationBlockStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEducationStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001603', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLocalRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001604', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001605', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELStateRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001606', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELTrainerCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001607', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEducationVerificationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001609', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001616', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSProgramLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001622', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReimbursementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001623', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScheduledWellChildScreening', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001629', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferOutIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001630', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTrimesterWhenPrenatalCareBegan', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001632', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001633', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunityBasedType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001636', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceProfessionalStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001637', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6393Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001638', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6395LanguageFamily', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001640', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryBranch', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001641', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDQPCategoriesOfLearning', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolManagementOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001656', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAPartCEligibilityCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001657', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTribalAffiliation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001659', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001666', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardPrerequisiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001668', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPESCAwardLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001670', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001671', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001672', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001673', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001674', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenueRestriction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001675', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001676', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSNaturalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001677', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001678', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001679', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSIntercollegiateAthleticsExpenses', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001680', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBPellGrantTransactions', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001681', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportSchedule', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001697', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001698', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPGoalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001701', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001702', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001719', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPAuthorizationDocumentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001720', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001728', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPEligibilityEvaluationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001729', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEligibilityEvaluationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001733', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001738', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAssessMethodType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001739', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialIdentifierSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001740', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001749', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefIntendedPurposeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001753', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefVerificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001755', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001756', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefONETSOCOccupationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVirtualSchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNationalSchoolLunchProgramStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001772', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHistoricStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001777', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPrimaryUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001778', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001781', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001782', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionMaterialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001787', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteImprovementLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001790', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAirDistributionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001791', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommMgmtComponentSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001792', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001793', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySystemOrComponentCondition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001794', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCoolingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001795', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingElectricalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001796', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityApplicableFederalMandateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001797', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFederalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001798', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFireProtectionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001799', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHeatingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001800', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHVACSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001802', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalConveyingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001803', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPlumbingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001804', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSecuritySystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStateOrLocalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001807', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingTechnologyWiringSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingVerticalTransportationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001813', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAdministrativeSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001814', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingArtSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001815', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingBasicClassroomDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001816', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001817', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCareerTechEducationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCirculationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001819', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnvOrEnergyPerformanceRatingCat', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001820', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFurnishingsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001821', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFoodServiceSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001822', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingIndoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001823', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingLibMediaCenterSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOperationsOrMaintSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001825', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001826', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorOrNonathleticSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001827', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPerformingArtsSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001828', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSchoolDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001829', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingScienceSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001830', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteOutdoorAreaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001831', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpaceDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001832', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpecEdSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001833', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingStudentSupportSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001836', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAssemblySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001843', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFullServiceKitchenType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001851', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingInstructionalSpaceFactorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseRationaleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001853', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseSchedulingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001854', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUserType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001855', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommunityUseSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001860', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSiteUseRestrictionsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001862', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentEnrollmentAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001864', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityAuditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001865', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCharterSchoolRealtyAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001866', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCleaningStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001867', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceAgencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001868', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergyConservationMeasureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001870', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergySourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001871', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMgmtEmergencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001872', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityCapitalProgramMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001873', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityOperationsMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001874', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityHazardousMaterialsOrCondType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001875', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityJointDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001876', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMaintStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001877', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityNaturallyOccurringHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001878', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityProviderType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001879', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001883', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001884', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001885', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMandateAuthorityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001886', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFinancingFeeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001888', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseAmountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001889', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Licensing Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramLicenseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Program Enrollment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodProgramEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Profit Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Circumstances Population Served', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPopulationServed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Parent Communication Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunicationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Economic Research Service Rural-Urban Continuum Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERSRuralUrbanContinuumCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefAssociationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Blooms Taxonomy Domain', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBloomsTaxonomyDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Multiple Intelligence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMultipleIntelligenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Set Completion Criteria', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencySetCompletionCriteria', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Competency Alignment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceCompetencyAlignmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Text Complexity System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTextComplexitySystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Intended End User Role', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceIntendedEndUserRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Interactivity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Maximum Time Allowed Unit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityMaximumTimeAllowedUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Add to Grade Book Flag', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityAddToGradeBookFlag', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Enrollment Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEnrollmentStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accreditation Agency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccreditationAgency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Licensing Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFacilityLicensingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed While Enrolled', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed After Exit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedAfterExit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Record Administrative Data Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERAdministrativeDataSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Workforce Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWfProgramParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Early Learning Developmental Domain', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentELDevelopmentalDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Educational Use', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceEducationalUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Identifier Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSubtestIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Language Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLanguageLearnerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Hazard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Support Tool Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSupportTool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Usage Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUsageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Link Indication Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLinkIndicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Braille Grade Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleGradeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Number of Braille Dots Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedNumberOfBrailleDots', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Braille Mark Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleMarkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Braille Status Cell Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleStatusCellType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Signing Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSigningType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Alternative Representation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedAlternativeRepresentationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Spoken Source Preference Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSpokenSourcePreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need User Spoken Preference Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUserSpokenPreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Masking Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedMaskingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Increased Whitespacing Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedIncreasedWhitespacingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NAEP Mathematical Complexity Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepMathComplexityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Interaction Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefApipInteractionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Identification System for Assessment Form Section', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentFormSectionIdentificationSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Identifier Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NAEP Aspects of Reading', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepAspectsOfReading', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Instructional Delivery Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Use Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Space Use Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpaceUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'County ANSI Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCounty', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Weapon Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWeaponType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Staff Role Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionStaffRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Application Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidApplicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Need Determination Methodology', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeedDeterminationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Date Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Transition Plan Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramTransitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Meeting Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Gifted Eligibility Criteria', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramGiftedEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Immunization Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefImmunizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter Difficulty Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryDifficultyCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Kappa Algorithm', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryKappaAlgorithm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accommodations Needed Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationsNeededType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Advanced Placement Course Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdvancedPlacementCourseCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Education Levels Addressed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityEducationLevelsAddressed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Allergy Severity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergySeverity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Allergy Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Blended Learning Model Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBlendedLearningModelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Cluster', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerCluster', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Education Plan Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerEducationPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Authorizer Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Correctional Education Facility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectionalEducationFacilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Academic Grade Status Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseAcademicGradeStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Applicable Education Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseApplicableEducationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Basis Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Honors Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseHonorsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Instruction Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Instruction Site Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionSiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Interaction Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credit Hours Applied Other Program', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditHoursAppliedOtherProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disability Condition Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disability Condition Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disability Determination Source Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityDeterminationSourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Doctoral Exams Required Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDoctoralExamsRequiredCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Federal Funding Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFederalFundingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Monitoring Notifications', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationMonitoringNotifications', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Purpose of Monitoring Visit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPurposeOfMonitoringVisit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Other Federal Funding Sources', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOtherFederalFundingSources', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Outcome Measurement Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOutcomeMeasurementLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Professional Development Topic Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProfessionalDevelopmentTopicArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Eligibility Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibilityStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed Prior to Enrollment', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedPriorToEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Status While Enrolled', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatusWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Fund Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountFundClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountProgramCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Balance Sheet Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountBalanceSheetCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Function Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureFunctionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Object Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureObjectCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Frequency of Service', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyOfService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Graduate or Doctoral Exam Results Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateOrDoctoralExamResultsStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Multiple Offense Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentMultipleOffenseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Perpetrator Injury Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPerpetratorInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Person Role Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPersonRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Planned Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramPlannedServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'K12 End of Course Requirement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12EndOfCourseRequirement', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access API Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessAPIType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access Hazard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access Mode Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessModeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Book Format Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceBookFormatType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Control Flexibility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceControlFlexibilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Digital Media Sub Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaSubType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Digital Media Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Media Feature Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceMediaFeatureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Physical Media Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourcePhysicalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Node Accessibility Profile', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefNodeAccessibilityProfile', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21342', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDegreeOrCertificateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21344', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodCredential', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21346', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21349', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLicenseExempt', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21352', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceOption', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnvironmentSetting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21356', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefQrisParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21358', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21360', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21362', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21368', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScoreMetricType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21374', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAccommodationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21376', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21377', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPlatformType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21380', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionSpecialCircumstanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21382', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21384', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemCharacteristicType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21396', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21405', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministered', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21414', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStateANSICode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21415', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonRelationshipType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21419', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContinuationOfServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21427', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21429', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMedicalAlertIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21430', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectBased', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21437', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIILanguageInstructionProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21439', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToEducatingHomeless', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21441', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaFundsTransferType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21453', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21456', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLiteracyAssessment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21477', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRlisProgramUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21478', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIProfessionalDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21479', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplinaryActionTaken', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21481', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramDayLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21497', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentReporterType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21500', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehavior', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21501', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21506', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentTimeDescriptionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21515', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21521', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21522', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21523', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21526', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentSchoolAge', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21527', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIAccountability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21529', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodOfCwd', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21530', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemovalReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21531', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotCompleting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21532', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemoval', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21536', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21539', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramFundingAllocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21546', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodFirearms', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21547', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisciplineMethodFirearm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21548', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFirearmType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21549', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21550', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentEC', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21550', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEnvironmentEL', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21552', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReapAlternativeFundingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21553', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationAgeGroupTaught', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnologyLiteracyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21563', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreAndPostTestIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21564', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPretestOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21565', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21578', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStatePovertyDesignation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21579', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21580', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21581', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21581', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21582', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffPerformanceLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21592', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAbsentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21593', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPresentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21594', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCalendarEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21598', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContentStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineLengthDifferenceReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21613', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21614', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21615', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefClassroomPositionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaveEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21620', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehaviorSecondary', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21627', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOtherNameType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21644', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingAssignmentRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21652', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21654', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21675', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyFrameworkPublicationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21686', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21688', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCurriculumFrameworkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21689', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaDistinctionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21692', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramSponsorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21703', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicTermDesignator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21704', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDistanceEducationCourseEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21705', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPredominantCalendarSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21708', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIpedsOccupationalCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffContractLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFullTimeStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21714', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentContractType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21715', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTenureSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21716', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffFacultyTenure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21717', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicRank', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21719', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21721', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateAssistantIpedsCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21725', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmittedStudent', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21739', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGradePointAverageDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21748', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationTestCompany', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21749', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21750', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepCompleterStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21751', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAltRouteToCertificationOrLicensure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22929', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEDFactsTeacherInexperiencedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22930', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutOfFieldStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22937', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccessTypeInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22939', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetPerformanceInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22949', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNumberOfDependentsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22951', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22952', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22953', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAwayFromSchool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22954', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceProvider', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22955', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRace', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22956', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusCreatorEntity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22958', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22959', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22964', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffCompensationSourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22968', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSchoolAffiliationStateDefinedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22969', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWIOABarrierstoEmployment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The extent of formal instruction a person has received (e.g., the highest grade in school completed or its equivalent or the highest degree received).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The extent of formal instruction a person has received (e.g., the highest grade in school completed or its equivalent or the highest degree received).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the teacher has been classified as highly qualified based on assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'HighlyQualifiedTeacherIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a person was hired for a position, or consecutive positions within the same organization and job classification.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'HireDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the person traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central and South America, and other Spanish cultures, regardless of race.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'HispanicLatinoEthnicity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary nighttime residence of the person at the time the person was identified as homeless.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RefHomelessNighttimeResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Children and youth who lack a fixed, regular, and adequate nighttime residence. Homeless children and youth include: 1) children and youth who are sharing the housing of other persons due to loss of housing, economic hardship, or a similar reason; are living in motels, hotels, trailer parks, or camping grounds due to the lack of alternative adequate accommodations; are living in emergency or transitional shelters; are abandoned in hospitals; or are awaiting foster care placement; 2) children and youth who have a primary nighttime residence that is a public or private place not designed for or originally used as a regular sleeping accommodation for human beings; or 3) children and youths who are living in cars, parks, public spaces, abandoned buildings, substandard housing, bus or train stations, or similar settings. 4) migratory children who qualify as homeless because the children are living in circumstances described in the above. (See Section 103 of the McKinney Act for a more detailed description of this data element).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'HomelessnessStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the type of academic distinctions earned by or awarded to the person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'HonorDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of increased learning time provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of increased learning time provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The first registration term of a person enrolling in credit-granting courses at a postsecondary institution after completing high school (or its equivalent). ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InitialEnrollmentTerm' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of communication number listed for an organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefInstitutionTelephoneTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credit hours and/or contact hours attempted by a person during a term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of measure of student instructional activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefInstructionalActivityHoursId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the extent to which the district has effectively and fully integrated technology, as defined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefIntegratedTechnologyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of the last qualifying move of a migrant student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'LastQualifyingMoveDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full legal last name borne in common by members of a family.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the improvement stage for AYP of the local education agency (LEA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The three-digit unique identifier assigned to the supervisory union by the state. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'SupervisoryUnionIdentificationNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of whether a postsecondary institution''s highest level of offering is a program of 4-years or higher (4 year), 2-but-less-than 4-years (2 year), or less than 2-years.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of whether a postsecondary institution''s highest level of offering is a program of 4-years or higher (4 year), 2-but-less-than 4-years (2 year), or less than 2-years.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A school that has been designed: 1) to attract students of different racial/ethnic backgrounds for the purpose of reducing, preventing, or eliminating racial isolation; and/or 2)to provide an academic or social focus on a particular theme (e.g., science/math, performing arts, gifted/talented, career academy or foreign language).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefMagnetSpecialProgramId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name or description of the marking period (e.g., fall, first marking period).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MarkingPeriodName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicator of student performance at the mid-point of the marking period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MidTermMark' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A full legal middle name given to a person at birth, baptism, or through legal change.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of services received by participating migrant students in the migrant education program (MEP).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time of year that a Migrant Education Program operates.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of employment, official status, or rank of staff working in the Migrant Education Program (MEP).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefMepStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the county, parish, borough, or comparable unit (within a state) in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'CountyName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the county, parish, borough, or comparable unit (within a state) in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'AddressCountyName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full legally accepted name of the institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'NameOfInstitution' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RefNeglectedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of a non-US citizen''s Visa type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefVisaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of time necessary for a person to complete all requirements for a degree or certificate according to the institution''s catalog. This is typically 4 years (8 semesters or trimesters, or 12 quarters, excluding summer terms) for a bachelor''s degree in a standard term-based institution; 2 years (4 semesters or trimesters, or 6 quarters, excluding summer terms) for an associate''s degree in a standard term-based institution; and the various scheduled times for certificate programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'NormalLengthTimeForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of measurement for length of time for completion.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefTimeForCompletionUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits that a student can earn for enrolling in and completing a given course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits that a student can earn for enrolling in and completing a given course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits that a student can earn for enrolling in and completing a given course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits an individual earns by the successful completion of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits an individual earns by the successful completion of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits an individual earns by the successful completion of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days a person is absent when school is in session during a given reporting period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysAbsent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days a person is present when school is in session during a given reporting period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days a person is present when school is in session during a given reporting period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'All other benefits paid by the school district, municipal, state, federal, and other government agencies for the teacher or early learning provider, prorated to the specific school or local provider agency indicated on the record, not including retirement and health insurance benefits or contributions made by the teacher or early learning provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationOtherBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Previous, alternate or other names or aliases associated with the person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'OtherName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether paraprofessionals are classified as qualified for their assignment according to state definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefParaprofessionalQualificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the 95 percent participation requirement in the mathematics assessment in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the 95 percent participation requirement on the reading/language arts assessment in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusRlaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school is identified as persistently dangerous in accordance with state definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'PersistentlyDangerousStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An appellation, if any, used to denote rank, placement, or status (e.g., Mr., Ms., Reverend, Sister, Dr., Colonel).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Prefix' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The descriptive name of a person''s position.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'PositionTitle' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A number that identifies each postal delivery area in the United States used as a portion of an address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A number that identifies each postal delivery area in the United States used as a portion of an address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The groups of students for whom pre-kindergarten programs are available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ages of children not served under IDEA to whom the LEA''s pre-kindergarten services are available. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RefPreKEligibleAgesNonIDEAId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The major or overriding disability condition that best describes a person''s impairment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'PrimaryDisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the telephone number should be used as the principal number for a person or organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the telephone number should be used as the principal number for a person or organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A general job classification that describes staff that performs duties requiring a high degree of knowledge and skills generally acquired through at least a baccalaureate degree (or its equivalent obtained through special study and/or experience) including skills in the field of education, educational psychology, educational social work, or an education therapy field.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A general job classification that describes staff that performs duties requiring a high degree of knowledge and skills generally acquired through at least a baccalaureate degree (or its equivalent obtained through special study and/or experience) including skills in the field of education, educational psychology, educational social work, or an education therapy field.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the math proficiency target in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The documented or assumed reason a student is no longer being served by a special program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The normal length in credit/contact hours of a person''s program as published in the institution''s catalogue, website, or other official documents.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'ProgramLengthHours' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of hours (credit or contact) by which the normal length of a program of study is measured.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefProgramLengthHoursTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The system outlining instructional or non-instructional activities and procedures designed to accomplish a predetermined educational objective or set of objectives or to provide support services to a person and/or the community.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RefProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year and month the student is projected to graduate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ProjectedGraduationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the LEA was able to implement the provisions for public school choice under Title I, Part A, Section 1116 of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolChoiceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason a student is not tested.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotTestedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of recognition given to the student for accomplishments in a co-curricular, or extra-curricular activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RefActivityRecognitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the school was restructured, transformed or otherwise changed as a consequence of the state’s accountability system under ESEA or as a result of School Improvement Grants (SIG).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefReconstitutedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the competency definition(s) addressed in the Course Section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RelatedCompetencyDefinitions' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefRestructuringActionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Contributions made by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider’s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationRetirementBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicator to determine whether the teacher''s base salary includes pay for teaching assignments alone.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'SalaryForTeachingAssignmentOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school received funds under Section 1003 of ESEA, as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementFundsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of intervention used by the school under the School Improvement Grant (SIG).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSigInterventionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the improvement stage of the school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the level of the education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the level of the education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of education institution as classified by its primary focus. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year for a reported school session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of minutes that all students were required to be at school and any additional learning time (e.g., before or after school, weekend school, summer school) for which all students had the opportunity to participate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a staff member''s salary is paid by the Title I, Part C Migrant Education Program (MEP) of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason why the student was disciplined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the person has achieved acceptable performance on a standards-based profile of technology user skills as defined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'TechnologySkillsStandardsMet' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique five-digit number assigned to each federal program as listed in the Assistance Listings. See https://sam.gov/content/assistance-listings', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a staff member is targeted assistance (TAS) program staff funded by Title I, Part A, Section 1115 of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a staff member is targeted assistance (TAS) program staff funded by Title I, Part A, Section 1115 of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the reading/language arts proficiency target in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusRLAId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method used to discipline students who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodFirearmsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The methods used to discipline students who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIDEADisciplineMethodFirearmId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of firearm.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefFirearmTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program in which children ages 3 through 5 attend and in which these children receive special education and related services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefIDEAEnvironmentELId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program in which children ages 3 through 5 attend and in which these children receive special education and related services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentECId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of progress shown in academic subjects.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of progress shown in academic subjects.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a migratory child 1) is failing to meet, or most at risk of failing to meet, the state''s challenging academic content standards and student academic achievement standards; and 2) has experienced interruptions in their education during the regular school year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'PrioritizedForServices' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that migrant children are receiving instructional or support services under the continuation of services authority ESEA Title III Section 1304(e)(2)-(3).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ContinuationOfServicesStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The age range of special education students taught.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The age range of special education students taught.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the technology literacy of 8th graders.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefTechnologyLiteracyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The dollar amount spent on supplemental educational services during the school year under Title I, Part A, Section 1116 of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The dollar amount spent on transportation for public school choice during the school year under Title I of ESEA as amended, Part A, Section 1116.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'PublicSchoolChoiceFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether students took both a pre-test and a post-test to measure academic improvement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether students took both a pre-test and a post-test to measure academic improvement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The results of a pre-test in academic subjects.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentPretestOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a student''s scores were proficient.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefProficiencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The dollar amount of the 20 percent reservation for supplemental educational services and choice-related transportation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesSchoolChoice20PercentObligation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is classified as disabled under the American''s with Disability Act (ADA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'DisabilityStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether children (students) were provided educational services when removed from the regular school program for disciplinary reasons.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'EducationalServicesAfterRemoval' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A student who, at some time during the school year, is either a pregnant female student who is unmarried; or a male or female student who is unmarried or legally separated from a spouse and has a minor child or children.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'SingleParentOrSinglePregnantWoman' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year the cohort is expected to graduate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year the cohort is expected to graduate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation of a school’s poverty quartile for purposes of determining classes taught by highly qualified teachers in high and low poverty schools, according to state’s indicator of poverty.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation of a school’s poverty quartile for purposes of determining classes taught by highly qualified teachers in high and low poverty schools, according to state’s indicator of poverty.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The action taken with respect to postsecondary enrollment by the student who graduated from the school, LEA or state in the past two years.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentActionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of internet access available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of internet access available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether CTE participants were members of an underrepresented gender group (where one gender comprises less than 25 percent of the persons employed in those occupations or field of work).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefNonTraditionalGenderStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The levels used in district evaluation systems for assigning teacher or principal performance ratings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RefStaffPerformanceLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication a student has met the state-defined threshold of Career and Technical Education participation as defined in the State''s approved Perkins IV State Plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteParticipant' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the CTE student has completed a CTE program in a nontraditional field (where one gender comprises less than 25 percent of the persons employed in those occupations or fields of work).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteNonTraditionalCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of services/instruction the school is responsible for providing to the student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefK12ResponsibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The description of the place where an assessment is administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'LocationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The description of the place where an assessment is administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'Location' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An alternate name used for the school day, typically used for the bell schedule (e.g., Blue day, Red day).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'AlternateDayName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The category that describes how the student spends his or her time not physically present on school grounds and not participating in instruction or instruction-related activities at an approved off-grounds location.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAbsentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category that describes how the student spends his or her time when attending an instructional program approved by the state and/or school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefPresentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of attendance event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of the building on the site, if more than one building shares the same address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of the building on the site, if more than one building shares the same address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of scheduled or unscheduled calendar event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RefCalendarEventType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an assessment conforms to a standard.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefContentStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The north or south angular distance from the equator that, when combined with longitude, reflects an estimation of where the address is physically situated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The north or south angular distance from the equator that, when combined with longitude, reflects an estimation of where the address is physically situated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The east or west angular distance from the prime meridian that, when combined with latitude, reflects an estimation of where the address is physically situated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The east or west angular distance from the prime meridian that, when combined with latitude, reflects an estimation of where the address is physically situated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineLengthDifferenceReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A student who was enrolled, or eligible for enrollment, but has enrolled in another place because of a crisis.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A student who was enrolled, or eligible for enrollment, but has enrolled in another place because of a crisis.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code used to identify a crisis. This code should be able to accommodate numerous crises within a single school year. It is associated with the displaced student identifier in order to link a crisis to a student who was displaced or otherwise affected by the event. If the same code values are to be used over multiple years, it is important to have enough crisis-specific items (e.g., school year, date/time) to keep the events unique over time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the crisis that caused the displacement of students.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type or category of crisis (ex., chemical, earthquake, flood, wildfire, etc.).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the crisis affected the agency. This date may not be the same as the date the crisis occurred if evacuation orders are implemented in anticipation of a crisis.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The scale of equivalents, if applicable, for grades awarded as indicators of performance in schoolwork. For example, numerical equivalents for letter grades used in determining a student''s Grade Point Average (A=4, B=3, C=2, D=1 in a four-point system) or letter equivalents for percentage grades (90-100%=A, 80-90%=B, etc.)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The scale of equivalents, if applicable, for grades awarded as indicators of performance in schoolwork. For example, numerical equivalents for letter grades used in determining a student''s Grade Point Average (A=4, B=3, C=2, D=1 in a four-point system) or letter equivalents for percentage grades (90-100%=A, 80-90%=B, etc.)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies where the incident occurred and whether or not it occurred on campus.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The evidence by which a persons name, address, date of birth, etc. is confirmed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The evidence by which a persons name, address, date of birth, etc. is confirmed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The evidence by which a persons name, address, date of birth, etc. is confirmed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason for the termination of the employment relationship.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type of separation occurring between a person and the organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of position the staff member holds in the specific course section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of position the staff member holds in the specific course section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of the leave event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefLeaveEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Supplemental information about an incident when the primary offense is more serious in nature than alcohol or drug, etc. offenses.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorSecondaryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The identifier that uniquely identifies an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full, legally accepted name of the institution at the site level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The youngest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The youngest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of previous, alternate or other names for a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RefOtherNameTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date of the time period designated for the assessment administration.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start time of the time period designated for the assessment administration.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The finish date of the time period designated for the assessment administration.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The finish time of the time period designated for the assessment administration.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of a security issue, if any, discovered for an administration of an assessment, such as suspected cheating by a student or a teacher changing answers after a student takes the test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of security issue, if any, related to a learner''s response to an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The most recent date that the result was calculated/updated. The value should be the same as Assessment Result Date Created if the subtest has only been scored once, but may be different if the score was recalculated with a different result.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateUpdated' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the assessment result was generated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status related to a student enrollment in an instance of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEnrollmentStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name given to an assessment event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position of the assessment section presented in the sequence of sections within an assessment form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position of the assessment section presented in the sequence of sections within an assessment form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The globally unique identifier of an Assessment Form Section using a RFC 4122 compliant hexadecimal string.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The globally unique identifier of an Assessment using a RFC 4122 compliant hexadecimal string.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The agency that accredited a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefAccreditationAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the facility license.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefELFacilityLicensingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The hour, minute and second on which a session begins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionStartTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The hour, minute and second on which a session ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionEndTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The quarterly amount paid to individuals found employed during the reference period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'Earnings' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The state or other location in which an individual is found employed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmploymentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of jobs held by a person during the reference period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'EmployedInMultipleJobsCount' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day of the first day of the employment record reference period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day of the last day of the employment record reference period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Administrative data source of information used to collect employment and earnings-related data.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefERAdministrativeDataSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of workforce and employment development program that an individual is participating in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefWfProgramParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The purpose of the work in the context of education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceEducationalUseId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The details about the device or platform by with which the assessment was delivered to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'DeliveryDeviceDetails' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines whether or not the individual needs the kind of support defined by the entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines whether or not the individual needs the kind of support defined by the entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines whether or not the individual needs the kind of support defined by the entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'AssignedSupport' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines whether or not the individual needs the kind of support defined by the entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssignedSupportFlag' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Determines if the alternative accessible content is rendered as the default content for the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Determines if the alternative accessible content is rendered as the default content for the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Determines if the alternative accessible content is rendered as the default content for the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Determines if the alternative accessible content is rendered as the default content for the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the provider or publisher of the assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Provider' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If this score is preliminary, then this attribute value should be set. Preliminary scores may be provided for early use by the assessment program or user while final scoring is occurring.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'PreliminaryIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the source of the Diagnostic Statement based on a scored/evaluated portion of an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatementSource' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of responses that are included with the Student Score Set. Responses are those items that were attempted (partially or fully answered) by the student and not necessarily the number of items in the assessment (which can be determined from the assessment object).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'NumberOfResponses' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A weighting factor for how the item score is used to compute a sub-test score when the item is correct or partially correct. Item weight of 1 indicates the full item score is used. A weight of .5 would indicate the item only contributes one half of the item score to the subtest. A weight of 0 indicates the item does not affect the sub test score.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightCorrect' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A weighting factor for how the item score is used to compute a sub-test score when the item is attempted and incorrect. Item weight should be a negative value if the item subtracts from the score if missed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightIncorrect' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A weighting factor for how the item score is used to compute a sub-test score when the item has not been attempted by the student. Item weight should be a negative value if the item subtracts from the score if not attempted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightNotAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of identifier that is provided for a Subtest.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentSubtestIdentifierTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days of instruction the student has taken prior to testing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'DaysOfInstructionPriorToAssessment' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates if this registration is for a retest (retake). Retest can occur if a student failed a prior attempt and is eligible to retake. Other retest scenarios also can occur.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RetestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date/time assignment is made.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of session that is scheduled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date and time the assessment is scheduled to begin.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date and time the assessment is scheduled to end.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date and time the assessment actually began.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date and time the assessment actually began.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date and time the assessment actually ended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date and time the assessment actually ended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile a preference for the language of the user interface.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedsProfileContentLanguageLearnerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile a characteristic of a digital resource that may be specified as being dangerous to a user.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the electronic tool associated with a resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSupportToolId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the rating for the collection of Access for All (AfA) needs and preferences.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the rating for the collection of Access for All (AfA) needs and preferences.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the characteristics of presentation for a hyperlink when using a screen reader.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedLinkIndicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the rate of speech of a speech synthesizer.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'SpeechRate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the volume of a speech synthesizer.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Volume' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the Access for All (AfA) preference to invert the foreground and background Colors.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'InvertColorChoice' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the preferred magnification of the screen as a factor of a screen’s original size.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'Magnification' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the grade of Braille to use when using a Braille display.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleGradeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the number of dots in a Braille cell.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedNumberOfBrailleDotsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the number of active Braille cells in a Braille display.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'NumberOfBrailleCells' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile what textual properties to mark when using a Braille display.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleMarkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the resistance pressure of Braille display pins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'BrailleDotPressure' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the preferred presence or location of a Braille display status cell.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleStatusCellTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the default language for the displayed translation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ItemTranslationDisplayLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the default language for the keyword translation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'KeywordTranslationLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the default language for the keyword translation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefKeywordTranslationsLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the type of signing preferred by the user.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSigningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the default presentation mode of the associated Alternative Representations accessibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedAlternativeRepresentationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the preferred spoken audio form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSpokenSourcePreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Used as part of an Assessment Personal Needs Profile to define if the spoken play-back should commence from the start of a recording or not.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ReadAtStartPreferenceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Used as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUserSpokenPreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile whether or not the verbal alternative content presentation should be applied to directive content only.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'AssessmentNeedDirectionsOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A fund is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name given to the financial account in an organization''s accounting system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A program is a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives. The program classification provides the organization with a framework to classify instructional and other expenditures by program to determine cost.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The actual value of a financial account for the specified accounting period or fiscal year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'ActualValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The budgeted value of a financial account for the specified accounting period or fiscal year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'BudgetedValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The income level of an individual that is used by an institution''s financial aid office to determine an individual''s Expected Family Contribution (EFC). For dependent students this will include the parents'' adjusted gross income and the student''s adjusted gross income. For independent students this will include the student''s adjusted gross income.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidIncomeLevel' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Balance sheet accounts and statement of net position accounts are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The function describes the activity for which a service or material object is acquired. The functions of an organization are classified into five broad areas: instruction, support services, operation of non-instructional services, facilities acquisition and construction, and debt service. Functions are further classified into sub functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This classification is used to describe the service or commodity obtained as the result of a specific expenditure. Nine major object categories have codes ending in 00 and are further subdivided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The frequency at which a service is planned to occur or has occurred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefFrequencyOfServiceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The individual''s status in completing exams required for graduate or doctoral degree programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefGraduateOrDoctoralExamResultsStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The screening equipment used for the hearing screening or the method used for the vision screening', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningEquipmentUsed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Recommendations for follow-up after a health screening.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningFollowUpRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The determination of whether a child is potentially eligible for Part B 619 services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'PartB619PotentialEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether parents of a child potentially eligible for Part B preschool services have opted out of the impending notification to the local education agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date that parents of a child potentially eligible for Part B preschool services opt out of the impending notification to the local education agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date of the transition conference from IDEA Part C to Part B 619 or another early learning program or service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the parents declined approval for the transition conference from IDEA Part C to Part B 619 or another early learning program or service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDeclineDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date transition steps and services were added to the individualized service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'DateOfTransitionPlan' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the offense was primary or secondary in nature when a single incident included more than one type of offense.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentMultipleOffenseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the occurrence of physical injury to the perpetrator(s) (participants) involved in the incident and‚ if so‚ the level of injury sustained.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentPerpetratorInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role or type of participation of a person in a discipline incident.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RefIncidentPersonRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the rule‚ regulation‚ or standard that was violated when an incident occurred (e.g.‚ the identification of a relevant law‚ conduct standard‚ or acceptable use policy).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RegulationViolatedDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication whether a student’s behavior (offense) was a manifestation of‚ or related to‚ a disability condition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RelatedToDisabilityManifestationInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the school resource officer or any other law enforcement official was notified about the incident‚ regardless of whether official action is taken.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'ReportedToLawEnforcementInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the service is planned to begin.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramPlannedServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person provides services at more than one site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantProvider' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that this course has an end of course examination required by the SEA or LEA.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefK12EndOfCourseRequirementId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The language in which the professional development session is delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the learning resource is compatible with the referenced accessibility application programming interface (API).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessAPITypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A characteristic of the described learning resource that is physiologically dangerous to some users.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An access mode through which the intellectual content of a described learning resource or adaptation is communicated; if adaptations for the resource are known, the access modes of those adaptations are not included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessModeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator of a learning resource that is an adaptation for this resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'AdaptationURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the learning resource is compatible with assistive technologies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AssistiveTechnologiesCompatibleInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Specifies the format for a learning resource that is a book. Other options may be considered for inclusion in the option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceBookFormatTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies a single input method that is sufficient to control the described learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceControlFlexibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The media or file subtype of the digital resource being based on the Media Types and Subtypes, formerly known as MIME types, defined by the Internet Assigned Numbers Authority (IANA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaSubTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The media or file type of the digital resource being based on the media types defined by the Internet Assigned Numbers Authority (AINA) at http://www.iana.org/assignments/media-types.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'URL identifier of a learning resource for which this resource is an adaptation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AdaptedFromURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Accessible content features included with the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RefLearningResourceMediaFeatureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sample size of a peer rating value. Only used when the Peer Rating Value is collected in aggregate as an average of multiple atomic/individual ratings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PeerRatingSampleSize' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of physical media on which the Learning Resource is delivered or available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RefLearningResourcePhysicalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Any citation appropriate to evidence the connection between nodes', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'ConnectionCitation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Name of the destination node when the Competency Association is used as a connector in a learning map.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'URI of the destination node when the Competency Association is used as a connector in a learning map.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Name of the origin node when the Competency Association is used as a connector in a learning map.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'URI of the origin node when the Competency Association is used as a connector in a learning map.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates the relative significance this connection has for the destination node in a learning map.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'When the Competency Definition is used as a node in a learning map, this element supports alternative pathways based on a learner''s accessibility profile. The type selected indicates which accessibility profile the node is designed to address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefNodeAccessibilityProfileId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The short name or label for the competency definition or its node in a competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates if the competency described in the Competency Definition Statement can be tested using one or more assessment items.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefTestabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a member of the uniformed armed forces of the United States as reported through FEDES after exiting secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'MilitaryEnlistmentAfterExit' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the course is approved for determining NCAA eligibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'NCAAEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A taxonomy system for coding postsecondary courses in NCES research studies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefNCESCollegeCourseMapCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of dependents who live with the student and receive more than half their support from them.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'NumberOfDependents' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the individual''s completion of an oral defense. The requirement to conduct an oral defense by doctoral individuals may vary across institutions, programs, or fields of study.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseCompletedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the individual gave an oral defense.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date in which accreditation process was started (but not officially approved or denied)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'SeekingAccreditationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The course identifier as it was listed when the credit was earned (e.g. before a system conversion) to show consistency between present transcripts and older ones.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OriginalCourseIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Race other than American Indian, Black, Asian, White, Native Pacific Islander', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'OtherRaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the way an academic course was identified at an educational institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OverrideSchoolCourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The numeric order in the preferred sequence and priority for contacting a person related to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactPriorityNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Restrictions for student and/or teacher contact with the individual (e.g., the student may not be picked up by the individual)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactRestrictions' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the learner lives with the related person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'LivesWithIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The initial enrollment of an individual in credit bearing courses or developmental/remedial courses at an institution after completing high school or a high school equivalency program (e.g. GED, Adult High School Diploma).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'PostsecondaryEnteringStudentInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The term and year of the initial enrollment of an individual in credit bearing courses or developmental/remedial courses at an institution after completing high school or a high school equivalency program (e.g., GED, Adult High School Diploma).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'EnteringTerm' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that a person is a primary contact within the specified context, such as a primary parental contact specified in Person Relationship to Learner or a primary administrative contact for an organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'PrimaryContactIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number issued by the credentialing/licensing agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'ProfessionalCertificateOrLicenseNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of audience for the professional development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDAudienceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which a session is delivered', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDDeliveryMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code given to an activity by an approval organization to designate it as an approved activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ApprovalCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The purposes for which an activity is approved.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityApprovedPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code assigned to an professional development activity by the organization offering the activity that is unique to the non-variable activity details.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cost for an attendee to participate in a professional development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Cost' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credit awarded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits a professional development activity provides.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Credits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the content covered in the professional development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the level of a professional development activity on the beginner to advanced continuum.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The expected outcomes of a participant in an activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The indication of the type of professional development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary source of funding for a professional development session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'FundingSource' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether the professional development activity should be published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'PublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of participants that can be accommodated by a professional development session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'Capacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day a professional development session ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'How the child''s disability affects the child''s functional performance.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'FunctionalDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'How the child''s disability affects the child''s involvement and progress in the general education curriculum.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'GeneralEducationDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'For preschool children, as appropriate, how the disability affects the child''s participation in appropriate activities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'PreschoolDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Explanation of perceived strengths and abilities of the student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentStrengthsDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Parent’s explanation of their interest in or concerns about the student’s participation in special education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'ParentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student’s explanation of his or her interest in or concerns about participation in special education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date recommended services were declined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'DeclinedServicesDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of time by which a cycle is defined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RefFrequencyUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of recurrences within a cycle.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'InstancesPerCycle' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of units within a repeating cycle. Used with Frequency and Frequency Units elements to describe the occurrence of repeating events such as student services delivered 3 times a week for 16 weeks.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'FrequencyLength' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of minutes in an instance.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'DurationInMinutes' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Determination if this service continues outside school year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ExtendsOutsideSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of the setting in which the services are delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'SettingDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of Individualized Education Plan document authorized.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RefIEPAuthorizationDocumentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of person who authorized the decision or document.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RefAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates authorizer agreement to a document or plan, such as plan for delivery of student services, program, or improvement plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AcceptanceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Authorizer''s explanation regarding the authorization decision.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'DecisionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Portion the authorizer does not want executed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Authorizer''s explanation for rejected portions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the authorization occurred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AuthorizationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indication parent agreed to evaluate student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the consent to evaluation occurred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Purpose within the IEP lifecycle for which the eligibility evaluation is conducted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RefIEPEligibilityEvaluationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Category of evaluation used for IDEA eligibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RefIDEAEligibilityEvaluationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of evaluation procedure and result used for determining eligibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date when the evaluation to determine eligibility was conducted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'EvaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Explanation of parent''s observations of student’s characteristics and history used for determining eligibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ParentObservations' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A category of disability that describes a person’s impairment defined by the Individuals with Disabilities Education Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefIDEADisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of a credential that reduced the time or cost of attaining this credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A URL that resolves to information about a credential that reduced the time or cost of attaining this credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An alias for the credential, which may include acronyms, alpha-numeric notations, and other forms of name abbreviations in common use such as PhD, MA, and BA.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'AlternateName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Pronouncement of a favorable judgment by the agent being referenced.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'ApproverName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method used to conduct the assessment being referenced.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAssessMethodTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used for identification and record-keeping purposes by a credentialing organization to refer to a qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RefCredentialIdentifierSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the credential offered by a credentialing organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The estimated amount of time in minutes it will take to earn the credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'EstimatedDuration' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The North American Industry Classification System (NAICS) class identifier for an industry associated with the credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialNAICSIndustryType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The geo-political region in which the credential is applicable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A geo-political region in which the credential does not apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegionException' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Keywords or key phrases describing aspects of a credential considered useful for its discovery.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Keywords' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum amount of time in minutes it will take to earn the described credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MaximumDuration' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum allowed age in years at which a person is eligible for the credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumAge' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum amount of time in minutes it will take to earn the described credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumDuration' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended type of application of the credential by the holder.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefIntendedPurposeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The geo-political area of the organization''s facility, building, or site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RegionGeoJSON' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether the credential has been revoked by the credential provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of the methods used to evaluate the validity and reliability of a credential earned by a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ValidationMethodDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A resource describing the means by which someone can verify whether a credential has been attained by a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefVerificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An alphanumeric identifier of a version of the credential being described that is unique within the organizational context.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credentialing organization or entity as defined by the Credential Transparency Description Language.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credentialing organization or entity as defined by the Credential Transparency Description Language.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The O*NET-SOC taxonomy defines the set of occupations across the world of work based on the Standard Occupational Classification.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefONETSOCOccupationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The class of statement in the structure of statements in the Competency Framework according to a controlled vocabulary, specified as a URI referencing a controlled vocabulary.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypeURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a student was in membership in the state education unit for a full academic year, according to the state’s definition of Full Academic Year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'StateFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a student was in membership in the LEA education unit for a full academic year, according to the state’s definition of Full Academic Year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'LEAFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a student was in membership in the school education unit for a full academic year, according to the state’s definition of Full Academic Year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'SchoolFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sum of the areas at each floor level included within the principal outside faces of exterior walls, including roofed areas with finished floors that may not have exterior walls, but are connected to the main building. This sum should include all stories or areas having floor surfaces with clear standing head room (6.5 feet or 1.98 meters) but omit architectural setbacks or projections.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingArea' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student has an existing IDEA disability with cognitive impairments which may prevent him/her from attaining grade-level achievement standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'SignificantCognitiveDisabilityIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the extent to which a school offers instruction in which students and teachers are separated by time and/or location, and interaction occurs via computers and/or telecommunications technologies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the extent to which a school offers instruction in which students and teachers are separated by time and/or location, and interaction occurs via computers and/or telecommunications technologies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of participation by a school in the National School Lunch Program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of participation by a school in the National School Lunch Program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the property/facility was acquired.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityAcquisitionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year the construction on the addition was completed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityAdditionYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the building is built for permanent use in the same location or is relocatable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityBuildingPermanency' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year the building was first constructed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether or not a building is eligible to be or has been declared a landmark or historic building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingHistoricStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of acres in a continuous piece of land, to the nearest tenth, including undeveloped areas as well as areas occupied by buildings, walks, drives, parking facilities, and other improvements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteArea' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The informal description of location sometimes used in rural areas, for example, "from the highway to the railroad tracks."', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityBlockNumberArea' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the permanent structure added to the original building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to a building addition by a school, school system, state, or other agency or entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary use type of the building in which a school is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingPrimaryUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The generalized use or control of a campus, independent of program type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The census tract number of the school site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityCensusTract' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year on which construction of a building, addition, or improvement was completed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Designation of the nature of the construction completion date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionDateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary material used for the construction of a building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionMaterialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time, in years, of the expected useful life of a facility for the purposes of depreciation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityExpectedLife' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The estimated cost of replacing a facility using current per square foot estimates of total project costs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'FacilityReplacementValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of stories in a building, excluding the basement if its ceiling is less than three feet above ground level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfStories' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The lot and square number, or equivalent unique municipal number identification, of a parcel of land.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of location of the designed and constructed improvements made to a site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteImprovementLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year a building was constructed, as indicated by cornerstone or official government records.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearBuilt' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The most recent year that a comprehensive upgrade of ALL major building systems and components was completed, such that it functions as a modern building, as measured by a facility condition index not greater than 15%.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearOfLastModernization' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary means by which air is circulated, freshened, and exhausted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingAirDistributionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system, interface, and management components for carrying voice, video, and data throughout a building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCommMgmtComponentSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school, building, site, system, component, equipment, vehicle, or fixture conforms to the requirements or standards specified in federal, state, or local standards or codes or other officially required guidelines or regulations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The rating of the system or component functions under the demands of its regular operation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilitySystemOrComponentConditionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of mechanical systems and building designs used for cooling.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCoolingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The components and system required to distribute electricity throughout the building or site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingElectricalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The particular federal law, regulation, or standard that pertains to a school facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityApplicableFederalMandateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12FederalFundAllocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolIndicatorStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaAlternateFundUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The starting hour, minute and second.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The starting hour, minute and second.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ending hour, minute and second.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ending hour, minute and second.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time a person is enrolled, employed, involved, or participates in the organization, divided by the time the organization defines as full-time for that role.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The documented or assumed reason a person is being served by a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramEntryReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefComprehensiveSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation given to a school by the state for additional targeted support and improvement as part of its statewide system of annual meaningful differentiation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAdditionalTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific grade or combination of grades approved by an organization to be offered by an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific grade or combination of grades approved by an organization to be offered by an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a telephone number is listed under a directory assistance service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a telephone number is listed under a directory assistance service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000958', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000959', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000961', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000962', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000963', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000964', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000965', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000968', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000969', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000970', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateUpdated' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000971', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000976', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEnrollmentStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000977', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000980', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000981', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000982', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefAccreditationAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000984', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefELFacilityLicensingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000985', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionStartTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000986', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionEndTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000987', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000987', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000987', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000987', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000989', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'Earnings' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmploymentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000991', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'EmployedInMultipleJobsCount' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000992', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000993', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000994', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefERAdministrativeDataSourceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000997', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefWfProgramParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001002', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceEducationalUseId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001003', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'DeliveryDeviceDetails' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'AssignedSupport' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssignedSupportFlag' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001006', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Provider' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001007', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'PreliminaryIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001008', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatementSource' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001009', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'NumberOfResponses' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001010', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightCorrect' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightIncorrect' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001013', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightNotAttempted' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001014', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentSubtestIdentifierTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001015', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'DaysOfInstructionPriorToAssessment' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001016', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RetestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001017', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001018', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001019', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001020', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001022', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001022', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001023', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedsProfileContentLanguageLearnerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001024', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSupportToolId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedLinkIndicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001028', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'SpeechRate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001029', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Volume' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'InvertColorChoice' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001031', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'Magnification' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001032', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleGradeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001033', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedNumberOfBrailleDotsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001034', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'NumberOfBrailleCells' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleMarkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001036', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'BrailleDotPressure' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001037', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleStatusCellTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001038', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ItemTranslationDisplayLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001039', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'KeywordTranslationLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001039', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefKeywordTranslationsLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001040', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSigningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedAlternativeRepresentationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001042', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSpokenSourcePreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ReadAtStartPreferenceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUserSpokenPreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001045', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'AssessmentNeedDirectionsOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001046', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedMaskingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001047', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementTextMessagingString' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementSoundFileUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001049', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'AssessmentNeedTimeMultiplier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001050', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'LineReaderHighlightColor' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001051', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'OverlayColor' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001052', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'ForegroundColor' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001053', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'BackgroundColor' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001054', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedIncreasedWhitespacingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001055', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001056', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'ScorePublishDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001058', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001059', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CardiopulmonaryResuscitationCertification' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'FirstAidCertification' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001061', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001062', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001063', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001066', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RefOrganizationLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001067', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001077', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeInstructionalProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001079', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefGoalsForAttendingAdultEducationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'PostsecondaryTransitionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001083', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001085', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefAeCertificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001086', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalApprovedECCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Pitch' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001088', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepMathComplexityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001091', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001092', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedbackSource' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001093', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001524', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'PreviousVersionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001525', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CurrentVersionIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001526', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001526', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001527', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTimeInvolved' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RefActivityTimeMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001529', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'APIPInteractionSequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001530', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'ActivityDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001531', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentAdministrationPeriodDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001532', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001533', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001534', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmVersion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001535', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormGUID' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001536', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentFormSectionItemFieldTestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001537', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AssessmentItemResponseDescriptiveFeedbackDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001538', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemResponseScoreStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001539', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionDatabaseName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001540', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionGUID' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001541', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentRegistrationCompletionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001542', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssessmentRegistrationCompletionStatusDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultDataTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001544', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentRevisionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001545', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultDescriptiveFeedbackDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001546', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultScoreStandardError' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001547', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001548', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolOpenEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001549', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001549', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001550', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001552', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001552', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001553', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesOfferedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001554', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'AccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001554', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialAccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001555', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialExpenditureProjectReportingCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001557', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionActorIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001560', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001561', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessRightsUrlId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001562', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAuthorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001563', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001564', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceDateModified' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001565', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001566', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorEmail' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001567', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherEmail' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001568', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001569', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkPublicationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001570', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefSequence' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001573', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001573', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001574', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001574', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001575', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001575', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001576', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryConnectedStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001577', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryActiveStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001578', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryVeteranStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001579', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001580', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001581', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'StaffApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001582', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefBillableBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001583', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationExitDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001584', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001587', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialOrLicenseAwardEntity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationReferralStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001590', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDirectoryInformationBlockStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001591', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ECEAPEligibility' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001592', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001593', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001594', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001595', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001597', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001599', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationRequiredDocument' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001600', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationReasonType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEducationStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001603', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELLocalRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001604', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefELServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001605', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELStateRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001606', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefELTrainerCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001607', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefEducationVerificationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001609', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001612', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'IncludedInCountedFamilySize' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001613', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'IPEDSCollectionYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001614', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001615', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001616', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefPSProgramLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPSExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001618', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'EligibilityPriorityPoints' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001619', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentActivityStateApprovedStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001620', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanApprovedBySupervisor' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001621', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanCompletion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001622', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefReimbursementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001623', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RefScheduledWellChildScreeningId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001624', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001625', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001627', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'SitePreferenceRank' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001628', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'TrainingAndTechnicalAssistanceLevel' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001629', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefTransferOutIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001630', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RefTrimesterWhenPrenatalCareBeganId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001631', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'WellChildScreeningReceivedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001632', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001633', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefCommunityBasedTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001634', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001634', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001634', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001635', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ServiceDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001636', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELServiceProfessionalStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001639', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001640', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryBranchId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001641', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefDQPCategoriesOfLearningId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001642', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodBeginDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001643', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001644', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'EncumberedValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001645', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001646', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'ProgramNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001647', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001648', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001649', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolManagementOrganizationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12FederalFundAllocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolIndicatorStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaAlternateFundUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001930', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001930', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001931', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAwayFromSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001932', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAccessId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001933', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceProviderId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001934', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'InternetAccessInResidence' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001935', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefBarrierToInternetAccessInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001936', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetAccessTypeInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001937', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetPerformanceInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001938', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'CohortMedianEarnings' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001939', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAdultEducationProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001940', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RefWIOABarrierstoEmploymentId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001941', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOACareerServices' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001942', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOATrainingServices' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001944', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'FederalRaceAndEthnicityDeclined' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001945', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001946', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RefRoleId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001947', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'FirstGenerationCollegeStudent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001948', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideEstimate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001949', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideStandardError' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001950', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideDateProcessed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001951', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageBeginYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001952', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageEndYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001953', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefinitionTerminalDegreeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001954', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001955', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentEmployedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001956', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSCredentialIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001957', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysTardy' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001958', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RefStaffCompensationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001959', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationAnnualSupplement' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001960', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationLongevity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001961', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEDFactsTeacherInexperiencedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001962', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefOutOfFieldStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001963', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefStudentSchoolAffiliationStateDefinedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001964', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemDataCollectionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001965', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001966', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001967', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001968', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionOpenDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001969', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionCloseDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001970', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionAcademicSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001971', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001972', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001972', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001973', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001973', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001974', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001974', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001975', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetUploadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001976', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetDownloadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001977', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetSpeedTestDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001978', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001981', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'EmancipatedMinor' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001982', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfHouseholdCollegeStudents' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001983', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefNumberOfDependentsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001984', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'ChildrenOfFallenHeroesIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001985', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'PartName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001986', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001987', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001989', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'RefDataCollectionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001991', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'ProjectBasedLearningIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001992', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'OrganizationProjectBasedLearningId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001992', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'RefProjectBasedLearningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001994', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CourseLevelApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001995', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001996', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationTeacherQualificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001997', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEdFactsCertificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001998', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceAvailabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001999', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'AdjustedCapacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002000', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'RefAdjustedCapacityReasonTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002001', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAge2AndOlderCapacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002002', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAgeUnder2Capacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002003', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002006', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002007', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002008', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002009', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002010', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramSubgrantCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationEnrollmentCapacityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002013', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'PrimaryProgramIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000001', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000002', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000003', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardTitle' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RefAcademicHonorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AccountabilityReportTitle' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000010', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000011', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAypStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000013', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000013', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000014', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AlternateAypApproachIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000015', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefAlternativeSchoolFocusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000018', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AdvancedPlacementCreditsAwarded' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000019', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000019', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000024', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentParticipationIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RefCourseSectionAssessmentReportingMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000028', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000029', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000442', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDesignation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000443', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealChangedDesignation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000444', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000445', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'StateTransferabilityOfFunds' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000447', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000447', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000448', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000448', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000449', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefBarrierToEducatingHomelessId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000453', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessStandardsFunding' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000454', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessmentAdminFunding' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000455', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateStateReceivedTitleIIIAllocation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000456', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateTitleIIIFundsAvailableToSubgrantees' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000457', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'NumberOfDaysForTitleIIISubgrants' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000461', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000462', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpentOnStrategicPriorities' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000463', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepProjectTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000464', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeProgramsFundsReceived' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000466', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RefLiteracyAssessmentId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000467', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyGoalMetStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000468', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPostTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000469', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPreTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'IndicatorName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000472', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Instrument' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000473', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'CollectionFrequency' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000474', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'MostRecentCollection' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000475', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Target' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000476', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Performance' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000477', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Baseline' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000478', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'BaselineYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000481', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'SchoolImprovementExitDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000482', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'TerminatedTitleIIIProgramFailure' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000484', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'ObtainedEmployment' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000485', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'ProgramInMultiplePurposeFacility' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000486', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RefRlisProgramUseId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000487', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RefTitleIIIProfessionalDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplinaryActionTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Supervised Clinical Experience', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefSupervisedClinicalExperienceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Supervised Clinical Experience Clock Hours', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'ClinicalExperienceClockHours' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Education Credential Exam Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationCredentialExamId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Education Credential Exam Score Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationExamScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Educational Functioning Level at Intake', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtIntakeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Educational Functioning Level at Posttest', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtPosttestId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Special Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeSpecialProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional or Technical Credential Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional or Technical Credential Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional or Technical Credential Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional or Technical Credential Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional or Technical Credential Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Postsecondary Transition Action', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAePostsecondaryTransitionActionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Family Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Years of Prior Adult Education Teaching Experience', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAeTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Years of Prior Adult Education Teaching Experience', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAETeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Degree or Certificate Holder', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'ECDegreeOrCertificateHolder' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proxy Contact Hours', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'ProxyContactHours' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Staff Total College Credits Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalCollegeCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hours Worked Per Week', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HoursWorkedPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hourly Wage', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HourlyWage' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Wage Collection Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageCollectionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Union Membership Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Required Training Clock Hours', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RequiredTrainingClockHours' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Issuing Professional Credential or License', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefIssuingStateId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Development Associate Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Development Associate Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefChildDevAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTitle' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Scholarship Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Scholarship Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Financial Support Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Financial Support Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Core Knowledge Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RefCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of School-age Education Postsecondary Credit Hours', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of School-age Education Postsecondary Credit Hours', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Higher Education Institution Accreditation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Higher Education Institution Accreditation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Wage Verification Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Serves Children with Special Needs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ServesChildrenWithSpecialNeeds' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Class Group Curriculum Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ELClassGroupCurriculumType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Group Size Standards Met', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefELGroupSizeStandardMetId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Annual Operating Weeks', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'ELProgramAnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Annual Operating Weeks', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'AnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Licensing Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefELProgramLicenseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Program Enrollment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodProgramEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Rating and Improvement System Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Rating and Improvement System Expiration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QRISExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Profit Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefProfitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Early Learning Fatalities', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfFatalities' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Early Learning Injuries', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfInjuries' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program License Suspension Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseSuspensionStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program License Revocation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseRevocationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accreditation Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accreditation Expiration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Quality Rating and Improvement System Levels', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'NumberQrisLevels' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Classrooms', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'NumberOfClassrooms' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Health Safety Checklist Use Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ProgramHeathSafetyChecklistUseStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Circumstances Population Served', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefPopulationServedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Parent Communication Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefCommunicationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Economic Research Service Rural-Urban Continuum Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RefERSRuralUrbanContinuumCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Licensed Facility Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'StateLicensedFacilityCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Full-Time Employee Benefits', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'FullTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Part-Time Employee Benefits', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'PartTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefAssociationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Identifier URI', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'CompetencyDefAssociationIdentifierURI' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Parent Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Parent Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Blooms Taxonomy Domain', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefBloomsTaxonomyDomainId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Multiple Intelligence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefMultipleIntelligenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Set Completion Criteria', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RefCompletionCriteriaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Set Completion Criteria Threshold', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'CompletionCriteriaThreshold' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Competency Alignment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefLearningResourceCompetencyAlignmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework License', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition License', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Publisher', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Publisher' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Rights', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Rights' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Rights Holder', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RightsHolder' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Concept Keyword', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Concept Term', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptTerm' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Assignor Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssignedByPersonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Descriptive Feedback', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Descriptive Feedback', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Category Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Image URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ImageUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Criteria', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'Criteria' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Award Issuer Origin URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'AwardIssuerOriginURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Evidence Statement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Success Criteria', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'SuccessCriteria' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Possible Response Feedback Message', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'FeedbackMessage' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Possible Response Sequence Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Text Complexity Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Text Complexity System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefTextComplexitySystemId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Possible Response Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Text Complexity System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Url' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Subject Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Subject Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Subject Code System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCodeSystem' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Date Created', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Creator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Publisher Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublisherName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource License URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceLicenseURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credit Hours Applied Other Program', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefCreditHoursAppliedOtherProgramId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career and Technical Education Instructor Industry Certification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CTEInstructorIndustryCertification' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disability Condition Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disability Condition Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disability Determination Source Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityDeterminationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disciplinary Action IEP Placement Meeting Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'IEPPlacementMeetingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Distance Education Program Enrollment Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DistanceEducationProgramEnrollmentInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Doctoral Candidacy Admit Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyAdmitInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Doctoral Candidacy Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Doctoral Exam Taken Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralExamTakenDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Doctoral Exams Required Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDoctoralExamsRequiredCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Federal Funding Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Federal Funding Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Group Size', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'GroupSize' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Monitoring Notifications', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefOrganizationMonitoringNotificationsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Monitoring Visit Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Monitoring Visit End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Purpose of Monitoring Visit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefPurposeOfMonitoringVisitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Type of Monitoring', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'TypeOfMonitoring' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Other Federal Funding Sources', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Other Federal Funding Sources', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Outcome Measurement Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefELOutcomeMeasurementLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Professional Development Topic Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELProfessionalDevelopmentTopicAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Eligibility Expiration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Eligibility Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Eligibility Status Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'StatusDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Emergency Contact Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'EmergencyContactInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed Prior to Enrollment', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmployedPriorToEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Status While Enrolled', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Family and Consumer Sciences Course Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FamilyConsumerSciencesCourseInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Fund Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Accounting Period Actual Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'ActualValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Accounting Period Budgeted Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'BudgetedValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Income Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidIncomeLevel' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Balance Sheet Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Function Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Object Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Frequency of Service', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefFrequencyOfServiceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Graduate or Doctoral Exam Results Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefGraduateOrDoctoralExamResultsStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Health Screening Equipment Used', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningEquipmentUsed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Health Screening Follow-up Recommendation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningFollowUpRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Part B 619 Potential Eligibility Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'PartB619PotentialEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Part C to Part B Notification Opt Out Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Part C to Part B Notification Opt Out Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Transition Conference Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Transition Conference Decline Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDeclineDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Date of Transition Plan', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'DateOfTransitionPlan' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Multiple Offense Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentMultipleOffenseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Perpetrator Injury Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentPerpetratorInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Person Role Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RefIncidentPersonRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Regulation Violated Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RegulationViolatedDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Related to Disability Manifestation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RelatedToDisabilityManifestationInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Reported to Law Enforcement Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'ReportedToLawEnforcementInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Planned Service Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Planned Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramPlannedServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Itinerant Provider', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantProvider' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'K12 End of Course Requirement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefK12EndOfCourseRequirementId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access API Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessAPITypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access Hazard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access Mode Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessModeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Adaptation URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'AdaptationURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Assistive Technologies Compatible Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AssistiveTechnologiesCompatibleInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Book Format Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceBookFormatTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Control Flexibility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceControlFlexibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Digital Media Sub Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaSubTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Digital Media Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Adapted From URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AdaptedFromURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Media Feature Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RefLearningResourceMediaFeatureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Peer Rating Sample Size', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PeerRatingSampleSize' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Physical Media Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RefLearningResourcePhysicalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Connection Citation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'ConnectionCitation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Destination Node Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Destination Node URI', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Origin Node Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Origin Node URI', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Weight', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Node Accessibility Profile', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefNodeAccessibilityProfileId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Short Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Testability Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefTestabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Enlistment After Exit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'MilitaryEnlistmentAfterExit' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'National Collegiate Athletic Association Eligibility', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'NCAAEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NCES College Course Map Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefNCESCollegeCourseMapCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Dependents', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'NumberOfDependents' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Oral Defense Completed Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseCompletedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Oral Defense Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Seeking Accreditation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'SeekingAccreditationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Original Course Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OriginalCourseIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other Race Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'OtherRaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Override School Course Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OverrideSchoolCourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Person Relationship to Learner Contact Priority Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactPriorityNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Person Relationship to Learner Contact Restrictions Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactRestrictions' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Person Relationship to Learner Lives with Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'LivesWithIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Entering Student Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'PostsecondaryEnteringStudentInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Student Entering Term', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'EnteringTerm' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Contact Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'PrimaryContactIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Certificate or License Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'ProfessionalCertificateOrLicenseNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Audience Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDAudienceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Delivery Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDDeliveryMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Approval Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ApprovalCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Approved Purpose', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityApprovedPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Cost', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Cost' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Credits', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Credits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Objective', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Construction Material Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionMaterialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Expected Life', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityExpectedLife' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Replacement Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'FacilityReplacementValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Number of Stories', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfStories' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Site Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Site Improvement Location Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteImprovementLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Year Built', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearBuilt' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Year of Last Modernization', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearOfLastModernization' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Air Distribution System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingAirDistributionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Communications Management Component System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCommMgmtComponentSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Compliance Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility System or Component Condition', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilitySystemOrComponentConditionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Cooling Generation System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCoolingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Electrical System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingElectricalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Applicable Federal Mandate Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityApplicableFederalMandateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Federal Mandate Interest Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityFederalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Fire Protection System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingFireProtectionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Heating Generation System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHeatingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building HVAC System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHVACSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Institutional Equipment Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'BuildingInstitutionalEquipmentDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Mechanical Conveying System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalConveyingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Plumbing System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingPlumbingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Security System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSecuritySystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility State or Local Mandate Interest Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityStateOrLocalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility State or Local Mandate Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'FacilityStateOrLocalMandateName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Technology Wiring System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingTechnologyWiringSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Location of Hazardous Materials', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityLocationOfHazardousMaterials' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Mechanical System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Nearby Environmental Hazard Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityNearbyEnvHazardDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Vertical Transportation System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingVerticalTransportationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Administrative Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAdministrativeSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Art Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingArtSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Basic Classroom Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingBasicClassroomDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Career-Technical Education Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCareerTechEducationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Circulation Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCirculationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Environmental or Energy Performance Rating Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingEnvOrEnergyPerformanceRatingCatId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Furnishings Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilityFurnishingsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Food Service Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFoodServiceSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Indoor Athletic or Physical Education Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingIndoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Library or Media Center Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingLibMediaCenterSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Operations or Maintenance Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOperationsOrMaintSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Outdoor Athletic or Physical Education Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Outdoor or Non-athletic Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorOrNonathleticSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Performing Arts Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingPerformingArtsSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building School Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingSchoolDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Science Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingScienceSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Site Outdoor Area Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteOutdoorAreaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Space Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpaceDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Special Education Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpecEdSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Student Support Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingStudentSupportSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Architect Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitectName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Architectural Firm Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitecturalFirmName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Assembly Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAssemblySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Compliance Determination Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceDeterminationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Compliance Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Component Deficiency Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComponentDeficiencyDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Component Identification Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Estimated Cost to Eliminate Deferred Maintenance', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityEstimatedCostToEliminateDeferredMaint' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Hazardous Condition Expected Remediation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityHazardousCondExpectedRemediationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Full Service Kitchen Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFullServiceKitchenTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hazardous Material or Condition Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hazardous Material or Condition Testing Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionTestingDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Inspection Score Result Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionScoreResultDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Inspection Violation Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionViolationDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Installation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'InstallationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Life-cycle Cost', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'LifecycleCost' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Site Improvement Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingSiteImprovementDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Instructional Space Factor Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingInstructionalSpaceFactorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Joint Use Rationale Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseRationaleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Joint Use Scheduling Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseSchedulingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Joint User Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUserTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Community Use Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingCommunityUseSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Hours of Public Use Per Week', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingHoursOfPublicUsePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Net Area of Instructional Space', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNetAreaOfInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Number of Teaching Stations', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfTeachingStations' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Public Use Policy Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingPublicUsePolicyDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Site Use Restrictions Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefBuildingSiteUseRestrictionsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Space Utilization Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingSpaceUtilizationArea' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Enrollment Access Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefStudentEnrollmentAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Unassigned Space Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingUnassignedSpaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Audit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RefFacilityAuditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Charter School Realty Access Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCharterSchoolRealtyAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Cleaning Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCleaningStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Compliance Agency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceAgencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Energy Conservation Measure Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergyConservationMeasureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Energy Service Company Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'BuildingEnergyServiceCompanyName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Energy Source Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergySourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Management Emergency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMgmtEmergencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Capital Program Management Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityCapitalProgramMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Operations Management Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityOperationsMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Hazardous Materials or Condition Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityHazardousMaterialsOrCondTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Joint Development Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityJointDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Maintenance Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityMaintStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Naturally Occurring Hazard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityNaturallyOccurringHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Utility Provider Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityProviderTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Utility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Date of Certificate of Occupancy', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingDateOfCertificateOfOccupancy' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Audit Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'FacilityAuditDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Plan Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'FacilitiesPlanDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Plan Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Mandate Authority Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMandateAuthorityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Financing Fee Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RefFacilityFinancingFeeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Lease Amount', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'FacilityLeaseAmount' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Lease Amount Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseAmountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Lease Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Mortgage Interest Amount', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityMortgageInterestAmount' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Mortgage Interest Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Mortgage Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Indebtedness Amount Allowed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'IndebtednessAmountAllowed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diploma or Credential Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diploma or Credential Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diploma or Credential Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diploma or Credential Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diploma or Credential Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diploma or Credential Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'AwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disciplinary Action End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disciplinary Action Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career-Technical-Adult Education Displaced Homemaker Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career-Technical-Adult Education Displaced Homemaker Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dual Credit Dual Enrollment Credits Awarded', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DualCreditDualEnrollmentCredits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'K12 Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'K12 Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'K12 Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Electronic Mail Address', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'ElectronicMailAddress' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Electronic Mail Address', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'EmailAddress' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Electronic Mail Address Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Electronic Mail Address Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Elementary-Middle Additional Indicator Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefElementaryMiddleAdditionalId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Eligibility Status for School Food Service Programs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'End of Term Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEndOfTermStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Enrollment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Enrollment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Entry Date into Postsecondary', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'EntryDateIntoPostsecondary' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Entry Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Entry Grade Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Time Required for Completion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'TimeRequiredForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Evaluation Outcome', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Outcome' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Evaluation Scale', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Evaluation Score or Rating', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Evaluation System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'System' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cohort Exclusion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCohortExclusionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit or Withdrawal Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit or Withdrawal Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit or Withdrawal Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit or Withdrawal Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Award Amount', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidAwardAmount' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Award Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'First Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'First Time Postsecondary Student', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstTimePostsecondaryStudent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Full Time Equivalency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Full Time Equivalency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Full Time Equivalency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Generation Code or Suffix', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'GenerationCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Weighted Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Weighted Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Course Section Grade Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Course Section Grade Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Level When Course Taken', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Level When Course Taken', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Level When Assessed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelToBeAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Level When Assessed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverage' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Given Session', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'GradePointAverageGivenSession' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Points Earned Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grades Offered', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grades Offered', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Graduation Rate Survey Cohort Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyCohortYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Graduation Rate Survey Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Gun Free Schools Act Reporting Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefGunFreeSchoolsActReportingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Harassment or Bullying Policy Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'HarassmentOrBullyingPolicy' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Health Benefits', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationHealthBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Course Requirement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Course Requirement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Diploma Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Diploma Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Graduation Rate Indicator Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefHighSchoolGraduationRateIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Highest Level of Education Completed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Highest Level of Education Completed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Highly Qualified Teacher Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'HighlyQualifiedTeacherIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hire Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'HireDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hispanic or Latino Ethnicity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'HispanicLatinoEthnicity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Homeless Primary Nighttime Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RefHomelessNighttimeResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Homelessness Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'HomelessnessStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Honors Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'HonorDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Increased Learning Time Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Increased Learning Time Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Initial Enrollment Term', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InitialEnrollmentTerm' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Institution Telephone Number Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefInstitutionTelephoneTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Activity Hours Attempted', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Activity Hours Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefInstructionalActivityHoursId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Integrated Technology Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefIntegratedTechnologyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Last Qualifying Move Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'LastQualifyingMoveDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Last or Surname', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Supervisory Union Identification Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'SupervisoryUnionIdentificationNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Level of Institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Level of Institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Magnet or Special Program Emphasis School', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefMagnetSpecialProgramId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Marking Period Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MarkingPeriodName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Mid Term Mark', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MidTermMark' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Middle Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Services Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Session Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Staff Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefMepStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address County Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'CountyName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address County Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'AddressCountyName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Name of Institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'NameOfInstitution' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Neglected or Delinquent Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RefNeglectedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Visa Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefVisaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Normal Length of Time for Completion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'NormalLengthTimeForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Normal Length of Time for Completion Units', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefTimeForCompletionUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Credits Attempted', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Credits Attempted', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Credits Attempted', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Credits Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Credits Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Credits Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Days Absent', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysAbsent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Days in Attendance', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Days in Attendance', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Other Benefits', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationOtherBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'OtherName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21886', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RightsHolder' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21887', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21888', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptTerm' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21889', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssignedByPersonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21890', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21891', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21892', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21893', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21894', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ImageUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21895', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21896', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'Criteria' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21900', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'AwardIssuerOriginURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21901', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21902', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'SuccessCriteria' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21903', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21904', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'FeedbackMessage' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21906', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21907', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefTextComplexitySystemId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21908', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21910', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21911', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Url' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21912', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21913', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21914', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21915', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCodeSystem' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21916', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21919', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublisherName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21920', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21922', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceLicenseURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21923', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'BasedOnUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21924', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceIntendedEndUserRoleId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21925', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TimeRequired' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21926', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21929', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21930', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21931', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21932', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21933', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyTitle' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21934', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyShortName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21935', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RefLearnerActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21936', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21938', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21939', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21940', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21941', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21942', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Prerequisite' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21943', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21944', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21945', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumTimeAllowed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21946', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityMaximumTimeAllowedUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21947', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21948', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21949', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumAttemptsAllowed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21950', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityAddToGradeBookFlagId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21951', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'ReleaseDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21952', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21953', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'PossiblePoints' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21954', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RubricUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21955', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScaffoldingItemFlag' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21956', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintCount' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21957', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintIncludedAnswer' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21958', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'FirstAttemptDuration' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21959', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21960', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21962', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21963', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21964', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21965', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21966', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21969', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21970', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21971', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateUpdated' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21972', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21977', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEnrollmentStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21978', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21980', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21980', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21981', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21982', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21983', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefAccreditationAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21985', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefELFacilityLicensingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21986', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionStartTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionEndTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21989', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21989', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21989', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21989', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21991', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'Earnings' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21992', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmploymentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21993', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'EmployedInMultipleJobsCount' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21994', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21995', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21996', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefERAdministrativeDataSourceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22000', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefWfProgramParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceEducationalUseId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22006', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'DeliveryDeviceDetails' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22007', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22007', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22007', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'AssignedSupport' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22007', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssignedSupportFlag' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22008', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22008', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22339', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentPerpetratorInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22341', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RefIncidentPersonRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22342', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RegulationViolatedDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22343', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RelatedToDisabilityManifestationInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22345', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'ReportedToLawEnforcementInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22350', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22352', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramPlannedServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantProvider' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefK12EndOfCourseRequirementId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22357', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22358', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessAPITypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22359', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22360', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessModeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22361', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'AdaptationURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22362', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AssistiveTechnologiesCompatibleInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22363', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceBookFormatTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22364', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceControlFlexibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22365', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaSubTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22366', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22367', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AdaptedFromURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22368', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RefLearningResourceMediaFeatureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22369', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PeerRatingSampleSize' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22370', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RefLearningResourcePhysicalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22371', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'ConnectionCitation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22372', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22373', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22374', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22375', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22376', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22377', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefNodeAccessibilityProfileId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22378', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22380', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefTestabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22381', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'MilitaryEnlistmentAfterExit' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22382', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'NCAAEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22383', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefNCESCollegeCourseMapCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22384', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'NumberOfDependents' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22385', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseCompletedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22386', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22388', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'SeekingAccreditationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22389', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OriginalCourseIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22390', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'OtherRaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22391', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OverrideSchoolCourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22392', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactPriorityNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22393', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactRestrictions' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22394', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'LivesWithIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22395', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'PostsecondaryEnteringStudentInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22396', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'EnteringTerm' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22397', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'PrimaryContactIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22398', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'ProfessionalCertificateOrLicenseNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22399', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDAudienceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22401', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDDeliveryMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22402', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ApprovalCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22403', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityApprovedPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22404', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22405', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Cost' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22406', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22407', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Credits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22408', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22409', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22410', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22412', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22413', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'FundingSource' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22415', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'PublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22416', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'Capacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22417', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22418', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22419', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationMethod' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22420', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22421', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22422', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SessionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22424', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'LocationName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22426', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22427', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22428', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDSessionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22429', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDInstructionalDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22432', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22433', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22434', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ScoreLevel' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22435', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22436', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22437', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22440', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22441', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22442', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22443', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22444', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Feedback' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22445', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22446', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Quality' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22447', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Score' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22448', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22449', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22450', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22451', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22452', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDGradeSpan' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22453', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22454', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RefReferralOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22455', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Reason' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22456', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Source' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22457', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralTypeReceived' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22458', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferredTo' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22459', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22460', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ReasonForDeclinedServices' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22461', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SponsoringAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22465', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22465', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22466', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22781', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHVACSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22782', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'BuildingInstitutionalEquipmentDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalConveyingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22784', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingPlumbingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22785', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSecuritySystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22786', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityStateOrLocalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22787', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'FacilityStateOrLocalMandateName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22788', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingTechnologyWiringSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22789', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityLocationOfHazardousMaterials' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22790', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22791', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityNearbyEnvHazardDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22792', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22793', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingVerticalTransportationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22794', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAdministrativeSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22795', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingArtSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22796', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingBasicClassroomDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22797', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22798', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCareerTechEducationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22799', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCirculationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22800', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingEnvOrEnergyPerformanceRatingCatId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22801', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilityFurnishingsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22802', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFoodServiceSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22803', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingIndoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22804', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingLibMediaCenterSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOperationsOrMaintSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22806', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22807', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorOrNonathleticSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22808', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingPerformingArtsSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingSchoolDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22810', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingScienceSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteOutdoorAreaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpaceDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22813', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpecEdSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22814', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingStudentSupportSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22815', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitectName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22816', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitecturalFirmName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22817', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAssemblySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceDeterminationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22819', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22820', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComponentDeficiencyDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22821', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22822', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityEstimatedCostToEliminateDeferredMaint' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22823', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityHazardousCondExpectedRemediationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFullServiceKitchenTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22825', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22826', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionTestingDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22827', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionScoreResultDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22828', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionViolationDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22829', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'InstallationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22830', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'LifecycleCost' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22831', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingSiteImprovementDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22832', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingInstructionalSpaceFactorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22833', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseRationaleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22834', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseSchedulingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22835', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUserTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22836', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingCommunityUseSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22837', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingHoursOfPublicUsePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22838', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNetAreaOfInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22839', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfTeachingStations' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22840', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingPublicUsePolicyDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22841', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefBuildingSiteUseRestrictionsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22842', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingSpaceUtilizationArea' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22843', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefStudentEnrollmentAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22844', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingUnassignedSpaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22845', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RefFacilityAuditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22846', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCharterSchoolRealtyAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22847', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCleaningStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22848', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceAgencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22849', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergyConservationMeasureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22850', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'BuildingEnergyServiceCompanyName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22851', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergySourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMgmtEmergencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22853', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityCapitalProgramMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22854', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityOperationsMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22855', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityHazardousMaterialsOrCondTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22856', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityJointDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22857', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityMaintStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22858', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityNaturallyOccurringHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22859', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityProviderTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22860', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22861', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingDateOfCertificateOfOccupancy' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22862', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'FacilityAuditDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22863', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'FacilitiesPlanDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22864', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22865', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22866', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMandateAuthorityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22867', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RefFacilityFinancingFeeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22868', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'FacilityLeaseAmount' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22869', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseAmountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22870', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22871', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityMortgageInterestAmount' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22872', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22873', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22874', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'IndebtednessAmountAllowed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22875', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'InsuranceDeductible' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22876', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'PublicEducationMillRate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22877', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityTotalAssessedValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22878', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22879', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureCheckDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22880', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22881', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureScheduledServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22882', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureUsefulLife' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22883', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'AvailableUtilizedInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22884', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingCapacityFactorIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21024', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentParticipationIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RefCourseSectionAssessmentReportingMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21028', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21029', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21031', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'AwaitingInitialIDEAEvaluationStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21032', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationBaseSalary' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21033', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Birthdate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCampusResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21036', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteCompleter' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21037', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteConcentrator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21038', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefCarnegieBasicClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21039', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21039', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21040', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21040', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21042', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ClassRankingDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCipUseId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21045', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipVersionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21046', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21047', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21047', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21049', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RefCorrectiveActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21050', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21051', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21053', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'AcademicGrade' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21054', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21058', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CreditValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21059', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21061', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelCharacteristicsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21063', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'CourseOverrideSchool' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'QualityPointsEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21065', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21065', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21066', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SubjectAbbreviation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21070', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'IssuanceDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21071', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21074', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21074', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21074', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21075', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefCteGraduationRateInclusionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21076', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21077', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'DegreeApplicability' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21078', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateSeekingStudent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21079', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefDependencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21080', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'DesegregationOrderOrPlan' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'AwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21082', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21083', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21084', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21084', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21085', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DualCreditDualEnrollmentCredits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21088', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'ElectronicMailAddress' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21088', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'EmailAddress' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21091', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefElementaryMiddleAdditionalId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21092', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21093', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEndOfTermStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21094', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21095', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21096', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21098', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'EntryDateIntoPostsecondary' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21099', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21100', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21101', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'TimeRequiredForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21102', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Outcome' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21103', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21104', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21105', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'System' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21106', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCohortExclusionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21468', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Baseline' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21469', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'BaselineYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21472', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'SchoolImprovementExitDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21473', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'TerminatedTitleIIIProgramFailure' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21475', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'ObtainedEmployment' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21476', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'ProgramInMultiplePurposeFacility' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21477', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RefRlisProgramUseId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21478', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RefTitleIIIProfessionalDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21479', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplinaryActionTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The state or other location in which an individual is found employed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Administrative data source of information used to collect employment and earnings-related data.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERAdministrativeDataSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of workforce and employment development program that an individual is participating in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWfProgramParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Developmental domains related to early learning and used for assessing a child''s kindergarten readiness.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentELDevelopmentalDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The purpose of the work in the context of education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceEducationalUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of identifier that is provided for a Subtest.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSubtestIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of session that is scheduled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile a preference for the language of the user interface.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLanguageLearnerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile a characteristic of a digital resource that may be specified as being dangerous to a user.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the electronic tool associated with a resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSupportTool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the rating for the collection of Access for All (AfA) needs and preferences.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUsageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the characteristics of presentation for a hyperlink when using a screen reader.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLinkIndicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the grade of Braille to use when using a Braille display.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleGradeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the number of dots in a Braille cell.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedNumberOfBrailleDots', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile what textual properties to mark when using a Braille display.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleMarkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the preferred presence or location of a Braille display status cell.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleStatusCellType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the type of signing preferred by the user.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSigningType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the default presentation mode of the associated Alternative Representations accessibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedAlternativeRepresentationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the preferred spoken audio form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSpokenSourcePreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Used as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUserSpokenPreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Specifies as part of an Assessment Personal Needs Profile the type of masks the user is able to create to cover portions of the question until needed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedMaskingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the user preferences for white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedIncreasedWhitespacingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Complexity levels defined by the National Assessment of Educational Progress (NAEP 2005a Framework).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepMathComplexityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The assessment item body interaction type as defined by IMS Global specifications.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefApipInteractionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used for identification of an Assessment Form Section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentFormSectionIdentificationSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Specifies a predominant type of assessment asset represented by the Learning Resource. Assessment assets represent any content used to compose an assessment item, is referenced by an item but not part of the item content itself, or is content that is included as part of a section within an assessment form. Assets can be static content such as art work or dynamic assets such as calculators.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of identifier that is provided for this asset.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Aspects of reading defined by the National Assessment of Educational Progress (NAEP 2005b Framework).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepAspectsOfReading', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary setting or medium of delivery for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'How a building is principally used, regardless of its original design.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpaceUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'County code as defined for the identification of counties and equivalent areas of the United States, Puerto Rico, and the insular areas as established by the American National Standards Institute (ANSI) Inter-National Committee for Information Technology Standards (INCITS) in specification BSR INCITS 31-200x or more current updates. See https://www.census.gov/library/reference/code-lists/ansi.html#par_statelist.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCounty', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the type of weapon used during an incident.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWeaponType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of role served related to the administration of an assessment session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionStaffRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of financial application completed by an individual.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidApplicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The methodology used to determine an individual''s financial need.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeedDeterminationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the significance of a date to an individualized program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The post-school transition plan for the student recorded on their Individualized Education Program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramTransitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The place in which a child''s service plan meeting is held.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'State/local code used to determine a student''s eligibility for Gifted/Talented program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramGiftedEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the type of immunization that an individual has satisfactorily received. (Note: The International Classification of Diseases (ICD) is maintained by the World Health Organization. The ICD is revised periodically to incorporate changes in the medical field, the most updated and detailed list of International Statistical Classification of Diseases and Related Health Problems can be found at http://www.who.int/classifications/apps/icd/icd10online).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefImmunizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A category for the difficulty of the item based on the Item Response Theory value.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryDifficultyCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The algorithm used to derive the Assessment Item Kappa Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryKappaAlgorithm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of health accommodations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationsNeededType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Course areas for advanced placement or credit. For a list of codes see http://apcentral.collegeboard.com/apc/public/courses/teachers_corner/index.html .', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdvancedPlacementCourseCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An age group or education level to which the professional development activity''s content pertains.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityEducationLevelsAddressed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of severity of a person''s reaction to an allergen.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergySeverity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBlendedLearningModelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerCluster', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an individual completed an individualized guidance and counseling plan', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerEducationPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agency that authorized the establishment or continuation of a charter school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of facility in which an inmate receives correctional education services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectionalEducationFacilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Additional information regarding the context of the given grade.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseAcademicGradeStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The education level, grade level or primary instructional level at which a course is intended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseApplicableEducationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of enrollment associated with the credit hours for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of credit associated with the credit hours earned for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the course is or can be counted as an honors course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseHonorsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary method of instruction used for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the type of location at which the course is taught.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionSiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary type of interaction, synchronous or asynchronous, defined for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditHoursAppliedOtherProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code indicating the disability condition status.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of disability conditions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of disability determination sources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityDeterminationSourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A qualifier identifying the types of exams required of doctoral level individuals.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDoctoralExamsRequiredCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Federal source, even if administered by state or local, that contributes to the EL program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFederalFundingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Whether the organization received notification about monitoring', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationMonitoringNotifications', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The purpose for the monitoring visit.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPurposeOfMonitoringVisit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The other contributing funding sources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOtherFederalFundingSources', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Use for outcome measures in early learning.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOutcomeMeasurementLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The topical area of competence needed for Staff professional development.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProfessionalDevelopmentTopicArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of eligibility for the child.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibilityStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, before enrolling in secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedPriorToEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the individual''s employment status while enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatusWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A label for a grouping of financial accounts, based on type and purpose.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A fund is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountFundClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A program is a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives. The program classification provides the organization with a framework to classify instructional and other expenditures by program to determine cost.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountProgramCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Balance sheet accounts and statement of net position accounts are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountBalanceSheetCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The function describes the activity for which a service or material object is acquired. The functions of an organization are classified into five broad areas: instruction, support services, operation of non-instructional services, facilities acquisition and construction, and debt service. Functions are further classified into sub functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureFunctionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This classification is used to describe the service or commodity obtained as the result of a specific expenditure. Nine major object categories have codes ending in 00 and are further subdivided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureObjectCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The frequency at which a service is planned to occur or has occurred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyOfService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The individual''s status in completing exams required for graduate or doctoral degree programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateOrDoctoralExamResultsStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the offense was primary or secondary in nature when a single incident included more than one type of offense.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentMultipleOffenseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the occurrence of physical injury to the perpetrator(s) (participants) involved in the incident and‚ if so‚ the level of injury sustained.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPerpetratorInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role or type of participation of a person in a discipline incident.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPersonRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramPlannedServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that this course has an end of course examination required by the SEA or LEA.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12EndOfCourseRequirement', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the learning resource is compatible with the referenced accessibility application programming interface (API).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessAPIType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A characteristic of the described learning resource that is physiologically dangerous to some users.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000002', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicHonorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000010', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000011', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAypStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdministrativeFundingControl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000015', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAlternativeSchoolFocus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicSubject', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentParticipationIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionAssessmentReportingMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000029', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000038', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCarnegieBasicClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000045', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipVersion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefControlOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000049', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectiveActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000050', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCountry', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseGpaApplicability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000061', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelCharacteristic', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000065', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseRepeatCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000071', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditTypeEarned', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000075', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteGraduationRateInclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000076', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000079', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDependencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12StaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmailType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000091', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefElementaryMiddleAdditional', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000092', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000093', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEndOfTermStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000094', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000095', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000096', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000099', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000106', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCohortExclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000110', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000113', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000123', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGpaWeightedIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000134', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGunFreeSchoolsActReportingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000140', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolGraduationRateIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000146', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHomelessNighttimeResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncreasedLearningTimeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000167', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstitutionTelephoneType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000169', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalActivityHours', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000170', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIntegratedTechnologyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000173', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLevelOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMagnetSpecialProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000186', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000187', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000188', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000194', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeglectedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000198', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTimeForCompletionUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000207', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParaprofessionalQualification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParticipationStatusAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000216', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrekindergartenEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000217', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreKEligibleAgesNonIDEA', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000218', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000220', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalEducationJobClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000221', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyTargetAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000222', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000224', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramLengthHoursType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000225', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000227', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolChoiceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000228', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotTested', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000229', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityRecognitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000230', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReconstitutedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000232', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRestructuringAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000238', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementFunds', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000239', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSigInterventionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000240', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000242', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000255', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSex', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSingleSexClassStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000260', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000266', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStandardizedAdmissionTest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000267', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefState', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000272', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsStudentLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialBasis', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000280', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000280', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000281', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000282', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIInstructionalServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000284', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000285', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleISchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000289', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12LeaTitleISupportService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferReady', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000297', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefUSCitizenshipStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000305', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProofOfResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000308', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisionScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000309', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHearingScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000314', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000315', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEvaluationFinding', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000316', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLanguageUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000317', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6392Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolFoodServiceProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000333', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFamilyIncomeSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000334', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncomeCalculationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHealthInsuranceCoverage', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000336', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalInsuranceCoverageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000341', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLevelOfSpecialization', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000343', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDegreeOrCertificateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000345', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodCredential', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000347', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000350', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLicenseExempt', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceOption', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000356', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnvironmentSetting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000357', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefQrisParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000361', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000363', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000369', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScoreMetricType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000383', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAccommodationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000385', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000386', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPlatformType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000389', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionSpecialCircumstanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000390', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000392', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemCharacteristicType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000405', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000415', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministered', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000424', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStateANSICode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000425', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonRelationshipType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000429', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContinuationOfServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000437', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001891', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001892', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001897', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationRelationship', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001913', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLAudienceLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001914', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAgentRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001915', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001922', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramEntryReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001923', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefComprehensiveSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001924', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001925', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberListedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001931', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAwayFromSchool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001932', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001933', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceProvider', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001935', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToInternetAccessInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001936', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccessTypeInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001937', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetPerformanceInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001939', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdultEducationProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001940', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWIOABarrierstoEmployment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001943', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRace', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001945', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001946', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001958', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffCompensationSourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001961', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEDFactsTeacherInexperiencedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001962', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutOfFieldStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001963', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSchoolAffiliationStateDefinedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001972', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001974', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusCreatorEntity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001978', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001983', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNumberOfDependentsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDataCollectionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Testability Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefTestabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NCES College Course Map Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNCESCollegeCourseMapCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Audience Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDAudienceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Delivery Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDDeliveryMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Approved Purpose', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityApprovedPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDSessionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Instructional Delivery Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDInstructionalDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Revenue Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountRevenueCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Referral Outcome', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReferralOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Target Audience', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityTargetAudience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Delivery Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceDeliveryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Work-based Learning Opportunity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWorkbasedLearningOpportunityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA IEP Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAIEPStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Outcome Time Point', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutcomeTimePoint', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Method of Service Delivery', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMethodOfServiceDelivery', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Subject Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseSubjectArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Planned Service Frequency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceFrequency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reason for Delay of Transition Conference', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReasonDelayTransitionConf', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Activity Time Measurement Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityTimeMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Score Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseScoreStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Completion Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentRegistrationCompletionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Data Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultDataType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Score Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Level of Instruction Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLevelOfInstructionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access Rights URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessRightsUrl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Author Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAuthorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Interaction Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Connected Student Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryConnectedStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Active Student Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryActiveStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Veteran Student Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Admission Consideration Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Admission Consideration Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Billable Basis Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBillableBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Developmental Education Referral Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationReferralStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Developmental Education Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Directory Information Block Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDirectoryInformationBlockStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Education Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEducationStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Local Revenue Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLocalRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning State Revenue Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELStateRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Trainer Core Knowledge Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELTrainerCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Education Verification Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEducationVerificationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Veteran’s Benefit Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Veteran’s Benefit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Program Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSProgramLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Exit or Withdrawal Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reimbursement Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReimbursementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Scheduled Well Child Screening', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScheduledWellChildScreening', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Transfer-out Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferOutIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Trimester When Prenatal Care Began', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTrimesterWhenPrenatalCareBegan', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Employment Separation Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Community-based Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunityBasedType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Service Professional Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceProfessionalStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'ISO 639-3 Language Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6393Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'ISO 639-5 Language Family', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6395LanguageFamily', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Branch', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryBranch', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'DQP Categories of Learning', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDQPCategoriesOfLearning', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Management Organization Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolManagementOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Part C Eligibility Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAPartCEligibilityCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tribal Affiliation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTribalAffiliation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Functional Expense Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Award Prerequisite Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardPrerequisiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'PESC Award Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPESCAwardLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Financial Position Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Financial Position Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Revenue Restriction Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenueRestriction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Functional Expense Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance Natural Expense Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSNaturalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Scholarships and Fellowships Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Scholarships and Fellowships Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance Intercollegiate Athletics Expenses', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSIntercollegiateAthleticsExpenses', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Pell Grant Transactions', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBPellGrantTransactions', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Progress Report Schedule', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportSchedule', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Goal Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPGoalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Progress Report Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Frequency Unit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Authorization Document Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPAuthorizationDocumentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorizer Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Eligibility Evaluation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPEligibilityEvaluationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Eligibility Evaluation Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEligibilityEvaluationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Disability Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Assessment Method Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAssessMethodType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Identifier System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialIdentifierSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Intended Purpose Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefIntendedPurposeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Verification Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefVerificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'CTDL Organization Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'O*NET-SOC Occupation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefONETSOCOccupationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Virtual School Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVirtualSchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'National School Lunch Program Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNationalSchoolLunchProgramStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Historic Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHistoricStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Primary Use Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPrimaryUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Campus Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Construction Date Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Construction Material Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionMaterialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Site Improvement Location Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteImprovementLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Air Distribution System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAirDistributionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Communications Management Component System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommMgmtComponentSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Compliance Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility System or Component Condition', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySystemOrComponentCondition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Cooling Generation System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCoolingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Electrical System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingElectricalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Applicable Federal Mandate Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityApplicableFederalMandateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Federal Mandate Interest Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFederalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Fire Protection System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFireProtectionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Heating Generation System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHeatingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building HVAC System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHVACSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Mechanical Conveying System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalConveyingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Plumbing System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPlumbingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Security System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSecuritySystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility State or Local Mandate Interest Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStateOrLocalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Technology Wiring System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingTechnologyWiringSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21753', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCriticalTeacherShortageCandidate', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21754', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSupervisedClinicalExperience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21756', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationCredentialExam', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21757', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationExamScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21763', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtIntake', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21764', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtPosttest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21765', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeInstructionalProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeSpecialProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalsForAttendingAdultEducation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21768', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAePostsecondaryTransitionAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21770', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21771', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21775', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeCertificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21779', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalTechnicalCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21797', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageCollectionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentAssociateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalDevelopmentFinancialSupport', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21817', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHigherEducationInstitutionAccreditationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21823', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELGroupSizeStandardMet', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21828', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramLicenseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21829', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodProgramEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21834', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPopulationServed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21857', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunicationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21862', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERSRuralUrbanContinuumCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21869', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefAssociationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21875', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBloomsTaxonomyDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21876', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMultipleIntelligenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21877', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencySetCompletionCriteria', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21879', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceCompetencyAlignmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21907', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTextComplexitySystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21924', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceIntendedEndUserRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21929', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21935', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21943', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21946', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityMaximumTimeAllowedUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21950', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityAddToGradeBookFlag', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21977', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEnrollmentStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21983', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccreditationAgency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21985', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFacilityLicensingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21989', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedAfterExit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21992', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21996', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERAdministrativeDataSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22000', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWfProgramParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22003', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentELDevelopmentalDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceEducationalUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22016', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSubtestIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22020', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLanguageLearnerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSupportTool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22028', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUsageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22029', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLinkIndicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleGradeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22036', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedNumberOfBrailleDots', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22038', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleMarkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleStatusCellType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSigningType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22045', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedAlternativeRepresentationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22046', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSpokenSourcePreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22049', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUserSpokenPreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22051', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedMaskingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedIncreasedWhitespacingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepMathComplexityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22117', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefApipInteractionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22141', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentFormSectionIdentificationSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22147', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22150', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22166', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepAspectsOfReading', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22168', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22173', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22175', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpaceUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22176', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCounty', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWeaponType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22179', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionStaffRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22186', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidApplicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22188', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeedDeterminationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramTransitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22202', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22210', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramGiftedEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22214', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefImmunizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22219', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryDifficultyCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22232', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryKappaAlgorithm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22243', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationsNeededType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22244', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdvancedPlacementCourseCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22245', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityEducationLevelsAddressed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22248', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergySeverity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22249', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22253', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBlendedLearningModelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerCluster', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22256', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerEducationPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22262', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectionalEducationFacilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22265', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseAcademicGradeStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22267', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseApplicableEducationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22269', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22270', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseHonorsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22274', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22276', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionSiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditHoursAppliedOtherProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22285', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22286', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22287', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityDeterminationSourceType', @level2type=NULL, @level2name=NULL - - - --------------------------------------------------------------------------- -----Section 7 Update _CEDSElements and _CEDSToNDSMapping tables ---------- --------------------------------------------------------------------------- - -PRINT N'Populate _CEDSElements table' -GO - -SET IDENTITY_INSERT dbo._CEDSElements ON; -GO -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[_CEDSElements]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -DELETE FROM dbo.[_CEDSElements] -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000301', 'White', 'Race White', 'A person having origins in any of the original peoples of Europe, Middle East, or North Africa.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21659', '11', '21659', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000653', 'Interscholastic Sports - Male Only', NULL, 'The number of interscholastic sports in which only male students participate. Sports include distinct sports such as football, basketball, soccer but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21660', '11', '21660', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000654', 'Interscholastic Sports - Female Only', NULL, 'The number of interscholastic sports in which only female students participate. Sports include distinct sports such as football, basketball, soccer but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21661', '11', '21661', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000655', 'Interscholastic Teams - Male Only', NULL, 'The number of interscholastic teams in which only male students participate. Teams include each competitive level team in each sport, such as freshman team, junior varsity team, and varsity team but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21662', '11', '21662', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000656', 'Interscholastic Teams - Female Only', NULL, 'The number of interscholastic teams in which only female students participate. Teams include each competitive level team in each sport, such as freshman team, junior varsity team, and varsity team but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21663', '11', '21663', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000657', 'Interscholastic Sport Participants - Male Only', NULL, 'The number of male students who participated on an interscholastic team. A student should be counted once for each team he was on.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21664', '11', '21664', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000658', 'Interscholastic Sport Participants - Female Only', NULL, 'The number of female students who participated on an interscholastic team. A student should be counted once for each team she was on.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21665', '11', '21665', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000689', 'Competency Definition Identifier', 'Learning Standard Item Identifier, Competency Item Identifier', 'The globally unique identifier (GUID) issued by the publisher of the competency framework that uniquely identifies the definition in the hierarchy of competency definitions using a RFC 4122 compliant 32-character hexadecimal string, such as 21EC2020-3AEA-1069-A2DD-08002B30309D.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21666', '11', '21666', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000690', 'Competency Definition Statement', 'Learning Standard Item Statement, Competency Item Statement', 'The text of the statement. The textual content that either describes a specific competency or describes a less granular group of competencies within the taxonomy of the competency framework.', 'Alphanumeric', '0', 'Note: This element is designed to support statements from various learning standards frameworks. The Head Start Child Outcomes Framework includes statements for Domains, Elements, and Indicators. Examples from the K-12 Common Core State Standards are the domain: “Geometry", the cluster: “Understand and apply the Pythagorean Theorem,” and standard: “Apply the Pythagorean Theorem to determine unknown side lengths in right triangles in real-world and mathematical problems in two and three dimensions.”', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21667', '11', '21667', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000691', 'Competency Definition Type', 'Learning Standard Item Type, Competency Item Type', 'The class of statement in the structure of statements in the Competency Framework according to a controlled vocabulary, specified as a textual label.', 'Alphanumeric - 60 characters maximum', '0', 'This property points to a class, not to instances of that class. For example, where two competencies in a competency framework have been identified respectively as \"Strand: Renaissance\" and \"Strand: Social history\", the competencyCategory for both these competencies is \"Strand\"."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21668', '11', '21668', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000692', 'Competency Definition Code', 'Learning Standard Item Code, Competency Item Code', 'A human-referenceable code designated by the publisher to identify the item in the hierarchy of competency definitions.', 'Alphanumeric - 30 characters maximum', '0', 'For example: "M.1.N.3" The code is usually not globally unique and usually has embedded meaning such as a number that represents a grade/level and letters that represent content strands.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21669', '11', '21669', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000693', 'Competency Framework Identifier URI', 'Learning Standard Document Identifier URI', 'An unambiguous reference to the competency framework using a network-resolvable URI.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21670', '11', '21670', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000694', 'Competency Framework Title', 'Learning Standard Document Title', 'The name of the competency framework.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21671', '11', '21671', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000695', 'Competency Framework Version', 'Learning Standard Document Version', 'Defines the revision of the competency framework as a version number or date.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21672', '11', '21672', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000696', 'Competency Framework Creator', 'Learning Standard Document Creator', 'The person or organization chiefly responsible for the intellectual content of the competency framework.', 'Alphanumeric - 120 characters maximum', '0', 'Implementations may choose to model this element as a repeatable field to support the case of multiple authors. Others may just use a comma delimited string for multiple authors.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21673', '11', '21673', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000697', 'Competency Framework Description', 'Learning Standard Document Description', 'A textual description of the scope and contents of the competency framework.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21674', '11', '21674', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000698', 'Competency Framework Publication Status', 'Learning Standard Document Publication Status', 'The publication status of the competency framework.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21675', '11', '21675', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000699', 'Competency Framework Jurisdiction', 'Learning Standard Document Jurisdiction', 'A legal, quasi-legal, organizational or institutional domain of the entity mandating the use of the statement--e.g., California.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21676', '11', '21676', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000700', 'Competency Framework Valid Start Date', 'Learning Standard Document Valid Start Date', 'The year, month and day the competency framework was adopted by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21677', '11', '21677', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000701', 'Competency Framework Valid End Date', 'Learning Standard Document Valid End Date', 'The year, month and day the competency framework was deprecated/replaced by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21678', '11', '21678', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000702', 'Competency Framework Subject', 'Learning Standard Document Subject', 'The topic or academic subject of the competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21679', '11', '21679', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000703', 'Vision Screening Date', NULL, 'The year, month and day of a vision screening.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21680', '11', '21680', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000705', 'Hearing Screening Date', NULL, 'The year, month and day of a hearing screening.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21681', '11', '21681', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000706', 'Dental Screening Date', NULL, 'The year, month and day of a dental screening', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21682', '11', '21682', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000707', 'Assessment Item Maximum Score', NULL, 'The maximum number of points possible for the assessment item.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21683', '11', '21683', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000708', 'Assessment Item Minimum Score', NULL, 'The minimum number of points possible for the assessment item.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21684', '11', '21684', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000709', 'Assessment Item Characteristic Value', NULL, 'A psychometric measure provided for an assessment item.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21685', '11', '21685', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000710', 'Charter School Type', NULL, 'The category of charter school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21686', '11', '21686', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000711', 'Cohort Description', NULL, 'A description of the student cohort.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21687', '11', '21687', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000712', 'Curriculum Framework Type', NULL, 'An indication of the standard curriculum used for this course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21688', '11', '21688', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000713', 'High School Diploma Distinction Type', NULL, 'The distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21689', '11', '21689', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000714', 'Kindergarten Program Participation Type ', NULL, 'The type of Kindergarten program the student is enrolled in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21690', '11', '21690', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000715', 'Competency Definition Prerequisite Identifier', 'Learning Standard Item Prerequisite Identifier, Competency Item Prerequisite Identifier', 'The unique identifier of an immediate prerequisite Competency Definition, a competency needed prior to learning this one. (Some items may have no prerequisites while others may have one or more prerequisites. This should only be used to represent the immediate predecessors in a competency-based pathway, i.e. not prerequisites of prerequisites.)', 'Alphanumeric - 40 characters maximum', '0', 'The recommended approach is to use the entity Learning Standard Item Association instead of this data element. Learning Standard Item Association also supports associating other entities, such as Learning Resources, to learning standard items. CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces. An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21691', '11', '21691', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000716', 'Program Sponsor Type', NULL, 'A type of organization providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21692', '11', '21692', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000717', 'Assessment Performance Level Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment performance level.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21693', '11', '21693', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000718', 'Assessment Performance Level Label', NULL, 'A label representing the performance level appropriate for use on a report.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21694', '11', '21694', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000719', 'Assessment Subtest Rules', NULL, 'A description of the rules to produce a student test/subtest score from for a grouping of student item scores.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21695', '11', '21695', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000722', 'Address Type for Staff', NULL, 'The address type for a staff member.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21698', '11', '21698', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000724', 'Assessment Item Response Score Value', NULL, 'The score given to a person''s response to an assessment item.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21700', '11', '21700', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000725', 'Competency Definition Education Level', 'Learning Standard Item Education Level, Competency Item Education Level', 'The education level, grade level or primary instructional level at which a Competency Definition is intended.', NULL, '1', 'More than one Learning Standard Grade Level may be associated with one Learning Standard Item.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21701', '11', '21701', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000726', 'Academic Year Designator', NULL, 'The academic year for which the data apply.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21702', '11', '21702', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000727', 'Academic Term Designator', NULL, 'The academic term for which the data apply.', NULL, '1', 'Needs to be used in combination with Predominant Calendar System element in order to determine if the option set is referring to a semester, quarter, or some other term length.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21703', '11', '21703', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000728', 'Distance Education Course Enrollment', NULL, 'An individual''s enrollment in a course or courses in which the instructional content is delivered exclusively via distance education. Distance education is education that uses one or more technologies to deliver instruction to students who are separated from the instructor and to support regular and substantive interaction between the students and the instructor synchronously or asynchronously. Technologies used for instruction may include: Internet; one-way and two-way transmissions through open broadcasts, closed circuit, cable, microwave, broadband lines, fiber optics, satellite or wireless communication devices; audio conferencing; and video cassette, DVDs, and CD-ROMs, if the cassette, DVDs, and CD-ROMs are used in a course in conjunction with the technologies listed above.', NULL, '1', 'Element defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21704', '11', '21704', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000729', 'Predominant Calendar System', NULL, 'The method by which an institution structures most of its courses for the academic year.', NULL, '1', 'Definition and code set in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21705', '11', '21705', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000730', 'Standard Occupational Classification', NULL, 'A Bureau of Labor Statistics coding system for classifying occupations by work performed and, in some cases, on the skills, education and training needed to perform the work at a competent level. See https://www.bls.gov/soc/2018/major_groups.htm.', '##-####', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21707', '11', '21707', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000731', 'IPEDS Occupational Category', NULL, 'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report employees.', NULL, '1', 'IPEDS reporting categories beginning with the 2012 IPEDS survey year.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21708', '11', '21708', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000732', 'Instructional Staff Status', NULL, 'Staff whose primary function/occupational activity is primarily instruction or instruction combined with research and/or public service. Does not include medical school staff.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21709', '11', '21709', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000733', 'Medical School Staff Status', NULL, 'Staff employed by or employees working in the medical school component of a postsecondary institution or in a free standing medical school. Does not include staff employed by or employees working strictly in a hospital associated with a medical school or those who work in health or allied health schools or departments such as dentistry, veterinary medicine, nursing or dental hygiene.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21710', '11', '21710', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000734', 'Faculty Status', NULL, 'Persons identified by the institution as such and typically those whose initial assignments are made for the purpose of conducting instruction, research or public service as a principal activity (or activities). They may hold academic rank titles of professor, associate professor, assistant professor, instructor, lecturer or the equivalent of any of those academic ranks. Faculty may also include the chancellor/president, provost, vice provosts, deans, directors or the equivalent, as well as associate deans, assistant deans and executive officers of academic departments (chairpersons, heads or the equivalent) if their principal activity is instruction combined with research and/or public service. The designation as "faculty" is separate from the activities to which they may be currently assigned. For example, a newly appointed president of an institution may also be appointed as a faculty member. Graduate, instruction, and research assistants are not included in this category.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21711', '11', '21711', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000735', 'Instructional Staff Contract Length', NULL, 'The contracted teaching period for faculty.', NULL, '1', 'Option set new for IPEDS in 2012 survey year; IPEDS does not include the Less than 9-month code', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21712', '11', '21712', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000736', 'Full-time Status', NULL, 'An indication of whether an individual is employed for a standard number of hours (as determined by civil or organizational policies) in a week, month, or other period of time.', NULL, '1', 'Postsecondary: The type of appointment at the snapshot date determines whether an employee is full-time or part-time. The employee''s term of contract is not considered in making the determination of full or part-time. Causal employees (hired on an ad-hoc basis or occasional basis to meet short-term needs) and students in the College Work-Study Program (CWS) are not considered part-time staff.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21713', '11', '21713', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000737', 'Contract Type', NULL, 'The type of employment contract used by an institution.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21714', '11', '21714', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000738', 'Tenure System', NULL, 'An indicator of whether an institution has personnel positions that lead to consideration for tenure.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21715', '11', '21715', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000739', 'Instructional Staff Faculty Tenure Status', NULL, 'An indicator of the type of faculty status a person has if, by institutional definition, a staff member has faculty status.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21716', '11', '21716', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000740', 'Academic Rank', NULL, 'The academic rank of staff whose primary responsibility is instruction, research, and/or public service. Institutions without standard academic ranks should code staff whose primary responsibility is instruction, research, and/or public service as "No Academic Rank."', NULL, '1', 'Element definition and option set defined in IPEDS. Adjunct is not included since it can be determined from a combination of the elements Instructional Staff Faculty Tenure Status and Full-time Status.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21717', '11', '21717', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000741', 'Instruction Credit Type', NULL, 'A designation of the type(s) of instruction being delivered by staff whose primary responsibility is instruction. Instruction that is for "credit" can be applied toward the requirements for a postsecondary degree, diploma, certificate or other formal award.', NULL, '1', 'Element definition and option set defined in IPEDS; new collection element for the 2012 survey year', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21719', '11', '21719', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000742', 'Graduate Assistant Status', NULL, 'Graduate-level students employed on a part-time basis, not limited to, but often employed for the primary purpose of assisting in classroom or laboratory instruction or in the conduct of research. Graduate students having titles such as graduate assistant, teaching assistant, teaching associate, teaching fellow, or research assistant typically hold these positions.', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21720', '11', '21720', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000743', 'Graduate Assistant IPEDS Occupation Category', NULL, 'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report graduate assistants.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21721', '11', '21721', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000744', 'Annual Base Contractual Salary', NULL, 'The total annual base contractual salary of a person.', 'Integer - greater than or equal to 0', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21722', '11', '21722', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000745', 'Tuition - Published', NULL, 'The published tuition for first time, full-time undergraduate students (lower of in-district or in-state for public institutions). Tuition may be charged per term, per course, per credit or per program.', 'Numeric - up to 2 digits after decimal place', '0', 'The tuition rate used in the calculation of the institutional "net price" of attendance.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21723', '11', '21723', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000746', 'Tuition Unit', NULL, 'The component for which tuition is being charged. It might be a time period (term, quarter, year, etc.) or it might be an entity of education (course, credit hour, etc.).', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21725', '11', '21725', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000747', 'Required Student Fees', NULL, 'Fixed sum charged to persons for items not covered by tuition and required of such a large proportion of all students that the student who does not pay the charge is the exception.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21726', '11', '21726', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000748', 'Institutionally Controlled Housing Status', NULL, 'An indication of whether an institution has any residence hall or housing facility located on- or off-campus that is owned or controlled by an institution and used by the institution in direct support of or in a manner related to, the institution''s educational purposes.', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21727', '11', '21727', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000749', 'Room Charges', NULL, 'The charges for an academic year for rooming accommodations for a typical student sharing a room with one other student.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21728', '11', '21728', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000750', 'Board Charges', NULL, 'The charges assessed students for an academic year for the maximum meal plan available.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21729', '11', '21729', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000751', 'Books and Supplies Costs', NULL, 'The average cost for books and supplies for a typical student for an entire academic year (or program). Does not include unusual costs for special groups of students (e.g., engineering or art majors) unless they constitute the majority of students at an institution.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21730', '11', '21730', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000752', 'Other Student Expenses', NULL, 'The amount of money (estimated by the financial aid office) needed by a person to cover expenses such as laundry, transportation, and entertainment.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21731', '11', '21731', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000753', 'Price of Attendance', NULL, 'The total amount institutions estimate that undergraduate-level full-time, first-time degree-seeking students will pay to attend before financial aid is considered. This price includes tuition and fees, books and supplies, room and board, and certain other designated expenses such as transportation. These estimates are the average amounts used by the financial aid office to determine a student’s financial aid.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21732', '11', '21732', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000754', 'Comprehensive Fee', NULL, 'A single fixed amount of money charged by an institution that covers tuition, required fees, room, and board. For some institutions, this amount may also cover books and supplies.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21733', '11', '21733', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000755', 'Postsecondary Applicant', NULL, 'An individual who has fulfilled the institution’s requirements to be considered for admission (including payment or waiving of the application fee, if any) and who has been notified of one of the following actions: admission, nonadmission, placement on waiting list, or application withdrawn (by applicant or institution). Include early decision, early action, and students who began studies during summer in this cohort.', NULL, '1', 'CDS definition/instructions; first part matches IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21735', '11', '21735', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000756', 'Admitted Student', NULL, 'Applicant who has been granted an official offer to enroll in a postsecondary institution. Admitted applicants should include wait-listed students who were subsequently offered admission.', NULL, '1', 'First sentence from IPEDS, not CDS; Second sentence from CDS instructions. All options except "No" should be able to be collapsed into "Yes" for IPEDS reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21736', '11', '21736', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000757', 'Wait Listed Student', NULL, 'A person who meets the admission requirements but will only be offered a place in the class if space becomes available.', NULL, '1', 'Common Data Set definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21738', '11', '21738', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000758', 'Grade Point Average Domain', 'GPA Domain', 'The domain to which the Grade Point Average is referencing.', NULL, '1', 'Used to indicate to which academic domain a grade point element is referencing', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21739', '11', '21739', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000759', 'High School Percentile', NULL, 'The High School Rank divided by the Size of High School Graduating Class expressed as a percentage.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', 'Related Connection; linked to High School Grade Point Average Cumulative, Grade Point Average Weighted Indicator, High School Rank, and Size of High School Graduating Class
0% to 99% (where 99% corresponds to the valedictorian, 0% to the bottom rank in the class)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21740', '11', '21740', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000760', 'Postsecondary Student Housing On-Campus', NULL, 'The student resides in a residence hall or housing facility owned or controlled by an institution within the same reasonably contiguous geographic area and used by the institution in direct support of or in a manner related to, the institution''s educational purposes.', NULL, '1', 'IPEDS Definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21741', '11', '21741', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000761', 'Fraternity Participation Status', NULL, 'Student is in membership of a chiefly social organization of men students at a college or university, usually designated by Greek letters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21743', '11', '21743', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000762', 'Sorority Participation Status', NULL, 'Student is in membership in a chiefly social organization of women students at a college or university, usually designated by Greek letters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21744', '11', '21744', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000763', 'Financial Aid Applicant', NULL, 'Any applicant who submits any one of the institutionally required financial aid applications/forms, such as the Free Application for Federal Student Aid (FAFSA).', NULL, '1', 'Common Data Set definition.
Element should be used in combination with Financial Aid Applicant Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21745', '11', '21745', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000765', 'Financial Need', NULL, 'The amount of financial need as determined by an institution using the federal methodology and/or your institution''s own standards.', 'Numeric - up to 2 digits after decimal place', '0', 'Common Data Set definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21747', '11', '21747', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000766', 'Teacher Education Test Company', NULL, 'The name of the company that provides the examination used in the teacher education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21748', '11', '21748', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000767', 'Teacher Preparation Program Enrollment Status', NULL, 'An indication of whether a person is pursuing certification as a teacher.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21749', '11', '21749', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000768', 'Teacher Preparation Program Completer Status', NULL, 'An indication of whether a person completed a state-approved teacher preparation program. The fact that a person has or has not been recommended to the state for initial certification or licensure may not be used as a criterion for determining who is a program completer.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21750', '11', '21750', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000769', 'Alternative Route to Certification or Licensure', NULL, 'An indication of whether a person is enrolled in an alternative teacher preparation program as defined by Title II.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21751', '11', '21751', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000770', 'Critical Teacher Shortage Area Candidate', NULL, 'An indication of whether a person is pursuing licensure/certification in a field designated as a shortage area as defined by Title II.', NULL, '1', 'When used in conjunction with the element Classification of Instructional Program, the field of study can be determined.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21753', '11', '21753', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000771', 'Supervised Clinical Experience', NULL, 'An indication of whether a person is enrolled in a supervised clinical experience (including student teaching) as part of a teacher preparation program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21754', '11', '21754', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000772', 'Supervised Clinical Experience Clock Hours', NULL, 'An indication of the number of clock hours (minimum) a student is required to complete associated with a supervised clinical experience.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21755', '11', '21755', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000773', 'Teacher Education Credential Exam Type', NULL, 'The type of examination used to assess teacher candidate''s knowledge and skills.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21756', '11', '21756', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000774', 'Teacher Education Credential Exam Score Type', NULL, 'An indication of the type of credential exam associated with a given exam score.', 'Alphanumeric - 30 characters maximum', '0', 'Praxis I:
Reading
Mathematics
Writing

Praxis II:
Codes at http://www.ets.org/praxis/about/praxisii/content

ACTFL codes at http://www.languagetesting.com/', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21757', '11', '21757', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000775', 'Low-income Status', NULL, 'A person who receives or is a member of a family who receives a total family income in the 6 months prior to enrollment of 70 percent of the income standard for a family of that size or that does not exceed the poverty line, or the person is receiving or is a member of a family who is receiving cash assistance payments from Federal, State, or local agencies or food stamps, or the person can be designated as homeless under the McKinney Act.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21758', '11', '21758', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000776', 'Dislocated Worker Status', NULL, 'An individual who has been terminated or laid off, or who has received a notice of termination or layoff from employment, or an individual who was self-employed but is unemployed as a result of general economic conditions in the community in which the individual resides or because of natural disasters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21759', '11', '21759', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000777', 'Public Assistance Status', NULL, 'A person who receives financial assistance from Federal, State, or local government agencies, including Temporary Assistance for Needy Families or equivalent.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21760', '11', '21760', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000778', 'Rural Residency Status', NULL, 'A person who resides in a place with a population of less than 2,500 that is not near any metropolitan area with a population greater than 50,000, or in a city with adjacent areas of high density.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21761', '11', '21761', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000779', 'Adult Educational Functioning Level at Intake', NULL, 'An individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21763', '11', '21763', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000780', 'Adult Educational Functioning Level at Posttest', NULL, 'An individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21764', '11', '21764', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001077', 'Adult Education Instructional Program Type', NULL, 'The type of instructional program in which an adult is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21765', '11', '21765', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000782', 'Adult Education Special Program Type', NULL, 'The type, by location or delivery mode, of adult education instruction program in which an adult participates.', NULL, '1', 'Also see Adult Education Instructional Program Type', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21766', '11', '21766', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001079', 'Goals for Attending Adult Education', NULL, 'A person''s reasons for attending an adult education class or program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21767', '11', '21767', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000784', 'Adult Education Postsecondary Transition Action', NULL, 'The action taken with respect to postsecondary enrollment by the learner after program exit or when co-enrolled in ABE and postsecondary with respect to enrollment in a postsecondary educational or occupational skills program building on prior services or training received.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21768', '11', '21768', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001081', 'Adult Education Postsecondary Transition Date', NULL, 'The year, month and day on which a person previously enrolled in adult education entered and began to receive instructional services or training at a postsecondary institution.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21769', '11', '21769', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000786', 'Adult Education Staff Classification', NULL, 'The titles of employment, official status, or rank of adult education staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21770', '11', '21770', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001083', 'Adult Education Staff Employment Status', NULL, 'The condition under which a person has agreed to serve as an employee.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21771', '11', '21771', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000788', 'Years of Prior Adult Education Teaching Experience', NULL, 'The total number of years that a person has previously held a teaching position in one or more adult education programs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21774', '11', '21774', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001085', 'Adult Education Certification Type', NULL, 'An indication of the category of the adult education certification a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21775', '11', '21775', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000790', 'Proxy Contact Hours', NULL, 'The number of instructional hours completed by an adult enrolled in a distance learning program.', 'Numeric - up to 1 digit after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21776', '11', '21776', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001076', 'Adult Education Service Provider Identifier', NULL, 'A unique number or alphanumeric code assigned to an institution by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21777', '11', '21777', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000781', 'Adult Education Service Provider Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21778', '11', '21778', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001078', 'Adult Education Provider Type', NULL, 'The type of institution responsible for providing adult education instructional services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21779', '11', '21779', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000783', 'Professional or Technical Credential Conferred', NULL, 'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', '11', '21780', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001080', 'Child Identifier', NULL, 'A unique number or alphanumeric code assigned to a child by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21781', '11', '21781', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000785', 'Child Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by programs, schools, social services, or other agencies to refer to a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21782', '11', '21782', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000787', 'Family Identifier', NULL, 'A unique number or alphanumeric code assigned to a family by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21784', '11', '21784', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000789', 'Early Childhood Degree or Certificate Holder', NULL, 'Staff has a degree in early childhood regardless of level.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21786', '11', '21786', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001086', 'Total Approved Early Childhood Credits Earned', NULL, 'Total semester credits earned in early childhood regardless of whether credits are earned as part of an early childhood degree program, other degree program or outside of a degree program.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21787', '11', '21787', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000792', 'Early Learning Staff Total College Credits Earned', NULL, 'Total number of college credits earned, including all credits within a degree and outside a degree, regardless of whether they all are early childhood credits.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21791', '11', '21791', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000793', 'Staff Education Entry Date', NULL, 'The year, month and day that a staff member began participating in an educational experience (course, educational program, or formal education activity).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21792', '11', '21792', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000794', 'Staff Education Withdrawal Date', NULL, 'The year, month and day that an individual ceased participating in an educational experience without completing the course, educational program, or staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21793', '11', '21793', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000795', 'Employment End Date', NULL, 'The year, month and day on which a person ended self-employment or employment with an organization or institution.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21794', '11', '21794', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000796', 'Hours Worked Per Week', NULL, 'The number of hours worked per week in employment.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21795', '11', '21795', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000797', 'Hourly Wage', NULL, 'Hourly wage associated with the employment position being reported.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21796', '11', '21796', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000798', 'Wage Collection Code', NULL, 'Method used for the collection of wage data for an employment record.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21797', '11', '21797', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000799', 'Union Membership Status', NULL, 'An indication of whether the person is a member of a union.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21798', '11', '21798', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000804', 'Required Training Clock Hours', NULL, 'Number of clock hours of training required for providers to meet requirements of the state.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21803', '11', '21803', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000805', 'State Issuing Professional Credential or License', NULL, 'State where the professional license/credential was issued.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21804', '11', '21804', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000806', 'Child Development Associate Type', 'CDA Type', 'Type of Child Development Associate credential as defined by options.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21805', '11', '21805', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000807', 'Professional Association Membership Status', NULL, 'An indication of whether the person is a member of a professional organization or association.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21806', '11', '21806', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000808', 'Professional Association Name', NULL, 'The name of a professional association or organization.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21807', '11', '21807', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000809', 'Professional Development Activity Identifier', NULL, 'A unique number or alphanumeric code assigned to the Professional Development Activity as assigned by the organization offering the training.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21808', '11', '21808', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000810', 'Professional Development Activity Title', NULL, 'The title of an activity designed for the purpose of developing someone professionally.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21809', '11', '21809', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000811', 'Professional Development Scholarship Status', NULL, 'An indication of whether a scholarship was received for the person to participate in the professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21810', '11', '21810', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000812', 'Professional Development Financial Support Type', NULL, 'The type of financial assistance received in support of non-credit professional development activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21811', '11', '21811', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000813', 'Early Learning Core Knowledge Area', NULL, 'A description of the core knowledge areas addressed by Early Learning professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21812', '11', '21812', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000814', 'State Approved Trainer Status', NULL, 'An indication of whether an individual has been approved as a trainer through a state process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21813', '11', '21813', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000815', 'State Approved Technical Assistance Provider Status', NULL, 'An indication of whether an individual has been approved as a technical assistance provider through a state process.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21814', '11', '21814', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000816', 'Number of School-age Education Postsecondary Credit Hours', NULL, 'The number of college course credit hours an individual has successfully completed that are related to K-12 education, parks and recreation, and juvenile justice.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21815', '11', '21815', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000818', 'Higher Education Institution Accreditation Status', NULL, 'An indication of the accreditation status of a higher education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21817', '11', '21817', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000819', 'Wage Verification Code', NULL, 'An indication of whether the wage information has been verified.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21818', '11', '21818', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000820', 'Early Learning Class Group Identifier', NULL, 'A unique number or alphanumeric code assigned by a school, school system, a state, or other agency or entity for a particular early learning class or group.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21819', '11', '21819', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000821', 'Early Learning Class Group Name', NULL, 'Name of an early learning class or group.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21820', '11', '21820', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000822', 'Serves Children with Special Needs', NULL, 'An indication of whether a class or group serves children with special needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21821', '11', '21821', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000823', 'Early Learning Class Group Curriculum Type', NULL, 'The type of curriculum used in an early learning classroom or group.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21822', '11', '21822', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000824', 'Early Learning Group Size Standards Met', NULL, 'An indication of whether a program meets NAEYC or NAFCC standards for infant group sizes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21823', '11', '21823', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000825', 'Early Learning Program Annual Operating Weeks', NULL, 'The number of operating weeks per year for an early learning program.', 'Integer - between 0 and 52', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21824', '11', '21824', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000826', 'Organization Identifier', NULL, 'A unique number or alphanumeric code assigned to an organization by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21825', '11', '21825', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000827', 'Organization Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21827', '11', '21827', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000828', 'Early Learning Program Licensing Status', NULL, 'The current licensing status for an early learning program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21828', '11', '21828', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000829', 'Early Childhood Program Enrollment Type', NULL, 'The system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21829', '11', '21829', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000830', 'Quality Rating and Improvement System Award Date', 'QRIS Award Date', 'Date Quality Rating and Improvement System score, level or rating was awarded.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21830', '11', '21830', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000831', 'Quality Rating and Improvement System Expiration Date', 'QRIS Expiration Date', 'Date Quality Rating and Improvement System score, level or rating expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21831', '11', '21831', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000834', 'Facility Profit Status', NULL, 'An indication of the for-profit status of a facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21834', '11', '21834', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000835', 'Number of Early Learning Fatalities', NULL, 'Number of child fatalities at the program in the past year, as defined by the State', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21835', '11', '21835', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000836', 'Number of Early Learning Injuries', NULL, 'Number of child injuries at the program in the past year, as defined by the State.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21836', '11', '21836', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000837', 'Early Learning Program License Suspension Status', NULL, 'An indication of whether a program''s license was suspended due to violations as determined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21837', '11', '21837', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000838', 'Early Learning Program License Revocation Status', NULL, 'An indication of whether a program''s license was revoked due to violations as determined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21838', '11', '21838', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000840', 'Accreditation Award Date', NULL, 'The year, month and day when an accreditation was awarded.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21840', '11', '21840', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000841', 'Accreditation Expiration Date', NULL, 'The year, month and day when an accreditation expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21841', '11', '21841', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000842', 'Personnel Policy Type', NULL, 'Policies related to personnel in the organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21842', '11', '21842', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000843', 'Number of Quality Rating and Improvement System Levels', 'Number of QRIS Levels', 'Number of quality levels in the Quality Rating and Improvement System (QRIS).', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21843', '11', '21843', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000844', 'Number of Classrooms', NULL, 'The total number of classrooms for a program, facility, location, or other educational environment.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21844', '11', '21844', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000845', 'Program Provides Translated Materials', NULL, 'An indication of whether a program translates written materials into the individual''s home or parent''s language.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21845', '11', '21845', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000847', 'Ongoing Health Screening Policy', NULL, 'An indication of whether a program requires that all children are receiving ongoing health screenings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21847', '11', '21847', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000848', 'Early Learning Program Developmental Screening Status', NULL, 'An indication of whether a program ensures that all children served by the program are receiving developmental screenings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21848', '11', '21848', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000849', 'Immunization Policy', NULL, 'An indication of whether a program has an immunization policy that specifically indicates that all children are receiving immunizations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21849', '11', '21849', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000850', 'Referral Policy', NULL, 'An indication of whether the program has a policy for referrals for all children requiring them.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21850', '11', '21850', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000851', 'Program Health Safety Checklist Use Status', NULL, 'An indication of whether a program uses a health or safety checklist or documentation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21851', '11', '21851', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000852', 'Special Circumstances Population Served', NULL, 'Program provides services to meet the needs of children in special circumstances.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21852', '11', '21852', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000853', 'Program Provides Written Handbook', NULL, 'An indication of whether the program provides each parent with a written handbook.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21853', '11', '21853', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000854', 'Program Collects Parental Feedback', NULL, 'An indication of whether the program collects feedback from parents that informs program content and/or administration.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21854', '11', '21854', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000855', 'Program Provides Parent Involvement Opportunity', NULL, 'An indication of whether the program provides opportunities to parents to be involved with their children''s activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21855', '11', '21855', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000856', 'Program Provides Parent Education', NULL, 'An indication of whether the program provides parent training/education/workshops.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21856', '11', '21856', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000857', 'Parent Communication Method', NULL, 'The types of communication methods with parents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21857', '11', '21857', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000858', 'Assessment Shared with Parents', NULL, 'An indication of whether assessment results are shared with parents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21858', '11', '21858', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000859', 'Program Transition Planning Policy', NULL, 'An indication of whether a program has a transition planning policy (to center, to classroom, to school).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21859', '11', '21859', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000862', 'Economic Research Service Rural-Urban Continuum Code', 'ERS Rural-Urban Continuum Code', 'Rural-Urban Continuum Codes form a classification scheme that distinguishes metropolitan (metro) counties by the population size of their metro area, and nonmetropolitan (nonmetro) counties by degree of urbanization and adjacency to a metro area or areas. The metro and nonmetro categories have been subdivided into three metro and six nonmetro groupings, resulting in a nine-part county codification. The codes allow researchers working with county data to break such data into finer residential groups beyond a simple metro-nonmetro dichotomy, particularly for the analysis of trends in nonmetro areas that may be related to degree of rurality and metro proximity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21862', '11', '21862', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000863', 'Program Follows Salary Scale', NULL, 'An indication of whether a program has a salary scale that is followed for practitioners', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21863', '11', '21863', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000864', 'Early Learning Program Year', NULL, 'The year the program is operating.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21864', '11', '21864', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000865', 'State Licensed Facility Capacity', NULL, 'The maximum number of children for which a state licensed a facility.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21865', '11', '21865', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000866', 'Full-Time Employee Benefits', NULL, 'The benefits offered by a program/facility/employer for full-time staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21866', '11', '21866', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000867', 'Part-Time Employee Benefits', NULL, 'The benefits offered by a program/facility/employer for part-time staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21867', '11', '21867', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000868', 'Differential Shift Pay Indicator', NULL, 'An indication of whether staff receive differential shift pay.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21868', '11', '21868', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000869', 'Competency Association Type', 'Learning Standard Item Association Type', 'Defines the nature of the association between a Competency Definition and an associated data object such as a Learning Resource, an Assessment Item, or even another Competency Definition.', NULL, '1', 'The Learning Standard Item Association entity defines metadata relationships between a Learning Standard Item and other objects or relationships between Learning Standard Items not otherwise defined in the normal taxonomy of the framework such as for competency-based pathways, relationships between different versions of the same learning standard, and relationships to resources.


For example, "Prerequisite" may indicate that the Associated Learning Standard Item is a Prerequisite of this Learning Standards Item. Another association may specify that a Learning Resource "Teaches" the specified Learning Standard Item, or is aligned to the "Reading Level" specified as part of the Learning Standard Item.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21869', '11', '21869', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000871', 'Competency Association Identifier URI', 'Learning Standard Item Association Identifier URI', 'A URI that establishes uniqueness of an association between a competency definition and another competency item or other objects such as learning resources.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21871', '11', '21871', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001469', 'Rubric Criterion Category', NULL, 'A textual label for category by which Rubric Criterion may be grouped.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22441', '11', '22441', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001470', 'Rubric Criterion Description', NULL, 'Text describing a criterion that must be met to demonstrate quality for a product, process, or performance task.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22442', '11', '22442', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001471', 'Rubric Criterion Level Description', NULL, 'Text describing one or more benchmarks that must be met to achieve a degree of achievement on a product, process, or performance task.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22443', '11', '22443', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001472', 'Rubric Criterion Level Feedback', NULL, 'Pre-defined feedback text to be relayed to the person or organization being evaluated. This may include guidance and suggestions for improvement or development.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22444', '11', '22444', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001473', 'Rubric Criterion Level Position', NULL, 'A numeric value representing the level''s position in the list of levels defined for the Rubric Criterion.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22445', '11', '22445', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001474', 'Rubric Criterion Level Quality Label', NULL, 'A qualitative description of this degree of achievement used for column headers or row labels in tabular rubrics.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22446', '11', '22446', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001475', 'Rubric Criterion Level Score', NULL, 'The points awarded for achieving this level.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22447', '11', '22447', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001476', 'Rubric Criterion Position', NULL, 'A numeric value representing this criterion''s position in the criteria list for this rubric.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22448', '11', '22448', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001477', 'Rubric Criterion Title', NULL, 'The title of the rubric criterion.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22449', '11', '22449', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001478', 'Rubric Criterion Weight', NULL, 'A numeric weight assigned to this Rubric Criterion, used for scored rubrics.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22450', '11', '22450', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001479', 'Rubric Description', NULL, 'Text describing the intended use of the rubric.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22451', '11', '22451', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001480', 'School Courses for the Exchange of Data Grade Span', 'SCED Grade Span', 'The grade span for which the course is appropriate.', 'Alphanumeric - exactly 4 characters in length', '0', 'The span is represented by a four-character code with no decimals. Each grade level from 1 through 12 is represented by a two-digit code, ranging from 01 to 12; kindergarten is represented by the letters KG and prekindergarten by the letters PK.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22452', '11', '22452', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001481', 'Referral Date', NULL, 'The date of referral.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22453', '11', '22453', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001482', 'Referral Outcome', NULL, 'The outcome of the referral.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22454', '11', '22454', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001483', 'Referral Reason', NULL, 'The reason for the referral.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22455', '11', '22455', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001484', 'Referral Source', NULL, 'The person, program, or organization making the initial referral.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22456', '11', '22456', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001485', 'Referral Type Received', NULL, 'A type of service that a child or family has received a referral for.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22457', '11', '22457', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001486', 'Referred To', NULL, 'The program or organization to which the child/family was referred.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22458', '11', '22458', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001487', 'Short Name of Organization', NULL, 'The name of the organization, which could be abbreviated form of the full legally accepted name.', 'Alphanumeric - 30 characters maximum', '0', 'An abbreviated name of an institution is commonly used, especially in reports and applications, e.g. a K12 school with the full legal name "Dr. Martin Luther King, Jr. Elementary School" may use "King Elementary".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22459', '11', '22459', 'Updated', 'Changed name of element, technical name, and definition. Added elements to DES context to all organization domains.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001488', 'Reason for Declined Services', NULL, 'The reason given for declining the recommended services.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22460', '11', '22460', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001489', 'Sponsoring Agency Name', NULL, 'The name of the sponsoring agency.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22461', '11', '22461', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001490', 'State Agency Identifier', NULL, 'A unique number or alphanumeric code assigned to a state agency.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22462', '11', '22462', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001491', 'State Agency Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes to refer to a state agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22463', '11', '22463', 'Updated', 'Added new options to the existing option set. Changed definition for grammatical error. Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001492', 'Professional Development Activity Target Audience', NULL, 'A categorization of the audience for which the professional development activity is intended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22464', '11', '22464', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001493', 'Technical Assistance Approved Indicator', NULL, 'Indicates whether or not the technical assistance was approved.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22465', '11', '22465', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001494', 'Technical Assistance Delivery Type', NULL, 'The method of delivery of technical assistance received/provided', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22466', '11', '22466', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001495', 'Technical Assistance Type', NULL, 'The type of technical assistance provided.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22467', '11', '22467', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001496', 'Thesis or Dissertation Title', NULL, 'The title of the thesis or dissertation.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22468', '11', '22468', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001497', 'Union Membership Name', NULL, 'The name of the labor organization of which the person is a member.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22469', '11', '22469', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001498', 'Weeks Employed Per Year', NULL, 'The number of weeks employed by year.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22470', '11', '22470', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001499', 'Work-based Learning Opportunity Type', NULL, 'The type of work-based learning opportunity a student participated in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', '11', '22471', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001500', 'IDEA Part C to Part B Notification Date', NULL, 'The date that notification is provided to the State Education Agency (SEA) and local education agency (LEA) of residence for a child potentially eligible for Part B (619) preschool services.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22472', '11', '22472', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001501', 'IDEA IEP Status', NULL, 'The status of an individualized services plan for a specified reporting period or on a specified date.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22473', '11', '22473', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001503', 'Early Learning Outcome Time Point', NULL, 'The point in time for which the result is used for an outcome measure.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22475', '11', '22475', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001504', 'Child Outcomes Summary Progress A Indicator', 'COS Progress A Indicator', 'Indicates that the child demonstrates progress in positive social-emotional skills, including social relationships.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22476', '11', '22476', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001505', 'Child Outcomes Summary Progress B Indicator', 'COS Progress B Indicator', 'Indicates that the child demonstrates progress in acquisition and use of knowledge and skills, including early language/communication.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22477', '11', '22477', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001506', 'Child Outcomes Summary Progress C Indicator', 'COS Progress C Indicator', 'Indicates that the child demonstrates progress in use of appropriate behaviors to meet their needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22478', '11', '22478', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001507', 'Child Outcomes Summary Rating A', 'COS Rating A', 'Child''s level of functioning in positive social-emotional skills (including social relationships).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22479', '11', '22479', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001508', 'Child Outcomes Summary Rating B', 'COS Rating B', 'Child''s level of functioning in the acquisition and use of knowledge and skills (including early language/communication.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22480', '11', '22480', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001509', 'Child Outcomes Summary Rating C', 'COS Rating C', 'Child''s level of functioning in the use of appropriate behaviors to meet their needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22481', '11', '22481', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001510', 'Method of Service Delivery', NULL, 'The method by which the services will be provided.', 'Alphanumeric - 60 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22482', '11', '22482', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001511', 'Competency Definition Valid End Date', 'Learning Standard Item Valid End Date, Competency Item Valid End Date', 'The year, month and day the competency definition was deprecated/replaced by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', 'When not specified, the entity is assumed to contain the most current version of the specified competency definition. All CEDS Exit and End Dates represent the last day of the date range specified, in this case the last day the competency definition was valid.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22483', '11', '22483', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001512', 'Competency Definition Valid Start Date', 'Learning Standard Item Valid Start Date, Competency Item Valid Start Date', 'The year, month and day the competency definition was adopted by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22484', '11', '22484', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001513', 'Other Last Name', NULL, 'A last name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other Last Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22485', '11', '22485', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001514', 'Other First Name', NULL, 'A first name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other First Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22486', '11', '22486', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001515', 'Other Middle Name', NULL, 'A middle name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other Middle Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22487', '11', '22487', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001516', 'School Courses for the Exchange of Data Course Level', 'SCED Course Level', ' The course''s level of rigor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22488', '11', '22488', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001517', 'School Courses for the Exchange of Data Course Code', 'SCED Course Code', 'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', NULL, '1', 'https://nces.ed.gov/forum/SCED.asp', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490', '11', '22490', 'Updated', 'Added new options to the existing option set. Updated existing options. Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001518', 'School Courses for the Exchange of Data Course Subject Area', 'SCED Course Subject Area', 'The intended major subject area of the education course.', NULL, '1', 'This is a compilation of Secondary Course Subject Area and Prior to Secondary Course Subject Area. This version merges SCED and pSCED.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', '11', '22491', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001519', 'Individualized Program Planned Service Frequency', NULL, 'The frequency that a service is planned to be provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22492', '11', '22492', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001520', 'Individualized Program Planned Service Duration', NULL, 'The length, in hours, that delivery of the service is planned.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22493', '11', '22493', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001521', 'Reason for Delay of Transition Conference', NULL, 'The reasons for the delay of a transition conference.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22494', '11', '22494', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001524', 'Competency Definition Previous Version Identifier', 'Learning Standard Item Previous Version Identifier, Competency Item Previous Version Identifier', 'The unique identifier of the previous version of the Competency Definition if the statement was modified.', 'Alphanumeric - 40 characters maximum', '0', 'This element supports version histories at the statement level. If corrections have been made to individual items/statements that are not part of a new Competency Framework, the elements ''Competency Definition Previous Version Identifier'' and ''Competency Definition Current Version Indicator'' provide a reference to historical versions of the current statement. In such uses the ''Competency Definition Code'' could be the same for multiple versions of a statement and ''Competency Definition URL'' could resolve to the most current version of the statement.


CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.


An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22498', '11', '22498', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001525', 'Competency Definition Current Version Indicator', 'Learning Standard Item Current Version Indicator, Competency Item Current Version Indicator', 'Indicates that this is the most current version of the Competency Definition.', NULL, '1', 'This element supports version histories at the statement level. If corrections have been made to individual items/statements that are not part of a new Competency Framework, the elements ''Competency Definition Previous Version Identifier'' and ''Competency Definition Current Version Indicator'' provide a reference to historical versions of the current statement. In such uses the ''Competency Definition Code'' could be the same for multiple versions of a statement and ''Competency Definition URL'' could resolve to the most current version of the statement.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22499', '11', '22499', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001526', 'Accreditation Agency Name', NULL, 'The full name of an agency that accredited a school.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22500', '11', '22500', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001527', 'Activity Time Involved', NULL, 'The amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22502', '11', '22502', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001528', 'Activity Time Measurement Type', NULL, 'The type of measurement for the amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22503', '11', '22503', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001529', 'APIP Interaction Sequence Number', NULL, 'The position of this APIP Interaction in a sequence of interactions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22504', '11', '22504', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001530', 'Activity Description', NULL, 'A description of the events and procedures that take place under the purview of an organized activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22505', '11', '22505', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001531', 'Assessment Administration Period Description', NULL, 'The period or window in which an assessment is supposed to be administered.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22506', '11', '22506', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001532', 'Assessment Form Adaptive Indicator', NULL, 'Indicates that the assessment form was generated using an algorithm rather than a fixed form.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22507', '11', '22507', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001533', 'Assessment Form Algorithm Identifier', NULL, 'An identifier for algorithm used to generate a custom form for an adaptive test.', 'Alphanumeric - 40 characters maximum', '0', 'The algorithm is typically used to generate the entire assessment form, but there may be cases in which it is used to generate only one part (Assessment Form Section).

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22508', '11', '22508', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001534', 'Assessment Form Algorithm Version', NULL, 'The version of the algorithm used to generate a custom form for an adaptive test.', 'Alphanumeric - 40 characters maximum', '0', 'The algorithm is typically used to generate the entire assessment form, but there may be cases in which it is used to generate only one part (Assessment Form Section).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22509', '11', '22509', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001535', 'Assessment Form GUID', NULL, 'The globally unique identifier of an Assessment Form.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22510', '11', '22510', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001536', 'Assessment Form Section Item Field Test Indicator', NULL, 'Indicates that the assessment item is being field tested on this form of the test, and is not to be included for scoring.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22511', '11', '22511', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001537', 'Assessment Item Response Descriptive Feedback Date', NULL, 'The date and time the descriptive feedback was entered in response to the results from a scored/evaluated assessment item.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22512', '11', '22512', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001538', 'Assessment Item Response Score Status', NULL, 'The status of scoring a person''s response to an assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22513', '11', '22513', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001539', 'Assessment Participant Session Database Name', NULL, 'The name of the database that was used to administer the test.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22514', '11', '22514', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001540', 'Assessment Participant Session GUID', NULL, 'A globally unique identifier for an instance of a person taking an assessment.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22515', '11', '22515', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001541', 'Assessment Registration Completion Status', NULL, 'The completion and scoring status for an instance of a person taking an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22516', '11', '22516', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001542', 'Assessment Registration Completion Status Date Time', NULL, 'The date and time the completion and scoring status was changed for an instance of a person taking an assessment.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22517', '11', '22517', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001543', 'Assessment Result Data Type', NULL, ' The data type of the assessment result score value.', NULL, '1', 'An Assessment Result in CEDS may apply to an entire assessment or one aspect of evaluation as defined in the related “subtest” entity. The Assessment Result entity is repeatable, so there could be multiple Assessment Result Score Values each using a different Assessment Result Data Type, and each of these score values may be associated with one or more Assessment Performance Level(s).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22518', '11', '22518', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001544', 'Assessment Revision Date', NULL, 'The month, day, and year that the conceptual design for the assessment was most recently revised substantially.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22519', '11', '22519', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001545', 'Assessment Result Descriptive Feedback Date Time', NULL, 'The date and time the descriptive feedback was entered for a scored/evaluated portion of an assessment.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22520', '11', '22520', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001546', 'Assessment Result Score Standard Error', NULL, 'The measure of sampling variability and measurement error for the score, the amount of error to be expected in the score.', 'Numeric', '0', 'See http://nces.ed.gov/nationsreportcard/NDEHelp/WebHelp/standard_error.htm', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22522', '11', '22522', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001547', 'Assessment Result Score Type', NULL, 'Indicates the purpose for which this assessment score instance was recorded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22523', '11', '22523', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001548', 'Charter School Open Enrollment Indicator', NULL, 'Indicates that the charter school offers open enrollment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22524', '11', '22524', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001549', 'Course Department Name', NULL, 'Department with jurisdiction over this course.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22525', '11', '22525', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001550', 'Crisis Description', NULL, 'A description of the crisis that caused the displacement of students.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22526', '11', '22526', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001552', 'Crisis End Date', NULL, 'The date on which the crisis ceased to affect the agency.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22528', '11', '22528', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001553', 'Early Childhood Services Offered', NULL, 'A type of service offered by an organization that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22529', '11', '22529', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001554', 'Financial Account Number', NULL, 'A number given to a financial account within a local source accounting system. The number may be a concatenation of a standard prefix for the type of account with digits added that have specific meaning within the local system.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22530', '11', '22530', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001555', 'Financial Expenditure Level of Instruction Code', NULL, 'This classification permits expenditures to be segregated by instructional level.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22531', '11', '22531', 'Updated', 'Changed element name and technical name. Added option to the existing option set. Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001556', 'Financial Expenditure Project Reporting Code', NULL, 'The project/reporting code permits organizations to accumulate expenditures to meet a variety of specialized reporting requirements at the local, state, and federal levels. It is a three-digit code with the format 00X. The first two digits identify the particular funding source, authority, or expenditure purpose for which a special record or report is required. The third digit is available to identify particular projects and the fiscal year of the appropriation within that funding source. Each classification is presented by a code range followed by a description.', 'Numeric', '0', 'Based on the following code conventions specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition":

010 to 190 Local Projects. Expenditures that require specialized reporting and are funded from local sources.

200 to 390 State Projects. Expenditures that require specialized reporting for categorically funded state programs.

400 to 990 Federal Projects. Expenditures that require specialized reporting to the federal government directly or through the state.

1000 Noncategorical. Expenditures that do not require specialized reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22532', '11', '22532', 'Updated', 'Changed element name, technical name, and definition. Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001557', 'Learner Action Actor Identifier', NULL, ' A unique identifier for the person performing the learner action. The identifier should be encrypted when integrating learning experience data across systems to secure the privacy of the learner.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22533', '11', '22533', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001558', 'Learner Action Object Description', NULL, 'A description of the object upon which the person has performed the Learner Action.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22534', '11', '22534', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001559', 'Learner Action Object Identifier', NULL, 'A globally unique identifier for the object upon which the learning has performed the Learner Action which may be a URL with information about a learning resource or to launch the resource.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22535', '11', '22535', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001560', 'Learner Action Object Type', NULL, 'The type of object upon which a person has performed the Learner Action.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22536', '11', '22536', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001561', 'Learning Resource Access Rights URL', NULL, 'A Uniform Resource Locator (URL) that identifies the conditions that govern the user’s ability to access a learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22537', '11', '22537', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001562', 'Learning Resource Author Type', NULL, 'The type of entity, organization or person, that authored the learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22540', '11', '22540', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001563', 'Learning Resource Author URL', NULL, 'A Uniform Resource Locator (URL) attributed to the author of a learning resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22541', '11', '22541', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001564', 'Learning Resource Date Modified', NULL, 'The most recent date that the learning resource was updated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22542', '11', '22542', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001565', 'Learning Resource Interaction Mode', NULL, 'The primary type of interaction, synchronous or asynchronous, defined for the learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22543', '11', '22543', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001566', 'Learning Resource Author Email', NULL, 'An email address for the author of the learning resource.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22544', '11', '22544', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001567', 'Learning Resource Publisher Email', NULL, 'An email address for the publisher of the learning resource.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22545', '11', '22545', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001568', 'Learning Resource Publisher URL', NULL, 'A Uniform Resource Locator (URL) attributed to the publisher of a learning resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22547', '11', '22547', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001569', 'Competency Framework Publication Date', 'Learning Standard Document Publication Date', 'The date on which this content was first published.', 'YYYY-MM-DD', '0', 'This may or may not be different from the Learning Standard Document Valid Start Date.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22548', '11', '22548', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001570', 'Competency Definition Sequence', 'Learning Standard Item Sequence, Competency Item Sequence', 'A set of one or more alphanumeric characters and/or symbols denoting the positioning of the statement being described in a sequential listing of statements.', 'Alphanumeric - 60 characters maximum', '0', 'Based on ASN''s ListID. (add reference URL)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22549', '11', '22549', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001571', 'Person Identification System', NULL, 'A coding scheme that is used for identification of a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22550', '11', '22550', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001572', 'Person Identifier', NULL, 'A unique number or alphanumeric code assigned to a person by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22551', '11', '22551', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001573', 'Student Course Section Grade Narrative', NULL, 'The narrative of the student performance in a course section as submitted by the instructor.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22552', '11', '22552', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001574', 'Credits Required', NULL, 'The total number of credits required for a student to graduate from the school of enrollment or complete a program.', 'Numeric - up to 2 digits after decimal place', '0', 'May be compared to the sum of Number of Credits Earned for courses associated with the program of study to determine the remaining credits that the student needs to complete the program.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22553', '11', '22553', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001575', 'Tuition Funded', NULL, 'Indicates that tuition for person''s participation in a program, service, or course is funded or partially funded by an external grant program.', NULL, '1', 'The initial use case is for professional development courses/programs, but could apply to student programs/courses as well.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22554', '11', '22554', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001576', 'Military Connected Student Indicator', NULL, 'An indication that the student’s parent or guardian is on Active Duty, in the National Guard, or in the Reserve components of the United States military services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22555', '11', '22555', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001577', 'Military Active Student Indicator', NULL, 'An indication that the student is currently serving on Active Duty, in the National Guard, or in the Reserve components of the United States military services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22556', '11', '22556', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001578', 'Military Veteran Student Indicator', NULL, 'An indication that the student is a veteran who served on Active Duty, in the National Guard, or in the Reserve components of the United States military services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22557', '11', '22557', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001579', 'Admission Consideration Level', NULL, 'The level of consideration given a type of admission criteria used at an institution during the selection process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22558', '11', '22558', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001580', 'Admission Consideration Type', NULL, 'The type of admission consideration used at an institution during the selection process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22559', '11', '22559', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001581', 'Staff Approval Indicator', NULL, 'Individual is approved to Work with Children', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22560', '11', '22560', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001582', 'Billable Basis Type', NULL, 'The event/action that results in a billable action.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22561', '11', '22561', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001583', 'Career Pathways Program Participation Exit Date', NULL, 'The year, month and day on which the person ceased to participate in a program.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22562', '11', '22562', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001584', 'Career Pathways Program Participation Start Date', NULL, 'The year, month and day on which the person began to participate in a career pathway program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22563', '11', '22563', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001587', 'Credential or License Award Entity', NULL, 'The name of the organization awarding the individual''s credential or license.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22566', '11', '22566', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001588', 'Developmental Education Referral Status', NULL, 'The status of a student''s referral to or placement into developmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22567', '11', '22567', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001589', 'Developmental Education Type', NULL, 'An indicator of the category of developmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22568', '11', '22568', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001590', 'Directory Information Block Status', NULL, 'An indication of whether a individual requested a Family Education Rights and Privacy Act (FERPA) block to withhold the release of the person''s directory information.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22569', '11', '22569', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001591', 'Early Childhood Education and Assistance Program Eligibility', NULL, 'Denotes whether the family member can receive Early Childhood Education and Assistance Program (ECEAP) information for the child in question.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22570', '11', '22570', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001592', 'Early Learning Enrollment Application Verification Date', NULL, 'Date the required document was verified for the enrollment application', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22571', '11', '22571', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001593', 'Early Learning Enrollment Application Document Identifier', NULL, 'Identifier for an enrollment application document record.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22572', '11', '22572', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001594', 'Early Learning Enrollment Application Document Name', NULL, 'Document name for an enrollment application document record.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22573', '11', '22573', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001595', 'Early Learning Enrollment Application Document Type', NULL, 'Document type for an enrollment application document record.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22574', '11', '22574', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001597', 'Early Learning Application Identifier', NULL, 'Identifier for the application for enrollment or direct services filled out on behalf of a child', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22576', '11', '22576', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001599', 'Early Learning Application Required Document', NULL, 'Identifies a specific document required for enrollment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22578', '11', '22578', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001600', 'Early Learning Enrollment Application Verification Reason Type', NULL, 'Identifies the reason for verification of enrollment application information', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22579', '11', '22579', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001602', 'Early Learning Education Staff Classification', NULL, 'The title/role of employment, official status, or rank of education staff', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22581', '11', '22581', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001603', 'Early Learning Local Revenue Source', NULL, 'Funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22582', '11', '22582', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001604', 'Early Learning Service Type', NULL, 'A type of service provided to a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22583', '11', '22583', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001605', 'Early Learning State Revenue Source', NULL, ' Funds that originate at the State, and not from a federal or local source, that contribute to EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22584', '11', '22584', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001606', 'Early Learning Trainer Core Knowledge Area', NULL, 'A description of the core knowledge expertise of a trainer of a professional development experience.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22585', '11', '22585', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001607', 'Education Verification Method', NULL, 'The method by which the formal education is verified.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22586', '11', '22586', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001609', 'Financial Aid Veteran’s Benefit Status', NULL, 'An indication of whether a person is receiving Veteran''s benefits.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22588', '11', '22588', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001610', 'Financial Aid Veteran’s Benefit Type', NULL, 'The type of Veteran''s benefits a person is receiving.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22589', '11', '22589', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001611', 'Financial Aid Year Designator', NULL, 'The school year for which the student''s financial aid application and award data apply. Generally, this is the 12-month period from July 1 to June 30.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22590', '11', '22590', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001612', 'Included in Counted Family Size', NULL, 'Denotes whether this family member is counted in the family size as it pertains to the federal poverty level', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22591', '11', '22591', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001613', 'IPEDS Collection Year Designator', NULL, 'The academic year, generally extending from September to June, in which IPEDS data is collected. Most Institutional Characteristics, Salaries, Fall Staff, Fall Enrollment, and Employees by Assigned Position data are collected for the current year; Completions, 12-Month Enrollment, Student Financial Aid, and Finance data collections cover the prior year.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22592', '11', '22592', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001614', 'Memorandum of Understanding End Date', NULL, 'The date that a Memorandum of Understanding between the Early Learning Organization and the Service Partner is determined to expire.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22593', '11', '22593', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001615', 'Memorandum of Understanding Start Date', NULL, 'The effective date that a Memorandum of Understanding between the Early Learning Organization and the Service Partner Organization is effective.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22594', '11', '22594', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001616', 'Postsecondary Program Level', NULL, 'The level describing the concentration of study for a postsecondary program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22595', '11', '22595', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001617', 'Postsecondary Exit or Withdrawal Type', NULL, ' The circumstances under which the student exited from enrollment in a postsecondary institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22596', '11', '22596', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001618', 'Eligibility Priority Points', NULL, 'Priority points used to determine eligibility and placement order', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22597', '11', '22597', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001619', 'Professional Development Activity State Approved Status', NULL, 'An indication of whether a training activity has been approved through a state process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22598', '11', '22598', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001620', 'Professional Development Plan Approved by Supervisor', NULL, 'Professional development plan is approved by the employee''s supervisor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22599', '11', '22599', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001621', 'Professional Development Plan Completion', NULL, 'The date the professional development plan is completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22600', '11', '22600', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001622', 'Reimbursement Type', NULL, 'A billable basis which defines payment. This is how state agencies/programs move funding to the local provider/agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22601', '11', '22601', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001623', 'Scheduled Well Child Screening', NULL, 'The individual well child visit scheduled according to the AAP recommended periodicity schedule.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22602', '11', '22602', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001624', 'Service Partner Description', NULL, 'A description of the type of services that the partner organization provides.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22603', '11', '22603', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001625', 'Service Partner Name', NULL, 'The name of a non-person entity such as an organization, institution, agency or business, that partners with the Early Learning Organization to provide services to enrolled children/families.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22606', '11', '22606', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001627', 'Site Preference Rank', NULL, 'The applicant preference that the family has for the program sites.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22608', '11', '22608', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001628', 'Training and Technical Assistance Level', NULL, 'The level of expertise an individual training and technical assistance specialist has based on a set of established criteria.', 'Alphanumeric - 100 characters maximum', '0', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22609', '11', '22609', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001629', 'Transfer-out Indicator', NULL, 'An indicator of whether the student has transferred to another institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22610', '11', '22610', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001630', 'Trimester When Prenatal Care Began', NULL, 'The trimester of pregnancy in which a child''s mother began receiving prenatal health care.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22611', '11', '22611', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001631', 'Well Child Screening Received Date', NULL, 'The year, month and day of a well child visit.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22612', '11', '22612', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001632', 'Early Learning Employment Separation Reason', NULL, 'The primary reason for the termination of the employment relationship.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22613', '11', '22613', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001633', 'Community-based Type', NULL, 'Non domestic residence in which the early learning setting is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22614', '11', '22614', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001634', 'Inclusive Setting Indicator', NULL, 'Indicates that services are provided to the child in a place where children of all abilities learn together.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22615', '11', '22615', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001635', 'Service Date', NULL, 'The year, month, and day on which a service was provided.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22616', '11', '22616', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001636', 'Early Learning Service Professional Staff Classification', NULL, 'The title/role of employment, official status, or rank of early learning service professionals', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22617', '11', '22617', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001637', 'ISO 639-3 Language Code', NULL, 'The code for the specific language or dialect that a person uses to communicate.', NULL, '1', 'The CEDS ISO 639-3 Language Code option set comes from the ISO 639-3 standard, the Latin-1 download. Only living language code types from the ISO standard are included in the CEDS list. Special scope and discontinued codes are excluded.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22618', '11', '22618', 'Updated', 'Added new options to the existing option set, updated existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001638', 'ISO 639-5 Language Family', NULL, 'A code for a specific language family, which supplements the language groups and families in the ISO 639-2 Language Code.', NULL, '1', 'The CEDS ISO 639-5 Language Family option set comes from the ISO 639-5 standard.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22619', '11', '22619', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001639', 'Fiscal Year', NULL, 'The year an organization uses for budgeting, accounting, and reporting financials.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22620', '11', '22620', 'Updated', 'Changed definition. Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001640', 'Military Branch', NULL, 'A branch of the U.S. Military applicable for specifying more details when using Military Connected Student Indicator, Military Active Student Indicator, Military Veteran Student Indicator, and Military Enlistment After Exit elements.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22621', '11', '22621', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001641', 'DQP Categories of Learning', NULL, 'The Lumina Foundation''s Degree Qualifications Profile offers reference points for what students should know and be able to do upon completion of associate, bachelor''s and master''s degrees – in any field of study. The DQP Categories of Learning provide a profile of what degrees mean within which specific proficiencies may be defined.', NULL, '1', 'Based on the Degree Qualifications Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22622', '11', '22622', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001642', 'Fiscal Period Begin Date', NULL, 'The year, month and day on which an accounting period begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22623', '11', '22623', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001643', 'Fiscal Period End Date', NULL, 'The year, month and day on which an accounting period ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22624', '11', '22624', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001644', 'Financial Accounting Period Encumbered Value', NULL, 'The planned or obligated expense value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', 'Used for purchase order balances, the value not already included in "Financial Accounting Period Actual Value" as an expense.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22625', '11', '22625', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001645', 'Financial Account Program Name', NULL, 'The name given to the program area in an organization''s accounting system.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22626', '11', '22626', 'Updated', 'Changed definition. Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001646', 'Financial Account Program Number', NULL, 'A number given to a program area within an organization''s accounting system.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22627', '11', '22627', 'Updated', 'Changed definition. Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001647', 'Financial Accounting Value', NULL, 'The value of a financial account balance or transaction.', 'Numeric - up to 2 digits after decimal place', '0', 'Used to represent a point-in-time transaction or snapshot of an account/fund balance. Use “Financial Accounting Period Budgeted Value”, “Financial Accounting Period Actual Value”, and “Financial Accounting Period Encumbered Value” for values representing a period (with begin and end dates).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22628', '11', '22628', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001648', 'Financial Accounting Date', NULL, 'The date of a financial transaction or when an account balance is reported.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22629', '11', '22629', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001649', 'Attendance Event Date', NULL, 'The date on which an attendance event takes place.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22630', '11', '22630', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001650', 'Charter School Management Organization Type', NULL, 'The type of organization that is a separate legal entity that 1) contracts with one or more charter schools to manage, operate, and oversee the charter schools; or 2) holds a charter, or charters, to operate multiple charter schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22631', '11', '22631', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001651', 'Charter School Contract Id Number', NULL, 'The unique number the SEA assigns to the contract (or charter) that authorizes the charter school to operate in the state under the state''s charter school legislation.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22632', '11', '22632', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001652', 'Charter School Contract Approval Date', NULL, 'The effective date of the contract (or charter) that an approved charter school authorizer authorized the charter school to operate in the state under the state''s charter school legislation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22633', '11', '22633', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001653', 'Charter School Contract Renewal Date', NULL, 'The date by which the charter school must renew its contract (or charter) with an approved charter school authorizer in order to continue to operate in the state under the state''s charter school legislation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22634', '11', '22634', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001654', 'National School Lunch Program Direct Certification Indicator', NULL, 'Indicates that the student''s National School Lunch Program (NSLP) eligibility has been determined through direct certification.', NULL, '1', 'This element was introduced in version 6 of CEDS with plans for further development of elements needed to fully support direct certification use cases.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22635', '11', '22635', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001655', 'Course Section Maximum Capacity', NULL, 'The maximum number of students the Course Section can maintain.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22636', '11', '22636', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001656', 'IDEA Part C Eligibility Category', NULL, 'The category under which a person under 3 years of age is eligible for early intervention services under IDEA Part C.', NULL, '1', 'http://idea.ed.gov/part-c/statutes', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22637', '11', '22637', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001657', 'Tribal Affiliation', NULL, 'The Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22638', '11', '22638', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001658', 'Credential Definition Identifier', 'Credential Identifier', 'A globally unique identifier by which the creator/owner/provider of a credential recognizes the qualification, achievement, personal or organizational quality, or aspect of an identity in transactions with the external environment.', 'Alphanumeric - 512 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces. An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22639', '11', '22639', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001659', 'IPEDS Finance FASB Functional Expense Category', NULL, 'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', NULL, '1', '(NACUBO FARM, section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22640', '11', '22640', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001660', 'Credential Revoked Date', NULL, 'The date on which the qualification, achievement, personal or organizational quality, or aspect of an identity was revoked.', 'YYYY-MM-DD', '0', 'An empty string means the assertion was not revoked. Some uses (e.g. OpenBadges) may append time info in ISO 8601 format.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22641', '11', '22641', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001661', 'Credential Revoked Reason', NULL, 'Published reason for revocation of a credential award.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22642', '11', '22642', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001662', 'Credential Issuer Revocation List URL', NULL, 'The URL to a document that includes a list of credential award assertions an issuer has revoked.', 'Alphanumeric - 512 characters maximum', '0', 'See OpenBadges standard example http://openbadges.github.io/openbadges-specification/#RevocationList', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22643', '11', '22643', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001663', 'Organization Image URL', NULL, 'The Uniform Resource Locator (URL) for the unique address of an image representing the Organization.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22644', '11', '22644', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001664', 'Credential Completion Date', NULL, 'The date on which the person''s requirements for earning a credential were met or completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22645', '11', '22645', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001665', 'Academic Award Requirements URL', NULL, 'A URL to a page that describes the requirements for the credential.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22646', '11', '22646', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001666', 'Academic Award Prerequisite Type', NULL, 'Prerequisite conditions for earning an academic award.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22647', '11', '22647', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001667', 'Course Repeatability Maximum Number', NULL, 'The maximum number of times the course may be taken or completed for credit.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22648', '11', '22648', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001668', 'PESC Award Level Type', NULL, 'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22649', '11', '22649', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001669', 'Credential Award Evidence URL', NULL, 'A URL to a page that describes the evidence that the learner met the criteria for attainment of the credential award.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22650', '11', '22650', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000328', 'Ability Grouping Status', NULL, 'An indication of whether the school has students who are ability grouped for classroom instruction in mathematics or English/reading/language arts.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21000', '11', '21000', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000001', 'Academic Award Date', NULL, 'The year, month and day or year and month on which the academic award was conferred.', 'YYYY-MM-DD or YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21001', '11', '21001', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000002', 'Academic Award Level Conferred', NULL, 'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21002', '11', '21002', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000003', 'Academic Award Title', NULL, 'The descriptive title for the academic award.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21003', '11', '21003', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000004', 'Academic Honors Type', NULL, 'A designation of the type of academic distinctions earned by or awarded to the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21004', '11', '21004', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000005', 'Accountability Report Title', NULL, 'The title of the accountability report.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21005', '11', '21005', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000006', 'Activity Identifier', NULL, 'A unique number or alphanumeric code used in the local system to identify an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21006', '11', '21006', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000007', 'Activity Involvement Begin Date', NULL, 'The year, month and day on which the person began to participate in the activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21007', '11', '21007', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000008', 'Activity Involvement End Date', NULL, 'The year, month and day on which the person ceased to participate in the activity.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21008', '11', '21008', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000009', 'Activity Title', NULL, 'The title for a particular activity, such as a co-curricular or extra-curricular activity.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21009', '11', '21009', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000011', 'Adequate Yearly Progress Status', 'AYP Status', 'An indication of whether the state, district, or school met the Adequate Yearly Progress (AYP) requirements for the school year, as determined by the state-established criteria.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21011', '11', '21011', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000012', 'Administrative Funding Control', NULL, 'The type of education institution as classified by its funding source.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21012', '11', '21012', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000013', 'Course Aligned with Standards', NULL, 'An indication whether a course is aligned with the established standards of a curriculum framework.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21013', '11', '21013', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000014', 'Alternate Adequate Yearly Progress Approach Indicator', 'Alternate AYP Approach Indicator', 'An indication of whether the district or school used an approved alternate approach for calculating Adequate Yearly Progress (AYP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21014', '11', '21014', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000015', 'Alternative School Focus Type', NULL, 'An indication of the specific group of students whose needs the alternative school is designed to meet.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21015', '11', '21015', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000017', 'Advanced Placement Course Self Selection', 'AP Course Self Selection', 'An indication of whether enrollment via self-selection by the student is permitted for all Advanced Placement (AP) courses offered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21017', '11', '21017', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000018', 'Advanced Placement Credits Awarded', 'AP Credits Awarded', 'The number of credits awarded a student by the postsecondary institution based on successful completion of advanced placement courses and/or advanced placement tests. ', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21018', '11', '21018', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000019', 'Address Apartment Room or Suite Number', NULL, 'The apartment, room, or suite number of an address.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21019', '11', '21019', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000021', 'Assessment Academic Subject', NULL, 'The description of the academic content or subject area (e.g., arts, mathematics, reading, or a foreign language) being evaluated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21021', '11', '21021', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000024', 'Assessment Form Name', NULL, 'The name of a given assessment form.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21024', '11', '21024', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000025', 'Assessment Registration Participation Indicator', NULL, 'An indication of whether a student participated in an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21025', '11', '21025', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000026', 'Assessment Purpose', NULL, 'The reason for which an assessment is designed or delivered.', NULL, '1', 'This element might have multiple occurrences associated with any one assessment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21026', '11', '21026', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000027', 'Course Section Assessment Reporting Method', NULL, 'The method that the instructor of the course uses to report the performance and achievement of all students. It may be a qualitative method such as individualized teacher comments or a quantitative method such as a letter or a numerical grade. In some cases, more than one type of reporting method may be used.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21027', '11', '21027', 'Updated', 'Added new option to the existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000028', 'Assessment Title', NULL, 'The title or name of the assessment.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21028', '11', '21028', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000029', 'Assessment Type', NULL, 'The category of an assessment based on format and content.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21029', '11', '21029', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000030', 'Available Carnegie Unit Credit', NULL, 'Measured in Carnegie units, the amount of credit available to a student who successfully meets the objectives of the course. A course meeting every day for one period of the school day over the span of a school year offers one Carnegie unit. A Carnegie unit is thus a measure of "seat time" rather than a measure of attainment of the course objectives.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21030', '11', '21030', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000031', 'Awaiting Initial IDEA Evaluation Status', NULL, 'Awaiting initial evaluation for special education programs and related services under the Individuals with Disabilities Education Act (IDEA). ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21031', '11', '21031', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000032', 'Staff Compensation Base Salary', NULL, 'The salary or wage a person is paid before deductions (excluding differentials) but including annuities.', 'Numeric - up to 2 digits after decimal place', '0', 'For the Common Core Data Teacher Compensation Survey this is: ''The negotiated annual salary for teaching duties for the school year. The base salary excludes pay for additional duties, such as supervising or directing afterschool activities, school administration activities, and teaching summer school or adult education classes. Bonuses and other incentives are not included in base salaries.'' Also use CEDS element Salary for Teaching Assignment Only Indicator to indicate if a Base Salary is specific to teaching assignments.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21032', '11', '21032', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000033', 'Birthdate', NULL, 'The year, month and day on which a person was born.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21033', '11', '21033', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000035', 'Campus Residency Type', NULL, 'A person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21035', '11', '21035', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000036', 'Career and Technical Education Completer', 'CTE Completer', 'An indication of a student who reached a state-defined threshold of a career and technical education program/pathway.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21036', '11', '21036', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000037', 'Career and Technical Education Concentrator', 'CTE Concentrator', 'An indication of a student who has met the state-defined threshold of career and technical education concentrators, as defined in the State''s approved Perkins IV State Plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21037', '11', '21037', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000038', 'Carnegie Basic Classification', NULL, 'The Basic Classification is an update of the traditional classification framework developed by the Carnegie Commission on Higher Education in 1970 to support its research program, and later published in 1973 for use by other researchers.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21038', '11', '21038', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000039', 'Charter School Indicator', NULL, 'An indication that a public school provides free public elementary and/or secondary education to eligible students under a specific charter executed, pursuant to a state charter school law, by an authorized chartering agency/authority and that is designated by such authority to be a public charter school.', NULL, '1', 'When the element is used for an LEA, it means the LEA is a Charter District meaning any and all schools under the authority of the LEA are charter schools. Don''t flag an LEA as a charter district if it has a mix of charter schools and non-charter schools.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21039', '11', '21039', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000040', 'Address City', NULL, 'The name of the city in which an address is located.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21040', '11', '21040', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000041', 'High School Student Class Rank', NULL, 'The academic rank of a student in relation to his or her high school graduating class (e.g., 1, 2, 3) based on high school GPA.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21041', '11', '21041', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000042', 'Class Ranking Date', NULL, 'The date class ranking was determined.', 'YYYY-MM-DD or YYYY-MM or YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21042', '11', '21042', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000043', 'Classification of Instructional Program Code', 'CIP Code', 'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21043', '11', '21043', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000044', 'Classification of Instructional Program Use', 'CIP Use', 'An indicator of whether the CIP Code is referencing an enrollment program or an award program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21044', '11', '21044', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000045', 'Classification of Instructional Program Version', 'CIP Version', 'The version of CIP being reported.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21045', '11', '21045', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000046', 'Cohort Year', NULL, 'The school year in which the student entered the baseline group used for computing completion rates (e.g., high school, program).', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21046', '11', '21046', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000047', 'Contract Days of Service Per Year', NULL, 'The number of days per year that a person is expected to work as outlined specifically in his or her employment agreement.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21047', '11', '21047', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000048', 'Control of Institution', NULL, 'A classification of whether a postsecondary institution is operated by publicly elected or appointed officials (public control) or by privately elected or appointed officials and derives its major source of funds from private sources (private control). ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21048', '11', '21048', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000049', 'Corrective Action Type', NULL, 'The types of corrective actions under ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21049', '11', '21049', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000050', 'Country Code', NULL, 'The unique two character International Organization for Standardization (ISO) code for the country in which an address is located.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21050', '11', '21050', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000051', 'Country of Birth Code', NULL, 'The unique two digit International Organization for Standardization (ISO) code for the country in which a person is born.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21051', '11', '21051', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000053', 'Course Academic Grade', NULL, 'The final grade awarded for participation in the course. ', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21053', '11', '21053', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000054', 'Course Begin Date', NULL, 'The year, month and day an instance of a course officially began.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21054', '11', '21054', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000055', 'Course Identifier', NULL, 'The actual code that identifies the organization of subject matter and related learning experiences provided for the instruction of students.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21055', '11', '21055', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000056', 'Course Code System', NULL, 'A system that is used to identify the organization of subject matter and related learning experiences provided for the instruction of students.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21056', '11', '21056', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000057', 'Course Credit Units', NULL, 'The type of credit (unit, semester, or quarter) associated with the credit hours earned for the course. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21057', '11', '21057', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000058', 'Credit Value', NULL, 'The amount of credit available to the student who successfully meets the objectives of the course or learning opportunity based on the units defined by Credit Unit Type.', 'Numeric - up to 2 digits after decimal place', '0', 'For K-12 a course meeting every day for one period of the school day over the span of a school year typically offers one Carnegie unit. In this case a Carnegie unit is a measure of "seat time" rather than a measure of attainment of the course objectives.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21058', '11', '21058', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000059', 'Course End Date', NULL, 'The year, month and day an instance of a course ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21059', '11', '21059', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000060', 'Course Grade Point Average Applicability', 'Course GPA Applicability', 'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21060', '11', '21060', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000061', 'Course Level Characteristic', NULL, 'An indication of the general nature and difficulty of instruction provided throughout a course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21061', '11', '21061', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000063', 'Course Override School', NULL, 'The school where the credit was earned if different from the institution reporting. ', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21063', '11', '21063', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000064', 'Course Quality Points Earned', NULL, 'The numerical value assigned to a letter grade to provide a basis of quantitative determination of an average. ', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21064', '11', '21064', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000065', 'Course Repeat Code', NULL, 'Indicates that an academic course has been repeated by a student and how that repeat is to be computed in the student''s academic grade average.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21065', '11', '21065', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000066', 'Course Subject Abbreviation', NULL, 'The alphabetic abbreviation of the academic department or discipline offering the course. It is one part of the total course identifier number. ', 'Alphanumeric - 10 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21066', '11', '21066', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000067', 'Course Title', NULL, 'The descriptive name given to a course of study offered in a school or other institution or organization. In departmentalized classes at the elementary, secondary, and postsecondary levels (and for staff development activities), this refers to the name by which a course is identified (e.g., American History, English III). For elementary and other non-departmentalized classes, it refers to any portion of the instruction for which a grade or report is assigned (e.g., reading, composition, spelling, and language arts).', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21067', '11', '21067', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000068', 'Postsecondary Course Title', NULL, 'The name or title of the course taken by a student at an academic institution.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21068', '11', '21068', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000069', 'Credential Expiration Date', NULL, 'The year, month and day on which an active credential held by a person will expire.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21069', '11', '21069', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000070', 'Credential Issuance Date', NULL, 'The year, month and day on which an active credential was issued to a person.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21070', '11', '21070', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000071', 'Credential Type', NULL, 'An indication of the category of credential a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21071', '11', '21071', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000072', 'Credit Unit Type', NULL, 'The type of credits or units of value awarded for the completion of a course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21072', '11', '21072', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000073', 'Credits Attempted Cumulative', NULL, 'The cumulative number of credits a person attempts to earn by taking courses during their enrollment in their current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21073', '11', '21073', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000074', 'Credits Earned Cumulative', NULL, 'The cumulative number of credits a person earns by completing courses or examinations during their enrollment in the current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21074', '11', '21074', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000075', 'Career and Technical Education Graduation Rate Inclusion', 'CTE Graduation Rate Inclusion', 'An indication of how CTE concentrators are included in the state''s computation of its graduation rate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21075', '11', '21075', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000076', 'Attendance Status', NULL, 'The status of a person''s attendance associated with an Attendance Event Type and Attendance Event Date in an organization-person-role context.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21076', '11', '21076', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000077', 'Degree Applicability', NULL, 'An indication that the course is a part of a degree program. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21077', '11', '21077', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000078', 'Degree or Certificate Seeking Student', NULL, 'Person is enrolled in courses for credit and recognized by the institution as seeking a degree, certificate, or other formal award. High school students also enrolled in postsecondary courses for credit are not considered degree/certificate-seeking.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21078', '11', '21078', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000079', 'Dependency Status', NULL, 'A person''s classification as dependent or independent with regards to eligibility for Title IV Federal Student aid.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21079', '11', '21079', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000080', 'Desegregation Order or Plan', NULL, 'An indication whether the LEA is covered by a desegregation plan either ordered by a court or entered into with the Office for Civil Rights under Title VI of the Civil Rights Act of 1964.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21080', '11', '21080', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000081', 'Diploma or Credential Award Date', NULL, 'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', '11', '21081', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000082', 'Disciplinary Action End Date', NULL, 'The year, month and day on which a discipline action ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21082', '11', '21082', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000083', 'Disciplinary Action Start Date', NULL, 'The year, month and day on which a discipline action begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21083', '11', '21083', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000084', 'Career-Technical-Adult Education Displaced Homemaker Indicator', 'CTE-AE Displaced Homemaker Indicator', 'A person who ; (A) (i) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; (ii) has been dependent on the income of another family member but is no longer supported by that income; or (iii) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (B) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21084', '11', '21084', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000085', 'Dual Credit Dual Enrollment Credits Awarded', NULL, 'The number of credits awarded a student by the postsecondary institution based on successful completion of dual credit/dual enrollment courses. ', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21085', '11', '21085', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000086', 'Economic Disadvantage Status', NULL, 'An indication that the student met the State criteria for classification as having an economic disadvantage.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21086', '11', '21086', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000087', 'K12 Staff Classification', NULL, 'The titles of employment, official status, or rank of education staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21087', '11', '21087', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000088', 'Electronic Mail Address', 'Email Address', 'The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the person or organization belongs.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21088', '11', '21088', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000089', 'Electronic Mail Address Type', 'Email Address Type', 'The type of electronic mail (e-mail) address listed for a person or organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21089', '11', '21089', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000091', 'Elementary-Middle Additional Indicator Status', NULL, ' An indication of whether the school or district met the Elementary/Middle Additional Indicator requirement in accordance with state definition for the purpose of determining Adequate Yearly Progress (AYP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21091', '11', '21091', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000092', 'Eligibility Status for School Food Service Programs', NULL, 'An indication of a student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21092', '11', '21092', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000093', 'End of Term Status', NULL, 'The nature of the student''s progress at the end of a given school term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21093', '11', '21093', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000094', 'Enrollment Status', NULL, 'An indication as to whether a student''s name was, is, or will be officially registered on the roll of a school or schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21094', '11', '21094', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000095', 'Postsecondary Enrollment Type', NULL, 'An indicator of the enrollment type associated with the enrollment award level of a person at the beginning of a term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21095', '11', '21095', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000096', 'Postsecondary Enrollment Status', NULL, 'An indication of the student''s enrollment status for a particular term as defined by the institution', NULL, '1', 'Either use option 02 or one of the options, 04 or 05, for less than full-time but at least half-time.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21096', '11', '21096', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000097', 'Enrollment Entry Date', NULL, 'The month, day, and year on which a person enters and begins to receive instructional services in a school, institution, program, or class-section during a given session.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21097', '11', '21097', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000098', 'Entry Date into Postsecondary', NULL, 'The year, month and day on which a person entered and began to receive instructional services at a postsecondary institution for the first time after completing high school (or its equivalent). ', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21098', '11', '21098', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000099', 'Entry Type', NULL, 'The process by which a student enters a school during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21099', '11', '21099', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000100', 'Entry Grade Level', NULL, 'The grade level or primary instructional level at which a student enters and receives services in a school or an educational institution during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21100', '11', '21100', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000101', 'Course Section Time Required for Completion', NULL, 'The actual or estimated number of clock minutes required for course completion. This number is especially important for career and technical education course and may represent (in minutes) the clock hour requirement of the course, the number of minutes (or clock hours) of class time per week, times the number of equivalent weeks the class typically meets.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21101', '11', '21101', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000102', 'Staff Evaluation Outcome', NULL, 'The result of an assessment of a person''s performance.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21102', '11', '21102', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000103', 'Staff Evaluation Scale', NULL, 'The quantitative or qualitative range of possible scores/rating for a person''s overall performance (e.g., 0 - 10; Poor, Fair, Average, Good, Excellent).', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21103', '11', '21103', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000104', 'Staff Evaluation Score or Rating', NULL, 'The actual quantitative or qualitative assessment of a person''s overall performance.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21104', '11', '21104', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000105', 'Staff Evaluation System', NULL, 'The instrument and/or set of procedures with which a person''s performance is assessed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21105', '11', '21105', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000106', 'Cohort Exclusion', NULL, 'Those persons who may be removed (deleted) from a cohort (or subcohort). For the Graduation Rates and Fall Enrollment retention rate reporting, persons may be removed from a cohort if they left the institution for one of the following reasons: death or total and permanent disability; service in the armed forces (including those called to active duty); service with a foreign aid service of the federal government, such as the Peace Corps; or service on official church missions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21106', '11', '21106', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000107', 'Enrollment Exit Date', NULL, 'The year, month and day on which the student officially withdrew or graduated, i.e. the date on which the student''s enrollment ended.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21107', '11', '21107', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000108', 'Exit or Withdrawal Status', NULL, 'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21108', '11', '21108', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000110', 'Exit or Withdrawal Type', NULL, 'The circumstances under which the student exited from membership in an educational institution. ', NULL, '1', 'The purpose of this element is to track the circumstances related to an exit from membership. There are multiple use cases related to this element, some for longitudinal purposes, some for funding, some for live transactional systems. The descriptions and definitions are intended to meet those needs. Four often misunderstood options are explained below:
1. 09999 - Other. Other is intended to indicate that CEDS has not yet defined a circumstance in which this exit occurred.
2. 03505 - Exited. Unlike "09999 - Other", the "Exited" option is intended to be used for administrative purposes such as a mid-year grade level change.
3. 01931 - Not enrolled, unknown status. This is to be used as a placeholder while additional exit information is collected or to track students who are known to have Discontinued Schooling (dropped out) separate from students whose whereabouts are unknown.
4. 03502 - Not enrolled, eligible to return. Different than the 01931 code, the status of this student is not unknown; however, the institution is required to exit the student from membership for an extended period. It is expected the student will reenroll in the same institution following this extended period.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21110', '11', '21110', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000111', 'Federal School Code', NULL, ' A unique code assigned by the U.S. Department of Education to schools participating in the Title IV Federal Student Aid programs. Persons enter these codes in the Free Application for Federal Student Aid (FAFSA) to indicate which postsecondary schools they want to receive their financial aid application results.', 'Alphanumeric - exactly 6 characters in length', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21111', '11', '21111', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000112', 'Financial Aid Award Amount', NULL, 'The amount of financial aid awarded to a person for the term/year.', 'Numeric - up to 2 digits after decimal place', '0', 'Linked to financial aid award type.
Note: For any given individual this cluster of fields may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21112', '11', '21112', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000113', 'Financial Aid Award Type', NULL, 'The classification of financial aid awarded to a person for the academic term/year.', NULL, '1', 'Linked to financial aid type.
Note: For any given individual this cluster of fields may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21113', '11', '21113', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000115', 'First Name', NULL, 'The full legal first name given to a person at birth, baptism, or through legal change.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21115', '11', '21115', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000117', 'First Time Postsecondary Student', NULL, 'A person who has no prior postsecondary experience attending any institution for the first time at the undergraduate level since completing high school (or its equivalent). This includes persons enrolled in academic or occupational programs. It also includes persons enrolled in the fall term who attended college for the first time in the prior summer term, and persons who entered with advanced standing (college credits earned before graduation from high school).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21117', '11', '21117', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000118', 'Staff Full Time Equivalency', 'Staff FTE', 'The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21118', '11', '21118', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000120', 'GED Preparation Program Participation Status', NULL, 'An indication that a student aged 16-19 participates in a General Educational Development (GED) preparation program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21120', '11', '21120', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000121', 'Generation Code or Suffix', NULL, 'An appendage, if any, used to denote a person''s generation in his family (e.g., Jr., Sr., III).', 'Alphanumeric - 10 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21121', '11', '21121', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000122', 'Gifted and Talented Indicator', NULL, 'An indication that the student is participating in and served by a Gifted/Talented program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21122', '11', '21122', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000123', 'Grade Point Average Weighted Indicator', 'GPA Weighted Indicator', 'An indication of whether the reported Grade Point Average is weighted or unweighted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21123', '11', '21123', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000124', 'Student Course Section Grade Earned', NULL, 'A final indicator of student performance in a course section as submitted by the instructor.', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21124', '11', '21124', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000125', 'Grade Level When Course Taken', NULL, 'Student''s grade level at time of course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21125', '11', '21125', 'Updated', 'Added new option to the existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000126', 'Grade Level When Assessed', NULL, 'The grade or developmental level of a student when assessed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21126', '11', '21126', 'Updated', 'Added new option to the existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000127', 'Grade Point Average', NULL, 'The value of the total quality points divided by the Credit Hours for Grade Point Average. ', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21127', '11', '21127', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000128', 'Grade Point Average Cumulative', 'GPA - Cumulative', 'A measure of average performance in all courses taken by a person during his or her school career as determined for record-keeping purposes. This is obtained by dividing the total grade points received by the total number of credits attempted. This usually includes grade points received and credits attempted in his or her current school as well as those transferred from schools in which the person was previously enrolled.', 'Numeric - up to 4 digits after decimal place', '0', 'Related Connection; linked to Grade Point Average Weighted Indicator, High School Percentile, High School Rank, and Size of High School Graduating Class', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21128', '11', '21128', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000129', 'Grade Point Average Given Session', 'GPA - Given Session', 'A measure of average performance in all courses taken by a person during a given session. This is obtained by dividing the total grade points received by the number of credits attempted for the same session.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21129', '11', '21129', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000130', 'Grade Points Earned Cumulative', NULL, 'The cumulative number of grade points a person earns by successfully completing courses or examinations during his or her enrollment in the current school as well as those transferred from schools in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21130', '11', '21130', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000131', 'Grades Offered', NULL, 'The specific grade or combination of grades offered by an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21131', '11', '21131', 'Updated', 'Added and removed options from existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000132', 'Graduation Rate Survey Cohort Year', NULL, 'The academic year in which a student entered as part of the GRS cohort.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21132', '11', '21132', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000133', 'Graduation Rate Survey Indicator', NULL, 'An indication of whether or not the student is in a GRS cohort; meaning the student began as a first-time, full-time, degree seeking student in the fall of a given year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21133', '11', '21133', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000134', 'Gun Free Schools Act Reporting Status', NULL, 'An indication of whether the school or local education agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, as defined by Title 18, Section 921.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21134', '11', '21134', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000135', 'Harassment or Bullying Policy Status', NULL, 'An indication of whether the education unit has adopted written policy prohibiting harassment and bullying on the basis of a civil rights law.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21135', '11', '21135', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000136', 'Staff Compensation Health Benefits', NULL, 'Contributions made by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider''s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21136', '11', '21136', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000137', 'High School Course Requirement', NULL, 'An indication that this course credit is required for a high school diploma.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21137', '11', '21137', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000138', 'High School Diploma Type', NULL, 'The type of diploma/credential that is awarded to a person in recognition of his/her completion of the curricular requirements.', NULL, '1', 'Use "Other Diploma" instead of "Other" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21138', '11', '21138', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000140', 'High School Graduation Rate Indicator Status', NULL, 'An indication of whether the school or district met the High School Graduation Rate requirement in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21140', '11', '21140', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000141', 'Highest Level of Education Completed', NULL, 'The extent of formal instruction a person has received (e.g., the highest grade in school completed or its equivalent or the highest degree received).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21141', '11', '21141', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000142', 'Highly Qualified Teacher Indicator', NULL, 'An indication that the teacher has been classified as highly qualified based on assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21142', '11', '21142', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000143', 'Hire Date', NULL, 'The year, month and day on which a person was hired for a position, or consecutive positions within the same organization and job classification.', 'YYYY-MM-DD', '0', 'This is the Hire Date beginning consecutive employment with the current employer in the same Professional-Educational Job Classification. A person may change positions within the same organization and job classification without triggering a new hire date. For example a teacher originally hire to teach 3rd grade may be reassigned to 4th grade. However, a change of job classifications, e.g. from teacher to principal, would trigger a new Hire Date.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21143', '11', '21143', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000144', 'Hispanic or Latino Ethnicity', NULL, 'An indication that the person traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central and South America, and other Spanish cultures, regardless of race.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21144', '11', '21144', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000146', 'Homeless Primary Nighttime Residence', NULL, 'The primary nighttime residence of the person at the time the person was identified as homeless.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21146', '11', '21146', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000147', 'Homeless Serviced Indicator', NULL, 'An indication of whether homeless children and youth were served by a McKinney-Vento program in the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21147', '11', '21147', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000148', 'Homeless Unaccompanied Youth Status', NULL, 'An indication that homeless youths were unaccompanied by parents or legal guardians.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21148', '11', '21148', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000149', 'Homelessness Status', NULL, 'Children and youth who lack a fixed, regular, and adequate nighttime residence. Homeless children and youth include: 1) children and youth who are sharing the housing of other persons due to loss of housing, economic hardship, or a similar reason; are living in motels, hotels, trailer parks, or camping grounds due to the lack of alternative adequate accommodations; are living in emergency or transitional shelters; are abandoned in hospitals; or are awaiting foster care placement; 2) children and youth who have a primary nighttime residence that is a public or private place not designed for or originally used as a regular sleeping accommodation for human beings; or 3) children and youths who are living in cars, parks, public spaces, abandoned buildings, substandard housing, bus or train stations, or similar settings. 4) migratory children who qualify as homeless because the children are living in circumstances described in the above. (See Section 103 of the McKinney Act for a more detailed description of this data element).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21149', '11', '21149', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000150', 'Honors Description', NULL, 'A description of the type of academic distinctions earned by or awarded to the person.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21150', '11', '21150', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000151', 'IDEA Indicator', NULL, 'A person having intellectual disability; hearing impairment, including deafness; speech or language impairment; visual impairment, including blindness; serious emotional disturbance (hereafter referred to as emotional disturbance); orthopedic impairment; autism; traumatic brain injury; developmental delay; other health impairment; specific learning disability; deaf-blindness; or multiple disabilities and who, by reason thereof, receive special education and related services under the Individuals with Disabilities Education Act (IDEA) according to an Individualized Education Program (IEP), Individual Family Service Plan (IFSP), or service plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21151', '11', '21151', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001067', 'Assessment Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment by a school, school system, a state, or other agency or entity. This may be the publisher identifier.', 'Alphanumeric - 100 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21152', '11', '21152', 'Updated', 'Increased Format to Alphanumeric- 100 characters.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001068', 'Local Education Agency Identifier', 'LEA Identifier', 'A unique number or alphanumeric code assigned to a local education agency by a school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21153', '11', '21153', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001069', 'School Identifier', NULL, 'A unique number or alphanumeric code assigned to an institution by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21155', '11', '21155', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001070', 'Staff Member Identifier', NULL, 'A unique number or alphanumeric code assigned to a staff member by a school, school system, a state, registry, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21156', '11', '21156', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001071', 'Student Identifier', NULL, 'A unique number or alphanumeric code assigned to a student by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21157', '11', '21157', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000365', 'Assessment Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21158', '11', '21158', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001072', 'Local Education Agency Identification System', 'LEA Identification System', 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to a local education agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21159', '11', '21159', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001073', 'School Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21161', '11', '21161', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001074', 'Staff Member Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, registry, or other agencies to refer to a staff member.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21162', '11', '21162', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001075', 'Student Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to a student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21163', '11', '21163', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000164', 'Increased Learning Time Type', NULL, 'The types of increased learning time provided.', NULL, '1', 'If your data is granular enough to differentiate between Before School and After School, it is recommended those options be selected over using the combined Before or After School option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21164', '11', '21164', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000165', 'Initial Enrollment Term', NULL, 'The first registration term of a person enrolling in credit-granting courses at a postsecondary institution after completing high school (or its equivalent). ', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21165', '11', '21165', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000166', 'Institution IPEDS UnitID', 'IPEDS Identifier', 'Unique identification number assigned to postsecondary institutions surveyed through the Integrated Postsecondary Education Data System (IPEDS). Also referred to as UNITID or IPEDS ID.', 'Integer - exactly 6 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21166', '11', '21166', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000167', 'Institution Telephone Number Type', NULL, 'The type of communication number listed for an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21167', '11', '21167', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000168', 'Instructional Activity Hours Attempted', NULL, 'The number of credit hours and/or contact hours attempted by a person during a term.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21168', '11', '21168', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000169', 'Instructional Activity Hours Type', NULL, 'The unit of measure of student instructional activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21169', '11', '21169', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000170', 'Integrated Technology Status', NULL, 'An indication of the extent to which the district has effectively and fully integrated technology, as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21170', '11', '21170', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000171', 'Last Qualifying Move Date', NULL, 'The year, month and day of the last qualifying move of a migrant student.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21171', '11', '21171', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000172', 'Last or Surname', 'Last Name', 'The full legal last name borne in common by members of a family.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21172', '11', '21172', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000173', 'Local Education Agency Improvement Status', 'LEA Improvement Status', 'An indication of the improvement stage for AYP of the local education agency (LEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21173', '11', '21173', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000174', 'Local Education Agency Operational Status', 'LEA Operational Status', 'The classification of the operational condition of a local education agency (LEA) at the start of the school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21174', '11', '21174', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000175', 'Local Education Agency Supervisory Union Identification Number', 'LEA Supervisory Union Identification Number', 'The three-digit unique identifier assigned to the supervisory union by the state. ', 'Alphanumeric - 3 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21175', '11', '21175', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000177', 'Assessment Level for Which Designed', NULL, 'The typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21177', '11', '21177', 'Updated', 'Added new option to the existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000178', 'Level of Institution', NULL, 'A classification of whether a postsecondary institution''s highest level of offering is a program of 4-years or higher (4 year), 2-but-less-than 4-years (2 year), or less than 2-years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21178', '11', '21178', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000179', 'Limited English Proficiency - Postsecondary', 'LEP - Postsecondary', 'The term "individual with limited English proficiency" means a secondary school student, an adult, or an out-of-school youth, who has limited ability in speaking, reading, writing, or understanding the English language AND whose native language is a language other than English; OR who lives in a family or community environment in which a language other than English is the dominant language. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21179', '11', '21179', 'Removed', 'Marked "Limited English Proficiency - Postsecondary" as "Removed". Use "English Learner Status" instead.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000180', 'English Learner Status', NULL, 'In coordination with the state''s definition based on Section 8101(20) of the ESEA, as amended by the ESSA, the term ''English learner'', when used with respect to an individual, means an individual: (A) who is aged 3 through 21; (B) who is enrolled or preparing to enroll in an elementary school or a secondary school; (C) (i) who was not born in the United States or whose native languages are languages other than English; (ii) (I) who is a Native American or Alaska Native, or a native resident of the outlying areas; and (II) who comes from an environment where a language other than English has had a significant impact on the individual''s level of English language proficiency; or (iii) who is migratory, whose native language is a language other than English, and who come from an environment where a language other than English is dominant; and (D) whose difficulties in speaking, reading, writing, or understanding the English language may be sufficient to deny the individual (i) the ability to meet the challenging State academic standards; (ii) the ability to successfully achieve in classrooms where the language of instruction is English; or (iii) the opportunity to participate fully in society.', NULL, '1', 'To be classified as an English learner, an individual must be A, B, and (C or D). For C, an individual can be i, ii, or iii. If C-ii, the individual must be I and II. For D, an individual must be denied i or ii or iii and must be determined by a valid assessment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21180', '11', '21180', 'Updated', 'Removed English Learner Status out of EL Child>Disability. Created new category called English Learner. Removed Alternate Name') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000181', 'Magnet or Special Program Emphasis School', NULL, 'A school that has been designed: 1) to attract students of different racial/ethnic backgrounds for the purpose of reducing, preventing, or eliminating racial isolation; and/or 2)to provide an academic or social focus on a particular theme (e.g., science/math, performing arts, gifted/talented, career academy or foreign language).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21181', '11', '21181', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000182', 'Marking Period Name', NULL, 'The name or description of the marking period (e.g., fall, first marking period).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21182', '11', '21182', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000183', 'Mid Term Mark', NULL, 'Indicator of student performance at the mid-point of the marking period.', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21183', '11', '21183', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000184', 'Middle Name', NULL, 'A full legal middle name given to a person at birth, baptism, or through legal change.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21184', '11', '21184', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000185', 'Migrant Education Program Participation Status', 'MEP Participation Status', 'An indicator of whether the student is served by a Migrant Education Program (MEP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21185', '11', '21185', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000186', 'Migrant Education Program Services Type', 'MEP Services Type', 'The type of services received by participating migrant students in the migrant education program (MEP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21186', '11', '21186', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000187', 'Migrant Education Program Session Type', 'MEP Session Type', 'The time of year that a Migrant Education Program operates.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21187', '11', '21187', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000188', 'Migrant Education Program Staff Category', 'MEP Staff Category', 'Titles of employment, official status, or rank of staff working in the Migrant Education Program (MEP).', NULL, '1', 'Funded by Title I-C.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21188', '11', '21188', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000189', 'Migrant Status', NULL, 'Persons who are, or whose parents or spouses are, migratory agricultural workers, including migratory dairy workers, or migratory fishers, and who, in the preceding 36 months, in order to obtain, or accompany such parents or spouses, in order to obtain, temporary or seasonal employment in agricultural or fishing work (A) have moved from one LEA to another; (B) in a state that comprises a single LEA, have moved from one administrative area to another within such LEA; or (C) reside in an LEA of more than 15,000 square miles, and migrate a distance of 20 miles or more to a temporary residence to engage in a fishing activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21189', '11', '21189', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000190', 'Address County Name', NULL, 'The name of the county, parish, borough, or comparable unit (within a state) in which an address is located.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21190', '11', '21190', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000872', 'Competency Definition Parent Identifier', 'Learning Standard Item Parent Identifier, Competency Item Parent Identifier', 'The globally unique identifier (GUID) issued by the publisher of the competency framework that uniquely identifies the parent item in the hierarchy of competency definitions using a RFC 4122 compliant 32-character hexadecimal string, such as 21EC2020-3AEA-1069-A2DD-08002B30309D.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21872', '11', '21872', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000873', 'Competency Definition Parent Code', 'Learning Standard Item Parent Code, Competency Item Parent Code', 'A human-referenceable code designated by the publisher to identify the parent item in the hierarchy of competency definitions.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21873', '11', '21873', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000874', 'Competency Definition URL', 'Learning Standard Item URL, Competency Item URL', 'A network-resolvable Uniform Resource Locator (URL) pointing to the authoritative reference for the competency definition.', 'Alphanumeric - 512 characters maximum', '0', 'An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21874', '11', '21874', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000875', 'Competency Definition Blooms Taxonomy Domain', 'Learning Standard Item Blooms Taxonomy Domain, Competency Item Blooms Taxonomy Domain', 'Classification of the Competency Definition using Bloom''s Taxonomy Domains. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21875', '11', '21875', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000876', 'Competency Definition Multiple Intelligence', 'Learning Standard Item Multiple Intelligence, Competency Item Multiple Intelligence', 'Classification of the Competency Definition using intelligences defined for Howard Earl Gardner''s Theory of Multiple Intelligences.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21876', '11', '21876', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000877', 'Competency Set Completion Criteria', NULL, 'The criteria for the set of competencies that represent completion or partial completion of a unit, course, program, degree, certification, or other achievement/award. Specifies whether completion requires achievement of all items in the set or some number of items.', NULL, '1', 'The criteria may be ‘all’ competencies in the set or ‘at-least’ # of competencies. Sets may be nested, e.g. all in subset A and 3 of 5 from subset B.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21877', '11', '21877', 'Updated', 'Added elements to DES context to support K12 Implementation.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000878', 'Competency Set Completion Criteria Threshold', NULL, 'The minimum number of competencies in the set that must be achieved for completion or partial completion of a unit, course, program, degree, certification, or other achievement/award.', 'Integer - greater than or equal to 0', '0', 'Used to define the completion criteria when Competency Set Completion Criteria is "At Least". Not used when Competency Set Completion Criteria is "All".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21878', '11', '21878', 'Updated', 'Added elements to DES context to support K12 Implementation.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000879', 'Learning Resource Competency Alignment Type', NULL, 'The alignment relationship between the resource and a competency definition object.', NULL, '1', 'A community of SEAs have agreed to use a limited set of Learning Resource Competency Alignment Type options when tagging learning resources in shared resource repositories. Those options are assesses, teaches, and requires.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21879', '11', '21879', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000880', 'Competency Framework Language', 'Learning Standard Document Language', 'The default language of the text used for the content in the competency framework.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21880', '11', '21880', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000881', 'Competency Definition Language', 'Learning Standard Item Language, Competency Item Language', 'The default language of the text used for the content in the competency definition statement.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21881', '11', '21881', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000882', 'Competency Framework License', 'Learning Standard Document License', 'A legal document giving official permission to do something with the competency framework.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21882', '11', '21882', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000883', 'Competency Definition License', 'Learning Standard Item License, Competency Item License', 'The full text or URL reference to a legal document giving official permission to do something with the competency definition statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21883', '11', '21883', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000884', 'Competency Framework Publisher', 'Learning Standard Document Publisher', 'The entity responsible for making the competency framework available.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21884', '11', '21884', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000885', 'Competency Framework Rights', 'Learning Standard Document Rights', 'The information about rights held in and over the resource.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21885', '11', '21885', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000886', 'Competency Framework Rights Holder', 'Learning Standard Document Rights Holder', 'The person or organization owning or managing rights over the competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21886', '11', '21886', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000887', 'Competency Definition Concept Keyword', 'Learning Standard Item Concept Keyword, Competency Item Concept Keyword', 'The significant topicality of the competency definition using free-text keywords and phrases.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21887', '11', '21887', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000888', 'Competency Definition Concept Term', 'Learning Standard Item Concept Term, Competency Item Concept Term', 'The topicality of the competency definition, e.g. "Pythagorean Theorem," "Trigonometric functions," "Forces and energy," "Scientific method," "Oral history," etc.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21888', '11', '21888', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000889', 'Assessment Registration Assignor Identifier', NULL, 'The unique identifier of the person who assigned the assessment to the learner.', 'Alphanumeric - 40 characters maximum', '0', 'For example, the unique identifier of a classroom teacher or school principal.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21889', '11', '21889', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000890', 'Assessment Result Descriptive Feedback', NULL, 'The formative descriptive feedback that was given to a learner based on a scored/evaluated portion of an assessment as recorded in the result entity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21890', '11', '21890', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000891', 'Assessment Item Response Descriptive Feedback', NULL, 'The formative descriptive feedback that was given to a learner in response to the results from a scored/evaluated assessment item.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21891', '11', '21891', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000892', 'Credential Definition Category Type', 'Credential Category Type', 'A category for defining the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 60 characters maximum', '0', 'Categories could include "Competency Mastered", "Competency Retained", "Course Completed", "Level Completed", "Certificate Earned", "Diploma Earned", "License Earned", "License Endorsement Earned", "Participation", "Academic Honor", "Non-Academic Honor", etc. (This element supports an emerging use case, therefore a complete set of options are not known. Future CEDS versions may define an Achievement Type element when a fixed option set can be compiled.) Note: The Achievement entity is most valuable when linked to a specific competency set that defined the learning standards related to the achievement.(SEE "Achievement Category System")', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21892', '11', '21892', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000893', 'Credential Definition Title', 'Credential Title', 'The title assigned to a qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21893', '11', '21893', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000894', 'Credential Image URL', NULL, 'The Uniform Resource Locator (URL) for the unique address of an image representing an award or badge associated with the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 512 characters maximum', '0', 'Typical use is for online display of a badge image.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21894', '11', '21894', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000895', 'Credential Definition Description', 'Credential Description', 'A description of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21895', '11', '21895', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000896', 'Credential Definition Criteria', 'Credential Criteria', 'The criteria for competency-based completion of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21896', '11', '21896', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000898', 'Credential Award Issuer Name', NULL, 'The name of the agent issuing the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 128 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21898', '11', '21898', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000900', 'Credential Award Issuer Origin URL', NULL, 'The Uniform Resource Locator (URL) from which the qualification, achievement, personal or organizational quality, or aspect of an identity was issued.', 'Alphanumeric - 512 characters maximum', '0', 'Used only if an award is issued electronically for the achievement.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21900', '11', '21900', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000901', 'Credential Evidence Statement', NULL, 'A statement or reference describing the evidence that the learner met the criteria for attainment of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', 'A narrative that may connect multiple pieces of evidence OR an IRI or document describing the work that the recipient did to earn the achievement. This can be a page that links out to other pages if linking directly to the work is infeasible. May be used in an array of multiple values.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21901', '11', '21901', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000902', 'Goal Success Criteria', NULL, 'One or more statements that describes the criteria used by teachers and students to check for attainment of a goal.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21902', '11', '21902', 'Updated', 'Added elements to DES context to support K12 Implementation.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000903', 'Goal Description', NULL, 'A statement that describes the desired outcomes.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21903', '11', '21903', 'Updated', 'Added elements to DES context to support K12 Implementation.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000904', 'Assessment Item Possible Response Feedback Message', NULL, 'A message provided to the person being assessed after giving a response that matches the possible response.', 'Alphanumeric - 300 characters maximum', '0', 'This may be a message of affirmation for a correct answer or descriptive feedback for an incorrect answer. For example, if the item asked the question what is 2 times 3 and the learner answered 5, the Feedback Message might be "Try multiplication instead of addition."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21904', '11', '21904', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000905', 'Assessment Item Possible Response Sequence Number', NULL, 'The position of this response in the list of responses displayed, such as for a multiple choice item type.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21905', '11', '21905', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000906', 'Assessment Item Text Complexity Value', NULL, 'The complexity of the text using the scaling system defined by Text Complexity System, e.g. Lexile™ for assessment items with a reading passage.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21906', '11', '21906', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000907', 'Assessment Item Text Complexity System', NULL, 'The scaling system used to specify the text complexity of an assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21907', '11', '21907', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000908', 'Assessment Item Possible Response Value', NULL, 'The description of each distracter on an assessment item, explaining why it is there, what misunderstandings it exposes.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21908', '11', '21908', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000910', 'Competency Definition Text Complexity System', 'Learning Standard Item Text Complexity System, Competency Item Text Complexity System', 'The scaling system used to specify the text complexity of a competency item.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21910', '11', '21910', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000911', 'Learning Resource URL', NULL, 'The Uniform Resource Locator where the resource may be accessed, or a proxy for the resource, such as an information page for a commercially available resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21911', '11', '21911', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000912', 'Learning Resource Title', NULL, 'The title of the resource.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21912', '11', '21912', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000913', 'Learning Resource Subject Name', NULL, 'The descriptive name for the subject of the content for the learning resource.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21913', '11', '21913', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000914', 'Learning Resource Subject Code', NULL, 'The code used to identify the organization of subject matter and related learning experiences addressed by the learning resource.', 'Alphanumeric - 30 characters maximum', '0', 'A promising practice is to use a URL as the Learning Resource Subject Code, that resolves to a web page describing a term in a subject taxonomy. For example, for "Mathematics", the URL http://id.loc.gov/authorities/classification/BH301.M35.html points to the Library of Congress classification for "Mathematics". For K12 curriculum "SCED" - School Courses for the Exchange of Data (SCED) may be used, e.g. https://ceds.ed.gov/ScedCourseCodes.aspx#02031 is "Mathematics (grade 1)"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21914', '11', '21914', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000915', 'Learning Resource Subject Code System', NULL, 'The system that is used to identify the organization of subject matter and related learning experiences addressed by the learning resource.', 'Alphanumeric - 30 characters maximum', '0', 'This may be a URL to a web page describing the subject code system or a name or abbreviation for the system if no authoritative web page exists. When the associated learning resource Subject Code is a URL, that URL usually provides enough context so that the "Subject Code System" need not be specified. However, this may be the URL to a page describing the classification system and/or the entry point to the web hosted classification system. E.g. for the Library of Congress Classification System use: http://id.loc.gov/authorities/classification.html', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21915', '11', '21915', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000916', 'Learning Resource Date Created', NULL, 'The date on which the resource was created.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21916', '11', '21916', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000917', 'Learning Resource Creator', NULL, 'The name of a person or organization credited with the creation of the resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21918', '11', '21918', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000918', 'Learning Resource Publisher Name', NULL, 'The name of the organization credited with publishing the resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21919', '11', '21919', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000919', 'Learning Resource Language', NULL, 'The primary language of the resource.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.
Note: For accessible resources LRMI uses language codes from the IETF BCP 47 standard which also refers to ISO 639. (Equivalent of the AfA languageOfAdaptation property.)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21920', '11', '21920', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000921', 'Learning Resource License URL', NULL, 'The URL where the owner specifies permissions for using the resource.', 'Alphanumeric - 512 characters maximum', '0', 'Ex: “http://creativecommons.org/licenses/by/3.0/“', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21922', '11', '21922', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000922', 'Learning Resource Based on URL', NULL, 'A resource that was used in the creation of this resource. This term can be repeated for multiple sources.', 'Alphanumeric - 512 characters maximum', '0', 'Ex: “http://example.com/great-multiplication-intro.html“', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21923', '11', '21923', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000923', 'Learning Resource Intended End User Role', NULL, 'The individual or group for which the resource was produced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21924', '11', '21924', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000924', 'Learning Resource Time Required', NULL, 'The approximate or typical time it takes to work with or through this learning resource for the typical intended target audience.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21925', '11', '21925', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000925', 'Learning Resource Typical Age Range Minimum', NULL, 'The minimum for the typical range of ages of the content’s intended end user.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21926', '11', '21926', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000926', 'Learning Resource Typical Age Range Maximum', NULL, 'The maximum for the typical range of ages of the content’s intended end user.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21927', '11', '21927', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000927', 'Learning Resource Interactivity Type', NULL, 'The predominate mode of learning supported by the learning resource. Acceptable values are active, expositive, or mixed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21928', '11', '21928', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000928', 'Learning Resource Type', NULL, 'The predominate type or kind characterizing the learning resource.', NULL, '1', 'A community of SEAs have agreed to use a limited set of Learning Resource Type options when tagging learning resources in shared resource repositories. The options defined for this element align with those common tagging specifications.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21929', '11', '21929', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000929', 'Learning Resource Text Complexity Value', NULL, 'The complexity of the text using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21930', '11', '21930', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000930', 'Learning Resource Text Complexity System', NULL, 'The scaling system used to specify the text complexity of an Learning Resource', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21931', '11', '21931', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000931', 'Assessment Short Name', NULL, 'An abbreviated title for an assessment.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21932', '11', '21932', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000932', 'Assessment Family Title', NULL, 'The full title of the Assessment Family. An Assessment Family is a set of assessments with a common name, jurisdiction, or focus, such as Graduate Record Exam or National Assessment of Educational Progress.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21933', '11', '21933', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000933', 'Assessment Family Short Name', NULL, 'The abbreviated title of the Assessment Family. An Assessment Family is a set of assessments with a common name, jurisdiction, or focus.', 'Alphanumeric - 30 characters maximum', '0', 'Examples: SAT, GRE, NAEP', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21934', '11', '21934', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000934', 'Learner Action Type', NULL, 'The type of action taken by the learner.', NULL, '1', 'The CEDS Learner Action Type option set comes from the ADL Controlled Vocabulary, xAPI specification.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21935', '11', '21935', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000935', 'Learner Action Value', NULL, 'The value representing input by the learner using an online system, such as a value entered in response to an assessment question, or the URL of a learning resource link clicked.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21936', '11', '21936', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000937', 'Learner Action Date Time', NULL, 'The date and time at which the action was taken.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21938', '11', '21938', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000938', 'Learner Activity Language', NULL, 'The default language used for the assignment.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21939', '11', '21939', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000939', 'Learner Activity Title', NULL, 'The title for work assigned to the learner, which can comprise of learning resources, activities, and assessments.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21940', '11', '21940', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000940', 'Learner Activity Description', NULL, 'The description and context for the assignment described in a way that the learner can understand.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21941', '11', '21941', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000941', 'Learner Activity Prerequisite', NULL, 'The description of the skills or competencies the student must have to engage in assignment.', 'Alphanumeric - 300 characters maximum', '0', 'Note: Prerequisites may also be referenced via an associated Learning Goal and Competency Set (prerequisites for individual competencies). For some applications enumeration of the detailed prerequisites will have greater utility than a single descriptive field.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21942', '11', '21942', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000942', 'Learner Activity Type', NULL, 'The type of work assigned to the learner.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21943', '11', '21943', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000943', 'Learner Activity Creation Date', NULL, 'The creation date of the assignment.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21944', '11', '21944', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000944', 'Learner Activity Maximum Time Allowed', NULL, 'The time required to complete the assignment.', 'Integer - greater than or equal to 0', '0', 'Time allowed is assumed to be unlimited if zero or omitted.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21945', '11', '21945', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000945', 'Learner Activity Maximum Time Allowed Unit', NULL, 'The unit of time of the Maximum Time Allowed value.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21946', '11', '21946', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000946', 'Learner Activity Due Date', NULL, 'The date assignment is due.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21947', '11', '21947', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000947', 'Learner Activity Due Time', NULL, 'The time the assignment is due.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21948', '11', '21948', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000948', 'Learner Activity Maximum Attempts Allowed', NULL, 'The number attempts a student may make on this assignment. Assumed to be unlimited if zero or omitted.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21949', '11', '21949', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000949', 'Learner Activity Add to Grade Book Flag', NULL, 'Identifies the assignment as one that is graded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21950', '11', '21950', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000950', 'Learner Activity Release Date', NULL, 'The date the student was informed about an assignment or that an automated system displays the assignment.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21951', '11', '21951', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000951', 'Learner Activity Weight', NULL, 'The percentage weight of the assignment during the particular course or term.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21952', '11', '21952', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000952', 'Learner Activity Possible Points', NULL, 'The number of possible points for an assignment.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21953', '11', '21953', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000953', 'Learner Activity Rubric URL', NULL, 'The Uniform Resource Locator pointing to a rubric that may be used to evaluate learner performance on the assignment.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21954', '11', '21954', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000954', 'Assessment Item Response Scaffolding Item Flag', NULL, 'Indicates that the response is to a scaffolding problem rather than the main/assigned problem. A scaffolding item is a follow-up formative assessment item used to assess prerequisite or component skills, presented immediately after a learner gives an incorrect answer on the previous item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21955', '11', '21955', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000955', 'Assessment Item Response Hint Count', NULL, 'The total number of hints presented as the learner responded to a formative assessment item. This may include hints requested by the learner or hints automatically presented such as in an online tutoring system. Presentation of a scaffolding item is a separate response record and not counted as a hint.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21956', '11', '21956', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000956', 'Assessment Item Response Hint Included Answer', NULL, 'Indicates that one of the hints presented included the correct answer.', NULL, '1', 'A typical scenario for an online tutoring application may present a series of hints for a formative assessment item with the last hint being the correct answer. The learner must enter the correct answer before continuing. This data element is a flag that the learner was presented with the "bottom hint", which is the correct answer.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21957', '11', '21957', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000957', 'Assessment Item Response First Attempt Duration', NULL, 'The amount of time in seconds or milliseconds that a person took to give an initial response, a first attempt to answer a formative assessment item.', 'HH:MM:SS or HH:MM:SS.sss', '0', 'Formative assessments often allow learners to make multiple attempts until a correct or acceptable answer is given. In such cases it is valuable to know both the time it took for the initial response and the total time spent responding to the problem.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21958', '11', '21958', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000958', 'Assessment Item Response Start Time', NULL, 'The time of day that the assessment item was presented to the learner.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21959', '11', '21959', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000959', 'Assessment Item Response Start Date', NULL, 'The date on which the assessment item was presented to the learner.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21960', '11', '21960', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000961', 'Assessment Administration Code', NULL, 'The code given to the assessment event by a state or other authority directing overall administration.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21962', '11', '21962', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000962', 'Assessment Administration Start Date', NULL, 'The start date of the time period designated for the assessment administration.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21963', '11', '21963', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000963', 'Assessment Administration Start Time', NULL, 'The start time of the time period designated for the assessment administration.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21964', '11', '21964', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000964', 'Assessment Administration Finish Date', NULL, 'The finish date of the time period designated for the assessment administration.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21965', '11', '21965', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000965', 'Assessment Administration Finish Time', NULL, 'The finish time of the time period designated for the assessment administration.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21966', '11', '21966', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000966', 'Assessment Administration Organization Name', NULL, 'The name of the organization with overall responsibility for the assessment event.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21967', '11', '21967', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000967', 'Assessment Administration Assessment Family', NULL, 'The title of the assessment family to be administered.', 'Alphanumeric - 60 characters maximum', '0', 'A typical scenario for an assessment administration is a state-wide administration of an accountability test. For example, in Florida "Florida Comprehensive Assessment Test".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21968', '11', '21968', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000968', 'Assessment Session Security Issue', NULL, 'The description of a security issue, if any, discovered for an administration of an assessment, such as suspected cheating by a student or a teacher changing answers after a student takes the test.', 'Alphanumeric - 300 characters maximum', '0', 'For example: Suspected plagiarism ; Computer left test window ; Excessive response time ; Proctor suspected copying ; Student identity not confirmed ; No proctor present ; Student carried wireless mobile device during test ; Student terminated test early and restarted ; Excessive erasures on test form ; Response pattern identical to another student''s', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21969', '11', '21969', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000969', 'Assessment Item Response Security Issue', NULL, 'The description of security issue, if any, related to a learner''s response to an assessment item.', 'Alphanumeric - 300 characters maximum', '0', 'For example: Suspected plagiarism ; Computer left test window ; Excessive response time ; Proctor suspected copying ; Student identity not confirmed ; No proctor present ; Student carried wireless mobile device during test ; Student terminated test early and restarted ; Excessive erasures on test form ; Response pattern identical to another student''s', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21970', '11', '21970', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000970', 'Assessment Result Date Updated', NULL, 'The most recent date that the result was calculated/updated. The value should be the same as Assessment Result Date Created if the subtest has only been scored once, but may be different if the score was recalculated with a different result.', 'YYYY-MM-DD', '0', 'This flag is to handle cases when a subtest result is originally scored using incorrect parameters and then rescored, such as if the grade level attributed to the student was originally encoded incorrectly and later corrected. An operational system may also capture the history of if rescored more than once.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21971', '11', '21971', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000971', 'Assessment Result Date Created', NULL, 'The date on which the assessment result was generated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21972', '11', '21972', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000972', 'Teacher Student Data Link Exclusion Flag', NULL, 'Indicates that the student is excluded from calculation of value-added or growth attribution calculations used for teacher evaluation.', NULL, '1', 'The context for this element is the intersection of a teacher assignment to a Class/Section and a student enrollment to a Class/Section. It may be represented in a data model as a separate entity such as Teacher Student Data Link Exclusion.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21973', '11', '21973', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000973', 'Demographic Race Two or More Races', NULL, 'A person having origins in any of more than one of the racial groups.', NULL, '1', 'To support backward compatibility for systems that cannot derive this, i.e. systems that use a single race/ethnicity element rather than separate flags that can indicate one or more ethnicities.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21974', '11', '21974', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000974', 'Course Section Enrollment Status Start Date', NULL, 'The date on which the enrollment status began related to a student enrolled in an instance of a course.', 'YYYY-MM-DD', '0', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21975', '11', '21975', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000975', 'Course Section Enrollment Status End Date', NULL, 'The date on which the enrollment status ended related to a student enrolled in an instance of a course.', 'YYYY-MM-DD', '0', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait-listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list. All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21976', '11', '21976', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000976', 'Course Section Enrollment Status Type', NULL, 'The status related to a student enrollment in an instance of a course.', NULL, '1', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21977', '11', '21977', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000977', 'Assessment Administration Name', NULL, 'The name given to an assessment event.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21978', '11', '21978', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000978', 'Course Section Identifier', NULL, 'A unique number or alphanumeric code assigned by an institution, school, school system, state, or other agency or entity for a particular course-section.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21979', '11', '21979', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000979', 'Assessment Form Section Sequence Number', NULL, 'The position of the assessment section presented in the sequence of sections within an assessment form.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21980', '11', '21980', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000980', 'Assessment Form Section GUID', NULL, 'The globally unique identifier of an Assessment Form Section using a RFC 4122 compliant hexadecimal string.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21981', '11', '21981', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000981', 'Assessment GUID', NULL, 'The globally unique identifier of an Assessment using a RFC 4122 compliant hexadecimal string.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21982', '11', '21982', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000982', 'Accreditation Agency', NULL, 'The agency that accredited a program.', NULL, '1', 'Organization Name may be used with Organization Type=''Accrediting Organization'' when Accreditation Agency is set to ''Other Accreditation Agency.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21983', '11', '21983', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000983', 'Administrative Policy Type', NULL, 'A type of administrative policy used by a program.', NULL, '1', 'More than one Administrative Policy Type may apply.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21984', '11', '21984', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000984', 'Facility Licensing Status', NULL, 'The status of the facility license.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21985', '11', '21985', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000985', 'Session Start Time', NULL, 'The hour, minute and second on which a session begins.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21986', '11', '21986', 'Updated', 'Added elements to DES context to support K12 Implementation.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000986', 'Session End Time', NULL, 'The hour, minute and second on which a session ends.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21988', '11', '21988', 'Updated', 'Added elements to DES context to support K12 Implementation.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000987', 'Employed While Enrolled', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources won''t tell you anything further about employment or unemployment, only that a record was "not found" or "not matched" thus "unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21989', '11', '21989', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000988', 'Employed After Exit', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources will provide information about most of the types of jobs that students or former students will become employed in but not all. For that reason when a record is "not found" or "not matched" their employment status is "unknown" for the targeted time base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21990', '11', '21990', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000989', 'Quarterly Earnings', NULL, 'The quarterly amount paid to individuals found employed during the reference period.', 'Numeric - up to 2 digits after decimal place', '0', 'Workforce Notes: Quarterly earnings are the sum of all the reported earnings for each individual for all jobs held during the reference quarter. "Reference" quarter is the period of employment defined by the agency for its purposes either for students who are enrolled or after they exit. The amount is expressed as a numeric dollar amount. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21991', '11', '21991', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000990', 'Employment Location', NULL, 'The state or other location in which an individual is found employed.', NULL, '1', 'Workforce Notes: The most commonly available indication of where employment is located is at the state level. While federal data resources provide indicators outside of the United States, these resources will not represent the majority of the students found employed, which will be based on state UI Wage Data. There may, in some instances, be multiple states where employment is found. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence, change, and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21992', '11', '21992', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000991', 'Person Employed in Multiple Jobs Count', NULL, 'The number of jobs held by a person during the reference period.', 'Integer - greater than or equal to 0', '0', 'Workforce Notes: The data sources represent employment during a three month period. Students found employed may have multiple jobs during a reference period with no indication of their sequence. The option set provides a set of numeric ranges for these instances. Many states report these numbers, some as indications of employment stability. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence, change, and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21993', '11', '21993', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000992', 'Employment Record Reference Period Start Date', NULL, 'The year, month, and day of the first day of the employment record reference period.', 'YYYY-MM-DD', '0', 'The reference quarter is the 13-week period around which employment and earnings data are collected. For unemployment insurance purposes, quarters are defined by 13-week periods. In most state cases, a reference quarter is defined to coincide with an enrollment period (e.g., a term or semester) or as a certain number of quarters after exiting a program, such as "3d quarter after exit." In some cases, states have defined the reference quarter to represent a period where employment and earnings data are collected for all of a previous year''s exits and graduates. This is often the October- December quarter. Ultimately, the most value to be gained from the use of employment and earnings data is when data are collected continuously, both in a longitudinal sense for defined cohorts of students, as well as for an "annual set" of students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21994', '11', '21994', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000993', 'Employment Record Reference Period End Date', NULL, 'The year, month, and day of the last day of the employment record reference period.', 'YYYY-MM-DD', '0', 'The reference quarter is the 13-week period around which employment and earnings data are collected. For unemployment insurance purposes, quarters are defined by 13-week periods. In most state cases, a reference quarter is defined to coincide with an enrollment period (e.g., a term or semester) or as a certain number of quarters after exiting a program, such as "3d quarter after exit." In some cases, states have defined the reference quarter to represent a period where employment and earnings data are collected for all of a previous year''s exits and graduates. This is often the October - December quarter. Ultimately, the most value to be gained from the use of employment and earnings data is when data are collected continuously, both in a longitudinal sense for defined cohorts of students, as well as for an "annual set" of students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21995', '11', '21995', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000994', 'Employment Record Administrative Data Source', NULL, 'Administrative data source of information used to collect employment and earnings-related data.', NULL, '1', 'For over 25 years, states have relied upon administrative data sources to document the employment and earnings of students and former students. The sources listed are complementary, rather than alternatives. That is, State UI records only include information for employees within a state''s boundaries. The WRIS II system can provide employment data for other states (from their UI wage record systems). State UI records do not include information about federal or postal service employment, nor do they contain information about military enlistments. FEDES provides access to that information. Ideally, an entity will use UI, WRIS (other state UI), and FEDES together.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21996', '11', '21996', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000997', 'Workforce Program Type', NULL, 'The type of workforce and employment development program that an individual is participating in.', NULL, '1', 'A reference period for identifying program participation during or after enrollment in secondary education, postsecondary education, or adult education will have to be defined by the agency in collaboration with other agency partners. At this point this element is intended only to indicate program participation and does not delve into programmatic details, persistence, or completion.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22000', '11', '22000', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000998', 'Workforce Program Participation Start Date', NULL, 'The year, month, and day of the first day of the reference period during which data are matched between education and workforce data sources.', 'YYYY-MM-DD', '0', 'Agencies define the time period for this collection around an enrollment period or exit date with a to-be defined lag period following an exit event. Enrollment periods are defined in CEDS for K12 and postsecondary students. The term "exit" includes leaving education for any reason including dropping out or graduating with or without a credential. Exiting conditions are defined in CEDS for K12 and postsecondary students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22001', '11', '22001', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000999', 'Workforce Program Participation End Date', NULL, 'The year, month, and day of the last day of the reference period during which data are matched between education and workforce data sources.', 'YYYY-MM-DD', '0', 'Agencies define the time period for this collection around an enrollment period or exit date with a to-be defined lag period following an exit event. Enrollment periods are defined in CEDS for K12 and postsecondary students. The term "exit" includes leaving education for any reason including dropping out or graduating with or without a credential. Exiting conditions are defined in CEDS for K12 and postsecondary students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22002', '11', '22002', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001000', 'Assessment Early Learning Developmental Domain', NULL, 'Developmental domains related to early learning and used for assessing a child''s kindergarten readiness.', NULL, '1', 'Used by states in reporting Kindergarten Entry Assessment (KEA) results as defined for some federal grant programs.

For each domain used by the state, the state would provide:
- The total number of children who participated in the KEA for each domain
- The number of children who participated in the KEA for each domain AND was at or above what the state defines as “ready” for kindergarten for that domain.

The counts may be calculated using unit-level data defined for Assessment Subtest (scoring method and what is being measured, e.g. the Domain), related Assessment Performance Levels (e.g. "Ready"), related to each student Assessment Result.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22003', '11', '22003', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001001', 'Special Needs Policy', NULL, 'Program ensures that policies are in place for Individualized Education Programs (IEPs) or Individual Family Service Plans (IFSPs) to meet the child''s unique needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22004', '11', '22004', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001002', 'Learning Resource Educational Use', NULL, 'The purpose of the work in the context of education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22005', '11', '22005', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001003', 'Assessment Participant Session Delivery Device Details', NULL, 'The details about the device or platform by with which the assessment was delivered to the learner.', 'Alphanumeric - 300 characters maximum', '0', 'For example web browser version and screen resolution.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22006', '11', '22006', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001004', 'Assessment Personal Needs Profile Assigned Support', NULL, 'Defines whether or not the individual needs the kind of support defined by the entity.', NULL, '1', 'This flag may apply to any need within the Assessment Personal Need Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22007', '11', '22007', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001005', 'Assessment Personal Needs Profile Activate by Default', NULL, 'Determines if the alternative accessible content is rendered as the default content for the learner.', NULL, '1', 'This flag may apply to any need within the Assessment Personal Need Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22008', '11', '22008', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001006', 'Assessment Provider', NULL, 'Identifies the provider or publisher of the assessment.', 'Alphanumeric - 30 characters maximum', '0', 'AIF property', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22009', '11', '22009', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001007', 'Assessment Result Preliminary Indicator', NULL, 'If this score is preliminary, then this attribute value should be set. Preliminary scores may be provided for early use by the assessment program or user while final scoring is occurring.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22010', '11', '22010', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001008', 'Diagnostic Statement Source', NULL, 'Identifies the source of the Diagnostic Statement based on a scored/evaluated portion of an assessment.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22011', '11', '22011', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001009', 'Assessment Result Number of Responses', NULL, 'The number of responses that are included with the Student Score Set. Responses are those items that were attempted (partially or fully answered) by the student and not necessarily the number of items in the assessment (which can be determined from the assessment object).', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22012', '11', '22012', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001010', 'Assessment Form Subtest Item Weight Correct', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item is correct or partially correct. Item weight of 1 indicates the full item score is used. A weight of .5 would indicate the item only contributes one half of the item score to the subtest. A weight of 0 indicates the item does not affect the sub test score.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22013', '11', '22013', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001012', 'Assessment Form Subtest Item Weight Incorrect', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item is attempted and incorrect. Item weight should be a negative value if the item subtracts from the score if missed.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22014', '11', '22014', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001013', 'Assessment Form Subtest Item Weight Not Attempted', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item has not been attempted by the student. Item weight should be a negative value if the item subtracts from the score if not attempted.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22015', '11', '22015', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001014', 'Assessment Subtest Identifier Type', NULL, 'The type of identifier that is provided for a Subtest.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22016', '11', '22016', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001015', 'Assessment Registration Days of Instruction', NULL, 'The number of days of instruction the student has taken prior to testing.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22017', '11', '22017', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001016', 'Assessment Registration Retest Indicator', NULL, 'Indicates if this registration is for a retest (retake). Retest can occur if a student failed a prior attempt and is eligible to retake. Other retest scenarios also can occur.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22018', '11', '22018', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001017', 'Assessment Registration Creation Date', NULL, 'Date/time assignment is made.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22019', '11', '22019', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001018', 'Assessment Session Type', NULL, 'The type of session that is scheduled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22020', '11', '22020', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001019', 'Assessment Session Scheduled Start Date Time', NULL, 'Date and time the assessment is scheduled to begin.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22021', '11', '22021', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001020', 'Assessment Session Scheduled End Date Time', NULL, 'Date and time the assessment is scheduled to end.', 'YYYY-MM-DDTHH:MM:SS', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22022', '11', '22022', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001021', 'Assessment Session Actual Start Date Time', NULL, 'Date and time the assessment actually began.', 'YYYY-MM-DDTHH:MM:SS', '0', 'When associated to an assessment session this is the actual start date and time. When associated to an individual taking an assessment, this is the actual date and time when the individual started.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22023', '11', '22023', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001022', 'Assessment Session Actual End Date Time', NULL, 'Date and time the assessment actually ended.', 'YYYY-MM-DDTHH:MM:SS', '0', 'When associated to an assessment session this is the actual end date and time. When associated to an individual taking an assessment, this is the actual date and time when the individual finished.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22024', '11', '22024', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001023', 'Assessment Need Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile a preference for the language of the user interface.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22025', '11', '22025', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001024', 'Assessment Need Hazard Type', NULL, 'Defines as part of an Assessment Personal Needs Profile a characteristic of a digital resource that may be specified as being dangerous to a user.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22026', '11', '22026', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001025', 'Assessment Need Support Tool Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the electronic tool associated with a resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22027', '11', '22027', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001026', 'Assessment Need Usage Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the rating for the collection of Access for All (AfA) needs and preferences.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22028', '11', '22028', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001027', 'Assessment Need Link Indication Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the characteristics of presentation for a hyperlink when using a screen reader.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22029', '11', '22029', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001028', 'Assessment Need Speech Rate', NULL, 'Defines as part of an Assessment Personal Needs Profile the rate of speech of a speech synthesizer.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22030', '11', '22030', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001087', 'Assessment Need Pitch', NULL, 'Defines as part of an Assessment Personal Needs Profile the pitch of a speech synthesizer.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22031', '11', '22031', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001029', 'Assessment Need Volume', NULL, 'Defines as part of an Assessment Personal Needs Profile the volume of a speech synthesizer.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22032', '11', '22032', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001030', 'Assessment Need Invert Color Choice', NULL, 'Defines as part of an Assessment Personal Needs Profile the Access for All (AfA) preference to invert the foreground and background Colors.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22033', '11', '22033', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001031', 'Assessment Need Magnification', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred magnification of the screen as a factor of a screen’s original size.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22034', '11', '22034', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001032', 'Assessment Need Braille Grade Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the grade of Braille to use when using a Braille display.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22035', '11', '22035', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001033', 'Assessment Need Number of Braille Dots Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the number of dots in a Braille cell.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22036', '11', '22036', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001034', 'Assessment Need Number of Braille Cells', NULL, 'Defines as part of an Assessment Personal Needs Profile the number of active Braille cells in a Braille display.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22037', '11', '22037', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001035', 'Assessment Need Braille Mark Type', NULL, 'Defines as part of an Assessment Personal Needs Profile what textual properties to mark when using a Braille display.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22038', '11', '22038', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001036', 'Assessment Need Braille Dot Pressure', NULL, 'Defines as part of an Assessment Personal Needs Profile the resistance pressure of Braille display pins.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22040', '11', '22040', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001037', 'Assessment Need Braille Status Cell Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred presence or location of a Braille display status cell.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22041', '11', '22041', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001038', 'Assessment Need Item Translation Display Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default language for the displayed translation.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22042', '11', '22042', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001039', 'Assessment Need Keyword Translation Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default language for the keyword translation.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22043', '11', '22043', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001670', 'IPEDS Finance GASB Financial Position Category', NULL, 'IPEDS financial position classification used by degree-granting public institutions using GASB Reporting Standards for reporting the assets, liabilities, and net position in a manner consistent with the Statement of Net Position in the General Purpose Financial Statements (GPFS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22651', '11', '22651', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001671', 'IPEDS Finance FASB Financial Position Category', NULL, 'IPEDS financial position classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting the assets, liabilities, and net assets in a manner consistent with the Statement of Financial Position in the General Purpose Financial Statements (GPFS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22652', '11', '22652', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001672', 'IPEDS Finance GASB Revenue Category', NULL, 'IPEDS revenue classification used by degree-granting public institutions using GASB Reporting Standards for reporting revenues and other additions by source including all operating revenues, nonoperating revenues, and other additions for the reporting period. This includes unrestricted and restricted revenues and additions, whether expendable or nonexpendable.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22653', '11', '22653', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001673', 'IPEDS Finance FASB Revenue Category', NULL, 'IPEDS revenue classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues and investment return by source in a manner consistent with the definitions from the National Association of College and University Business Officers (NACUBO) Financial Accounting and Reporting Manual for Higher Education (FARM).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22654', '11', '22654', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001674', 'IPEDS Finance FASB Revenue Restriction Category', NULL, 'IPEDS revenue restriction classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues by restriction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22655', '11', '22655', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001675', 'IPEDS Finance GASB Functional Expense Category', NULL, 'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', NULL, '1', '(NACUBO FARM, section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22656', '11', '22656', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001676', 'IPEDS Finance Natural Expense Category', NULL, 'A natural expense classification is a method of grouping expenses according to the type of costs that are incurred. The classifications tell what was purchased rather than why an expense was incurred.', NULL, '1', '(NACUBO FARM section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22657', '11', '22657', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001677', 'IPEDS Finance GASB Scholarships and Fellowships Revenue Category', NULL, 'IPEDS revenue category used by degree-granting public institutions using GASB Reporting Standards for the reporting of resources received for supporting student scholarships and fellowships.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22658', '11', '22658', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001678', 'IPEDS Finance FASB Scholarships and Fellowships Revenue Category', NULL, 'IPEDS revenue category used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for the reporting of resources received for supporting student grant aid.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22659', '11', '22659', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001679', 'IPEDS Finance Intercollegiate Athletics Expenses', NULL, 'Identifies the functional expense category where the institution allocates its intercollegiate athletics expenses.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22660', '11', '22660', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001680', 'IPEDS Finance FASB Pell Grant Transactions', NULL, 'Method of reporting Pell Grants in IPEDS by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22661', '11', '22661', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001681', 'Individualized Program Service Plan Progress Report Schedule', NULL, 'Frequency by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22662', '11', '22662', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001682', 'IEP Transfer of Rights Statement', NULL, 'Beginning not later than one year before the child reaches the age of majority under State law, the IEP must include a statement that the child has been informed of the child''s rights under Part B of the Individuals with Disabilities Education Act, if any, that will transfer to the child on reaching the age of majority under §300.520.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22663', '11', '22663', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001683', 'Individualized Program Service Plan End Date', NULL, 'The year, month and day on which the status of the service plan for a child effectively ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22664', '11', '22664', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001684', 'Individualized Program Service Plan Meeting Date', NULL, 'The date on which a child''s service plan meeting is held.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22665', '11', '22665', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001685', 'Individualized Program Accommodation Description', NULL, 'Description of a specific accommodation or change to standards or practices that will be made.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22666', '11', '22666', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001686', 'Individualized Program Accommodation Applicability', NULL, 'Circumstances in which the accommodation or change to standards or practices will be applied.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22667', '11', '22667', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001687', 'IEP Alternative Assessment Rationale', NULL, 'A statement of why— (A) The child cannot participate in the regular assessment; and (B) The particular alternate assessment selected is appropriate for the child.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22668', '11', '22668', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001688', 'Individualized Program Service Plan Amendment Reason Description', NULL, 'Description of the reason changes were made to the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22669', '11', '22669', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001689', 'Individualized Program Service Plan Amendment Description', NULL, 'Description of the changes made to the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22670', '11', '22670', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001690', 'Goal Current Performance Description', NULL, 'Current performance explanation related to the annual goal or short-term objectives.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22671', '11', '22671', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001691', 'Goal Measurement Criterion Accuracy Percent', NULL, 'The percent of correct results that will be considered to represent successful achievement of a goal.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22672', '11', '22672', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001692', 'Goal Measurement Criterion Attempts Count', NULL, 'The number of attempts representing a completed trial for assessing achievement of a goal.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22673', '11', '22673', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001693', 'Goal Measurement Criterion Metric', NULL, 'A metric used for evaluating achievement of a goal.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22674', '11', '22674', 'Updated', 'Added elements to DES context to support K12 Implementation.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001694', 'Goal Measurement Criterion Success Count', NULL, 'The number of correct results that will be considered to represent successful achievement of a goal.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22675', '11', '22675', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001695', 'Goal Measurement Description', NULL, 'The procedures and/or instruments that will be used to measure achievement of a goal or short-term objective.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22676', '11', '22676', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001696', 'Goal Measurement Schedule', NULL, 'Frequency of evaluation of progress toward meeting the goal or short-term objective.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22677', '11', '22677', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001697', 'Goal Measurement Type', NULL, 'Type of evidence appropriate for assessing achievement of a goal or short-term objective.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22678', '11', '22678', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001698', 'IEP Goal Type', NULL, 'Legal category for an IEP annual goal or short-term objectives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22679', '11', '22679', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001699', 'Individualized Program Service Plan Progress Report Date', NULL, 'The date parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22680', '11', '22680', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001700', 'Individualized Program Service Plan Progress Report Description', NULL, 'A description of the progress report used to notify parents of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22681', '11', '22681', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001701', 'Individualized Program Service Plan Progress Report Type', NULL, 'A method by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22682', '11', '22682', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001702', 'Goal Status Type', NULL, 'Status toward achievement of the annual goal or short-term objectives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22683', '11', '22683', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001703', 'Goal Status', NULL, 'Description of status toward achievement of the annual goal or short-term objectives.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22684', '11', '22684', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001704', 'IDEA Placement Rationale', NULL, 'The rationale for the placement decision and if applicable, an explanation of the extent, if any, to which the child will not participate with nondisabled children in the regular class and in the activities described in paragraph (a)(4) of CFR. §300.320.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22685', '11', '22685', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001705', 'IEP Present Level Academic Description', NULL, 'How the child''s disability affects the child''s academic achievement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22686', '11', '22686', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001706', 'IEP Present Level Functional Description', NULL, 'How the child''s disability affects the child''s functional performance.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22687', '11', '22687', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001707', 'IEP Present Level General Education Description', NULL, 'How the child''s disability affects the child''s involvement and progress in the general education curriculum.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22688', '11', '22688', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001708', 'IEP Present Level Preschool Description', NULL, 'For preschool children, as appropriate, how the disability affects the child''s participation in appropriate activities.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22689', '11', '22689', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001709', 'IEP Present Level Student Strengths Description', NULL, 'Explanation of perceived strengths and abilities of the student.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22690', '11', '22690', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001710', 'IEP Present Level Parent Concern Description', NULL, 'Parent’s explanation of their interest in or concerns about the student’s participation in special education.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22691', '11', '22691', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001711', 'IEP Present Level Student Concern Description', NULL, 'Student’s explanation of his or her interest in or concerns about participation in special education.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22692', '11', '22692', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001712', 'Declined Services Date', NULL, 'The date recommended services were declined.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22693', '11', '22693', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001713', 'Frequency Unit', NULL, 'The unit of time by which a cycle is defined.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22694', '11', '22694', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001714', 'Frequency Instances Per Cycle', NULL, 'The number of recurrences within a cycle.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22695', '11', '22695', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001715', 'Frequency Length', NULL, 'The number of units within a repeating cycle. Used with Frequency and Frequency Units elements to describe the occurrence of repeating events such as student services delivered 3 times a week for 16 weeks.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22696', '11', '22696', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001716', 'Duration Length in Minutes', NULL, 'The number of minutes in an instance.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22697', '11', '22697', 'Updated', 'Added elements to DES context to support K12 Implementation.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001717', 'Service Extends Outside School Year', NULL, 'Determination if this service continues outside school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22698', '11', '22698', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001718', 'Service Setting Description', NULL, 'Description of the setting in which the services are delivered.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22699', '11', '22699', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001719', 'IEP Authorization Document Type', NULL, 'Type of Individualized Education Plan document authorized.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22700', '11', '22700', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001720', 'Authorizer Type', NULL, 'Type of person who authorized the decision or document.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22701', '11', '22701', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001721', 'Authorization Acceptance Indicator', NULL, 'Indicates authorizer agreement to a document or plan, such as plan for delivery of student services, program, or improvement plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22702', '11', '22702', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001722', 'Authorization Decision Explanation', NULL, 'Authorizer''s explanation regarding the authorization decision.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22703', '11', '22703', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001723', 'IEP Authorization Rejected Portion Description', NULL, 'Portion the authorizer does not want executed.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22704', '11', '22704', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001724', 'IEP Authorization Rejected Portion Explanation', NULL, 'Authorizer''s explanation for rejected portions.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22705', '11', '22705', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001725', 'Authorization Date', NULL, 'The date the authorization occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22706', '11', '22706', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001726', 'Consent to Evaluation Indicator', NULL, 'Indication parent agreed to evaluate student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22707', '11', '22707', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001727', 'Consent to Evaluation Date', NULL, 'The date the consent to evaluation occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22708', '11', '22708', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001728', 'IEP Eligibility Evaluation Type', NULL, 'Purpose within the IEP lifecycle for which the eligibility evaluation is conducted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22709', '11', '22709', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001729', 'IDEA Eligibility Evaluation Category', NULL, 'Category of evaluation used for IDEA eligibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22710', '11', '22710', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001730', 'Eligibility Evaluation Description', NULL, 'Description of evaluation procedure and result used for determining eligibility.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22711', '11', '22711', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001731', 'Eligibility Evaluation Date', NULL, 'The date when the evaluation to determine eligibility was conducted.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22712', '11', '22712', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001732', 'Eligibility Parent Observations Explanation', NULL, 'Explanation of parent''s observations of student’s characteristics and history used for determining eligibility.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22713', '11', '22713', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001733', 'IDEA Disability Type', NULL, 'A category of disability that describes a person’s impairment defined by the Individuals with Disabilities Education Act.', NULL, '1', 'Option set based on IDEA disability categories. Multiple disability condition could be selected. Refer to Primary Disability Type for a single disability condition based on EDFacts.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22714', '11', '22714', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001734', 'Credential Advanced Standing Description', NULL, 'A description of a credential that reduced the time or cost of attaining this credential.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22715', '11', '22715', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001735', 'Credential Advanced Standing URL', NULL, 'A URL that resolves to information about a credential that reduced the time or cost of attaining this credential.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22716', '11', '22716', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001736', 'Credential Definition Alternate Name', 'Credential Alternate Name', 'An alias for the credential, which may include acronyms, alpha-numeric notations, and other forms of name abbreviations in common use such as PhD, MA, and BA.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22717', '11', '22717', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001737', 'Credential Award Approver Name', NULL, 'Pronouncement of a favorable judgment by the agent being referenced.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22718', '11', '22718', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001738', 'Credential Definition Assessment Method Type', 'Credential Assessment Method Type', 'The method used to conduct the assessment being referenced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22719', '11', '22719', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001739', 'Credential Definition Identifier System', 'Credential Identifier System', 'A coding scheme that is used for identification and record-keeping purposes by a credentialing organization to refer to a qualification, achievement, personal or organizational quality, or aspect of an identity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22720', '11', '22720', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001740', 'Credential Definition Status Type', 'Credential Status Type', 'The status of the credential offered by a credentialing organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22721', '11', '22721', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001741', 'Credential Definition Estimated Duration', 'Credential Estimated Duration', 'The estimated amount of time in minutes it will take to earn the credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22722', '11', '22722', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001742', 'Credential Definition NAICS Industry Type', 'Credential NAICS Industry Type', 'The North American Industry Classification System (NAICS) class identifier for an industry associated with the credential.', 'Integer - exactly 6 digits', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22723', '11', '22723', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001743', 'Credential Definition Jurisdiction Region', 'Credential Jurisdiction Region', 'The geo-political region in which the credential is applicable.', 'GeoJSON', '0', 'http://geojson.org/geojson-spec.html#polygon', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22724', '11', '22724', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001744', 'Credential Definition Jurisdiction Region Exception', 'Credential Jurisdiction Region Exception', 'A geo-political region in which the credential does not apply.', 'GeoJSON', '0', 'http://geojson.org/geojson-spec.html#polygon', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22725', '11', '22725', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001745', 'Credential Definition Keywords', 'Credential Keywords', 'Keywords or key phrases describing aspects of a credential considered useful for its discovery.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22726', '11', '22726', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001746', 'Credential Definition Maximum Duration', 'Credential Maximum Duration', 'The maximum amount of time in minutes it will take to earn the described credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22727', '11', '22727', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001747', 'Credential Definition Minimum Age', 'Credential Minimum Age', 'The minimum allowed age in years at which a person is eligible for the credential.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22728', '11', '22728', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001748', 'Credential Definition Minimum Duration', 'Credential Minimum Duration', 'The minimum amount of time in minutes it will take to earn the described credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22729', '11', '22729', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001749', 'Credential Definition Intended Purpose Type', 'Credential Intended Purpose Type', 'The intended type of application of the credential by the holder.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22730', '11', '22730', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001750', 'Organization Region GeoJSON', NULL, 'The geo-political area of the organization''s facility, building, or site.', 'GeoJSON', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22731', '11', '22731', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001751', 'Credential Revoked Indicator', NULL, 'Indicates whether the credential has been revoked by the credential provider.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22732', '11', '22732', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001752', 'Credential Definition Validation Method Description', 'Credential Validation Method Description', 'Description of the methods used to evaluate the validity and reliability of a credential earned by a person.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22733', '11', '22733', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001753', 'Credential Definition Verification Type', 'Credential Verification Type', 'A resource describing the means by which someone can verify whether a credential has been attained by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22734', '11', '22734', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001754', 'Credential Definition Version', 'Credential Version', 'An alphanumeric identifier of a version of the credential being described that is unique within the organizational context.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22735', '11', '22735', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001755', 'CTDL Organization Type', NULL, 'The type of credentialing organization or entity as defined by the Credential Transparency Description Language.', NULL, '1', 'Includes free-standing medical, law or other first-professional schools, schools that offer postbaccalaureate certificates only, those that offer graduate programs only, etc.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22736', '11', '22736', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001756', 'O*NET-SOC Occupation Type', NULL, 'The O*NET-SOC taxonomy defines the set of occupations across the world of work based on the Standard Occupational Classification.', '##-####.##', '0', 'https://www.onetcenter.org/taxonomy.html', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22737', '11', '22737', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001757', 'Competency Definition Type URL', 'Competency Item Type URL', 'The class of statement in the structure of statements in the Competency Framework according to a controlled vocabulary, specified as a URI referencing a controlled vocabulary.', 'Alphanumeric - 512 characters maximum', '0', 'This property points to a class, not to instances of that class. For example, where two competencies in a competency framework have been identified respectively as \"Strand: Renaissance\" and \"Strand: Social history\", the competency category for both these competencies is \"Strand\"."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22738', '11', '22738', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001758', 'Submission Date', NULL, 'The month, day, and year on which a report is submitted.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22739', '11', '22739', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001759', 'Report Date', NULL, 'The month, day, and year on which a report was produced.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22740', '11', '22740', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001760', 'Count Date', NULL, 'The effective month, day, and year on which the data was counted.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22741', '11', '22741', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001761', 'State Full Academic Year', NULL, 'An indication of whether a student was in membership in the state education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22742', '11', '22742', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001762', 'LEA Full Academic Year', NULL, 'An indication of whether a student was in membership in the LEA education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22743', '11', '22743', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001763', 'School Full Academic Year', NULL, 'An indication of whether a student was in membership in the school education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22744', '11', '22744', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001764', 'Building Area', NULL, 'The sum of the areas at each floor level included within the principal outside faces of exterior walls, including roofed areas with finished floors that may not have exterior walls, but are connected to the main building. This sum should include all stories or areas having floor surfaces with clear standing head room (6.5 feet or 1.98 meters) but omit architectural setbacks or projections.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22745', '11', '22745', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001765', 'Significant Cognitive Disability Indicator', NULL, 'Student has an existing IDEA disability with cognitive impairments which may prevent him/her from attaining grade-level achievement standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22746', '11', '22746', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001766', 'Virtual School Status', NULL, 'An indication of the extent to which a school offers instruction in which students and teachers are separated by time and/or location, and interaction occurs via computers and/or telecommunications technologies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22747', '11', '22747', 'Updated', 'Added elements to DES contexts to support Early Learning needs. Changed definition of element to support other domains.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001767', 'National School Lunch Program Status', NULL, 'The classification of participation by a school in the National School Lunch Program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22748', '11', '22748', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001768', 'Facility Acquisition Date', NULL, 'The date the property/facility was acquired.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22749', '11', '22749', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001769', 'Facility Addition Year', NULL, 'The year the construction on the addition was completed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22750', '11', '22750', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001770', 'Facility Building Permanency', NULL, 'An indication of whether the building is built for permanent use in the same location or is relocatable.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22751', '11', '22751', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001771', 'Facility Construction Year', NULL, 'The year the building was first constructed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22752', '11', '22752', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001772', 'Building Historic Status', NULL, 'An indication of whether or not a building is eligible to be or has been declared a landmark or historic building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22753', '11', '22753', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001773', 'Facility Site Area', NULL, 'The total number of acres in a continuous piece of land, to the nearest tenth, including undeveloped areas as well as areas occupied by buildings, walks, drives, parking facilities, and other improvements.', 'Numeric - up to 1 digit after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22754', '11', '22754', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001774', 'Facility Block Number Area', 'BNA', 'The informal description of location sometimes used in rural areas, for example, "from the highway to the railroad tracks."', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22755', '11', '22755', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001775', 'Building Addition Description', NULL, 'A description of the permanent structure added to the original building.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22756', '11', '22756', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001776', 'Building Addition Code', NULL, 'A unique number or alphanumeric code assigned to a building addition by a school, school system, state, or other agency or entity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22757', '11', '22757', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001777', 'Building Primary Use Type', NULL, 'The primary use type of the building in which a school is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22758', '11', '22758', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001778', 'Campus Status', NULL, 'The generalized use or control of a campus, independent of program type.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22759', '11', '22759', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001779', 'Facility Census Tract', NULL, 'The census tract number of the school site.', 'Integer - exactly 11 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22760', '11', '22760', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001780', 'Facility Construction Date', NULL, 'The month, day, and year on which construction of a building, addition, or improvement was completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22761', '11', '22761', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001781', 'Facility Construction Date Type', NULL, 'Designation of the nature of the construction completion date.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22762', '11', '22762', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001782', 'Facility Construction Material Type', NULL, 'The primary material used for the construction of a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22763', '11', '22763', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001783', 'Facility Expected Life', NULL, 'The time, in years, of the expected useful life of a facility for the purposes of depreciation.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22764', '11', '22764', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001784', 'Facility Replacement Value', NULL, 'The estimated cost of replacing a facility using current per square foot estimates of total project costs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22765', '11', '22765', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001785', 'Building Number of Stories', NULL, 'The number of stories in a building, excluding the basement if its ceiling is less than three feet above ground level.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22766', '11', '22766', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001786', 'Facility Site Identifier', NULL, 'The lot and square number, or equivalent unique municipal number identification, of a parcel of land.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22767', '11', '22767', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001787', 'Facility Site Improvement Location Type', NULL, 'The type of location of the designed and constructed improvements made to a site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22768', '11', '22768', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001788', 'Building Year Built', NULL, 'The year a building was constructed, as indicated by cornerstone or official government records.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22769', '11', '22769', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001789', 'Building Year of Last Modernization', NULL, 'The most recent year that a comprehensive upgrade of ALL major building systems and components was completed, such that it functions as a modern building, as measured by a facility condition index not greater than 15%.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22770', '11', '22770', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001790', 'Building Air Distribution System Type', NULL, 'The primary means by which air is circulated, freshened, and exhausted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22771', '11', '22771', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001791', 'Building Communications Management Component System Type', NULL, 'The type of system, interface, and management components for carrying voice, video, and data throughout a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22772', '11', '22772', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001792', 'Facility Compliance Status', NULL, 'An indication of whether the school, building, site, system, component, equipment, vehicle, or fixture conforms to the requirements or standards specified in federal, state, or local standards or codes or other officially required guidelines or regulations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22773', '11', '22773', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001793', 'Facility System or Component Condition', NULL, 'The rating of the system or component functions under the demands of its regular operation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22774', '11', '22774', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001794', 'Building Cooling Generation System Type', NULL, 'The type of mechanical systems and building designs used for cooling.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22775', '11', '22775', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001795', 'Building Electrical System Type', NULL, 'The components and system required to distribute electricity throughout the building or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22776', '11', '22776', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001796', 'Facility Applicable Federal Mandate Type', NULL, 'The particular federal law, regulation, or standard that pertains to a school facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22777', '11', '22777', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001797', 'Facility Federal Mandate Interest Type', NULL, 'The area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22778', '11', '22778', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001798', 'Building Fire Protection System Type', NULL, 'The type of system that protects the facility against fire.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22779', '11', '22779', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001799', 'Building Heating Generation System Type', NULL, 'The method by which the heat is distributed and delivered throughout the room(s) or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22780', '11', '22780', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001800', 'Building HVAC System Type', NULL, 'The building service system that provides for heating, ventilation and air-conditioning.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22781', '11', '22781', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001801', 'Building Institutional Equipment Description', NULL, 'Equipment that is installed for use in support of instructional program such as kilns for art, planetarium equipment for astronomy, fitness equipment for physical education.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22782', '11', '22782', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001802', 'Building Mechanical Conveying System Type', NULL, 'Mechanical means for moving people and equipment within buildings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22783', '11', '22783', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001803', 'Building Plumbing System Type', NULL, 'The component of an on-site system for supplying, eliminating, and treating water.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22784', '11', '22784', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001804', 'Building Security System Type', NULL, 'The type of system that protects the facility from intrusion.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22785', '11', '22785', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001805', 'Facility State or Local Mandate Interest Type', NULL, 'The area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22786', '11', '22786', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001806', 'Facility State or Local Mandate Name', NULL, 'The specific law, rule, regulation, or standard of a state or local government that pertains to public school facilities.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22787', '11', '22787', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001807', 'Building Technology Wiring System Type', NULL, 'The means through which voice, video, audio, and data information are conveyed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22788', '11', '22788', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001808', 'Facility Location of Hazardous Materials', NULL, 'The location at which the identified hazardous material is found.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22789', '11', '22789', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001809', 'Building Mechanical System Type', NULL, 'The major manufactured systems required to operate a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22790', '11', '22790', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001810', 'Facility Nearby Environmental Hazard Description', NULL, 'Description of any type of environmental hazards within range of the facility that has the potential to seriously affect the health, safety and operation of school facilities and their occupants.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22791', '11', '22791', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001811', 'Building System Type', NULL, 'The type of system that is installed in the building or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22792', '11', '22792', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001812', 'Building Vertical Transportation System Type', NULL, 'The type of system used to convey persons or freight between floors.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22793', '11', '22793', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001813', 'Building Administrative Space Type', NULL, 'The space designed primarily for conducting administrative and business functions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22794', '11', '22794', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001814', 'Building Art Specialty Space Type', NULL, 'The space designed to support the teaching and learning of 2 dimensional or 3 dimensional visual arts.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22795', '11', '22795', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001815', 'Building Basic Classroom Design Type', NULL, 'A classroom designed for instruction of a particular age group, but not a specific subject.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22796', '11', '22796', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001816', 'Building Design Type', NULL, 'The primary design or purpose of a building, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22797', '11', '22797', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001817', 'Building Career-Technical Education Space Type', NULL, 'The classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22798', '11', '22798', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001818', 'Building Circulation Space Type', NULL, 'A space designed to enable people to move within the building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22799', '11', '22799', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001819', 'Building Environmental or Energy Performance Rating Category', NULL, 'The primary groupings that rating organizations use to evaluate environmental sustainability and energy use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22800', '11', '22800', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001820', 'Facility Furnishings Type', NULL, 'Moveable assets that are provided so the building or interior assets can be utilized by occupants for their intended purposes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22801', '11', '22801', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001821', 'Building Food Service Space Type', NULL, 'The space located, designed, furnished and equipped to support meal programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22802', '11', '22802', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001822', 'Building Indoor Athletic or Physical Education Space Type', NULL, 'The indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22803', '11', '22803', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001823', 'Building Library or Media Center Specialty Space Type', NULL, 'The primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22804', '11', '22804', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001824', 'Building Operations or Maintenance Space Type', NULL, 'The area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22805', '11', '22805', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001825', 'Building Outdoor Athletic or Physical Education Space Type', NULL, 'The outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22806', '11', '22806', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001826', 'Building Outdoor or Non-athletic Space Type', NULL, 'The outdoor space located, designed, furnished, and equipped primarily for recreation, play and outdoor environmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22807', '11', '22807', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001827', 'Building Performing Arts Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped for instruction and support of music and drama curricula and productions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22808', '11', '22808', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001828', 'Building School Design Type', NULL, 'The physical layout and character of a school facility, as determined by age groups served and educational programs provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22809', '11', '22809', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001829', 'Building Science Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped for instruction and experimentation in science.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22810', '11', '22810', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001830', 'Facility Site Outdoor Area Type', NULL, 'The designated constructed outdoor area on a public school site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22811', '11', '22811', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001831', 'Building Space Design Type', NULL, 'The primary design or purpose of a space, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22812', '11', '22812', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001832', 'Building Special Education Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22813', '11', '22813', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001833', 'Building Student Support Space Type', NULL, 'The space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22814', '11', '22814', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001834', 'Building Architect Name', NULL, 'The name of the architect of record for the building.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22815', '11', '22815', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001835', 'Building Architectural Firm Name', NULL, 'The name of the architectural firm responsible for the building design.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22816', '11', '22816', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001836', 'Building Assembly Space Type', NULL, 'An area designed primarily for theater productions, assemblies, and other large gatherings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22817', '11', '22817', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001837', 'Facility Compliance Determination Date', NULL, 'The month, day, and year that the school, building, site, system, component, equipment, or fixture compliance status was determined.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22818', '11', '22818', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001838', 'Facility Compliance Name', NULL, 'The name of the inspection or process that indicates conformity to the requirements or standards specified in federal, state, or local standards or codes.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22819', '11', '22819', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001839', 'Facility Component Deficiency Description', NULL, 'A description of the component, system, or finish that needs replacement, repair, or maintenance to perform at an optimal level.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22820', '11', '22820', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001840', 'Facility Component Identification Code', NULL, 'A unique number or alphanumeric code assigned to a component by a school, school system, state, or other agency or entity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22821', '11', '22821', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001841', 'Facility Estimated Cost to Eliminate Deferred Maintenance', NULL, 'The estimated cost to bring systems, components, finishes, fixtures, or equipment to a state of good repair.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22822', '11', '22822', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001842', 'Facility Hazardous Condition Expected Remediation Date', NULL, 'The month, day, and year by which a hazardous condition of a site or building is expected to be remediated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22823', '11', '22823', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001843', 'Building Full Service Kitchen Type', NULL, 'The type of kitchen housed in the facility as defined by whether it prepares food to be served onsite and/or at additional locations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22824', '11', '22824', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001844', 'Hazardous Material or Condition Description', NULL, 'A description of the seriousness a threat or hazardous material poses.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22825', '11', '22825', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001845', 'Hazardous Material or Condition Testing Date', NULL, 'The month, day, and year that the site or building is tested for a specific hazardous material.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22826', '11', '22826', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001846', 'Facility Inspection Score Result Description', NULL, 'The description of a meaningful raw score of statistical expression of the performance on an inspection.', 'Alphanumeric - 35 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22827', '11', '22827', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001847', 'Facility Inspection Violation Description', NULL, 'A description of the standard violation(s) found in the inspection.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22828', '11', '22828', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001848', 'Installation Date', NULL, 'The year in which the system, component, equipment, or fixture was originally installed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22829', '11', '22829', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001849', 'Life-cycle Cost', NULL, 'The total cost of acquiring, owning, operating, and disposing of a building, facility, or piece of equipment over its useful life.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22830', '11', '22830', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001850', 'Building Site Improvement Description', NULL, 'A description of the designed and constructed improvements made to a site.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22831', '11', '22831', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001851', 'Building Instructional Space Factor Type', NULL, 'A designation as to whether the space is considered an instructional space under state or local guidelines.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22832', '11', '22832', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001852', 'Building Joint Use Rationale Type', NULL, 'The reasons for permitting and participating in joint-use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22833', '11', '22833', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001853', 'Building Joint Use Scheduling Type', NULL, 'The type of designation of non school district users by the amount of time they have access to public school for joint use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22834', '11', '22834', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001854', 'Building Joint User Type', NULL, 'The types of users sharing school district controlled, owned, or utilized facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22835', '11', '22835', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001855', 'Building Community Use Space Type', NULL, 'The space designed primarily for community or shared use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22836', '11', '22836', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001856', 'Building Hours of Public Use Per Week', NULL, 'The number of hours that all or part of a building is used for purposes other than general education by the community or other organizations.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22837', '11', '22837', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001857', 'Building Net Area of Instructional Space', NULL, 'The area of space directly used for instruction excluding circulation, administration, student services, and building support.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22838', '11', '22838', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001858', 'Building Number of Teaching Stations', NULL, 'The number of teaching stations, as defined by how many spaces have, or could have, a teacher assigned to them for classroom instruction.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22839', '11', '22839', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001859', 'Building Public Use Policy Description', NULL, 'A description of the policy that enables the community or other organizations to use all or part of a building for purposes other than general education.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22840', '11', '22840', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001860', 'Building Site Use Restrictions Type', NULL, 'A characterization of a site that would define restrictions or opportunities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22841', '11', '22841', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001861', 'Building Space Utilization Area', NULL, 'The area in square feet measured between the principal wall that faces at or near floor level, including alcove spaces, and the outer limits of space designed to serve the activity. Structural space is excluded.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22842', '11', '22842', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001862', 'Student Enrollment Access Type', NULL, 'The designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22843', '11', '22843', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001863', 'Building Unassigned Space Indicator', NULL, 'An indication that the space in a school, including circulation, administration offices, support spaces, and common areas, is not part of the calculation for capacity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22844', '11', '22844', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001864', 'Facility Audit Type', NULL, 'The type of systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22845', '11', '22845', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001865', 'Building Charter School Realty Access Type', NULL, 'The type of real estate vehicle through which a public charter school has access and control of its building space.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22846', '11', '22846', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001866', 'Building Cleaning Standard Type', NULL, 'The standard for cleanliness, and benchmarks for how much space can be assigned to one properly supplied custodian to meet these standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22847', '11', '22847', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001867', 'Facility Compliance Agency Type', NULL, 'The type of agency that has ultimate responsibility for the compliance determination.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22848', '11', '22848', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001868', 'Building Energy Conservation Measure Type', NULL, 'The type of modification to, or replacement of, a piece of equipment or building shell/system that increases energy efficiency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22849', '11', '22849', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001869', 'Building Energy Service Company Name', NULL, 'The name of the company that designs, procures, finances, installs, maintains, and guarantees the performance of energy conservation measures in an owner''s facility or facilities.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22850', '11', '22850', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001870', 'Building Energy Source Type', NULL, 'The source of energy that directly powers a school district facility or building system.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22851', '11', '22851', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001871', 'Facilities Management Emergency Type', NULL, 'The type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22852', '11', '22852', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001872', 'Facility Capital Program Management Type', NULL, 'The type of management organization for planning, design, and construction of major capital projects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22853', '11', '22853', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001873', 'Facility Operations Management Type', NULL, 'The type of management arrangements whereby a district oversees and manages its facilities operations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22854', '11', '22854', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001874', 'Facility Hazardous Materials or Condition Type', NULL, 'The type of hazardous materials or conditions tested for at a site or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22855', '11', '22855', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001875', 'Facility Joint Development Type', NULL, 'The type of development where two or more entities partner to plan, site, design, and/or build a new school or renovate an existing school to better support the joint use of the building and/or land.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22856', '11', '22856', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001876', 'Facility Maintenance Standard Type', NULL, 'The standard for maintenance of a component, system, or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22857', '11', '22857', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001877', 'Facility Naturally Occurring Hazard Type', NULL, 'Type of natural hazard that can affect the health, safety and operation of school facilities and their occupants.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22858', '11', '22858', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001878', 'Facility Utility Provider Type', NULL, 'An indication of how utilities are supplied to a site or a building by a company or provider.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22859', '11', '22859', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001879', 'Facility Utility Type', NULL, 'The type of utility used in the operation of a facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22860', '11', '22860', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001880', 'Building Date of Certificate of Occupancy', NULL, 'The month, day and year in which a certificate of occupancy was granted by the appropriate local authority.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22861', '11', '22861', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001881', 'Facility Audit Date', NULL, 'The month, day, and year of the systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22862', '11', '22862', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001882', 'Facilities Plan Description', NULL, 'A description of the management and accountability plan.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22863', '11', '22863', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001883', 'Facilities Plan Type', NULL, 'The type of management and accountability plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22864', '11', '22864', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001884', 'Facility Standard Type', NULL, 'An indication of the district or state requirements or guidelines for the design and construction of school facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22865', '11', '22865', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001885', 'Facilities Mandate Authority Type', NULL, 'The authority that mandates through law, regulation, or standard that pertains to a specific mandate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22866', '11', '22866', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001886', 'Facility Financing Fee Type', NULL, 'The type of fee that one must pay when getting a mortgage.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22867', '11', '22867', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001887', 'Facility Lease Amount', NULL, 'The amount of money the school must pay to rent the facility that it is in.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22868', '11', '22868', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001888', 'Facility Lease Amount Category', NULL, 'The category of payment that a school must pay to rent the facility that it is in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22869', '11', '22869', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001889', 'Facility Lease Type', NULL, 'The type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22870', '11', '22870', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001890', 'Facility Mortgage Interest Amount', NULL, 'The amount the borrower pays the lender to compensate the lender for the use of money to purchase a building or facility.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22871', '11', '22871', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001891', 'Facility Mortgage Interest Type', NULL, 'The type of interest paid on a mortgage to the lender to compensate the lender for the use of money to purchase a building or facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22872', '11', '22872', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001892', 'Facility Mortgage Type', NULL, 'The status of a mortgage as it relates to priority of payment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22873', '11', '22873', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001893', 'Indebtedness Amount Allowed', NULL, 'The amount of indebtedness allowed by law to be carried by the school district.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22874', '11', '22874', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001894', 'Insurance Deductible', NULL, 'The dollar amount a school district must pay before its insurance will compensate it for loss.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22875', '11', '22875', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001895', 'Public Education Mill Rate', NULL, 'The millage rate used to calculate property tax revenue for K-12 public education.', 'Numeric - up to 2 digits before and 8 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22876', '11', '22876', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001896', 'Facility Total Assessed Value', NULL, 'The total assessed value of property that constitutes the basis for public borrowing.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22877', '11', '22877', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001897', 'Campus Facility Type', NULL, 'The primary purpose for which a campus is designed and/or used.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22878', '11', '22878', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001898', 'Component or Fixture Check Date', NULL, 'The month, day, and year that the condition of a system, component, equipment, or fixture was checked.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22879', '11', '22879', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001899', 'Component or Fixture Serviced Date', NULL, 'The month, day, and year a system, component, equipment, or fixture was serviced for repair or routine maintenance.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22880', '11', '22880', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001900', 'Component or Fixture Scheduled Serviced Date', NULL, 'The month, day, and year a major component, system, equipment, or fixture is scheduled to be serviced for preventive or routine maintenance.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22881', '11', '22881', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001901', 'Component or Fixture Useful Life', NULL, 'The anticipated time (in years) from the time of installation or service that a properly maintained system, component, equipment, or fixture is expected to operate effectively and efficiently.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22882', '11', '22882', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001902', 'Available Utilized Instructional Space', NULL, 'An indication that the instruction space in a school is used in the calculation of student capacity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22883', '11', '22883', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001903', 'Building Capacity Factor Indicator', NULL, 'A designation as to whether the space is included in the calculation of school building capacity under state or local guidelines.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22884', '11', '22884', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000191', 'Name of Institution', NULL, 'The full legally accepted name of the institution.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21191', '11', '21191', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000193', 'Neglected or Delinquent Status', NULL, 'An indication that the student is participating in programs for neglected or delinquent students (N or D) under Title I, Part D, Subpart 1 (state agencies) of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21193', '11', '21193', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000194', 'Neglected or Delinquent Program Type', NULL, 'The type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21194', '11', '21194', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000196', 'Visa Type', NULL, 'An indicator of a non-US citizen''s Visa type.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21196', '11', '21196', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000197', 'Normal Length of Time for Completion', NULL, 'The amount of time necessary for a person to complete all requirements for a degree or certificate according to the institution''s catalog. This is typically 4 years (8 semesters or trimesters, or 12 quarters, excluding summer terms) for a bachelor''s degree in a standard term-based institution; 2 years (4 semesters or trimesters, or 6 quarters, excluding summer terms) for an associate''s degree in a standard term-based institution; and the various scheduled times for certificate programs.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21197', '11', '21197', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000198', 'Normal Length of Time for Completion Units', NULL, 'The unit of measurement for length of time for completion.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21198', '11', '21198', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000199', 'Number of Credits Attempted', NULL, 'The number of credits that a student can earn for enrolling in and completing a given course.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21199', '11', '21199', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000200', 'Number of Credits Earned', NULL, 'The number of credits an individual earns by the successful completion of a course.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21200', '11', '21200', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000201', 'Number of Days Absent', NULL, 'The number of days a person is absent when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21201', '11', '21201', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000202', 'Number of Days in Attendance', NULL, 'The number of days a person is present when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', 'Note: This applies to an enrollment period record. Separate records using this element definition could capture attendance for regular enrollment, an out-of-school program or other program requiring attendance records. CEDS now supports the detailed attendance events to capture attendance status on any given day, class period, or session. CEDS generally doesn''t include elements for counts when it has the unit level elements to calculate the count. However, this element has been retained to support the intended use cases, recognizing that the rules for attendance vary based on location.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21202', '11', '21202', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000203', 'Office of Postsecondary Education Identifier', 'OPEID', 'Identification number used by the U.S. Department of Education''s Office of Postsecondary Education (OPE) to identify schools that have Program Participation Agreements (PPA) so that its students are eligible to participate in Federal Student Financial Assistance programs under Title IV regulations. This is a 6-digit number followed by a 2-digit suffix used to identify branches, additional locations, and other entities that are part of the eligible institution.', 'Integer - exactly 8 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21203', '11', '21203', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000204', 'Organization Name', NULL, 'The name of a non-person entity such as an organization, institution, agency or business.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21204', '11', '21204', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000205', 'Staff Compensation Other Benefits', NULL, 'All other benefits paid by the school district, municipal, state, federal, and other government agencies for the teacher or early learning provider, prorated to the specific school or local provider agency indicated on the record, not including retirement and health insurance benefits or contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21205', '11', '21205', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000206', 'Other Name', NULL, 'Previous, alternate or other names or aliases associated with the person.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21206', '11', '21206', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000207', 'Paraprofessional Qualification Status', NULL, 'An indication of whether paraprofessionals are classified as qualified for their assignment according to state definition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21207', '11', '21207', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000208', 'Participation Status for Math', NULL, 'An indication of whether the school or district met the 95 percent participation requirement in the mathematics assessment in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21208', '11', '21208', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000209', 'Participation Status for Reading and Language Arts', NULL, 'An indication of whether the school or district met the 95 percent participation requirement on the reading/language arts assessment in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21209', '11', '21209', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000210', 'Persistently Dangerous Status', NULL, 'An indication of whether the school is identified as persistently dangerous in accordance with state definition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21210', '11', '21210', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000211', 'Persistently Lowest Achieving School Status', NULL, 'An indication of whether the school is identified by the state as persistently lowest-achieving.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21211', '11', '21211', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000212', 'Personal Title or Prefix', 'Prefix', 'An appellation, if any, used to denote rank, placement, or status (e.g., Mr., Ms., Reverend, Sister, Dr., Colonel).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21212', '11', '21212', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000213', 'Position Title', NULL, 'The descriptive name of a person''s position.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21213', '11', '21213', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000214', 'Address Postal Code', NULL, 'A number that identifies each postal delivery area in the United States used as a portion of an address.', 'Alphanumeric - 17 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21214', '11', '21214', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000216', 'Prekindergarten Eligibility', NULL, 'The groups of students for whom pre-kindergarten programs are available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21216', '11', '21216', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000217', 'Prekindergarten Eligible Ages for Non-IDEA Students', NULL, 'The ages of children not served under IDEA to whom the LEA''s pre-kindergarten services are available. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21217', '11', '21217', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000218', 'Primary Disability Type', NULL, 'The major or overriding disability condition that best describes a person''s impairment.', NULL, '1', 'Option set based on EDFacts. Only one disability condition would be selected. Refer to IDEA Disability Type for selecting multiple disability category options and any additional IDEA disability categories.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21218', '11', '21218', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000219', 'Primary Telephone Number Indicator', NULL, 'An indication that the telephone number should be used as the principal number for a person or organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21219', '11', '21219', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000220', 'Professional Educational Job Classification', NULL, 'A general job classification that describes staff that performs duties requiring a high degree of knowledge and skills generally acquired through at least a baccalaureate degree (or its equivalent obtained through special study and/or experience) including skills in the field of education, educational psychology, educational social work, or an education therapy field.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21220', '11', '21220', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000221', 'Proficiency Target Status for Math', NULL, 'An indication of whether the school or district met the math proficiency target in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21221', '11', '21221', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000222', 'Exit Reason', NULL, 'The documented or assumed reason a student is no longer being served by a special program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21222', '11', '21222', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000223', 'Program Length Hours', NULL, 'The normal length in credit/contact hours of a person''s program as published in the institution''s catalogue, website, or other official documents.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21223', '11', '21223', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000224', 'Program Length Hours Type', NULL, 'The type of hours (credit or contact) by which the normal length of a program of study is measured.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21224', '11', '21224', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000225', 'Program Type', NULL, 'The system outlining instructional or non-instructional activities and procedures designed to accomplish a predetermined educational objective or set of objectives or to provide support services to a person and/or the community.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21225', '11', '21225', 'Updated', 'Added element to DES contexts and added new options to the existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000226', 'Projected Graduation Date', NULL, 'The year and month the student is projected to graduate.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21226', '11', '21226', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000227', 'Public School Choice Implementation Status', NULL, 'An indication of whether the LEA was able to implement the provisions for public school choice under Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21227', '11', '21227', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000228', 'Reason Not Tested', NULL, 'The primary reason a student is not tested.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21228', '11', '21228', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000229', 'Recognition for Participation or Performance in an Activity', NULL, 'The nature of recognition given to the student for accomplishments in a co-curricular, or extra-curricular activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21229', '11', '21229', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000230', 'Reconstituted Status', NULL, 'An indication that the school was restructured, transformed or otherwise changed as a consequence of the state’s accountability system under ESEA or as a result of School Improvement Grants (SIG).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21230', '11', '21230', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000231', 'Related Competency Definitions', 'Related Learning Standard Items, Related Competency Items', 'An indication of the competency definition(s) addressed in the Course Section.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21231', '11', '21231', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000232', 'Restructuring Action', NULL, 'The types of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21232', '11', '21232', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000233', 'Staff Compensation Retirement Benefits', NULL, 'Contributions made by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider’s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21233', '11', '21233', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000234', 'Salary for Teaching Assignment Only Indicator', NULL, 'Indicator to determine whether the teacher''s base salary includes pay for teaching assignments alone.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21234', '11', '21234', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000235', 'School Choice Applied for Transfer Status', NULL, 'An indication that a student applied to transfer in the current year (regardless of whether the student transferred), OR previously applied and transferred under the public school choice provisions and continue to attend the transfer school in the current year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21235', '11', '21235', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000236', 'School Choice Eligible for Transfer Status', NULL, 'An indication the student is eligible to transfer for the current school year under the public school choice provisions or who applied and transferred in the current school year under the public school choice provisions or previously applied and transferred under the public school choice provisions and continue to attend the transfer school in the current year.', NULL, '1', 'Which students should be reported?', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21236', '11', '21236', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000237', 'School Choice Transfer Status', NULL, 'An indication of whether an eligible student transferred to the school under the provisions for public school choice in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21237', '11', '21237', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000238', 'School Improvement Funds Status', NULL, 'An indication of whether the school received funds under Section 1003 of ESEA, as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21238', '11', '21238', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000239', 'School Improvement Grant Intervention Type', NULL, 'The type of intervention used by the school under the School Improvement Grant (SIG).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21239', '11', '21239', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000240', 'School Improvement Status', NULL, 'An indication of the improvement stage of the school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21240', '11', '21240', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000241', 'School Level', NULL, 'An indication of the level of the education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21241', '11', '21241', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000242', 'School Type', NULL, 'The type of education institution as classified by its primary focus. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21242', '11', '21242', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000243', 'School Year', NULL, 'The year for a reported school session.', 'YYYY', '0', 'For academic years that span a calendar year this is the four digit year-end. E.g. 2013 for 2012-2013', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21243', '11', '21243', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000244', 'School Year Minutes', NULL, 'The number of minutes that all students were required to be at school and any additional learning time (e.g., before or after school, weekend school, summer school) for which all students had the opportunity to participate.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21244', '11', '21244', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000245', 'Assessment Result Score Value', NULL, 'A meaningful raw score, derived score, or statistical expression of the performance of a person on an assessment. The type of result is indicated by the Assessment Score Metric Type element. The results can be expressed as a number, percentile, range, level, etc. The score relates to all scored items or a sub test scoring one aspect of performance on the test. This value may or may not correspond to one or more Performance Levels.', 'Alphanumeric - 35 characters maximum', '0', 'Information for interpreting the score is defined by elements in the related Assessment Subtest entity. This includes the minimum, maximum, and optimal values for the measurement. Assessment Subtest defines information for scoring an Assessment Form, which may be for the entire assessment or one aspect of evaluation. The Assessment Subtest may in turn be associated with one or more content standards using the Learning Standard Item Association entity.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21245', '11', '21245', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000249', 'Section 504 Status', NULL, 'Individuals with disabilities who are being provided with related aids and services under Section 504 of the Rehabilitation Act of 1973, as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21249', '11', '21249', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000250', 'School Courses for the Exchange of Data Sequence of Course', 'SCED Sequence of Course', 'Where a specific course lies when it is part of a consecutive sequence of courses. This element should be interpreted as "part ''n'' of ''m'' parts.', 'Alphanumeric - 10 characters maximum', '0', 'For example: if a school offers 4 years of Theater, Theater 3 within this school would be indicated in the sequence elements as 3 4, denoting the 3rd part of a 4-part sequence of courses.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21250', '11', '21250', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000251', 'Session Begin Date', NULL, 'The year, month and day on which a session begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21251', '11', '21251', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000252', 'Session Designator', NULL, 'The academic session for which the data are recorded and applicable.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21252', '11', '21252', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000253', 'Session End Date', NULL, 'The year, month and day on which a session ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21253', '11', '21253', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000254', 'Session Type', NULL, 'A prescribed span of time when an education institution is open, instruction is provided, and students are under the direction and guidance of teachers and/or education institution administration. A session may be interrupted by one or more vacations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21254', '11', '21254', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000255', 'Sex', NULL, 'The concept describing the biological traits that distinguish the males and females of a species.', NULL, '1', 'Postsecondary: As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21255', '11', '21255', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000257', 'Shared Time Indicator', NULL, 'An indication that a school offers career and technical education or other educational services in which some or all students are enrolled at a separate school of record and attend the shared-time school on a part-time basis.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21257', '11', '21257', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000258', 'Course Section Single Sex Class Status', NULL, 'Section in a co-educational school where only male or only female students are permitted to take the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21258', '11', '21258', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000260', 'Special Education Exit Reason', NULL, 'The reason children who were in special education at the start of the reporting period were not in special education at the end of the reporting period.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21260', '11', '21260', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000261', 'Special Education Paraprofessional', NULL, 'An indication of whether a paraprofessional is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21261', '11', '21261', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000262', 'Special Education Related Services Personnel', NULL, 'An indication of whether a related services person is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21262', '11', '21262', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000263', 'Special Education Services Exit Date', NULL, 'The year, month and day a child with disabilities (IDEA) ages 14 through 21 exited special education.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21263', '11', '21263', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000264', 'Special Education Teacher', NULL, 'An indication of whether a teacher is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21264', '11', '21264', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000265', 'Standardized Admission Test Score', NULL, 'The quantitative score on a standardized admission test reported to a postsecondary institution.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21265', '11', '21265', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000266', 'Standardized Admission Test Type', NULL, 'The type of test prepared and administered by an agency that is independent of any postsecondary education institution and is typically used for admissions purposes. Tests provide information about prospective students and their academic qualifications relative to a national sample.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21266', '11', '21266', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000267', 'State Abbreviation', NULL, 'The abbreviation for the state (within the United States) or outlying area in which an address is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21267', '11', '21267', 'Updated', 'Added elements to DES contexts to support Early Learning needs. Added new options to the existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000268', 'State of Residence', NULL, 'An person''s permanent address as determined by such evidence as a driver''s license or voter registration. For entering freshmen, state of residence may be the legal state of residence of a parent or guardian.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21268', '11', '21268', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000269', 'Address Street Number and Name', NULL, 'The street number and street name or post office box number of an address.', 'Alphanumeric - 150 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21269', '11', '21269', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000271', 'Student Attendance Rate', NULL, 'The number of school days during the regular school year (plus summer, if applicable, if part of implementing the restart, transformation, or turnaround model) the student attended school divided by the maximum number of days the student could have attended school during the regular school year.', 'Numeric - between 0 and 1', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21271', '11', '21271', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000272', 'Student Level', NULL, 'Classification of a person enrolling in credit-granting courses at a postsecondary institution since completing high school (or its equivalent) as either an undergraduate or graduate student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21272', '11', '21272', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000273', 'Student Support Service Type', NULL, 'Type of related or ancillary services offered or provided to a person or a group of persons within the formal educational system or by an outside agency which provides non-instructional services to support the general welfare of students. This includes physical and emotional health, the ability to select an appropriate course of study, admission to appropriate educational programs, and the ability to adjust to and remain in school through the completion of programs. In serving a student with an identified disability, related services include developmental, corrective, or supportive services required to ensure that the person benefits from special education.', NULL, '1', 'At the organization level, this element indicates the services offered to students. At the person level, this element indicates the services received by students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21273', '11', '21273', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000274', 'Assessment Subtest Description', NULL, 'The description of the subtest (e.g., vocabulary, measurement, or geometry).', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21274', '11', '21274', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000275', 'Assessment Subtest Title', NULL, 'The name or title of the subtest.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21275', '11', '21275', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000277', 'Teaching Credential Basis', NULL, 'An indication of the pre-determined criteria for granting the teaching credential that a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21277', '11', '21277', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000278', 'Teaching Credential Type', NULL, 'An indication of the category of a legal document giving authorization to perform teaching assignment services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21278', '11', '21278', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000279', 'Telephone Number', NULL, 'The telephone number including the area code, and extension, if applicable.', 'Alphanumeric - 24 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21279', '11', '21279', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000280', 'Telephone Number Type', NULL, 'The type of communication number listed for a person.', 'Alphanumeric - 15 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21280', '11', '21280', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000281', 'Title I Indicator', NULL, 'An indication that the student is participating in and served by programs under Title I, Part A of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21281', '11', '21281', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000282', 'Title I Instructional Services', NULL, 'The type of instructional services provided to students in ESEA Title I programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21282', '11', '21282', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000283', 'Title I Program Staff Category', NULL, 'Titles of employment, official status, or rank for staff working in a Title I program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21283', '11', '21283', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000284', 'Title I Program Type', NULL, 'The type of Title I program offered in the school or district.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21284', '11', '21284', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000285', 'Title I School Status', NULL, 'An indication that a school is designated under state and federal regulations as being eligible for participation in programs authorized by Title I of ESEA as amended and whether it has a Title I program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21285', '11', '21285', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000286', 'Title I School Supplemental Services Applied Status', NULL, 'An indication of whether an eligible student applied/requested to receive supplemental educational services under Title I, Part A, Section 1116 of ESEA as amended during the school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21286', '11', '21286', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000287', 'Title I School Supplemental Services Eligible Status', NULL, 'An indication of whether a student is eligible to receive supplemental educational services during the school year in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21287', '11', '21287', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000288', 'Title I School Supplemental Services Received Status', NULL, 'An indication of whether an eligible student received supplemental educational services during the school year in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21288', '11', '21288', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000289', 'Title I Support Services', NULL, 'The type of support services provided to students in Title I programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21289', '11', '21289', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000290', 'Title III Immigrant Participation Status', NULL, 'An indication that an immigrant student participated in programs for immigrant children and youth funded under ESEA Title III Section 3114(d)(1) using funds reserved for immigrant education programs/activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21290', '11', '21290', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000291', 'Title III Immigrant Status', NULL, 'An indication that the child is an immigrant according to the Title III of ESEA definition, meaning children who are aged 3 through 21; were not born in any state; and have not been attending one or more schools in any one or more States for more than 3 full academic years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21291', '11', '21291', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000292', 'Title IV Participant and Recipient', NULL, 'A person who receives Title IV aid. Title IV aid includes grant aid, work study aid, and loan aid such as: Federal Pell Grant, Federal Supplemental Educational Opportunity Grant (FSEOG), Teacher Education Assistance for College and Higher Education (TEACH) Grant, Federal Work-Study, Federal Perkins Loan, Subsidized Direct or FFEL Stafford Loan, and Unsubsidized Direct or FFEL Stafford Loan. Title IV aid specifications are defined by the instructions for the IPEDS Student Financial Aid survey.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21292', '11', '21292', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000293', 'Staff Compensation Total Benefits', NULL, 'Sum of retirement, health, and all other benefits, or total benefits paid by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider’s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21293', '11', '21293', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000294', 'Size of High School Graduating Class', NULL, 'The total number of students in the student''s high school graduating class.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21294', '11', '21294', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000295', 'Staff Compensation Total Salary', NULL, 'Total annualized salary of staff at the specific school/program indicated on the record in the school/program year specified on the record.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21295', '11', '21295', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000296', 'Transfer-ready', NULL, 'A person who has successfully completed a transfer-preparatory program as defined by the state or by the institution if no official state definition exists.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21296', '11', '21296', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000297', 'Tuition Residency Type', NULL, 'A person''s residency status for tuition purposes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21297', '11', '21297', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000299', 'United States Citizenship Status', NULL, 'An indicator of whether or not the person is a US citizen.', NULL, '1', 'Postsecondary: As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21299', '11', '21299', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000704', 'Web Site Address', NULL, 'The Uniform Resource Locator (URL) for the unique address of a Web page.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21300', '11', '21300', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000302', 'Years of Prior Teaching Experience', NULL, 'The total number of years prior to this job that a person has previously held a teaching position in one or more education institutions.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21302', '11', '21302', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000304', 'Early Learning Program Eligibility Category', NULL, 'Category under which the person is eligible for an early childhood program or service.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21304', '11', '21304', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000305', 'Proof of Residency Type', NULL, 'An accepted form of proof of residency in the district/county/other locality.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21305', '11', '21305', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000306', 'Immunization Date', NULL, 'The year, month and day of an immunization.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21306', '11', '21306', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000307', 'Required Immunization', NULL, 'An indication that an immunization is specifically required by an organization or governing body.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21307', '11', '21307', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000308', 'Vision Screening Status', NULL, 'Status of an examination used to measure a person''s ability to see.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21308', '11', '21308', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000309', 'Hearing Screening Status', NULL, 'Status of an examination used to measure a person''s ability to perceive sounds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21309', '11', '21309', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000310', 'Dental Screening Status', NULL, 'The condition of a person''s mouth or oral cavity; more specifically the condition of the hard tissues (i.e., teeth and jaws) and the soft tissues (i.e., gums, tongue, lips, palate, mouth floor, and inner cheeks). Good oral health denotes the absence of clinically manifested disease or abnormalities of the oral cavity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21310', '11', '21310', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000312', 'Weight at Birth', NULL, 'The weight of a child at birth in pounds and ounces.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21312', '11', '21312', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000313', 'Weeks of Gestation', NULL, 'The number of weeks during gestational period.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21313', '11', '21313', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000314', 'Child Developmental Screening Status', NULL, 'The result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21314', '11', '21314', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000315', 'Developmental Evaluation Finding', NULL, 'Child developmental delay/disability determined by procedure used by appropriate qualified personnel.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21315', '11', '21315', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000316', 'Language Type', NULL, 'An indication of the function and context in which a person uses a language to communicate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21316', '11', '21316', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000317', 'ISO 639-2 Language Code', NULL, 'The code for the specific language or dialect that a person uses to communicate.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21317', '11', '21317', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000320', 'Individualized Program Type', NULL, 'A designation of the type of program developed for a student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21320', '11', '21320', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000321', 'Early Childhood Services Received', NULL, 'The types of service that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21321', '11', '21321', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000323', 'Application Date', NULL, 'The year, month and day on which an individual application is received by the organization.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21323', '11', '21323', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000324', 'Enrollment Date', NULL, 'The year, month and day on which a person is considered officially enrolled in the program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21324', '11', '21324', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000325', 'Participation in School Food Service Programs', NULL, 'An indication of a student''s participation in free, reduced price, full price breakfast, lunch, snack, supper, and milk programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21325', '11', '21325', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000326', 'Service Entry Date', NULL, 'The year, month and day on which a person begins to receive early intervention, special education or other services.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21326', '11', '21326', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000327', 'Service Exit Date', NULL, 'The year, month and day on which a person stops receiving early intervention or special education services.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21327', '11', '21327', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000329', 'Custodial Parent or Guardian Indicator', NULL, 'An indication that a person has legal custody of a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21328', '11', '21328', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000330', 'Number of People in Family', NULL, 'Total number of persons in immediate family. Family means for the purposes of the regulations in this part all persons: (i) Living in the same household who are: (A) Supported by the income of the parent(s) or guardian(s) of the child enrolling or participating in the program; or (B) Related to the child by blood, marriage, or adoption; or (ii) Related to the child enrolling or participating in the program as parents or siblings, by blood, marriage, or adoption.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21329', '11', '21329', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000331', 'Number of People in Household', NULL, 'Total number of persons residing in the same household.', 'Integer - greater than or equal to 0', '0', 'For FAFSA, this includes the number of family members that are in the household, including the student, their spouse, children, and any other persons living in the household to whom they will provide more than half of their support', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21330', '11', '21330', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000332', 'Family Income', NULL, 'Total income of family from all sources. Income includes money, wages or salary before deductions; net income from non-farm self-employment; net income from farm self-employment; regular payments from Social Security or railroad retirement; payments from unemployment compensation, strike benefits from union funds, workers’ compensation, veterans benefits (with the exception noted below), public assistance (including Temporary Assistance for Needy Families, Supplemental Security Income, Emergency Assistance money payments, and non-Federally funded General Assistance or General Relief money payments); training stipends; alimony, child support, and military family allotments or other regular support from an absent family member or someone not living in the household; private pensions, government employee pensions (including military retirement pay), and regular insurance or annuity payments; college or university scholarships, grants, fellowships, and assistantships; and dividends, interest, net rental income, net royalties, and periodic receipts from estates or trusts; and net gambling or lottery winnings.', 'Numeric - up to 2 digits after decimal place', '0', 'Family Income is calculated based on the method specified by “Income Calculation Method.”', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21331', '11', '21331', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000333', 'Source of Family Income', NULL, 'Sources of total family income.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21332', '11', '21332', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000334', 'Income Calculation Method', NULL, 'The calculation method used by a program to determine total family income.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21333', '11', '21333', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000335', 'Insurance Coverage', NULL, 'The nature of insurance covering an person''s hospitalization and other health or medical care.', NULL, '1', 'Use cases may utilize subsets of the option set. For example, the option set for Parent/Guardian may not include the "Children''s health insurance program" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21334', '11', '21334', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000336', 'Dental Insurance Coverage Type', NULL, 'The source of insurance covering an person''s dental care.', NULL, '1', 'Use cases may utilize subsets of the option set. For example, the option set for Parent/Guardian may not include the "Children''s health insurance program" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21335', '11', '21335', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000341', 'Level of Specialization in Early Learning', NULL, 'The extent to which a person concentrates upon a particular subject matter area during his or her period of study at an educational institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21340', '11', '21340', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000342', 'Degree or Certificate Title or Subject', NULL, 'The name of the degree or certificate earned by a person. This includes honorary degrees conferred upon an individual.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21341', '11', '21341', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000343', 'Degree or Certificate Type', NULL, 'The type of degree or certificate earned by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21342', '11', '21342', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000344', 'Degree or Certificate Conferring Date', NULL, 'The year, month and day on which a person received a degree or certificate.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21343', '11', '21343', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000345', 'Early Childhood Credential', NULL, 'The credential related to early childhood education or development held by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21344', '11', '21344', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000346', 'Employment Start Date', NULL, 'The year, month and day on which a person began self-employment or employment with an organization or institution.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21345', '11', '21345', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000347', 'Employment Status', NULL, 'The condition under which a person has agreed to serve as an employee.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21346', '11', '21346', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000348', 'Initial License Date', NULL, 'The year, month and day on which a program or center received its initial license.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21347', '11', '21347', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000349', 'Continuing License Date', NULL, 'The year, month and day on which a program or center received its continuing license.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21348', '11', '21348', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000350', 'License Exempt', NULL, 'The program or center is legally exempt from licensing.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21349', '11', '21349', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000351', 'Operation Date', NULL, 'The year, month and day on which a program or center began operation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21350', '11', '21350', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000353', 'Service Option Variation', NULL, 'Nature of early childhood program, class or group in which a person is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21352', '11', '21352', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000354', 'Hours Available Per Day', NULL, 'The number of hours per day the site or classroom is open for children to attend.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21353', '11', '21353', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000355', 'Days Available Per Week', NULL, 'The number of days per week the site or classroom is open for children to attend.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21354', '11', '21354', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000356', 'Early Childhood Setting', NULL, 'The site or setting in which early childhood care, education, and/or services are provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21355', '11', '21355', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000357', 'Quality Rating and Improvement System Participation', 'QRIS Participation', 'Program site participates in a Quality Rating and Improvement System (QRIS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21356', '11', '21356', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000358', 'Quality Rating and Improvement System Score', 'QRIS Score', 'The score, rating or level received by a program for its Quality Rating and Improvement System (QRIS).', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21357', '11', '21357', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000010', 'Address Type for Learner or Family', NULL, 'The type of address listed for a learner or a parent, guardian, family member or related person.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21358', '11', '21358', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000361', 'Enrollment in Postsecondary Award Type', NULL, 'An indicator of the award level in which the person is currently enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21360', '11', '21360', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000362', 'Instructional Activity Hours Completed', NULL, 'The number of credit hours and/or contact hours successfully completed by a person during a term.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21361', '11', '21361', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000363', 'Financial Aid Award Status', NULL, 'An indication of whether the financial aid type being reported is aid that has been awarded, accepted or dispersed.', NULL, '1', 'Linked to financial aid type, financial aid amount.
Note: For any given individual this field may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21362', '11', '21362', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000366', 'Assessment Form Number', NULL, 'The number of a given assessment form.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21365', '11', '21365', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000367', 'Assessment Subtest Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment subtest.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21366', '11', '21366', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000368', 'Assessment Subtest Abbreviation', NULL, 'The shortened name identifying the assessment for use in reference and/or reports.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21367', '11', '21367', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000369', 'Assessment Score Metric Type', NULL, 'The specific method used to report the performance and achievement of the assessment. This is the metric that is being used to derive the scores.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21368', '11', '21368', 'Updated', 'Added new option to the existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000370', 'Instructional Recommendation', NULL, 'This provides the next steps for instruction for the student based upon the assessment results and student characteristics.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21369', '11', '21369', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000371', 'Assessment Participant Session Language', NULL, 'The language that the assessment is administered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21370', '11', '21370', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000382', 'Assessment Objective', NULL, 'This is the objective that the assessment is measuring.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21373', '11', '21373', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000383', 'Assessment Accommodation Category', NULL, 'A category of accommodations needed for a given assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21374', '11', '21374', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000384', 'Assessment Secure Indicator', NULL, 'Indicates whether or not the assessment is a secure assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21375', '11', '21375', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000385', 'Accommodation Type', NULL, 'The specific accommodation necessary for assessment or instruction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21376', '11', '21376', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000386', 'Assessment Participant Session Platform Type', NULL, 'The platform with which the assessment was delivered to the student during the assessment session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21377', '11', '21377', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000388', 'Assessment Subtest Version', NULL, 'The version of the subtest that is included for the assessment.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21379', '11', '21379', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000389', 'Assessment Session Special Circumstance Type', NULL, 'An unusual event occurred during the administration of the assessment. This could include fire alarm, student became ill, etc.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21380', '11', '21380', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000390', 'Assessment Item Type', NULL, 'The specific type of assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21382', '11', '21382', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000391', 'Assessment Item Difficulty', NULL, 'The percentage of students who answered the item correctly during trial testing of the item.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21383', '11', '21383', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000392', 'Assessment Item Characteristic Type', NULL, 'The type of psychometric measure provided for assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21384', '11', '21384', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000393', 'Assessment Item Response Choice Pattern', NULL, 'The distribution of responses for each choice in the assessment item.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21385', '11', '21385', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000395', 'Assessment Subtest Minimum Value', NULL, 'The minimum value possible for the measurement.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21387', '11', '21387', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000396', 'Assessment Subtest Maximum Value', NULL, 'The maximum value for the measurement.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21388', '11', '21388', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000397', 'Assessment Subtest Optimal Value', NULL, 'The optimal value for this measurement.', 'Alphanumeric - 30 characters maximum', '0', 'The Optimal Value may be the same as the Maximum Value, the Minimum Value, or something in between.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21389', '11', '21389', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000398', 'Assessment Item Distractor Analysis', NULL, 'The analysis of the distractors provided for a specific assessment.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21390', '11', '21390', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000400', 'Assessment Item Stem', NULL, 'The statement of the question or prompt for an Assessment Item to which the student responds.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21392', '11', '21392', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000402', 'Assessment Item Response Duration', NULL, 'The total amount of time in seconds or milliseconds that a person spent responding to a given assessment item.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21394', '11', '21394', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000403', 'Assessment Item Allotted Time', NULL, 'The amount of time allotted for a specific item.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21395', '11', '21395', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000405', 'Assessment Item Response Status', NULL, 'The status of the response for a given item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21396', '11', '21396', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000406', 'Assessment Item Response Aid Set Used', NULL, 'A tool or aid set used while viewing the item. This can include things like a calculator, reference tools, etc.', 'Alphanumeric - 30 characters maximum', '0', 'This a permissible set of tools suggested for use for successful completion of a test question, not an accommodation.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21397', '11', '21397', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000407', 'Assessment Participant Session Time Assessed', NULL, 'The overall time a learner actually spent during the assessment session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21398', '11', '21398', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000408', 'Assessment Session Allotted Time', NULL, 'The duration of time allotted for the assessment session.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21399', '11', '21399', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000410', 'Assessment Session Administrator Identifier', NULL, 'The unique identifier of the person overseeing the administration of an assessment. This is typically at a district or school level or at an administrator at a testing facility.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21400', '11', '21400', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000411', 'Assessment Session Proctor Identifier', NULL, 'The unique identifier of the person overseeing the assessment session in the setting.', 'Alphanumeric - 40 characters maximum', '0', 'This could be the identifier for a teacher, a paraprofessional or individual at a testing site.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21401', '11', '21401', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000415', 'Assessment Type Administered', NULL, 'The type of assessment administered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21405', '11', '21405', 'Updated', 'Changed Name, Definition, and Technical Name to reflect a broader use.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000417', 'Assessment Performance Level Score Metric', NULL, 'The metric or scale used for score reporting.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21407', '11', '21407', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000418', 'Assessment Performance Level Lower Cut Score', NULL, 'Lowest possible score for the performance level.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21408', '11', '21408', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000419', 'Assessment Performance Level Upper Cut Score', NULL, 'Highest possible score for the performance level.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21409', '11', '21409', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000421', 'Rubric Title', NULL, 'The title of the rubric.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21411', '11', '21411', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000422', 'Rubric Identifier', NULL, 'An identifier assigned to a rubric.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21412', '11', '21412', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000423', 'Rubric URL Reference', NULL, 'The URL location where the rubric may be found.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21413', '11', '21413', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000424', 'State ANSI Code', NULL, 'The American National Standards Institute (ANSI) two-digit code for the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21414', '11', '21414', 'Updated', 'Added new options to the existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000425', 'Person Relationship Type', NULL, 'The nature of a person''s relationship to another person.', NULL, '1', 'For implementation in the CEDS Integrated Data Store (IDS), the "person" in the description would be the person referred to in the PersonId column in the IDS. The "related person" in the description would be the person referred to in the "RelatedPersonId" in the IDS. Example: Foster mother - The person (PersonId) is the related person''s (RelatedPersonId) Foster mother.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21415', '11', '21415', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000426', 'City of Birth', NULL, ' The name of the city in which a person was born.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21416', '11', '21416', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000427', 'State of Birth Abbreviation', NULL, 'The abbreviation for the name of the state (within the United States) or extra-state jurisdiction in which a person was born.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21417', '11', '21417', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000428', 'Birthdate Verification', NULL, 'The evidence by which a child''s date of birth is confirmed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21418', '11', '21418', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000429', 'Continuation of Services Reason', NULL, 'Reason why the student is being served under the continuation of services provision of the MEP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21419', '11', '21419', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000430', 'Migrant Education Program Eligibility Expiration Date', 'MEP Eligibility Expiration Date', 'The year, month, and day on which the child is no longer eligible for the Migrant Education Program. This date should initially be a date equal to 36 months from the Qualifying Arrival Date to indicate the end of MEP eligibility or the student reaches 22 years of age, whichever comes first.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21420', '11', '21420', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000431', 'Multiple Birth Indicator', NULL, 'An indication that the person is a twin, triplet, etc.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21421', '11', '21421', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000432', 'Migrant Student Qualifying Arrival Date', NULL, 'The qualifying arrival date (QAD) is the month, date, and year that the child completed a move with his or her parent to enable the parent to find qualifying employment. In some cases, the child and worker may not always move together, in which case the QAD would be the date that the child joins the worker who has already moved, or the date the worker joins the child who has already moved. The QAD is the date the child''s eligibility for the Migrant Education Program begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21422', '11', '21422', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000433', 'Qualifying Move From City', NULL, 'The name of the city in which the child resided prior to the qualifying move.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21423', '11', '21423', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000434', 'Qualifying Move From Country', NULL, 'The abbreviation code for a country (other than the US) area in which the child resided prior to the qualifying move.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21424', '11', '21424', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000435', 'Qualifying Move From State', NULL, 'The postal abbreviation code for a state (within the United States) or outlying area in which the child resided prior to the qualifying move.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21425', '11', '21425', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001040', 'Assessment Need Signing Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the type of signing preferred by the user.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22044', '11', '22044', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001041', 'Assessment Need Alternative Representation Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default presentation mode of the associated Alternative Representations accessibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22045', '11', '22045', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001042', 'Assessment Need Spoken Source Preference Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred spoken audio form.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22046', '11', '22046', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001043', 'Assessment Need Read at Start Preference', NULL, 'Used as part of an Assessment Personal Needs Profile to define if the spoken play-back should commence from the start of a recording or not.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22048', '11', '22048', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001044', 'Assessment Need User Spoken Preference Type', NULL, 'Used as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22049', '11', '22049', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001045', 'Assessment Need Directions Only', NULL, 'Defines as part of an Assessment Personal Needs Profile whether or not the verbal alternative content presentation should be applied to directive content only.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22050', '11', '22050', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001046', 'Assessment Need Masking Type', NULL, 'Specifies as part of an Assessment Personal Needs Profile the type of masks the user is able to create to cover portions of the question until needed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22051', '11', '22051', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001047', 'Assessment Need Text Messaging String', NULL, 'The text string that is to be displayed to the user as an expression of encouragement when Masking is specified as part of an Assessment Personal Needs Profile. It is left to the system to determine when to display this string.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22052', '11', '22052', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001048', 'Assessment Need Sound File URL', NULL, 'The URI of the sound file that is to be played to the user as an expression of encouragement when Masking is specified as part of an Assessment Personal Needs Profile. It is left to the system to determine when to play this audio file.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22053', '11', '22053', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001049', 'Assessment Need Time Multiplier', NULL, 'Defines the multiplier to be applied to the time limit to determine the total testing time allowed when Additional Testing Time is specified as part of an Assessment Personal Needs Profile. If the value is ‘unlimited’ then there is no time limit for the test.', 'Alphanumeric - 9 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22055', '11', '22055', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001050', 'Assessment Need Line Reader Highlight Color', NULL, 'The color defined as part of an Assessment Personal Needs Profile to be used to highlight the point of line reader activity i.e. the line being read.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22056', '11', '22056', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001051', 'Assessment Need Overlay Color', NULL, 'This is the preferred color for the overlay for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22057', '11', '22057', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001052', 'Assessment Need Foreground Color', NULL, 'This is the preferred Foreground color for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22058', '11', '22058', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001053', 'Assessment Need Background Color', NULL, 'This is the preferred Background color for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22059', '11', '22059', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001054', 'Assessment Need Increased Whitespacing Type', NULL, 'Defines the user preferences for white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22060', '11', '22060', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001055', 'Assessment Registration Testing Indicator', NULL, 'Indicates rules about use of results based on Special Events before, during or after the test. The option set values are determined by the testing program.', 'Alphanumeric - 300 characters maximum', '0', 'For example, "do not score", "do not report".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22061', '11', '22061', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001056', 'Assessment Registration Score Publish Date', NULL, 'The date set by the testing program when the test scores are published. For formative or classroom assessments, this will likely be the date when the scored the individual test. For summative assessments, this date is likely set for a group of assessments when the processing system releases the scores.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22062', '11', '22062', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001057', 'Assessment Registration Grade Level to Be Assessed', NULL, 'The grade or level at which the learner is to be assessed.', NULL, '1', ' Informs selection of the assessment form appropriate for the grade level to be tested.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22063', '11', '22063', 'Updated', 'Added and removed options to the existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001058', 'Name of Professional Credential or License', NULL, 'The name of the license/credential awarded by a given profession.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22064', '11', '22064', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001059', 'Cardiopulmonary Resuscitation Certification Expiration Date', 'CPR Certification Expiration Date', 'The date an individual''s cardiopulmonary resuscitation (CPR) training certification expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22065', '11', '22065', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001060', 'First Aid Certification Expiration Date', NULL, 'The date an individual''s first aid training certification expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22066', '11', '22066', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001061', 'Staff Professional Development Activity Start Date', NULL, 'The year, month and day on which an individual begins a course, an education program or a staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22067', '11', '22067', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001062', 'Staff Professional Development Activity Completion Date', NULL, 'The year, month and day on which an individual completed a course, an education program or a staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22068', '11', '22068', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001063', 'Assessment Item Response Value', NULL, ' A specific response to an assessment item by the person being assessed.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22069', '11', '22069', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001064', 'Employment NAICS Code', NULL, 'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', 'Integer - exactly 6 digits', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22070', '11', '22070', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001088', 'NAEP Mathematical Complexity Level', NULL, 'Complexity levels defined by the National Assessment of Educational Progress (NAEP 2005a Framework).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22072', '11', '22072', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001089', 'Assessment Language', NULL, 'The language in which the assessment form is designed to be delivered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22073', '11', '22073', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001091', 'Assessment Subtest Published Date', NULL, 'The date on which the Subtest was published.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22075', '11', '22075', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001092', 'Assessment Result Descriptive Feedback Source', NULL, 'Identifies the source of the descriptive feedback that was given to a learner based on a scored/evaluated portion of an assessment. May indicate if this is teacher, scorer, or system generated feedback. Values for this attribute would be determined by the assessment program.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22076', '11', '22076', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001093', 'Assessment Session Special Event Description', NULL, 'Describes special events that occur before during or after the assessment session that may impact use of results according to rules related to the Assessment Registration Testing Indicator.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22077', '11', '22077', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001094', 'Competency Definition Parent URL', 'Learning Standard Item Parent URL, Competency Item Parent URL', 'A network-resolvable Uniform Resource Locator (URL) pointing to the authoritative reference for the hierarchal parent of the competency definition.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22078', '11', '22078', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001102', 'Assessment Item Body Custom Interaction XML', NULL, 'The custom interaction provides an opportunity for extensibility of this specification to include support for interactions not currently documented. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22079', '11', '22079', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001103', 'Assessment Item Body Drawing Interaction XML', NULL, 'The drawing interaction allows the candidate to use a common set of drawing tools to modify a given graphical image (the canvas). It must be bound to a response variable with base-type file and single cardinality. The result is a file in the same format as the original image. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22080', '11', '22080', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001104', 'Assessment Item Body Gap Match Interaction XML', NULL, 'A gap match interaction contains a number gaps that the candidate can fill from an associated set of choices. The candidate must be able to review the content with the gaps filled in context, as indicated by their choices. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22081', '11', '22081', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001105', 'Assessment Item Body Match Interaction XML', NULL, 'A match interaction presents candidates with two sets of choices and allows them to create associates between pairs of choices in the two sets, but not between pairs of choices in the same set. Further restrictions can still be placed on the allowable associations using the matchMax attribute of the choices. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22082', '11', '22082', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001106', 'Assessment Item Body Graphic Gap Match Interaction XML', NULL, 'A graphic gap-match interaction is a graphical interaction with a set of gaps that are defined as areas (hotspots) of the graphic image and an additional set of gap choices that are defined outside the image. The candidate must associate the gap choices with the gaps in the image and be able to review the image with the gaps filled in context, as indicated by their choices. Care should be taken when designing these interactions to ensure that the gaps in the image are a suitable size to receive the required gap choices. It must be clear to the candidate which hotspot each choice has been associated with. When associated, choices must appear wholly inside the gaps if at all possible and, where overlaps are required, should not hide each other completely. If the candidate indicates the association by positioning the choice over the gap (e.g., drag and drop) the system should ''snap'' it to the nearest position that satisfies these requirements. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22083', '11', '22083', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001107', 'Assessment Item Body Hot Spot Interaction XML', NULL, 'A hotspot interaction is a graphical interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to select one or more of the areas (hotspots). The hotspot interaction should only be used when the spatial relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, choiceInteraction should be used instead with separate material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22084', '11', '22084', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001108', 'Assessment Item Body Graphic Order Interaction XML', NULL, 'A graphic order interaction is a graphic interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to impose an ordering on the areas (hotspots). The order hotspot interaction should only be used when the spatial relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, orderInteraction should be used instead with separate material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22085', '11', '22085', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001109', 'Assessment Item Body Select Point Interaction XML', NULL, 'Like hotspotInteraction, a select point interaction is a graphic interaction. The candidate''s task is to select one or more points. The associated response may have an areaMapping that scores the response on the basis of comparing it against predefined areas but the delivery engine must not indicate these areas of the image. Only the actual point(s) selected by the candidate shall be indicated. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22087', '11', '22087', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001110', 'Assessment Item Body Select Point Interaction', NULL, 'A graphic associate interaction is a graphic interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to associate the areas (hotspots) with each other. The graphic associate interaction should only be used when the graphical relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, associateInteraction should be used instead with separate Material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22088', '11', '22088', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001111', 'Assessment Item Body Slider Interaction XML', NULL, 'The slider interaction presents the candidate with a control for selecting a numerical value between a lower and upper bound. It must be bound to a response variable with single cardinality with a base-type of either integer or float. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22089', '11', '22089', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001112', 'Assessment Item Body Choice Interaction XML', NULL, 'The choice interaction presents a set of choices to the candidate. The candidate''s task is to select one or more of the choices, up to a maximum of maxChoices. The interaction is always initialized with no choices selected. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22090', '11', '22090', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001114', 'Assessment Item Body Inline Choice Interaction XML', NULL, 'A inline choice is an inline interaction that presents the user with a set of choices, each of which is a simple piece of text. The candidate''s task is to select one of the choices. Unlike the Choice Interaction, the delivery engine must allow the candidate to review their choice within the context of the surrounding text.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22091', '11', '22091', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001115', 'Assessment Item Body Media Interaction XML', NULL, 'The media interaction allows more control over the way the candidate interacts with a time-based media object and allows the number of times the media object was experienced to be reported in the value of the associated response variable, which must be of base-type integer and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22092', '11', '22092', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001116', 'Assessment Item Body Hottext Interaction XML', NULL, 'The hottext interaction presents a set of choices to the candidate represented as selectable runs of text embedded within a surrounding context, such as a simple passage of text. Like choiceInteraction, the candidate''s task is to select one or more of the choices, up to a maximum of maxChoices. The interaction is initialized from the defaultValue of the associated response variable, a NULL value indicating that no choices are selected (the usual case). The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22093', '11', '22093', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001117', 'Assessment Item Body Order Interaction XML', NULL, 'In an order interaction the candidate''s task is to reorder the choices, the order in which the choices are displayed initially is significant. By default the candidate''s task is to order all of the choices but a subset of the choices can be requested using the maxChoices and minChoices attributes. When specified the candidate must select a subset of the choices and impose an ordering on them. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22094', '11', '22094', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001118', 'Assessment Item Body Position Object Interaction XML', NULL, 'The position object interaction consists of a single image which must be positioned on another graphic image (the stage) by the candidate. Like selectPointInteraction, the associated response may have an areaMapping that scores the response on the basis of comparing it against predefined areas but the delivery engine must not indicate these areas of the stage. Only the actual position(s) selected by the candidate shall be indicated. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22095', '11', '22095', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001119', 'Assessment Item Body Text Entry Interaction XML', NULL, 'A textEntry interaction obtains a simple piece of text from the candidate. Like inlineChoiceInteraction, the delivery engine must allow the candidate to review their choice within the context of the surrounding text. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22096', '11', '22096', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001120', 'Assessment Item Body Extended Text Interaction XML', NULL, 'An extended text interaction allows the candidate to enter an extended amount of text. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22097', '11', '22097', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001121', 'Assessment Item Body End Attempt Interaction XML', NULL, 'The end attempt interaction is a special type of interaction which allows item authors to provide the candidate with control over the way in which the candidate terminates an attempt. The candidate can use the interaction to terminate the attempt (triggering response processing) immediately, typically to request a hint. It must be bound to a response variable with base-type boolean and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22098', '11', '22098', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001222', 'Assessment Item Body Upload Interaction XML', NULL, 'The upload interaction allows the candidate to upload a pre-prepared file representing their response. It must be bound to a response variable with base-type file and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22099', '11', '22099', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001123', 'Assessment Item Body Associate Interaction XML', NULL, 'An associate interaction presents candidates with a number of choices and allows them to create associations between them. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22100', '11', '22100', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001127', 'Assessment Need Type', NULL, 'A type of need identified for a learner as part of an assessment need profile.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22101', '11', '22101', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001130', 'Assessment Participant Session Security Issue', NULL, 'Describes an issue related to the security of a testing instrument identified during a specific instance of delivering an assessment to a specific person during a specific time period.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22102', '11', '22102', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001131', 'Assessment Item APIP Response Processing Template URL', NULL, 'These templates are described using the processing language defined in IMS Global APIP specification and are distributed (in XML form) along with it. Delivery engines that support generalized response processing do not need to implement special mechanisms to support them as a template file can be parsed directly while processing the assessment item that refers to it. This element provides the URL for the template.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22103', '11', '22103', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001132', 'Assessment Item APIP Response Processing XML', NULL, 'Response processing is the process by which the Delivery Engine assigns outcomes based on the learner''s responses. The outcomes may be used to provide feedback to the learner Feedback is either provided immediately following the end of the learner''s attempt or it is provided at some later time, perhaps as part of a summary report on the item session. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22104', '11', '22104', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001133', 'Assessment Item APIP Response Declaration XML', NULL, 'Response declarations state what the response variables include. The response declaration may assign an optional correct response. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22105', '11', '22105', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001134', 'Assessment Item APIP Outcome Declaration XML', NULL, 'Outcome variables are declared by outcome declarations. Their value is set either from a default given in the declaration itself or by a responseRule during response processing. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22106', '11', '22106', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001135', 'Assessment Item APIP Template Declaration XML', NULL, 'Template declarations declare item variables that are to be used specifically for the purposes of cloning items. They can have their value set only during template processing. They are referred to within the item body in order to individualize the clone and possibly also within the response Processing rules if the cloning process affects the way the item is scored. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22107', '11', '22107', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001136', 'Assessment Item APIP Template Processing XML', NULL, 'Template processing consists of one or more template rules that are followed by the cloning engine or delivery system in order to assign values to the template variables. Template processing is identical in form to responseProcessing except that the purpose is to assign values to template variables, not outcome variables. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22108', '11', '22108', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001137', 'Assessment Item APIP Modal Feedback XML', NULL, 'Modal feedback is shown to the candidate directly following response processing. The value of an outcome variable is used in conjunction with the showHide and identifier attributes to determine whether or not the feedback is shown in a similar way to feedbackElement. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22109', '11', '22109', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001138', 'Assessment Item APIP Item Body XML', NULL, 'The item body contains the text, graphics, media objects, and interactions that describe the item''s content and information about how it is structured. The body is presented by combining it with stylesheet information, either explicitly or implicitly using the default style rules of the delivery or authoring system. This element contains the appropriate XML from the IMS Global APIP Specification defining the various item body interactions.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22110', '11', '22110', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001139', 'Assessment Item Adaptive Indicator', NULL, 'This indicator determines whether an assessment item is an adaptive item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22111', '11', '22111', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001152', 'Assessment Participant Session Platform User Agent', NULL, ' A list of product tokens (keywords) with optional comments that identifies the client hardware and software with which the assessment was delivered to the student during the assessment session.', 'Alphanumeric - 512 characters maximum', '0', 'Implementation Note: The recommended approach is to store the User-Agent string returned as part of an HTTP header. For example, an assessment session delivery via iPad might have "Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Mobile/7B405"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22112', '11', '22112', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001153', 'Credential Definition Criteria URL', 'Credential Criteria URL', 'The Uniform Resource Locator (URL) for the unique address of a web page describing the competency-based completion criteria for the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22113', '11', '22113', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001154', 'Competency Definition Text Complexity Minimum Value', 'Learning Standard Item Text Complexity Minimum Value, Competency Item Text Complexity Minimum Value', 'The minimum value in the range of text complexity applicable to a language competency definition using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22114', '11', '22114', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001155', 'Competency Definition Text Complexity Maximum Value', 'Learning Standard Item Text Complexity Maximum Value, Competency Item Text Complexity Maximum Value', 'The maximum value in the range of text complexity applicable to a language competency definition using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22115', '11', '22115', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001157', 'Accommodation Other Description', NULL, 'The description of the accommodation when ''Accommodation Type'' is set to ''Other''.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22116', '11', '22116', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001158', 'Assessment Item Interaction Type', NULL, 'The assessment item body interaction type as defined by IMS Global specifications.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22117', '11', '22117', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001162', 'Assessment Registration Test Attempt Identifier', NULL, 'A unique identifier for the test attempt assigned by the delivery system.', 'Alphanumeric - 40 characters maximum', '0', 'For paper-based tests this is typically a batch/stack/serial number and for online tests it is likely a unique internal identifier. Used to locate the original attempt.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22119', '11', '22119', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001163', 'Credential Award Start Date', 'Credential Start Date', 'The date on which the qualification, achievement, personal or organizational quality, or aspect of an identity was conferred.', 'YYYY-MM-DD', '0', 'Diploma or Credential Award Date is the same concept but used when only month and year are known or needed.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22120', '11', '22120', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001164', 'Credential Award End Date', 'Credential End Date', 'The date, if any, on which the qualification, achievement, personal or organizational quality, or aspect of an identity expires or requires renewal.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22121', '11', '22121', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001168', 'Authentication Identity Provider Name', NULL, 'The name of a provider that can authenticate the identity of an person.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22122', '11', '22122', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001169', 'Authentication Identity Provider URI', NULL, 'The Uniform Resource Identifier (URI) of the Authentication Identity Provider.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22123', '11', '22123', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001170', 'Authentication Identity Provider Login Identifier', NULL, 'The login identifier for the person for the specified Authentication Identity Provider.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22124', '11', '22124', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001171', 'Authentication Identity Provider Start Date', NULL, 'The date on which the an associated person may begin to use the specified Authentication Identity Provider to authenticate identity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22125', '11', '22125', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001172', 'Authentication Identity Provider End Date', NULL, 'The date after which the an associated person is no longer allowed to use the specified Authentication Identity Provider to authenticate identity.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22126', '11', '22126', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001173', 'Authorization Application Name', NULL, 'The name of a data system or application which an authenticated person may access.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22127', '11', '22127', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001174', 'Authorization Application URI', NULL, 'The Uniform Resource Identifier (URI) of a data system or application which an authenticated person may access.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22128', '11', '22128', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001175', 'Authorization Application Role Name', NULL, 'The user role for which the person is allowed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22129', '11', '22129', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001176', 'Authorization Start Date', NULL, 'The date on which the an associated person is authorized to start using the application with the specified role.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22130', '11', '22130', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001177', 'Authorization End Date', NULL, 'The date after which the an associated person is no longer allowed to use the application with the specified role.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22131', '11', '22131', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001181', 'Assessment Item Bank Identifier', NULL, 'If the assessment is provided with an item bank, then this identifies the item bank: a unique code or number used by the item banking system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22132', '11', '22132', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001182', 'Assessment Item Bank Name', NULL, 'If the assessment is provided with an item bank, then this is the name of the item bank.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22133', '11', '22133', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001183', 'Assessment Form Version', NULL, 'The version number of the Assessment Form.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22134', '11', '22134', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001184', 'Learning Resource Published Date', NULL, 'The published date of an educational resource, such as instructional media, an assessment form, or section of an assessment form.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22135', '11', '22135', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001185', 'Assessment Form Accommodation List', NULL, 'The human readable list of one or more of the specific accommodations available. If no accommodations are provided, then this list will not be present.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22136', '11', '22136', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001186', 'Intended Administration Start Date', NULL, 'The beginning date of the time period in which the form is intended to be administered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22137', '11', '22137', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001187', 'Assessment Form Intended Administration End Date', NULL, 'The ending date of the time period in which the assessment form is intended to be administered.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22138', '11', '22138', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001188', 'Assessment Form Platforms Supported', NULL, 'A human readable list of delivery platforms the form will support.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22139', '11', '22139', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001189', 'Assessment Form Section Version', NULL, 'The version number of the Assessment Form Section.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22140', '11', '22140', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001190', 'Identification System for Assessment Form Section', NULL, 'A coding scheme that is used for identification of an Assessment Form Section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22141', '11', '22141', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001191', 'Assessment Form Section Identifier', NULL, 'A unique number or alphanumeric code assigned to the Assessment Form Section using the system specified by Identification System for Assessment Form Section.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22142', '11', '22142', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001192', 'Assessment Form Section Time Limit', NULL, 'If this section is timed, then this will identify the maximum amount of time the test taker can spend within this section.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22143', '11', '22143', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001193', 'Assessment Form Section Sealed', NULL, 'Indicates this section is sealed, meaning the test taker cannot enter the section until authorized by the proctor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22144', '11', '22144', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001194', 'Assessment Form Section Reentry', NULL, 'Indicates that this section can be re-entered, meaning the test taker can return to this section after they have left the section. A common example of this is a two section test where one section does not allow the use of a calculator and the other does. Typically the test taker cannot return to the non-calculator section after they have used a calculator.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22145', '11', '22145', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001195', 'Assessment Asset Version', NULL, 'A version number or label defined by the publisher.', 'Alphanumeric - 30 characters maximum', '0', 'In some use cases a date, such as Learning Resource Date Created may be used as an alternative to a version number. Each use case may adopt different rules depending on the application requirements for maintenance of current version only or the multiple objects/records representing the complete version history.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22146', '11', '22146', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001196', 'Assessment Asset Type', NULL, 'Specifies a predominant type of assessment asset represented by the Learning Resource. Assessment assets represent any content used to compose an assessment item, is referenced by an item but not part of the item content itself, or is content that is included as part of a section within an assessment form. Assets can be static content such as art work or dynamic assets such as calculators.', NULL, '1', 'The standard option set may be extended based on local and implementation-specific requirements. Commonly used options may be submitted for inclusion in future versions of CEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22147', '11', '22147', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001197', 'Assessment Asset Published Date', NULL, 'The date that this version of the asset was made available for use.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22148', '11', '22148', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001198', 'Assessment Asset Identifier', NULL, 'A unique code identifying the Assessment Asset provided by the authoring system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22149', '11', '22149', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001199', 'Assessment Asset Identifier Type', NULL, 'The type of identifier that is provided for this asset.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22150', '11', '22150', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001200', 'Assessment Asset Name', NULL, 'The name of the Assessment Asset.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22151', '11', '22151', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001201', 'Assessment Asset Owner', NULL, 'The name of the ownership rights holder or publisher of the asset.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22152', '11', '22152', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001202', 'Assessment Asset Content XML', NULL, 'XML encoded in UTF-8 representing the content of the Assessment Asset.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22153', '11', '22153', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001203', 'Assessment Asset Content Mime Type', NULL, 'MIME type to specifically indicate the Assessment Asset content type.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22154', '11', '22154', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001204', 'Assessment Asset Content URL', NULL, 'The Uniform Resource Locator (URL) location of the external Assessment Asset content.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22155', '11', '22155', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001143', 'Learning Resource Description', NULL, ' A short description of the Learning Resource.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22156', '11', '22156', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001144', 'Learning Resource Copyright Holder Name', NULL, 'The name(s) of the person(s) or organization(s) holding the copyright for the Learning Resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22157', '11', '22157', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001145', 'Learning Resource Copyright Year', NULL, 'The copyright year for the Learning Resource.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22158', '11', '22158', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001146', 'Learning Resource Concept Keyword', NULL, 'The significant topicality of the Learning Resource using free-text keywords and phrases.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22159', '11', '22159', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001147', 'Peer Rating System Name', NULL, 'The name of the scaling system used to specify the Peer Rating.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22160', '11', '22160', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001148', 'Learning Resource Peer Rating Value', NULL, 'An individual score, rating or level assigned to a Learning Resource by a person within the boundaries set by a Peer Rating System that may be aggregated to derive an overall score for the learning resource.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22161', '11', '22161', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001149', 'Peer Rating System Maximum Value', NULL, ' The maximum value allowed by the Peer Rating System.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22162', '11', '22162', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001150', 'Peer Rating System Minimum Value', NULL, 'The minimum value allowed by the Peer Rating System.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22163', '11', '22163', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001151', 'Peer Rating System Optimum Value', NULL, 'The optimum value allowed by the Peer Rating System. The optimum or best rating may be the maximum value, the minimum value, or something in between.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22164', '11', '22164', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001156', 'Organization Type', NULL, 'The type of educational organization or entity.', NULL, '1', 'This element is used in data models that are normalized and identifies the primary role of the organization.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22165', '11', '22165', 'Updated', 'Added new options to existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001122', 'NAEP Aspects of Reading', NULL, 'Aspects of reading defined by the National Assessment of Educational Progress (NAEP 2005b Framework).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22166', '11', '22166', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001160', 'Virtual Indicator', NULL, 'An indication that a childcare, early education, or early learning program, school, institution, program, or course section focuses primarily on instruction in which children and teachers are separated by time and/or location and interact through the use of computers and/or telecommunications technology.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22167', '11', '22167', 'Updated', 'Added elements to DES contexts to support Early Learning needs. Changed definition of element to support other domains.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001161', 'Course Section Instructional Delivery Mode', NULL, 'The primary setting or medium of delivery for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22168', '11', '22168', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001165', 'Goal Start Date', NULL, 'The date on which the goal becomes active.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22169', '11', '22169', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001166', 'Goal End Date', NULL, 'The date on which the goal expires or has been achieved.', 'YYYY-MM-DD', '0', 'For federal reporting use cases some codes are required to be reported and others are not. All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22170', '11', '22170', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001167', 'Peer Rating Date', NULL, 'The date on which the Peer Rating was entered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22171', '11', '22171', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001205', 'Facility Building Name', NULL, 'The full, legally accepted or popularly accepted name of a building.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22172', '11', '22172', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001206', 'Building Use Type', NULL, 'How a building is principally used, regardless of its original design.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22173', '11', '22173', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001207', 'Facility Space Description', NULL, 'A description of the space, as determined by its physical layout and built-in systems and equipment.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22174', '11', '22174', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001208', 'Facility Space Use Type', NULL, 'The primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22175', '11', '22175', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001209', 'County ANSI Code', NULL, 'County code as defined for the identification of counties and equivalent areas of the United States, Puerto Rico, and the insular areas as established by the American National Standards Institute (ANSI) Inter-National Committee for Information Technology Standards (INCITS) in specification BSR INCITS 31-200x or more current updates. See https://www.census.gov/library/reference/code-lists/ansi.html#par_statelist.', 'Integer - 5 digits with leading zeros', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22176', '11', '22176', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001210', 'Exit Grade Level', NULL, 'The grade level or primary instructional level at which a student exits a school, program, or an educational institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22177', '11', '22177', 'Updated', 'Added new option to the existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001211', 'Weapon Type', NULL, 'Identifies the type of weapon used during an incident.', NULL, '1', 'See Forum Guide to Crime, Violence, and Discipline Incident Data http://nces.ed.gov/pubs2011/2011806.pdf Forum Guide.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22178', '11', '22178', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001212', 'Assessment Session Staff Role Type', NULL, 'The type of role served related to the administration of an assessment session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22179', '11', '22179', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001214', 'Assessment Form Subtest Tier', NULL, 'In a hierarchy of subtests, this element represents the level of the sub test in the hierarchy. The top tier and default is zero.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22180', '11', '22180', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001215', 'Assessment Form Subtest Container Only', NULL, 'In a hierarchy of subtests, this indicates that this tier is only used as a level in the hierarchy and does not represent a scoring model.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22181', '11', '22181', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001216', 'Learning Resource Version', NULL, 'Defines the version of the learning resource as defined by the publisher.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22182', '11', '22182', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001217', 'Assessment Item Possible Response Correct Indicator', NULL, 'Indicates that the possible response is the correct response.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22183', '11', '22183', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001218', 'Assessment Performance Level Descriptive Feedback', NULL, 'A feedback message designed to be reported with the assessment performance level.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22184', '11', '22184', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001219', 'Assessment Result Diagnostic Statement', NULL, 'A statement intended for use by education professionals, using professional terminology, to interpret learner needs based on the scored/evaluated portion of an assessment. This statement may inform Descriptive Feedback given to the learner.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22185', '11', '22185', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001223', 'Financial Aid Application Type', NULL, 'The type of financial application completed by an individual.', NULL, '1', 'Common Data Set definition. This element may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22186', '11', '22186', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001224', 'Financial Need Determination Methodology', NULL, 'The methodology used to determine an individual''s financial need.', NULL, '1', 'Element should be used in combination with Financial Need.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22188', '11', '22188', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001225', 'Early Learning Oldest Age Authorized to Serve', NULL, 'The oldest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22189', '11', '22189', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001226', 'Language Translation Policy', NULL, 'Indicates that the organization or class/group has translation services available .', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22190', '11', '22190', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001142', 'Student Course Section Mark Final Indicator', NULL, 'Indicates that the mark is a final mark the learner has earned for the course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22191', '11', '22191', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001227', 'Status Start Date', NULL, 'The year, month and day that a status became applicable to an individual.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22192', '11', '22192', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001228', 'Status End Date', NULL, 'The last year, month and day when a status applied to an individual.', 'YYYY-MM-DD', '0', 'This element reflects the end date for a person''s status rather than that person''s participation in a program. Use Program Participation Exit Date if referring to a person''s participation in a program or receipt of services. Status dates and program participation dates don''t need to align, they are for different purposes. For example, for a homeless student the Status Begin Date and Status End Date elements are used to record when the student began being homeless to the date when the student ceased being homeless. The student may begin receiving services under a program for homeless students after becoming homeless and that program may continue to provide services after the student ceases to have the status of "homeless" and therefore have a Program Participation Start Date and Program Participation Exit Date that are different from the status dates. Students under the McKinney-Vento may continue to receive services until the end of a school year even if they become stably housed at some point during the year.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22193', '11', '22193', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001229', 'Maternal Guardian Education', NULL, 'The highest level of education attained by a person''s mother or maternal guardian', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22194', '11', '22194', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001230', 'Paternal Guardian Education', NULL, 'The highest level of education attained by a person''s father or paternal guardian', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22195', '11', '22195', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001231', 'Individualized Program Service Plan Date Type', NULL, 'An indication of the significance of a date to an individualized program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22196', '11', '22196', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001232', 'Individualized Program Date', NULL, 'The year, month and day on which the status of an individualized program for a student is significantly altered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22197', '11', '22197', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001233', 'Individualized Program NonInclusion Minutes Per Week', NULL, 'The number of minutes per week that a student with disabilities is served in a special education setting separate from his or her non-disabled peers.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22198', '11', '22198', 'Updated', 'Edited definition to fix mix up.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001234', 'Individualized Program Inclusion Minutes Per Week', NULL, 'The number of minutes per week that a student with disabilities is served in a regular classroom with his or her non-disabled peers.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22199', '11', '22199', 'Updated', 'Edited definition to fix mix up.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001235', 'Individualized Program Transition Plan Type', NULL, 'The post-school transition plan for the student recorded on their Individualized Education Program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22200', '11', '22200', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001236', 'Individualized Program Service Plan Date', NULL, 'The year, month and day on which the status of the service plan for a child is established or significantly altered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22201', '11', '22201', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001237', 'Individualized Program Service Plan Meeting Location', NULL, 'The place in which a child''s service plan meeting is held.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22202', '11', '22202', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001238', 'Individualized Program Service Plan Meeting Participants', NULL, 'The position titles of individuals who attend the service plan meeting.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22203', '11', '22203', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001239', 'Individualized Program Service Plan Signed By', NULL, 'The position titles of individuals who sign a written service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22204', '11', '22204', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001240', 'Individualized Program Service Plan Signature Date', NULL, 'The year, month and day on which the service plan document is signed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22205', '11', '22205', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001241', 'Individualized Program Service Plan Reevaluation Date', NULL, 'Date student will be reevaluated for continued placement in a support program(s).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22207', '11', '22207', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001242', 'Special Education Full Time Equivalency', 'Special Education FTE', 'Calculated ratio of time the student is in a special education setting. Values range from 0.00 to 1.00. If the student is in a special education setting 25% of the time, the value is .25; if 100% of the time, the value is 1.00.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22208', '11', '22208', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001243', 'Program Participation Status', NULL, 'The current status of the student''s program participation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22209', '11', '22209', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001244', 'Program Gifted Eligibility Criteria', NULL, 'State/local code used to determine a student''s eligibility for Gifted/Talented program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22210', '11', '22210', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001245', 'Credential Definition Category System', 'Credential Category System', 'The system that defines the categories of the qualification, achievement, personal or organizational quality, or aspect of an identity used in Credential Category Type.', 'Alphanumeric - 30 characters maximum', '0', 'This element recognizes formal adoption of categories for the Achievement Category Type to aid in comparability of data when a formally adopted vocabulary is used.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22211', '11', '22211', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001246', 'Learning Resource Education Level ', NULL, 'The education level, grade level or primary instructional level at which a Learning Resource is intended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22212', '11', '22212', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001248', 'Immunization Type', NULL, 'An indication of the type of immunization that an individual has satisfactorily received. (Note: The International Classification of Diseases (ICD) is maintained by the World Health Organization. The ICD is revised periodically to incorporate changes in the medical field, the most updated and detailed list of International Statistical Classification of Diseases and Related Health Problems can be found at http://www.who.int/classifications/apps/icd/icd10online).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22214', '11', '22214', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001249', 'Competency Definition Notes', 'Learning Standard Item Notes, Competency Item Notes', 'Information about the derivation of a Competency Definition Statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22215', '11', '22215', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001250', 'Competency Definition Version', 'Learning Standard Item Version, Competency Item Version', 'A label assigned by the publisher indicating the version of the competency framework statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22216', '11', '22216', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001251', 'Assessment Item Response Theory Parameter A', NULL, 'The Item Response Theory value representing the discrimination of the item. The a parameter is found by taking the slope of the line tangent to the item characteristic curve at the inflection point, B. The parameter is the steepness of the curve at its steepest point.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22217', '11', '22217', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001252', 'Assessment Item Response Theory Parameter B', NULL, 'The Item Response Theory value representing the difficulty of the item. It is the Theta value for the location of the inflection point of the item characteristic curve.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22218', '11', '22218', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001253', 'Assessment Item Response Theory Parameter Difficulty Category', NULL, 'A category for the difficulty of the item based on the Item Response Theory value.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22219', '11', '22219', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001254', 'Assessment Item Response Theory Parameter C', NULL, 'The Item Response Theory value for multiple choice items representing the guessing of the item. The c parameter is a lower asymptote. It is the low point of the curve as it moves to negative infinity on the horizontal axis. You can think of c as the probability that a chicken would get the item right.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22220', '11', '22220', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001255', 'Assessment Item Response Theory Parameter D1', NULL, 'For polytomous assessment items with more than two possible responses, this is the item response theory value representing the threshold between the first and second item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22221', '11', '22221', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001256', 'Assessment Item Response Theory Parameter D2', NULL, 'For polytomous assessment items with more than two possible responses, this is the item response theory value representing the threshold between the second and third item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22222', '11', '22222', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001257', 'Assessment Item Response Theory Parameter D3', NULL, 'For polytomous assessment items with more than three possible responses, this is the item response theory value representing the threshold between the third and fourth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22223', '11', '22223', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001258', 'Assessment Item Response Theory Parameter D4', NULL, 'For polytomous assessment items with more than four possible responses, this is the item response theory value representing the threshold between the fourth and fifth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22224', '11', '22224', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001259', 'Assessment Item Response Theory Parameter D5', NULL, 'For polytomous assessment items with more than five possible responses, this is the item response theory value representing the threshold between the fifth and sixth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22225', '11', '22225', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001904', 'Facility Enrollment Capacity', NULL, 'The maximum number of age appropriate students who can be enrolled in a facility such that the district''s programmatic, operational, and student/teacher work load requirements are met.', 'Integer', '0', 'This element will be phased out in version 12. It is being replaced by Enrollment Capacity.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22885', '11', '22885', 'Updated', 'Added Usage Note.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001905', 'Organization Relationship Type', NULL, 'The nature of one organization’s relationship to another.', NULL, '1', 'Related Body would be used for a use case in which no hierarchy exists, such as a foundation related to a postsecondary institution. Neither organization has authority over the other, but is related to one another.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22886', '11', '22886', 'Updated', 'Add new option to existing option set. Added Usage Note.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001906', 'Facility Ownership Indicator', NULL, 'Indicates the public or private entity holds legal title to the building and/or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22887', '11', '22887', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001907', 'Competency Framework Source URL', NULL, 'A URL that resolves to the original or authoritative competency framework document.', 'Alphanumeric - 512 characters maximum', '0', 'This is the URL of a human-readable artifact. Often this document is published in html and/or pdf and is used by the standard setting entity as part of its approval process.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22888', '11', '22888', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001908', 'Competency Definition Typical Age Range Minimum', NULL, 'The typical minimum age at which a person learns the defined competency.', 'Integer - greater than or equal to 0', '0', 'Use this element with "Competency Definition Typical Age Range Maximum" instead of "Competency Item Typical Age Range"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22889', '11', '22889', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001909', 'Competency Definition Typical Age Range Maximum', NULL, 'The typical maximum age at which a person learns the defined competency.', 'Integer - greater than or equal to 0', '0', 'Use this element with "Competency Definition Typical Age Range Minimum" instead of "Competency Item Typical Age Range"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22890', '11', '22890', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001910', 'Credential Definition Date Effective', NULL, 'Effective date of the content of a credential definition.', 'YYYY-MM-DD', '0', 'This is the date the content/definition of the credential became effective, not necessarily the date that one or more credentialing organizations began offering the credential.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22891', '11', '22891', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001911', 'Credential Offered Start Date', NULL, 'The first date a credential was offered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22892', '11', '22892', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001912', 'Credential Offered End Date', NULL, 'The last date a credential was offered.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22893', '11', '22893', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001913', 'CTDL Audience Level Type', 'ceterms:AudienceLevel', 'Type of level indicating a point in a progression through an educational or training context, for which the credential is intended; select from an existing enumeration of such types.', NULL, '1', 'This is similar to "PESC Award Level Type" and "Academic Award Level Conferred" but uses a different controlled vocabulary. See https://credreg.net/ctdl/terms/Credential#AudienceLevel.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22894', '11', '22894', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001914', 'Credential Definition Agent Role Type', NULL, 'The role that an organization or person has in relation to this Credential Definition based on terms defined by Credential Engine.', NULL, '1', 'Option codes and definitions are from the Credential Engine and the ceterms namespace, except the codes use Pascal case in CEDS to follow CEDS conventions and use camel case in the original ceterms.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22895', '11', '22895', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001915', 'Progress Achieving English Language Proficiency Indicator Type', NULL, 'The category used to report the school''s performance on the progress of achieving the English language proficiency indicator.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22896', '11', '22896', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001916', 'Progress Achieving English Language Proficiency State Defined Status', NULL, 'The state defined status assigned to the school''s performance on the progress of achieving the English language proficiency indicator.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22897', '11', '22897', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001917', 'Record Start Date Time', NULL, 'The start date and, optionally, time that a record is active as used to support version control.', 'YYYY-MM-DDTHH:MM:SS', '0', 'See CEDS Integrated Data Store for use in version control.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', '11', '22898', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001918', 'Record End Date Time', NULL, 'The end date and, optionally, time that a record is active as used to support version control.', 'YYYY-MM-DDTHH:MM:SS', '0', 'See CEDS Integrated Data Store for use in version control. All CEDS Exit and End Dates represent the last day of the date range specified.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', '11', '22899', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001919', 'Start Time', NULL, 'The starting hour, minute and second.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22900', '11', '22900', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001920', 'End Time', NULL, 'The ending hour, minute and second.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22901', '11', '22901', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001925', 'Additional Targeted Support and Improvement Status', NULL, 'The designation given to a school by the state for additional targeted support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22902', '11', '22902', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001929', 'Awaiting Foster Care Status', NULL, 'An indication of whether this child is awaiting foster care.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22903', '11', '22903', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001923', 'Comprehensive Support and Improvement Status', NULL, 'The designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22904', '11', '22904', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001928', 'Do Not Publish Indicator', NULL, 'An indication that the record should not be published.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', '11', '22905', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001921', 'Full Time Equivalency', NULL, 'The time a person is enrolled, employed, involved, or participates in the organization, divided by the time the organization defines as full-time for that role.', 'Numeric - up to 2 decimal places', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22906', '11', '22906', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001926', 'Grade Levels Approved', NULL, 'The specific grade or combination of grades approved by an organization to be offered by an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22907', '11', '22907', 'Updated', 'Added and removed options to the existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001930', 'Out of Workforce Indicator', NULL, 'An individual: (A) who is a displaced homemaker, as defined in section 3 of the Workforce Innovation and Opportunity Act (29 U.S.C. 3102); or (B) who (i)(I) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; or (II) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (ii) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22908', '11', '22908', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001922', 'Program Entry Reason', NULL, 'The documented or assumed reason a person is being served by a program.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22909', '11', '22909', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001924', 'Targeted Support and Improvement Status', NULL, 'The designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22910', '11', '22910', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001927', 'Telephone Number Listed Status', NULL, 'An indication of whether a telephone number is listed under a directory assistance service.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22911', '11', '22911', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001955', 'Adult Education Credential Attainment Employed Indicator', NULL, 'An indication of whether the adult education participant received a secondary school diploma or its recognized equivalent while enrolled in the adult education program or within one year of exiting the adult education program and was employed within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22912', '11', '22912', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001956', 'Adult Education Credential Attainment Postsecondary Credential Indicator', NULL, 'An indication of whether the adult education participant received a postsecondary credential while enrolled in the adult education program or within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22913', '11', '22913', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001954', 'Adult Education Credential Attainment Postsecondary Enrollment Indicator', NULL, 'An indication of whether the adult education participant received a secondary school diploma or its recognized equivalent while enrolled in the adult education program or within one year of exiting the adult education program and entered into postsecondary education within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22914', '11', '22914', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001939', 'Adult Education Program Exit Reason', NULL, 'The documented or assumed reason the person is no longer being served by the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22915', '11', '22915', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001935', 'Barrier to Internet Access In Residence', NULL, 'An indication of the barrier to having internet access in the student''s primary place of residence.', NULL, '1', 'This element is used in combination with the element "Internet Access in Residence." When asking for this information on a parent or student survey, the question could be phrased like this: "If the student is unable to access the internet in their primary place of residence, why not?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22916', '11', '22916', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001984', 'Children of Fallen Heroes Indicator', NULL, 'Pell-eligible students whose parent or guardian was a member of the U.S. armed forces and died as a result of military service performed in Iraq or Afghanistan after the events of 9/11 or a public safety officer and died as a result of active service in the line of duty. At the time of the parent''s or guardian''s death, the student must be less than 24 years of age or enrolled in college or career school at least part-time.', NULL, '1', 'The Children of Fallen heroes Indicator should follow the current legislation definitions and be updated as definitions change', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22917', '11', '22917', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001938', 'Cohort Median Earnings', NULL, 'The midpoint between the lowest and highest quarterly wage, in U.S. dollars, for the total number of persons included in the cohort for the period of time between the Employment Record Reference Period Start Date and Employment Record Reference Period End Date.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22918', '11', '22918', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001953', 'Credential Definition Terminal Degree Indicator', NULL, 'This degree is the highest degree that can be awarded in this classification of instructional programs field or program area.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22919', '11', '22919', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001970', 'Data Collection Academic School Year', NULL, 'The year for a reported school session for which the data is applicable.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22920', '11', '22920', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001969', 'Data Collection Close Date', NULL, 'The date the data collection closes or ends.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22921', '11', '22921', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001967', 'Data Collection Description', NULL, 'The description of what is included in the data within the context of the data collection based on the source system and collection period as defined by the Data Collection Open Date and Data Collection Close Date.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22922', '11', '22922', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001966', 'Data Collection Name', NULL, 'A human readable name used to identify the data within the collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22923', '11', '22923', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001968', 'Data Collection Open Date', NULL, 'The date the data collection opens or commences.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22924', '11', '22924', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001971', 'Data Collection School Year', NULL, 'The year for a reported school session in which the data collection occurs.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22925', '11', '22925', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001990', 'Data Collection Status', NULL, 'A process indicator of the level of stability, quality, and/or preparedness of the collection of data.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22926', '11', '22926', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001979', 'EDFacts Academic or Career and Technical Outcome Exit Type', NULL, 'The type of academic or career and technical outcome attained up to 90 days after exiting the facility or program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22927', '11', '22927', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001978', 'EDFacts Academic or Career and Technical Outcome Type', NULL, 'The type of academic or career and technical outcome attained while enrolled in the program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22928', '11', '22928', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001961', 'EDFacts Teacher Inexperienced Status', NULL, 'An indication of whether teachers have been identified as inexperienced as defined by the state.', NULL, '1', 'This element is used specifically for EDFacts reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22929', '11', '22929', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001962', 'EDFacts Teacher Out of Field Status', NULL, 'An indication of whether teachers have been identified as teaching a subject or field for which they are not certified or licensed as defined by the state.', NULL, '1', 'This element is used specifically for EDFacts reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22930', '11', '22930', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001981', 'Emancipated Minor', NULL, 'A minor student under the age of 18 who has been granted by legal action to have the power and capacity of an adult.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22931', '11', '22931', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001944', 'Federal Race and Ethnicity Declined', NULL, 'A parent, guardian, or student declined to report sufficient information for identifying a student''s federal race and/or ethnicity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22932', '11', '22932', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001947', 'First Generation College Student', NULL, 'The term First Generation College Student means an individual both of whose parents did not complete a baccalaureate degree or in the case of any individual who regularly resided with and received support from only one parent, an individual whose only such parent did not complete a baccalaureate degree.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22933', '11', '22933', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001989', 'Home Language Survey Administration Date', NULL, 'The year, month, and day on which the Home Language Survey is known to have been administered to the parent or guardian of this student.', 'YYYY-MM-DD', '0', 'The actual date of the administration is not what this element is capturing but rather when the result of the home language survey have been received by the school. The survey may have been completed in the school office upon registration of the student or could have been completed at home as part of a set of documents parents or guardians complete when enrolling students. When the completed home language survey has been provided to the school, the date received or the date the information is entered into a student information system as having been completed is sufficient to meet the intent of this element.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22934', '11', '22934', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001988', 'Home Language Survey Administration Indicator', NULL, 'An indication that the parent or guardian of this student was administered the Home Language Survey - a questionnaire given to parents or guardians that helps schools and local education agencies identify which students are potential English Learners and who will require assessment of their English language proficiency to determine whether they are eligible for language assistance services.', NULL, '1', 'The term "administration" would indicate that the results of the home language survey for this student have been provided to the school. The intent of this element is not to determine whether or not the school provided a home language survey to the parents/guardians of the student but instead to determine if the school received the results of that home language survey back from the parents/guardians of the student.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22935', '11', '22935', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001934', 'Internet Access In Residence', NULL, 'An indication of whether the student is able to access the internet in their primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Can the student access the internet in their primary place of residence?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22936', '11', '22936', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001936', 'Internet Access Type In Residence', NULL, 'The primary type of internet service used in the student''s primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "What is the primary type of internet service used in the student''s primary place of residence?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22937', '11', '22937', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001976', 'Internet Download Speed', NULL, 'The speed that data or information can be downloaded from a server on the internet to one''s device in megabits per second.', 'Numeric', '0', 'This information is collected via an internet speed test. In 2021, the FCC minimum broadband threshold is 25 Mbps. Display Example: 25.0', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22938', '11', '22938', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001937', 'Internet Performance In Residence', NULL, 'An indication of whether the student can complete the full range of learning activities, including video streaming and assignment upload, without interruptions caused by poor internet performance in their primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Can the student complete learning activities such as streaming a video and uploading assignments without interruptions caused by poor internet performance?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22939', '11', '22939', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001977', 'Internet Speed Test Date Time', NULL, 'The date and, optionally, time that the information was gathered.', 'YYYY-MM-DDTHH:MM:SS', '0', 'This information is collected and stored as part of each speed test. Display Example: 2021-09-20T10:30:00', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22940', '11', '22940', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001975', 'Internet Upload Speed', NULL, 'The speed that data or information can be sent from one''s device to another device or server on the internet in megabits per second.', 'Numeric', '0', 'This information is collected via an internet speed test. In 2021, the FCC minimum broadband threshold is 3 Mbps. Display Example: 3.0', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22941', '11', '22941', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001980', 'Marital Status', NULL, 'The marital status of the person as of today.', NULL, '1', 'This element supports FAFSA questions related to parent''s marital status and student''s marital status. The option set was developed using Census classifications.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22942', '11', '22942', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001950', 'NCES SIDE Date Processed', NULL, 'The year, month, and day on which the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) was processed through the BlindSIDE resource.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22943', '11', '22943', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001948', 'NCES SIDE Estimate', NULL, 'The National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) based on the person''s latitude and longitude location.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22944', '11', '22944', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001949', 'NCES SIDE Standard Error', NULL, 'The standard error applied to the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22945', '11', '22945', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001951', 'NCES SIDE Vintage Begin Year', NULL, 'The begin year for the American Community Survey (ACS) period estimates used to construct the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'YYYY', '0', 'The NCES SIDE base is constructed from ACS five-year microdata. The NCES SIDE Vintage Begin Year indicates the first year of that five-year microdata base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22946', '11', '22946', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001952', 'NCES SIDE Vintage End Year', NULL, 'The end year for the American Community Survey (ACS) period estimates used to construct the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'YYYY', '0', 'The NCES SIDE base is constructed from ACS five-year microdata. The NCES SIDE Vintage End Year indicates the last year of that five-year microdata base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22947', '11', '22947', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001957', 'Number of Days Tardy', NULL, 'The number of days a person is tardy when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22948', '11', '22948', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001983', 'Number of Dependents Type', NULL, 'The student''s relationship to the dependents who live with the student or receive more than half of the student''s support', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22949', '11', '22949', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001982', 'Number of Household College Students', NULL, 'Number of people, including the student, who will attend at least half-time in the current academic year, a program that leads to a college degree or certificate', 'Integer - greater than or equal to 0', '0', 'This information is collected on the FAFSA', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22950', '11', '22950', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001945', 'Personal Information Type', NULL, 'The type of personal information verified through the Personal Information Verification evidence.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22951', '11', '22951', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001932', 'Primary Learning Device Access', NULL, 'An indication of whether the primary learning device is shared or not shared with another individual', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Is the student''s primary learning device shared with anyone else?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22952', '11', '22952', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001931', 'Primary Learning Device Away From School', NULL, 'The type of device the student uses most often to complete learning activities away from school.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "What device does the student most often use to complete learning activities away from school?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22953', '11', '22953', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001933', 'Primary Learning Device Provider', NULL, 'The provider of the primary learning device.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Who provided the primary learning device to the student?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22954', '11', '22954', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001943', 'Race', NULL, 'The origins of a person.', NULL, '1', 'It is expected that a person may select more than one option with the exception of the options "Demographic Race Two or More Races" and "Race and Ethnicity Unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22955', '11', '22955', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001974', 'Record Status Creator Entity', NULL, 'The type of entity that created or indicated the Record Status Type', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22956', '11', '22956', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001973', 'Record Status Date', NULL, 'The date the record was marked with the Record Status Type.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22957', '11', '22957', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001972', 'Record Status Type', NULL, 'A process indicator of the level of stability, quality, and/or preparedness of the record.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22958', '11', '22958', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001946', 'Role', NULL, 'A description of the way in which a person relates to an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22959', '11', '22959', 'Updated', 'Added new option to the existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001964', 'Source System Data Collection Identifier', NULL, 'The identifier specified by the source system that uniquely identifies the data collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22960', '11', '22960', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001965', 'Source System Name', NULL, 'The name of the source system that provided the data within the collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22961', '11', '22961', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001959', 'Staff Compensation Annual Supplement', NULL, 'The annual sum of payments given to staff in addition to their regular wages.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22962', '11', '22962', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001960', 'Staff Compensation Longevity', NULL, 'Compensation paid to a staff member based on their years of service.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22963', '11', '22963', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001958', 'Staff Compensation Source Type', NULL, 'The source for the staff compensation a person receives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22964', '11', '22964', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001985', 'Staff Evaluation Part Name', NULL, 'The name of the component part that is being evaluated and scored.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22965', '11', '22965', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001987', 'Staff Evaluation Part Scale', NULL, 'The quantitative or qualitative range of possible scores/rating for a person''s performance on a component part (e.g., 0 - 10; Poor, Fair, Average, Good, Excellent).', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22966', '11', '22966', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001986', 'Staff Evaluation Part Score or Rating', NULL, 'The actual quantitative or qualitative assessment of a person''s performance on a component part that is being evaluated. ', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22967', '11', '22967', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001963', 'Student School Affiliation State Defined Status', NULL, 'An indication of the nature of a student''s affiliation, as defined by the state, with a public school and used generally, but not exclusively, for the purpose of determining residency, funding, or accountability.', NULL, '1', 'This element should be used in conjunction with the Public School Residence Status and the Responsible School Type elements to create specificity about the role a school plays or should play in the education of the student.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22968', '11', '22968', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001940', 'WIOA Barriers to Employment', NULL, 'A self-identified barrier as defined by the Workforce Innovation and Opportunity Act (WIOA) that is presumed to affect placement of a participant in unsubsidized employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22969', '11', '22969', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001941', 'WIOA Career Services', NULL, 'An indication of whether or not the individual has received services as identified in sec. 134(c)(2) of the Workforce Innovation and Opportunity Act (WIOA) consisting of (a) basic career services, (b) individualized career services, or (c) follow-up services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22970', '11', '22970', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001942', 'WIOA Training Services', NULL, 'An indication of whether or not the individual has received services as defined by the Workforce Innovation and Opportunity Act (WIOA), one or more courses or classes, or a structured regimen that provides the services in 20 CFR part 680.200 and leads to: (a) An industry-recognized certificate or certification, a certificate of completion of a registered apprenticeship, a license recognized by the State involved or the Federal Government, an associate or baccalaureate degree, or community college certificate of completion; (b) Consistent with § 680.350, a secondary school diploma or its equivalent; (c) Employment; or (d) Measurable skill gains toward a credential described in paragraph (a) or (b) of this section or employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22971', '11', '22971', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001999', 'Adjusted Capacity', NULL, 'The maximum number of participants that can be served in a program.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22972', '11', '22972', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002000', 'Adjusted Capacity Reason Type', NULL, 'Identifies the reason for adjusted capacity in a program. ', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22973', '11', '22973', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001995', 'Assessment Type Administered to English Learners', NULL, 'The types of assessments administered to English Learners.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22974', '11', '22974', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001994', 'Course Level Approval Indicator', NULL, 'An indication that there are school or program developed requirements for student participation in the course.', 'Option Set', '1', 'This element is used in conjunction with Course Level Characteristic.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22975', '11', '22975', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002001', 'Early Learning Age 2 and Older Capacity', NULL, 'The maximum number of children ages two and above that can be served.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22976', '11', '22976', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002002', 'Early Learning Age Under 2 Capacity', NULL, 'The maximum number of children under the age of two that can be served.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22977', '11', '22977', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001997', 'EDFacts Certification Status', NULL, 'An indication of whether an educator holds the certification or licensure required by their assignment.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22978', '11', '22978', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002012', 'Enrollment Capacity', NULL, 'Maximum number of age-appropriate students who can be enrolled. ', 'Integer', '0', 'Enrollment capacity can be collected at a variety of levels, such as classroom, grade, school, and facility.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979', '11', '22979', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002010', 'Federal Program Subgrant Code', NULL, 'An additional code appended to the Federal Program Code used to identify a subgrant of the grant identified by the Federal Program Code.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22980', '11', '22980', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002011', 'Financial Account Coding System Organization Type', NULL, 'The type of organization that created the coding system for the financial account information.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22981', '11', '22981', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002007', 'Financial Account Local Balance Sheet Code', NULL, 'A local code used to describe balance sheet accounts and statement of net position accounts which are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22982', '11', '22982', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002008', 'Financial Account Local Fund Classification', NULL, 'A local code used to classify a fund which is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22983', '11', '22983', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002009', 'Financial Account Local Program Code', NULL, 'A local code used to describe a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22984', '11', '22984', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002003', 'Financial Account Local Revenue Code', NULL, 'A local code used to record revenue and other receivables by source.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22985', '11', '22985', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002004', 'Financial Expenditure Local Function Code', NULL, 'A local code used to describe the activity for which a service or material object is acquired.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22986', '11', '22986', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002006', 'Financial Expenditure Local Level of Instruction Code', NULL, 'A local code used to classify the segregation of expenditures by instructional level.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22987', '11', '22987', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002005', 'Financial Expenditure Local Object Code', NULL, 'A local code used to describe the service or commodity obtained as the result of a specific expenditure.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22988', '11', '22988', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001993', 'Interdisciplinary Indicator', NULL, 'An indication that the course, projects, and/or learning activities develop knowledge and skills across multiple subject areas and highlight connections between subject area domains, with formal collaboration among teachers across subject areas.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22989', '11', '22989', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002013', 'Primary Program Indicator', NULL, 'An indication that the associated program is the primary function of this organization.', 'Option Set', '1', 'This element is used in conjunction with Program Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22990', '11', '22990', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001991', 'Project-Based Learning Indicator', NULL, 'An indication that an instructional model is being implemented wherein a student learns through answering complex questions or solving for real-world problems. Also called problem-based learning, inquiry-based learning, or learning-by-doing.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22991', '11', '22991', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001992', 'Project-Based Learning Type', NULL, 'The type of project-based instruction being offered.', 'Option Set', '1', 'Select all that apply.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22992', '11', '22992', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001996', 'Special Education Teacher Qualification Status', NULL, 'An indication of whether special education teachers are fully certified in the State..', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22993', '11', '22993', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001998', 'Student Support Service Availability Type', NULL, 'The group of students to whom related or ancillary service is offered within the formal educational system or by an outside agency which provides non-instructional service to support the general welfare of students.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22994', '11', '22994', 'New', 'Added new element to DES.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000436', 'Designated Graduation School Identifier', NULL, 'The NCES school identification number that identifies the school or facility from which a student expects to graduate.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21426', '11', '21426', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000437', 'Migrant Education Program Enrollment Type', 'MEP Enrollment Type', 'The type of school/migrant education project in which instruction and/or support services are provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21427', '11', '21427', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000438', 'Immunization Record Flag', NULL, 'Indicates whether the school or MEP program has immunization records on file for the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21428', '11', '21428', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000439', 'Medical Alert Indicator', NULL, 'Alert indicator for a medical/health condition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21429', '11', '21429', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000440', 'Migrant Education Program Project Based', 'MEP Project Based', 'Indicates the type of MEP project based on the location where the MEP services are held.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21430', '11', '21430', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000442', 'Appealed Adequate Yearly Progress Designation', 'Appealed AYP Designation', 'An indication that a school or district appealed its AYP designation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21432', '11', '21432', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000443', 'Adequate Yearly Progress Appeal Changed Designation', 'AYP Appeal Changed Designation', 'An indication that the appeal resulted in a change in a school or district''s AYP designation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21433', '11', '21433', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000444', 'Adequate Yearly Progress Appeal Process Date', 'AYP Appeal Process Date', 'The last date that an appeal of an AYP designation was processed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21434', '11', '21434', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000445', 'State Transferability of Funds', NULL, 'Did the State transfer funds under the State Transferability authority of Section 6123(a)', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21435', '11', '21435', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000446', 'Local Education Agency Transferability of Funds', 'LEA Transferability of Funds', 'LEA notified the State that they were transferring funds under the LEA Transferability authority of Section 6123(b).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21436', '11', '21436', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000447', 'Title III Language Instruction Program Type', NULL, 'The type of Title III language instructional education programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21437', '11', '21437', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000448', 'Instruction Language', NULL, 'The language of instruction, other than English, used in the program or course.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21438', '11', '21438', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000449', 'Barrier to Educating Homeless', NULL, 'Barriers to the enrollment and success of homeless children and youths.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21439', '11', '21439', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000451', 'Local Education Agency Funds Transfer Type', 'LEA Funds Transfer Type', 'An indication of the type of transfer for an LEAs that transferred funds from an eligible program to another eligible program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21441', '11', '21441', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000452', 'Funds Transfer Amount', NULL, 'The total amount of FY appropriated funds transferred from and to each eligible program.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21442', '11', '21442', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000453', 'State Assessment Standards Funding', NULL, 'The percentage of funds used to pay the costs of the development of the State assessments and standards required by section 1111(b).', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21443', '11', '21443', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000454', 'State Assessment Administration Funding', NULL, 'The percentage of funds used to administer assessments required by section 1111(b) or to carry out other activities described in section 6111 and other activities related to ensuring that the State’s schools and local educational agencies are held accountable for results.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21444', '11', '21444', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000455', 'Date State Received Title III Allocation', NULL, 'Annual date the State receives the Title III allocation from U.S. Department of Education (ED).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21445', '11', '21445', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000456', 'Date Title III Funds Available to Subgrantees', NULL, 'Annual date that Title III funds are available to approved subgrantees.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21446', '11', '21446', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000457', 'Number of Days for Title III Subgrants', NULL, 'Average number of days for States receiving Title III funds to make subgrants to subgrantees beginning from July 1 of each year, except under conditions where funds are being withheld.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21447', '11', '21447', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000461', 'Innovative Dollars Spent', NULL, 'The total Title V, Part A funds expended by LEAs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21451', '11', '21451', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000462', 'Innovative Dollars Spent on Strategic Priorities', NULL, 'The total amount of Title V, Part A funds expended by LEAs for the four strategic priorities.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21452', '11', '21452', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000463', 'Migrant Education Program Project Type', 'MEP Project Type', 'Type of project funded in whole or in part by MEP funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21453', '11', '21453', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000464', 'Innovative Programs Funds Received', NULL, 'The total Title V, Part A funds received by LEAs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21454', '11', '21454', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000466', 'Literacy Assessment Administered Type', NULL, 'The type of literacy test administered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21456', '11', '21456', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000467', 'Literacy Goal Met Status', NULL, 'The participant showed "significant learning gains" on measures of reading, the definition of which is determined at the State level.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21457', '11', '21457', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000468', 'Literacy Post Test Status', NULL, 'The participant completed a literacy post-test.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21458', '11', '21458', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000469', 'Literacy Pre Test Status', NULL, 'The participant completed a literacy pre-test.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21459', '11', '21459', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000470', 'Number of Immigrant Program Subgrants', NULL, 'The number of immigrant program [3114(d)(1)] subgrants.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21460', '11', '21460', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000471', 'Safe and Drug Free Indicator Name', NULL, 'The name of the performance indicator for student behaviors under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21461', '11', '21461', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000472', 'Safe and Drug Free Instrument', NULL, 'The instrument or data source for reported performance indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21462', '11', '21462', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000473', 'Safe and Drug Free Collection Frequency', NULL, ' The frequency of data collection for performance indicator under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21463', '11', '21463', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000474', 'Safe and Drug Free Year Most Recent Collection', NULL, 'The academic year of the most recent collection of the performance indicator under the Sage and Drug-Free Schools and Communities Act.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21464', '11', '21464', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000475', 'Safe and Drug Free Target', NULL, 'The targeted performance for the given indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21465', '11', '21465', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000476', 'Safe and Drug Free Performance', NULL, 'Actual performance for the given indicator of student behavior under the Safe and Drug-Free Schools and Communities Act', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21466', '11', '21466', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000477', 'Safe and Drug Free Baseline', NULL, 'The baseline of the performance indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21468', '11', '21468', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000478', 'Safe and Drug Free Baseline Year', NULL, 'The academic year the baseline was established.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21469', '11', '21469', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000479', 'School Improvement Reserved Funds Percentage', NULL, 'An indication of the percentage of the Title I, Part A allocation that the SEA reserved in accordance with Section 1003(a) of ESEA and §200.100(a) of ED''s regulations governing the reservation of funds for school improvement under Section 1003(a) of ESEA.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21470', '11', '21470', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000480', 'School Improvement Allocation', NULL, 'The amount of Section 1003(a) and 1003(g) allocations to LEAs and Schools.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21471', '11', '21471', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000481', 'School Improvement Exit Date', NULL, 'Date the school exited school improvement status.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21472', '11', '21472', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000482', 'Terminated Title III Programs Due to Failure', NULL, 'An indication of whether a Title III program or activity was terminated due to failure to meet goals.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21473', '11', '21473', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000484', 'Neglected or Delinquent Obtained Employment', NULL, 'An indication that a Neglected or Delinquent student obtained employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21475', '11', '21475', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000485', 'Program in Multiple Purpose Facility', NULL, 'An institution/facility/program that serves more than one programming purpose. For example, the same facility may run both a juvenile correction program and a juvenile detention program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21476', '11', '21476', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000486', 'Type of Use of the Rural Low-Income Schools Program', 'Type of Use of the RLIS Program', 'The type of use of the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21477', '11', '21477', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000487', 'Title III Professional Development Type', NULL, 'The type of Title III professional development utilized.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21478', '11', '21478', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000488', 'Disciplinary Action Taken', NULL, 'Identifies the consequences of an incident for the student(s) involved in an incident as perpetrator(s).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21479', '11', '21479', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000490', 'Prekindergarten Daily Length', NULL, 'The portion of a day that a pre-kindergarten program is provided to the students it serves.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21481', '11', '21481', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000491', 'Kindergarten Daily Length', NULL, 'The portion of a day that a kindergarten program is provided to the students it serves.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21482', '11', '21482', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000494', 'Calendar Code', NULL, 'A unique number assigned by a school district to a school calendar.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21485', '11', '21485', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000495', 'Calendar Description', NULL, 'A description or identification of the calendar.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21486', '11', '21486', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000496', 'Days in Session', NULL, 'The total number of days that the school was or is anticipated to be in session during the school year. Also included are days on which the education institution facility is closed and the student body as a whole is engaged in planned activities off-campus under the guidance and direction of staff members.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21487', '11', '21487', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000497', 'First Instruction Date', NULL, 'The year, month and day of the first day of student instruction for the school year.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21488', '11', '21488', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000498', 'Last Instruction Date', NULL, 'The year, month and day of the last day of student instruction (including days or times that students are present for purposes of testing and/or evaluation, but not including whole or part-days whose sole purposes is for distribution of report cards).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21489', '11', '21489', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000499', 'Instructional Minutes', NULL, 'The total number of instruction minutes in a given session, as determined by time in class, time on task (e.g., engaged in a class), or as estimated by a qualified course designer.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21490', '11', '21490', 'Updated', 'Added elements to DES context to support K12 Implementation.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000500', 'Minutes Per Day', NULL, 'The number of minutes in the day in which the school is normally in session.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21491', '11', '21491', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000501', 'Incident Identifier', NULL, 'A locally assigned unique identifier (within the school or school district) to identify each specific incident or occurrence. The same identifier should be used to document the entire incident even if it included multiple offenses and multiple offenders.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21492', '11', '21492', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000502', 'Incident Date', NULL, 'The year, month and day on which the incident occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21493', '11', '21493', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000503', 'Incident Time', NULL, 'An indication of the time of day the incident took place.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21494', '11', '21494', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000504', 'Facilities Identifier', NULL, 'A locally assigned unique number or alphanumeric code used to capture precise information on locations specific to a school (e.g., building number, class number, hall number, school bus number, computer station number, or internet protocol (IP) address).', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21495', '11', '21495', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000505', 'Incident Cost', NULL, 'The value of any quantifiable monetary loss directly resulting from the incident. Examples include the value of repairs necessitated by vandalism of a school facility, the value of personnel resources used for repairs or consumed by the incident, the value of stolen items, and the value of time consumed by an incident (e.g., instructional time involved in evacuating a school during a false fire alarm). Cost may be reported by specific monetary amount or range.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21496', '11', '21496', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000506', 'Incident Reporter Type', NULL, 'Information on the type of person who reported the incident. When known and/or if useful, use a more specific option code (e.g., "Counselor" rather than "Professional Staff").', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21497', '11', '21497', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000507', 'Reporter Identifier', NULL, 'Identifies the reporter of the incident using a pre-existing unique student identifier or unique staff identifier, when the reporter is a student or staff member.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21498', '11', '21498', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000508', 'Incident Description', NULL, 'The description for an incident.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21499', '11', '21499', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000509', 'Incident Behavior', NULL, 'Categories of behavior coded for use in describing an incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21500', '11', '21500', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000510', 'Incident Injury Type', NULL, 'An indication of the occurrence of physical injury to participants involved in the incident and, if so, the level of injury sustained.', NULL, '1', 'Incident Injury Type can be linked to any person involved in the incident.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21501', '11', '21501', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000511', 'Duration of Disciplinary Action', NULL, 'The length, in school days, of the disciplinary action.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21502', '11', '21502', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000512', 'Related to Zero Tolerance Policy', NULL, 'An indication of whether or not any of the disciplinary actions taken against a student were imposed as a consequence of state or local zero tolerance policies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21503', '11', '21503', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000513', 'Full Year Expulsion', NULL, 'An expulsion with or without services for a period of one full year (i.e., 365 days).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21504', '11', '21504', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000514', 'Shortened Expulsion', NULL, 'An expulsion with or without services that is shortened to a term of less than one year by the superintendent or chief administrator of a school district.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21505', '11', '21505', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000515', 'Incident Time Description Code', NULL, 'A code for the description of the time of day that an incident took place.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21506', '11', '21506', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000364', 'Classroom Identifier', NULL, 'A unique number or alphanumeric code assigned to a room by a school, school system, state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21507', '11', '21507', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000517', 'Course Description', NULL, 'A description of the course content and/or goals. Reference may be made to state or national content standards.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21508', '11', '21508', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000518', 'Core Academic Course', NULL, 'The course meets the state definition of a core academic course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21509', '11', '21509', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000519', 'Class Beginning Time', NULL, 'An indication of the time of day the class begins.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21510', '11', '21510', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000520', 'Class Ending Time', NULL, 'An indication of the time of day the class ends.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21511', '11', '21511', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000521', 'Class Meeting Days', NULL, 'The day(s) of the week (e.g., Monday, Wednesday) that the class meets or an indication that a class meets "out-of-school" or "self-paced".', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21512', '11', '21512', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000522', 'Class Period', NULL, 'An indication of the portion of a typical daily session in which students receive instruction in a specified subject (e.g., morning, sixth period, block period, or AB schedules).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21513', '11', '21513', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000523', 'Timetable Day Identifier', NULL, 'The unique identifier for the locally defined rotation cycle date code when the class meets (e.g., in a two day schedule, valid values could be "A" and "B", or "1" and "2").', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21514', '11', '21514', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000524', 'Receiving Location of Instruction', NULL, 'The type of location at which instruction or service takes place.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21515', '11', '21515', 'Updated', 'Added elements to DES context to support K12 Implementation.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000525', 'Primary Assignment Indicator', NULL, 'An indication of whether the assignment is the staff member''s primary assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21516', '11', '21516', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000526', 'Assignment Start Date', NULL, 'The year, month and day from which the assignment is valid.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21517', '11', '21517', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000527', 'Assignment End Date', NULL, 'The last year, month and day on which the assignment is valid.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21518', '11', '21518', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000528', 'Itinerant Teacher', NULL, 'An indication of whether a teacher provides instruction in more than one instructional site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21519', '11', '21519', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000529', 'First Entry Date into a US School', NULL, 'The year, month and day of a person''s initial enrollment into a United States school.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21520', '11', '21520', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000530', 'Promotion Reason', NULL, 'The nature of the student''s promotion or progress at the end of a given school term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21521', '11', '21521', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000531', 'Nonpromotion Reason', NULL, 'The primary reason as to why a staff member determined that a student should not be promoted (or be demoted).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21522', '11', '21522', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000532', 'Public School Residence Status', NULL, 'An indication of the location of a persons legal residence relative to (within or outside) the boundaries of the public school attended and its administrative unit.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21523', '11', '21523', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000533', 'School Operational Status', NULL, 'The current status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21524', '11', '21524', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000534', 'Operational Status Effective Date', NULL, 'The effective date for a change in operational status.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21525', '11', '21525', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000535', 'IDEA Educational Environment for School Age', NULL, 'The setting in which children ages 6 through 21, receive special education and related services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21526', '11', '21526', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000536', 'Title III Accountability Progress Status', NULL, 'An indication of the progress made by a student toward English proficiency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21527', '11', '21527', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000537', 'Local Education Agency Type', NULL, ' The classification of education agencies within the geographic boundaries of a state according to the level of administrative and operational control.', NULL, '1', 'Option definitions from EDFacts documents
EDFacts Data Set for School Years 2016-17, 2017-18, and 2018-19 -- Attachment B-2 (February 2016).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21528', '11', '21528', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000538', 'Discipline Method of Children with Disabilities', NULL, 'The type of suspension or expulsion used for the discipline of children with disabilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21529', '11', '21529', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000539', 'IDEA Interim Removal Reason', NULL, 'The reasons why children with disabilities were unilaterally removed from their current educational placement to an interim alternative educational setting.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21530', '11', '21530', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000540', 'Assessment Registration Reason Not Completing', NULL, 'The primary reason a participant did not complete an assessment.', NULL, '1', 'This may apply to any learner, but is used particularly for reporting based on children with disabilities (IDEA).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21531', '11', '21531', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000541', 'IDEA Interim Removal', NULL, 'The type of interim removal from current educational setting experienced by children with disabilities (IDEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21532', '11', '21532', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000542', 'Consolidated Migrant Education Program Funds Status', 'Consolidated MEP Funds Status', 'An indication of whether the school has a school-wide program, as defined by current law, in which federal Migrant Education Program (MEP) funds are consolidated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21533', '11', '21533', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000543', 'Migrant Education Program Personnel Indicator', 'MEP Personnel Indicator', 'An indication that a staff member''s salary is paid by the Title I, Part C Migrant Education Program (MEP) of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21534', '11', '21534', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000544', 'Annual Measurable Achievement Objective Proficiency Attainment Status for LEP Students', 'AMAO Proficiency Attainment Status for LEP Students', 'An indication whether the state, district or school met the Annual Measurable Achievement Objectives (AMAO) for attaining English proficiency for limited English proficient (LEP) students under Title III of ESEA.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21535', '11', '21535', 'Removed', 'Marked "Annual Measurable Achievement Objective Proficiency Attainment Status for LEP Students" as "Removed". Element is no longer in use.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000545', 'Discipline Reason', NULL, 'The reason why the student was disciplined.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21536', '11', '21536', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000546', 'Technology Skills Standards Met', NULL, 'An indication that the person has achieved acceptable performance on a standards-based profile of technology user skills as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21537', '11', '21537', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000547', 'Federal Program Code', NULL, 'The unique five-digit number assigned to each federal program as listed in the Assistance Listings. See https://sam.gov/content/assistance-listings', 'Numeric - up to 2 digits before and 3 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21538', '11', '21538', 'Updated', 'Updated definition to change link to sam.gov.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000548', 'Federal Programs Funding Allocation Type', NULL, 'The type of federal program funding allocation or distribution made.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21539', '11', '21539', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000549', 'Federal Programs Funding Allocation', NULL, 'The amount of federal dollars distributed to local education agencies (LEAs), retained by the state education agency (SEA) for program administration or other approved state-level activities (including unallocated, transferred to another state agency, or distributed to entities other than LEAs).', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21540', '11', '21540', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000550', 'Title I Schoolwide Program Participation', NULL, 'An indication that the student participates in and is served by a schoolwide program (SWP) under Title I of ESEA, Part A, Sections 1114.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21541', '11', '21541', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000551', 'Title I Targeted Assistance Participation', NULL, 'An indication that the student participates in and is served by a targeted assistance (TAS) program under Title I of ESEA, Part A, Sections 1115.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21542', '11', '21542', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000552', 'Title I Targeted Assistance Staff Funded', NULL, 'An indication that a staff member is targeted assistance (TAS) program staff funded by Title I, Part A, Section 1115 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21543', '11', '21543', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000553', 'Proficiency Target Status for Reading and Language Arts', NULL, 'An indication of whether the school or district met the reading/language arts proficiency target in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21544', '11', '21544', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000554', 'Annual Measurable Achievement Objective Progress Attainment Status for LEP Students', 'AMAO Progress Attainment Status for LEP Students', 'An indication whether the state, district, or school met the Annual Measurable Achievement Objective (AMAO) for making progress in learning English for limited English proficient (LEP) students under Title III of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21545', '11', '21545', 'Removed', 'Marked "Annual Measurable Achievement Objective Progress Attainment Status for LEP Students" as "Removed". Element is no longer in use.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000555', 'Discipline Method for Firearms Incidents', NULL, 'The method used to discipline students who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21546', '11', '21546', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000556', 'IDEA Discipline Method for Firearms Incidents', NULL, 'The methods used to discipline students who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21547', '11', '21547', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000557', 'Firearm Type', NULL, 'The type of firearm.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21548', '11', '21548', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000558', 'Special Education Support Services Category', NULL, 'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21549', '11', '21549', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000559', 'IDEA Educational Environment for Early Childhood', NULL, 'The program in which children ages 3 through 5 attend and in which these children receive special education and related services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21550', '11', '21550', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000560', 'Rural Education Achievement Program Alternative Funding Status', 'REAP Alternative Funding Status', 'An indication that the local education agency (LEA) notified the state of the LEA''s intention to use REAP-Flex Alternative Uses of Funding Authority during the school year as specified in the Title VI, Section 6211 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21552', '11', '21552', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000561', 'Progress Level', NULL, 'The amount of progress shown in academic subjects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21553', '11', '21553', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000562', 'Migrant Prioritized for Services', NULL, 'An indication that a migratory child 1) is failing to meet, or most at risk of failing to meet, the state''s challenging academic content standards and student academic achievement standards; and 2) has experienced interruptions in their education during the regular school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21554', '11', '21554', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000563', 'Migrant Education Program Continuation of Services Status', 'MEP Continuation of Services Status', 'An indication that migrant children are receiving instructional or support services under the continuation of services authority ESEA Title III Section 1304(e)(2)-(3).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21555', '11', '21555', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000564', 'Special Education Age Group Taught', NULL, 'The age range of special education students taught.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21556', '11', '21556', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000565', 'Title III English Learner Participation Status', NULL, 'An indication that an English Learner student is served by an English language instruction educational program supported with Title III of ESEA funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21557', '11', '21557', 'Updated', 'Removed Alternate Name.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000566', 'Technology Literacy Status in 8th Grade', NULL, 'An indication of the technology literacy of 8th graders.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21558', '11', '21558', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000567', 'Supplemental Educational Services Funds Spent', 'SES Funds Spent', 'The dollar amount spent on supplemental educational services during the school year under Title I, Part A, Section 1116 of ESEA as amended.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21559', '11', '21559', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000568', 'Public School Choice Funds Spent', NULL, 'The dollar amount spent on transportation for public school choice during the school year under Title I of ESEA as amended, Part A, Section 1116.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21560', '11', '21560', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000569', 'Truant Status', NULL, 'An indication that a student is identified as a truant as defined by state rules.', NULL, '1', 'Some data systems may require additional information on truancy based on local requirements. For example, capturing students who reach the statutory truancy status but then are in and out of attendance after that point, may require use of Number of Days in Attendance in conjunction with Truancy.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21561', '11', '21561', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000571', 'Pre and Post Test Indicator', NULL, 'An indication of whether students took both a pre-test and a post-test to measure academic improvement.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21563', '11', '21563', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000572', 'Assessment Result Pretest Outcome', NULL, 'The results of a pre-test in academic subjects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21564', '11', '21564', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000573', 'Proficiency Status', NULL, 'An indication of whether a student''s scores were proficient.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21565', '11', '21565', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000574', 'Supplemental Education Services Public School Choice Twenty Percent Obligation', 'SES Public School Choice Twenty Percent Obligation', 'The dollar amount of the 20 percent reservation for supplemental educational services and choice-related transportation.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21566', '11', '21566', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000575', 'Supplemental Educational Services Per Pupil Expenditure', 'SES Per Pupil Expenditure', 'The maximum dollar amount that may be spent per child for expenditures related to supplemental educational services under Title I of the ESEA.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21567', '11', '21567', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000577', 'Disability Status', NULL, 'An indication of whether a person is classified as disabled under the American''s with Disability Act (ADA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21569', '11', '21569', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000578', 'Educational Services After Removal', NULL, 'An indication of whether children (students) were provided educational services when removed from the regular school program for disciplinary reasons.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21570', '11', '21570', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000579', 'Annual Measurable Achievement Objective AYP Progress Attainment Status for LEP Students', 'AMAO AYP Progress Attainment Status for LEP Students', 'An indication of whether the state or district met the annual measurable objectives for the Limited English Proficient (LEP) student subgroup in mathematics and reading/language arts.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21572', '11', '21572', 'Removed', 'Marked "Annual Measurable Achievement Objective AYP Progress Attainment Status for LEP Students" as "Removed". Element is no longer in use.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000580', 'Single Parent or Single Pregnant Woman Status', NULL, 'A student who, at some time during the school year, is either a pregnant female student who is unmarried; or a male or female student who is unmarried or legally separated from a spouse and has a minor child or children.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21573', '11', '21573', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000581', 'Perkins English Learner Status', NULL, 'A secondary student, an adult, or an out-of-school youth, who has limited ability in speaking, reading, writing, or understanding English language, and (a) whose native language is a language other than English, or (b) who lives in a family or community environment in which a language other than English is the dominant language.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21574', '11', '21574', 'Updated', 'Changed Name, Definition, Technical Name and removed Alternate Name.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000584', 'Cohort Graduation Year', NULL, 'The year the cohort is expected to graduate.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21577', '11', '21577', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000585', 'State Poverty Designation', NULL, 'The designation of a school’s poverty quartile for purposes of determining classes taught by highly qualified teachers in high and low poverty schools, according to state’s indicator of poverty.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21578', '11', '21578', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000586', 'Postsecondary Enrollment Action', NULL, 'The action taken with respect to postsecondary enrollment by the student who graduated from the school, LEA or state in the past two years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21579', '11', '21579', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000587', 'Internet Access', NULL, 'The type of internet access available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21580', '11', '21580', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000588', 'Career Technical Education Nontraditional Gender Status', 'CTE Nontraditional Gender Status', 'An indication of whether CTE participants were members of an underrepresented gender group (where one gender comprises less than 25 percent of the persons employed in those occupations or field of work).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21581', '11', '21581', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000589', 'Faculty and Administration Performance Level', NULL, 'The levels used in district evaluation systems for assigning teacher or principal performance ratings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21582', '11', '21582', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000590', 'Program Participation Start Date', NULL, 'The year, month and day on which the person began to participate in a program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21583', '11', '21583', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000591', 'Program Participation Exit Date', NULL, 'The year, month and day on which the person ceased to participate in a program.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21584', '11', '21584', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000592', 'Career and Technical Education Participant', 'CTE Participant', 'An indication a student has met the state-defined threshold of Career and Technical Education participation as defined in the State''s approved Perkins IV State Plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21585', '11', '21585', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000593', 'Career and Technical Education Nontraditional Completion', 'CTE Nontraditional Completion', 'An indication that the CTE student has completed a CTE program in a nontraditional field (where one gender comprises less than 25 percent of the persons employed in those occupations or fields of work).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21586', '11', '21586', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000594', 'Responsible District Type', NULL, 'The type of responsibility the district has for the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21587', '11', '21587', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000595', 'Responsible School Type', NULL, 'The type of services/instruction the school is responsible for providing to the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21588', '11', '21588', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000596', 'Additional Credit Type', NULL, 'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21589', '11', '21589', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000597', 'Assessment Session Location', NULL, ' The description of the place where an assessment is administered.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21590', '11', '21590', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000598', 'Alternate Day Name', NULL, 'An alternate name used for the school day, typically used for the bell schedule (e.g., Blue day, Red day).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21591', '11', '21591', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000599', 'Absent Attendance Category', NULL, ' The category that describes how the student spends his or her time not physically present on school grounds and not participating in instruction or instruction-related activities at an approved off-grounds location.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21592', '11', '21592', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000600', 'Present Attendance Category', NULL, 'The category that describes how the student spends his or her time when attending an instructional program approved by the state and/or school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21593', '11', '21593', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000601', 'Attendance Event Type', NULL, 'The type of attendance event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21594', '11', '21594', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000602', 'Building Site Number', NULL, 'The number of the building on the site, if more than one building shares the same address.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21595', '11', '21595', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000603', 'Calendar Event Type', NULL, 'A type of scheduled or unscheduled calendar event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21596', '11', '21596', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000605', 'Assessment Content Standard Type', NULL, 'An indication as to whether an assessment conforms to a standard.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21598', '11', '21598', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000606', 'Latitude', NULL, 'The north or south angular distance from the equator that, when combined with longitude, reflects an estimation of where the address is physically situated.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21599', '11', '21599', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000607', 'Longitude', NULL, 'The east or west angular distance from the prime meridian that, when combined with latitude, reflects an estimation of where the address is physically situated.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21600', '11', '21600', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000609', 'Discipline Action Length Difference Reason', NULL, 'The reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21602', '11', '21602', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000610', 'Displaced Student Status', NULL, 'A student who was enrolled, or eligible for enrollment, but has enrolled in another place because of a crisis.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21603', '11', '21603', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000611', 'Crisis Code', NULL, 'A unique number or alphanumeric code used to identify a crisis. This code should be able to accommodate numerous crises within a single school year. It is associated with the displaced student identifier in order to link a crisis to a student who was displaced or otherwise affected by the event. If the same code values are to be used over multiple years, it is important to have enough crisis-specific items (e.g., school year, date/time) to keep the events unique over time.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21604', '11', '21604', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000612', 'Crisis Name', NULL, 'The name of the crisis that caused the displacement of students.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21605', '11', '21605', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000613', 'Crisis Type', NULL, 'The type or category of crisis (ex., chemical, earthquake, flood, wildfire, etc.).', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21606', '11', '21606', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000614', 'Crisis Start Date', NULL, 'The year, month and day on which the crisis affected the agency. This date may not be the same as the date the crisis occurred if evacuation orders are implemented in anticipation of a crisis.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21607', '11', '21607', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000616', 'Grade Value Qualifier', NULL, 'The scale of equivalents, if applicable, for grades awarded as indicators of performance in schoolwork. For example, numerical equivalents for letter grades used in determining a student''s Grade Point Average (A=4, B=3, C=2, D=1 in a four-point system) or letter equivalents for percentage grades (90-100%=A, 80-90%=B, etc.)', 'Alphanumeric - 100 characters maximum', '0', 'A list of "Academic Grade Qualifiers" is available from the Association of American Medical Colleges, 2450 N St., N.W., Washington, DC 20037', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21609', '11', '21609', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000617', 'Incident Location', NULL, 'Identifies where the incident occurred and whether or not it occurred on campus.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21610', '11', '21610', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000618', 'Personal Information Verification', NULL, 'The evidence by which a persons name, address, date of birth, etc. is confirmed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21611', '11', '21611', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000620', 'Employment Separation Reason', NULL, 'The primary reason for the termination of the employment relationship.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21613', '11', '21613', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000621', 'Employment Separation Type', NULL, 'A designation of the type of separation occurring between a person and the organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21614', '11', '21614', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000622', 'Classroom Position Type', NULL, 'The type of position the staff member holds in the specific course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21615', '11', '21615', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000624', 'Leave Event Type', NULL, 'The type of the leave event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21617', '11', '21617', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000625', 'Program Identifier', NULL, 'A unique number or alphanumeric code assigned to a program by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21618', '11', '21618', 'Updated', 'Added elements to DES contexts to support Early Learning and K12 implementation needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000626', 'Program Name', NULL, 'The name of the program of instruction, training, services or benefits available through federal, state, or local agencies.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21619', '11', '21619', 'Updated', 'Added elements to DES contexts to support Early Learning and K12 implementation needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000627', 'Secondary Incident Behavior', NULL, 'Supplemental information about an incident when the primary offense is more serious in nature than alcohol or drug, etc. offenses.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21620', '11', '21620', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000630', 'Assessment Item Identifier', NULL, 'The identifier that uniquely identifies an assessment item.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21623', '11', '21623', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000632', 'Site Name', NULL, 'The full, legally accepted name of the institution at the site level.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21625', '11', '21625', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000633', 'Early Learning Youngest Age Authorized to Serve', NULL, 'The youngest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21626', '11', '21626', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000634', 'Other Name Type', NULL, 'The types of previous, alternate or other names for a person.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21627', '11', '21627', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000635', 'Neglected or Delinquent Academic Achievement Indicator', NULL, 'Student was served by Title I, Part D, Subpart 1 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.', NULL, '1', 'The elements "Neglected or Delinquent Academic Achievement Indicator" and "Neglected or Delinquent Academic Outcome Indicator" are different, although similarly worded.
EDFacts guidance: The Neglected or Delinquent Academic Achievement indicator should only be used for Subpart 1; the Neglected or Delinquent Academic Outcome Indicator should be used for Subpart 2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21636', '11', '21636', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000636', 'Neglected or Delinquent Academic Outcome Indicator', NULL, 'Student was served by Title I, Part D, Subpart 2 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.', NULL, '1', 'The elements "Neglected or Delinquent Academic Achievement Indicator" and "Neglected or Delinquent Academic Outcome Indicator" are different, although similarly worded.
EDFacts guidance: The Neglected or Delinquent Academic Achievement indicator should only be used for Subpart 1; the Neglected or Delinquent Academic Outcome Indicator should be used for Subpart 2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21638', '11', '21638', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000637', 'Responsible District Identifier', NULL, 'The district responsible for specific educational services and/or instruction of the student.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21639', '11', '21639', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000638', 'Responsible School Identifier', NULL, 'The school responsible for specific education services and/or instruction of the student.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21640', '11', '21640', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001066', 'Address Type for Organization', NULL, 'The type of address listed for an organization.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21644', '11', '21644', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000645', 'Teaching Assignment Start Date', NULL, 'The year, month and day on which a teaching assignment begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21647', '11', '21647', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000646', 'Teaching Assignment End Date', NULL, 'The year, month and day on which a teaching assignment ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was employed.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21648', '11', '21648', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000647', 'Teacher of Record', NULL, 'Staff member who has a Teacher of Record responsibility for a Class Section based upon the state''s definition of Teacher of Record.', NULL, '1', 'There is usually one Teacher of Record assignment in a Class Section except in the case of co-teaching/team-teaching.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21649', '11', '21649', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000648', 'Teaching Assignment Role', NULL, 'The role that the Staff Member has been assigned for a Class Section. (A teacher may have the lead responsibility for one section and serve a supporting role for another section of the same course.)', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21650', '11', '21650', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000649', 'Teaching Assignment Contribution Percentage', NULL, 'A percentage used to weight the educator''s assigned responsibility for student learning in a Class Section, particularly when more than one educator is assigned to the class section.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21651', '11', '21651', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000650', 'Course Section Entry Type', NULL, 'The process by which a student enters a school (Course Section) during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21652', '11', '21652', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000651', 'Course Section Exit Withdrawal Date', NULL, 'The year, month and day of the first day after the date of a person''s last enrollment in a course section.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21653', '11', '21653', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000652', 'Course Section Exit Type', NULL, 'The circumstances under which the student exited from membership in a course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21654', '11', '21654', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000016', 'American Indian or Alaska Native', 'Race American Indian or Alaska Native', 'A person having origins in any of the original peoples of North and South America (including Central America), and who maintains cultural identification through tribal affiliation or community attachment.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21655', '11', '21655', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000020', 'Asian', 'Race Asian', 'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian Subcontinent. This area includes, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21656', '11', '21656', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000034', 'Black or African American', 'Race Black or African American', 'A person having origins in any of the black racial groups of Africa.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21657', '11', '21657', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000192', 'Native Hawaiian or Other Pacific Islander', 'Race Native Hawaiian or Other Pacific Islander', 'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21658', '11', '21658', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001260', 'Assessment Item Response Theory Parameter D6', NULL, 'For polytomous assessment items with more than six possible responses, this is the item response theory value representing the threshold between the sixth and seventh item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22226', '11', '22226', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001261', 'Assessment Item Linking Item Indicator', NULL, 'Indicates that the item is intended to be administered in two different grades for the goal of establishing cross grade comparison.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22227', '11', '22227', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001262', 'Assessment Item Response Theory Point Biserial Correlation Value', NULL, 'The correlation between correct answers on this item and total correct answers on the test during a previous administration. ', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22228', '11', '22228', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001263', 'Assessment Item Release Status', NULL, 'Indicates that the assessment item has been released to the public.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22229', '11', '22229', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001264', 'Assessment Item Response Theory DIF Value', NULL, 'A value representing the Differential Item Functioning, also referred to as measurement bias, for the assessment item. The value represents differences in the functioning of the item across groups which are matched on the attribute being measure by the item. The value is calculated using Mantel-Haenszel approach or a comparable algorithm so that a value of 1.0 represents no bias.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22230', '11', '22230', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001265', 'Assessment Item Response Theory Kappa Value', NULL, 'The measure used to represent the degree of agreement among raters.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22231', '11', '22231', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001266', 'Assessment Item Response Theory Kappa Algorithm', NULL, 'The algorithm used to derive the Assessment Item Kappa Value', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22232', '11', '22232', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001267', 'Assessment Item Body Text', NULL, 'The complete text of an assessment item including all applicable parts such as stimulus, stem, and possible response options presented.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22233', '11', '22233', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001268', 'Assessment Item Stimulus', NULL, ' The text, source (e.g., video clip), and/or graphic about which the assessment item is written. The stimulus provides the context of the item/task to which the student must respond.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22234', '11', '22234', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001269', 'Assessment Item Possible Response Option', NULL, 'The possible response presented to the participant within a selected-response/multiple-choice assessment item.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22235', '11', '22235', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001270', 'Session Code', NULL, 'A local code given to the session, usually for a session that represents a term within the school year such as a marking term.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22236', '11', '22236', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001271', 'Session Description', NULL, 'A short description of the Session.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22237', '11', '22237', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001272', 'Session Marking Term Indicator', NULL, 'Indicates that the session is a marking term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22238', '11', '22238', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001273', 'Session Scheduling Term Indicator', NULL, 'Indicates that the session is a scheduling term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22239', '11', '22239', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001274', 'Session Attendance Term Indicator', NULL, 'Indicates that the session is an attendance term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22240', '11', '22240', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001275', 'Calendar Event Date', NULL, 'The date of the scheduled or unscheduled calendar event.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22241', '11', '22241', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001276', 'Calendar Event Day Name', NULL, 'A name used for the day of the calendar event.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22242', '11', '22242', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001277', 'Accommodations Needed Type', NULL, 'Codes identifying the set of health accommodations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22243', '11', '22243', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001278', 'Advanced Placement Course Code', 'AP Course Code', 'Course areas for advanced placement or credit. For a list of codes see http://apcentral.collegeboard.com/apc/public/courses/teachers_corner/index.html .', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22244', '11', '22244', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001279', 'Professional Development Activity Education Levels Addressed', NULL, 'An age group or education level to which the professional development activity''s content pertains.', NULL, '1', 'Multiple options may be selected.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22245', '11', '22245', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001280', 'Agency Course Identifier', NULL, 'The course identifier as it may be recorded at the regional or state level to conform to a standardized course classification system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22246', '11', '22246', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001281', 'Allergy Reaction Description', NULL, 'Describes symptoms know to be associated with a person''s reaction to an allergen.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22247', '11', '22247', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001282', 'Allergy Severity', NULL, 'The level of severity of a person''s reaction to an allergen.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22248', '11', '22248', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001283', 'Allergy Type', NULL, 'Type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', NULL, '1', 'This material includes SNOMED Clinical Terms® (SNOMED CT®) which is used by permission of the International Health Terminology Standards Development Organization (IHTSDO). All rights reserved. SNOMED CT®, was originally created by The College of American Pathologists. “SNOMED” and “SNOMED CT” are registered trademarks of the IHTSDO.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22249', '11', '22249', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001284', 'Assessment Item Result XML', NULL, 'The assessment item result formatted according to the IMS Global QTI Specification.', 'Alphanumeric', '0', 'See http://www.imsglobal.org/question/qtiv2p1/imsqti_resultv2p1.html#element10818', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22250', '11', '22250', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001287', 'Blended Learning Model Type', NULL, 'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.', NULL, '1', 'This may be an attribute of a Course (as designed) or a Class Section (as delivered). It also may be attributed to a school, institution, or program for "whole-school" blended models.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22253', '11', '22253', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001288', 'Career Cluster', NULL, 'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', NULL, '1', 'Options from O*NET OnLine an application that was created for the general public to provide broad access to the O*NET database of occupational information. O*NET OnLine offers a variety of search options and occupational data, while My Next Move is a streamlined application for students and job seekers. Both applications were developed for the U.S. Department of Labor by the National Center for O*NET Development. See onetonline.org for more information.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', '11', '22254', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001289', 'Career Education Plan Date', NULL, 'The date on which an individual''s professional development career plan was last updated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22255', '11', '22255', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001290', 'Career Education Plan Type', NULL, 'An indication of whether an individual completed an individualized guidance and counseling plan', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22256', '11', '22256', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001291', 'Career Pathways Program Participation Indicator', NULL, 'An indication of an individual who is participating in a program that is a component of or leads to a specific or recognized career pathway, as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22257', '11', '22257', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001292', 'Charter School Authorizer Type', NULL, 'The type of agency that authorized the establishment or continuation of a charter school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22258', '11', '22258', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001293', 'Charter School Approval Year', NULL, 'The school year in which a charter school was initially approved.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22259', '11', '22259', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001296', 'Correctional Education Facility Type', NULL, 'The type of facility in which an inmate receives correctional education services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22262', '11', '22262', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001297', 'Correctional Education Reentry Services Participation Indicator', NULL, 'An indication of whether an adult correctional education student who receives instructional services (e.g., life skills, cognitive restructuring, etc.) to support reentry into society.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22263', '11', '22263', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001298', 'Course Academic Grade Scale Code', NULL, 'The grading scale used by an academic educational institution for an academic course.', 'Integer - 2 digits with leading zeros', '0', 'Based on the American Medical Colleges Admissions Services (AMCAS) grade scale, values 01 through 99. See Appendix E of the PESC XML High School Transcript Implementation Guide for a complete list of code values. 3-digit values (500 and above) established in earlier versions of the standard for miscellaneous grades are deprecated.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22264', '11', '22264', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001299', 'Course Academic Grade Status Code', NULL, 'Additional information regarding the context of the given grade.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22265', '11', '22265', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001300', 'Course Add Date', NULL, 'The date an individual was added to an academic course at a school.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22266', '11', '22266', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001301', 'Course Applicable Education Level', NULL, 'The education level, grade level or primary instructional level at which a course is intended.', NULL, '1', 'This element is repeatable for most use cases. Examples: (1.) SCED identifiers may specify a grade span of two or more grades. (2) A postsecondary course designed to qualify a student for an associates degree and professional certification could be repeated with both of those options.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22267', '11', '22267', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001302', 'Course Certification Description', NULL, 'A description of the certification or recognition associated with this course (ex. Networking, CAD, etc.)', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22268', '11', '22268', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001303', 'Course Credit Basis Type', NULL, 'The type of enrollment associated with the credit hours for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22269', '11', '22269', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001304', 'Course Credit Level Type', NULL, 'The level of credit associated with the credit hours earned for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22270', '11', '22270', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001305', 'Course Drop Date', NULL, 'The date on which the individual drops or withdraws from the course.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22271', '11', '22271', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001306', 'Course Funding Program', NULL, 'A program through which the course is funded.', 'Alphanumeric - 30 characters maximum', '0', 'This may be a program targeted to a specific student population (e.g. SPED, ESOL) and the funding guidelines may specify that all or some of the students in the course are members of the subgroup.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22272', '11', '22272', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001307', 'Course Honors Type', NULL, 'An indication that the course is or can be counted as an honors course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22273', '11', '22273', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001308', 'Course Instruction Method', NULL, 'The primary method of instruction used for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22274', '11', '22274', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001309', 'Course Instruction Site Name', NULL, 'The name of the location at which the course is taught.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22275', '11', '22275', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001310', 'Course Instruction Site Type', NULL, 'An indication of the type of location at which the course is taught.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22276', '11', '22276', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001311', 'Course Interaction Mode', NULL, 'The primary type of interaction, synchronous or asynchronous, defined for the course.', NULL, '1', 'This may be an attribute of a Course (as designed) or an instance of a Class Section (as delivered).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22277', '11', '22277', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001312', 'Course Level Type', NULL, 'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278', '11', '22278', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001313', 'Course Narrative Explanation Grade', NULL, 'The narrative of the grade awarded to an individual in an academic course in those cases where a course does not receive a letter or numeric grade included in the grading scale of the Course Academic Grade Qualifier.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22279', '11', '22279', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001314', 'Course Number', NULL, 'The official reference number portion of a course identifier. This number normally designates the level of the course as well as the level of the individual expected to enroll in the course.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22280', '11', '22280', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001315', 'Course Section Number', NULL, 'The number assigned to differentiate among distinct occurrences of courses that have the same course abbreviation and number but are considered to be different courses.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22281', '11', '22281', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001316', 'Course Total', NULL, 'The total number of courses listed on a transcript. Used as a check digit for integrity purposes.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22282', '11', '22282', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001317', 'Credit Hours Applied Other Program', NULL, 'Codes identifying the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22283', '11', '22283', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001318', 'Career and Technical Education Instructor Industry Certification', 'CTE Instructor Industry Certification', 'An indication of whether a Career and Technical Education (CTE) instructor holds a current industry-recognized credential related to their teaching field.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22284', '11', '22284', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001319', 'Disability Condition Status Type', 'Disability Condition Status Code', 'A code indicating the disability condition status.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22285', '11', '22285', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001320', 'Disability Condition Type', NULL, 'Codes identifying the set of disability conditions.', NULL, '1', 'Disability Conditional Type may be used in K12 to specify a disability other than Primary Disability Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22286', '11', '22286', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001321', 'Disability Determination Source Type', NULL, 'Codes identifying the set of disability determination sources.', NULL, '1', 'Disability Conditional Type may be used in K12 to specify a disability other than Primary Disability Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22287', '11', '22287', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001322', 'Disciplinary Action IEP Placement Meeting Indicator', NULL, 'An indication as to whether an offense and/or disciplinary action resulted in a meeting of a student’s Individualized Education Program (IEP) team to determine appropriate placement.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22288', '11', '22288', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001323', 'Distance Education Program Enrollment Indicator', NULL, 'An individual''s enrollment in a program for which all the required coursework for program completion is able to be completed via distance education courses. Distance education is education that uses one or more technologies to deliver instruction to individuals who are separated from the instructor and to support regular and substantive interaction between the individuals and the instructor synchronously or asynchronously.', NULL, '1', 'Element defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22289', '11', '22289', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001324', 'Doctoral Candidacy Admit Indicator', NULL, 'The individual''s status in being admitted as a doctoral candidate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22290', '11', '22290', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001325', 'Doctoral Candidacy Date', NULL, 'The date on which the individual was admitted to doctoral candidate status.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22291', '11', '22291', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001326', 'Doctoral Exam Taken Date', NULL, 'The date on which the individual took an exam for advancement in, continuation or completion of a doctoral program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22292', '11', '22292', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001327', 'Doctoral Exams Required Type', NULL, 'A qualifier identifying the types of exams required of doctoral level individuals.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22293', '11', '22293', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001328', 'Early Learning Federal Funding Type', NULL, 'Federal source, even if administered by state or local, that contributes to the EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22294', '11', '22294', 'Updated', 'Added new option to the existing option set.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001329', 'Early Learning Group Size', NULL, 'The number of slots/spaces available.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22295', '11', '22295', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001330', 'Organization Monitoring Notifications', NULL, 'Whether the organization received notification about monitoring', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22296', '11', '22296', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001331', 'Monitoring Visit Start Date', NULL, 'The date that monitoring visit began.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22297', '11', '22297', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001332', 'Monitoring Visit End Date', NULL, 'The date that monitoring visit ended.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22298', '11', '22298', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001333', 'Purpose of Monitoring Visit', NULL, 'The purpose for the monitoring visit.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22299', '11', '22299', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001334', 'Organization Type of Monitoring', NULL, 'The type of monitoring on the organization.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22300', '11', '22300', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001335', 'Early Learning Other Federal Funding Sources', NULL, 'The other contributing funding sources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22302', '11', '22302', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001336', 'Early Learning Outcome Measurement Level', NULL, 'Use for outcome measures in early learning.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22303', '11', '22303', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001337', 'Early Learning Professional Development Topic Area', NULL, 'The topical area of competence needed for Staff professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22304', '11', '22304', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001338', 'Early Learning Program Eligibility Expiration Date', NULL, 'The year, month, and day on which the child is no longer eligible for the Program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22305', '11', '22305', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001339', 'Early Learning Program Eligibility Status', NULL, 'The status of eligibility for the child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22306', '11', '22306', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001340', 'Early Learning Program Eligibility Status Date', NULL, 'The date of status of eligibility.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22307', '11', '22307', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001341', 'Emergency Contact Indicator', NULL, 'Indicates whether or not the person is a designated emergency contact for the learner.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22308', '11', '22308', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001342', 'Employed Prior to Enrollment', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, before enrolling in secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources won''t tell you anything further about employment or unemployment, only that a record was "not found" or "not matched" thus “unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22309', '11', '22309', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001343', 'Employment Status While Enrolled', NULL, 'An indication of the individual''s employment status while enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22310', '11', '22310', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001344', 'Family and Consumer Sciences Course Indicator', NULL, 'An indication that the course is associated with the Family and Consumer Sciences plan of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22311', '11', '22311', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001345', 'Financial Account Category', NULL, 'A label for a grouping of financial accounts, based on type and purpose.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22312', '11', '22312', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001346', 'Financial Account Description', NULL, 'The description for the financial account in an organization''s accounting system.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22313', '11', '22313', 'Updated', 'Changed definition and added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001347', 'Financial Account Fund Classification', NULL, 'A fund is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22314', '11', '22314', 'Updated', 'Changed element name and technical name and added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001348', 'Financial Account Name', NULL, 'The name given to the financial account in an organization''s accounting system.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22315', '11', '22315', 'Updated', 'Changed definition and added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001349', 'Financial Account Program Code', NULL, 'A program is a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives. The program classification provides the organization with a framework to classify instructional and other expenditures by program to determine cost.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22316', '11', '22316', 'Updated', 'Changed element name and technical name and added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001350', 'Financial Accounting Period Actual Value', NULL, 'The actual value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22317', '11', '22317', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001351', 'Financial Accounting Period Budgeted Value', NULL, 'The budgeted value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22318', '11', '22318', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001352', 'Financial Aid Income Level', NULL, 'The income level of an individual that is used by an institution''s financial aid office to determine an individual''s Expected Family Contribution (EFC). For dependent students this will include the parents'' adjusted gross income and the student''s adjusted gross income. For independent students this will include the student''s adjusted gross income.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22319', '11', '22319', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001353', 'Financial Account Balance Sheet Code', NULL, 'Balance sheet accounts and statement of net position accounts are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22320', '11', '22320', 'Updated', 'Changed name of element and technical name.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001354', 'Financial Expenditure Function Code', NULL, 'The function describes the activity for which a service or material object is acquired. The functions of an organization are classified into five broad areas: instruction, support services, operation of non-instructional services, facilities acquisition and construction, and debt service. Functions are further classified into sub functions.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22321', '11', '22321', 'Updated', 'Changed element name and technical name. Added elements to DES contexts to support Early Learning needs. Changed definition of element to support other domains.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001355', 'Financial Expenditure Object Code', NULL, 'This classification is used to describe the service or commodity obtained as the result of a specific expenditure. Nine major object categories have codes ending in 00 and are further subdivided.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22322', '11', '22322', 'Updated', 'Changed element name and technical name and added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001356', 'Frequency of Service', NULL, 'The frequency at which a service is planned to occur or has occurred.', NULL, '1', 'This element is used to describe the planned frequency of services to be delivered and the actual frequency of services delivered.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22323', '11', '22323', 'Updated', 'Changed definition. Added usage note. Updated option set. Added elements to DES context to support K12 Implementation.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001357', 'Graduate or Doctoral Exam Results Status', NULL, 'The individual''s status in completing exams required for graduate or doctoral degree programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22324', '11', '22324', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001358', 'Health Screening Equipment Used', NULL, 'The screening equipment used for the hearing screening or the method used for the vision screening', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22325', '11', '22325', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001359', 'Health Screening Follow-up Recommendation', NULL, 'Recommendations for follow-up after a health screening.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22326', '11', '22326', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001360', 'IDEA Part B 619 Potential Eligibility Indicator', NULL, 'The determination of whether a child is potentially eligible for Part B 619 services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22327', '11', '22327', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001363', 'IDEA Part C to Part B Notification Opt Out Indicator', NULL, 'Indicates whether parents of a child potentially eligible for Part B preschool services have opted out of the impending notification to the local education agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22330', '11', '22330', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001364', 'IDEA Part C to Part B Notification Opt Out Date', NULL, 'The date that parents of a child potentially eligible for Part B preschool services opt out of the impending notification to the local education agency.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22331', '11', '22331', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001365', 'Transition Conference Date', NULL, 'The date of the transition conference from IDEA Part C to Part B 619 or another early learning program or service.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22333', '11', '22333', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001366', 'Transition Conference Decline Date', NULL, 'The date the parents declined approval for the transition conference from IDEA Part C to Part B 619 or another early learning program or service.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22334', '11', '22334', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001367', 'Date of Transition Plan', NULL, 'The date transition steps and services were added to the individualized service plan.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22335', '11', '22335', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001369', 'Incident Multiple Offense Type', NULL, 'An indication of whether the offense was primary or secondary in nature when a single incident included more than one type of offense.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22337', '11', '22337', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001370', 'Incident Perpetrator Identifier', NULL, 'Identifies the perpetrator of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22338', '11', '22338', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001371', 'Incident Perpetrator Injury Type', NULL, 'An indication of the occurrence of physical injury to the perpetrator(s) (participants) involved in the incident and‚ if so‚ the level of injury sustained.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22339', '11', '22339', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001372', 'Incident Perpetrator Type', NULL, 'Information on the type of individual who committed an incident. A “perpetrator” is an individual involved in an incident as an offender (the person who committed the infraction constituting the incident).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22340', '11', '22340', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001373', 'Incident Person Role Type', NULL, 'The role or type of participation of a person in a discipline incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22341', '11', '22341', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001374', 'Incident Regulation Violated Description', NULL, 'A description of the rule‚ regulation‚ or standard that was violated when an incident occurred (e.g.‚ the identification of a relevant law‚ conduct standard‚ or acceptable use policy).', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22342', '11', '22342', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001375', 'Incident Related to Disability Manifestation', NULL, 'An indication whether a student’s behavior (offense) was a manifestation of‚ or related to‚ a disability condition.', NULL, '1', 'Under IDEA §300.530(e), a manifestation determination must occur within 10 days of any decision to change the child’s placement because of a violation of a code of student conduct.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22343', '11', '22343', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001376', 'Incident Reported to Law Enforcement Indicator', NULL, 'An indication that the school resource officer or any other law enforcement official was notified about the incident‚ regardless of whether official action is taken.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22345', '11', '22345', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001377', 'Incident Victim Identifier', NULL, 'Identifies the victim of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22346', '11', '22346', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001378', 'Incident Victim Type', NULL, 'Information on the type of individual who was injured or otherwise harmed as a direct result of the incident. A “victim” is the individual who suffers injury or harm that directly results from the incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22347', '11', '22347', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001379', 'Incident Witness Identifier', NULL, 'Identifies the witness of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district. Using this data element permits linkage to descriptive information about the individual in the student or staff database.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22348', '11', '22348', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001380', 'Incident Witness Type', NULL, 'Information on the type of individual who witnessed the incident and can give a firsthand account of an incident that was seen‚ heard‚ or experienced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22349', '11', '22349', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001381', 'Individualized Program Planned Service Start Date', NULL, 'The date the service is planned to begin.', 'YYYY-MM-DD', '0', 'As decided on by an IFSP/IEP team, including the parent.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22350', '11', '22350', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001383', 'Individualized Program Planned Service Type', NULL, 'The types of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22352', '11', '22352', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001384', 'Itinerant Provider', NULL, 'An indication of whether a person provides services at more than one site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22353', '11', '22353', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001386', 'K12 End of Course Requirement', NULL, 'An indication that this course has an end of course examination required by the SEA or LEA.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22355', '11', '22355', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001388', 'Professional Development Session Language', NULL, 'The language in which the professional development session is delivered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22357', '11', '22357', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001389', 'Learning Resource Access API Type', NULL, 'Indicates that the learning resource is compatible with the referenced accessibility application programming interface (API).', NULL, '1', ' Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: apiInteroperable.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22358', '11', '22358', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001390', 'Learning Resource Access Hazard Type', NULL, 'A characteristic of the described learning resource that is physiologically dangerous to some users.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22359', '11', '22359', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001391', 'Learning Resource Access Mode Type', NULL, 'An access mode through which the intellectual content of a described learning resource or adaptation is communicated; if adaptations for the resource are known, the access modes of those adaptations are not included.', NULL, '1', 'Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: AccessModeRequired.Type/existingAccessMode.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22360', '11', '22360', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001392', 'Learning Resource Adaptation URL', NULL, 'The Uniform Resource Locator of a learning resource that is an adaptation for this resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22361', '11', '22361', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001393', 'Learning Resource Assistive Technologies Compatible Indicator', NULL, 'Indicates that the learning resource is compatible with assistive technologies.', NULL, '1', 'For example, that the resource complies to Web Content Accessibility Guidelines (WCAG) 2.0 checkpoints: 1.1.1, 1.3.1, 1.3.2, 2.4.4, 3.1.1, 3.1.2, 3.3.2, 4.1.1, 4.1.2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22362', '11', '22362', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001394', 'Learning Resource Book Format Type', NULL, 'Specifies the format for a learning resource that is a book. Other options may be considered for inclusion in the option set.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22363', '11', '22363', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001395', 'Learning Resource Control Flexibility Type', NULL, 'Identifies a single input method that is sufficient to control the described learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22364', '11', '22364', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001396', 'Learning Resource Digital Media Sub Type', NULL, 'The media or file subtype of the digital resource being based on the Media Types and Subtypes, formerly known as MIME types, defined by the Internet Assigned Numbers Authority (IANA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22365', '11', '22365', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001397', 'Learning Resource Digital Media Type', NULL, 'The media or file type of the digital resource being based on the media types defined by the Internet Assigned Numbers Authority (AINA) at http://www.iana.org/assignments/media-types.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22366', '11', '22366', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001398', 'Learning Resource Adapted From URL', NULL, 'URL identifier of a learning resource for which this resource is an adaptation.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22367', '11', '22367', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001399', 'Learning Resource Media Feature Type', NULL, 'Accessible content features included with the learning resource.', NULL, '1', 'Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: AdaptationTypeRequired.Type/adaptationRequest.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22368', '11', '22368', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001400', 'Learning Resource Peer Rating Sample Size', NULL, 'The sample size of a peer rating value. Only used when the Peer Rating Value is collected in aggregate as an average of multiple atomic/individual ratings.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22369', '11', '22369', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001401', 'Learning Resource Physical Media Type', NULL, 'A type of physical media on which the Learning Resource is delivered or available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22370', '11', '22370', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001402', 'Competency Association Connection Citation', 'Learning Standard Item Association Connection Citation', 'Any citation appropriate to evidence the connection between nodes', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22371', '11', '22371', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001403', 'Competency Association Destination Node Name', 'Learning Standard Item Association Destination Node Name', 'Name of the destination node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22372', '11', '22372', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001404', 'Competency Association Destination Node URI', 'Learning Standard Item Association Destination Node URI', 'URI of the destination node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22373', '11', '22373', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001405', 'Competency Association Origin Node Name', 'Learning Standard Item Association Origin Node Name', 'Name of the origin node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22374', '11', '22374', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001406', 'Competency Association Origin Node URI', 'Learning Standard Item Association Origin Node URI', 'URI of the origin node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22375', '11', '22375', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001407', 'Competency Association Weight', 'Learning Standard Item Association Weight', 'Indicates the relative significance this connection has for the destination node in a learning map.', 'Numeric - up to 3 digits after decimal place', '0', 'This element is used to support learning maps and may be used in two ways 1) use a 1.000 to flag incoming nodes as important prerequisites/predecessors and 0.000 to indicate those with less significance, or 2) to indicate a levels of significance for the connection as a decimal between 0.000 and 1.000.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22376', '11', '22376', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001408', 'Competency Definition Node Accessibility Profile', 'Learning Standard Item Node Accessibility Profile, Competency Item Node Accessibility Profile', 'When the Competency Definition is used as a node in a learning map, this element supports alternative pathways based on a learner''s accessibility profile. The type selected indicates which accessibility profile the node is designed to address.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22377', '11', '22377', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001409', 'Competency Definition Short Name', 'Learning Standard Item Node Name, Competency Item Node Name', 'The short name or label for the competency definition or its node in a competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22378', '11', '22378', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001411', 'Competency Definition Testability Type', 'Learning Standard Item Testability Type, Competency Item Testability Type', 'Indicates if the competency described in the Competency Definition Statement can be tested using one or more assessment items.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22380', '11', '22380', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001412', 'Military Enlistment After Exit', NULL, 'An individual who is a member of the uniformed armed forces of the United States as reported through FEDES after exiting secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Information on military enlistment is collected as a part of the FEDES program which facilitates periodic matches with the Department of Defense Manpower Information Center. While the unemployment insurance data cannot be used to indicate that an individual is not employed, the DOD Enlistment data can suggest "not enlisted when there is no match." These data are included in FEDES matches and may need to be "unduplicated" from employment counts.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22381', '11', '22381', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001413', 'National Collegiate Athletic Association Eligibility', 'NCAA Eligibility', 'An indication that the course is approved for determining NCAA eligibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22382', '11', '22382', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001414', 'NCES College Course Map Code', NULL, 'A taxonomy system for coding postsecondary courses in NCES research studies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22383', '11', '22383', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001415', 'Number of Dependents', NULL, 'The number of dependents who live with the student and receive more than half their support from them.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22384', '11', '22384', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001416', 'Oral Defense Completed Indicator', NULL, 'An indication of the individual''s completion of an oral defense. The requirement to conduct an oral defense by doctoral individuals may vary across institutions, programs, or fields of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22385', '11', '22385', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001417', 'Oral Defense Date', NULL, 'The date on which the individual gave an oral defense.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22386', '11', '22386', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001418', 'Organization Operational Status', NULL, 'The current status of the organization''s operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22387', '11', '22387', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001419', 'Organization Seeking Accreditation Date', NULL, 'The date in which accreditation process was started (but not officially approved or denied)', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22388', '11', '22388', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001420', 'Original Course Identifier', NULL, 'The course identifier as it was listed when the credit was earned (e.g. before a system conversion) to show consistency between present transcripts and older ones.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22389', '11', '22389', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001421', 'Other Race Indicator', NULL, 'Race other than American Indian, Black, Asian, White, Native Pacific Islander', NULL, '1', 'This element only applies to Early Learning (Head Start). For non-ED early learning programs only.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22390', '11', '22390', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001422', 'Override School Course Number', NULL, 'An indication of the way an academic course was identified at an educational institution.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22391', '11', '22391', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001423', 'Person Relationship to Learner Contact Priority Number', NULL, 'The numeric order in the preferred sequence and priority for contacting a person related to the learner.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22392', '11', '22392', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001424', 'Person Relationship to Learner Contact Restrictions Description', NULL, 'Restrictions for student and/or teacher contact with the individual (e.g., the student may not be picked up by the individual)', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22393', '11', '22393', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001425', 'Person Relationship to Learner Lives with Indicator', NULL, 'Indicates whether or not the learner lives with the related person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22394', '11', '22394', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001426', 'Postsecondary Entering Student Indicator', NULL, 'The initial enrollment of an individual in credit bearing courses or developmental/remedial courses at an institution after completing high school or a high school equivalency program (e.g. GED, Adult High School Diploma).', NULL, '1', 'An individual can only be an entering student once at an institution at the undergraduate level.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22395', '11', '22395', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001427', 'Postsecondary Student Entering Term', NULL, 'The term and year of the initial enrollment of an individual in credit bearing courses or developmental/remedial courses at an institution after completing high school or a high school equivalency program (e.g., GED, Adult High School Diploma).', 'Alphanumeric - 30 characters maximum', '0', 'An individual can only be an entering student once at an institution at the undergraduate level.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22396', '11', '22396', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001428', 'Primary Contact Indicator', NULL, 'Indicates that a person is a primary contact within the specified context, such as a primary parental contact specified in Person Relationship to Learner or a primary administrative contact for an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22397', '11', '22397', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001429', 'Professional Certificate or License Number', NULL, 'The number issued by the credentialing/licensing agency.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22398', '11', '22398', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001430', 'Professional Development Audience Type', NULL, 'The type of audience for the professional development activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22399', '11', '22399', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001431', 'Professional Development Delivery Method', NULL, 'The method by which a session is delivered', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22401', '11', '22401', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001432', 'Professional Development Activity Approval Code', NULL, 'A code given to an activity by an approval organization to designate it as an approved activity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22402', '11', '22402', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001433', 'Professional Development Activity Approved Purpose', NULL, 'The purposes for which an activity is approved.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22403', '11', '22403', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001434', 'Professional Development Activity Code', NULL, 'A code assigned to an professional development activity by the organization offering the activity that is unique to the non-variable activity details.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22404', '11', '22404', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001435', 'Professional Development Activity Cost', NULL, 'The cost for an attendee to participate in a professional development activity.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22405', '11', '22405', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001436', 'Professional Development Activity Credit Type', NULL, 'The type of credit awarded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22406', '11', '22406', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001437', 'Professional Development Activity Credits', NULL, 'The number of credits a professional development activity provides.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22407', '11', '22407', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001438', 'Professional Development Activity Description', NULL, 'A description of the content covered in the professional development activity.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22408', '11', '22408', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001439', 'Professional Development Activity Level', NULL, 'An indicator of the level of a professional development activity on the beginner to advanced continuum.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22409', '11', '22409', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001440', 'Professional Development Activity Objective', NULL, 'The expected outcomes of a participant in an activity.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22410', '11', '22410', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001442', 'Professional Development Activity Type', NULL, 'The indication of the type of professional development activity.', NULL, '1', 'The type of event should be determined based on the content of the event, not the delivery method.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22412', '11', '22412', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001443', 'Professional Development Funding Source', NULL, 'The primary source of funding for a professional development session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22413', '11', '22413', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001444', 'Professional Development Instructor Identifier', NULL, 'Identifies an instructor of a professional development session.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22414', '11', '22414', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001445', 'Professional Development Publish Activity Indicator', NULL, 'An indicator of whether the professional development activity should be published.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22415', '11', '22415', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001446', 'Professional Development Session Capacity', NULL, 'The total number of participants that can be accommodated by a professional development session.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22416', '11', '22416', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001447', 'Professional Development Session End Date', NULL, 'The year, month and day a professional development session ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22417', '11', '22417', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001448', 'Professional Development Session End Time', NULL, 'The time at which a professional development session ends.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22418', '11', '22418', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001449', 'Professional Development Session Evaluation Method', NULL, 'The method used to evaluate a professional development session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22419', '11', '22419', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001450', 'Professional Development Session Evaluation Score', NULL, 'The score or rating used to determine if a professional development session was successful.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22420', '11', '22420', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001451', 'Professional Development Activity Expiration Date', NULL, 'The year, month, and day on which any certificate awarded as part of a professional development activity expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22421', '11', '22421', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001452', 'Professional Development Session Identifier', NULL, 'The unique, non-duplicated, identification number assigned by the registry data system for a session of a particular professional development activity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22422', '11', '22422', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001454', 'Professional Development Session Location Name', NULL, 'The name of a location where a professional development session will be held.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22424', '11', '22424', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001455', 'Professional Development Session Start Date', NULL, 'The year, month, and day a professional development session begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22426', '11', '22426', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001456', 'Professional Development Session Start Time', NULL, 'The time at which a professional development session begins.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22427', '11', '22427', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001457', 'Professional Development Session Status', NULL, 'The current status of a professional development session', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22428', '11', '22428', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001458', 'Professional Development Instructional Delivery Mode', NULL, 'The primary setting or medium of professional development delivery.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22429', '11', '22429', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001460', 'Quality Initiative Maximum Score', NULL, 'The maximum score option for the QRIS or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22432', '11', '22432', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001461', 'Quality Initiative Minimum Score', NULL, 'The minimum score option for the QRIS or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22433', '11', '22433', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001462', 'Quality Initiative Score Level', NULL, 'The score, rating or level received by a program for its Quality Rating and Improvement System (QRIS) or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22434', '11', '22434', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001463', 'Quality Initiative Participation Indicator', NULL, 'Site participates in a quality improvement initiative component other than QRIS.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22435', '11', '22435', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001464', 'Quality Initiative Participation End Date', NULL, 'The quality initiative end date.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22436', '11', '22436', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001465', 'Quality Initiative Participation Start Date', NULL, 'The quality initiative start date.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22437', '11', '22437', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001466', 'Responsible Organization Identifier', NULL, 'Identifies an organization responsible for specific educational services and/or instruction based on a type of responsibility specified in the Responsible Organization Type.', 'Alphanumeric - 40 characters maximum', '0', 'This may be used to specify responsibility when the organization is not a school (Responsible School) or school district (Responsible District).

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22438', '11', '22438', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001467', 'Responsible Organization Type', NULL, 'The type of responsibility the organization has for the student.', NULL, '1', 'This may be used to specify responsibility when the organization is not a school (Responsible School) or school district (Responsible District).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22439', '11', '22439', NULL, NULL) -INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001468', 'Financial Account Revenue Code', NULL, 'These codes are for recording revenue and other receivables by source. Major revenue categories have codes ending in 00 and are further subdivided.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".

Early Learning: If related to an "in kind" contribution use codes 1920 or 100.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22440', '11', '22440', 'Updated', 'Changed element name and technical name and added elements to DES contexts to support Early Learning needs.') -END -GO -SET IDENTITY_INSERT dbo._CEDSElements OFF; -GO - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[_CEDStoNDSMapping]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -DELETE FROM dbo._CEDStoNDSMapping -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Authentication', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Authorization', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AuthorizationDocument', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSpace', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSystemCategory', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSystemComponent', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSystemComponentService', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyDefAssociation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyDefEducationLevel', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyDefinition', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyDefinition_CompetencySet', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyFramework', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencySet', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencySet_Rubric', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencySet_RubricCriterion', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CoreKnowledgeArea', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSectionAssessmentReporting', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSectionLevel', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSectionLocation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSectionSchedule', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialAward', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialAwardCredit', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialAwardEvidence', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialCriteriaCourse', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefAgentCredential', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefCategory', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefCriteria', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefIdentifier', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefinition', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialOffered', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'EarlyChildhoodProgramTypeOffered', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELClassSectionService', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELCourse', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELEnrollmentOtherFunding', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELFacilityLicensing', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'EligibilityEvaluation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganizationMonitoring', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELProgramLicensing', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELQualityInitiative', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELQualityRatingImprovement', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Facility', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityAudit', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityCompliance', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityDesign', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityDesignConstruction', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityEnergy', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityFinance', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityHazard', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityJointUse', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityLease', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityLocation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityManagementPlan', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityMandate', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityMortgage', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityMortgageFee', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityRelationship', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilitySchoolDesign', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilitySite', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAccount', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAccountProgram', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAidApplication', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAidAward', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Goal', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'GoalMeasurement', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'GoalMeasurementCriterion', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'GoalPerformance', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IDEAEligibilityEvaluationCategory', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IEPAuthorization', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IEPAuthorizationRejected', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Incident', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgram', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentHomeLanguageSurvey', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentHomeLanguageSurvey', 'K12StudentHomeLanguageSurveyId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentHomeLanguageSurvey', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentHomeLanguageSurvey', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentLiteracyAssessment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentLiteracyAssessment', 'K12StudentLiteracyAssessmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentLiteracyAssessment', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentLiteracyAssessment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'K12StudentSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'OrganizationCalendarSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12TitleIIILanguageInstruction', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12TitleIIILanguageInstruction', 'K12TitleIIILanguageInstructionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12TitleIIILanguageInstruction', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12TitleIIILanguageInstruction', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerAction', 'AssessmentItemResponseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerAction', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerAction', 'LearnerActionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerAction', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'AssessmentRegistrationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'AssignedByPersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'CourseSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'LeaOrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'LearnerActivityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'OrganizationCalendarSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'SchoolOrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'LearnerActivity_LearningResourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'LearnerActivityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'LearningResourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResource', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResource', 'LearningResourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResource', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceAdaptation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceAdaptation', 'LearningResourceAdaptationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceAdaptation', 'LearningResourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceAdaptation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceEducationLevel', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceEducationLevel', 'LearningResourceEducationLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceEducationLevel', 'LearningResourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceEducationLevel', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceMediaFeature', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceMediaFeature', 'LearningResourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceMediaFeature', 'LearningResourceMediaFeatureId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceMediaFeature', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'LearningResourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'LearningResourcePeerRatingId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'PeerRatingSystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePhysicalMedia', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePhysicalMedia', 'LearningResourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePhysicalMedia', 'LearningResourcePhysicalMediaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePhysicalMedia', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Location', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Location', 'LocationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Location', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'LocationAddressId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'LocationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'RefCountryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'RefCountyId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'RefStateId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Organization', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Organization', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Organization', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'AccreditationStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'OrganizationAccreditationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendar', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendar', 'OrganizationCalendarId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendar', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendar', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarCrisis', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarCrisis', 'OrganizationCalendarCrisisId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarCrisis', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarCrisis', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'DayName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'OrganizationCalendarDayId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'OrganizationCalendarId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarEvent', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarEvent', 'OrganizationCalendarEventId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarEvent', 'OrganizationCalendarId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarEvent', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarSession', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarSession', 'OrganizationCalendarId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarSession', 'OrganizationCalendarSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarSession', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'OrganizationDetailId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'RefOrganizationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmail', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmail', 'OrganizationEmailId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmail', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmail', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmployeeBenefit', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmployeeBenefit', 'OrganizationEmployeeBenefitId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmployeeBenefit', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmployeeBenefit', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFederalAccountability', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFederalAccountability', 'OrganizationFederalAccountabilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFederalAccountability', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFederalAccountability', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'FinancialAccountId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'FinancialAccountProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'OrganizationCalendarSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'OrganizationFinancialId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'FinancialAccountLocalId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'OrganizationFinancialFinancialAccountLocalId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'OrganizationFinancialId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIdentifier', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIdentifier', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIdentifier', 'OrganizationIdentifierId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIdentifier', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationImage', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationImage', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationImage', 'OrganizationImageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationImage', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'IndicatorValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'OrganizationIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'LocationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'OrganizationLocationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationOperationalStatus', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationOperationalStatus', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationOperationalStatus', 'OrganizationOperationalStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationOperationalStatus', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'RoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleApplication', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleApplication', 'OrganizationPersonRoleApplicationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleApplication', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleApplication', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleFTE', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleFTE', 'OrganizationPersonRoleFTEId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleFTE', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleFTE', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleId_Parent', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleRelationshipId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPersonRoleRelationship', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'OrganizationPolicyId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'Value', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'AgeUnit', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'OrganizationPopulationServedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProgramType', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProgramType', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProgramType', 'OrganizationProgramTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProgramType', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProjectBasedLearning', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'OrganizationRelationshipId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'Parent_OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationService', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationService', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationService', 'OrganizationServiceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationService', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTechnicalAssistance', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTechnicalAssistance', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTechnicalAssistance', 'OrganizationTechnicalAssistanceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTechnicalAssistance', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTelephone', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTelephone', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTelephone', 'OrganizationTelephoneId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTelephone', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationWebsite', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationWebsite', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationWebsite', 'OrganizationWebsiteId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationWebsite', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PDActivityEducationLevel', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PDActivityEducationLevel', 'PDActivityEducationLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PDActivityEducationLevel', 'ProfessionalDevelopmentActivityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PDActivityEducationLevel', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PeerRatingSystem', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PeerRatingSystem', 'PeerRatingSystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PeerRatingSystem', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person', 'PersonMasterId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'AssessmentPersonalNeedsProfileId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'Person_AssessmentPersonalNeedsProfileId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'PersonAddressId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'RefCountyId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddressNcesSide', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddressNcesSide', 'PersonAddressId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddressNcesSide', 'PersonAddressNcesSideId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddressNcesSide', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAllergy', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAllergy', 'PersonAllergyId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAllergy', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAllergy', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonBirthplace', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonBirthplace', 'PersonBirthplaceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonBirthplace', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonBirthplace', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCareerEducationPlan', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCareerEducationPlan', 'PersonCareerEducationPlanId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCareerEducationPlan', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCareerEducationPlan', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCredential', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCredential', 'PersonCredentialId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCredential', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCredential', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDegreeOrCertificate', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDegreeOrCertificate', 'PersonDegreeOrCertificateId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDegreeOrCertificate', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDegreeOrCertificate', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDemographicRace', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDemographicRace', 'PersonDemographicRaceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDemographicRace', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDemographicRace', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001943', 'PersonDemographicRace', 'RefRaceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDetail', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDetail', 'PersonDetailId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDetail', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDetail', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'PersonAddressId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'PersonDigitalAccessId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'PersonDigitalAccessId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'PersonDigitalAccessSpeedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'PersonLearningDeviceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDisability', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDisability', 'PersonDisabilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDisability', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDisability', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonEmailAddress', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonEmailAddress', 'PersonEmailAddressId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonEmailAddress', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonEmailAddress', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonFamily', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonFamily', 'PersonFamilyId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonFamily', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonFamily', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealth', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealth', 'PersonHealthId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealth', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealth', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealthBirth', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealthBirth', 'PersonHealthBirthId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealthBirth', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealthBirth', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHomelessness', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHomelessness', 'PersonHomelessnessId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHomelessness', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHomelessness', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonIdentifier', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonIdentifier', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonIdentifier', 'PersonIdentifierId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonIdentifier', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonImmunization', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonImmunization', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonImmunization', 'PersonImmunizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonImmunization', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLanguage', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLanguage', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLanguage', 'PersonLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLanguage', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLearningDevice', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLearningDevice', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLearningDevice', 'PersonLearningDeviceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLearningDevice', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMaster', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMaster', 'PersonMasterId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMaster', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMilitary', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMilitary', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMilitary', 'PersonMilitaryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMilitary', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonOtherName', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonOtherName', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonOtherName', 'PersonOtherNameId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonOtherName', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonAddressId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonDetailId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonPersonalInformationVerificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonTelephoneId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonProgramParticipation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonProgramParticipation', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonProgramParticipation', 'PersonProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonProgramParticipation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonReferral', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonReferral', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonReferral', 'PersonReferralId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonReferral', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'PersonRelationshipId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'RelatedPersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'PersonStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'StatusValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonTelephone', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonTelephone', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonTelephone', 'PersonTelephoneId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonTelephone', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'CourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentRequirementId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'CompetencySetId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'ProfessionalDevelopmentRequirementId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSession', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSession', 'ProfessionalDevelopmentActivityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSession', 'ProfessionalDevelopmentSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSession', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'ProfessionalDevelopmentSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'ProfessionalDevelopmentSessionInstructorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Program', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Program', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Program', 'ProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Program', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAE', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAE', 'PersonProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAE', 'ProgramParticipationAEId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAE', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAttainment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAttainment', 'PersonProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAttainment', 'ProgramParticipationAttainmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAttainment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationCte', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationCte', 'PersonProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationCte', 'ProgramParticipationCteId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationCte', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationFoodService', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationFoodService', 'PersonProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationFoodService', 'ProgramParticipationFoodServiceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationFoodService', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationMigrant', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationMigrant', 'PersonProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationMigrant', 'ProgramParticipationMigrantId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationMigrant', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationNeglected', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationNeglected', 'PersonProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationNeglected', 'ProgramParticipationNeglectedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationNeglected', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationSpecialEducation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationSpecialEducation', 'PersonProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationSpecialEducation', 'ProgramParticipationSpecialEducationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationSpecialEducation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTeacherPrep', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTeacherPrep', 'PersonProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTeacherPrep', 'ProgramParticipationTeacherPrepId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTeacherPrep', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleI', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleI', 'PersonProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleI', 'ProgramParticipationTitleIId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleI', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleIIILep', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleIIILep', 'PersonProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleIIILep', 'ProgramParticipationTitleIiiLepId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleIIILep', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOA', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOA', 'PersonProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOA', 'ProgramParticipationWIOAId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOA', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOABarriers', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOABarriers', 'ProgramParticipationWIOABarriersId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOABarriers', 'ProgramParticipationWIOAId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOABarriers', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsCourse', 'CourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsCourse', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsCourse', 'PsCourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsCourse', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsInstitution', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsInstitution', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsInstitution', 'PsInstitutionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsInstitution', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsPriceOfAttendance', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsPriceOfAttendance', 'PsInstitutionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsPriceOfAttendance', 'PSPriceOfAttendanceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsPriceOfAttendance', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsProgram', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsProgram', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsProgram', 'PsProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsProgram', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSection', 'CourseSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSection', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSection', 'PsSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSection', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSectionLocation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSectionLocation', 'PsSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSectionLocation', 'PsSectionLocationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSectionLocation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStaffEmployment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStaffEmployment', 'PsStaffEmploymentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStaffEmployment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStaffEmployment', 'StaffEmploymentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicAward', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicAward', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicAward', 'PsStudentAcademicAwardId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicAward', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicRecord', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicRecord', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicRecord', 'PsStudentAcademicRecordId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicRecord', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAdmissionTest', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAdmissionTest', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAdmissionTest', 'PsStudentAdmissionTestId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAdmissionTest', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentApplication', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentApplication', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentApplication', 'PsStudentApplicationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentApplication', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCohort', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCohort', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCohort', 'PsStudentCohortId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCohort', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCourseSectionMark', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCourseSectionMark', 'PsStudentCourseSectionMarkId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCourseSectionMark', 'PsStudentSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCourseSectionMark', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentDemographic', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentDemographic', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentDemographic', 'PsStudentDemographicId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentDemographic', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEmployment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEmployment', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEmployment', 'PsStudentEmploymentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEmployment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEnrollment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEnrollment', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEnrollment', 'PSStudentEnrollmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEnrollment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentFinancialAid', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentFinancialAid', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentFinancialAid', 'PsStudentFinancialAidId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentFinancialAid', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'PsProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'PSStudentProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentSection', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentSection', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentSection', 'PsStudentSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentSection', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'QuarterlyEmploymentRecord', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'QuarterlyEmploymentRecord', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'QuarterlyEmploymentRecord', 'QuarterlyEmploymentRecordId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'QuarterlyEmploymentRecord', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatus', 'RecordStatusCreatorOrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatus', 'RecordStatusCreatorPersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatus', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordPKColumn', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordStatusCreatorOrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordStatusCreatorPersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordStatusHistoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordTable', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAccommodation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAccommodationSubject', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAmendment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAssessment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAssessmentAccommodation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramEligibility', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramEligibilityEvaluation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramGoal', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramMeeting', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramMeetingAttendee', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramProgressGoal', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramProgressReport', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramProgressReportPlan', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramService', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramServicesReceived', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12CharterSchoolAuthorizerAgency', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12CharterSchoolManagementOrganization', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaGradeLevelsApproved', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaGradeOffered', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaPreKEligibility', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaPreKEligibleAgesIDEA', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12OrganizationStudentResponsibility', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolCorrectiveAction', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolGradeLevelsApproved', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolGradeOffered', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolImprovement', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StaffAssignment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentAcademicHonor', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentCourseSectionMark', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentDiscipline', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentHomeLanguageSurvey', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentSession', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12TitleIIILanguageInstruction', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearnerAction', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearnerActivity', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearnerActivity_LearningResource', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResource', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourceAdaptation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourceEducationLevel', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourceMediaFeature', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourcePeerRating', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourcePhysicalMedia', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Location', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Organization', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationAccreditation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendar', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendarCrisis', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendarDay', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendarEvent', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendarSession', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationEmail', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationEmployeeBenefit', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationFederalAccountability', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationFinancial', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationIndicator', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationLocation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPersonRole', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPersonRoleApplication', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPersonRoleFTE', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPolicy', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPopulationServed', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationService', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationTechnicalAssistance', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationTelephone', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PDActivityEducationLevel', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PeerRatingSystem', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Person', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Person_AssessmentPersonalNeedsProfile', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonAddress', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonAddressNcesSide', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonAllergy', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonCareerEducationPlan', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonCredential', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDegreeOrCertificate', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDigitalAccess', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDigitalAccessSpeed', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonEmailAddress', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonFamily', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonHealth', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonIdentifier', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonImmunization', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonLanguage', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonLearningDevice', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonMaster', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonOtherName', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonPersonalInformationVerification', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonReferral', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonRelationship', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonStatus', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonTelephone', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProfessionalDevelopmentActivity', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProfessionalDevelopmentRequirement', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProfessionalDevelopmentSession', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProfessionalDevelopmentSessionInstructor', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationAttainment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationWIOA', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationWIOABarriers', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsPriceOfAttendance', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsProgram', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentAcademicAward', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentAcademicRecord', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentAdmissionTest', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentEnrollment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PSStudentProgram', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'QuarterlyEmploymentRecord', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RequiredImmunization', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Role', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RoleAttendance', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RoleAttendanceEvent', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RoleStatus', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Rubric', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RubricCriterion', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RubricCriterionLevel', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServiceFrequency', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServicePlan', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServiceProvided', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServiceProvider', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServicesReceived', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServiceStaff', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffCompensation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffCredential', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffEmployment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffEvaluation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffEvaluationPart', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffExperience', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffProfessionalDevelopmentActivity', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffTechnicalAssistance', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'TeacherEducationCredentialExam', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'TeacherStudentDataLinkExclusion', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'WorkforceProgramParticipantCohort', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001919', 'OrganizationCalendarEvent', 'StartTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001919', 'RoleAttendanceEvent', 'StartTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001920', 'OrganizationCalendarEvent', 'EndTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001920', 'RoleAttendanceEvent', 'EndTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001921', 'OrganizationPersonRoleFTE', 'FullTimeEquivalency', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001922', 'PersonProgramParticipation', 'RefProgramEntryReasonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001923', 'OrganizationFederalAccountability', 'RefComprehensiveSupportAndImprovementStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001924', 'OrganizationFederalAccountability', 'RefTargetedSupportAndImprovementStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001925', 'OrganizationFederalAccountability', 'RefAdditionalTargetedSupportAndImprovementStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001926', 'K12LeaGradeLevelsApproved', 'RefGradeLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001926', 'K12SchoolGradeLevelsApproved', 'RefGradeLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001927', 'OrganizationTelephone', 'RefTelephoneNumberListedStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001927', 'PersonTelephone', 'RefTelephoneNumberListedStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'LocationAddress', 'DoNotPublishIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'OrganizationEmail', 'DoNotPublishIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'OrganizationTelephone', 'DoNotPublishIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'PersonAddress', 'DoNotPublishIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'PersonEmailAddress', 'DoNotPublishIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'PersonTelephone', 'DoNotPublishIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001930', 'ProgramParticipationAE', 'OutOfWorkforceIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001930', 'ProgramParticipationCte', 'OutOfWorkforceIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001931', 'PersonLearningDevice', 'RefPrimaryLearningDeviceAwayFromSchoolId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001932', 'PersonLearningDevice', 'RefPrimaryLearningDeviceAccessId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001933', 'PersonLearningDevice', 'RefPrimaryLearningDeviceProviderId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001934', 'PersonDigitalAccess', 'InternetAccessInResidence', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001935', 'PersonDigitalAccess', 'RefBarrierToInternetAccessInResidenceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001936', 'PersonDigitalAccess', 'RefInternetAccessTypeInResidenceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001937', 'PersonDigitalAccess', 'RefInternetPerformanceInResidenceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001938', 'WorkforceProgramParticipantCohort', 'CohortMedianEarnings', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001939', 'ProgramParticipationAE', 'RefAdultEducationProgramExitReasonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001940', 'ProgramParticipationWIOABarriers', 'RefWIOABarrierstoEmploymentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001941', 'ProgramParticipationWIOA', 'WIOACareerServices', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001942', 'ProgramParticipationWIOA', 'WIOATrainingServices', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001944', 'PersonDemographicRace', 'FederalRaceAndEthnicityDeclined', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001945', 'PersonPersonalInformationVerification', 'RefPersonalInformationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001946', 'Role', 'RefRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001947', 'PsStudentDemographic', 'FirstGenerationCollegeStudent', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001948', 'PersonAddressNcesSide', 'NcesSideEstimate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001949', 'PersonAddressNcesSide', 'NcesSideStandardError', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001950', 'PersonAddressNcesSide', 'NcesSideDateProcessed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001951', 'PersonAddressNcesSide', 'NcesSideVintageBeginYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001952', 'PersonAddressNcesSide', 'NcesSideVintageEndYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001953', 'CredentialDefinition', 'CredentialDefinitionTerminalDegreeIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001954', 'ProgramParticipationAttainment', 'AECredentialAttainmentPSEnrollmentIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001955', 'ProgramParticipationAttainment', 'AECredentialAttainmentEmployedIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001956', 'ProgramParticipationAttainment', 'AECredentialAttainmentPSCredentialIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001957', 'RoleAttendance', 'NumberOfDaysTardy', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001958', 'StaffCompensation', 'RefStaffCompensationSourceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001959', 'StaffCompensation', 'StaffCompensationAnnualSupplement', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001960', 'StaffCompensation', 'StaffCompensationLongevity', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001961', 'K12StaffAssignment', 'RefEDFactsTeacherInexperiencedStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001962', 'K12StaffAssignment', 'RefOutOfFieldStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001963', 'K12OrganizationStudentResponsibility', 'RefStudentSchoolAffiliationStateDefinedStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001964', 'DataCollection', 'SourceSystemDataCollectionIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001965', 'DataCollection', 'SourceSystemName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001966', 'DataCollection', 'DataCollectionName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001967', 'DataCollection', 'DataCollectionDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001968', 'DataCollection', 'DataCollectionOpenDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001969', 'DataCollection', 'DataCollectionCloseDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001970', 'DataCollection', 'DataCollectionAcademicSchoolYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001971', 'DataCollection', 'DataCollectionSchoolYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001972', 'RecordStatus', 'RefRecordStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001972', 'RecordStatusHistory', 'RefRecordStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001973', 'RecordStatus', 'RecordStatusDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001973', 'RecordStatusHistory', 'RecordStatusDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001974', 'RecordStatus', 'RefRecordStatusCreatorEntityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001974', 'RecordStatusHistory', 'RefRecordStatusCreatorEntityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001975', 'PersonDigitalAccessSpeed', 'InternetUploadSpeed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001976', 'PersonDigitalAccessSpeed', 'InternetDownloadSpeed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001977', 'PersonDigitalAccessSpeed', 'InternetSpeedTestDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001978', 'ProgramParticipationAttainment', 'RefEdFactsAcademicOrCareerAndTechnicalOutcomeTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001979', 'ProgramParticipationAttainment', 'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001981', 'PsStudentDemographic', 'EmancipatedMinor', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001982', 'PersonFamily', 'NumberOfHouseholdCollegeStudents', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001983', 'PsStudentDemographic', 'RefNumberOfDependentsTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001984', 'PsStudentDemographic', 'ChildrenOfFallenHeroesIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001985', 'StaffEvaluationPart', 'PartName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001986', 'StaffEvaluationPart', 'ScoreOrRating', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001987', 'StaffEvaluationPart', 'Scale', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001988', 'K12StudentHomeLanguageSurvey', 'HomeLanguageSurveyAdministrationIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001989', 'K12StudentHomeLanguageSurvey', 'HomeLanguageSurveyAdministrationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001990', 'DataCollection', 'RefDataCollectionStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001991', 'OrganizationProjectBasedLearning', 'ProjectBasedLearningIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001992', 'OrganizationProjectBasedLearning', 'OrganizationProjectBasedLearningId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001992', 'OrganizationProjectBasedLearning', 'RefProjectBasedLearningTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001994', 'Course', 'CourseLevelApprovalIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001995', 'Assessment', 'RefAssessmentTypeAdministeredToEnglishLearnersId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001996', 'K12StaffAssignment', 'RefSpecialEducationTeacherQualificationStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001997', 'K12StaffAssignment', 'RefEdFactsCertificationStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001998', 'OrganizationPopulationServed', 'RefStudentSupportServiceAvailabilityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001999', 'OrganizationEnrollmentCapacity', 'AdjustedCapacity', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002000', 'OrganizationEnrollmentCapacity', 'RefAdjustedCapacityReasonTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002001', 'OrganizationEnrollmentCapacity', 'EarlyLearningAge2AndOlderCapacity', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002002', 'OrganizationEnrollmentCapacity', 'EarlyLearningAgeUnder2Capacity', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002003', 'FinancialAccountLocal', 'RefFinancialAccountLocalRevenueCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002004', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalFunctionCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002005', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalObjectCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002006', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalLevelOfInstructionCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002007', 'FinancialAccountLocal', 'RefFinancialAccountLocalBalanceSheetCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002008', 'FinancialAccountLocal', 'RefFinancialAccountLocalFundClassificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002009', 'FinancialAccountLocal', 'RefFinancialAccountLocalProgramCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002010', 'FinancialAccount', 'RefFederalProgramSubgrantCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002012', 'FacilityUtilization', 'EnrollmentCapacity', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002012', 'OrganizationEnrollmentCapacity', 'EnrollmentCapacity', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002012', 'OrganizationEnrollmentCapacity', 'OrganizationCalendarSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002012', 'OrganizationEnrollmentCapacity', 'OrganizationEnrollmentCapacityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002013', 'OrganizationProgramType', 'PrimaryProgramIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000055', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000067', 'OrganizationDetail', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000096', 'RoleStatus', 'RefRoleStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000097', 'OrganizationPersonRole', 'EntryDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000107', 'OrganizationPersonRole', 'ExitDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000111', 'OrganizationIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000122', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000148', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000251', 'OrganizationCalendarSession', 'BeginDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000056', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000533', 'OrganizationOperationalStatus', 'RefOperationalStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000595', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000845', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000847', 'OrganizationPolicy', 'PolicyType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000974', 'RoleStatus', 'StatusStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000975', 'RoleStatus', 'StatusEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001059', 'PersonCredential', 'ExpirationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001071', 'PersonIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001072', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001075', 'PersonIdentifier', 'RefPersonIdentificationSystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001103', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001104', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001377', 'IncidentPerson', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001378', 'IncidentPerson', 'RefIncidentPersonTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000068', 'OrganizationDetail', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000147', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000775', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001118', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001119', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000777', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001120', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001121', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000778', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001121', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001222', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000807', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001222', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000814', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000815', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001929', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000637', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000848', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000849', 'OrganizationPolicy', 'PolicyType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001068', 'OrganizationIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001073', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001104', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001105', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000111', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000180', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000185', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000191', 'OrganizationDetail', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000346', 'OrganizationPersonRole', 'EntryDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000411', 'PersonIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000527', 'OrganizationPersonRole', 'ExitDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000638', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000767', 'RoleStatus', 'RefRoleStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000781', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000850', 'OrganizationPolicy', 'PolicyType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000853', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001069', 'OrganizationIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001105', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001106', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000166', 'OrganizationIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000189', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000193', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000204', 'OrganizationDetail', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000526', 'OrganizationPersonRole', 'EntryDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000591', 'OrganizationPersonRole', 'ExitDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000827', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000854', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000859', 'OrganizationPolicy', 'PolicyType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001072', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001080', 'PersonIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001106', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001107', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000175', 'OrganizationIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000235', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000249', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000590', 'OrganizationPersonRole', 'EntryDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000626', 'OrganizationDetail', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000646', 'OrganizationPersonRole', 'ExitDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000855', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000983', 'OrganizationPolicy', 'PolicyType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001073', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001107', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001108', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001444', 'PersonIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000166', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000236', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000290', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000364', 'OrganizationIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000645', 'OrganizationPersonRole', 'EntryDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000794', 'OrganizationPersonRole', 'ExitDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000808', 'OrganizationDetail', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000856', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001108', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001109', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000175', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000237', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000550', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000625', 'OrganizationIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000793', 'OrganizationPersonRole', 'EntryDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000795', 'OrganizationPersonRole', 'ExitDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000821', 'OrganizationDetail', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000858', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001109', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001110', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000203', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000286', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000551', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000863', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000898', 'OrganizationDetail', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000974', 'OrganizationPersonRole', 'EntryDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000999', 'OrganizationPersonRole', 'ExitDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001076', 'OrganizationIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001110', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001111', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000287', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000565', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000625', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000820', 'OrganizationIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000966', 'OrganizationDetail', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000998', 'OrganizationPersonRole', 'EntryDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001111', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001112', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000288', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000714', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000781', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000826', 'OrganizationIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001112', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001114', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001243', 'OrganizationPersonRole', 'EntryDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000291', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000827', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000978', 'OrganizationIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001114', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001115', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001291', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000569', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000978', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001115', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001116', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001315', 'OrganizationIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000580', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001116', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001117', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001280', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001466', 'OrganizationIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000581', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001117', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001118', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001315', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000776', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001119', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001120', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RequiredImmunization', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RequiredImmunization', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RequiredImmunization', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RequiredImmunization', 'RequiredImmunizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'RefJurisdictionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'RoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendance', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendance', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendance', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendance', 'RoleAttendanceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendanceEvent', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendanceEvent', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendanceEvent', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendanceEvent', 'RoleAttendanceEventId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleStatus', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleStatus', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleStatus', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleStatus', 'RoleStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Rubric', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Rubric', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Rubric', 'RubricId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterion', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterion', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterion', 'RubricCriterionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterion', 'RubricId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000490', 'K12ProgramOrService', 'RefPrekindergartenDailyLengthId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000491', 'K12ProgramOrService', 'RefKindergartenDailyLengthId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000494', 'OrganizationCalendar', 'CalendarCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000495', 'OrganizationCalendar', 'CalendarDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000496', 'OrganizationCalendarSession', 'DaysInSession', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000497', 'OrganizationCalendarSession', 'FirstInstructionDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000498', 'OrganizationCalendarSession', 'LastInstructionDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000499', 'Course', 'InstructionalMinutes', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000500', 'OrganizationCalendarSession', 'MinutesPerDay', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000501', 'Incident', 'IncidentIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000502', 'Incident', 'IncidentDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000503', 'Incident', 'IncidentTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000504', 'Facility', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000505', 'Incident', 'IncidentCost', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000506', 'Incident', 'RefIncidentReporterTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000507', 'Incident', 'IncidentReporterId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000508', 'Incident', 'IncidentDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000509', 'Incident', 'RefIncidentBehaviorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000510', 'Incident', 'RefIncidentInjuryTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000511', 'K12StudentDiscipline', 'DurationOfDisciplinaryAction', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000512', 'K12StudentDiscipline', 'RelatedToZeroTolerancePolicy', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000513', 'K12StudentDiscipline', 'FullYearExpulsion', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000514', 'K12StudentDiscipline', 'ShortenedExpulsion', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000515', 'Incident', 'RefIncidentTimeDescriptionCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000517', 'Course', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000518', 'CteCourse', 'CoreAcademicCourse', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000518', 'K12Course', 'CoreAcademicCourse', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000519', 'CourseSectionSchedule', 'ClassBeginningTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000520', 'CourseSectionSchedule', 'ClassEndingTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000521', 'CourseSectionSchedule', 'ClassMeetingDays', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000522', 'CourseSectionSchedule', 'ClassPeriod', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000523', 'CourseSectionSchedule', 'TimeDayIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000524', 'CourseSectionLocation', 'RefInstructionLocationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000525', 'K12StaffAssignment', 'PrimaryAssignment', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000528', 'ELStaffAssignment', 'ItinerantTeacher', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000528', 'K12StaffAssignment', 'ItinerantTeacher', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000529', 'K12StudentEnrollment', 'FirstEntryDateIntoUSSchool', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000530', 'K12StudentEnrollment', 'RefPromotionReasonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000531', 'K12StudentEnrollment', 'RefNonPromotionReasonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000532', 'ELEnrollment', 'RefPublicSchoolResidenceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000532', 'K12StudentEnrollment', 'RefPublicSchoolResidenceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000535', 'ProgramParticipationSpecialEducation', 'RefIDEAEducationalEnvironmentSchoolAgeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000536', 'ProgramParticipationTitleIIILep', 'RefTitleIIIAccountabilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000537', 'ELOrganization', 'RefLeaTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000537', 'K12Lea', 'RefLeaTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000538', 'K12StudentDiscipline', 'RefDisciplineMethodOfCwdId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000539', 'K12StudentDiscipline', 'RefIdeaInterimRemovalReasonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000540', 'AssessmentRegistration', 'RefAssessmentReasonNotCompletingId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000541', 'K12StudentDiscipline', 'RefIdeaInterimRemovalId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000542', 'K12SchoolStatus', 'ConsolidatedMepFundsStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000543', 'ELStaffEmployment', 'MepPersonnelIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000543', 'K12StaffEmployment', 'MepPersonnelIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000545', 'K12StudentDiscipline', 'RefDisciplineReasonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000546', 'StaffCredential', 'TechnologySkillsStandardsMet', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000547', 'FinancialAccount', 'RefFederalProgramCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000552', 'ELStaffEmployment', 'TitleITargetedAssistanceStaffFunded', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000552', 'K12StaffEmployment', 'TitleITargetedAssistanceStaffFunded', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000553', 'OrganizationFederalAccountability', 'RefProficiencyTargetStatusRLAId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000555', 'K12StudentDiscipline', 'RefDisciplineMethodFirearmsId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000556', 'K12StudentDiscipline', 'RefIDEADisciplineMethodFirearmId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000557', 'Incident', 'RefFirearmTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000558', 'ELStaffAssignment', 'RefSpecialEducationStaffCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000558', 'K12StaffAssignment', 'RefSpecialEducationStaffCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000558', 'ServiceStaff', 'RefSpecialEducationStaffCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000559', 'ELEnrollment', 'RefIDEAEnvironmentELId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000559', 'ProgramParticipationSpecialEducation', 'RefIDEAEducationalEnvironmentECId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000561', 'K12StudentAcademicRecord', 'RefProgressLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000561', 'K12StudentCourseSection', 'RefProgressLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000562', 'ProgramParticipationMigrant', 'PrioritizedForServices', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000563', 'ProgramParticipationMigrant', 'ContinuationOfServicesStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000564', 'ELStaffAssignment', 'RefSpecialEducationAgeGroupTaughtId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000564', 'K12StaffAssignment', 'RefSpecialEducationAgeGroupTaughtId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000566', 'K12StudentAcademicRecord', 'RefTechnologyLiteracyStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000567', 'K12LeaFederalFunds', 'SesFundsSpent', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000568', 'K12LeaFederalFunds', 'PublicSchoolChoiceFundsSpent', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000571', 'K12StudentAcademicRecord', 'RefPreAndPostTestIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000571', 'K12StudentCourseSection', 'RefPreAndPostTestIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000572', 'AssessmentResult', 'RefAssessmentPretestOutcomeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000573', 'AssessmentItemResponse', 'RefProficiencyStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000574', 'K12LeaFederalFunds', 'SesSchoolChoice20PercentObligation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000576', 'AssessmentResult', 'IncludedInAypCalculation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000577', 'PersonDisability', 'DisabilityStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000578', 'K12StudentDiscipline', 'EducationalServicesAfterRemoval', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000580', 'ProgramParticipationCte', 'SingleParentOrSinglePregnantWoman', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000584', 'K12StudentCohort', 'CohortGraduationYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000584', 'PsStudentCohort', 'CohortGraduationYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000585', 'ELOrganization', 'RefStatePovertyDesignationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000585', 'K12School', 'RefStatePovertyDesignationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000586', 'K12StudentAcademicRecord', 'RefPsEnrollmentActionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000587', 'ELOrganization', 'RefInternetAccessId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000587', 'K12SchoolStatus', 'RefInternetAccessId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000588', 'ProgramParticipationCte', 'RefNonTraditionalGenderStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000589', 'StaffEvaluation', 'RefStaffPerformanceLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000592', 'ProgramParticipationCte', 'CteParticipant', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000593', 'ProgramParticipationCte', 'CteNonTraditionalCompletion', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000594', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000595', 'ELOrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000596', 'CourseSection', 'RefAdditionalCreditTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000596', 'CteCourse', 'RefAdditionalCreditTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000596', 'K12Course', 'RefAdditionalCreditTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000596', 'K12StudentCourseSection', 'RefAdditionalCreditTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000597', 'AssessmentParticipantSession', 'LocationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000597', 'AssessmentSession', 'Location', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000598', 'OrganizationCalendarDay', 'AlternateDayName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000599', 'RoleAttendanceEvent', 'RefAbsentAttendanceCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000600', 'RoleAttendanceEvent', 'RefPresentAttendanceCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000601', 'RoleAttendanceEvent', 'RefAttendanceEventTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000602', 'Facility', 'BuildingSiteNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000602', 'LocationAddress', 'BuildingSiteNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000603', 'OrganizationCalendarEvent', 'RefCalendarEventType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000605', 'AssessmentSubtest', 'RefContentStandardTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000606', 'LocationAddress', 'Latitude', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000606', 'PersonAddress', 'Latitude', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000607', 'LocationAddress', 'Longitude', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000607', 'PersonAddress', 'Longitude', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000609', 'K12StudentDiscipline', 'RefDisciplineLengthDifferenceReasonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000610', 'K12StudentEnrollment', 'DisplacedStudentStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000610', 'PsStudentEnrollment', 'DisplacedStudentStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000611', 'OrganizationCalendarCrisis', 'Code', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000612', 'OrganizationCalendarCrisis', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000613', 'OrganizationCalendarCrisis', 'Type', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000614', 'OrganizationCalendarCrisis', 'StartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000616', 'K12StudentCourseSection', 'GradeValueQualifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000616', 'K12StudentCourseSectionMark', 'GradeValueQualifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000617', 'Incident', 'RefIncidentLocationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000618', 'PersonAddress', 'RefPersonalInformationVerificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000618', 'PersonIdentifier', 'RefPersonalInformationVerificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000618', 'PersonPersonalInformationVerification', 'RefPersonalInformationVerificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000620', 'StaffEmployment', 'RefEmploymentSeparationReasonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000621', 'StaffEmployment', 'RefEmploymentSeparationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000622', 'ELStaffAssignment', 'RefClassroomPositionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000622', 'K12StaffAssignment', 'RefClassroomPositionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000624', 'RoleAttendanceEvent', 'RefLeaveEventTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000627', 'Incident', 'RefIncidentBehaviorSecondaryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000630', 'AssessmentItem', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000632', 'Facility', 'BuildingName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000633', 'ELClassSectionService', 'YoungestAgeServed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000633', 'OrganizationPopulationServed', 'YoungestAgeServed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000634', 'PersonOtherName', 'RefOtherNameTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000635', 'ProgramParticipationNeglected', 'AchievementIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000636', 'ProgramParticipationNeglected', 'OutcomeIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000647', 'K12StaffAssignment', 'TeacherOfRecord', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000648', 'ELStaffAssignment', 'RefTeachingAssignmentRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000648', 'K12StaffAssignment', 'RefTeachingAssignmentRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000649', 'ELStaffAssignment', 'ContributionPercentage', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000649', 'K12StaffAssignment', 'ContributionPercentage', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000650', 'K12StudentCourseSection', 'RefCourseSectionEntryTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000651', 'K12StudentCourseSection', 'ExitWithdrawalDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000652', 'K12StudentCourseSection', 'RefCourseSectionExitTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000653', 'K12LeaFederalReporting', 'InterscholasticSportsMaleOnly', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000654', 'K12LeaFederalReporting', 'InterscholasticSportsFemaleOnly', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000655', 'K12LeaFederalReporting', 'InterscholasticTeamsMaleOnly', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000656', 'K12LeaFederalReporting', 'InterscholasticTeamsFemaleOnly', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000657', 'K12LeaFederalReporting', 'InterscholasticSportParticipantsMale', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000658', 'K12LeaFederalReporting', 'InterscholasticSportParticipantsFemale', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000689', 'CompetencyDefinition', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000690', 'CompetencyDefinition', 'Statement', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000691', 'CompetencyDefinition', 'Type', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000692', 'CompetencyDefinition', 'Code', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000693', 'CompetencyFramework', 'URI', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000694', 'CompetencyFramework', 'Title', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000695', 'CompetencyFramework', 'Version', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000696', 'CompetencyFramework', 'Creator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000697', 'CompetencyFramework', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000698', 'CompetencyFramework', 'RefCompetencyFrameworkPublicationStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000699', 'CompetencyFramework', 'Jurisdiction', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000700', 'CompetencyFramework', 'ValidStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000701', 'CompetencyFramework', 'ValidEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000702', 'CompetencyFramework', 'Subject', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000703', 'PersonHealth', 'VisionScreeningDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000704', 'OrganizationWebsite', 'Website', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000705', 'PersonHealth', 'HearingScreeningDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000706', 'PersonHealth', 'DentalScreeningDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000707', 'AssessmentItem', 'MaximumScore', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000708', 'AssessmentItem', 'MinimumScore', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000709', 'AssessmentItemCharacteristic', 'Value', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000710', 'K12School', 'RefCharterSchoolTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000711', 'K12StudentCohort', 'CohortDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000712', 'CteCourse', 'RefCurriculumFrameworkTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000712', 'K12Course', 'RefCurriculumFrameworkTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000713', 'K12StudentAcademicRecord', 'RefHighSchoolDiplomaDistinctionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000715', 'CompetencyDefAssociation', 'AssociatedEntityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000716', 'StaffCredential', 'RefProgramSponsorTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000717', 'AssessmentPerformanceLevel', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000718', 'AssessmentPerformanceLevel', 'Label', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000719', 'AssessmentSubtest', 'Rules', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000724', 'AssessmentItemResponse', 'ScoreValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000725', 'CompetencyDefEducationLevel', 'RefEducationLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000726', 'PsStudentAcademicRecord', 'AcademicYearDesignator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000727', 'OrganizationCalendarSession', 'RefAcademicTermDesignatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000727', 'PsStudentAcademicRecord', 'RefAcademicTermDesignatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000728', 'PsStudentEnrollment', 'RefDistanceEducationCourseEnrollmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000729', 'ELOrganization', 'RefPredominantCalendarSystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000729', 'PsInstitution', 'RefPredominantCalendarSystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000730', 'StaffEmployment', 'StandardOccupationalClassification', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000731', 'ELStaffEmployment', 'RefIpedsOccupationalCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000731', 'PsStaffEmployment', 'RefIpedsOccupationalCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000732', 'PsStaffEmployment', 'InstructionalStaffStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000733', 'PsStaffEmployment', 'MedicalSchoolStaffStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000734', 'PsStaffEmployment', 'FacultyStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000735', 'ELStaffEmployment', 'RefInstructionalStaffContractLengthId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000735', 'PsStaffEmployment', 'RefInstructionalStaffContractLengthId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000736', 'ELStaffEmployment', 'RefFullTimeStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000736', 'PsStaffEmployment', 'RefFullTimeStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000737', 'ELStaffEmployment', 'RefEmploymentContractTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000737', 'PsStaffEmployment', 'RefEmploymentContractTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000738', 'PsInstitution', 'RefTenureSystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000739', 'PsStaffEmployment', 'RefInstructionalStaffFacultyTenureId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000740', 'PsStaffEmployment', 'RefAcademicRankId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000741', 'PsStaffEmployment', 'RefInstructionCreditTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000742', 'PsStaffEmployment', 'GraduateAssistantStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000743', 'PsStaffEmployment', 'RefGraduateAssistantIpedsCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000744', 'ELStaffEmployment', 'AnnualBaseContractualSalary', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000744', 'PsStaffEmployment', 'AnnualBaseContractualSalary', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000745', 'PsPriceOfAttendance', 'TuitionPublished', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000746', 'PsPriceOfAttendance', 'RefTuitionUnitId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000747', 'PsPriceOfAttendance', 'RequiredStudentFees', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000748', 'PsInstitution', 'InstitutionallyControlledHousingStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000749', 'PsPriceOfAttendance', 'RoomCharges', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000750', 'PsPriceOfAttendance', 'BoardCharges', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000751', 'PsPriceOfAttendance', 'BooksAndSuppliesCosts', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000752', 'PsPriceOfAttendance', 'OtherStudentExpenses', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000753', 'PsPriceOfAttendance', 'PriceOfAttendance', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000754', 'PsPriceOfAttendance', 'ComprehensiveFee', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000755', 'PsStudentApplication', 'PostsecondaryApplicant', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000756', 'PsStudentApplication', 'RefAdmittedStudentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000757', 'PsStudentApplication', 'WaitListedStudent', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000758', 'PsStudentApplication', 'RefGradePointAverageDomainId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000759', 'PsStudentApplication', 'HighSchoolPercentile', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000760', 'PsStudentEnrollment', 'HousingOnCampus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000761', 'PsStudentEnrollment', 'FraternityParticipationStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000762', 'PsStudentEnrollment', 'SororityParticipationStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000763', 'PsStudentFinancialAid', 'FinancialAidApplicant', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000765', 'PsStudentFinancialAid', 'FinancialNeed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000766', 'TeacherEducationCredentialExam', 'RefTeacherEducationTestCompanyId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000767', 'ProgramParticipationTeacherPrep', 'RefTeacherPrepEnrollmentStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000768', 'ProgramParticipationTeacherPrep', 'RefTeacherPrepCompleterStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000769', 'ProgramParticipationTeacherPrep', 'RefAltRouteToCertificationOrLicensureId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000770', 'ProgramParticipationTeacherPrep', 'RefCriticalTeacherShortageCandidateId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000771', 'ProgramParticipationTeacherPrep', 'RefSupervisedClinicalExperienceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000772', 'ProgramParticipationTeacherPrep', 'ClinicalExperienceClockHours', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000773', 'TeacherEducationCredentialExam', 'RefTeacherEducationCredentialExamId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000774', 'TeacherEducationCredentialExam', 'RefTeacherEducationExamScoreTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000779', 'ProgramParticipationAE', 'RefAeFunctioningLevelAtIntakeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000780', 'ProgramParticipationAE', 'RefAeFunctioningLevelAtPosttestId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000782', 'ProgramParticipationAE', 'RefAeSpecialProgramTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'AeStudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'CteStudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'K12StudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'PsStudentAcademicRecord', 'RefProfessionalTechCredentialTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'WorkforceProgramParticipation', 'RefProfessionalTechnicalCredentialTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000784', 'ProgramParticipationAE', 'RefAePostsecondaryTransitionActionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000786', 'AeStaff', 'RefAeStaffClassificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000787', 'PersonFamily', 'FamilyIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000788', 'AeStaff', 'YearsOfPriorAeTeachingExperience', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000788', 'StaffExperience', 'YearsOfPriorAETeachingExperience', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000789', 'ELStaffEducation', 'ECDegreeOrCertificateHolder', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000790', 'ProgramParticipationAE', 'ProxyContactHours', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000792', 'ELStaffEducation', 'TotalCollegeCreditsEarned', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000795', 'RoleStatus', 'StatusEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000796', 'ELStaffEmployment', 'HoursWorkedPerWeek', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000797', 'ELStaffEmployment', 'HourlyWage', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000798', 'ELStaffEmployment', 'RefWageCollectionMethodId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000799', 'ELStaffEmployment', 'UnionMembershipStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000804', 'ProfessionalDevelopmentRequirement', 'RequiredTrainingClockHours', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000805', 'PersonCredential', 'RefIssuingStateId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000806', 'ELStaff', 'RefChildDevelopmentAssociateTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000806', 'StaffCredential', 'RefChildDevAssociateTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000809', 'ProfessionalDevelopmentActivity', 'ActivityIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000809', 'StaffProfessionalDevelopmentActivity', 'ActivityIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000810', 'ProfessionalDevelopmentActivity', 'Title', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000810', 'StaffProfessionalDevelopmentActivity', 'ActivityTitle', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000811', 'ProfessionalDevelopmentActivity', 'ScholarshipStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000811', 'StaffProfessionalDevelopmentActivity', 'ScholarshipStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000812', 'ProfessionalDevelopmentActivity', 'RefProfessionalDevelopmentFinancialSupportId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000812', 'StaffProfessionalDevelopmentActivity', 'RefProfessionalDevelopmentFinancialSupportId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000813', 'CoreKnowledgeArea', 'RefCoreKnowledgeAreaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000816', 'ELStaffEducation', 'SchoolAgeEducationPSCredits', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000816', 'ProgramParticipationTeacherPrep', 'SchoolAgeEducationPSCredits', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000818', 'OrganizationAccreditation', 'RefHigherEducationInstitutionAccreditationStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000818', 'PersonDegreeOrCertificate', 'RefHigherEducationInstitutionAccreditationStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000819', 'ELStaffEmployment', 'RefWageVerificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000822', 'ELClassSectionService', 'ServesChildrenWithSpecialNeeds', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000823', 'ELClassSectionService', 'ELClassGroupCurriculumType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000824', 'ELClassSectionService', 'RefELGroupSizeStandardMetId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000825', 'ELClassSection', 'ELProgramAnnualOperatingWeeks', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000825', 'ELOrganizationAvailability', 'AnnualOperatingWeeks', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000828', 'ELProgramLicensing', 'RefELProgramLicenseStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000829', 'EarlyChildhoodProgramTypeOffered', 'RefEarlyChildhoodProgramEnrollmentTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000830', 'ELQualityRatingImprovement', 'QrisAwardDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000831', 'ELQualityRatingImprovement', 'QRISExpirationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000834', 'ELOrganization', 'RefProfitStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000835', 'ELProgramLicensing', 'NumberOfFatalities', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000836', 'ELProgramLicensing', 'NumberOfInjuries', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000837', 'ELProgramLicensing', 'LicenseSuspensionStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000838', 'ELProgramLicensing', 'LicenseRevocationStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000840', 'OrganizationAccreditation', 'AccreditationAwardDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000841', 'OrganizationAccreditation', 'AccreditationExpirationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000842', 'OrganizationPolicy', 'PolicyType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000843', 'ELQualityRatingImprovement', 'NumberQrisLevels', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000844', 'ELOrganizationAvailability', 'NumberOfClassrooms', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000851', 'ELQualityInitiative', 'ProgramHeathSafetyChecklistUseStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000852', 'OrganizationPopulationServed', 'RefPopulationServedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000857', 'PersonFamily', 'RefCommunicationMethodId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000862', 'LocationAddress', 'RefERSRuralUrbanContinuumCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000865', 'ELFacilityLicensing', 'StateLicensedFacilityCapacity', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000866', 'OrganizationEmployeeBenefit', 'FullTimeBenefitIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000866', 'OrganizationEmployeeBenefit', 'RefEmployeeBenefitId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000867', 'OrganizationEmployeeBenefit', 'PartTimeBenefitIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000869', 'CompetencyDefAssociation', 'RefCompetencyDefAssociationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000870', 'CompetencyDefinition', 'TypicalAgeRange', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000871', 'CompetencyDefAssociation', 'CompetencyDefAssociationIdentifierURI', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000872', 'CompetencyDefinition', 'CompetencyDefParentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000873', 'CompetencyDefinition', 'CompetencyDefParentCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000874', 'CompetencyDefinition', 'URL', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000875', 'CompetencyDefinition', 'RefBloomsTaxonomyDomainId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000876', 'CompetencyDefinition', 'RefMultipleIntelligenceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000877', 'CompetencySet', 'RefCompletionCriteriaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000878', 'CompetencySet', 'CompletionCriteriaThreshold', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000879', 'CompetencyDefAssociation', 'RefLearningResourceCompetencyAlignmentTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000880', 'CompetencyFramework', 'RefLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000881', 'CompetencyDefinition', 'RefLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000882', 'CompetencyFramework', 'License', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000883', 'CompetencyDefinition', 'License', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000884', 'CompetencyFramework', 'Publisher', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000885', 'CompetencyFramework', 'Rights', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000886', 'CompetencyFramework', 'RightsHolder', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000887', 'CompetencyDefinition', 'ConceptKeyword', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000888', 'CompetencyDefinition', 'ConceptTerm', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000889', 'AssessmentRegistration', 'AssignedByPersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000890', 'AssessmentResult', 'DescriptiveFeedback', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000891', 'AssessmentItemResponse', 'DescriptiveFeedback', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000892', 'CredentialDefCategory', 'Category', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000893', 'CredentialDefinition', 'Title', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000894', 'CredentialDefinition', 'ImageUrl', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000895', 'CredentialDefinition', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000896', 'CredentialDefCriteria', 'Criteria', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000900', 'CredentialIssuer', 'AwardIssuerOriginURL', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000901', 'CredentialAwardEvidence', 'Statement', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000902', 'GoalMeasurement', 'SuccessCriteria', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000903', 'Goal', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000904', 'AssessmentItemPossibleResponse', 'FeedbackMessage', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000905', 'AssessmentItemPossibleResponse', 'SequenceNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000906', 'AssessmentItem', 'TextComplexityValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000907', 'AssessmentItem', 'RefTextComplexitySystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000908', 'AssessmentItemPossibleResponse', 'Value', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000910', 'CompetencyDefinition', 'TextComplexitySystem', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000911', 'LearningResource', 'Url', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000912', 'LearningResource', 'Title', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000913', 'LearningResource', 'SubjectName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000914', 'LearningResource', 'SubjectCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000915', 'LearningResource', 'SubjectCodeSystem', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000916', 'LearningResource', 'DateCreated', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000917', 'LearningResource', 'Creator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000918', 'LearningResource', 'PublisherName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000919', 'LearningResource', 'RefLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000921', 'LearningResource', 'LearningResourceLicenseURL', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000922', 'LearningResource', 'BasedOnUrl', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000923', 'LearningResource', 'RefLearningResourceIntendedEndUserRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000924', 'LearningResource', 'TimeRequired', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000925', 'LearningResource', 'TypicalAgeRangeMinimum', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000926', 'LearningResource', 'TypicalAgeRangeMaximum', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000927', 'LearningResource', 'RefLearningResourceInteractivityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000928', 'LearningResource', 'RefLearningResourceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000929', 'LearningResource', 'TextComplexityValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000930', 'LearningResource', 'TextComplexitySystem', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000931', 'Assessment', 'ShortName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000932', 'Assessment', 'AssessmentFamilyTitle', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000933', 'Assessment', 'AssessmentFamilyShortName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000934', 'LearnerAction', 'RefLearnerActionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000935', 'LearnerAction', 'Value', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000937', 'LearnerAction', 'LearnerActionDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000938', 'LearnerActivity', 'RefLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000939', 'LearnerActivity', 'Title', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000940', 'LearnerActivity', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000941', 'LearnerActivity', 'Prerequisite', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000942', 'LearnerActivity', 'RefLearnerActivityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000943', 'LearnerActivity', 'CreationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000944', 'LearnerActivity', 'MaximumTimeAllowed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000945', 'LearnerActivity', 'RefLearnerActivityMaximumTimeAllowedUnitsId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000946', 'LearnerActivity', 'DueDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000947', 'LearnerActivity', 'DueTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000948', 'LearnerActivity', 'MaximumAttemptsAllowed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000949', 'LearnerActivity', 'RefLearnerActivityAddToGradeBookFlagId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000950', 'LearnerActivity', 'ReleaseDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000951', 'LearnerActivity', 'Weight', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000952', 'LearnerActivity', 'PossiblePoints', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000953', 'LearnerActivity', 'RubricUrl', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000954', 'AssessmentItemResponse', 'ScaffoldingItemFlag', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000955', 'AssessmentItemResponse', 'HintCount', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000956', 'AssessmentItemResponse', 'HintIncludedAnswer', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000957', 'AssessmentItemResponse', 'FirstAttemptDuration', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000958', 'AssessmentItemResponse', 'StartTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000959', 'AssessmentItemResponse', 'StartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000961', 'AssessmentAdministration', 'Code', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000962', 'AssessmentAdministration', 'StartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000963', 'AssessmentAdministration', 'StartTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000964', 'AssessmentAdministration', 'FinishDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000965', 'AssessmentAdministration', 'FinishTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000968', 'AssessmentSession', 'SecurityIssue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000969', 'AssessmentItemResponse', 'SecurityIssue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000970', 'AssessmentResult', 'DateUpdated', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000971', 'AssessmentResult', 'DateCreated', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000976', 'K12StudentCourseSection', 'RefCourseSectionEnrollmentStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000977', 'AssessmentAdministration', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000979', 'AssessmentForm_AssessmentFormSection', 'SequenceNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000979', 'AssessmentFormSection_AssessmentItem', 'SequenceNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000980', 'AssessmentFormSection', 'GUID', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000981', 'Assessment', 'GUID', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000982', 'OrganizationAccreditation', 'RefAccreditationAgencyId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000984', 'ELFacilityLicensing', 'RefELFacilityLicensingStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000985', 'OrganizationCalendarSession', 'SessionStartTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000986', 'OrganizationCalendarSession', 'SessionEndTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000987', 'AeStudentEmployment', 'RefEmployedWhileEnrolledId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000987', 'K12StudentEmployment', 'RefEmployedWhileEnrolledId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000987', 'PsStudentEmployment', 'RefEmployedWhileEnrolledId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000987', 'WorkforceEmploymentQuarterlyData', 'RefEmployedWhileEnrolledId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000988', 'AeStudentEmployment', 'RefEmployedAfterExitId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000988', 'K12StudentEmployment', 'RefEmployedAfterExitId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000988', 'PsStudentEmployment', 'RefEmployedAfterExitId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000988', 'WorkforceEmploymentQuarterlyData', 'RefEmployedAfterExitId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000989', 'QuarterlyEmploymentRecord', 'Earnings', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000990', 'QuarterlyEmploymentRecord', 'RefEmploymentLocationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000991', 'WorkforceEmploymentQuarterlyData', 'EmployedInMultipleJobsCount', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000992', 'QuarterlyEmploymentRecord', 'ReferencePeriodStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000993', 'QuarterlyEmploymentRecord', 'ReferencePeriodEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000994', 'QuarterlyEmploymentRecord', 'RefERAdministrativeDataSourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000997', 'WorkforceProgramParticipation', 'RefWfProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001002', 'LearningResource', 'RefLearningResourceEducationalUseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001003', 'AssessmentParticipantSession', 'DeliveryDeviceDetails', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001004', 'AssessmentNeedApipDisplay', 'EncouragementAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001004', 'AssessmentNeedApipDisplay', 'MaskingAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001004', 'AssessmentPersonalNeedLanguageLearner', 'AssignedSupport', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001004', 'AssessmentPersonalNeedsProfile', 'AssignedSupportFlag', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001005', 'AssessmentNeedApipDisplay', 'EncouragementActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001005', 'AssessmentNeedApipDisplay', 'MaskingActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001005', 'AssessmentPersonalNeedLanguageLearner', 'ActivateByDefault', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001005', 'AssessmentPersonalNeedsProfile', 'ActivateByDefault', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001006', 'Assessment', 'Provider', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001007', 'AssessmentResult', 'PreliminaryIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001008', 'AssessmentResult', 'DiagnosticStatementSource', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001009', 'AssessmentResult', 'NumberOfResponses', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001010', 'AssessmentSubtest_AssessmentItem', 'ItemWeightCorrect', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001012', 'AssessmentSubtest_AssessmentItem', 'ItemWeightIncorrect', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001013', 'AssessmentSubtest_AssessmentItem', 'ItemWeightNotAttempted', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001014', 'AssessmentSubtest', 'RefAssessmentSubtestIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001015', 'AssessmentRegistration', 'DaysOfInstructionPriorToAssessment', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001016', 'AssessmentRegistration', 'RetestIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001017', 'AssessmentRegistration', 'CreationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001018', 'AssessmentSession', 'RefAssessmentSessionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001019', 'AssessmentSession', 'ScheduledStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001020', 'AssessmentSession', 'ScheduledEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001021', 'AssessmentParticipantSession', 'ActualStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001021', 'AssessmentSession', 'ActualStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001022', 'AssessmentParticipantSession', 'ActualEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001022', 'AssessmentSession', 'ActualEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001023', 'AssessmentPersonalNeedLanguageLearner', 'RefAssessmentNeedsProfileContentLanguageLearnerTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001024', 'AssessmentPersonalNeedsProfileContent', 'RefAssessmentNeedHazardTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001025', 'AssessmentPersonalNeedsProfileContent', 'RefAssessmentNeedSupportToolId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001026', 'AssessmentNeedBraille', 'RefAssessmentNeedUsageTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001026', 'AssessmentPersonalNeedScreenReader', 'RefAssessmentNeedUsageTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001027', 'AssessmentPersonalNeedScreenReader', 'RefAssessmentNeedLinkIndicationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001028', 'AssessmentPersonalNeedScreenReader', 'SpeechRate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001029', 'AssessmentPersonalNeedScreenReader', 'Volume', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001030', 'AssessmentNeedScreenEnhancement', 'InvertColorChoice', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001031', 'AssessmentNeedScreenEnhancement', 'Magnification', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001032', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleGradeTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001033', 'AssessmentNeedBraille', 'RefAssessmentNeedNumberOfBrailleDotsId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001034', 'AssessmentNeedBraille', 'NumberOfBrailleCells', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001035', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleMarkTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001036', 'AssessmentNeedBraille', 'BrailleDotPressure', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001037', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleStatusCellTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001038', 'AssessmentNeedApipContent', 'ItemTranslationDisplayLanguageTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001039', 'AssessmentNeedApipContent', 'KeywordTranslationLanguageTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001039', 'AssessmentPersonalNeedsProfileContent', 'RefKeywordTranslationsLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001040', 'AssessmentNeedApipContent', 'RefAssessmentNeedSigningTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001041', 'AssessmentNeedApipContent', 'RefAssessmentNeedAlternativeRepresentationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001042', 'AssessmentNeedApipContent', 'RefAssessmentNeedSpokenSourcePreferenceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001043', 'AssessmentNeedApipContent', 'ReadAtStartPreferenceIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001044', 'AssessmentNeedApipContent', 'RefAssessmentNeedUserSpokenPreferenceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001045', 'AssessmentNeedApipContent', 'AssessmentNeedDirectionsOnlyIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001046', 'AssessmentNeedApipDisplay', 'RefAssessmentNeedMaskingTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001047', 'AssessmentNeedApipDisplay', 'EncouragementTextMessagingString', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001048', 'AssessmentNeedApipDisplay', 'EncouragementSoundFileUrl', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001049', 'AssessmentNeedApipControl', 'AssessmentNeedTimeMultiplier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001050', 'AssessmentNeedApipControl', 'LineReaderHighlightColor', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001051', 'AssessmentNeedApipControl', 'OverlayColor', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001052', 'AssessmentNeedScreenEnhancement', 'ForegroundColor', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001053', 'AssessmentNeedApipControl', 'BackgroundColor', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001054', 'AssessmentNeedApipControl', 'RefAssessmentNeedIncreasedWhitespacingTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001055', 'AssessmentRegistration', 'TestingIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001056', 'AssessmentRegistration', 'ScorePublishDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001058', 'PersonCredential', 'CredentialName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001059', 'StaffCredential', 'CardiopulmonaryResuscitationCertification', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001060', 'StaffCredential', 'FirstAidCertification', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001061', 'StaffProfessionalDevelopmentActivity', 'ActivityStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001062', 'StaffProfessionalDevelopmentActivity', 'ActivityCompletionDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001063', 'AssessmentItemResponse', 'Value', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'AeStudentEmployment', 'EmploymentNaicsCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'CredentialDefinition', 'EmploymentNAICSCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'K12StudentEmployment', 'EmploymentNaicsCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'PsStudentEmployment', 'EmploymentNaicsCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'QuarterlyEmploymentRecord', 'EmploymentNAICSCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001066', 'OrganizationLocation', 'RefOrganizationLocationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001067', 'Assessment', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001070', 'PersonIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001074', 'PersonIdentifier', 'RefPersonIdentificationSystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001077', 'ProgramParticipationAE', 'RefAeInstructionalProgramTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001079', 'ProgramParticipationAE', 'RefGoalsForAttendingAdultEducationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001081', 'ProgramParticipationAE', 'PostsecondaryTransitionDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001083', 'AeStaff', 'RefAeStaffEmploymentStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001085', 'StaffCredential', 'RefAeCertificationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001086', 'ELStaffEducation', 'TotalApprovedECCreditsEarned', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001087', 'AssessmentPersonalNeedScreenReader', 'Pitch', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001088', 'AssessmentItem', 'RefNaepMathComplexityLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001089', 'AssessmentAsset', 'RefAssessmentLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001089', 'AssessmentForm', 'RefAssessmentLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001091', 'AssessmentSubtest', 'PublishedDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001092', 'AssessmentResult', 'DescriptiveFeedbackSource', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001093', 'AssessmentParticipantSession', 'SpecialEventDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001093', 'AssessmentSession', 'SpecialEventDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001094', 'CompetencyDefinition', 'CompetencyDefParentUrl', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001102', 'ApipInteraction', 'Xml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001103', 'ApipInteraction', 'RefApipInteractionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001122', 'AssessmentItem', 'RefNaepAspectsOfReadingId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001127', 'AssessmentPersonalNeedsProfile', 'AssessmentNeedType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001130', 'AssessmentParticipantSession', 'SecurityIssue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001131', 'AssessmentItemApip', 'ResponseProcessingTemplateUrl', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001132', 'AssessmentItemApip', 'ResponseProcessingXml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001133', 'AssessmentItemApip', 'ResponseDeclarationXml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001134', 'AssessmentItemApip', 'OutcomeDeclarationXml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001135', 'AssessmentItemApip', 'TemplateDeclarationXml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001136', 'AssessmentItemApip', 'TemplateProcessingXml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001137', 'AssessmentItemApip', 'ModalFeedbackXml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001138', 'AssessmentItemApip', 'ItemBodyXml', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001139', 'AssessmentItem', 'AdaptiveIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001139', 'AssessmentItemApip', 'AdaptiveIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001142', 'K12StudentCourseSectionMark', 'FinalIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001143', 'LearningResource', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001144', 'LearningResource', 'CopyrightHolderName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001145', 'LearningResource', 'CopyrightYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001146', 'LearningResource', 'ConceptKeyword', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001147', 'PeerRatingSystem', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001148', 'LearningResourcePeerRating', 'Value', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001149', 'PeerRatingSystem', 'MaximumValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001150', 'PeerRatingSystem', 'MinimumValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001151', 'PeerRatingSystem', 'OptimumValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001152', 'AssessmentParticipantSession', 'PlatformUserAgent', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001153', 'CredentialDefCriteria', 'CriteriaUrl', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001154', 'CompetencyDefinition', 'TextComplexityMinimumValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001155', 'CompetencyDefinition', 'TextComplexityMaximumValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001157', 'AssessmentAccommodation', 'OtherDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001160', 'CourseSection', 'VirtualIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001160', 'PsInstitution', 'VirtualIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001161', 'CourseSection', 'RefCourseSectionDeliveryModeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001162', 'AssessmentRegistration', 'TestAttemptIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001163', 'CredentialAward', 'CredentialAwardStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001164', 'CredentialAward', 'CredentialAwardEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001165', 'Goal', 'StartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001166', 'Goal', 'EndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001167', 'LearningResourcePeerRating', 'Date', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001168', 'Authentication', 'IdentityProviderName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001169', 'Authentication', 'IdentityProviderUri', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001170', 'Authentication', 'LoginIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001171', 'Authentication', 'StartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001172', 'Authentication', 'EndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001173', 'Application', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001174', 'Application', 'Uri', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001175', 'Authorization', 'ApplicationRoleName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001176', 'Authorization', 'StartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001177', 'Authorization', 'EndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001181', 'AssessmentForm', 'AssessmentItemBankIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001181', 'AssessmentFormSection', 'AssessmentItemBankIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001181', 'AssessmentItem', 'AssessmentItemBankIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001182', 'AssessmentForm', 'AssessmentItemBankName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001182', 'AssessmentFormSection', 'AssessmentItemBankName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001182', 'AssessmentItem', 'AssessmentItemBankName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001183', 'AssessmentForm', 'Version', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001184', 'AssessmentForm', 'PublishedDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001184', 'AssessmentFormSection', 'PublishedDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001184', 'LearningResource', 'PublishedDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001185', 'AssessmentForm', 'AccommodationList', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001186', 'AssessmentForm', 'IntendedAdministrationStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001187', 'AssessmentForm', 'IntendedAdministrationEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001188', 'AssessmentForm', 'PlatformsSupported', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001189', 'AssessmentFormSection', 'Version', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001190', 'AssessmentFormSection', 'RefAssessmentFormSectionIdentificationSystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001191', 'AssessmentFormSection', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001192', 'AssessmentFormSection', 'SectionTimeLimit', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001193', 'AssessmentFormSection', 'SectionSealed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001194', 'AssessmentFormSection', 'SectionReentry', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001195', 'AssessmentAsset', 'Version', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001196', 'AssessmentAsset', 'RefAssessmentAssetTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001197', 'AssessmentAsset', 'PublishedDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001198', 'AssessmentAsset', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001199', 'AssessmentAsset', 'RefAssessmentAssestIdentifierType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001200', 'AssessmentAsset', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001201', 'AssessmentAsset', 'Owner', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001202', 'AssessmentAsset', 'ContentXML', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001203', 'AssessmentAsset', 'ContentMimeType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001204', 'AssessmentAsset', 'ContentUrl', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001206', 'Facility', 'RefBuildingUseTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001207', 'BuildingSpace', 'SpaceDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001208', 'BuildingSpace', 'RefSpaceUseTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001210', 'K12StudentEnrollment', 'RefExitGradeLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001211', 'Incident', 'RefWeaponTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001212', 'AssessmentSessionStaffRole', 'RefAssessmentSessionStaffRoleTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001214', 'AssessmentSubtest', 'Tier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001215', 'AssessmentSubtest', 'ContainerOnly', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001216', 'LearningResource', 'Version', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001217', 'AssessmentItemPossibleResponse', 'CorrectIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001218', 'AssessmentPerformanceLevel', 'DescriptiveFeedback', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001219', 'AssessmentResult', 'DiagnosticStatement', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001223', 'FinancialAidApplication', 'RefFinancialAidApplicationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001224', 'PsStudentFinancialAid', 'RefNeedDeterminationMethodId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001225', 'ELClassSectionService', 'OldestAgeServed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001225', 'OrganizationPopulationServed', 'OldestAgeServed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001226', 'ELClassSection', 'LanguageTranslationPolicy', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001227', 'PersonStatus', 'StatusStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001228', 'PersonStatus', 'StatusEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001229', 'PsStudentDemographic', 'RefMaternalEducationLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001230', 'PsStudentDemographic', 'RefPaternalEducationLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001231', 'IndividualizedProgram', 'RefIndividualizedProgramDateType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001232', 'IndividualizedProgram', 'IndividualizedProgramDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001233', 'IndividualizedProgram', 'NonInclusionMinutesPerWeek', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001234', 'IndividualizedProgram', 'InclusionMinutesPerWeek', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001235', 'IndividualizedProgram', 'RefIndividualizedProgramTransitionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001236', 'IndividualizedProgram', 'ServicePlanDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001237', 'IndividualizedProgram', 'RefIndividualizedProgramLocationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001238', 'IndividualizedProgram', 'ServicePlanMeetingParticipants', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001239', 'IndividualizedProgram', 'ServicePlanSignedBy', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001240', 'IndividualizedProgram', 'ServicePlanSignatureDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001241', 'IndividualizedProgram', 'ServicePlanReevaluationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001242', 'ProgramParticipationSpecialEducation', 'SpecialEducationFTE', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001242', 'ServicesReceived', 'FullTimeEquivalency', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001244', 'K12ProgramOrService', 'RefProgramGiftedEligibilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001245', 'CredentialDefCategory', 'CategorySystem', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001246', 'LearningResourceEducationLevel', 'RefEducationLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001248', 'PersonImmunization', 'RefImmunizationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001249', 'CompetencyDefinition', 'Notes', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001250', 'CompetencyDefinition', 'Version', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001251', 'AssessmentItemResponseTheory', 'ParameterA', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001252', 'AssessmentItemResponseTheory', 'ParameterB', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001253', 'AssessmentItemResponseTheory', 'RefItemResponseTheoryDifficultyCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001254', 'AssessmentItemResponseTheory', 'ParameterC', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001255', 'AssessmentItemResponseTheory', 'ParameterD1', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001256', 'AssessmentItemResponseTheory', 'ParameterD2', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001257', 'AssessmentItemResponseTheory', 'ParameterD3', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001258', 'AssessmentItemResponseTheory', 'ParameterD4', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001259', 'AssessmentItemResponseTheory', 'ParameterD5', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001260', 'AssessmentItemResponseTheory', 'ParameterD6', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001261', 'AssessmentItem', 'LinkingItemIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001262', 'AssessmentItemResponseTheory', 'PointBiserialCorrelationValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001263', 'AssessmentItem', 'ReleaseStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001264', 'AssessmentItemResponseTheory', 'DIFValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001265', 'AssessmentItemResponseTheory', 'KappaValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001266', 'AssessmentItemResponseTheory', 'RefItemResponseTheoryKappaAlgorithmId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001267', 'AssessmentItem', 'BodyText', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001268', 'AssessmentItem', 'Stimulus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001269', 'AssessmentItemPossibleResponse', 'PossibleResponseOption', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001270', 'OrganizationCalendarSession', 'Code', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001271', 'OrganizationCalendarSession', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001272', 'OrganizationCalendarSession', 'MarkingTermIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001273', 'OrganizationCalendarSession', 'SchedulingTermIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001274', 'OrganizationCalendarSession', 'AttendanceTermIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001275', 'OrganizationCalendarEvent', 'EventDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001276', 'OrganizationCalendarEvent', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001277', 'PersonDisability', 'RefAccommodationsNeededTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001278', 'CourseSection', 'RefAdvancedPlacementCourseCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001279', 'PDActivityEducationLevel', 'RefPDActivityEducationLevelsAddressedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001281', 'PersonAllergy', 'ReactionDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001282', 'PersonAllergy', 'RefAllergySeverityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001283', 'PersonAllergy', 'RefAllergyTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001284', 'AssessmentItemResponse', 'ResultXML', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001287', 'ELCourse', 'RefBlendedLearningModelTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001287', 'K12Course', 'RefBlendedLearningModelTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001287', 'K12SchoolStatus', 'RefBlendedLearningModelTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'AeCourse', 'RefCareerClusterId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'CredentialDefinition', 'RefCareerClusterId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'CteCourse', 'RefCareerClusterId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'K12Course', 'RefCareerClusterId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'PSStudentProgram', 'RefCareerClusterId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001289', 'PersonCareerEducationPlan', 'LastUpdated', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001290', 'PersonCareerEducationPlan', 'RefCareerEducationPlanTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001292', 'K12CharterSchoolAuthorizerAgency', 'K12CharterSchoolAuthorizerAgencyId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001292', 'K12CharterSchoolAuthorizerAgency', 'RefCharterSchoolAuthorizerTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001293', 'K12School', 'CharterSchoolApprovalYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001296', 'ProgramParticipationAE', 'RefCorrectionalEducationFacilityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001298', 'PsSection', 'GradeValueQualifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001299', 'PsStudentCourseSectionMark', 'RefCourseAcademicGradeStatusCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001299', 'PsStudentSection', 'RefCourseAcademicGradeStatusCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001301', 'Course', 'RefCourseApplicableEducationLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001302', 'Course', 'CertificationDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001303', 'PsCourse', 'RefCourseCreditBasisTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001304', 'PsCourse', 'RefCourseCreditLevelTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001306', 'K12Course', 'FundingProgram', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001307', 'PsSection', 'RefCourseHonorsTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001308', 'PsSection', 'RefCourseInstructionMethodId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001309', 'PsSectionLocation', 'CourseInstructionSiteName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001310', 'PsSectionLocation', 'RefCourseInstructionSiteTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001311', 'K12Course', 'RefCourseInteractionModeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001312', 'AeCourse', 'RefCourseLevelTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001312', 'Course', 'RefCourseLevelTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001312', 'CourseSectionLevel', 'RefCourseLevelTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001312', 'PsSection', 'RefCourseLevelTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001313', 'PsStudentCourseSectionMark', 'CourseNarrativeExplanationGrade', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001314', 'PsCourse', 'CourseNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001316', 'PsStudentAcademicRecord', 'CourseTotal', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001317', 'PsStudentAcademicRecord', 'RefCreditHoursAppliedOtherProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001318', 'StaffCredential', 'CTEInstructorIndustryCertification', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001319', 'PersonDisability', 'RefDisabilityConditionStatusCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001320', 'PersonDisability', 'RefDisabilityConditionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001321', 'PersonDisability', 'RefDisabilityDeterminationSourceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001322', 'K12StudentDiscipline', 'IEPPlacementMeetingIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001323', 'PsStudentEnrollment', 'DistanceEducationProgramEnrollmentInd', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001324', 'PsStudentEnrollment', 'DoctoralCandidacyAdmitInd', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001325', 'PsStudentEnrollment', 'DoctoralCandidacyDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001326', 'PsStudentEnrollment', 'DoctoralExamTakenDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001327', 'PsStudentEnrollment', 'RefDoctoralExamsRequiredCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001328', 'ELEnrollment', 'RefELFederalFundingTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001328', 'ELOrganizationFunds', 'RefELFederalFundingTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001329', 'ELClassSection', 'GroupSize', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001330', 'ELOrganizationMonitoring', 'RefOrganizationMonitoringNotificationsId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001331', 'ELOrganizationMonitoring', 'VisitStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001332', 'ELOrganizationMonitoring', 'VisitEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001333', 'ELOrganizationMonitoring', 'RefPurposeOfMonitoringVisitId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001334', 'ELOrganizationMonitoring', 'TypeOfMonitoring', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001335', 'ELEnrollmentOtherFunding', 'RefELOtherFederalFundingSourcesId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001335', 'ELOrganizationFunds', 'RefELOtherFederalFundingSourcesId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001336', 'AssessmentResult', 'RefELOutcomeMeasurementLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001337', 'ELStaffEducation', 'RefELProfessionalDevelopmentTopicAreaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001338', 'ELChildProgramEligibility', 'ExpirationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001339', 'ELChildProgramEligibility', 'RefELProgramEligibilityStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001340', 'ELChildProgramEligibility', 'StatusDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001341', 'PersonRelationship', 'EmergencyContactInd', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001342', 'QuarterlyEmploymentRecord', 'RefEmployedPriorToEnrollmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001343', 'PsStudentEmployment', 'RefEmploymentStatusWhileEnrolledId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001344', 'K12Course', 'FamilyConsumerSciencesCourseInd', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001345', 'FinancialAccount', 'RefFinancialAccountCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001346', 'FinancialAccount', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001347', 'FinancialAccount', 'RefFinancialAccountFundClassificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001348', 'FinancialAccount', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001349', 'FinancialAccount', 'RefFinancialAccountProgramCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001350', 'OrganizationFinancial', 'ActualValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001351', 'OrganizationFinancial', 'BudgetedValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001352', 'PsStudentFinancialAid', 'FinancialAidIncomeLevel', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001353', 'FinancialAccount', 'RefFinancialAccountBalanceSheetCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001354', 'FinancialAccount', 'RefFinancialExpenditureFunctionCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001355', 'FinancialAccount', 'RefFinancialExpenditureObjectCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001356', 'ELClassSectionService', 'RefFrequencyOfServiceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001357', 'PsStudentEnrollment', 'RefGraduateOrDoctoralExamResultsStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001358', 'PersonHealth', 'HealthScreeningEquipmentUsed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001359', 'PersonHealth', 'HealthScreeningFollowUpRecommendation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001360', 'ELChildTransitionPlan', 'PartB619PotentialEligibilityInd', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001363', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationOptOutIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001364', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationOptOutDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001365', 'ELChildTransitionPlan', 'TransitionConferenceDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001366', 'ELChildTransitionPlan', 'TransitionConferenceDeclineDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001367', 'ELChildTransitionPlan', 'DateOfTransitionPlan', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001369', 'Incident', 'RefIncidentMultipleOffenseTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001370', 'IncidentPerson', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001371', 'Incident', 'RefIncidentPerpetratorInjuryTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001372', 'IncidentPerson', 'RefIncidentPersonTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001373', 'IncidentPerson', 'RefIncidentPersonRoleTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001374', 'Incident', 'RegulationViolatedDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001375', 'Incident', 'RelatedToDisabilityManifestationInd', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001376', 'Incident', 'ReportedToLawEnforcementInd', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001381', 'IndividualizedProgramService', 'PlannedServiceStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001383', 'IndividualizedProgramService', 'RefIndividualizedProgramPlannedServiceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001384', 'ELStaffAssignment', 'ItinerantProvider', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001386', 'K12Course', 'RefK12EndOfCourseRequirementId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001388', 'ProfessionalDevelopmentSession', 'RefLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001389', 'LearningResource', 'RefLearningResourceAccessAPITypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001390', 'LearningResource', 'RefLearningResourceAccessHazardTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001391', 'LearningResource', 'RefLearningResourceAccessModeTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001392', 'LearningResourceAdaptation', 'AdaptationURL', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001393', 'LearningResource', 'AssistiveTechnologiesCompatibleInd', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001394', 'LearningResource', 'RefLearningResourceBookFormatTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001395', 'LearningResource', 'RefLearningResourceControlFlexibilityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001396', 'LearningResource', 'RefLearningResourceDigitalMediaSubTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001397', 'LearningResource', 'RefLearningResourceDigitalMediaTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001398', 'LearningResource', 'AdaptedFromURL', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001399', 'LearningResourceMediaFeature', 'RefLearningResourceMediaFeatureTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001400', 'LearningResource', 'PeerRatingSampleSize', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001401', 'LearningResourcePhysicalMedia', 'RefLearningResourcePhysicalMediaTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001402', 'CompetencyDefAssociation', 'ConnectionCitation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001403', 'CompetencyDefAssociation', 'DestinationNodeName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001404', 'CompetencyDefAssociation', 'DestinationNodeURI', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001405', 'CompetencyDefAssociation', 'OriginNodeName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001406', 'CompetencyDefAssociation', 'OriginNodeURI', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001407', 'CompetencyDefAssociation', 'Weight', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001408', 'CompetencyDefinition', 'RefCompetencyDefNodeAccessibilityProfileId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001409', 'CompetencyDefinition', 'ShortName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001411', 'CompetencyDefinition', 'RefCompetencyDefTestabilityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001412', 'WorkforceEmploymentQuarterlyData', 'MilitaryEnlistmentAfterExit', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001413', 'PsCourse', 'NCAAEligibilityInd', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001414', 'PsCourse', 'RefNCESCollegeCourseMapCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001415', 'PsStudentDemographic', 'NumberOfDependents', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001416', 'PsStudentEnrollment', 'OralDefenseCompletedIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001417', 'PsStudentEnrollment', 'OralDefenseDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001419', 'OrganizationAccreditation', 'SeekingAccreditationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001420', 'PsCourse', 'OriginalCourseIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001421', 'ELChildDemographic', 'OtherRaceIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001422', 'PsCourse', 'OverrideSchoolCourseNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001423', 'PersonRelationship', 'ContactPriorityNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001424', 'PersonRelationship', 'ContactRestrictions', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001425', 'PersonRelationship', 'LivesWithIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001426', 'PsStudentEnrollment', 'PostsecondaryEnteringStudentInd', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001427', 'PsStudentAcademicRecord', 'EnteringTerm', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001428', 'PersonRelationship', 'PrimaryContactIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001429', 'PersonCredential', 'ProfessionalCertificateOrLicenseNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001430', 'ProfessionalDevelopmentActivity', 'RefPDAudienceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001431', 'ProfessionalDevelopmentSession', 'RefPDDeliveryMethodId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001432', 'ProfessionalDevelopmentActivity', 'ApprovalCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001433', 'ProfessionalDevelopmentActivity', 'RefPDActivityApprovedPurposeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001434', 'ProfessionalDevelopmentActivity', 'ActivityCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001435', 'ProfessionalDevelopmentActivity', 'Cost', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001436', 'ProfessionalDevelopmentActivity', 'RefPDActivityCreditTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001437', 'ProfessionalDevelopmentActivity', 'Credits', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001438', 'ProfessionalDevelopmentActivity', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001439', 'ProfessionalDevelopmentActivity', 'RefPDActivityLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001440', 'ProfessionalDevelopmentActivity', 'Objective', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001442', 'ProfessionalDevelopmentActivity', 'RefPDActivityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001443', 'ProfessionalDevelopmentSession', 'FundingSource', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001445', 'ProfessionalDevelopmentActivity', 'PublishIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001446', 'ProfessionalDevelopmentSession', 'Capacity', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001447', 'ProfessionalDevelopmentSession', 'EndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001448', 'ProfessionalDevelopmentSession', 'EndTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001449', 'ProfessionalDevelopmentSession', 'EvaluationMethod', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001450', 'ProfessionalDevelopmentSession', 'EvaluationScore', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001451', 'ProfessionalDevelopmentSession', 'ExpirationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001452', 'ProfessionalDevelopmentSession', 'SessionIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001454', 'ProfessionalDevelopmentSession', 'LocationName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001455', 'ProfessionalDevelopmentSession', 'StartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001456', 'ProfessionalDevelopmentSession', 'StartTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001457', 'ProfessionalDevelopmentSession', 'RefPDSessionStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001458', 'ProfessionalDevelopmentSession', 'RefPDInstructionalDeliveryModeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001460', 'ELQualityInitiative', 'MaximumScore', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001461', 'ELQualityInitiative', 'MinimumScore', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001462', 'ELQualityInitiative', 'ScoreLevel', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001463', 'ELQualityInitiative', 'ParticipationIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001464', 'ELQualityInitiative', 'ParticipationEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001465', 'ELQualityInitiative', 'ParticipationStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001468', 'FinancialAccount', 'RefFinancialAccountRevenueCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001469', 'RubricCriterion', 'Category', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001470', 'RubricCriterion', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001471', 'RubricCriterionLevel', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001472', 'RubricCriterionLevel', 'Feedback', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001473', 'RubricCriterionLevel', 'Position', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001474', 'RubricCriterionLevel', 'Quality', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001475', 'RubricCriterionLevel', 'Score', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001476', 'RubricCriterion', 'Position', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001477', 'RubricCriterion', 'Title', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001478', 'RubricCriterion', 'Weight', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001479', 'Rubric', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001480', 'K12Course', 'SCEDGradeSpan', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001481', 'PersonReferral', 'ReferralDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001482', 'PersonReferral', 'RefReferralOutcomeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001483', 'PersonReferral', 'Reason', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001484', 'PersonReferral', 'Source', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001485', 'PersonReferral', 'ReferralTypeReceived', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001486', 'PersonReferral', 'ReferredTo', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001487', 'OrganizationDetail', 'ShortName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001488', 'ServicePlan', 'ReasonForDeclinedServices', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001489', 'ProfessionalDevelopmentSession', 'SponsoringAgencyName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001493', 'OrganizationTechnicalAssistance', 'TechnicalAssistanceApprovedInd', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001493', 'StaffTechnicalAssistance', 'TechnicalAssistanceApprovedInd', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001494', 'OrganizationTechnicalAssistance', 'RefTechnicalAssistanceDeliveryTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001494', 'StaffTechnicalAssistance', 'RefTechnicalAssistanceDeliveryTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001495', 'OrganizationTechnicalAssistance', 'RefTechnicalAssistanceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001495', 'StaffTechnicalAssistance', 'RefTechnicalAssistanceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001496', 'PsStudentEnrollment', 'ThesisOrDissertationTitle', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001497', 'StaffEmployment', 'UnionMembershipName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001498', 'StaffEmployment', 'WeeksEmployedPerYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'K12Course', 'RefWorkbasedLearningOpportunityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'ProgramParticipationAE', 'RefWorkbasedLearningOpportunityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'ProgramParticipationCte', 'RefWorkbasedLearningOpportunityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'PsSection', 'RefWorkbasedLearningOpportunityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'PSStudentProgram', 'RefWorkbasedLearningOpportunityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001500', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001501', 'ELChildIndividualizedProgram', 'RefIDEAIEPStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001503', 'AssessmentResult', 'RefOutcomeTimePointId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001504', 'ELChildOutcomeSummary', 'COSProgressAIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001505', 'ELChildOutcomeSummary', 'COSProgressBIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001506', 'ELChildOutcomeSummary', 'COSProgressCIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001507', 'ELChildOutcomeSummary', 'COSRatingAId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001508', 'ELChildOutcomeSummary', 'COSRatingBId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001509', 'ELChildOutcomeSummary', 'COSRatingCId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001510', 'IndividualizedProgramService', 'RefMethodOfServiceDeliveryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001511', 'CompetencyDefinition', 'ValidEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001512', 'CompetencyDefinition', 'ValidStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001513', 'PersonOtherName', 'LastName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001514', 'PersonOtherName', 'FirstName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001515', 'PersonOtherName', 'MiddleName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001516', 'CteCourse', 'RefSCEDCourseLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001516', 'ELCourse', 'RefSCEDCourseLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001516', 'K12Course', 'RefSCEDCourseLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'CteCourse', 'RefSCEDCourseCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'CteCourse', 'SCEDCourseCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'ELCourse', 'RefSCEDCourseCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'K12Course', 'RefSCEDCourseCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'K12Course', 'SCEDCourseCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'CteCourse', 'RefSCEDCourseSubjectAreaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'ELCourse', 'RefSCEDCourseSubjectAreaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'IndividualizedProgramAccommodationSubject', 'RefSCEDCourseSubjectAreaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'K12Course', 'RefSCEDCourseSubjectAreaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'K12StudentGraduationPlan', 'RefSCEDCourseSubjectAreaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001519', 'IndividualizedProgramService', 'RefServiceFrequencyId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001520', 'IndividualizedProgramService', 'PlannedServiceDuration', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001521', 'ELChildTransitionPlan', 'RefReasonDelayTransitionConfId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001524', 'CompetencyDefinition', 'PreviousVersionIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001525', 'CompetencyDefinition', 'CurrentVersionIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001526', 'K12School', 'AccreditationAgencyName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001526', 'OrganizationAccreditation', 'AccreditationAgencyName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001527', 'K12StudentActivity', 'ActivityTimeInvolved', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001528', 'K12StudentActivity', 'RefActivityTimeMeasurementTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001529', 'ApipInteraction', 'APIPInteractionSequenceNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001530', 'Activity', 'ActivityDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001531', 'AssessmentAdministration', 'AssessmentAdministrationPeriodDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001532', 'AssessmentForm', 'AssessmentFormAdaptiveIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001533', 'AssessmentForm', 'AssessmentFormAlgorithmIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001534', 'AssessmentForm', 'AssessmentFormAlgorithmVersion', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001535', 'AssessmentForm', 'AssessmentFormGUID', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001536', 'AssessmentItem', 'AssessmentFormSectionItemFieldTestIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001537', 'AssessmentItemResponse', 'AssessmentItemResponseDescriptiveFeedbackDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001538', 'AssessmentItemResponse', 'RefAssessmentItemResponseScoreStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001539', 'AssessmentParticipantSession', 'AssessmentParticipantSessionDatabaseName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001540', 'AssessmentParticipantSession', 'AssessmentParticipantSessionGUID', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001541', 'AssessmentRegistration', 'RefAssessmentRegistrationCompletionStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001542', 'AssessmentRegistration', 'AssessmentRegistrationCompletionStatusDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001543', 'AssessmentResult', 'RefAssessmentResultDataTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001544', 'Assessment', 'AssessmentRevisionDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001545', 'AssessmentResult', 'AssessmentResultDescriptiveFeedbackDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterionLevel', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterionLevel', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterionLevel', 'RubricCriterionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterionLevel', 'RubricCriterionLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceFrequency', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceFrequency', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceFrequency', 'ServiceFrequencyId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceFrequency', 'ServicePlanId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicePlan', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicePlan', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicePlan', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicePlan', 'ServicePlanId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvided', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvided', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvided', 'ServiceProvidedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvided', 'ServicesReceivedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'ServiceProvidedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'ServiceProviderId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'ServiceStaffId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'ServicePlanId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'ServicesReceivedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceStaff', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceStaff', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceStaff', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceStaff', 'ServiceStaffId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCompensation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCompensation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCompensation', 'StaffCompensationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCompensation', 'StaffEmploymentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCredential', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCredential', 'PersonCredentialId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCredential', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCredential', 'StaffCredentialId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEmployment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEmployment', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEmployment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEmployment', 'StaffEmploymentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluation', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluation', 'StaffEvaluationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'StaffEvaluationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'StaffEvaluationPartId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffExperience', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffExperience', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffExperience', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffExperience', 'StaffExperienceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentRequirementId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'StaffProfessionalDevelopmentActivityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffTechnicalAssistance', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffTechnicalAssistance', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffTechnicalAssistance', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffTechnicalAssistance', 'StaffTechnicalAssistanceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'AssessmentResultId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'ProgramParticipationTeacherPrepId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'TeacherEducationCredentialExamId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'K12StaffAssignmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'K12StudentCourseSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'TeacherStudentDataLinkExclusionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceEmploymentQuarterlyData', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceEmploymentQuarterlyData', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceEmploymentQuarterlyData', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceEmploymentQuarterlyData', 'WorkforceEmploymentQuarterlyDataId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'CohortDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'WorkforceProgramParticipantCohortId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipation', 'PersonProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipation', 'WorkforceProgramParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000001', 'PsStudentAcademicAward', 'AcademicAwardDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000002', 'PsStudentAcademicAward', 'RefAcademicAwardLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000003', 'PsStudentAcademicAward', 'AcademicAwardTitle', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000004', 'K12StudentAcademicHonor', 'RefAcademicHonorTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000005', 'OrganizationFederalAccountability', 'AccountabilityReportTitle', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000006', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000007', 'OrganizationPersonRole', 'EntryDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000008', 'OrganizationPersonRole', 'ExitDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000009', 'OrganizationDetail', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000010', 'PersonAddress', 'RefPersonLocationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000011', 'OrganizationFederalAccountability', 'RefAypStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000012', 'ELOrganizationFunds', 'RefAdministrativeFundingControlId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000012', 'K12School', 'RefAdministrativeFundingControlId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000012', 'PsInstitution', 'RefAdministrativeFundingControlId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000013', 'CteCourse', 'CourseAlignedWithStandards', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000013', 'K12Course', 'CourseAlignedWithStandards', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000014', 'OrganizationFederalAccountability', 'AlternateAypApproachIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000015', 'K12SchoolStatus', 'RefAlternativeSchoolFocusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000018', 'PsStudentAcademicRecord', 'AdvancedPlacementCreditsAwarded', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000019', 'LocationAddress', 'ApartmentRoomOrSuiteNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000019', 'PersonAddress', 'ApartmentRoomOrSuiteNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000021', 'Assessment', 'RefAcademicSubjectId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000021', 'AssessmentSubtest', 'RefAcademicSubjectId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000024', 'AssessmentForm', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000025', 'AssessmentRegistration', 'RefAssessmentParticipationIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000026', 'Assessment', 'RefAssessmentPurposeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000026', 'AssessmentRegistration', 'RefAssessmentPurposeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000026', 'AssessmentSubtest', 'RefAssessmentPurposeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000027', 'CourseSectionAssessmentReporting', 'RefCourseSectionAssessmentReportingMethodId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000028', 'Assessment', 'Title', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000029', 'Assessment', 'RefAssessmentTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000030', 'CourseSection', 'AvailableCarnegieUnitCredit', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000030', 'CteCourse', 'AvailableCarnegieUnitCredit', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000030', 'K12Course', 'AvailableCarnegieUnitCredit', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000031', 'ProgramParticipationSpecialEducation', 'AwaitingInitialIDEAEvaluationStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000032', 'StaffCompensation', 'StaffCompensationBaseSalary', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000033', 'PersonDetail', 'Birthdate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000035', 'PsStudentDemographic', 'RefCampusResidencyTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000036', 'ProgramParticipationCte', 'CteCompleter', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000037', 'ProgramParticipationCte', 'CteConcentrator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000038', 'PsInstitution', 'RefCarnegieBasicClassificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000039', 'K12Lea', 'CharterSchoolIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000039', 'K12School', 'CharterSchoolIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000040', 'LocationAddress', 'City', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000040', 'PersonAddress', 'City', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000041', 'K12StudentAcademicRecord', 'HighSchoolStudentClassRank', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000041', 'PsStudentApplication', 'HighSchoolStudentClassRank', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000042', 'K12StudentAcademicRecord', 'ClassRankingDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000043', 'CredentialDefinition', 'RefCipCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000043', 'PsCourse', 'RefCipCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000043', 'PsProgram', 'RefCipCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000043', 'PsSection', 'RefCipCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000044', 'PSStudentProgram', 'RefCipUseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000045', 'PsProgram', 'RefCipVersionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000046', 'K12StudentCohort', 'CohortYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000047', 'ELStaffEmployment', 'ContractDaysOfServicePerYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000047', 'K12StaffEmployment', 'ContractDaysOfServicePerYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000048', 'ELOrganization', 'RefControlOfInstitutionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000048', 'PsInstitution', 'RefControlOfInstitutionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000049', 'K12SchoolCorrectiveAction', 'RefCorrectiveActionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000050', 'PersonAddress', 'RefCountryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000051', 'PersonBirthplace', 'RefCountryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000053', 'PsStudentSection', 'AcademicGrade', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000054', 'CourseSection', 'OrganizationCalendarSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000054', 'OrganizationCalendarSession', 'BeginDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000055', 'OrganizationIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000056', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000057', 'Course', 'RefCourseCreditUnitId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000057', 'ProfessionalDevelopmentActivity', 'RefCourseCreditUnitId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000057', 'StaffProfessionalDevelopmentActivity', 'RefCourseCreditUnitId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000058', 'Course', 'CreditValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000059', 'OrganizationCalendarSession', 'EndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000060', 'CteCourse', 'RefCourseGPAApplicabilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000060', 'K12Course', 'RefCourseGPAApplicabilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000060', 'K12StudentCourseSection', 'RefCourseGPAApplicabilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000060', 'PsSection', 'RefCourseGPAApplicabilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000061', 'Course', 'RefCourseLevelCharacteristicsId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000063', 'PsStudentSection', 'CourseOverrideSchool', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000064', 'PsStudentSection', 'QualityPointsEarned', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000065', 'K12StudentCourseSection', 'RefCourseRepeatCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000065', 'PsStudentSection', 'RefCourseRepeatCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000066', 'Course', 'SubjectAbbreviation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000069', 'PersonCredential', 'ExpirationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000070', 'PersonCredential', 'IssuanceDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000071', 'PersonCredential', 'RefCredentialTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000072', 'CteCourse', 'RefCreditTypeEarnedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000072', 'K12StudentCourseSection', 'RefCreditTypeEarnedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000073', 'CteStudentAcademicRecord', 'CreditsAttemptedCumulative', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000073', 'K12StudentAcademicRecord', 'CreditsAttemptedCumulative', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000073', 'PsStudentAcademicRecord', 'CreditsAttemptedCumulative', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000074', 'CteStudentAcademicRecord', 'CreditsEarnedCumulative', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000074', 'K12StudentAcademicRecord', 'CreditsEarnedCumulative', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000074', 'PsStudentAcademicRecord', 'CreditsEarnedCumulative', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000075', 'OrganizationFederalAccountability', 'RefCteGraduationRateInclusionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000076', 'RoleAttendanceEvent', 'RefAttendanceStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000077', 'PsStudentSection', 'DegreeApplicability', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000078', 'PsStudentEnrollment', 'DegreeOrCertificateSeekingStudent', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000079', 'PsStudentDemographic', 'RefDependencyStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000080', 'K12LeaFederalReporting', 'DesegregationOrderOrPlan', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'AeStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'CteStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'K12StudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'PsStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'StaffCredential', 'DiplomaOrCredentialAwardDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'WorkforceProgramParticipation', 'DiplomaOrCredentialAwardDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'PersonDegreeOrCertificate', 'AwardDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000082', 'K12StudentDiscipline', 'DisciplinaryActionEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000083', 'K12StudentDiscipline', 'DisciplinaryActionStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000084', 'ProgramParticipationAE', 'DisplacedHomemakerIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000084', 'ProgramParticipationCte', 'DisplacedHomemakerIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000085', 'PsStudentAcademicRecord', 'DualCreditDualEnrollmentCredits', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000086', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000087', 'ELStaffAssignment', 'RefK12StaffClassificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000087', 'K12StaffAssignment', 'RefK12StaffClassificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000087', 'K12StaffEmployment', 'RefK12StaffClassificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000088', 'OrganizationEmail', 'ElectronicMailAddress', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000151', 'PersonStatus', 'RefPersonStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000326', 'OrganizationPersonRole', 'EntryDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000327', 'OrganizationPersonRole', 'ExitDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000347', 'RoleStatus', 'RefRoleStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000410', 'PersonIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000088', 'PersonEmailAddress', 'EmailAddress', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000089', 'OrganizationEmail', 'RefEmailTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000089', 'PersonEmailAddress', 'RefEmailTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000091', 'OrganizationFederalAccountability', 'RefElementaryMiddleAdditionalId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000092', 'K12StudentEnrollment', 'RefFoodServiceEligibilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000093', 'K12StudentEnrollment', 'RefEndOfTermStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000094', 'K12StudentEnrollment', 'RefEnrollmentStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000094', 'RoleStatus', 'RefRoleStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000095', 'PsStudentEnrollment', 'RefPsEnrollmentTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000096', 'PsStudentEnrollment', 'RefPsEnrollmentStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000098', 'PsStudentEnrollment', 'EntryDateIntoPostsecondary', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000099', 'K12StudentEnrollment', 'RefEntryType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000100', 'K12StudentEnrollment', 'RefEntryGradeLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000101', 'CourseSection', 'TimeRequiredForCompletion', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000102', 'StaffEvaluation', 'Outcome', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000103', 'StaffEvaluation', 'Scale', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000104', 'StaffEvaluation', 'ScoreOrRating', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000105', 'StaffEvaluation', 'System', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000106', 'PsStudentDemographic', 'RefCohortExclusionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000108', 'ELEnrollment', 'RefExitOrWithdrawalStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000108', 'K12StudentCourseSection', 'RefExitOrWithdrawalStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000108', 'K12StudentEnrollment', 'RefExitOrWithdrawalStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000110', 'K12StudentEnrollment', 'RefExitOrWithdrawalTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000112', 'FinancialAidAward', 'FinancialAidAwardAmount', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000113', 'FinancialAidAward', 'RefFinancialAidAwardTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000115', 'PersonDetail', 'FirstName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000117', 'PsStudentEnrollment', 'FirstTimePostsecondaryStudent', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000118', 'ELStaffAssignment', 'FullTimeEquivalency', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000118', 'K12StaffAssignment', 'FullTimeEquivalency', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000118', 'StaffEmployment', 'FullTimeEquivalency', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000120', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000121', 'PersonDetail', 'GenerationCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000122', 'PersonProgramParticipation', 'ParticipationStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000123', 'K12StudentAcademicRecord', 'RefGpaWeightedIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000123', 'PsStudentApplication', 'RefGpaWeightedIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000124', 'K12StudentCourseSection', 'GradeEarned', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000124', 'K12StudentCourseSectionMark', 'GradeEarned', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000125', 'K12StudentCourseSection', 'RefGradeLevelWhenCourseTakenId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000125', 'K12StudentGraduationPlan', 'RefGradeLevelWhenCourseTakenId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000126', 'AssessmentRegistration', 'RefGradeLevelToBeAssessedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000126', 'AssessmentRegistration', 'RefGradeLevelWhenAssessedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000127', 'PsStudentAcademicRecord', 'GradePointAverage', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000128', 'K12StudentAcademicRecord', 'GradePointAverageCumulative', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000128', 'PsStudentAcademicRecord', 'GradePointAverageCumulative', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000128', 'PsStudentApplication', 'GradePointAverageCumulative', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000129', 'K12StudentSession', 'GradePointAverageGivenSession', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000130', 'K12StudentAcademicRecord', 'GradePointsEarnedCumulative', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000131', 'K12LeaGradeOffered', 'RefGradeLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000131', 'K12SchoolGradeOffered', 'RefGradeLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000132', 'K12StudentCohort', 'GraduationRateSurveyCohortYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000133', 'K12StudentCohort', 'GraduationRateSurveyIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000134', 'OrganizationFederalAccountability', 'RefGunFreeSchoolsActReportingStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000135', 'K12LeaFederalReporting', 'HarassmentOrBullyingPolicy', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000136', 'StaffCompensation', 'StaffCompensationHealthBenefits', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000137', 'CteCourse', 'HighSchoolCourseRequirement', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000137', 'K12Course', 'HighSchoolCourseRequirement', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000138', 'AeStudentAcademicRecord', 'RefHighSchoolDiplomaTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000138', 'K12StudentAcademicRecord', 'RefHighSchoolDiplomaTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000140', 'OrganizationFederalAccountability', 'RefHighSchoolGraduationRateIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000141', 'PersonDetail', 'RefHighestEducationLevelCompletedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000141', 'PersonFamily', 'RefHighestEducationLevelCompletedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000142', 'K12StaffAssignment', 'HighlyQualifiedTeacherIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000143', 'StaffEmployment', 'HireDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000144', 'PersonDetail', 'HispanicLatinoEthnicity', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000146', 'PersonHomelessness', 'RefHomelessNighttimeResidenceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000149', 'PersonHomelessness', 'HomelessnessStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000150', 'K12StudentAcademicHonor', 'HonorDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000164', 'K12School', 'RefIncreasedLearningTimeTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000164', 'PsInstitution', 'RefIncreasedLearningTimeTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000165', 'PsStudentEnrollment', 'InitialEnrollmentTerm', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000167', 'OrganizationTelephone', 'RefInstitutionTelephoneTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000168', 'PsStudentEnrollment', 'InstructionalActivityHoursAttempted', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000169', 'PsStudentEnrollment', 'RefInstructionalActivityHoursId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000170', 'K12LeaFederalReporting', 'RefIntegratedTechnologyStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000171', 'ProgramParticipationMigrant', 'LastQualifyingMoveDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000172', 'PersonDetail', 'LastName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000173', 'K12Lea', 'RefLeaImprovementStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000174', 'OrganizationOperationalStatus', 'RefOperationalStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000175', 'K12Lea', 'SupervisoryUnionIdentificationNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000178', 'AeProvider', 'RefLevelOfInstitutionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000178', 'PsInstitution', 'RefLevelOfInstitutionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000181', 'K12SchoolStatus', 'RefMagnetSpecialProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000182', 'K12StudentCourseSectionMark', 'MarkingPeriodName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000183', 'K12StudentCourseSectionMark', 'MidTermMark', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000184', 'PersonDetail', 'MiddleName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000186', 'ProgramParticipationMigrant', 'RefMepServiceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000187', 'K12ProgramOrService', 'RefMepSessionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000188', 'K12StaffAssignment', 'RefMepStaffCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000190', 'LocationAddress', 'CountyName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000190', 'PersonAddress', 'AddressCountyName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000191', 'PersonDegreeOrCertificate', 'NameOfInstitution', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000194', 'ProgramParticipationNeglected', 'RefNeglectedProgramTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000196', 'PersonDetail', 'RefVisaTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000197', 'PsProgram', 'NormalLengthTimeForCompletion', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000198', 'PsProgram', 'RefTimeForCompletionUnitsId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000199', 'K12StudentCourseSection', 'NumberOfCreditsAttempted', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000199', 'PsStudentAcademicRecord', 'NumberOfCreditsAttempted', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000199', 'PsStudentSection', 'NumberOfCreditsAttempted', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000200', 'K12StudentCourseSection', 'NumberOfCreditsEarned', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000200', 'PsStudentSection', 'NumberOfCreditsEarned', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000200', 'StaffProfessionalDevelopmentActivity', 'NumberOfCreditsEarned', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000201', 'RoleAttendance', 'NumberOfDaysAbsent', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000202', 'ELEnrollment', 'NumberOfDaysInAttendance', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000202', 'RoleAttendance', 'NumberOfDaysInAttendance', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000205', 'StaffCompensation', 'StaffCompensationOtherBenefits', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000206', 'PersonOtherName', 'OtherName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000207', 'StaffCredential', 'RefParaprofessionalQualificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000208', 'OrganizationFederalAccountability', 'RefParticipationStatusMathId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000209', 'OrganizationFederalAccountability', 'RefParticipationStatusRlaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000210', 'OrganizationFederalAccountability', 'PersistentlyDangerousStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000211', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000212', 'PersonDetail', 'Prefix', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000213', 'StaffEmployment', 'PositionTitle', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000214', 'LocationAddress', 'PostalCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000214', 'PersonAddress', 'PostalCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000216', 'K12LeaPreKEligibility', 'RefPrekindergartenEligibilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000217', 'K12LeaPreKEligibleAgesIDEA', 'RefPreKEligibleAgesNonIDEAId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000218', 'PersonDisability', 'PrimaryDisabilityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000219', 'OrganizationTelephone', 'PrimaryTelephoneNumberIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000219', 'PersonTelephone', 'PrimaryTelephoneNumberIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000220', 'ELStaffAssignment', 'RefProfessionalEducationJobClassificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000220', 'K12StaffAssignment', 'RefProfessionalEducationJobClassificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000221', 'OrganizationFederalAccountability', 'RefProficiencyTargetStatusMathId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000222', 'PersonProgramParticipation', 'RefProgramExitReasonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000223', 'PsProgram', 'ProgramLengthHours', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000224', 'PsProgram', 'RefProgramLengthHoursTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000225', 'OrganizationProgramType', 'RefProgramTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000226', 'K12StudentAcademicRecord', 'ProjectedGraduationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000227', 'K12Lea', 'RefPublicSchoolChoiceStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000228', 'AssessmentRegistration', 'RefAssessmentReasonNotTestedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000229', 'ActivityRecognition', 'RefActivityRecognitionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000230', 'OrganizationFederalAccountability', 'RefReconstitutedStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000231', 'CourseSection', 'RelatedCompetencyDefinitions', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000232', 'K12SchoolStatus', 'RefRestructuringActionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000233', 'StaffCompensation', 'StaffCompensationRetirementBenefits', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000234', 'K12StaffEmployment', 'SalaryForTeachingAssignmentOnlyIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000238', 'K12SchoolImprovement', 'RefSchoolImprovementFundsId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000239', 'K12SchoolImprovement', 'RefSigInterventionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000240', 'K12SchoolImprovement', 'RefSchoolImprovementStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000241', 'ELOrganization', 'RefSchoolLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000241', 'K12School', 'RefSchoolLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000242', 'K12School', 'RefSchoolTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000243', 'OrganizationCalendar', 'CalendarYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000244', 'OrganizationCalendarSession', 'InstructionalMinutes', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000245', 'AssessmentResult', 'ScoreValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000250', 'Course', 'SCEDSequenceOfCourse', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000252', 'OrganizationCalendarSession', 'Designator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000252', 'PsPriceOfAttendance', 'SessionDesignator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000254', 'OrganizationCalendarSession', 'RefSessionTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000255', 'PersonDetail', 'RefSexId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000258', 'CourseSection', 'RefSingleSexClassStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000260', 'ProgramParticipationSpecialEducation', 'RefSpecialEducationExitReasonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000261', 'ELStaffAssignment', 'SpecialEducationParaprofessional', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000261', 'K12StaffAssignment', 'SpecialEducationParaprofessional', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000262', 'ELStaffAssignment', 'SpecialEducationRelatedServicesPersonnel', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000262', 'K12StaffAssignment', 'SpecialEducationRelatedServicesPersonnel', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000263', 'ProgramParticipationSpecialEducation', 'SpecialEducationServicesExitDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000264', 'ELStaffAssignment', 'SpecialEducationTeacher', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000264', 'K12StaffAssignment', 'SpecialEducationTeacher', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000265', 'PsStudentAdmissionTest', 'StandardizedAdmissionTestScore', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000266', 'PsStudentAdmissionTest', 'RefStandardizedAdmissionTestId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000267', 'PersonAddress', 'RefStateId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000268', 'PersonDetail', 'RefStateOfResidenceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000269', 'LocationAddress', 'StreetNumberAndName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000269', 'PersonAddress', 'StreetNumberAndName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000271', 'RoleAttendance', 'AttendanceRate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000272', 'PsStudentEnrollment', 'RefPsStudentLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000273', 'IndividualizedProgram', 'RefStudentSupportServiceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000273', 'OrganizationService', 'RefStudentSupportServiceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000273', 'ServiceProvided', 'RefStudentSupportServiceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000274', 'AssessmentSubtest', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000275', 'AssessmentSubtest', 'Title', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000277', 'ProgramParticipationTeacherPrep', 'RefTeachingCredentialBasisId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000277', 'StaffCredential', 'RefTeachingCredentialBasisId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000278', 'ProgramParticipationTeacherPrep', 'RefTeachingCredentialTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000278', 'StaffCredential', 'RefTeachingCredentialTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000279', 'OrganizationTelephone', 'TelephoneNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000279', 'PersonTelephone', 'TelephoneNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000280', 'PersonTelephone', 'RefPersonTelephoneNumberTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000281', 'ProgramParticipationTitleI', 'RefTitleIIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000282', 'K12ProgramOrService', 'RefTitleIInstructionalServicesId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000283', 'ELStaffAssignment', 'RefTitleIProgramStaffCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000283', 'K12StaffAssignment', 'RefTitleIProgramStaffCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000284', 'K12ProgramOrService', 'RefTitleIProgramTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000285', 'K12SchoolStatus', 'RefTitleISchoolStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000289', 'K12LeaTitleISupportService', 'RefK12LeaTitleISupportServiceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000292', 'PsStudentFinancialAid', 'TitleIVParticipantAndRecipient', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000293', 'StaffCompensation', 'StaffCompensationTotalBenefits', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000294', 'K12StudentAcademicRecord', 'TotalNumberInClass', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000294', 'PsStudentApplication', 'HighSchoolGraduatingClassSize', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000295', 'StaffCompensation', 'StaffCompensationTotalSalary', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000296', 'PsStudentEnrollment', 'RefTransferReadyId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000297', 'PsStudentDemographic', 'RefTuitionResidencyTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000299', 'PersonDetail', 'RefUSCitizenshipStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000302', 'StaffExperience', 'YearsOfPriorTeachingExperience', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000304', 'PersonFamily', 'RefELProgramEligibilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000305', 'PersonDetail', 'RefProofOfResidencyTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000305', 'PersonFamily', 'RefProofOfResidencyTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000306', 'PersonImmunization', 'ImmunizationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000307', 'RequiredImmunization', 'RefImmunizationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000308', 'PersonHealth', 'RefVisionScreeningStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000309', 'PersonHealth', 'RefHearingScreeningStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000310', 'PersonHealth', 'RefDentalScreeningStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000312', 'PersonHealthBirth', 'WeightAtBirth', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000313', 'PersonHealthBirth', 'WeeksOfGestation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000314', 'ELChildDevelopmentalAssessment', 'RefChildDevelopmentalScreeningStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000315', 'ELChildDevelopmentalAssessment', 'RefDevelopmentalEvaluationFindingId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000316', 'PersonLanguage', 'RefLanguageUseTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000317', 'PersonLanguage', 'RefLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000320', 'IndividualizedProgram', 'RefIndividualizedProgramTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000321', 'ELChildService', 'RefEarlyChildhoodServicesReceivedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000321', 'ServiceProvided', 'RefServicesId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000323', 'ELChildServicesApplication', 'ApplicationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000323', 'OrganizationPersonRoleApplication', 'ApplicationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000324', 'ELEnrollment', 'EnrollmentDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000325', 'ELEnrollment', 'RefFoodServiceParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000325', 'ProgramParticipationFoodService', 'RefSchoolFoodServiceProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000329', 'PersonRelationship', 'CustodialRelationshipIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000330', 'PersonFamily', 'NumberOfPeopleInFamily', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000331', 'PersonFamily', 'NumberOfPeopleInHousehold', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000332', 'PersonFamily', 'FamilyIncome', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000333', 'PersonFamily', 'RefFamilyIncomeSourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000334', 'PersonFamily', 'RefIncomeCalculationMethodId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000335', 'PersonHealth', 'RefHealthInsuranceCoverageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000336', 'PersonHealth', 'RefDentalInsuranceCoverageTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000341', 'ELStaffEducation', 'RefELLevelOfSpecializationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000342', 'PersonDegreeOrCertificate', 'DegreeOrCertificateTitleOrSubject', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000343', 'PersonDegreeOrCertificate', 'RefDegreeOrCertificateTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000345', 'EarlyChildhoodCredential', 'RefEarlyChildhoodCredentialId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000346', 'RoleStatus', 'StatusStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000347', 'ELStaffEmployment', 'RefEmploymentStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000347', 'K12StaffEmployment', 'RefEmploymentStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000348', 'ELFacilityLicensing', 'InitialLicensingDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000348', 'ELProgramLicensing', 'InitialLicenseDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000349', 'ELFacilityLicensing', 'ContinuingLicenseDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000349', 'ELProgramLicensing', 'ContinuingLicenseDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000350', 'ELFacilityLicensing', 'RefLicenseExemptId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000350', 'ELProgramLicensing', 'RefLicenseExemptId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000351', 'OrganizationOperationalStatus', 'OperationalStatusEffectiveDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000353', 'ELClassSection', 'RefServiceOptionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000353', 'ELEnrollment', 'RefServiceOptionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000353', 'ELOrganizationAvailability', 'RefServiceOptionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000354', 'ELClassSection', 'HoursAvailablePerDay', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000354', 'ELOrganizationAvailability', 'HoursAvailablePerDay', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000355', 'ELClassSection', 'DaysAvailablePerWeek', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000355', 'ELOrganizationAvailability', 'DaysAvailablePerWeek', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000356', 'ELClassSection', 'RefEnvironmentSettingId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000356', 'ELOrganizationAvailability', 'RefEnvironmentSettingId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000357', 'ELQualityRatingImprovement', 'RefQrisParticipationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000358', 'ELQualityRatingImprovement', 'QrisScore', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000361', 'PsStudentEnrollment', 'RefPsEnrollmentAwardTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000362', 'ProgramParticipationAE', 'InstructionalActivityHoursCompleted', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000362', 'PsStudentEnrollment', 'InstructionalActivityHoursCompleted', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000363', 'FinancialAidAward', 'RefFinancialAidStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000364', 'Classroom', 'ClassroomIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000364', 'CourseSectionLocation', 'ClassroomId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000365', 'Assessment', 'IdentificationSystem', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000366', 'AssessmentForm', 'FormNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000367', 'AssessmentSubtest', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000368', 'AssessmentSubtest', 'Abbreviation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000369', 'AssessmentResult', 'RefScoreMetricTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000369', 'AssessmentSubtest', 'RefScoreMetricTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000370', 'AssessmentResult', 'InstructionalRecommendation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000371', 'AssessmentParticipantSession', 'RefLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000382', 'Assessment', 'Objective', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000383', 'AssessmentAccommodation', 'RefAssessmentAccommodationCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000384', 'AssessmentAdministration', 'AssessmentSecureIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000384', 'AssessmentForm', 'AssessmentSecureIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000385', 'AssessmentAccommodation', 'RefAccommodationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000385', 'IndividualizedProgramAccommodation', 'RefAccommodationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000386', 'AssessmentParticipantSession', 'RefAssessmentPlatformTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000388', 'AssessmentSubtest', 'Version', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000389', 'AssessmentParticipantSession', 'RefAssessmentSessionSpecialCircumstanceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000389', 'AssessmentSession', 'RefAssessmentSessionSpecialCircumstanceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000390', 'AssessmentItem', 'RefAssessmentItemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000391', 'AssessmentItem', 'Difficulty', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000392', 'AssessmentItemCharacteristic', 'RefAssessmentItemCharacteristicTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000393', 'AssessmentItemCharacteristic', 'ResponseChoicePattern', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000395', 'AssessmentSubtest', 'MaximumValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000396', 'AssessmentSubtest', 'MinimumValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000397', 'AssessmentSubtest', 'OptimalValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000398', 'AssessmentItem', 'DistractorAnalysis', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000400', 'AssessmentItem', 'Stem', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000402', 'AssessmentItemResponse', 'Duration', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000403', 'AssessmentItem', 'AllottedTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000405', 'AssessmentItemResponse', 'RefAssessItemResponseStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000406', 'AssessmentItemResponse', 'AidSetUsed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000407', 'AssessmentParticipantSession', 'TimeAssessed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000408', 'AssessmentSession', 'AllottedTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000415', 'Assessment', 'RefAssessmentTypeAdministeredId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000417', 'AssessmentPerformanceLevel', 'ScoreMetric', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000418', 'AssessmentPerformanceLevel', 'LowerCutScore', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000419', 'AssessmentPerformanceLevel', 'UpperCutScore', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000421', 'Rubric', 'Title', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000422', 'Rubric', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000423', 'Rubric', 'UrlReference', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000424', 'K12Sea', 'RefStateANSICodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000425', 'PersonRelationship', 'RefPersonRelationshipTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000426', 'PersonBirthplace', 'City', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000427', 'PersonBirthplace', 'RefStateId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000428', 'PersonDetail', 'BirthdateVerification', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000428', 'ProgramParticipationMigrant', 'BirthdateVerification', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000429', 'ProgramParticipationMigrant', 'RefContinuationOfServicesReasonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000430', 'ProgramParticipationMigrant', 'MepEligibilityExpirationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000431', 'PersonHealthBirth', 'MultipleBirthIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000432', 'ProgramParticipationMigrant', 'MigrantStudentQualifyingArrivalDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000433', 'ProgramParticipationMigrant', 'QualifyingMoveFromCity', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000434', 'ProgramParticipationMigrant', 'RefQualifyingMoveFromCountryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000435', 'ProgramParticipationMigrant', 'RefQualifyingMoveFromStateId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000436', 'ProgramParticipationMigrant', 'DesignatedGraduationSchoolId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000437', 'ProgramParticipationMigrant', 'RefMepEnrollmentTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000438', 'ProgramParticipationMigrant', 'ImmunizationRecordFlag', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000439', 'PersonHealth', 'RefMedicalAlertIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000440', 'ProgramParticipationMigrant', 'RefMepProjectBasedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000442', 'OrganizationFederalAccountability', 'AypAppealProcessDesignation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000443', 'OrganizationFederalAccountability', 'AypAppealChangedDesignation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000444', 'OrganizationFederalAccountability', 'AypAppealProcessDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000445', 'K12SeaFederalFunds', 'StateTransferabilityOfFunds', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000447', 'K12TitleIIILanguageInstruction', 'RefTitleIIILanguageInstructionProgramTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000447', 'ProgramParticipationTitleIIILep', 'RefTitleIIILanguageInstructionProgramTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000448', 'Course', 'RefInstructionLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000448', 'CourseSection', 'RefInstructionLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000449', 'K12LeaFederalReporting', 'RefBarrierToEducatingHomelessId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000453', 'K12LeaFederalReporting', 'StateAssessStandardsFunding', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000454', 'K12LeaFederalReporting', 'StateAssessmentAdminFunding', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000455', 'K12SeaFederalFunds', 'DateStateReceivedTitleIIIAllocation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000456', 'K12SeaFederalFunds', 'DateTitleIIIFundsAvailableToSubgrantees', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000457', 'K12SeaFederalFunds', 'NumberOfDaysForTitleIIISubgrants', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000461', 'K12LeaFederalFunds', 'InnovativeDollarsSpent', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000462', 'K12LeaFederalFunds', 'InnovativeDollarsSpentOnStrategicPriorities', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000463', 'K12ProgramOrService', 'RefMepProjectTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000464', 'K12LeaFederalFunds', 'InnovativeProgramsFundsReceived', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000466', 'K12StudentLiteracyAssessment', 'RefLiteracyAssessmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000467', 'K12StudentLiteracyAssessment', 'LiteracyGoalMetStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000468', 'K12StudentLiteracyAssessment', 'LiteracyPostTestStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000469', 'K12StudentLiteracyAssessment', 'LiteracyPreTestStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000471', 'K12LeaSafeDrugFree', 'IndicatorName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000472', 'K12LeaSafeDrugFree', 'Instrument', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000473', 'K12LeaSafeDrugFree', 'CollectionFrequency', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000474', 'K12LeaSafeDrugFree', 'MostRecentCollection', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000475', 'K12LeaSafeDrugFree', 'Target', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000476', 'K12LeaSafeDrugFree', 'Performance', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000477', 'K12LeaSafeDrugFree', 'Baseline', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000478', 'K12LeaSafeDrugFree', 'BaselineYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000481', 'K12SchoolImprovement', 'SchoolImprovementExitDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000482', 'K12LeaFederalReporting', 'TerminatedTitleIIIProgramFailure', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000484', 'ProgramParticipationNeglected', 'ObtainedEmployment', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000485', 'K12ProgramOrService', 'ProgramInMultiplePurposeFacility', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000486', 'K12LeaFederalFunds', 'RefRlisProgramUseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000487', 'K12LeaTitleIIIProfessionalDevelopment', 'RefTitleIIIProfessionalDevelopmentTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000488', 'K12StudentDiscipline', 'RefDisciplinaryActionTakenId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001546', 'AssessmentResult', 'AssessmentResultScoreStandardError', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001547', 'AssessmentResult', 'RefAssessmentResultScoreTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001548', 'K12School', 'CharterSchoolOpenEnrollmentIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001549', 'CteCourse', 'CourseDepartmentName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001549', 'K12Course', 'CourseDepartmentName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001550', 'OrganizationCalendarCrisis', 'CrisisDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001552', 'OrganizationCalendarCrisis', 'CrisisEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001552', 'OrganizationCalendarCrisis', 'EndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001553', 'ELChildService', 'RefEarlyChildhoodServicesOfferedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001554', 'FinancialAccount', 'AccountNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001554', 'FinancialAccount', 'FinancialAccountNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001555', 'FinancialAccount', 'RefFinancialExpenditureLevelOfInstructionCodeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001556', 'FinancialAccount', 'FinancialExpenditureProjectReportingCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001557', 'LearnerAction', 'LearnerActionActorIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001558', 'LearnerAction', 'LearnerActionObjectDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001559', 'LearnerAction', 'LearnerActionObjectIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001560', 'LearnerAction', 'LearnerActionObjectType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001561', 'LearningResource', 'RefLearningResourceAccessRightsUrlId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001562', 'LearningResource', 'RefLearningResourceAuthorTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'AltName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'ChangedInThisVersionInd', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'ChangeNotes', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'Definition', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'ElementName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'Format', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'GlobalID', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'HasOptionSet', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'TermID', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'URL', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'UsageNotes', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'Version', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDStoNDSMapping', 'ColumnName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDStoNDSMapping', 'GlobalID', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDStoNDSMapping', 'TableName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDStoNDSMapping', 'Version', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Activity', 'ActivityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Activity', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Activity', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Activity', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ActivityRecognition', 'ActivityRecognitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ActivityRecognition', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ActivityRecognition', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ActivityRecognition', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeCourse', 'AeCourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeCourse', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeCourse', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeCourse', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeProvider', 'AeProviderId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeProvider', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeProvider', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeProvider', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStaff', 'AeStaffId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStaff', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStaff', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStaff', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentAcademicRecord', 'AeStudentAcademicRecordId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentAcademicRecord', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentAcademicRecord', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentAcademicRecord', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentEmployment', 'AeStudentEmploymentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentEmployment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentEmployment', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentEmployment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'ApipInteractionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'AssessmentItemApipId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'SequenceNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Application', 'ApplicationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Application', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Application', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment', 'AssessmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'Assessment_AssessmentAdministrationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'AssessmentAdministrationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'AssessmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAccommodation', 'AssessmentAccommodationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAccommodation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAccommodation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'AssessmentAdministrationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'AssessmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'RefAssessmentReportingMethodId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'AssessmentAdministration_OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'AssessmentAdministrationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAsset', 'AssessmentAssetId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAsset', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAsset', 'LearningResourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAsset', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'AssessmentELDevelopmentalDomainId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'AssessmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'RefAssessmentELDevelopmentalDomainId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'AssessmentFormId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'AssessmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'LearningResourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentAssetId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentForm_AssessmentAssetId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentFormId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentForm_AssessmentFormSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentFormId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentFormSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'AssessmentFormSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'ChildOf_FormSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'LearningResourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentAssetId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentFormSection_AssessmentAssetId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentFormSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentFormSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentFormSectionItemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentItemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'AssessmentItemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'LearningResourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'RubricId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApip', 'AssessmentItemApipId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApip', 'AssessmentItemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApip', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApip', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'AslIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'AslOnDemandIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'AssessmentItemApipDescriptionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'AssessmentItemApipId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'BrailleIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ChunkingActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ChunkingAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'CognitiveGuidanceActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'CognitiveGuidanceAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'GraphicsOnlyIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'KeywordEmphasisActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'KeywordEmphasisAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'KeywordTranslationsActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'KeywordTranslationsAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'NegativesRemovedActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'NegativesRemovedAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'NonVisualIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ReducedAnswersActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ReducedAnswersAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'RefHazardTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'RefKeywordTranslationLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'RefSupportToolTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ScaffoldingActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ScaffoldingAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'SignedEnglishIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'SignedEnglishOnDemandIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'TextGraphicsIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'TextOnlyIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'TextOnlyOnDemandIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemCharacteristic', 'AssessmentItemCharacteristicId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemCharacteristic', 'AssessmentItemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemCharacteristic', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemCharacteristic', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemPossibleResponse', 'AssessmentItemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemPossibleResponse', 'AssessmentItemPossibleResponseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemPossibleResponse', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemPossibleResponse', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'AssessmentItemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'AssessmentItemResponseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'AssessmentParticipantSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponseTheory', 'AssessmentItemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponseTheory', 'AssessmentItemResponseTheoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponseTheory', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponseTheory', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemRubricCriterionResult', 'AssessmentItemResponseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemRubricCriterionResult', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemRubricCriterionResult', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemRubricCriterionResult', 'RubricCriterionLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'AssessmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'AssessmentLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'RefLanguageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'AssessmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'AssessmentLevelsForWhichDesignedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'RefGradeLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipContent', 'AssessmentNeedApipContentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipContent', 'AssessmentPersonalNeedsProfileContentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipContent', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipContent', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipControl', 'AssessmentNeedApipControlId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipControl', 'AssessmentPersonalNeedsProfileControlId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipControl', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipControl', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipDisplay', 'AssessmentNeedApipDisplayId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipDisplay', 'AssessmentPersonalNeedsProfileDisplayId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipDisplay', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipDisplay', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedBraille', 'AssessmentNeedBrailleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedBraille', 'AssessmentPersonalNeedsProfileDisplayId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedBraille', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedBraille', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentNeedScreenEnhancementId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentPersonalNeedsProfileDisplayId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentPersonalNeedsProfileScreenEnhancementId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'AssessmentFormSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'AssessmentParticipantSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'AssessmentRegistrationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'AssessmentSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentAccommodationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentParticipantSession_AccommodationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentParticipantSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPerformanceLevel', 'AssessmentPerformanceLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPerformanceLevel', 'AssessmentSubtestId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPerformanceLevel', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPerformanceLevel', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'AssessmentNeedsProfileContentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'AssessmentPersonalNeedLanguageLearnerId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedScreenReader', 'AssessmentPersonalNeedScreenReaderId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedScreenReader', 'AssessmentPersonalNeedsProfileDisplayId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedScreenReader', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedScreenReader', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfile', 'AssessmentPersonalNeedsProfileId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfile', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfile', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'AssessmentPersonalNeedsProfileContentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'AssessmentPersonalNeedsProfileId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ChunkingActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ChunkingAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'CognitiveGuidanceActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'CognitiveGuidanceAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordEmphasisActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordEmphasisAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordTranslationsActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordTranslationsAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'NegativesRemovedActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'NegativesRemovedAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ReducedAnswersActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ReducedAnswersAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ScaffoldingActivateByDefaultIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ScaffoldingAssignedSupportIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'AssessmentPersonalNeedsProfileControlId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'AssessmentPersonalNeedsProfileId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'AssessmentPersonalNeedsProfileDisplayId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'AssessmentPersonalNeedsProfileId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'AssessmentPersonalNeedsProfileId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'AssessmentPersonalNeedsProfileScreenEnhancementId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'AssessmentAdministrationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'AssessmentFormId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'AssessmentRegistrationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'CourseSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'LeaOrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'SchoolOrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentAccommodationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentRegistration_AccommodationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentRegistrationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'AssessmentRegistrationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'AssessmentResultId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'AssessmentSubtestId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentPerformanceLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentResult_PerformanceLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentResultId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'AssessmentResultId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'AssessmentResultRubricCriterionResultId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'RubricCriterionLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'AssessmentAdministrationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'AssessmentSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'Lea_OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'School_OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentParticipantSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentSessionStaffRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'AssessmentFormId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'AssessmentSubtestId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'ChildOf_AssessmentSubtestId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentItemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentSubtestId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentSubtestItemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'AssessmentSubtest_CompetencyDefinitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'AssessmentSubtestId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'CompetencyDefinitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'AssessmentSubtestELDevelopmentalDomainId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'AssessmentSubtestId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'RefAssessmentELDevelopmentalDomainId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'AssessmentSubTestId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'AssessmentSubtestLevelsForWhichDesignedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'RefGradeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authentication', 'AuthenticationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authentication', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authentication', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authentication', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'ApplicationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'AuthorizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AuthorizationDocument', 'AuthorizationDocumentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AuthorizationDocument', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AuthorizationDocument', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AuthorizationDocument', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpace', 'BuildingSpaceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpace', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpace', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpace', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpaceUtilization', 'BuildingSpaceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpaceUtilization', 'BuildingSpaceUtilizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpaceUtilization', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpaceUtilization', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemCategory', 'BuildingSystemCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemCategory', 'BuildingSystemComponentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemCategory', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemCategory', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'BuildingSystemComponentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponentService', 'BuildingSystemComponentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponentService', 'BuildingSystemComponentServiceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponentService', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponentService', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Classroom', 'ClassroomId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Classroom', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Classroom', 'LocationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Classroom', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'CompetencyDefAssociationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'CompetencyDefinitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'RefEntityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefEducationLevel', 'CompetencyDefEducationLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefEducationLevel', 'CompetencyDefinitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefEducationLevel', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefEducationLevel', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'ChildOf_CompetencyDefinitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'CompetencyDefinitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'CompetencyFrameworkId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencyDefinition_CompetencySetId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencyDefinitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencySetId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyFramework', 'CompetencyFrameworkId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyFramework', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyFramework', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet', 'ChildOf_CompetencySet', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet', 'CompetencySetId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'CompetencySet_RubricId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'CompetencySetId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'RubricId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'CompetencySet_RubricCriterionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'CompetencySetId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'RubricCriterionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CoreKnowledgeArea', 'CoreKnowledgeAreaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CoreKnowledgeArea', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CoreKnowledgeArea', 'ProfessionalDevelopmentActivityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CoreKnowledgeArea', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Course', 'CourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Course', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Course', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Course', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'CourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'CourseSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'RefCreditTypeEarnedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionAssessmentReporting', 'CourseSectionAssessmentReportingId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionAssessmentReporting', 'CourseSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionAssessmentReporting', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionAssessmentReporting', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLevel', 'CourseSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLevel', 'CourseSectionLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLevel', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLevel', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLocation', 'CourseSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLocation', 'CourseSectionLocationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLocation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLocation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionSchedule', 'CourseSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionSchedule', 'CourseSectionScheduleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionSchedule', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionSchedule', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'CredentialAwardId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'CredentialDefinitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'CredentialIssuerId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'CredentialAwardCreditId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'CredentialAwardId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'CredentialCriteriaCourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'AssessmentResultId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'CredentialAwardEvidenceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'CredentialAwardId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'CourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'CredentialCriteriaCourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'CredentialDefCriteriaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'CredentialDefAgentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefAgentCredentialId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefAgentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefinitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCategory', 'CredentialDefCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCategory', 'CredentialDefinitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCategory', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCategory', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'CompetencySetId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'CredentialDefCriteriaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'CredentialDefinitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefIdentifier', 'CredentialDefIdentifierId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefIdentifier', 'CredentialDefinitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefIdentifier', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefIdentifier', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefinition', 'CredentialDefinitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefinition', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefinition', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialIssuer', 'CredentialIssuerId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialIssuer', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialIssuer', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialIssuer', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'CredentialDefinitionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'CredentialIssuerId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'CredentialOfferedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteCourse', 'CourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteCourse', 'CteCourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteCourse', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteCourse', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteStudentAcademicRecord', 'CteStudentAcademicRecordId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteStudentAcademicRecord', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteStudentAcademicRecord', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteStudentAcademicRecord', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'DataCollection', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodCredential', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodCredential', 'EarlyChildhoodCredentialId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodCredential', 'PersonCredentialId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodCredential', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'EarlyChildhoodProgramTypeOfferedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'ELChildDemographicId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'FosterCareEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'FosterCareStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDevelopmentalAssessment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDevelopmentalAssessment', 'ELChildDevelopmentalAssessmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDevelopmentalAssessment', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDevelopmentalAssessment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildHealth', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildHealth', 'ELChildHealthId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildHealth', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildHealth', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'ELChildIndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'IndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildOutcomeSummary', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildOutcomeSummary', 'ELChildOutcomeSummaryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildOutcomeSummary', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildOutcomeSummary', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildProgramEligibility', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildProgramEligibility', 'ELChildProgramEligibilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildProgramEligibility', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildProgramEligibility', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildService', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildService', 'ELChildServiceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildService', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildService', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildServicesApplication', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildServicesApplication', 'ELChildServicesApplicationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildServicesApplication', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildServicesApplication', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'ELChildTransitionPlanId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'IndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSection', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSection', 'ELClassSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSection', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSection', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSectionService', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSectionService', 'ELClassSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSectionService', 'ELClassSectionServiceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSectionService', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELCourse', 'CourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELCourse', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELCourse', 'ELCourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELCourse', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'ELClassSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'ELEnrollmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollmentOtherFunding', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollmentOtherFunding', 'ELEnrollmentOtherFundingId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollmentOtherFunding', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollmentOtherFunding', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELFacilityLicensing', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELFacilityLicensing', 'ELFacilityLicensingId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELFacilityLicensing', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELFacilityLicensing', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EligibilityEvaluation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EligibilityEvaluation', 'EligibilityEvaluationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EligibilityEvaluation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganization', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganization', 'ELOrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganization', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganization', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationAvailability', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationAvailability', 'ELOrganizationAvailabilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationAvailability', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationAvailability', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationFunds', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationFunds', 'ELOrganizationFundsId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationFunds', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationFunds', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationMonitoring', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationMonitoring', 'ELOrganizationMonitoringId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationMonitoring', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationMonitoring', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'ELOrganizationStudentResponsibilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganizationStudentResponsibility', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELProgramLicensing', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELProgramLicensing', 'ELProgramLicensingId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELProgramLicensing', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELProgramLicensing', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityInitiative', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityInitiative', 'ELQualityInitiativeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityInitiative', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityInitiative', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityRatingImprovement', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityRatingImprovement', 'ELQualityRatingImprovementId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityRatingImprovement', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityRatingImprovement', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELServicePartner', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELServicePartner', 'ELServicePartnerId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELServicePartner', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELServicePartner', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaff', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaff', 'ELStaffId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaff', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaff', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffAssignment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffAssignment', 'ELStaffAssignmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffAssignment', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffAssignment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEducation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEducation', 'ELStaffEducationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEducation', 'ELStaffId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEducation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEmployment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEmployment', 'ELStaffEmploymentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEmployment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEmployment', 'StaffEmploymentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Facility', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Facility', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Facility', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Facility', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityAudit', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityAudit', 'FacilityAuditId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityAudit', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityAudit', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'BuildingSystemComponentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'FacilityComplianceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'FacilityMandateId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesign', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesign', 'FacilityDesignId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesign', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesign', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesignConstruction', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesignConstruction', 'FacilityDesignConstructionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesignConstruction', 'FacilityDesignId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesignConstruction', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityEnergy', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityEnergy', 'FacilityEnergyId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityEnergy', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityEnergy', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinance', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinance', 'FacilityFinanceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinance', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinance', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'FacilityFinancialId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'FacilityLeaseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'FacilityMortgageFeeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'FacilityMortgageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'OrganizationFinancialId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityHazard', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityHazard', 'FacilityHazardId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityHazard', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityHazard', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityJointUse', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityJointUse', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityJointUse', 'FacilityJointUseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityJointUse', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLease', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLease', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLease', 'FacilityLeaseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLease', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'FacilityLocationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'LocationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagement', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagement', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagement', 'FacilityManagementId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagement', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagementPlan', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagementPlan', 'FacilityManagementId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagementPlan', 'FacilityManagementPlanId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagementPlan', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMandate', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMandate', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMandate', 'FacilityMandateId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMandate', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgage', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgage', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgage', 'FacilityMortgageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgage', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgageFee', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgageFee', 'FacilityMortgageFeeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgageFee', 'FacilityMortgageId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgageFee', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'FacilityRelationshipId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'Parent_FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySchoolDesign', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySchoolDesign', 'FacilityDesignId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySchoolDesign', 'FacilitySchoolDesignId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySchoolDesign', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySite', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySite', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySite', 'FacilitySiteId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySite', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityUtilization', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityUtilization', 'FacilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityUtilization', 'FacilityUtilizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityUtilization', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccount', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccount', 'FederalProgramCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccount', 'FinancialAccountId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccount', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'AccountNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'FinancialAccountLocalId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAccountLocal', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountProgram', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountProgram', 'FinancialAccountProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountProgram', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidApplication', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidApplication', 'FinancialAidApplicationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidApplication', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidApplication', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidAward', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidAward', 'FinancialAidAwardId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidAward', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidAward', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'CompetencySetId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'GoalId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurement', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurement', 'GoalId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurement', 'GoalMeasurementId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurement', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurementCriterion', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurementCriterion', 'GoalMeasurementCriterionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurementCriterion', 'GoalMeasurementId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurementCriterion', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'Date', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'GoalId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'GoalPerformanceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDEAEligibilityEvaluationCategory', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDEAEligibilityEvaluationCategory', 'EligibilityEvaluationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDEAEligibilityEvaluationCategory', 'IDEAEligibilityEvaluationCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDEAEligibilityEvaluationCategory', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDSVersion', 'CurrentVersion', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDSVersion', 'IDSVersionDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDSVersion', 'IDSVersionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDSVersion', 'IDSVersionNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'AuthorizationDocumentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'IEPAuthorizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'IndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorizationRejected', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorizationRejected', 'IEPAuthorizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorizationRejected', 'IEPAuthorizationRejectedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorizationRejected', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPPresentLevel', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPPresentLevel', 'IEPPresentLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPPresentLevel', 'IndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPPresentLevel', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Incident', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Incident', 'IncidentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Incident', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Incident', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'IncidentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'IncidentPersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgram', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgram', 'IndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgram', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgram', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodation', 'IndividualizedProgramAccommodationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodation', 'IndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodationSubject', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodationSubject', 'IndividualizedProgramAccommodationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodationSubject', 'IndividualizedProgramAccommodationSubjectId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodationSubject', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAmendment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAmendment', 'IndividualizedProgramAmendmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAmendment', 'IndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAmendment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'AssessmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'IndividualizedProgramAssessmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'IndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'AssessmentAccommodationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'IndividualizedProgramAssessmentAccommodationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'IndividualizedProgramAssessmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibility', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibility', 'IndividualizedProgramEligibilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibility', 'IndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibility', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'EligibilityEvaluationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'IndividualizedProgramEligibilityEvaluationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'IndividualizedProgramEligibilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'GoalId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'IndividualizedProgramGoalId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'IndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeeting', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeeting', 'IndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeeting', 'IndividualizedProgramMeetingId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeeting', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'IndividualizedProgramMeetingAttendeeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'IndividualizedProgramMeetingId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'GoalPerformanceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'IndividualizedProgramProgressGoalId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'IndividualizedProgramProgressReportId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramProgressReportId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramProgressReportPlanId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReportPlan', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReportPlan', 'IndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReportPlan', 'IndividualizedProgramProgressReportPlanId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReportPlan', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramService', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramService', 'IndividualizedProgramServiceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramService', 'PersonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramService', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'IndividualizedProgramId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'IndividualizedProgramServicesReceivedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'ServicesReceivedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IPEDSFinance', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IPEDSFinance', 'IPEDSFinanceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IPEDSFinance', 'OrganizationFinancialId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IPEDSFinance', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'K12CharterSchoolManagementOrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'RefCharterSchoolManagementOrganizationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'CourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'K12CourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'RefCreditTypeEarnedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'FederalProgramCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'FederalProgramsFundingAllocation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'FundsTransferAmount', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'K12FederalFundAllocationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'LeaTransferabilityOfFunds', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'NumberOfImmigrantProgramSubgrants', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'OrganizationCalendarSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'RefFederalProgramFundingAllocationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'RefLeaFundsTransferTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'RefReapAlternativeFundingStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'SchoolImprovementAllocation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'SchoolImprovementReservedPercent', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'SesPerPupilExpenditure', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'K12LeaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'RefCharterLeaStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'K12LeaFederalFundsId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'OrganizationCalendarSessionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'ParentalInvolvementReservationFunds', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalReporting', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalReporting', 'K12LeaFederalReportingId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalReporting', 'K12LeaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalReporting', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeLevelsApproved', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeLevelsApproved', 'K12LeaGradeLevelsApprovedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeLevelsApproved', 'K12LeaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeLevelsApproved', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeOffered', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeOffered', 'K12LeaGradeOfferedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeOffered', 'K12LeaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeOffered', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibility', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibility', 'K12LeaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibility', 'K12LEAPreKEligibilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibility', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'K12LeaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'K12LEAPreKEligibleAgesIDEAId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaSafeDrugFree', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaSafeDrugFree', 'K12LeaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaSafeDrugFree', 'K12LeaSafeDrugFreeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaSafeDrugFree', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'K12LeaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'K12LEATitleIIIProfessionalDevelopmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleISupportService', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleISupportService', 'K12LeaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleISupportService', 'K12LeaTitleISupportServiceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleISupportService', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12OrganizationStudentResponsibility', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12OrganizationStudentResponsibility', 'K12OrganizationStudentResponsibilityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12OrganizationStudentResponsibility', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12OrganizationStudentResponsibility', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12ProgramOrService', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12ProgramOrService', 'K12ProgramOrServiceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12ProgramOrService', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12ProgramOrService', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'K12CharterSchoolAuthorizerAgencyId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'K12SchoolId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolCorrectiveAction', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolCorrectiveAction', 'K12SchoolCorrectiveActionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolCorrectiveAction', 'K12SchoolId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolCorrectiveAction', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeLevelsApproved', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeLevelsApproved', 'K12SchoolGradeLevelsApprovedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeLevelsApproved', 'K12SchoolId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeLevelsApproved', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeOffered', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeOffered', 'K12SchoolGradeOfferedId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeOffered', 'K12SchoolId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeOffered', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolImprovement', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolImprovement', 'K12SchoolId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolImprovement', 'K12SchoolImprovementId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolImprovement', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'IndicatorStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'IndicatorStatusSubgroup', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'K12SchoolId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'K12SchoolIndicatorStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStateDefinedStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusCustomTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusSubgroupTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'K12SchoolId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'K12SchoolStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefComprehensiveAndTargetedSupportId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefComprehensiveSupportId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefNSLPStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefSchoolDangerousStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefSchoolImprovementStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefTargetedSupportId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Sea', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Sea', 'K12SeaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Sea', 'OrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Sea', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'K12SeaAlternateFundUseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'K12SeaFederalFundsId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'RefAlternateFundUsesId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaFederalFunds', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaFederalFunds', 'K12SeaFederalFundsId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaFederalFunds', 'K12SeaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaFederalFunds', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'K12StaffAssignmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'RefEmergencyOrProvisionalCredentialStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffEmployment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffEmployment', 'K12StaffEmploymentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffEmployment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffEmployment', 'StaffEmploymentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicHonor', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicHonor', 'K12StudentAcademicHonorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicHonor', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicHonor', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicRecord', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicRecord', 'K12StudentAcademicRecordId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicRecord', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicRecord', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentActivity', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentActivity', 'K12StudentActivityId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentActivity', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentActivity', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCohort', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCohort', 'K12StudentCohortId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCohort', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCohort', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSection', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSection', 'K12StudentCourseSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSection', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSection', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSectionMark', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSectionMark', 'K12StudentCourseSectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSectionMark', 'K12StudentCourseSectionMarkId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSectionMark', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'IncidentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'K12StudentDisciplineId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEmployment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEmployment', 'K12StudentEmploymentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEmployment', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEmployment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEnrollment', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEnrollment', 'K12StudentEnrollmentId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEnrollment', 'OrganizationPersonRoleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEnrollment', 'RecordStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'DataCollectionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'K12CourseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'K12StudentGraduationPlanId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001563', 'LearningResource', 'LearningResourceAuthorURL', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001564', 'LearningResource', 'LearningResourceDateModified', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001565', 'LearningResource', 'RefLearningResourceInteractionModeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001566', 'LearningResource', 'LearningResourceAuthorEmail', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001567', 'LearningResource', 'LearningResourcePublisherEmail', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001568', 'LearningResource', 'LearningResourcePublisherURL', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001569', 'CompetencyFramework', 'CompetencyFrameworkPublicationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001570', 'CompetencyDefinition', 'CompetencyDefSequence', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001573', 'K12StudentCourseSectionMark', 'StudentCourseSectionGradeNarrative', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001573', 'PsStudentCourseSectionMark', 'StudentCourseSectionGradeNarrative', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001574', 'K12StudentGraduationPlan', 'CreditsRequired', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001574', 'Program', 'CreditsRequired', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001575', 'K12StudentCourseSection', 'TuitionFunded', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001575', 'PersonCareerEducationPlan', 'TuitionFunded', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001576', 'PersonMilitary', 'RefMilitaryConnectedStudentIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001577', 'PersonMilitary', 'RefMilitaryActiveStudentIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001578', 'PersonMilitary', 'RefMilitaryVeteranStudentIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001579', 'PsInstitution', 'RefAdmissionConsiderationLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001580', 'PsInstitution', 'RefAdmissionConsiderationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001581', 'ELStaffEmployment', 'StaffApprovalIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001582', 'ELOrganizationFunds', 'RefBillableBasisTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001583', 'ProgramParticipationCte', 'CareerPathwaysProgramParticipationExitDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001584', 'ProgramParticipationCte', 'CareerPathwaysProgramParticipationStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001587', 'PersonCredential', 'CredentialOrLicenseAwardEntity', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001588', 'PsStudentEnrollment', 'RefDevelopmentalEducationReferralStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001589', 'PsSection', 'RefDevelopmentalEducationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001589', 'PsStudentEnrollment', 'RefDevelopmentalEducationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001590', 'K12StudentEnrollment', 'RefDirectoryInformationBlockStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001591', 'ELChildService', 'ECEAPEligibility', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001592', 'ELChildServicesApplication', 'ELEnrollmentApplicationVerificationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001593', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001594', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001595', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001597', 'ELChildServicesApplication', 'ELApplicationIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001599', 'ELChildServicesApplication', 'ELApplicationRequiredDocument', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001600', 'ELChildServicesApplication', 'ELEnrollmentApplicationVerificationReasonType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001602', 'ELStaffEmployment', 'RefELEducationStaffClassificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001603', 'ELOrganizationFunds', 'RefELLocalRevenueSourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001604', 'ELChildService', 'RefELServiceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001605', 'ELOrganizationFunds', 'RefELStateRevenueSourceId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001606', 'ProfessionalDevelopmentSession', 'RefELTrainerCoreKnowledgeAreaId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001607', 'PersonDegreeOrCertificate', 'RefEducationVerificationMethodId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001609', 'PsStudentFinancialAid', 'RefFinancialAidVeteransBenefitStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001610', 'PsStudentFinancialAid', 'RefFinancialAidVeteransBenefitTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001611', 'FinancialAidApplication', 'FinancialAidYearDesignator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001611', 'FinancialAidAward', 'FinancialAidYearDesignator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001612', 'PersonFamily', 'IncludedInCountedFamilySize', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001613', 'PsPriceOfAttendance', 'IPEDSCollectionYearDesignator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001614', 'ELServicePartner', 'MemorandumOfUnderstandingEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001615', 'ELServicePartner', 'MemorandumOfUnderstandingStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001616', 'PsProgram', 'RefPSProgramLevelId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001617', 'PsStudentEnrollment', 'RefPSExitOrWithdrawalTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001618', 'ELChildService', 'EligibilityPriorityPoints', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001619', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityStateApprovedStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001620', 'PersonCareerEducationPlan', 'ProfessionalDevelopmentPlanApprovedBySupervisor', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001621', 'PersonCareerEducationPlan', 'ProfessionalDevelopmentPlanCompletion', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001622', 'ELOrganizationFunds', 'RefReimbursementTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001623', 'ELChildHealth', 'RefScheduledWellChildScreeningId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001624', 'ELServicePartner', 'ServicePartnerDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001625', 'ELServicePartner', 'ServicePartnerName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001627', 'ELChildServicesApplication', 'SitePreferenceRank', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001628', 'ProfessionalDevelopmentSession', 'TrainingAndTechnicalAssistanceLevel', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001629', 'PSStudentProgram', 'RefTransferOutIndicatorId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001630', 'PersonHealthBirth', 'RefTrimesterWhenPrenatalCareBeganId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001631', 'ELChildHealth', 'WellChildScreeningReceivedDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001632', 'ELStaffEmployment', 'RefELEmploymentSeparationReasonId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001633', 'EarlyChildhoodProgramTypeOffered', 'RefCommunityBasedTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001634', 'EarlyChildhoodProgramTypeOffered', 'InclusiveSettingIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001634', 'IndividualizedProgram', 'InclusiveSettingIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001634', 'ServicePlan', 'InclusiveSettingIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001635', 'ELChildService', 'ServiceDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001636', 'ELStaffEmployment', 'RefELServiceProfessionalStaffClassificationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001639', 'OrganizationFinancial', 'FiscalYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001640', 'PersonMilitary', 'RefMilitaryBranchId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001641', 'PsProgram', 'RefDQPCategoriesOfLearningId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001642', 'OrganizationFinancial', 'FiscalPeriodBeginDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001643', 'OrganizationFinancial', 'FiscalPeriodEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001644', 'OrganizationFinancial', 'EncumberedValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001645', 'FinancialAccountProgram', 'Name', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001646', 'FinancialAccountProgram', 'ProgramNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001647', 'OrganizationFinancial', 'Value', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001648', 'OrganizationFinancial', 'Date', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001649', 'RoleAttendanceEvent', 'Date', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001650', 'K12School', 'K12CharterSchoolManagementOrganizationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001651', 'K12School', 'CharterSchoolContractIdNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001652', 'K12School', 'CharterSchoolContractApprovalDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001653', 'K12School', 'CharterSchoolContractRenewalDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001654', 'K12StudentEnrollment', 'NSLPDirectCertificationIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001655', 'CourseSection', 'MaximumCapacity', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001656', 'ELChildIndividualizedProgram', 'RefIDEAPartCEligibilityCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001657', 'PersonDetail', 'RefTribalAffiliationId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001658', 'CredentialDefIdentifier', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001659', 'IPEDSFinance', 'RefIPEDSFASBFunctionalExpenseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001660', 'CredentialAward', 'RevokedDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001661', 'CredentialAward', 'RevokedReason', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001662', 'CredentialIssuer', 'RevocationListURL', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001663', 'OrganizationImage', 'URL', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001664', 'CredentialAward', 'CompletionDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001665', 'PsStudentAcademicAward', 'RequirementsURL', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001666', 'PsStudentAcademicAward', 'RefAcademicAwardPrerequisiteTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001667', 'Course', 'RepeatabilityMaximumNumber', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001668', 'PsStudentAcademicAward', 'RefPESCAwardLevelTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001669', 'CredentialAward', 'EvidenceURL', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001670', 'IPEDSFinance', 'RefIPEDSGASBFinancialPositionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001671', 'IPEDSFinance', 'RefIPEDSFASBFinancialPositionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001672', 'IPEDSFinance', 'RefIPEDSGASBRevenueId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001673', 'IPEDSFinance', 'RefIPEDSFASBRevenueId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001674', 'IPEDSFinance', 'RefIPEDSFASBRevenueRestrictionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001675', 'IPEDSFinance', 'RefIPEDSGASBFunctionalExpenseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001676', 'IPEDSFinance', 'RefIPEDSNaturalExpenseId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001677', 'IPEDSFinance', 'RefIPEDSGASBScholarshipsandFellowshipsRevenueId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001678', 'IPEDSFinance', 'RefIPEDSFASBScholarshipsandFellowshipsRevenueId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001679', 'IPEDSFinance', 'RefIPEDSIntercollegiateAthleticsExpensesId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001680', 'IPEDSFinance', 'RefIPEDSFASBPellGrantTransactionsId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001681', 'IndividualizedProgramProgressReportPlan', 'RefIPSPProgressReportScheduleId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001682', 'IndividualizedProgram', 'TransferOfRightsStatement', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001683', 'IndividualizedProgram', 'ServicePlanEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001684', 'IndividualizedProgramMeeting', 'MeetingDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001685', 'IndividualizedProgramAccommodation', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001686', 'IndividualizedProgramAccommodation', 'Applicability', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001687', 'IndividualizedProgramAssessment', 'IEPAlternativeAssessmentRationale', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001688', 'IndividualizedProgramAmendment', 'ReasonDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001689', 'IndividualizedProgramAmendment', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001690', 'GoalPerformance', 'CurrentPerformanceDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001691', 'GoalMeasurementCriterion', 'AccuracyPercent', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001692', 'GoalMeasurementCriterion', 'AttemptsCount', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001693', 'GoalMeasurementCriterion', 'Metric', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001694', 'GoalMeasurementCriterion', 'SuccessCount', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001695', 'GoalMeasurement', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001696', 'GoalMeasurement', 'Schedule', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001697', 'GoalMeasurement', 'RefGoalMeasurementTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001698', 'IndividualizedProgramGoal', 'RefIEPGoalTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001699', 'IndividualizedProgramProgressReport', 'ProgressReportDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001700', 'IndividualizedProgramProgressReport', 'ProgressDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001701', 'IndividualizedProgramProgressReport', 'RefIPSPProgressReportTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001701', 'IndividualizedProgramProgressReportPlan', 'RefIPSPProgressReportTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001702', 'GoalPerformance', 'RefGoalStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001703', 'GoalPerformance', 'Status', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001704', 'ProgramParticipationSpecialEducation', 'IDEAPlacementRationale', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001705', 'IEPPresentLevel', 'AcademicDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001706', 'IEPPresentLevel', 'FunctionalDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001707', 'IEPPresentLevel', 'GeneralEducationDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001708', 'IEPPresentLevel', 'PreschoolDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001709', 'IEPPresentLevel', 'StudentStrengthsDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001710', 'IEPPresentLevel', 'ParentConcernDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001711', 'IEPPresentLevel', 'StudentConcernDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001712', 'ServicePlan', 'DeclinedServicesDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001713', 'ServiceFrequency', 'RefFrequencyUnitId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001714', 'ServiceFrequency', 'InstancesPerCycle', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001715', 'ServiceFrequency', 'FrequencyLength', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001716', 'ServiceFrequency', 'DurationInMinutes', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001717', 'ServicePlan', 'ExtendsOutsideSchoolYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001718', 'ServicePlan', 'SettingDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001719', 'IEPAuthorization', 'RefIEPAuthorizationDocumentTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001720', 'AuthorizationDocument', 'RefAuthorizerTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001721', 'AuthorizationDocument', 'AcceptanceIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001722', 'AuthorizationDocument', 'DecisionExplanation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001723', 'IEPAuthorizationRejected', 'PortionDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001724', 'IEPAuthorizationRejected', 'PortionExplanation', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001725', 'AuthorizationDocument', 'AuthorizationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001726', 'IndividualizedProgramEligibility', 'ConsentToEvaluateIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001727', 'IndividualizedProgramEligibility', 'ConsentToEvaluateDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001728', 'IndividualizedProgramEligibilityEvaluation', 'RefIEPEligibilityEvaluationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001729', 'IDEAEligibilityEvaluationCategory', 'RefIDEAEligibilityEvaluationCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001730', 'EligibilityEvaluation', 'Description', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001731', 'EligibilityEvaluation', 'EvaluationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001732', 'IndividualizedProgramEligibility', 'ParentObservations', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001733', 'PersonDisability', 'RefIDEADisabilityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001734', 'CredentialAward', 'AdvancedStandingDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001735', 'CredentialAward', 'AdvancedStandingURL', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001736', 'CredentialDefinition', 'AlternateName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001737', 'CredentialAward', 'ApproverName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001738', 'CredentialDefCriteria', 'RefCredentialDefAssessMethodTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001739', 'CredentialDefIdentifier', 'RefCredentialIdentifierSystemId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001740', 'CredentialDefinition', 'RefCredentialDefStatusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001741', 'CredentialDefCriteria', 'EstimatedDuration', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001742', 'CredentialDefinition', 'CredentialNAICSIndustryType', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001743', 'CredentialDefinition', 'JurisdictionRegion', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001744', 'CredentialDefinition', 'JurisdictionRegionException', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001745', 'CredentialDefinition', 'Keywords', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001746', 'CredentialDefCriteria', 'MaximumDuration', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001747', 'CredentialDefCriteria', 'MinimumAge', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001748', 'CredentialDefCriteria', 'MinimumDuration', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001749', 'CredentialDefinition', 'RefCredentialDefIntendedPurposeTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001750', 'OrganizationDetail', 'RegionGeoJSON', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001751', 'CredentialAward', 'RevokedIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001752', 'CredentialDefinition', 'ValidationMethodDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001753', 'CredentialDefinition', 'RefCredentialDefVerificationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001754', 'CredentialDefinition', 'Version', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001755', 'CredentialDefAgent', 'RefCTDLOrganizationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001755', 'CredentialIssuer', 'RefCTDLOrganizationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001756', 'CredentialDefinition', 'RefONETSOCOccupationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001757', 'CompetencyDefinition', 'TypeURL', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001761', 'AssessmentRegistration', 'StateFullAcademicYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001762', 'AssessmentRegistration', 'LEAFullAcademicYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001763', 'AssessmentRegistration', 'SchoolFullAcademicYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001764', 'Facility', 'BuildingArea', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001765', 'PersonDisability', 'SignificantCognitiveDisabilityIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001766', 'ELOrganization', 'RefVirtualSchoolStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001766', 'K12SchoolStatus', 'RefVirtualSchoolStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001767', 'ELOrganization', 'RefNationalSchoolLunchProgramStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001767', 'K12SchoolStatus', 'RefNationalSchoolLunchProgramStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001768', 'Facility', 'FacilityAcquisitionDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001769', 'FacilityDesignConstruction', 'FacilityAdditionYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001770', 'Facility', 'FacilityBuildingPermanency', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001771', 'FacilityDesignConstruction', 'FacilityConstructionYear', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001772', 'Facility', 'RefBuildingHistoricStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001773', 'FacilitySite', 'FacilitySiteArea', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001774', 'LocationAddress', 'FacilityBlockNumberArea', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001775', 'FacilityDesignConstruction', 'BuildingAdditionDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001776', 'FacilityDesignConstruction', 'BuildingAdditionCode', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001777', 'Facility', 'RefBuildingPrimaryUseTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001778', 'Facility', 'RefCampusStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001779', 'LocationAddress', 'FacilityCensusTract', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001780', 'FacilityDesignConstruction', 'FacilityConstructionDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001781', 'FacilityDesignConstruction', 'RefFacilityConstructionDateTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001782', 'FacilityDesignConstruction', 'RefFacilityConstructionMaterialTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001783', 'Facility', 'FacilityExpectedLife', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001784', 'FacilityFinance', 'FacilityReplacementValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001785', 'Facility', 'BuildingNumberOfStories', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001786', 'FacilitySite', 'FacilitySiteIdentifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001787', 'FacilityDesignConstruction', 'RefFacilitySiteImprovementLocationTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001788', 'Facility', 'BuildingYearBuilt', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001789', 'Facility', 'BuildingYearOfLastModernization', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001790', 'BuildingSystemCategory', 'RefBuildingAirDistributionSystemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001791', 'BuildingSystemCategory', 'RefBuildingCommMgmtComponentSystemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001792', 'FacilityCompliance', 'RefFacilityComplianceStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001793', 'BuildingSystemComponent', 'RefFacilitySystemOrComponentConditionId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001794', 'BuildingSystemCategory', 'RefBuildingCoolingGenerationSystemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001795', 'BuildingSystemCategory', 'RefBuildingElectricalSystemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001796', 'FacilityMandate', 'RefFacilityApplicableFederalMandateTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001797', 'FacilityMandate', 'RefFacilityFederalMandateInterestTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001798', 'BuildingSystemCategory', 'RefBuildingFireProtectionSystemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001799', 'BuildingSystemCategory', 'RefBuildingHeatingGenerationSystemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001800', 'BuildingSystemCategory', 'RefBuildingHVACSystemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001801', 'BuildingSystemComponent', 'BuildingInstitutionalEquipmentDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001802', 'BuildingSystemCategory', 'RefBuildingMechanicalConveyingSystemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001803', 'BuildingSystemCategory', 'RefBuildingPlumbingSystemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001804', 'BuildingSystemCategory', 'RefBuildingSecuritySystemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001805', 'FacilityMandate', 'RefFacilityStateOrLocalMandateInterestTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001806', 'FacilityMandate', 'FacilityStateOrLocalMandateName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001807', 'BuildingSystemCategory', 'RefBuildingTechnologyWiringSystemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001808', 'FacilityHazard', 'FacilityLocationOfHazardousMaterials', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001809', 'BuildingSystemCategory', 'RefBuildingMechanicalSystemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001810', 'FacilityHazard', 'FacilityNearbyEnvHazardDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001811', 'BuildingSystemCategory', 'RefBuildingSystemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001812', 'BuildingSystemCategory', 'RefBuildingVerticalTransportationSystemTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001813', 'BuildingSpace', 'RefBuildingAdministrativeSpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001814', 'BuildingSpace', 'RefBuildingArtSpecialtySpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001815', 'BuildingSpace', 'RefBuildingBasicClassroomDesignTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001816', 'FacilityDesign', 'RefBuildingDesignTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001817', 'BuildingSpace', 'RefBuildingCareerTechEducationSpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001818', 'BuildingSpace', 'RefBuildingCirculationSpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001819', 'FacilityDesign', 'RefBuildingEnvOrEnergyPerformanceRatingCatId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001820', 'BuildingSystemComponent', 'RefFacilityFurnishingsTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001821', 'BuildingSpace', 'RefBuildingFoodServiceSpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001822', 'BuildingSpace', 'RefBuildingIndoorAthleticOrPhysEdSpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001823', 'BuildingSpace', 'RefBuildingLibMediaCenterSpecialtySpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001824', 'BuildingSpace', 'RefBuildingOperationsOrMaintSpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001825', 'BuildingSpace', 'RefBuildingOutdoorAthleticOrPhysEdSpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001826', 'BuildingSpace', 'RefBuildingOutdoorOrNonathleticSpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001827', 'BuildingSpace', 'RefBuildingPerformingArtsSpecialtySpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001828', 'FacilitySchoolDesign', 'RefBuildingSchoolDesignTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001829', 'BuildingSpace', 'RefBuildingScienceSpecialtySpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001830', 'FacilitySite', 'RefFacilitySiteOutdoorAreaTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001831', 'BuildingSpace', 'RefBuildingSpaceDesignTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001832', 'BuildingSpace', 'RefBuildingSpecEdSpecialtySpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001833', 'BuildingSpace', 'RefBuildingStudentSupportSpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001834', 'FacilityDesign', 'BuildingArchitectName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001835', 'FacilityDesign', 'BuildingArchitecturalFirmName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001836', 'BuildingSpace', 'RefBuildingAssemblySpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001837', 'FacilityCompliance', 'FacilityComplianceDeterminationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001838', 'FacilityCompliance', 'FacilityComplianceName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001839', 'FacilityCompliance', 'FacilityComponentDeficiencyDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001840', 'BuildingSystemComponent', 'Identifier', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001841', 'FacilityCompliance', 'FacilityEstimatedCostToEliminateDeferredMaint', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001842', 'FacilityHazard', 'FacilityHazardousCondExpectedRemediationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001843', 'BuildingSpace', 'RefBuildingFullServiceKitchenTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001844', 'FacilityHazard', 'HazardousMaterialOrConditionDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001845', 'FacilityHazard', 'HazardousMaterialOrConditionTestingDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001846', 'FacilityCompliance', 'FacilityInspectionScoreResultDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001847', 'FacilityCompliance', 'FacilityInspectionViolationDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001848', 'BuildingSystemComponent', 'InstallationDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001849', 'BuildingSystemComponent', 'LifecycleCost', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001850', 'FacilityDesignConstruction', 'BuildingSiteImprovementDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001851', 'BuildingSpaceUtilization', 'RefBuildingInstructionalSpaceFactorTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001852', 'FacilityJointUse', 'RefBuildingJointUseRationaleTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001853', 'FacilityJointUse', 'RefBuildingJointUseSchedulingTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001854', 'FacilityJointUse', 'RefBuildingJointUserTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001855', 'BuildingSpaceUtilization', 'RefBuildingCommunityUseSpaceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001856', 'FacilityUtilization', 'BuildingHoursOfPublicUsePerWeek', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001857', 'FacilityUtilization', 'BuildingNetAreaOfInstructionalSpace', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001858', 'FacilityUtilization', 'BuildingNumberOfTeachingStations', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001859', 'FacilityUtilization', 'BuildingPublicUsePolicyDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001860', 'FacilitySite', 'RefBuildingSiteUseRestrictionsTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001861', 'BuildingSpaceUtilization', 'BuildingSpaceUtilizationArea', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001862', 'K12StudentEnrollment', 'RefStudentEnrollmentAccessTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001863', 'BuildingSpaceUtilization', 'BuildingUnassignedSpaceIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001864', 'FacilityAudit', 'RefFacilityAuditTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001865', 'FacilityManagement', 'RefBuildingCharterSchoolRealtyAccessTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001866', 'FacilityManagement', 'RefBuildingCleaningStandardTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001867', 'FacilityManagement', 'RefFacilityComplianceAgencyTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001868', 'FacilityDesignConstruction', 'RefBuildingEnergyConservationMeasureTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001869', 'FacilityEnergy', 'BuildingEnergyServiceCompanyName', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001870', 'FacilityEnergy', 'RefBuildingEnergySourceTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001871', 'FacilityManagementPlan', 'RefFacilitiesMgmtEmergencyTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001872', 'FacilityManagement', 'RefFacilityCapitalProgramMgmtTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001873', 'FacilityManagement', 'RefFacilityOperationsMgmtTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001874', 'FacilityHazard', 'RefFacilityHazardousMaterialsOrCondTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001875', 'FacilityDesignConstruction', 'RefFacilityJointDevelopmentTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001876', 'FacilityCompliance', 'RefFacilityMaintStandardTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001877', 'FacilityHazard', 'RefFacilityNaturallyOccurringHazardTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001878', 'FacilityEnergy', 'RefFacilityUtilityProviderTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001879', 'FacilityEnergy', 'RefFacilityUtilityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001880', 'FacilityDesign', 'BuildingDateOfCertificateOfOccupancy', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001881', 'FacilityAudit', 'FacilityAuditDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001882', 'FacilityManagementPlan', 'FacilitiesPlanDescription', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001883', 'FacilityManagementPlan', 'RefFacilitiesPlanTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001884', 'FacilityDesignConstruction', 'RefFacilityStandardTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001885', 'FacilityMandate', 'RefFacilitiesMandateAuthorityTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001886', 'FacilityMortgageFee', 'RefFacilityFinancingFeeTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001887', 'FacilityLease', 'FacilityLeaseAmount', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001888', 'FacilityLease', 'RefFacilityLeaseAmountCategoryId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001889', 'FacilityLease', 'RefFacilityLeaseTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001890', 'FacilityMortgage', 'FacilityMortgageInterestAmount', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001891', 'FacilityMortgage', 'RefFacilityMortgageInterestTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001892', 'FacilityMortgage', 'RefFacilityMortgageTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001893', 'FacilityFinance', 'IndebtednessAmountAllowed', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001894', 'FacilityFinance', 'InsuranceDeductible', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001895', 'FacilityFinance', 'PublicEducationMillRate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001896', 'FacilityMortgage', 'FacilityTotalAssessedValue', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001897', 'Facility', 'RefCampusTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001898', 'FacilityCompliance', 'ComponentOrFixtureCheckDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001899', 'BuildingSystemComponentService', 'ComponentOrFixtureServicedDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001900', 'BuildingSystemComponentService', 'ComponentOrFixtureScheduledServicedDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001901', 'BuildingSystemComponent', 'ComponentOrFixtureUsefulLife', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001902', 'BuildingSpaceUtilization', 'AvailableUtilizedInstructionalSpace', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001903', 'BuildingSpaceUtilization', 'BuildingCapacityFactorIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001904', 'FacilityUtilization', 'FacilityEnrollmentCapacity', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001905', 'OrganizationRelationship', 'RefOrganizationRelationshipId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001906', 'Facility', 'FacilityOwnershipIndicator', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001907', 'CompetencyFramework', 'CompetencyFrameworkSourceUrl', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001908', 'CompetencyDefinition', 'TypicalAgeRangeMinimum', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001909', 'CompetencyDefinition', 'TypicalAgeRangeMaximum', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001910', 'CredentialDefinition', 'CredentialDefDateEffective', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001911', 'CredentialOffered', 'CredentialOfferedStartDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001912', 'CredentialOffered', 'CredentialOfferedEndDate', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001913', 'CredentialDefinition', 'RefCTDLAudienceLevelTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001914', 'CredentialDefAgent', 'RefCredentialDefAgentRoleTypeId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001915', 'K12SchoolStatus', 'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatusId', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001916', 'K12SchoolStatus', 'ProgressAcheivingEnglishLearnerProficiencyStateDefinedStatus', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Activity', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ActivityRecognition', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeCourse', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeProvider', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeStaff', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeStudentAcademicRecord', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeStudentEmployment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ApipInteraction', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Application', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Assessment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Assessment_AssessmentAdministration', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentAccommodation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentAdministration', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentAdministration_Organization', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentAsset', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentELDevelopmentalDomain', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentForm', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentForm_AssessmentAsset', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentForm_AssessmentFormSection', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentFormSection', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentFormSection_AssessmentAsset', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentFormSection_AssessmentItem', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItem', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemApip', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemApipDescription', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemCharacteristic', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemPossibleResponse', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemResponse', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemResponseTheory', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemRubricCriterionResult', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentLanguage', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentLevelsForWhichDesigned', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedApipContent', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedApipControl', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedApipDisplay', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedBraille', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedScreenEnhancement', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentParticipantSession', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentParticipantSession_Accommodation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPerformanceLevel', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedLanguageLearner', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedScreenReader', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfile', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfileContent', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfileControl', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfileDisplay', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentRegistration', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentRegistration_Accommodation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentResult', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentResult_PerformanceLevel', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentResultRubricCriterionResult', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSession', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSessionStaffRole', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtest', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtest_AssessmentItem', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtest_CompetencyDefinition', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtestELDevelopmentalDomain', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Authentication', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Authorization', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AuthorizationDocument', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSpace', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSpaceUtilization', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSystemCategory', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSystemComponent', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSystemComponentService', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Classroom', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyDefAssociation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyDefEducationLevel', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyDefinition', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyDefinition_CompetencySet', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyFramework', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencySet', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencySet_Rubric', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencySet_RubricCriterion', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CoreKnowledgeArea', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Course', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSection', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSectionAssessmentReporting', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSectionLevel', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSectionLocation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSectionSchedule', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialAward', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialAwardCredit', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialAwardEvidence', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialCriteriaCourse', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefAgent', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefAgentCredential', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefCategory', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefCriteria', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefIdentifier', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefinition', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialIssuer', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialOffered', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CteCourse', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CteStudentAcademicRecord', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'EarlyChildhoodCredential', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'EarlyChildhoodProgramTypeOffered', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildDemographic', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildDevelopmentalAssessment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildHealth', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildIndividualizedProgram', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildOutcomeSummary', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildProgramEligibility', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildService', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildServicesApplication', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildTransitionPlan', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELClassSection', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELClassSectionService', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELCourse', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELEnrollment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELEnrollmentOtherFunding', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELFacilityLicensing', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'EligibilityEvaluation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELOrganization', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELOrganizationAvailability', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELOrganizationFunds', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELOrganizationMonitoring', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELProgramLicensing', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELQualityInitiative', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELQualityRatingImprovement', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELServicePartner', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELStaff', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELStaffAssignment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELStaffEducation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELStaffEmployment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Facility', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityAudit', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityCompliance', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityDesign', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityDesignConstruction', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityEnergy', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityFinance', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityFinancial', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityHazard', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityJointUse', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityLease', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityLocation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityManagement', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityManagementPlan', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityMandate', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityMortgage', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityMortgageFee', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityRelationship', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilitySchoolDesign', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilitySite', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityUtilization', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FinancialAccount', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FinancialAccountProgram', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FinancialAidApplication', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FinancialAidAward', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Goal', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'GoalMeasurement', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'GoalMeasurementCriterion', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'GoalPerformance', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IDEAEligibilityEvaluationCategory', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IEPAuthorization', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IEPAuthorizationRejected', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IEPPresentLevel', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Incident', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IncidentPerson', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgram', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAccommodation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAccommodationSubject', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAmendment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAssessment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAssessmentAccommodation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramEligibility', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramEligibilityEvaluation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramGoal', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramMeeting', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramMeetingAttendee', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramProgressGoal', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramProgressReport', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramProgressReportPlan', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramService', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramServicesReceived', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IPEDSFinance', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12CharterSchoolAuthorizerAgency', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12CharterSchoolManagementOrganization', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12Course', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12FederalFundAllocation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12Lea', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaFederalFunds', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaFederalReporting', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaGradeLevelsApproved', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaGradeOffered', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaPreKEligibility', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaPreKEligibleAgesIDEA', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaSafeDrugFree', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaTitleISupportService', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12OrganizationStudentResponsibility', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12ProgramOrService', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12School', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolCorrectiveAction', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolGradeLevelsApproved', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolGradeOffered', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolImprovement', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolIndicatorStatus', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolStatus', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12Sea', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SeaAlternateFundUse', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SeaFederalFunds', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StaffAssignment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StaffEmployment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentAcademicHonor', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentAcademicRecord', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentActivity', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentCohort', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentCourseSection', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentCourseSectionMark', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentDiscipline', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentEmployment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentEnrollment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentGraduationPlan', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentHomeLanguageSurvey', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentLiteracyAssessment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentSession', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12TitleIIILanguageInstruction', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearnerAction', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearnerActivity', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearnerActivity_LearningResource', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResource', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourceAdaptation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourceEducationLevel', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourceMediaFeature', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourcePeerRating', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourcePhysicalMedia', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Location', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LocationAddress', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Organization', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationAccreditation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendar', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendarCrisis', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendarDay', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendarEvent', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendarSession', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationDetail', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationEmail', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationEmployeeBenefit', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationFederalAccountability', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationFinancial', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationIdentifier', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationImage', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationIndicator', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationLocation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationOperationalStatus', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPersonRole', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPersonRoleApplication', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPersonRoleFTE', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPolicy', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPopulationServed', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationProgramType', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationRelationship', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationService', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationTechnicalAssistance', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationTelephone', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationWebsite', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PDActivityEducationLevel', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PeerRatingSystem', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Person', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Person_AssessmentPersonalNeedsProfile', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonAddress', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonAddressNcesSide', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonAllergy', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonBirthplace', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonCareerEducationPlan', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonCredential', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDegreeOrCertificate', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDemographicRace', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDetail', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDigitalAccess', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDigitalAccessSpeed', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDisability', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonEmailAddress', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonFamily', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonHealth', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonHealthBirth', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonHomelessness', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonIdentifier', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonImmunization', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonLanguage', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonLearningDevice', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonMaster', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonMilitary', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonOtherName', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonPersonalInformationVerification', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonProgramParticipation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonReferral', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonRelationship', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonStatus', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonTelephone', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProfessionalDevelopmentActivity', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProfessionalDevelopmentRequirement', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProfessionalDevelopmentSession', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProfessionalDevelopmentSessionInstructor', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Program', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationAE', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationAttainment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationCte', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationFoodService', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationMigrant', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationNeglected', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationSpecialEducation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationTeacherPrep', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationTitleI', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationTitleIIILep', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationWIOA', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationWIOABarriers', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsCourse', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsInstitution', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsPriceOfAttendance', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsProgram', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsSection', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsSectionLocation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStaffEmployment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentAcademicAward', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentAcademicRecord', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentAdmissionTest', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentApplication', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentCohort', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentCourseSectionMark', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentDemographic', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentEmployment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentEnrollment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentFinancialAid', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PSStudentProgram', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentSection', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'QuarterlyEmploymentRecord', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RequiredImmunization', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Role', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RoleAttendance', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RoleAttendanceEvent', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RoleStatus', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Rubric', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RubricCriterion', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RubricCriterionLevel', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServiceFrequency', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServicePlan', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServiceProvided', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServiceProvider', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServicesReceived', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServiceStaff', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffCompensation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffCredential', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffEmployment', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffEvaluation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffEvaluationPart', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffExperience', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffProfessionalDevelopmentActivity', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffTechnicalAssistance', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'TeacherEducationCredentialExam', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'TeacherStudentDataLinkExclusion', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'WorkforceEmploymentQuarterlyData', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'WorkforceProgramParticipantCohort', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'WorkforceProgramParticipation', 'RecordStartDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Activity', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeCourse', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeProvider', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeStaff', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeStudentAcademicRecord', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeStudentEmployment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemApip', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemApipDescription', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemResponseTheory', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSpaceUtilization', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Classroom', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Course', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSection', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefAgent', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialIssuer', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CteCourse', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CteStudentAcademicRecord', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'EarlyChildhoodCredential', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildDemographic', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildDevelopmentalAssessment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildHealth', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildIndividualizedProgram', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildOutcomeSummary', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildProgramEligibility', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildService', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildServicesApplication', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildTransitionPlan', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELClassSection', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELEnrollment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganization', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganizationAvailability', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganizationFunds', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELServicePartner', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELStaff', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELStaffAssignment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELStaffEducation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELStaffEmployment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityFinancial', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityManagement', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityUtilization', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IEPPresentLevel', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IncidentPerson', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IPEDSFinance', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12Course', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12FederalFundAllocation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12Lea', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaFederalFunds', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaFederalReporting', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaSafeDrugFree', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaTitleISupportService', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12ProgramOrService', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12School', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolIndicatorStatus', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolStatus', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12Sea', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SeaAlternateFundUse', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SeaFederalFunds', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StaffEmployment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentAcademicRecord', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentActivity', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentCohort', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentCourseSection', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentEmployment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentEnrollment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentGraduationPlan', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentLiteracyAssessment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LocationAddress', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationDetail', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationIdentifier', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationImage', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationOperationalStatus', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationProgramType', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationRelationship', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationWebsite', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonBirthplace', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDemographicRace', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDetail', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDisability', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonHealthBirth', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonHomelessness', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonMilitary', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonProgramParticipation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Program', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationAE', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationCte', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationFoodService', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationMigrant', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationNeglected', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationSpecialEducation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationTeacherPrep', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationTitleI', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationTitleIIILep', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsCourse', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsInstitution', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsSection', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsSectionLocation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStaffEmployment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentApplication', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentCohort', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentCourseSectionMark', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentDemographic', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentEmployment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentFinancialAid', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentSection', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'WorkforceEmploymentQuarterlyData', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'WorkforceProgramParticipation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ActivityRecognition', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ApipInteraction', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Application', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Assessment', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Assessment_AssessmentAdministration', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentAccommodation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentAdministration', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentAdministration_Organization', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentAsset', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentELDevelopmentalDomain', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentForm', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentForm_AssessmentAsset', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentForm_AssessmentFormSection', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentFormSection', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentFormSection_AssessmentAsset', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentFormSection_AssessmentItem', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItem', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemCharacteristic', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemPossibleResponse', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemResponse', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemRubricCriterionResult', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentLanguage', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentLevelsForWhichDesigned', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedApipContent', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedApipControl', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedApipDisplay', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedBraille', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedScreenEnhancement', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentParticipantSession', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentParticipantSession_Accommodation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPerformanceLevel', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedLanguageLearner', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedScreenReader', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfile', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfileContent', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfileControl', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfileDisplay', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentRegistration', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentRegistration_Accommodation', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentResult', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentResult_PerformanceLevel', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentResultRubricCriterionResult', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSession', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSessionStaffRole', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtest', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtest_AssessmentItem', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtest_CompetencyDefinition', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtestELDevelopmentalDomain', 'RecordEndDateTime', '11') -INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordEndDateTime', '11') -END - --------------------------------------------- -----Section 8 Update the Version ---------- --------------------------------------------- -PRINT N'Update IDSVersion table' -GO - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[IDSVersion]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN - UPDATE dbo.[IDSVersion] SET [CurrentVersion] = 0 - WHERE [CurrentVersion] = 1 - - INSERT INTO dbo.[IDSVersion]([CurrentVersion], [IDSVersionDate], [IDSVersionNumber]) - VALUES (1, GETDATE(), '11.0.0.0') -END -GO - -PRINT N'Update complete.'; - - -GO \ No newline at end of file diff --git a/src/upgrade/V10.0.1.0-to-V11.0.0.0.sql b/src/upgrade/V11.0.0.0-to-V12.0.0.0.sql similarity index 70% rename from src/upgrade/V10.0.1.0-to-V11.0.0.0.sql rename to src/upgrade/V11.0.0.0-to-V12.0.0.0.sql index b92ca63..fc3f7ca 100644 --- a/src/upgrade/V10.0.1.0-to-V11.0.0.0.sql +++ b/src/upgrade/V11.0.0.0-to-V12.0.0.0.sql @@ -1,6 +1,6 @@ /* - Copyright 2023 Common Education Data Standards + Copyright 2024 Common Education Data Standards Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -16,12 +16,12 @@ Common Education Data Standards (CEDS) - Version 11.0.0.0 + Version 12.0.0.0 Integration Data Schema (IDS) Model database update script - This script updates a IDS version 10.0.1.0 model database to version 11.0.0.0. + This script updates an IDS version 11.0.0.0 model database to version 12.0.0.0. WARNING!!!! @@ -45,1018 +45,2412 @@ */ --- Uncomment next two lines to update a database named CEDS-IDS-V10_0_1_0 or specify appropriate DB name for your server. ---USE [CEDS-IDS-V10_0_1_0] +-- Uncomment next two lines to update a database named CEDS-IDS-V11_0_0_0 or specify appropriate DB name for your server. +--USE [CEDS-IDS-V11_0_0_0] --GO ------------------------------------------------- +--------------------------------------------------------- ----Section 1 Create New Tables ---------------- ------------------------------------------------- - -PRINT N'--Create new table statements' - -/****** Object: Table [dbo].[RefSCEDCourseCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefSCEDCourseCode]( - [RefSCEDCourseCodeId] [int] IDENTITY(1,1) NOT NULL, - [Code] nvarchar(150) NOT NULL, - [Definition] nvarchar(4000) NULL, - [RefJurisdictionId] int NULL, - [SortOrder] decimal(5,2) NULL, +--------------------------------------------------------- +/****** Object: Table [dbo].[LearningResourceStatus] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[LearningResourceStatus]( + [LearningResourceStatusId] [int] IDENTITY(1,1) NOT NULL, + [RefLearningResourceStatusId] int NULL, + [LearningResourceStatusQuantity] int NULL, + [StatusEndDate] datetime NULL, + [StatusStartDate] datetime NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefSCEDCourseCode] PRIMARY KEY CLUSTERED ( [RefSCEDCourseCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[FinancialAccountLocal] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[FinancialAccountLocal]( - [FinancialAccountLocalId] [int] IDENTITY(1,1) NOT NULL, - [RefFinancialAccountLocalBalanceSheetCodeId] int NULL, - [RefFinancialAccountLocalFundClassificationId] int NULL, - [RefFinancialAccountLocalProgramCodeId] int NULL, - [RefFinancialAccountLocalRevenueCodeId] int NULL, - [RefFinancialExpenditureLocalFunctionCodeId] int NULL, - [RefFinancialExpenditureLocalLevelOfInstructionCodeId] int NULL, - [RefFinancialExpenditureLocalObjectCodeId] int NULL, - [Name] nvarchar(100) NULL, - [AccountNumber] nvarchar(30) NULL, - [Description] nvarchar(150) NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_LearningResourceStatus] PRIMARY KEY CLUSTERED ( [LearningResourceStatusId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[IncidentActivity] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[IncidentActivity]( + [IncidentActivityId] [int] IDENTITY(1,1) NOT NULL, + [RefIncidentActivityId] int NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_IncidentActivity] PRIMARY KEY CLUSTERED ( [IncidentActivityId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[OrganizationSalaryScheduleCriteria] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[OrganizationSalaryScheduleCriteria]( + [OrganizationSalaryScheduleCriteriaId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationId] int NOT NULL, + [SalaryScheduleCriterionName] nvarchar(100) NULL, + [SalaryScheduleCriterionDescription] nvarchar(4000) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, [RecordStatusId] int NULL, [DataCollectionId] int NULL, - CONSTRAINT [PK_FinancialAccountLocal] PRIMARY KEY CLUSTERED ( [FinancialAccountLocalId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_OrganizationSalaryScheduleCriteria] PRIMARY KEY CLUSTERED ( [OrganizationSalaryScheduleCriteriaId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[OrganizationFinancialFinancialAccountLocal] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[OrganizationFinancialFinancialAccountLocal]( - [OrganizationFinancialFinancialAccountLocalId] [int] IDENTITY(1,1) NOT NULL, - [OrganizationFinancialId] int NOT NULL, - [FinancialAccountLocalId] int NOT NULL, +/****** Object: Table [dbo].[OrganizationSalaryScheduleCriteriaValue] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[OrganizationSalaryScheduleCriteriaValue]( + [OrganizationSalaryScheduleCriteriaValueId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationSalaryScheduleCriteriaId] int NOT NULL, + [SalaryScheduleCriterionValue] nvarchar(100) NOT NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_OrganizationSalaryScheduleCriteriaValue] PRIMARY KEY CLUSTERED ( [OrganizationSalaryScheduleCriteriaValueId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[OrganizationSalaryScheduleSalary] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[OrganizationSalaryScheduleSalary]( + [OrganizationSalaryScheduleSalaryId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationId] [int] NOT NULL, + [SalaryScheduleSalaryValue] [decimal](9, 2) NOT NULL, + [RefStandardOccupationalClassificationId] [int] NULL, + [RefONETSOCOccupationTypeId] [int] NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_OrganizationSalaryScheduleSalary] PRIMARY KEY CLUSTERED +( + [OrganizationSalaryScheduleSalaryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] Script Date: 3/15/2024 4:25:23 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary]( + [OrganizationSalaryScheduleCriteriaValueSalaryId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationSalaryScheduleCriteriaValueId] [int] NOT NULL, + [OrganizationSalaryScheduleSalaryId] [int] NOT NULL, + [OrganizationId] [int] NOT NULL, + [RecordStartDateTime] [datetime] NULL, + [RecordEndDateTime] [datetime] NULL, + [RecordStatusId] [int] NULL, + [DataCollectionId] [int] NULL, + CONSTRAINT [PK_OrganizationSalaryScheduleCriteriaValueSalary] PRIMARY KEY CLUSTERED +( + [OrganizationSalaryScheduleCriteriaValueSalaryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[BoardMembership] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[BoardMembership]( + [BoardMembershipId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationPersonRoleId] int NOT NULL, + [RefBoardMemberPositionTypeId] int NULL, + [RefBoardMembershipTypeId] int NULL, + [BoardMemberTermStartDate] datetime NULL, + [BoardMemberTermEndDate] datetime NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, [RecordStatusId] int NULL, [DataCollectionId] int NULL, - CONSTRAINT [PK_OrganizationFinancialFinancialAccountLocal] PRIMARY KEY CLUSTERED ( [OrganizationFinancialFinancialAccountLocalId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_BoardMembership] PRIMARY KEY CLUSTERED ( [BoardMembershipId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[PersonTransportationEligibility] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[PersonTransportationEligibility]( + [PersonTransportationEligibilityId] [int] IDENTITY(1,1) NOT NULL, + [RefTransportationStatusTypeId] int NULL, + [RefTransportationStateAidQualificationTypeId] int NULL, + [RefTransportationPublicExpenseEligibilityTypeId] int NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_PersonTransportationEligibility] PRIMARY KEY CLUSTERED ( [PersonTransportationEligibilityId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[ELCourse] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[ELCourse]( - [ELCourseId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[OrganizationCalendarSessionRelationship] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[OrganizationCalendarSessionRelationship]( + [OrganizationCalendarSessionRelationshipId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationCalendarSessionId] int NOT NULL, + [RelatedOrganizationCalendarSessionId] int NOT NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_OrganizationCalendarSessionRelationship] PRIMARY KEY CLUSTERED ( [OrganizationCalendarSessionRelationshipId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[CourseRelationship] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[CourseRelationship]( + [CourseRelationshipId] [int] IDENTITY(1,1) NOT NULL, [CourseId] int NOT NULL, - [RefBlendedLearningModelTypeId] int NULL, - [RefSCEDCourseLevelId] int NULL, - [RefSCEDCourseSubjectAreaId] int NULL, - [RefSCEDCourseCodeId] int NULL, + [RelatedCourseId] int NOT NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_CourseRelationship] PRIMARY KEY CLUSTERED ( [CourseRelationshipId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[LearningResourceIdentifier] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[LearningResourceIdentifier]( + [LearningResourceIdentifierId] [int] IDENTITY(1,1) NOT NULL, + [LearningResourceId] int NOT NULL, + [LearningResourceIdentifier] nvarchar(40) NULL, + [RefLearningResourceIdentificationSystemId] int NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_LearningResourceIdentifier] PRIMARY KEY CLUSTERED ( [LearningResourceIdentifierId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[PersonMilitaryOccupationalSpecialties] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[PersonMilitaryOccupationalSpecialties]( + [PersonMilitaryOccupationalSpecialtiesId] [int] IDENTITY(1,1) NOT NULL, + [PersonMilitaryId] int NOT NULL, + [MilitaryOccupationalSpecialties] nvarchar(200) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, [RecordStatusId] int NULL, [DataCollectionId] int NULL, - CONSTRAINT [PK_ELCourse] PRIMARY KEY CLUSTERED ( [ELCourseId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_PersonMilitaryOccupationalSpecialties] PRIMARY KEY CLUSTERED ( [PersonMilitaryOccupationalSpecialtiesId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[ELOrganizationStudentResponsibility] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[ELOrganizationStudentResponsibility]( - [ELOrganizationStudentResponsibilityId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[PersonMilitaryExpertise] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[PersonMilitaryExpertise]( + [PersonMilitaryExpertiseId] [int] IDENTITY(1,1) NOT NULL, + [PersonMilitaryId] int NOT NULL, + [RefMilitaryExpertiseId] int NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_PersonMilitaryExpertise] PRIMARY KEY CLUSTERED ( [PersonMilitaryExpertiseId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[PersonMilitaryDuties] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[PersonMilitaryDuties]( + [PersonMilitaryDutiesId] [int] IDENTITY(1,1) NOT NULL, + [PersonMilitaryId] int NOT NULL, + [RefMilitaryDutiesId] int NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_PersonMilitaryDuties] PRIMARY KEY CLUSTERED ( [PersonMilitaryDutiesId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[PersonMilitaryServiceLocations] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[PersonMilitaryServiceLocations]( + [PersonMilitaryServiceLocationsId] [int] IDENTITY(1,1) NOT NULL, + [PersonMilitaryId] int NOT NULL, + [MilitaryServiceLocations] nvarchar(max) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_PersonMilitaryServiceLocations] PRIMARY KEY CLUSTERED ( [PersonMilitaryServiceLocationsId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[PersonMilitaryDeployment] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[PersonMilitaryDeployment]( + [PersonMilitaryDeploymentId] [int] IDENTITY(1,1) NOT NULL, + [PersonMilitaryId] int NOT NULL, + [RefMilitaryDeploymentStatusCodeId] int NULL, + [MilitaryDeploymentActivityCode] nvarchar(200) NULL, + [MilitaryDeploymentActivityName] nvarchar(400) NULL, + [MilitaryDeploymentDescription] nvarchar(200) NULL, + [MilitaryDeploymentOrderDescription] nvarchar(200) NULL, + [MilitaryDeploymentRequestedBy] nvarchar(100) NULL, + [MilitaryDeploymentStartDate] datetime NULL, + [MilitaryDeploymentEndDate] datetime NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_PersonMilitaryDeployment] PRIMARY KEY CLUSTERED ( [PersonMilitaryDeploymentId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[PersonMilitaryHonors] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[PersonMilitaryHonors]( + [PersonMilitaryHonorsId] [int] IDENTITY(1,1) NOT NULL, + [PersonMilitaryId] int NOT NULL, + [MilitaryHonors] nvarchar(40) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_PersonMilitaryHonors] PRIMARY KEY CLUSTERED ( [PersonMilitaryHonorsId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[PersonMilitaryCampaigns] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[PersonMilitaryCampaigns]( + [PersonMilitaryCampaignsId] [int] IDENTITY(1,1) NOT NULL, + [PersonMilitaryId] int NOT NULL, + [RefMilitaryCampaignsId] int NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_PersonMilitaryCampaigns] PRIMARY KEY CLUSTERED ( [PersonMilitaryCampaignsId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[StaffCompensationFundingSource] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[StaffCompensationFundingSource]( + [StaffCompensationFundingSourceId] [int] IDENTITY(1,1) NOT NULL, + [StaffCompensationId] int NOT NULL, + [FinancialAccountId] int NOT NULL, + [StaffCompensationFundingSourceAmount] decimal(9,2) NULL, + [StaffCompensationFundingSourcePercentage] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_StaffCompensationFundingSource] PRIMARY KEY CLUSTERED ( [StaffCompensationFundingSourceId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[OrganizationJurisdiction] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[OrganizationJurisdiction]( + [OrganizationJurisdictionId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationId] int NOT NULL, + [OrganizationJurisdictionSquareMiles] int NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_OrganizationJurisdiction] PRIMARY KEY CLUSTERED ( [OrganizationJurisdictionId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[CourseFundingSource] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[CourseFundingSource]( + [CourseFundingSourceId] [int] IDENTITY(1,1) NOT NULL, + [CourseId] int NOT NULL, + [FinancialAccountId] int NOT NULL, + [RefCourseFundingProgramAllowedId] int NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_CourseFundingSource] PRIMARY KEY CLUSTERED ( [CourseFundingSourceId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[K12StudentDropoutReason] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[K12StudentDropoutReason]( + [K12StudentDropoutReasonId] [int] IDENTITY(1,1) NOT NULL, [OrganizationPersonRoleId] int NOT NULL, - [RefK12ResponsibilityTypeId] int NULL, + [RefDropoutReasonTypeId] int NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, [RecordStatusId] int NULL, [DataCollectionId] int NULL, - CONSTRAINT [PK_ELOrganizationStudentResponsibility] PRIMARY KEY CLUSTERED ( [ELOrganizationStudentResponsibilityId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_K12StudentDropoutReason] PRIMARY KEY CLUSTERED ( [K12StudentDropoutReasonId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefAssessmentTypeAdministeredToEnglishLearners] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefAssessmentTypeAdministeredToEnglishLearners]( - [RefAssessmentTypeAdministeredToEnglishLearnersId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[K12StudentDropout] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[K12StudentDropout]( + [K12StudentDropoutId] [int] IDENTITY(1,1) NOT NULL, + [OrganizationPersonRoleId] int NOT NULL, + [RefStudentDropoutStatusId] int NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_K12StudentDropout] PRIMARY KEY CLUSTERED ( [K12StudentDropoutId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[JobIdentifier] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[JobIdentifier]( + [JobIdentifierId] [int] IDENTITY(1,1) NOT NULL, + [JobId] int NOT NULL, + [JobIdentifier] nvarchar(40) NULL, + [RefJobIdentificationSystemId] int NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_JobIdentifier] PRIMARY KEY CLUSTERED ( [JobIdentifierId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[Job] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[Job]( + [JobId] [int] IDENTITY(1,1) NOT NULL, + CONSTRAINT [PK_Job] PRIMARY KEY CLUSTERED ( [JobId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[JobDetail] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[JobDetail]( + [JobDetailId] [int] IDENTITY(1,1) NOT NULL, + [JobId] int NOT NULL, + [RefCodingSystemOrganizationTypeId] int NULL, + [RefEducationJobTypeId] int NULL, + [RefK12StaffClassificationId] int NULL, + [RefLocalJobCategoryId] int NULL, + [RefLocalJobFunctionId] int NULL, + [RefStandardOccupationalClassificationId] int NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_JobDetail] PRIMARY KEY CLUSTERED ( [JobDetailId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[OrganizationJob] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[OrganizationJob]( + [OrganizationJobId] [int] IDENTITY(1,1) NOT NULL, + [JobId] int NOT NULL, + [OrganizationId] int NOT NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_OrganizationJob] PRIMARY KEY CLUSTERED ( [OrganizationJobId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[JobPosition] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[JobPosition]( + [JobPositionId] [int] IDENTITY(1,1) NOT NULL, + [JobId] int NOT NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_JobPosition] PRIMARY KEY CLUSTERED ( [JobPositionId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[JobPositionIdentifier] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[JobPositionIdentifier]( + [JobPositionIdentifierId] [int] IDENTITY(1,1) NOT NULL, + [JobPositionIdentifier] nvarchar(40) NULL, + [JobPositionId] int NOT NULL, + [RefJobPositionIdentificationSystemId] int NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_JobPositionIdentifier] PRIMARY KEY CLUSTERED ( [JobPositionIdentifierId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[JobPositionDetail] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[JobPositionDetail]( + [JobPositionDetailId] [int] IDENTITY(1,1) NOT NULL, + [JobPositionId] int NOT NULL, + [JobPositionExpectedStartDate] datetime NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_JobPositionDetail] PRIMARY KEY CLUSTERED ( [JobPositionDetailId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[JobPositionStatus] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[JobPositionStatus]( + [JobPositionStatusId] [int] IDENTITY(1,1) NOT NULL, + [JobPositionId] int NOT NULL, + [RefJobPositionStatusCancelledReasonId] int NULL, + [RefJobPositionStatusId] int NULL, + [JobPositionStatusDate] datetime NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_JobPositionStatus] PRIMARY KEY CLUSTERED ( [JobPositionStatusId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[StaffEmploymentJobPosition] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[StaffEmploymentJobPosition]( + [StaffEmploymentJobPositionId] [int] IDENTITY(1,1) NOT NULL, + [JobPositionId] int NOT NULL, + [StaffEmploymentId] int NOT NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_StaffEmploymentJobPosition] PRIMARY KEY CLUSTERED ( [StaffEmploymentJobPositionId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[JobK12StaffAssignment] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[JobK12StaffAssignment]( + [JobK12StaffAssignmentId] [int] IDENTITY(1,1) NOT NULL, + [JobId] int NOT NULL, + [K12StaffAssignmentId] int NOT NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_JobK12StaffAssignment] PRIMARY KEY CLUSTERED ( [JobK12StaffAssignmentId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[JobCredential] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[JobCredential]( + [JobCredentialId] [int] IDENTITY(1,1) NOT NULL, + [JobId] int NOT NULL, + [CredentialDefinitionId] int NOT NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_JobCredential] PRIMARY KEY CLUSTERED ( [JobCredentialId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[JobCompetency] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[JobCompetency]( + [JobCompetencyId] [int] IDENTITY(1,1) NOT NULL, + [CompetencyDefinitionId] int NOT NULL, + [JobId] int NOT NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_JobCompetency] PRIMARY KEY CLUSTERED ( [JobCompetencyId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[CredentialAwardRelationship] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[CredentialAwardRelationship]( + [CredentialAwardRelationshipId] [int] IDENTITY(1,1) NOT NULL, + [RefCredentialAwardRelationshipId] int NULL, + [RelatedCredentialAwardId] int NOT NULL, + [CredentialAwardId] int NOT NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_CredentialAwardRelationship] PRIMARY KEY CLUSTERED ( [CredentialAwardRelationshipId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[CredentialDefGradeLevel] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[CredentialDefGradeLevel]( + [CredentialDefGradeLevelId] [int] IDENTITY(1,1) NOT NULL, + [RefGradeLevelId] int NULL, + [RefLowGradeLevelId] int NULL, + [CredentialDefinitionId] int NOT NULL, + [RefHighGradeLevelId] int NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_CredentialDefGradeLevel] PRIMARY KEY CLUSTERED ( [CredentialDefGradeLevelId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[IndividualizedProgramAccessibleFormat] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[IndividualizedProgramAccessibleFormat]( + [IndividualizedProgramAccessibleFormatId] [int] IDENTITY(1,1) NOT NULL, + [RefAccessibleFormatIssuedIndicatorId] int NULL, + [RefAccessibleFormatRequiredIndicatorId] int NULL, + [RefAccessibleFormatTypeId] int NULL, + [AccessibleFormatIssuedBeginDate] datetime NULL, + [AccessibleFormatIssuedEndDate] datetime NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_IndividualizedProgramAccessibleFormat] PRIMARY KEY CLUSTERED ( [IndividualizedProgramAccessibleFormatId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[LearningResourceIssued] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[LearningResourceIssued]( + [LearningResourceIssuedId] [int] IDENTITY(1,1) NOT NULL, + [LearningResourceId] int NOT NULL, + [IssuedToPersonId] int NULL, + [LearningResourceIssuedDate] datetime NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_LearningResourceIssued] PRIMARY KEY CLUSTERED ( [LearningResourceIssuedId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[LearningResourceOrder] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[LearningResourceOrder]( + [LearningResourceOrderId] [int] IDENTITY(1,1) NOT NULL, + [LearningResourceId] int NOT NULL, + [LearningResourceOrderedDate] datetime NULL, + [LearningResourceReceivedDate] datetime NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_LearningResourceOrder] PRIMARY KEY CLUSTERED ( [LearningResourceOrderId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[K12LeaPolicy] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[K12LeaPolicy]( + [K12LeaPolicyId] [int] IDENTITY(1,1) NOT NULL, + [K12LeaId] int NOT NULL, + [RefLEAGFSAAssuranceofComplianceIndicatorId] int NULL, + [RefLEAGFSAPolicyAssuranceIndicatorId] int NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + [RecordStatusId] int NULL, + [DataCollectionId] int NULL, + CONSTRAINT [PK_K12LeaPolicy] PRIMARY KEY CLUSTERED ( [K12LeaPolicyId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefAccessibleFormatIssuedIndicator] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefAccessibleFormatIssuedIndicator]( + [RefAccessibleFormatIssuedIndicatorId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefAssessmentTypeAdministeredToEnglishLearners] PRIMARY KEY CLUSTERED ( [RefAssessmentTypeAdministeredToEnglishLearnersId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefAccessibleFormatIssuedIndicator] PRIMARY KEY CLUSTERED ( [RefAccessibleFormatIssuedIndicatorId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefEdFactsCertificationStatus] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefEdFactsCertificationStatus]( - [RefEdFactsCertificationStatusId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[RefAccessibleFormatIssuedIndicator] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefJobPositionIdentificationSystem]( + [RefJobPositionIdentificationSystemId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefEdFactsCertificationStatus] PRIMARY KEY CLUSTERED ( [RefEdFactsCertificationStatusId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; -GO -/****** Object: Table [dbo].[OrganizationEnrollmentCapacity] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[OrganizationEnrollmentCapacity]( - [OrganizationEnrollmentCapacityId] [int] IDENTITY(1,1) NOT NULL, - [RefAdjustedCapacityReasonTypeId] int NULL, - [OrganizationCalendarSessionId] int NULL, - [EarlyLearningAge2AndOlderCapacity] int NULL, - [EarlyLearningAgeUnder2Capacity] int NULL, - [EnrollmentCapacity] int NULL, - [AdjustedCapacity] int NULL, + CONSTRAINT [PK_RefJobPositionIdentificationSystem] PRIMARY KEY CLUSTERED ( [RefJobPositionIdentificationSystemId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefAccessibleFormatRequiredIndicator] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefAccessibleFormatRequiredIndicator]( + [RefAccessibleFormatRequiredIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - [RecordStatusId] int NULL, - [DataCollectionId] int NULL, - CONSTRAINT [PK_OrganizationEnrollmentCapacity] PRIMARY KEY CLUSTERED ( [OrganizationEnrollmentCapacityId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefAccessibleFormatRequiredIndicator] PRIMARY KEY CLUSTERED ( [RefAccessibleFormatRequiredIndicatorId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefFederalProgramCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFederalProgramCode]( - [RefFederalProgramCodeId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[RefAccessibleFormatType] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefAccessibleFormatType]( + [RefAccessibleFormatTypeId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFederalProgramCode] PRIMARY KEY CLUSTERED ( [RefFederalProgramCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefAccessibleFormatType] PRIMARY KEY CLUSTERED ( [RefAccessibleFormatTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefFederalProgramSubgrantCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFederalProgramSubgrantCode]( - [RefFederalProgramSubgrantCodeId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[RefAdjustedExitOrWithdrawalType] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefAdjustedExitOrWithdrawalType]( + [RefAdjustedExitOrWithdrawalTypeId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFederalProgramSubgrantCode] PRIMARY KEY CLUSTERED ( [RefFederalProgramSubgrantCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefAdjustedExitOrWithdrawalType] PRIMARY KEY CLUSTERED ( [RefAdjustedExitOrWithdrawalTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefFinancialAccountCodingSystemOrganizationType] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialAccountCodingSystemOrganizationType]( - [RefFinancialAccountCodingSystemOrganizationTypeId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[RefBoardMemberPositionType] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefBoardMemberPositionType]( + [RefBoardMemberPositionTypeId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialAccountCodingSystemOrganizationType] PRIMARY KEY CLUSTERED ( [RefFinancialAccountCodingSystemOrganizationTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefBoardMemberPositionType] PRIMARY KEY CLUSTERED ( [RefBoardMemberPositionTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefFinancialAccountLocalBalanceSheetCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialAccountLocalBalanceSheetCode]( - [RefFinancialAccountLocalBalanceSheetCodeId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[RefBoardMembershipType] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefBoardMembershipType]( + [RefBoardMembershipTypeId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, - [RefFinancialAccountCodingSystemOrganizationTypeId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialAccountLocalBalanceSheetCode] PRIMARY KEY CLUSTERED ( [RefFinancialAccountLocalBalanceSheetCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefBoardMembershipType] PRIMARY KEY CLUSTERED ( [RefBoardMembershipTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefFinancialAccountLocalFundClassification] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialAccountLocalFundClassification]( - [RefFinancialAccountLocalFundClassificationId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[RefChronicStudentAbsenteeismIndicator] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefChronicStudentAbsenteeismIndicator]( + [RefChronicStudentAbsenteeismIndicatorId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, - [RefFinancialAccountCodingSystemOrganizationTypeId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialAccountLocalFundClassification] PRIMARY KEY CLUSTERED ( [RefFinancialAccountLocalFundClassificationId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefChronicStudentAbsenteeismIndicator] PRIMARY KEY CLUSTERED ( [RefChronicStudentAbsenteeismIndicatorId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefFinancialAccountLocalProgramCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialAccountLocalProgramCode]( - [RefFinancialAccountLocalProgramCodeId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[RefCodingSystemOrganizationType] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefCodingSystemOrganizationType]( + [RefCodingSystemOrganizationTypeId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, - [RefFinancialAccountCodingSystemOrganizationTypeId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialAccountLocalProgramCode] PRIMARY KEY CLUSTERED ( [RefFinancialAccountLocalProgramCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefCodingSystemOrganizationType] PRIMARY KEY CLUSTERED ( [RefCodingSystemOrganizationTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefFinancialAccountLocalRevenueCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialAccountLocalRevenueCode]( - [RefFinancialAccountLocalRevenueCodeId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[RefCourseFundingProgramAllowed] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefCourseFundingProgramAllowed]( + [RefCourseFundingProgramAllowedId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, - [RefFinancialAccountCodingSystemOrganizationTypeId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialAccountLocalRevenueCode] PRIMARY KEY CLUSTERED ( [RefFinancialAccountLocalRevenueCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefCourseFundingProgramAllowed] PRIMARY KEY CLUSTERED ( [RefCourseFundingProgramAllowedId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefFinancialExpenditureLocalFunctionCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialExpenditureLocalFunctionCode]( - [RefFinancialExpenditureLocalFunctionCodeId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[RefCredentialAwardRelationship] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefCredentialAwardRelationship]( + [RefCredentialAwardRelationshipId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, - [RefFinancialAccountCodingSystemOrganizationTypeId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialExpenditureLocalFunctionCode] PRIMARY KEY CLUSTERED ( [RefFinancialExpenditureLocalFunctionCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefCredentialAwardRelationship] PRIMARY KEY CLUSTERED ( [RefCredentialAwardRelationshipId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode]( - [RefFinancialExpenditureLocalLevelOfInstructionCodeId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[RefDEIPolicyIndicator] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefDEIPolicyIndicator]( + [RefDEIPolicyIndicatorId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, - [RefFinancialAccountCodingSystemOrganizationTypeId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialExpenditureLocalLevelOfInstructionCode] PRIMARY KEY CLUSTERED ( [RefFinancialExpenditureLocalLevelOfInstructionCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefDEIPolicyIndicator] PRIMARY KEY CLUSTERED ( [RefDEIPolicyIndicatorId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefFinancialExpenditureLocalObjectCode] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefFinancialExpenditureLocalObjectCode]( - [RefFinancialExpenditureLocalObjectCodeId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[RefDelinquentProgramType] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefDelinquentProgramType]( + [RefDelinquentProgramTypeId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, - [RefFinancialAccountCodingSystemOrganizationTypeId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefFinancialExpenditureLocalObjectCode] PRIMARY KEY CLUSTERED ( [RefFinancialExpenditureLocalObjectCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefDelinquentProgramType] PRIMARY KEY CLUSTERED ( [RefDelinquentProgramTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[OrganizationProjectBasedLearning] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[OrganizationProjectBasedLearning]( - [OrganizationProjectBasedLearningId] [int] IDENTITY(1,1) NOT NULL, - [OrganizationId] int NOT NULL, - [RefProjectBasedLearningTypeId] int NULL, - [ProjectBasedLearningIndicator] bit NULL, +/****** Object: Table [dbo].[RefDropoutReasonType] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefDropoutReasonType]( + [RefDropoutReasonTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - [RecordStatusId] int NULL, - [DataCollectionId] int NULL, - CONSTRAINT [PK_OrganizationProjectBasedLearning] PRIMARY KEY CLUSTERED ( [OrganizationProjectBasedLearningId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefDropoutReasonType] PRIMARY KEY CLUSTERED ( [RefDropoutReasonTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefEducationJobType] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefEducationJobType]( + [RefEducationJobTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefEducationJobType] PRIMARY KEY CLUSTERED ( [RefEducationJobTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefFacilityJointUseIndicator] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefFacilityJointUseIndicator]( + [RefFacilityJointUseIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefFacilityJointUseIndicator] PRIMARY KEY CLUSTERED ( [RefFacilityJointUseIndicatorId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefFinancialAccountGASBRevenueClassification] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefFinancialAccountGASBRevenueClassification]( + [RefFinancialAccountGASBRevenueClassificationId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefFinancialAccountGASBRevenueClassification] PRIMARY KEY CLUSTERED ( [RefFinancialAccountGASBRevenueClassificationId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefSpecialEducationTeacherQualificationStatus] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefSpecialEducationTeacherQualificationStatus]( - [RefSpecialEducationTeacherQualificationStatusId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[RefFinancialAccountLocalGASBRevenueClassification] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefFinancialAccountLocalGASBRevenueClassification]( + [RefFinancialAccountLocalGASBRevenueClassificationId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefSpecialEducationTeacherQualificationStatus] PRIMARY KEY CLUSTERED ( [RefSpecialEducationTeacherQualificationStatusId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefFinancialAccountLocalGASBRevenueClassification] PRIMARY KEY CLUSTERED ( [RefFinancialAccountLocalGASBRevenueClassificationId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefStudentSupportServiceAvailabilityType] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefStudentSupportServiceAvailabilityType]( - [RefStudentSupportServiceAvailabilityTypeId] [int] IDENTITY(1,1) NOT NULL, +/****** Object: Table [dbo].[RefHighQualityInstructionalMaterialIndicator] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefHighQualityInstructionalMaterialIndicator]( + [RefHighQualityInstructionalMaterialIndicatorId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, - [Code] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefStudentSupportServiceAvailabilityType] PRIMARY KEY CLUSTERED ( [RefStudentSupportServiceAvailabilityTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefHighQualityInstructionalMaterialIndicator] PRIMARY KEY CLUSTERED ( [RefHighQualityInstructionalMaterialIndicatorId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefAdjustedCapacityReasonType] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefAdjustedCapacityReasonType]( - [RefAdjustedCapacityReasonTypeId] [int] IDENTITY(1,1) NOT NULL, - [Code] nvarchar(150) NOT NULL, +/****** Object: Table [dbo].[RefIncidentActivity] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefIncidentActivity]( + [RefIncidentActivityId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefAdjustedCapacityReasonType] PRIMARY KEY CLUSTERED ( [RefAdjustedCapacityReasonTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefIncidentActivity] PRIMARY KEY CLUSTERED ( [RefIncidentActivityId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -/****** Object: Table [dbo].[RefProjectBasedLearningType] Script Date: 5/26/2022 9:04:10 AM ******/ - CREATE TABLE [dbo].[RefProjectBasedLearningType]( - [RefProjectBasedLearningTypeId] [int] IDENTITY(1,1) NOT NULL, - [Code] nvarchar(150) NOT NULL, +/****** Object: Table [dbo].[RefJobIdentificationSystem] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefJobIdentificationSystem]( + [RefJobIdentificationSystemId] [int] IDENTITY(1,1) NOT NULL, [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, [Definition] nvarchar(4000) NULL, [RefJurisdictionId] int NULL, [SortOrder] decimal(5,2) NULL, [RecordStartDateTime] datetime NULL, [RecordEndDateTime] datetime NULL, - CONSTRAINT [PK_RefProjectBasedLearningType] PRIMARY KEY CLUSTERED ( [RefProjectBasedLearningTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; + CONSTRAINT [PK_RefJobIdentificationSystem] PRIMARY KEY CLUSTERED ( [RefJobIdentificationSystemId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO +/****** Object: Table [dbo].[RefJobPositionStatus] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefJobPositionStatus]( + [RefJobPositionStatusId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefJobPositionStatus] PRIMARY KEY CLUSTERED ( [RefJobPositionStatusId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefJobPositionStatusCancelledReason] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefJobPositionStatusCancelledReason]( + [RefJobPositionStatusCancelledReasonId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefJobPositionStatusCancelledReason] PRIMARY KEY CLUSTERED ( [RefJobPositionStatusCancelledReasonId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefLEAGFSAAssuranceofComplianceIndicator] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefLEAGFSAAssuranceofComplianceIndicator]( + [RefLEAGFSAAssuranceofComplianceIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefLEAGFSAAssuranceofComplianceIndicator] PRIMARY KEY CLUSTERED ( [RefLEAGFSAAssuranceofComplianceIndicatorId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefLEAGFSAPolicyAssuranceIndicator] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefLEAGFSAPolicyAssuranceIndicator]( + [RefLEAGFSAPolicyAssuranceIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefLEAGFSAPolicyAssuranceIndicator] PRIMARY KEY CLUSTERED ( [RefLEAGFSAPolicyAssuranceIndicatorId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefLearningResourceIdentificationSystem] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefLearningResourceIdentificationSystem]( + [RefLearningResourceIdentificationSystemId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefLearningResourceIdentificationSystem] PRIMARY KEY CLUSTERED ( [RefLearningResourceIdentificationSystemId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefLearningResourceStatus] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefLearningResourceStatus]( + [RefLearningResourceStatusId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefLearningResourceStatus] PRIMARY KEY CLUSTERED ( [RefLearningResourceStatusId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefLocalJobCategory] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefLocalJobCategory]( + [RefLocalJobCategoryId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefLocalJobCategory] PRIMARY KEY CLUSTERED ( [RefLocalJobCategoryId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefLocalJobFunction] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefLocalJobFunction]( + [RefLocalJobFunctionId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefLocalJobFunction] PRIMARY KEY CLUSTERED ( [RefLocalJobFunctionId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefMilitaryCampaigns] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefMilitaryCampaigns]( + [RefMilitaryCampaignsId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefMilitaryCampaigns] PRIMARY KEY CLUSTERED ( [RefMilitaryCampaignsId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefMilitaryDeploymentStatusCode] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefMilitaryDeploymentStatusCode]( + [RefMilitaryDeploymentStatusCodeId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefMilitaryDeploymentStatusCode] PRIMARY KEY CLUSTERED ( [RefMilitaryDeploymentStatusCodeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefMilitaryDischargeCategory] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefMilitaryDischargeCategory]( + [RefMilitaryDischargeCategoryId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefMilitaryDischargeCategory] PRIMARY KEY CLUSTERED ( [RefMilitaryDischargeCategoryId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefMilitaryDuties] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefMilitaryDuties]( + [RefMilitaryDutiesId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefMilitaryDuties] PRIMARY KEY CLUSTERED ( [RefMilitaryDutiesId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefMilitaryExpertise] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefMilitaryExpertise]( + [RefMilitaryExpertiseId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefMilitaryExpertise] PRIMARY KEY CLUSTERED ( [RefMilitaryExpertiseId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefMostPrevalentLevelOfInstitution] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefMostPrevalentLevelOfInstitution]( + [RefMostPrevalentLevelOfInstitutionId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefMostPrevalentLevelOfInstitution] PRIMARY KEY CLUSTERED ( [RefMostPrevalentLevelOfInstitutionId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefNationalGuardIndicator] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefNationalGuardIndicator]( + [RefNationalGuardIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefNationalGuardIndicator] PRIMARY KEY CLUSTERED ( [RefNationalGuardIndicatorId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefPartBPostsecondaryOutcomesIndicator] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefPartBPostsecondaryOutcomesIndicator]( + [RefPartBPostsecondaryOutcomesIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefPartBPostsecondaryOutcomesIndicator] PRIMARY KEY CLUSTERED ( [RefPartBPostsecondaryOutcomesIndicatorId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefPerkinsPostProgramPlacementIndicator] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefPerkinsPostProgramPlacementIndicator]( + [RefPerkinsPostProgramPlacementIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefPerkinsPostProgramPlacementIndicator] PRIMARY KEY CLUSTERED ( [RefPerkinsPostProgramPlacementIndicatorId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefProjectedHighSchoolDiplomaType] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefProjectedHighSchoolDiplomaType]( + [RefProjectedHighSchoolDiplomaTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefProjectedHighSchoolDiplomaType] PRIMARY KEY CLUSTERED ( [RefProjectedHighSchoolDiplomaTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefStandardOccupationalClassification] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefStandardOccupationalClassification]( + [RefStandardOccupationalClassificationId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefStandardOccupationalClassification] PRIMARY KEY CLUSTERED ( [RefStandardOccupationalClassificationId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefStudentDropoutStatus] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefStudentDropoutStatus]( + [RefStudentDropoutStatusId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefStudentDropoutStatus] PRIMARY KEY CLUSTERED ( [RefStudentDropoutStatusId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefTeenParentIndicator] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefTeenParentIndicator]( + [RefTeenParentIndicatorId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefTeenParentIndicator] PRIMARY KEY CLUSTERED ( [RefTeenParentIndicatorId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefTransportationPublicExpenseEligibilityType] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefTransportationPublicExpenseEligibilityType]( + [RefTransportationPublicExpenseEligibilityTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefTransportationPublicExpenseEligibilityType] PRIMARY KEY CLUSTERED ( [RefTransportationPublicExpenseEligibilityTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefTransportationStateAidQualificationType] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefTransportationStateAidQualificationType]( + [RefTransportationStateAidQualificationTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefTransportationStateAidQualificationType] PRIMARY KEY CLUSTERED ( [RefTransportationStateAidQualificationTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO +/****** Object: Table [dbo].[RefTransportationStatusType] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefTransportationStatusType]( + [RefTransportationStatusTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefTransportationStatusType] PRIMARY KEY CLUSTERED ( [RefTransportationStatusTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; +GO + --------------------------------------------------- -----Sction 2 When a column is moved -------------- --------------------------------------------------- +---------------------------------------------------------------- +----Section 2 When a column is moved --------------- +---------------------------------------------------------------- --No updates this time where data will be moved ----------------------------------------------------------- +------------------------------------------------------------------------- ----Section 3 Drop/Create/Alter Existing Table Columns---- ---------------------------------------------------------- +------------------------------------------------------------------------- +ALTER TABLE FacilityJointUse ADD RefFacilityJointUseIndicatorId int NULL; +GO +ALTER TABLE FacilityJointUse ADD FacilityJointUseDescription nvarchar(300) NULL; +GO +ALTER TABLE StaffEmployment ADD RefStandardOccupationalClassificationId int NULL; +GO +ALTER TABLE OrganizationCalendarSession ADD InstructionalMinutesPerDay int NULL; +GO +ALTER TABLE OrganizationCalendarSession ADD LunchMinutesPerDay int NULL; +GO +ALTER TABLE OrganizationCalendarSession ADD RecessMinutesPerDay int NULL; +GO +ALTER TABLE OrganizationPolicy ADD RefDEIPolicyIndicatorId int NULL; +GO +ALTER TABLE K12StudentEnrollment ADD RefAdjustedExitOrWithdrawalTypeId int NULL; +GO +ALTER TABLE OrganizationCalendarSession ADD SessionSequenceNumber int NULL; +GO +ALTER TABLE RoleAttendance ADD RefChronicStudentAbsenteeismIndicatorId int NULL; +GO +ALTER TABLE Course ADD SequenceOfCourse nvarchar(10) NULL; +GO +ALTER TABLE Facility ADD TemperatureControlledBuildingArea nvarchar(100) NULL; +GO +ALTER TABLE PsInstitution ADD RefMostPrevalentLevelOfInstitutionId int NULL; +GO +ALTER TABLE K12StudentAcademicRecord ADD RefProjectedHighSchoolDiplomaTypeId int NULL; +GO +ALTER TABLE LearningResource ADD RefHighQualityInstructionalMaterialIndicatorId int NULL; +GO +ALTER TABLE PersonMilitary ADD MilitaryServiceNumber nvarchar(40) NULL; +GO +ALTER TABLE PersonMilitary ADD MilitaryInductionDate datetime NULL; +GO +ALTER TABLE PersonMilitary ADD MilitaryDischargeDate datetime NULL; +GO +ALTER TABLE PersonMilitary ADD MilitaryReleaseDate datetime NULL; +GO +ALTER TABLE PersonMilitary ADD RefMilitaryDischargeCategoryId int NULL; +GO +ALTER TABLE PersonMilitary ADD MilitaryInductionRank nvarchar(40) NULL; +GO +ALTER TABLE PersonMilitary ADD MilitaryDischargeRank nvarchar(40) NULL; +GO +ALTER TABLE PersonMilitary ADD MilitaryHighestRank nvarchar(40) NULL; +GO +ALTER TABLE PersonMilitary ADD MilitaryCurrentRank nvarchar(40) NULL; +GO +ALTER TABLE PersonMilitary ADD RefNationalGuardIndicatorId int NULL; +GO +ALTER TABLE StaffExperience ADD YearsOfTotalExperience int NULL; +GO +ALTER TABLE StaffExperience ADD YearsOfPriorProfessionalExperience int NULL; +GO +ALTER TABLE PersonFamily ADD RefTeenParentIndicatorId int NULL; +GO +ALTER TABLE StaffCompensation ADD StaffCompensationAnnualSupplementDescription nvarchar(300) NULL; +GO +ALTER TABLE FinancialAccount ADD RefFinancialAccountGASBRevenueClassificationId int NULL; +GO +ALTER TABLE FinancialAccountLocal ADD RefFinancialAccountLocalGASBRevenueClassificationId int NULL; +GO +ALTER TABLE ProgramParticipationNeglected ADD RefDelinquentProgramTypeId int NULL; +GO +ALTER TABLE ProgramParticipationSpecialEducation ADD RefPartBPostsecondaryOutcomesIndicatorId int NULL; +GO +ALTER TABLE ProgramParticipationCte ADD RefPerkinsPostProgramPlacementIndicatorId int NULL; +GO +ALTER TABLE LearningResource ADD RefAccessibleFormatTypeId int NULL; +GO +ALTER TABLE RoleAttendanceEvent ADD AttendanceEventDurationDay decimal(4,2) NULL; +GO +ALTER TABLE RoleAttendanceEvent ADD AttendanceEventDurationMinutes decimal(6,2) NULL; +GO +ALTER TABLE RoleAttendanceEvent ADD AttendanceEventDurationHours decimal(4,2) NULL; +GO +ALTER TABLE TeacherEducationCredentialExam ADD AssessmentResultId int NULL; +GO + +----Altering datatype - increasing size---- +----WARNING!! - We are altering the data size to increase the capacity, this is likely not an issue to any existing data or processes---- + +----Dropping Foreign Key Constraints----- + +ALTER TABLE PersonMilitary DROP CONSTRAINT FK_PersonMilitary_RefMilitaryActiveStudentIndicator; +GO +ALTER TABLE PersonMilitary DROP CONSTRAINT FK_PersonMilitary_RefMilitaryVeteranStudentIndicator; +GO +ALTER TABLE ProgramParticipationNeglected DROP CONSTRAINT FK_ProgramParticipationNeglected_RefNeglectedProgramType; +GO -PRINT N'--Drop and Create or Alter existing table statements' +----Dropping Columns---- +----WARNING!! This will remove the columns entirely and will not retain the data---- + +----Dropping Reference Tables---- +----WARNING!! This will remove the tables entirely and will not retain the data---- + +----Renaming columns---- +----WARNING!! This is renaming columns, it will retain the data and the foreign key references but any other process for ingesting or using data that references these columns will need to be edited---- +EXEC sp_rename 'PersonMilitary.RefMilitaryActiveStudentIndicatorId', 'RefActiveMilitaryStatusIndicatorId', 'column'; +GO +EXEC sp_rename 'RefMilitaryActiveStudentIndicator.RefMilitaryActiveStudentIndicatorId', 'RefActiveMilitaryStatusIndicatorId', 'column'; +GO +EXEC sp_rename 'PersonMilitary.RefMilitaryVeteranStudentIndicatorId', 'RefMilitaryVeteranStatusIndicatorId', 'column'; +GO +EXEC sp_rename 'RefMilitaryVeteranStudentIndicator.RefMilitaryVeteranStudentIndicatorId', 'RefMilitaryVeteranStatusIndicatorId', 'column'; +GO +EXEC sp_rename 'ProgramParticipationNeglected.RefNeglectedProgramTypeId', 'RefNeglectedOrDelinquentProgramTypeId', 'column'; +GO +EXEC sp_rename 'RefNeglectedProgramType.RefNeglectedProgramTypeId', 'RefNeglectedOrDelinquentProgramTypeId', 'column'; +GO +----Renaming tables---- +----WARNING!! This is renaming tables, it will retain the data and the foreign key references but any other process for ingesting or using data that references these tables will need to be edited---- -ALTER TABLE FinancialAccount ADD RefFederalProgramCodeId int NULL; +EXEC sp_rename 'RefNeglectedProgramType', 'RefNeglectedOrDelinquentProgramType'; GO -ALTER TABLE CteCourse ADD RefSCEDCourseCodeId int NULL; +EXEC sp_rename 'RefMilitaryActiveStudentIndicator', 'RefActiveMilitaryStatusIndicator'; GO -ALTER TABLE K12Course ADD RefSCEDCourseCodeId int NULL; +EXEC sp_rename 'RefMilitaryVeteranStudentIndicator', 'RefMilitaryVeteranStatusIndicator'; GO -ALTER TABLE ELStaffAssignment ADD RefClassroomPositionTypeId int NULL; + +--ALTER TABLE RefNeglectedOrDelinquentProgramType DROP CONSTRAINT FK_RefNeglectedOrDelinquentProgramType_RefNeglectedOrDelinquentProgramType; +--GO +ALTER TABLE RefNeglectedOrDelinquentProgramType DROP CONSTRAINT PK_RefNeglectedProgramType; GO -ALTER TABLE ELStaffAssignment ADD ItinerantTeacher bit NULL; + +--ALTER TABLE RefNeglectedOrDelinquentProgramType ADD CONSTRAINT [PK_RefNeglectedOrDelinquentProgramType] PRIMARY KEY CLUSTERED ([PK_RefNeglectedOrDelinquentProgramTypeId] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]; +--GO + +/****** Object: Table [dbo].[RefNeglectedProgramType] Script Date: 3/10/2024 9:04:10 AM ******/ + CREATE TABLE [dbo].[RefNeglectedProgramType]( + [RefNeglectedProgramTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] nvarchar(150) NOT NULL, + [Code] nvarchar(50) NULL, + [Definition] nvarchar(4000) NULL, + [RefJurisdictionId] int NULL, + [SortOrder] decimal(5,2) NULL, + [RecordStartDateTime] datetime NULL, + [RecordEndDateTime] datetime NULL, + CONSTRAINT [PK_RefNeglectedProgramType] PRIMARY KEY CLUSTERED ( [RefNeglectedProgramTypeId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]; GO -ALTER TABLE ELStaffAssignment ADD RefK12StaffClassificationId int NULL; + +ALTER TABLE ProgramParticipationNeglected ADD RefNeglectedProgramTypeId int NULL; GO -ALTER TABLE ELStaffAssignment ADD RefProfessionalEducationJobClassificationId int NULL; + +ALTER TABLE [dbo].[LearningResourceStatus] WITH CHECK ADD CONSTRAINT [FK_LearningResourceStatus_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE ELStaffAssignment ADD RefSpecialEducationAgeGroupTaughtId int NULL; +ALTER TABLE [dbo].[LearningResourceStatus] CHECK CONSTRAINT [FK_LearningResourceStatus_DataCollection]; GO -ALTER TABLE ELStaffAssignment ADD SpecialEducationParaprofessional bit NULL; + +ALTER TABLE [dbo].[LearningResourceIdentifier] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIdentifier_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE ELStaffAssignment ADD SpecialEducationRelatedServicesPersonnel bit NULL; +ALTER TABLE [dbo].[LearningResourceIdentifier] CHECK CONSTRAINT [FK_LearningResourceIdentifier_RecordStatus]; GO -ALTER TABLE ELStaffAssignment ADD RefSpecialEducationStaffCategoryId int NULL; + +ALTER TABLE [dbo].[LearningResourceStatus] WITH CHECK ADD CONSTRAINT [FK_LearningResourceStatus_RefLearningResourceStatus] FOREIGN KEY([RefLearningResourceStatusId]) +REFERENCES [dbo].[RefLearningResourceStatus] ([RefLearningResourceStatusId]); GO -ALTER TABLE ELStaffAssignment ADD SpecialEducationTeacher bit NULL; +ALTER TABLE [dbo].[LearningResourceStatus] CHECK CONSTRAINT [FK_LearningResourceStatus_RefLearningResourceStatus]; GO -ALTER TABLE ELStaffAssignment ADD FullTimeEquivalency decimal(5,4) NULL; + +ALTER TABLE [dbo].[LearningResource] WITH CHECK ADD CONSTRAINT [FK_LearningResource_RefHighQualityInstructionalMaterialIndicator] FOREIGN KEY([RefHighQualityInstructionalMaterialIndicatorId]) +REFERENCES [dbo].[RefHighQualityInstructionalMaterialIndicator] ([RefHighQualityInstructionalMaterialIndicatorId]); GO -ALTER TABLE ELStaffAssignment ADD ContributionPercentage decimal(5,2) NULL; +ALTER TABLE [dbo].[LearningResource] CHECK CONSTRAINT [FK_LearningResource_RefHighQualityInstructionalMaterialIndicator]; GO -ALTER TABLE ELStaffAssignment ADD RefTeachingAssignmentRoleId int NULL; + +ALTER TABLE [dbo].[PersonMilitaryOccupationalSpecialties] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryOccupationalSpecialties_PersonMilitary] FOREIGN KEY([PersonMilitaryId]) +REFERENCES [dbo].[PersonMilitary] ([PersonMilitaryId]); GO -ALTER TABLE ELStaffAssignment ADD RefTitleIProgramStaffCategoryId int NULL; +ALTER TABLE [dbo].[PersonMilitaryOccupationalSpecialties] CHECK CONSTRAINT [FK_PersonMilitaryOccupationalSpecialties_PersonMilitary]; GO -ALTER TABLE ELOrganizationFunds ADD RefAdministrativeFundingControlId int NULL; + +ALTER TABLE [dbo].[PersonMilitaryOccupationalSpecialties] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryOccupationalSpecialties_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE ELStaffEmployment ADD AnnualBaseContractualSalary decimal(9,2) NULL; +ALTER TABLE [dbo].[PersonMilitaryOccupationalSpecialties] CHECK CONSTRAINT [FK_PersonMilitaryOccupationalSpecialties_DataCollection]; GO -ALTER TABLE Assessment ADD RefAssessmentTypeAdministeredToEnglishLearnersId int NULL; + +ALTER TABLE [dbo].[PersonMilitaryOccupationalSpecialties] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryOccupationalSpecialties_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE ELStaffEmployment ADD ContractDaysOfServicePerYear decimal(5,2) NULL; +ALTER TABLE [dbo].[PersonMilitaryOccupationalSpecialties] CHECK CONSTRAINT [FK_PersonMilitaryOccupationalSpecialties_RecordStatus]; GO -ALTER TABLE ELStaffEmployment ADD RefEmploymentContractTypeId int NULL; + +ALTER TABLE [dbo].[PersonMilitaryExpertise] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryExpertise_RefMilitaryExpertise] FOREIGN KEY([RefMilitaryExpertiseId]) +REFERENCES [dbo].[RefMilitaryExpertise] ([RefMilitaryExpertiseId]); GO -ALTER TABLE ELOrganization ADD RefControlOfInstitutionId int NULL; +ALTER TABLE [dbo].[PersonMilitaryExpertise] CHECK CONSTRAINT [FK_PersonMilitaryExpertise_RefMilitaryExpertise]; GO -ALTER TABLE Course ADD CourseLevelApprovalIndicator bit NULL; + +ALTER TABLE [dbo].[PersonMilitaryExpertise] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryExpertise_PersonMilitary] FOREIGN KEY([PersonMilitaryId]) +REFERENCES [dbo].[PersonMilitary] ([PersonMilitaryId]); GO -ALTER TABLE Course ADD RefCourseLevelTypeId int NULL; +ALTER TABLE [dbo].[PersonMilitaryExpertise] CHECK CONSTRAINT [FK_PersonMilitaryExpertise_PersonMilitary]; GO -ALTER TABLE K12StaffAssignment ADD RefEdFactsCertificationStatusId int NULL; + +ALTER TABLE [dbo].[PersonMilitaryExpertise] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryExpertise_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE FacilityUtilization ADD EnrollmentCapacity int NULL; +ALTER TABLE [dbo].[PersonMilitaryExpertise] CHECK CONSTRAINT [FK_PersonMilitaryExpertise_DataCollection]; GO -ALTER TABLE ELEnrollment ADD RefExitOrWithdrawalStatusId int NULL; + +ALTER TABLE [dbo].[PersonMilitaryExpertise] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryExpertise_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE FinancialAccount ADD RefFederalProgramSubgrantCodeId int NULL; +ALTER TABLE [dbo].[PersonMilitaryExpertise] CHECK CONSTRAINT [FK_PersonMilitaryExpertise_RecordStatus]; GO -ALTER TABLE ELStaffEmployment ADD RefFullTimeStatusId int NULL; + +ALTER TABLE [dbo].[PersonMilitaryDuties] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryDuties_RefMilitaryDuties] FOREIGN KEY([RefMilitaryDutiesId]) +REFERENCES [dbo].[RefMilitaryDuties] ([RefMilitaryDutiesId]); GO -ALTER TABLE ELStaffEmployment ADD RefInstructionalStaffContractLengthId int NULL; +ALTER TABLE [dbo].[PersonMilitaryDuties] CHECK CONSTRAINT [FK_PersonMilitaryDuties_RefMilitaryDuties]; GO -ALTER TABLE ELOrganization ADD RefInternetAccessId int NULL; + +ALTER TABLE [dbo].[PersonMilitaryDuties] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryDuties_PersonMilitary] FOREIGN KEY([PersonMilitaryId]) +REFERENCES [dbo].[PersonMilitary] ([PersonMilitaryId]); GO -ALTER TABLE ELStaffEmployment ADD RefIpedsOccupationalCategoryId int NULL; +ALTER TABLE [dbo].[PersonMilitaryDuties] CHECK CONSTRAINT [FK_PersonMilitaryDuties_PersonMilitary]; GO -ALTER TABLE ELOrganization ADD RefLeaTypeId int NULL; + +ALTER TABLE [dbo].[PersonMilitaryDuties] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryDuties_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE ELStaffEmployment ADD MepPersonnelIndicator bit NULL; +ALTER TABLE [dbo].[PersonMilitaryDuties] CHECK CONSTRAINT [FK_PersonMilitaryDuties_DataCollection]; GO -ALTER TABLE ELOrganization ADD RefNationalSchoolLunchProgramStatusId int NULL; + +ALTER TABLE [dbo].[PersonMilitaryDuties] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryDuties_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE ELOrganization ADD RefPredominantCalendarSystemId int NULL; +ALTER TABLE [dbo].[PersonMilitaryDuties] CHECK CONSTRAINT [FK_PersonMilitaryDuties_RecordStatus]; GO -ALTER TABLE OrganizationProgramType ADD PrimaryProgramIndicator bit NULL; + +ALTER TABLE [dbo].[PersonMilitaryServiceLocations] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryServiceLocations_PersonMilitary] FOREIGN KEY([PersonMilitaryId]) +REFERENCES [dbo].[PersonMilitary] ([PersonMilitaryId]); GO -ALTER TABLE ELEnrollment ADD RefPublicSchoolResidenceId int NULL; +ALTER TABLE [dbo].[PersonMilitaryServiceLocations] CHECK CONSTRAINT [FK_PersonMilitaryServiceLocations_PersonMilitary]; GO -ALTER TABLE ELOrganization ADD RefSchoolLevelId int NULL; + +ALTER TABLE [dbo].[PersonMilitaryServiceLocations] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryServiceLocations_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE K12StaffAssignment ADD RefSpecialEducationTeacherQualificationStatusId int NULL; +ALTER TABLE [dbo].[PersonMilitaryServiceLocations] CHECK CONSTRAINT [FK_PersonMilitaryServiceLocations_DataCollection]; GO -ALTER TABLE ELOrganization ADD RefStatePovertyDesignationId int NULL; + +ALTER TABLE [dbo].[PersonMilitaryServiceLocations] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryServiceLocations_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE OrganizationPopulationServed ADD RefStudentSupportServiceAvailabilityTypeId int NULL; +ALTER TABLE [dbo].[PersonMilitaryServiceLocations] CHECK CONSTRAINT [FK_PersonMilitaryServiceLocations_RecordStatus]; GO -ALTER TABLE ELStaffEmployment ADD TitleITargetedAssistanceStaffFunded bit NULL; + +ALTER TABLE [dbo].[PersonMilitaryDeployment] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryDeployment_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE ELOrganization ADD RefVirtualSchoolStatusId int NULL; +ALTER TABLE [dbo].[PersonMilitaryDeployment] CHECK CONSTRAINT [FK_PersonMilitaryDeployment_DataCollection]; GO -ALTER TABLE TeacherEducationCredentialExam ADD AssessmentResultId int NULL; + +ALTER TABLE [dbo].[PersonMilitaryDeployment] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryDeployment_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE OrganizationPersonRoleRelationship ADD RecordStatusId int NULL; +ALTER TABLE [dbo].[PersonMilitaryDeployment] CHECK CONSTRAINT [FK_PersonMilitaryDeployment_RecordStatus]; GO +ALTER TABLE [dbo].[PersonMilitary] WITH CHECK ADD CONSTRAINT [FK_PersonMilitary_RefMilitaryDischargeCategory] FOREIGN KEY([RefMilitaryDischargeCategoryId]) +REFERENCES [dbo].[RefMilitaryDischargeCategory] ([RefMilitaryDischargeCategoryId]); +GO +ALTER TABLE [dbo].[PersonMilitary] CHECK CONSTRAINT [FK_PersonMilitary_RefMilitaryDischargeCategory]; +GO -----Altering datatype - increasing size---- -----WARNING!! - We are altering the data size to increase the capacity, this is likely not an issue to any existing data or processes---- +ALTER TABLE [dbo].[PersonMilitaryHonors] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryHonors_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); +GO +ALTER TABLE [dbo].[PersonMilitaryHonors] CHECK CONSTRAINT [FK_PersonMilitaryHonors_DataCollection]; +GO -ALTER TABLE Assessment ALTER COLUMN Identifier nvarchar(100); +ALTER TABLE [dbo].[PersonMilitaryHonors] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryHonors_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); +GO +ALTER TABLE [dbo].[PersonMilitaryHonors] CHECK CONSTRAINT [FK_PersonMilitaryHonors_RecordStatus]; GO -----Dropping Foreign Key Constraints----- -ALTER TABLE Assessment DROP CONSTRAINT FK_Assessment_RefAssessmentTypeChildrenWithDisabilities; +ALTER TABLE [dbo].[PersonMilitaryCampaigns] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryCampaigns_RefMilitaryCampaigns] FOREIGN KEY([RefMilitaryCampaignsId]) +REFERENCES [dbo].[RefMilitaryCampaigns] ([RefMilitaryCampaignsId]); GO -ALTER TABLE K12StudentEnrollment DROP CONSTRAINT FK_K12StudentEnrollment_RefPublicSchoolResidence; +ALTER TABLE [dbo].[PersonMilitaryCampaigns] CHECK CONSTRAINT [FK_PersonMilitaryCampaigns_RefMilitaryCampaigns]; GO -ALTER TABLE OrganizationFederalAccountability DROP CONSTRAINT FK_OrganizationFedAccountability_RefAMAOAttainmentLEPStudents; + +ALTER TABLE [dbo].[IncidentActivity] WITH CHECK ADD CONSTRAINT [FK_IncidentActivity_RefIncidentActivity] FOREIGN KEY([RefIncidentActivityId]) +REFERENCES [dbo].[RefIncidentActivity] ([RefIncidentActivityId]); GO -ALTER TABLE OrganizationFederalAccountability DROP CONSTRAINT FK_OrganizationFedAccountability_RefAMAOAttainmentLEPStudents1; +ALTER TABLE [dbo].[IncidentActivity] CHECK CONSTRAINT [FK_IncidentActivity_RefIncidentActivity]; GO -ALTER TABLE OrganizationFederalAccountability DROP CONSTRAINT FK_OrganizationFedAccountability_RefAMAOAttainmentLEPStudents2; + +ALTER TABLE [dbo].[PersonMilitaryCampaigns] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryCampaigns_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE PsStudentDemographic DROP CONSTRAINT FK_PsStudentDemographic_RefPostsecondaryLEPType; +ALTER TABLE [dbo].[PersonMilitaryCampaigns] CHECK CONSTRAINT [FK_PersonMilitaryCampaigns_DataCollection]; GO -----Dropping Columns---- -----WARNING!! This will remove the columns entirely and will not retain the data---- -ALTER TABLE OrganizationFederalAccountability DROP COLUMN AmaoAypProgressAttainmentLepStudents; +ALTER TABLE [dbo].[PersonMilitaryCampaigns] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryCampaigns_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE OrganizationFederalAccountability DROP COLUMN AmaoProficiencyAttainmentLepStudents; +ALTER TABLE [dbo].[PersonMilitaryCampaigns] CHECK CONSTRAINT [FK_PersonMilitaryCampaigns_RecordStatus]; GO -ALTER TABLE OrganizationFederalAccountability DROP COLUMN AmaoProgressAttainmentLepStudents; + +ALTER TABLE [dbo].[PersonMilitaryDeployment] WITH CHECK ADD CONSTRAINT [FK_PersonMilitaryDeployment_RefMilitaryDeploymentStatusCode] FOREIGN KEY([RefMilitaryDeploymentStatusCodeId]) +REFERENCES [dbo].[RefMilitaryDeploymentStatusCode] ([RefMilitaryDeploymentStatusCodeId]); GO -ALTER TABLE PsStudentDemographic DROP COLUMN RefPsLepTypeId; +ALTER TABLE [dbo].[PersonMilitaryDeployment] CHECK CONSTRAINT [FK_PersonMilitaryDeployment_RefMilitaryDeploymentStatusCode]; GO -----Dropping Reference Tables---- -----WARNING!! This will remove the tables entirely and will not retain the data---- -DROP TABLE RefPsLepType; +ALTER TABLE [dbo].[PersonMilitary] WITH CHECK ADD CONSTRAINT [FK_PersonMilitary_RefNationalGuardIndicator] FOREIGN KEY([RefNationalGuardIndicatorId]) +REFERENCES [dbo].[RefNationalGuardIndicator] ([RefNationalGuardIndicatorId]); GO -DROP TABLE RefAmaoAttainmentStatus; +ALTER TABLE [dbo].[PersonMilitary] CHECK CONSTRAINT [FK_PersonMilitary_RefNationalGuardIndicator]; GO -----Renaming columns---- -----WARNING!! This is renaming columns, it will retain the data and the foreign key references but any other process for ingesting or using data that references these columns will need to be edited---- -EXEC sp_rename 'Assessment.RefAssessmentTypeChildrenWithDisabilitiesId', 'RefAssessmentTypeAdministeredId', 'column'; +ALTER TABLE [dbo].[StaffCompensationFundingSource] WITH CHECK ADD CONSTRAINT [FK_StaffCompensationFundingSource_StaffCompensation] FOREIGN KEY([StaffCompensationId]) +REFERENCES [dbo].[StaffCompensation] ([StaffCompensationId]); GO -EXEC sp_rename 'K12StudentEnrollment.RefPublicSchoolResidence', 'RefPublicSchoolResidenceId', 'column'; +ALTER TABLE [dbo].[StaffCompensationFundingSource] CHECK CONSTRAINT [FK_StaffCompensationFundingSource_StaffCompensation]; GO -EXEC sp_rename 'RefAssessmentTypeChildrenWithDisabilities.RefAssessmentTypeChildrenWithDisabilitiesId', 'RefAssessmentTypeAdministeredId', 'column'; + +ALTER TABLE [dbo].[StaffCompensationFundingSource] WITH CHECK ADD CONSTRAINT [FK_StaffCompensationFundingSource_FinancialAccount] FOREIGN KEY([FinancialAccountId]) +REFERENCES [dbo].[FinancialAccount] ([FinancialAccountId]); GO -----Renaming tables---- -----WARNING!! This is renaming tables, it will retain the data and the foreign key references but any other process for ingesting or using data that references these tables will need to be edited---- -EXEC sp_rename 'RefAssessmentTypeChildrenWithDisabilities', 'RefAssessmentTypeAdministered'; +ALTER TABLE [dbo].[StaffCompensationFundingSource] CHECK CONSTRAINT [FK_StaffCompensationFundingSource_FinancialAccount]; GO +ALTER TABLE [dbo].[StaffCompensationFundingSource] WITH CHECK ADD CONSTRAINT [FK_StaffCompensationFundingSource_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); +GO +ALTER TABLE [dbo].[StaffCompensationFundingSource] CHECK CONSTRAINT [FK_StaffCompensationFundingSource_RecordStatus]; +GO -ALTER TABLE [dbo].[FinancialAccount] WITH CHECK ADD CONSTRAINT [FK_FinancialAccount_RefFederalProgramCode] FOREIGN KEY([RefFederalProgramCodeId]) -REFERENCES [dbo].[RefFederalProgramCode] ([RefFederalProgramCodeId]); +ALTER TABLE [dbo].[StaffCompensationFundingSource] WITH CHECK ADD CONSTRAINT [FK_StaffCompensationFundingSource_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[FinancialAccount] CHECK CONSTRAINT [FK_FinancialAccount_RefFederalProgramCode]; +ALTER TABLE [dbo].[StaffCompensationFundingSource] CHECK CONSTRAINT [FK_StaffCompensationFundingSource_DataCollection]; GO -ALTER TABLE [dbo].[ELEnrollment] WITH CHECK ADD CONSTRAINT [FK_ELEnrollment_RefExitOrWithdrawalStatus] FOREIGN KEY([RefExitOrWithdrawalStatusId]) -REFERENCES [dbo].[RefExitOrWithdrawalStatus] ([RefExitOrWithdrawalStatusId]); +ALTER TABLE [dbo].[PersonFamily] WITH CHECK ADD CONSTRAINT [FK_PersonFamily_RefTeenParentIndicator] FOREIGN KEY([RefTeenParentIndicatorId]) +REFERENCES [dbo].[RefTeenParentIndicator] ([RefTeenParentIndicatorId]); GO -ALTER TABLE [dbo].[ELEnrollment] CHECK CONSTRAINT [FK_ELEnrollment_RefExitOrWithdrawalStatus]; +ALTER TABLE [dbo].[PersonFamily] CHECK CONSTRAINT [FK_PersonFamily_RefTeenParentIndicator]; GO -ALTER TABLE [dbo].[RefFederalProgramCode] WITH CHECK ADD CONSTRAINT [FK_RefFederalProgramCode_Organization] FOREIGN KEY([RefJurisdictionId]) +ALTER TABLE [dbo].[OrganizationJurisdiction] WITH CHECK ADD CONSTRAINT [FK_OrganizationJurisdiction_Organization] FOREIGN KEY([OrganizationId]) REFERENCES [dbo].[Organization] ([OrganizationId]); GO -ALTER TABLE [dbo].[RefFederalProgramCode] CHECK CONSTRAINT [FK_RefFederalProgramCode_Organization]; +ALTER TABLE [dbo].[OrganizationJurisdiction] CHECK CONSTRAINT [FK_OrganizationJurisdiction_Organization]; GO -ALTER TABLE [dbo].[RefFederalProgramSubgrantCode] WITH CHECK ADD CONSTRAINT [FK_RefFederalProgramSubgrantCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); +ALTER TABLE [dbo].[OrganizationJurisdiction] WITH CHECK ADD CONSTRAINT [FK_OrganizationJurisdiction_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[RefFederalProgramSubgrantCode] CHECK CONSTRAINT [FK_RefFederalProgramSubgrantCode_Organization]; +ALTER TABLE [dbo].[OrganizationJurisdiction] CHECK CONSTRAINT [FK_OrganizationJurisdiction_RecordStatus]; GO -ALTER TABLE [dbo].[FinancialAccount] WITH CHECK ADD CONSTRAINT [FK_FinancialAccount_RefFederalProgramSubgrantCode] FOREIGN KEY([RefFederalProgramSubgrantCodeId]) -REFERENCES [dbo].[RefFederalProgramSubgrantCode] ([RefFederalProgramSubgrantCodeId]); +ALTER TABLE [dbo].[OrganizationJurisdiction] WITH CHECK ADD CONSTRAINT [FK_OrganizationJurisdiction_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[FinancialAccount] CHECK CONSTRAINT [FK_FinancialAccount_RefFederalProgramSubgrantCode]; +ALTER TABLE [dbo].[OrganizationJurisdiction] CHECK CONSTRAINT [FK_OrganizationJurisdiction_DataCollection]; GO -ALTER TABLE [dbo].[RefFinancialAccountCodingSystemOrganizationType] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountCodingSystemOrganizationType_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); +ALTER TABLE [dbo].[CourseFundingSource] WITH CHECK ADD CONSTRAINT [FK_CourseFundingSource_RefCourseFundingProgramAllowed] FOREIGN KEY([RefCourseFundingProgramAllowedId]) +REFERENCES [dbo].[RefCourseFundingProgramAllowed] ([RefCourseFundingProgramAllowedId]); GO -ALTER TABLE [dbo].[RefFinancialAccountCodingSystemOrganizationType] CHECK CONSTRAINT [FK_RefFinancialAccountCodingSystemOrganizationType_Organization]; +ALTER TABLE [dbo].[CourseFundingSource] CHECK CONSTRAINT [FK_CourseFundingSource_RefCourseFundingProgramAllowed]; GO -ALTER TABLE [dbo].[RefFinancialAccountLocalBalanceSheetCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalBalanceSheetCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); +ALTER TABLE [dbo].[CourseFundingSource] WITH CHECK ADD CONSTRAINT [FK_CourseFundingSource_Course] FOREIGN KEY([CourseId]) +REFERENCES [dbo].[Course] ([CourseId]); GO -ALTER TABLE [dbo].[RefFinancialAccountLocalBalanceSheetCode] CHECK CONSTRAINT [FK_RefFinancialAccountLocalBalanceSheetCode_Organization]; +ALTER TABLE [dbo].[CourseFundingSource] CHECK CONSTRAINT [FK_CourseFundingSource_Course]; GO -ALTER TABLE [dbo].[RefFinancialAccountLocalBalanceSheetCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalBalanceSheetCode_RefFinancialAccountCodingSystemOrganizationType] FOREIGN KEY([RefFinancialAccountCodingSystemOrganizationTypeId]) -REFERENCES [dbo].[RefFinancialAccountCodingSystemOrganizationType] ([RefFinancialAccountCodingSystemOrganizationTypeId]); +ALTER TABLE [dbo].[CourseFundingSource] WITH CHECK ADD CONSTRAINT [FK_CourseFundingSource_FinancialAccount] FOREIGN KEY([FinancialAccountId]) +REFERENCES [dbo].[FinancialAccount] ([FinancialAccountId]); GO -ALTER TABLE [dbo].[RefFinancialAccountLocalBalanceSheetCode] CHECK CONSTRAINT [FK_RefFinancialAccountLocalBalanceSheetCode_RefFinancialAccountCodingSystemOrganizationType]; +ALTER TABLE [dbo].[CourseFundingSource] CHECK CONSTRAINT [FK_CourseFundingSource_FinancialAccount]; GO -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalBalanceSheetCode] FOREIGN KEY([RefFinancialAccountLocalBalanceSheetCodeId]) -REFERENCES [dbo].[RefFinancialAccountLocalBalanceSheetCode] ([RefFinancialAccountLocalBalanceSheetCodeId]); +ALTER TABLE [dbo].[CourseFundingSource] WITH CHECK ADD CONSTRAINT [FK_CourseFundingSource_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalBalanceSheetCode]; +ALTER TABLE [dbo].[CourseFundingSource] CHECK CONSTRAINT [FK_CourseFundingSource_RecordStatus]; GO -ALTER TABLE [dbo].[RefFinancialAccountLocalFundClassification] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalFundClassification_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); +ALTER TABLE [dbo].[IncidentActivity] WITH CHECK ADD CONSTRAINT [FK_IncidentActivity_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[RefFinancialAccountLocalFundClassification] CHECK CONSTRAINT [FK_RefFinancialAccountLocalFundClassification_Organization]; +ALTER TABLE [dbo].[IncidentActivity] CHECK CONSTRAINT [FK_IncidentActivity_RecordStatus]; GO -ALTER TABLE [dbo].[RefFinancialAccountLocalFundClassification] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalFundClassification_RefFinancialAccountCodingSystemOrganizationType] FOREIGN KEY([RefFinancialAccountCodingSystemOrganizationTypeId]) -REFERENCES [dbo].[RefFinancialAccountCodingSystemOrganizationType] ([RefFinancialAccountCodingSystemOrganizationTypeId]); +ALTER TABLE [dbo].[CourseFundingSource] WITH CHECK ADD CONSTRAINT [FK_CourseFundingSource_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[RefFinancialAccountLocalFundClassification] CHECK CONSTRAINT [FK_RefFinancialAccountLocalFundClassification_RefFinancialAccountCodingSystemOrganizationType]; +ALTER TABLE [dbo].[CourseFundingSource] CHECK CONSTRAINT [FK_CourseFundingSource_DataCollection]; GO -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalFundClassification] FOREIGN KEY([RefFinancialAccountLocalFundClassificationId]) -REFERENCES [dbo].[RefFinancialAccountLocalFundClassification] ([RefFinancialAccountLocalFundClassificationId]); +ALTER TABLE [dbo].[FinancialAccount] WITH CHECK ADD CONSTRAINT [FK_FinancialAccount_RefFinancialAccountGASBRevenueClassification] FOREIGN KEY([RefFinancialAccountGASBRevenueClassificationId]) +REFERENCES [dbo].[RefFinancialAccountGASBRevenueClassification] ([RefFinancialAccountGASBRevenueClassificationId]); GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalFundClassification]; +ALTER TABLE [dbo].[FinancialAccount] CHECK CONSTRAINT [FK_FinancialAccount_RefFinancialAccountGASBRevenueClassification]; GO -ALTER TABLE [dbo].[RefFinancialAccountLocalProgramCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalProgramCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); +ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalGASBRevenueClassification] FOREIGN KEY([RefFinancialAccountLocalGASBRevenueClassificationId]) +REFERENCES [dbo].[RefFinancialAccountLocalGASBRevenueClassification] ([RefFinancialAccountLocalGASBRevenueClassificationId]); GO -ALTER TABLE [dbo].[RefFinancialAccountLocalProgramCode] CHECK CONSTRAINT [FK_RefFinancialAccountLocalProgramCode_Organization]; +ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalGASBRevenueClassification]; GO -ALTER TABLE [dbo].[RefFinancialAccountLocalProgramCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalProgramCode_RefFinancialAccountCodingSystemOrganizationType] FOREIGN KEY([RefFinancialAccountCodingSystemOrganizationTypeId]) -REFERENCES [dbo].[RefFinancialAccountCodingSystemOrganizationType] ([RefFinancialAccountCodingSystemOrganizationTypeId]); +ALTER TABLE [dbo].[K12StudentDropoutReason] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropoutReason_RefDropoutReasonType] FOREIGN KEY([RefDropoutReasonTypeId]) +REFERENCES [dbo].[RefDropoutReasonType] ([RefDropoutReasonTypeId]); GO -ALTER TABLE [dbo].[RefFinancialAccountLocalProgramCode] CHECK CONSTRAINT [FK_RefFinancialAccountLocalProgramCode_RefFinancialAccountCodingSystemOrganizationType]; +ALTER TABLE [dbo].[K12StudentDropoutReason] CHECK CONSTRAINT [FK_K12StudentDropoutReason_RefDropoutReasonType]; GO -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalProgramCode] FOREIGN KEY([RefFinancialAccountLocalProgramCodeId]) -REFERENCES [dbo].[RefFinancialAccountLocalProgramCode] ([RefFinancialAccountLocalProgramCodeId]); +ALTER TABLE [dbo].[K12StudentDropoutReason] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropoutReason_OrganizationPersonRole] FOREIGN KEY([OrganizationPersonRoleId]) +REFERENCES [dbo].[OrganizationPersonRole] ([OrganizationPersonRoleId]); GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalProgramCode]; +ALTER TABLE [dbo].[K12StudentDropoutReason] CHECK CONSTRAINT [FK_K12StudentDropoutReason_OrganizationPersonRole]; GO -ALTER TABLE [dbo].[RefFinancialAccountLocalRevenueCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalRevenueCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); +ALTER TABLE [dbo].[K12StudentDropoutReason] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropoutReason_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[RefFinancialAccountLocalRevenueCode] CHECK CONSTRAINT [FK_RefFinancialAccountLocalRevenueCode_Organization]; +ALTER TABLE [dbo].[K12StudentDropoutReason] CHECK CONSTRAINT [FK_K12StudentDropoutReason_RecordStatus]; GO -ALTER TABLE [dbo].[RefFinancialAccountLocalRevenueCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialAccountLocalRevenueCode_RefFinancialAccountCodingSystemOrganizationType] FOREIGN KEY([RefFinancialAccountCodingSystemOrganizationTypeId]) -REFERENCES [dbo].[RefFinancialAccountCodingSystemOrganizationType] ([RefFinancialAccountCodingSystemOrganizationTypeId]); +ALTER TABLE [dbo].[K12StudentDropoutReason] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropoutReason_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[RefFinancialAccountLocalRevenueCode] CHECK CONSTRAINT [FK_RefFinancialAccountLocalRevenueCode_RefFinancialAccountCodingSystemOrganizationType]; +ALTER TABLE [dbo].[K12StudentDropoutReason] CHECK CONSTRAINT [FK_K12StudentDropoutReason_DataCollection]; GO -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalRevenueCode] FOREIGN KEY([RefFinancialAccountLocalRevenueCodeId]) -REFERENCES [dbo].[RefFinancialAccountLocalRevenueCode] ([RefFinancialAccountLocalRevenueCodeId]); +ALTER TABLE [dbo].[IncidentActivity] WITH CHECK ADD CONSTRAINT [FK_IncidentActivity_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialAccountLocalRevenueCode]; +ALTER TABLE [dbo].[IncidentActivity] CHECK CONSTRAINT [FK_IncidentActivity_DataCollection]; GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalFunctionCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialExpenditureLocalFunctionCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); +ALTER TABLE [dbo].[K12StudentDropout] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropout_RefStudentDropoutStatus] FOREIGN KEY([RefStudentDropoutStatusId]) +REFERENCES [dbo].[RefStudentDropoutStatus] ([RefStudentDropoutStatusId]); GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalFunctionCode] CHECK CONSTRAINT [FK_RefFinancialExpenditureLocalFunctionCode_Organization]; +ALTER TABLE [dbo].[K12StudentDropout] CHECK CONSTRAINT [FK_K12StudentDropout_RefStudentDropoutStatus]; GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalFunctionCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialExpenditureLocalFunctionCode_RefFinancialAccountCodingSystemOrganizationType] FOREIGN KEY([RefFinancialAccountCodingSystemOrganizationTypeId]) -REFERENCES [dbo].[RefFinancialAccountCodingSystemOrganizationType] ([RefFinancialAccountCodingSystemOrganizationTypeId]); +ALTER TABLE [dbo].[K12StudentDropout] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropout_OrganizationPersonRole] FOREIGN KEY([OrganizationPersonRoleId]) +REFERENCES [dbo].[OrganizationPersonRole] ([OrganizationPersonRoleId]); GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalFunctionCode] CHECK CONSTRAINT [FK_RefFinancialExpenditureLocalFunctionCode_RefFinancialAccountCodingSystemOrganizationType]; +ALTER TABLE [dbo].[K12StudentDropout] CHECK CONSTRAINT [FK_K12StudentDropout_OrganizationPersonRole]; GO -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialExpenditureLocalFunctionCode] FOREIGN KEY([RefFinancialExpenditureLocalFunctionCodeId]) -REFERENCES [dbo].[RefFinancialExpenditureLocalFunctionCode] ([RefFinancialExpenditureLocalFunctionCodeId]); +ALTER TABLE [dbo].[K12StudentDropout] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropout_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialExpenditureLocalFunctionCode]; +ALTER TABLE [dbo].[K12StudentDropout] CHECK CONSTRAINT [FK_K12StudentDropout_RecordStatus]; GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialExpenditureLocalLevelOfInstructionCode_Organization] FOREIGN KEY([RefJurisdictionId]) +ALTER TABLE [dbo].[K12StudentDropout] WITH CHECK ADD CONSTRAINT [FK_K12StudentDropout_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); +GO +ALTER TABLE [dbo].[K12StudentDropout] CHECK CONSTRAINT [FK_K12StudentDropout_DataCollection]; +GO + +ALTER TABLE [dbo].[JobIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobIdentifier_RefJobIdentificationSystem] FOREIGN KEY([RefJobIdentificationSystemId]) +REFERENCES [dbo].[RefJobIdentificationSystem] ([RefJobIdentificationSystemId]); +GO +ALTER TABLE [dbo].[JobIdentifier] CHECK CONSTRAINT [FK_JobIdentifier_RefJobIdentificationSystem]; +GO + +ALTER TABLE [dbo].[FacilityJointUse] WITH CHECK ADD CONSTRAINT [FK_FacilityJointUse_RefFacilityJointUseIndicator] FOREIGN KEY([RefFacilityJointUseIndicatorId]) +REFERENCES [dbo].[RefFacilityJointUseIndicator] ([RefFacilityJointUseIndicatorId]); +GO +ALTER TABLE [dbo].[FacilityJointUse] CHECK CONSTRAINT [FK_FacilityJointUse_RefFacilityJointUseIndicator]; +GO + +ALTER TABLE [dbo].[JobIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobIdentifier_Job] FOREIGN KEY([JobId]) +REFERENCES [dbo].[Job] ([JobId]); +GO +ALTER TABLE [dbo].[JobIdentifier] CHECK CONSTRAINT [FK_JobIdentifier_Job]; +GO + +ALTER TABLE [dbo].[JobIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobIdentifier_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); +GO +ALTER TABLE [dbo].[JobIdentifier] CHECK CONSTRAINT [FK_JobIdentifier_RecordStatus]; +GO + +ALTER TABLE [dbo].[JobIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobIdentifier_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); +GO +ALTER TABLE [dbo].[JobIdentifier] CHECK CONSTRAINT [FK_JobIdentifier_DataCollection]; +GO + +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_RefLocalJobCategory] FOREIGN KEY([RefLocalJobCategoryId]) +REFERENCES [dbo].[RefLocalJobCategory] ([RefLocalJobCategoryId]); +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_RefLocalJobCategory]; +GO + +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_RefLocalJobFunction] FOREIGN KEY([RefLocalJobFunctionId]) +REFERENCES [dbo].[RefLocalJobFunction] ([RefLocalJobFunctionId]); +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_RefLocalJobFunction]; +GO + +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_Job] FOREIGN KEY([JobId]) +REFERENCES [dbo].[Job] ([JobId]); +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_Job]; +GO + +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_RefK12StaffClassification] FOREIGN KEY([RefK12StaffClassificationId]) +REFERENCES [dbo].[RefK12StaffClassification] ([RefK12StaffClassificationId]); +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_RefK12StaffClassification]; +GO + +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_RefStandardOccupationalClassification] FOREIGN KEY([RefStandardOccupationalClassificationId]) +REFERENCES [dbo].[RefStandardOccupationalClassification] ([RefStandardOccupationalClassificationId]); +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_RefStandardOccupationalClassification]; +GO + +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_RecordStatus]; +GO + +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_DataCollection]; +GO + +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_RefCodingSystemOrganizationType] FOREIGN KEY([RefCodingSystemOrganizationTypeId]) +REFERENCES [dbo].[RefCodingSystemOrganizationType] ([RefCodingSystemOrganizationTypeId]); +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_RefCodingSystemOrganizationType]; +GO + +ALTER TABLE [dbo].[JobDetail] WITH CHECK ADD CONSTRAINT [FK_JobDetail_RefEducationJobType] FOREIGN KEY([RefEducationJobTypeId]) +REFERENCES [dbo].[RefEducationJobType] ([RefEducationJobTypeId]); +GO +ALTER TABLE [dbo].[JobDetail] CHECK CONSTRAINT [FK_JobDetail_RefEducationJobType]; +GO + +ALTER TABLE [dbo].[OrganizationJob] WITH CHECK ADD CONSTRAINT [FK_OrganizationJob_Organization] FOREIGN KEY([OrganizationId]) REFERENCES [dbo].[Organization] ([OrganizationId]); GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode] CHECK CONSTRAINT [FK_RefFinancialExpenditureLocalLevelOfInstructionCode_Organization]; +ALTER TABLE [dbo].[OrganizationJob] CHECK CONSTRAINT [FK_OrganizationJob_Organization]; +GO + +ALTER TABLE [dbo].[OrganizationJob] WITH CHECK ADD CONSTRAINT [FK_OrganizationJob_Job] FOREIGN KEY([JobId]) +REFERENCES [dbo].[Job] ([JobId]); +GO +ALTER TABLE [dbo].[OrganizationJob] CHECK CONSTRAINT [FK_OrganizationJob_Job]; +GO + +ALTER TABLE [dbo].[OrganizationJob] WITH CHECK ADD CONSTRAINT [FK_OrganizationJob_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); +GO +ALTER TABLE [dbo].[OrganizationJob] CHECK CONSTRAINT [FK_OrganizationJob_RecordStatus]; +GO + +ALTER TABLE [dbo].[OrganizationJob] WITH CHECK ADD CONSTRAINT [FK_OrganizationJob_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); +GO +ALTER TABLE [dbo].[OrganizationJob] CHECK CONSTRAINT [FK_OrganizationJob_DataCollection]; +GO + +ALTER TABLE [dbo].[JobPosition] WITH CHECK ADD CONSTRAINT [FK_JobPosition_Job] FOREIGN KEY([JobId]) +REFERENCES [dbo].[Job] ([JobId]); +GO +ALTER TABLE [dbo].[JobPosition] CHECK CONSTRAINT [FK_JobPosition_Job]; +GO + +ALTER TABLE [dbo].[JobPosition] WITH CHECK ADD CONSTRAINT [FK_JobPosition_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); +GO +ALTER TABLE [dbo].[JobPosition] CHECK CONSTRAINT [FK_JobPosition_RecordStatus]; +GO + +ALTER TABLE [dbo].[JobPosition] WITH CHECK ADD CONSTRAINT [FK_JobPosition_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); +GO +ALTER TABLE [dbo].[JobPosition] CHECK CONSTRAINT [FK_JobPosition_DataCollection]; +GO + +ALTER TABLE [dbo].[JobPositionIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobPositionIdentifier_RefJobPositionIdentificationSystem] FOREIGN KEY([RefJobPositionIdentificationSystemId]) +REFERENCES [dbo].[RefJobPositionIdentificationSystem] ([RefJobPositionIdentificationSystemId]); +GO +ALTER TABLE [dbo].[JobPositionIdentifier] CHECK CONSTRAINT [FK_JobPositionIdentifier_RefJobPositionIdentificationSystem]; +GO + +ALTER TABLE [dbo].[JobPositionIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobPositionIdentifier_JobPosition] FOREIGN KEY([JobPositionId]) +REFERENCES [dbo].[JobPosition] ([JobPositionId]); +GO +ALTER TABLE [dbo].[JobPositionIdentifier] CHECK CONSTRAINT [FK_JobPositionIdentifier_JobPosition]; +GO + +ALTER TABLE [dbo].[JobPositionIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobPositionIdentifier_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); +GO +ALTER TABLE [dbo].[JobPositionIdentifier] CHECK CONSTRAINT [FK_JobPositionIdentifier_RecordStatus]; +GO + +ALTER TABLE [dbo].[JobPositionIdentifier] WITH CHECK ADD CONSTRAINT [FK_JobPositionIdentifier_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); +GO +ALTER TABLE [dbo].[JobPositionIdentifier] CHECK CONSTRAINT [FK_JobPositionIdentifier_DataCollection]; +GO + +ALTER TABLE [dbo].[JobPositionDetail] WITH CHECK ADD CONSTRAINT [FK_JobPositionDetail_JobPosition] FOREIGN KEY([JobPositionId]) +REFERENCES [dbo].[JobPosition] ([JobPositionId]); +GO +ALTER TABLE [dbo].[JobPositionDetail] CHECK CONSTRAINT [FK_JobPositionDetail_JobPosition]; +GO + +ALTER TABLE [dbo].[JobPositionDetail] WITH CHECK ADD CONSTRAINT [FK_JobPositionDetail_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); +GO +ALTER TABLE [dbo].[JobPositionDetail] CHECK CONSTRAINT [FK_JobPositionDetail_RecordStatus]; +GO + +ALTER TABLE [dbo].[JobPositionDetail] WITH CHECK ADD CONSTRAINT [FK_JobPositionDetail_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); +GO +ALTER TABLE [dbo].[JobPositionDetail] CHECK CONSTRAINT [FK_JobPositionDetail_DataCollection]; GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialExpenditureLocalLevelOfInstructionCode_RefFinancialAccountCodingSystemOrganizationType] FOREIGN KEY([RefFinancialAccountCodingSystemOrganizationTypeId]) -REFERENCES [dbo].[RefFinancialAccountCodingSystemOrganizationType] ([RefFinancialAccountCodingSystemOrganizationTypeId]); +ALTER TABLE [dbo].[JobPositionStatus] WITH CHECK ADD CONSTRAINT [FK_JobPositionStatus_RefJobPositionStatus] FOREIGN KEY([RefJobPositionStatusId]) +REFERENCES [dbo].[RefJobPositionStatus] ([RefJobPositionStatusId]); GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode] CHECK CONSTRAINT [FK_RefFinancialExpenditureLocalLevelOfInstructionCode_RefFinancialAccountCodingSystemOrganizationType]; +ALTER TABLE [dbo].[JobPositionStatus] CHECK CONSTRAINT [FK_JobPositionStatus_RefJobPositionStatus]; GO -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialExpenditureLocalLevelOfInstructionCode] FOREIGN KEY([RefFinancialExpenditureLocalLevelOfInstructionCodeId]) -REFERENCES [dbo].[RefFinancialExpenditureLocalLevelOfInstructionCode] ([RefFinancialExpenditureLocalLevelOfInstructionCodeId]); +ALTER TABLE [dbo].[JobPositionStatus] WITH CHECK ADD CONSTRAINT [FK_JobPositionStatus_RefJobPositionStatusCancelledReason] FOREIGN KEY([RefJobPositionStatusCancelledReasonId]) +REFERENCES [dbo].[RefJobPositionStatusCancelledReason] ([RefJobPositionStatusCancelledReasonId]); GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialExpenditureLocalLevelOfInstructionCode]; +ALTER TABLE [dbo].[JobPositionStatus] CHECK CONSTRAINT [FK_JobPositionStatus_RefJobPositionStatusCancelledReason]; GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalObjectCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialExpenditureLocalObjectCode_Organization] FOREIGN KEY([RefJurisdictionId]) +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteria] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteria_Organization] FOREIGN KEY([OrganizationId]) REFERENCES [dbo].[Organization] ([OrganizationId]); GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalObjectCode] CHECK CONSTRAINT [FK_RefFinancialExpenditureLocalObjectCode_Organization]; +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteria] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteria_Organization]; GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalObjectCode] WITH CHECK ADD CONSTRAINT [FK_RefFinancialExpenditureLocalObjectCode_RefFinancialAccountCodingSystemOrganizationType] FOREIGN KEY([RefFinancialAccountCodingSystemOrganizationTypeId]) -REFERENCES [dbo].[RefFinancialAccountCodingSystemOrganizationType] ([RefFinancialAccountCodingSystemOrganizationTypeId]); +ALTER TABLE [dbo].[JobPositionStatus] WITH CHECK ADD CONSTRAINT [FK_JobPositionStatus_JobPosition] FOREIGN KEY([JobPositionId]) +REFERENCES [dbo].[JobPosition] ([JobPositionId]); GO -ALTER TABLE [dbo].[RefFinancialExpenditureLocalObjectCode] CHECK CONSTRAINT [FK_RefFinancialExpenditureLocalObjectCode_RefFinancialAccountCodingSystemOrganizationType]; +ALTER TABLE [dbo].[JobPositionStatus] CHECK CONSTRAINT [FK_JobPositionStatus_JobPosition]; GO -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RefFinancialExpenditureLocalObjectCode] FOREIGN KEY([RefFinancialExpenditureLocalObjectCodeId]) -REFERENCES [dbo].[RefFinancialExpenditureLocalObjectCode] ([RefFinancialExpenditureLocalObjectCodeId]); +ALTER TABLE [dbo].[JobPositionStatus] WITH CHECK ADD CONSTRAINT [FK_JobPositionStatus_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RefFinancialExpenditureLocalObjectCode]; +ALTER TABLE [dbo].[JobPositionStatus] CHECK CONSTRAINT [FK_JobPositionStatus_RecordStatus]; GO -ALTER TABLE [dbo].[ELStaffEmployment] WITH CHECK ADD CONSTRAINT [FK_ELStaffEmployment_RefFullTimeStatus] FOREIGN KEY([RefFullTimeStatusId]) -REFERENCES [dbo].[RefFullTimeStatus] ([RefFullTimeStatusId]); +ALTER TABLE [dbo].[JobPositionStatus] WITH CHECK ADD CONSTRAINT [FK_JobPositionStatus_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[ELStaffEmployment] CHECK CONSTRAINT [FK_ELStaffEmployment_RefFullTimeStatus]; +ALTER TABLE [dbo].[JobPositionStatus] CHECK CONSTRAINT [FK_JobPositionStatus_DataCollection]; GO -ALTER TABLE [dbo].[ELStaffEmployment] WITH CHECK ADD CONSTRAINT [FK_ELStaffEmployment_RefInstructionalStaffContractLength] FOREIGN KEY([RefInstructionalStaffContractLengthId]) -REFERENCES [dbo].[RefInstructionalStaffContractLength] ([RefInstructionalStaffContractLengthId]); +ALTER TABLE [dbo].[StaffEmploymentJobPosition] WITH CHECK ADD CONSTRAINT [FK_StaffEmploymentJobPosition_StaffEmployment] FOREIGN KEY([StaffEmploymentId]) +REFERENCES [dbo].[StaffEmployment] ([StaffEmploymentId]); GO -ALTER TABLE [dbo].[ELStaffEmployment] CHECK CONSTRAINT [FK_ELStaffEmployment_RefInstructionalStaffContractLength]; +ALTER TABLE [dbo].[StaffEmploymentJobPosition] CHECK CONSTRAINT [FK_StaffEmploymentJobPosition_StaffEmployment]; GO -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefInternetAccess] FOREIGN KEY([RefInternetAccessId]) -REFERENCES [dbo].[RefInternetAccess] ([RefInternetAccessId]); +ALTER TABLE [dbo].[StaffEmploymentJobPosition] WITH CHECK ADD CONSTRAINT [FK_StaffEmploymentJobPosition_JobPosition] FOREIGN KEY([JobPositionId]) +REFERENCES [dbo].[JobPosition] ([JobPositionId]); GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefInternetAccess]; +ALTER TABLE [dbo].[StaffEmploymentJobPosition] CHECK CONSTRAINT [FK_StaffEmploymentJobPosition_JobPosition]; GO -ALTER TABLE [dbo].[Assessment] WITH CHECK ADD CONSTRAINT [FK_Assessment_RefAssessmentTypeAdministered] FOREIGN KEY([RefAssessmentTypeAdministeredId]) -REFERENCES [dbo].[RefAssessmentTypeAdministered] ([RefAssessmentTypeAdministeredId]); +ALTER TABLE [dbo].[StaffEmploymentJobPosition] WITH CHECK ADD CONSTRAINT [FK_StaffEmploymentJobPosition_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[Assessment] CHECK CONSTRAINT [FK_Assessment_RefAssessmentTypeAdministered]; +ALTER TABLE [dbo].[StaffEmploymentJobPosition] CHECK CONSTRAINT [FK_StaffEmploymentJobPosition_RecordStatus]; GO -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_DataCollection] FOREIGN KEY([DataCollectionId]) +ALTER TABLE [dbo].[StaffEmploymentJobPosition] WITH CHECK ADD CONSTRAINT [FK_StaffEmploymentJobPosition_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_DataCollection]; +ALTER TABLE [dbo].[StaffEmploymentJobPosition] CHECK CONSTRAINT [FK_StaffEmploymentJobPosition_DataCollection]; GO -ALTER TABLE [dbo].[ELStaffEmployment] WITH CHECK ADD CONSTRAINT [FK_ELStaffEmployment_RefIpedsOccupationalCategory] FOREIGN KEY([RefIpedsOccupationalCategoryId]) -REFERENCES [dbo].[RefIpedsOccupationalCategory] ([RefIpedsOccupationalCategoryId]); +ALTER TABLE [dbo].[JobK12StaffAssignment] WITH CHECK ADD CONSTRAINT [FK_JobK12StaffAssignment_Job] FOREIGN KEY([JobId]) +REFERENCES [dbo].[Job] ([JobId]); GO -ALTER TABLE [dbo].[ELStaffEmployment] CHECK CONSTRAINT [FK_ELStaffEmployment_RefIpedsOccupationalCategory]; +ALTER TABLE [dbo].[JobK12StaffAssignment] CHECK CONSTRAINT [FK_JobK12StaffAssignment_Job]; GO -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefLeaType] FOREIGN KEY([RefLeaTypeId]) -REFERENCES [dbo].[RefLeaType] ([RefLeaTypeId]); +ALTER TABLE [dbo].[JobK12StaffAssignment] WITH CHECK ADD CONSTRAINT [FK_JobK12StaffAssignment_K12StaffAssignment] FOREIGN KEY([K12StaffAssignmentId]) +REFERENCES [dbo].[K12StaffAssignment] ([K12StaffAssignmentId]); GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefLeaType]; +ALTER TABLE [dbo].[JobK12StaffAssignment] CHECK CONSTRAINT [FK_JobK12StaffAssignment_K12StaffAssignment]; GO -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefNationalSchoolLunchProgramStatus] FOREIGN KEY([RefNationalSchoolLunchProgramStatusId]) -REFERENCES [dbo].[RefNationalSchoolLunchProgramStatus] ([RefNationalSchoolLunchProgramStatusId]); +ALTER TABLE [dbo].[JobK12StaffAssignment] WITH CHECK ADD CONSTRAINT [FK_JobK12StaffAssignment_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefNationalSchoolLunchProgramStatus]; +ALTER TABLE [dbo].[JobK12StaffAssignment] CHECK CONSTRAINT [FK_JobK12StaffAssignment_RecordStatus]; GO -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefPredominantCalendarSystem] FOREIGN KEY([RefPredominantCalendarSystemId]) -REFERENCES [dbo].[RefPredominantCalendarSystem] ([RefPredominantCalendarSystemId]); +ALTER TABLE [dbo].[JobK12StaffAssignment] WITH CHECK ADD CONSTRAINT [FK_JobK12StaffAssignment_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefPredominantCalendarSystem]; +ALTER TABLE [dbo].[JobK12StaffAssignment] CHECK CONSTRAINT [FK_JobK12StaffAssignment_DataCollection]; GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] WITH CHECK ADD CONSTRAINT [FK_OrganizationProjectBasedLearning_RefProjectBasedLearningType] FOREIGN KEY([RefProjectBasedLearningTypeId]) -REFERENCES [dbo].[RefProjectBasedLearningType] ([RefProjectBasedLearningTypeId]); +ALTER TABLE [dbo].[JobCredential] WITH CHECK ADD CONSTRAINT [FK_JobCredential_Job] FOREIGN KEY([JobId]) +REFERENCES [dbo].[Job] ([JobId]); GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] CHECK CONSTRAINT [FK_OrganizationProjectBasedLearning_RefProjectBasedLearningType]; +ALTER TABLE [dbo].[JobCredential] CHECK CONSTRAINT [FK_JobCredential_Job]; GO -ALTER TABLE [dbo].[K12StudentEnrollment] WITH CHECK ADD CONSTRAINT [FK_K12StudentEnrollment_RefPublicSchoolResidence] FOREIGN KEY([RefPublicSchoolResidenceId]) -REFERENCES [dbo].[RefPublicSchoolResidence] ([RefPublicSchoolResidenceId]); +ALTER TABLE [dbo].[JobCredential] WITH CHECK ADD CONSTRAINT [FK_JobCredential_CredentialDefinition] FOREIGN KEY([CredentialDefinitionId]) +REFERENCES [dbo].[CredentialDefinition] ([CredentialDefinitionId]); GO -ALTER TABLE [dbo].[K12StudentEnrollment] CHECK CONSTRAINT [FK_K12StudentEnrollment_RefPublicSchoolResidence]; +ALTER TABLE [dbo].[JobCredential] CHECK CONSTRAINT [FK_JobCredential_CredentialDefinition]; GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_FinancialAccountLocal] FOREIGN KEY([FinancialAccountLocalId]) -REFERENCES [dbo].[FinancialAccountLocal] ([FinancialAccountLocalId]); +ALTER TABLE [dbo].[JobCredential] WITH CHECK ADD CONSTRAINT [FK_JobCredential_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] CHECK CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_FinancialAccountLocal]; +ALTER TABLE [dbo].[JobCredential] CHECK CONSTRAINT [FK_JobCredential_RecordStatus]; GO -ALTER TABLE [dbo].[ELEnrollment] WITH CHECK ADD CONSTRAINT [FK_ELEnrollment_RefPublicSchoolResidence] FOREIGN KEY([RefPublicSchoolResidenceId]) -REFERENCES [dbo].[RefPublicSchoolResidence] ([RefPublicSchoolResidenceId]); +ALTER TABLE [dbo].[JobCredential] WITH CHECK ADD CONSTRAINT [FK_JobCredential_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[ELEnrollment] CHECK CONSTRAINT [FK_ELEnrollment_RefPublicSchoolResidence]; +ALTER TABLE [dbo].[JobCredential] CHECK CONSTRAINT [FK_JobCredential_DataCollection]; GO -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefSchoolLevel] FOREIGN KEY([RefSchoolLevelId]) -REFERENCES [dbo].[RefSchoolLevel] ([RefSchoolLevelId]); +ALTER TABLE [dbo].[JobCompetency] WITH CHECK ADD CONSTRAINT [FK_JobCompetency_Job] FOREIGN KEY([JobId]) +REFERENCES [dbo].[Job] ([JobId]); GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefSchoolLevel]; +ALTER TABLE [dbo].[JobCompetency] CHECK CONSTRAINT [FK_JobCompetency_Job]; GO -ALTER TABLE [dbo].[RefSpecialEducationTeacherQualificationStatus] WITH CHECK ADD CONSTRAINT [FK_RefSpecialEducationTeacherQualificationStatus_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); +ALTER TABLE [dbo].[JobCompetency] WITH CHECK ADD CONSTRAINT [FK_JobCompetency_CompetencyDefinition] FOREIGN KEY([CompetencyDefinitionId]) +REFERENCES [dbo].[CompetencyDefinition] ([CompetencyDefinitionId]); GO -ALTER TABLE [dbo].[RefSpecialEducationTeacherQualificationStatus] CHECK CONSTRAINT [FK_RefSpecialEducationTeacherQualificationStatus_Organization]; +ALTER TABLE [dbo].[JobCompetency] CHECK CONSTRAINT [FK_JobCompetency_CompetencyDefinition]; GO -ALTER TABLE [dbo].[K12StaffAssignment] WITH CHECK ADD CONSTRAINT [FK_K12StaffAssignment_RefSpecialEducationTeacherQualificationStatus] FOREIGN KEY([RefSpecialEducationTeacherQualificationStatusId]) -REFERENCES [dbo].[RefSpecialEducationTeacherQualificationStatus] ([RefSpecialEducationTeacherQualificationStatusId]); +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteria] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteria_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[K12StaffAssignment] CHECK CONSTRAINT [FK_K12StaffAssignment_RefSpecialEducationTeacherQualificationStatus]; +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteria] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteria_RecordStatus]; GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_OrganizationFinancial] FOREIGN KEY([OrganizationFinancialId]) -REFERENCES [dbo].[OrganizationFinancial] ([OrganizationFinancialId]); +ALTER TABLE [dbo].[JobCompetency] WITH CHECK ADD CONSTRAINT [FK_JobCompetency_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] CHECK CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_OrganizationFinancial]; +ALTER TABLE [dbo].[JobCompetency] CHECK CONSTRAINT [FK_JobCompetency_RecordStatus]; GO -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefStatePovertyDesignation] FOREIGN KEY([RefStatePovertyDesignationId]) -REFERENCES [dbo].[RefStatePovertyDesignation] ([RefStatePovertyDesignationId]); +ALTER TABLE [dbo].[JobCompetency] WITH CHECK ADD CONSTRAINT [FK_JobCompetency_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefStatePovertyDesignation]; +ALTER TABLE [dbo].[JobCompetency] CHECK CONSTRAINT [FK_JobCompetency_DataCollection]; GO -ALTER TABLE [dbo].[RefStudentSupportServiceAvailabilityType] WITH CHECK ADD CONSTRAINT [FK_RefStudentSupportServiceAvailabilityType_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); +ALTER TABLE [dbo].[CredentialAwardRelationship] WITH CHECK ADD CONSTRAINT [FK_CredentialAwardRelationship_CredentialAward] FOREIGN KEY([CredentialAwardId]) +REFERENCES [dbo].[CredentialAward] ([CredentialAwardId]); GO -ALTER TABLE [dbo].[RefStudentSupportServiceAvailabilityType] CHECK CONSTRAINT [FK_RefStudentSupportServiceAvailabilityType_Organization]; +ALTER TABLE [dbo].[CredentialAwardRelationship] CHECK CONSTRAINT [FK_CredentialAwardRelationship_CredentialAward]; GO -ALTER TABLE [dbo].[OrganizationPopulationServed] WITH CHECK ADD CONSTRAINT [FK_OrganizationPopulationServed_RefStudentSupportServiceAvailabilityType] FOREIGN KEY([RefStudentSupportServiceAvailabilityTypeId]) -REFERENCES [dbo].[RefStudentSupportServiceAvailabilityType] ([RefStudentSupportServiceAvailabilityTypeId]); +ALTER TABLE [dbo].[CredentialAwardRelationship] WITH CHECK ADD CONSTRAINT [FK_CredentialAwardRelationship_RefCredentialAwardRelationship] FOREIGN KEY([RefCredentialAwardRelationshipId]) +REFERENCES [dbo].[RefCredentialAwardRelationship] ([RefCredentialAwardRelationshipId]); GO -ALTER TABLE [dbo].[OrganizationPopulationServed] CHECK CONSTRAINT [FK_OrganizationPopulationServed_RefStudentSupportServiceAvailabilityType]; +ALTER TABLE [dbo].[CredentialAwardRelationship] CHECK CONSTRAINT [FK_CredentialAwardRelationship_RefCredentialAwardRelationship]; GO -ALTER TABLE [dbo].[FinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_FinancialAccountLocal_RecordStatus] FOREIGN KEY([RecordStatusId]) +ALTER TABLE [dbo].[CredentialAwardRelationship] WITH CHECK ADD CONSTRAINT [FK_CredentialAwardRelationship_RecordStatus] FOREIGN KEY([RecordStatusId]) REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[FinancialAccountLocal] CHECK CONSTRAINT [FK_FinancialAccountLocal_RecordStatus]; +ALTER TABLE [dbo].[CredentialAwardRelationship] CHECK CONSTRAINT [FK_CredentialAwardRelationship_RecordStatus]; GO -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefVirtualSchoolStatus] FOREIGN KEY([RefVirtualSchoolStatusId]) -REFERENCES [dbo].[RefVirtualSchoolStatus] ([RefVirtualSchoolStatusId]); +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteria] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteria_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefVirtualSchoolStatus]; +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteria] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteria_DataCollection]; GO -ALTER TABLE [dbo].[RefAdjustedCapacityReasonType] WITH CHECK ADD CONSTRAINT [FK_RefAdjustedCapacityReasonType_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); +ALTER TABLE [dbo].[CredentialAwardRelationship] WITH CHECK ADD CONSTRAINT [FK_CredentialAwardRelationship_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[RefAdjustedCapacityReasonType] CHECK CONSTRAINT [FK_RefAdjustedCapacityReasonType_Organization]; +ALTER TABLE [dbo].[CredentialAwardRelationship] CHECK CONSTRAINT [FK_CredentialAwardRelationship_DataCollection]; GO -ALTER TABLE [dbo].[RefProjectBasedLearningType] WITH CHECK ADD CONSTRAINT [FK_RefProjectBasedLearningType_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); +ALTER TABLE [dbo].[CredentialDefGradeLevel] WITH CHECK ADD CONSTRAINT [FK_CredentialDefGradeLevel_RefGradeLevel] FOREIGN KEY([RefGradeLevelId]) +REFERENCES [dbo].[RefGradeLevel] ([RefGradeLevelId]); GO -ALTER TABLE [dbo].[RefProjectBasedLearningType] CHECK CONSTRAINT [FK_RefProjectBasedLearningType_Organization]; +ALTER TABLE [dbo].[CredentialDefGradeLevel] CHECK CONSTRAINT [FK_CredentialDefGradeLevel_RefGradeLevel]; GO -ALTER TABLE [dbo].[TeacherEducationCredentialExam] WITH CHECK ADD CONSTRAINT [FK_TeacherEducationCredentialExam_AssessmentResult] FOREIGN KEY([AssessmentResultId]) -REFERENCES [dbo].[AssessmentResult] ([AssessmentResultId]); +ALTER TABLE [dbo].[CredentialDefGradeLevel] WITH CHECK ADD CONSTRAINT [FK_CredentialDefGradeLevel_CredentialDefinition] FOREIGN KEY([CredentialDefinitionId]) +REFERENCES [dbo].[CredentialDefinition] ([CredentialDefinitionId]); GO -ALTER TABLE [dbo].[TeacherEducationCredentialExam] CHECK CONSTRAINT [FK_TeacherEducationCredentialExam_AssessmentResult]; +ALTER TABLE [dbo].[CredentialDefGradeLevel] CHECK CONSTRAINT [FK_CredentialDefGradeLevel_CredentialDefinition]; GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] WITH CHECK ADD CONSTRAINT [FK_OrganizationProjectBasedLearning_Organization] FOREIGN KEY([OrganizationId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); +ALTER TABLE [dbo].[CredentialDefGradeLevel] WITH CHECK ADD CONSTRAINT [FK_CredentialDefGradeLevel_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] CHECK CONSTRAINT [FK_OrganizationProjectBasedLearning_Organization]; +ALTER TABLE [dbo].[CredentialDefGradeLevel] CHECK CONSTRAINT [FK_CredentialDefGradeLevel_RecordStatus]; GO -ALTER TABLE [dbo].[ELCourse] WITH CHECK ADD CONSTRAINT [FK_ELCourse_RefBlendedLearningModelType] FOREIGN KEY([RefBlendedLearningModelTypeId]) -REFERENCES [dbo].[RefBlendedLearningModelType] ([RefBlendedLearningModelTypeId]); +ALTER TABLE [dbo].[CredentialDefGradeLevel] WITH CHECK ADD CONSTRAINT [FK_CredentialDefGradeLevel_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[ELCourse] CHECK CONSTRAINT [FK_ELCourse_RefBlendedLearningModelType]; +ALTER TABLE [dbo].[CredentialDefGradeLevel] CHECK CONSTRAINT [FK_CredentialDefGradeLevel_DataCollection]; GO -ALTER TABLE [dbo].[ELStaffAssignment] WITH CHECK ADD CONSTRAINT [FK_ELStaffAssignment_RefClassroomPositionType] FOREIGN KEY([RefClassroomPositionTypeId]) -REFERENCES [dbo].[RefClassroomPositionType] ([RefClassroomPositionTypeId]); +--ALTER TABLE [dbo].[RefNeglectedOrDelinquentProgramType] WITH CHECK ADD CONSTRAINT [FK_RefNeglectedOrDelinquentProgramType_RefNeglectedOrDelinquentProgramType] FOREIGN KEY([RefNeglectedOrDelinquentProgramTypeId]) +--REFERENCES [dbo].[RefNeglectedOrDelinquentProgramType] ([RefNeglectedOrDelinquentProgramTypeId]); +--GO +--ALTER TABLE [dbo].[RefNeglectedOrDelinquentProgramType] CHECK CONSTRAINT [FK_RefNeglectedOrDelinquentProgramType_RefNeglectedOrDelinquentProgramType]; +--GO + +ALTER TABLE [dbo].[ProgramParticipationNeglected] WITH CHECK ADD CONSTRAINT [FK_ProgramParticipationNeglected_RefNeglectedProgramType] FOREIGN KEY([RefNeglectedProgramTypeId]) +REFERENCES [dbo].[RefNeglectedProgramType] ([RefNeglectedProgramTypeId]); GO -ALTER TABLE [dbo].[ELStaffAssignment] CHECK CONSTRAINT [FK_ELStaffAssignment_RefClassroomPositionType]; +ALTER TABLE [dbo].[ProgramParticipationNeglected] CHECK CONSTRAINT [FK_ProgramParticipationNeglected_RefNeglectedProgramType]; GO -ALTER TABLE [dbo].[ELStaffAssignment] WITH CHECK ADD CONSTRAINT [FK_ELStaffAssignment_RefK12StaffClassification] FOREIGN KEY([RefK12StaffClassificationId]) -REFERENCES [dbo].[RefK12StaffClassification] ([RefK12StaffClassificationId]); +ALTER TABLE [dbo].[ProgramParticipationNeglected] WITH CHECK ADD CONSTRAINT [FK_ProgramParticipationNeglected_RefDelinquentProgramType] FOREIGN KEY([RefDelinquentProgramTypeId]) +REFERENCES [dbo].[RefDelinquentProgramType] ([RefDelinquentProgramTypeId]); GO -ALTER TABLE [dbo].[ELStaffAssignment] CHECK CONSTRAINT [FK_ELStaffAssignment_RefK12StaffClassification]; +ALTER TABLE [dbo].[ProgramParticipationNeglected] CHECK CONSTRAINT [FK_ProgramParticipationNeglected_RefDelinquentProgramType]; GO -ALTER TABLE [dbo].[ELStaffAssignment] WITH CHECK ADD CONSTRAINT [FK_ELStaffAssignment_RefProfessionalEducationJobClassification] FOREIGN KEY([RefProfessionalEducationJobClassificationId]) -REFERENCES [dbo].[RefProfessionalEducationJobClassification] ([RefProfessionalEducationJobClassificationId]); +--ALTER TABLE [dbo].[ProgramParticipationSpecialEducation] WITH CHECK ADD CONSTRAINT [FK_ProgramParticipationSpecialEducation_RefPartBPostsecondaryOutcomesIndicator] FOREIGN KEY([RefPartBPostsecondaryOutcomesIndicatorId]) +--REFERENCES [dbo].[RefPartBPostsecondaryOutcomesIndicator] ([RefPartBPostsecondaryOutcomesIndicatorId]); +--GO +--ALTER TABLE [dbo].[ProgramParticipationSpecialEducation] CHECK CONSTRAINT [FK_ProgramParticipationSpecialEducation_RefPartBPostsecondaryOutcomesIndicator]; +--GO + +ALTER TABLE [dbo].[ProgramParticipationCte] WITH CHECK ADD CONSTRAINT [FK_ProgramParticipationCte_RefPerkinsPostProgramPlacementIndicator] FOREIGN KEY([RefPerkinsPostProgramPlacementIndicatorId]) +REFERENCES [dbo].[RefPerkinsPostProgramPlacementIndicator] ([RefPerkinsPostProgramPlacementIndicatorId]); GO -ALTER TABLE [dbo].[ELStaffAssignment] CHECK CONSTRAINT [FK_ELStaffAssignment_RefProfessionalEducationJobClassification]; +ALTER TABLE [dbo].[ProgramParticipationCte] CHECK CONSTRAINT [FK_ProgramParticipationCte_RefPerkinsPostProgramPlacementIndicator]; GO -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] WITH CHECK ADD CONSTRAINT [FK_ELOrganizationStudentResponsibility_RefK12ResponsibilityType] FOREIGN KEY([RefK12ResponsibilityTypeId]) -REFERENCES [dbo].[RefK12ResponsibilityType] ([RefK12ResponsibilityTypeId]); +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] WITH CHECK ADD CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RefAccessibleFormatIssuedIndicator] FOREIGN KEY([RefAccessibleFormatIssuedIndicatorId]) +REFERENCES [dbo].[RefAccessibleFormatIssuedIndicator] ([RefAccessibleFormatIssuedIndicatorId]); GO -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] CHECK CONSTRAINT [FK_ELOrganizationStudentResponsibility_RefK12ResponsibilityType]; +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] CHECK CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RefAccessibleFormatIssuedIndicator]; GO -ALTER TABLE [dbo].[ELCourse] WITH CHECK ADD CONSTRAINT [FK_ELCourse_RefSCEDCourseCode] FOREIGN KEY([RefSCEDCourseCodeId]) -REFERENCES [dbo].[RefSCEDCourseCode] ([RefSCEDCourseCodeId]); +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] WITH CHECK ADD CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RefAccessibleFormatRequiredIndicator] FOREIGN KEY([RefAccessibleFormatRequiredIndicatorId]) +REFERENCES [dbo].[RefAccessibleFormatRequiredIndicator] ([RefAccessibleFormatRequiredIndicatorId]); GO -ALTER TABLE [dbo].[ELCourse] CHECK CONSTRAINT [FK_ELCourse_RefSCEDCourseCode]; +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] CHECK CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RefAccessibleFormatRequiredIndicator]; GO -ALTER TABLE [dbo].[ELCourse] WITH CHECK ADD CONSTRAINT [FK_ELCourse_RefSCEDCourseLevel] FOREIGN KEY([RefSCEDCourseLevelId]) -REFERENCES [dbo].[RefSCEDCourseLevel] ([RefSCEDCourseLevelId]); +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] WITH CHECK ADD CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[ELCourse] CHECK CONSTRAINT [FK_ELCourse_RefSCEDCourseLevel]; +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] CHECK CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RecordStatus]; GO -ALTER TABLE [dbo].[ELCourse] WITH CHECK ADD CONSTRAINT [FK_ELCourse_RefSCEDCourseSubjectArea] FOREIGN KEY([RefSCEDCourseSubjectAreaId]) -REFERENCES [dbo].[RefSCEDCourseSubjectArea] ([RefSCEDCourseSubjectAreaId]); +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] WITH CHECK ADD CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[ELCourse] CHECK CONSTRAINT [FK_ELCourse_RefSCEDCourseSubjectArea]; +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] CHECK CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_DataCollection]; GO -ALTER TABLE [dbo].[ELStaffAssignment] WITH CHECK ADD CONSTRAINT [FK_ELStaffAssignment_RefSpecialEducationAgeGroupTaught] FOREIGN KEY([RefSpecialEducationAgeGroupTaughtId]) -REFERENCES [dbo].[RefSpecialEducationAgeGroupTaught] ([RefSpecialEducationAgeGroupTaughtId]); +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] WITH CHECK ADD CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RefAccessibleFormatType] FOREIGN KEY([RefAccessibleFormatTypeId]) +REFERENCES [dbo].[RefAccessibleFormatType] ([RefAccessibleFormatTypeId]); GO -ALTER TABLE [dbo].[ELStaffAssignment] CHECK CONSTRAINT [FK_ELStaffAssignment_RefSpecialEducationAgeGroupTaught]; +ALTER TABLE [dbo].[IndividualizedProgramAccessibleFormat] CHECK CONSTRAINT [FK_IndividualizedProgramAccessibleFormat_RefAccessibleFormatType]; GO -ALTER TABLE [dbo].[ELStaffAssignment] WITH CHECK ADD CONSTRAINT [FK_ELStaffAssignment_RefSpecialEducationStaffCategory] FOREIGN KEY([RefSpecialEducationStaffCategoryId]) -REFERENCES [dbo].[RefSpecialEducationStaffCategory] ([RefSpecialEducationStaffCategoryId]); +ALTER TABLE [dbo].[LearningResource] WITH CHECK ADD CONSTRAINT [FK_LearningResource_RefAccessibleFormatType] FOREIGN KEY([RefAccessibleFormatTypeId]) +REFERENCES [dbo].[RefAccessibleFormatType] ([RefAccessibleFormatTypeId]); GO -ALTER TABLE [dbo].[ELStaffAssignment] CHECK CONSTRAINT [FK_ELStaffAssignment_RefSpecialEducationStaffCategory]; +ALTER TABLE [dbo].[LearningResource] CHECK CONSTRAINT [FK_LearningResource_RefAccessibleFormatType]; GO -ALTER TABLE [dbo].[RefSCEDCourseCode] WITH CHECK ADD CONSTRAINT [FK_RefSCEDCourseCode_Organization] FOREIGN KEY([RefJurisdictionId]) -REFERENCES [dbo].[Organization] ([OrganizationId]); +ALTER TABLE [dbo].[LearningResourceIssued] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIssued_LearningResource] FOREIGN KEY([LearningResourceId]) +REFERENCES [dbo].[LearningResource] ([LearningResourceId]); GO -ALTER TABLE [dbo].[RefSCEDCourseCode] CHECK CONSTRAINT [FK_RefSCEDCourseCode_Organization]; +ALTER TABLE [dbo].[LearningResourceIssued] CHECK CONSTRAINT [FK_LearningResourceIssued_LearningResource]; GO -ALTER TABLE [dbo].[ELStaffAssignment] WITH CHECK ADD CONSTRAINT [FK_ELStaffAssignment_RefTeachingAssignmentRole] FOREIGN KEY([RefTeachingAssignmentRoleId]) -REFERENCES [dbo].[RefTeachingAssignmentRole] ([RefTeachingAssignmentRoleId]); +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValue] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValue_OrganizationSalaryScheduleCriteria] FOREIGN KEY([OrganizationSalaryScheduleCriteriaId]) +REFERENCES [dbo].[OrganizationSalaryScheduleCriteria] ([OrganizationSalaryScheduleCriteriaId]); GO -ALTER TABLE [dbo].[ELStaffAssignment] CHECK CONSTRAINT [FK_ELStaffAssignment_RefTeachingAssignmentRole]; +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValue] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValue_OrganizationSalaryScheduleCriteria]; GO -ALTER TABLE [dbo].[ELStaffAssignment] WITH CHECK ADD CONSTRAINT [FK_ELStaffAssignment_RefTitleIProgramStaffCategory] FOREIGN KEY([RefTitleIProgramStaffCategoryId]) -REFERENCES [dbo].[RefTitleIProgramStaffCategory] ([RefTitleIProgramStaffCategoryId]); +ALTER TABLE [dbo].[LearningResourceIssued] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIssued_IssuedToPerson] FOREIGN KEY([IssuedToPersonId]) +REFERENCES [dbo].[Person] ([PersonId]); GO -ALTER TABLE [dbo].[ELStaffAssignment] CHECK CONSTRAINT [FK_ELStaffAssignment_RefTitleIProgramStaffCategory]; +ALTER TABLE [dbo].[LearningResourceIssued] CHECK CONSTRAINT [FK_LearningResourceIssued_IssuedToPerson]; GO -ALTER TABLE [dbo].[ELCourse] WITH CHECK ADD CONSTRAINT [FK_ELCourse_Course] FOREIGN KEY([CourseId]) -REFERENCES [dbo].[Course] ([CourseId]); +ALTER TABLE [dbo].[LearningResourceIssued] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIssued_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[ELCourse] CHECK CONSTRAINT [FK_ELCourse_Course]; +ALTER TABLE [dbo].[LearningResourceIssued] CHECK CONSTRAINT [FK_LearningResourceIssued_RecordStatus]; GO -ALTER TABLE [dbo].[ELCourse] WITH CHECK ADD CONSTRAINT [FK_ELCourse_DataCollection] FOREIGN KEY([DataCollectionId]) +ALTER TABLE [dbo].[LearningResourceIssued] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIssued_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[ELCourse] CHECK CONSTRAINT [FK_ELCourse_DataCollection]; +ALTER TABLE [dbo].[LearningResourceIssued] CHECK CONSTRAINT [FK_LearningResourceIssued_DataCollection]; GO -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] WITH CHECK ADD CONSTRAINT [FK_ELOrganizationStudentResponsibility_DataCollection] FOREIGN KEY([DataCollectionId]) +ALTER TABLE [dbo].[LearningResourceOrder] WITH CHECK ADD CONSTRAINT [FK_LearningResourceOrder_LearningResource] FOREIGN KEY([LearningResourceId]) +REFERENCES [dbo].[LearningResource] ([LearningResourceId]); +GO +ALTER TABLE [dbo].[LearningResourceOrder] CHECK CONSTRAINT [FK_LearningResourceOrder_LearningResource]; +GO + +ALTER TABLE [dbo].[LearningResourceOrder] WITH CHECK ADD CONSTRAINT [FK_LearningResourceOrder_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); +GO +ALTER TABLE [dbo].[LearningResourceOrder] CHECK CONSTRAINT [FK_LearningResourceOrder_RecordStatus]; +GO + +ALTER TABLE [dbo].[LearningResourceOrder] WITH CHECK ADD CONSTRAINT [FK_LearningResourceOrder_DataCollection] FOREIGN KEY([DataCollectionId]) REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] CHECK CONSTRAINT [FK_ELOrganizationStudentResponsibility_DataCollection]; +ALTER TABLE [dbo].[LearningResourceOrder] CHECK CONSTRAINT [FK_LearningResourceOrder_DataCollection]; GO -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] WITH CHECK ADD CONSTRAINT [FK_ELOrganizationStudentResponsibility_OrganizationPersonRole] FOREIGN KEY([OrganizationPersonRoleId]) -REFERENCES [dbo].[OrganizationPersonRole] ([OrganizationPersonRoleId]); +ALTER TABLE [dbo].[K12LeaPolicy] WITH CHECK ADD CONSTRAINT [FK_K12LeaPolicy_RefLEAGFSAAssuranceofComplianceIndicator] FOREIGN KEY([RefLEAGFSAAssuranceofComplianceIndicatorId]) +REFERENCES [dbo].[RefLEAGFSAAssuranceofComplianceIndicator] ([RefLEAGFSAAssuranceofComplianceIndicatorId]); +GO +ALTER TABLE [dbo].[K12LeaPolicy] CHECK CONSTRAINT [FK_K12LeaPolicy_RefLEAGFSAAssuranceofComplianceIndicator]; +GO + +ALTER TABLE [dbo].[K12LeaPolicy] WITH CHECK ADD CONSTRAINT [FK_K12LeaPolicy_RefLEAGFSAPolicyAssuranceIndicator] FOREIGN KEY([RefLEAGFSAPolicyAssuranceIndicatorId]) +REFERENCES [dbo].[RefLEAGFSAPolicyAssuranceIndicator] ([RefLEAGFSAPolicyAssuranceIndicatorId]); +GO +ALTER TABLE [dbo].[K12LeaPolicy] CHECK CONSTRAINT [FK_K12LeaPolicy_RefLEAGFSAPolicyAssuranceIndicator]; +GO + +ALTER TABLE [dbo].[K12LeaPolicy] WITH CHECK ADD CONSTRAINT [FK_K12LeaPolicy_K12Lea] FOREIGN KEY([K12LeaId]) +REFERENCES [dbo].[K12Lea] ([K12LeaId]); +GO +ALTER TABLE [dbo].[K12LeaPolicy] CHECK CONSTRAINT [FK_K12LeaPolicy_K12Lea]; +GO + +ALTER TABLE [dbo].[K12LeaPolicy] WITH CHECK ADD CONSTRAINT [FK_K12LeaPolicy_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] CHECK CONSTRAINT [FK_ELOrganizationStudentResponsibility_OrganizationPersonRole]; +ALTER TABLE [dbo].[K12LeaPolicy] CHECK CONSTRAINT [FK_K12LeaPolicy_RecordStatus]; GO -ALTER TABLE [dbo].[ELCourse] WITH CHECK ADD CONSTRAINT [FK_ELCourse_RecordStatus] FOREIGN KEY([RecordStatusId]) +ALTER TABLE [dbo].[K12LeaPolicy] WITH CHECK ADD CONSTRAINT [FK_K12LeaPolicy_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); +GO +ALTER TABLE [dbo].[K12LeaPolicy] CHECK CONSTRAINT [FK_K12LeaPolicy_DataCollection]; +GO + +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValue] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValue_RecordStatus] FOREIGN KEY([RecordStatusId]) REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[ELCourse] CHECK CONSTRAINT [FK_ELCourse_RecordStatus]; +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValue] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValue_RecordStatus]; +GO + +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValue] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValue_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValue] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValue_DataCollection]; +GO + +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_OrganizationSalaryScheduleCriteriaValue] FOREIGN KEY([OrganizationSalaryScheduleCriteriaValueId]) +REFERENCES [dbo].[OrganizationSalaryScheduleCriteriaValue] ([OrganizationSalaryScheduleCriteriaValueId]); +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_OrganizationSalaryScheduleCriteriaValue]; +GO + +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleSalary_RefStandardOccupationalClassification] FOREIGN KEY([RefStandardOccupationalClassificationId]) +REFERENCES [dbo].[RefStandardOccupationalClassification] ([RefStandardOccupationalClassificationId]); +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleSalary_RefStandardOccupationalClassification]; +GO + +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleSalary_RefONETSOCOccupationType] FOREIGN KEY([RefONETSOCOccupationTypeId]) +REFERENCES [dbo].[RefONETSOCOccupationType] ([RefONETSOCOccupationTypeId]); +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleSalary_RefONETSOCOccupationType]; +GO + +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_Organization] FOREIGN KEY([OrganizationId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_Organization]; +GO + +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_RecordStatus]; +GO + +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_DataCollection]; +GO + +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_OrganizationSalaryScheduleSalary] FOREIGN KEY([OrganizationSalaryScheduleSalaryId]) +REFERENCES [dbo].[OrganizationSalaryScheduleSalary] ([OrganizationSalaryScheduleSalaryId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleCriteriaValueSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleCriteriaValueSalary_OrganizationSalaryScheduleSalary] +GO + +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleSalary_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleSalary_DataCollection] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleSalary_Organization] FOREIGN KEY([OrganizationId]) +REFERENCES [dbo].[Organization] ([OrganizationId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleSalary_Organization] +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] WITH CHECK ADD CONSTRAINT [FK_OrganizationSalaryScheduleSalary_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) +GO +ALTER TABLE [dbo].[OrganizationSalaryScheduleSalary] CHECK CONSTRAINT [FK_OrganizationSalaryScheduleSalary_RecordStatus] +GO + +ALTER TABLE [dbo].[StaffEmployment] WITH CHECK ADD CONSTRAINT [FK_StaffEmployment_RefStandardOccupationalClassification] FOREIGN KEY([RefStandardOccupationalClassificationId]) +REFERENCES [dbo].[RefStandardOccupationalClassification] ([RefStandardOccupationalClassificationId]); +GO +ALTER TABLE [dbo].[StaffEmployment] CHECK CONSTRAINT [FK_StaffEmployment_RefStandardOccupationalClassification]; +GO + +ALTER TABLE [dbo].[BoardMembership] WITH CHECK ADD CONSTRAINT [FK_BoardMembership_RefBoardMemberPositionType] FOREIGN KEY([RefBoardMemberPositionTypeId]) +REFERENCES [dbo].[RefBoardMemberPositionType] ([RefBoardMemberPositionTypeId]); +GO +ALTER TABLE [dbo].[BoardMembership] CHECK CONSTRAINT [FK_BoardMembership_RefBoardMemberPositionType]; +GO + +ALTER TABLE [dbo].[BoardMembership] WITH CHECK ADD CONSTRAINT [FK_BoardMembership_RefBoardMembershipType] FOREIGN KEY([RefBoardMembershipTypeId]) +REFERENCES [dbo].[RefBoardMembershipType] ([RefBoardMembershipTypeId]); +GO +ALTER TABLE [dbo].[BoardMembership] CHECK CONSTRAINT [FK_BoardMembership_RefBoardMembershipType]; +GO + +ALTER TABLE [dbo].[RefLEAGFSAAssuranceofComplianceIndicator] WITH CHECK ADD CONSTRAINT [FK_RefLEAGFSAAssuranceofComplianceIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefLEAGFSAAssuranceofComplianceIndicator] CHECK CONSTRAINT [FK_RefLEAGFSAAssuranceofComplianceIndicator_Organization]; +GO + +ALTER TABLE [dbo].[BoardMembership] WITH CHECK ADD CONSTRAINT [FK_BoardMembership_OrganizationPersonRole] FOREIGN KEY([OrganizationPersonRoleId]) +REFERENCES [dbo].[OrganizationPersonRole] ([OrganizationPersonRoleId]); +GO +ALTER TABLE [dbo].[BoardMembership] CHECK CONSTRAINT [FK_BoardMembership_OrganizationPersonRole]; +GO + +ALTER TABLE [dbo].[RefLEAGFSAPolicyAssuranceIndicator] WITH CHECK ADD CONSTRAINT [FK_RefLEAGFSAPolicyAssuranceIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefLEAGFSAPolicyAssuranceIndicator] CHECK CONSTRAINT [FK_RefLEAGFSAPolicyAssuranceIndicator_Organization]; GO -ALTER TABLE [dbo].[CteCourse] WITH CHECK ADD CONSTRAINT [FK_CteCourse_RefSCEDCourseCode] FOREIGN KEY([RefSCEDCourseCodeId]) -REFERENCES [dbo].[RefSCEDCourseCode] ([RefSCEDCourseCodeId]); +ALTER TABLE [dbo].[RefLearningResourceIdentificationSystem] WITH CHECK ADD CONSTRAINT [FK_RefLearningResourceIdentificationSystem_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefLearningResourceIdentificationSystem] CHECK CONSTRAINT [FK_RefLearningResourceIdentificationSystem_Organization]; +GO + +ALTER TABLE [dbo].[RefLearningResourceStatus] WITH CHECK ADD CONSTRAINT [FK_RefLearningResourceStatus_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); GO -ALTER TABLE [dbo].[CteCourse] CHECK CONSTRAINT [FK_CteCourse_RefSCEDCourseCode]; +ALTER TABLE [dbo].[RefLearningResourceStatus] CHECK CONSTRAINT [FK_RefLearningResourceStatus_Organization]; GO -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] WITH CHECK ADD CONSTRAINT [FK_ELOrganizationStudentResponsibility_RecordStatus] FOREIGN KEY([RecordStatusId]) +ALTER TABLE [dbo].[RefLocalJobCategory] WITH CHECK ADD CONSTRAINT [FK_RefLocalJobCategory_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefLocalJobCategory] CHECK CONSTRAINT [FK_RefLocalJobCategory_Organization]; +GO + +ALTER TABLE [dbo].[BoardMembership] WITH CHECK ADD CONSTRAINT [FK_BoardMembership_RecordStatus] FOREIGN KEY([RecordStatusId]) REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[ELOrganizationStudentResponsibility] CHECK CONSTRAINT [FK_ELOrganizationStudentResponsibility_RecordStatus]; +ALTER TABLE [dbo].[BoardMembership] CHECK CONSTRAINT [FK_BoardMembership_RecordStatus]; +GO + +ALTER TABLE [dbo].[RefLocalJobFunction] WITH CHECK ADD CONSTRAINT [FK_RefLocalJobFunction_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefLocalJobFunction] CHECK CONSTRAINT [FK_RefLocalJobFunction_Organization]; +GO + +ALTER TABLE [dbo].[BoardMembership] WITH CHECK ADD CONSTRAINT [FK_BoardMembership_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); +GO +ALTER TABLE [dbo].[BoardMembership] CHECK CONSTRAINT [FK_BoardMembership_DataCollection]; +GO + +ALTER TABLE [dbo].[RefMilitaryCampaigns] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryCampaigns_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefMilitaryCampaigns] CHECK CONSTRAINT [FK_RefMilitaryCampaigns_Organization]; +GO + +ALTER TABLE [dbo].[RefMilitaryDeploymentStatusCode] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryDeploymentStatusCode_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefMilitaryDeploymentStatusCode] CHECK CONSTRAINT [FK_RefMilitaryDeploymentStatusCode_Organization]; +GO + +ALTER TABLE [dbo].[RefMilitaryDischargeCategory] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryDischargeCategory_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefMilitaryDischargeCategory] CHECK CONSTRAINT [FK_RefMilitaryDischargeCategory_Organization]; +GO + +ALTER TABLE [dbo].[RefMilitaryDuties] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryDuties_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefMilitaryDuties] CHECK CONSTRAINT [FK_RefMilitaryDuties_Organization]; +GO + +ALTER TABLE [dbo].[RefMilitaryExpertise] WITH CHECK ADD CONSTRAINT [FK_RefMilitaryExpertise_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefMilitaryExpertise] CHECK CONSTRAINT [FK_RefMilitaryExpertise_Organization]; +GO + +ALTER TABLE [dbo].[OrganizationPolicy] WITH CHECK ADD CONSTRAINT [FK_OrganizationPolicy_RefDEIPolicyIndicator] FOREIGN KEY([RefDEIPolicyIndicatorId]) +REFERENCES [dbo].[RefDEIPolicyIndicator] ([RefDEIPolicyIndicatorId]); +GO +ALTER TABLE [dbo].[OrganizationPolicy] CHECK CONSTRAINT [FK_OrganizationPolicy_RefDEIPolicyIndicator]; +GO + +ALTER TABLE [dbo].[RefMostPrevalentLevelOfInstitution] WITH CHECK ADD CONSTRAINT [FK_RefMostPrevalentLevelOfInstitution_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefMostPrevalentLevelOfInstitution] CHECK CONSTRAINT [FK_RefMostPrevalentLevelOfInstitution_Organization]; +GO + +ALTER TABLE [dbo].[K12StudentEnrollment] WITH CHECK ADD CONSTRAINT [FK_K12StudentEnrollment_RefAdjustedExitOrWithdrawalType] FOREIGN KEY([RefAdjustedExitOrWithdrawalTypeId]) +REFERENCES [dbo].[RefAdjustedExitOrWithdrawalType] ([RefAdjustedExitOrWithdrawalTypeId]); +GO +ALTER TABLE [dbo].[K12StudentEnrollment] CHECK CONSTRAINT [FK_K12StudentEnrollment_RefAdjustedExitOrWithdrawalType]; +GO + +ALTER TABLE [dbo].[RefNationalGuardIndicator] WITH CHECK ADD CONSTRAINT [FK_RefNationalGuardIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefNationalGuardIndicator] CHECK CONSTRAINT [FK_RefNationalGuardIndicator_Organization]; +GO + +ALTER TABLE [dbo].[PersonTransportationEligibility] WITH CHECK ADD CONSTRAINT [FK_PersonTransportationEligibility_RefTransportationPublicExpenseEligibilityType] FOREIGN KEY([RefTransportationPublicExpenseEligibilityTypeId]) +REFERENCES [dbo].[RefTransportationPublicExpenseEligibilityType] ([RefTransportationPublicExpenseEligibilityTypeId]); +GO +ALTER TABLE [dbo].[PersonTransportationEligibility] CHECK CONSTRAINT [FK_PersonTransportationEligibility_RefTransportationPublicExpenseEligibilityType]; GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] WITH CHECK ADD CONSTRAINT [FK_OrganizationEnrollmentCapacity_RefAdjustedCapacityReasonType] FOREIGN KEY([RefAdjustedCapacityReasonTypeId]) -REFERENCES [dbo].[RefAdjustedCapacityReasonType] ([RefAdjustedCapacityReasonTypeId]); +ALTER TABLE [dbo].[RefPartBPostsecondaryOutcomesIndicator] WITH CHECK ADD CONSTRAINT [FK_RefPartBPostsecondaryOutcomesIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] CHECK CONSTRAINT [FK_OrganizationEnrollmentCapacity_RefAdjustedCapacityReasonType]; +ALTER TABLE [dbo].[RefPartBPostsecondaryOutcomesIndicator] CHECK CONSTRAINT [FK_RefPartBPostsecondaryOutcomesIndicator_Organization]; GO -ALTER TABLE [dbo].[ELOrganizationFunds] WITH CHECK ADD CONSTRAINT [FK_ELOrganizationFunds_RefAdministrativeFundingControl] FOREIGN KEY([RefAdministrativeFundingControlId]) -REFERENCES [dbo].[RefAdministrativeFundingControl] ([RefAdministrativeFundingControlId]); +ALTER TABLE [dbo].[PersonTransportationEligibility] WITH CHECK ADD CONSTRAINT [FK_PersonTransportationEligibility_RefTransportationStatusType] FOREIGN KEY([RefTransportationStatusTypeId]) +REFERENCES [dbo].[RefTransportationStatusType] ([RefTransportationStatusTypeId]); +GO +ALTER TABLE [dbo].[PersonTransportationEligibility] CHECK CONSTRAINT [FK_PersonTransportationEligibility_RefTransportationStatusType]; +GO + +ALTER TABLE [dbo].[RefPerkinsPostProgramPlacementIndicator] WITH CHECK ADD CONSTRAINT [FK_RefPerkinsPostProgramPlacementIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); GO -ALTER TABLE [dbo].[ELOrganizationFunds] CHECK CONSTRAINT [FK_ELOrganizationFunds_RefAdministrativeFundingControl]; +ALTER TABLE [dbo].[RefPerkinsPostProgramPlacementIndicator] CHECK CONSTRAINT [FK_RefPerkinsPostProgramPlacementIndicator_Organization]; GO -ALTER TABLE [dbo].[K12Course] WITH CHECK ADD CONSTRAINT [FK_K12Course_RefSCEDCourseCode] FOREIGN KEY([RefSCEDCourseCodeId]) -REFERENCES [dbo].[RefSCEDCourseCode] ([RefSCEDCourseCodeId]); +ALTER TABLE [dbo].[PersonTransportationEligibility] WITH CHECK ADD CONSTRAINT [FK_PersonTransportationEligibility_RefTransportationStateAidQualificationType] FOREIGN KEY([RefTransportationStateAidQualificationTypeId]) +REFERENCES [dbo].[RefTransportationStateAidQualificationType] ([RefTransportationStateAidQualificationTypeId]); GO -ALTER TABLE [dbo].[K12Course] CHECK CONSTRAINT [FK_K12Course_RefSCEDCourseCode]; +ALTER TABLE [dbo].[PersonTransportationEligibility] CHECK CONSTRAINT [FK_PersonTransportationEligibility_RefTransportationStateAidQualificationType]; GO -ALTER TABLE [dbo].[RefAssessmentTypeAdministeredToEnglishLearners] WITH CHECK ADD CONSTRAINT [FK_RefAssessmentTypeAdministeredToEnglishLearners_Organization] FOREIGN KEY([RefJurisdictionId]) +ALTER TABLE [dbo].[RefProjectedHighSchoolDiplomaType] WITH CHECK ADD CONSTRAINT [FK_RefProjectedHighSchoolDiplomaType_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]); GO -ALTER TABLE [dbo].[RefAssessmentTypeAdministeredToEnglishLearners] CHECK CONSTRAINT [FK_RefAssessmentTypeAdministeredToEnglishLearners_Organization]; +ALTER TABLE [dbo].[RefProjectedHighSchoolDiplomaType] CHECK CONSTRAINT [FK_RefProjectedHighSchoolDiplomaType_Organization]; GO -ALTER TABLE [dbo].[Assessment] WITH CHECK ADD CONSTRAINT [FK_Assessment_RefAssessmentTypeAdministeredToEnglishLearners] FOREIGN KEY([RefAssessmentTypeAdministeredToEnglishLearnersId]) -REFERENCES [dbo].[RefAssessmentTypeAdministeredToEnglishLearners] ([RefAssessmentTypeAdministeredToEnglishLearnersId]); +ALTER TABLE [dbo].[RefStandardOccupationalClassification] WITH CHECK ADD CONSTRAINT [FK_RefStandardOccupationalClassification_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefStandardOccupationalClassification] CHECK CONSTRAINT [FK_RefStandardOccupationalClassification_Organization]; +GO + +ALTER TABLE [dbo].[RefStudentDropoutStatus] WITH CHECK ADD CONSTRAINT [FK_RefStudentDropoutStatus_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefStudentDropoutStatus] CHECK CONSTRAINT [FK_RefStudentDropoutStatus_Organization]; +GO + +ALTER TABLE [dbo].[RefTeenParentIndicator] WITH CHECK ADD CONSTRAINT [FK_RefTeenParentIndicator_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); +GO +ALTER TABLE [dbo].[RefTeenParentIndicator] CHECK CONSTRAINT [FK_RefTeenParentIndicator_Organization]; +GO + +ALTER TABLE [dbo].[RefTransportationPublicExpenseEligibilityType] WITH CHECK ADD CONSTRAINT [FK_RefTransportationPublicExpenseEligibilityType_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); GO -ALTER TABLE [dbo].[Assessment] CHECK CONSTRAINT [FK_Assessment_RefAssessmentTypeAdministeredToEnglishLearners]; +ALTER TABLE [dbo].[RefTransportationPublicExpenseEligibilityType] CHECK CONSTRAINT [FK_RefTransportationPublicExpenseEligibilityType_Organization]; GO -ALTER TABLE [dbo].[ELStaffEmployment] WITH CHECK ADD CONSTRAINT [FK_ELStaffEmployment_RefEmploymentContractType] FOREIGN KEY([RefEmploymentContractTypeId]) -REFERENCES [dbo].[RefEmploymentContractType] ([RefEmploymentContractTypeId]); +ALTER TABLE [dbo].[PersonTransportationEligibility] WITH CHECK ADD CONSTRAINT [FK_PersonTransportationEligibility_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[ELStaffEmployment] CHECK CONSTRAINT [FK_ELStaffEmployment_RefEmploymentContractType]; +ALTER TABLE [dbo].[PersonTransportationEligibility] CHECK CONSTRAINT [FK_PersonTransportationEligibility_RecordStatus]; GO -ALTER TABLE [dbo].[ELOrganization] WITH CHECK ADD CONSTRAINT [FK_ELOrganization_RefControlOfInstitution] FOREIGN KEY([RefControlOfInstitutionId]) -REFERENCES [dbo].[RefControlOfInstitution] ([RefControlOfInstitutionId]); +ALTER TABLE [dbo].[RefTransportationStateAidQualificationType] WITH CHECK ADD CONSTRAINT [FK_RefTransportationStateAidQualificationType_Organization] FOREIGN KEY([RefJurisdictionId]) +REFERENCES [dbo].[Organization] ([OrganizationId]); GO -ALTER TABLE [dbo].[ELOrganization] CHECK CONSTRAINT [FK_ELOrganization_RefControlOfInstitution]; +ALTER TABLE [dbo].[RefTransportationStateAidQualificationType] CHECK CONSTRAINT [FK_RefTransportationStateAidQualificationType_Organization]; GO -ALTER TABLE [dbo].[Course] WITH CHECK ADD CONSTRAINT [FK_Course_RefCourseLevelType] FOREIGN KEY([RefCourseLevelTypeId]) -REFERENCES [dbo].[RefCourseLevelType] ([RefCourseLevelTypeId]); +ALTER TABLE [dbo].[PersonTransportationEligibility] WITH CHECK ADD CONSTRAINT [FK_PersonTransportationEligibility_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[Course] CHECK CONSTRAINT [FK_Course_RefCourseLevelType]; +ALTER TABLE [dbo].[PersonTransportationEligibility] CHECK CONSTRAINT [FK_PersonTransportationEligibility_DataCollection]; GO -ALTER TABLE [dbo].[RefEdFactsCertificationStatus] WITH CHECK ADD CONSTRAINT [FK_RefEdFactsCertificationStatus_Organization] FOREIGN KEY([RefJurisdictionId]) +ALTER TABLE [dbo].[RefTransportationStatusType] WITH CHECK ADD CONSTRAINT [FK_RefTransportationStatusType_Organization] FOREIGN KEY([RefJurisdictionId]) REFERENCES [dbo].[Organization] ([OrganizationId]); GO -ALTER TABLE [dbo].[RefEdFactsCertificationStatus] CHECK CONSTRAINT [FK_RefEdFactsCertificationStatus_Organization]; +ALTER TABLE [dbo].[RefTransportationStatusType] CHECK CONSTRAINT [FK_RefTransportationStatusType_Organization]; GO -ALTER TABLE [dbo].[K12StaffAssignment] WITH CHECK ADD CONSTRAINT [FK_K12StaffAssignment_RefEdFactsCertificationStatus] FOREIGN KEY([RefEdFactsCertificationStatusId]) -REFERENCES [dbo].[RefEdFactsCertificationStatus] ([RefEdFactsCertificationStatusId]); +ALTER TABLE [dbo].[TeacherEducationCredentialExam] WITH CHECK ADD CONSTRAINT [FK_TeacherEducationCredentialExam_AssessmentResult] FOREIGN KEY([AssessmentResultId]) +REFERENCES [dbo].[AssessmentResult] ([AssessmentResultId]); GO -ALTER TABLE [dbo].[K12StaffAssignment] CHECK CONSTRAINT [FK_K12StaffAssignment_RefEdFactsCertificationStatus]; +ALTER TABLE [dbo].[TeacherEducationCredentialExam] CHECK CONSTRAINT [FK_TeacherEducationCredentialExam_AssessmentResult]; GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] WITH CHECK ADD CONSTRAINT [FK_OrganizationEnrollmentCapacity_OrganizationCalendarSession] FOREIGN KEY([OrganizationCalendarSessionId]) +ALTER TABLE [dbo].[OrganizationCalendarSessionRelationship] WITH CHECK ADD CONSTRAINT [FK_OrganizationCalendarSessionRelationship_OrganizationCalendarSession] FOREIGN KEY([OrganizationCalendarSessionId]) REFERENCES [dbo].[OrganizationCalendarSession] ([OrganizationCalendarSessionId]); GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] CHECK CONSTRAINT [FK_OrganizationEnrollmentCapacity_OrganizationCalendarSession]; +ALTER TABLE [dbo].[OrganizationCalendarSessionRelationship] CHECK CONSTRAINT [FK_OrganizationCalendarSessionRelationship_OrganizationCalendarSession]; GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) + +ALTER TABLE [dbo].[OrganizationCalendarSessionRelationship] WITH CHECK ADD CONSTRAINT [FK_OrganizationCalendarSessionRelationship_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] CHECK CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_RecordStatus] +ALTER TABLE [dbo].[OrganizationCalendarSessionRelationship] CHECK CONSTRAINT [FK_OrganizationCalendarSessionRelationship_RecordStatus]; GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] WITH CHECK ADD CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_DataCollection] FOREIGN KEY([DataCollectionId]) -REFERENCES [dbo].[DataCollection] ([DataCollectionId]) + +ALTER TABLE [dbo].[OrganizationCalendarSessionRelationship] WITH CHECK ADD CONSTRAINT [FK_OrganizationCalendarSessionRelationship_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[OrganizationFinancialFinancialAccountLocal] CHECK CONSTRAINT [FK_OrganizationFinancialFinancialAccountLocal_DataCollection] +ALTER TABLE [dbo].[OrganizationCalendarSessionRelationship] CHECK CONSTRAINT [FK_OrganizationCalendarSessionRelationship_DataCollection]; GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] WITH CHECK ADD CONSTRAINT [FK_OrganizationEnrollmentCapacity_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) + +ALTER TABLE [dbo].[RoleAttendance] WITH CHECK ADD CONSTRAINT [FK_RoleAttendance_RefChronicStudentAbsenteeismIndicator] FOREIGN KEY([RefChronicStudentAbsenteeismIndicatorId]) +REFERENCES [dbo].[RefChronicStudentAbsenteeismIndicator] ([RefChronicStudentAbsenteeismIndicatorId]); GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] CHECK CONSTRAINT [FK_OrganizationEnrollmentCapacity_RecordStatus] +ALTER TABLE [dbo].[RoleAttendance] CHECK CONSTRAINT [FK_RoleAttendance_RefChronicStudentAbsenteeismIndicator]; GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] WITH CHECK ADD CONSTRAINT [FK_OrganizationEnrollmentCapacity_DataCollection] FOREIGN KEY([DataCollectionId]) -REFERENCES [dbo].[DataCollection] ([DataCollectionId]) + +ALTER TABLE [dbo].[CourseRelationship] WITH CHECK ADD CONSTRAINT [FK_CourseRelationship_Course] FOREIGN KEY([CourseId]) +REFERENCES [dbo].[Course] ([CourseId]); GO -ALTER TABLE [dbo].[OrganizationEnrollmentCapacity] CHECK CONSTRAINT [FK_OrganizationEnrollmentCapacity_DataCollection] +ALTER TABLE [dbo].[CourseRelationship] CHECK CONSTRAINT [FK_CourseRelationship_Course]; GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] WITH CHECK ADD CONSTRAINT [FK_OrganizationProjectBasedLearning_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) + +ALTER TABLE [dbo].[CourseRelationship] WITH CHECK ADD CONSTRAINT [FK_CourseRelationship_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] CHECK CONSTRAINT [FK_OrganizationProjectBasedLearning_RecordStatus] +ALTER TABLE [dbo].[CourseRelationship] CHECK CONSTRAINT [FK_CourseRelationship_RecordStatus]; GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] WITH CHECK ADD CONSTRAINT [FK_OrganizationProjectBasedLearning_DataCollection] FOREIGN KEY([DataCollectionId]) -REFERENCES [dbo].[DataCollection] ([DataCollectionId]) + +ALTER TABLE [dbo].[CourseRelationship] WITH CHECK ADD CONSTRAINT [FK_CourseRelationship_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); GO -ALTER TABLE [dbo].[OrganizationProjectBasedLearning] CHECK CONSTRAINT [FK_OrganizationProjectBasedLearning_DataCollection] +ALTER TABLE [dbo].[CourseRelationship] CHECK CONSTRAINT [FK_CourseRelationship_DataCollection]; GO -ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] WITH CHECK ADD CONSTRAINT [FK_OrganizationPersonRoleRelationship_RecordStatus] FOREIGN KEY([RecordStatusId]) -REFERENCES [dbo].[RecordStatus] ([RecordStatusId]) + +ALTER TABLE [dbo].[LearningResourceStatus] WITH CHECK ADD CONSTRAINT [FK_LearningResourceStatus_RecordStatus] FOREIGN KEY([RecordStatusId]) +REFERENCES [dbo].[RecordStatus] ([RecordStatusId]); +GO +ALTER TABLE [dbo].[LearningResourceStatus] CHECK CONSTRAINT [FK_LearningResourceStatus_RecordStatus]; GO -ALTER TABLE [dbo].[OrganizationPersonRoleRelationship] CHECK CONSTRAINT [FK_OrganizationPersonRoleRelationship_RecordStatus] + +ALTER TABLE [dbo].[PsInstitution] WITH CHECK ADD CONSTRAINT [FK_PsInstitution_RefMostPrevalentLevelOfInstitution] FOREIGN KEY([RefMostPrevalentLevelOfInstitutionId]) +REFERENCES [dbo].[RefMostPrevalentLevelOfInstitution] ([RefMostPrevalentLevelOfInstitutionId]); +GO +ALTER TABLE [dbo].[PsInstitution] CHECK CONSTRAINT [FK_PsInstitution_RefMostPrevalentLevelOfInstitution]; +GO + +ALTER TABLE [dbo].[K12StudentAcademicRecord] WITH CHECK ADD CONSTRAINT [FK_K12StudentAcademicRecord_RefProjectedHighSchoolDiplomaType] FOREIGN KEY([RefProjectedHighSchoolDiplomaTypeId]) +REFERENCES [dbo].[RefProjectedHighSchoolDiplomaType] ([RefProjectedHighSchoolDiplomaTypeId]); +GO +ALTER TABLE [dbo].[K12StudentAcademicRecord] CHECK CONSTRAINT [FK_K12StudentAcademicRecord_RefProjectedHighSchoolDiplomaType]; +GO + +ALTER TABLE [dbo].[LearningResourceIdentifier] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIdentifier_RefLearningResourceIdentificationSystem] FOREIGN KEY([RefLearningResourceIdentificationSystemId]) +REFERENCES [dbo].[RefLearningResourceIdentificationSystem] ([RefLearningResourceIdentificationSystemId]); +GO +ALTER TABLE [dbo].[LearningResourceIdentifier] CHECK CONSTRAINT [FK_LearningResourceIdentifier_RefLearningResourceIdentificationSystem]; +GO + +ALTER TABLE [dbo].[LearningResourceIdentifier] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIdentifier_LearningResource] FOREIGN KEY([LearningResourceId]) +REFERENCES [dbo].[LearningResource] ([LearningResourceId]); +GO +ALTER TABLE [dbo].[LearningResourceIdentifier] CHECK CONSTRAINT [FK_LearningResourceIdentifier_LearningResource]; GO +ALTER TABLE [dbo].[LearningResourceIdentifier] WITH CHECK ADD CONSTRAINT [FK_LearningResourceIdentifier_DataCollection] FOREIGN KEY([DataCollectionId]) +REFERENCES [dbo].[DataCollection] ([DataCollectionId]); +GO +ALTER TABLE [dbo].[LearningResourceIdentifier] CHECK CONSTRAINT [FK_LearningResourceIdentifier_DataCollection]; +GO ------------------------------------------------- + +------------------------------------------------------- -----Section 4 Rebuilding a Table -------------- ------------------------------------------------- +-------------------------------------------------------- --No table rebuilds in this update. ----------------------------------------------------- +--------------------------------------------------------------- ----Section 5 Update the reference tables ---------- ----------------------------------------------------- +--------------------------------------------------------------- + DECLARE @updateExisting bit = 1 PRINT N'Populate RefAbsentAttendanceCategory table' @@ -1955,6 +3349,28 @@ ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAccreditationAgency] SET [Description] = 'Other Accreditation Agency', [Definition] = 'Other Accreditation Agency', [SortOrder] = 10.00 WHERE [Code] = 'Other' END END +PRINT N'Populate RefActiveMilitaryStatusIndicator table' + +IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefActiveMilitaryStatusIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) +BEGIN +IF NOT EXISTS (SELECT 1 FROM dbo.[RefActiveMilitaryStatusIndicator] WHERE [Code] = 'NotActive') BEGIN INSERT INTO dbo.[RefActiveMilitaryStatusIndicator]([Code], [Description], [Definition], [SortOrder]) +VALUES ('NotActive', 'Not Active', 'Person is not active in the military.', 1.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActiveMilitaryStatusIndicator] +SET [Description] = 'Not Active', [Definition] = 'Person is not active in the military.', [SortOrder] = 1.00 WHERE [Code] = 'NotActive' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefActiveMilitaryStatusIndicator] WHERE [Code] = 'Active') BEGIN INSERT INTO dbo.[RefActiveMilitaryStatusIndicator]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Active', 'Active', 'Student is an Active member of the Active Duty Forces, National Guard, or Reserve Forces.', 3.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActiveMilitaryStatusIndicator] +SET [Description] = 'Active', [Definition] = 'Student is an Active member of the Active Duty Forces, National Guard, or Reserve Forces.', [SortOrder] = 3.00 WHERE [Code] = 'Active' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefActiveMilitaryStatusIndicator] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefActiveMilitaryStatusIndicator]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Unknown', 'Unknown', 'It is unknown whether the person is active in the military.', 5.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActiveMilitaryStatusIndicator] +SET [Description] = 'Unknown', [Definition] = 'It is unknown whether the person is active in the military.', [SortOrder] = 5.00 WHERE [Code] = 'Unknown' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefActiveMilitaryStatusIndicator] WHERE [Code] = 'NationalGuardOrReserve') BEGIN INSERT INTO dbo.[RefActiveMilitaryStatusIndicator]([Code], [Description], [Definition], [SortOrder]) +VALUES ('NationalGuardOrReserve', 'National Guard Or Reserve', 'Person is a dependent of a member of the National Guard (not full-time duty) or Reserve Forces (Army, Navy, Air Force, Marine Corps, or Coast Guard).', 6.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefActiveMilitaryStatusIndicator] +SET [Description] = 'National Guard Or Reserve', [Definition] = 'Person is a dependent of a member of the National Guard (not full-time duty) or Reserve Forces (Army, Navy, Air Force, Marine Corps, or Coast Guard).', [SortOrder] = 6.00 WHERE [Code] = 'NationalGuardOrReserve' END +END + PRINT N'Populate RefActivityRecognitionType table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefActivityRecognitionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) @@ -6585,10 +8001,18 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'TeacherRepo VALUES ('TeacherReport', 'Teacher Report', 'Teacher Report is specified as the category of an assessment based on format and content.', 46.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] SET [Description] = 'Teacher Report', [Definition] = 'Teacher Report is specified as the category of an assessment based on format and content.', [SortOrder] = 46.00 WHERE [Code] = 'TeacherReport' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'AlternateAssessmentAlternateStandards') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('AlternateAssessmentAlternateStandards', 'Alternate assessment/alternate standards', 'Alternate assessment/alternate standards is specified as the category of as assessment based on format and content.', 47.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] +SET [Description] = 'Alternate assessment/alternate standards', [Definition] = 'Alternate assessment/alternate standards is specified as the category of as assessment based on format and content.', [SortOrder] = 47.00 WHERE [Code] = 'AlternateAssessmentAlternateStandards' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) VALUES ('Other', 'Other', 'Other is specified as the category of an assessment based on format and content.', 48.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] SET [Description] = 'Other', [Definition] = 'Other is specified as the category of an assessment based on format and content.', [SortOrder] = 48.00 WHERE [Code] = 'Other' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefAssessmentType] WHERE [Code] = 'WorkplaceSkills') BEGIN INSERT INTO dbo.[RefAssessmentType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('WorkplaceSkills', 'Workplace skills', 'Workplace skills is specified as the category of an assessment based on format and content to measure career-relevant skills.', 48.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefAssessmentType] +SET [Description] = 'Workplace skills', [Definition] = 'Workplace skills is specified as the category of an assessment based on format and content to measure career-relevant skills.', [SortOrder] = 48.00 WHERE [Code] = 'WorkplaceSkills' END END PRINT N'Populate RefAssessmentTypeAdministered table' @@ -9565,6 +10989,10 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefCipVersion] WHERE [Code] = 'CIP2010') BEGIN VALUES ('CIP2010', 'CIP 2010', 'CIP 2010 is the version of CIP being reported.', 5.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCipVersion] SET [Description] = 'CIP 2010', [Definition] = 'CIP 2010 is the version of CIP being reported.', [SortOrder] = 5.00 WHERE [Code] = 'CIP2010' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefCipVersion] WHERE [Code] = 'CIP2020') BEGIN INSERT INTO dbo.[RefCipVersion]([Code], [Description], [Definition], [SortOrder]) +VALUES ('CIP2020', 'CIP 2020', 'CIP 2020 is the version of CIP being reported.', 6.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCipVersion] +SET [Description] = 'CIP 2020', [Definition] = 'CIP 2020 is the version of CIP being reported.', [SortOrder] = 6.00 WHERE [Code] = 'CIP2020' END END PRINT N'Populate RefClassroomPositionType table' @@ -12289,6 +13717,14 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialType] WHERE [Code] = 'Registratio VALUES ('Registration', 'Registration', 'Registration is specified as the category of credential a person holds.', 5.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialType] SET [Description] = 'Registration', [Definition] = 'Registration is specified as the category of credential a person holds.', [SortOrder] = 5.00 WHERE [Code] = 'Registration' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialType] WHERE [Code] = 'HighSchoolDiploma') BEGIN INSERT INTO dbo.[RefCredentialType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('HighSchoolDiploma', 'High School Diploma', 'High School Diploma is specified as the category of credential a person holds.', 6.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialType] +SET [Description] = 'High School Diploma', [Definition] = 'High School Diploma is specified as the category of credential a person holds.', [SortOrder] = 6.00 WHERE [Code] = 'HighSchoolDiploma' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefCredentialType] WHERE [Code] = 'HighSchoolDiplomaDistinction') BEGIN INSERT INTO dbo.[RefCredentialType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('HighSchoolDiplomaDistinction', 'High School Diploma Distinction', 'High School Diploma Distinction is specified as the category of credential a person holds.', 7.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefCredentialType] +SET [Description] = 'High School Diploma Distinction', [Definition] = 'High School Diploma Distinction is specified as the category of credential a person holds.', [SortOrder] = 7.00 WHERE [Code] = 'HighSchoolDiplomaDistinction' END END PRINT N'Populate RefCreditHoursAppliedOtherProgram table' @@ -13213,122 +14649,134 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03 VALUES ('03087', 'Expulsion without services', 'Expulsion without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 17.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] SET [Description] = 'Expulsion without services', [Definition] = 'Expulsion without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 17.00 WHERE [Code] = '03087' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03120') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) +VALUES ('03120', 'Interim removal to alternative educational setting', 'Interim removal to an alternative educational setting is a consequence of an incident for the student(s) involved in an incident as the perpetrator(s).', 18.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] +SET [Description] = 'Interim removal to alternative educational setting', [Definition] = 'Interim removal to an alternative educational setting is a consequence of an incident for the student(s) involved in an incident as the perpetrator(s).', [SortOrder] = 18.00 WHERE [Code] = '03120' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03088') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03088', 'Juvenile justice referral', 'Juvenile justice referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 18.00) END +VALUES ('03088', 'Juvenile justice referral', 'Juvenile justice referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 19.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Juvenile justice referral', [Definition] = 'Juvenile justice referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 18.00 WHERE [Code] = '03088' END +SET [Description] = 'Juvenile justice referral', [Definition] = 'Juvenile justice referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 19.00 WHERE [Code] = '03088' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03089') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03089', 'Law enforcement referral', 'Law enforcement referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 19.00) END +VALUES ('03089', 'Law enforcement referral', 'Law enforcement referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 20.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Law enforcement referral', [Definition] = 'Law enforcement referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 19.00 WHERE [Code] = '03089' END +SET [Description] = 'Law enforcement referral', [Definition] = 'Law enforcement referral is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 20.00 WHERE [Code] = '03089' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03090') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03090', 'Letter of apology', 'Letter of apology is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 20.00) END +VALUES ('03090', 'Letter of apology', 'Letter of apology is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 21.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Letter of apology', [Definition] = 'Letter of apology is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 20.00 WHERE [Code] = '03090' END +SET [Description] = 'Letter of apology', [Definition] = 'Letter of apology is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 21.00 WHERE [Code] = '03090' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03091') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03091', 'Loss of privileges', 'Loss of privileges is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 21.00) END +VALUES ('03091', 'Loss of privileges', 'Loss of privileges is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 22.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Loss of privileges', [Definition] = 'Loss of privileges is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 21.00 WHERE [Code] = '03091' END +SET [Description] = 'Loss of privileges', [Definition] = 'Loss of privileges is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 22.00 WHERE [Code] = '03091' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '13357') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13357', 'Mechanical Restraint', 'Mechanical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 22.00) END +VALUES ('13357', 'Mechanical Restraint', 'Mechanical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 23.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Mechanical Restraint', [Definition] = 'Mechanical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 22.00 WHERE [Code] = '13357' END +SET [Description] = 'Mechanical Restraint', [Definition] = 'Mechanical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 23.00 WHERE [Code] = '13357' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03105') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03105', 'No action', 'No action is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 23.00) END +VALUES ('03105', 'No action', 'No action is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 24.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'No action', [Definition] = 'No action is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 23.00 WHERE [Code] = '03105' END +SET [Description] = 'No action', [Definition] = 'No action is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 24.00 WHERE [Code] = '03105' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '09998') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09998', 'None', 'None is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 24.00) END +VALUES ('09998', 'None', 'None is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 25.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'None', [Definition] = 'None is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 24.00 WHERE [Code] = '09998' END +SET [Description] = 'None', [Definition] = 'None is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 25.00 WHERE [Code] = '09998' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '09999') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09999', 'Other', 'Other is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 25.00) END +VALUES ('09999', 'Other', 'Other is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 26.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Other', [Definition] = 'Other is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 25.00 WHERE [Code] = '09999' END +SET [Description] = 'Other', [Definition] = 'Other is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 26.00 WHERE [Code] = '09999' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03092') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03092', 'Physical activity', 'Physical activity is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 26.00) END +VALUES ('03092', 'Physical activity', 'Physical activity is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 27.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Physical activity', [Definition] = 'Physical activity is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 26.00 WHERE [Code] = '03092' END +SET [Description] = 'Physical activity', [Definition] = 'Physical activity is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 27.00 WHERE [Code] = '03092' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '13358') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13358', 'Physical Restraint', 'Physical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 27.00) END +VALUES ('13358', 'Physical Restraint', 'Physical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 28.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Physical Restraint', [Definition] = 'Physical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 27.00 WHERE [Code] = '13358' END +SET [Description] = 'Physical Restraint', [Definition] = 'Physical Restraint is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 28.00 WHERE [Code] = '13358' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '75000') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75000', 'Placed in juvenile detention center', 'Placed in a juvenile detention center is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 29.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] +SET [Description] = 'Placed in juvenile detention center', [Definition] = 'Placed in a juvenile detention center is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 29.00 WHERE [Code] = '75000' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03158') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03158', 'Removal by a hearing officer', 'Removal by a hearing officer is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 28.00) END +VALUES ('03158', 'Removal by a hearing officer', 'Removal by a hearing officer is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 30.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Removal by a hearing officer', [Definition] = 'Removal by a hearing officer is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 28.00 WHERE [Code] = '03158' END +SET [Description] = 'Removal by a hearing officer', [Definition] = 'Removal by a hearing officer is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 30.00 WHERE [Code] = '03158' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03093') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03093', 'Reprimand', 'Reprimand is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 29.00) END +VALUES ('03093', 'Reprimand', 'Reprimand is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 31.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Reprimand', [Definition] = 'Reprimand is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 29.00 WHERE [Code] = '03093' END +SET [Description] = 'Reprimand', [Definition] = 'Reprimand is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 31.00 WHERE [Code] = '03093' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03094') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03094', 'Restitution', 'Restitution is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 30.00) END +VALUES ('03094', 'Restitution', 'Restitution is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 32.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Restitution', [Definition] = 'Restitution is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 30.00 WHERE [Code] = '03094' END +SET [Description] = 'Restitution', [Definition] = 'Restitution is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 32.00 WHERE [Code] = '03094' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03095') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03095', 'Saturday school', 'Saturday school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 31.00) END +VALUES ('03095', 'Saturday school', 'Saturday school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 33.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Saturday school', [Definition] = 'Saturday school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 31.00 WHERE [Code] = '03095' END +SET [Description] = 'Saturday school', [Definition] = 'Saturday school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 33.00 WHERE [Code] = '03095' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03096') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03096', 'School probation', 'School probation is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 32.00) END +VALUES ('03096', 'School probation', 'School probation is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 34.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] +SET [Description] = 'School probation', [Definition] = 'School probation is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 34.00 WHERE [Code] = '03096' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '75001') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75001', 'School-related arrest', 'School-related arrest, which is an arrest of a student for any activity conducted on school grounds, during off-campus school activities (including while taking school transportation), or due to a referral by any school official, is a consequence of an incident for the student(s) involved in an incident as perpetrator(s). All school-related arrests are also considered Law Enforcement Referrals, but not all Law Enforcement Referrals are School-Related arrests.', 35.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'School probation', [Definition] = 'School probation is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 32.00 WHERE [Code] = '03096' END +SET [Description] = 'School-related arrest', [Definition] = 'School-related arrest, which is an arrest of a student for any activity conducted on school grounds, during off-campus school activities (including while taking school transportation), or due to a referral by any school official, is a consequence of an incident for the student(s) involved in an incident as perpetrator(s). All school-related arrests are also considered Law Enforcement Referrals, but not all Law Enforcement Referrals are School-Related arrests.', [SortOrder] = 35.00 WHERE [Code] = '75001' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '13359') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13359', 'Seclusion', 'Seclusion is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 33.00) END +VALUES ('13359', 'Seclusion', 'Seclusion is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 36.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Seclusion', [Definition] = 'Seclusion is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 33.00 WHERE [Code] = '13359' END +SET [Description] = 'Seclusion', [Definition] = 'Seclusion is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 36.00 WHERE [Code] = '13359' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03097') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03097', 'Substance abuse counseling mandated', 'Substance abuse counseling mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 34.00) END +VALUES ('03097', 'Substance abuse counseling mandated', 'Substance abuse counseling mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 37.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Substance abuse counseling mandated', [Definition] = 'Substance abuse counseling mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 34.00 WHERE [Code] = '03097' END +SET [Description] = 'Substance abuse counseling mandated', [Definition] = 'Substance abuse counseling mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 37.00 WHERE [Code] = '03097' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03098') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03098', 'Substance abuse treatment mandated', 'Substance abuse treatment mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 35.00) END +VALUES ('03098', 'Substance abuse treatment mandated', 'Substance abuse treatment mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 38.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Substance abuse treatment mandated', [Definition] = 'Substance abuse treatment mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 35.00 WHERE [Code] = '03098' END +SET [Description] = 'Substance abuse treatment mandated', [Definition] = 'Substance abuse treatment mandated is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 38.00 WHERE [Code] = '03098' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03099') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03099', 'Suspension after school', 'Suspension after school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 36.00) END +VALUES ('03099', 'Suspension after school', 'Suspension after school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 39.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension after school', [Definition] = 'Suspension after school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 36.00 WHERE [Code] = '03099' END +SET [Description] = 'Suspension after school', [Definition] = 'Suspension after school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 39.00 WHERE [Code] = '03099' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03100') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03100', 'Suspension, in-school', 'Suspension, in-school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 37.00) END +VALUES ('03100', 'Suspension, in-school', 'Suspension, in-school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 40.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, in-school', [Definition] = 'Suspension, in-school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 37.00 WHERE [Code] = '03100' END +SET [Description] = 'Suspension, in-school', [Definition] = 'Suspension, in-school is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 40.00 WHERE [Code] = '03100' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03154') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03154', 'Suspension, out of school, greater than 10 consecutive school days', 'Suspension, out of school, greater than 10 consecutive school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 38.00) END +VALUES ('03154', 'Suspension, out of school, greater than 10 consecutive school days', 'Suspension, out of school, greater than 10 consecutive school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 41.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, out of school, greater than 10 consecutive school days', [Definition] = 'Suspension, out of school, greater than 10 consecutive school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 38.00 WHERE [Code] = '03154' END +SET [Description] = 'Suspension, out of school, greater than 10 consecutive school days', [Definition] = 'Suspension, out of school, greater than 10 consecutive school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 41.00 WHERE [Code] = '03154' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03155') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03155', 'Suspension, out of school, separate days cumulating to more than 10 school days', 'Suspension, out of school, separate days cumulating to more than 10 school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 39.00) END +VALUES ('03155', 'Suspension, out of school, separate days cumulating to more than 10 school days', 'Suspension, out of school, separate days cumulating to more than 10 school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 42.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, out of school, separate days cumulating to more than 10 school days', [Definition] = 'Suspension, out of school, separate days cumulating to more than 10 school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 39.00 WHERE [Code] = '03155' END +SET [Description] = 'Suspension, out of school, separate days cumulating to more than 10 school days', [Definition] = 'Suspension, out of school, separate days cumulating to more than 10 school days is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 42.00 WHERE [Code] = '03155' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03101') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03101', 'Suspension, out-of-school, with services', 'Suspension, out-of-school, with services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 40.00) END +VALUES ('03101', 'Suspension, out-of-school, with services', 'Suspension, out-of-school, with services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 43.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, out-of-school, with services', [Definition] = 'Suspension, out-of-school, with services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 40.00 WHERE [Code] = '03101' END +SET [Description] = 'Suspension, out-of-school, with services', [Definition] = 'Suspension, out-of-school, with services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 43.00 WHERE [Code] = '03101' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03102') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03102', 'Suspension, out-of-school, without services', 'Suspension, out-of-school, without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 41.00) END +VALUES ('03102', 'Suspension, out-of-school, without services', 'Suspension, out-of-school, without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 44.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Suspension, out-of-school, without services', [Definition] = 'Suspension, out-of-school, without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 41.00 WHERE [Code] = '03102' END +SET [Description] = 'Suspension, out-of-school, without services', [Definition] = 'Suspension, out-of-school, without services is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 44.00 WHERE [Code] = '03102' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03157') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03157', 'Unilateral removal - drug incident', 'Unilateral removal - drug incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 42.00) END +VALUES ('03157', 'Unilateral removal - drug incident', 'Unilateral removal - drug incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 45.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Unilateral removal - drug incident', [Definition] = 'Unilateral removal - drug incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 42.00 WHERE [Code] = '03157' END +SET [Description] = 'Unilateral removal - drug incident', [Definition] = 'Unilateral removal - drug incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 45.00 WHERE [Code] = '03157' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03156') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03156', 'Unilateral removal - weapon incident', 'Unilateral removal - weapon incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 43.00) END +VALUES ('03156', 'Unilateral removal - weapon incident', 'Unilateral removal - weapon incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 46.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Unilateral removal - weapon incident', [Definition] = 'Unilateral removal - weapon incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 43.00 WHERE [Code] = '03156' END +SET [Description] = 'Unilateral removal - weapon incident', [Definition] = 'Unilateral removal - weapon incident is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 46.00 WHERE [Code] = '03156' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '09997') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('09997', 'Unknown', 'Unknown is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 44.00) END +VALUES ('09997', 'Unknown', 'Unknown is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 47.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Unknown', [Definition] = 'Unknown is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 44.00 WHERE [Code] = '09997' END +SET [Description] = 'Unknown', [Definition] = 'Unknown is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 47.00 WHERE [Code] = '09997' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03103') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03103', 'Unsatisfactory behavior grade', 'Unsatisfactory behavior grade is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 45.00) END +VALUES ('03103', 'Unsatisfactory behavior grade', 'Unsatisfactory behavior grade is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 48.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Unsatisfactory behavior grade', [Definition] = 'Unsatisfactory behavior grade is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 45.00 WHERE [Code] = '03103' END +SET [Description] = 'Unsatisfactory behavior grade', [Definition] = 'Unsatisfactory behavior grade is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 48.00 WHERE [Code] = '03103' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefDisciplinaryActionTaken] WHERE [Code] = '03104') BEGIN INSERT INTO dbo.[RefDisciplinaryActionTaken]([Code], [Description], [Definition], [SortOrder]) -VALUES ('03104', 'Work detail', 'Work detail is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 46.00) END +VALUES ('03104', 'Work detail', 'Work detail is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', 49.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefDisciplinaryActionTaken] -SET [Description] = 'Work detail', [Definition] = 'Work detail is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 46.00 WHERE [Code] = '03104' END +SET [Description] = 'Work detail', [Definition] = 'Work detail is a consequence of an incident for the student(s) involved in an incident as perpetrator(s).', [SortOrder] = 49.00 WHERE [Code] = '03104' END END PRINT N'Populate RefDisciplineLengthDifferenceReason table' @@ -13611,6 +15059,26 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE VALUES ('None', 'None', 'The child is not enrolled in an early childhood program.', 21.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] SET [Description] = 'None', [Definition] = 'The child is not enrolled in an early childhood program.', [SortOrder] = 21.00 WHERE [Code] = 'None' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'FamilyChildCare') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('FamilyChildCare', 'Family Child Care', 'Child care provided within a caregiver''s home.', 22.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] +SET [Description] = 'Family Child Care', [Definition] = 'Child care provided within a caregiver''s home.', [SortOrder] = 22.00 WHERE [Code] = 'FamilyChildCare' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'HomeBasedInformalCare') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('HomeBasedInformalCare', 'Home-Based Informal Care', 'Child care provided within the child''s home.', 23.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] +SET [Description] = 'Home-Based Informal Care', [Definition] = 'Child care provided within the child''s home.', [SortOrder] = 23.00 WHERE [Code] = 'HomeBasedInformalCare' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'MigrantHeadStart') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('MigrantHeadStart', 'Migrant Head Start', 'Migrant Head Start is a system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 24.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] +SET [Description] = 'Migrant Head Start', [Definition] = 'Migrant Head Start is a system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 24.00 WHERE [Code] = 'MigrantHeadStart' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'PrivatePreKindergarten') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('PrivatePreKindergarten', 'Private Pre-Kindergarten', 'Private Pre-Kindergarten is a system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 25.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] +SET [Description] = 'Private Pre-Kindergarten', [Definition] = 'Private Pre-Kindergarten is a system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 25.00 WHERE [Code] = 'PrivatePreKindergarten' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEarlyChildhoodProgramEnrollmentType] WHERE [Code] = 'PublicPreKindergarten') BEGIN INSERT INTO dbo.[RefEarlyChildhoodProgramEnrollmentType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('PublicPreKindergarten', 'Public Pre-Kindergarten', 'Public Pre- Kindergarten is a system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', 26.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEarlyChildhoodProgramEnrollmentType] +SET [Description] = 'Public Pre-Kindergarten', [Definition] = 'Public Pre- Kindergarten is a system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', [SortOrder] = 26.00 WHERE [Code] = 'PublicPreKindergarten' END END PRINT N'Populate RefEarlyChildhoodServices table' @@ -14762,9 +16230,9 @@ VALUES ('Work', 'Work', 'Work is the type of electronic mail (e-mail) address li ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmailType] SET [Description] = 'Work', [Definition] = 'Work is the type of electronic mail (e-mail) address listed for a person or organization.', [SortOrder] = 2.00 WHERE [Code] = 'Work' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmailType] WHERE [Code] = 'Organizational') BEGIN INSERT INTO dbo.[RefEmailType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Organizational', 'Organizational (school) address', 'Organizational (school) address is the type of electronic mail (e-mail) address listed for a person or organization.', 3.00) END +VALUES ('Organizational', 'Organizational address', 'Organizational address is the type of electronic mail (e-mail) address listed for a person or organization.', 3.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmailType] -SET [Description] = 'Organizational (school) address', [Definition] = 'Organizational (school) address is the type of electronic mail (e-mail) address listed for a person or organization.', [SortOrder] = 3.00 WHERE [Code] = 'Organizational' END +SET [Description] = 'Organizational address', [Definition] = 'Organizational address is the type of electronic mail (e-mail) address listed for a person or organization.', [SortOrder] = 3.00 WHERE [Code] = 'Organizational' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefEmailType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefEmailType]([Code], [Description], [Definition], [SortOrder]) VALUES ('Other', 'Other', 'Other is the type of electronic mail (e-mail) address listed for a person or organization.', 4.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmailType] @@ -15425,6 +16893,18 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '09999') BEGIN IN VALUES ('09999', 'Other', 'The process by which the student entered a school during a given academic session is in a category not yet defined in CEDS.', 20.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] SET [Description] = 'Other', [Definition] = 'The process by which the student entered a school during a given academic session is in a category not yet defined in CEDS.', [SortOrder] = 20.00 WHERE [Code] = '09999' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '74001') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('74001', 'Initial Enrollment for the School Year', 'Initial enrollment for the School Year is the process by which the student entered a school during a given academic session.', 20.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] +SET [Description] = 'Initial Enrollment for the School Year', [Definition] = 'Initial enrollment for the School Year is the process by which the student entered a school during a given academic session.', [SortOrder] = 20.00 WHERE [Code] = '74001' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '74002') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('74002', 'Transfer from a private school in the state', 'Transfer from a private school in the same state is the process by which the student entered a school during a given academic session.', 21.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] +SET [Description] = 'Transfer from a private school in the state', [Definition] = 'Transfer from a private school in the same state is the process by which the student entered a school during a given academic session.', [SortOrder] = 21.00 WHERE [Code] = '74002' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntryType] WHERE [Code] = '74003') BEGIN INSERT INTO dbo.[RefEntryType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('74003', 'Transfer from a school outside of state', 'Transfer from a school (private or public) outside of state is the process by which the student entered a school during a given academic session.', 22.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntryType] +SET [Description] = 'Transfer from a school outside of state', [Definition] = 'Transfer from a school (private or public) outside of state is the process by which the student entered a school during a given academic session.', [SortOrder] = 22.00 WHERE [Code] = '74003' END END PRINT N'Populate RefEnvironmentSetting table' @@ -15683,6 +17163,18 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '73063 VALUES ('73063', 'Transferred to a charter school in a different state', 'The student exited from membership in the educational institution and transferred to a charter school in a different state.', 37.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] SET [Description] = 'Transferred to a charter school in a different state', [Definition] = 'The student exited from membership in the educational institution and transferred to a charter school in a different state.', [SortOrder] = 37.00 WHERE [Code] = '73063' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '73066') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('73066', 'Matriculation to another school in the same local education agency', 'The student exited from membership in the educational institution after successful completion of the highest instructional level offered at the school with the exception of graduation and is expected to enroll in another school in the same local education agency offering the next instructional level.', 38.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] +SET [Description] = 'Matriculation to another school in the same local education agency', [Definition] = 'The student exited from membership in the educational institution after successful completion of the highest instructional level offered at the school with the exception of graduation and is expected to enroll in another school in the same local education agency offering the next instructional level.', [SortOrder] = 38.00 WHERE [Code] = '73066' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '73068') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('73068', 'Transfer to a private school in the state', 'The student exited from membership in the education institution and transferred to a private school in the state.', 39.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] +SET [Description] = 'Transfer to a private school in the state', [Definition] = 'The student exited from membership in the education institution and transferred to a private school in the state.', [SortOrder] = 39.00 WHERE [Code] = '73068' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefExitOrWithdrawalType] WHERE [Code] = '73067') BEGIN INSERT INTO dbo.[RefExitOrWithdrawalType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('73067', 'Transferred to a school outside of the state', 'The student exited from membership in the education institution and transferred to a public or private school outside of the state.', 40.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefExitOrWithdrawalType] +SET [Description] = 'Transferred to a school outside of the state', [Definition] = 'The student exited from membership in the education institution and transferred to a public or private school outside of the state.', [SortOrder] = 40.00 WHERE [Code] = '73067' END END PRINT N'Populate RefFacilitiesMandateAuthorityType table' @@ -19445,6 +20937,18 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaDistinctionType] WHERE [Co VALUES ('SummaCumLaude', 'Summa cum laude', 'Summa cum laude is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', 6.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaDistinctionType] SET [Description] = 'Summa cum laude', [Definition] = 'Summa cum laude is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', [SortOrder] = 6.00 WHERE [Code] = 'SummaCumLaude' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaDistinctionType] WHERE [Code] = 'CareerandTechnical') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaDistinctionType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('CareerandTechnical', 'Career and Technical', 'Career and Technical is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', 7.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaDistinctionType] +SET [Description] = 'Career and Technical', [Definition] = 'Career and Technical is the distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', [SortOrder] = 7.00 WHERE [Code] = 'CareerandTechnical' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaDistinctionType] WHERE [Code] = 'SealofBiliteracy') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaDistinctionType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('SealofBiliteracy', 'Seal of Biliteracy', 'Seal of Biliteracy is the distinction of the diploma or credential awarded to a student in recognition of their completion of proficiency in two or more languages.', 8.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaDistinctionType] +SET [Description] = 'Seal of Biliteracy', [Definition] = 'Seal of Biliteracy is the distinction of the diploma or credential awarded to a student in recognition of their completion of proficiency in two or more languages.', [SortOrder] = 8.00 WHERE [Code] = 'SealofBiliteracy' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaDistinctionType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaDistinctionType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Other', 'Other', 'The distinction of the diploma or credential that is awarded to the student in recognition of their completion of the curricular requirements is an option that is not yet defined in CEDS.', 99.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaDistinctionType] +SET [Description] = 'Other', [Definition] = 'The distinction of the diploma or credential that is awarded to the student in recognition of their completion of the curricular requirements is an option that is not yet defined in CEDS.', [SortOrder] = 99.00 WHERE [Code] = 'Other' END END PRINT N'Populate RefHighSchoolDiplomaType table' @@ -19452,9 +20956,9 @@ PRINT N'Populate RefHighSchoolDiplomaType table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefHighSchoolDiplomaType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00806') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('00806', 'Regular diploma', 'Regular diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', 1.00) END +VALUES ('00806', 'Regular High School Diploma', 'The standard high school diploma awarded to the preponderance of students in the state that is fully aligned with state standards, or a higher diploma, except that a regular high school diploma shall not be aligned to the alternate academic achievement standards described in section 1111(b)(1)(E) of the Every Student Succeeds Act; and does not include a recognized equivalent of a diploma, such as a general equivalency diploma, certificate of completion, certificate of attendance, or similar lesser credential.', 1.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] -SET [Description] = 'Regular diploma', [Definition] = 'Regular diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 1.00 WHERE [Code] = '00806' END +SET [Description] = 'Regular High School Diploma', [Definition] = 'The standard high school diploma awarded to the preponderance of students in the state that is fully aligned with state standards, or a higher diploma, except that a regular high school diploma shall not be aligned to the alternate academic achievement standards described in section 1111(b)(1)(E) of the Every Student Succeeds Act; and does not include a recognized equivalent of a diploma, such as a general equivalency diploma, certificate of completion, certificate of attendance, or similar lesser credential.', [SortOrder] = 1.00 WHERE [Code] = '00806' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '00807') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) VALUES ('00807', 'Endorsed/advanced diploma', 'Endorsed/advanced diploma was awarded to the person in recognition of his/her completion of the curricular requirements.', 2.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] @@ -19503,6 +21007,10 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '0081 VALUES ('00819', 'Career and Technical Education certificate', 'Career and Technical Education certificate was awarded to the person in recognition of his/her completion of the curricular requirements.', 13.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] SET [Description] = 'Career and Technical Education certificate', [Definition] = 'Career and Technical Education certificate was awarded to the person in recognition of his/her completion of the curricular requirements.', [SortOrder] = 13.00 WHERE [Code] = '00819' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefHighSchoolDiplomaType] WHERE [Code] = '75000') BEGIN INSERT INTO dbo.[RefHighSchoolDiplomaType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75000', 'State Defined Alternate Diploma', 'An alternate diploma that is state defined, standards-based, aligned with the state requirements for the regular high school diploma, and obtained within the time period for which the state ensures the availability of a free and appropriate public education under section 612(a)(1) of the Individuals with Disabilities Education Act (20 U.S.C. 1412(a)(1)).', 14.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefHighSchoolDiplomaType] +SET [Description] = 'State Defined Alternate Diploma', [Definition] = 'An alternate diploma that is state defined, standards-based, aligned with the state requirements for the regular high school diploma, and obtained within the time period for which the state ensures the availability of a free and appropriate public education under section 612(a)(1) of the Individuals with Disabilities Education Act (20 U.S.C. 1412(a)(1)).', [SortOrder] = 14.00 WHERE [Code] = '75000' END END PRINT N'Populate RefHighSchoolGraduationRateIndicator table' @@ -20073,118 +21581,150 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04625') B VALUES ('04625', 'Arson', 'Arson is a behavior associated with the incident.', 2.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] SET [Description] = 'Arson', [Definition] = 'Arson is a behavior associated with the incident.', [SortOrder] = 2.00 WHERE [Code] = '04625' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75004') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75004', 'Assault', 'Assault, including aggravated assault and other assault, is a behavior associated with the incident.', 3.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Assault', [Definition] = 'Assault, including aggravated assault and other assault, is a behavior associated with the incident.', [SortOrder] = 3.00 WHERE [Code] = '75004' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04626') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04626', 'Attendance Policy Violation', 'Attendance Policy Violation is a behavior associated with the incident.', 3.00) END +VALUES ('04626', 'Attendance Policy Violation', 'Attendance Policy Violation is a behavior associated with the incident.', 4.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Attendance Policy Violation', [Definition] = 'Attendance Policy Violation is a behavior associated with the incident.', [SortOrder] = 3.00 WHERE [Code] = '04626' END +SET [Description] = 'Attendance Policy Violation', [Definition] = 'Attendance Policy Violation is a behavior associated with the incident.', [SortOrder] = 4.00 WHERE [Code] = '04626' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04632') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04632', 'Battery', 'Battery is a behavior associated with the incident.', 4.00) END +VALUES ('04632', 'Battery', 'Battery is a behavior associated with the incident.', 5.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Battery', [Definition] = 'Battery is a behavior associated with the incident.', [SortOrder] = 4.00 WHERE [Code] = '04632' END +SET [Description] = 'Battery', [Definition] = 'Battery is a behavior associated with the incident.', [SortOrder] = 5.00 WHERE [Code] = '04632' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75005') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75005', 'Bullying', 'Bullying is a behavior associated with the incident.', 6.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Bullying', [Definition] = 'Bullying is a behavior associated with the incident.', [SortOrder] = 6.00 WHERE [Code] = '75005' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04633') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04633', 'Burglary/Breaking and Entering', 'Burglary/Breaking and Entering is a behavior associated with the incident.', 5.00) END +VALUES ('04633', 'Burglary/Breaking and Entering', 'Burglary/Breaking and Entering is a behavior associated with the incident.', 7.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Burglary/Breaking and Entering', [Definition] = 'Burglary/Breaking and Entering is a behavior associated with the incident.', [SortOrder] = 5.00 WHERE [Code] = '04633' END +SET [Description] = 'Burglary/Breaking and Entering', [Definition] = 'Burglary/Breaking and Entering is a behavior associated with the incident.', [SortOrder] = 7.00 WHERE [Code] = '04633' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04634') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04634', 'Disorderly Conduct', 'Disorderly Conduct is a behavior associated with the incident.', 6.00) END +VALUES ('04634', 'Disorderly Conduct', 'Disorderly Conduct is a behavior associated with the incident.', 8.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Disorderly Conduct', [Definition] = 'Disorderly Conduct is a behavior associated with the incident.', [SortOrder] = 8.00 WHERE [Code] = '04634' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75000') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75000', 'Domestic Assault', 'Domestic Assault is any attempt to cause or willfully or recklessly cause bodily injury to a family or household member or willfully causes a family or household member to fear imminent serious bodily injury.', 9.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Disorderly Conduct', [Definition] = 'Disorderly Conduct is a behavior associated with the incident.', [SortOrder] = 6.00 WHERE [Code] = '04634' END +SET [Description] = 'Domestic Assault', [Definition] = 'Domestic Assault is any attempt to cause or willfully or recklessly cause bodily injury to a family or household member or willfully causes a family or household member to fear imminent serious bodily injury.', [SortOrder] = 9.00 WHERE [Code] = '75000' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04635') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04635', 'Drugs Excluding Alcohol and Tobacco', 'Drugs Excluding Alcohol and Tobacco is a behavior associated with the incident.', 7.00) END +VALUES ('04635', 'Drugs Excluding Alcohol and Tobacco', 'Drugs Excluding Alcohol and Tobacco is a behavior associated with the incident.', 10.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Drugs Excluding Alcohol and Tobacco', [Definition] = 'Drugs Excluding Alcohol and Tobacco is a behavior associated with the incident.', [SortOrder] = 7.00 WHERE [Code] = '04635' END +SET [Description] = 'Drugs Excluding Alcohol and Tobacco', [Definition] = 'Drugs Excluding Alcohol and Tobacco is a behavior associated with the incident.', [SortOrder] = 10.00 WHERE [Code] = '04635' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75006') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75006', 'Electronic Bullying', 'Electronic bullying, which is bullying behaviors that occur using technology including, but not limited to, phones, email, chat rooms, instant messaging, and online posts, is a behavior associated with the incident.', 11.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Electronic Bullying', [Definition] = 'Electronic bullying, which is bullying behaviors that occur using technology including, but not limited to, phones, email, chat rooms, instant messaging, and online posts, is a behavior associated with the incident.', [SortOrder] = 11.00 WHERE [Code] = '75006' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04645') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04645', 'Fighting', 'Fighting is a behavior associated with the incident.', 8.00) END +VALUES ('04645', 'Fighting', 'Fighting is a behavior associated with the incident.', 12.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Fighting', [Definition] = 'Fighting is a behavior associated with the incident.', [SortOrder] = 8.00 WHERE [Code] = '04645' END +SET [Description] = 'Fighting', [Definition] = 'Fighting is a behavior associated with the incident.', [SortOrder] = 12.00 WHERE [Code] = '04645' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '13354') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13354', 'Harassment or bullying on the basis of disability', 'Harassment or bullying on the basis of disability is a behavior associated with the incident.', 9.00) END +VALUES ('13354', 'Harassment or bullying on the basis of disability', 'Harassment or bullying on the basis of disability is a behavior associated with the incident.', 13.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment or bullying on the basis of disability', [Definition] = 'Harassment or bullying on the basis of disability is a behavior associated with the incident.', [SortOrder] = 9.00 WHERE [Code] = '13354' END +SET [Description] = 'Harassment or bullying on the basis of disability', [Definition] = 'Harassment or bullying on the basis of disability is a behavior associated with the incident.', [SortOrder] = 13.00 WHERE [Code] = '13354' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '13355') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13355', 'Harassment or bullying on the basis of race, color, or national origin', 'Harassment or bullying on the basis of race, color, or national origin is a behavior associated with the incident.', 10.00) END +VALUES ('13355', 'Harassment or bullying on the basis of race, color, or national origin', 'Harassment or bullying on the basis of race, color, or national origin is a behavior associated with the incident.', 14.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment or bullying on the basis of race, color, or national origin', [Definition] = 'Harassment or bullying on the basis of race, color, or national origin is a behavior associated with the incident.', [SortOrder] = 10.00 WHERE [Code] = '13355' END +SET [Description] = 'Harassment or bullying on the basis of race, color, or national origin', [Definition] = 'Harassment or bullying on the basis of race, color, or national origin is a behavior associated with the incident.', [SortOrder] = 14.00 WHERE [Code] = '13355' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '13356') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('13356', 'Harassment or bullying on the basis of sex', 'Harassment or bullying on the basis of sex is a behavior associated with the incident.', 11.00) END +VALUES ('13356', 'Harassment or bullying on the basis of sex', 'Harassment or bullying on the basis of sex is a behavior associated with the incident.', 15.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment or bullying on the basis of sex', [Definition] = 'Harassment or bullying on the basis of sex is a behavior associated with the incident.', [SortOrder] = 11.00 WHERE [Code] = '13356' END +SET [Description] = 'Harassment or bullying on the basis of sex', [Definition] = 'Harassment or bullying on the basis of sex is a behavior associated with the incident.', [SortOrder] = 15.00 WHERE [Code] = '13356' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04646') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04646', 'Harassment, Nonsexual', 'Harassment, Nonsexual is a behavior associated with the incident.', 12.00) END +VALUES ('04646', 'Harassment, Nonsexual', 'Harassment, Nonsexual is a behavior associated with the incident.', 16.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment, Nonsexual', [Definition] = 'Harassment, Nonsexual is a behavior associated with the incident.', [SortOrder] = 12.00 WHERE [Code] = '04646' END +SET [Description] = 'Harassment, Nonsexual', [Definition] = 'Harassment, Nonsexual is a behavior associated with the incident.', [SortOrder] = 16.00 WHERE [Code] = '04646' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04650') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04650', 'Harassment, Sexual', 'Harassment, Sexual is a behavior associated with the incident.', 13.00) END +VALUES ('04650', 'Harassment, Sexual', 'Harassment, Sexual is a behavior associated with the incident.', 17.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Harassment, Sexual', [Definition] = 'Harassment, Sexual is a behavior associated with the incident.', [SortOrder] = 17.00 WHERE [Code] = '04650' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75003') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75003', 'Hazing', 'Hazing is any act committed by a person, whether individually or in concert with others, against a student in connection with pledging, being initiated into, affiliating with, holding office in, or maintaining membership in any organization which is affiliated with an educational institution; and which is intended to have the effect of, or should reasonably be expected to have the effect of, humiliating, intimidating or demeaning the student or endangering the mental or physical health of a student.', 18.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Harassment, Sexual', [Definition] = 'Harassment, Sexual is a behavior associated with the incident.', [SortOrder] = 13.00 WHERE [Code] = '04650' END +SET [Description] = 'Hazing', [Definition] = 'Hazing is any act committed by a person, whether individually or in concert with others, against a student in connection with pledging, being initiated into, affiliating with, holding office in, or maintaining membership in any organization which is affiliated with an educational institution; and which is intended to have the effect of, or should reasonably be expected to have the effect of, humiliating, intimidating or demeaning the student or endangering the mental or physical health of a student.', [SortOrder] = 18.00 WHERE [Code] = '75003' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04651') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04651', 'Homicide', 'Homicide is a behavior associated with the incident.', 14.00) END +VALUES ('04651', 'Homicide', 'Homicide is a behavior associated with the incident.', 19.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Homicide', [Definition] = 'Homicide is a behavior associated with the incident.', [SortOrder] = 14.00 WHERE [Code] = '04651' END +SET [Description] = 'Homicide', [Definition] = 'Homicide is a behavior associated with the incident.', [SortOrder] = 19.00 WHERE [Code] = '04651' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04652') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04652', 'Inappropriate Use of Medication', 'Inappropriate Use of Medication is a behavior associated with the incident.', 15.00) END +VALUES ('04652', 'Inappropriate Use of Medication', 'Inappropriate Use of Medication is a behavior associated with the incident.', 20.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Inappropriate Use of Medication', [Definition] = 'Inappropriate Use of Medication is a behavior associated with the incident.', [SortOrder] = 15.00 WHERE [Code] = '04652' END +SET [Description] = 'Inappropriate Use of Medication', [Definition] = 'Inappropriate Use of Medication is a behavior associated with the incident.', [SortOrder] = 20.00 WHERE [Code] = '04652' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04659') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04659', 'Insubordination', 'Insubordination is a behavior associated with the incident.', 16.00) END +VALUES ('04659', 'Insubordination', 'Insubordination is a behavior associated with the incident.', 21.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Insubordination', [Definition] = 'Insubordination is a behavior associated with the incident.', [SortOrder] = 16.00 WHERE [Code] = '04659' END +SET [Description] = 'Insubordination', [Definition] = 'Insubordination is a behavior associated with the incident.', [SortOrder] = 21.00 WHERE [Code] = '04659' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04660') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04660', 'Kidnapping', 'Kidnapping is a behavior associated with the incident.', 17.00) END +VALUES ('04660', 'Kidnapping', 'Kidnapping is a behavior associated with the incident.', 22.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Kidnapping', [Definition] = 'Kidnapping is a behavior associated with the incident.', [SortOrder] = 17.00 WHERE [Code] = '04660' END +SET [Description] = 'Kidnapping', [Definition] = 'Kidnapping is a behavior associated with the incident.', [SortOrder] = 22.00 WHERE [Code] = '04660' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04661') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04661', 'Obscene Behavior', 'Obscene Behavior is a behavior associated with the incident.', 18.00) END +VALUES ('04661', 'Obscene Behavior', 'Obscene Behavior is a behavior associated with the incident.', 23.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Obscene Behavior', [Definition] = 'Obscene Behavior is a behavior associated with the incident.', [SortOrder] = 18.00 WHERE [Code] = '04661' END +SET [Description] = 'Obscene Behavior', [Definition] = 'Obscene Behavior is a behavior associated with the incident.', [SortOrder] = 23.00 WHERE [Code] = '04661' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04669') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04669', 'Physical Altercation, Minor', 'Physical Altercation, Minor is a behavior associated with the incident.', 19.00) END +VALUES ('04669', 'Physical Altercation, Minor', 'Physical Altercation, Minor is a behavior associated with the incident.', 24.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Physical Altercation, Minor', [Definition] = 'Physical Altercation, Minor is a behavior associated with the incident.', [SortOrder] = 19.00 WHERE [Code] = '04669' END +SET [Description] = 'Physical Altercation, Minor', [Definition] = 'Physical Altercation, Minor is a behavior associated with the incident.', [SortOrder] = 24.00 WHERE [Code] = '04669' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75007') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75007', 'Rape or Attempted Rape', 'Rape or attempted rape, which is forced sexual intercourse (vaginal, anal, or oral penetration) including sodomy and penetration with a foreign object, is a behavior associated with the incident.', 25.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Rape or Attempted Rape', [Definition] = 'Rape or attempted rape, which is forced sexual intercourse (vaginal, anal, or oral penetration) including sodomy and penetration with a foreign object, is a behavior associated with the incident.', [SortOrder] = 25.00 WHERE [Code] = '75007' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04670') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04670', 'Robbery', 'Robbery is a behavior associated with the incident.', 20.00) END +VALUES ('04670', 'Robbery', 'Robbery is a behavior associated with the incident.', 26.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Robbery', [Definition] = 'Robbery is a behavior associated with the incident.', [SortOrder] = 20.00 WHERE [Code] = '04670' END +SET [Description] = 'Robbery', [Definition] = 'Robbery is a behavior associated with the incident.', [SortOrder] = 26.00 WHERE [Code] = '04670' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04671') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04671', 'School Threat', 'School Threat is a behavior associated with the incident.', 21.00) END +VALUES ('04671', 'School Threat', 'School Threat is a behavior associated with the incident.', 27.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'School Threat', [Definition] = 'School Threat is a behavior associated with the incident.', [SortOrder] = 21.00 WHERE [Code] = '04671' END +SET [Description] = 'School Threat', [Definition] = 'School Threat is a behavior associated with the incident.', [SortOrder] = 27.00 WHERE [Code] = '04671' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04677') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04677', 'Sexual Battery (sexual assault)', 'Sexual Battery (sexual assault) is a behavior associated with the incident.', 22.00) END +VALUES ('04677', 'Sexual Battery (sexual assault)', 'Sexual Battery (sexual assault) is a behavior associated with the incident.', 28.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Sexual Battery (sexual assault)', [Definition] = 'Sexual Battery (sexual assault) is a behavior associated with the incident.', [SortOrder] = 22.00 WHERE [Code] = '04677' END +SET [Description] = 'Sexual Battery (sexual assault)', [Definition] = 'Sexual Battery (sexual assault) is a behavior associated with the incident.', [SortOrder] = 28.00 WHERE [Code] = '04677' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04678') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04678', 'Sexual Offenses, Other (lewd behavior, indecent exposure)', 'Sexual Offenses, Other (lewd behavior, indecent exposure) is a behavior associated with the incident.', 23.00) END +VALUES ('04678', 'Sexual Offenses, Other (lewd behavior, indecent exposure)', 'Sexual Offenses, Other (lewd behavior, indecent exposure) is a behavior associated with the incident.', 29.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Sexual Offenses, Other (lewd behavior, indecent exposure)', [Definition] = 'Sexual Offenses, Other (lewd behavior, indecent exposure) is a behavior associated with the incident.', [SortOrder] = 29.00 WHERE [Code] = '04678' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75001') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75001', 'Stalking', 'Stalking is to engage in the course of conduct that consists of following or lying-in-wait or harassing and serves no legitimate purpose and causes the person to fear for his or her physical safety or causes the person substantial emotional distress.', 30.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Sexual Offenses, Other (lewd behavior, indecent exposure)', [Definition] = 'Sexual Offenses, Other (lewd behavior, indecent exposure) is a behavior associated with the incident.', [SortOrder] = 23.00 WHERE [Code] = '04678' END +SET [Description] = 'Stalking', [Definition] = 'Stalking is to engage in the course of conduct that consists of following or lying-in-wait or harassing and serves no legitimate purpose and causes the person to fear for his or her physical safety or causes the person substantial emotional distress.', [SortOrder] = 30.00 WHERE [Code] = '75001' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04682') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04682', 'Theft', 'Theft is a behavior associated with the incident.', 24.00) END +VALUES ('04682', 'Theft', 'Theft is a behavior associated with the incident.', 31.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Theft', [Definition] = 'Theft is a behavior associated with the incident.', [SortOrder] = 24.00 WHERE [Code] = '04682' END +SET [Description] = 'Theft', [Definition] = 'Theft is a behavior associated with the incident.', [SortOrder] = 31.00 WHERE [Code] = '04682' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04686') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04686', 'Threat/Intimidation', 'Threat/Intimidation is a behavior associated with the incident.', 25.00) END +VALUES ('04686', 'Threat/Intimidation', 'Threat/Intimidation is a behavior associated with the incident.', 32.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Threat/Intimidation', [Definition] = 'Threat/Intimidation is a behavior associated with the incident.', [SortOrder] = 25.00 WHERE [Code] = '04686' END +SET [Description] = 'Threat/Intimidation', [Definition] = 'Threat/Intimidation is a behavior associated with the incident.', [SortOrder] = 32.00 WHERE [Code] = '04686' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04692') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04692', 'Tobacco Possession or Use', 'Tobacco Possession or Use is a behavior associated with the incident.', 26.00) END +VALUES ('04692', 'Tobacco Possession or Use', 'Tobacco Possession or Use is a behavior associated with the incident.', 33.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Tobacco Possession or Use', [Definition] = 'Tobacco Possession or Use is a behavior associated with the incident.', [SortOrder] = 26.00 WHERE [Code] = '04692' END +SET [Description] = 'Tobacco Possession or Use', [Definition] = 'Tobacco Possession or Use is a behavior associated with the incident.', [SortOrder] = 33.00 WHERE [Code] = '04692' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04699') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04699', 'Trespassing', 'Trespassing is a behavior associated with the incident.', 27.00) END +VALUES ('04699', 'Trespassing', 'Trespassing is a behavior associated with the incident.', 34.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Trespassing', [Definition] = 'Trespassing is a behavior associated with the incident.', [SortOrder] = 27.00 WHERE [Code] = '04699' END +SET [Description] = 'Trespassing', [Definition] = 'Trespassing is a behavior associated with the incident.', [SortOrder] = 34.00 WHERE [Code] = '04699' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '75002') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75002', 'Unlawful Restraint', 'Unlawful restraint is a behavior associated with the incident.', 35.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] +SET [Description] = 'Unlawful Restraint', [Definition] = 'Unlawful restraint is a behavior associated with the incident.', [SortOrder] = 35.00 WHERE [Code] = '75002' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04700') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04700', 'Vandalism', 'Vandalism is a behavior associated with the incident.', 28.00) END +VALUES ('04700', 'Vandalism', 'Vandalism is a behavior associated with the incident.', 36.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Vandalism', [Definition] = 'Vandalism is a behavior associated with the incident.', [SortOrder] = 28.00 WHERE [Code] = '04700' END +SET [Description] = 'Vandalism', [Definition] = 'Vandalism is a behavior associated with the incident.', [SortOrder] = 36.00 WHERE [Code] = '04700' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04704') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04704', 'Violation of School Rules', 'Violation of School Rules is a behavior associated with the incident.', 29.00) END +VALUES ('04704', 'Violation of School Rules', 'Violation of School Rules is a behavior associated with the incident.', 37.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Violation of School Rules', [Definition] = 'Violation of School Rules is a behavior associated with the incident.', [SortOrder] = 29.00 WHERE [Code] = '04704' END +SET [Description] = 'Violation of School Rules', [Definition] = 'Violation of School Rules is a behavior associated with the incident.', [SortOrder] = 37.00 WHERE [Code] = '04704' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefIncidentBehavior] WHERE [Code] = '04705') BEGIN INSERT INTO dbo.[RefIncidentBehavior]([Code], [Description], [Definition], [SortOrder]) -VALUES ('04705', 'Weapons Possession', 'Weapons Possession is a behavior associated with the incident.', 30.00) END +VALUES ('04705', 'Weapons Possession', 'Weapons Possession is a behavior associated with the incident.', 38.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefIncidentBehavior] -SET [Description] = 'Weapons Possession', [Definition] = 'Weapons Possession is a behavior associated with the incident.', [SortOrder] = 30.00 WHERE [Code] = '04705' END +SET [Description] = 'Weapons Possession', [Definition] = 'Weapons Possession is a behavior associated with the incident.', [SortOrder] = 38.00 WHERE [Code] = '04705' END END PRINT N'Populate RefIncidentBehaviorSecondary table' @@ -24086,31641 +25626,31669 @@ PRINT N'Populate RefISO6393Language table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefISO6393Language]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmn', '!Xóõ', NULL, 0.10) END +VALUES ('nmn', '!Xóõ', NULL, 1.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '!Xóõ', [Definition] = NULL, [SortOrder] = 0.10 WHERE [Code] = 'nmn' END +SET [Description] = '!Xóõ', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'nmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alu', '''Are''are', NULL, 0.20) END +VALUES ('alu', '''Are''are', NULL, 2.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '''Are''are', [Definition] = NULL, [SortOrder] = 0.20 WHERE [Code] = 'alu' END +SET [Description] = '''Are''are', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'alu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kud', '''Auhelawa', NULL, 0.30) END +VALUES ('kud', '''Auhelawa', NULL, 3.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '''Auhelawa', [Definition] = NULL, [SortOrder] = 0.30 WHERE [Code] = 'kud' END +SET [Description] = '''Auhelawa', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'kud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnh', '//Ani', NULL, 0.40) END +VALUES ('hnh', '//Ani', NULL, 4.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '//Ani', [Definition] = NULL, [SortOrder] = 0.40 WHERE [Code] = 'hnh' END +SET [Description] = '//Ani', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'hnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xeg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xeg', '//Xegwi', NULL, 0.50) END +VALUES ('xeg', '//Xegwi', NULL, 5.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '//Xegwi', [Definition] = NULL, [SortOrder] = 0.50 WHERE [Code] = 'xeg' END +SET [Description] = '//Xegwi', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = 'xeg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwj', '/Gwi', NULL, 0.60) END +VALUES ('gwj', '/Gwi', NULL, 6.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '/Gwi', [Definition] = NULL, [SortOrder] = 0.60 WHERE [Code] = 'gwj' END +SET [Description] = '/Gwi', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = 'gwj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xam', '/Xam', NULL, 0.70) END +VALUES ('xam', '/Xam', NULL, 7.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '/Xam', [Definition] = NULL, [SortOrder] = 0.70 WHERE [Code] = 'xam' END +SET [Description] = '/Xam', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = 'xam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huc', '=/Hua', NULL, 0.80) END +VALUES ('huc', '=/Hua', NULL, 8.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '=/Hua', [Definition] = NULL, [SortOrder] = 0.80 WHERE [Code] = 'huc' END +SET [Description] = '=/Hua', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = 'huc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnk', '||Gana', NULL, 0.90) END +VALUES ('gnk', '||Gana', NULL, 9.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = '||Gana', [Definition] = NULL, [SortOrder] = 0.90 WHERE [Code] = 'gnk' END +SET [Description] = '||Gana', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = 'gnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aou', 'A''ou', NULL, 1.00) END +VALUES ('aou', 'A''ou', NULL, 10.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'A''ou', [Definition] = NULL, [SortOrder] = 1.00 WHERE [Code] = 'aou' END +SET [Description] = 'A''ou', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = 'aou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apq', 'A-Pucikwar', NULL, 1.10) END +VALUES ('apq', 'A-Pucikwar', NULL, 11.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'A-Pucikwar', [Definition] = NULL, [SortOrder] = 1.10 WHERE [Code] = 'apq' END +SET [Description] = 'A-Pucikwar', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = 'apq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aiw', 'Aari', NULL, 1.20) END +VALUES ('aiw', 'Aari', NULL, 12.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aari', [Definition] = NULL, [SortOrder] = 1.20 WHERE [Code] = 'aiw' END +SET [Description] = 'Aari', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = 'aiw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aas', 'Aasáx', NULL, 1.30) END +VALUES ('aas', 'Aasáx', NULL, 13.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aasáx', [Definition] = NULL, [SortOrder] = 1.30 WHERE [Code] = 'aas' END +SET [Description] = 'Aasáx', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = 'aas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbt', 'Abadi', NULL, 1.40) END +VALUES ('kbt', 'Abadi', NULL, 14.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abadi', [Definition] = NULL, [SortOrder] = 1.40 WHERE [Code] = 'kbt' END +SET [Description] = 'Abadi', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = 'kbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abg', 'Abaga', NULL, 1.50) END +VALUES ('abg', 'Abaga', NULL, 15.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abaga', [Definition] = NULL, [SortOrder] = 1.50 WHERE [Code] = 'abg' END +SET [Description] = 'Abaga', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = 'abg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abf', 'Abai Sungai', NULL, 1.60) END +VALUES ('abf', 'Abai Sungai', NULL, 16.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abai Sungai', [Definition] = NULL, [SortOrder] = 1.60 WHERE [Code] = 'abf' END +SET [Description] = 'Abai Sungai', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = 'abf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abm', 'Abanyom', NULL, 1.70) END +VALUES ('abm', 'Abanyom', NULL, 17.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abanyom', [Definition] = NULL, [SortOrder] = 1.70 WHERE [Code] = 'abm' END +SET [Description] = 'Abanyom', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = 'abm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mij', 'Abar', NULL, 1.80) END +VALUES ('mij', 'Abar', NULL, 18.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abar', [Definition] = NULL, [SortOrder] = 1.80 WHERE [Code] = 'mij' END +SET [Description] = 'Abar', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = 'mij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aau', 'Abau', NULL, 1.90) END +VALUES ('aau', 'Abau', NULL, 19.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abau', [Definition] = NULL, [SortOrder] = 1.90 WHERE [Code] = 'aau' END +SET [Description] = 'Abau', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = 'aau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abq', 'Abaza', NULL, 2.00) END +VALUES ('abq', 'Abaza', NULL, 20.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abaza', [Definition] = NULL, [SortOrder] = 2.00 WHERE [Code] = 'abq' END +SET [Description] = 'Abaza', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = 'abq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aba', 'Abé', NULL, 2.10) END +VALUES ('aba', 'Abé', NULL, 21.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abé', [Definition] = NULL, [SortOrder] = 2.10 WHERE [Code] = 'aba' END +SET [Description] = 'Abé', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = 'aba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abp', 'Abellen Ayta', NULL, 2.20) END +VALUES ('abp', 'Abellen Ayta', NULL, 22.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abellen Ayta', [Definition] = NULL, [SortOrder] = 2.20 WHERE [Code] = 'abp' END +SET [Description] = 'Abellen Ayta', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = 'abp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abi', 'Abidji', NULL, 2.30) END +VALUES ('abi', 'Abidji', NULL, 23.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abidji', [Definition] = NULL, [SortOrder] = 2.30 WHERE [Code] = 'abi' END +SET [Description] = 'Abidji', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = 'abi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsa', 'Abinomn', NULL, 2.40) END +VALUES ('bsa', 'Abinomn', NULL, 24.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abinomn', [Definition] = NULL, [SortOrder] = 2.40 WHERE [Code] = 'bsa' END +SET [Description] = 'Abinomn', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = 'bsa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axb', 'Abipon', NULL, 2.50) END +VALUES ('axb', 'Abipon', NULL, 25.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abipon', [Definition] = NULL, [SortOrder] = 2.50 WHERE [Code] = 'axb' END +SET [Description] = 'Abipon', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = 'axb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ash') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ash', 'Abishira', NULL, 2.60) END +VALUES ('ash', 'Abishira', NULL, 26.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abishira', [Definition] = NULL, [SortOrder] = 2.60 WHERE [Code] = 'ash' END +SET [Description] = 'Abishira', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = 'ash' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abk', 'Abkhazian', NULL, 2.70) END +VALUES ('abk', 'Abkhazian', NULL, 27.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abkhazian', [Definition] = NULL, [SortOrder] = 2.70 WHERE [Code] = 'abk' END +SET [Description] = 'Abkhazian', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = 'abk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aob', 'Abom', NULL, 2.80) END +VALUES ('aob', 'Abom', NULL, 28.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abom', [Definition] = NULL, [SortOrder] = 2.80 WHERE [Code] = 'aob' END +SET [Description] = 'Abom', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = 'aob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abo', 'Abon', NULL, 2.90) END +VALUES ('abo', 'Abon', NULL, 29.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abon', [Definition] = NULL, [SortOrder] = 2.90 WHERE [Code] = 'abo' END +SET [Description] = 'Abon', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = 'abo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abr', 'Abron', NULL, 3.00) END +VALUES ('abr', 'Abron', NULL, 30.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abron', [Definition] = NULL, [SortOrder] = 3.00 WHERE [Code] = 'abr' END +SET [Description] = 'Abron', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = 'abr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ado') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ado', 'Abu', NULL, 3.10) END +VALUES ('ado', 'Abu', NULL, 31.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abu', [Definition] = NULL, [SortOrder] = 3.10 WHERE [Code] = 'ado' END +SET [Description] = 'Abu', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = 'ado' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aah', 'Abu'' Arapesh', NULL, 3.20) END +VALUES ('aah', 'Abu'' Arapesh', NULL, 32.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abu'' Arapesh', [Definition] = NULL, [SortOrder] = 3.20 WHERE [Code] = 'aah' END +SET [Description] = 'Abu'' Arapesh', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = 'aah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abn', 'Abua', NULL, 3.30) END +VALUES ('abn', 'Abua', NULL, 33.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abua', [Definition] = NULL, [SortOrder] = 3.30 WHERE [Code] = 'abn' END +SET [Description] = 'Abua', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = 'abn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abz', 'Abui', NULL, 3.40) END +VALUES ('abz', 'Abui', NULL, 34.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abui', [Definition] = NULL, [SortOrder] = 3.40 WHERE [Code] = 'abz' END +SET [Description] = 'Abui', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = 'abz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgr', 'Abun', NULL, 3.50) END +VALUES ('kgr', 'Abun', NULL, 35.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abun', [Definition] = NULL, [SortOrder] = 3.50 WHERE [Code] = 'kgr' END +SET [Description] = 'Abun', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = 'kgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abu', 'Abure', NULL, 3.60) END +VALUES ('abu', 'Abure', NULL, 36.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abure', [Definition] = NULL, [SortOrder] = 3.60 WHERE [Code] = 'abu' END +SET [Description] = 'Abure', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = 'abu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgj', 'Abureni', NULL, 3.70) END +VALUES ('mgj', 'Abureni', NULL, 37.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Abureni', [Definition] = NULL, [SortOrder] = 3.70 WHERE [Code] = 'mgj' END +SET [Description] = 'Abureni', [Definition] = NULL, [SortOrder] = 37.00 WHERE [Code] = 'mgj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpx', 'Acatepec Me''phaa', NULL, 3.80) END +VALUES ('tpx', 'Acatepec Me''phaa', NULL, 38.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Acatepec Me''phaa', [Definition] = NULL, [SortOrder] = 3.80 WHERE [Code] = 'tpx' END +SET [Description] = 'Acatepec Me''phaa', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = 'tpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aca', 'Achagua', NULL, 3.90) END +VALUES ('aca', 'Achagua', NULL, 39.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achagua', [Definition] = NULL, [SortOrder] = 3.90 WHERE [Code] = 'aca' END +SET [Description] = 'Achagua', [Definition] = NULL, [SortOrder] = 39.00 WHERE [Code] = 'aca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acn', 'Achang', NULL, 4.00) END +VALUES ('acn', 'Achang', NULL, 40.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achang', [Definition] = NULL, [SortOrder] = 4.00 WHERE [Code] = 'acn' END +SET [Description] = 'Achang', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = 'acn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yif', 'Ache', NULL, 4.10) END +VALUES ('yif', 'Ache', NULL, 41.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ache', [Definition] = NULL, [SortOrder] = 4.10 WHERE [Code] = 'yif' END +SET [Description] = 'Ache', [Definition] = NULL, [SortOrder] = 41.00 WHERE [Code] = 'yif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guq', 'Aché', NULL, 4.20) END +VALUES ('guq', 'Aché', NULL, 42.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aché', [Definition] = NULL, [SortOrder] = 4.20 WHERE [Code] = 'guq' END +SET [Description] = 'Aché', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = 'guq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acz', 'Acheron', NULL, 4.30) END +VALUES ('acz', 'Acheron', NULL, 43.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Acheron', [Definition] = NULL, [SortOrder] = 4.30 WHERE [Code] = 'acz' END +SET [Description] = 'Acheron', [Definition] = NULL, [SortOrder] = 43.00 WHERE [Code] = 'acz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acr', 'Achi', NULL, 4.40) END +VALUES ('acr', 'Achi', NULL, 44.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achi', [Definition] = NULL, [SortOrder] = 4.40 WHERE [Code] = 'acr' END +SET [Description] = 'Achi', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = 'acr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ace') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ace', 'Achinese', NULL, 4.50) END +VALUES ('ace', 'Achinese', NULL, 45.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achinese', [Definition] = NULL, [SortOrder] = 4.50 WHERE [Code] = 'ace' END +SET [Description] = 'Achinese', [Definition] = NULL, [SortOrder] = 45.00 WHERE [Code] = 'ace' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'act') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('act', 'Achterhoeks', NULL, 4.60) END +VALUES ('act', 'Achterhoeks', NULL, 46.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achterhoeks', [Definition] = NULL, [SortOrder] = 4.60 WHERE [Code] = 'act' END +SET [Description] = 'Achterhoeks', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = 'act' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acu', 'Achuar-Shiwiar', NULL, 4.70) END +VALUES ('acu', 'Achuar-Shiwiar', NULL, 47.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achuar-Shiwiar', [Definition] = NULL, [SortOrder] = 4.70 WHERE [Code] = 'acu' END +SET [Description] = 'Achuar-Shiwiar', [Definition] = NULL, [SortOrder] = 47.00 WHERE [Code] = 'acu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acv', 'Achumawi', NULL, 4.80) END +VALUES ('acv', 'Achumawi', NULL, 48.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Achumawi', [Definition] = NULL, [SortOrder] = 4.80 WHERE [Code] = 'acv' END +SET [Description] = 'Achumawi', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = 'acv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ach') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ach', 'Acoli', NULL, 4.90) END +VALUES ('ach', 'Acoli', NULL, 49.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Acoli', [Definition] = NULL, [SortOrder] = 4.90 WHERE [Code] = 'ach' END +SET [Description] = 'Acoli', [Definition] = NULL, [SortOrder] = 49.00 WHERE [Code] = 'ach' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acs', 'Acroá', NULL, 5.00) END +VALUES ('acs', 'Acroá', NULL, 50.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Acroá', [Definition] = NULL, [SortOrder] = 5.00 WHERE [Code] = 'acs' END +SET [Description] = 'Acroá', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = 'acs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xad', 'Adai', NULL, 5.10) END +VALUES ('xad', 'Adai', NULL, 51.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adai', [Definition] = NULL, [SortOrder] = 5.10 WHERE [Code] = 'xad' END +SET [Description] = 'Adai', [Definition] = NULL, [SortOrder] = 51.00 WHERE [Code] = 'xad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fub', 'Adamawa Fulfulde', NULL, 5.20) END +VALUES ('fub', 'Adamawa Fulfulde', NULL, 52.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adamawa Fulfulde', [Definition] = NULL, [SortOrder] = 5.20 WHERE [Code] = 'fub' END +SET [Description] = 'Adamawa Fulfulde', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = 'fub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ads') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ads', 'Adamorobe Sign Language', NULL, 5.30) END +VALUES ('ads', 'Adamorobe Sign Language', NULL, 53.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adamorobe Sign Language', [Definition] = NULL, [SortOrder] = 5.30 WHERE [Code] = 'ads' END +SET [Description] = 'Adamorobe Sign Language', [Definition] = NULL, [SortOrder] = 53.00 WHERE [Code] = 'ads' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adn', 'Adang', NULL, 5.40) END +VALUES ('adn', 'Adang', NULL, 54.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adang', [Definition] = NULL, [SortOrder] = 5.40 WHERE [Code] = 'adn' END +SET [Description] = 'Adang', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = 'adn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adq', 'Adangbe', NULL, 5.50) END +VALUES ('adq', 'Adangbe', NULL, 55.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adangbe', [Definition] = NULL, [SortOrder] = 5.50 WHERE [Code] = 'adq' END +SET [Description] = 'Adangbe', [Definition] = NULL, [SortOrder] = 55.00 WHERE [Code] = 'adq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ada') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ada', 'Adangme', NULL, 5.60) END +VALUES ('ada', 'Adangme', NULL, 56.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adangme', [Definition] = NULL, [SortOrder] = 5.60 WHERE [Code] = 'ada' END +SET [Description] = 'Adangme', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = 'ada' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kad', 'Adara', NULL, 5.70) END +VALUES ('kad', 'Adara', NULL, 57.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adara', [Definition] = NULL, [SortOrder] = 5.70 WHERE [Code] = 'kad' END +SET [Description] = 'Adara', [Definition] = NULL, [SortOrder] = 57.00 WHERE [Code] = 'kad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiu', 'Adasen', NULL, 5.80) END +VALUES ('tiu', 'Adasen', NULL, 58.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adasen', [Definition] = NULL, [SortOrder] = 5.80 WHERE [Code] = 'tiu' END +SET [Description] = 'Adasen', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = 'tiu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ade') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ade', 'Adele', NULL, 5.90) END +VALUES ('ade', 'Adele', NULL, 59.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adele', [Definition] = NULL, [SortOrder] = 5.90 WHERE [Code] = 'ade' END +SET [Description] = 'Adele', [Definition] = NULL, [SortOrder] = 59.00 WHERE [Code] = 'ade' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adh', 'Adhola', NULL, 6.00) END +VALUES ('adh', 'Adhola', NULL, 60.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adhola', [Definition] = NULL, [SortOrder] = 6.00 WHERE [Code] = 'adh' END +SET [Description] = 'Adhola', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = 'adh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adi', 'Adi', NULL, 6.10) END +VALUES ('adi', 'Adi', NULL, 61.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adi', [Definition] = NULL, [SortOrder] = 6.10 WHERE [Code] = 'adi' END +SET [Description] = 'Adi', [Definition] = NULL, [SortOrder] = 61.00 WHERE [Code] = 'adi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsg', 'Adilabad Gondi', NULL, 6.20) END +VALUES ('wsg', 'Adilabad Gondi', NULL, 62.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adilabad Gondi', [Definition] = NULL, [SortOrder] = 6.20 WHERE [Code] = 'wsg' END +SET [Description] = 'Adilabad Gondi', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = 'wsg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adj', 'Adioukrou', NULL, 6.30) END +VALUES ('adj', 'Adioukrou', NULL, 63.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adioukrou', [Definition] = NULL, [SortOrder] = 6.30 WHERE [Code] = 'adj' END +SET [Description] = 'Adioukrou', [Definition] = NULL, [SortOrder] = 63.00 WHERE [Code] = 'adj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dth', 'Adithinngithigh', NULL, 6.40) END +VALUES ('dth', 'Adithinngithigh', NULL, 64.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adithinngithigh', [Definition] = NULL, [SortOrder] = 6.40 WHERE [Code] = 'dth' END +SET [Description] = 'Adithinngithigh', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = 'dth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ort') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ort', 'Adivasi Oriya', NULL, 6.50) END +VALUES ('ort', 'Adivasi Oriya', NULL, 65.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adivasi Oriya', [Definition] = NULL, [SortOrder] = 6.50 WHERE [Code] = 'ort' END +SET [Description] = 'Adivasi Oriya', [Definition] = NULL, [SortOrder] = 65.00 WHERE [Code] = 'ort' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gas', 'Adiwasi Garasia', NULL, 6.60) END +VALUES ('gas', 'Adiwasi Garasia', NULL, 66.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adiwasi Garasia', [Definition] = NULL, [SortOrder] = 6.60 WHERE [Code] = 'gas' END +SET [Description] = 'Adiwasi Garasia', [Definition] = NULL, [SortOrder] = 66.00 WHERE [Code] = 'gas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adt', 'Adnyamathanha', NULL, 6.70) END +VALUES ('adt', 'Adnyamathanha', NULL, 67.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adnyamathanha', [Definition] = NULL, [SortOrder] = 6.70 WHERE [Code] = 'adt' END +SET [Description] = 'Adnyamathanha', [Definition] = NULL, [SortOrder] = 67.00 WHERE [Code] = 'adt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adr', 'Adonara', NULL, 6.80) END +VALUES ('adr', 'Adonara', NULL, 68.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adonara', [Definition] = NULL, [SortOrder] = 6.80 WHERE [Code] = 'adr' END +SET [Description] = 'Adonara', [Definition] = NULL, [SortOrder] = 68.00 WHERE [Code] = 'adr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adu', 'Aduge', NULL, 6.90) END +VALUES ('adu', 'Aduge', NULL, 69.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aduge', [Definition] = NULL, [SortOrder] = 6.90 WHERE [Code] = 'adu' END +SET [Description] = 'Aduge', [Definition] = NULL, [SortOrder] = 69.00 WHERE [Code] = 'adu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ady') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ady', 'Adyghe', NULL, 7.00) END +VALUES ('ady', 'Adyghe', NULL, 70.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adyghe', [Definition] = NULL, [SortOrder] = 7.00 WHERE [Code] = 'ady' END +SET [Description] = 'Adyghe', [Definition] = NULL, [SortOrder] = 70.00 WHERE [Code] = 'ady' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adz', 'Adzera', NULL, 7.10) END +VALUES ('adz', 'Adzera', NULL, 71.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Adzera', [Definition] = NULL, [SortOrder] = 7.10 WHERE [Code] = 'adz' END +SET [Description] = 'Adzera', [Definition] = NULL, [SortOrder] = 71.00 WHERE [Code] = 'adz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aez', 'Aeka', NULL, 7.20) END +VALUES ('aez', 'Aeka', NULL, 72.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aeka', [Definition] = NULL, [SortOrder] = 7.20 WHERE [Code] = 'aez' END +SET [Description] = 'Aeka', [Definition] = NULL, [SortOrder] = 72.00 WHERE [Code] = 'aez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awi', 'Aekyom', NULL, 7.30) END +VALUES ('awi', 'Aekyom', NULL, 73.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aekyom', [Definition] = NULL, [SortOrder] = 7.30 WHERE [Code] = 'awi' END +SET [Description] = 'Aekyom', [Definition] = NULL, [SortOrder] = 73.00 WHERE [Code] = 'awi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xae', 'Aequian', NULL, 7.40) END +VALUES ('xae', 'Aequian', NULL, 74.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aequian', [Definition] = NULL, [SortOrder] = 7.40 WHERE [Code] = 'xae' END +SET [Description] = 'Aequian', [Definition] = NULL, [SortOrder] = 74.00 WHERE [Code] = 'xae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aeq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aeq', 'Aer', NULL, 7.50) END +VALUES ('aeq', 'Aer', NULL, 75.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aer', [Definition] = NULL, [SortOrder] = 7.50 WHERE [Code] = 'aeq' END +SET [Description] = 'Aer', [Definition] = NULL, [SortOrder] = 75.00 WHERE [Code] = 'aeq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aal', 'Afade', NULL, 7.60) END +VALUES ('aal', 'Afade', NULL, 76.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afade', [Definition] = NULL, [SortOrder] = 7.60 WHERE [Code] = 'aal' END +SET [Description] = 'Afade', [Definition] = NULL, [SortOrder] = 76.00 WHERE [Code] = 'aal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aar', 'Afar', NULL, 7.70) END +VALUES ('aar', 'Afar', NULL, 77.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afar', [Definition] = NULL, [SortOrder] = 7.70 WHERE [Code] = 'aar' END +SET [Description] = 'Afar', [Definition] = NULL, [SortOrder] = 77.00 WHERE [Code] = 'aar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afg', 'Afghan Sign Language', NULL, 7.80) END +VALUES ('afg', 'Afghan Sign Language', NULL, 78.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afghan Sign Language', [Definition] = NULL, [SortOrder] = 7.80 WHERE [Code] = 'afg' END +SET [Description] = 'Afghan Sign Language', [Definition] = NULL, [SortOrder] = 78.00 WHERE [Code] = 'afg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aft', 'Afitti', NULL, 7.90) END +VALUES ('aft', 'Afitti', NULL, 79.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afitti', [Definition] = NULL, [SortOrder] = 7.90 WHERE [Code] = 'aft' END +SET [Description] = 'Afitti', [Definition] = NULL, [SortOrder] = 79.00 WHERE [Code] = 'aft' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afh', 'Afrihili', NULL, 8.00) END +VALUES ('afh', 'Afrihili', NULL, 80.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afrihili', [Definition] = NULL, [SortOrder] = 8.00 WHERE [Code] = 'afh' END +SET [Description] = 'Afrihili', [Definition] = NULL, [SortOrder] = 80.00 WHERE [Code] = 'afh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afr', 'Afrikaans', NULL, 8.10) END +VALUES ('afr', 'Afrikaans', NULL, 81.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afrikaans', [Definition] = NULL, [SortOrder] = 8.10 WHERE [Code] = 'afr' END +SET [Description] = 'Afrikaans', [Definition] = NULL, [SortOrder] = 81.00 WHERE [Code] = 'afr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afs', 'Afro-Seminole Creole', NULL, 8.20) END +VALUES ('afs', 'Afro-Seminole Creole', NULL, 82.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Afro-Seminole Creole', [Definition] = NULL, [SortOrder] = 8.20 WHERE [Code] = 'afs' END +SET [Description] = 'Afro-Seminole Creole', [Definition] = NULL, [SortOrder] = 82.00 WHERE [Code] = 'afs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agd', 'Agarabi', NULL, 8.30) END +VALUES ('agd', 'Agarabi', NULL, 83.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agarabi', [Definition] = NULL, [SortOrder] = 8.30 WHERE [Code] = 'agd' END +SET [Description] = 'Agarabi', [Definition] = NULL, [SortOrder] = 83.00 WHERE [Code] = 'agd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agi', 'Agariya', NULL, 8.40) END +VALUES ('agi', 'Agariya', NULL, 84.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agariya', [Definition] = NULL, [SortOrder] = 8.40 WHERE [Code] = 'agi' END +SET [Description] = 'Agariya', [Definition] = NULL, [SortOrder] = 84.00 WHERE [Code] = 'agi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agc', 'Agatu', NULL, 8.50) END +VALUES ('agc', 'Agatu', NULL, 85.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agatu', [Definition] = NULL, [SortOrder] = 8.50 WHERE [Code] = 'agc' END +SET [Description] = 'Agatu', [Definition] = NULL, [SortOrder] = 85.00 WHERE [Code] = 'agc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avo', 'Agavotaguerra', NULL, 8.60) END +VALUES ('avo', 'Agavotaguerra', NULL, 86.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agavotaguerra', [Definition] = NULL, [SortOrder] = 8.60 WHERE [Code] = 'avo' END +SET [Description] = 'Agavotaguerra', [Definition] = NULL, [SortOrder] = 86.00 WHERE [Code] = 'avo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agq', 'Aghem', NULL, 8.70) END +VALUES ('agq', 'Aghem', NULL, 87.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghem', [Definition] = NULL, [SortOrder] = 8.70 WHERE [Code] = 'agq' END +SET [Description] = 'Aghem', [Definition] = NULL, [SortOrder] = 87.00 WHERE [Code] = 'agq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahh', 'Aghu', NULL, 8.80) END +VALUES ('ahh', 'Aghu', NULL, 88.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghu', [Definition] = NULL, [SortOrder] = 8.80 WHERE [Code] = 'ahh' END +SET [Description] = 'Aghu', [Definition] = NULL, [SortOrder] = 88.00 WHERE [Code] = 'ahh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gtu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gtu', 'Aghu-Tharnggala', NULL, 8.90) END +VALUES ('gtu', 'Aghu-Tharnggala', NULL, 89.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghu-Tharnggala', [Definition] = NULL, [SortOrder] = 8.90 WHERE [Code] = 'gtu' END +SET [Description] = 'Aghu-Tharnggala', [Definition] = NULL, [SortOrder] = 89.00 WHERE [Code] = 'gtu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agx', 'Aghul', NULL, 9.00) END +VALUES ('agx', 'Aghul', NULL, 90.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghul', [Definition] = NULL, [SortOrder] = 9.00 WHERE [Code] = 'agx' END +SET [Description] = 'Aghul', [Definition] = NULL, [SortOrder] = 90.00 WHERE [Code] = 'agx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xag', 'Aghwan', NULL, 9.10) END +VALUES ('xag', 'Aghwan', NULL, 91.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aghwan', [Definition] = NULL, [SortOrder] = 9.10 WHERE [Code] = 'xag' END +SET [Description] = 'Aghwan', [Definition] = NULL, [SortOrder] = 91.00 WHERE [Code] = 'xag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aif', 'Agi', NULL, 9.20) END +VALUES ('aif', 'Agi', NULL, 92.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agi', [Definition] = NULL, [SortOrder] = 9.20 WHERE [Code] = 'aif' END +SET [Description] = 'Agi', [Definition] = NULL, [SortOrder] = 92.00 WHERE [Code] = 'aif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kit', 'Agob', NULL, 9.30) END +VALUES ('kit', 'Agob', NULL, 93.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agob', [Definition] = NULL, [SortOrder] = 9.30 WHERE [Code] = 'kit' END +SET [Description] = 'Agob', [Definition] = NULL, [SortOrder] = 93.00 WHERE [Code] = 'kit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibm', 'Agoi', NULL, 9.40) END +VALUES ('ibm', 'Agoi', NULL, 94.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agoi', [Definition] = NULL, [SortOrder] = 9.40 WHERE [Code] = 'ibm' END +SET [Description] = 'Agoi', [Definition] = NULL, [SortOrder] = 94.00 WHERE [Code] = 'ibm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agu', 'Aguacateco', NULL, 9.50) END +VALUES ('agu', 'Aguacateco', NULL, 95.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aguacateco', [Definition] = NULL, [SortOrder] = 9.50 WHERE [Code] = 'agu' END +SET [Description] = 'Aguacateco', [Definition] = NULL, [SortOrder] = 95.00 WHERE [Code] = 'agu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aga', 'Aguano', NULL, 9.60) END +VALUES ('aga', 'Aguano', NULL, 96.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aguano', [Definition] = NULL, [SortOrder] = 9.60 WHERE [Code] = 'aga' END +SET [Description] = 'Aguano', [Definition] = NULL, [SortOrder] = 96.00 WHERE [Code] = 'aga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agr', 'Aguaruna', NULL, 9.70) END +VALUES ('agr', 'Aguaruna', NULL, 97.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aguaruna', [Definition] = NULL, [SortOrder] = 9.70 WHERE [Code] = 'agr' END +SET [Description] = 'Aguaruna', [Definition] = NULL, [SortOrder] = 97.00 WHERE [Code] = 'agr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aug', 'Aguna', NULL, 9.80) END +VALUES ('aug', 'Aguna', NULL, 98.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aguna', [Definition] = NULL, [SortOrder] = 9.80 WHERE [Code] = 'aug' END +SET [Description] = 'Aguna', [Definition] = NULL, [SortOrder] = 98.00 WHERE [Code] = 'aug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msm', 'Agusan Manobo', NULL, 9.90) END +VALUES ('msm', 'Agusan Manobo', NULL, 99.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agusan Manobo', [Definition] = NULL, [SortOrder] = 9.90 WHERE [Code] = 'msm' END +SET [Description] = 'Agusan Manobo', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = 'msm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agn', 'Agutaynen', NULL, 10.00) END +VALUES ('agn', 'Agutaynen', NULL, 100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agutaynen', [Definition] = NULL, [SortOrder] = 10.00 WHERE [Code] = 'agn' END +SET [Description] = 'Agutaynen', [Definition] = NULL, [SortOrder] = 100.00 WHERE [Code] = 'agn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yay', 'Agwagwune', NULL, 10.10) END +VALUES ('yay', 'Agwagwune', NULL, 101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Agwagwune', [Definition] = NULL, [SortOrder] = 10.10 WHERE [Code] = 'yay' END +SET [Description] = 'Agwagwune', [Definition] = NULL, [SortOrder] = 101.00 WHERE [Code] = 'yay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahn', 'Àhàn', NULL, 10.20) END +VALUES ('ahn', 'Àhàn', NULL, 102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Àhàn', [Definition] = NULL, [SortOrder] = 10.20 WHERE [Code] = 'ahn' END +SET [Description] = 'Àhàn', [Definition] = NULL, [SortOrder] = 102.00 WHERE [Code] = 'ahn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aha', 'Ahanta', NULL, 10.30) END +VALUES ('aha', 'Ahanta', NULL, 103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahanta', [Definition] = NULL, [SortOrder] = 10.30 WHERE [Code] = 'aha' END +SET [Description] = 'Ahanta', [Definition] = NULL, [SortOrder] = 103.00 WHERE [Code] = 'aha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esg', 'Aheri Gondi', NULL, 10.40) END +VALUES ('esg', 'Aheri Gondi', NULL, 104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aheri Gondi', [Definition] = NULL, [SortOrder] = 10.40 WHERE [Code] = 'esg' END +SET [Description] = 'Aheri Gondi', [Definition] = NULL, [SortOrder] = 104.00 WHERE [Code] = 'esg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thm', 'Aheu', NULL, 10.50) END +VALUES ('thm', 'Aheu', NULL, 105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aheu', [Definition] = NULL, [SortOrder] = 10.50 WHERE [Code] = 'thm' END +SET [Description] = 'Aheu', [Definition] = NULL, [SortOrder] = 105.00 WHERE [Code] = 'thm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahr', 'Ahirani', NULL, 10.60) END +VALUES ('ahr', 'Ahirani', NULL, 106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahirani', [Definition] = NULL, [SortOrder] = 10.60 WHERE [Code] = 'ahr' END +SET [Description] = 'Ahirani', [Definition] = NULL, [SortOrder] = 106.00 WHERE [Code] = 'ahr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aho', 'Ahom', NULL, 10.70) END +VALUES ('aho', 'Ahom', NULL, 107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahom', [Definition] = NULL, [SortOrder] = 10.70 WHERE [Code] = 'aho' END +SET [Description] = 'Ahom', [Definition] = NULL, [SortOrder] = 107.00 WHERE [Code] = 'aho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aht', 'Ahtena', NULL, 10.80) END +VALUES ('aht', 'Ahtena', NULL, 108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahtena', [Definition] = NULL, [SortOrder] = 10.80 WHERE [Code] = 'aht' END +SET [Description] = 'Ahtena', [Definition] = NULL, [SortOrder] = 108.00 WHERE [Code] = 'aht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfd', 'Ahwai', NULL, 10.90) END +VALUES ('nfd', 'Ahwai', NULL, 109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ahwai', [Definition] = NULL, [SortOrder] = 10.90 WHERE [Code] = 'nfd' END +SET [Description] = 'Ahwai', [Definition] = NULL, [SortOrder] = 109.00 WHERE [Code] = 'nfd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aih', 'Ai-Cham', NULL, 11.00) END +VALUES ('aih', 'Ai-Cham', NULL, 110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ai-Cham', [Definition] = NULL, [SortOrder] = 11.00 WHERE [Code] = 'aih' END +SET [Description] = 'Ai-Cham', [Definition] = NULL, [SortOrder] = 110.00 WHERE [Code] = 'aih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aix', 'Aighon', NULL, 11.10) END +VALUES ('aix', 'Aighon', NULL, 111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aighon', [Definition] = NULL, [SortOrder] = 11.10 WHERE [Code] = 'aix' END +SET [Description] = 'Aighon', [Definition] = NULL, [SortOrder] = 111.00 WHERE [Code] = 'aix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tba', 'Aikanã', NULL, 11.20) END +VALUES ('tba', 'Aikanã', NULL, 112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aikanã', [Definition] = NULL, [SortOrder] = 11.20 WHERE [Code] = 'tba' END +SET [Description] = 'Aikanã', [Definition] = NULL, [SortOrder] = 112.00 WHERE [Code] = 'tba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwg', 'Aiklep', NULL, 11.30) END +VALUES ('mwg', 'Aiklep', NULL, 113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aiklep', [Definition] = NULL, [SortOrder] = 11.30 WHERE [Code] = 'mwg' END +SET [Description] = 'Aiklep', [Definition] = NULL, [SortOrder] = 113.00 WHERE [Code] = 'mwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aiq', 'Aimaq', NULL, 11.40) END +VALUES ('aiq', 'Aimaq', NULL, 114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aimaq', [Definition] = NULL, [SortOrder] = 11.40 WHERE [Code] = 'aiq' END +SET [Description] = 'Aimaq', [Definition] = NULL, [SortOrder] = 114.00 WHERE [Code] = 'aiq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ail') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ail', 'Aimele', NULL, 11.50) END +VALUES ('ail', 'Aimele', NULL, 115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aimele', [Definition] = NULL, [SortOrder] = 11.50 WHERE [Code] = 'ail' END +SET [Description] = 'Aimele', [Definition] = NULL, [SortOrder] = 115.00 WHERE [Code] = 'ail' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aim', 'Aimol', NULL, 11.60) END +VALUES ('aim', 'Aimol', NULL, 116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aimol', [Definition] = NULL, [SortOrder] = 11.60 WHERE [Code] = 'aim' END +SET [Description] = 'Aimol', [Definition] = NULL, [SortOrder] = 116.00 WHERE [Code] = 'aim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aic', 'Ainbai', NULL, 11.70) END +VALUES ('aic', 'Ainbai', NULL, 117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ainbai', [Definition] = NULL, [SortOrder] = 11.70 WHERE [Code] = 'aic' END +SET [Description] = 'Ainbai', [Definition] = NULL, [SortOrder] = 117.00 WHERE [Code] = 'aic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aib', 'Ainu (China)', NULL, 11.80) END +VALUES ('aib', 'Ainu (China)', NULL, 118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ainu (China)', [Definition] = NULL, [SortOrder] = 11.80 WHERE [Code] = 'aib' END +SET [Description] = 'Ainu (China)', [Definition] = NULL, [SortOrder] = 118.00 WHERE [Code] = 'aib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ain') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ain', 'Ainu (Japan)', NULL, 11.90) END +VALUES ('ain', 'Ainu (Japan)', NULL, 119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ainu (Japan)', [Definition] = NULL, [SortOrder] = 11.90 WHERE [Code] = 'ain' END +SET [Description] = 'Ainu (Japan)', [Definition] = NULL, [SortOrder] = 119.00 WHERE [Code] = 'ain' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aki', 'Aiome', NULL, 12.00) END +VALUES ('aki', 'Aiome', NULL, 120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aiome', [Definition] = NULL, [SortOrder] = 12.00 WHERE [Code] = 'aki' END +SET [Description] = 'Aiome', [Definition] = NULL, [SortOrder] = 120.00 WHERE [Code] = 'aki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'air') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('air', 'Airoran', NULL, 12.10) END +VALUES ('air', 'Airoran', NULL, 121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Airoran', [Definition] = NULL, [SortOrder] = 12.10 WHERE [Code] = 'air' END +SET [Description] = 'Airoran', [Definition] = NULL, [SortOrder] = 121.00 WHERE [Code] = 'air' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aio', 'Aiton', NULL, 12.20) END +VALUES ('aio', 'Aiton', NULL, 122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aiton', [Definition] = NULL, [SortOrder] = 12.20 WHERE [Code] = 'aio' END +SET [Description] = 'Aiton', [Definition] = NULL, [SortOrder] = 122.00 WHERE [Code] = 'aio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajg', 'Aja (Benin)', NULL, 12.30) END +VALUES ('ajg', 'Aja (Benin)', NULL, 123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aja (Benin)', [Definition] = NULL, [SortOrder] = 12.30 WHERE [Code] = 'ajg' END +SET [Description] = 'Aja (Benin)', [Definition] = NULL, [SortOrder] = 123.00 WHERE [Code] = 'ajg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aja', 'Aja (South Sudan)', NULL, 12.40) END +VALUES ('aja', 'Aja (South Sudan)', NULL, 124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aja (South Sudan)', [Definition] = NULL, [SortOrder] = 12.40 WHERE [Code] = 'aja' END +SET [Description] = 'Aja (South Sudan)', [Definition] = NULL, [SortOrder] = 124.00 WHERE [Code] = 'aja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajw', 'Ajawa', NULL, 12.50) END +VALUES ('ajw', 'Ajawa', NULL, 125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ajawa', [Definition] = NULL, [SortOrder] = 12.50 WHERE [Code] = 'ajw' END +SET [Description] = 'Ajawa', [Definition] = NULL, [SortOrder] = 125.00 WHERE [Code] = 'ajw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aji', 'Ajië', NULL, 12.60) END +VALUES ('aji', 'Ajië', NULL, 126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ajië', [Definition] = NULL, [SortOrder] = 12.60 WHERE [Code] = 'aji' END +SET [Description] = 'Ajië', [Definition] = NULL, [SortOrder] = 126.00 WHERE [Code] = 'aji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muc', 'Ajumbu', NULL, 12.70) END +VALUES ('muc', 'Ajumbu', NULL, 127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ajumbu', [Definition] = NULL, [SortOrder] = 12.70 WHERE [Code] = 'muc' END +SET [Description] = 'Ajumbu', [Definition] = NULL, [SortOrder] = 127.00 WHERE [Code] = 'muc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpc', 'Ajyíninka Apurucayali', NULL, 12.80) END +VALUES ('cpc', 'Ajyíninka Apurucayali', NULL, 128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ajyíninka Apurucayali', [Definition] = NULL, [SortOrder] = 12.80 WHERE [Code] = 'cpc' END +SET [Description] = 'Ajyíninka Apurucayali', [Definition] = NULL, [SortOrder] = 128.00 WHERE [Code] = 'cpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akq', 'Ak', NULL, 12.90) END +VALUES ('akq', 'Ak', NULL, 129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ak', [Definition] = NULL, [SortOrder] = 12.90 WHERE [Code] = 'akq' END +SET [Description] = 'Ak', [Definition] = NULL, [SortOrder] = 129.00 WHERE [Code] = 'akq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soh', 'Aka', NULL, 13.00) END +VALUES ('soh', 'Aka', NULL, 130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka', [Definition] = NULL, [SortOrder] = 13.00 WHERE [Code] = 'soh' END +SET [Description] = 'Aka', [Definition] = NULL, [SortOrder] = 130.00 WHERE [Code] = 'soh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abj', 'Aka-Bea', NULL, 13.10) END +VALUES ('abj', 'Aka-Bea', NULL, 131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Bea', [Definition] = NULL, [SortOrder] = 13.10 WHERE [Code] = 'abj' END +SET [Description] = 'Aka-Bea', [Definition] = NULL, [SortOrder] = 131.00 WHERE [Code] = 'abj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akm', 'Aka-Bo', NULL, 13.20) END +VALUES ('akm', 'Aka-Bo', NULL, 132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Bo', [Definition] = NULL, [SortOrder] = 13.20 WHERE [Code] = 'akm' END +SET [Description] = 'Aka-Bo', [Definition] = NULL, [SortOrder] = 132.00 WHERE [Code] = 'akm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aci', 'Aka-Cari', NULL, 13.30) END +VALUES ('aci', 'Aka-Cari', NULL, 133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Cari', [Definition] = NULL, [SortOrder] = 13.30 WHERE [Code] = 'aci' END +SET [Description] = 'Aka-Cari', [Definition] = NULL, [SortOrder] = 133.00 WHERE [Code] = 'aci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akj', 'Aka-Jeru', NULL, 13.40) END +VALUES ('akj', 'Aka-Jeru', NULL, 134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Jeru', [Definition] = NULL, [SortOrder] = 13.40 WHERE [Code] = 'akj' END +SET [Description] = 'Aka-Jeru', [Definition] = NULL, [SortOrder] = 134.00 WHERE [Code] = 'akj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akx', 'Aka-Kede', NULL, 13.50) END +VALUES ('akx', 'Aka-Kede', NULL, 135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Kede', [Definition] = NULL, [SortOrder] = 13.50 WHERE [Code] = 'akx' END +SET [Description] = 'Aka-Kede', [Definition] = NULL, [SortOrder] = 135.00 WHERE [Code] = 'akx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aky', 'Aka-Kol', NULL, 13.60) END +VALUES ('aky', 'Aka-Kol', NULL, 136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Kol', [Definition] = NULL, [SortOrder] = 13.60 WHERE [Code] = 'aky' END +SET [Description] = 'Aka-Kol', [Definition] = NULL, [SortOrder] = 136.00 WHERE [Code] = 'aky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ack') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ack', 'Aka-Kora', NULL, 13.70) END +VALUES ('ack', 'Aka-Kora', NULL, 137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aka-Kora', [Definition] = NULL, [SortOrder] = 13.70 WHERE [Code] = 'ack' END +SET [Description] = 'Aka-Kora', [Definition] = NULL, [SortOrder] = 137.00 WHERE [Code] = 'ack' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aka', 'Akan', NULL, 13.80) END +VALUES ('aka', 'Akan', NULL, 138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akan', [Definition] = NULL, [SortOrder] = 13.80 WHERE [Code] = 'aka' END +SET [Description] = 'Akan', [Definition] = NULL, [SortOrder] = 138.00 WHERE [Code] = 'aka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acl', 'Akar-Bale', NULL, 13.90) END +VALUES ('acl', 'Akar-Bale', NULL, 139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akar-Bale', [Definition] = NULL, [SortOrder] = 13.90 WHERE [Code] = 'acl' END +SET [Description] = 'Akar-Bale', [Definition] = NULL, [SortOrder] = 139.00 WHERE [Code] = 'acl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aks', 'Akaselem', NULL, 14.00) END +VALUES ('aks', 'Akaselem', NULL, 140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akaselem', [Definition] = NULL, [SortOrder] = 14.00 WHERE [Code] = 'aks' END +SET [Description] = 'Akaselem', [Definition] = NULL, [SortOrder] = 140.00 WHERE [Code] = 'aks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ake') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ake', 'Akawaio', NULL, 14.10) END +VALUES ('ake', 'Akawaio', NULL, 141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akawaio', [Definition] = NULL, [SortOrder] = 14.10 WHERE [Code] = 'ake' END +SET [Description] = 'Akawaio', [Definition] = NULL, [SortOrder] = 141.00 WHERE [Code] = 'ake' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aik', 'Ake', NULL, 14.20) END +VALUES ('aik', 'Ake', NULL, 142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ake', [Definition] = NULL, [SortOrder] = 14.20 WHERE [Code] = 'aik' END +SET [Description] = 'Ake', [Definition] = NULL, [SortOrder] = 142.00 WHERE [Code] = 'aik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keu', 'Akebu', NULL, 14.30) END +VALUES ('keu', 'Akebu', NULL, 143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akebu', [Definition] = NULL, [SortOrder] = 14.30 WHERE [Code] = 'keu' END +SET [Description] = 'Akebu', [Definition] = NULL, [SortOrder] = 143.00 WHERE [Code] = 'keu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsr', 'Akei', NULL, 14.40) END +VALUES ('tsr', 'Akei', NULL, 144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akei', [Definition] = NULL, [SortOrder] = 14.40 WHERE [Code] = 'tsr' END +SET [Description] = 'Akei', [Definition] = NULL, [SortOrder] = 144.00 WHERE [Code] = 'tsr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aeu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aeu', 'Akeu', NULL, 14.50) END +VALUES ('aeu', 'Akeu', NULL, 145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akeu', [Definition] = NULL, [SortOrder] = 14.50 WHERE [Code] = 'aeu' END +SET [Description] = 'Akeu', [Definition] = NULL, [SortOrder] = 145.00 WHERE [Code] = 'aeu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahk', 'Akha', NULL, 14.60) END +VALUES ('ahk', 'Akha', NULL, 146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akha', [Definition] = NULL, [SortOrder] = 14.60 WHERE [Code] = 'ahk' END +SET [Description] = 'Akha', [Definition] = NULL, [SortOrder] = 146.00 WHERE [Code] = 'ahk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akv', 'Akhvakh', NULL, 14.70) END +VALUES ('akv', 'Akhvakh', NULL, 147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akhvakh', [Definition] = NULL, [SortOrder] = 14.70 WHERE [Code] = 'akv' END +SET [Description] = 'Akhvakh', [Definition] = NULL, [SortOrder] = 147.00 WHERE [Code] = 'akv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akk', 'Akkadian', NULL, 14.80) END +VALUES ('akk', 'Akkadian', NULL, 148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akkadian', [Definition] = NULL, [SortOrder] = 14.80 WHERE [Code] = 'akk' END +SET [Description] = 'Akkadian', [Definition] = NULL, [SortOrder] = 148.00 WHERE [Code] = 'akk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sia', 'Akkala Sami', NULL, 14.90) END +VALUES ('sia', 'Akkala Sami', NULL, 149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akkala Sami', [Definition] = NULL, [SortOrder] = 14.90 WHERE [Code] = 'sia' END +SET [Description] = 'Akkala Sami', [Definition] = NULL, [SortOrder] = 149.00 WHERE [Code] = 'sia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akl', 'Aklanon', NULL, 15.00) END +VALUES ('akl', 'Aklanon', NULL, 150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aklanon', [Definition] = NULL, [SortOrder] = 15.00 WHERE [Code] = 'akl' END +SET [Description] = 'Aklanon', [Definition] = NULL, [SortOrder] = 150.00 WHERE [Code] = 'akl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akt', 'Akolet', NULL, 15.10) END +VALUES ('akt', 'Akolet', NULL, 151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akolet', [Definition] = NULL, [SortOrder] = 15.10 WHERE [Code] = 'akt' END +SET [Description] = 'Akolet', [Definition] = NULL, [SortOrder] = 151.00 WHERE [Code] = 'akt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bss', 'Akoose', NULL, 15.20) END +VALUES ('bss', 'Akoose', NULL, 152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akoose', [Definition] = NULL, [SortOrder] = 15.20 WHERE [Code] = 'bss' END +SET [Description] = 'Akoose', [Definition] = NULL, [SortOrder] = 152.00 WHERE [Code] = 'bss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miw', 'Akoye', NULL, 15.30) END +VALUES ('miw', 'Akoye', NULL, 153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akoye', [Definition] = NULL, [SortOrder] = 15.30 WHERE [Code] = 'miw' END +SET [Description] = 'Akoye', [Definition] = NULL, [SortOrder] = 153.00 WHERE [Code] = 'miw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akf', 'Akpa', NULL, 15.40) END +VALUES ('akf', 'Akpa', NULL, 154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akpa', [Definition] = NULL, [SortOrder] = 15.40 WHERE [Code] = 'akf' END +SET [Description] = 'Akpa', [Definition] = NULL, [SortOrder] = 154.00 WHERE [Code] = 'akf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibe', 'Akpes', NULL, 15.50) END +VALUES ('ibe', 'Akpes', NULL, 155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akpes', [Definition] = NULL, [SortOrder] = 15.50 WHERE [Code] = 'ibe' END +SET [Description] = 'Akpes', [Definition] = NULL, [SortOrder] = 155.00 WHERE [Code] = 'ibe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afi', 'Akrukay', NULL, 15.60) END +VALUES ('afi', 'Akrukay', NULL, 156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akrukay', [Definition] = NULL, [SortOrder] = 15.60 WHERE [Code] = 'afi' END +SET [Description] = 'Akrukay', [Definition] = NULL, [SortOrder] = 156.00 WHERE [Code] = 'afi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spm', 'Akukem', NULL, 15.70) END +VALUES ('spm', 'Akukem', NULL, 157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akukem', [Definition] = NULL, [SortOrder] = 15.70 WHERE [Code] = 'spm' END +SET [Description] = 'Akukem', [Definition] = NULL, [SortOrder] = 157.00 WHERE [Code] = 'spm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayk', 'Akuku', NULL, 15.80) END +VALUES ('ayk', 'Akuku', NULL, 158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akuku', [Definition] = NULL, [SortOrder] = 15.80 WHERE [Code] = 'ayk' END +SET [Description] = 'Akuku', [Definition] = NULL, [SortOrder] = 158.00 WHERE [Code] = 'ayk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aku', 'Akum', NULL, 15.90) END +VALUES ('aku', 'Akum', NULL, 159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akum', [Definition] = NULL, [SortOrder] = 15.90 WHERE [Code] = 'aku' END +SET [Description] = 'Akum', [Definition] = NULL, [SortOrder] = 159.00 WHERE [Code] = 'aku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqz', 'Akuntsu', NULL, 16.00) END +VALUES ('aqz', 'Akuntsu', NULL, 160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akuntsu', [Definition] = NULL, [SortOrder] = 16.00 WHERE [Code] = 'aqz' END +SET [Description] = 'Akuntsu', [Definition] = NULL, [SortOrder] = 160.00 WHERE [Code] = 'aqz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ako') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ako', 'Akurio', NULL, 16.10) END +VALUES ('ako', 'Akurio', NULL, 161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akurio', [Definition] = NULL, [SortOrder] = 16.10 WHERE [Code] = 'ako' END +SET [Description] = 'Akurio', [Definition] = NULL, [SortOrder] = 161.00 WHERE [Code] = 'ako' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akw', 'Akwa', NULL, 16.20) END +VALUES ('akw', 'Akwa', NULL, 162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akwa', [Definition] = NULL, [SortOrder] = 16.20 WHERE [Code] = 'akw' END +SET [Description] = 'Akwa', [Definition] = NULL, [SortOrder] = 162.00 WHERE [Code] = 'akw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqy', 'Akyaung Ari Naga', NULL, 16.30) END +VALUES ('nqy', 'Akyaung Ari Naga', NULL, 163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Akyaung Ari Naga', [Definition] = NULL, [SortOrder] = 16.30 WHERE [Code] = 'nqy' END +SET [Description] = 'Akyaung Ari Naga', [Definition] = NULL, [SortOrder] = 163.00 WHERE [Code] = 'nqy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syy', 'Al-Sayyid Bedouin Sign Language', NULL, 16.40) END +VALUES ('syy', 'Al-Sayyid Bedouin Sign Language', NULL, 164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Al-Sayyid Bedouin Sign Language', [Definition] = NULL, [SortOrder] = 16.40 WHERE [Code] = 'syy' END +SET [Description] = 'Al-Sayyid Bedouin Sign Language', [Definition] = NULL, [SortOrder] = 164.00 WHERE [Code] = 'syy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alw', 'Alaba-K''abeena', NULL, 16.50) END +VALUES ('alw', 'Alaba-K''abeena', NULL, 165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alaba-K''abeena', [Definition] = NULL, [SortOrder] = 16.50 WHERE [Code] = 'alw' END +SET [Description] = 'Alaba-K''abeena', [Definition] = NULL, [SortOrder] = 165.00 WHERE [Code] = 'alw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akz', 'Alabama', NULL, 16.60) END +VALUES ('akz', 'Alabama', NULL, 166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alabama', [Definition] = NULL, [SortOrder] = 16.60 WHERE [Code] = 'akz' END +SET [Description] = 'Alabama', [Definition] = NULL, [SortOrder] = 166.00 WHERE [Code] = 'akz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dul', 'Alabat Island Agta', NULL, 16.70) END +VALUES ('dul', 'Alabat Island Agta', NULL, 167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alabat Island Agta', [Definition] = NULL, [SortOrder] = 16.70 WHERE [Code] = 'dul' END +SET [Description] = 'Alabat Island Agta', [Definition] = NULL, [SortOrder] = 167.00 WHERE [Code] = 'dul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mim', 'Alacatlatzala Mixtec', NULL, 16.80) END +VALUES ('mim', 'Alacatlatzala Mixtec', NULL, 168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alacatlatzala Mixtec', [Definition] = NULL, [SortOrder] = 16.80 WHERE [Code] = 'mim' END +SET [Description] = 'Alacatlatzala Mixtec', [Definition] = NULL, [SortOrder] = 168.00 WHERE [Code] = 'mim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ala') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ala', 'Alago', NULL, 16.90) END +VALUES ('ala', 'Alago', NULL, 169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alago', [Definition] = NULL, [SortOrder] = 16.90 WHERE [Code] = 'ala' END +SET [Description] = 'Alago', [Definition] = NULL, [SortOrder] = 169.00 WHERE [Code] = 'ala' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbj', 'Alagwa', NULL, 17.00) END +VALUES ('wbj', 'Alagwa', NULL, 170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alagwa', [Definition] = NULL, [SortOrder] = 17.00 WHERE [Code] = 'wbj' END +SET [Description] = 'Alagwa', [Definition] = NULL, [SortOrder] = 170.00 WHERE [Code] = 'wbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alk', 'Alak', NULL, 17.10) END +VALUES ('alk', 'Alak', NULL, 171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alak', [Definition] = NULL, [SortOrder] = 17.10 WHERE [Code] = 'alk' END +SET [Description] = 'Alak', [Definition] = NULL, [SortOrder] = 171.00 WHERE [Code] = 'alk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amp', 'Alamblak', NULL, 17.20) END +VALUES ('amp', 'Alamblak', NULL, 172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alamblak', [Definition] = NULL, [SortOrder] = 17.20 WHERE [Code] = 'amp' END +SET [Description] = 'Alamblak', [Definition] = NULL, [SortOrder] = 172.00 WHERE [Code] = 'amp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alj', 'Alangan', NULL, 17.30) END +VALUES ('alj', 'Alangan', NULL, 173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alangan', [Definition] = NULL, [SortOrder] = 17.30 WHERE [Code] = 'alj' END +SET [Description] = 'Alangan', [Definition] = NULL, [SortOrder] = 173.00 WHERE [Code] = 'alj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xln', 'Alanic', NULL, 17.40) END +VALUES ('xln', 'Alanic', NULL, 174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alanic', [Definition] = NULL, [SortOrder] = 17.40 WHERE [Code] = 'xln' END +SET [Description] = 'Alanic', [Definition] = NULL, [SortOrder] = 174.00 WHERE [Code] = 'xln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apv', 'Alapmunte', NULL, 17.50) END +VALUES ('apv', 'Alapmunte', NULL, 175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alapmunte', [Definition] = NULL, [SortOrder] = 17.50 WHERE [Code] = 'apv' END +SET [Description] = 'Alapmunte', [Definition] = NULL, [SortOrder] = 175.00 WHERE [Code] = 'apv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alh', 'Alawa', NULL, 17.60) END +VALUES ('alh', 'Alawa', NULL, 176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alawa', [Definition] = NULL, [SortOrder] = 17.60 WHERE [Code] = 'alh' END +SET [Description] = 'Alawa', [Definition] = NULL, [SortOrder] = 176.00 WHERE [Code] = 'alh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqi', 'Albanian', NULL, 17.70) END +VALUES ('sqi', 'Albanian', NULL, 177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Albanian', [Definition] = NULL, [SortOrder] = 17.70 WHERE [Code] = 'sqi' END +SET [Description] = 'Albanian', [Definition] = NULL, [SortOrder] = 177.00 WHERE [Code] = 'sqi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqk', 'Albanian Sign Language', NULL, 17.80) END +VALUES ('sqk', 'Albanian Sign Language', NULL, 178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Albanian Sign Language', [Definition] = NULL, [SortOrder] = 17.80 WHERE [Code] = 'sqk' END +SET [Description] = 'Albanian Sign Language', [Definition] = NULL, [SortOrder] = 178.00 WHERE [Code] = 'sqk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsc', 'Albarradas Sign Language', NULL, 17.90) END +VALUES ('lsc', 'Albarradas Sign Language', NULL, 179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Albarradas Sign Language', [Definition] = NULL, [SortOrder] = 17.90 WHERE [Code] = 'lsc' END +SET [Description] = 'Albarradas Sign Language', [Definition] = NULL, [SortOrder] = 179.00 WHERE [Code] = 'lsc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xta', 'Alcozauca Mixtec', NULL, 18.00) END +VALUES ('xta', 'Alcozauca Mixtec', NULL, 180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alcozauca Mixtec', [Definition] = NULL, [SortOrder] = 18.00 WHERE [Code] = 'xta' END +SET [Description] = 'Alcozauca Mixtec', [Definition] = NULL, [SortOrder] = 180.00 WHERE [Code] = 'xta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alf', 'Alege', NULL, 18.10) END +VALUES ('alf', 'Alege', NULL, 181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alege', [Definition] = NULL, [SortOrder] = 18.10 WHERE [Code] = 'alf' END +SET [Description] = 'Alege', [Definition] = NULL, [SortOrder] = 181.00 WHERE [Code] = 'alf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gah', 'Alekano', NULL, 18.20) END +VALUES ('gah', 'Alekano', NULL, 182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alekano', [Definition] = NULL, [SortOrder] = 18.20 WHERE [Code] = 'gah' END +SET [Description] = 'Alekano', [Definition] = NULL, [SortOrder] = 182.00 WHERE [Code] = 'gah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ale') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ale', 'Aleut', NULL, 18.30) END +VALUES ('ale', 'Aleut', NULL, 183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aleut', [Definition] = NULL, [SortOrder] = 18.30 WHERE [Code] = 'ale' END +SET [Description] = 'Aleut', [Definition] = NULL, [SortOrder] = 183.00 WHERE [Code] = 'ale' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arq', 'Algerian Arabic', NULL, 18.40) END +VALUES ('arq', 'Algerian Arabic', NULL, 184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algerian Arabic', [Definition] = NULL, [SortOrder] = 18.40 WHERE [Code] = 'arq' END +SET [Description] = 'Algerian Arabic', [Definition] = NULL, [SortOrder] = 184.00 WHERE [Code] = 'arq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajs', 'Algerian Jewish Sign Language', NULL, 18.50) END +VALUES ('ajs', 'Algerian Jewish Sign Language', NULL, 185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algerian Jewish Sign Language', [Definition] = NULL, [SortOrder] = 18.50 WHERE [Code] = 'ajs' END +SET [Description] = 'Algerian Jewish Sign Language', [Definition] = NULL, [SortOrder] = 185.00 WHERE [Code] = 'ajs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aao', 'Algerian Saharan Arabic', NULL, 18.60) END +VALUES ('aao', 'Algerian Saharan Arabic', NULL, 186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algerian Saharan Arabic', [Definition] = NULL, [SortOrder] = 18.60 WHERE [Code] = 'aao' END +SET [Description] = 'Algerian Saharan Arabic', [Definition] = NULL, [SortOrder] = 186.00 WHERE [Code] = 'aao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asp', 'Algerian Sign Language', NULL, 18.70) END +VALUES ('asp', 'Algerian Sign Language', NULL, 187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algerian Sign Language', [Definition] = NULL, [SortOrder] = 18.70 WHERE [Code] = 'asp' END +SET [Description] = 'Algerian Sign Language', [Definition] = NULL, [SortOrder] = 187.00 WHERE [Code] = 'asp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alq', 'Algonquin', NULL, 18.80) END +VALUES ('alq', 'Algonquin', NULL, 188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Algonquin', [Definition] = NULL, [SortOrder] = 18.80 WHERE [Code] = 'alq' END +SET [Description] = 'Algonquin', [Definition] = NULL, [SortOrder] = 188.00 WHERE [Code] = 'alq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aiy', 'Ali', NULL, 18.90) END +VALUES ('aiy', 'Ali', NULL, 189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ali', [Definition] = NULL, [SortOrder] = 18.90 WHERE [Code] = 'aiy' END +SET [Description] = 'Ali', [Definition] = NULL, [SortOrder] = 189.00 WHERE [Code] = 'aiy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ald') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ald', 'Alladian', NULL, 19.00) END +VALUES ('ald', 'Alladian', NULL, 190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alladian', [Definition] = NULL, [SortOrder] = 19.00 WHERE [Code] = 'ald' END +SET [Description] = 'Alladian', [Definition] = NULL, [SortOrder] = 190.00 WHERE [Code] = 'ald' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'all') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('all', 'Allar', NULL, 19.10) END +VALUES ('all', 'Allar', NULL, 191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Allar', [Definition] = NULL, [SortOrder] = 19.10 WHERE [Code] = 'all' END +SET [Description] = 'Allar', [Definition] = NULL, [SortOrder] = 191.00 WHERE [Code] = 'all' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aid', 'Alngith', NULL, 19.20) END +VALUES ('aid', 'Alngith', NULL, 192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alngith', [Definition] = NULL, [SortOrder] = 19.20 WHERE [Code] = 'aid' END +SET [Description] = 'Alngith', [Definition] = NULL, [SortOrder] = 192.00 WHERE [Code] = 'aid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypo', 'Alo Phola', NULL, 19.30) END +VALUES ('ypo', 'Alo Phola', NULL, 193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alo Phola', [Definition] = NULL, [SortOrder] = 19.30 WHERE [Code] = 'ypo' END +SET [Description] = 'Alo Phola', [Definition] = NULL, [SortOrder] = 193.00 WHERE [Code] = 'ypo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaq', 'Aloápam Zapotec', NULL, 19.40) END +VALUES ('zaq', 'Aloápam Zapotec', NULL, 194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aloápam Zapotec', [Definition] = NULL, [SortOrder] = 19.40 WHERE [Code] = 'zaq' END +SET [Description] = 'Aloápam Zapotec', [Definition] = NULL, [SortOrder] = 194.00 WHERE [Code] = 'zaq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aol', 'Alor', NULL, 19.50) END +VALUES ('aol', 'Alor', NULL, 195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alor', [Definition] = NULL, [SortOrder] = 19.50 WHERE [Code] = 'aol' END +SET [Description] = 'Alor', [Definition] = NULL, [SortOrder] = 195.00 WHERE [Code] = 'aol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aes', 'Alsea', NULL, 19.60) END +VALUES ('aes', 'Alsea', NULL, 196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alsea', [Definition] = NULL, [SortOrder] = 19.60 WHERE [Code] = 'aes' END +SET [Description] = 'Alsea', [Definition] = NULL, [SortOrder] = 196.00 WHERE [Code] = 'aes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xua', 'Alu Kurumba', NULL, 19.70) END +VALUES ('xua', 'Alu Kurumba', NULL, 197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alu Kurumba', [Definition] = NULL, [SortOrder] = 19.70 WHERE [Code] = 'xua' END +SET [Description] = 'Alu Kurumba', [Definition] = NULL, [SortOrder] = 197.00 WHERE [Code] = 'xua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aub', 'Alugu', NULL, 19.80) END +VALUES ('aub', 'Alugu', NULL, 198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alugu', [Definition] = NULL, [SortOrder] = 19.80 WHERE [Code] = 'aub' END +SET [Description] = 'Alugu', [Definition] = NULL, [SortOrder] = 198.00 WHERE [Code] = 'aub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aab', 'Alumu-Tesu', NULL, 19.90) END +VALUES ('aab', 'Alumu-Tesu', NULL, 199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alumu-Tesu', [Definition] = NULL, [SortOrder] = 19.90 WHERE [Code] = 'aab' END +SET [Description] = 'Alumu-Tesu', [Definition] = NULL, [SortOrder] = 199.00 WHERE [Code] = 'aab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alp', 'Alune', NULL, 20.00) END +VALUES ('alp', 'Alune', NULL, 200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alune', [Definition] = NULL, [SortOrder] = 20.00 WHERE [Code] = 'alp' END +SET [Description] = 'Alune', [Definition] = NULL, [SortOrder] = 200.00 WHERE [Code] = 'alp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yna', 'Aluo', NULL, 20.10) END +VALUES ('yna', 'Aluo', NULL, 201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aluo', [Definition] = NULL, [SortOrder] = 20.10 WHERE [Code] = 'yna' END +SET [Description] = 'Aluo', [Definition] = NULL, [SortOrder] = 201.00 WHERE [Code] = 'yna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alz', 'Alur', NULL, 20.20) END +VALUES ('alz', 'Alur', NULL, 202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alur', [Definition] = NULL, [SortOrder] = 20.20 WHERE [Code] = 'alz' END +SET [Description] = 'Alur', [Definition] = NULL, [SortOrder] = 202.00 WHERE [Code] = 'alz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alr', 'Alutor', NULL, 20.30) END +VALUES ('alr', 'Alutor', NULL, 203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alutor', [Definition] = NULL, [SortOrder] = 20.30 WHERE [Code] = 'alr' END +SET [Description] = 'Alutor', [Definition] = NULL, [SortOrder] = 203.00 WHERE [Code] = 'alr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avd', 'Alviri-Vidari', NULL, 20.40) END +VALUES ('avd', 'Alviri-Vidari', NULL, 204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alviri-Vidari', [Definition] = NULL, [SortOrder] = 20.40 WHERE [Code] = 'avd' END +SET [Description] = 'Alviri-Vidari', [Definition] = NULL, [SortOrder] = 204.00 WHERE [Code] = 'avd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aly', 'Alyawarr', NULL, 20.50) END +VALUES ('aly', 'Alyawarr', NULL, 205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Alyawarr', [Definition] = NULL, [SortOrder] = 20.50 WHERE [Code] = 'aly' END +SET [Description] = 'Alyawarr', [Definition] = NULL, [SortOrder] = 205.00 WHERE [Code] = 'aly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amm', 'Ama (Papua New Guinea)', NULL, 20.60) END +VALUES ('amm', 'Ama (Papua New Guinea)', NULL, 206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ama (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 20.60 WHERE [Code] = 'amm' END +SET [Description] = 'Ama (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 206.00 WHERE [Code] = 'amm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyi', 'Ama (Sudan)', NULL, 20.70) END +VALUES ('nyi', 'Ama (Sudan)', NULL, 207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ama (Sudan)', [Definition] = NULL, [SortOrder] = 20.70 WHERE [Code] = 'nyi' END +SET [Description] = 'Ama (Sudan)', [Definition] = NULL, [SortOrder] = 207.00 WHERE [Code] = 'nyi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amq', 'Amahai', NULL, 20.80) END +VALUES ('amq', 'Amahai', NULL, 208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amahai', [Definition] = NULL, [SortOrder] = 20.80 WHERE [Code] = 'amq' END +SET [Description] = 'Amahai', [Definition] = NULL, [SortOrder] = 208.00 WHERE [Code] = 'amq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amc', 'Amahuaca', NULL, 20.90) END +VALUES ('amc', 'Amahuaca', NULL, 209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amahuaca', [Definition] = NULL, [SortOrder] = 20.90 WHERE [Code] = 'amc' END +SET [Description] = 'Amahuaca', [Definition] = NULL, [SortOrder] = 209.00 WHERE [Code] = 'amc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ali') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ali', 'Amaimon', NULL, 21.00) END +VALUES ('ali', 'Amaimon', NULL, 210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amaimon', [Definition] = NULL, [SortOrder] = 21.00 WHERE [Code] = 'ali' END +SET [Description] = 'Amaimon', [Definition] = NULL, [SortOrder] = 210.00 WHERE [Code] = 'ali' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aad', 'Amal', NULL, 21.10) END +VALUES ('aad', 'Amal', NULL, 211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amal', [Definition] = NULL, [SortOrder] = 21.10 WHERE [Code] = 'aad' END +SET [Description] = 'Amal', [Definition] = NULL, [SortOrder] = 211.00 WHERE [Code] = 'aad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jks', 'Amami Koniya Sign Language', NULL, 21.20) END +VALUES ('jks', 'Amami Koniya Sign Language', NULL, 212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amami Koniya Sign Language', [Definition] = NULL, [SortOrder] = 21.20 WHERE [Code] = 'jks' END +SET [Description] = 'Amami Koniya Sign Language', [Definition] = NULL, [SortOrder] = 212.00 WHERE [Code] = 'jks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amn', 'Amanab', NULL, 21.30) END +VALUES ('amn', 'Amanab', NULL, 213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amanab', [Definition] = NULL, [SortOrder] = 21.30 WHERE [Code] = 'amn' END +SET [Description] = 'Amanab', [Definition] = NULL, [SortOrder] = 213.00 WHERE [Code] = 'amn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ama') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ama', 'Amanayé', NULL, 21.40) END +VALUES ('ama', 'Amanayé', NULL, 214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amanayé', [Definition] = NULL, [SortOrder] = 21.40 WHERE [Code] = 'ama' END +SET [Description] = 'Amanayé', [Definition] = NULL, [SortOrder] = 214.00 WHERE [Code] = 'ama' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aie', 'Amara', NULL, 21.50) END +VALUES ('aie', 'Amara', NULL, 215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amara', [Definition] = NULL, [SortOrder] = 21.50 WHERE [Code] = 'aie' END +SET [Description] = 'Amara', [Definition] = NULL, [SortOrder] = 215.00 WHERE [Code] = 'aie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amr', 'Amarakaeri', NULL, 21.60) END +VALUES ('amr', 'Amarakaeri', NULL, 216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amarakaeri', [Definition] = NULL, [SortOrder] = 21.60 WHERE [Code] = 'amr' END +SET [Description] = 'Amarakaeri', [Definition] = NULL, [SortOrder] = 216.00 WHERE [Code] = 'amr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaz', 'Amarasi', NULL, 21.70) END +VALUES ('aaz', 'Amarasi', NULL, 217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amarasi', [Definition] = NULL, [SortOrder] = 21.70 WHERE [Code] = 'aaz' END +SET [Description] = 'Amarasi', [Definition] = NULL, [SortOrder] = 217.00 WHERE [Code] = 'aaz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpo', 'Amatlán Zapotec', NULL, 21.80) END +VALUES ('zpo', 'Amatlán Zapotec', NULL, 218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amatlán Zapotec', [Definition] = NULL, [SortOrder] = 21.80 WHERE [Code] = 'zpo' END +SET [Description] = 'Amatlán Zapotec', [Definition] = NULL, [SortOrder] = 218.00 WHERE [Code] = 'zpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'utp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('utp', 'Amba (Solomon Islands)', NULL, 21.90) END +VALUES ('utp', 'Amba (Solomon Islands)', NULL, 219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amba (Solomon Islands)', [Definition] = NULL, [SortOrder] = 21.90 WHERE [Code] = 'utp' END +SET [Description] = 'Amba (Solomon Islands)', [Definition] = NULL, [SortOrder] = 219.00 WHERE [Code] = 'utp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwm', 'Amba (Uganda)', NULL, 22.00) END +VALUES ('rwm', 'Amba (Uganda)', NULL, 220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amba (Uganda)', [Definition] = NULL, [SortOrder] = 22.00 WHERE [Code] = 'rwm' END +SET [Description] = 'Amba (Uganda)', [Definition] = NULL, [SortOrder] = 220.00 WHERE [Code] = 'rwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amk', 'Ambai', NULL, 22.10) END +VALUES ('amk', 'Ambai', NULL, 221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambai', [Definition] = NULL, [SortOrder] = 22.10 WHERE [Code] = 'amk' END +SET [Description] = 'Ambai', [Definition] = NULL, [SortOrder] = 221.00 WHERE [Code] = 'amk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aew', 'Ambakich', NULL, 22.20) END +VALUES ('aew', 'Ambakich', NULL, 222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambakich', [Definition] = NULL, [SortOrder] = 22.20 WHERE [Code] = 'aew' END +SET [Description] = 'Ambakich', [Definition] = NULL, [SortOrder] = 222.00 WHERE [Code] = 'aew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abc', 'Ambala Ayta', NULL, 22.30) END +VALUES ('abc', 'Ambala Ayta', NULL, 223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambala Ayta', [Definition] = NULL, [SortOrder] = 22.30 WHERE [Code] = 'abc' END +SET [Description] = 'Ambala Ayta', [Definition] = NULL, [SortOrder] = 223.00 WHERE [Code] = 'abc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amv', 'Ambelau', NULL, 22.40) END +VALUES ('amv', 'Ambelau', NULL, 224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambelau', [Definition] = NULL, [SortOrder] = 22.40 WHERE [Code] = 'amv' END +SET [Description] = 'Ambelau', [Definition] = NULL, [SortOrder] = 224.00 WHERE [Code] = 'amv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ael') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ael', 'Ambele', NULL, 22.50) END +VALUES ('ael', 'Ambele', NULL, 225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambele', [Definition] = NULL, [SortOrder] = 22.50 WHERE [Code] = 'ael' END +SET [Description] = 'Ambele', [Definition] = NULL, [SortOrder] = 225.00 WHERE [Code] = 'ael' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alm', 'Amblong', NULL, 22.60) END +VALUES ('alm', 'Amblong', NULL, 226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amblong', [Definition] = NULL, [SortOrder] = 22.60 WHERE [Code] = 'alm' END +SET [Description] = 'Amblong', [Definition] = NULL, [SortOrder] = 226.00 WHERE [Code] = 'alm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amb', 'Ambo', NULL, 22.70) END +VALUES ('amb', 'Ambo', NULL, 227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambo', [Definition] = NULL, [SortOrder] = 22.70 WHERE [Code] = 'amb' END +SET [Description] = 'Ambo', [Definition] = NULL, [SortOrder] = 227.00 WHERE [Code] = 'amb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qva', 'Ambo-Pasco Quechua', NULL, 22.80) END +VALUES ('qva', 'Ambo-Pasco Quechua', NULL, 228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambo-Pasco Quechua', [Definition] = NULL, [SortOrder] = 22.80 WHERE [Code] = 'qva' END +SET [Description] = 'Ambo-Pasco Quechua', [Definition] = NULL, [SortOrder] = 228.00 WHERE [Code] = 'qva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abs', 'Ambonese Malay', NULL, 22.90) END +VALUES ('abs', 'Ambonese Malay', NULL, 229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambonese Malay', [Definition] = NULL, [SortOrder] = 22.90 WHERE [Code] = 'abs' END +SET [Description] = 'Ambonese Malay', [Definition] = NULL, [SortOrder] = 229.00 WHERE [Code] = 'abs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aag', 'Ambrak', NULL, 23.00) END +VALUES ('aag', 'Ambrak', NULL, 230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambrak', [Definition] = NULL, [SortOrder] = 23.00 WHERE [Code] = 'aag' END +SET [Description] = 'Ambrak', [Definition] = NULL, [SortOrder] = 230.00 WHERE [Code] = 'aag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apo', 'Ambul', NULL, 23.10) END +VALUES ('apo', 'Ambul', NULL, 231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambul', [Definition] = NULL, [SortOrder] = 23.10 WHERE [Code] = 'apo' END +SET [Description] = 'Ambul', [Definition] = NULL, [SortOrder] = 231.00 WHERE [Code] = 'apo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abt', 'Ambulas', NULL, 23.20) END +VALUES ('abt', 'Ambulas', NULL, 232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ambulas', [Definition] = NULL, [SortOrder] = 23.20 WHERE [Code] = 'abt' END +SET [Description] = 'Ambulas', [Definition] = NULL, [SortOrder] = 232.00 WHERE [Code] = 'abt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amj', 'Amdang', NULL, 23.30) END +VALUES ('amj', 'Amdang', NULL, 233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amdang', [Definition] = NULL, [SortOrder] = 23.30 WHERE [Code] = 'amj' END +SET [Description] = 'Amdang', [Definition] = NULL, [SortOrder] = 233.00 WHERE [Code] = 'amj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adx', 'Amdo Tibetan', NULL, 23.40) END +VALUES ('adx', 'Amdo Tibetan', NULL, 234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amdo Tibetan', [Definition] = NULL, [SortOrder] = 23.40 WHERE [Code] = 'adx' END +SET [Description] = 'Amdo Tibetan', [Definition] = NULL, [SortOrder] = 234.00 WHERE [Code] = 'adx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aey', 'Amele', NULL, 23.50) END +VALUES ('aey', 'Amele', NULL, 235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amele', [Definition] = NULL, [SortOrder] = 23.50 WHERE [Code] = 'aey' END +SET [Description] = 'Amele', [Definition] = NULL, [SortOrder] = 235.00 WHERE [Code] = 'aey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ase') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ase', 'American Sign Language', NULL, 23.60) END +VALUES ('ase', 'American Sign Language', NULL, 236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'American Sign Language', [Definition] = NULL, [SortOrder] = 23.60 WHERE [Code] = 'ase' END +SET [Description] = 'American Sign Language', [Definition] = NULL, [SortOrder] = 236.00 WHERE [Code] = 'ase' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifa', 'Amganad Ifugao', NULL, 23.70) END +VALUES ('ifa', 'Amganad Ifugao', NULL, 237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amganad Ifugao', [Definition] = NULL, [SortOrder] = 23.70 WHERE [Code] = 'ifa' END +SET [Description] = 'Amganad Ifugao', [Definition] = NULL, [SortOrder] = 237.00 WHERE [Code] = 'ifa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amh', 'Amharic', NULL, 23.80) END +VALUES ('amh', 'Amharic', NULL, 238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amharic', [Definition] = NULL, [SortOrder] = 23.80 WHERE [Code] = 'amh' END +SET [Description] = 'Amharic', [Definition] = NULL, [SortOrder] = 238.00 WHERE [Code] = 'amh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amy', 'Ami', NULL, 23.90) END +VALUES ('amy', 'Ami', NULL, 239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ami', [Definition] = NULL, [SortOrder] = 23.90 WHERE [Code] = 'amy' END +SET [Description] = 'Ami', [Definition] = NULL, [SortOrder] = 239.00 WHERE [Code] = 'amy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ami') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ami', 'Amis', NULL, 24.00) END +VALUES ('ami', 'Amis', NULL, 240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amis', [Definition] = NULL, [SortOrder] = 24.00 WHERE [Code] = 'ami' END +SET [Description] = 'Amis', [Definition] = NULL, [SortOrder] = 240.00 WHERE [Code] = 'ami' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amo', 'Amo', NULL, 24.10) END +VALUES ('amo', 'Amo', NULL, 241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amo', [Definition] = NULL, [SortOrder] = 24.10 WHERE [Code] = 'amo' END +SET [Description] = 'Amo', [Definition] = NULL, [SortOrder] = 241.00 WHERE [Code] = 'amo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alx', 'Amol', NULL, 24.20) END +VALUES ('alx', 'Amol', NULL, 242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amol', [Definition] = NULL, [SortOrder] = 24.20 WHERE [Code] = 'alx' END +SET [Description] = 'Amol', [Definition] = NULL, [SortOrder] = 242.00 WHERE [Code] = 'alx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbz', 'Amoltepec Mixtec', NULL, 24.30) END +VALUES ('mbz', 'Amoltepec Mixtec', NULL, 243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amoltepec Mixtec', [Definition] = NULL, [SortOrder] = 24.30 WHERE [Code] = 'mbz' END +SET [Description] = 'Amoltepec Mixtec', [Definition] = NULL, [SortOrder] = 243.00 WHERE [Code] = 'mbz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apg', 'Ampanang', NULL, 24.40) END +VALUES ('apg', 'Ampanang', NULL, 244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ampanang', [Definition] = NULL, [SortOrder] = 24.40 WHERE [Code] = 'apg' END +SET [Description] = 'Ampanang', [Definition] = NULL, [SortOrder] = 244.00 WHERE [Code] = 'apg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqd', 'Ampari Dogon', NULL, 24.50) END +VALUES ('aqd', 'Ampari Dogon', NULL, 245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ampari Dogon', [Definition] = NULL, [SortOrder] = 24.50 WHERE [Code] = 'aqd' END +SET [Description] = 'Ampari Dogon', [Definition] = NULL, [SortOrder] = 245.00 WHERE [Code] = 'aqd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajz', 'Amri Karbi', NULL, 24.60) END +VALUES ('ajz', 'Amri Karbi', NULL, 246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amri Karbi', [Definition] = NULL, [SortOrder] = 24.60 WHERE [Code] = 'ajz' END +SET [Description] = 'Amri Karbi', [Definition] = NULL, [SortOrder] = 246.00 WHERE [Code] = 'ajz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amt', 'Amto', NULL, 24.70) END +VALUES ('amt', 'Amto', NULL, 247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amto', [Definition] = NULL, [SortOrder] = 24.70 WHERE [Code] = 'amt' END +SET [Description] = 'Amto', [Definition] = NULL, [SortOrder] = 247.00 WHERE [Code] = 'amt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adw', 'Amundava', NULL, 24.80) END +VALUES ('adw', 'Amundava', NULL, 248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amundava', [Definition] = NULL, [SortOrder] = 24.80 WHERE [Code] = 'adw' END +SET [Description] = 'Amundava', [Definition] = NULL, [SortOrder] = 248.00 WHERE [Code] = 'adw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amg', 'Amurdak', NULL, 24.90) END +VALUES ('amg', 'Amurdak', NULL, 249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Amurdak', [Definition] = NULL, [SortOrder] = 24.90 WHERE [Code] = 'amg' END +SET [Description] = 'Amurdak', [Definition] = NULL, [SortOrder] = 249.00 WHERE [Code] = 'amg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dti', 'Ana Tinga Dogon', NULL, 25.00) END +VALUES ('dti', 'Ana Tinga Dogon', NULL, 250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ana Tinga Dogon', [Definition] = NULL, [SortOrder] = 25.00 WHERE [Code] = 'dti' END +SET [Description] = 'Ana Tinga Dogon', [Definition] = NULL, [SortOrder] = 250.00 WHERE [Code] = 'dti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anw', 'Anaang', NULL, 25.10) END +VALUES ('anw', 'Anaang', NULL, 251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anaang', [Definition] = NULL, [SortOrder] = 25.10 WHERE [Code] = 'anw' END +SET [Description] = 'Anaang', [Definition] = NULL, [SortOrder] = 251.00 WHERE [Code] = 'anw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akg', 'Anakalangu', NULL, 25.20) END +VALUES ('akg', 'Anakalangu', NULL, 252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anakalangu', [Definition] = NULL, [SortOrder] = 25.20 WHERE [Code] = 'akg' END +SET [Description] = 'Anakalangu', [Definition] = NULL, [SortOrder] = 252.00 WHERE [Code] = 'akg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anm', 'Anal', NULL, 25.30) END +VALUES ('anm', 'Anal', NULL, 253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anal', [Definition] = NULL, [SortOrder] = 25.30 WHERE [Code] = 'anm' END +SET [Description] = 'Anal', [Definition] = NULL, [SortOrder] = 253.00 WHERE [Code] = 'anm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pda', 'Anam', NULL, 25.40) END +VALUES ('pda', 'Anam', NULL, 254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anam', [Definition] = NULL, [SortOrder] = 25.40 WHERE [Code] = 'pda' END +SET [Description] = 'Anam', [Definition] = NULL, [SortOrder] = 254.00 WHERE [Code] = 'pda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aan', 'Anambé', NULL, 25.50) END +VALUES ('aan', 'Anambé', NULL, 255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anambé', [Definition] = NULL, [SortOrder] = 25.50 WHERE [Code] = 'aan' END +SET [Description] = 'Anambé', [Definition] = NULL, [SortOrder] = 255.00 WHERE [Code] = 'aan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imi', 'Anamgura', NULL, 25.60) END +VALUES ('imi', 'Anamgura', NULL, 256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anamgura', [Definition] = NULL, [SortOrder] = 25.60 WHERE [Code] = 'imi' END +SET [Description] = 'Anamgura', [Definition] = NULL, [SortOrder] = 256.00 WHERE [Code] = 'imi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpo', 'Anasi', NULL, 25.70) END +VALUES ('bpo', 'Anasi', NULL, 257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anasi', [Definition] = NULL, [SortOrder] = 25.70 WHERE [Code] = 'bpo' END +SET [Description] = 'Anasi', [Definition] = NULL, [SortOrder] = 257.00 WHERE [Code] = 'bpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acb', 'Áncá', NULL, 25.80) END +VALUES ('acb', 'Áncá', NULL, 258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Áncá', [Definition] = NULL, [SortOrder] = 25.80 WHERE [Code] = 'acb' END +SET [Description] = 'Áncá', [Definition] = NULL, [SortOrder] = 258.00 WHERE [Code] = 'acb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grc', 'Ancient Greek (to 1453)', NULL, 25.90) END +VALUES ('grc', 'Ancient Greek (to 1453)', NULL, 259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient Greek (to 1453)', [Definition] = NULL, [SortOrder] = 25.90 WHERE [Code] = 'grc' END +SET [Description] = 'Ancient Greek (to 1453)', [Definition] = NULL, [SortOrder] = 259.00 WHERE [Code] = 'grc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbo', 'Ancient Hebrew', NULL, 26.00) END +VALUES ('hbo', 'Ancient Hebrew', NULL, 260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient Hebrew', [Definition] = NULL, [SortOrder] = 26.00 WHERE [Code] = 'hbo' END +SET [Description] = 'Ancient Hebrew', [Definition] = NULL, [SortOrder] = 260.00 WHERE [Code] = 'hbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmk', 'Ancient Macedonian', NULL, 26.10) END +VALUES ('xmk', 'Ancient Macedonian', NULL, 261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient Macedonian', [Definition] = NULL, [SortOrder] = 26.10 WHERE [Code] = 'xmk' END +SET [Description] = 'Ancient Macedonian', [Definition] = NULL, [SortOrder] = 261.00 WHERE [Code] = 'xmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xna', 'Ancient North Arabian', NULL, 26.20) END +VALUES ('xna', 'Ancient North Arabian', NULL, 262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient North Arabian', [Definition] = NULL, [SortOrder] = 26.20 WHERE [Code] = 'xna' END +SET [Description] = 'Ancient North Arabian', [Definition] = NULL, [SortOrder] = 262.00 WHERE [Code] = 'xna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xzp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xzp', 'Ancient Zapotec', NULL, 26.30) END +VALUES ('xzp', 'Ancient Zapotec', NULL, 263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ancient Zapotec', [Definition] = NULL, [SortOrder] = 26.30 WHERE [Code] = 'xzp' END +SET [Description] = 'Ancient Zapotec', [Definition] = NULL, [SortOrder] = 263.00 WHERE [Code] = 'xzp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgl', 'Andaandi', NULL, 26.40) END +VALUES ('dgl', 'Andaandi', NULL, 264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andaandi', [Definition] = NULL, [SortOrder] = 26.40 WHERE [Code] = 'dgl' END +SET [Description] = 'Andaandi', [Definition] = NULL, [SortOrder] = 264.00 WHERE [Code] = 'dgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afd', 'Andai', NULL, 26.50) END +VALUES ('afd', 'Andai', NULL, 265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andai', [Definition] = NULL, [SortOrder] = 26.50 WHERE [Code] = 'afd' END +SET [Description] = 'Andai', [Definition] = NULL, [SortOrder] = 265.00 WHERE [Code] = 'afd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajn', 'Andajin', NULL, 26.60) END +VALUES ('ajn', 'Andajin', NULL, 266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andajin', [Definition] = NULL, [SortOrder] = 26.60 WHERE [Code] = 'ajn' END +SET [Description] = 'Andajin', [Definition] = NULL, [SortOrder] = 266.00 WHERE [Code] = 'ajn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xaa', 'Andalusian Arabic', NULL, 26.70) END +VALUES ('xaa', 'Andalusian Arabic', NULL, 267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andalusian Arabic', [Definition] = NULL, [SortOrder] = 26.70 WHERE [Code] = 'xaa' END +SET [Description] = 'Andalusian Arabic', [Definition] = NULL, [SortOrder] = 267.00 WHERE [Code] = 'xaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hca', 'Andaman Creole Hindi', NULL, 26.80) END +VALUES ('hca', 'Andaman Creole Hindi', NULL, 268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andaman Creole Hindi', [Definition] = NULL, [SortOrder] = 26.80 WHERE [Code] = 'hca' END +SET [Description] = 'Andaman Creole Hindi', [Definition] = NULL, [SortOrder] = 268.00 WHERE [Code] = 'hca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ana') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ana', 'Andaqui', NULL, 26.90) END +VALUES ('ana', 'Andaqui', NULL, 269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andaqui', [Definition] = NULL, [SortOrder] = 26.90 WHERE [Code] = 'ana' END +SET [Description] = 'Andaqui', [Definition] = NULL, [SortOrder] = 269.00 WHERE [Code] = 'ana' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aod', 'Andarum', NULL, 27.00) END +VALUES ('aod', 'Andarum', NULL, 270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andarum', [Definition] = NULL, [SortOrder] = 27.00 WHERE [Code] = 'aod' END +SET [Description] = 'Andarum', [Definition] = NULL, [SortOrder] = 270.00 WHERE [Code] = 'aod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adg', 'Andegerebinha', NULL, 27.10) END +VALUES ('adg', 'Andegerebinha', NULL, 271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andegerebinha', [Definition] = NULL, [SortOrder] = 27.10 WHERE [Code] = 'adg' END +SET [Description] = 'Andegerebinha', [Definition] = NULL, [SortOrder] = 271.00 WHERE [Code] = 'adg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anr', 'Andh', NULL, 27.20) END +VALUES ('anr', 'Andh', NULL, 272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andh', [Definition] = NULL, [SortOrder] = 27.20 WHERE [Code] = 'anr' END +SET [Description] = 'Andh', [Definition] = NULL, [SortOrder] = 272.00 WHERE [Code] = 'anr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ani') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ani', 'Andi', NULL, 27.30) END +VALUES ('ani', 'Andi', NULL, 273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andi', [Definition] = NULL, [SortOrder] = 27.30 WHERE [Code] = 'ani' END +SET [Description] = 'Andi', [Definition] = NULL, [SortOrder] = 273.00 WHERE [Code] = 'ani' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzb', 'Andio', NULL, 27.40) END +VALUES ('bzb', 'Andio', NULL, 274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andio', [Definition] = NULL, [SortOrder] = 27.40 WHERE [Code] = 'bzb' END +SET [Description] = 'Andio', [Definition] = NULL, [SortOrder] = 274.00 WHERE [Code] = 'bzb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anb', 'Andoa', NULL, 27.50) END +VALUES ('anb', 'Andoa', NULL, 275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andoa', [Definition] = NULL, [SortOrder] = 27.50 WHERE [Code] = 'anb' END +SET [Description] = 'Andoa', [Definition] = NULL, [SortOrder] = 275.00 WHERE [Code] = 'anb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ano') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ano', 'Andoque', NULL, 27.60) END +VALUES ('ano', 'Andoque', NULL, 276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andoque', [Definition] = NULL, [SortOrder] = 27.60 WHERE [Code] = 'ano' END +SET [Description] = 'Andoque', [Definition] = NULL, [SortOrder] = 276.00 WHERE [Code] = 'ano' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anx', 'Andra-Hus', NULL, 27.70) END +VALUES ('anx', 'Andra-Hus', NULL, 277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Andra-Hus', [Definition] = NULL, [SortOrder] = 27.70 WHERE [Code] = 'anx' END +SET [Description] = 'Andra-Hus', [Definition] = NULL, [SortOrder] = 277.00 WHERE [Code] = 'anx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aty', 'Aneityum', NULL, 27.80) END +VALUES ('aty', 'Aneityum', NULL, 278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aneityum', [Definition] = NULL, [SortOrder] = 27.80 WHERE [Code] = 'aty' END +SET [Description] = 'Aneityum', [Definition] = NULL, [SortOrder] = 278.00 WHERE [Code] = 'aty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anz', 'Anem', NULL, 27.90) END +VALUES ('anz', 'Anem', NULL, 279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anem', [Definition] = NULL, [SortOrder] = 27.90 WHERE [Code] = 'anz' END +SET [Description] = 'Anem', [Definition] = NULL, [SortOrder] = 279.00 WHERE [Code] = 'anz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aby', 'Aneme Wake', NULL, 28.00) END +VALUES ('aby', 'Aneme Wake', NULL, 280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aneme Wake', [Definition] = NULL, [SortOrder] = 28.00 WHERE [Code] = 'aby' END +SET [Description] = 'Aneme Wake', [Definition] = NULL, [SortOrder] = 280.00 WHERE [Code] = 'aby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myo', 'Anfillo', NULL, 28.10) END +VALUES ('myo', 'Anfillo', NULL, 281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anfillo', [Definition] = NULL, [SortOrder] = 28.10 WHERE [Code] = 'myo' END +SET [Description] = 'Anfillo', [Definition] = NULL, [SortOrder] = 281.00 WHERE [Code] = 'myo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agm', 'Angaataha', NULL, 28.20) END +VALUES ('agm', 'Angaataha', NULL, 282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angaataha', [Definition] = NULL, [SortOrder] = 28.20 WHERE [Code] = 'agm' END +SET [Description] = 'Angaataha', [Definition] = NULL, [SortOrder] = 282.00 WHERE [Code] = 'agm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqt', 'Angaité', NULL, 28.30) END +VALUES ('aqt', 'Angaité', NULL, 283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angaité', [Definition] = NULL, [SortOrder] = 28.30 WHERE [Code] = 'aqt' END +SET [Description] = 'Angaité', [Definition] = NULL, [SortOrder] = 283.00 WHERE [Code] = 'aqt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'age') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('age', 'Angal', NULL, 28.40) END +VALUES ('age', 'Angal', NULL, 284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angal', [Definition] = NULL, [SortOrder] = 28.40 WHERE [Code] = 'age' END +SET [Description] = 'Angal', [Definition] = NULL, [SortOrder] = 284.00 WHERE [Code] = 'age' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoe', 'Angal Enen', NULL, 28.50) END +VALUES ('aoe', 'Angal Enen', NULL, 285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angal Enen', [Definition] = NULL, [SortOrder] = 28.50 WHERE [Code] = 'aoe' END +SET [Description] = 'Angal Enen', [Definition] = NULL, [SortOrder] = 285.00 WHERE [Code] = 'aoe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akh', 'Angal Heneng', NULL, 28.60) END +VALUES ('akh', 'Angal Heneng', NULL, 286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angal Heneng', [Definition] = NULL, [SortOrder] = 28.60 WHERE [Code] = 'akh' END +SET [Description] = 'Angal Heneng', [Definition] = NULL, [SortOrder] = 286.00 WHERE [Code] = 'akh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njm', 'Angami Naga', NULL, 28.70) END +VALUES ('njm', 'Angami Naga', NULL, 287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angami Naga', [Definition] = NULL, [SortOrder] = 28.70 WHERE [Code] = 'njm' END +SET [Description] = 'Angami Naga', [Definition] = NULL, [SortOrder] = 287.00 WHERE [Code] = 'njm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yli', 'Angguruk Yali', NULL, 28.80) END +VALUES ('yli', 'Angguruk Yali', NULL, 288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angguruk Yali', [Definition] = NULL, [SortOrder] = 28.80 WHERE [Code] = 'yli' END +SET [Description] = 'Angguruk Yali', [Definition] = NULL, [SortOrder] = 288.00 WHERE [Code] = 'yli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anp', 'Angika', NULL, 28.90) END +VALUES ('anp', 'Angika', NULL, 289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angika', [Definition] = NULL, [SortOrder] = 28.90 WHERE [Code] = 'anp' END +SET [Description] = 'Angika', [Definition] = NULL, [SortOrder] = 289.00 WHERE [Code] = 'anp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avm', 'Angkamuthi', NULL, 29.00) END +VALUES ('avm', 'Angkamuthi', NULL, 290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angkamuthi', [Definition] = NULL, [SortOrder] = 29.00 WHERE [Code] = 'avm' END +SET [Description] = 'Angkamuthi', [Definition] = NULL, [SortOrder] = 290.00 WHERE [Code] = 'avm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xno', 'Anglo-Norman', NULL, 29.10) END +VALUES ('xno', 'Anglo-Norman', NULL, 291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anglo-Norman', [Definition] = NULL, [SortOrder] = 29.10 WHERE [Code] = 'xno' END +SET [Description] = 'Anglo-Norman', [Definition] = NULL, [SortOrder] = 291.00 WHERE [Code] = 'xno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rme', 'Angloromani', NULL, 29.20) END +VALUES ('rme', 'Angloromani', NULL, 292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angloromani', [Definition] = NULL, [SortOrder] = 29.20 WHERE [Code] = 'rme' END +SET [Description] = 'Angloromani', [Definition] = NULL, [SortOrder] = 292.00 WHERE [Code] = 'rme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoa', 'Angolar', NULL, 29.30) END +VALUES ('aoa', 'Angolar', NULL, 293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angolar', [Definition] = NULL, [SortOrder] = 29.30 WHERE [Code] = 'aoa' END +SET [Description] = 'Angolar', [Definition] = NULL, [SortOrder] = 293.00 WHERE [Code] = 'aoa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agg', 'Angor', NULL, 29.40) END +VALUES ('agg', 'Angor', NULL, 294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angor', [Definition] = NULL, [SortOrder] = 29.40 WHERE [Code] = 'agg' END +SET [Description] = 'Angor', [Definition] = NULL, [SortOrder] = 294.00 WHERE [Code] = 'agg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aog', 'Angoram', NULL, 29.50) END +VALUES ('aog', 'Angoram', NULL, 295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angoram', [Definition] = NULL, [SortOrder] = 29.50 WHERE [Code] = 'aog' END +SET [Description] = 'Angoram', [Definition] = NULL, [SortOrder] = 295.00 WHERE [Code] = 'aog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnd', 'Angosturas Tunebo', NULL, 29.60) END +VALUES ('tnd', 'Angosturas Tunebo', NULL, 296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Angosturas Tunebo', [Definition] = NULL, [SortOrder] = 29.60 WHERE [Code] = 'tnd' END +SET [Description] = 'Angosturas Tunebo', [Definition] = NULL, [SortOrder] = 296.00 WHERE [Code] = 'tnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awg', 'Anguthimri', NULL, 29.70) END +VALUES ('awg', 'Anguthimri', NULL, 297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anguthimri', [Definition] = NULL, [SortOrder] = 29.70 WHERE [Code] = 'awg' END +SET [Description] = 'Anguthimri', [Definition] = NULL, [SortOrder] = 297.00 WHERE [Code] = 'awg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypn', 'Ani Phowa', NULL, 29.80) END +VALUES ('ypn', 'Ani Phowa', NULL, 298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ani Phowa', [Definition] = NULL, [SortOrder] = 29.80 WHERE [Code] = 'ypn' END +SET [Description] = 'Ani Phowa', [Definition] = NULL, [SortOrder] = 298.00 WHERE [Code] = 'ypn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blo', 'Anii', NULL, 29.90) END +VALUES ('blo', 'Anii', NULL, 299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anii', [Definition] = NULL, [SortOrder] = 29.90 WHERE [Code] = 'blo' END +SET [Description] = 'Anii', [Definition] = NULL, [SortOrder] = 299.00 WHERE [Code] = 'blo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anf', 'Animere', NULL, 30.00) END +VALUES ('anf', 'Animere', NULL, 300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Animere', [Definition] = NULL, [SortOrder] = 30.00 WHERE [Code] = 'anf' END +SET [Description] = 'Animere', [Definition] = NULL, [SortOrder] = 300.00 WHERE [Code] = 'anf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoi', 'Anindilyakwa', NULL, 30.10) END +VALUES ('aoi', 'Anindilyakwa', NULL, 301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anindilyakwa', [Definition] = NULL, [SortOrder] = 30.10 WHERE [Code] = 'aoi' END +SET [Description] = 'Anindilyakwa', [Definition] = NULL, [SortOrder] = 301.00 WHERE [Code] = 'aoi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqk', 'Aninka', NULL, 30.20) END +VALUES ('aqk', 'Aninka', NULL, 302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aninka', [Definition] = NULL, [SortOrder] = 30.20 WHERE [Code] = 'aqk' END +SET [Description] = 'Aninka', [Definition] = NULL, [SortOrder] = 302.00 WHERE [Code] = 'aqk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boj', 'Anjam', NULL, 30.30) END +VALUES ('boj', 'Anjam', NULL, 303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anjam', [Definition] = NULL, [SortOrder] = 30.30 WHERE [Code] = 'boj' END +SET [Description] = 'Anjam', [Definition] = NULL, [SortOrder] = 303.00 WHERE [Code] = 'boj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aak', 'Ankave', NULL, 30.40) END +VALUES ('aak', 'Ankave', NULL, 304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ankave', [Definition] = NULL, [SortOrder] = 30.40 WHERE [Code] = 'aak' END +SET [Description] = 'Ankave', [Definition] = NULL, [SortOrder] = 304.00 WHERE [Code] = 'aak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amx', 'Anmatyerre', NULL, 30.50) END +VALUES ('amx', 'Anmatyerre', NULL, 305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anmatyerre', [Definition] = NULL, [SortOrder] = 30.50 WHERE [Code] = 'amx' END +SET [Description] = 'Anmatyerre', [Definition] = NULL, [SortOrder] = 305.00 WHERE [Code] = 'amx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nun', 'Anong', NULL, 30.60) END +VALUES ('nun', 'Anong', NULL, 306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anong', [Definition] = NULL, [SortOrder] = 30.60 WHERE [Code] = 'nun' END +SET [Description] = 'Anong', [Definition] = NULL, [SortOrder] = 306.00 WHERE [Code] = 'nun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anj', 'Anor', NULL, 30.70) END +VALUES ('anj', 'Anor', NULL, 307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anor', [Definition] = NULL, [SortOrder] = 30.70 WHERE [Code] = 'anj' END +SET [Description] = 'Anor', [Definition] = NULL, [SortOrder] = 307.00 WHERE [Code] = 'anj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ans') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ans', 'Anserma', NULL, 30.80) END +VALUES ('ans', 'Anserma', NULL, 308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anserma', [Definition] = NULL, [SortOrder] = 30.80 WHERE [Code] = 'ans' END +SET [Description] = 'Anserma', [Definition] = NULL, [SortOrder] = 308.00 WHERE [Code] = 'ans' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'and') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('and', 'Ansus', NULL, 30.90) END +VALUES ('and', 'Ansus', NULL, 309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ansus', [Definition] = NULL, [SortOrder] = 30.90 WHERE [Code] = 'and' END +SET [Description] = 'Ansus', [Definition] = NULL, [SortOrder] = 309.00 WHERE [Code] = 'and' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ant') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ant', 'Antakarinya', NULL, 31.00) END +VALUES ('ant', 'Antakarinya', NULL, 310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Antakarinya', [Definition] = NULL, [SortOrder] = 31.00 WHERE [Code] = 'ant' END +SET [Description] = 'Antakarinya', [Definition] = NULL, [SortOrder] = 310.00 WHERE [Code] = 'ant' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmv', 'Antankarana Malagasy', NULL, 31.10) END +VALUES ('xmv', 'Antankarana Malagasy', NULL, 311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Antankarana Malagasy', [Definition] = NULL, [SortOrder] = 31.10 WHERE [Code] = 'xmv' END +SET [Description] = 'Antankarana Malagasy', [Definition] = NULL, [SortOrder] = 311.00 WHERE [Code] = 'xmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aig', 'Antigua and Barbuda Creole English', NULL, 31.20) END +VALUES ('aig', 'Antigua and Barbuda Creole English', NULL, 312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Antigua and Barbuda Creole English', [Definition] = NULL, [SortOrder] = 31.20 WHERE [Code] = 'aig' END +SET [Description] = 'Antigua and Barbuda Creole English', [Definition] = NULL, [SortOrder] = 312.00 WHERE [Code] = 'aig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anl', 'Anu-Hkongso Chin', NULL, 31.30) END +VALUES ('anl', 'Anu-Hkongso Chin', NULL, 313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anu-Hkongso Chin', [Definition] = NULL, [SortOrder] = 31.30 WHERE [Code] = 'anl' END +SET [Description] = 'Anu-Hkongso Chin', [Definition] = NULL, [SortOrder] = 313.00 WHERE [Code] = 'anl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anu', 'Anuak', NULL, 31.40) END +VALUES ('anu', 'Anuak', NULL, 314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anuak', [Definition] = NULL, [SortOrder] = 31.40 WHERE [Code] = 'anu' END +SET [Description] = 'Anuak', [Definition] = NULL, [SortOrder] = 314.00 WHERE [Code] = 'anu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cko', 'Anufo', NULL, 31.50) END +VALUES ('cko', 'Anufo', NULL, 315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anufo', [Definition] = NULL, [SortOrder] = 31.50 WHERE [Code] = 'cko' END +SET [Description] = 'Anufo', [Definition] = NULL, [SortOrder] = 315.00 WHERE [Code] = 'cko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aui', 'Anuki', NULL, 31.60) END +VALUES ('aui', 'Anuki', NULL, 316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anuki', [Definition] = NULL, [SortOrder] = 31.60 WHERE [Code] = 'aui' END +SET [Description] = 'Anuki', [Definition] = NULL, [SortOrder] = 316.00 WHERE [Code] = 'aui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auq', 'Anus', NULL, 31.70) END +VALUES ('auq', 'Anus', NULL, 317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anus', [Definition] = NULL, [SortOrder] = 31.70 WHERE [Code] = 'auq' END +SET [Description] = 'Anus', [Definition] = NULL, [SortOrder] = 317.00 WHERE [Code] = 'auq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aud', 'Anuta', NULL, 31.80) END +VALUES ('aud', 'Anuta', NULL, 318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anuta', [Definition] = NULL, [SortOrder] = 31.80 WHERE [Code] = 'aud' END +SET [Description] = 'Anuta', [Definition] = NULL, [SortOrder] = 318.00 WHERE [Code] = 'aud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'any') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('any', 'Anyin', NULL, 31.90) END +VALUES ('any', 'Anyin', NULL, 319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anyin', [Definition] = NULL, [SortOrder] = 31.90 WHERE [Code] = 'any' END +SET [Description] = 'Anyin', [Definition] = NULL, [SortOrder] = 319.00 WHERE [Code] = 'any' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtb', 'Anyin Morofo', NULL, 32.00) END +VALUES ('mtb', 'Anyin Morofo', NULL, 320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Anyin Morofo', [Definition] = NULL, [SortOrder] = 32.00 WHERE [Code] = 'mtb' END +SET [Description] = 'Anyin Morofo', [Definition] = NULL, [SortOrder] = 320.00 WHERE [Code] = 'mtb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njo', 'Ao Naga', NULL, 32.10) END +VALUES ('njo', 'Ao Naga', NULL, 321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ao Naga', [Definition] = NULL, [SortOrder] = 32.10 WHERE [Code] = 'njo' END +SET [Description] = 'Ao Naga', [Definition] = NULL, [SortOrder] = 321.00 WHERE [Code] = 'njo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pni', 'Aoheng', NULL, 32.20) END +VALUES ('pni', 'Aoheng', NULL, 322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aoheng', [Definition] = NULL, [SortOrder] = 32.20 WHERE [Code] = 'pni' END +SET [Description] = 'Aoheng', [Definition] = NULL, [SortOrder] = 322.00 WHERE [Code] = 'pni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aor', 'Aore', NULL, 32.30) END +VALUES ('aor', 'Aore', NULL, 323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aore', [Definition] = NULL, [SortOrder] = 32.30 WHERE [Code] = 'aor' END +SET [Description] = 'Aore', [Definition] = NULL, [SortOrder] = 323.00 WHERE [Code] = 'aor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbx', 'Ap Ma', NULL, 32.40) END +VALUES ('kbx', 'Ap Ma', NULL, 324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ap Ma', [Definition] = NULL, [SortOrder] = 32.40 WHERE [Code] = 'kbx' END +SET [Description] = 'Ap Ma', [Definition] = NULL, [SortOrder] = 324.00 WHERE [Code] = 'kbx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xap', 'Apalachee', NULL, 32.50) END +VALUES ('xap', 'Apalachee', NULL, 325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apalachee', [Definition] = NULL, [SortOrder] = 32.50 WHERE [Code] = 'xap' END +SET [Description] = 'Apalachee', [Definition] = NULL, [SortOrder] = 325.00 WHERE [Code] = 'xap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apy', 'Apalaí', NULL, 32.60) END +VALUES ('apy', 'Apalaí', NULL, 326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apalaí', [Definition] = NULL, [SortOrder] = 32.60 WHERE [Code] = 'apy' END +SET [Description] = 'Apalaí', [Definition] = NULL, [SortOrder] = 326.00 WHERE [Code] = 'apy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ena') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ena', 'Apali', NULL, 32.70) END +VALUES ('ena', 'Apali', NULL, 327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apali', [Definition] = NULL, [SortOrder] = 32.70 WHERE [Code] = 'ena' END +SET [Description] = 'Apali', [Definition] = NULL, [SortOrder] = 327.00 WHERE [Code] = 'ena' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mip', 'Apasco-Apoala Mixtec', NULL, 32.80) END +VALUES ('mip', 'Apasco-Apoala Mixtec', NULL, 328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apasco-Apoala Mixtec', [Definition] = NULL, [SortOrder] = 32.80 WHERE [Code] = 'mip' END +SET [Description] = 'Apasco-Apoala Mixtec', [Definition] = NULL, [SortOrder] = 328.00 WHERE [Code] = 'mip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apt', 'Apatani', NULL, 32.90) END +VALUES ('apt', 'Apatani', NULL, 329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apatani', [Definition] = NULL, [SortOrder] = 32.90 WHERE [Code] = 'apt' END +SET [Description] = 'Apatani', [Definition] = NULL, [SortOrder] = 329.00 WHERE [Code] = 'apt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'api') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('api', 'Apiaká', NULL, 33.00) END +VALUES ('api', 'Apiaká', NULL, 330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apiaká', [Definition] = NULL, [SortOrder] = 33.00 WHERE [Code] = 'api' END +SET [Description] = 'Apiaká', [Definition] = NULL, [SortOrder] = 330.00 WHERE [Code] = 'api' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apn', 'Apinayé', NULL, 33.10) END +VALUES ('apn', 'Apinayé', NULL, 331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apinayé', [Definition] = NULL, [SortOrder] = 33.10 WHERE [Code] = 'apn' END +SET [Description] = 'Apinayé', [Definition] = NULL, [SortOrder] = 331.00 WHERE [Code] = 'apn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'app') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('app', 'Apma', NULL, 33.20) END +VALUES ('app', 'Apma', NULL, 332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apma', [Definition] = NULL, [SortOrder] = 33.20 WHERE [Code] = 'app' END +SET [Description] = 'Apma', [Definition] = NULL, [SortOrder] = 332.00 WHERE [Code] = 'app' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahp', 'Aproumu Aizi', NULL, 33.30) END +VALUES ('ahp', 'Aproumu Aizi', NULL, 333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aproumu Aizi', [Definition] = NULL, [SortOrder] = 33.30 WHERE [Code] = 'ahp' END +SET [Description] = 'Aproumu Aizi', [Definition] = NULL, [SortOrder] = 333.00 WHERE [Code] = 'ahp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apu', 'Apurinã', NULL, 33.40) END +VALUES ('apu', 'Apurinã', NULL, 334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Apurinã', [Definition] = NULL, [SortOrder] = 33.40 WHERE [Code] = 'apu' END +SET [Description] = 'Apurinã', [Definition] = NULL, [SortOrder] = 334.00 WHERE [Code] = 'apu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apx', 'Aputai', NULL, 33.50) END +VALUES ('apx', 'Aputai', NULL, 335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aputai', [Definition] = NULL, [SortOrder] = 33.50 WHERE [Code] = 'apx' END +SET [Description] = 'Aputai', [Definition] = NULL, [SortOrder] = 335.00 WHERE [Code] = 'apx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xaq', 'Aquitanian', NULL, 33.60) END +VALUES ('xaq', 'Aquitanian', NULL, 336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aquitanian', [Definition] = NULL, [SortOrder] = 33.60 WHERE [Code] = 'xaq' END +SET [Description] = 'Aquitanian', [Definition] = NULL, [SortOrder] = 336.00 WHERE [Code] = 'xaq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ard') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ard', 'Arabana', NULL, 33.70) END +VALUES ('ard', 'Arabana', NULL, 337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arabana', [Definition] = NULL, [SortOrder] = 33.70 WHERE [Code] = 'ard' END +SET [Description] = 'Arabana', [Definition] = NULL, [SortOrder] = 337.00 WHERE [Code] = 'ard' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arl', 'Arabela', NULL, 33.80) END +VALUES ('arl', 'Arabela', NULL, 338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arabela', [Definition] = NULL, [SortOrder] = 33.80 WHERE [Code] = 'arl' END +SET [Description] = 'Arabela', [Definition] = NULL, [SortOrder] = 338.00 WHERE [Code] = 'arl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ara') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ara', 'Arabic', NULL, 33.90) END +VALUES ('ara', 'Arabic', NULL, 339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arabic', [Definition] = NULL, [SortOrder] = 33.90 WHERE [Code] = 'ara' END +SET [Description] = 'Arabic', [Definition] = NULL, [SortOrder] = 339.00 WHERE [Code] = 'ara' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arg', 'Aragonese', NULL, 34.00) END +VALUES ('arg', 'Aragonese', NULL, 340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aragonese', [Definition] = NULL, [SortOrder] = 34.00 WHERE [Code] = 'arg' END +SET [Description] = 'Aragonese', [Definition] = NULL, [SortOrder] = 340.00 WHERE [Code] = 'arg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akr', 'Araki', NULL, 34.10) END +VALUES ('akr', 'Araki', NULL, 341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Araki', [Definition] = NULL, [SortOrder] = 34.10 WHERE [Code] = 'akr' END +SET [Description] = 'Araki', [Definition] = NULL, [SortOrder] = 341.00 WHERE [Code] = 'akr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkw', 'Arakwal', NULL, 34.20) END +VALUES ('rkw', 'Arakwal', NULL, 342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arakwal', [Definition] = NULL, [SortOrder] = 34.20 WHERE [Code] = 'rkw' END +SET [Description] = 'Arakwal', [Definition] = NULL, [SortOrder] = 342.00 WHERE [Code] = 'rkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atq', 'Aralle-Tabulahan', NULL, 34.30) END +VALUES ('atq', 'Aralle-Tabulahan', NULL, 343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aralle-Tabulahan', [Definition] = NULL, [SortOrder] = 34.30 WHERE [Code] = 'atq' END +SET [Description] = 'Aralle-Tabulahan', [Definition] = NULL, [SortOrder] = 343.00 WHERE [Code] = 'atq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stk', 'Arammba', NULL, 34.40) END +VALUES ('stk', 'Arammba', NULL, 344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arammba', [Definition] = NULL, [SortOrder] = 34.40 WHERE [Code] = 'stk' END +SET [Description] = 'Arammba', [Definition] = NULL, [SortOrder] = 344.00 WHERE [Code] = 'stk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaf', 'Aranadan', NULL, 34.50) END +VALUES ('aaf', 'Aranadan', NULL, 345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aranadan', [Definition] = NULL, [SortOrder] = 34.50 WHERE [Code] = 'aaf' END +SET [Description] = 'Aranadan', [Definition] = NULL, [SortOrder] = 345.00 WHERE [Code] = 'aaf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrt', 'Aranama-Tamique', NULL, 34.60) END +VALUES ('xrt', 'Aranama-Tamique', NULL, 346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aranama-Tamique', [Definition] = NULL, [SortOrder] = 34.60 WHERE [Code] = 'xrt' END +SET [Description] = 'Aranama-Tamique', [Definition] = NULL, [SortOrder] = 346.00 WHERE [Code] = 'xrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbj', 'Arandai', NULL, 34.70) END +VALUES ('jbj', 'Arandai', NULL, 347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arandai', [Definition] = NULL, [SortOrder] = 34.70 WHERE [Code] = 'jbj' END +SET [Description] = 'Arandai', [Definition] = NULL, [SortOrder] = 347.00 WHERE [Code] = 'jbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aro', 'Araona', NULL, 34.80) END +VALUES ('aro', 'Araona', NULL, 348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Araona', [Definition] = NULL, [SortOrder] = 34.80 WHERE [Code] = 'aro' END +SET [Description] = 'Araona', [Definition] = NULL, [SortOrder] = 348.00 WHERE [Code] = 'aro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arp', 'Arapaho', NULL, 34.90) END +VALUES ('arp', 'Arapaho', NULL, 349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arapaho', [Definition] = NULL, [SortOrder] = 34.90 WHERE [Code] = 'arp' END +SET [Description] = 'Arapaho', [Definition] = NULL, [SortOrder] = 349.00 WHERE [Code] = 'arp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arj', 'Arapaso', NULL, 35.00) END +VALUES ('arj', 'Arapaso', NULL, 350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arapaso', [Definition] = NULL, [SortOrder] = 35.00 WHERE [Code] = 'arj' END +SET [Description] = 'Arapaso', [Definition] = NULL, [SortOrder] = 350.00 WHERE [Code] = 'arj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xaj', 'Ararandewára', NULL, 35.10) END +VALUES ('xaj', 'Ararandewára', NULL, 351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ararandewára', [Definition] = NULL, [SortOrder] = 35.10 WHERE [Code] = 'xaj' END +SET [Description] = 'Ararandewára', [Definition] = NULL, [SortOrder] = 351.00 WHERE [Code] = 'xaj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arw', 'Arawak', NULL, 35.20) END +VALUES ('arw', 'Arawak', NULL, 352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arawak', [Definition] = NULL, [SortOrder] = 35.20 WHERE [Code] = 'arw' END +SET [Description] = 'Arawak', [Definition] = NULL, [SortOrder] = 352.00 WHERE [Code] = 'arw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awt', 'Araweté', NULL, 35.30) END +VALUES ('awt', 'Araweté', NULL, 353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Araweté', [Definition] = NULL, [SortOrder] = 35.30 WHERE [Code] = 'awt' END +SET [Description] = 'Araweté', [Definition] = NULL, [SortOrder] = 353.00 WHERE [Code] = 'awt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awm', 'Arawum', NULL, 35.40) END +VALUES ('awm', 'Arawum', NULL, 354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arawum', [Definition] = NULL, [SortOrder] = 35.40 WHERE [Code] = 'awm' END +SET [Description] = 'Arawum', [Definition] = NULL, [SortOrder] = 354.00 WHERE [Code] = 'awm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aae', 'Arbëreshë Albanian', NULL, 35.50) END +VALUES ('aae', 'Arbëreshë Albanian', NULL, 355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arbëreshë Albanian', [Definition] = NULL, [SortOrder] = 35.50 WHERE [Code] = 'aae' END +SET [Description] = 'Arbëreshë Albanian', [Definition] = NULL, [SortOrder] = 355.00 WHERE [Code] = 'aae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arv', 'Arbore', NULL, 35.60) END +VALUES ('arv', 'Arbore', NULL, 356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arbore', [Definition] = NULL, [SortOrder] = 35.60 WHERE [Code] = 'arv' END +SET [Description] = 'Arbore', [Definition] = NULL, [SortOrder] = 356.00 WHERE [Code] = 'arv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqc', 'Archi', NULL, 35.70) END +VALUES ('aqc', 'Archi', NULL, 357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Archi', [Definition] = NULL, [SortOrder] = 35.70 WHERE [Code] = 'aqc' END +SET [Description] = 'Archi', [Definition] = NULL, [SortOrder] = 357.00 WHERE [Code] = 'aqc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pka', 'Ardhamagadhi Prakrit', NULL, 35.80) END +VALUES ('pka', 'Ardhamagadhi Prakrit', NULL, 358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ardhamagadhi Prakrit', [Definition] = NULL, [SortOrder] = 35.80 WHERE [Code] = 'pka' END +SET [Description] = 'Ardhamagadhi Prakrit', [Definition] = NULL, [SortOrder] = 358.00 WHERE [Code] = 'pka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwc', 'Are', NULL, 35.90) END +VALUES ('mwc', 'Are', NULL, 359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Are', [Definition] = NULL, [SortOrder] = 35.90 WHERE [Code] = 'mwc' END +SET [Description] = 'Are', [Definition] = NULL, [SortOrder] = 359.00 WHERE [Code] = 'mwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aea', 'Areba', NULL, 36.00) END +VALUES ('aea', 'Areba', NULL, 360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Areba', [Definition] = NULL, [SortOrder] = 36.00 WHERE [Code] = 'aea' END +SET [Description] = 'Areba', [Definition] = NULL, [SortOrder] = 360.00 WHERE [Code] = 'aea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aem', 'Arem', NULL, 36.10) END +VALUES ('aem', 'Arem', NULL, 361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arem', [Definition] = NULL, [SortOrder] = 36.10 WHERE [Code] = 'aem' END +SET [Description] = 'Arem', [Definition] = NULL, [SortOrder] = 361.00 WHERE [Code] = 'aem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxu', 'Arequipa-La Unión Quechua', NULL, 36.20) END +VALUES ('qxu', 'Arequipa-La Unión Quechua', NULL, 362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arequipa-La Unión Quechua', [Definition] = NULL, [SortOrder] = 36.20 WHERE [Code] = 'qxu' END +SET [Description] = 'Arequipa-La Unión Quechua', [Definition] = NULL, [SortOrder] = 362.00 WHERE [Code] = 'qxu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aed', 'Argentine Sign Language', NULL, 36.30) END +VALUES ('aed', 'Argentine Sign Language', NULL, 363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Argentine Sign Language', [Definition] = NULL, [SortOrder] = 36.30 WHERE [Code] = 'aed' END +SET [Description] = 'Argentine Sign Language', [Definition] = NULL, [SortOrder] = 363.00 WHERE [Code] = 'aed' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agj', 'Argobba', NULL, 36.40) END +VALUES ('agj', 'Argobba', NULL, 364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Argobba', [Definition] = NULL, [SortOrder] = 36.40 WHERE [Code] = 'agj' END +SET [Description] = 'Argobba', [Definition] = NULL, [SortOrder] = 364.00 WHERE [Code] = 'agj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agf', 'Arguni', NULL, 36.50) END +VALUES ('agf', 'Arguni', NULL, 365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arguni', [Definition] = NULL, [SortOrder] = 36.50 WHERE [Code] = 'agf' END +SET [Description] = 'Arguni', [Definition] = NULL, [SortOrder] = 365.00 WHERE [Code] = 'agf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqr', 'Arhâ', NULL, 36.60) END +VALUES ('aqr', 'Arhâ', NULL, 366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arhâ', [Definition] = NULL, [SortOrder] = 36.60 WHERE [Code] = 'aqr' END +SET [Description] = 'Arhâ', [Definition] = NULL, [SortOrder] = 366.00 WHERE [Code] = 'aqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aok', 'Arhö', NULL, 36.70) END +VALUES ('aok', 'Arhö', NULL, 367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arhö', [Definition] = NULL, [SortOrder] = 36.70 WHERE [Code] = 'aok' END +SET [Description] = 'Arhö', [Definition] = NULL, [SortOrder] = 367.00 WHERE [Code] = 'aok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arh', 'Arhuaco', NULL, 36.80) END +VALUES ('arh', 'Arhuaco', NULL, 368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arhuaco', [Definition] = NULL, [SortOrder] = 36.80 WHERE [Code] = 'arh' END +SET [Description] = 'Arhuaco', [Definition] = NULL, [SortOrder] = 368.00 WHERE [Code] = 'arh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aac', 'Ari', NULL, 36.90) END +VALUES ('aac', 'Ari', NULL, 369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ari', [Definition] = NULL, [SortOrder] = 36.90 WHERE [Code] = 'aac' END +SET [Description] = 'Ari', [Definition] = NULL, [SortOrder] = 369.00 WHERE [Code] = 'aac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laz', 'Aribwatsa', NULL, 37.00) END +VALUES ('laz', 'Aribwatsa', NULL, 370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aribwatsa', [Definition] = NULL, [SortOrder] = 37.00 WHERE [Code] = 'laz' END +SET [Description] = 'Aribwatsa', [Definition] = NULL, [SortOrder] = 370.00 WHERE [Code] = 'laz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylu', 'Aribwaung', NULL, 37.10) END +VALUES ('ylu', 'Aribwaung', NULL, 371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aribwaung', [Definition] = NULL, [SortOrder] = 37.10 WHERE [Code] = 'ylu' END +SET [Description] = 'Aribwaung', [Definition] = NULL, [SortOrder] = 371.00 WHERE [Code] = 'ylu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aai', 'Arifama-Miniafia', NULL, 37.20) END +VALUES ('aai', 'Arifama-Miniafia', NULL, 372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arifama-Miniafia', [Definition] = NULL, [SortOrder] = 37.20 WHERE [Code] = 'aai' END +SET [Description] = 'Arifama-Miniafia', [Definition] = NULL, [SortOrder] = 372.00 WHERE [Code] = 'aai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqg', 'Arigidi', NULL, 37.30) END +VALUES ('aqg', 'Arigidi', NULL, 373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arigidi', [Definition] = NULL, [SortOrder] = 37.30 WHERE [Code] = 'aqg' END +SET [Description] = 'Arigidi', [Definition] = NULL, [SortOrder] = 373.00 WHERE [Code] = 'aqg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ark') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ark', 'Arikapú', NULL, 37.40) END +VALUES ('ark', 'Arikapú', NULL, 374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arikapú', [Definition] = NULL, [SortOrder] = 37.40 WHERE [Code] = 'ark' END +SET [Description] = 'Arikapú', [Definition] = NULL, [SortOrder] = 374.00 WHERE [Code] = 'ark' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ari') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ari', 'Arikara', NULL, 37.50) END +VALUES ('ari', 'Arikara', NULL, 375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arikara', [Definition] = NULL, [SortOrder] = 37.50 WHERE [Code] = 'ari' END +SET [Description] = 'Arikara', [Definition] = NULL, [SortOrder] = 375.00 WHERE [Code] = 'ari' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ait') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ait', 'Arikem', NULL, 37.60) END +VALUES ('ait', 'Arikem', NULL, 376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arikem', [Definition] = NULL, [SortOrder] = 37.60 WHERE [Code] = 'ait' END +SET [Description] = 'Arikem', [Definition] = NULL, [SortOrder] = 376.00 WHERE [Code] = 'ait' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrn', 'Arin', NULL, 37.70) END +VALUES ('xrn', 'Arin', NULL, 377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arin', [Definition] = NULL, [SortOrder] = 37.70 WHERE [Code] = 'xrn' END +SET [Description] = 'Arin', [Definition] = NULL, [SortOrder] = 377.00 WHERE [Code] = 'xrn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luc', 'Aringa', NULL, 37.80) END +VALUES ('luc', 'Aringa', NULL, 378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aringa', [Definition] = NULL, [SortOrder] = 37.80 WHERE [Code] = 'luc' END +SET [Description] = 'Aringa', [Definition] = NULL, [SortOrder] = 378.00 WHERE [Code] = 'luc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrm', 'Armazic', NULL, 37.90) END +VALUES ('xrm', 'Armazic', NULL, 379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Armazic', [Definition] = NULL, [SortOrder] = 37.90 WHERE [Code] = 'xrm' END +SET [Description] = 'Armazic', [Definition] = NULL, [SortOrder] = 379.00 WHERE [Code] = 'xrm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hye', 'Armenian', NULL, 38.00) END +VALUES ('hye', 'Armenian', NULL, 380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Armenian', [Definition] = NULL, [SortOrder] = 38.00 WHERE [Code] = 'hye' END +SET [Description] = 'Armenian', [Definition] = NULL, [SortOrder] = 380.00 WHERE [Code] = 'hye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aen', 'Armenian Sign Language', NULL, 38.10) END +VALUES ('aen', 'Armenian Sign Language', NULL, 381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Armenian Sign Language', [Definition] = NULL, [SortOrder] = 38.10 WHERE [Code] = 'aen' END +SET [Description] = 'Armenian Sign Language', [Definition] = NULL, [SortOrder] = 381.00 WHERE [Code] = 'aen' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apr', 'Arop-Lokep', NULL, 38.20) END +VALUES ('apr', 'Arop-Lokep', NULL, 382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arop-Lokep', [Definition] = NULL, [SortOrder] = 38.20 WHERE [Code] = 'apr' END +SET [Description] = 'Arop-Lokep', [Definition] = NULL, [SortOrder] = 382.00 WHERE [Code] = 'apr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aps', 'Arop-Sissano', NULL, 38.30) END +VALUES ('aps', 'Arop-Sissano', NULL, 383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arop-Sissano', [Definition] = NULL, [SortOrder] = 38.30 WHERE [Code] = 'aps' END +SET [Description] = 'Arop-Sissano', [Definition] = NULL, [SortOrder] = 383.00 WHERE [Code] = 'aps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aia', 'Arosi', NULL, 38.40) END +VALUES ('aia', 'Arosi', NULL, 384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arosi', [Definition] = NULL, [SortOrder] = 38.40 WHERE [Code] = 'aia' END +SET [Description] = 'Arosi', [Definition] = NULL, [SortOrder] = 384.00 WHERE [Code] = 'aia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frp', 'Arpitan', NULL, 38.50) END +VALUES ('frp', 'Arpitan', NULL, 385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arpitan', [Definition] = NULL, [SortOrder] = 38.50 WHERE [Code] = 'frp' END +SET [Description] = 'Arpitan', [Definition] = NULL, [SortOrder] = 385.00 WHERE [Code] = 'frp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rrt', 'Arritinngithigh', NULL, 38.60) END +VALUES ('rrt', 'Arritinngithigh', NULL, 386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arritinngithigh', [Definition] = NULL, [SortOrder] = 38.60 WHERE [Code] = 'rrt' END +SET [Description] = 'Arritinngithigh', [Definition] = NULL, [SortOrder] = 386.00 WHERE [Code] = 'rrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atz', 'Arta', NULL, 38.70) END +VALUES ('atz', 'Arta', NULL, 387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arta', [Definition] = NULL, [SortOrder] = 38.70 WHERE [Code] = 'atz' END +SET [Description] = 'Arta', [Definition] = NULL, [SortOrder] = 387.00 WHERE [Code] = 'atz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aru', 'Aruá (Amazonas State)', NULL, 38.80) END +VALUES ('aru', 'Aruá (Amazonas State)', NULL, 388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruá (Amazonas State)', [Definition] = NULL, [SortOrder] = 38.80 WHERE [Code] = 'aru' END +SET [Description] = 'Aruá (Amazonas State)', [Definition] = NULL, [SortOrder] = 388.00 WHERE [Code] = 'aru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arx', 'Aruá (Rodonia State)', NULL, 38.90) END +VALUES ('arx', 'Aruá (Rodonia State)', NULL, 389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruá (Rodonia State)', [Definition] = NULL, [SortOrder] = 38.90 WHERE [Code] = 'arx' END +SET [Description] = 'Aruá (Rodonia State)', [Definition] = NULL, [SortOrder] = 389.00 WHERE [Code] = 'arx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msy', 'Aruamu', NULL, 39.00) END +VALUES ('msy', 'Aruamu', NULL, 390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruamu', [Definition] = NULL, [SortOrder] = 39.00 WHERE [Code] = 'msy' END +SET [Description] = 'Aruamu', [Definition] = NULL, [SortOrder] = 390.00 WHERE [Code] = 'msy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aur', 'Aruek', NULL, 39.10) END +VALUES ('aur', 'Aruek', NULL, 391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruek', [Definition] = NULL, [SortOrder] = 39.10 WHERE [Code] = 'aur' END +SET [Description] = 'Aruek', [Definition] = NULL, [SortOrder] = 391.00 WHERE [Code] = 'aur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsr', 'Aruop', NULL, 39.20) END +VALUES ('lsr', 'Aruop', NULL, 392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aruop', [Definition] = NULL, [SortOrder] = 39.20 WHERE [Code] = 'lsr' END +SET [Description] = 'Aruop', [Definition] = NULL, [SortOrder] = 392.00 WHERE [Code] = 'lsr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atx', 'Arutani', NULL, 39.30) END +VALUES ('atx', 'Arutani', NULL, 393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arutani', [Definition] = NULL, [SortOrder] = 39.30 WHERE [Code] = 'atx' END +SET [Description] = 'Arutani', [Definition] = NULL, [SortOrder] = 393.00 WHERE [Code] = 'atx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aat', 'Arvanitika Albanian', NULL, 39.40) END +VALUES ('aat', 'Arvanitika Albanian', NULL, 394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Arvanitika Albanian', [Definition] = NULL, [SortOrder] = 39.40 WHERE [Code] = 'aat' END +SET [Description] = 'Arvanitika Albanian', [Definition] = NULL, [SortOrder] = 394.00 WHERE [Code] = 'aat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asz', 'As', NULL, 39.50) END +VALUES ('asz', 'As', NULL, 395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'As', [Definition] = NULL, [SortOrder] = 39.50 WHERE [Code] = 'asz' END +SET [Description] = 'As', [Definition] = NULL, [SortOrder] = 395.00 WHERE [Code] = 'asz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtv', 'Asaro''o', NULL, 39.60) END +VALUES ('mtv', 'Asaro''o', NULL, 396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asaro''o', [Definition] = NULL, [SortOrder] = 39.60 WHERE [Code] = 'mtv' END +SET [Description] = 'Asaro''o', [Definition] = NULL, [SortOrder] = 396.00 WHERE [Code] = 'mtv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cni', 'Asháninka', NULL, 39.70) END +VALUES ('cni', 'Asháninka', NULL, 397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asháninka', [Definition] = NULL, [SortOrder] = 39.70 WHERE [Code] = 'cni' END +SET [Description] = 'Asháninka', [Definition] = NULL, [SortOrder] = 397.00 WHERE [Code] = 'cni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahs', 'Ashe', NULL, 39.80) END +VALUES ('ahs', 'Ashe', NULL, 398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashe', [Definition] = NULL, [SortOrder] = 39.80 WHERE [Code] = 'ahs' END +SET [Description] = 'Ashe', [Definition] = NULL, [SortOrder] = 398.00 WHERE [Code] = 'ahs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjo', 'Ashéninka Pajonal', NULL, 39.90) END +VALUES ('cjo', 'Ashéninka Pajonal', NULL, 399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashéninka Pajonal', [Definition] = NULL, [SortOrder] = 39.90 WHERE [Code] = 'cjo' END +SET [Description] = 'Ashéninka Pajonal', [Definition] = NULL, [SortOrder] = 399.00 WHERE [Code] = 'cjo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prq', 'Ashéninka Perené', NULL, 40.00) END +VALUES ('prq', 'Ashéninka Perené', NULL, 400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashéninka Perené', [Definition] = NULL, [SortOrder] = 40.00 WHERE [Code] = 'prq' END +SET [Description] = 'Ashéninka Perené', [Definition] = NULL, [SortOrder] = 400.00 WHERE [Code] = 'prq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ask') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ask', 'Ashkun', NULL, 40.10) END +VALUES ('ask', 'Ashkun', NULL, 401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashkun', [Definition] = NULL, [SortOrder] = 40.10 WHERE [Code] = 'ask' END +SET [Description] = 'Ashkun', [Definition] = NULL, [SortOrder] = 401.00 WHERE [Code] = 'ask' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csh', 'Asho Chin', NULL, 40.20) END +VALUES ('csh', 'Asho Chin', NULL, 402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asho Chin', [Definition] = NULL, [SortOrder] = 40.20 WHERE [Code] = 'csh' END +SET [Description] = 'Asho Chin', [Definition] = NULL, [SortOrder] = 402.00 WHERE [Code] = 'csh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atn', 'Ashtiani', NULL, 40.30) END +VALUES ('atn', 'Ashtiani', NULL, 403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ashtiani', [Definition] = NULL, [SortOrder] = 40.30 WHERE [Code] = 'atn' END +SET [Description] = 'Ashtiani', [Definition] = NULL, [SortOrder] = 403.00 WHERE [Code] = 'atn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asl', 'Asilulu', NULL, 40.40) END +VALUES ('asl', 'Asilulu', NULL, 404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asilulu', [Definition] = NULL, [SortOrder] = 40.40 WHERE [Code] = 'asl' END +SET [Description] = 'Asilulu', [Definition] = NULL, [SortOrder] = 404.00 WHERE [Code] = 'asl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eiv', 'Askopan', NULL, 40.50) END +VALUES ('eiv', 'Askopan', NULL, 405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Askopan', [Definition] = NULL, [SortOrder] = 40.50 WHERE [Code] = 'eiv' END +SET [Description] = 'Askopan', [Definition] = NULL, [SortOrder] = 405.00 WHERE [Code] = 'eiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asv', 'Asoa', NULL, 40.60) END +VALUES ('asv', 'Asoa', NULL, 406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asoa', [Definition] = NULL, [SortOrder] = 40.60 WHERE [Code] = 'asv' END +SET [Description] = 'Asoa', [Definition] = NULL, [SortOrder] = 406.00 WHERE [Code] = 'asv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asm', 'Assamese', NULL, 40.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assamese', [Definition] = NULL, [SortOrder] = 40.70 WHERE [Code] = 'asm' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xss', 'Assan', NULL, 40.80) END +VALUES ('asm', 'Assamese', NULL, 407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assan', [Definition] = NULL, [SortOrder] = 40.80 WHERE [Code] = 'xss' END +SET [Description] = 'Assamese', [Definition] = NULL, [SortOrder] = 407.00 WHERE [Code] = 'asm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjg', 'Assangori', NULL, 40.90) END +VALUES ('sjg', 'Assangori', NULL, 408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assangori', [Definition] = NULL, [SortOrder] = 40.90 WHERE [Code] = 'sjg' END +SET [Description] = 'Assangori', [Definition] = NULL, [SortOrder] = 408.00 WHERE [Code] = 'sjg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asb', 'Assiniboine', NULL, 41.00) END +VALUES ('asb', 'Assiniboine', NULL, 409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assiniboine', [Definition] = NULL, [SortOrder] = 41.00 WHERE [Code] = 'asb' END +SET [Description] = 'Assiniboine', [Definition] = NULL, [SortOrder] = 409.00 WHERE [Code] = 'asb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aii', 'Assyrian Neo-Aramaic', NULL, 41.10) END +VALUES ('aii', 'Assyrian Neo-Aramaic', NULL, 410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Assyrian Neo-Aramaic', [Definition] = NULL, [SortOrder] = 41.10 WHERE [Code] = 'aii' END +SET [Description] = 'Assyrian Neo-Aramaic', [Definition] = NULL, [SortOrder] = 410.00 WHERE [Code] = 'aii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ast') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ast', 'Asturian', NULL, 41.20) END +VALUES ('ast', 'Asturian', NULL, 411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asturian', [Definition] = NULL, [SortOrder] = 41.20 WHERE [Code] = 'ast' END +SET [Description] = 'Asturian', [Definition] = NULL, [SortOrder] = 411.00 WHERE [Code] = 'ast' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aum', 'Asu (Nigeria)', NULL, 41.30) END +VALUES ('aum', 'Asu (Nigeria)', NULL, 412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asu (Nigeria)', [Definition] = NULL, [SortOrder] = 41.30 WHERE [Code] = 'aum' END +SET [Description] = 'Asu (Nigeria)', [Definition] = NULL, [SortOrder] = 412.00 WHERE [Code] = 'aum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asa', 'Asu (Tanzania)', NULL, 41.40) END +VALUES ('asa', 'Asu (Tanzania)', NULL, 413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asu (Tanzania)', [Definition] = NULL, [SortOrder] = 41.40 WHERE [Code] = 'asa' END +SET [Description] = 'Asu (Tanzania)', [Definition] = NULL, [SortOrder] = 413.00 WHERE [Code] = 'asa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psa', 'Asue Awyu', NULL, 41.50) END +VALUES ('psa', 'Asue Awyu', NULL, 414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asue Awyu', [Definition] = NULL, [SortOrder] = 41.50 WHERE [Code] = 'psa' END +SET [Description] = 'Asue Awyu', [Definition] = NULL, [SortOrder] = 414.00 WHERE [Code] = 'psa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aua', 'Asumboa', NULL, 41.60) END +VALUES ('aua', 'Asumboa', NULL, 415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asumboa', [Definition] = NULL, [SortOrder] = 41.60 WHERE [Code] = 'aua' END +SET [Description] = 'Asumboa', [Definition] = NULL, [SortOrder] = 415.00 WHERE [Code] = 'aua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zoo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zoo', 'Asunción Mixtepec Zapotec', NULL, 41.70) END +VALUES ('zoo', 'Asunción Mixtepec Zapotec', NULL, 416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asunción Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 41.70 WHERE [Code] = 'zoo' END +SET [Description] = 'Asunción Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 416.00 WHERE [Code] = 'zoo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asr', 'Asuri', NULL, 41.80) END +VALUES ('asr', 'Asuri', NULL, 417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Asuri', [Definition] = NULL, [SortOrder] = 41.80 WHERE [Code] = 'asr' END +SET [Description] = 'Asuri', [Definition] = NULL, [SortOrder] = 417.00 WHERE [Code] = 'asr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atm', 'Ata', NULL, 41.90) END +VALUES ('atm', 'Ata', NULL, 418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ata', [Definition] = NULL, [SortOrder] = 41.90 WHERE [Code] = 'atm' END +SET [Description] = 'Ata', [Definition] = NULL, [SortOrder] = 418.00 WHERE [Code] = 'atm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atd', 'Ata Manobo', NULL, 42.00) END +VALUES ('atd', 'Ata Manobo', NULL, 419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ata Manobo', [Definition] = NULL, [SortOrder] = 42.00 WHERE [Code] = 'atd' END +SET [Description] = 'Ata Manobo', [Definition] = NULL, [SortOrder] = 419.00 WHERE [Code] = 'atd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqp', 'Atakapa', NULL, 42.10) END +VALUES ('aqp', 'Atakapa', NULL, 420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atakapa', [Definition] = NULL, [SortOrder] = 42.10 WHERE [Code] = 'aqp' END +SET [Description] = 'Atakapa', [Definition] = NULL, [SortOrder] = 420.00 WHERE [Code] = 'aqp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amz', 'Atampaya', NULL, 42.20) END +VALUES ('amz', 'Atampaya', NULL, 421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atampaya', [Definition] = NULL, [SortOrder] = 42.20 WHERE [Code] = 'amz' END +SET [Description] = 'Atampaya', [Definition] = NULL, [SortOrder] = 421.00 WHERE [Code] = 'amz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mib', 'Atatláhuca Mixtec', NULL, 42.30) END +VALUES ('mib', 'Atatláhuca Mixtec', NULL, 422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atatláhuca Mixtec', [Definition] = NULL, [SortOrder] = 42.30 WHERE [Code] = 'mib' END +SET [Description] = 'Atatláhuca Mixtec', [Definition] = NULL, [SortOrder] = 422.00 WHERE [Code] = 'mib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adb', 'Atauran', NULL, 42.40) END +VALUES ('adb', 'Atauran', NULL, 423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atauran', [Definition] = NULL, [SortOrder] = 42.40 WHERE [Code] = 'adb' END +SET [Description] = 'Atauran', [Definition] = NULL, [SortOrder] = 423.00 WHERE [Code] = 'adb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tay', 'Atayal', NULL, 42.50) END +VALUES ('tay', 'Atayal', NULL, 424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atayal', [Definition] = NULL, [SortOrder] = 42.50 WHERE [Code] = 'tay' END +SET [Description] = 'Atayal', [Definition] = NULL, [SortOrder] = 424.00 WHERE [Code] = 'tay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ate') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ate', 'Atemble', NULL, 42.60) END +VALUES ('ate', 'Atemble', NULL, 425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atemble', [Definition] = NULL, [SortOrder] = 42.60 WHERE [Code] = 'ate' END +SET [Description] = 'Atemble', [Definition] = NULL, [SortOrder] = 425.00 WHERE [Code] = 'ate' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aph', 'Athpariya', NULL, 42.70) END +VALUES ('aph', 'Athpariya', NULL, 426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Athpariya', [Definition] = NULL, [SortOrder] = 42.70 WHERE [Code] = 'aph' END +SET [Description] = 'Athpariya', [Definition] = NULL, [SortOrder] = 426.00 WHERE [Code] = 'aph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atk', 'Ati', NULL, 42.80) END +VALUES ('atk', 'Ati', NULL, 427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ati', [Definition] = NULL, [SortOrder] = 42.80 WHERE [Code] = 'atk' END +SET [Description] = 'Ati', [Definition] = NULL, [SortOrder] = 427.00 WHERE [Code] = 'atk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atj', 'Atikamekw', NULL, 42.90) END +VALUES ('atj', 'Atikamekw', NULL, 428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atikamekw', [Definition] = NULL, [SortOrder] = 42.90 WHERE [Code] = 'atj' END +SET [Description] = 'Atikamekw', [Definition] = NULL, [SortOrder] = 428.00 WHERE [Code] = 'atj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqm', 'Atohwaim', NULL, 43.00) END +VALUES ('aqm', 'Atohwaim', NULL, 429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atohwaim', [Definition] = NULL, [SortOrder] = 43.00 WHERE [Code] = 'aqm' END +SET [Description] = 'Atohwaim', [Definition] = NULL, [SortOrder] = 429.00 WHERE [Code] = 'aqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ato') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ato', 'Atong (Cameroon)', NULL, 43.10) END +VALUES ('ato', 'Atong (Cameroon)', NULL, 430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atong (Cameroon)', [Definition] = NULL, [SortOrder] = 43.10 WHERE [Code] = 'ato' END +SET [Description] = 'Atong (Cameroon)', [Definition] = NULL, [SortOrder] = 430.00 WHERE [Code] = 'ato' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aot', 'Atong (India)', NULL, 43.20) END +VALUES ('aot', 'Atong (India)', NULL, 431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atong (India)', [Definition] = NULL, [SortOrder] = 43.20 WHERE [Code] = 'aot' END +SET [Description] = 'Atong (India)', [Definition] = NULL, [SortOrder] = 431.00 WHERE [Code] = 'aot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aox', 'Atorada', NULL, 43.30) END +VALUES ('aox', 'Atorada', NULL, 432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atorada', [Definition] = NULL, [SortOrder] = 43.30 WHERE [Code] = 'aox' END +SET [Description] = 'Atorada', [Definition] = NULL, [SortOrder] = 432.00 WHERE [Code] = 'aox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atc', 'Atsahuaca', NULL, 43.40) END +VALUES ('atc', 'Atsahuaca', NULL, 433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atsahuaca', [Definition] = NULL, [SortOrder] = 43.40 WHERE [Code] = 'atc' END +SET [Description] = 'Atsahuaca', [Definition] = NULL, [SortOrder] = 433.00 WHERE [Code] = 'atc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cch', 'Atsam', NULL, 43.50) END +VALUES ('cch', 'Atsam', NULL, 434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atsam', [Definition] = NULL, [SortOrder] = 43.50 WHERE [Code] = 'cch' END +SET [Description] = 'Atsam', [Definition] = NULL, [SortOrder] = 434.00 WHERE [Code] = 'cch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atw', 'Atsugewi', NULL, 43.60) END +VALUES ('atw', 'Atsugewi', NULL, 435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atsugewi', [Definition] = NULL, [SortOrder] = 43.60 WHERE [Code] = 'atw' END +SET [Description] = 'Atsugewi', [Definition] = NULL, [SortOrder] = 435.00 WHERE [Code] = 'atw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkr', 'Attapady Kurumba', NULL, 43.70) END +VALUES ('pkr', 'Attapady Kurumba', NULL, 436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Attapady Kurumba', [Definition] = NULL, [SortOrder] = 43.70 WHERE [Code] = 'pkr' END +SET [Description] = 'Attapady Kurumba', [Definition] = NULL, [SortOrder] = 436.00 WHERE [Code] = 'pkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ati') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ati', 'Attié', NULL, 43.80) END +VALUES ('ati', 'Attié', NULL, 437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Attié', [Definition] = NULL, [SortOrder] = 43.80 WHERE [Code] = 'ati' END +SET [Description] = 'Attié', [Definition] = NULL, [SortOrder] = 437.00 WHERE [Code] = 'ati' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ocu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ocu', 'Atzingo Matlatzinca', NULL, 43.90) END +VALUES ('ocu', 'Atzingo Matlatzinca', NULL, 438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Atzingo Matlatzinca', [Definition] = NULL, [SortOrder] = 43.90 WHERE [Code] = 'ocu' END +SET [Description] = 'Atzingo Matlatzinca', [Definition] = NULL, [SortOrder] = 438.00 WHERE [Code] = 'ocu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avt', 'Au', NULL, 44.00) END +VALUES ('avt', 'Au', NULL, 439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Au', [Definition] = NULL, [SortOrder] = 44.00 WHERE [Code] = 'avt' END +SET [Description] = 'Au', [Definition] = NULL, [SortOrder] = 439.00 WHERE [Code] = 'avt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aul', 'Aulua', NULL, 44.10) END +VALUES ('aul', 'Aulua', NULL, 440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aulua', [Definition] = NULL, [SortOrder] = 44.10 WHERE [Code] = 'aul' END +SET [Description] = 'Aulua', [Definition] = NULL, [SortOrder] = 440.00 WHERE [Code] = 'aul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aux', 'Aurá', NULL, 44.20) END +VALUES ('aux', 'Aurá', NULL, 441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aurá', [Definition] = NULL, [SortOrder] = 44.20 WHERE [Code] = 'aux' END +SET [Description] = 'Aurá', [Definition] = NULL, [SortOrder] = 441.00 WHERE [Code] = 'aux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auh', 'Aushi', NULL, 44.30) END +VALUES ('auh', 'Aushi', NULL, 442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aushi', [Definition] = NULL, [SortOrder] = 44.30 WHERE [Code] = 'auh' END +SET [Description] = 'Aushi', [Definition] = NULL, [SortOrder] = 442.00 WHERE [Code] = 'auh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avs', 'Aushiri', NULL, 44.40) END +VALUES ('avs', 'Aushiri', NULL, 443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aushiri', [Definition] = NULL, [SortOrder] = 44.40 WHERE [Code] = 'avs' END +SET [Description] = 'Aushiri', [Definition] = NULL, [SortOrder] = 443.00 WHERE [Code] = 'avs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asf', 'Auslan', NULL, 44.50) END +VALUES ('asf', 'Auslan', NULL, 444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Auslan', [Definition] = NULL, [SortOrder] = 44.50 WHERE [Code] = 'asf' END +SET [Description] = 'Auslan', [Definition] = NULL, [SortOrder] = 444.00 WHERE [Code] = 'asf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aut', 'Austral', NULL, 44.60) END +VALUES ('aut', 'Austral', NULL, 445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Austral', [Definition] = NULL, [SortOrder] = 44.60 WHERE [Code] = 'aut' END +SET [Description] = 'Austral', [Definition] = NULL, [SortOrder] = 445.00 WHERE [Code] = 'aut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asw', 'Australian Aborigines Sign Language', NULL, 44.70) END +VALUES ('asw', 'Australian Aborigines Sign Language', NULL, 446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Australian Aborigines Sign Language', [Definition] = NULL, [SortOrder] = 44.70 WHERE [Code] = 'asw' END +SET [Description] = 'Australian Aborigines Sign Language', [Definition] = NULL, [SortOrder] = 446.00 WHERE [Code] = 'asw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asq', 'Austrian Sign Language', NULL, 44.80) END +VALUES ('asq', 'Austrian Sign Language', NULL, 447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Austrian Sign Language', [Definition] = NULL, [SortOrder] = 44.80 WHERE [Code] = 'asq' END +SET [Description] = 'Austrian Sign Language', [Definition] = NULL, [SortOrder] = 447.00 WHERE [Code] = 'asq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smf', 'Auwe', NULL, 44.90) END +VALUES ('smf', 'Auwe', NULL, 448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Auwe', [Definition] = NULL, [SortOrder] = 44.90 WHERE [Code] = 'smf' END +SET [Description] = 'Auwe', [Definition] = NULL, [SortOrder] = 448.00 WHERE [Code] = 'smf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auu', 'Auye', NULL, 45.00) END +VALUES ('auu', 'Auye', NULL, 449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Auye', [Definition] = NULL, [SortOrder] = 45.00 WHERE [Code] = 'auu' END +SET [Description] = 'Auye', [Definition] = NULL, [SortOrder] = 449.00 WHERE [Code] = 'auu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auo', 'Auyokawa', NULL, 45.10) END +VALUES ('auo', 'Auyokawa', NULL, 450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Auyokawa', [Definition] = NULL, [SortOrder] = 45.10 WHERE [Code] = 'auo' END +SET [Description] = 'Auyokawa', [Definition] = NULL, [SortOrder] = 450.00 WHERE [Code] = 'auo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avv', 'Avá-Canoeiro', NULL, 45.20) END +VALUES ('avv', 'Avá-Canoeiro', NULL, 451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avá-Canoeiro', [Definition] = NULL, [SortOrder] = 45.20 WHERE [Code] = 'avv' END +SET [Description] = 'Avá-Canoeiro', [Definition] = NULL, [SortOrder] = 451.00 WHERE [Code] = 'avv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ava') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ava', 'Avaric', NULL, 45.30) END +VALUES ('ava', 'Avaric', NULL, 452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avaric', [Definition] = NULL, [SortOrder] = 45.30 WHERE [Code] = 'ava' END +SET [Description] = 'Avaric', [Definition] = NULL, [SortOrder] = 452.00 WHERE [Code] = 'ava' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avn', 'Avatime', NULL, 45.40) END +VALUES ('avn', 'Avatime', NULL, 453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avatime', [Definition] = NULL, [SortOrder] = 45.40 WHERE [Code] = 'avn' END +SET [Description] = 'Avatime', [Definition] = NULL, [SortOrder] = 453.00 WHERE [Code] = 'avn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avb', 'Avau', NULL, 45.50) END +VALUES ('avb', 'Avau', NULL, 454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avau', [Definition] = NULL, [SortOrder] = 45.50 WHERE [Code] = 'avb' END +SET [Description] = 'Avau', [Definition] = NULL, [SortOrder] = 454.00 WHERE [Code] = 'avb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ave') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ave', 'Avestan', NULL, 45.60) END +VALUES ('ave', 'Avestan', NULL, 455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avestan', [Definition] = NULL, [SortOrder] = 45.60 WHERE [Code] = 'ave' END +SET [Description] = 'Avestan', [Definition] = NULL, [SortOrder] = 455.00 WHERE [Code] = 'ave' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avi', 'Avikam', NULL, 45.70) END +VALUES ('avi', 'Avikam', NULL, 456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avikam', [Definition] = NULL, [SortOrder] = 45.70 WHERE [Code] = 'avi' END +SET [Description] = 'Avikam', [Definition] = NULL, [SortOrder] = 456.00 WHERE [Code] = 'avi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avu', 'Avokaya', NULL, 45.80) END +VALUES ('avu', 'Avokaya', NULL, 457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Avokaya', [Definition] = NULL, [SortOrder] = 45.80 WHERE [Code] = 'avu' END +SET [Description] = 'Avokaya', [Definition] = NULL, [SortOrder] = 457.00 WHERE [Code] = 'avu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vwa', 'Awa (China)', NULL, 45.90) END +VALUES ('vwa', 'Awa (China)', NULL, 458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awa (China)', [Definition] = NULL, [SortOrder] = 45.90 WHERE [Code] = 'vwa' END +SET [Description] = 'Awa (China)', [Definition] = NULL, [SortOrder] = 458.00 WHERE [Code] = 'vwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awb', 'Awa (Papua New Guinea)', NULL, 46.00) END +VALUES ('awb', 'Awa (Papua New Guinea)', NULL, 459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 46.00 WHERE [Code] = 'awb' END +SET [Description] = 'Awa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 459.00 WHERE [Code] = 'awb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwi', 'Awa-Cuaiquer', NULL, 46.10) END +VALUES ('kwi', 'Awa-Cuaiquer', NULL, 460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awa-Cuaiquer', [Definition] = NULL, [SortOrder] = 46.10 WHERE [Code] = 'kwi' END +SET [Description] = 'Awa-Cuaiquer', [Definition] = NULL, [SortOrder] = 460.00 WHERE [Code] = 'kwi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awk', 'Awabakal', NULL, 46.20) END +VALUES ('awk', 'Awabakal', NULL, 461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awabakal', [Definition] = NULL, [SortOrder] = 46.20 WHERE [Code] = 'awk' END +SET [Description] = 'Awabakal', [Definition] = NULL, [SortOrder] = 461.00 WHERE [Code] = 'awk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcu', 'Awad Bing', NULL, 46.30) END +VALUES ('bcu', 'Awad Bing', NULL, 462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awad Bing', [Definition] = NULL, [SortOrder] = 46.30 WHERE [Code] = 'bcu' END +SET [Description] = 'Awad Bing', [Definition] = NULL, [SortOrder] = 462.00 WHERE [Code] = 'bcu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awa', 'Awadhi', NULL, 46.40) END +VALUES ('awa', 'Awadhi', NULL, 463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awadhi', [Definition] = NULL, [SortOrder] = 46.40 WHERE [Code] = 'awa' END +SET [Description] = 'Awadhi', [Definition] = NULL, [SortOrder] = 463.00 WHERE [Code] = 'awa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awo', 'Awak', NULL, 46.50) END +VALUES ('awo', 'Awak', NULL, 464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awak', [Definition] = NULL, [SortOrder] = 46.50 WHERE [Code] = 'awo' END +SET [Description] = 'Awak', [Definition] = NULL, [SortOrder] = 464.00 WHERE [Code] = 'awo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aya', 'Awar', NULL, 46.60) END +VALUES ('aya', 'Awar', NULL, 465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awar', [Definition] = NULL, [SortOrder] = 46.60 WHERE [Code] = 'aya' END +SET [Description] = 'Awar', [Definition] = NULL, [SortOrder] = 465.00 WHERE [Code] = 'aya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awx', 'Awara', NULL, 46.70) END +VALUES ('awx', 'Awara', NULL, 466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awara', [Definition] = NULL, [SortOrder] = 46.70 WHERE [Code] = 'awx' END +SET [Description] = 'Awara', [Definition] = NULL, [SortOrder] = 466.00 WHERE [Code] = 'awx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awh', 'Awbono', NULL, 46.80) END +VALUES ('awh', 'Awbono', NULL, 467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awbono', [Definition] = NULL, [SortOrder] = 46.80 WHERE [Code] = 'awh' END +SET [Description] = 'Awbono', [Definition] = NULL, [SortOrder] = 467.00 WHERE [Code] = 'awh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bob', 'Aweer', NULL, 46.90) END +VALUES ('bob', 'Aweer', NULL, 468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aweer', [Definition] = NULL, [SortOrder] = 46.90 WHERE [Code] = 'bob' END +SET [Description] = 'Aweer', [Definition] = NULL, [SortOrder] = 468.00 WHERE [Code] = 'bob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awr', 'Awera', NULL, 47.00) END +VALUES ('awr', 'Awera', NULL, 469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awera', [Definition] = NULL, [SortOrder] = 47.00 WHERE [Code] = 'awr' END +SET [Description] = 'Awera', [Definition] = NULL, [SortOrder] = 469.00 WHERE [Code] = 'awr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awe', 'Awetí', NULL, 47.10) END +VALUES ('awe', 'Awetí', NULL, 470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awetí', [Definition] = NULL, [SortOrder] = 47.10 WHERE [Code] = 'awe' END +SET [Description] = 'Awetí', [Definition] = NULL, [SortOrder] = 470.00 WHERE [Code] = 'awe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azo', 'Awing', NULL, 47.20) END +VALUES ('azo', 'Awing', NULL, 471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awing', [Definition] = NULL, [SortOrder] = 47.20 WHERE [Code] = 'azo' END +SET [Description] = 'Awing', [Definition] = NULL, [SortOrder] = 471.00 WHERE [Code] = 'azo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auy', 'Awiyaana', NULL, 47.30) END +VALUES ('auy', 'Awiyaana', NULL, 472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awiyaana', [Definition] = NULL, [SortOrder] = 47.30 WHERE [Code] = 'auy' END +SET [Description] = 'Awiyaana', [Definition] = NULL, [SortOrder] = 472.00 WHERE [Code] = 'auy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auj', 'Awjilah', NULL, 47.40) END +VALUES ('auj', 'Awjilah', NULL, 473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awjilah', [Definition] = NULL, [SortOrder] = 47.40 WHERE [Code] = 'auj' END +SET [Description] = 'Awjilah', [Definition] = NULL, [SortOrder] = 473.00 WHERE [Code] = 'auj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awn', 'Awngi', NULL, 47.50) END +VALUES ('awn', 'Awngi', NULL, 474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awngi', [Definition] = NULL, [SortOrder] = 47.50 WHERE [Code] = 'awn' END +SET [Description] = 'Awngi', [Definition] = NULL, [SortOrder] = 474.00 WHERE [Code] = 'awn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwm', 'Awngthim', NULL, 47.60) END +VALUES ('gwm', 'Awngthim', NULL, 475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awngthim', [Definition] = NULL, [SortOrder] = 47.60 WHERE [Code] = 'gwm' END +SET [Description] = 'Awngthim', [Definition] = NULL, [SortOrder] = 475.00 WHERE [Code] = 'gwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmn', 'Awtuw', NULL, 47.70) END +VALUES ('kmn', 'Awtuw', NULL, 476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awtuw', [Definition] = NULL, [SortOrder] = 47.70 WHERE [Code] = 'kmn' END +SET [Description] = 'Awtuw', [Definition] = NULL, [SortOrder] = 476.00 WHERE [Code] = 'kmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yiu', 'Awu', NULL, 47.80) END +VALUES ('yiu', 'Awu', NULL, 477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awu', [Definition] = NULL, [SortOrder] = 47.80 WHERE [Code] = 'yiu' END +SET [Description] = 'Awu', [Definition] = NULL, [SortOrder] = 477.00 WHERE [Code] = 'yiu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aww', 'Awun', NULL, 47.90) END +VALUES ('aww', 'Awun', NULL, 478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awun', [Definition] = NULL, [SortOrder] = 47.90 WHERE [Code] = 'aww' END +SET [Description] = 'Awun', [Definition] = NULL, [SortOrder] = 478.00 WHERE [Code] = 'aww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afu', 'Awutu', NULL, 48.00) END +VALUES ('afu', 'Awutu', NULL, 479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awutu', [Definition] = NULL, [SortOrder] = 48.00 WHERE [Code] = 'afu' END +SET [Description] = 'Awutu', [Definition] = NULL, [SortOrder] = 479.00 WHERE [Code] = 'afu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auw', 'Awyi', NULL, 48.10) END +VALUES ('auw', 'Awyi', NULL, 480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Awyi', [Definition] = NULL, [SortOrder] = 48.10 WHERE [Code] = 'auw' END +SET [Description] = 'Awyi', [Definition] = NULL, [SortOrder] = 480.00 WHERE [Code] = 'auw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahb', 'Axamb', NULL, 48.20) END +VALUES ('ahb', 'Axamb', NULL, 481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Axamb', [Definition] = NULL, [SortOrder] = 48.20 WHERE [Code] = 'ahb' END +SET [Description] = 'Axamb', [Definition] = NULL, [SortOrder] = 481.00 WHERE [Code] = 'ahb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yix', 'Axi Yi', NULL, 48.30) END +VALUES ('yix', 'Axi Yi', NULL, 482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Axi Yi', [Definition] = NULL, [SortOrder] = 48.30 WHERE [Code] = 'yix' END +SET [Description] = 'Axi Yi', [Definition] = NULL, [SortOrder] = 482.00 WHERE [Code] = 'yix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayd', 'Ayabadhu', NULL, 48.40) END +VALUES ('ayd', 'Ayabadhu', NULL, 483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayabadhu', [Definition] = NULL, [SortOrder] = 48.40 WHERE [Code] = 'ayd' END +SET [Description] = 'Ayabadhu', [Definition] = NULL, [SortOrder] = 483.00 WHERE [Code] = 'ayd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quy', 'Ayacucho Quechua', NULL, 48.50) END +VALUES ('quy', 'Ayacucho Quechua', NULL, 484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayacucho Quechua', [Definition] = NULL, [SortOrder] = 48.50 WHERE [Code] = 'quy' END +SET [Description] = 'Ayacucho Quechua', [Definition] = NULL, [SortOrder] = 484.00 WHERE [Code] = 'quy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmy', 'Ayautla Mazatec', NULL, 48.60) END +VALUES ('vmy', 'Ayautla Mazatec', NULL, 485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayautla Mazatec', [Definition] = NULL, [SortOrder] = 48.60 WHERE [Code] = 'vmy' END +SET [Description] = 'Ayautla Mazatec', [Definition] = NULL, [SortOrder] = 485.00 WHERE [Code] = 'vmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aye', 'Ayere', NULL, 48.70) END +VALUES ('aye', 'Ayere', NULL, 486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayere', [Definition] = NULL, [SortOrder] = 48.70 WHERE [Code] = 'aye' END +SET [Description] = 'Ayere', [Definition] = NULL, [SortOrder] = 486.00 WHERE [Code] = 'aye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axe', 'Ayerrerenge', NULL, 48.80) END +VALUES ('axe', 'Ayerrerenge', NULL, 487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayerrerenge', [Definition] = NULL, [SortOrder] = 48.80 WHERE [Code] = 'axe' END +SET [Description] = 'Ayerrerenge', [Definition] = NULL, [SortOrder] = 487.00 WHERE [Code] = 'axe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayq', 'Ayi (Papua New Guinea)', NULL, 48.90) END +VALUES ('ayq', 'Ayi (Papua New Guinea)', NULL, 488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayi (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 48.90 WHERE [Code] = 'ayq' END +SET [Description] = 'Ayi (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 488.00 WHERE [Code] = 'ayq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfl', 'Ayiwo', NULL, 49.00) END +VALUES ('nfl', 'Ayiwo', NULL, 489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayiwo', [Definition] = NULL, [SortOrder] = 49.00 WHERE [Code] = 'nfl' END +SET [Description] = 'Ayiwo', [Definition] = NULL, [SortOrder] = 489.00 WHERE [Code] = 'nfl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yyz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yyz', 'Ayizi', NULL, 49.10) END +VALUES ('yyz', 'Ayizi', NULL, 490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayizi', [Definition] = NULL, [SortOrder] = 49.10 WHERE [Code] = 'yyz' END +SET [Description] = 'Ayizi', [Definition] = NULL, [SortOrder] = 490.00 WHERE [Code] = 'yyz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayb', 'Ayizo Gbe', NULL, 49.20) END +VALUES ('ayb', 'Ayizo Gbe', NULL, 491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayizo Gbe', [Definition] = NULL, [SortOrder] = 49.20 WHERE [Code] = 'ayb' END +SET [Description] = 'Ayizo Gbe', [Definition] = NULL, [SortOrder] = 491.00 WHERE [Code] = 'ayb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aym', 'Aymara', NULL, 49.30) END +VALUES ('aym', 'Aymara', NULL, 492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Aymara', [Definition] = NULL, [SortOrder] = 49.30 WHERE [Code] = 'aym' END +SET [Description] = 'Aymara', [Definition] = NULL, [SortOrder] = 492.00 WHERE [Code] = 'aym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaf', 'Ayoquesco Zapotec', NULL, 49.40) END +VALUES ('zaf', 'Ayoquesco Zapotec', NULL, 493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayoquesco Zapotec', [Definition] = NULL, [SortOrder] = 49.40 WHERE [Code] = 'zaf' END +SET [Description] = 'Ayoquesco Zapotec', [Definition] = NULL, [SortOrder] = 493.00 WHERE [Code] = 'zaf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayo', 'Ayoreo', NULL, 49.50) END +VALUES ('ayo', 'Ayoreo', NULL, 494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayoreo', [Definition] = NULL, [SortOrder] = 49.50 WHERE [Code] = 'ayo' END +SET [Description] = 'Ayoreo', [Definition] = NULL, [SortOrder] = 494.00 WHERE [Code] = 'ayo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayu', 'Ayu', NULL, 49.60) END +VALUES ('ayu', 'Ayu', NULL, 495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayu', [Definition] = NULL, [SortOrder] = 49.60 WHERE [Code] = 'ayu' END +SET [Description] = 'Ayu', [Definition] = NULL, [SortOrder] = 495.00 WHERE [Code] = 'ayu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miy', 'Ayutla Mixtec', NULL, 49.70) END +VALUES ('miy', 'Ayutla Mixtec', NULL, 496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ayutla Mixtec', [Definition] = NULL, [SortOrder] = 49.70 WHERE [Code] = 'miy' END +SET [Description] = 'Ayutla Mixtec', [Definition] = NULL, [SortOrder] = 496.00 WHERE [Code] = 'miy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aze', 'Azerbaijani', NULL, 49.80) END +VALUES ('aze', 'Azerbaijani', NULL, 497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Azerbaijani', [Definition] = NULL, [SortOrder] = 49.80 WHERE [Code] = 'aze' END +SET [Description] = 'Azerbaijani', [Definition] = NULL, [SortOrder] = 497.00 WHERE [Code] = 'aze' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aza', 'Azha', NULL, 49.90) END +VALUES ('aza', 'Azha', NULL, 498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Azha', [Definition] = NULL, [SortOrder] = 49.90 WHERE [Code] = 'aza' END +SET [Description] = 'Azha', [Definition] = NULL, [SortOrder] = 498.00 WHERE [Code] = 'aza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yiz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yiz', 'Azhe', NULL, 50.00) END +VALUES ('yiz', 'Azhe', NULL, 499.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Azhe', [Definition] = NULL, [SortOrder] = 50.00 WHERE [Code] = 'yiz' END +SET [Description] = 'Azhe', [Definition] = NULL, [SortOrder] = 499.00 WHERE [Code] = 'yiz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpc', 'Azoyú Me''phaa', NULL, 50.10) END +VALUES ('tpc', 'Azoyú Me''phaa', NULL, 500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Azoyú Me''phaa', [Definition] = NULL, [SortOrder] = 50.10 WHERE [Code] = 'tpc' END +SET [Description] = 'Azoyú Me''phaa', [Definition] = NULL, [SortOrder] = 500.00 WHERE [Code] = 'tpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvj', 'Baan', NULL, 50.20) END +VALUES ('bvj', 'Baan', NULL, 501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baan', [Definition] = NULL, [SortOrder] = 50.20 WHERE [Code] = 'bvj' END +SET [Description] = 'Baan', [Definition] = NULL, [SortOrder] = 501.00 WHERE [Code] = 'bvj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqx', 'Baangi', NULL, 50.30) END +VALUES ('bqx', 'Baangi', NULL, 502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baangi', [Definition] = NULL, [SortOrder] = 50.30 WHERE [Code] = 'bqx' END +SET [Description] = 'Baangi', [Definition] = NULL, [SortOrder] = 502.00 WHERE [Code] = 'bqx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bba', 'Baatonum', NULL, 50.40) END +VALUES ('bba', 'Baatonum', NULL, 503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baatonum', [Definition] = NULL, [SortOrder] = 50.40 WHERE [Code] = 'bba' END +SET [Description] = 'Baatonum', [Definition] = NULL, [SortOrder] = 503.00 WHERE [Code] = 'bba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbw', 'Baba', NULL, 50.50) END +VALUES ('bbw', 'Baba', NULL, 504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baba', [Definition] = NULL, [SortOrder] = 50.50 WHERE [Code] = 'bbw' END +SET [Description] = 'Baba', [Definition] = NULL, [SortOrder] = 504.00 WHERE [Code] = 'bbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbf', 'Baba Malay', NULL, 50.60) END +VALUES ('mbf', 'Baba Malay', NULL, 505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baba Malay', [Definition] = NULL, [SortOrder] = 50.60 WHERE [Code] = 'mbf' END +SET [Description] = 'Baba Malay', [Definition] = NULL, [SortOrder] = 505.00 WHERE [Code] = 'mbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbm', 'Babango', NULL, 50.70) END +VALUES ('bbm', 'Babango', NULL, 506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babango', [Definition] = NULL, [SortOrder] = 50.70 WHERE [Code] = 'bbm' END +SET [Description] = 'Babango', [Definition] = NULL, [SortOrder] = 506.00 WHERE [Code] = 'bbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbk', 'Babanki', NULL, 50.80) END +VALUES ('bbk', 'Babanki', NULL, 507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babanki', [Definition] = NULL, [SortOrder] = 50.80 WHERE [Code] = 'bbk' END +SET [Description] = 'Babanki', [Definition] = NULL, [SortOrder] = 507.00 WHERE [Code] = 'bbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'baa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baa', 'Babatana', NULL, 50.90) END +VALUES ('baa', 'Babatana', NULL, 508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babatana', [Definition] = NULL, [SortOrder] = 50.90 WHERE [Code] = 'baa' END +SET [Description] = 'Babatana', [Definition] = NULL, [SortOrder] = 508.00 WHERE [Code] = 'baa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcr', 'Babine', NULL, 51.00) END +VALUES ('bcr', 'Babine', NULL, 509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babine', [Definition] = NULL, [SortOrder] = 51.00 WHERE [Code] = 'bcr' END +SET [Description] = 'Babine', [Definition] = NULL, [SortOrder] = 509.00 WHERE [Code] = 'bcr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzg', 'Babuza', NULL, 51.10) END +VALUES ('bzg', 'Babuza', NULL, 510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Babuza', [Definition] = NULL, [SortOrder] = 51.10 WHERE [Code] = 'bzg' END +SET [Description] = 'Babuza', [Definition] = NULL, [SortOrder] = 510.00 WHERE [Code] = 'bzg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcy', 'Bacama', NULL, 51.20) END +VALUES ('bcy', 'Bacama', NULL, 511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bacama', [Definition] = NULL, [SortOrder] = 51.20 WHERE [Code] = 'bcy' END +SET [Description] = 'Bacama', [Definition] = NULL, [SortOrder] = 511.00 WHERE [Code] = 'bcy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btj', 'Bacanese Malay', NULL, 51.30) END +VALUES ('btj', 'Bacanese Malay', NULL, 512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bacanese Malay', [Definition] = NULL, [SortOrder] = 51.30 WHERE [Code] = 'btj' END +SET [Description] = 'Bacanese Malay', [Definition] = NULL, [SortOrder] = 512.00 WHERE [Code] = 'btj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbc', 'Bactrian', NULL, 51.40) END +VALUES ('xbc', 'Bactrian', NULL, 513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bactrian', [Definition] = NULL, [SortOrder] = 51.40 WHERE [Code] = 'xbc' END +SET [Description] = 'Bactrian', [Definition] = NULL, [SortOrder] = 513.00 WHERE [Code] = 'xbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhz', 'Bada (Indonesia)', NULL, 51.50) END +VALUES ('bhz', 'Bada (Indonesia)', NULL, 514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bada (Indonesia)', [Definition] = NULL, [SortOrder] = 51.50 WHERE [Code] = 'bhz' END +SET [Description] = 'Bada (Indonesia)', [Definition] = NULL, [SortOrder] = 514.00 WHERE [Code] = 'bhz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bau', 'Bada (Nigeria)', NULL, 51.60) END +VALUES ('bau', 'Bada (Nigeria)', NULL, 515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bada (Nigeria)', [Definition] = NULL, [SortOrder] = 51.60 WHERE [Code] = 'bau' END +SET [Description] = 'Bada (Nigeria)', [Definition] = NULL, [SortOrder] = 515.00 WHERE [Code] = 'bau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfq', 'Badaga', NULL, 51.70) END +VALUES ('bfq', 'Badaga', NULL, 516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badaga', [Definition] = NULL, [SortOrder] = 51.70 WHERE [Code] = 'bfq' END +SET [Description] = 'Badaga', [Definition] = NULL, [SortOrder] = 516.00 WHERE [Code] = 'bfq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bde', 'Bade', NULL, 51.80) END +VALUES ('bde', 'Bade', NULL, 517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bade', [Definition] = NULL, [SortOrder] = 51.80 WHERE [Code] = 'bde' END +SET [Description] = 'Bade', [Definition] = NULL, [SortOrder] = 517.00 WHERE [Code] = 'bde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdz', 'Badeshi', NULL, 51.90) END +VALUES ('bdz', 'Badeshi', NULL, 518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badeshi', [Definition] = NULL, [SortOrder] = 51.90 WHERE [Code] = 'bdz' END +SET [Description] = 'Badeshi', [Definition] = NULL, [SortOrder] = 518.00 WHERE [Code] = 'bdz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khd', 'Bädi Kanum', NULL, 52.00) END +VALUES ('khd', 'Bädi Kanum', NULL, 519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bädi Kanum', [Definition] = NULL, [SortOrder] = 52.00 WHERE [Code] = 'khd' END +SET [Description] = 'Bädi Kanum', [Definition] = NULL, [SortOrder] = 519.00 WHERE [Code] = 'khd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bia', 'Badimaya', NULL, 52.10) END +VALUES ('bia', 'Badimaya', NULL, 520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badimaya', [Definition] = NULL, [SortOrder] = 52.10 WHERE [Code] = 'bia' END +SET [Description] = 'Badimaya', [Definition] = NULL, [SortOrder] = 520.00 WHERE [Code] = 'bia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbi', 'Badjiri', NULL, 52.20) END +VALUES ('jbi', 'Badjiri', NULL, 521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badjiri', [Definition] = NULL, [SortOrder] = 52.20 WHERE [Code] = 'jbi' END +SET [Description] = 'Badjiri', [Definition] = NULL, [SortOrder] = 521.00 WHERE [Code] = 'jbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bac', 'Badui', NULL, 52.30) END +VALUES ('bac', 'Badui', NULL, 522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badui', [Definition] = NULL, [SortOrder] = 52.30 WHERE [Code] = 'bac' END +SET [Description] = 'Badui', [Definition] = NULL, [SortOrder] = 522.00 WHERE [Code] = 'bac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbp', 'Badyara', NULL, 52.40) END +VALUES ('pbp', 'Badyara', NULL, 523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Badyara', [Definition] = NULL, [SortOrder] = 52.40 WHERE [Code] = 'pbp' END +SET [Description] = 'Badyara', [Definition] = NULL, [SortOrder] = 523.00 WHERE [Code] = 'pbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvd', 'Baeggu', NULL, 52.50) END +VALUES ('bvd', 'Baeggu', NULL, 524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baeggu', [Definition] = NULL, [SortOrder] = 52.50 WHERE [Code] = 'bvd' END +SET [Description] = 'Baeggu', [Definition] = NULL, [SortOrder] = 524.00 WHERE [Code] = 'bvd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvc', 'Baelelea', NULL, 52.60) END +VALUES ('bvc', 'Baelelea', NULL, 525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baelelea', [Definition] = NULL, [SortOrder] = 52.60 WHERE [Code] = 'bvc' END +SET [Description] = 'Baelelea', [Definition] = NULL, [SortOrder] = 525.00 WHERE [Code] = 'bvc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btr', 'Baetora', NULL, 52.70) END +VALUES ('btr', 'Baetora', NULL, 526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baetora', [Definition] = NULL, [SortOrder] = 52.70 WHERE [Code] = 'btr' END +SET [Description] = 'Baetora', [Definition] = NULL, [SortOrder] = 526.00 WHERE [Code] = 'btr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfj', 'Bafanji', NULL, 52.80) END +VALUES ('bfj', 'Bafanji', NULL, 527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bafanji', [Definition] = NULL, [SortOrder] = 52.80 WHERE [Code] = 'bfj' END +SET [Description] = 'Bafanji', [Definition] = NULL, [SortOrder] = 527.00 WHERE [Code] = 'bfj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwt', 'Bafaw-Balong', NULL, 52.90) END +VALUES ('bwt', 'Bafaw-Balong', NULL, 528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bafaw-Balong', [Definition] = NULL, [SortOrder] = 52.90 WHERE [Code] = 'bwt' END +SET [Description] = 'Bafaw-Balong', [Definition] = NULL, [SortOrder] = 528.00 WHERE [Code] = 'bwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksf', 'Bafia', NULL, 53.00) END +VALUES ('ksf', 'Bafia', NULL, 529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bafia', [Definition] = NULL, [SortOrder] = 53.00 WHERE [Code] = 'ksf' END +SET [Description] = 'Bafia', [Definition] = NULL, [SortOrder] = 529.00 WHERE [Code] = 'ksf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfd', 'Bafut', NULL, 53.10) END +VALUES ('bfd', 'Bafut', NULL, 530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bafut', [Definition] = NULL, [SortOrder] = 53.10 WHERE [Code] = 'bfd' END +SET [Description] = 'Bafut', [Definition] = NULL, [SortOrder] = 530.00 WHERE [Code] = 'bfd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqf', 'Baga Kaloum', NULL, 53.20) END +VALUES ('bqf', 'Baga Kaloum', NULL, 531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Kaloum', [Definition] = NULL, [SortOrder] = 53.20 WHERE [Code] = 'bqf' END +SET [Description] = 'Baga Kaloum', [Definition] = NULL, [SortOrder] = 531.00 WHERE [Code] = 'bqf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgo', 'Baga Koga', NULL, 53.30) END +VALUES ('bgo', 'Baga Koga', NULL, 532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Koga', [Definition] = NULL, [SortOrder] = 53.30 WHERE [Code] = 'bgo' END +SET [Description] = 'Baga Koga', [Definition] = NULL, [SortOrder] = 532.00 WHERE [Code] = 'bgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmd', 'Baga Manduri', NULL, 53.40) END +VALUES ('bmd', 'Baga Manduri', NULL, 533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Manduri', [Definition] = NULL, [SortOrder] = 53.40 WHERE [Code] = 'bmd' END +SET [Description] = 'Baga Manduri', [Definition] = NULL, [SortOrder] = 533.00 WHERE [Code] = 'bmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcg', 'Baga Pokur', NULL, 53.50) END +VALUES ('bcg', 'Baga Pokur', NULL, 534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Pokur', [Definition] = NULL, [SortOrder] = 53.50 WHERE [Code] = 'bcg' END +SET [Description] = 'Baga Pokur', [Definition] = NULL, [SortOrder] = 534.00 WHERE [Code] = 'bcg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsp', 'Baga Sitemu', NULL, 53.60) END +VALUES ('bsp', 'Baga Sitemu', NULL, 535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Sitemu', [Definition] = NULL, [SortOrder] = 53.60 WHERE [Code] = 'bsp' END +SET [Description] = 'Baga Sitemu', [Definition] = NULL, [SortOrder] = 535.00 WHERE [Code] = 'bsp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsv', 'Baga Sobané', NULL, 53.70) END +VALUES ('bsv', 'Baga Sobané', NULL, 536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baga Sobané', [Definition] = NULL, [SortOrder] = 53.70 WHERE [Code] = 'bsv' END +SET [Description] = 'Baga Sobané', [Definition] = NULL, [SortOrder] = 536.00 WHERE [Code] = 'bsv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfy', 'Bagheli', NULL, 53.80) END +VALUES ('bfy', 'Bagheli', NULL, 537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagheli', [Definition] = NULL, [SortOrder] = 53.80 WHERE [Code] = 'bfy' END +SET [Description] = 'Bagheli', [Definition] = NULL, [SortOrder] = 537.00 WHERE [Code] = 'bfy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmi', 'Bagirmi', NULL, 53.90) END +VALUES ('bmi', 'Bagirmi', NULL, 538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagirmi', [Definition] = NULL, [SortOrder] = 53.90 WHERE [Code] = 'bmi' END +SET [Description] = 'Bagirmi', [Definition] = NULL, [SortOrder] = 538.00 WHERE [Code] = 'bmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fui', 'Bagirmi Fulfulde', NULL, 54.00) END +VALUES ('fui', 'Bagirmi Fulfulde', NULL, 539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagirmi Fulfulde', [Definition] = NULL, [SortOrder] = 54.00 WHERE [Code] = 'fui' END +SET [Description] = 'Bagirmi Fulfulde', [Definition] = NULL, [SortOrder] = 539.00 WHERE [Code] = 'fui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqg', 'Bago-Kusuntu', NULL, 54.10) END +VALUES ('bqg', 'Bago-Kusuntu', NULL, 540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bago-Kusuntu', [Definition] = NULL, [SortOrder] = 54.10 WHERE [Code] = 'bqg' END +SET [Description] = 'Bago-Kusuntu', [Definition] = NULL, [SortOrder] = 540.00 WHERE [Code] = 'bqg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgq', 'Bagri', NULL, 54.20) END +VALUES ('bgq', 'Bagri', NULL, 541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagri', [Definition] = NULL, [SortOrder] = 54.20 WHERE [Code] = 'bgq' END +SET [Description] = 'Bagri', [Definition] = NULL, [SortOrder] = 541.00 WHERE [Code] = 'bgq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpi', 'Bagupi', NULL, 54.30) END +VALUES ('bpi', 'Bagupi', NULL, 542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagupi', [Definition] = NULL, [SortOrder] = 54.30 WHERE [Code] = 'bpi' END +SET [Description] = 'Bagupi', [Definition] = NULL, [SortOrder] = 542.00 WHERE [Code] = 'bpi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqb', 'Bagusa', NULL, 54.40) END +VALUES ('bqb', 'Bagusa', NULL, 543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagusa', [Definition] = NULL, [SortOrder] = 54.40 WHERE [Code] = 'bqb' END +SET [Description] = 'Bagusa', [Definition] = NULL, [SortOrder] = 543.00 WHERE [Code] = 'bqb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kva', 'Bagvalal', NULL, 54.50) END +VALUES ('kva', 'Bagvalal', NULL, 544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bagvalal', [Definition] = NULL, [SortOrder] = 54.50 WHERE [Code] = 'kva' END +SET [Description] = 'Bagvalal', [Definition] = NULL, [SortOrder] = 544.00 WHERE [Code] = 'kva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yha', 'Baha Buyang', NULL, 54.60) END +VALUES ('yha', 'Baha Buyang', NULL, 545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baha Buyang', [Definition] = NULL, [SortOrder] = 54.60 WHERE [Code] = 'yha' END +SET [Description] = 'Baha Buyang', [Definition] = NULL, [SortOrder] = 545.00 WHERE [Code] = 'yha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdw', 'Baham', NULL, 54.70) END +VALUES ('bdw', 'Baham', NULL, 546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baham', [Definition] = NULL, [SortOrder] = 54.70 WHERE [Code] = 'bdw' END +SET [Description] = 'Baham', [Definition] = NULL, [SortOrder] = 546.00 WHERE [Code] = 'bdw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bah', 'Bahamas Creole English', NULL, 54.80) END +VALUES ('bah', 'Bahamas Creole English', NULL, 547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahamas Creole English', [Definition] = NULL, [SortOrder] = 54.80 WHERE [Code] = 'bah' END +SET [Description] = 'Bahamas Creole English', [Definition] = NULL, [SortOrder] = 547.00 WHERE [Code] = 'bah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abv', 'Baharna Arabic', NULL, 54.90) END +VALUES ('abv', 'Baharna Arabic', NULL, 548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baharna Arabic', [Definition] = NULL, [SortOrder] = 54.90 WHERE [Code] = 'abv' END +SET [Description] = 'Baharna Arabic', [Definition] = NULL, [SortOrder] = 548.00 WHERE [Code] = 'abv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhv', 'Bahau', NULL, 55.00) END +VALUES ('bhv', 'Bahau', NULL, 549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahau', [Definition] = NULL, [SortOrder] = 55.00 WHERE [Code] = 'bhv' END +SET [Description] = 'Bahau', [Definition] = NULL, [SortOrder] = 549.00 WHERE [Code] = 'bhv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjh', 'Bahinemo', NULL, 55.10) END +VALUES ('bjh', 'Bahinemo', NULL, 550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahinemo', [Definition] = NULL, [SortOrder] = 55.10 WHERE [Code] = 'bjh' END +SET [Description] = 'Bahinemo', [Definition] = NULL, [SortOrder] = 550.00 WHERE [Code] = 'bjh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhj', 'Bahing', NULL, 55.20) END +VALUES ('bhj', 'Bahing', NULL, 551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahing', [Definition] = NULL, [SortOrder] = 55.20 WHERE [Code] = 'bhj' END +SET [Description] = 'Bahing', [Definition] = NULL, [SortOrder] = 551.00 WHERE [Code] = 'bhj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdq', 'Bahnar', NULL, 55.30) END +VALUES ('bdq', 'Bahnar', NULL, 552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahnar', [Definition] = NULL, [SortOrder] = 55.30 WHERE [Code] = 'bdq' END +SET [Description] = 'Bahnar', [Definition] = NULL, [SortOrder] = 552.00 WHERE [Code] = 'bdq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsu', 'Bahonsuai', NULL, 55.40) END +VALUES ('bsu', 'Bahonsuai', NULL, 553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bahonsuai', [Definition] = NULL, [SortOrder] = 55.40 WHERE [Code] = 'bsu' END +SET [Description] = 'Bahonsuai', [Definition] = NULL, [SortOrder] = 553.00 WHERE [Code] = 'bsu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdj', 'Bai (South Sudan)', NULL, 55.50) END +VALUES ('bdj', 'Bai (South Sudan)', NULL, 554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bai (South Sudan)', [Definition] = NULL, [SortOrder] = 55.50 WHERE [Code] = 'bdj' END +SET [Description] = 'Bai (South Sudan)', [Definition] = NULL, [SortOrder] = 554.00 WHERE [Code] = 'bdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbf', 'Baibai', NULL, 55.60) END +VALUES ('bbf', 'Baibai', NULL, 555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baibai', [Definition] = NULL, [SortOrder] = 55.60 WHERE [Code] = 'bbf' END +SET [Description] = 'Baibai', [Definition] = NULL, [SortOrder] = 555.00 WHERE [Code] = 'bbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkx', 'Baikeno', NULL, 55.70) END +VALUES ('bkx', 'Baikeno', NULL, 556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baikeno', [Definition] = NULL, [SortOrder] = 55.70 WHERE [Code] = 'bkx' END +SET [Description] = 'Baikeno', [Definition] = NULL, [SortOrder] = 556.00 WHERE [Code] = 'bkx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqh', 'Baima', NULL, 55.80) END +VALUES ('bqh', 'Baima', NULL, 557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baima', [Definition] = NULL, [SortOrder] = 55.80 WHERE [Code] = 'bqh' END +SET [Description] = 'Baima', [Definition] = NULL, [SortOrder] = 557.00 WHERE [Code] = 'bqh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmx', 'Baimak', NULL, 55.90) END +VALUES ('bmx', 'Baimak', NULL, 558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baimak', [Definition] = NULL, [SortOrder] = 55.90 WHERE [Code] = 'bmx' END +SET [Description] = 'Baimak', [Definition] = NULL, [SortOrder] = 558.00 WHERE [Code] = 'bmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcz', 'Bainouk-Gunyaamolo', NULL, 56.00) END +VALUES ('bcz', 'Bainouk-Gunyaamolo', NULL, 559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bainouk-Gunyaamolo', [Definition] = NULL, [SortOrder] = 56.00 WHERE [Code] = 'bcz' END +SET [Description] = 'Bainouk-Gunyaamolo', [Definition] = NULL, [SortOrder] = 559.00 WHERE [Code] = 'bcz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bab', 'Bainouk-Gunyuño', NULL, 56.10) END +VALUES ('bab', 'Bainouk-Gunyuño', NULL, 560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bainouk-Gunyuño', [Definition] = NULL, [SortOrder] = 56.10 WHERE [Code] = 'bab' END +SET [Description] = 'Bainouk-Gunyuño', [Definition] = NULL, [SortOrder] = 560.00 WHERE [Code] = 'bab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcb', 'Bainouk-Samik', NULL, 56.20) END +VALUES ('bcb', 'Bainouk-Samik', NULL, 561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bainouk-Samik', [Definition] = NULL, [SortOrder] = 56.20 WHERE [Code] = 'bcb' END +SET [Description] = 'Bainouk-Samik', [Definition] = NULL, [SortOrder] = 561.00 WHERE [Code] = 'bcb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsw', 'Baiso', NULL, 56.30) END +VALUES ('bsw', 'Baiso', NULL, 562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baiso', [Definition] = NULL, [SortOrder] = 56.30 WHERE [Code] = 'bsw' END +SET [Description] = 'Baiso', [Definition] = NULL, [SortOrder] = 562.00 WHERE [Code] = 'bsw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fah', 'Baissa Fali', NULL, 56.40) END +VALUES ('fah', 'Baissa Fali', NULL, 563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baissa Fali', [Definition] = NULL, [SortOrder] = 56.40 WHERE [Code] = 'fah' END +SET [Description] = 'Baissa Fali', [Definition] = NULL, [SortOrder] = 563.00 WHERE [Code] = 'fah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjs', 'Bajan', NULL, 56.50) END +VALUES ('bjs', 'Bajan', NULL, 564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bajan', [Definition] = NULL, [SortOrder] = 56.50 WHERE [Code] = 'bjs' END +SET [Description] = 'Bajan', [Definition] = NULL, [SortOrder] = 564.00 WHERE [Code] = 'bjs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjm', 'Bajelani', NULL, 56.60) END +VALUES ('bjm', 'Bajelani', NULL, 565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bajelani', [Definition] = NULL, [SortOrder] = 56.60 WHERE [Code] = 'bjm' END +SET [Description] = 'Bajelani', [Definition] = NULL, [SortOrder] = 565.00 WHERE [Code] = 'bjm' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('vjk', 'Bajjika', NULL, 566.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Bajjika', [Definition] = NULL, [SortOrder] = 566.00 WHERE [Code] = 'vjk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkc', 'Baka (Cameroon)', NULL, 56.70) END +VALUES ('bkc', 'Baka (Cameroon)', NULL, 567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baka (Cameroon)', [Definition] = NULL, [SortOrder] = 56.70 WHERE [Code] = 'bkc' END +SET [Description] = 'Baka (Cameroon)', [Definition] = NULL, [SortOrder] = 567.00 WHERE [Code] = 'bkc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdh', 'Baka (South Sudan)', NULL, 56.80) END +VALUES ('bdh', 'Baka (South Sudan)', NULL, 568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baka (South Sudan)', [Definition] = NULL, [SortOrder] = 56.80 WHERE [Code] = 'bdh' END +SET [Description] = 'Baka (South Sudan)', [Definition] = NULL, [SortOrder] = 568.00 WHERE [Code] = 'bdh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkq', 'Bakairí', NULL, 56.90) END +VALUES ('bkq', 'Bakairí', NULL, 569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakairí', [Definition] = NULL, [SortOrder] = 56.90 WHERE [Code] = 'bkq' END +SET [Description] = 'Bakairí', [Definition] = NULL, [SortOrder] = 569.00 WHERE [Code] = 'bkq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqz', 'Bakaka', NULL, 57.00) END +VALUES ('bqz', 'Bakaka', NULL, 570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakaka', [Definition] = NULL, [SortOrder] = 57.00 WHERE [Code] = 'bqz' END +SET [Description] = 'Bakaka', [Definition] = NULL, [SortOrder] = 570.00 WHERE [Code] = 'bqz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqi', 'Bakhtiari', NULL, 57.10) END +VALUES ('bqi', 'Bakhtiari', NULL, 571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakhtiari', [Definition] = NULL, [SortOrder] = 57.10 WHERE [Code] = 'bqi' END +SET [Description] = 'Bakhtiari', [Definition] = NULL, [SortOrder] = 571.00 WHERE [Code] = 'bqi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bki', 'Baki', NULL, 57.20) END +VALUES ('bki', 'Baki', NULL, 572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baki', [Definition] = NULL, [SortOrder] = 57.20 WHERE [Code] = 'bki' END +SET [Description] = 'Baki', [Definition] = NULL, [SortOrder] = 572.00 WHERE [Code] = 'bki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkh', 'Bakoko', NULL, 57.30) END +VALUES ('bkh', 'Bakoko', NULL, 573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakoko', [Definition] = NULL, [SortOrder] = 57.30 WHERE [Code] = 'bkh' END +SET [Description] = 'Bakoko', [Definition] = NULL, [SortOrder] = 573.00 WHERE [Code] = 'bkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kme', 'Bakole', NULL, 57.40) END +VALUES ('kme', 'Bakole', NULL, 574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakole', [Definition] = NULL, [SortOrder] = 57.40 WHERE [Code] = 'kme' END +SET [Description] = 'Bakole', [Definition] = NULL, [SortOrder] = 574.00 WHERE [Code] = 'kme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbs', 'Bakpinka', NULL, 57.50) END +VALUES ('bbs', 'Bakpinka', NULL, 575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakpinka', [Definition] = NULL, [SortOrder] = 57.50 WHERE [Code] = 'bbs' END +SET [Description] = 'Bakpinka', [Definition] = NULL, [SortOrder] = 575.00 WHERE [Code] = 'bbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkr', 'Bakumpai', NULL, 57.60) END +VALUES ('bkr', 'Bakumpai', NULL, 576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakumpai', [Definition] = NULL, [SortOrder] = 57.60 WHERE [Code] = 'bkr' END +SET [Description] = 'Bakumpai', [Definition] = NULL, [SortOrder] = 576.00 WHERE [Code] = 'bkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjw', 'Bakwé', NULL, 57.70) END +VALUES ('bjw', 'Bakwé', NULL, 577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bakwé', [Definition] = NULL, [SortOrder] = 57.70 WHERE [Code] = 'bjw' END +SET [Description] = 'Bakwé', [Definition] = NULL, [SortOrder] = 577.00 WHERE [Code] = 'bjw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bls', 'Balaesang', NULL, 57.80) END +VALUES ('bls', 'Balaesang', NULL, 578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balaesang', [Definition] = NULL, [SortOrder] = 57.80 WHERE [Code] = 'bls' END +SET [Description] = 'Balaesang', [Definition] = NULL, [SortOrder] = 578.00 WHERE [Code] = 'bls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zba', 'Balaibalan', NULL, 57.90) END +VALUES ('zba', 'Balaibalan', NULL, 579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balaibalan', [Definition] = NULL, [SortOrder] = 57.90 WHERE [Code] = 'zba' END +SET [Description] = 'Balaibalan', [Definition] = NULL, [SortOrder] = 579.00 WHERE [Code] = 'zba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blw', 'Balangao', NULL, 58.00) END +VALUES ('blw', 'Balangao', NULL, 580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balangao', [Definition] = NULL, [SortOrder] = 58.00 WHERE [Code] = 'blw' END +SET [Description] = 'Balangao', [Definition] = NULL, [SortOrder] = 580.00 WHERE [Code] = 'blw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sse', 'Balangingi', NULL, 58.10) END +VALUES ('sse', 'Balangingi', NULL, 581.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balangingi', [Definition] = NULL, [SortOrder] = 58.10 WHERE [Code] = 'sse' END +SET [Description] = 'Balangingi', [Definition] = NULL, [SortOrder] = 581.00 WHERE [Code] = 'sse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjt', 'Balanta-Ganja', NULL, 58.20) END +VALUES ('bjt', 'Balanta-Ganja', NULL, 582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balanta-Ganja', [Definition] = NULL, [SortOrder] = 58.20 WHERE [Code] = 'bjt' END +SET [Description] = 'Balanta-Ganja', [Definition] = NULL, [SortOrder] = 582.00 WHERE [Code] = 'bjt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ble') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ble', 'Balanta-Kentohe', NULL, 58.30) END +VALUES ('ble', 'Balanta-Kentohe', NULL, 583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balanta-Kentohe', [Definition] = NULL, [SortOrder] = 58.30 WHERE [Code] = 'ble' END +SET [Description] = 'Balanta-Kentohe', [Definition] = NULL, [SortOrder] = 583.00 WHERE [Code] = 'ble' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blz', 'Balantak', NULL, 58.40) END +VALUES ('blz', 'Balantak', NULL, 584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balantak', [Definition] = NULL, [SortOrder] = 58.40 WHERE [Code] = 'blz' END +SET [Description] = 'Balantak', [Definition] = NULL, [SortOrder] = 584.00 WHERE [Code] = 'blz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdn', 'Baldemu', NULL, 58.50) END +VALUES ('bdn', 'Baldemu', NULL, 585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baldemu', [Definition] = NULL, [SortOrder] = 58.50 WHERE [Code] = 'bdn' END +SET [Description] = 'Baldemu', [Definition] = NULL, [SortOrder] = 585.00 WHERE [Code] = 'bdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcp', 'Bali (Democratic Republic of Congo)', NULL, 58.60) END +VALUES ('bcp', 'Bali (Democratic Republic of Congo)', NULL, 586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bali (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 58.60 WHERE [Code] = 'bcp' END +SET [Description] = 'Bali (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 586.00 WHERE [Code] = 'bcp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcn', 'Bali (Nigeria)', NULL, 58.70) END +VALUES ('bcn', 'Bali (Nigeria)', NULL, 587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bali (Nigeria)', [Definition] = NULL, [SortOrder] = 58.70 WHERE [Code] = 'bcn' END +SET [Description] = 'Bali (Nigeria)', [Definition] = NULL, [SortOrder] = 587.00 WHERE [Code] = 'bcn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ban') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ban', 'Balinese', NULL, 58.80) END +VALUES ('ban', 'Balinese', NULL, 588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balinese', [Definition] = NULL, [SortOrder] = 58.80 WHERE [Code] = 'ban' END +SET [Description] = 'Balinese', [Definition] = NULL, [SortOrder] = 588.00 WHERE [Code] = 'ban' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhp', 'Balinese Malay', NULL, 58.90) END +VALUES ('mhp', 'Balinese Malay', NULL, 589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balinese Malay', [Definition] = NULL, [SortOrder] = 58.90 WHERE [Code] = 'mhp' END +SET [Description] = 'Balinese Malay', [Definition] = NULL, [SortOrder] = 589.00 WHERE [Code] = 'mhp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgx', 'Balkan Gagauz Turkish', NULL, 59.00) END +VALUES ('bgx', 'Balkan Gagauz Turkish', NULL, 590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balkan Gagauz Turkish', [Definition] = NULL, [SortOrder] = 59.00 WHERE [Code] = 'bgx' END +SET [Description] = 'Balkan Gagauz Turkish', [Definition] = NULL, [SortOrder] = 590.00 WHERE [Code] = 'bgx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmn', 'Balkan Romani', NULL, 59.10) END +VALUES ('rmn', 'Balkan Romani', NULL, 591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balkan Romani', [Definition] = NULL, [SortOrder] = 59.10 WHERE [Code] = 'rmn' END +SET [Description] = 'Balkan Romani', [Definition] = NULL, [SortOrder] = 591.00 WHERE [Code] = 'rmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqo', 'Balo', NULL, 59.20) END +VALUES ('bqo', 'Balo', NULL, 592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balo', [Definition] = NULL, [SortOrder] = 59.20 WHERE [Code] = 'bqo' END +SET [Description] = 'Balo', [Definition] = NULL, [SortOrder] = 592.00 WHERE [Code] = 'bqo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biz', 'Baloi', NULL, 59.30) END +VALUES ('biz', 'Baloi', NULL, 593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baloi', [Definition] = NULL, [SortOrder] = 59.30 WHERE [Code] = 'biz' END +SET [Description] = 'Baloi', [Definition] = NULL, [SortOrder] = 593.00 WHERE [Code] = 'biz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bft', 'Balti', NULL, 59.40) END +VALUES ('bft', 'Balti', NULL, 594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Balti', [Definition] = NULL, [SortOrder] = 59.40 WHERE [Code] = 'bft' END +SET [Description] = 'Balti', [Definition] = NULL, [SortOrder] = 594.00 WHERE [Code] = 'bft' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rml', 'Baltic Romani', NULL, 59.50) END +VALUES ('rml', 'Baltic Romani', NULL, 595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baltic Romani', [Definition] = NULL, [SortOrder] = 59.50 WHERE [Code] = 'rml' END +SET [Description] = 'Baltic Romani', [Definition] = NULL, [SortOrder] = 595.00 WHERE [Code] = 'rml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blq', 'Baluan-Pam', NULL, 59.60) END +VALUES ('blq', 'Baluan-Pam', NULL, 596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baluan-Pam', [Definition] = NULL, [SortOrder] = 59.60 WHERE [Code] = 'blq' END +SET [Description] = 'Baluan-Pam', [Definition] = NULL, [SortOrder] = 596.00 WHERE [Code] = 'blq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bal', 'Baluchi', NULL, 59.70) END +VALUES ('bal', 'Baluchi', NULL, 597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baluchi', [Definition] = NULL, [SortOrder] = 59.70 WHERE [Code] = 'bal' END +SET [Description] = 'Baluchi', [Definition] = NULL, [SortOrder] = 597.00 WHERE [Code] = 'bal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bog', 'Bamako Sign Language', NULL, 59.80) END +VALUES ('bog', 'Bamako Sign Language', NULL, 598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamako Sign Language', [Definition] = NULL, [SortOrder] = 59.80 WHERE [Code] = 'bog' END +SET [Description] = 'Bamako Sign Language', [Definition] = NULL, [SortOrder] = 598.00 WHERE [Code] = 'bog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbq', 'Bamali', NULL, 59.90) END +VALUES ('bbq', 'Bamali', NULL, 599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamali', [Definition] = NULL, [SortOrder] = 59.90 WHERE [Code] = 'bbq' END +SET [Description] = 'Bamali', [Definition] = NULL, [SortOrder] = 599.00 WHERE [Code] = 'bbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmo', 'Bambalang', NULL, 60.00) END +VALUES ('bmo', 'Bambalang', NULL, 600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambalang', [Definition] = NULL, [SortOrder] = 60.00 WHERE [Code] = 'bmo' END +SET [Description] = 'Bambalang', [Definition] = NULL, [SortOrder] = 600.00 WHERE [Code] = 'bmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptu', 'Bambam', NULL, 60.10) END +VALUES ('ptu', 'Bambam', NULL, 601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambam', [Definition] = NULL, [SortOrder] = 60.10 WHERE [Code] = 'ptu' END +SET [Description] = 'Bambam', [Definition] = NULL, [SortOrder] = 601.00 WHERE [Code] = 'ptu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bam', 'Bambara', NULL, 60.20) END +VALUES ('bam', 'Bambara', NULL, 602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambara', [Definition] = NULL, [SortOrder] = 60.20 WHERE [Code] = 'bam' END +SET [Description] = 'Bambara', [Definition] = NULL, [SortOrder] = 602.00 WHERE [Code] = 'bam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myf', 'Bambassi', NULL, 60.30) END +VALUES ('myf', 'Bambassi', NULL, 603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambassi', [Definition] = NULL, [SortOrder] = 60.30 WHERE [Code] = 'myf' END +SET [Description] = 'Bambassi', [Definition] = NULL, [SortOrder] = 603.00 WHERE [Code] = 'myf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'baw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baw', 'Bambili-Bambui', NULL, 60.40) END +VALUES ('baw', 'Bambili-Bambui', NULL, 604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bambili-Bambui', [Definition] = NULL, [SortOrder] = 60.40 WHERE [Code] = 'baw' END +SET [Description] = 'Bambili-Bambui', [Definition] = NULL, [SortOrder] = 604.00 WHERE [Code] = 'baw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bce', 'Bamenyam', NULL, 60.50) END +VALUES ('bce', 'Bamenyam', NULL, 605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamenyam', [Definition] = NULL, [SortOrder] = 60.50 WHERE [Code] = 'bce' END +SET [Description] = 'Bamenyam', [Definition] = NULL, [SortOrder] = 605.00 WHERE [Code] = 'bce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcf', 'Bamu', NULL, 60.60) END +VALUES ('bcf', 'Bamu', NULL, 606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamu', [Definition] = NULL, [SortOrder] = 60.60 WHERE [Code] = 'bcf' END +SET [Description] = 'Bamu', [Definition] = NULL, [SortOrder] = 606.00 WHERE [Code] = 'bcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqt', 'Bamukumbit', NULL, 60.70) END +VALUES ('bqt', 'Bamukumbit', NULL, 607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamukumbit', [Definition] = NULL, [SortOrder] = 60.70 WHERE [Code] = 'bqt' END +SET [Description] = 'Bamukumbit', [Definition] = NULL, [SortOrder] = 607.00 WHERE [Code] = 'bqt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bax', 'Bamun', NULL, 60.80) END +VALUES ('bax', 'Bamun', NULL, 608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamun', [Definition] = NULL, [SortOrder] = 60.80 WHERE [Code] = 'bax' END +SET [Description] = 'Bamun', [Definition] = NULL, [SortOrder] = 608.00 WHERE [Code] = 'bax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvm', 'Bamunka', NULL, 60.90) END +VALUES ('bvm', 'Bamunka', NULL, 609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamunka', [Definition] = NULL, [SortOrder] = 60.90 WHERE [Code] = 'bvm' END +SET [Description] = 'Bamunka', [Definition] = NULL, [SortOrder] = 609.00 WHERE [Code] = 'bvm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmg', 'Bamwe', NULL, 61.00) END +VALUES ('bmg', 'Bamwe', NULL, 610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bamwe', [Definition] = NULL, [SortOrder] = 61.00 WHERE [Code] = 'bmg' END +SET [Description] = 'Bamwe', [Definition] = NULL, [SortOrder] = 610.00 WHERE [Code] = 'bmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfk', 'Ban Khor Sign Language', NULL, 61.10) END +VALUES ('bfk', 'Ban Khor Sign Language', NULL, 611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ban Khor Sign Language', [Definition] = NULL, [SortOrder] = 61.10 WHERE [Code] = 'bfk' END +SET [Description] = 'Ban Khor Sign Language', [Definition] = NULL, [SortOrder] = 611.00 WHERE [Code] = 'bfk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcw', 'Bana', NULL, 61.20) END +VALUES ('bcw', 'Bana', NULL, 612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bana', [Definition] = NULL, [SortOrder] = 61.20 WHERE [Code] = 'bcw' END +SET [Description] = 'Bana', [Definition] = NULL, [SortOrder] = 612.00 WHERE [Code] = 'bcw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjx', 'Banao Itneg', NULL, 61.30) END +VALUES ('bjx', 'Banao Itneg', NULL, 613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banao Itneg', [Definition] = NULL, [SortOrder] = 61.30 WHERE [Code] = 'bjx' END +SET [Description] = 'Banao Itneg', [Definition] = NULL, [SortOrder] = 613.00 WHERE [Code] = 'bjx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byz', 'Banaro', NULL, 61.40) END +VALUES ('byz', 'Banaro', NULL, 614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banaro', [Definition] = NULL, [SortOrder] = 61.40 WHERE [Code] = 'byz' END +SET [Description] = 'Banaro', [Definition] = NULL, [SortOrder] = 614.00 WHERE [Code] = 'byz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnd', 'Banda (Indonesia)', NULL, 61.50) END +VALUES ('bnd', 'Banda (Indonesia)', NULL, 615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda (Indonesia)', [Definition] = NULL, [SortOrder] = 61.50 WHERE [Code] = 'bnd' END +SET [Description] = 'Banda (Indonesia)', [Definition] = NULL, [SortOrder] = 615.00 WHERE [Code] = 'bnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpq', 'Banda Malay', NULL, 61.60) END +VALUES ('bpq', 'Banda Malay', NULL, 616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda Malay', [Definition] = NULL, [SortOrder] = 61.60 WHERE [Code] = 'bpq' END +SET [Description] = 'Banda Malay', [Definition] = NULL, [SortOrder] = 616.00 WHERE [Code] = 'bpq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liy', 'Banda-Bambari', NULL, 61.70) END +VALUES ('liy', 'Banda-Bambari', NULL, 617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Bambari', [Definition] = NULL, [SortOrder] = 61.70 WHERE [Code] = 'liy' END +SET [Description] = 'Banda-Bambari', [Definition] = NULL, [SortOrder] = 617.00 WHERE [Code] = 'liy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpd', 'Banda-Banda', NULL, 61.80) END +VALUES ('bpd', 'Banda-Banda', NULL, 618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Banda', [Definition] = NULL, [SortOrder] = 61.80 WHERE [Code] = 'bpd' END +SET [Description] = 'Banda-Banda', [Definition] = NULL, [SortOrder] = 618.00 WHERE [Code] = 'bpd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqk', 'Banda-Mbrès', NULL, 61.90) END +VALUES ('bqk', 'Banda-Mbrès', NULL, 619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Mbrès', [Definition] = NULL, [SortOrder] = 61.90 WHERE [Code] = 'bqk' END +SET [Description] = 'Banda-Mbrès', [Definition] = NULL, [SortOrder] = 619.00 WHERE [Code] = 'bqk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfl', 'Banda-Ndélé', NULL, 62.00) END +VALUES ('bfl', 'Banda-Ndélé', NULL, 620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Ndélé', [Definition] = NULL, [SortOrder] = 62.00 WHERE [Code] = 'bfl' END +SET [Description] = 'Banda-Ndélé', [Definition] = NULL, [SortOrder] = 620.00 WHERE [Code] = 'bfl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaj', 'Banda-Yangere', NULL, 62.10) END +VALUES ('yaj', 'Banda-Yangere', NULL, 621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banda-Yangere', [Definition] = NULL, [SortOrder] = 62.10 WHERE [Code] = 'yaj' END +SET [Description] = 'Banda-Yangere', [Definition] = NULL, [SortOrder] = 621.00 WHERE [Code] = 'yaj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bza', 'Bandi', NULL, 62.20) END +VALUES ('bza', 'Bandi', NULL, 622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bandi', [Definition] = NULL, [SortOrder] = 62.20 WHERE [Code] = 'bza' END +SET [Description] = 'Bandi', [Definition] = NULL, [SortOrder] = 622.00 WHERE [Code] = 'bza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqj', 'Bandial', NULL, 62.30) END +VALUES ('bqj', 'Bandial', NULL, 623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bandial', [Definition] = NULL, [SortOrder] = 62.30 WHERE [Code] = 'bqj' END +SET [Description] = 'Bandial', [Definition] = NULL, [SortOrder] = 623.00 WHERE [Code] = 'bqj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdy', 'Bandjalang', NULL, 62.40) END +VALUES ('bdy', 'Bandjalang', NULL, 624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bandjalang', [Definition] = NULL, [SortOrder] = 62.40 WHERE [Code] = 'bdy' END +SET [Description] = 'Bandjalang', [Definition] = NULL, [SortOrder] = 624.00 WHERE [Code] = 'bdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxg', 'Bangala', NULL, 62.50) END +VALUES ('bxg', 'Bangala', NULL, 625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangala', [Definition] = NULL, [SortOrder] = 62.50 WHERE [Code] = 'bxg' END +SET [Description] = 'Bangala', [Definition] = NULL, [SortOrder] = 625.00 WHERE [Code] = 'bxg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgf', 'Bangandu', NULL, 62.60) END +VALUES ('bgf', 'Bangandu', NULL, 626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangandu', [Definition] = NULL, [SortOrder] = 62.60 WHERE [Code] = 'bgf' END +SET [Description] = 'Bangandu', [Definition] = NULL, [SortOrder] = 626.00 WHERE [Code] = 'bgf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbe', 'Bangba', NULL, 62.70) END +VALUES ('bbe', 'Bangba', NULL, 627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangba', [Definition] = NULL, [SortOrder] = 62.70 WHERE [Code] = 'bbe' END +SET [Description] = 'Bangba', [Definition] = NULL, [SortOrder] = 627.00 WHERE [Code] = 'bbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgz', 'Banggai', NULL, 62.80) END +VALUES ('bgz', 'Banggai', NULL, 628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banggai', [Definition] = NULL, [SortOrder] = 62.80 WHERE [Code] = 'bgz' END +SET [Description] = 'Banggai', [Definition] = NULL, [SortOrder] = 628.00 WHERE [Code] = 'bgz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjb', 'Banggarla', NULL, 62.90) END +VALUES ('bjb', 'Banggarla', NULL, 629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banggarla', [Definition] = NULL, [SortOrder] = 62.90 WHERE [Code] = 'bjb' END +SET [Description] = 'Banggarla', [Definition] = NULL, [SortOrder] = 629.00 WHERE [Code] = 'bjb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bni', 'Bangi', NULL, 63.00) END +VALUES ('bni', 'Bangi', NULL, 630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangi', [Definition] = NULL, [SortOrder] = 63.00 WHERE [Code] = 'bni' END +SET [Description] = 'Bangi', [Definition] = NULL, [SortOrder] = 630.00 WHERE [Code] = 'bni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dba', 'Bangime', NULL, 63.10) END +VALUES ('dba', 'Bangime', NULL, 631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangime', [Definition] = NULL, [SortOrder] = 63.10 WHERE [Code] = 'dba' END +SET [Description] = 'Bangime', [Definition] = NULL, [SortOrder] = 631.00 WHERE [Code] = 'dba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfb', 'Bangka', NULL, 63.20) END +VALUES ('mfb', 'Bangka', NULL, 632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangka', [Definition] = NULL, [SortOrder] = 63.20 WHERE [Code] = 'mfb' END +SET [Description] = 'Bangka', [Definition] = NULL, [SortOrder] = 632.00 WHERE [Code] = 'mfb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgj', 'Bangolan', NULL, 63.30) END +VALUES ('bgj', 'Bangolan', NULL, 633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangolan', [Definition] = NULL, [SortOrder] = 63.30 WHERE [Code] = 'bgj' END +SET [Description] = 'Bangolan', [Definition] = NULL, [SortOrder] = 633.00 WHERE [Code] = 'bgj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnx', 'Bangubangu', NULL, 63.40) END +VALUES ('bnx', 'Bangubangu', NULL, 634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangubangu', [Definition] = NULL, [SortOrder] = 63.40 WHERE [Code] = 'bnx' END +SET [Description] = 'Bangubangu', [Definition] = NULL, [SortOrder] = 634.00 WHERE [Code] = 'bnx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsj', 'Bangwinji', NULL, 63.50) END +VALUES ('bsj', 'Bangwinji', NULL, 635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bangwinji', [Definition] = NULL, [SortOrder] = 63.50 WHERE [Code] = 'bsj' END +SET [Description] = 'Bangwinji', [Definition] = NULL, [SortOrder] = 635.00 WHERE [Code] = 'bsj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvv', 'Baniva', NULL, 63.60) END +VALUES ('bvv', 'Baniva', NULL, 636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baniva', [Definition] = NULL, [SortOrder] = 63.60 WHERE [Code] = 'bvv' END +SET [Description] = 'Baniva', [Definition] = NULL, [SortOrder] = 636.00 WHERE [Code] = 'bvv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwi', 'Baniwa', NULL, 63.70) END +VALUES ('bwi', 'Baniwa', NULL, 637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baniwa', [Definition] = NULL, [SortOrder] = 63.70 WHERE [Code] = 'bwi' END +SET [Description] = 'Baniwa', [Definition] = NULL, [SortOrder] = 637.00 WHERE [Code] = 'bwi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjn', 'Banjar', NULL, 63.80) END +VALUES ('bjn', 'Banjar', NULL, 638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banjar', [Definition] = NULL, [SortOrder] = 63.80 WHERE [Code] = 'bjn' END +SET [Description] = 'Banjar', [Definition] = NULL, [SortOrder] = 638.00 WHERE [Code] = 'bjn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxw', 'Bankagooma', NULL, 63.90) END +VALUES ('bxw', 'Bankagooma', NULL, 639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bankagooma', [Definition] = NULL, [SortOrder] = 63.90 WHERE [Code] = 'bxw' END +SET [Description] = 'Bankagooma', [Definition] = NULL, [SortOrder] = 639.00 WHERE [Code] = 'bxw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jjr', 'Bankal', NULL, 64.00) END +VALUES ('jjr', 'Bankal', NULL, 640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bankal', [Definition] = NULL, [SortOrder] = 64.00 WHERE [Code] = 'jjr' END +SET [Description] = 'Bankal', [Definition] = NULL, [SortOrder] = 640.00 WHERE [Code] = 'jjr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbw', 'Bankan Tey Dogon', NULL, 64.10) END +VALUES ('dbw', 'Bankan Tey Dogon', NULL, 641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bankan Tey Dogon', [Definition] = NULL, [SortOrder] = 64.10 WHERE [Code] = 'dbw' END +SET [Description] = 'Bankan Tey Dogon', [Definition] = NULL, [SortOrder] = 641.00 WHERE [Code] = 'dbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abb', 'Bankon', NULL, 64.20) END +VALUES ('abb', 'Bankon', NULL, 642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bankon', [Definition] = NULL, [SortOrder] = 64.20 WHERE [Code] = 'abb' END +SET [Description] = 'Bankon', [Definition] = NULL, [SortOrder] = 642.00 WHERE [Code] = 'abb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcm', 'Bannoni', NULL, 64.30) END +VALUES ('bcm', 'Bannoni', NULL, 643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bannoni', [Definition] = NULL, [SortOrder] = 64.30 WHERE [Code] = 'bcm' END +SET [Description] = 'Bannoni', [Definition] = NULL, [SortOrder] = 643.00 WHERE [Code] = 'bcm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bap', 'Bantawa', NULL, 64.40) END +VALUES ('bap', 'Bantawa', NULL, 644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bantawa', [Definition] = NULL, [SortOrder] = 64.40 WHERE [Code] = 'bap' END +SET [Description] = 'Bantawa', [Definition] = NULL, [SortOrder] = 644.00 WHERE [Code] = 'bap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfx', 'Bantayanon', NULL, 64.50) END +VALUES ('bfx', 'Bantayanon', NULL, 645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bantayanon', [Definition] = NULL, [SortOrder] = 64.50 WHERE [Code] = 'bfx' END +SET [Description] = 'Bantayanon', [Definition] = NULL, [SortOrder] = 645.00 WHERE [Code] = 'bfx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnq', 'Bantik', NULL, 64.60) END +VALUES ('bnq', 'Bantik', NULL, 646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bantik', [Definition] = NULL, [SortOrder] = 64.60 WHERE [Code] = 'bnq' END +SET [Description] = 'Bantik', [Definition] = NULL, [SortOrder] = 646.00 WHERE [Code] = 'bnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bno', 'Bantoanon', NULL, 64.70) END +VALUES ('bno', 'Bantoanon', NULL, 647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bantoanon', [Definition] = NULL, [SortOrder] = 64.70 WHERE [Code] = 'bno' END +SET [Description] = 'Bantoanon', [Definition] = NULL, [SortOrder] = 647.00 WHERE [Code] = 'bno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnw', 'Banyjima', NULL, 64.80) END +VALUES ('pnw', 'Banyjima', NULL, 648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Banyjima', [Definition] = NULL, [SortOrder] = 64.80 WHERE [Code] = 'pnw' END +SET [Description] = 'Banyjima', [Definition] = NULL, [SortOrder] = 648.00 WHERE [Code] = 'pnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bci', 'Baoulé', NULL, 64.90) END +VALUES ('bci', 'Baoulé', NULL, 649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baoulé', [Definition] = NULL, [SortOrder] = 64.90 WHERE [Code] = 'bci' END +SET [Description] = 'Baoulé', [Definition] = NULL, [SortOrder] = 649.00 WHERE [Code] = 'bci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhr', 'Bara Malagasy', NULL, 65.00) END +VALUES ('bhr', 'Bara Malagasy', NULL, 650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bara Malagasy', [Definition] = NULL, [SortOrder] = 65.00 WHERE [Code] = 'bhr' END +SET [Description] = 'Bara Malagasy', [Definition] = NULL, [SortOrder] = 650.00 WHERE [Code] = 'bhr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brd', 'Baraamu', NULL, 65.10) END +VALUES ('brd', 'Baraamu', NULL, 651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baraamu', [Definition] = NULL, [SortOrder] = 65.10 WHERE [Code] = 'brd' END +SET [Description] = 'Baraamu', [Definition] = NULL, [SortOrder] = 651.00 WHERE [Code] = 'brd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rbp', 'Barababaraba', NULL, 65.20) END +VALUES ('rbp', 'Barababaraba', NULL, 652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barababaraba', [Definition] = NULL, [SortOrder] = 65.20 WHERE [Code] = 'rbp' END +SET [Description] = 'Barababaraba', [Definition] = NULL, [SortOrder] = 652.00 WHERE [Code] = 'rbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbb', 'Barai', NULL, 65.30) END +VALUES ('bbb', 'Barai', NULL, 653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barai', [Definition] = NULL, [SortOrder] = 65.30 WHERE [Code] = 'bbb' END +SET [Description] = 'Barai', [Definition] = NULL, [SortOrder] = 653.00 WHERE [Code] = 'bbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'baj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baj', 'Barakai', NULL, 65.40) END +VALUES ('baj', 'Barakai', NULL, 654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barakai', [Definition] = NULL, [SortOrder] = 65.40 WHERE [Code] = 'baj' END +SET [Description] = 'Barakai', [Definition] = NULL, [SortOrder] = 654.00 WHERE [Code] = 'baj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kys', 'Baram Kayan', NULL, 65.50) END +VALUES ('kys', 'Baram Kayan', NULL, 655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baram Kayan', [Definition] = NULL, [SortOrder] = 65.50 WHERE [Code] = 'kys' END +SET [Description] = 'Baram Kayan', [Definition] = NULL, [SortOrder] = 655.00 WHERE [Code] = 'kys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbg', 'Barama', NULL, 65.60) END +VALUES ('bbg', 'Barama', NULL, 656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barama', [Definition] = NULL, [SortOrder] = 65.60 WHERE [Code] = 'bbg' END +SET [Description] = 'Barama', [Definition] = NULL, [SortOrder] = 656.00 WHERE [Code] = 'bbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brm', 'Barambu', NULL, 65.70) END +VALUES ('brm', 'Barambu', NULL, 657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barambu', [Definition] = NULL, [SortOrder] = 65.70 WHERE [Code] = 'brm' END +SET [Description] = 'Barambu', [Definition] = NULL, [SortOrder] = 657.00 WHERE [Code] = 'brm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmz', 'Baramu', NULL, 65.80) END +VALUES ('bmz', 'Baramu', NULL, 658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baramu', [Definition] = NULL, [SortOrder] = 65.80 WHERE [Code] = 'bmz' END +SET [Description] = 'Baramu', [Definition] = NULL, [SortOrder] = 658.00 WHERE [Code] = 'bmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brp', 'Barapasi', NULL, 65.90) END +VALUES ('brp', 'Barapasi', NULL, 659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barapasi', [Definition] = NULL, [SortOrder] = 65.90 WHERE [Code] = 'brp' END +SET [Description] = 'Barapasi', [Definition] = NULL, [SortOrder] = 659.00 WHERE [Code] = 'brp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brs', 'Baras', NULL, 66.00) END +VALUES ('brs', 'Baras', NULL, 660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baras', [Definition] = NULL, [SortOrder] = 66.00 WHERE [Code] = 'brs' END +SET [Description] = 'Baras', [Definition] = NULL, [SortOrder] = 660.00 WHERE [Code] = 'brs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsn', 'Barasana-Eduria', NULL, 66.10) END +VALUES ('bsn', 'Barasana-Eduria', NULL, 661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barasana-Eduria', [Definition] = NULL, [SortOrder] = 66.10 WHERE [Code] = 'bsn' END +SET [Description] = 'Barasana-Eduria', [Definition] = NULL, [SortOrder] = 661.00 WHERE [Code] = 'bsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmb', 'Barbaram', NULL, 66.20) END +VALUES ('vmb', 'Barbaram', NULL, 662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barbaram', [Definition] = NULL, [SortOrder] = 66.20 WHERE [Code] = 'vmb' END +SET [Description] = 'Barbaram', [Definition] = NULL, [SortOrder] = 662.00 WHERE [Code] = 'vmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boi', 'Barbareño', NULL, 66.30) END +VALUES ('boi', 'Barbareño', NULL, 663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barbareño', [Definition] = NULL, [SortOrder] = 66.30 WHERE [Code] = 'boi' END +SET [Description] = 'Barbareño', [Definition] = NULL, [SortOrder] = 663.00 WHERE [Code] = 'boi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gry', 'Barclayville Grebo', NULL, 66.40) END +VALUES ('gry', 'Barclayville Grebo', NULL, 664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barclayville Grebo', [Definition] = NULL, [SortOrder] = 66.40 WHERE [Code] = 'gry' END +SET [Description] = 'Barclayville Grebo', [Definition] = NULL, [SortOrder] = 664.00 WHERE [Code] = 'gry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcj', 'Bardi', NULL, 66.50) END +VALUES ('bcj', 'Bardi', NULL, 665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bardi', [Definition] = NULL, [SortOrder] = 66.50 WHERE [Code] = 'bcj' END +SET [Description] = 'Bardi', [Definition] = NULL, [SortOrder] = 665.00 WHERE [Code] = 'bcj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bae', 'Baré', NULL, 66.60) END +VALUES ('bae', 'Baré', NULL, 666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baré', [Definition] = NULL, [SortOrder] = 66.60 WHERE [Code] = 'bae' END +SET [Description] = 'Baré', [Definition] = NULL, [SortOrder] = 666.00 WHERE [Code] = 'bae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bva', 'Barein', NULL, 66.70) END +VALUES ('bva', 'Barein', NULL, 667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barein', [Definition] = NULL, [SortOrder] = 66.70 WHERE [Code] = 'bva' END +SET [Description] = 'Barein', [Definition] = NULL, [SortOrder] = 667.00 WHERE [Code] = 'bva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlp', 'Bargam', NULL, 66.80) END +VALUES ('mlp', 'Bargam', NULL, 668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bargam', [Definition] = NULL, [SortOrder] = 66.80 WHERE [Code] = 'mlp' END +SET [Description] = 'Bargam', [Definition] = NULL, [SortOrder] = 668.00 WHERE [Code] = 'mlp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfa', 'Bari', NULL, 66.90) END +VALUES ('bfa', 'Bari', NULL, 669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bari', [Definition] = NULL, [SortOrder] = 66.90 WHERE [Code] = 'bfa' END +SET [Description] = 'Bari', [Definition] = NULL, [SortOrder] = 669.00 WHERE [Code] = 'bfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mot', 'Barí', NULL, 67.00) END +VALUES ('mot', 'Barí', NULL, 670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barí', [Definition] = NULL, [SortOrder] = 67.00 WHERE [Code] = 'mot' END +SET [Description] = 'Barí', [Definition] = NULL, [SortOrder] = 670.00 WHERE [Code] = 'mot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bch', 'Bariai', NULL, 67.10) END +VALUES ('bch', 'Bariai', NULL, 671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bariai', [Definition] = NULL, [SortOrder] = 67.10 WHERE [Code] = 'bch' END +SET [Description] = 'Bariai', [Definition] = NULL, [SortOrder] = 671.00 WHERE [Code] = 'bch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjc', 'Bariji', NULL, 67.20) END +VALUES ('bjc', 'Bariji', NULL, 672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bariji', [Definition] = NULL, [SortOrder] = 67.20 WHERE [Code] = 'bjc' END +SET [Description] = 'Bariji', [Definition] = NULL, [SortOrder] = 672.00 WHERE [Code] = 'bjc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxo', 'Barikanchi', NULL, 67.30) END +VALUES ('bxo', 'Barikanchi', NULL, 673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barikanchi', [Definition] = NULL, [SortOrder] = 67.30 WHERE [Code] = 'bxo' END +SET [Description] = 'Barikanchi', [Definition] = NULL, [SortOrder] = 673.00 WHERE [Code] = 'bxo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbk', 'Barikewa', NULL, 67.40) END +VALUES ('jbk', 'Barikewa', NULL, 674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barikewa', [Definition] = NULL, [SortOrder] = 67.40 WHERE [Code] = 'jbk' END +SET [Description] = 'Barikewa', [Definition] = NULL, [SortOrder] = 674.00 WHERE [Code] = 'jbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjk', 'Barok', NULL, 67.50) END +VALUES ('bjk', 'Barok', NULL, 675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barok', [Definition] = NULL, [SortOrder] = 67.50 WHERE [Code] = 'bjk' END +SET [Description] = 'Barok', [Definition] = NULL, [SortOrder] = 675.00 WHERE [Code] = 'bjk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbi', 'Barombi', NULL, 67.60) END +VALUES ('bbi', 'Barombi', NULL, 676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barombi', [Definition] = NULL, [SortOrder] = 67.60 WHERE [Code] = 'bbi' END +SET [Description] = 'Barombi', [Definition] = NULL, [SortOrder] = 676.00 WHERE [Code] = 'bbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbn', 'Barro Negro Tunebo', NULL, 67.70) END +VALUES ('tbn', 'Barro Negro Tunebo', NULL, 677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barro Negro Tunebo', [Definition] = NULL, [SortOrder] = 67.70 WHERE [Code] = 'tbn' END +SET [Description] = 'Barro Negro Tunebo', [Definition] = NULL, [SortOrder] = 677.00 WHERE [Code] = 'tbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpt', 'Barrow Point', NULL, 67.80) END +VALUES ('bpt', 'Barrow Point', NULL, 678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barrow Point', [Definition] = NULL, [SortOrder] = 67.80 WHERE [Code] = 'bpt' END +SET [Description] = 'Barrow Point', [Definition] = NULL, [SortOrder] = 678.00 WHERE [Code] = 'bpt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjz', 'Baruga', NULL, 67.90) END +VALUES ('bjz', 'Baruga', NULL, 679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baruga', [Definition] = NULL, [SortOrder] = 67.90 WHERE [Code] = 'bjz' END +SET [Description] = 'Baruga', [Definition] = NULL, [SortOrder] = 679.00 WHERE [Code] = 'bjz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byr', 'Baruya', NULL, 68.00) END +VALUES ('byr', 'Baruya', NULL, 680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baruya', [Definition] = NULL, [SortOrder] = 68.00 WHERE [Code] = 'byr' END +SET [Description] = 'Baruya', [Definition] = NULL, [SortOrder] = 680.00 WHERE [Code] = 'byr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwg', 'Barwe', NULL, 68.10) END +VALUES ('bwg', 'Barwe', NULL, 681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barwe', [Definition] = NULL, [SortOrder] = 68.10 WHERE [Code] = 'bwg' END +SET [Description] = 'Barwe', [Definition] = NULL, [SortOrder] = 681.00 WHERE [Code] = 'bwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjf', 'Barzani Jewish Neo-Aramaic', NULL, 68.20) END +VALUES ('bjf', 'Barzani Jewish Neo-Aramaic', NULL, 682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Barzani Jewish Neo-Aramaic', [Definition] = NULL, [SortOrder] = 68.20 WHERE [Code] = 'bjf' END +SET [Description] = 'Barzani Jewish Neo-Aramaic', [Definition] = NULL, [SortOrder] = 682.00 WHERE [Code] = 'bjf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bas', 'Basa (Cameroon)', NULL, 68.30) END +VALUES ('bas', 'Basa (Cameroon)', NULL, 683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basa (Cameroon)', [Definition] = NULL, [SortOrder] = 68.30 WHERE [Code] = 'bas' END +SET [Description] = 'Basa (Cameroon)', [Definition] = NULL, [SortOrder] = 683.00 WHERE [Code] = 'bas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzw', 'Basa (Nigeria)', NULL, 68.40) END +VALUES ('bzw', 'Basa (Nigeria)', NULL, 684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basa (Nigeria)', [Definition] = NULL, [SortOrder] = 68.40 WHERE [Code] = 'bzw' END +SET [Description] = 'Basa (Nigeria)', [Definition] = NULL, [SortOrder] = 684.00 WHERE [Code] = 'bzw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsl', 'Basa-Gumna', NULL, 68.50) END +VALUES ('bsl', 'Basa-Gumna', NULL, 685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basa-Gumna', [Definition] = NULL, [SortOrder] = 68.50 WHERE [Code] = 'bsl' END +SET [Description] = 'Basa-Gumna', [Definition] = NULL, [SortOrder] = 685.00 WHERE [Code] = 'bsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buj', 'Basa-Gurmana', NULL, 68.60) END +VALUES ('buj', 'Basa-Gurmana', NULL, 686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basa-Gurmana', [Definition] = NULL, [SortOrder] = 68.60 WHERE [Code] = 'buj' END +SET [Description] = 'Basa-Gurmana', [Definition] = NULL, [SortOrder] = 686.00 WHERE [Code] = 'buj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdb', 'Basap', NULL, 68.70) END +VALUES ('bdb', 'Basap', NULL, 687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basap', [Definition] = NULL, [SortOrder] = 68.70 WHERE [Code] = 'bdb' END +SET [Description] = 'Basap', [Definition] = NULL, [SortOrder] = 687.00 WHERE [Code] = 'bdb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byq', 'Basay', NULL, 68.80) END +VALUES ('byq', 'Basay', NULL, 688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basay', [Definition] = NULL, [SortOrder] = 68.80 WHERE [Code] = 'byq' END +SET [Description] = 'Basay', [Definition] = NULL, [SortOrder] = 688.00 WHERE [Code] = 'byq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsg', 'Bashkardi', NULL, 68.90) END +VALUES ('bsg', 'Bashkardi', NULL, 689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bashkardi', [Definition] = NULL, [SortOrder] = 68.90 WHERE [Code] = 'bsg' END +SET [Description] = 'Bashkardi', [Definition] = NULL, [SortOrder] = 689.00 WHERE [Code] = 'bsg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bak', 'Bashkir', NULL, 69.00) END +VALUES ('bak', 'Bashkir', NULL, 690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bashkir', [Definition] = NULL, [SortOrder] = 69.00 WHERE [Code] = 'bak' END +SET [Description] = 'Bashkir', [Definition] = NULL, [SortOrder] = 690.00 WHERE [Code] = 'bak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bst', 'Basketo', NULL, 69.10) END +VALUES ('bst', 'Basketo', NULL, 691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basketo', [Definition] = NULL, [SortOrder] = 69.10 WHERE [Code] = 'bst' END +SET [Description] = 'Basketo', [Definition] = NULL, [SortOrder] = 691.00 WHERE [Code] = 'bst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eus', 'Basque', NULL, 69.20) END +VALUES ('eus', 'Basque', NULL, 692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Basque', [Definition] = NULL, [SortOrder] = 69.20 WHERE [Code] = 'eus' END +SET [Description] = 'Basque', [Definition] = NULL, [SortOrder] = 692.00 WHERE [Code] = 'eus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsq', 'Bassa', NULL, 69.30) END +VALUES ('bsq', 'Bassa', NULL, 693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bassa', [Definition] = NULL, [SortOrder] = 69.30 WHERE [Code] = 'bsq' END +SET [Description] = 'Bassa', [Definition] = NULL, [SortOrder] = 693.00 WHERE [Code] = 'bsq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsr', 'Bassa-Kontagora', NULL, 69.40) END +VALUES ('bsr', 'Bassa-Kontagora', NULL, 694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bassa-Kontagora', [Definition] = NULL, [SortOrder] = 69.40 WHERE [Code] = 'bsr' END +SET [Description] = 'Bassa-Kontagora', [Definition] = NULL, [SortOrder] = 694.00 WHERE [Code] = 'bsr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsc', 'Bassari', NULL, 69.50) END +VALUES ('bsc', 'Bassari', NULL, 695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bassari', [Definition] = NULL, [SortOrder] = 69.50 WHERE [Code] = 'bsc' END +SET [Description] = 'Bassari', [Definition] = NULL, [SortOrder] = 695.00 WHERE [Code] = 'bsc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsi', 'Bassossi', NULL, 69.60) END +VALUES ('bsi', 'Bassossi', NULL, 696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bassossi', [Definition] = NULL, [SortOrder] = 69.60 WHERE [Code] = 'bsi' END +SET [Description] = 'Bassossi', [Definition] = NULL, [SortOrder] = 696.00 WHERE [Code] = 'bsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bta', 'Bata', NULL, 69.70) END +VALUES ('bta', 'Bata', NULL, 697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bata', [Definition] = NULL, [SortOrder] = 69.70 WHERE [Code] = 'bta' END +SET [Description] = 'Bata', [Definition] = NULL, [SortOrder] = 697.00 WHERE [Code] = 'bta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifb', 'Batad Ifugao', NULL, 69.80) END +VALUES ('ifb', 'Batad Ifugao', NULL, 698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batad Ifugao', [Definition] = NULL, [SortOrder] = 69.80 WHERE [Code] = 'ifb' END +SET [Description] = 'Batad Ifugao', [Definition] = NULL, [SortOrder] = 698.00 WHERE [Code] = 'ifb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bya', 'Batak', NULL, 69.90) END +VALUES ('bya', 'Batak', NULL, 699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak', [Definition] = NULL, [SortOrder] = 69.90 WHERE [Code] = 'bya' END +SET [Description] = 'Batak', [Definition] = NULL, [SortOrder] = 699.00 WHERE [Code] = 'bya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btz', 'Batak Alas-Kluet', NULL, 70.00) END +VALUES ('btz', 'Batak Alas-Kluet', NULL, 700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Alas-Kluet', [Definition] = NULL, [SortOrder] = 70.00 WHERE [Code] = 'btz' END +SET [Description] = 'Batak Alas-Kluet', [Definition] = NULL, [SortOrder] = 700.00 WHERE [Code] = 'btz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akb', 'Batak Angkola', NULL, 70.10) END +VALUES ('akb', 'Batak Angkola', NULL, 701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Angkola', [Definition] = NULL, [SortOrder] = 70.10 WHERE [Code] = 'akb' END +SET [Description] = 'Batak Angkola', [Definition] = NULL, [SortOrder] = 701.00 WHERE [Code] = 'akb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btd', 'Batak Dairi', NULL, 70.20) END +VALUES ('btd', 'Batak Dairi', NULL, 702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Dairi', [Definition] = NULL, [SortOrder] = 70.20 WHERE [Code] = 'btd' END +SET [Description] = 'Batak Dairi', [Definition] = NULL, [SortOrder] = 702.00 WHERE [Code] = 'btd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btx', 'Batak Karo', NULL, 70.30) END +VALUES ('btx', 'Batak Karo', NULL, 703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Karo', [Definition] = NULL, [SortOrder] = 70.30 WHERE [Code] = 'btx' END +SET [Description] = 'Batak Karo', [Definition] = NULL, [SortOrder] = 703.00 WHERE [Code] = 'btx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btm', 'Batak Mandailing', NULL, 70.40) END +VALUES ('btm', 'Batak Mandailing', NULL, 704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Mandailing', [Definition] = NULL, [SortOrder] = 70.40 WHERE [Code] = 'btm' END +SET [Description] = 'Batak Mandailing', [Definition] = NULL, [SortOrder] = 704.00 WHERE [Code] = 'btm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bts', 'Batak Simalungun', NULL, 70.50) END +VALUES ('bts', 'Batak Simalungun', NULL, 705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Simalungun', [Definition] = NULL, [SortOrder] = 70.50 WHERE [Code] = 'bts' END +SET [Description] = 'Batak Simalungun', [Definition] = NULL, [SortOrder] = 705.00 WHERE [Code] = 'bts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbc', 'Batak Toba', NULL, 70.60) END +VALUES ('bbc', 'Batak Toba', NULL, 706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batak Toba', [Definition] = NULL, [SortOrder] = 70.60 WHERE [Code] = 'bbc' END +SET [Description] = 'Batak Toba', [Definition] = NULL, [SortOrder] = 706.00 WHERE [Code] = 'bbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnm', 'Batanga', NULL, 70.70) END +VALUES ('bnm', 'Batanga', NULL, 707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batanga', [Definition] = NULL, [SortOrder] = 70.70 WHERE [Code] = 'bnm' END +SET [Description] = 'Batanga', [Definition] = NULL, [SortOrder] = 707.00 WHERE [Code] = 'bnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btq', 'Batek', NULL, 70.80) END +VALUES ('btq', 'Batek', NULL, 708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batek', [Definition] = NULL, [SortOrder] = 70.80 WHERE [Code] = 'btq' END +SET [Description] = 'Batek', [Definition] = NULL, [SortOrder] = 708.00 WHERE [Code] = 'btq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btv', 'Bateri', NULL, 70.90) END +VALUES ('btv', 'Bateri', NULL, 709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bateri', [Definition] = NULL, [SortOrder] = 70.90 WHERE [Code] = 'btv' END +SET [Description] = 'Bateri', [Definition] = NULL, [SortOrder] = 709.00 WHERE [Code] = 'btv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhm', 'Bathari', NULL, 71.00) END +VALUES ('bhm', 'Bathari', NULL, 710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bathari', [Definition] = NULL, [SortOrder] = 71.00 WHERE [Code] = 'bhm' END +SET [Description] = 'Bathari', [Definition] = NULL, [SortOrder] = 710.00 WHERE [Code] = 'bhm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btc', 'Bati (Cameroon)', NULL, 71.10) END +VALUES ('btc', 'Bati (Cameroon)', NULL, 711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bati (Cameroon)', [Definition] = NULL, [SortOrder] = 71.10 WHERE [Code] = 'btc' END +SET [Description] = 'Bati (Cameroon)', [Definition] = NULL, [SortOrder] = 711.00 WHERE [Code] = 'btc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvt', 'Bati (Indonesia)', NULL, 71.20) END +VALUES ('bvt', 'Bati (Indonesia)', NULL, 712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bati (Indonesia)', [Definition] = NULL, [SortOrder] = 71.20 WHERE [Code] = 'bvt' END +SET [Description] = 'Bati (Indonesia)', [Definition] = NULL, [SortOrder] = 712.00 WHERE [Code] = 'bvt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xby', 'Batjala', NULL, 71.30) END +VALUES ('xby', 'Batjala', NULL, 713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batjala', [Definition] = NULL, [SortOrder] = 71.30 WHERE [Code] = 'xby' END +SET [Description] = 'Batjala', [Definition] = NULL, [SortOrder] = 713.00 WHERE [Code] = 'xby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbl', 'Bats', NULL, 71.40) END +VALUES ('bbl', 'Bats', NULL, 714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bats', [Definition] = NULL, [SortOrder] = 71.40 WHERE [Code] = 'bbl' END +SET [Description] = 'Bats', [Definition] = NULL, [SortOrder] = 714.00 WHERE [Code] = 'bbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btu', 'Batu', NULL, 71.50) END +VALUES ('btu', 'Batu', NULL, 715.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batu', [Definition] = NULL, [SortOrder] = 71.50 WHERE [Code] = 'btu' END +SET [Description] = 'Batu', [Definition] = NULL, [SortOrder] = 715.00 WHERE [Code] = 'btu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbt', 'Batui', NULL, 71.60) END +VALUES ('zbt', 'Batui', NULL, 716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batui', [Definition] = NULL, [SortOrder] = 71.60 WHERE [Code] = 'zbt' END +SET [Description] = 'Batui', [Definition] = NULL, [SortOrder] = 716.00 WHERE [Code] = 'zbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bay', 'Batuley', NULL, 71.70) END +VALUES ('bay', 'Batuley', NULL, 717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Batuley', [Definition] = NULL, [SortOrder] = 71.70 WHERE [Code] = 'bay' END +SET [Description] = 'Batuley', [Definition] = NULL, [SortOrder] = 717.00 WHERE [Code] = 'bay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbd', 'Bau', NULL, 71.80) END +VALUES ('bbd', 'Bau', NULL, 718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bau', [Definition] = NULL, [SortOrder] = 71.80 WHERE [Code] = 'bbd' END +SET [Description] = 'Bau', [Definition] = NULL, [SortOrder] = 718.00 WHERE [Code] = 'bbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sne', 'Bau Bidayuh', NULL, 71.90) END +VALUES ('sne', 'Bau Bidayuh', NULL, 719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bau Bidayuh', [Definition] = NULL, [SortOrder] = 71.90 WHERE [Code] = 'sne' END +SET [Description] = 'Bau Bidayuh', [Definition] = NULL, [SortOrder] = 719.00 WHERE [Code] = 'sne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsf', 'Bauchi', NULL, 72.00) END +VALUES ('bsf', 'Bauchi', NULL, 720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauchi', [Definition] = NULL, [SortOrder] = 72.00 WHERE [Code] = 'bsf' END +SET [Description] = 'Bauchi', [Definition] = NULL, [SortOrder] = 720.00 WHERE [Code] = 'bsf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpe', 'Bauni', NULL, 72.10) END +VALUES ('bpe', 'Bauni', NULL, 721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauni', [Definition] = NULL, [SortOrder] = 72.10 WHERE [Code] = 'bpe' END +SET [Description] = 'Bauni', [Definition] = NULL, [SortOrder] = 721.00 WHERE [Code] = 'bpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brg', 'Baure', NULL, 72.20) END +VALUES ('brg', 'Baure', NULL, 722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baure', [Definition] = NULL, [SortOrder] = 72.20 WHERE [Code] = 'brg' END +SET [Description] = 'Baure', [Definition] = NULL, [SortOrder] = 722.00 WHERE [Code] = 'brg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bge', 'Bauria', NULL, 72.30) END +VALUES ('bge', 'Bauria', NULL, 723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauria', [Definition] = NULL, [SortOrder] = 72.30 WHERE [Code] = 'bge' END +SET [Description] = 'Bauria', [Definition] = NULL, [SortOrder] = 723.00 WHERE [Code] = 'bge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwk', 'Bauwaki', NULL, 72.40) END +VALUES ('bwk', 'Bauwaki', NULL, 724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauwaki', [Definition] = NULL, [SortOrder] = 72.40 WHERE [Code] = 'bwk' END +SET [Description] = 'Bauwaki', [Definition] = NULL, [SortOrder] = 724.00 WHERE [Code] = 'bwk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvz', 'Bauzi', NULL, 72.50) END +VALUES ('bvz', 'Bauzi', NULL, 725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bauzi', [Definition] = NULL, [SortOrder] = 72.50 WHERE [Code] = 'bvz' END +SET [Description] = 'Bauzi', [Definition] = NULL, [SortOrder] = 725.00 WHERE [Code] = 'bvz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bar', 'Bavarian', NULL, 72.60) END +VALUES ('bar', 'Bavarian', NULL, 726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bavarian', [Definition] = NULL, [SortOrder] = 72.60 WHERE [Code] = 'bar' END +SET [Description] = 'Bavarian', [Definition] = NULL, [SortOrder] = 726.00 WHERE [Code] = 'bar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgr', 'Bawm Chin', NULL, 72.70) END +VALUES ('bgr', 'Bawm Chin', NULL, 727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bawm Chin', [Definition] = NULL, [SortOrder] = 72.70 WHERE [Code] = 'bgr' END +SET [Description] = 'Bawm Chin', [Definition] = NULL, [SortOrder] = 727.00 WHERE [Code] = 'bgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkq', 'Bay Miwok', NULL, 72.80) END +VALUES ('mkq', 'Bay Miwok', NULL, 728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bay Miwok', [Definition] = NULL, [SortOrder] = 72.80 WHERE [Code] = 'mkq' END +SET [Description] = 'Bay Miwok', [Definition] = NULL, [SortOrder] = 728.00 WHERE [Code] = 'mkq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjy', 'Bayali', NULL, 72.90) END +VALUES ('bjy', 'Bayali', NULL, 729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bayali', [Definition] = NULL, [SortOrder] = 72.90 WHERE [Code] = 'bjy' END +SET [Description] = 'Bayali', [Definition] = NULL, [SortOrder] = 729.00 WHERE [Code] = 'bjy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvy', 'Baybayanon', NULL, 73.00) END +VALUES ('bvy', 'Baybayanon', NULL, 730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baybayanon', [Definition] = NULL, [SortOrder] = 73.00 WHERE [Code] = 'bvy' END +SET [Description] = 'Baybayanon', [Definition] = NULL, [SortOrder] = 730.00 WHERE [Code] = 'bvy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byg', 'Baygo', NULL, 73.10) END +VALUES ('byg', 'Baygo', NULL, 731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Baygo', [Definition] = NULL, [SortOrder] = 73.10 WHERE [Code] = 'byg' END +SET [Description] = 'Baygo', [Definition] = NULL, [SortOrder] = 731.00 WHERE [Code] = 'byg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byl', 'Bayono', NULL, 73.20) END +VALUES ('byl', 'Bayono', NULL, 732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bayono', [Definition] = NULL, [SortOrder] = 73.20 WHERE [Code] = 'byl' END +SET [Description] = 'Bayono', [Definition] = NULL, [SortOrder] = 732.00 WHERE [Code] = 'byl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bda', 'Bayot', NULL, 73.30) END +VALUES ('bda', 'Bayot', NULL, 733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bayot', [Definition] = NULL, [SortOrder] = 73.30 WHERE [Code] = 'bda' END +SET [Description] = 'Bayot', [Definition] = NULL, [SortOrder] = 733.00 WHERE [Code] = 'bda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxj', 'Bayungu', NULL, 73.40) END +VALUES ('bxj', 'Bayungu', NULL, 734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bayungu', [Definition] = NULL, [SortOrder] = 73.40 WHERE [Code] = 'bxj' END +SET [Description] = 'Bayungu', [Definition] = NULL, [SortOrder] = 734.00 WHERE [Code] = 'bxj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfr', 'Bazigar', NULL, 73.50) END +VALUES ('bfr', 'Bazigar', NULL, 735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bazigar', [Definition] = NULL, [SortOrder] = 73.50 WHERE [Code] = 'bfr' END +SET [Description] = 'Bazigar', [Definition] = NULL, [SortOrder] = 735.00 WHERE [Code] = 'bfr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beo', 'Beami', NULL, 73.60) END +VALUES ('beo', 'Beami', NULL, 736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beami', [Definition] = NULL, [SortOrder] = 73.60 WHERE [Code] = 'beo' END +SET [Description] = 'Beami', [Definition] = NULL, [SortOrder] = 736.00 WHERE [Code] = 'beo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bea', 'Beaver', NULL, 73.70) END +VALUES ('bea', 'Beaver', NULL, 737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beaver', [Definition] = NULL, [SortOrder] = 73.70 WHERE [Code] = 'bea' END +SET [Description] = 'Beaver', [Definition] = NULL, [SortOrder] = 737.00 WHERE [Code] = 'bea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfp', 'Beba', NULL, 73.80) END +VALUES ('bfp', 'Beba', NULL, 738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beba', [Definition] = NULL, [SortOrder] = 73.80 WHERE [Code] = 'bfp' END +SET [Description] = 'Beba', [Definition] = NULL, [SortOrder] = 738.00 WHERE [Code] = 'bfp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beb', 'Bebele', NULL, 73.90) END +VALUES ('beb', 'Bebele', NULL, 739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bebele', [Definition] = NULL, [SortOrder] = 73.90 WHERE [Code] = 'beb' END +SET [Description] = 'Bebele', [Definition] = NULL, [SortOrder] = 739.00 WHERE [Code] = 'beb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bek', 'Bebeli', NULL, 74.00) END +VALUES ('bek', 'Bebeli', NULL, 740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bebeli', [Definition] = NULL, [SortOrder] = 74.00 WHERE [Code] = 'bek' END +SET [Description] = 'Bebeli', [Definition] = NULL, [SortOrder] = 740.00 WHERE [Code] = 'bek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxp', 'Bebil', NULL, 74.10) END +VALUES ('bxp', 'Bebil', NULL, 741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bebil', [Definition] = NULL, [SortOrder] = 74.10 WHERE [Code] = 'bxp' END +SET [Description] = 'Bebil', [Definition] = NULL, [SortOrder] = 741.00 WHERE [Code] = 'bxp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjv', 'Bedjond', NULL, 74.20) END +VALUES ('bjv', 'Bedjond', NULL, 742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bedjond', [Definition] = NULL, [SortOrder] = 74.20 WHERE [Code] = 'bjv' END +SET [Description] = 'Bedjond', [Definition] = NULL, [SortOrder] = 742.00 WHERE [Code] = 'bjv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bed', 'Bedoanas', NULL, 74.30) END +VALUES ('bed', 'Bedoanas', NULL, 743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bedoanas', [Definition] = NULL, [SortOrder] = 74.30 WHERE [Code] = 'bed' END +SET [Description] = 'Bedoanas', [Definition] = NULL, [SortOrder] = 743.00 WHERE [Code] = 'bed' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkf', 'Beeke', NULL, 74.40) END +VALUES ('bkf', 'Beeke', NULL, 744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beeke', [Definition] = NULL, [SortOrder] = 74.40 WHERE [Code] = 'bkf' END +SET [Description] = 'Beeke', [Definition] = NULL, [SortOrder] = 744.00 WHERE [Code] = 'bkf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxq', 'Beele', NULL, 74.50) END +VALUES ('bxq', 'Beele', NULL, 745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beele', [Definition] = NULL, [SortOrder] = 74.50 WHERE [Code] = 'bxq' END +SET [Description] = 'Beele', [Definition] = NULL, [SortOrder] = 745.00 WHERE [Code] = 'bxq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beq', 'Beembe', NULL, 74.60) END +VALUES ('beq', 'Beembe', NULL, 746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beembe', [Definition] = NULL, [SortOrder] = 74.60 WHERE [Code] = 'beq' END +SET [Description] = 'Beembe', [Definition] = NULL, [SortOrder] = 746.00 WHERE [Code] = 'beq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnz', 'Beezen', NULL, 74.70) END +VALUES ('bnz', 'Beezen', NULL, 747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beezen', [Definition] = NULL, [SortOrder] = 74.70 WHERE [Code] = 'bnz' END +SET [Description] = 'Beezen', [Definition] = NULL, [SortOrder] = 747.00 WHERE [Code] = 'bnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bby', 'Befang', NULL, 74.80) END +VALUES ('bby', 'Befang', NULL, 748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Befang', [Definition] = NULL, [SortOrder] = 74.80 WHERE [Code] = 'bby' END +SET [Description] = 'Befang', [Definition] = NULL, [SortOrder] = 748.00 WHERE [Code] = 'bby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebc', 'Beginci', NULL, 74.90) END +VALUES ('ebc', 'Beginci', NULL, 749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beginci', [Definition] = NULL, [SortOrder] = 74.90 WHERE [Code] = 'ebc' END +SET [Description] = 'Beginci', [Definition] = NULL, [SortOrder] = 749.00 WHERE [Code] = 'ebc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bej', 'Beja', NULL, 75.00) END +VALUES ('bej', 'Beja', NULL, 750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beja', [Definition] = NULL, [SortOrder] = 75.00 WHERE [Code] = 'bej' END +SET [Description] = 'Beja', [Definition] = NULL, [SortOrder] = 750.00 WHERE [Code] = 'bej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bei', 'Bekati''', NULL, 75.10) END +VALUES ('bei', 'Bekati''', NULL, 751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bekati''', [Definition] = NULL, [SortOrder] = 75.10 WHERE [Code] = 'bei' END +SET [Description] = 'Bekati''', [Definition] = NULL, [SortOrder] = 751.00 WHERE [Code] = 'bei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkv', 'Bekwarra', NULL, 75.20) END +VALUES ('bkv', 'Bekwarra', NULL, 752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bekwarra', [Definition] = NULL, [SortOrder] = 75.20 WHERE [Code] = 'bkv' END +SET [Description] = 'Bekwarra', [Definition] = NULL, [SortOrder] = 752.00 WHERE [Code] = 'bkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkw', 'Bekwel', NULL, 75.30) END +VALUES ('bkw', 'Bekwel', NULL, 753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bekwel', [Definition] = NULL, [SortOrder] = 75.30 WHERE [Code] = 'bkw' END +SET [Description] = 'Bekwel', [Definition] = NULL, [SortOrder] = 753.00 WHERE [Code] = 'bkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beg', 'Belait', NULL, 75.40) END +VALUES ('beg', 'Belait', NULL, 754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belait', [Definition] = NULL, [SortOrder] = 75.40 WHERE [Code] = 'beg' END +SET [Description] = 'Belait', [Definition] = NULL, [SortOrder] = 754.00 WHERE [Code] = 'beg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxb', 'Belanda Bor', NULL, 75.50) END +VALUES ('bxb', 'Belanda Bor', NULL, 755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belanda Bor', [Definition] = NULL, [SortOrder] = 75.50 WHERE [Code] = 'bxb' END +SET [Description] = 'Belanda Bor', [Definition] = NULL, [SortOrder] = 755.00 WHERE [Code] = 'bxb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvi', 'Belanda Viri', NULL, 75.60) END +VALUES ('bvi', 'Belanda Viri', NULL, 756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belanda Viri', [Definition] = NULL, [SortOrder] = 75.60 WHERE [Code] = 'bvi' END +SET [Description] = 'Belanda Viri', [Definition] = NULL, [SortOrder] = 756.00 WHERE [Code] = 'bvi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bel', 'Belarusian', NULL, 75.70) END +VALUES ('bel', 'Belarusian', NULL, 757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belarusian', [Definition] = NULL, [SortOrder] = 75.70 WHERE [Code] = 'bel' END +SET [Description] = 'Belarusian', [Definition] = NULL, [SortOrder] = 757.00 WHERE [Code] = 'bel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byw', 'Belhariya', NULL, 75.80) END +VALUES ('byw', 'Belhariya', NULL, 758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belhariya', [Definition] = NULL, [SortOrder] = 75.80 WHERE [Code] = 'byw' END +SET [Description] = 'Belhariya', [Definition] = NULL, [SortOrder] = 758.00 WHERE [Code] = 'byw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bey', 'Beli (Papua New Guinea)', NULL, 75.90) END +VALUES ('bey', 'Beli (Papua New Guinea)', NULL, 759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beli (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 75.90 WHERE [Code] = 'bey' END +SET [Description] = 'Beli (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 759.00 WHERE [Code] = 'bey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blm', 'Beli (South Sudan)', NULL, 76.00) END +VALUES ('blm', 'Beli (South Sudan)', NULL, 760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beli (South Sudan)', [Definition] = NULL, [SortOrder] = 76.00 WHERE [Code] = 'blm' END +SET [Description] = 'Beli (South Sudan)', [Definition] = NULL, [SortOrder] = 760.00 WHERE [Code] = 'blm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzj', 'Belize Kriol English', NULL, 76.10) END +VALUES ('bzj', 'Belize Kriol English', NULL, 761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belize Kriol English', [Definition] = NULL, [SortOrder] = 76.10 WHERE [Code] = 'bzj' END +SET [Description] = 'Belize Kriol English', [Definition] = NULL, [SortOrder] = 761.00 WHERE [Code] = 'bzj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blc', 'Bella Coola', NULL, 76.20) END +VALUES ('blc', 'Bella Coola', NULL, 762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bella Coola', [Definition] = NULL, [SortOrder] = 76.20 WHERE [Code] = 'blc' END +SET [Description] = 'Bella Coola', [Definition] = NULL, [SortOrder] = 762.00 WHERE [Code] = 'blc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brw', 'Bellari', NULL, 76.30) END +VALUES ('brw', 'Bellari', NULL, 763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bellari', [Definition] = NULL, [SortOrder] = 76.30 WHERE [Code] = 'brw' END +SET [Description] = 'Bellari', [Definition] = NULL, [SortOrder] = 763.00 WHERE [Code] = 'brw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glb', 'Belning', NULL, 76.40) END +VALUES ('glb', 'Belning', NULL, 764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Belning', [Definition] = NULL, [SortOrder] = 76.40 WHERE [Code] = 'glb' END +SET [Description] = 'Belning', [Definition] = NULL, [SortOrder] = 764.00 WHERE [Code] = 'glb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bem', 'Bemba (Zambia)', NULL, 76.50) END +VALUES ('bem', 'Bemba (Zambia)', NULL, 765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bemba (Zambia)', [Definition] = NULL, [SortOrder] = 76.50 WHERE [Code] = 'bem' END +SET [Description] = 'Bemba (Zambia)', [Definition] = NULL, [SortOrder] = 765.00 WHERE [Code] = 'bem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmb', 'Bembe', NULL, 76.60) END +VALUES ('bmb', 'Bembe', NULL, 766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bembe', [Definition] = NULL, [SortOrder] = 76.60 WHERE [Code] = 'bmb' END +SET [Description] = 'Bembe', [Definition] = NULL, [SortOrder] = 766.00 WHERE [Code] = 'bmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbt', 'Ben Tey Dogon', NULL, 76.70) END +VALUES ('dbt', 'Ben Tey Dogon', NULL, 767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ben Tey Dogon', [Definition] = NULL, [SortOrder] = 76.70 WHERE [Code] = 'dbt' END +SET [Description] = 'Ben Tey Dogon', [Definition] = NULL, [SortOrder] = 767.00 WHERE [Code] = 'dbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yun', 'Bena (Nigeria)', NULL, 76.80) END +VALUES ('yun', 'Bena (Nigeria)', NULL, 768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bena (Nigeria)', [Definition] = NULL, [SortOrder] = 76.80 WHERE [Code] = 'yun' END +SET [Description] = 'Bena (Nigeria)', [Definition] = NULL, [SortOrder] = 768.00 WHERE [Code] = 'yun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bez', 'Bena (Tanzania)', NULL, 76.90) END +VALUES ('bez', 'Bena (Tanzania)', NULL, 769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bena (Tanzania)', [Definition] = NULL, [SortOrder] = 76.90 WHERE [Code] = 'bez' END +SET [Description] = 'Bena (Tanzania)', [Definition] = NULL, [SortOrder] = 769.00 WHERE [Code] = 'bez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bef', 'Benabena', NULL, 77.00) END +VALUES ('bef', 'Benabena', NULL, 770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benabena', [Definition] = NULL, [SortOrder] = 77.00 WHERE [Code] = 'bef' END +SET [Description] = 'Benabena', [Definition] = NULL, [SortOrder] = 770.00 WHERE [Code] = 'bef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'egm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('egm', 'Benamanga', NULL, 77.10) END +VALUES ('egm', 'Benamanga', NULL, 771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benamanga', [Definition] = NULL, [SortOrder] = 77.10 WHERE [Code] = 'egm' END +SET [Description] = 'Benamanga', [Definition] = NULL, [SortOrder] = 771.00 WHERE [Code] = 'egm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcq', 'Bench', NULL, 77.20) END +VALUES ('bcq', 'Bench', NULL, 772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bench', [Definition] = NULL, [SortOrder] = 77.20 WHERE [Code] = 'bcq' END +SET [Description] = 'Bench', [Definition] = NULL, [SortOrder] = 772.00 WHERE [Code] = 'bcq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdp', 'Bende', NULL, 77.30) END +VALUES ('bdp', 'Bende', NULL, 773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bende', [Definition] = NULL, [SortOrder] = 77.30 WHERE [Code] = 'bdp' END +SET [Description] = 'Bende', [Definition] = NULL, [SortOrder] = 773.00 WHERE [Code] = 'bdp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bct', 'Bendi', NULL, 77.40) END +VALUES ('bct', 'Bendi', NULL, 774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bendi', [Definition] = NULL, [SortOrder] = 77.40 WHERE [Code] = 'bct' END +SET [Description] = 'Bendi', [Definition] = NULL, [SortOrder] = 774.00 WHERE [Code] = 'bct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhb', 'Beng', NULL, 77.50) END +VALUES ('nhb', 'Beng', NULL, 775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beng', [Definition] = NULL, [SortOrder] = 77.50 WHERE [Code] = 'nhb' END +SET [Description] = 'Beng', [Definition] = NULL, [SortOrder] = 775.00 WHERE [Code] = 'nhb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bng', 'Benga', NULL, 77.60) END +VALUES ('bng', 'Benga', NULL, 776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benga', [Definition] = NULL, [SortOrder] = 77.60 WHERE [Code] = 'bng' END +SET [Description] = 'Benga', [Definition] = NULL, [SortOrder] = 776.00 WHERE [Code] = 'bng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ben') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ben', 'Bengali', NULL, 77.70) END +VALUES ('ben', 'Bengali', NULL, 777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bengali', [Definition] = NULL, [SortOrder] = 77.70 WHERE [Code] = 'ben' END +SET [Description] = 'Bengali', [Definition] = NULL, [SortOrder] = 777.00 WHERE [Code] = 'ben' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgy', 'Benggoi', NULL, 77.80) END +VALUES ('bgy', 'Benggoi', NULL, 778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benggoi', [Definition] = NULL, [SortOrder] = 77.80 WHERE [Code] = 'bgy' END +SET [Description] = 'Benggoi', [Definition] = NULL, [SortOrder] = 778.00 WHERE [Code] = 'bgy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqy', 'Bengkala Sign Language', NULL, 77.90) END +VALUES ('bqy', 'Bengkala Sign Language', NULL, 779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bengkala Sign Language', [Definition] = NULL, [SortOrder] = 77.90 WHERE [Code] = 'bqy' END +SET [Description] = 'Bengkala Sign Language', [Definition] = NULL, [SortOrder] = 779.00 WHERE [Code] = 'bqy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnu', 'Bentong', NULL, 78.00) END +VALUES ('bnu', 'Bentong', NULL, 780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bentong', [Definition] = NULL, [SortOrder] = 78.00 WHERE [Code] = 'bnu' END +SET [Description] = 'Bentong', [Definition] = NULL, [SortOrder] = 780.00 WHERE [Code] = 'bnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byd', 'Benyadu''', NULL, 78.10) END +VALUES ('byd', 'Benyadu''', NULL, 781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Benyadu''', [Definition] = NULL, [SortOrder] = 78.10 WHERE [Code] = 'byd' END +SET [Description] = 'Benyadu''', [Definition] = NULL, [SortOrder] = 781.00 WHERE [Code] = 'byd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bue', 'Beothuk', NULL, 78.20) END +VALUES ('bue', 'Beothuk', NULL, 782.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beothuk', [Definition] = NULL, [SortOrder] = 78.20 WHERE [Code] = 'bue' END +SET [Description] = 'Beothuk', [Definition] = NULL, [SortOrder] = 782.00 WHERE [Code] = 'bue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bie', 'Bepour', NULL, 78.30) END +VALUES ('bie', 'Bepour', NULL, 783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bepour', [Definition] = NULL, [SortOrder] = 78.30 WHERE [Code] = 'bie' END +SET [Description] = 'Bepour', [Definition] = NULL, [SortOrder] = 783.00 WHERE [Code] = 'bie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxv', 'Berakou', NULL, 78.40) END +VALUES ('bxv', 'Berakou', NULL, 784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berakou', [Definition] = NULL, [SortOrder] = 78.40 WHERE [Code] = 'bxv' END +SET [Description] = 'Berakou', [Definition] = NULL, [SortOrder] = 784.00 WHERE [Code] = 'bxv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bve', 'Berau Malay', NULL, 78.50) END +VALUES ('bve', 'Berau Malay', NULL, 785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berau Malay', [Definition] = NULL, [SortOrder] = 78.50 WHERE [Code] = 'bve' END +SET [Description] = 'Berau Malay', [Definition] = NULL, [SortOrder] = 785.00 WHERE [Code] = 'bve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brc', 'Berbice Creole Dutch', NULL, 78.60) END +VALUES ('brc', 'Berbice Creole Dutch', NULL, 786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berbice Creole Dutch', [Definition] = NULL, [SortOrder] = 78.60 WHERE [Code] = 'brc' END +SET [Description] = 'Berbice Creole Dutch', [Definition] = NULL, [SortOrder] = 786.00 WHERE [Code] = 'brc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkl', 'Berik', NULL, 78.70) END +VALUES ('bkl', 'Berik', NULL, 787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berik', [Definition] = NULL, [SortOrder] = 78.70 WHERE [Code] = 'bkl' END +SET [Description] = 'Berik', [Definition] = NULL, [SortOrder] = 787.00 WHERE [Code] = 'bkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bit', 'Berinomo', NULL, 78.80) END +VALUES ('bit', 'Berinomo', NULL, 788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berinomo', [Definition] = NULL, [SortOrder] = 78.80 WHERE [Code] = 'bit' END +SET [Description] = 'Berinomo', [Definition] = NULL, [SortOrder] = 788.00 WHERE [Code] = 'bit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bom', 'Berom', NULL, 78.90) END +VALUES ('bom', 'Berom', NULL, 789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berom', [Definition] = NULL, [SortOrder] = 78.90 WHERE [Code] = 'bom' END +SET [Description] = 'Berom', [Definition] = NULL, [SortOrder] = 789.00 WHERE [Code] = 'bom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wti', 'Berta', NULL, 79.00) END +VALUES ('wti', 'Berta', NULL, 790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berta', [Definition] = NULL, [SortOrder] = 79.00 WHERE [Code] = 'wti' END +SET [Description] = 'Berta', [Definition] = NULL, [SortOrder] = 790.00 WHERE [Code] = 'wti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byt', 'Berti', NULL, 79.10) END +VALUES ('byt', 'Berti', NULL, 791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Berti', [Definition] = NULL, [SortOrder] = 79.10 WHERE [Code] = 'byt' END +SET [Description] = 'Berti', [Definition] = NULL, [SortOrder] = 791.00 WHERE [Code] = 'byt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhe', 'Besisi', NULL, 79.20) END +VALUES ('mhe', 'Besisi', NULL, 792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Besisi', [Definition] = NULL, [SortOrder] = 79.20 WHERE [Code] = 'mhe' END +SET [Description] = 'Besisi', [Definition] = NULL, [SortOrder] = 792.00 WHERE [Code] = 'mhe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bes', 'Besme', NULL, 79.30) END +VALUES ('bes', 'Besme', NULL, 793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Besme', [Definition] = NULL, [SortOrder] = 79.30 WHERE [Code] = 'bes' END +SET [Description] = 'Besme', [Definition] = NULL, [SortOrder] = 793.00 WHERE [Code] = 'bes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bep', 'Besoa', NULL, 79.40) END +VALUES ('bep', 'Besoa', NULL, 794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Besoa', [Definition] = NULL, [SortOrder] = 79.40 WHERE [Code] = 'bep' END +SET [Description] = 'Besoa', [Definition] = NULL, [SortOrder] = 794.00 WHERE [Code] = 'bep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfe', 'Betaf', NULL, 79.50) END +VALUES ('bfe', 'Betaf', NULL, 795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Betaf', [Definition] = NULL, [SortOrder] = 79.50 WHERE [Code] = 'bfe' END +SET [Description] = 'Betaf', [Definition] = NULL, [SortOrder] = 795.00 WHERE [Code] = 'bfe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bew', 'Betawi', NULL, 79.60) END +VALUES ('bew', 'Betawi', NULL, 796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Betawi', [Definition] = NULL, [SortOrder] = 79.60 WHERE [Code] = 'bew' END +SET [Description] = 'Betawi', [Definition] = NULL, [SortOrder] = 796.00 WHERE [Code] = 'bew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byf', 'Bete', NULL, 79.70) END +VALUES ('byf', 'Bete', NULL, 797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bete', [Definition] = NULL, [SortOrder] = 79.70 WHERE [Code] = 'byf' END +SET [Description] = 'Bete', [Definition] = NULL, [SortOrder] = 797.00 WHERE [Code] = 'byf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btt', 'Bete-Bendi', NULL, 79.80) END +VALUES ('btt', 'Bete-Bendi', NULL, 798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bete-Bendi', [Definition] = NULL, [SortOrder] = 79.80 WHERE [Code] = 'btt' END +SET [Description] = 'Bete-Bendi', [Definition] = NULL, [SortOrder] = 798.00 WHERE [Code] = 'btt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eot', 'Beti (Côte d''Ivoire)', NULL, 79.90) END +VALUES ('eot', 'Beti (Côte d''Ivoire)', NULL, 799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Beti (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 79.90 WHERE [Code] = 'eot' END +SET [Description] = 'Beti (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 799.00 WHERE [Code] = 'eot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xub', 'Betta Kurumba', NULL, 80.00) END +VALUES ('xub', 'Betta Kurumba', NULL, 800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Betta Kurumba', [Definition] = NULL, [SortOrder] = 80.00 WHERE [Code] = 'xub' END +SET [Description] = 'Betta Kurumba', [Definition] = NULL, [SortOrder] = 800.00 WHERE [Code] = 'xub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kap', 'Bezhta', NULL, 80.10) END +VALUES ('kap', 'Bezhta', NULL, 801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bezhta', [Definition] = NULL, [SortOrder] = 80.10 WHERE [Code] = 'kap' END +SET [Description] = 'Bezhta', [Definition] = NULL, [SortOrder] = 801.00 WHERE [Code] = 'kap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhd', 'Bhadrawahi', NULL, 80.20) END +VALUES ('bhd', 'Bhadrawahi', NULL, 802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhadrawahi', [Definition] = NULL, [SortOrder] = 80.20 WHERE [Code] = 'bhd' END +SET [Description] = 'Bhadrawahi', [Definition] = NULL, [SortOrder] = 802.00 WHERE [Code] = 'bhd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhx', 'Bhalay', NULL, 80.30) END +VALUES ('bhx', 'Bhalay', NULL, 803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhalay', [Definition] = NULL, [SortOrder] = 80.30 WHERE [Code] = 'bhx' END +SET [Description] = 'Bhalay', [Definition] = NULL, [SortOrder] = 803.00 WHERE [Code] = 'bhx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bha', 'Bharia', NULL, 80.40) END +VALUES ('bha', 'Bharia', NULL, 804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bharia', [Definition] = NULL, [SortOrder] = 80.40 WHERE [Code] = 'bha' END +SET [Description] = 'Bharia', [Definition] = NULL, [SortOrder] = 804.00 WHERE [Code] = 'bha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgw', 'Bhatri', NULL, 80.50) END +VALUES ('bgw', 'Bhatri', NULL, 805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhatri', [Definition] = NULL, [SortOrder] = 80.50 WHERE [Code] = 'bgw' END +SET [Description] = 'Bhatri', [Definition] = NULL, [SortOrder] = 805.00 WHERE [Code] = 'bgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bht', 'Bhattiyali', NULL, 80.60) END +VALUES ('bht', 'Bhattiyali', NULL, 806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhattiyali', [Definition] = NULL, [SortOrder] = 80.60 WHERE [Code] = 'bht' END +SET [Description] = 'Bhattiyali', [Definition] = NULL, [SortOrder] = 806.00 WHERE [Code] = 'bht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhe', 'Bhaya', NULL, 80.70) END +VALUES ('bhe', 'Bhaya', NULL, 807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhaya', [Definition] = NULL, [SortOrder] = 80.70 WHERE [Code] = 'bhe' END +SET [Description] = 'Bhaya', [Definition] = NULL, [SortOrder] = 807.00 WHERE [Code] = 'bhe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhy', 'Bhele', NULL, 80.80) END +VALUES ('bhy', 'Bhele', NULL, 808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhele', [Definition] = NULL, [SortOrder] = 80.80 WHERE [Code] = 'bhy' END +SET [Description] = 'Bhele', [Definition] = NULL, [SortOrder] = 808.00 WHERE [Code] = 'bhy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhi', 'Bhilali', NULL, 80.90) END +VALUES ('bhi', 'Bhilali', NULL, 809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhilali', [Definition] = NULL, [SortOrder] = 80.90 WHERE [Code] = 'bhi' END +SET [Description] = 'Bhilali', [Definition] = NULL, [SortOrder] = 809.00 WHERE [Code] = 'bhi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhb', 'Bhili', NULL, 81.00) END +VALUES ('bhb', 'Bhili', NULL, 810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhili', [Definition] = NULL, [SortOrder] = 81.00 WHERE [Code] = 'bhb' END +SET [Description] = 'Bhili', [Definition] = NULL, [SortOrder] = 810.00 WHERE [Code] = 'bhb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bho', 'Bhojpuri', NULL, 81.10) END +VALUES ('bho', 'Bhojpuri', NULL, 811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhojpuri', [Definition] = NULL, [SortOrder] = 81.10 WHERE [Code] = 'bho' END +SET [Description] = 'Bhojpuri', [Definition] = NULL, [SortOrder] = 811.00 WHERE [Code] = 'bho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nes', 'Bhoti Kinnauri', NULL, 81.20) END +VALUES ('nes', 'Bhoti Kinnauri', NULL, 812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhoti Kinnauri', [Definition] = NULL, [SortOrder] = 81.20 WHERE [Code] = 'nes' END +SET [Description] = 'Bhoti Kinnauri', [Definition] = NULL, [SortOrder] = 812.00 WHERE [Code] = 'nes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byh', 'Bhujel', NULL, 81.30) END +VALUES ('byh', 'Bhujel', NULL, 813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhujel', [Definition] = NULL, [SortOrder] = 81.30 WHERE [Code] = 'byh' END +SET [Description] = 'Bhujel', [Definition] = NULL, [SortOrder] = 813.00 WHERE [Code] = 'byh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhu', 'Bhunjia', NULL, 81.40) END +VALUES ('bhu', 'Bhunjia', NULL, 814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bhunjia', [Definition] = NULL, [SortOrder] = 81.40 WHERE [Code] = 'bhu' END +SET [Description] = 'Bhunjia', [Definition] = NULL, [SortOrder] = 814.00 WHERE [Code] = 'bhu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bif', 'Biafada', NULL, 81.50) END +VALUES ('bif', 'Biafada', NULL, 815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biafada', [Definition] = NULL, [SortOrder] = 81.50 WHERE [Code] = 'bif' END +SET [Description] = 'Biafada', [Definition] = NULL, [SortOrder] = 815.00 WHERE [Code] = 'bif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdf', 'Biage', NULL, 81.60) END +VALUES ('bdf', 'Biage', NULL, 816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biage', [Definition] = NULL, [SortOrder] = 81.60 WHERE [Code] = 'bdf' END +SET [Description] = 'Biage', [Definition] = NULL, [SortOrder] = 816.00 WHERE [Code] = 'bdf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhw', 'Biak', NULL, 81.70) END +VALUES ('bhw', 'Biak', NULL, 817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biak', [Definition] = NULL, [SortOrder] = 81.70 WHERE [Code] = 'bhw' END +SET [Description] = 'Biak', [Definition] = NULL, [SortOrder] = 817.00 WHERE [Code] = 'bhw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beh', 'Biali', NULL, 81.80) END +VALUES ('beh', 'Biali', NULL, 818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biali', [Definition] = NULL, [SortOrder] = 81.80 WHERE [Code] = 'beh' END +SET [Description] = 'Biali', [Definition] = NULL, [SortOrder] = 818.00 WHERE [Code] = 'beh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpv', 'Bian Marind', NULL, 81.90) END +VALUES ('bpv', 'Bian Marind', NULL, 819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bian Marind', [Definition] = NULL, [SortOrder] = 81.90 WHERE [Code] = 'bpv' END +SET [Description] = 'Bian Marind', [Definition] = NULL, [SortOrder] = 819.00 WHERE [Code] = 'bpv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'big') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('big', 'Biangai', NULL, 82.00) END +VALUES ('big', 'Biangai', NULL, 820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biangai', [Definition] = NULL, [SortOrder] = 82.00 WHERE [Code] = 'big' END +SET [Description] = 'Biangai', [Definition] = NULL, [SortOrder] = 820.00 WHERE [Code] = 'big' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byk', 'Biao', NULL, 82.10) END +VALUES ('byk', 'Biao', NULL, 821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biao', [Definition] = NULL, [SortOrder] = 82.10 WHERE [Code] = 'byk' END +SET [Description] = 'Biao', [Definition] = NULL, [SortOrder] = 821.00 WHERE [Code] = 'byk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmt', 'Biao Mon', NULL, 82.20) END +VALUES ('bmt', 'Biao Mon', NULL, 822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biao Mon', [Definition] = NULL, [SortOrder] = 82.20 WHERE [Code] = 'bmt' END +SET [Description] = 'Biao Mon', [Definition] = NULL, [SortOrder] = 822.00 WHERE [Code] = 'bmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bje', 'Biao-Jiao Mien', NULL, 82.30) END +VALUES ('bje', 'Biao-Jiao Mien', NULL, 823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biao-Jiao Mien', [Definition] = NULL, [SortOrder] = 82.30 WHERE [Code] = 'bje' END +SET [Description] = 'Biao-Jiao Mien', [Definition] = NULL, [SortOrder] = 823.00 WHERE [Code] = 'bje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bth', 'Biatah Bidayuh', NULL, 82.40) END +VALUES ('bth', 'Biatah Bidayuh', NULL, 824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biatah Bidayuh', [Definition] = NULL, [SortOrder] = 82.40 WHERE [Code] = 'bth' END +SET [Description] = 'Biatah Bidayuh', [Definition] = NULL, [SortOrder] = 824.00 WHERE [Code] = 'bth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbp', 'Bibbulman', NULL, 82.50) END +VALUES ('xbp', 'Bibbulman', NULL, 825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bibbulman', [Definition] = NULL, [SortOrder] = 82.50 WHERE [Code] = 'xbp' END +SET [Description] = 'Bibbulman', [Definition] = NULL, [SortOrder] = 825.00 WHERE [Code] = 'xbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ihw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ihw', 'Bidhawal', NULL, 82.60) END +VALUES ('ihw', 'Bidhawal', NULL, 826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bidhawal', [Definition] = NULL, [SortOrder] = 82.60 WHERE [Code] = 'ihw' END +SET [Description] = 'Bidhawal', [Definition] = NULL, [SortOrder] = 826.00 WHERE [Code] = 'ihw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bid', 'Bidiyo', NULL, 82.70) END +VALUES ('bid', 'Bidiyo', NULL, 827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bidiyo', [Definition] = NULL, [SortOrder] = 82.70 WHERE [Code] = 'bid' END +SET [Description] = 'Bidiyo', [Definition] = NULL, [SortOrder] = 827.00 WHERE [Code] = 'bid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bym', 'Bidjara', NULL, 82.80) END +VALUES ('bym', 'Bidjara', NULL, 828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bidjara', [Definition] = NULL, [SortOrder] = 82.80 WHERE [Code] = 'bym' END +SET [Description] = 'Bidjara', [Definition] = NULL, [SortOrder] = 828.00 WHERE [Code] = 'bym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjg', 'Bidyogo', NULL, 82.90) END +VALUES ('bjg', 'Bidyogo', NULL, 829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bidyogo', [Definition] = NULL, [SortOrder] = 82.90 WHERE [Code] = 'bjg' END +SET [Description] = 'Bidyogo', [Definition] = NULL, [SortOrder] = 829.00 WHERE [Code] = 'bjg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmc', 'Biem', NULL, 83.00) END +VALUES ('bmc', 'Biem', NULL, 830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biem', [Definition] = NULL, [SortOrder] = 83.00 WHERE [Code] = 'bmc' END +SET [Description] = 'Biem', [Definition] = NULL, [SortOrder] = 830.00 WHERE [Code] = 'bmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnk', 'Bierebo', NULL, 83.10) END +VALUES ('bnk', 'Bierebo', NULL, 831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bierebo', [Definition] = NULL, [SortOrder] = 83.10 WHERE [Code] = 'bnk' END +SET [Description] = 'Bierebo', [Definition] = NULL, [SortOrder] = 831.00 WHERE [Code] = 'bnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brj', 'Bieria', NULL, 83.20) END +VALUES ('brj', 'Bieria', NULL, 832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bieria', [Definition] = NULL, [SortOrder] = 83.20 WHERE [Code] = 'brj' END +SET [Description] = 'Bieria', [Definition] = NULL, [SortOrder] = 832.00 WHERE [Code] = 'brj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biu', 'Biete', NULL, 83.30) END +VALUES ('biu', 'Biete', NULL, 833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biete', [Definition] = NULL, [SortOrder] = 83.30 WHERE [Code] = 'biu' END +SET [Description] = 'Biete', [Definition] = NULL, [SortOrder] = 833.00 WHERE [Code] = 'biu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmb', 'Big Nambas', NULL, 83.40) END +VALUES ('nmb', 'Big Nambas', NULL, 834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Big Nambas', [Definition] = NULL, [SortOrder] = 83.40 WHERE [Code] = 'nmb' END +SET [Description] = 'Big Nambas', [Definition] = NULL, [SortOrder] = 834.00 WHERE [Code] = 'nmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhc', 'Biga', NULL, 83.50) END +VALUES ('bhc', 'Biga', NULL, 835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biga', [Definition] = NULL, [SortOrder] = 83.50 WHERE [Code] = 'bhc' END +SET [Description] = 'Biga', [Definition] = NULL, [SortOrder] = 835.00 WHERE [Code] = 'bhc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbe', 'Bigambal', NULL, 83.60) END +VALUES ('xbe', 'Bigambal', NULL, 836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bigambal', [Definition] = NULL, [SortOrder] = 83.60 WHERE [Code] = 'xbe' END +SET [Description] = 'Bigambal', [Definition] = NULL, [SortOrder] = 836.00 WHERE [Code] = 'xbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibh', 'Bih', NULL, 83.70) END +VALUES ('ibh', 'Bih', NULL, 837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bih', [Definition] = NULL, [SortOrder] = 83.70 WHERE [Code] = 'ibh' END +SET [Description] = 'Bih', [Definition] = NULL, [SortOrder] = 837.00 WHERE [Code] = 'ibh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbm', 'Bijim', NULL, 83.80) END +VALUES ('jbm', 'Bijim', NULL, 838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bijim', [Definition] = NULL, [SortOrder] = 83.80 WHERE [Code] = 'jbm' END +SET [Description] = 'Bijim', [Definition] = NULL, [SortOrder] = 838.00 WHERE [Code] = 'jbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bix', 'Bijori', NULL, 83.90) END +VALUES ('bix', 'Bijori', NULL, 839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bijori', [Definition] = NULL, [SortOrder] = 83.90 WHERE [Code] = 'bix' END +SET [Description] = 'Bijori', [Definition] = NULL, [SortOrder] = 839.00 WHERE [Code] = 'bix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bik', 'Bikol', NULL, 84.00) END +VALUES ('bik', 'Bikol', NULL, 840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bikol', [Definition] = NULL, [SortOrder] = 84.00 WHERE [Code] = 'bik' END +SET [Description] = 'Bikol', [Definition] = NULL, [SortOrder] = 840.00 WHERE [Code] = 'bik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byb', 'Bikya', NULL, 84.10) END +VALUES ('byb', 'Bikya', NULL, 841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bikya', [Definition] = NULL, [SortOrder] = 84.10 WHERE [Code] = 'byb' END +SET [Description] = 'Bikya', [Definition] = NULL, [SortOrder] = 841.00 WHERE [Code] = 'byb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bip', 'Bila', NULL, 84.20) END +VALUES ('bip', 'Bila', NULL, 842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bila', [Definition] = NULL, [SortOrder] = 84.20 WHERE [Code] = 'bip' END +SET [Description] = 'Bila', [Definition] = NULL, [SortOrder] = 842.00 WHERE [Code] = 'bip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bql', 'Bilakura', NULL, 84.30) END +VALUES ('bql', 'Bilakura', NULL, 843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilakura', [Definition] = NULL, [SortOrder] = 84.30 WHERE [Code] = 'bql' END +SET [Description] = 'Bilakura', [Definition] = NULL, [SortOrder] = 843.00 WHERE [Code] = 'bql' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfs', 'Bilaspuri', NULL, 84.40) END +VALUES ('kfs', 'Bilaspuri', NULL, 844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilaspuri', [Definition] = NULL, [SortOrder] = 84.40 WHERE [Code] = 'kfs' END +SET [Description] = 'Bilaspuri', [Definition] = NULL, [SortOrder] = 844.00 WHERE [Code] = 'kfs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpz', 'Bilba', NULL, 84.50) END +VALUES ('bpz', 'Bilba', NULL, 845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilba', [Definition] = NULL, [SortOrder] = 84.50 WHERE [Code] = 'bpz' END +SET [Description] = 'Bilba', [Definition] = NULL, [SortOrder] = 845.00 WHERE [Code] = 'bpz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brz', 'Bilbil', NULL, 84.60) END +VALUES ('brz', 'Bilbil', NULL, 846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilbil', [Definition] = NULL, [SortOrder] = 84.60 WHERE [Code] = 'brz' END +SET [Description] = 'Bilbil', [Definition] = NULL, [SortOrder] = 846.00 WHERE [Code] = 'brz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bil', 'Bile', NULL, 84.70) END +VALUES ('bil', 'Bile', NULL, 847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bile', [Definition] = NULL, [SortOrder] = 84.70 WHERE [Code] = 'bil' END +SET [Description] = 'Bile', [Definition] = NULL, [SortOrder] = 847.00 WHERE [Code] = 'bil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byn', 'Bilin', NULL, 84.80) END +VALUES ('byn', 'Bilin', NULL, 848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilin', [Definition] = NULL, [SortOrder] = 84.80 WHERE [Code] = 'byn' END +SET [Description] = 'Bilin', [Definition] = NULL, [SortOrder] = 848.00 WHERE [Code] = 'byn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bms', 'Bilma Kanuri', NULL, 84.90) END +VALUES ('bms', 'Bilma Kanuri', NULL, 849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilma Kanuri', [Definition] = NULL, [SortOrder] = 84.90 WHERE [Code] = 'bms' END +SET [Description] = 'Bilma Kanuri', [Definition] = NULL, [SortOrder] = 849.00 WHERE [Code] = 'bms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bll', 'Biloxi', NULL, 85.00) END +VALUES ('bll', 'Biloxi', NULL, 850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biloxi', [Definition] = NULL, [SortOrder] = 85.00 WHERE [Code] = 'bll' END +SET [Description] = 'Biloxi', [Definition] = NULL, [SortOrder] = 850.00 WHERE [Code] = 'bll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blb', 'Bilua', NULL, 85.10) END +VALUES ('blb', 'Bilua', NULL, 851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilua', [Definition] = NULL, [SortOrder] = 85.10 WHERE [Code] = 'blb' END +SET [Description] = 'Bilua', [Definition] = NULL, [SortOrder] = 851.00 WHERE [Code] = 'blb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxf', 'Bilur', NULL, 85.20) END +VALUES ('bxf', 'Bilur', NULL, 852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bilur', [Definition] = NULL, [SortOrder] = 85.20 WHERE [Code] = 'bxf' END +SET [Description] = 'Bilur', [Definition] = NULL, [SortOrder] = 852.00 WHERE [Code] = 'bxf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhp', 'Bima', NULL, 85.30) END +VALUES ('bhp', 'Bima', NULL, 853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bima', [Definition] = NULL, [SortOrder] = 85.30 WHERE [Code] = 'bhp' END +SET [Description] = 'Bima', [Definition] = NULL, [SortOrder] = 853.00 WHERE [Code] = 'bhp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhl', 'Bimin', NULL, 85.40) END +VALUES ('bhl', 'Bimin', NULL, 854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bimin', [Definition] = NULL, [SortOrder] = 85.40 WHERE [Code] = 'bhl' END +SET [Description] = 'Bimin', [Definition] = NULL, [SortOrder] = 854.00 WHERE [Code] = 'bhl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bim', 'Bimoba', NULL, 85.50) END +VALUES ('bim', 'Bimoba', NULL, 855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bimoba', [Definition] = NULL, [SortOrder] = 85.50 WHERE [Code] = 'bim' END +SET [Description] = 'Bimoba', [Definition] = NULL, [SortOrder] = 855.00 WHERE [Code] = 'bim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byj', 'Bina (Nigeria)', NULL, 85.60) END +VALUES ('byj', 'Bina (Nigeria)', NULL, 856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bina (Nigeria)', [Definition] = NULL, [SortOrder] = 85.60 WHERE [Code] = 'byj' END +SET [Description] = 'Bina (Nigeria)', [Definition] = NULL, [SortOrder] = 856.00 WHERE [Code] = 'byj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmn', 'Bina (Papua New Guinea)', NULL, 85.70) END +VALUES ('bmn', 'Bina (Papua New Guinea)', NULL, 857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bina (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 85.70 WHERE [Code] = 'bmn' END +SET [Description] = 'Bina (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 857.00 WHERE [Code] = 'bmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxz', 'Binahari', NULL, 85.80) END +VALUES ('bxz', 'Binahari', NULL, 858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binahari', [Definition] = NULL, [SortOrder] = 85.80 WHERE [Code] = 'bxz' END +SET [Description] = 'Binahari', [Definition] = NULL, [SortOrder] = 858.00 WHERE [Code] = 'bxz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhg', 'Binandere', NULL, 85.90) END +VALUES ('bhg', 'Binandere', NULL, 859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binandere', [Definition] = NULL, [SortOrder] = 85.90 WHERE [Code] = 'bhg' END +SET [Description] = 'Binandere', [Definition] = NULL, [SortOrder] = 859.00 WHERE [Code] = 'bhg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbd', 'Bindal', NULL, 86.00) END +VALUES ('xbd', 'Bindal', NULL, 860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bindal', [Definition] = NULL, [SortOrder] = 86.00 WHERE [Code] = 'xbd' END +SET [Description] = 'Bindal', [Definition] = NULL, [SortOrder] = 860.00 WHERE [Code] = 'xbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bon', 'Bine', NULL, 86.10) END +VALUES ('bon', 'Bine', NULL, 861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bine', [Definition] = NULL, [SortOrder] = 86.10 WHERE [Code] = 'bon' END +SET [Description] = 'Bine', [Definition] = NULL, [SortOrder] = 861.00 WHERE [Code] = 'bon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bin', 'Bini', NULL, 86.20) END +VALUES ('bin', 'Bini', NULL, 862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bini', [Definition] = NULL, [SortOrder] = 86.20 WHERE [Code] = 'bin' END +SET [Description] = 'Bini', [Definition] = NULL, [SortOrder] = 862.00 WHERE [Code] = 'bin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpj', 'Binji', NULL, 86.30) END +VALUES ('bpj', 'Binji', NULL, 863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binji', [Definition] = NULL, [SortOrder] = 86.30 WHERE [Code] = 'bpj' END +SET [Description] = 'Binji', [Definition] = NULL, [SortOrder] = 863.00 WHERE [Code] = 'bpj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itb', 'Binongan Itneg', NULL, 86.40) END +VALUES ('itb', 'Binongan Itneg', NULL, 864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binongan Itneg', [Definition] = NULL, [SortOrder] = 86.40 WHERE [Code] = 'itb' END +SET [Description] = 'Binongan Itneg', [Definition] = NULL, [SortOrder] = 864.00 WHERE [Code] = 'itb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bne', 'Bintauna', NULL, 86.50) END +VALUES ('bne', 'Bintauna', NULL, 865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bintauna', [Definition] = NULL, [SortOrder] = 86.50 WHERE [Code] = 'bne' END +SET [Description] = 'Bintauna', [Definition] = NULL, [SortOrder] = 865.00 WHERE [Code] = 'bne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bny', 'Bintulu', NULL, 86.60) END +VALUES ('bny', 'Bintulu', NULL, 866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bintulu', [Definition] = NULL, [SortOrder] = 86.60 WHERE [Code] = 'bny' END +SET [Description] = 'Bintulu', [Definition] = NULL, [SortOrder] = 866.00 WHERE [Code] = 'bny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkd', 'Binukid', NULL, 86.70) END +VALUES ('bkd', 'Binukid', NULL, 867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binukid', [Definition] = NULL, [SortOrder] = 86.70 WHERE [Code] = 'bkd' END +SET [Description] = 'Binukid', [Definition] = NULL, [SortOrder] = 867.00 WHERE [Code] = 'bkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjr', 'Binumarien', NULL, 86.80) END +VALUES ('bjr', 'Binumarien', NULL, 868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Binumarien', [Definition] = NULL, [SortOrder] = 86.80 WHERE [Code] = 'bjr' END +SET [Description] = 'Binumarien', [Definition] = NULL, [SortOrder] = 868.00 WHERE [Code] = 'bjr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biq', 'Bipi', NULL, 86.90) END +VALUES ('biq', 'Bipi', NULL, 869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bipi', [Definition] = NULL, [SortOrder] = 86.90 WHERE [Code] = 'biq' END +SET [Description] = 'Bipi', [Definition] = NULL, [SortOrder] = 869.00 WHERE [Code] = 'biq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brf', 'Bira', NULL, 87.00) END +VALUES ('brf', 'Bira', NULL, 870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bira', [Definition] = NULL, [SortOrder] = 87.00 WHERE [Code] = 'brf' END +SET [Description] = 'Bira', [Definition] = NULL, [SortOrder] = 870.00 WHERE [Code] = 'brf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxe', 'Birale', NULL, 87.10) END +VALUES ('bxe', 'Birale', NULL, 871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birale', [Definition] = NULL, [SortOrder] = 87.10 WHERE [Code] = 'bxe' END +SET [Description] = 'Birale', [Definition] = NULL, [SortOrder] = 871.00 WHERE [Code] = 'bxe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brr', 'Birao', NULL, 87.20) END +VALUES ('brr', 'Birao', NULL, 872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birao', [Definition] = NULL, [SortOrder] = 87.20 WHERE [Code] = 'brr' END +SET [Description] = 'Birao', [Definition] = NULL, [SortOrder] = 872.00 WHERE [Code] = 'brr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btf', 'Birgit', NULL, 87.30) END +VALUES ('btf', 'Birgit', NULL, 873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birgit', [Definition] = NULL, [SortOrder] = 87.30 WHERE [Code] = 'btf' END +SET [Description] = 'Birgit', [Definition] = NULL, [SortOrder] = 873.00 WHERE [Code] = 'btf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biy', 'Birhor', NULL, 87.40) END +VALUES ('biy', 'Birhor', NULL, 874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birhor', [Definition] = NULL, [SortOrder] = 87.40 WHERE [Code] = 'biy' END +SET [Description] = 'Birhor', [Definition] = NULL, [SortOrder] = 874.00 WHERE [Code] = 'biy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzr', 'Biri', NULL, 87.50) END +VALUES ('bzr', 'Biri', NULL, 875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biri', [Definition] = NULL, [SortOrder] = 87.50 WHERE [Code] = 'bzr' END +SET [Description] = 'Biri', [Definition] = NULL, [SortOrder] = 875.00 WHERE [Code] = 'bzr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqq', 'Biritai', NULL, 87.60) END +VALUES ('bqq', 'Biritai', NULL, 876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biritai', [Definition] = NULL, [SortOrder] = 87.60 WHERE [Code] = 'bqq' END +SET [Description] = 'Biritai', [Definition] = NULL, [SortOrder] = 876.00 WHERE [Code] = 'bqq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brk', 'Birked', NULL, 87.70) END +VALUES ('brk', 'Birked', NULL, 877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birked', [Definition] = NULL, [SortOrder] = 87.70 WHERE [Code] = 'brk' END +SET [Description] = 'Birked', [Definition] = NULL, [SortOrder] = 877.00 WHERE [Code] = 'brk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvq', 'Birri', NULL, 87.80) END +VALUES ('bvq', 'Birri', NULL, 878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birri', [Definition] = NULL, [SortOrder] = 87.80 WHERE [Code] = 'bvq' END +SET [Description] = 'Birri', [Definition] = NULL, [SortOrder] = 878.00 WHERE [Code] = 'bvq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbj', 'Birrpayi', NULL, 87.90) END +VALUES ('xbj', 'Birrpayi', NULL, 879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birrpayi', [Definition] = NULL, [SortOrder] = 87.90 WHERE [Code] = 'xbj' END +SET [Description] = 'Birrpayi', [Definition] = NULL, [SortOrder] = 879.00 WHERE [Code] = 'xbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brl', 'Birwa', NULL, 88.00) END +VALUES ('brl', 'Birwa', NULL, 880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Birwa', [Definition] = NULL, [SortOrder] = 88.00 WHERE [Code] = 'brl' END +SET [Description] = 'Birwa', [Definition] = NULL, [SortOrder] = 880.00 WHERE [Code] = 'brl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ije') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ije', 'Biseni', NULL, 88.10) END +VALUES ('ije', 'Biseni', NULL, 881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biseni', [Definition] = NULL, [SortOrder] = 88.10 WHERE [Code] = 'ije' END +SET [Description] = 'Biseni', [Definition] = NULL, [SortOrder] = 881.00 WHERE [Code] = 'ije' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpy', 'Bishnupriya', NULL, 88.20) END +VALUES ('bpy', 'Bishnupriya', NULL, 882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bishnupriya', [Definition] = NULL, [SortOrder] = 88.20 WHERE [Code] = 'bpy' END +SET [Description] = 'Bishnupriya', [Definition] = NULL, [SortOrder] = 882.00 WHERE [Code] = 'bpy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwh', 'Bishuo', NULL, 88.30) END +VALUES ('bwh', 'Bishuo', NULL, 883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bishuo', [Definition] = NULL, [SortOrder] = 88.30 WHERE [Code] = 'bwh' END +SET [Description] = 'Bishuo', [Definition] = NULL, [SortOrder] = 883.00 WHERE [Code] = 'bwh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnw', 'Bisis', NULL, 88.40) END +VALUES ('bnw', 'Bisis', NULL, 884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bisis', [Definition] = NULL, [SortOrder] = 88.40 WHERE [Code] = 'bnw' END +SET [Description] = 'Bisis', [Definition] = NULL, [SortOrder] = 884.00 WHERE [Code] = 'bnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bis', 'Bislama', NULL, 88.50) END +VALUES ('bis', 'Bislama', NULL, 885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bislama', [Definition] = NULL, [SortOrder] = 88.50 WHERE [Code] = 'bis' END +SET [Description] = 'Bislama', [Definition] = NULL, [SortOrder] = 885.00 WHERE [Code] = 'bis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bir', 'Bisorio', NULL, 88.60) END +VALUES ('bir', 'Bisorio', NULL, 886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bisorio', [Definition] = NULL, [SortOrder] = 88.60 WHERE [Code] = 'bir' END +SET [Description] = 'Bisorio', [Definition] = NULL, [SortOrder] = 886.00 WHERE [Code] = 'bir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bib', 'Bissa', NULL, 88.70) END +VALUES ('bib', 'Bissa', NULL, 887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bissa', [Definition] = NULL, [SortOrder] = 88.70 WHERE [Code] = 'bib' END +SET [Description] = 'Bissa', [Definition] = NULL, [SortOrder] = 887.00 WHERE [Code] = 'bib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzi', 'Bisu', NULL, 88.80) END +VALUES ('bzi', 'Bisu', NULL, 888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bisu', [Definition] = NULL, [SortOrder] = 88.80 WHERE [Code] = 'bzi' END +SET [Description] = 'Bisu', [Definition] = NULL, [SortOrder] = 888.00 WHERE [Code] = 'bzi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgk', 'Bit', NULL, 88.90) END +VALUES ('bgk', 'Bit', NULL, 889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bit', [Definition] = NULL, [SortOrder] = 88.90 WHERE [Code] = 'bgk' END +SET [Description] = 'Bit', [Definition] = NULL, [SortOrder] = 889.00 WHERE [Code] = 'bgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brt', 'Bitare', NULL, 89.00) END +VALUES ('brt', 'Bitare', NULL, 890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bitare', [Definition] = NULL, [SortOrder] = 89.00 WHERE [Code] = 'brt' END +SET [Description] = 'Bitare', [Definition] = NULL, [SortOrder] = 890.00 WHERE [Code] = 'brt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcc', 'Bitur', NULL, 89.10) END +VALUES ('mcc', 'Bitur', NULL, 891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bitur', [Definition] = NULL, [SortOrder] = 89.10 WHERE [Code] = 'mcc' END +SET [Description] = 'Bitur', [Definition] = NULL, [SortOrder] = 891.00 WHERE [Code] = 'mcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwm', 'Biwat', NULL, 89.20) END +VALUES ('bwm', 'Biwat', NULL, 892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biwat', [Definition] = NULL, [SortOrder] = 89.20 WHERE [Code] = 'bwm' END +SET [Description] = 'Biwat', [Definition] = NULL, [SortOrder] = 892.00 WHERE [Code] = 'bwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byo', 'Biyo', NULL, 89.30) END +VALUES ('byo', 'Biyo', NULL, 893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biyo', [Definition] = NULL, [SortOrder] = 89.30 WHERE [Code] = 'byo' END +SET [Description] = 'Biyo', [Definition] = NULL, [SortOrder] = 893.00 WHERE [Code] = 'byo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpm', 'Biyom', NULL, 89.40) END +VALUES ('bpm', 'Biyom', NULL, 894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Biyom', [Definition] = NULL, [SortOrder] = 89.40 WHERE [Code] = 'bpm' END +SET [Description] = 'Biyom', [Definition] = NULL, [SortOrder] = 894.00 WHERE [Code] = 'bpm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blp', 'Blablanga', NULL, 89.50) END +VALUES ('blp', 'Blablanga', NULL, 895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blablanga', [Definition] = NULL, [SortOrder] = 89.50 WHERE [Code] = 'blp' END +SET [Description] = 'Blablanga', [Definition] = NULL, [SortOrder] = 895.00 WHERE [Code] = 'blp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfh', 'Blafe', NULL, 89.60) END +VALUES ('bfh', 'Blafe', NULL, 896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blafe', [Definition] = NULL, [SortOrder] = 89.60 WHERE [Code] = 'bfh' END +SET [Description] = 'Blafe', [Definition] = NULL, [SortOrder] = 896.00 WHERE [Code] = 'bfh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'beu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('beu', 'Blagar', NULL, 89.70) END +VALUES ('beu', 'Blagar', NULL, 897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blagar', [Definition] = NULL, [SortOrder] = 89.70 WHERE [Code] = 'beu' END +SET [Description] = 'Blagar', [Definition] = NULL, [SortOrder] = 897.00 WHERE [Code] = 'beu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blr', 'Blang', NULL, 89.80) END +VALUES ('blr', 'Blang', NULL, 898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blang', [Definition] = NULL, [SortOrder] = 89.80 WHERE [Code] = 'blr' END +SET [Description] = 'Blang', [Definition] = NULL, [SortOrder] = 898.00 WHERE [Code] = 'blr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbl', 'Blissymbols', NULL, 89.90) END +VALUES ('zbl', 'Blissymbols', NULL, 899.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Blissymbols', [Definition] = NULL, [SortOrder] = 89.90 WHERE [Code] = 'zbl' END +SET [Description] = 'Blissymbols', [Definition] = NULL, [SortOrder] = 899.00 WHERE [Code] = 'zbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgl', 'Bo (Laos)', NULL, 90.00) END +VALUES ('bgl', 'Bo (Laos)', NULL, 900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bo (Laos)', [Definition] = NULL, [SortOrder] = 90.00 WHERE [Code] = 'bgl' END +SET [Description] = 'Bo (Laos)', [Definition] = NULL, [SortOrder] = 900.00 WHERE [Code] = 'bgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpw', 'Bo (Papua New Guinea)', NULL, 90.10) END +VALUES ('bpw', 'Bo (Papua New Guinea)', NULL, 901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bo (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 90.10 WHERE [Code] = 'bpw' END +SET [Description] = 'Bo (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 901.00 WHERE [Code] = 'bpw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mae', 'Bo-Rukul', NULL, 90.20) END +VALUES ('mae', 'Bo-Rukul', NULL, 902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bo-Rukul', [Definition] = NULL, [SortOrder] = 90.20 WHERE [Code] = 'mae' END +SET [Description] = 'Bo-Rukul', [Definition] = NULL, [SortOrder] = 902.00 WHERE [Code] = 'mae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mux', 'Bo-Ung', NULL, 90.30) END +VALUES ('mux', 'Bo-Ung', NULL, 903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bo-Ung', [Definition] = NULL, [SortOrder] = 90.30 WHERE [Code] = 'mux' END +SET [Description] = 'Bo-Ung', [Definition] = NULL, [SortOrder] = 903.00 WHERE [Code] = 'mux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzn', 'Boano (Maluku)', NULL, 90.40) END +VALUES ('bzn', 'Boano (Maluku)', NULL, 904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boano (Maluku)', [Definition] = NULL, [SortOrder] = 90.40 WHERE [Code] = 'bzn' END +SET [Description] = 'Boano (Maluku)', [Definition] = NULL, [SortOrder] = 904.00 WHERE [Code] = 'bzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzl', 'Boano (Sulawesi)', NULL, 90.50) END +VALUES ('bzl', 'Boano (Sulawesi)', NULL, 905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boano (Sulawesi)', [Definition] = NULL, [SortOrder] = 90.50 WHERE [Code] = 'bzl' END +SET [Description] = 'Boano (Sulawesi)', [Definition] = NULL, [SortOrder] = 905.00 WHERE [Code] = 'bzl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgb', 'Bobongko', NULL, 90.60) END +VALUES ('bgb', 'Bobongko', NULL, 906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bobongko', [Definition] = NULL, [SortOrder] = 90.60 WHERE [Code] = 'bgb' END +SET [Description] = 'Bobongko', [Definition] = NULL, [SortOrder] = 906.00 WHERE [Code] = 'bgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bty', 'Bobot', NULL, 90.70) END +VALUES ('bty', 'Bobot', NULL, 907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bobot', [Definition] = NULL, [SortOrder] = 90.70 WHERE [Code] = 'bty' END +SET [Description] = 'Bobot', [Definition] = NULL, [SortOrder] = 907.00 WHERE [Code] = 'bty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boy', 'Bodo (Central African Republic)', NULL, 90.80) END +VALUES ('boy', 'Bodo (Central African Republic)', NULL, 908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bodo (Central African Republic)', [Definition] = NULL, [SortOrder] = 90.80 WHERE [Code] = 'boy' END +SET [Description] = 'Bodo (Central African Republic)', [Definition] = NULL, [SortOrder] = 908.00 WHERE [Code] = 'boy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brx', 'Bodo (India)', NULL, 90.90) END +VALUES ('brx', 'Bodo (India)', NULL, 909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bodo (India)', [Definition] = NULL, [SortOrder] = 90.90 WHERE [Code] = 'brx' END +SET [Description] = 'Bodo (India)', [Definition] = NULL, [SortOrder] = 909.00 WHERE [Code] = 'brx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbj', 'Bodo Gadaba', NULL, 91.00) END +VALUES ('gbj', 'Bodo Gadaba', NULL, 910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bodo Gadaba', [Definition] = NULL, [SortOrder] = 91.00 WHERE [Code] = 'gbj' END +SET [Description] = 'Bodo Gadaba', [Definition] = NULL, [SortOrder] = 910.00 WHERE [Code] = 'gbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdv', 'Bodo Parja', NULL, 91.10) END +VALUES ('bdv', 'Bodo Parja', NULL, 911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bodo Parja', [Definition] = NULL, [SortOrder] = 91.10 WHERE [Code] = 'bdv' END +SET [Description] = 'Bodo Parja', [Definition] = NULL, [SortOrder] = 911.00 WHERE [Code] = 'bdv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bff') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bff', 'Bofi', NULL, 91.20) END +VALUES ('bff', 'Bofi', NULL, 912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bofi', [Definition] = NULL, [SortOrder] = 91.20 WHERE [Code] = 'bff' END +SET [Description] = 'Bofi', [Definition] = NULL, [SortOrder] = 912.00 WHERE [Code] = 'bff' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvw', 'Boga', NULL, 91.30) END +VALUES ('bvw', 'Boga', NULL, 913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boga', [Definition] = NULL, [SortOrder] = 91.30 WHERE [Code] = 'bvw' END +SET [Description] = 'Boga', [Definition] = NULL, [SortOrder] = 913.00 WHERE [Code] = 'bvw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boq', 'Bogaya', NULL, 91.40) END +VALUES ('boq', 'Bogaya', NULL, 914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bogaya', [Definition] = NULL, [SortOrder] = 91.40 WHERE [Code] = 'boq' END +SET [Description] = 'Bogaya', [Definition] = NULL, [SortOrder] = 914.00 WHERE [Code] = 'boq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bux', 'Boghom', NULL, 91.50) END +VALUES ('bux', 'Boghom', NULL, 915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boghom', [Definition] = NULL, [SortOrder] = 91.50 WHERE [Code] = 'bux' END +SET [Description] = 'Boghom', [Definition] = NULL, [SortOrder] = 915.00 WHERE [Code] = 'bux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqu', 'Boguru', NULL, 91.60) END +VALUES ('bqu', 'Boguru', NULL, 916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boguru', [Definition] = NULL, [SortOrder] = 91.60 WHERE [Code] = 'bqu' END +SET [Description] = 'Boguru', [Definition] = NULL, [SortOrder] = 916.00 WHERE [Code] = 'bqu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhn', 'Bohtan Neo-Aramaic', NULL, 91.70) END +VALUES ('bhn', 'Bohtan Neo-Aramaic', NULL, 917.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bohtan Neo-Aramaic', [Definition] = NULL, [SortOrder] = 91.70 WHERE [Code] = 'bhn' END +SET [Description] = 'Bohtan Neo-Aramaic', [Definition] = NULL, [SortOrder] = 917.00 WHERE [Code] = 'bhn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzf', 'Boikin', NULL, 91.80) END +VALUES ('bzf', 'Boikin', NULL, 918.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boikin', [Definition] = NULL, [SortOrder] = 91.80 WHERE [Code] = 'bzf' END +SET [Description] = 'Boikin', [Definition] = NULL, [SortOrder] = 918.00 WHERE [Code] = 'bzf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybk', 'Bokha', NULL, 91.90) END +VALUES ('ybk', 'Bokha', NULL, 919.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bokha', [Definition] = NULL, [SortOrder] = 91.90 WHERE [Code] = 'ybk' END +SET [Description] = 'Bokha', [Definition] = NULL, [SortOrder] = 919.00 WHERE [Code] = 'ybk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqc', 'Boko (Benin)', NULL, 92.00) END +VALUES ('bqc', 'Boko (Benin)', NULL, 920.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boko (Benin)', [Definition] = NULL, [SortOrder] = 92.00 WHERE [Code] = 'bqc' END +SET [Description] = 'Boko (Benin)', [Definition] = NULL, [SortOrder] = 920.00 WHERE [Code] = 'bqc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkp', 'Boko (Democratic Republic of Congo)', NULL, 92.10) END +VALUES ('bkp', 'Boko (Democratic Republic of Congo)', NULL, 921.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boko (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 92.10 WHERE [Code] = 'bkp' END +SET [Description] = 'Boko (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 921.00 WHERE [Code] = 'bkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bus', 'Bokobaru', NULL, 92.20) END +VALUES ('bus', 'Bokobaru', NULL, 922.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bokobaru', [Definition] = NULL, [SortOrder] = 92.20 WHERE [Code] = 'bus' END +SET [Description] = 'Bokobaru', [Definition] = NULL, [SortOrder] = 922.00 WHERE [Code] = 'bus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdt', 'Bokoto', NULL, 92.30) END +VALUES ('bdt', 'Bokoto', NULL, 923.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bokoto', [Definition] = NULL, [SortOrder] = 92.30 WHERE [Code] = 'bdt' END +SET [Description] = 'Bokoto', [Definition] = NULL, [SortOrder] = 923.00 WHERE [Code] = 'bdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bky', 'Bokyi', NULL, 92.40) END +VALUES ('bky', 'Bokyi', NULL, 924.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bokyi', [Definition] = NULL, [SortOrder] = 92.40 WHERE [Code] = 'bky' END +SET [Description] = 'Bokyi', [Definition] = NULL, [SortOrder] = 924.00 WHERE [Code] = 'bky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnp', 'Bola', NULL, 92.50) END +VALUES ('bnp', 'Bola', NULL, 925.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bola', [Definition] = NULL, [SortOrder] = 92.50 WHERE [Code] = 'bnp' END +SET [Description] = 'Bola', [Definition] = NULL, [SortOrder] = 925.00 WHERE [Code] = 'bnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bld', 'Bolango', NULL, 92.60) END +VALUES ('bld', 'Bolango', NULL, 926.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolango', [Definition] = NULL, [SortOrder] = 92.60 WHERE [Code] = 'bld' END +SET [Description] = 'Bolango', [Definition] = NULL, [SortOrder] = 926.00 WHERE [Code] = 'bld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bol', 'Bole', NULL, 92.70) END +VALUES ('bol', 'Bole', NULL, 927.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bole', [Definition] = NULL, [SortOrder] = 92.70 WHERE [Code] = 'bol' END +SET [Description] = 'Bole', [Definition] = NULL, [SortOrder] = 927.00 WHERE [Code] = 'bol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbo', 'Bolgarian', NULL, 92.80) END +VALUES ('xbo', 'Bolgarian', NULL, 928.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolgarian', [Definition] = NULL, [SortOrder] = 92.80 WHERE [Code] = 'xbo' END +SET [Description] = 'Bolgarian', [Definition] = NULL, [SortOrder] = 928.00 WHERE [Code] = 'xbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvo', 'Bolgo', NULL, 92.90) END +VALUES ('bvo', 'Bolgo', NULL, 929.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolgo', [Definition] = NULL, [SortOrder] = 92.90 WHERE [Code] = 'bvo' END +SET [Description] = 'Bolgo', [Definition] = NULL, [SortOrder] = 929.00 WHERE [Code] = 'bvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bli', 'Bolia', NULL, 93.00) END +VALUES ('bli', 'Bolia', NULL, 930.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolia', [Definition] = NULL, [SortOrder] = 93.00 WHERE [Code] = 'bli' END +SET [Description] = 'Bolia', [Definition] = NULL, [SortOrder] = 930.00 WHERE [Code] = 'bli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smk', 'Bolinao', NULL, 93.10) END +VALUES ('smk', 'Bolinao', NULL, 931.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolinao', [Definition] = NULL, [SortOrder] = 93.10 WHERE [Code] = 'smk' END +SET [Description] = 'Bolinao', [Definition] = NULL, [SortOrder] = 931.00 WHERE [Code] = 'smk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvl', 'Bolivian Sign Language', NULL, 93.20) END +VALUES ('bvl', 'Bolivian Sign Language', NULL, 932.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolivian Sign Language', [Definition] = NULL, [SortOrder] = 93.20 WHERE [Code] = 'bvl' END +SET [Description] = 'Bolivian Sign Language', [Definition] = NULL, [SortOrder] = 932.00 WHERE [Code] = 'bvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkt', 'Boloki', NULL, 93.30) END +VALUES ('bkt', 'Boloki', NULL, 933.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boloki', [Definition] = NULL, [SortOrder] = 93.30 WHERE [Code] = 'bkt' END +SET [Description] = 'Boloki', [Definition] = NULL, [SortOrder] = 933.00 WHERE [Code] = 'bkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bof', 'Bolon', NULL, 93.40) END +VALUES ('bof', 'Bolon', NULL, 934.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolon', [Definition] = NULL, [SortOrder] = 93.40 WHERE [Code] = 'bof' END +SET [Description] = 'Bolon', [Definition] = NULL, [SortOrder] = 934.00 WHERE [Code] = 'bof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzm', 'Bolondo', NULL, 93.50) END +VALUES ('bzm', 'Bolondo', NULL, 935.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolondo', [Definition] = NULL, [SortOrder] = 93.50 WHERE [Code] = 'bzm' END +SET [Description] = 'Bolondo', [Definition] = NULL, [SortOrder] = 935.00 WHERE [Code] = 'bzm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blj', 'Bolongan', NULL, 93.60) END +VALUES ('blj', 'Bolongan', NULL, 936.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolongan', [Definition] = NULL, [SortOrder] = 93.60 WHERE [Code] = 'blj' END +SET [Description] = 'Bolongan', [Definition] = NULL, [SortOrder] = 936.00 WHERE [Code] = 'blj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ply') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ply', 'Bolyu', NULL, 93.70) END +VALUES ('ply', 'Bolyu', NULL, 937.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bolyu', [Definition] = NULL, [SortOrder] = 93.70 WHERE [Code] = 'ply' END +SET [Description] = 'Bolyu', [Definition] = NULL, [SortOrder] = 937.00 WHERE [Code] = 'ply' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmf', 'Bom-Kim', NULL, 93.80) END +VALUES ('bmf', 'Bom-Kim', NULL, 938.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bom-Kim', [Definition] = NULL, [SortOrder] = 93.80 WHERE [Code] = 'bmf' END +SET [Description] = 'Bom-Kim', [Definition] = NULL, [SortOrder] = 938.00 WHERE [Code] = 'bmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boh', 'Boma', NULL, 93.90) END +VALUES ('boh', 'Boma', NULL, 939.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boma', [Definition] = NULL, [SortOrder] = 93.90 WHERE [Code] = 'boh' END +SET [Description] = 'Boma', [Definition] = NULL, [SortOrder] = 939.00 WHERE [Code] = 'boh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bml', 'Bomboli', NULL, 94.00) END +VALUES ('bml', 'Bomboli', NULL, 940.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomboli', [Definition] = NULL, [SortOrder] = 94.00 WHERE [Code] = 'bml' END +SET [Description] = 'Bomboli', [Definition] = NULL, [SortOrder] = 940.00 WHERE [Code] = 'bml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bws', 'Bomboma', NULL, 94.10) END +VALUES ('bws', 'Bomboma', NULL, 941.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomboma', [Definition] = NULL, [SortOrder] = 94.10 WHERE [Code] = 'bws' END +SET [Description] = 'Bomboma', [Definition] = NULL, [SortOrder] = 941.00 WHERE [Code] = 'bws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmx', 'Bomitaba', NULL, 94.20) END +VALUES ('zmx', 'Bomitaba', NULL, 942.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomitaba', [Definition] = NULL, [SortOrder] = 94.20 WHERE [Code] = 'zmx' END +SET [Description] = 'Bomitaba', [Definition] = NULL, [SortOrder] = 942.00 WHERE [Code] = 'zmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmq', 'Bomu', NULL, 94.30) END +VALUES ('bmq', 'Bomu', NULL, 943.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomu', [Definition] = NULL, [SortOrder] = 94.30 WHERE [Code] = 'bmq' END +SET [Description] = 'Bomu', [Definition] = NULL, [SortOrder] = 943.00 WHERE [Code] = 'bmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmw', 'Bomwali', NULL, 94.40) END +VALUES ('bmw', 'Bomwali', NULL, 944.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bomwali', [Definition] = NULL, [SortOrder] = 94.40 WHERE [Code] = 'bmw' END +SET [Description] = 'Bomwali', [Definition] = NULL, [SortOrder] = 944.00 WHERE [Code] = 'bmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glc', 'Bon Gula', NULL, 94.50) END +VALUES ('glc', 'Bon Gula', NULL, 945.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bon Gula', [Definition] = NULL, [SortOrder] = 94.50 WHERE [Code] = 'glc' END +SET [Description] = 'Bon Gula', [Definition] = NULL, [SortOrder] = 945.00 WHERE [Code] = 'glc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peh', 'Bonan', NULL, 94.60) END +VALUES ('peh', 'Bonan', NULL, 946.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonan', [Definition] = NULL, [SortOrder] = 94.60 WHERE [Code] = 'peh' END +SET [Description] = 'Bonan', [Definition] = NULL, [SortOrder] = 946.00 WHERE [Code] = 'peh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bou', 'Bondei', NULL, 94.70) END +VALUES ('bou', 'Bondei', NULL, 947.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bondei', [Definition] = NULL, [SortOrder] = 94.70 WHERE [Code] = 'bou' END +SET [Description] = 'Bondei', [Definition] = NULL, [SortOrder] = 947.00 WHERE [Code] = 'bou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfw', 'Bondo', NULL, 94.80) END +VALUES ('bfw', 'Bondo', NULL, 948.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bondo', [Definition] = NULL, [SortOrder] = 94.80 WHERE [Code] = 'bfw' END +SET [Description] = 'Bondo', [Definition] = NULL, [SortOrder] = 948.00 WHERE [Code] = 'bfw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzc', 'Bondoukou Kulango', NULL, 94.90) END +VALUES ('kzc', 'Bondoukou Kulango', NULL, 949.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bondoukou Kulango', [Definition] = NULL, [SortOrder] = 94.90 WHERE [Code] = 'kzc' END +SET [Description] = 'Bondoukou Kulango', [Definition] = NULL, [SortOrder] = 949.00 WHERE [Code] = 'kzc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbu', 'Bondum Dom Dogon', NULL, 95.00) END +VALUES ('dbu', 'Bondum Dom Dogon', NULL, 950.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bondum Dom Dogon', [Definition] = NULL, [SortOrder] = 95.00 WHERE [Code] = 'dbu' END +SET [Description] = 'Bondum Dom Dogon', [Definition] = NULL, [SortOrder] = 950.00 WHERE [Code] = 'dbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bna', 'Bonerate', NULL, 95.10) END +VALUES ('bna', 'Bonerate', NULL, 951.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonerate', [Definition] = NULL, [SortOrder] = 95.10 WHERE [Code] = 'bna' END +SET [Description] = 'Bonerate', [Definition] = NULL, [SortOrder] = 951.00 WHERE [Code] = 'bna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnv', 'Bonerif', NULL, 95.20) END +VALUES ('bnv', 'Bonerif', NULL, 952.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonerif', [Definition] = NULL, [SortOrder] = 95.20 WHERE [Code] = 'bnv' END +SET [Description] = 'Bonerif', [Definition] = NULL, [SortOrder] = 952.00 WHERE [Code] = 'bnv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdg', 'Bonggi', NULL, 95.30) END +VALUES ('bdg', 'Bonggi', NULL, 953.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonggi', [Definition] = NULL, [SortOrder] = 95.30 WHERE [Code] = 'bdg' END +SET [Description] = 'Bonggi', [Definition] = NULL, [SortOrder] = 953.00 WHERE [Code] = 'bdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpg', 'Bonggo', NULL, 95.40) END +VALUES ('bpg', 'Bonggo', NULL, 954.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonggo', [Definition] = NULL, [SortOrder] = 95.40 WHERE [Code] = 'bpg' END +SET [Description] = 'Bonggo', [Definition] = NULL, [SortOrder] = 954.00 WHERE [Code] = 'bpg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bui', 'Bongili', NULL, 95.50) END +VALUES ('bui', 'Bongili', NULL, 955.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bongili', [Definition] = NULL, [SortOrder] = 95.50 WHERE [Code] = 'bui' END +SET [Description] = 'Bongili', [Definition] = NULL, [SortOrder] = 955.00 WHERE [Code] = 'bui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bot', 'Bongo', NULL, 95.60) END +VALUES ('bot', 'Bongo', NULL, 956.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bongo', [Definition] = NULL, [SortOrder] = 95.60 WHERE [Code] = 'bot' END +SET [Description] = 'Bongo', [Definition] = NULL, [SortOrder] = 956.00 WHERE [Code] = 'bot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpu', 'Bongu', NULL, 95.70) END +VALUES ('bpu', 'Bongu', NULL, 957.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bongu', [Definition] = NULL, [SortOrder] = 95.70 WHERE [Code] = 'bpu' END +SET [Description] = 'Bongu', [Definition] = NULL, [SortOrder] = 957.00 WHERE [Code] = 'bpu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bok', 'Bonjo', NULL, 95.80) END +VALUES ('bok', 'Bonjo', NULL, 958.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonjo', [Definition] = NULL, [SortOrder] = 95.80 WHERE [Code] = 'bok' END +SET [Description] = 'Bonjo', [Definition] = NULL, [SortOrder] = 958.00 WHERE [Code] = 'bok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvg', 'Bonkeng', NULL, 95.90) END +VALUES ('bvg', 'Bonkeng', NULL, 959.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonkeng', [Definition] = NULL, [SortOrder] = 95.90 WHERE [Code] = 'bvg' END +SET [Description] = 'Bonkeng', [Definition] = NULL, [SortOrder] = 959.00 WHERE [Code] = 'bvg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bop', 'Bonkiman', NULL, 96.00) END +VALUES ('bop', 'Bonkiman', NULL, 960.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bonkiman', [Definition] = NULL, [SortOrder] = 96.00 WHERE [Code] = 'bop' END +SET [Description] = 'Bonkiman', [Definition] = NULL, [SortOrder] = 960.00 WHERE [Code] = 'bop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnc', 'Bontok', NULL, 96.10) END +VALUES ('bnc', 'Bontok', NULL, 961.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bontok', [Definition] = NULL, [SortOrder] = 96.10 WHERE [Code] = 'bnc' END +SET [Description] = 'Bontok', [Definition] = NULL, [SortOrder] = 961.00 WHERE [Code] = 'bnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnb', 'Bookan', NULL, 96.20) END +VALUES ('bnb', 'Bookan', NULL, 962.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bookan', [Definition] = NULL, [SortOrder] = 96.20 WHERE [Code] = 'bnb' END +SET [Description] = 'Bookan', [Definition] = NULL, [SortOrder] = 962.00 WHERE [Code] = 'bnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnl', 'Boon', NULL, 96.30) END +VALUES ('bnl', 'Boon', NULL, 963.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boon', [Definition] = NULL, [SortOrder] = 96.30 WHERE [Code] = 'bnl' END +SET [Description] = 'Boon', [Definition] = NULL, [SortOrder] = 963.00 WHERE [Code] = 'bnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvf', 'Boor', NULL, 96.40) END +VALUES ('bvf', 'Boor', NULL, 964.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boor', [Definition] = NULL, [SortOrder] = 96.40 WHERE [Code] = 'bvf' END +SET [Description] = 'Boor', [Definition] = NULL, [SortOrder] = 964.00 WHERE [Code] = 'bvf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boa', 'Bora', NULL, 96.50) END +VALUES ('boa', 'Bora', NULL, 965.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bora', [Definition] = NULL, [SortOrder] = 96.50 WHERE [Code] = 'boa' END +SET [Description] = 'Bora', [Definition] = NULL, [SortOrder] = 965.00 WHERE [Code] = 'boa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gax', 'Borana-Arsi-Guji Oromo', NULL, 96.60) END +VALUES ('gax', 'Borana-Arsi-Guji Oromo', NULL, 966.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borana-Arsi-Guji Oromo', [Definition] = NULL, [SortOrder] = 96.60 WHERE [Code] = 'gax' END +SET [Description] = 'Borana-Arsi-Guji Oromo', [Definition] = NULL, [SortOrder] = 966.00 WHERE [Code] = 'gax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvn', 'Border Kuna', NULL, 96.70) END +VALUES ('kvn', 'Border Kuna', NULL, 967.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Border Kuna', [Definition] = NULL, [SortOrder] = 96.70 WHERE [Code] = 'kvn' END +SET [Description] = 'Border Kuna', [Definition] = NULL, [SortOrder] = 967.00 WHERE [Code] = 'kvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gai', 'Borei', NULL, 96.80) END +VALUES ('gai', 'Borei', NULL, 968.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borei', [Definition] = NULL, [SortOrder] = 96.80 WHERE [Code] = 'gai' END +SET [Description] = 'Borei', [Definition] = NULL, [SortOrder] = 968.00 WHERE [Code] = 'gai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fue', 'Borgu Fulfulde', NULL, 96.90) END +VALUES ('fue', 'Borgu Fulfulde', NULL, 969.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borgu Fulfulde', [Definition] = NULL, [SortOrder] = 96.90 WHERE [Code] = 'fue' END +SET [Description] = 'Borgu Fulfulde', [Definition] = NULL, [SortOrder] = 969.00 WHERE [Code] = 'fue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwo', 'Boro (Ethiopia)', NULL, 97.00) END +VALUES ('bwo', 'Boro (Ethiopia)', NULL, 970.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boro (Ethiopia)', [Definition] = NULL, [SortOrder] = 97.00 WHERE [Code] = 'bwo' END +SET [Description] = 'Boro (Ethiopia)', [Definition] = NULL, [SortOrder] = 970.00 WHERE [Code] = 'bwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxb', 'Boro (Ghana)', NULL, 97.10) END +VALUES ('xxb', 'Boro (Ghana)', NULL, 971.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boro (Ghana)', [Definition] = NULL, [SortOrder] = 97.10 WHERE [Code] = 'xxb' END +SET [Description] = 'Boro (Ghana)', [Definition] = NULL, [SortOrder] = 971.00 WHERE [Code] = 'xxb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksr', 'Borong', NULL, 97.20) END +VALUES ('ksr', 'Borong', NULL, 972.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borong', [Definition] = NULL, [SortOrder] = 97.20 WHERE [Code] = 'ksr' END +SET [Description] = 'Borong', [Definition] = NULL, [SortOrder] = 972.00 WHERE [Code] = 'ksr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bor', 'Borôro', NULL, 97.30) END +VALUES ('bor', 'Borôro', NULL, 973.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Borôro', [Definition] = NULL, [SortOrder] = 97.30 WHERE [Code] = 'bor' END +SET [Description] = 'Borôro', [Definition] = NULL, [SortOrder] = 973.00 WHERE [Code] = 'bor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brn', 'Boruca', NULL, 97.40) END +VALUES ('brn', 'Boruca', NULL, 974.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boruca', [Definition] = NULL, [SortOrder] = 97.40 WHERE [Code] = 'brn' END +SET [Description] = 'Boruca', [Definition] = NULL, [SortOrder] = 974.00 WHERE [Code] = 'brn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwf', 'Boselewa', NULL, 97.50) END +VALUES ('bwf', 'Boselewa', NULL, 975.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Boselewa', [Definition] = NULL, [SortOrder] = 97.50 WHERE [Code] = 'bwf' END +SET [Description] = 'Boselewa', [Definition] = NULL, [SortOrder] = 975.00 WHERE [Code] = 'bwf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqs', 'Bosngun', NULL, 97.60) END +VALUES ('bqs', 'Bosngun', NULL, 976.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bosngun', [Definition] = NULL, [SortOrder] = 97.60 WHERE [Code] = 'bqs' END +SET [Description] = 'Bosngun', [Definition] = NULL, [SortOrder] = 976.00 WHERE [Code] = 'bqs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bos', 'Bosnian', NULL, 97.70) END +VALUES ('bos', 'Bosnian', NULL, 977.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bosnian', [Definition] = NULL, [SortOrder] = 97.70 WHERE [Code] = 'bos' END +SET [Description] = 'Bosnian', [Definition] = NULL, [SortOrder] = 977.00 WHERE [Code] = 'bos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmj', 'Bote-Majhi', NULL, 97.80) END +VALUES ('bmj', 'Bote-Majhi', NULL, 978.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bote-Majhi', [Definition] = NULL, [SortOrder] = 97.80 WHERE [Code] = 'bmj' END +SET [Description] = 'Bote-Majhi', [Definition] = NULL, [SortOrder] = 978.00 WHERE [Code] = 'bmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bph', 'Botlikh', NULL, 97.90) END +VALUES ('bph', 'Botlikh', NULL, 979.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Botlikh', [Definition] = NULL, [SortOrder] = 97.90 WHERE [Code] = 'bph' END +SET [Description] = 'Botlikh', [Definition] = NULL, [SortOrder] = 979.00 WHERE [Code] = 'bph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbl', 'Botolan Sambal', NULL, 98.00) END +VALUES ('sbl', 'Botolan Sambal', NULL, 980.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Botolan Sambal', [Definition] = NULL, [SortOrder] = 98.00 WHERE [Code] = 'sbl' END +SET [Description] = 'Botolan Sambal', [Definition] = NULL, [SortOrder] = 980.00 WHERE [Code] = 'sbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nku', 'Bouna Kulango', NULL, 98.10) END +VALUES ('nku', 'Bouna Kulango', NULL, 981.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bouna Kulango', [Definition] = NULL, [SortOrder] = 98.10 WHERE [Code] = 'nku' END +SET [Description] = 'Bouna Kulango', [Definition] = NULL, [SortOrder] = 981.00 WHERE [Code] = 'nku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suo', 'Bouni', NULL, 98.20) END +VALUES ('suo', 'Bouni', NULL, 982.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bouni', [Definition] = NULL, [SortOrder] = 98.20 WHERE [Code] = 'suo' END +SET [Description] = 'Bouni', [Definition] = NULL, [SortOrder] = 982.00 WHERE [Code] = 'suo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcc', 'Bouyei', NULL, 98.30) END +VALUES ('pcc', 'Bouyei', NULL, 983.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bouyei', [Definition] = NULL, [SortOrder] = 98.30 WHERE [Code] = 'pcc' END +SET [Description] = 'Bouyei', [Definition] = NULL, [SortOrder] = 983.00 WHERE [Code] = 'pcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzo', 'Bozaba', NULL, 98.40) END +VALUES ('bzo', 'Bozaba', NULL, 984.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bozaba', [Definition] = NULL, [SortOrder] = 98.40 WHERE [Code] = 'bzo' END +SET [Description] = 'Bozaba', [Definition] = NULL, [SortOrder] = 984.00 WHERE [Code] = 'bzo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aof', 'Bragat', NULL, 98.50) END +VALUES ('aof', 'Bragat', NULL, 985.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bragat', [Definition] = NULL, [SortOrder] = 98.50 WHERE [Code] = 'aof' END +SET [Description] = 'Bragat', [Definition] = NULL, [SortOrder] = 985.00 WHERE [Code] = 'aof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brh', 'Brahui', NULL, 98.60) END +VALUES ('brh', 'Brahui', NULL, 986.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brahui', [Definition] = NULL, [SortOrder] = 98.60 WHERE [Code] = 'brh' END +SET [Description] = 'Brahui', [Definition] = NULL, [SortOrder] = 986.00 WHERE [Code] = 'brh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bra', 'Braj', NULL, 98.70) END +VALUES ('bra', 'Braj', NULL, 987.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Braj', [Definition] = NULL, [SortOrder] = 987.00 WHERE [Code] = 'bra' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('brb', 'Brao', NULL, 988.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Braj', [Definition] = NULL, [SortOrder] = 98.70 WHERE [Code] = 'bra' END +SET [Description] = 'Brao', [Definition] = NULL, [SortOrder] = 988.00 WHERE [Code] = 'brb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzs', 'Brazilian Sign Language', NULL, 98.80) END +VALUES ('bzs', 'Brazilian Sign Language', NULL, 989.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brazilian Sign Language', [Definition] = NULL, [SortOrder] = 98.80 WHERE [Code] = 'bzs' END +SET [Description] = 'Brazilian Sign Language', [Definition] = NULL, [SortOrder] = 989.00 WHERE [Code] = 'bzs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buq', 'Brem', NULL, 98.90) END +VALUES ('buq', 'Brem', NULL, 990.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brem', [Definition] = NULL, [SortOrder] = 98.90 WHERE [Code] = 'buq' END +SET [Description] = 'Brem', [Definition] = NULL, [SortOrder] = 990.00 WHERE [Code] = 'buq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brq', 'Breri', NULL, 99.00) END +VALUES ('brq', 'Breri', NULL, 991.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Breri', [Definition] = NULL, [SortOrder] = 99.00 WHERE [Code] = 'brq' END +SET [Description] = 'Breri', [Definition] = NULL, [SortOrder] = 991.00 WHERE [Code] = 'brq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bre', 'Breton', NULL, 99.10) END +VALUES ('bre', 'Breton', NULL, 992.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Breton', [Definition] = NULL, [SortOrder] = 99.10 WHERE [Code] = 'bre' END +SET [Description] = 'Breton', [Definition] = NULL, [SortOrder] = 992.00 WHERE [Code] = 'bre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzd', 'Bribri', NULL, 99.20) END +VALUES ('bzd', 'Bribri', NULL, 993.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bribri', [Definition] = NULL, [SortOrder] = 99.20 WHERE [Code] = 'bzd' END +SET [Description] = 'Bribri', [Definition] = NULL, [SortOrder] = 993.00 WHERE [Code] = 'bzd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rib', 'Bribri Sign Language', NULL, 99.30) END +VALUES ('rib', 'Bribri Sign Language', NULL, 994.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bribri Sign Language', [Definition] = NULL, [SortOrder] = 99.30 WHERE [Code] = 'rib' END +SET [Description] = 'Bribri Sign Language', [Definition] = NULL, [SortOrder] = 994.00 WHERE [Code] = 'rib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzt', 'Brithenig', NULL, 99.40) END +VALUES ('bzt', 'Brithenig', NULL, 995.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brithenig', [Definition] = NULL, [SortOrder] = 99.40 WHERE [Code] = 'bzt' END +SET [Description] = 'Brithenig', [Definition] = NULL, [SortOrder] = 995.00 WHERE [Code] = 'bzt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfi', 'British Sign Language', NULL, 99.50) END +VALUES ('bfi', 'British Sign Language', NULL, 996.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'British Sign Language', [Definition] = NULL, [SortOrder] = 99.50 WHERE [Code] = 'bfi' END +SET [Description] = 'British Sign Language', [Definition] = NULL, [SortOrder] = 996.00 WHERE [Code] = 'bfi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bro', 'Brokkat', NULL, 99.60) END +VALUES ('bro', 'Brokkat', NULL, 997.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brokkat', [Definition] = NULL, [SortOrder] = 99.60 WHERE [Code] = 'bro' END +SET [Description] = 'Brokkat', [Definition] = NULL, [SortOrder] = 997.00 WHERE [Code] = 'bro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgt', 'Brokpake', NULL, 99.70) END +VALUES ('sgt', 'Brokpake', NULL, 998.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brokpake', [Definition] = NULL, [SortOrder] = 99.70 WHERE [Code] = 'sgt' END +SET [Description] = 'Brokpake', [Definition] = NULL, [SortOrder] = 998.00 WHERE [Code] = 'sgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkk', 'Brokskat', NULL, 99.80) END +VALUES ('bkk', 'Brokskat', NULL, 999.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brokskat', [Definition] = NULL, [SortOrder] = 99.80 WHERE [Code] = 'bkk' END +SET [Description] = 'Brokskat', [Definition] = NULL, [SortOrder] = 999.00 WHERE [Code] = 'bkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plw', 'Brooke''s Point Palawano', NULL, 99.90) END +VALUES ('plw', 'Brooke''s Point Palawano', NULL, 1000.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brooke''s Point Palawano', [Definition] = NULL, [SortOrder] = 99.90 WHERE [Code] = 'plw' END +SET [Description] = 'Brooke''s Point Palawano', [Definition] = NULL, [SortOrder] = 1000.00 WHERE [Code] = 'plw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpl', 'Broome Pearling Lugger Pidgin', NULL, 100.00) END +VALUES ('bpl', 'Broome Pearling Lugger Pidgin', NULL, 1001.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Broome Pearling Lugger Pidgin', [Definition] = NULL, [SortOrder] = 100.00 WHERE [Code] = 'bpl' END +SET [Description] = 'Broome Pearling Lugger Pidgin', [Definition] = NULL, [SortOrder] = 1001.00 WHERE [Code] = 'bpl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnb', 'Brunca Sign Language', NULL, 100.10) END +VALUES ('rnb', 'Brunca Sign Language', NULL, 1002.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brunca Sign Language', [Definition] = NULL, [SortOrder] = 100.10 WHERE [Code] = 'rnb' END +SET [Description] = 'Brunca Sign Language', [Definition] = NULL, [SortOrder] = 1002.00 WHERE [Code] = 'rnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxd', 'Brunei', NULL, 100.20) END +VALUES ('kxd', 'Brunei', NULL, 1003.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brunei', [Definition] = NULL, [SortOrder] = 100.20 WHERE [Code] = 'kxd' END +SET [Description] = 'Brunei', [Definition] = NULL, [SortOrder] = 1003.00 WHERE [Code] = 'kxd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsb', 'Brunei Bisaya', NULL, 100.30) END +VALUES ('bsb', 'Brunei Bisaya', NULL, 1004.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brunei Bisaya', [Definition] = NULL, [SortOrder] = 100.30 WHERE [Code] = 'bsb' END +SET [Description] = 'Brunei Bisaya', [Definition] = NULL, [SortOrder] = 1004.00 WHERE [Code] = 'bsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpz', 'Bruny Island Tasmanian', NULL, 100.40) END +VALUES ('xpz', 'Bruny Island Tasmanian', NULL, 1005.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bruny Island Tasmanian', [Definition] = NULL, [SortOrder] = 100.40 WHERE [Code] = 'xpz' END +SET [Description] = 'Bruny Island Tasmanian', [Definition] = NULL, [SortOrder] = 1005.00 WHERE [Code] = 'xpz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbu', 'Bu (Bauchi State)', NULL, 100.50) END +VALUES ('zbu', 'Bu (Bauchi State)', NULL, 1006.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bu (Bauchi State)', [Definition] = NULL, [SortOrder] = 100.50 WHERE [Code] = 'zbu' END +SET [Description] = 'Bu (Bauchi State)', [Definition] = NULL, [SortOrder] = 1006.00 WHERE [Code] = 'zbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jid', 'Bu (Kaduna State)', NULL, 100.60) END +VALUES ('jid', 'Bu (Kaduna State)', NULL, 1007.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bu (Kaduna State)', [Definition] = NULL, [SortOrder] = 100.60 WHERE [Code] = 'jid' END +SET [Description] = 'Bu (Kaduna State)', [Definition] = NULL, [SortOrder] = 1007.00 WHERE [Code] = 'jid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwx', 'Bu-Nao Bunu', NULL, 100.70) END +VALUES ('bwx', 'Bu-Nao Bunu', NULL, 1008.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bu-Nao Bunu', [Definition] = NULL, [SortOrder] = 100.70 WHERE [Code] = 'bwx' END +SET [Description] = 'Bu-Nao Bunu', [Definition] = NULL, [SortOrder] = 1008.00 WHERE [Code] = 'bwx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bub', 'Bua', NULL, 100.80) END +VALUES ('bub', 'Bua', NULL, 1009.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bua', [Definition] = NULL, [SortOrder] = 100.80 WHERE [Code] = 'bub' END +SET [Description] = 'Bua', [Definition] = NULL, [SortOrder] = 1009.00 WHERE [Code] = 'bub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbl', 'Bualkhaw Chin', NULL, 100.90) END +VALUES ('cbl', 'Bualkhaw Chin', NULL, 1010.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bualkhaw Chin', [Definition] = NULL, [SortOrder] = 100.90 WHERE [Code] = 'cbl' END +SET [Description] = 'Bualkhaw Chin', [Definition] = NULL, [SortOrder] = 1010.00 WHERE [Code] = 'cbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'box') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('box', 'Buamu', NULL, 101.00) END +VALUES ('box', 'Buamu', NULL, 1011.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buamu', [Definition] = NULL, [SortOrder] = 101.00 WHERE [Code] = 'box' END +SET [Description] = 'Buamu', [Definition] = NULL, [SortOrder] = 1011.00 WHERE [Code] = 'box' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvb', 'Bube', NULL, 101.10) END +VALUES ('bvb', 'Bube', NULL, 1012.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bube', [Definition] = NULL, [SortOrder] = 101.10 WHERE [Code] = 'bvb' END +SET [Description] = 'Bube', [Definition] = NULL, [SortOrder] = 1012.00 WHERE [Code] = 'bvb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buw', 'Bubi', NULL, 101.20) END +VALUES ('buw', 'Bubi', NULL, 1013.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bubi', [Definition] = NULL, [SortOrder] = 101.20 WHERE [Code] = 'buw' END +SET [Description] = 'Bubi', [Definition] = NULL, [SortOrder] = 1013.00 WHERE [Code] = 'buw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbx', 'Bubia', NULL, 101.30) END +VALUES ('bbx', 'Bubia', NULL, 1014.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bubia', [Definition] = NULL, [SortOrder] = 101.30 WHERE [Code] = 'bbx' END +SET [Description] = 'Bubia', [Definition] = NULL, [SortOrder] = 1014.00 WHERE [Code] = 'bbx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stt', 'Budeh Stieng', NULL, 101.40) END +VALUES ('stt', 'Budeh Stieng', NULL, 1015.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budeh Stieng', [Definition] = NULL, [SortOrder] = 101.40 WHERE [Code] = 'stt' END +SET [Description] = 'Budeh Stieng', [Definition] = NULL, [SortOrder] = 1015.00 WHERE [Code] = 'stt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btp', 'Budibud', NULL, 101.50) END +VALUES ('btp', 'Budibud', NULL, 1016.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budibud', [Definition] = NULL, [SortOrder] = 101.50 WHERE [Code] = 'btp' END +SET [Description] = 'Budibud', [Definition] = NULL, [SortOrder] = 1016.00 WHERE [Code] = 'btp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdx', 'Budong-Budong', NULL, 101.60) END +VALUES ('bdx', 'Budong-Budong', NULL, 1017.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budong-Budong', [Definition] = NULL, [SortOrder] = 101.60 WHERE [Code] = 'bdx' END +SET [Description] = 'Budong-Budong', [Definition] = NULL, [SortOrder] = 1017.00 WHERE [Code] = 'bdx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buu', 'Budu', NULL, 101.70) END +VALUES ('buu', 'Budu', NULL, 1018.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budu', [Definition] = NULL, [SortOrder] = 101.70 WHERE [Code] = 'buu' END +SET [Description] = 'Budu', [Definition] = NULL, [SortOrder] = 1018.00 WHERE [Code] = 'buu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdk', 'Budukh', NULL, 101.80) END +VALUES ('bdk', 'Budukh', NULL, 1019.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budukh', [Definition] = NULL, [SortOrder] = 101.80 WHERE [Code] = 'bdk' END +SET [Description] = 'Budukh', [Definition] = NULL, [SortOrder] = 1019.00 WHERE [Code] = 'bdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdm', 'Buduma', NULL, 101.90) END +VALUES ('bdm', 'Buduma', NULL, 1020.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buduma', [Definition] = NULL, [SortOrder] = 101.90 WHERE [Code] = 'bdm' END +SET [Description] = 'Buduma', [Definition] = NULL, [SortOrder] = 1020.00 WHERE [Code] = 'bdm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bja', 'Budza', NULL, 102.00) END +VALUES ('bja', 'Budza', NULL, 1021.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Budza', [Definition] = NULL, [SortOrder] = 102.00 WHERE [Code] = 'bja' END +SET [Description] = 'Budza', [Definition] = NULL, [SortOrder] = 1021.00 WHERE [Code] = 'bja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbh', 'Bugan', NULL, 102.10) END +VALUES ('bbh', 'Bugan', NULL, 1022.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bugan', [Definition] = NULL, [SortOrder] = 102.10 WHERE [Code] = 'bbh' END +SET [Description] = 'Bugan', [Definition] = NULL, [SortOrder] = 1022.00 WHERE [Code] = 'bbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buk', 'Bugawac', NULL, 102.20) END +VALUES ('buk', 'Bugawac', NULL, 1023.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bugawac', [Definition] = NULL, [SortOrder] = 102.20 WHERE [Code] = 'buk' END +SET [Description] = 'Bugawac', [Definition] = NULL, [SortOrder] = 1023.00 WHERE [Code] = 'buk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgt', 'Bughotu', NULL, 102.30) END +VALUES ('bgt', 'Bughotu', NULL, 1024.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bughotu', [Definition] = NULL, [SortOrder] = 102.30 WHERE [Code] = 'bgt' END +SET [Description] = 'Bughotu', [Definition] = NULL, [SortOrder] = 1024.00 WHERE [Code] = 'bgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bug', 'Buginese', NULL, 102.40) END +VALUES ('bug', 'Buginese', NULL, 1025.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buginese', [Definition] = NULL, [SortOrder] = 102.40 WHERE [Code] = 'bug' END +SET [Description] = 'Buginese', [Definition] = NULL, [SortOrder] = 1025.00 WHERE [Code] = 'bug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sab', 'Buglere', NULL, 102.50) END +VALUES ('sab', 'Buglere', NULL, 1026.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buglere', [Definition] = NULL, [SortOrder] = 102.50 WHERE [Code] = 'sab' END +SET [Description] = 'Buglere', [Definition] = NULL, [SortOrder] = 1026.00 WHERE [Code] = 'sab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgg', 'Bugun', NULL, 102.60) END +VALUES ('bgg', 'Bugun', NULL, 1027.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bugun', [Definition] = NULL, [SortOrder] = 102.60 WHERE [Code] = 'bgg' END +SET [Description] = 'Bugun', [Definition] = NULL, [SortOrder] = 1027.00 WHERE [Code] = 'bgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ubl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ubl', 'Buhi''non Bikol', NULL, 102.70) END +VALUES ('ubl', 'Buhi''non Bikol', NULL, 1028.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buhi''non Bikol', [Definition] = NULL, [SortOrder] = 102.70 WHERE [Code] = 'ubl' END +SET [Description] = 'Buhi''non Bikol', [Definition] = NULL, [SortOrder] = 1028.00 WHERE [Code] = 'ubl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bku', 'Buhid', NULL, 102.80) END +VALUES ('bku', 'Buhid', NULL, 1029.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buhid', [Definition] = NULL, [SortOrder] = 102.80 WHERE [Code] = 'bku' END +SET [Description] = 'Buhid', [Definition] = NULL, [SortOrder] = 1029.00 WHERE [Code] = 'bku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxh', 'Buhutu', NULL, 102.90) END +VALUES ('bxh', 'Buhutu', NULL, 1030.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buhutu', [Definition] = NULL, [SortOrder] = 102.90 WHERE [Code] = 'bxh' END +SET [Description] = 'Buhutu', [Definition] = NULL, [SortOrder] = 1030.00 WHERE [Code] = 'bxh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdo', 'Bukar-Sadung Bidayuh', NULL, 103.00) END +VALUES ('sdo', 'Bukar-Sadung Bidayuh', NULL, 1031.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukar-Sadung Bidayuh', [Definition] = NULL, [SortOrder] = 103.00 WHERE [Code] = 'sdo' END +SET [Description] = 'Bukar-Sadung Bidayuh', [Definition] = NULL, [SortOrder] = 1031.00 WHERE [Code] = 'sdo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvk', 'Bukat', NULL, 103.10) END +VALUES ('bvk', 'Bukat', NULL, 1032.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukat', [Definition] = NULL, [SortOrder] = 103.10 WHERE [Code] = 'bvk' END +SET [Description] = 'Bukat', [Definition] = NULL, [SortOrder] = 1032.00 WHERE [Code] = 'bvk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhh', 'Bukharic', NULL, 103.20) END +VALUES ('bhh', 'Bukharic', NULL, 1033.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukharic', [Definition] = NULL, [SortOrder] = 103.20 WHERE [Code] = 'bhh' END +SET [Description] = 'Bukharic', [Definition] = NULL, [SortOrder] = 1033.00 WHERE [Code] = 'bhh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvu', 'Bukit Malay', NULL, 103.30) END +VALUES ('bvu', 'Bukit Malay', NULL, 1034.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukit Malay', [Definition] = NULL, [SortOrder] = 103.30 WHERE [Code] = 'bvu' END +SET [Description] = 'Bukit Malay', [Definition] = NULL, [SortOrder] = 1034.00 WHERE [Code] = 'bvu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkn', 'Bukitan', NULL, 103.40) END +VALUES ('bkn', 'Bukitan', NULL, 1035.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukitan', [Definition] = NULL, [SortOrder] = 103.40 WHERE [Code] = 'bkn' END +SET [Description] = 'Bukitan', [Definition] = NULL, [SortOrder] = 1035.00 WHERE [Code] = 'bkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ape') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ape', 'Bukiyip', NULL, 103.50) END +VALUES ('ape', 'Bukiyip', NULL, 1036.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukiyip', [Definition] = NULL, [SortOrder] = 103.50 WHERE [Code] = 'ape' END +SET [Description] = 'Bukiyip', [Definition] = NULL, [SortOrder] = 1036.00 WHERE [Code] = 'ape' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkb', 'Buksa', NULL, 103.60) END +VALUES ('tkb', 'Buksa', NULL, 1037.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buksa', [Definition] = NULL, [SortOrder] = 103.60 WHERE [Code] = 'tkb' END +SET [Description] = 'Buksa', [Definition] = NULL, [SortOrder] = 1037.00 WHERE [Code] = 'tkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxk', 'Bukusu', NULL, 103.70) END +VALUES ('bxk', 'Bukusu', NULL, 1038.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukusu', [Definition] = NULL, [SortOrder] = 103.70 WHERE [Code] = 'bxk' END +SET [Description] = 'Bukusu', [Definition] = NULL, [SortOrder] = 1038.00 WHERE [Code] = 'bxk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buz', 'Bukwen', NULL, 103.80) END +VALUES ('buz', 'Bukwen', NULL, 1039.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bukwen', [Definition] = NULL, [SortOrder] = 103.80 WHERE [Code] = 'buz' END +SET [Description] = 'Bukwen', [Definition] = NULL, [SortOrder] = 1039.00 WHERE [Code] = 'buz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bul', 'Bulgarian', NULL, 103.90) END +VALUES ('bul', 'Bulgarian', NULL, 1040.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulgarian', [Definition] = NULL, [SortOrder] = 103.90 WHERE [Code] = 'bul' END +SET [Description] = 'Bulgarian', [Definition] = NULL, [SortOrder] = 1040.00 WHERE [Code] = 'bul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqn', 'Bulgarian Sign Language', NULL, 104.00) END +VALUES ('bqn', 'Bulgarian Sign Language', NULL, 1041.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulgarian Sign Language', [Definition] = NULL, [SortOrder] = 104.00 WHERE [Code] = 'bqn' END +SET [Description] = 'Bulgarian Sign Language', [Definition] = NULL, [SortOrder] = 1041.00 WHERE [Code] = 'bqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmp', 'Bulgebi', NULL, 104.10) END +VALUES ('bmp', 'Bulgebi', NULL, 1042.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Bulgebi', [Definition] = NULL, [SortOrder] = 1042.00 WHERE [Code] = 'bmp' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('uly', 'Buli', NULL, 1043.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulgebi', [Definition] = NULL, [SortOrder] = 104.10 WHERE [Code] = 'bmp' END +SET [Description] = 'Buli', [Definition] = NULL, [SortOrder] = 1043.00 WHERE [Code] = 'uly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwu', 'Buli (Ghana)', NULL, 104.20) END +VALUES ('bwu', 'Buli (Ghana)', NULL, 1044.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buli (Ghana)', [Definition] = NULL, [SortOrder] = 104.20 WHERE [Code] = 'bwu' END +SET [Description] = 'Buli (Ghana)', [Definition] = NULL, [SortOrder] = 1044.00 WHERE [Code] = 'bwu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzq', 'Buli (Indonesia)', NULL, 104.30) END +VALUES ('bzq', 'Buli (Indonesia)', NULL, 1045.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buli (Indonesia)', [Definition] = NULL, [SortOrder] = 104.30 WHERE [Code] = 'bzq' END +SET [Description] = 'Buli (Indonesia)', [Definition] = NULL, [SortOrder] = 1045.00 WHERE [Code] = 'bzq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buy', 'Bullom So', NULL, 104.40) END +VALUES ('buy', 'Bullom So', NULL, 1046.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bullom So', [Definition] = NULL, [SortOrder] = 104.40 WHERE [Code] = 'buy' END +SET [Description] = 'Bullom So', [Definition] = NULL, [SortOrder] = 1046.00 WHERE [Code] = 'buy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sti', 'Bulo Stieng', NULL, 104.50) END +VALUES ('sti', 'Bulo Stieng', NULL, 1047.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulo Stieng', [Definition] = NULL, [SortOrder] = 104.50 WHERE [Code] = 'sti' END +SET [Description] = 'Bulo Stieng', [Definition] = NULL, [SortOrder] = 1047.00 WHERE [Code] = 'sti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bum', 'Bulu (Cameroon)', NULL, 104.60) END +VALUES ('bum', 'Bulu (Cameroon)', NULL, 1048.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulu (Cameroon)', [Definition] = NULL, [SortOrder] = 104.60 WHERE [Code] = 'bum' END +SET [Description] = 'Bulu (Cameroon)', [Definition] = NULL, [SortOrder] = 1048.00 WHERE [Code] = 'bum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjl', 'Bulu (Papua New Guinea)', NULL, 104.70) END +VALUES ('bjl', 'Bulu (Papua New Guinea)', NULL, 1049.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bulu (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 104.70 WHERE [Code] = 'bjl' END +SET [Description] = 'Bulu (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 1049.00 WHERE [Code] = 'bjl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmv', 'Bum', NULL, 104.80) END +VALUES ('bmv', 'Bum', NULL, 1050.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bum', [Definition] = NULL, [SortOrder] = 104.80 WHERE [Code] = 'bmv' END +SET [Description] = 'Bum', [Definition] = NULL, [SortOrder] = 1050.00 WHERE [Code] = 'bmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byp', 'Bumaji', NULL, 104.90) END +VALUES ('byp', 'Bumaji', NULL, 1051.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bumaji', [Definition] = NULL, [SortOrder] = 104.90 WHERE [Code] = 'byp' END +SET [Description] = 'Bumaji', [Definition] = NULL, [SortOrder] = 1051.00 WHERE [Code] = 'byp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvp', 'Bumang', NULL, 105.00) END +VALUES ('bvp', 'Bumang', NULL, 1052.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bumang', [Definition] = NULL, [SortOrder] = 105.00 WHERE [Code] = 'bvp' END +SET [Description] = 'Bumang', [Definition] = NULL, [SortOrder] = 1052.00 WHERE [Code] = 'bvp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aon', 'Bumbita Arapesh', NULL, 105.10) END +VALUES ('aon', 'Bumbita Arapesh', NULL, 1053.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bumbita Arapesh', [Definition] = NULL, [SortOrder] = 105.10 WHERE [Code] = 'aon' END +SET [Description] = 'Bumbita Arapesh', [Definition] = NULL, [SortOrder] = 1053.00 WHERE [Code] = 'aon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjz', 'Bumthangkha', NULL, 105.20) END +VALUES ('kjz', 'Bumthangkha', NULL, 1054.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bumthangkha', [Definition] = NULL, [SortOrder] = 105.20 WHERE [Code] = 'kjz' END +SET [Description] = 'Bumthangkha', [Definition] = NULL, [SortOrder] = 1054.00 WHERE [Code] = 'kjz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buv', 'Bun', NULL, 105.30) END +VALUES ('buv', 'Bun', NULL, 1055.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bun', [Definition] = NULL, [SortOrder] = 105.30 WHERE [Code] = 'buv' END +SET [Description] = 'Bun', [Definition] = NULL, [SortOrder] = 1055.00 WHERE [Code] = 'buv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvn', 'Buna', NULL, 105.40) END +VALUES ('bvn', 'Buna', NULL, 1056.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buna', [Definition] = NULL, [SortOrder] = 105.40 WHERE [Code] = 'bvn' END +SET [Description] = 'Buna', [Definition] = NULL, [SortOrder] = 1056.00 WHERE [Code] = 'bvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfn', 'Bunak', NULL, 105.50) END +VALUES ('bfn', 'Bunak', NULL, 1057.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunak', [Definition] = NULL, [SortOrder] = 105.50 WHERE [Code] = 'bfn' END +SET [Description] = 'Bunak', [Definition] = NULL, [SortOrder] = 1057.00 WHERE [Code] = 'bfn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdd', 'Bunama', NULL, 105.60) END +VALUES ('bdd', 'Bunama', NULL, 1058.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunama', [Definition] = NULL, [SortOrder] = 105.60 WHERE [Code] = 'bdd' END +SET [Description] = 'Bunama', [Definition] = NULL, [SortOrder] = 1058.00 WHERE [Code] = 'bdd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bns', 'Bundeli', NULL, 105.70) END +VALUES ('bns', 'Bundeli', NULL, 1059.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bundeli', [Definition] = NULL, [SortOrder] = 105.70 WHERE [Code] = 'bns' END +SET [Description] = 'Bundeli', [Definition] = NULL, [SortOrder] = 1059.00 WHERE [Code] = 'bns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqd', 'Bung', NULL, 105.80) END +VALUES ('bqd', 'Bung', NULL, 1060.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bung', [Definition] = NULL, [SortOrder] = 105.80 WHERE [Code] = 'bqd' END +SET [Description] = 'Bung', [Definition] = NULL, [SortOrder] = 1060.00 WHERE [Code] = 'bqd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'but') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('but', 'Bungain', NULL, 105.90) END +VALUES ('but', 'Bungain', NULL, 1061.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bungain', [Definition] = NULL, [SortOrder] = 105.90 WHERE [Code] = 'but' END +SET [Description] = 'Bungain', [Definition] = NULL, [SortOrder] = 1061.00 WHERE [Code] = 'but' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbg', 'Bunganditj', NULL, 106.00) END +VALUES ('xbg', 'Bunganditj', NULL, 1062.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunganditj', [Definition] = NULL, [SortOrder] = 106.00 WHERE [Code] = 'xbg' END +SET [Description] = 'Bunganditj', [Definition] = NULL, [SortOrder] = 1062.00 WHERE [Code] = 'xbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkz', 'Bungku', NULL, 106.10) END +VALUES ('bkz', 'Bungku', NULL, 1063.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bungku', [Definition] = NULL, [SortOrder] = 106.10 WHERE [Code] = 'bkz' END +SET [Description] = 'Bungku', [Definition] = NULL, [SortOrder] = 1063.00 WHERE [Code] = 'bkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wun', 'Bungu', NULL, 106.20) END +VALUES ('wun', 'Bungu', NULL, 1064.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bungu', [Definition] = NULL, [SortOrder] = 106.20 WHERE [Code] = 'wun' END +SET [Description] = 'Bungu', [Definition] = NULL, [SortOrder] = 1064.00 WHERE [Code] = 'wun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgb', 'Bunoge Dogon', NULL, 106.30) END +VALUES ('dgb', 'Bunoge Dogon', NULL, 1065.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunoge Dogon', [Definition] = NULL, [SortOrder] = 106.30 WHERE [Code] = 'dgb' END +SET [Description] = 'Bunoge Dogon', [Definition] = NULL, [SortOrder] = 1065.00 WHERE [Code] = 'dgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bck', 'Bunuba', NULL, 106.40) END +VALUES ('bck', 'Bunuba', NULL, 1066.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunuba', [Definition] = NULL, [SortOrder] = 106.40 WHERE [Code] = 'bck' END +SET [Description] = 'Bunuba', [Definition] = NULL, [SortOrder] = 1066.00 WHERE [Code] = 'bck' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnn', 'Bunun', NULL, 106.50) END +VALUES ('bnn', 'Bunun', NULL, 1067.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bunun', [Definition] = NULL, [SortOrder] = 106.50 WHERE [Code] = 'bnn' END +SET [Description] = 'Bunun', [Definition] = NULL, [SortOrder] = 1067.00 WHERE [Code] = 'bnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blf', 'Buol', NULL, 106.60) END +VALUES ('blf', 'Buol', NULL, 1068.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buol', [Definition] = NULL, [SortOrder] = 106.60 WHERE [Code] = 'blf' END +SET [Description] = 'Buol', [Definition] = NULL, [SortOrder] = 1068.00 WHERE [Code] = 'blf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwr', 'Bura-Pabir', NULL, 106.70) END +VALUES ('bwr', 'Bura-Pabir', NULL, 1069.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bura-Pabir', [Definition] = NULL, [SortOrder] = 106.70 WHERE [Code] = 'bwr' END +SET [Description] = 'Bura-Pabir', [Definition] = NULL, [SortOrder] = 1069.00 WHERE [Code] = 'bwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bys', 'Burak', NULL, 106.80) END +VALUES ('bys', 'Burak', NULL, 1070.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burak', [Definition] = NULL, [SortOrder] = 106.80 WHERE [Code] = 'bys' END +SET [Description] = 'Burak', [Definition] = NULL, [SortOrder] = 1070.00 WHERE [Code] = 'bys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkg', 'Buraka', NULL, 106.90) END +VALUES ('bkg', 'Buraka', NULL, 1071.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buraka', [Definition] = NULL, [SortOrder] = 106.90 WHERE [Code] = 'bkg' END +SET [Description] = 'Buraka', [Definition] = NULL, [SortOrder] = 1071.00 WHERE [Code] = 'bkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvr', 'Burarra', NULL, 107.00) END +VALUES ('bvr', 'Burarra', NULL, 1072.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burarra', [Definition] = NULL, [SortOrder] = 107.00 WHERE [Code] = 'bvr' END +SET [Description] = 'Burarra', [Definition] = NULL, [SortOrder] = 1072.00 WHERE [Code] = 'bvr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bti', 'Burate', NULL, 107.10) END +VALUES ('bti', 'Burate', NULL, 1073.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burate', [Definition] = NULL, [SortOrder] = 107.10 WHERE [Code] = 'bti' END +SET [Description] = 'Burate', [Definition] = NULL, [SortOrder] = 1073.00 WHERE [Code] = 'bti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxn', 'Burduna', NULL, 107.20) END +VALUES ('bxn', 'Burduna', NULL, 1074.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burduna', [Definition] = NULL, [SortOrder] = 107.20 WHERE [Code] = 'bxn' END +SET [Description] = 'Burduna', [Definition] = NULL, [SortOrder] = 1074.00 WHERE [Code] = 'bxn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvh', 'Bure', NULL, 107.30) END +VALUES ('bvh', 'Bure', NULL, 1075.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bure', [Definition] = NULL, [SortOrder] = 107.30 WHERE [Code] = 'bvh' END +SET [Description] = 'Bure', [Definition] = NULL, [SortOrder] = 1075.00 WHERE [Code] = 'bvh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bua', 'Buriat', NULL, 107.40) END +VALUES ('bua', 'Buriat', NULL, 1076.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buriat', [Definition] = NULL, [SortOrder] = 107.40 WHERE [Code] = 'bua' END +SET [Description] = 'Buriat', [Definition] = NULL, [SortOrder] = 1076.00 WHERE [Code] = 'bua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bji', 'Burji', NULL, 107.50) END +VALUES ('bji', 'Burji', NULL, 1077.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burji', [Definition] = NULL, [SortOrder] = 107.50 WHERE [Code] = 'bji' END +SET [Description] = 'Burji', [Definition] = NULL, [SortOrder] = 1077.00 WHERE [Code] = 'bji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vrt', 'Burmbar', NULL, 107.60) END +VALUES ('vrt', 'Burmbar', NULL, 1078.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burmbar', [Definition] = NULL, [SortOrder] = 107.60 WHERE [Code] = 'vrt' END +SET [Description] = 'Burmbar', [Definition] = NULL, [SortOrder] = 1078.00 WHERE [Code] = 'vrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mya', 'Burmese', NULL, 107.70) END +VALUES ('mya', 'Burmese', NULL, 1079.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burmese', [Definition] = NULL, [SortOrder] = 107.70 WHERE [Code] = 'mya' END +SET [Description] = 'Burmese', [Definition] = NULL, [SortOrder] = 1079.00 WHERE [Code] = 'mya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzu', 'Burmeso', NULL, 107.80) END +VALUES ('bzu', 'Burmeso', NULL, 1080.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burmeso', [Definition] = NULL, [SortOrder] = 107.80 WHERE [Code] = 'bzu' END +SET [Description] = 'Burmeso', [Definition] = NULL, [SortOrder] = 1080.00 WHERE [Code] = 'bzu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhs', 'Buru (Indonesia)', NULL, 107.90) END +VALUES ('mhs', 'Buru (Indonesia)', NULL, 1081.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buru (Indonesia)', [Definition] = NULL, [SortOrder] = 107.90 WHERE [Code] = 'mhs' END +SET [Description] = 'Buru (Indonesia)', [Definition] = NULL, [SortOrder] = 1081.00 WHERE [Code] = 'mhs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqw', 'Buru (Nigeria)', NULL, 108.00) END +VALUES ('bqw', 'Buru (Nigeria)', NULL, 1082.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buru (Nigeria)', [Definition] = NULL, [SortOrder] = 108.00 WHERE [Code] = 'bqw' END +SET [Description] = 'Buru (Nigeria)', [Definition] = NULL, [SortOrder] = 1082.00 WHERE [Code] = 'bqw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bry', 'Burui', NULL, 108.10) END +VALUES ('bry', 'Burui', NULL, 1083.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burui', [Definition] = NULL, [SortOrder] = 108.10 WHERE [Code] = 'bry' END +SET [Description] = 'Burui', [Definition] = NULL, [SortOrder] = 1083.00 WHERE [Code] = 'bry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aip', 'Burumakok', NULL, 108.20) END +VALUES ('aip', 'Burumakok', NULL, 1084.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burumakok', [Definition] = NULL, [SortOrder] = 108.20 WHERE [Code] = 'aip' END +SET [Description] = 'Burumakok', [Definition] = NULL, [SortOrder] = 1084.00 WHERE [Code] = 'aip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdi', 'Burun', NULL, 108.30) END +VALUES ('bdi', 'Burun', NULL, 1085.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burun', [Definition] = NULL, [SortOrder] = 108.30 WHERE [Code] = 'bdi' END +SET [Description] = 'Burun', [Definition] = NULL, [SortOrder] = 1085.00 WHERE [Code] = 'bdi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsb', 'Burundian Sign Language', NULL, 108.40) END +VALUES ('lsb', 'Burundian Sign Language', NULL, 1086.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burundian Sign Language', [Definition] = NULL, [SortOrder] = 108.40 WHERE [Code] = 'lsb' END +SET [Description] = 'Burundian Sign Language', [Definition] = NULL, [SortOrder] = 1086.00 WHERE [Code] = 'lsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bds', 'Burunge', NULL, 108.50) END +VALUES ('bds', 'Burunge', NULL, 1087.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burunge', [Definition] = NULL, [SortOrder] = 108.50 WHERE [Code] = 'bds' END +SET [Description] = 'Burunge', [Definition] = NULL, [SortOrder] = 1087.00 WHERE [Code] = 'bds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsk', 'Burushaski', NULL, 108.60) END +VALUES ('bsk', 'Burushaski', NULL, 1088.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burushaski', [Definition] = NULL, [SortOrder] = 108.60 WHERE [Code] = 'bsk' END +SET [Description] = 'Burushaski', [Definition] = NULL, [SortOrder] = 1088.00 WHERE [Code] = 'bsk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqr', 'Burusu', NULL, 108.70) END +VALUES ('bqr', 'Burusu', NULL, 1089.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Burusu', [Definition] = NULL, [SortOrder] = 108.70 WHERE [Code] = 'bqr' END +SET [Description] = 'Burusu', [Definition] = NULL, [SortOrder] = 1089.00 WHERE [Code] = 'bqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asi', 'Buruwai', NULL, 108.80) END +VALUES ('asi', 'Buruwai', NULL, 1090.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buruwai', [Definition] = NULL, [SortOrder] = 108.80 WHERE [Code] = 'asi' END +SET [Description] = 'Buruwai', [Definition] = NULL, [SortOrder] = 1090.00 WHERE [Code] = 'asi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqp', 'Busa', NULL, 108.90) END +VALUES ('bqp', 'Busa', NULL, 1091.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busa', [Definition] = NULL, [SortOrder] = 108.90 WHERE [Code] = 'bqp' END +SET [Description] = 'Busa', [Definition] = NULL, [SortOrder] = 1091.00 WHERE [Code] = 'bqp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxs', 'Busam', NULL, 109.00) END +VALUES ('bxs', 'Busam', NULL, 1092.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busam', [Definition] = NULL, [SortOrder] = 109.00 WHERE [Code] = 'bxs' END +SET [Description] = 'Busam', [Definition] = NULL, [SortOrder] = 1092.00 WHERE [Code] = 'bxs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsm', 'Busami', NULL, 109.10) END +VALUES ('bsm', 'Busami', NULL, 1093.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busami', [Definition] = NULL, [SortOrder] = 109.10 WHERE [Code] = 'bsm' END +SET [Description] = 'Busami', [Definition] = NULL, [SortOrder] = 1093.00 WHERE [Code] = 'bsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfg', 'Busang Kayan', NULL, 109.20) END +VALUES ('bfg', 'Busang Kayan', NULL, 1094.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busang Kayan', [Definition] = NULL, [SortOrder] = 109.20 WHERE [Code] = 'bfg' END +SET [Description] = 'Busang Kayan', [Definition] = NULL, [SortOrder] = 1094.00 WHERE [Code] = 'bfg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buc', 'Bushi', NULL, 109.30) END +VALUES ('buc', 'Bushi', NULL, 1095.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bushi', [Definition] = NULL, [SortOrder] = 109.30 WHERE [Code] = 'buc' END +SET [Description] = 'Bushi', [Definition] = NULL, [SortOrder] = 1095.00 WHERE [Code] = 'buc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buf', 'Bushoong', NULL, 109.40) END +VALUES ('buf', 'Bushoong', NULL, 1096.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bushoong', [Definition] = NULL, [SortOrder] = 109.40 WHERE [Code] = 'buf' END +SET [Description] = 'Bushoong', [Definition] = NULL, [SortOrder] = 1096.00 WHERE [Code] = 'buf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bso', 'Buso', NULL, 109.50) END +VALUES ('bso', 'Buso', NULL, 1097.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buso', [Definition] = NULL, [SortOrder] = 109.50 WHERE [Code] = 'bso' END +SET [Description] = 'Buso', [Definition] = NULL, [SortOrder] = 1097.00 WHERE [Code] = 'bso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bup', 'Busoa', NULL, 109.60) END +VALUES ('bup', 'Busoa', NULL, 1098.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busoa', [Definition] = NULL, [SortOrder] = 109.60 WHERE [Code] = 'bup' END +SET [Description] = 'Busoa', [Definition] = NULL, [SortOrder] = 1098.00 WHERE [Code] = 'bup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dox', 'Bussa', NULL, 109.70) END +VALUES ('dox', 'Bussa', NULL, 1099.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bussa', [Definition] = NULL, [SortOrder] = 109.70 WHERE [Code] = 'dox' END +SET [Description] = 'Bussa', [Definition] = NULL, [SortOrder] = 1099.00 WHERE [Code] = 'dox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bju', 'Busuu', NULL, 109.80) END +VALUES ('bju', 'Busuu', NULL, 1100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Busuu', [Definition] = NULL, [SortOrder] = 109.80 WHERE [Code] = 'bju' END +SET [Description] = 'Busuu', [Definition] = NULL, [SortOrder] = 1100.00 WHERE [Code] = 'bju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyb', 'Butbut Kalinga', NULL, 109.90) END +VALUES ('kyb', 'Butbut Kalinga', NULL, 1101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Butbut Kalinga', [Definition] = NULL, [SortOrder] = 109.90 WHERE [Code] = 'kyb' END +SET [Description] = 'Butbut Kalinga', [Definition] = NULL, [SortOrder] = 1101.00 WHERE [Code] = 'kyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnr', 'Butmas-Tur', NULL, 110.00) END +VALUES ('bnr', 'Butmas-Tur', NULL, 1102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Butmas-Tur', [Definition] = NULL, [SortOrder] = 110.00 WHERE [Code] = 'bnr' END +SET [Description] = 'Butmas-Tur', [Definition] = NULL, [SortOrder] = 1102.00 WHERE [Code] = 'bnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btw', 'Butuanon', NULL, 110.10) END +VALUES ('btw', 'Butuanon', NULL, 1103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Butuanon', [Definition] = NULL, [SortOrder] = 110.10 WHERE [Code] = 'btw' END +SET [Description] = 'Butuanon', [Definition] = NULL, [SortOrder] = 1103.00 WHERE [Code] = 'btw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhs', 'Buwal', NULL, 110.20) END +VALUES ('bhs', 'Buwal', NULL, 1104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buwal', [Definition] = NULL, [SortOrder] = 110.20 WHERE [Code] = 'bhs' END +SET [Description] = 'Buwal', [Definition] = NULL, [SortOrder] = 1104.00 WHERE [Code] = 'bhs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byi', 'Buyu', NULL, 110.30) END +VALUES ('byi', 'Buyu', NULL, 1105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buyu', [Definition] = NULL, [SortOrder] = 110.30 WHERE [Code] = 'byi' END +SET [Description] = 'Buyu', [Definition] = NULL, [SortOrder] = 1105.00 WHERE [Code] = 'byi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jiy', 'Buyuan Jinuo', NULL, 110.40) END +VALUES ('jiy', 'Buyuan Jinuo', NULL, 1106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Buyuan Jinuo', [Definition] = NULL, [SortOrder] = 110.40 WHERE [Code] = 'jiy' END +SET [Description] = 'Buyuan Jinuo', [Definition] = NULL, [SortOrder] = 1106.00 WHERE [Code] = 'jiy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bww', 'Bwa', NULL, 110.50) END +VALUES ('bww', 'Bwa', NULL, 1107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwa', [Definition] = NULL, [SortOrder] = 110.50 WHERE [Code] = 'bww' END +SET [Description] = 'Bwa', [Definition] = NULL, [SortOrder] = 1107.00 WHERE [Code] = 'bww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwd', 'Bwaidoka', NULL, 110.60) END +VALUES ('bwd', 'Bwaidoka', NULL, 1108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwaidoka', [Definition] = NULL, [SortOrder] = 110.60 WHERE [Code] = 'bwd' END +SET [Description] = 'Bwaidoka', [Definition] = NULL, [SortOrder] = 1108.00 WHERE [Code] = 'bwd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tte', 'Bwanabwana', NULL, 110.70) END +VALUES ('tte', 'Bwanabwana', NULL, 1109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwanabwana', [Definition] = NULL, [SortOrder] = 110.70 WHERE [Code] = 'tte' END +SET [Description] = 'Bwanabwana', [Definition] = NULL, [SortOrder] = 1109.00 WHERE [Code] = 'tte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwa', 'Bwatoo', NULL, 110.80) END +VALUES ('bwa', 'Bwatoo', NULL, 1110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwatoo', [Definition] = NULL, [SortOrder] = 110.80 WHERE [Code] = 'bwa' END +SET [Description] = 'Bwatoo', [Definition] = NULL, [SortOrder] = 1110.00 WHERE [Code] = 'bwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwe', 'Bwe Karen', NULL, 110.90) END +VALUES ('bwe', 'Bwe Karen', NULL, 1111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwe Karen', [Definition] = NULL, [SortOrder] = 110.90 WHERE [Code] = 'bwe' END +SET [Description] = 'Bwe Karen', [Definition] = NULL, [SortOrder] = 1111.00 WHERE [Code] = 'bwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwl', 'Bwela', NULL, 111.00) END +VALUES ('bwl', 'Bwela', NULL, 1112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwela', [Definition] = NULL, [SortOrder] = 111.00 WHERE [Code] = 'bwl' END +SET [Description] = 'Bwela', [Definition] = NULL, [SortOrder] = 1112.00 WHERE [Code] = 'bwl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwc', 'Bwile', NULL, 111.10) END +VALUES ('bwc', 'Bwile', NULL, 1113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwile', [Definition] = NULL, [SortOrder] = 111.10 WHERE [Code] = 'bwc' END +SET [Description] = 'Bwile', [Definition] = NULL, [SortOrder] = 1113.00 WHERE [Code] = 'bwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwz', 'Bwisi', NULL, 111.20) END +VALUES ('bwz', 'Bwisi', NULL, 1114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Bwisi', [Definition] = NULL, [SortOrder] = 111.20 WHERE [Code] = 'bwz' END +SET [Description] = 'Bwisi', [Definition] = NULL, [SortOrder] = 1114.00 WHERE [Code] = 'bwz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bee', 'Byangsi', NULL, 111.30) END +VALUES ('bee', 'Byangsi', NULL, 1115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Byangsi', [Definition] = NULL, [SortOrder] = 111.30 WHERE [Code] = 'bee' END +SET [Description] = 'Byangsi', [Definition] = NULL, [SortOrder] = 1115.00 WHERE [Code] = 'bee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkk', 'Byep', NULL, 111.40) END +VALUES ('mkk', 'Byep', NULL, 1116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Byep', [Definition] = NULL, [SortOrder] = 111.40 WHERE [Code] = 'mkk' END +SET [Description] = 'Byep', [Definition] = NULL, [SortOrder] = 1116.00 WHERE [Code] = 'mkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dri', 'C''lela', NULL, 111.50) END +VALUES ('dri', 'C''lela', NULL, 1117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'C''lela', [Definition] = NULL, [SortOrder] = 111.50 WHERE [Code] = 'dri' END +SET [Description] = 'C''lela', [Definition] = NULL, [SortOrder] = 1117.00 WHERE [Code] = 'dri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msq', 'Caac', NULL, 111.60) END +VALUES ('msq', 'Caac', NULL, 1118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caac', [Definition] = NULL, [SortOrder] = 111.60 WHERE [Code] = 'msq' END +SET [Description] = 'Caac', [Definition] = NULL, [SortOrder] = 1118.00 WHERE [Code] = 'msq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjp', 'Cabécar', NULL, 111.70) END +VALUES ('cjp', 'Cabécar', NULL, 1119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cabécar', [Definition] = NULL, [SortOrder] = 111.70 WHERE [Code] = 'cjp' END +SET [Description] = 'Cabécar', [Definition] = NULL, [SortOrder] = 1119.00 WHERE [Code] = 'cjp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbb', 'Cabiyarí', NULL, 111.80) END +VALUES ('cbb', 'Cabiyarí', NULL, 1120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cabiyarí', [Definition] = NULL, [SortOrder] = 111.80 WHERE [Code] = 'cbb' END +SET [Description] = 'Cabiyarí', [Definition] = NULL, [SortOrder] = 1120.00 WHERE [Code] = 'cbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miu', 'Cacaloxtepec Mixtec', NULL, 111.90) END +VALUES ('miu', 'Cacaloxtepec Mixtec', NULL, 1121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cacaloxtepec Mixtec', [Definition] = NULL, [SortOrder] = 111.90 WHERE [Code] = 'miu' END +SET [Description] = 'Cacaloxtepec Mixtec', [Definition] = NULL, [SortOrder] = 1121.00 WHERE [Code] = 'miu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccr', 'Cacaopera', NULL, 112.00) END +VALUES ('ccr', 'Cacaopera', NULL, 1122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cacaopera', [Definition] = NULL, [SortOrder] = 112.00 WHERE [Code] = 'ccr' END +SET [Description] = 'Cacaopera', [Definition] = NULL, [SortOrder] = 1122.00 WHERE [Code] = 'ccr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'roc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roc', 'Cacgia Roglai', NULL, 112.10) END +VALUES ('roc', 'Cacgia Roglai', NULL, 1123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cacgia Roglai', [Definition] = NULL, [SortOrder] = 112.10 WHERE [Code] = 'roc' END +SET [Description] = 'Cacgia Roglai', [Definition] = NULL, [SortOrder] = 1123.00 WHERE [Code] = 'roc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbv', 'Cacua', NULL, 112.20) END +VALUES ('cbv', 'Cacua', NULL, 1124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cacua', [Definition] = NULL, [SortOrder] = 112.20 WHERE [Code] = 'cbv' END +SET [Description] = 'Cacua', [Definition] = NULL, [SortOrder] = 1124.00 WHERE [Code] = 'cbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cad', 'Caddo', NULL, 112.30) END +VALUES ('cad', 'Caddo', NULL, 1125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caddo', [Definition] = NULL, [SortOrder] = 112.30 WHERE [Code] = 'cad' END +SET [Description] = 'Caddo', [Definition] = NULL, [SortOrder] = 1125.00 WHERE [Code] = 'cad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccd', 'Cafundo Creole', NULL, 112.40) END +VALUES ('ccd', 'Cafundo Creole', NULL, 1126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cafundo Creole', [Definition] = NULL, [SortOrder] = 112.40 WHERE [Code] = 'ccd' END +SET [Description] = 'Cafundo Creole', [Definition] = NULL, [SortOrder] = 1126.00 WHERE [Code] = 'ccd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cah', 'Cahuarano', NULL, 112.50) END +VALUES ('cah', 'Cahuarano', NULL, 1127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cahuarano', [Definition] = NULL, [SortOrder] = 112.50 WHERE [Code] = 'cah' END +SET [Description] = 'Cahuarano', [Definition] = NULL, [SortOrder] = 1127.00 WHERE [Code] = 'cah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chl', 'Cahuilla', NULL, 112.60) END +VALUES ('chl', 'Cahuilla', NULL, 1128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cahuilla', [Definition] = NULL, [SortOrder] = 112.60 WHERE [Code] = 'chl' END +SET [Description] = 'Cahuilla', [Definition] = NULL, [SortOrder] = 1128.00 WHERE [Code] = 'chl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nat', 'Cahungwarya', NULL, 112.70) END +VALUES ('nat', 'Cahungwarya', NULL, 1129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cahungwarya', [Definition] = NULL, [SortOrder] = 112.70 WHERE [Code] = 'nat' END +SET [Description] = 'Cahungwarya', [Definition] = NULL, [SortOrder] = 1129.00 WHERE [Code] = 'nat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvc', 'Cajamarca Quechua', NULL, 112.80) END +VALUES ('qvc', 'Cajamarca Quechua', NULL, 1130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cajamarca Quechua', [Definition] = NULL, [SortOrder] = 112.80 WHERE [Code] = 'qvc' END +SET [Description] = 'Cajamarca Quechua', [Definition] = NULL, [SortOrder] = 1130.00 WHERE [Code] = 'qvc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvl', 'Cajatambo North Lima Quechua', NULL, 112.90) END +VALUES ('qvl', 'Cajatambo North Lima Quechua', NULL, 1131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cajatambo North Lima Quechua', [Definition] = NULL, [SortOrder] = 112.90 WHERE [Code] = 'qvl' END +SET [Description] = 'Cajatambo North Lima Quechua', [Definition] = NULL, [SortOrder] = 1131.00 WHERE [Code] = 'qvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zad', 'Cajonos Zapotec', NULL, 113.00) END +VALUES ('zad', 'Cajonos Zapotec', NULL, 1132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cajonos Zapotec', [Definition] = NULL, [SortOrder] = 113.00 WHERE [Code] = 'zad' END +SET [Description] = 'Cajonos Zapotec', [Definition] = NULL, [SortOrder] = 1132.00 WHERE [Code] = 'zad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frc', 'Cajun French', NULL, 113.10) END +VALUES ('frc', 'Cajun French', NULL, 1133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cajun French', [Definition] = NULL, [SortOrder] = 113.10 WHERE [Code] = 'frc' END +SET [Description] = 'Cajun French', [Definition] = NULL, [SortOrder] = 1133.00 WHERE [Code] = 'frc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckx', 'Caka', NULL, 113.20) END +VALUES ('ckx', 'Caka', NULL, 1134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caka', [Definition] = NULL, [SortOrder] = 113.20 WHERE [Code] = 'ckx' END +SET [Description] = 'Caka', [Definition] = NULL, [SortOrder] = 1134.00 WHERE [Code] = 'ckx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckz', 'Cakchiquel-Quiché Mixed Language', NULL, 113.30) END +VALUES ('ckz', 'Cakchiquel-Quiché Mixed Language', NULL, 1135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cakchiquel-Quiché Mixed Language', [Definition] = NULL, [SortOrder] = 113.30 WHERE [Code] = 'ckz' END +SET [Description] = 'Cakchiquel-Quiché Mixed Language', [Definition] = NULL, [SortOrder] = 1135.00 WHERE [Code] = 'ckz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cky', 'Cakfem-Mushere', NULL, 113.40) END +VALUES ('cky', 'Cakfem-Mushere', NULL, 1136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cakfem-Mushere', [Definition] = NULL, [SortOrder] = 113.40 WHERE [Code] = 'cky' END +SET [Description] = 'Cakfem-Mushere', [Definition] = NULL, [SortOrder] = 1136.00 WHERE [Code] = 'cky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbk', 'Calamian Tagbanwa', NULL, 113.50) END +VALUES ('tbk', 'Calamian Tagbanwa', NULL, 1137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Calamian Tagbanwa', [Definition] = NULL, [SortOrder] = 113.50 WHERE [Code] = 'tbk' END +SET [Description] = 'Calamian Tagbanwa', [Definition] = NULL, [SortOrder] = 1137.00 WHERE [Code] = 'tbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qud', 'Calderón Highland Quichua', NULL, 113.60) END +VALUES ('qud', 'Calderón Highland Quichua', NULL, 1138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Calderón Highland Quichua', [Definition] = NULL, [SortOrder] = 113.60 WHERE [Code] = 'qud' END +SET [Description] = 'Calderón Highland Quichua', [Definition] = NULL, [SortOrder] = 1138.00 WHERE [Code] = 'qud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caw', 'Callawalla', NULL, 113.70) END +VALUES ('caw', 'Callawalla', NULL, 1139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Callawalla', [Definition] = NULL, [SortOrder] = 113.70 WHERE [Code] = 'caw' END +SET [Description] = 'Callawalla', [Definition] = NULL, [SortOrder] = 1139.00 WHERE [Code] = 'caw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmq', 'Caló', NULL, 113.80) END +VALUES ('rmq', 'Caló', NULL, 1140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caló', [Definition] = NULL, [SortOrder] = 113.80 WHERE [Code] = 'rmq' END +SET [Description] = 'Caló', [Definition] = NULL, [SortOrder] = 1140.00 WHERE [Code] = 'rmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clu', 'Caluyanun', NULL, 113.90) END +VALUES ('clu', 'Caluyanun', NULL, 1141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caluyanun', [Definition] = NULL, [SortOrder] = 113.90 WHERE [Code] = 'clu' END +SET [Description] = 'Caluyanun', [Definition] = NULL, [SortOrder] = 1141.00 WHERE [Code] = 'clu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csx', 'Cambodian Sign Language', NULL, 114.00) END +VALUES ('csx', 'Cambodian Sign Language', NULL, 1142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cambodian Sign Language', [Definition] = NULL, [SortOrder] = 114.00 WHERE [Code] = 'csx' END +SET [Description] = 'Cambodian Sign Language', [Definition] = NULL, [SortOrder] = 1142.00 WHERE [Code] = 'csx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcu', 'Cameroon Mambila', NULL, 114.10) END +VALUES ('mcu', 'Cameroon Mambila', NULL, 1143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cameroon Mambila', [Definition] = NULL, [SortOrder] = 114.10 WHERE [Code] = 'mcu' END +SET [Description] = 'Cameroon Mambila', [Definition] = NULL, [SortOrder] = 1143.00 WHERE [Code] = 'mcu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wes', 'Cameroon Pidgin', NULL, 114.20) END +VALUES ('wes', 'Cameroon Pidgin', NULL, 1144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cameroon Pidgin', [Definition] = NULL, [SortOrder] = 114.20 WHERE [Code] = 'wes' END +SET [Description] = 'Cameroon Pidgin', [Definition] = NULL, [SortOrder] = 1144.00 WHERE [Code] = 'wes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rab', 'Camling', NULL, 114.30) END +VALUES ('rab', 'Camling', NULL, 1145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Camling', [Definition] = NULL, [SortOrder] = 114.30 WHERE [Code] = 'rab' END +SET [Description] = 'Camling', [Definition] = NULL, [SortOrder] = 1145.00 WHERE [Code] = 'rab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cml', 'Campalagian', NULL, 114.40) END +VALUES ('cml', 'Campalagian', NULL, 1146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Campalagian', [Definition] = NULL, [SortOrder] = 114.40 WHERE [Code] = 'cml' END +SET [Description] = 'Campalagian', [Definition] = NULL, [SortOrder] = 1146.00 WHERE [Code] = 'cml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sro', 'Campidanese Sardinian', NULL, 114.50) END +VALUES ('sro', 'Campidanese Sardinian', NULL, 1147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Campidanese Sardinian', [Definition] = NULL, [SortOrder] = 114.50 WHERE [Code] = 'sro' END +SET [Description] = 'Campidanese Sardinian', [Definition] = NULL, [SortOrder] = 1147.00 WHERE [Code] = 'sro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbh', 'Camsá', NULL, 114.60) END +VALUES ('kbh', 'Camsá', NULL, 1148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Camsá', [Definition] = NULL, [SortOrder] = 114.60 WHERE [Code] = 'kbh' END +SET [Description] = 'Camsá', [Definition] = NULL, [SortOrder] = 1148.00 WHERE [Code] = 'kbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmt', 'Camtho', NULL, 114.70) END +VALUES ('cmt', 'Camtho', NULL, 1149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Camtho', [Definition] = NULL, [SortOrder] = 114.70 WHERE [Code] = 'cmt' END +SET [Description] = 'Camtho', [Definition] = NULL, [SortOrder] = 1149.00 WHERE [Code] = 'cmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcc', 'Camunic', NULL, 114.80) END +VALUES ('xcc', 'Camunic', NULL, 1150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Camunic', [Definition] = NULL, [SortOrder] = 114.80 WHERE [Code] = 'xcc' END +SET [Description] = 'Camunic', [Definition] = NULL, [SortOrder] = 1150.00 WHERE [Code] = 'xcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxr', 'Cañar Highland Quichua', NULL, 114.90) END +VALUES ('qxr', 'Cañar Highland Quichua', NULL, 1151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cañar Highland Quichua', [Definition] = NULL, [SortOrder] = 114.90 WHERE [Code] = 'qxr' END +SET [Description] = 'Cañar Highland Quichua', [Definition] = NULL, [SortOrder] = 1151.00 WHERE [Code] = 'qxr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbu', 'Candoshi-Shapra', NULL, 115.00) END +VALUES ('cbu', 'Candoshi-Shapra', NULL, 1152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Candoshi-Shapra', [Definition] = NULL, [SortOrder] = 115.00 WHERE [Code] = 'cbu' END +SET [Description] = 'Candoshi-Shapra', [Definition] = NULL, [SortOrder] = 1152.00 WHERE [Code] = 'cbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ram') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ram', 'Canela', NULL, 115.10) END +VALUES ('ram', 'Canela', NULL, 1153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Canela', [Definition] = NULL, [SortOrder] = 115.10 WHERE [Code] = 'ram' END +SET [Description] = 'Canela', [Definition] = NULL, [SortOrder] = 1153.00 WHERE [Code] = 'ram' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caz', 'Canichana', NULL, 115.20) END +VALUES ('caz', 'Canichana', NULL, 1154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Canichana', [Definition] = NULL, [SortOrder] = 115.20 WHERE [Code] = 'caz' END +SET [Description] = 'Canichana', [Definition] = NULL, [SortOrder] = 1154.00 WHERE [Code] = 'caz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlc', 'Cao Lan', NULL, 115.30) END +VALUES ('mlc', 'Cao Lan', NULL, 1155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cao Lan', [Definition] = NULL, [SortOrder] = 115.30 WHERE [Code] = 'mlc' END +SET [Description] = 'Cao Lan', [Definition] = NULL, [SortOrder] = 1155.00 WHERE [Code] = 'mlc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cov', 'Cao Miao', NULL, 115.40) END +VALUES ('cov', 'Cao Miao', NULL, 1156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cao Miao', [Definition] = NULL, [SortOrder] = 115.40 WHERE [Code] = 'cov' END +SET [Description] = 'Cao Miao', [Definition] = NULL, [SortOrder] = 1156.00 WHERE [Code] = 'cov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaq', 'Capanahua', NULL, 115.50) END +VALUES ('kaq', 'Capanahua', NULL, 1157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Capanahua', [Definition] = NULL, [SortOrder] = 115.50 WHERE [Code] = 'kaq' END +SET [Description] = 'Capanahua', [Definition] = NULL, [SortOrder] = 1157.00 WHERE [Code] = 'kaq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cps', 'Capiznon', NULL, 115.60) END +VALUES ('cps', 'Capiznon', NULL, 1158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Capiznon', [Definition] = NULL, [SortOrder] = 115.60 WHERE [Code] = 'cps' END +SET [Description] = 'Capiznon', [Definition] = NULL, [SortOrder] = 1158.00 WHERE [Code] = 'cps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpg', 'Cappadocian Greek', NULL, 115.70) END +VALUES ('cpg', 'Cappadocian Greek', NULL, 1159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cappadocian Greek', [Definition] = NULL, [SortOrder] = 115.70 WHERE [Code] = 'cpg' END +SET [Description] = 'Cappadocian Greek', [Definition] = NULL, [SortOrder] = 1159.00 WHERE [Code] = 'cpg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cot', 'Caquinte', NULL, 115.80) END +VALUES ('cot', 'Caquinte', NULL, 1160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caquinte', [Definition] = NULL, [SortOrder] = 115.80 WHERE [Code] = 'cot' END +SET [Description] = 'Caquinte', [Definition] = NULL, [SortOrder] = 1160.00 WHERE [Code] = 'cot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caq', 'Car Nicobarese', NULL, 115.90) END +VALUES ('caq', 'Car Nicobarese', NULL, 1161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Car Nicobarese', [Definition] = NULL, [SortOrder] = 115.90 WHERE [Code] = 'caq' END +SET [Description] = 'Car Nicobarese', [Definition] = NULL, [SortOrder] = 1161.00 WHERE [Code] = 'caq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cfd', 'Cara', NULL, 116.00) END +VALUES ('cfd', 'Cara', NULL, 1162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cara', [Definition] = NULL, [SortOrder] = 116.00 WHERE [Code] = 'cfd' END +SET [Description] = 'Cara', [Definition] = NULL, [SortOrder] = 1162.00 WHERE [Code] = 'cfd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cby', 'Carabayo', NULL, 116.10) END +VALUES ('cby', 'Carabayo', NULL, 1163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carabayo', [Definition] = NULL, [SortOrder] = 116.10 WHERE [Code] = 'cby' END +SET [Description] = 'Carabayo', [Definition] = NULL, [SortOrder] = 1163.00 WHERE [Code] = 'cby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crf', 'Caramanta', NULL, 116.20) END +VALUES ('crf', 'Caramanta', NULL, 1164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caramanta', [Definition] = NULL, [SortOrder] = 116.20 WHERE [Code] = 'crf' END +SET [Description] = 'Caramanta', [Definition] = NULL, [SortOrder] = 1164.00 WHERE [Code] = 'crf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbc', 'Carapana', NULL, 116.30) END +VALUES ('cbc', 'Carapana', NULL, 1165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carapana', [Definition] = NULL, [SortOrder] = 116.30 WHERE [Code] = 'cbc' END +SET [Description] = 'Carapana', [Definition] = NULL, [SortOrder] = 1165.00 WHERE [Code] = 'cbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcr', 'Carian', NULL, 116.40) END +VALUES ('xcr', 'Carian', NULL, 1166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carian', [Definition] = NULL, [SortOrder] = 116.40 WHERE [Code] = 'xcr' END +SET [Description] = 'Carian', [Definition] = NULL, [SortOrder] = 1166.00 WHERE [Code] = 'xcr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hns', 'Caribbean Hindustani', NULL, 116.50) END +VALUES ('hns', 'Caribbean Hindustani', NULL, 1167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caribbean Hindustani', [Definition] = NULL, [SortOrder] = 116.50 WHERE [Code] = 'hns' END +SET [Description] = 'Caribbean Hindustani', [Definition] = NULL, [SortOrder] = 1167.00 WHERE [Code] = 'hns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jvn', 'Caribbean Javanese', NULL, 116.60) END +VALUES ('jvn', 'Caribbean Javanese', NULL, 1168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Caribbean Javanese', [Definition] = NULL, [SortOrder] = 116.60 WHERE [Code] = 'jvn' END +SET [Description] = 'Caribbean Javanese', [Definition] = NULL, [SortOrder] = 1168.00 WHERE [Code] = 'jvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbd', 'Carijona', NULL, 116.70) END +VALUES ('cbd', 'Carijona', NULL, 1169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carijona', [Definition] = NULL, [SortOrder] = 116.70 WHERE [Code] = 'cbd' END +SET [Description] = 'Carijona', [Definition] = NULL, [SortOrder] = 1169.00 WHERE [Code] = 'cbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crr', 'Carolina Algonquian', NULL, 116.80) END +VALUES ('crr', 'Carolina Algonquian', NULL, 1170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carolina Algonquian', [Definition] = NULL, [SortOrder] = 116.80 WHERE [Code] = 'crr' END +SET [Description] = 'Carolina Algonquian', [Definition] = NULL, [SortOrder] = 1170.00 WHERE [Code] = 'crr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cal', 'Carolinian', NULL, 116.90) END +VALUES ('cal', 'Carolinian', NULL, 1171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carolinian', [Definition] = NULL, [SortOrder] = 116.90 WHERE [Code] = 'cal' END +SET [Description] = 'Carolinian', [Definition] = NULL, [SortOrder] = 1171.00 WHERE [Code] = 'cal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmc', 'Carpathian Romani', NULL, 117.00) END +VALUES ('rmc', 'Carpathian Romani', NULL, 1172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carpathian Romani', [Definition] = NULL, [SortOrder] = 117.00 WHERE [Code] = 'rmc' END +SET [Description] = 'Carpathian Romani', [Definition] = NULL, [SortOrder] = 1172.00 WHERE [Code] = 'rmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crx', 'Carrier', NULL, 117.10) END +VALUES ('crx', 'Carrier', NULL, 1173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Carrier', [Definition] = NULL, [SortOrder] = 117.10 WHERE [Code] = 'crx' END +SET [Description] = 'Carrier', [Definition] = NULL, [SortOrder] = 1173.00 WHERE [Code] = 'crx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbr', 'Cashibo-Cacataibo', NULL, 117.20) END +VALUES ('cbr', 'Cashibo-Cacataibo', NULL, 1174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cashibo-Cacataibo', [Definition] = NULL, [SortOrder] = 117.20 WHERE [Code] = 'cbr' END +SET [Description] = 'Cashibo-Cacataibo', [Definition] = NULL, [SortOrder] = 1174.00 WHERE [Code] = 'cbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbs', 'Cashinahua', NULL, 117.30) END +VALUES ('cbs', 'Cashinahua', NULL, 1175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cashinahua', [Definition] = NULL, [SortOrder] = 117.30 WHERE [Code] = 'cbs' END +SET [Description] = 'Cashinahua', [Definition] = NULL, [SortOrder] = 1175.00 WHERE [Code] = 'cbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgc', 'Casiguran Dumagat Agta', NULL, 117.40) END +VALUES ('dgc', 'Casiguran Dumagat Agta', NULL, 1176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Casiguran Dumagat Agta', [Definition] = NULL, [SortOrder] = 117.40 WHERE [Code] = 'dgc' END +SET [Description] = 'Casiguran Dumagat Agta', [Definition] = NULL, [SortOrder] = 1176.00 WHERE [Code] = 'dgc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asc', 'Casuarina Coast Asmat', NULL, 117.50) END +VALUES ('asc', 'Casuarina Coast Asmat', NULL, 1177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Casuarina Coast Asmat', [Definition] = NULL, [SortOrder] = 117.50 WHERE [Code] = 'asc' END +SET [Description] = 'Casuarina Coast Asmat', [Definition] = NULL, [SortOrder] = 1177.00 WHERE [Code] = 'asc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cat', 'Catalan', NULL, 117.60) END +VALUES ('cat', 'Catalan', NULL, 1178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Catalan', [Definition] = NULL, [SortOrder] = 117.60 WHERE [Code] = 'cat' END +SET [Description] = 'Catalan', [Definition] = NULL, [SortOrder] = 1178.00 WHERE [Code] = 'cat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csc', 'Catalan Sign Language', NULL, 117.70) END +VALUES ('csc', 'Catalan Sign Language', NULL, 1179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Catalan Sign Language', [Definition] = NULL, [SortOrder] = 117.70 WHERE [Code] = 'csc' END +SET [Description] = 'Catalan Sign Language', [Definition] = NULL, [SortOrder] = 1179.00 WHERE [Code] = 'csc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chc', 'Catawba', NULL, 117.80) END +VALUES ('chc', 'Catawba', NULL, 1180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Catawba', [Definition] = NULL, [SortOrder] = 117.80 WHERE [Code] = 'chc' END +SET [Description] = 'Catawba', [Definition] = NULL, [SortOrder] = 1180.00 WHERE [Code] = 'chc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cav', 'Cavineña', NULL, 117.90) END +VALUES ('cav', 'Cavineña', NULL, 1181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cavineña', [Definition] = NULL, [SortOrder] = 117.90 WHERE [Code] = 'cav' END +SET [Description] = 'Cavineña', [Definition] = NULL, [SortOrder] = 1181.00 WHERE [Code] = 'cav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cyb', 'Cayubaba', NULL, 118.00) END +VALUES ('cyb', 'Cayubaba', NULL, 1182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cayubaba', [Definition] = NULL, [SortOrder] = 118.00 WHERE [Code] = 'cyb' END +SET [Description] = 'Cayubaba', [Definition] = NULL, [SortOrder] = 1182.00 WHERE [Code] = 'cyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cay', 'Cayuga', NULL, 118.10) END +VALUES ('cay', 'Cayuga', NULL, 1183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cayuga', [Definition] = NULL, [SortOrder] = 118.10 WHERE [Code] = 'cay' END +SET [Description] = 'Cayuga', [Definition] = NULL, [SortOrder] = 1183.00 WHERE [Code] = 'cay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcy', 'Cayuse', NULL, 118.20) END +VALUES ('xcy', 'Cayuse', NULL, 1184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cayuse', [Definition] = NULL, [SortOrder] = 118.20 WHERE [Code] = 'xcy' END +SET [Description] = 'Cayuse', [Definition] = NULL, [SortOrder] = 1184.00 WHERE [Code] = 'xcy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sef', 'Cebaara Senoufo', NULL, 118.30) END +VALUES ('sef', 'Cebaara Senoufo', NULL, 1185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cebaara Senoufo', [Definition] = NULL, [SortOrder] = 118.30 WHERE [Code] = 'sef' END +SET [Description] = 'Cebaara Senoufo', [Definition] = NULL, [SortOrder] = 1185.00 WHERE [Code] = 'sef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ceb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ceb', 'Cebuano', NULL, 118.40) END +VALUES ('ceb', 'Cebuano', NULL, 1186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cebuano', [Definition] = NULL, [SortOrder] = 118.40 WHERE [Code] = 'ceb' END +SET [Description] = 'Cebuano', [Definition] = NULL, [SortOrder] = 1186.00 WHERE [Code] = 'ceb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xce', 'Celtiberian', NULL, 118.50) END +VALUES ('xce', 'Celtiberian', NULL, 1187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Celtiberian', [Definition] = NULL, [SortOrder] = 118.50 WHERE [Code] = 'xce' END +SET [Description] = 'Celtiberian', [Definition] = NULL, [SortOrder] = 1187.00 WHERE [Code] = 'xce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cam', 'Cemuhî', NULL, 118.60) END +VALUES ('cam', 'Cemuhî', NULL, 1188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cemuhî', [Definition] = NULL, [SortOrder] = 118.60 WHERE [Code] = 'cam' END +SET [Description] = 'Cemuhî', [Definition] = NULL, [SortOrder] = 1188.00 WHERE [Code] = 'cam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cen', 'Cen', NULL, 118.70) END +VALUES ('cen', 'Cen', NULL, 1189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cen', [Definition] = NULL, [SortOrder] = 118.70 WHERE [Code] = 'cen' END +SET [Description] = 'Cen', [Definition] = NULL, [SortOrder] = 1189.00 WHERE [Code] = 'cen' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cns', 'Central Asmat', NULL, 118.80) END +VALUES ('cns', 'Central Asmat', NULL, 1190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Asmat', [Definition] = NULL, [SortOrder] = 118.80 WHERE [Code] = 'cns' END +SET [Description] = 'Central Asmat', [Definition] = NULL, [SortOrder] = 1190.00 WHERE [Code] = 'cns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzm', 'Central Atlas Tamazight', NULL, 118.90) END +VALUES ('tzm', 'Central Atlas Tamazight', NULL, 1191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Atlas Tamazight', [Definition] = NULL, [SortOrder] = 118.90 WHERE [Code] = 'tzm' END +SET [Description] = 'Central Atlas Tamazight', [Definition] = NULL, [SortOrder] = 1191.00 WHERE [Code] = 'tzm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awu', 'Central Awyu', NULL, 119.00) END +VALUES ('awu', 'Central Awyu', NULL, 1192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Awyu', [Definition] = NULL, [SortOrder] = 119.00 WHERE [Code] = 'awu' END +SET [Description] = 'Central Awyu', [Definition] = NULL, [SortOrder] = 1192.00 WHERE [Code] = 'awu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayr', 'Central Aymara', NULL, 119.10) END +VALUES ('ayr', 'Central Aymara', NULL, 1193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Aymara', [Definition] = NULL, [SortOrder] = 119.10 WHERE [Code] = 'ayr' END +SET [Description] = 'Central Aymara', [Definition] = NULL, [SortOrder] = 1193.00 WHERE [Code] = 'ayr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bca', 'Central Bai', NULL, 119.20) END +VALUES ('bca', 'Central Bai', NULL, 1194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Bai', [Definition] = NULL, [SortOrder] = 119.20 WHERE [Code] = 'bca' END +SET [Description] = 'Central Bai', [Definition] = NULL, [SortOrder] = 1194.00 WHERE [Code] = 'bca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbc', 'Central Berawan', NULL, 119.30) END +VALUES ('zbc', 'Central Berawan', NULL, 1195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Berawan', [Definition] = NULL, [SortOrder] = 119.30 WHERE [Code] = 'zbc' END +SET [Description] = 'Central Berawan', [Definition] = NULL, [SortOrder] = 1195.00 WHERE [Code] = 'zbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcl', 'Central Bikol', NULL, 119.40) END +VALUES ('bcl', 'Central Bikol', NULL, 1196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Bikol', [Definition] = NULL, [SortOrder] = 119.40 WHERE [Code] = 'bcl' END +SET [Description] = 'Central Bikol', [Definition] = NULL, [SortOrder] = 1196.00 WHERE [Code] = 'bcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbk', 'Central Bontok', NULL, 119.50) END +VALUES ('lbk', 'Central Bontok', NULL, 1197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Bontok', [Definition] = NULL, [SortOrder] = 119.50 WHERE [Code] = 'lbk' END +SET [Description] = 'Central Bontok', [Definition] = NULL, [SortOrder] = 1197.00 WHERE [Code] = 'lbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agt', 'Central Cagayan Agta', NULL, 119.60) END +VALUES ('agt', 'Central Cagayan Agta', NULL, 1198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Cagayan Agta', [Definition] = NULL, [SortOrder] = 119.60 WHERE [Code] = 'agt' END +SET [Description] = 'Central Cagayan Agta', [Definition] = NULL, [SortOrder] = 1198.00 WHERE [Code] = 'agt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grv', 'Central Grebo', NULL, 119.70) END +VALUES ('grv', 'Central Grebo', NULL, 1199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Grebo', [Definition] = NULL, [SortOrder] = 119.70 WHERE [Code] = 'grv' END +SET [Description] = 'Central Grebo', [Definition] = NULL, [SortOrder] = 1199.00 WHERE [Code] = 'grv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zch', 'Central Hongshuihe Zhuang', NULL, 119.80) END +VALUES ('zch', 'Central Hongshuihe Zhuang', NULL, 1200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Hongshuihe Zhuang', [Definition] = NULL, [SortOrder] = 119.80 WHERE [Code] = 'zch' END +SET [Description] = 'Central Hongshuihe Zhuang', [Definition] = NULL, [SortOrder] = 1200.00 WHERE [Code] = 'zch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nch', 'Central Huasteca Nahuatl', NULL, 119.90) END +VALUES ('nch', 'Central Huasteca Nahuatl', NULL, 1201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 119.90 WHERE [Code] = 'nch' END +SET [Description] = 'Central Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 1201.00 WHERE [Code] = 'nch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmc', 'Central Huishui Hmong', NULL, 120.00) END +VALUES ('hmc', 'Central Huishui Hmong', NULL, 1202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Huishui Hmong', [Definition] = NULL, [SortOrder] = 120.00 WHERE [Code] = 'hmc' END +SET [Description] = 'Central Huishui Hmong', [Definition] = NULL, [SortOrder] = 1202.00 WHERE [Code] = 'hmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knc', 'Central Kanuri', NULL, 120.10) END +VALUES ('knc', 'Central Kanuri', NULL, 1203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Kanuri', [Definition] = NULL, [SortOrder] = 120.10 WHERE [Code] = 'knc' END +SET [Description] = 'Central Kanuri', [Definition] = NULL, [SortOrder] = 1203.00 WHERE [Code] = 'knc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckb', 'Central Kurdish', NULL, 120.20) END +VALUES ('ckb', 'Central Kurdish', NULL, 1204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Kurdish', [Definition] = NULL, [SortOrder] = 120.20 WHERE [Code] = 'ckb' END +SET [Description] = 'Central Kurdish', [Definition] = NULL, [SortOrder] = 1204.00 WHERE [Code] = 'ckb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwo', 'Central Maewo', NULL, 120.30) END +VALUES ('mwo', 'Central Maewo', NULL, 1205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Maewo', [Definition] = NULL, [SortOrder] = 120.30 WHERE [Code] = 'mwo' END +SET [Description] = 'Central Maewo', [Definition] = NULL, [SortOrder] = 1205.00 WHERE [Code] = 'mwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pse', 'Central Malay', NULL, 120.40) END +VALUES ('pse', 'Central Malay', NULL, 1206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Malay', [Definition] = NULL, [SortOrder] = 120.40 WHERE [Code] = 'pse' END +SET [Description] = 'Central Malay', [Definition] = NULL, [SortOrder] = 1206.00 WHERE [Code] = 'pse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxz', 'Central Masela', NULL, 120.50) END +VALUES ('mxz', 'Central Masela', NULL, 1207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Masela', [Definition] = NULL, [SortOrder] = 120.50 WHERE [Code] = 'mxz' END +SET [Description] = 'Central Masela', [Definition] = NULL, [SortOrder] = 1207.00 WHERE [Code] = 'mxz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmm', 'Central Mashan Hmong', NULL, 120.60) END +VALUES ('hmm', 'Central Mashan Hmong', NULL, 1208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Mashan Hmong', [Definition] = NULL, [SortOrder] = 120.60 WHERE [Code] = 'hmm' END +SET [Description] = 'Central Mashan Hmong', [Definition] = NULL, [SortOrder] = 1208.00 WHERE [Code] = 'hmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maz', 'Central Mazahua', NULL, 120.70) END +VALUES ('maz', 'Central Mazahua', NULL, 1209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Mazahua', [Definition] = NULL, [SortOrder] = 120.70 WHERE [Code] = 'maz' END +SET [Description] = 'Central Mazahua', [Definition] = NULL, [SortOrder] = 1209.00 WHERE [Code] = 'maz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mel', 'Central Melanau', NULL, 120.80) END +VALUES ('mel', 'Central Melanau', NULL, 1210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Melanau', [Definition] = NULL, [SortOrder] = 120.80 WHERE [Code] = 'mel' END +SET [Description] = 'Central Melanau', [Definition] = NULL, [SortOrder] = 1210.00 WHERE [Code] = 'mel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmo', 'Central Mnong', NULL, 120.90) END +VALUES ('cmo', 'Central Mnong', NULL, 1211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Mnong', [Definition] = NULL, [SortOrder] = 120.90 WHERE [Code] = 'cmo' END +SET [Description] = 'Central Mnong', [Definition] = NULL, [SortOrder] = 1211.00 WHERE [Code] = 'cmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhn', 'Central Nahuatl', NULL, 121.00) END +VALUES ('nhn', 'Central Nahuatl', NULL, 1212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Nahuatl', [Definition] = NULL, [SortOrder] = 121.00 WHERE [Code] = 'nhn' END +SET [Description] = 'Central Nahuatl', [Definition] = NULL, [SortOrder] = 1212.00 WHERE [Code] = 'nhn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncb', 'Central Nicobarese', NULL, 121.10) END +VALUES ('ncb', 'Central Nicobarese', NULL, 1213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Nicobarese', [Definition] = NULL, [SortOrder] = 121.10 WHERE [Code] = 'ncb' END +SET [Description] = 'Central Nicobarese', [Definition] = NULL, [SortOrder] = 1213.00 WHERE [Code] = 'ncb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojc', 'Central Ojibwa', NULL, 121.20) END +VALUES ('ojc', 'Central Ojibwa', NULL, 1214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Ojibwa', [Definition] = NULL, [SortOrder] = 121.20 WHERE [Code] = 'ojc' END +SET [Description] = 'Central Ojibwa', [Definition] = NULL, [SortOrder] = 1214.00 WHERE [Code] = 'ojc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ryu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ryu', 'Central Okinawan', NULL, 121.30) END +VALUES ('ryu', 'Central Okinawan', NULL, 1215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Okinawan', [Definition] = NULL, [SortOrder] = 121.30 WHERE [Code] = 'ryu' END +SET [Description] = 'Central Okinawan', [Definition] = NULL, [SortOrder] = 1215.00 WHERE [Code] = 'ryu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plc', 'Central Palawano', NULL, 121.40) END +VALUES ('plc', 'Central Palawano', NULL, 1216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Palawano', [Definition] = NULL, [SortOrder] = 121.40 WHERE [Code] = 'plc' END +SET [Description] = 'Central Palawano', [Definition] = NULL, [SortOrder] = 1216.00 WHERE [Code] = 'plc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbs', 'Central Pame', NULL, 121.50) END +VALUES ('pbs', 'Central Pame', NULL, 1217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Pame', [Definition] = NULL, [SortOrder] = 121.50 WHERE [Code] = 'pbs' END +SET [Description] = 'Central Pame', [Definition] = NULL, [SortOrder] = 1217.00 WHERE [Code] = 'pbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pst', 'Central Pashto', NULL, 121.60) END +VALUES ('pst', 'Central Pashto', NULL, 1218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Pashto', [Definition] = NULL, [SortOrder] = 121.60 WHERE [Code] = 'pst' END +SET [Description] = 'Central Pashto', [Definition] = NULL, [SortOrder] = 1218.00 WHERE [Code] = 'pst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poo', 'Central Pomo', NULL, 121.70) END +VALUES ('poo', 'Central Pomo', NULL, 1219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Pomo', [Definition] = NULL, [SortOrder] = 121.70 WHERE [Code] = 'poo' END +SET [Description] = 'Central Pomo', [Definition] = NULL, [SortOrder] = 1219.00 WHERE [Code] = 'poo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncx', 'Central Puebla Nahuatl', NULL, 121.80) END +VALUES ('ncx', 'Central Puebla Nahuatl', NULL, 1220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 121.80 WHERE [Code] = 'ncx' END +SET [Description] = 'Central Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 1220.00 WHERE [Code] = 'ncx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sml', 'Central Sama', NULL, 121.90) END +VALUES ('sml', 'Central Sama', NULL, 1221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Sama', [Definition] = NULL, [SortOrder] = 121.90 WHERE [Code] = 'sml' END +SET [Description] = 'Central Sama', [Definition] = NULL, [SortOrder] = 1221.00 WHERE [Code] = 'sml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ess') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ess', 'Central Siberian Yupik', NULL, 122.00) END +VALUES ('ess', 'Central Siberian Yupik', NULL, 1222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Siberian Yupik', [Definition] = NULL, [SortOrder] = 122.00 WHERE [Code] = 'ess' END +SET [Description] = 'Central Siberian Yupik', [Definition] = NULL, [SortOrder] = 1222.00 WHERE [Code] = 'ess' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csm', 'Central Sierra Miwok', NULL, 122.10) END +VALUES ('csm', 'Central Sierra Miwok', NULL, 1223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Sierra Miwok', [Definition] = NULL, [SortOrder] = 122.10 WHERE [Code] = 'csm' END +SET [Description] = 'Central Sierra Miwok', [Definition] = NULL, [SortOrder] = 1223.00 WHERE [Code] = 'csm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syb', 'Central Subanen', NULL, 122.20) END +VALUES ('syb', 'Central Subanen', NULL, 1224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Subanen', [Definition] = NULL, [SortOrder] = 122.20 WHERE [Code] = 'syb' END +SET [Description] = 'Central Subanen', [Definition] = NULL, [SortOrder] = 1224.00 WHERE [Code] = 'syb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgt', 'Central Tagbanwa', NULL, 122.30) END +VALUES ('tgt', 'Central Tagbanwa', NULL, 1225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Tagbanwa', [Definition] = NULL, [SortOrder] = 122.30 WHERE [Code] = 'tgt' END +SET [Description] = 'Central Tagbanwa', [Definition] = NULL, [SortOrder] = 1225.00 WHERE [Code] = 'tgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tar', 'Central Tarahumara', NULL, 122.40) END +VALUES ('tar', 'Central Tarahumara', NULL, 1226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Tarahumara', [Definition] = NULL, [SortOrder] = 122.40 WHERE [Code] = 'tar' END +SET [Description] = 'Central Tarahumara', [Definition] = NULL, [SortOrder] = 1226.00 WHERE [Code] = 'tar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuf', 'Central Tunebo', NULL, 122.50) END +VALUES ('tuf', 'Central Tunebo', NULL, 1227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Tunebo', [Definition] = NULL, [SortOrder] = 122.50 WHERE [Code] = 'tuf' END +SET [Description] = 'Central Tunebo', [Definition] = NULL, [SortOrder] = 1227.00 WHERE [Code] = 'tuf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esu', 'Central Yupik', NULL, 122.60) END +VALUES ('esu', 'Central Yupik', NULL, 1228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central Yupik', [Definition] = NULL, [SortOrder] = 122.60 WHERE [Code] = 'esu' END +SET [Description] = 'Central Yupik', [Definition] = NULL, [SortOrder] = 1228.00 WHERE [Code] = 'esu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuq', 'Central-Eastern Niger Fulfulde', NULL, 122.70) END +VALUES ('fuq', 'Central-Eastern Niger Fulfulde', NULL, 1229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Central-Eastern Niger Fulfulde', [Definition] = NULL, [SortOrder] = 122.70 WHERE [Code] = 'fuq' END +SET [Description] = 'Central-Eastern Niger Fulfulde', [Definition] = NULL, [SortOrder] = 1229.00 WHERE [Code] = 'fuq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cet', 'Centúúm', NULL, 122.80) END +VALUES ('cet', 'Centúúm', NULL, 1230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Centúúm', [Definition] = NULL, [SortOrder] = 122.80 WHERE [Code] = 'cet' END +SET [Description] = 'Centúúm', [Definition] = NULL, [SortOrder] = 1230.00 WHERE [Code] = 'cet' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cme', 'Cerma', NULL, 122.90) END +VALUES ('cme', 'Cerma', NULL, 1231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cerma', [Definition] = NULL, [SortOrder] = 122.90 WHERE [Code] = 'cme' END +SET [Description] = 'Cerma', [Definition] = NULL, [SortOrder] = 1231.00 WHERE [Code] = 'cme' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cxh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('cxh', 'Cha''ari', NULL, 1232.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Cha''ari', [Definition] = NULL, [SortOrder] = 1232.00 WHERE [Code] = 'cxh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbf', 'Chabu', NULL, 123.00) END +VALUES ('sbf', 'Chabu', NULL, 1233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chabu', [Definition] = NULL, [SortOrder] = 123.00 WHERE [Code] = 'sbf' END +SET [Description] = 'Chabu', [Definition] = NULL, [SortOrder] = 1233.00 WHERE [Code] = 'sbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quk', 'Chachapoyas Quechua', NULL, 123.10) END +VALUES ('quk', 'Chachapoyas Quechua', NULL, 1234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chachapoyas Quechua', [Definition] = NULL, [SortOrder] = 123.10 WHERE [Code] = 'quk' END +SET [Description] = 'Chachapoyas Quechua', [Definition] = NULL, [SortOrder] = 1234.00 WHERE [Code] = 'quk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbi', 'Chachi', NULL, 123.20) END +VALUES ('cbi', 'Chachi', NULL, 1235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chachi', [Definition] = NULL, [SortOrder] = 123.20 WHERE [Code] = 'cbi' END +SET [Description] = 'Chachi', [Definition] = NULL, [SortOrder] = 1235.00 WHERE [Code] = 'cbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cao', 'Chácobo', NULL, 123.30) END +VALUES ('cao', 'Chácobo', NULL, 1236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chácobo', [Definition] = NULL, [SortOrder] = 123.30 WHERE [Code] = 'cao' END +SET [Description] = 'Chácobo', [Definition] = NULL, [SortOrder] = 1236.00 WHERE [Code] = 'cao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shu', 'Chadian Arabic', NULL, 123.40) END +VALUES ('shu', 'Chadian Arabic', NULL, 1237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chadian Arabic', [Definition] = NULL, [SortOrder] = 123.40 WHERE [Code] = 'shu' END +SET [Description] = 'Chadian Arabic', [Definition] = NULL, [SortOrder] = 1237.00 WHERE [Code] = 'shu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cds', 'Chadian Sign Language', NULL, 123.50) END +VALUES ('cds', 'Chadian Sign Language', NULL, 1238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chadian Sign Language', [Definition] = NULL, [SortOrder] = 123.50 WHERE [Code] = 'cds' END +SET [Description] = 'Chadian Sign Language', [Definition] = NULL, [SortOrder] = 1238.00 WHERE [Code] = 'cds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdy', 'Chadong', NULL, 123.60) END +VALUES ('cdy', 'Chadong', NULL, 1239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chadong', [Definition] = NULL, [SortOrder] = 123.60 WHERE [Code] = 'cdy' END +SET [Description] = 'Chadong', [Definition] = NULL, [SortOrder] = 1239.00 WHERE [Code] = 'cdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chg', 'Chagatai', NULL, 123.70) END +VALUES ('chg', 'Chagatai', NULL, 1240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chagatai', [Definition] = NULL, [SortOrder] = 123.70 WHERE [Code] = 'chg' END +SET [Description] = 'Chagatai', [Definition] = NULL, [SortOrder] = 1240.00 WHERE [Code] = 'chg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ciy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ciy', 'Chaima', NULL, 123.80) END +VALUES ('ciy', 'Chaima', NULL, 1241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chaima', [Definition] = NULL, [SortOrder] = 123.80 WHERE [Code] = 'ciy' END +SET [Description] = 'Chaima', [Definition] = NULL, [SortOrder] = 1241.00 WHERE [Code] = 'ciy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckh', 'Chak', NULL, 123.90) END +VALUES ('ckh', 'Chak', NULL, 1242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chak', [Definition] = NULL, [SortOrder] = 123.90 WHERE [Code] = 'ckh' END +SET [Description] = 'Chak', [Definition] = NULL, [SortOrder] = 1242.00 WHERE [Code] = 'ckh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cli', 'Chakali', NULL, 124.00) END +VALUES ('cli', 'Chakali', NULL, 1243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chakali', [Definition] = NULL, [SortOrder] = 124.00 WHERE [Code] = 'cli' END +SET [Description] = 'Chakali', [Definition] = NULL, [SortOrder] = 1243.00 WHERE [Code] = 'cli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckm', 'Chakavian', NULL, 124.10) END +VALUES ('ckm', 'Chakavian', NULL, 1244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chakavian', [Definition] = NULL, [SortOrder] = 124.10 WHERE [Code] = 'ckm' END +SET [Description] = 'Chakavian', [Definition] = NULL, [SortOrder] = 1244.00 WHERE [Code] = 'ckm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccp', 'Chakma', NULL, 124.20) END +VALUES ('ccp', 'Chakma', NULL, 1245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chakma', [Definition] = NULL, [SortOrder] = 124.20 WHERE [Code] = 'ccp' END +SET [Description] = 'Chakma', [Definition] = NULL, [SortOrder] = 1245.00 WHERE [Code] = 'ccp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cll', 'Chala', NULL, 124.30) END +VALUES ('cll', 'Chala', NULL, 1246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chala', [Definition] = NULL, [SortOrder] = 124.30 WHERE [Code] = 'cll' END +SET [Description] = 'Chala', [Definition] = NULL, [SortOrder] = 1246.00 WHERE [Code] = 'cll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cld', 'Chaldean Neo-Aramaic', NULL, 124.40) END +VALUES ('cld', 'Chaldean Neo-Aramaic', NULL, 1247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chaldean Neo-Aramaic', [Definition] = NULL, [SortOrder] = 124.40 WHERE [Code] = 'cld' END +SET [Description] = 'Chaldean Neo-Aramaic', [Definition] = NULL, [SortOrder] = 1247.00 WHERE [Code] = 'cld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgf', 'Chalikha', NULL, 124.50) END +VALUES ('tgf', 'Chalikha', NULL, 1248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chalikha', [Definition] = NULL, [SortOrder] = 124.50 WHERE [Code] = 'tgf' END +SET [Description] = 'Chalikha', [Definition] = NULL, [SortOrder] = 1248.00 WHERE [Code] = 'tgf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ceg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ceg', 'Chamacoco', NULL, 124.60) END +VALUES ('ceg', 'Chamacoco', NULL, 1249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chamacoco', [Definition] = NULL, [SortOrder] = 124.60 WHERE [Code] = 'ceg' END +SET [Description] = 'Chamacoco', [Definition] = NULL, [SortOrder] = 1249.00 WHERE [Code] = 'ceg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cji', 'Chamalal', NULL, 124.70) END +VALUES ('cji', 'Chamalal', NULL, 1250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chamalal', [Definition] = NULL, [SortOrder] = 124.70 WHERE [Code] = 'cji' END +SET [Description] = 'Chamalal', [Definition] = NULL, [SortOrder] = 1250.00 WHERE [Code] = 'cji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdh', 'Chambeali', NULL, 124.80) END +VALUES ('cdh', 'Chambeali', NULL, 1251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chambeali', [Definition] = NULL, [SortOrder] = 124.80 WHERE [Code] = 'cdh' END +SET [Description] = 'Chambeali', [Definition] = NULL, [SortOrder] = 1251.00 WHERE [Code] = 'cdh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'can') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('can', 'Chambri', NULL, 124.90) END +VALUES ('can', 'Chambri', NULL, 1252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chambri', [Definition] = NULL, [SortOrder] = 124.90 WHERE [Code] = 'can' END +SET [Description] = 'Chambri', [Definition] = NULL, [SortOrder] = 1252.00 WHERE [Code] = 'can' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccc', 'Chamicuro', NULL, 125.00) END +VALUES ('ccc', 'Chamicuro', NULL, 1253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chamicuro', [Definition] = NULL, [SortOrder] = 125.00 WHERE [Code] = 'ccc' END +SET [Description] = 'Chamicuro', [Definition] = NULL, [SortOrder] = 1253.00 WHERE [Code] = 'ccc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cha', 'Chamorro', NULL, 125.10) END +VALUES ('cha', 'Chamorro', NULL, 1254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chamorro', [Definition] = NULL, [SortOrder] = 125.10 WHERE [Code] = 'cha' END +SET [Description] = 'Chamorro', [Definition] = NULL, [SortOrder] = 1254.00 WHERE [Code] = 'cha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caj', 'Chané', NULL, 125.20) END +VALUES ('caj', 'Chané', NULL, 1255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chané', [Definition] = NULL, [SortOrder] = 125.20 WHERE [Code] = 'caj' END +SET [Description] = 'Chané', [Definition] = NULL, [SortOrder] = 1255.00 WHERE [Code] = 'caj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbc', 'Chang Naga', NULL, 125.30) END +VALUES ('nbc', 'Chang Naga', NULL, 1256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chang Naga', [Definition] = NULL, [SortOrder] = 125.30 WHERE [Code] = 'nbc' END +SET [Description] = 'Chang Naga', [Definition] = NULL, [SortOrder] = 1256.00 WHERE [Code] = 'nbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cga', 'Changriwa', NULL, 125.40) END +VALUES ('cga', 'Changriwa', NULL, 1257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Changriwa', [Definition] = NULL, [SortOrder] = 125.40 WHERE [Code] = 'cga' END +SET [Description] = 'Changriwa', [Definition] = NULL, [SortOrder] = 1257.00 WHERE [Code] = 'cga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cna', 'Changthang', NULL, 125.50) END +VALUES ('cna', 'Changthang', NULL, 1258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Changthang', [Definition] = NULL, [SortOrder] = 125.50 WHERE [Code] = 'cna' END +SET [Description] = 'Changthang', [Definition] = NULL, [SortOrder] = 1258.00 WHERE [Code] = 'cna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chx', 'Chantyal', NULL, 125.60) END +VALUES ('chx', 'Chantyal', NULL, 1259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chantyal', [Definition] = NULL, [SortOrder] = 125.60 WHERE [Code] = 'chx' END +SET [Description] = 'Chantyal', [Definition] = NULL, [SortOrder] = 1259.00 WHERE [Code] = 'chx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cra', 'Chara', NULL, 125.70) END +VALUES ('cra', 'Chara', NULL, 1260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chara', [Definition] = NULL, [SortOrder] = 125.70 WHERE [Code] = 'cra' END +SET [Description] = 'Chara', [Definition] = NULL, [SortOrder] = 1260.00 WHERE [Code] = 'cra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdn', 'Chaudangsi', NULL, 125.80) END +VALUES ('cdn', 'Chaudangsi', NULL, 1261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chaudangsi', [Definition] = NULL, [SortOrder] = 125.80 WHERE [Code] = 'cdn' END +SET [Description] = 'Chaudangsi', [Definition] = NULL, [SortOrder] = 1261.00 WHERE [Code] = 'cdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crv', 'Chaura', NULL, 125.90) END +VALUES ('crv', 'Chaura', NULL, 1262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chaura', [Definition] = NULL, [SortOrder] = 125.90 WHERE [Code] = 'crv' END +SET [Description] = 'Chaura', [Definition] = NULL, [SortOrder] = 1262.00 WHERE [Code] = 'crv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbk', 'Chavacano', NULL, 126.00) END +VALUES ('cbk', 'Chavacano', NULL, 1263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chavacano', [Definition] = NULL, [SortOrder] = 126.00 WHERE [Code] = 'cbk' END +SET [Description] = 'Chavacano', [Definition] = NULL, [SortOrder] = 1263.00 WHERE [Code] = 'cbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbt', 'Chayahuita', NULL, 126.10) END +VALUES ('cbt', 'Chayahuita', NULL, 1264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chayahuita', [Definition] = NULL, [SortOrder] = 126.10 WHERE [Code] = 'cbt' END +SET [Description] = 'Chayahuita', [Definition] = NULL, [SortOrder] = 1264.00 WHERE [Code] = 'cbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mih', 'Chayuco Mixtec', NULL, 126.20) END +VALUES ('mih', 'Chayuco Mixtec', NULL, 1265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chayuco Mixtec', [Definition] = NULL, [SortOrder] = 126.20 WHERE [Code] = 'mih' END +SET [Description] = 'Chayuco Mixtec', [Definition] = NULL, [SortOrder] = 1265.00 WHERE [Code] = 'mih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtb', 'Chazumba Mixtec', NULL, 126.30) END +VALUES ('xtb', 'Chazumba Mixtec', NULL, 1266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chazumba Mixtec', [Definition] = NULL, [SortOrder] = 126.30 WHERE [Code] = 'xtb' END +SET [Description] = 'Chazumba Mixtec', [Definition] = NULL, [SortOrder] = 1266.00 WHERE [Code] = 'xtb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruk', 'Che', NULL, 126.40) END +VALUES ('ruk', 'Che', NULL, 1267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Che', [Definition] = NULL, [SortOrder] = 126.40 WHERE [Code] = 'ruk' END +SET [Description] = 'Che', [Definition] = NULL, [SortOrder] = 1267.00 WHERE [Code] = 'ruk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'che') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('che', 'Chechen', NULL, 126.50) END +VALUES ('che', 'Chechen', NULL, 1268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chechen', [Definition] = NULL, [SortOrder] = 126.50 WHERE [Code] = 'che' END +SET [Description] = 'Chechen', [Definition] = NULL, [SortOrder] = 1268.00 WHERE [Code] = 'che' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrn', 'Cheke Holo', NULL, 126.60) END +VALUES ('mrn', 'Cheke Holo', NULL, 1269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cheke Holo', [Definition] = NULL, [SortOrder] = 126.60 WHERE [Code] = 'mrn' END +SET [Description] = 'Cheke Holo', [Definition] = NULL, [SortOrder] = 1269.00 WHERE [Code] = 'mrn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xch', 'Chemakum', NULL, 126.70) END +VALUES ('xch', 'Chemakum', NULL, 1270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chemakum', [Definition] = NULL, [SortOrder] = 126.70 WHERE [Code] = 'xch' END +SET [Description] = 'Chemakum', [Definition] = NULL, [SortOrder] = 1270.00 WHERE [Code] = 'xch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjn', 'Chenapian', NULL, 126.80) END +VALUES ('cjn', 'Chenapian', NULL, 1271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chenapian', [Definition] = NULL, [SortOrder] = 126.80 WHERE [Code] = 'cjn' END +SET [Description] = 'Chenapian', [Definition] = NULL, [SortOrder] = 1271.00 WHERE [Code] = 'cjn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cde', 'Chenchu', NULL, 126.90) END +VALUES ('cde', 'Chenchu', NULL, 1272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chenchu', [Definition] = NULL, [SortOrder] = 126.90 WHERE [Code] = 'cde' END +SET [Description] = 'Chenchu', [Definition] = NULL, [SortOrder] = 1272.00 WHERE [Code] = 'cde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnu', 'Chenoua', NULL, 127.00) END +VALUES ('cnu', 'Chenoua', NULL, 1273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chenoua', [Definition] = NULL, [SortOrder] = 127.00 WHERE [Code] = 'cnu' END +SET [Description] = 'Chenoua', [Definition] = NULL, [SortOrder] = 1273.00 WHERE [Code] = 'cnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdm', 'Chepang', NULL, 127.10) END +VALUES ('cdm', 'Chepang', NULL, 1274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chepang', [Definition] = NULL, [SortOrder] = 127.10 WHERE [Code] = 'cdm' END +SET [Description] = 'Chepang', [Definition] = NULL, [SortOrder] = 1274.00 WHERE [Code] = 'cdm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ycp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ycp', 'Chepya', NULL, 127.20) END +VALUES ('ycp', 'Chepya', NULL, 1275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chepya', [Definition] = NULL, [SortOrder] = 127.20 WHERE [Code] = 'ycp' END +SET [Description] = 'Chepya', [Definition] = NULL, [SortOrder] = 1275.00 WHERE [Code] = 'ycp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpn', 'Cherepon', NULL, 127.30) END +VALUES ('cpn', 'Cherepon', NULL, 1276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cherepon', [Definition] = NULL, [SortOrder] = 127.30 WHERE [Code] = 'cpn' END +SET [Description] = 'Cherepon', [Definition] = NULL, [SortOrder] = 1276.00 WHERE [Code] = 'cpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chr', 'Cherokee', NULL, 127.40) END +VALUES ('chr', 'Cherokee', NULL, 1277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cherokee', [Definition] = NULL, [SortOrder] = 127.40 WHERE [Code] = 'chr' END +SET [Description] = 'Cherokee', [Definition] = NULL, [SortOrder] = 1277.00 WHERE [Code] = 'chr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ych') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ych', 'Chesu', NULL, 127.50) END +VALUES ('ych', 'Chesu', NULL, 1278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chesu', [Definition] = NULL, [SortOrder] = 127.50 WHERE [Code] = 'ych' END +SET [Description] = 'Chesu', [Definition] = NULL, [SortOrder] = 1278.00 WHERE [Code] = 'ych' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctc', 'Chetco', NULL, 127.60) END +VALUES ('ctc', 'Chetco', NULL, 1279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chetco', [Definition] = NULL, [SortOrder] = 127.60 WHERE [Code] = 'ctc' END +SET [Description] = 'Chetco', [Definition] = NULL, [SortOrder] = 1279.00 WHERE [Code] = 'ctc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwg', 'Chewong', NULL, 127.70) END +VALUES ('cwg', 'Chewong', NULL, 1280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chewong', [Definition] = NULL, [SortOrder] = 127.70 WHERE [Code] = 'cwg' END +SET [Description] = 'Chewong', [Definition] = NULL, [SortOrder] = 1280.00 WHERE [Code] = 'cwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chy', 'Cheyenne', NULL, 127.80) END +VALUES ('chy', 'Cheyenne', NULL, 1281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cheyenne', [Definition] = NULL, [SortOrder] = 127.80 WHERE [Code] = 'chy' END +SET [Description] = 'Cheyenne', [Definition] = NULL, [SortOrder] = 1281.00 WHERE [Code] = 'chy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hne', 'Chhattisgarhi', NULL, 127.90) END +VALUES ('hne', 'Chhattisgarhi', NULL, 1282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chhattisgarhi', [Definition] = NULL, [SortOrder] = 127.90 WHERE [Code] = 'hne' END +SET [Description] = 'Chhattisgarhi', [Definition] = NULL, [SortOrder] = 1282.00 WHERE [Code] = 'hne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctn', 'Chhintange', NULL, 128.00) END +VALUES ('ctn', 'Chhintange', NULL, 1283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chhintange', [Definition] = NULL, [SortOrder] = 128.00 WHERE [Code] = 'ctn' END +SET [Description] = 'Chhintange', [Definition] = NULL, [SortOrder] = 1283.00 WHERE [Code] = 'ctn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cur', 'Chhulung', NULL, 128.10) END +VALUES ('cur', 'Chhulung', NULL, 1284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chhulung', [Definition] = NULL, [SortOrder] = 128.10 WHERE [Code] = 'cur' END +SET [Description] = 'Chhulung', [Definition] = NULL, [SortOrder] = 1284.00 WHERE [Code] = 'cur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csd', 'Chiangmai Sign Language', NULL, 128.20) END +VALUES ('csd', 'Chiangmai Sign Language', NULL, 1285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiangmai Sign Language', [Definition] = NULL, [SortOrder] = 128.20 WHERE [Code] = 'csd' END +SET [Description] = 'Chiangmai Sign Language', [Definition] = NULL, [SortOrder] = 1285.00 WHERE [Code] = 'csd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cip', 'Chiapanec', NULL, 128.30) END +VALUES ('cip', 'Chiapanec', NULL, 1286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiapanec', [Definition] = NULL, [SortOrder] = 128.30 WHERE [Code] = 'cip' END +SET [Description] = 'Chiapanec', [Definition] = NULL, [SortOrder] = 1286.00 WHERE [Code] = 'cip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chb', 'Chibcha', NULL, 128.40) END +VALUES ('chb', 'Chibcha', NULL, 1287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chibcha', [Definition] = NULL, [SortOrder] = 128.40 WHERE [Code] = 'chb' END +SET [Description] = 'Chibcha', [Definition] = NULL, [SortOrder] = 1287.00 WHERE [Code] = 'chb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trs', 'Chicahuaxtla Triqui', NULL, 128.50) END +VALUES ('trs', 'Chicahuaxtla Triqui', NULL, 1288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chicahuaxtla Triqui', [Definition] = NULL, [SortOrder] = 128.50 WHERE [Code] = 'trs' END +SET [Description] = 'Chicahuaxtla Triqui', [Definition] = NULL, [SortOrder] = 1288.00 WHERE [Code] = 'trs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpv', 'Chichicapan Zapotec', NULL, 128.60) END +VALUES ('zpv', 'Chichicapan Zapotec', NULL, 1289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chichicapan Zapotec', [Definition] = NULL, [SortOrder] = 128.60 WHERE [Code] = 'zpv' END +SET [Description] = 'Chichicapan Zapotec', [Definition] = NULL, [SortOrder] = 1289.00 WHERE [Code] = 'zpv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pei', 'Chichimeca-Jonaz', NULL, 128.70) END +VALUES ('pei', 'Chichimeca-Jonaz', NULL, 1290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chichimeca-Jonaz', [Definition] = NULL, [SortOrder] = 128.70 WHERE [Code] = 'pei' END +SET [Description] = 'Chichimeca-Jonaz', [Definition] = NULL, [SortOrder] = 1290.00 WHERE [Code] = 'pei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cic', 'Chickasaw', NULL, 128.80) END +VALUES ('cic', 'Chickasaw', NULL, 1291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chickasaw', [Definition] = NULL, [SortOrder] = 128.80 WHERE [Code] = 'cic' END +SET [Description] = 'Chickasaw', [Definition] = NULL, [SortOrder] = 1291.00 WHERE [Code] = 'cic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cob', 'Chicomuceltec', NULL, 128.90) END +VALUES ('cob', 'Chicomuceltec', NULL, 1292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chicomuceltec', [Definition] = NULL, [SortOrder] = 128.90 WHERE [Code] = 'cob' END +SET [Description] = 'Chicomuceltec', [Definition] = NULL, [SortOrder] = 1292.00 WHERE [Code] = 'cob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cgg', 'Chiga', NULL, 129.00) END +VALUES ('cgg', 'Chiga', NULL, 1293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiga', [Definition] = NULL, [SortOrder] = 129.00 WHERE [Code] = 'cgg' END +SET [Description] = 'Chiga', [Definition] = NULL, [SortOrder] = 1293.00 WHERE [Code] = 'cgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mii', 'Chigmecatitlán Mixtec', NULL, 129.10) END +VALUES ('mii', 'Chigmecatitlán Mixtec', NULL, 1294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chigmecatitlán Mixtec', [Definition] = NULL, [SortOrder] = 129.10 WHERE [Code] = 'mii' END +SET [Description] = 'Chigmecatitlán Mixtec', [Definition] = NULL, [SortOrder] = 1294.00 WHERE [Code] = 'mii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clc', 'Chilcotin', NULL, 129.20) END +VALUES ('clc', 'Chilcotin', NULL, 1295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chilcotin', [Definition] = NULL, [SortOrder] = 129.20 WHERE [Code] = 'clc' END +SET [Description] = 'Chilcotin', [Definition] = NULL, [SortOrder] = 1295.00 WHERE [Code] = 'clc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csg', 'Chilean Sign Language', NULL, 129.30) END +VALUES ('csg', 'Chilean Sign Language', NULL, 1296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chilean Sign Language', [Definition] = NULL, [SortOrder] = 129.30 WHERE [Code] = 'csg' END +SET [Description] = 'Chilean Sign Language', [Definition] = NULL, [SortOrder] = 1296.00 WHERE [Code] = 'csg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clh', 'Chilisso', NULL, 129.40) END +VALUES ('clh', 'Chilisso', NULL, 1297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chilisso', [Definition] = NULL, [SortOrder] = 129.40 WHERE [Code] = 'clh' END +SET [Description] = 'Chilisso', [Definition] = NULL, [SortOrder] = 1297.00 WHERE [Code] = 'clh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csa', 'Chiltepec Chinantec', NULL, 129.50) END +VALUES ('csa', 'Chiltepec Chinantec', NULL, 1298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiltepec Chinantec', [Definition] = NULL, [SortOrder] = 129.50 WHERE [Code] = 'csa' END +SET [Description] = 'Chiltepec Chinantec', [Definition] = NULL, [SortOrder] = 1298.00 WHERE [Code] = 'csa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zoh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zoh', 'Chimalapa Zoque', NULL, 129.60) END +VALUES ('zoh', 'Chimalapa Zoque', NULL, 1299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chimalapa Zoque', [Definition] = NULL, [SortOrder] = 129.60 WHERE [Code] = 'zoh' END +SET [Description] = 'Chimalapa Zoque', [Definition] = NULL, [SortOrder] = 1299.00 WHERE [Code] = 'zoh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cid', 'Chimariko', NULL, 129.70) END +VALUES ('cid', 'Chimariko', NULL, 1300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chimariko', [Definition] = NULL, [SortOrder] = 129.70 WHERE [Code] = 'cid' END +SET [Description] = 'Chimariko', [Definition] = NULL, [SortOrder] = 1300.00 WHERE [Code] = 'cid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qug', 'Chimborazo Highland Quichua', NULL, 129.80) END +VALUES ('qug', 'Chimborazo Highland Quichua', NULL, 1301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chimborazo Highland Quichua', [Definition] = NULL, [SortOrder] = 129.80 WHERE [Code] = 'qug' END +SET [Description] = 'Chimborazo Highland Quichua', [Definition] = NULL, [SortOrder] = 1301.00 WHERE [Code] = 'qug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbg', 'Chimila', NULL, 129.90) END +VALUES ('cbg', 'Chimila', NULL, 1302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chimila', [Definition] = NULL, [SortOrder] = 129.90 WHERE [Code] = 'cbg' END +SET [Description] = 'Chimila', [Definition] = NULL, [SortOrder] = 1302.00 WHERE [Code] = 'cbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxu', 'China Buriat', NULL, 130.00) END +VALUES ('bxu', 'China Buriat', NULL, 1303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'China Buriat', [Definition] = NULL, [SortOrder] = 130.00 WHERE [Code] = 'bxu' END +SET [Description] = 'China Buriat', [Definition] = NULL, [SortOrder] = 1303.00 WHERE [Code] = 'bxu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cih', 'Chinali', NULL, 130.10) END +VALUES ('cih', 'Chinali', NULL, 1304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinali', [Definition] = NULL, [SortOrder] = 130.10 WHERE [Code] = 'cih' END +SET [Description] = 'Chinali', [Definition] = NULL, [SortOrder] = 1304.00 WHERE [Code] = 'cih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnb', 'Chinbon Chin', NULL, 130.20) END +VALUES ('cnb', 'Chinbon Chin', NULL, 1305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinbon Chin', [Definition] = NULL, [SortOrder] = 130.20 WHERE [Code] = 'cnb' END +SET [Description] = 'Chinbon Chin', [Definition] = NULL, [SortOrder] = 1305.00 WHERE [Code] = 'cnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxc', 'Chincha Quechua', NULL, 130.30) END +VALUES ('qxc', 'Chincha Quechua', NULL, 1306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chincha Quechua', [Definition] = NULL, [SortOrder] = 130.30 WHERE [Code] = 'qxc' END +SET [Description] = 'Chincha Quechua', [Definition] = NULL, [SortOrder] = 1306.00 WHERE [Code] = 'qxc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zho', 'Chinese', NULL, 130.40) END +VALUES ('zho', 'Chinese', NULL, 1307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinese', [Definition] = NULL, [SortOrder] = 130.40 WHERE [Code] = 'zho' END +SET [Description] = 'Chinese', [Definition] = NULL, [SortOrder] = 1307.00 WHERE [Code] = 'zho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpi', 'Chinese Pidgin English', NULL, 130.50) END +VALUES ('cpi', 'Chinese Pidgin English', NULL, 1308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinese Pidgin English', [Definition] = NULL, [SortOrder] = 130.50 WHERE [Code] = 'cpi' END +SET [Description] = 'Chinese Pidgin English', [Definition] = NULL, [SortOrder] = 1308.00 WHERE [Code] = 'cpi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csl', 'Chinese Sign Language', NULL, 130.60) END +VALUES ('csl', 'Chinese Sign Language', NULL, 1309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinese Sign Language', [Definition] = NULL, [SortOrder] = 130.60 WHERE [Code] = 'csl' END +SET [Description] = 'Chinese Sign Language', [Definition] = NULL, [SortOrder] = 1309.00 WHERE [Code] = 'csl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chh', 'Chinook', NULL, 130.70) END +VALUES ('chh', 'Chinook', NULL, 1310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinook', [Definition] = NULL, [SortOrder] = 130.70 WHERE [Code] = 'chh' END +SET [Description] = 'Chinook', [Definition] = NULL, [SortOrder] = 1310.00 WHERE [Code] = 'chh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chn', 'Chinook jargon', NULL, 130.80) END +VALUES ('chn', 'Chinook jargon', NULL, 1311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chinook jargon', [Definition] = NULL, [SortOrder] = 130.80 WHERE [Code] = 'chn' END +SET [Description] = 'Chinook jargon', [Definition] = NULL, [SortOrder] = 1311.00 WHERE [Code] = 'chn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cap', 'Chipaya', NULL, 130.90) END +VALUES ('cap', 'Chipaya', NULL, 1312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chipaya', [Definition] = NULL, [SortOrder] = 130.90 WHERE [Code] = 'cap' END +SET [Description] = 'Chipaya', [Definition] = NULL, [SortOrder] = 1312.00 WHERE [Code] = 'cap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chp', 'Chipewyan', NULL, 131.00) END +VALUES ('chp', 'Chipewyan', NULL, 1313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chipewyan', [Definition] = NULL, [SortOrder] = 131.00 WHERE [Code] = 'chp' END +SET [Description] = 'Chipewyan', [Definition] = NULL, [SortOrder] = 1313.00 WHERE [Code] = 'chp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ciw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ciw', 'Chippewa', NULL, 131.10) END +VALUES ('ciw', 'Chippewa', NULL, 1314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chippewa', [Definition] = NULL, [SortOrder] = 131.10 WHERE [Code] = 'ciw' END +SET [Description] = 'Chippewa', [Definition] = NULL, [SortOrder] = 1314.00 WHERE [Code] = 'ciw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxa', 'Chiquián Ancash Quechua', NULL, 131.20) END +VALUES ('qxa', 'Chiquián Ancash Quechua', NULL, 1315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiquián Ancash Quechua', [Definition] = NULL, [SortOrder] = 131.20 WHERE [Code] = 'qxa' END +SET [Description] = 'Chiquián Ancash Quechua', [Definition] = NULL, [SortOrder] = 1315.00 WHERE [Code] = 'qxa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maq', 'Chiquihuitlán Mazatec', NULL, 131.30) END +VALUES ('maq', 'Chiquihuitlán Mazatec', NULL, 1316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiquihuitlán Mazatec', [Definition] = NULL, [SortOrder] = 131.30 WHERE [Code] = 'maq' END +SET [Description] = 'Chiquihuitlán Mazatec', [Definition] = NULL, [SortOrder] = 1316.00 WHERE [Code] = 'maq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cax', 'Chiquitano', NULL, 131.40) END +VALUES ('cax', 'Chiquitano', NULL, 1317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiquitano', [Definition] = NULL, [SortOrder] = 131.40 WHERE [Code] = 'cax' END +SET [Description] = 'Chiquitano', [Definition] = NULL, [SortOrder] = 1317.00 WHERE [Code] = 'cax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhd', 'Chiripá', NULL, 131.50) END +VALUES ('nhd', 'Chiripá', NULL, 1318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiripá', [Definition] = NULL, [SortOrder] = 131.50 WHERE [Code] = 'nhd' END +SET [Description] = 'Chiripá', [Definition] = NULL, [SortOrder] = 1318.00 WHERE [Code] = 'nhd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdf', 'Chiru', NULL, 131.60) END +VALUES ('cdf', 'Chiru', NULL, 1319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chiru', [Definition] = NULL, [SortOrder] = 131.60 WHERE [Code] = 'cdf' END +SET [Description] = 'Chiru', [Definition] = NULL, [SortOrder] = 1319.00 WHERE [Code] = 'cdf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctm', 'Chitimacha', NULL, 131.70) END +VALUES ('ctm', 'Chitimacha', NULL, 1320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chitimacha', [Definition] = NULL, [SortOrder] = 131.70 WHERE [Code] = 'ctm' END +SET [Description] = 'Chitimacha', [Definition] = NULL, [SortOrder] = 1320.00 WHERE [Code] = 'ctm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cik', 'Chitkuli Kinnauri', NULL, 131.80) END +VALUES ('cik', 'Chitkuli Kinnauri', NULL, 1321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chitkuli Kinnauri', [Definition] = NULL, [SortOrder] = 131.80 WHERE [Code] = 'cik' END +SET [Description] = 'Chitkuli Kinnauri', [Definition] = NULL, [SortOrder] = 1321.00 WHERE [Code] = 'cik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctg', 'Chittagonian', NULL, 131.90) END +VALUES ('ctg', 'Chittagonian', NULL, 1322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chittagonian', [Definition] = NULL, [SortOrder] = 131.90 WHERE [Code] = 'ctg' END +SET [Description] = 'Chittagonian', [Definition] = NULL, [SortOrder] = 1322.00 WHERE [Code] = 'ctg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'the') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('the', 'Chitwania Tharu', NULL, 132.00) END +VALUES ('the', 'Chitwania Tharu', NULL, 1323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chitwania Tharu', [Definition] = NULL, [SortOrder] = 132.00 WHERE [Code] = 'the' END +SET [Description] = 'Chitwania Tharu', [Definition] = NULL, [SortOrder] = 1323.00 WHERE [Code] = 'the' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpc', 'Choapan Zapotec', NULL, 132.10) END +VALUES ('zpc', 'Choapan Zapotec', NULL, 1324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Choapan Zapotec', [Definition] = NULL, [SortOrder] = 132.10 WHERE [Code] = 'zpc' END +SET [Description] = 'Choapan Zapotec', [Definition] = NULL, [SortOrder] = 1324.00 WHERE [Code] = 'zpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cgk', 'Chocangacakha', NULL, 132.20) END +VALUES ('cgk', 'Chocangacakha', NULL, 1325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chocangacakha', [Definition] = NULL, [SortOrder] = 132.20 WHERE [Code] = 'cgk' END +SET [Description] = 'Chocangacakha', [Definition] = NULL, [SortOrder] = 1325.00 WHERE [Code] = 'cgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coz', 'Chochotec', NULL, 132.30) END +VALUES ('coz', 'Chochotec', NULL, 1326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chochotec', [Definition] = NULL, [SortOrder] = 132.30 WHERE [Code] = 'coz' END +SET [Description] = 'Chochotec', [Definition] = NULL, [SortOrder] = 1326.00 WHERE [Code] = 'coz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cho', 'Choctaw', NULL, 132.40) END +VALUES ('cho', 'Choctaw', NULL, 1327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Choctaw', [Definition] = NULL, [SortOrder] = 132.40 WHERE [Code] = 'cho' END +SET [Description] = 'Choctaw', [Definition] = NULL, [SortOrder] = 1327.00 WHERE [Code] = 'cho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdi', 'Chodri', NULL, 132.50) END +VALUES ('cdi', 'Chodri', NULL, 1328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chodri', [Definition] = NULL, [SortOrder] = 132.50 WHERE [Code] = 'cdi' END +SET [Description] = 'Chodri', [Definition] = NULL, [SortOrder] = 1328.00 WHERE [Code] = 'cdi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nri', 'Chokri Naga', NULL, 132.60) END +VALUES ('nri', 'Chokri Naga', NULL, 1329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chokri Naga', [Definition] = NULL, [SortOrder] = 132.60 WHERE [Code] = 'nri' END +SET [Description] = 'Chokri Naga', [Definition] = NULL, [SortOrder] = 1329.00 WHERE [Code] = 'nri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjk', 'Chokwe', NULL, 132.70) END +VALUES ('cjk', 'Chokwe', NULL, 1330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chokwe', [Definition] = NULL, [SortOrder] = 132.70 WHERE [Code] = 'cjk' END +SET [Description] = 'Chokwe', [Definition] = NULL, [SortOrder] = 1330.00 WHERE [Code] = 'cjk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctu', 'Chol', NULL, 132.80) END +VALUES ('ctu', 'Chol', NULL, 1331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chol', [Definition] = NULL, [SortOrder] = 132.80 WHERE [Code] = 'ctu' END +SET [Description] = 'Chol', [Definition] = NULL, [SortOrder] = 1331.00 WHERE [Code] = 'ctu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cht', 'Cholón', NULL, 132.90) END +VALUES ('cht', 'Cholón', NULL, 1332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cholón', [Definition] = NULL, [SortOrder] = 132.90 WHERE [Code] = 'cht' END +SET [Description] = 'Cholón', [Definition] = NULL, [SortOrder] = 1332.00 WHERE [Code] = 'cht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cog', 'Chong', NULL, 133.00) END +VALUES ('cog', 'Chong', NULL, 1333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chong', [Definition] = NULL, [SortOrder] = 133.00 WHERE [Code] = 'cog' END +SET [Description] = 'Chong', [Definition] = NULL, [SortOrder] = 1333.00 WHERE [Code] = 'cog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cda', 'Choni', NULL, 133.10) END +VALUES ('cda', 'Choni', NULL, 1334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Choni', [Definition] = NULL, [SortOrder] = 133.10 WHERE [Code] = 'cda' END +SET [Description] = 'Choni', [Definition] = NULL, [SortOrder] = 1334.00 WHERE [Code] = 'cda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coh', 'Chonyi-Dzihana-Kauma', NULL, 133.20) END +VALUES ('coh', 'Chonyi-Dzihana-Kauma', NULL, 1335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chonyi-Dzihana-Kauma', [Definition] = NULL, [SortOrder] = 133.20 WHERE [Code] = 'coh' END +SET [Description] = 'Chonyi-Dzihana-Kauma', [Definition] = NULL, [SortOrder] = 1335.00 WHERE [Code] = 'coh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cce', 'Chopi', NULL, 133.30) END +VALUES ('cce', 'Chopi', NULL, 1336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chopi', [Definition] = NULL, [SortOrder] = 133.30 WHERE [Code] = 'cce' END +SET [Description] = 'Chopi', [Definition] = NULL, [SortOrder] = 1336.00 WHERE [Code] = 'cce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xco', 'Chorasmian', NULL, 133.40) END +VALUES ('xco', 'Chorasmian', NULL, 1337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chorasmian', [Definition] = NULL, [SortOrder] = 133.40 WHERE [Code] = 'xco' END +SET [Description] = 'Chorasmian', [Definition] = NULL, [SortOrder] = 1337.00 WHERE [Code] = 'xco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caa', 'Chortí', NULL, 133.50) END +VALUES ('caa', 'Chortí', NULL, 1338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chortí', [Definition] = NULL, [SortOrder] = 133.50 WHERE [Code] = 'caa' END +SET [Description] = 'Chortí', [Definition] = NULL, [SortOrder] = 1338.00 WHERE [Code] = 'caa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nct', 'Chothe Naga', NULL, 133.60) END +VALUES ('nct', 'Chothe Naga', NULL, 1339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chothe Naga', [Definition] = NULL, [SortOrder] = 133.60 WHERE [Code] = 'nct' END +SET [Description] = 'Chothe Naga', [Definition] = NULL, [SortOrder] = 1339.00 WHERE [Code] = 'nct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crw', 'Chrau', NULL, 133.70) END +VALUES ('crw', 'Chrau', NULL, 1340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chrau', [Definition] = NULL, [SortOrder] = 133.70 WHERE [Code] = 'crw' END +SET [Description] = 'Chrau', [Definition] = NULL, [SortOrder] = 1340.00 WHERE [Code] = 'crw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cje', 'Chru', NULL, 133.80) END +VALUES ('cje', 'Chru', NULL, 1341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chru', [Definition] = NULL, [SortOrder] = 133.80 WHERE [Code] = 'cje' END +SET [Description] = 'Chru', [Definition] = NULL, [SortOrder] = 1341.00 WHERE [Code] = 'cje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cqd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cqd', 'Chuanqiandian Cluster Miao', NULL, 133.90) END +VALUES ('cqd', 'Chuanqiandian Cluster Miao', NULL, 1342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuanqiandian Cluster Miao', [Definition] = NULL, [SortOrder] = 133.90 WHERE [Code] = 'cqd' END +SET [Description] = 'Chuanqiandian Cluster Miao', [Definition] = NULL, [SortOrder] = 1342.00 WHERE [Code] = 'cqd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjv', 'Chuave', NULL, 134.00) END +VALUES ('cjv', 'Chuave', NULL, 1343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuave', [Definition] = NULL, [SortOrder] = 134.00 WHERE [Code] = 'cjv' END +SET [Description] = 'Chuave', [Definition] = NULL, [SortOrder] = 1343.00 WHERE [Code] = 'cjv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cvg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cvg', 'Chug', NULL, 134.10) END +VALUES ('cvg', 'Chug', NULL, 1344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chug', [Definition] = NULL, [SortOrder] = 134.10 WHERE [Code] = 'cvg' END +SET [Description] = 'Chug', [Definition] = NULL, [SortOrder] = 1344.00 WHERE [Code] = 'cvg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cac', 'Chuj', NULL, 134.20) END +VALUES ('cac', 'Chuj', NULL, 1345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuj', [Definition] = NULL, [SortOrder] = 134.20 WHERE [Code] = 'cac' END +SET [Description] = 'Chuj', [Definition] = NULL, [SortOrder] = 1345.00 WHERE [Code] = 'cac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuh', 'Chuka', NULL, 134.30) END +VALUES ('cuh', 'Chuka', NULL, 1346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuka', [Definition] = NULL, [SortOrder] = 134.30 WHERE [Code] = 'cuh' END +SET [Description] = 'Chuka', [Definition] = NULL, [SortOrder] = 1346.00 WHERE [Code] = 'cuh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckt', 'Chukot', NULL, 134.40) END +VALUES ('ckt', 'Chukot', NULL, 1347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chukot', [Definition] = NULL, [SortOrder] = 134.40 WHERE [Code] = 'ckt' END +SET [Description] = 'Chukot', [Definition] = NULL, [SortOrder] = 1347.00 WHERE [Code] = 'ckt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuw', 'Chukwa', NULL, 134.50) END +VALUES ('cuw', 'Chukwa', NULL, 1348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chukwa', [Definition] = NULL, [SortOrder] = 134.50 WHERE [Code] = 'cuw' END +SET [Description] = 'Chukwa', [Definition] = NULL, [SortOrder] = 1348.00 WHERE [Code] = 'cuw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clw', 'Chulym', NULL, 134.60) END +VALUES ('clw', 'Chulym', NULL, 1349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chulym', [Definition] = NULL, [SortOrder] = 134.60 WHERE [Code] = 'clw' END +SET [Description] = 'Chulym', [Definition] = NULL, [SortOrder] = 1349.00 WHERE [Code] = 'clw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncu', 'Chumburung', NULL, 134.70) END +VALUES ('ncu', 'Chumburung', NULL, 1350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chumburung', [Definition] = NULL, [SortOrder] = 134.70 WHERE [Code] = 'ncu' END +SET [Description] = 'Chumburung', [Definition] = NULL, [SortOrder] = 1350.00 WHERE [Code] = 'ncu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnq', 'Chung', NULL, 134.80) END +VALUES ('cnq', 'Chung', NULL, 1351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chung', [Definition] = NULL, [SortOrder] = 134.80 WHERE [Code] = 'cnq' END +SET [Description] = 'Chung', [Definition] = NULL, [SortOrder] = 1351.00 WHERE [Code] = 'cnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdj', 'Churahi', NULL, 134.90) END +VALUES ('cdj', 'Churahi', NULL, 1352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Churahi', [Definition] = NULL, [SortOrder] = 134.90 WHERE [Code] = 'cdj' END +SET [Description] = 'Churahi', [Definition] = NULL, [SortOrder] = 1352.00 WHERE [Code] = 'cdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chu', 'Church Slavic', NULL, 135.00) END +VALUES ('chu', 'Church Slavic', NULL, 1353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Church Slavic', [Definition] = NULL, [SortOrder] = 135.00 WHERE [Code] = 'chu' END +SET [Description] = 'Church Slavic', [Definition] = NULL, [SortOrder] = 1353.00 WHERE [Code] = 'chu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scb', 'Chut', NULL, 135.10) END +VALUES ('scb', 'Chut', NULL, 1354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chut', [Definition] = NULL, [SortOrder] = 135.10 WHERE [Code] = 'scb' END +SET [Description] = 'Chut', [Definition] = NULL, [SortOrder] = 1354.00 WHERE [Code] = 'scb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chk', 'Chuukese', NULL, 135.20) END +VALUES ('chk', 'Chuukese', NULL, 1355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuukese', [Definition] = NULL, [SortOrder] = 135.20 WHERE [Code] = 'chk' END +SET [Description] = 'Chuukese', [Definition] = NULL, [SortOrder] = 1355.00 WHERE [Code] = 'chk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcv', 'Chuvantsy', NULL, 135.30) END +VALUES ('xcv', 'Chuvantsy', NULL, 1356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuvantsy', [Definition] = NULL, [SortOrder] = 135.30 WHERE [Code] = 'xcv' END +SET [Description] = 'Chuvantsy', [Definition] = NULL, [SortOrder] = 1356.00 WHERE [Code] = 'xcv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chv', 'Chuvash', NULL, 135.40) END +VALUES ('chv', 'Chuvash', NULL, 1357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuvash', [Definition] = NULL, [SortOrder] = 135.40 WHERE [Code] = 'chv' END +SET [Description] = 'Chuvash', [Definition] = NULL, [SortOrder] = 1357.00 WHERE [Code] = 'chv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chw', 'Chuwabu', NULL, 135.50) END +VALUES ('chw', 'Chuwabu', NULL, 1358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Chuwabu', [Definition] = NULL, [SortOrder] = 135.50 WHERE [Code] = 'chw' END +SET [Description] = 'Chuwabu', [Definition] = NULL, [SortOrder] = 1358.00 WHERE [Code] = 'chw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cib', 'Ci Gbe', NULL, 135.60) END +VALUES ('cib', 'Ci Gbe', NULL, 1359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ci Gbe', [Definition] = NULL, [SortOrder] = 135.60 WHERE [Code] = 'cib' END +SET [Description] = 'Ci Gbe', [Definition] = NULL, [SortOrder] = 1359.00 WHERE [Code] = 'cib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cia', 'Cia-Cia', NULL, 135.70) END +VALUES ('cia', 'Cia-Cia', NULL, 1360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cia-Cia', [Definition] = NULL, [SortOrder] = 135.70 WHERE [Code] = 'cia' END +SET [Description] = 'Cia-Cia', [Definition] = NULL, [SortOrder] = 1360.00 WHERE [Code] = 'cia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckl', 'Cibak', NULL, 135.80) END +VALUES ('ckl', 'Cibak', NULL, 1361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cibak', [Definition] = NULL, [SortOrder] = 135.80 WHERE [Code] = 'ckl' END +SET [Description] = 'Cibak', [Definition] = NULL, [SortOrder] = 1361.00 WHERE [Code] = 'ckl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awc', 'Cicipu', NULL, 135.90) END +VALUES ('awc', 'Cicipu', NULL, 1362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cicipu', [Definition] = NULL, [SortOrder] = 135.90 WHERE [Code] = 'awc' END +SET [Description] = 'Cicipu', [Definition] = NULL, [SortOrder] = 1362.00 WHERE [Code] = 'awc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cim', 'Cimbrian', NULL, 136.00) END +VALUES ('cim', 'Cimbrian', NULL, 1363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cimbrian', [Definition] = NULL, [SortOrder] = 136.00 WHERE [Code] = 'cim' END +SET [Description] = 'Cimbrian', [Definition] = NULL, [SortOrder] = 1363.00 WHERE [Code] = 'cim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdr', 'Cinda-Regi-Tiyal', NULL, 136.10) END +VALUES ('cdr', 'Cinda-Regi-Tiyal', NULL, 1364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cinda-Regi-Tiyal', [Definition] = NULL, [SortOrder] = 136.10 WHERE [Code] = 'cdr' END +SET [Description] = 'Cinda-Regi-Tiyal', [Definition] = NULL, [SortOrder] = 1364.00 WHERE [Code] = 'cdr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cie', 'Cineni', NULL, 136.20) END +VALUES ('cie', 'Cineni', NULL, 1365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cineni', [Definition] = NULL, [SortOrder] = 136.20 WHERE [Code] = 'cie' END +SET [Description] = 'Cineni', [Definition] = NULL, [SortOrder] = 1365.00 WHERE [Code] = 'cie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cin', 'Cinta Larga', NULL, 136.30) END +VALUES ('cin', 'Cinta Larga', NULL, 1366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cinta Larga', [Definition] = NULL, [SortOrder] = 136.30 WHERE [Code] = 'cin' END +SET [Description] = 'Cinta Larga', [Definition] = NULL, [SortOrder] = 1366.00 WHERE [Code] = 'cin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcg', 'Cisalpine Gaulish', NULL, 136.40) END +VALUES ('xcg', 'Cisalpine Gaulish', NULL, 1367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cisalpine Gaulish', [Definition] = NULL, [SortOrder] = 136.40 WHERE [Code] = 'xcg' END +SET [Description] = 'Cisalpine Gaulish', [Definition] = NULL, [SortOrder] = 1367.00 WHERE [Code] = 'xcg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asg', 'Cishingini', NULL, 136.50) END +VALUES ('asg', 'Cishingini', NULL, 1368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cishingini', [Definition] = NULL, [SortOrder] = 136.50 WHERE [Code] = 'asg' END +SET [Description] = 'Cishingini', [Definition] = NULL, [SortOrder] = 1368.00 WHERE [Code] = 'asg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txt', 'Citak', NULL, 136.60) END +VALUES ('txt', 'Citak', NULL, 1369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Citak', [Definition] = NULL, [SortOrder] = 136.60 WHERE [Code] = 'txt' END +SET [Description] = 'Citak', [Definition] = NULL, [SortOrder] = 1369.00 WHERE [Code] = 'txt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgd', 'Ciwogai', NULL, 136.70) END +VALUES ('tgd', 'Ciwogai', NULL, 1370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ciwogai', [Definition] = NULL, [SortOrder] = 136.70 WHERE [Code] = 'tgd' END +SET [Description] = 'Ciwogai', [Definition] = NULL, [SortOrder] = 1370.00 WHERE [Code] = 'tgd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clm', 'Clallam', NULL, 136.80) END +VALUES ('clm', 'Clallam', NULL, 1371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Clallam', [Definition] = NULL, [SortOrder] = 136.80 WHERE [Code] = 'clm' END +SET [Description] = 'Clallam', [Definition] = NULL, [SortOrder] = 1371.00 WHERE [Code] = 'clm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcl', 'Classical Armenian', NULL, 136.90) END +VALUES ('xcl', 'Classical Armenian', NULL, 1372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Armenian', [Definition] = NULL, [SortOrder] = 136.90 WHERE [Code] = 'xcl' END +SET [Description] = 'Classical Armenian', [Definition] = NULL, [SortOrder] = 1372.00 WHERE [Code] = 'xcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myz', 'Classical Mandaic', NULL, 137.00) END +VALUES ('myz', 'Classical Mandaic', NULL, 1373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Mandaic', [Definition] = NULL, [SortOrder] = 137.00 WHERE [Code] = 'myz' END +SET [Description] = 'Classical Mandaic', [Definition] = NULL, [SortOrder] = 1373.00 WHERE [Code] = 'myz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmg', 'Classical Mongolian', NULL, 137.10) END +VALUES ('cmg', 'Classical Mongolian', NULL, 1374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Mongolian', [Definition] = NULL, [SortOrder] = 137.10 WHERE [Code] = 'cmg' END +SET [Description] = 'Classical Mongolian', [Definition] = NULL, [SortOrder] = 1374.00 WHERE [Code] = 'cmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nci', 'Classical Nahuatl', NULL, 137.20) END +VALUES ('nci', 'Classical Nahuatl', NULL, 1375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Nahuatl', [Definition] = NULL, [SortOrder] = 137.20 WHERE [Code] = 'nci' END +SET [Description] = 'Classical Nahuatl', [Definition] = NULL, [SortOrder] = 1375.00 WHERE [Code] = 'nci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwc', 'Classical Newari', NULL, 137.30) END +VALUES ('nwc', 'Classical Newari', NULL, 1376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Newari', [Definition] = NULL, [SortOrder] = 137.30 WHERE [Code] = 'nwc' END +SET [Description] = 'Classical Newari', [Definition] = NULL, [SortOrder] = 1376.00 WHERE [Code] = 'nwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwc', 'Classical Quechua', NULL, 137.40) END +VALUES ('qwc', 'Classical Quechua', NULL, 1377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Quechua', [Definition] = NULL, [SortOrder] = 137.40 WHERE [Code] = 'qwc' END +SET [Description] = 'Classical Quechua', [Definition] = NULL, [SortOrder] = 1377.00 WHERE [Code] = 'qwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syc', 'Classical Syriac', NULL, 137.50) END +VALUES ('syc', 'Classical Syriac', NULL, 1378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Syriac', [Definition] = NULL, [SortOrder] = 137.50 WHERE [Code] = 'syc' END +SET [Description] = 'Classical Syriac', [Definition] = NULL, [SortOrder] = 1378.00 WHERE [Code] = 'syc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xct', 'Classical Tibetan', NULL, 137.60) END +VALUES ('xct', 'Classical Tibetan', NULL, 1379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Classical Tibetan', [Definition] = NULL, [SortOrder] = 137.60 WHERE [Code] = 'xct' END +SET [Description] = 'Classical Tibetan', [Definition] = NULL, [SortOrder] = 1379.00 WHERE [Code] = 'xct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcw', 'Coahuilteco', NULL, 137.70) END +VALUES ('xcw', 'Coahuilteco', NULL, 1380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coahuilteco', [Definition] = NULL, [SortOrder] = 137.70 WHERE [Code] = 'xcw' END +SET [Description] = 'Coahuilteco', [Definition] = NULL, [SortOrder] = 1380.00 WHERE [Code] = 'xcw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csi', 'Coast Miwok', NULL, 137.80) END +VALUES ('csi', 'Coast Miwok', NULL, 1381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coast Miwok', [Definition] = NULL, [SortOrder] = 137.80 WHERE [Code] = 'csi' END +SET [Description] = 'Coast Miwok', [Definition] = NULL, [SortOrder] = 1381.00 WHERE [Code] = 'csi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjc', 'Coastal Konjo', NULL, 137.90) END +VALUES ('kjc', 'Coastal Konjo', NULL, 1382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coastal Konjo', [Definition] = NULL, [SortOrder] = 137.90 WHERE [Code] = 'kjc' END +SET [Description] = 'Coastal Konjo', [Definition] = NULL, [SortOrder] = 1382.00 WHERE [Code] = 'kjc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zca', 'Coatecas Altas Zapotec', NULL, 138.00) END +VALUES ('zca', 'Coatecas Altas Zapotec', NULL, 1383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatecas Altas Zapotec', [Definition] = NULL, [SortOrder] = 138.00 WHERE [Code] = 'zca' END +SET [Description] = 'Coatecas Altas Zapotec', [Definition] = NULL, [SortOrder] = 1383.00 WHERE [Code] = 'zca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naz', 'Coatepec Nahuatl', NULL, 138.10) END +VALUES ('naz', 'Coatepec Nahuatl', NULL, 1384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatepec Nahuatl', [Definition] = NULL, [SortOrder] = 138.10 WHERE [Code] = 'naz' END +SET [Description] = 'Coatepec Nahuatl', [Definition] = NULL, [SortOrder] = 1384.00 WHERE [Code] = 'naz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mco', 'Coatlán Mixe', NULL, 138.20) END +VALUES ('mco', 'Coatlán Mixe', NULL, 1385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatlán Mixe', [Definition] = NULL, [SortOrder] = 138.20 WHERE [Code] = 'mco' END +SET [Description] = 'Coatlán Mixe', [Definition] = NULL, [SortOrder] = 1385.00 WHERE [Code] = 'mco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zps', 'Coatlán Zapotec', NULL, 138.30) END +VALUES ('zps', 'Coatlán Zapotec', NULL, 1386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatlán Zapotec', [Definition] = NULL, [SortOrder] = 138.30 WHERE [Code] = 'zps' END +SET [Description] = 'Coatlán Zapotec', [Definition] = NULL, [SortOrder] = 1386.00 WHERE [Code] = 'zps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miz', 'Coatzospan Mixtec', NULL, 138.40) END +VALUES ('miz', 'Coatzospan Mixtec', NULL, 1387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coatzospan Mixtec', [Definition] = NULL, [SortOrder] = 138.40 WHERE [Code] = 'miz' END +SET [Description] = 'Coatzospan Mixtec', [Definition] = NULL, [SortOrder] = 1387.00 WHERE [Code] = 'miz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cod', 'Cocama-Cocamilla', NULL, 138.50) END +VALUES ('cod', 'Cocama-Cocamilla', NULL, 1388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cocama-Cocamilla', [Definition] = NULL, [SortOrder] = 138.50 WHERE [Code] = 'cod' END +SET [Description] = 'Cocama-Cocamilla', [Definition] = NULL, [SortOrder] = 1388.00 WHERE [Code] = 'cod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coj', 'Cochimi', NULL, 138.60) END +VALUES ('coj', 'Cochimi', NULL, 1389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cochimi', [Definition] = NULL, [SortOrder] = 138.60 WHERE [Code] = 'coj' END +SET [Description] = 'Cochimi', [Definition] = NULL, [SortOrder] = 1389.00 WHERE [Code] = 'coj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coc', 'Cocopa', NULL, 138.70) END +VALUES ('coc', 'Cocopa', NULL, 1390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cocopa', [Definition] = NULL, [SortOrder] = 138.70 WHERE [Code] = 'coc' END +SET [Description] = 'Cocopa', [Definition] = NULL, [SortOrder] = 1390.00 WHERE [Code] = 'coc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coa', 'Cocos Islands Malay', NULL, 138.80) END +VALUES ('coa', 'Cocos Islands Malay', NULL, 1391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cocos Islands Malay', [Definition] = NULL, [SortOrder] = 138.80 WHERE [Code] = 'coa' END +SET [Description] = 'Cocos Islands Malay', [Definition] = NULL, [SortOrder] = 1391.00 WHERE [Code] = 'coa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crd', 'Coeur d''Alene', NULL, 138.90) END +VALUES ('crd', 'Coeur d''Alene', NULL, 1392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coeur d''Alene', [Definition] = NULL, [SortOrder] = 138.90 WHERE [Code] = 'crd' END +SET [Description] = 'Coeur d''Alene', [Definition] = NULL, [SortOrder] = 1392.00 WHERE [Code] = 'crd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'con') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('con', 'Cofán', NULL, 139.00) END +VALUES ('con', 'Cofán', NULL, 1393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cofán', [Definition] = NULL, [SortOrder] = 139.00 WHERE [Code] = 'con' END +SET [Description] = 'Cofán', [Definition] = NULL, [SortOrder] = 1393.00 WHERE [Code] = 'con' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kog', 'Cogui', NULL, 139.10) END +VALUES ('kog', 'Cogui', NULL, 1394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cogui', [Definition] = NULL, [SortOrder] = 139.10 WHERE [Code] = 'kog' END +SET [Description] = 'Cogui', [Definition] = NULL, [SortOrder] = 1394.00 WHERE [Code] = 'kog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liw', 'Col', NULL, 139.20) END +VALUES ('liw', 'Col', NULL, 1395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Col', [Definition] = NULL, [SortOrder] = 139.20 WHERE [Code] = 'liw' END +SET [Description] = 'Col', [Definition] = NULL, [SortOrder] = 1395.00 WHERE [Code] = 'liw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csn', 'Colombian Sign Language', NULL, 139.30) END +VALUES ('csn', 'Colombian Sign Language', NULL, 1396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Colombian Sign Language', [Definition] = NULL, [SortOrder] = 139.30 WHERE [Code] = 'csn' END +SET [Description] = 'Colombian Sign Language', [Definition] = NULL, [SortOrder] = 1396.00 WHERE [Code] = 'csn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gct', 'Colonia Tovar German', NULL, 139.40) END +VALUES ('gct', 'Colonia Tovar German', NULL, 1397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Colonia Tovar German', [Definition] = NULL, [SortOrder] = 139.40 WHERE [Code] = 'gct' END +SET [Description] = 'Colonia Tovar German', [Definition] = NULL, [SortOrder] = 1397.00 WHERE [Code] = 'gct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cof', 'Colorado', NULL, 139.50) END +VALUES ('cof', 'Colorado', NULL, 1398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Colorado', [Definition] = NULL, [SortOrder] = 139.50 WHERE [Code] = 'cof' END +SET [Description] = 'Colorado', [Definition] = NULL, [SortOrder] = 1398.00 WHERE [Code] = 'cof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'col') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('col', 'Columbia-Wenatchi', NULL, 139.60) END +VALUES ('col', 'Columbia-Wenatchi', NULL, 1399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Columbia-Wenatchi', [Definition] = NULL, [SortOrder] = 139.60 WHERE [Code] = 'col' END +SET [Description] = 'Columbia-Wenatchi', [Definition] = NULL, [SortOrder] = 1399.00 WHERE [Code] = 'col' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cco', 'Comaltepec Chinantec', NULL, 139.70) END +VALUES ('cco', 'Comaltepec Chinantec', NULL, 1400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Comaltepec Chinantec', [Definition] = NULL, [SortOrder] = 139.70 WHERE [Code] = 'cco' END +SET [Description] = 'Comaltepec Chinantec', [Definition] = NULL, [SortOrder] = 1400.00 WHERE [Code] = 'cco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'com') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('com', 'Comanche', NULL, 139.80) END +VALUES ('com', 'Comanche', NULL, 1401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Comanche', [Definition] = NULL, [SortOrder] = 139.80 WHERE [Code] = 'com' END +SET [Description] = 'Comanche', [Definition] = NULL, [SortOrder] = 1401.00 WHERE [Code] = 'com' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcm', 'Comecrudo', NULL, 139.90) END +VALUES ('xcm', 'Comecrudo', NULL, 1402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Comecrudo', [Definition] = NULL, [SortOrder] = 139.90 WHERE [Code] = 'xcm' END +SET [Description] = 'Comecrudo', [Definition] = NULL, [SortOrder] = 1402.00 WHERE [Code] = 'xcm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cfg', 'Como Karim', NULL, 140.00) END +VALUES ('cfg', 'Como Karim', NULL, 1403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Como Karim', [Definition] = NULL, [SortOrder] = 140.00 WHERE [Code] = 'cfg' END +SET [Description] = 'Como Karim', [Definition] = NULL, [SortOrder] = 1403.00 WHERE [Code] = 'cfg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coo', 'Comox', NULL, 140.10) END +VALUES ('coo', 'Comox', NULL, 1404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Comox', [Definition] = NULL, [SortOrder] = 140.10 WHERE [Code] = 'coo' END +SET [Description] = 'Comox', [Definition] = NULL, [SortOrder] = 1404.00 WHERE [Code] = 'coo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cno', 'Con', NULL, 140.20) END +VALUES ('cno', 'Con', NULL, 1405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Con', [Definition] = NULL, [SortOrder] = 140.20 WHERE [Code] = 'cno' END +SET [Description] = 'Con', [Definition] = NULL, [SortOrder] = 1405.00 WHERE [Code] = 'cno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swc', 'Congo Swahili', NULL, 140.30) END +VALUES ('swc', 'Congo Swahili', NULL, 1406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Congo Swahili', [Definition] = NULL, [SortOrder] = 140.30 WHERE [Code] = 'swc' END +SET [Description] = 'Congo Swahili', [Definition] = NULL, [SortOrder] = 1406.00 WHERE [Code] = 'swc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnc', 'Côông', NULL, 140.40) END +VALUES ('cnc', 'Côông', NULL, 1407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Côông', [Definition] = NULL, [SortOrder] = 140.40 WHERE [Code] = 'cnc' END +SET [Description] = 'Côông', [Definition] = NULL, [SortOrder] = 1407.00 WHERE [Code] = 'cnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csz', 'Coos', NULL, 140.50) END +VALUES ('csz', 'Coos', NULL, 1408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coos', [Definition] = NULL, [SortOrder] = 140.50 WHERE [Code] = 'csz' END +SET [Description] = 'Coos', [Definition] = NULL, [SortOrder] = 1408.00 WHERE [Code] = 'csz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zoc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zoc', 'Copainalá Zoque', NULL, 140.60) END +VALUES ('zoc', 'Copainalá Zoque', NULL, 1409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Copainalá Zoque', [Definition] = NULL, [SortOrder] = 140.60 WHERE [Code] = 'zoc' END +SET [Description] = 'Copainalá Zoque', [Definition] = NULL, [SortOrder] = 1409.00 WHERE [Code] = 'zoc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trc', 'Copala Triqui', NULL, 140.70) END +VALUES ('trc', 'Copala Triqui', NULL, 1410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Copala Triqui', [Definition] = NULL, [SortOrder] = 140.70 WHERE [Code] = 'trc' END +SET [Description] = 'Copala Triqui', [Definition] = NULL, [SortOrder] = 1410.00 WHERE [Code] = 'trc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cop', 'Coptic', NULL, 140.80) END +VALUES ('cop', 'Coptic', NULL, 1411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coptic', [Definition] = NULL, [SortOrder] = 140.80 WHERE [Code] = 'cop' END +SET [Description] = 'Coptic', [Definition] = NULL, [SortOrder] = 1411.00 WHERE [Code] = 'cop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coq', 'Coquille', NULL, 140.90) END +VALUES ('coq', 'Coquille', NULL, 1412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coquille', [Definition] = NULL, [SortOrder] = 140.90 WHERE [Code] = 'coq' END +SET [Description] = 'Coquille', [Definition] = NULL, [SortOrder] = 1412.00 WHERE [Code] = 'coq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cry', 'Cori', NULL, 141.00) END +VALUES ('cry', 'Cori', NULL, 1413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cori', [Definition] = NULL, [SortOrder] = 141.00 WHERE [Code] = 'cry' END +SET [Description] = 'Cori', [Definition] = NULL, [SortOrder] = 1413.00 WHERE [Code] = 'cry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cor', 'Cornish', NULL, 141.10) END +VALUES ('cor', 'Cornish', NULL, 1414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cornish', [Definition] = NULL, [SortOrder] = 141.10 WHERE [Code] = 'cor' END +SET [Description] = 'Cornish', [Definition] = NULL, [SortOrder] = 1414.00 WHERE [Code] = 'cor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwa', 'Corongo Ancash Quechua', NULL, 141.20) END +VALUES ('qwa', 'Corongo Ancash Quechua', NULL, 1415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Corongo Ancash Quechua', [Definition] = NULL, [SortOrder] = 141.20 WHERE [Code] = 'qwa' END +SET [Description] = 'Corongo Ancash Quechua', [Definition] = NULL, [SortOrder] = 1415.00 WHERE [Code] = 'qwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cos', 'Corsican', NULL, 141.30) END +VALUES ('cos', 'Corsican', NULL, 1416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Corsican', [Definition] = NULL, [SortOrder] = 141.30 WHERE [Code] = 'cos' END +SET [Description] = 'Corsican', [Definition] = NULL, [SortOrder] = 1416.00 WHERE [Code] = 'cos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csr', 'Costa Rican Sign Language', NULL, 141.40) END +VALUES ('csr', 'Costa Rican Sign Language', NULL, 1417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Costa Rican Sign Language', [Definition] = NULL, [SortOrder] = 141.40 WHERE [Code] = 'csr' END +SET [Description] = 'Costa Rican Sign Language', [Definition] = NULL, [SortOrder] = 1417.00 WHERE [Code] = 'csr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mta', 'Cotabato Manobo', NULL, 141.50) END +VALUES ('mta', 'Cotabato Manobo', NULL, 1418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cotabato Manobo', [Definition] = NULL, [SortOrder] = 141.50 WHERE [Code] = 'mta' END +SET [Description] = 'Cotabato Manobo', [Definition] = NULL, [SortOrder] = 1418.00 WHERE [Code] = 'mta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcn', 'Cotoname', NULL, 141.60) END +VALUES ('xcn', 'Cotoname', NULL, 1419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cotoname', [Definition] = NULL, [SortOrder] = 141.60 WHERE [Code] = 'xcn' END +SET [Description] = 'Cotoname', [Definition] = NULL, [SortOrder] = 1419.00 WHERE [Code] = 'xcn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cow', 'Cowlitz', NULL, 141.70) END +VALUES ('cow', 'Cowlitz', NULL, 1420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cowlitz', [Definition] = NULL, [SortOrder] = 141.70 WHERE [Code] = 'cow' END +SET [Description] = 'Cowlitz', [Definition] = NULL, [SortOrder] = 1420.00 WHERE [Code] = 'cow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbf', 'Coyotepec Popoloca', NULL, 141.80) END +VALUES ('pbf', 'Coyotepec Popoloca', NULL, 1421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coyotepec Popoloca', [Definition] = NULL, [SortOrder] = 141.80 WHERE [Code] = 'pbf' END +SET [Description] = 'Coyotepec Popoloca', [Definition] = NULL, [SortOrder] = 1421.00 WHERE [Code] = 'pbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toc', 'Coyutla Totonac', NULL, 141.90) END +VALUES ('toc', 'Coyutla Totonac', NULL, 1422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Coyutla Totonac', [Definition] = NULL, [SortOrder] = 141.90 WHERE [Code] = 'toc' END +SET [Description] = 'Coyutla Totonac', [Definition] = NULL, [SortOrder] = 1422.00 WHERE [Code] = 'toc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cre', 'Cree', NULL, 142.00) END +VALUES ('cre', 'Cree', NULL, 1423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cree', [Definition] = NULL, [SortOrder] = 142.00 WHERE [Code] = 'cre' END +SET [Description] = 'Cree', [Definition] = NULL, [SortOrder] = 1423.00 WHERE [Code] = 'cre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mus', 'Creek', NULL, 142.10) END +VALUES ('mus', 'Creek', NULL, 1424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Creek', [Definition] = NULL, [SortOrder] = 142.10 WHERE [Code] = 'mus' END +SET [Description] = 'Creek', [Definition] = NULL, [SortOrder] = 1424.00 WHERE [Code] = 'mus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crh', 'Crimean Tatar', NULL, 142.20) END +VALUES ('crh', 'Crimean Tatar', NULL, 1425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Crimean Tatar', [Definition] = NULL, [SortOrder] = 142.20 WHERE [Code] = 'crh' END +SET [Description] = 'Crimean Tatar', [Definition] = NULL, [SortOrder] = 1425.00 WHERE [Code] = 'crh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csq', 'Croatia Sign Language', NULL, 142.30) END +VALUES ('csq', 'Croatia Sign Language', NULL, 1426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Croatia Sign Language', [Definition] = NULL, [SortOrder] = 142.30 WHERE [Code] = 'csq' END +SET [Description] = 'Croatia Sign Language', [Definition] = NULL, [SortOrder] = 1426.00 WHERE [Code] = 'csq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrv', 'Croatian', NULL, 142.40) END +VALUES ('hrv', 'Croatian', NULL, 1427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Croatian', [Definition] = NULL, [SortOrder] = 142.40 WHERE [Code] = 'hrv' END +SET [Description] = 'Croatian', [Definition] = NULL, [SortOrder] = 1427.00 WHERE [Code] = 'hrv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfn', 'Cross River Mbembe', NULL, 142.50) END +VALUES ('mfn', 'Cross River Mbembe', NULL, 1428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cross River Mbembe', [Definition] = NULL, [SortOrder] = 142.50 WHERE [Code] = 'mfn' END +SET [Description] = 'Cross River Mbembe', [Definition] = NULL, [SortOrder] = 1428.00 WHERE [Code] = 'mfn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cro', 'Crow', NULL, 142.60) END +VALUES ('cro', 'Crow', NULL, 1429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Crow', [Definition] = NULL, [SortOrder] = 142.60 WHERE [Code] = 'cro' END +SET [Description] = 'Crow', [Definition] = NULL, [SortOrder] = 1429.00 WHERE [Code] = 'cro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crz', 'Cruzeño', NULL, 142.70) END +VALUES ('crz', 'Cruzeño', NULL, 1430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cruzeño', [Definition] = NULL, [SortOrder] = 142.70 WHERE [Code] = 'crz' END +SET [Description] = 'Cruzeño', [Definition] = NULL, [SortOrder] = 1430.00 WHERE [Code] = 'crz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cua', 'Cua', NULL, 142.80) END +VALUES ('cua', 'Cua', NULL, 1431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cua', [Definition] = NULL, [SortOrder] = 142.80 WHERE [Code] = 'cua' END +SET [Description] = 'Cua', [Definition] = NULL, [SortOrder] = 1431.00 WHERE [Code] = 'cua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csf', 'Cuba Sign Language', NULL, 142.90) END +VALUES ('csf', 'Cuba Sign Language', NULL, 1432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuba Sign Language', [Definition] = NULL, [SortOrder] = 142.90 WHERE [Code] = 'csf' END +SET [Description] = 'Cuba Sign Language', [Definition] = NULL, [SortOrder] = 1432.00 WHERE [Code] = 'csf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cub', 'Cubeo', NULL, 143.00) END +VALUES ('cub', 'Cubeo', NULL, 1433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cubeo', [Definition] = NULL, [SortOrder] = 143.00 WHERE [Code] = 'cub' END +SET [Description] = 'Cubeo', [Definition] = NULL, [SortOrder] = 1433.00 WHERE [Code] = 'cub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cui', 'Cuiba', NULL, 143.10) END +VALUES ('cui', 'Cuiba', NULL, 1434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuiba', [Definition] = NULL, [SortOrder] = 143.10 WHERE [Code] = 'cui' END +SET [Description] = 'Cuiba', [Definition] = NULL, [SortOrder] = 1434.00 WHERE [Code] = 'cui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuy', 'Cuitlatec', NULL, 143.20) END +VALUES ('cuy', 'Cuitlatec', NULL, 1435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuitlatec', [Definition] = NULL, [SortOrder] = 143.20 WHERE [Code] = 'cuy' END +SET [Description] = 'Cuitlatec', [Definition] = NULL, [SortOrder] = 1435.00 WHERE [Code] = 'cuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cul', 'Culina', NULL, 143.30) END +VALUES ('cul', 'Culina', NULL, 1436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Culina', [Definition] = NULL, [SortOrder] = 143.30 WHERE [Code] = 'cul' END +SET [Description] = 'Culina', [Definition] = NULL, [SortOrder] = 1436.00 WHERE [Code] = 'cul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuo', 'Cumanagoto', NULL, 143.40) END +VALUES ('cuo', 'Cumanagoto', NULL, 1437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cumanagoto', [Definition] = NULL, [SortOrder] = 143.40 WHERE [Code] = 'cuo' END +SET [Description] = 'Cumanagoto', [Definition] = NULL, [SortOrder] = 1437.00 WHERE [Code] = 'cuo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcb', 'Cumbric', NULL, 143.50) END +VALUES ('xcb', 'Cumbric', NULL, 1438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cumbric', [Definition] = NULL, [SortOrder] = 143.50 WHERE [Code] = 'xcb' END +SET [Description] = 'Cumbric', [Definition] = NULL, [SortOrder] = 1438.00 WHERE [Code] = 'xcb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuq', 'Cun', NULL, 143.60) END +VALUES ('cuq', 'Cun', NULL, 1439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cun', [Definition] = NULL, [SortOrder] = 143.60 WHERE [Code] = 'cuq' END +SET [Description] = 'Cun', [Definition] = NULL, [SortOrder] = 1439.00 WHERE [Code] = 'cuq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlu', 'Cuneiform Luwian', NULL, 143.70) END +VALUES ('xlu', 'Cuneiform Luwian', NULL, 1440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuneiform Luwian', [Definition] = NULL, [SortOrder] = 143.70 WHERE [Code] = 'xlu' END +SET [Description] = 'Cuneiform Luwian', [Definition] = NULL, [SortOrder] = 1440.00 WHERE [Code] = 'xlu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cup', 'Cupeño', NULL, 143.80) END +VALUES ('cup', 'Cupeño', NULL, 1441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cupeño', [Definition] = NULL, [SortOrder] = 143.80 WHERE [Code] = 'cup' END +SET [Description] = 'Cupeño', [Definition] = NULL, [SortOrder] = 1441.00 WHERE [Code] = 'cup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xcu', 'Curonian', NULL, 143.90) END +VALUES ('xcu', 'Curonian', NULL, 1442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Curonian', [Definition] = NULL, [SortOrder] = 143.90 WHERE [Code] = 'xcu' END +SET [Description] = 'Curonian', [Definition] = NULL, [SortOrder] = 1442.00 WHERE [Code] = 'xcu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpc', 'Curripaco', NULL, 144.00) END +VALUES ('kpc', 'Curripaco', NULL, 1443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Curripaco', [Definition] = NULL, [SortOrder] = 144.00 WHERE [Code] = 'kpc' END +SET [Description] = 'Curripaco', [Definition] = NULL, [SortOrder] = 1443.00 WHERE [Code] = 'kpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quz', 'Cusco Quechua', NULL, 144.10) END +VALUES ('quz', 'Cusco Quechua', NULL, 1444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cusco Quechua', [Definition] = NULL, [SortOrder] = 144.10 WHERE [Code] = 'quz' END +SET [Description] = 'Cusco Quechua', [Definition] = NULL, [SortOrder] = 1444.00 WHERE [Code] = 'quz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccl', 'Cutchi-Swahili', NULL, 144.20) END +VALUES ('ccl', 'Cutchi-Swahili', NULL, 1445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cutchi-Swahili', [Definition] = NULL, [SortOrder] = 144.20 WHERE [Code] = 'ccl' END +SET [Description] = 'Cutchi-Swahili', [Definition] = NULL, [SortOrder] = 1445.00 WHERE [Code] = 'ccl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuv', 'Cuvok', NULL, 144.30) END +VALUES ('cuv', 'Cuvok', NULL, 1446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuvok', [Definition] = NULL, [SortOrder] = 144.30 WHERE [Code] = 'cuv' END +SET [Description] = 'Cuvok', [Definition] = NULL, [SortOrder] = 1446.00 WHERE [Code] = 'cuv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtu', 'Cuyamecalco Mixtec', NULL, 144.40) END +VALUES ('xtu', 'Cuyamecalco Mixtec', NULL, 1447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuyamecalco Mixtec', [Definition] = NULL, [SortOrder] = 144.40 WHERE [Code] = 'xtu' END +SET [Description] = 'Cuyamecalco Mixtec', [Definition] = NULL, [SortOrder] = 1447.00 WHERE [Code] = 'xtu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cyo', 'Cuyonon', NULL, 144.50) END +VALUES ('cyo', 'Cuyonon', NULL, 1448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cuyonon', [Definition] = NULL, [SortOrder] = 144.50 WHERE [Code] = 'cyo' END +SET [Description] = 'Cuyonon', [Definition] = NULL, [SortOrder] = 1448.00 WHERE [Code] = 'cyo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwy', 'Cwi Bwamu', NULL, 144.60) END +VALUES ('bwy', 'Cwi Bwamu', NULL, 1449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cwi Bwamu', [Definition] = NULL, [SortOrder] = 144.60 WHERE [Code] = 'bwy' END +SET [Description] = 'Cwi Bwamu', [Definition] = NULL, [SortOrder] = 1449.00 WHERE [Code] = 'bwy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acy', 'Cypriot Arabic', NULL, 144.70) END +VALUES ('acy', 'Cypriot Arabic', NULL, 1450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Cypriot Arabic', [Definition] = NULL, [SortOrder] = 144.70 WHERE [Code] = 'acy' END +SET [Description] = 'Cypriot Arabic', [Definition] = NULL, [SortOrder] = 1450.00 WHERE [Code] = 'acy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ces') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ces', 'Czech', NULL, 144.80) END +VALUES ('ces', 'Czech', NULL, 1451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Czech', [Definition] = NULL, [SortOrder] = 144.80 WHERE [Code] = 'ces' END +SET [Description] = 'Czech', [Definition] = NULL, [SortOrder] = 1451.00 WHERE [Code] = 'ces' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cse', 'Czech Sign Language', NULL, 144.90) END +VALUES ('cse', 'Czech Sign Language', NULL, 1452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Czech Sign Language', [Definition] = NULL, [SortOrder] = 144.90 WHERE [Code] = 'cse' END +SET [Description] = 'Czech Sign Language', [Definition] = NULL, [SortOrder] = 1452.00 WHERE [Code] = 'cse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzf', 'Da''a Kaili', NULL, 145.00) END +VALUES ('kzf', 'Da''a Kaili', NULL, 1453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Da''a Kaili', [Definition] = NULL, [SortOrder] = 145.00 WHERE [Code] = 'kzf' END +SET [Description] = 'Da''a Kaili', [Definition] = NULL, [SortOrder] = 1453.00 WHERE [Code] = 'kzf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dao', 'Daai Chin', NULL, 145.10) END +VALUES ('dao', 'Daai Chin', NULL, 1454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daai Chin', [Definition] = NULL, [SortOrder] = 145.10 WHERE [Code] = 'dao' END +SET [Description] = 'Daai Chin', [Definition] = NULL, [SortOrder] = 1454.00 WHERE [Code] = 'dao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpa', 'Daakaka', NULL, 145.20) END +VALUES ('bpa', 'Daakaka', NULL, 1455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daakaka', [Definition] = NULL, [SortOrder] = 145.20 WHERE [Code] = 'bpa' END +SET [Description] = 'Daakaka', [Definition] = NULL, [SortOrder] = 1455.00 WHERE [Code] = 'bpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lni', 'Daantanai''', NULL, 145.30) END +VALUES ('lni', 'Daantanai''', NULL, 1456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daantanai''', [Definition] = NULL, [SortOrder] = 145.30 WHERE [Code] = 'lni' END +SET [Description] = 'Daantanai''', [Definition] = NULL, [SortOrder] = 1456.00 WHERE [Code] = 'lni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsh', 'Daasanach', NULL, 145.40) END +VALUES ('dsh', 'Daasanach', NULL, 1457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daasanach', [Definition] = NULL, [SortOrder] = 145.40 WHERE [Code] = 'dsh' END +SET [Description] = 'Daasanach', [Definition] = NULL, [SortOrder] = 1457.00 WHERE [Code] = 'dsh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtn', 'Daats''i´in', NULL, 145.50) END +VALUES ('dtn', 'Daats''i´in', NULL, 1458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daats''i´in', [Definition] = NULL, [SortOrder] = 145.50 WHERE [Code] = 'dtn' END +SET [Description] = 'Daats''i´in', [Definition] = NULL, [SortOrder] = 1458.00 WHERE [Code] = 'dtn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbq', 'Daba', NULL, 145.60) END +VALUES ('dbq', 'Daba', NULL, 1459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daba', [Definition] = NULL, [SortOrder] = 145.60 WHERE [Code] = 'dbq' END +SET [Description] = 'Daba', [Definition] = NULL, [SortOrder] = 1459.00 WHERE [Code] = 'dbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbr', 'Dabarre', NULL, 145.70) END +VALUES ('dbr', 'Dabarre', NULL, 1460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dabarre', [Definition] = NULL, [SortOrder] = 145.70 WHERE [Code] = 'dbr' END +SET [Description] = 'Dabarre', [Definition] = NULL, [SortOrder] = 1460.00 WHERE [Code] = 'dbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbe', 'Dabe', NULL, 145.80) END +VALUES ('dbe', 'Dabe', NULL, 1461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dabe', [Definition] = NULL, [SortOrder] = 145.80 WHERE [Code] = 'dbe' END +SET [Description] = 'Dabe', [Definition] = NULL, [SortOrder] = 1461.00 WHERE [Code] = 'dbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdc', 'Dacian', NULL, 145.90) END +VALUES ('xdc', 'Dacian', NULL, 1462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dacian', [Definition] = NULL, [SortOrder] = 145.90 WHERE [Code] = 'xdc' END +SET [Description] = 'Dacian', [Definition] = NULL, [SortOrder] = 1462.00 WHERE [Code] = 'xdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dda', 'Dadi Dadi', NULL, 146.00) END +VALUES ('dda', 'Dadi Dadi', NULL, 1463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dadi Dadi', [Definition] = NULL, [SortOrder] = 146.00 WHERE [Code] = 'dda' END +SET [Description] = 'Dadi Dadi', [Definition] = NULL, [SortOrder] = 1463.00 WHERE [Code] = 'dda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mps', 'Dadibi', NULL, 146.10) END +VALUES ('mps', 'Dadibi', NULL, 1464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dadibi', [Definition] = NULL, [SortOrder] = 146.10 WHERE [Code] = 'mps' END +SET [Description] = 'Dadibi', [Definition] = NULL, [SortOrder] = 1464.00 WHERE [Code] = 'mps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbd', 'Dadiya', NULL, 146.20) END +VALUES ('dbd', 'Dadiya', NULL, 1465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dadiya', [Definition] = NULL, [SortOrder] = 146.20 WHERE [Code] = 'dbd' END +SET [Description] = 'Dadiya', [Definition] = NULL, [SortOrder] = 1465.00 WHERE [Code] = 'dbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgz', 'Daga', NULL, 146.30) END +VALUES ('dgz', 'Daga', NULL, 1466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daga', [Definition] = NULL, [SortOrder] = 146.30 WHERE [Code] = 'dgz' END +SET [Description] = 'Daga', [Definition] = NULL, [SortOrder] = 1466.00 WHERE [Code] = 'dgz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgd', 'Dagaari Dioula', NULL, 146.40) END +VALUES ('dgd', 'Dagaari Dioula', NULL, 1467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagaari Dioula', [Definition] = NULL, [SortOrder] = 146.40 WHERE [Code] = 'dgd' END +SET [Description] = 'Dagaari Dioula', [Definition] = NULL, [SortOrder] = 1467.00 WHERE [Code] = 'dgd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgk', 'Dagba', NULL, 146.50) END +VALUES ('dgk', 'Dagba', NULL, 1468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagba', [Definition] = NULL, [SortOrder] = 146.50 WHERE [Code] = 'dgk' END +SET [Description] = 'Dagba', [Definition] = NULL, [SortOrder] = 1468.00 WHERE [Code] = 'dgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dag', 'Dagbani', NULL, 146.60) END +VALUES ('dag', 'Dagbani', NULL, 1469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagbani', [Definition] = NULL, [SortOrder] = 146.60 WHERE [Code] = 'dag' END +SET [Description] = 'Dagbani', [Definition] = NULL, [SortOrder] = 1469.00 WHERE [Code] = 'dag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dec', 'Dagik', NULL, 146.70) END +VALUES ('dec', 'Dagik', NULL, 1470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagik', [Definition] = NULL, [SortOrder] = 146.70 WHERE [Code] = 'dec' END +SET [Description] = 'Dagik', [Definition] = NULL, [SortOrder] = 1470.00 WHERE [Code] = 'dec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgn', 'Dagoman', NULL, 146.80) END +VALUES ('dgn', 'Dagoman', NULL, 1471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dagoman', [Definition] = NULL, [SortOrder] = 146.80 WHERE [Code] = 'dgn' END +SET [Description] = 'Dagoman', [Definition] = NULL, [SortOrder] = 1471.00 WHERE [Code] = 'dgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dlk', 'Dahalik', NULL, 146.90) END +VALUES ('dlk', 'Dahalik', NULL, 1472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dahalik', [Definition] = NULL, [SortOrder] = 146.90 WHERE [Code] = 'dlk' END +SET [Description] = 'Dahalik', [Definition] = NULL, [SortOrder] = 1472.00 WHERE [Code] = 'dlk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dal', 'Dahalo', NULL, 147.00) END +VALUES ('dal', 'Dahalo', NULL, 1473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dahalo', [Definition] = NULL, [SortOrder] = 147.00 WHERE [Code] = 'dal' END +SET [Description] = 'Dahalo', [Definition] = NULL, [SortOrder] = 1473.00 WHERE [Code] = 'dal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'das') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('das', 'Daho-Doo', NULL, 147.10) END +VALUES ('das', 'Daho-Doo', NULL, 1474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daho-Doo', [Definition] = NULL, [SortOrder] = 147.10 WHERE [Code] = 'das' END +SET [Description] = 'Daho-Doo', [Definition] = NULL, [SortOrder] = 1474.00 WHERE [Code] = 'das' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dij', 'Dai', NULL, 147.20) END +VALUES ('dij', 'Dai', NULL, 1475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dai', [Definition] = NULL, [SortOrder] = 147.20 WHERE [Code] = 'dij' END +SET [Description] = 'Dai', [Definition] = NULL, [SortOrder] = 1475.00 WHERE [Code] = 'dij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhd', 'Dai Zhuang', NULL, 147.30) END +VALUES ('zhd', 'Dai Zhuang', NULL, 1476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dai Zhuang', [Definition] = NULL, [SortOrder] = 147.30 WHERE [Code] = 'zhd' END +SET [Description] = 'Dai Zhuang', [Definition] = NULL, [SortOrder] = 1476.00 WHERE [Code] = 'zhd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drb', 'Dair', NULL, 147.40) END +VALUES ('drb', 'Dair', NULL, 1477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dair', [Definition] = NULL, [SortOrder] = 147.40 WHERE [Code] = 'drb' END +SET [Description] = 'Dair', [Definition] = NULL, [SortOrder] = 1477.00 WHERE [Code] = 'drb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dkk', 'Dakka', NULL, 147.50) END +VALUES ('dkk', 'Dakka', NULL, 1478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dakka', [Definition] = NULL, [SortOrder] = 147.50 WHERE [Code] = 'dkk' END +SET [Description] = 'Dakka', [Definition] = NULL, [SortOrder] = 1478.00 WHERE [Code] = 'dkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dak', 'Dakota', NULL, 147.60) END +VALUES ('dak', 'Dakota', NULL, 1479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dakota', [Definition] = NULL, [SortOrder] = 147.60 WHERE [Code] = 'dak' END +SET [Description] = 'Dakota', [Definition] = NULL, [SortOrder] = 1479.00 WHERE [Code] = 'dak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dka', 'Dakpakha', NULL, 147.70) END +VALUES ('dka', 'Dakpakha', NULL, 1480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dakpakha', [Definition] = NULL, [SortOrder] = 147.70 WHERE [Code] = 'dka' END +SET [Description] = 'Dakpakha', [Definition] = NULL, [SortOrder] = 1480.00 WHERE [Code] = 'dka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngk', 'Dalabon', NULL, 147.80) END +VALUES ('ngk', 'Dalabon', NULL, 1481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dalabon', [Definition] = NULL, [SortOrder] = 147.80 WHERE [Code] = 'ngk' END +SET [Description] = 'Dalabon', [Definition] = NULL, [SortOrder] = 1481.00 WHERE [Code] = 'ngk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dlm', 'Dalmatian', NULL, 147.90) END +VALUES ('dlm', 'Dalmatian', NULL, 1482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dalmatian', [Definition] = NULL, [SortOrder] = 147.90 WHERE [Code] = 'dlm' END +SET [Description] = 'Dalmatian', [Definition] = NULL, [SortOrder] = 1482.00 WHERE [Code] = 'dlm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bev', 'Daloa Bété', NULL, 148.00) END +VALUES ('bev', 'Daloa Bété', NULL, 1483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daloa Bété', [Definition] = NULL, [SortOrder] = 148.00 WHERE [Code] = 'bev' END +SET [Description] = 'Daloa Bété', [Definition] = NULL, [SortOrder] = 1483.00 WHERE [Code] = 'bev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmm', 'Dama', NULL, 148.10) END +VALUES ('dmm', 'Dama', NULL, 1484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dama', [Definition] = NULL, [SortOrder] = 148.10 WHERE [Code] = 'dmm' END +SET [Description] = 'Dama', [Definition] = NULL, [SortOrder] = 1484.00 WHERE [Code] = 'dmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dam', 'Damakawa', NULL, 148.20) END +VALUES ('dam', 'Damakawa', NULL, 1485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Damakawa', [Definition] = NULL, [SortOrder] = 148.20 WHERE [Code] = 'dam' END +SET [Description] = 'Damakawa', [Definition] = NULL, [SortOrder] = 1485.00 WHERE [Code] = 'dam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uhn', 'Damal', NULL, 148.30) END +VALUES ('uhn', 'Damal', NULL, 1486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Damal', [Definition] = NULL, [SortOrder] = 148.30 WHERE [Code] = 'uhn' END +SET [Description] = 'Damal', [Definition] = NULL, [SortOrder] = 1486.00 WHERE [Code] = 'uhn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dac', 'Dambi', NULL, 148.40) END +VALUES ('dac', 'Dambi', NULL, 1487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dambi', [Definition] = NULL, [SortOrder] = 148.40 WHERE [Code] = 'dac' END +SET [Description] = 'Dambi', [Definition] = NULL, [SortOrder] = 1487.00 WHERE [Code] = 'dac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dml', 'Dameli', NULL, 148.50) END +VALUES ('dml', 'Dameli', NULL, 1488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dameli', [Definition] = NULL, [SortOrder] = 148.50 WHERE [Code] = 'dml' END +SET [Description] = 'Dameli', [Definition] = NULL, [SortOrder] = 1488.00 WHERE [Code] = 'dml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dms', 'Dampelas', NULL, 148.60) END +VALUES ('dms', 'Dampelas', NULL, 1489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dampelas', [Definition] = NULL, [SortOrder] = 148.60 WHERE [Code] = 'dms' END +SET [Description] = 'Dampelas', [Definition] = NULL, [SortOrder] = 1489.00 WHERE [Code] = 'dms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnj', 'Dan', NULL, 148.70) END +VALUES ('dnj', 'Dan', NULL, 1490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dan', [Definition] = NULL, [SortOrder] = 148.70 WHERE [Code] = 'dnj' END +SET [Description] = 'Dan', [Definition] = NULL, [SortOrder] = 1490.00 WHERE [Code] = 'dnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnr', 'Danaru', NULL, 148.80) END +VALUES ('dnr', 'Danaru', NULL, 1491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danaru', [Definition] = NULL, [SortOrder] = 148.80 WHERE [Code] = 'dnr' END +SET [Description] = 'Danaru', [Definition] = NULL, [SortOrder] = 1491.00 WHERE [Code] = 'dnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnu', 'Danau', NULL, 148.90) END +VALUES ('dnu', 'Danau', NULL, 1492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danau', [Definition] = NULL, [SortOrder] = 148.90 WHERE [Code] = 'dnu' END +SET [Description] = 'Danau', [Definition] = NULL, [SortOrder] = 1492.00 WHERE [Code] = 'dnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daq', 'Dandami Maria', NULL, 149.00) END +VALUES ('daq', 'Dandami Maria', NULL, 1493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dandami Maria', [Definition] = NULL, [SortOrder] = 149.00 WHERE [Code] = 'daq' END +SET [Description] = 'Dandami Maria', [Definition] = NULL, [SortOrder] = 1493.00 WHERE [Code] = 'daq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daa', 'Dangaléat', NULL, 149.10) END +VALUES ('daa', 'Dangaléat', NULL, 1494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dangaléat', [Definition] = NULL, [SortOrder] = 149.10 WHERE [Code] = 'daa' END +SET [Description] = 'Dangaléat', [Definition] = NULL, [SortOrder] = 1494.00 WHERE [Code] = 'daa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thl', 'Dangaura Tharu', NULL, 149.20) END +VALUES ('thl', 'Dangaura Tharu', NULL, 1495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dangaura Tharu', [Definition] = NULL, [SortOrder] = 149.20 WHERE [Code] = 'thl' END +SET [Description] = 'Dangaura Tharu', [Definition] = NULL, [SortOrder] = 1495.00 WHERE [Code] = 'thl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dan', 'Danish', NULL, 149.30) END +VALUES ('dan', 'Danish', NULL, 1496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danish', [Definition] = NULL, [SortOrder] = 149.30 WHERE [Code] = 'dan' END +SET [Description] = 'Danish', [Definition] = NULL, [SortOrder] = 1496.00 WHERE [Code] = 'dan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsl', 'Danish Sign Language', NULL, 149.40) END +VALUES ('dsl', 'Danish Sign Language', NULL, 1497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danish Sign Language', [Definition] = NULL, [SortOrder] = 149.40 WHERE [Code] = 'dsl' END +SET [Description] = 'Danish Sign Language', [Definition] = NULL, [SortOrder] = 1497.00 WHERE [Code] = 'dsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aso', 'Dano', NULL, 149.50) END +VALUES ('aso', 'Dano', NULL, 1498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dano', [Definition] = NULL, [SortOrder] = 149.50 WHERE [Code] = 'aso' END +SET [Description] = 'Dano', [Definition] = NULL, [SortOrder] = 1498.00 WHERE [Code] = 'aso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnv', 'Danu', NULL, 149.60) END +VALUES ('dnv', 'Danu', NULL, 1499.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Danu', [Definition] = NULL, [SortOrder] = 149.60 WHERE [Code] = 'dnv' END +SET [Description] = 'Danu', [Definition] = NULL, [SortOrder] = 1499.00 WHERE [Code] = 'dnv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daz', 'Dao', NULL, 149.70) END +VALUES ('daz', 'Dao', NULL, 1500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dao', [Definition] = NULL, [SortOrder] = 149.70 WHERE [Code] = 'daz' END +SET [Description] = 'Dao', [Definition] = NULL, [SortOrder] = 1500.00 WHERE [Code] = 'daz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnd', 'Daonda', NULL, 149.80) END +VALUES ('dnd', 'Daonda', NULL, 1501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daonda', [Definition] = NULL, [SortOrder] = 149.80 WHERE [Code] = 'dnd' END +SET [Description] = 'Daonda', [Definition] = NULL, [SortOrder] = 1501.00 WHERE [Code] = 'dnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djc', 'Dar Daju Daju', NULL, 149.90) END +VALUES ('djc', 'Dar Daju Daju', NULL, 1502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dar Daju Daju', [Definition] = NULL, [SortOrder] = 149.90 WHERE [Code] = 'djc' END +SET [Description] = 'Dar Daju Daju', [Definition] = NULL, [SortOrder] = 1502.00 WHERE [Code] = 'djc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daj', 'Dar Fur Daju', NULL, 150.00) END +VALUES ('daj', 'Dar Fur Daju', NULL, 1503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dar Fur Daju', [Definition] = NULL, [SortOrder] = 150.00 WHERE [Code] = 'daj' END +SET [Description] = 'Dar Fur Daju', [Definition] = NULL, [SortOrder] = 1503.00 WHERE [Code] = 'daj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dau', 'Dar Sila Daju', NULL, 150.10) END +VALUES ('dau', 'Dar Sila Daju', NULL, 1504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dar Sila Daju', [Definition] = NULL, [SortOrder] = 150.10 WHERE [Code] = 'dau' END +SET [Description] = 'Dar Sila Daju', [Definition] = NULL, [SortOrder] = 1504.00 WHERE [Code] = 'dau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dry', 'Darai', NULL, 150.20) END +VALUES ('dry', 'Darai', NULL, 1505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Darai', [Definition] = NULL, [SortOrder] = 150.20 WHERE [Code] = 'dry' END +SET [Description] = 'Darai', [Definition] = NULL, [SortOrder] = 1505.00 WHERE [Code] = 'dry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dar', 'Dargwa', NULL, 150.30) END +VALUES ('dar', 'Dargwa', NULL, 1506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dargwa', [Definition] = NULL, [SortOrder] = 150.30 WHERE [Code] = 'dar' END +SET [Description] = 'Dargwa', [Definition] = NULL, [SortOrder] = 1506.00 WHERE [Code] = 'dar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prs', 'Dari', NULL, 150.40) END +VALUES ('prs', 'Dari', NULL, 1507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dari', [Definition] = NULL, [SortOrder] = 150.40 WHERE [Code] = 'prs' END +SET [Description] = 'Dari', [Definition] = NULL, [SortOrder] = 1507.00 WHERE [Code] = 'prs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xda', 'Darkinyung', NULL, 150.50) END +VALUES ('xda', 'Darkinyung', NULL, 1508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Darkinyung', [Definition] = NULL, [SortOrder] = 150.50 WHERE [Code] = 'xda' END +SET [Description] = 'Darkinyung', [Definition] = NULL, [SortOrder] = 1508.00 WHERE [Code] = 'xda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dln', 'Darlong', NULL, 150.60) END +VALUES ('dln', 'Darlong', NULL, 1509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Darlong', [Definition] = NULL, [SortOrder] = 150.60 WHERE [Code] = 'dln' END +SET [Description] = 'Darlong', [Definition] = NULL, [SortOrder] = 1509.00 WHERE [Code] = 'dln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drd', 'Darmiya', NULL, 150.70) END +VALUES ('drd', 'Darmiya', NULL, 1510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Darmiya', [Definition] = NULL, [SortOrder] = 150.70 WHERE [Code] = 'drd' END +SET [Description] = 'Darmiya', [Definition] = NULL, [SortOrder] = 1510.00 WHERE [Code] = 'drd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dro', 'Daro-Matu Melanau', NULL, 150.80) END +VALUES ('dro', 'Daro-Matu Melanau', NULL, 1511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daro-Matu Melanau', [Definition] = NULL, [SortOrder] = 150.80 WHERE [Code] = 'dro' END +SET [Description] = 'Daro-Matu Melanau', [Definition] = NULL, [SortOrder] = 1511.00 WHERE [Code] = 'dro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dot', 'Dass', NULL, 150.90) END +VALUES ('dot', 'Dass', NULL, 1512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dass', [Definition] = NULL, [SortOrder] = 150.90 WHERE [Code] = 'dot' END +SET [Description] = 'Dass', [Definition] = NULL, [SortOrder] = 1512.00 WHERE [Code] = 'dot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcc', 'Datooga', NULL, 151.00) END +VALUES ('tcc', 'Datooga', NULL, 1513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Datooga', [Definition] = NULL, [SortOrder] = 151.00 WHERE [Code] = 'tcc' END +SET [Description] = 'Datooga', [Definition] = NULL, [SortOrder] = 1513.00 WHERE [Code] = 'tcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgw', 'Daungwurrung', NULL, 151.10) END +VALUES ('dgw', 'Daungwurrung', NULL, 1514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daungwurrung', [Definition] = NULL, [SortOrder] = 151.10 WHERE [Code] = 'dgw' END +SET [Description] = 'Daungwurrung', [Definition] = NULL, [SortOrder] = 1514.00 WHERE [Code] = 'dgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dta', 'Daur', NULL, 151.20) END +VALUES ('dta', 'Daur', NULL, 1515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Daur', [Definition] = NULL, [SortOrder] = 151.20 WHERE [Code] = 'dta' END +SET [Description] = 'Daur', [Definition] = NULL, [SortOrder] = 1515.00 WHERE [Code] = 'dta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'daw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('daw', 'Davawenyo', NULL, 151.30) END +VALUES ('daw', 'Davawenyo', NULL, 1516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Davawenyo', [Definition] = NULL, [SortOrder] = 151.30 WHERE [Code] = 'daw' END +SET [Description] = 'Davawenyo', [Definition] = NULL, [SortOrder] = 1516.00 WHERE [Code] = 'daw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwa', 'Dâw', NULL, 151.40) END +VALUES ('kwa', 'Dâw', NULL, 1517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dâw', [Definition] = NULL, [SortOrder] = 151.40 WHERE [Code] = 'kwa' END +SET [Description] = 'Dâw', [Definition] = NULL, [SortOrder] = 1517.00 WHERE [Code] = 'kwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dww', 'Dawawa', NULL, 151.50) END +VALUES ('dww', 'Dawawa', NULL, 1518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dawawa', [Definition] = NULL, [SortOrder] = 151.50 WHERE [Code] = 'dww' END +SET [Description] = 'Dawawa', [Definition] = NULL, [SortOrder] = 1518.00 WHERE [Code] = 'dww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddw', 'Dawera-Daweloor', NULL, 151.60) END +VALUES ('ddw', 'Dawera-Daweloor', NULL, 1519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dawera-Daweloor', [Definition] = NULL, [SortOrder] = 151.60 WHERE [Code] = 'ddw' END +SET [Description] = 'Dawera-Daweloor', [Definition] = NULL, [SortOrder] = 1519.00 WHERE [Code] = 'ddw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwk', 'Dawik Kui', NULL, 151.70) END +VALUES ('dwk', 'Dawik Kui', NULL, 1520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dawik Kui', [Definition] = NULL, [SortOrder] = 151.70 WHERE [Code] = 'dwk' END +SET [Description] = 'Dawik Kui', [Definition] = NULL, [SortOrder] = 1520.00 WHERE [Code] = 'dwk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwr', 'Dawro', NULL, 151.80) END +VALUES ('dwr', 'Dawro', NULL, 1521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dawro', [Definition] = NULL, [SortOrder] = 151.80 WHERE [Code] = 'dwr' END +SET [Description] = 'Dawro', [Definition] = NULL, [SortOrder] = 1521.00 WHERE [Code] = 'dwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dai', 'Day', NULL, 151.90) END +VALUES ('dai', 'Day', NULL, 1522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Day', [Definition] = NULL, [SortOrder] = 151.90 WHERE [Code] = 'dai' END +SET [Description] = 'Day', [Definition] = NULL, [SortOrder] = 1522.00 WHERE [Code] = 'dai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dax', 'Dayi', NULL, 152.00) END +VALUES ('dax', 'Dayi', NULL, 1523.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Dayi', [Definition] = NULL, [SortOrder] = 1523.00 WHERE [Code] = 'dax' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dzd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('dzd', 'Daza', NULL, 1524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dayi', [Definition] = NULL, [SortOrder] = 152.00 WHERE [Code] = 'dax' END +SET [Description] = 'Daza', [Definition] = NULL, [SortOrder] = 1524.00 WHERE [Code] = 'dzd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzg', 'Dazaga', NULL, 152.10) END +VALUES ('dzg', 'Dazaga', NULL, 1525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dazaga', [Definition] = NULL, [SortOrder] = 152.10 WHERE [Code] = 'dzg' END +SET [Description] = 'Dazaga', [Definition] = NULL, [SortOrder] = 1525.00 WHERE [Code] = 'dzg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dcc', 'Deccan', NULL, 152.20) END +VALUES ('dcc', 'Deccan', NULL, 1526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Deccan', [Definition] = NULL, [SortOrder] = 152.20 WHERE [Code] = 'dcc' END +SET [Description] = 'Deccan', [Definition] = NULL, [SortOrder] = 1526.00 WHERE [Code] = 'dcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ded') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ded', 'Dedua', NULL, 152.30) END +VALUES ('ded', 'Dedua', NULL, 1527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dedua', [Definition] = NULL, [SortOrder] = 152.30 WHERE [Code] = 'ded' END +SET [Description] = 'Dedua', [Definition] = NULL, [SortOrder] = 1527.00 WHERE [Code] = 'ded' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afn', 'Defaka', NULL, 152.40) END +VALUES ('afn', 'Defaka', NULL, 1528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Defaka', [Definition] = NULL, [SortOrder] = 152.40 WHERE [Code] = 'afn' END +SET [Description] = 'Defaka', [Definition] = NULL, [SortOrder] = 1528.00 WHERE [Code] = 'afn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbh', 'Defi Gbe', NULL, 152.50) END +VALUES ('gbh', 'Defi Gbe', NULL, 1529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Defi Gbe', [Definition] = NULL, [SortOrder] = 152.50 WHERE [Code] = 'gbh' END +SET [Description] = 'Defi Gbe', [Definition] = NULL, [SortOrder] = 1529.00 WHERE [Code] = 'gbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzw', 'Deg', NULL, 152.60) END +VALUES ('mzw', 'Deg', NULL, 1530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Deg', [Definition] = NULL, [SortOrder] = 152.60 WHERE [Code] = 'mzw' END +SET [Description] = 'Deg', [Definition] = NULL, [SortOrder] = 1530.00 WHERE [Code] = 'mzw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'deg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('deg', 'Degema', NULL, 152.70) END +VALUES ('deg', 'Degema', NULL, 1531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Degema', [Definition] = NULL, [SortOrder] = 152.70 WHERE [Code] = 'deg' END +SET [Description] = 'Degema', [Definition] = NULL, [SortOrder] = 1531.00 WHERE [Code] = 'deg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dge', 'Degenan', NULL, 152.80) END +VALUES ('dge', 'Degenan', NULL, 1532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Degenan', [Definition] = NULL, [SortOrder] = 152.80 WHERE [Code] = 'dge' END +SET [Description] = 'Degenan', [Definition] = NULL, [SortOrder] = 1532.00 WHERE [Code] = 'dge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ing') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ing', 'Degexit''an', NULL, 152.90) END +VALUES ('ing', 'Degexit''an', NULL, 1533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Degexit''an', [Definition] = NULL, [SortOrder] = 152.90 WHERE [Code] = 'ing' END +SET [Description] = 'Degexit''an', [Definition] = NULL, [SortOrder] = 1533.00 WHERE [Code] = 'ing' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhv', 'Dehu', NULL, 153.00) END +VALUES ('dhv', 'Dehu', NULL, 1534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dehu', [Definition] = NULL, [SortOrder] = 153.00 WHERE [Code] = 'dhv' END +SET [Description] = 'Dehu', [Definition] = NULL, [SortOrder] = 1534.00 WHERE [Code] = 'dhv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'deh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('deh', 'Dehwari', NULL, 153.10) END +VALUES ('deh', 'Dehwari', NULL, 1535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dehwari', [Definition] = NULL, [SortOrder] = 153.10 WHERE [Code] = 'deh' END +SET [Description] = 'Dehwari', [Definition] = NULL, [SortOrder] = 1535.00 WHERE [Code] = 'deh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dek', 'Dek', NULL, 153.20) END +VALUES ('dek', 'Dek', NULL, 1536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dek', [Definition] = NULL, [SortOrder] = 153.20 WHERE [Code] = 'dek' END +SET [Description] = 'Dek', [Definition] = NULL, [SortOrder] = 1536.00 WHERE [Code] = 'dek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'row') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('row', 'Dela-Oenale', NULL, 153.30) END +VALUES ('row', 'Dela-Oenale', NULL, 1537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dela-Oenale', [Definition] = NULL, [SortOrder] = 153.30 WHERE [Code] = 'row' END +SET [Description] = 'Dela-Oenale', [Definition] = NULL, [SortOrder] = 1537.00 WHERE [Code] = 'row' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'del') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('del', 'Delaware', NULL, 153.40) END +VALUES ('del', 'Delaware', NULL, 1538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Delaware', [Definition] = NULL, [SortOrder] = 153.40 WHERE [Code] = 'del' END +SET [Description] = 'Delaware', [Definition] = NULL, [SortOrder] = 1538.00 WHERE [Code] = 'del' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntr', 'Delo', NULL, 153.50) END +VALUES ('ntr', 'Delo', NULL, 1539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Delo', [Definition] = NULL, [SortOrder] = 153.50 WHERE [Code] = 'ntr' END +SET [Description] = 'Delo', [Definition] = NULL, [SortOrder] = 1539.00 WHERE [Code] = 'ntr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dem', 'Dem', NULL, 153.60) END +VALUES ('dem', 'Dem', NULL, 1540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dem', [Definition] = NULL, [SortOrder] = 153.60 WHERE [Code] = 'dem' END +SET [Description] = 'Dem', [Definition] = NULL, [SortOrder] = 1540.00 WHERE [Code] = 'dem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmx', 'Dema', NULL, 153.70) END +VALUES ('dmx', 'Dema', NULL, 1541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dema', [Definition] = NULL, [SortOrder] = 153.70 WHERE [Code] = 'dmx' END +SET [Description] = 'Dema', [Definition] = NULL, [SortOrder] = 1541.00 WHERE [Code] = 'dmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dei', 'Demisa', NULL, 153.80) END +VALUES ('dei', 'Demisa', NULL, 1542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Demisa', [Definition] = NULL, [SortOrder] = 153.80 WHERE [Code] = 'dei' END +SET [Description] = 'Demisa', [Definition] = NULL, [SortOrder] = 1542.00 WHERE [Code] = 'dei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmy', 'Demta', NULL, 153.90) END +VALUES ('dmy', 'Demta', NULL, 1543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Demta', [Definition] = NULL, [SortOrder] = 153.90 WHERE [Code] = 'dmy' END +SET [Description] = 'Demta', [Definition] = NULL, [SortOrder] = 1543.00 WHERE [Code] = 'dmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddn', 'Dendi (Benin)', NULL, 154.00) END +VALUES ('ddn', 'Dendi (Benin)', NULL, 1544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dendi (Benin)', [Definition] = NULL, [SortOrder] = 154.00 WHERE [Code] = 'ddn' END +SET [Description] = 'Dendi (Benin)', [Definition] = NULL, [SortOrder] = 1544.00 WHERE [Code] = 'ddn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'deq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('deq', 'Dendi (Central African Republic)', NULL, 154.10) END +VALUES ('deq', 'Dendi (Central African Republic)', NULL, 1545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dendi (Central African Republic)', [Definition] = NULL, [SortOrder] = 154.10 WHERE [Code] = 'deq' END +SET [Description] = 'Dendi (Central African Republic)', [Definition] = NULL, [SortOrder] = 1545.00 WHERE [Code] = 'deq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dez', 'Dengese', NULL, 154.20) END +VALUES ('dez', 'Dengese', NULL, 1546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dengese', [Definition] = NULL, [SortOrder] = 154.20 WHERE [Code] = 'dez' END +SET [Description] = 'Dengese', [Definition] = NULL, [SortOrder] = 1546.00 WHERE [Code] = 'dez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnk', 'Dengka', NULL, 154.30) END +VALUES ('dnk', 'Dengka', NULL, 1547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dengka', [Definition] = NULL, [SortOrder] = 154.30 WHERE [Code] = 'dnk' END +SET [Description] = 'Dengka', [Definition] = NULL, [SortOrder] = 1547.00 WHERE [Code] = 'dnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dny', 'Dení', NULL, 154.40) END +VALUES ('dny', 'Dení', NULL, 1548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dení', [Definition] = NULL, [SortOrder] = 154.40 WHERE [Code] = 'dny' END +SET [Description] = 'Dení', [Definition] = NULL, [SortOrder] = 1548.00 WHERE [Code] = 'dny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbb', 'Deno', NULL, 154.50) END +VALUES ('dbb', 'Deno', NULL, 1549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Deno', [Definition] = NULL, [SortOrder] = 154.50 WHERE [Code] = 'dbb' END +SET [Description] = 'Deno', [Definition] = NULL, [SortOrder] = 1549.00 WHERE [Code] = 'dbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anv', 'Denya', NULL, 154.60) END +VALUES ('anv', 'Denya', NULL, 1550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Denya', [Definition] = NULL, [SortOrder] = 154.60 WHERE [Code] = 'anv' END +SET [Description] = 'Denya', [Definition] = NULL, [SortOrder] = 1550.00 WHERE [Code] = 'anv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'der') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('der', 'Deori', NULL, 154.70) END +VALUES ('der', 'Deori', NULL, 1551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Deori', [Definition] = NULL, [SortOrder] = 154.70 WHERE [Code] = 'der' END +SET [Description] = 'Deori', [Definition] = NULL, [SortOrder] = 1551.00 WHERE [Code] = 'der' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbv', 'Dera (Indonesia)', NULL, 154.80) END +VALUES ('kbv', 'Dera (Indonesia)', NULL, 1552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dera (Indonesia)', [Definition] = NULL, [SortOrder] = 154.80 WHERE [Code] = 'kbv' END +SET [Description] = 'Dera (Indonesia)', [Definition] = NULL, [SortOrder] = 1552.00 WHERE [Code] = 'kbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kna', 'Dera (Nigeria)', NULL, 154.90) END +VALUES ('kna', 'Dera (Nigeria)', NULL, 1553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dera (Nigeria)', [Definition] = NULL, [SortOrder] = 154.90 WHERE [Code] = 'kna' END +SET [Description] = 'Dera (Nigeria)', [Definition] = NULL, [SortOrder] = 1553.00 WHERE [Code] = 'kna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'des') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('des', 'Desano', NULL, 155.00) END +VALUES ('des', 'Desano', NULL, 1554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Desano', [Definition] = NULL, [SortOrder] = 155.00 WHERE [Code] = 'des' END +SET [Description] = 'Desano', [Definition] = NULL, [SortOrder] = 1554.00 WHERE [Code] = 'des' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dso', 'Desiya', NULL, 155.10) END +VALUES ('dso', 'Desiya', NULL, 1555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Desiya', [Definition] = NULL, [SortOrder] = 155.10 WHERE [Code] = 'dso' END +SET [Description] = 'Desiya', [Definition] = NULL, [SortOrder] = 1555.00 WHERE [Code] = 'dso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwz', 'Dewas Rai', NULL, 155.20) END +VALUES ('dwz', 'Dewas Rai', NULL, 1556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dewas Rai', [Definition] = NULL, [SortOrder] = 155.20 WHERE [Code] = 'dwz' END +SET [Description] = 'Dewas Rai', [Definition] = NULL, [SortOrder] = 1556.00 WHERE [Code] = 'dwz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dee', 'Dewoin', NULL, 155.30) END +VALUES ('dee', 'Dewoin', NULL, 1557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dewoin', [Definition] = NULL, [SortOrder] = 155.30 WHERE [Code] = 'dee' END +SET [Description] = 'Dewoin', [Definition] = NULL, [SortOrder] = 1557.00 WHERE [Code] = 'dee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'def') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('def', 'Dezfuli', NULL, 155.40) END +VALUES ('def', 'Dezfuli', NULL, 1558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dezfuli', [Definition] = NULL, [SortOrder] = 155.40 WHERE [Code] = 'def' END +SET [Description] = 'Dezfuli', [Definition] = NULL, [SortOrder] = 1558.00 WHERE [Code] = 'def' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgh', 'Dghwede', NULL, 155.50) END +VALUES ('dgh', 'Dghwede', NULL, 1559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dghwede', [Definition] = NULL, [SortOrder] = 155.50 WHERE [Code] = 'dgh' END +SET [Description] = 'Dghwede', [Definition] = NULL, [SortOrder] = 1559.00 WHERE [Code] = 'dgh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhs', 'Dhaiso', NULL, 155.60) END +VALUES ('dhs', 'Dhaiso', NULL, 1560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhaiso', [Definition] = NULL, [SortOrder] = 155.60 WHERE [Code] = 'dhs' END +SET [Description] = 'Dhaiso', [Definition] = NULL, [SortOrder] = 1560.00 WHERE [Code] = 'dhs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhl', 'Dhalandji', NULL, 155.70) END +VALUES ('dhl', 'Dhalandji', NULL, 1561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhalandji', [Definition] = NULL, [SortOrder] = 155.70 WHERE [Code] = 'dhl' END +SET [Description] = 'Dhalandji', [Definition] = NULL, [SortOrder] = 1561.00 WHERE [Code] = 'dhl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhg', 'Dhangu-Djangu', NULL, 155.80) END +VALUES ('dhg', 'Dhangu-Djangu', NULL, 1562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhangu-Djangu', [Definition] = NULL, [SortOrder] = 155.80 WHERE [Code] = 'dhg' END +SET [Description] = 'Dhangu-Djangu', [Definition] = NULL, [SortOrder] = 1562.00 WHERE [Code] = 'dhg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhn', 'Dhanki', NULL, 155.90) END +VALUES ('dhn', 'Dhanki', NULL, 1563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhanki', [Definition] = NULL, [SortOrder] = 155.90 WHERE [Code] = 'dhn' END +SET [Description] = 'Dhanki', [Definition] = NULL, [SortOrder] = 1563.00 WHERE [Code] = 'dhn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhw', 'Dhanwar (Nepal)', NULL, 156.00) END +VALUES ('dhw', 'Dhanwar (Nepal)', NULL, 1564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhanwar (Nepal)', [Definition] = NULL, [SortOrder] = 156.00 WHERE [Code] = 'dhw' END +SET [Description] = 'Dhanwar (Nepal)', [Definition] = NULL, [SortOrder] = 1564.00 WHERE [Code] = 'dhw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfa', 'Dhao', NULL, 156.10) END +VALUES ('nfa', 'Dhao', NULL, 1565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhao', [Definition] = NULL, [SortOrder] = 156.10 WHERE [Code] = 'nfa' END +SET [Description] = 'Dhao', [Definition] = NULL, [SortOrder] = 1565.00 WHERE [Code] = 'nfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbh', 'Dharawal', NULL, 156.20) END +VALUES ('tbh', 'Dharawal', NULL, 1566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dharawal', [Definition] = NULL, [SortOrder] = 156.20 WHERE [Code] = 'tbh' END +SET [Description] = 'Dharawal', [Definition] = NULL, [SortOrder] = 1566.00 WHERE [Code] = 'tbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhr', 'Dhargari', NULL, 156.30) END +VALUES ('dhr', 'Dhargari', NULL, 1567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhargari', [Definition] = NULL, [SortOrder] = 156.30 WHERE [Code] = 'dhr' END +SET [Description] = 'Dhargari', [Definition] = NULL, [SortOrder] = 1567.00 WHERE [Code] = 'dhr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdk', 'Dharuk', NULL, 156.40) END +VALUES ('xdk', 'Dharuk', NULL, 1568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dharuk', [Definition] = NULL, [SortOrder] = 156.40 WHERE [Code] = 'xdk' END +SET [Description] = 'Dharuk', [Definition] = NULL, [SortOrder] = 1568.00 WHERE [Code] = 'xdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgm', 'Dharumbal', NULL, 156.50) END +VALUES ('xgm', 'Dharumbal', NULL, 1569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dharumbal', [Definition] = NULL, [SortOrder] = 156.50 WHERE [Code] = 'xgm' END +SET [Description] = 'Dharumbal', [Definition] = NULL, [SortOrder] = 1569.00 WHERE [Code] = 'xgm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mki', 'Dhatki', NULL, 156.60) END +VALUES ('mki', 'Dhatki', NULL, 1570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhatki', [Definition] = NULL, [SortOrder] = 156.60 WHERE [Code] = 'mki' END +SET [Description] = 'Dhatki', [Definition] = NULL, [SortOrder] = 1570.00 WHERE [Code] = 'mki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhi', 'Dhimal', NULL, 156.70) END +VALUES ('dhi', 'Dhimal', NULL, 1571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhimal', [Definition] = NULL, [SortOrder] = 156.70 WHERE [Code] = 'dhi' END +SET [Description] = 'Dhimal', [Definition] = NULL, [SortOrder] = 1571.00 WHERE [Code] = 'dhi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'div') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('div', 'Dhivehi', NULL, 156.80) END +VALUES ('div', 'Dhivehi', NULL, 1572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhivehi', [Definition] = NULL, [SortOrder] = 156.80 WHERE [Code] = 'div' END +SET [Description] = 'Dhivehi', [Definition] = NULL, [SortOrder] = 1572.00 WHERE [Code] = 'div' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dho', 'Dhodia', NULL, 156.90) END +VALUES ('dho', 'Dhodia', NULL, 1573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhodia', [Definition] = NULL, [SortOrder] = 156.90 WHERE [Code] = 'dho' END +SET [Description] = 'Dhodia', [Definition] = NULL, [SortOrder] = 1573.00 WHERE [Code] = 'dho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adf', 'Dhofari Arabic', NULL, 157.00) END +VALUES ('adf', 'Dhofari Arabic', NULL, 1574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhofari Arabic', [Definition] = NULL, [SortOrder] = 157.00 WHERE [Code] = 'adf' END +SET [Description] = 'Dhofari Arabic', [Definition] = NULL, [SortOrder] = 1574.00 WHERE [Code] = 'adf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddr', 'Dhudhuroa', NULL, 157.10) END +VALUES ('ddr', 'Dhudhuroa', NULL, 1575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhudhuroa', [Definition] = NULL, [SortOrder] = 157.10 WHERE [Code] = 'ddr' END +SET [Description] = 'Dhudhuroa', [Definition] = NULL, [SortOrder] = 1575.00 WHERE [Code] = 'ddr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhd', 'Dhundari', NULL, 157.20) END +VALUES ('dhd', 'Dhundari', NULL, 1576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhundari', [Definition] = NULL, [SortOrder] = 157.20 WHERE [Code] = 'dhd' END +SET [Description] = 'Dhundari', [Definition] = NULL, [SortOrder] = 1576.00 WHERE [Code] = 'dhd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhx', 'Dhungaloo', NULL, 157.30) END +VALUES ('dhx', 'Dhungaloo', NULL, 1577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhungaloo', [Definition] = NULL, [SortOrder] = 157.30 WHERE [Code] = 'dhx' END +SET [Description] = 'Dhungaloo', [Definition] = NULL, [SortOrder] = 1577.00 WHERE [Code] = 'dhx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhu', 'Dhurga', NULL, 157.40) END +VALUES ('dhu', 'Dhurga', NULL, 1578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhurga', [Definition] = NULL, [SortOrder] = 157.40 WHERE [Code] = 'dhu' END +SET [Description] = 'Dhurga', [Definition] = NULL, [SortOrder] = 1578.00 WHERE [Code] = 'dhu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwu', 'Dhuwal', NULL, 157.50) END +VALUES ('dwu', 'Dhuwal', NULL, 1579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhuwal', [Definition] = NULL, [SortOrder] = 157.50 WHERE [Code] = 'dwu' END +SET [Description] = 'Dhuwal', [Definition] = NULL, [SortOrder] = 1579.00 WHERE [Code] = 'dwu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwy', 'Dhuwaya', NULL, 157.60) END +VALUES ('dwy', 'Dhuwaya', NULL, 1580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dhuwaya', [Definition] = NULL, [SortOrder] = 157.60 WHERE [Code] = 'dwy' END +SET [Description] = 'Dhuwaya', [Definition] = NULL, [SortOrder] = 1580.00 WHERE [Code] = 'dwy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dia', 'Dia', NULL, 157.70) END +VALUES ('dia', 'Dia', NULL, 1581.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dia', [Definition] = NULL, [SortOrder] = 157.70 WHERE [Code] = 'dia' END +SET [Description] = 'Dia', [Definition] = NULL, [SortOrder] = 1581.00 WHERE [Code] = 'dia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbd', 'Dibabawon Manobo', NULL, 157.80) END +VALUES ('mbd', 'Dibabawon Manobo', NULL, 1582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dibabawon Manobo', [Definition] = NULL, [SortOrder] = 157.80 WHERE [Code] = 'mbd' END +SET [Description] = 'Dibabawon Manobo', [Definition] = NULL, [SortOrder] = 1582.00 WHERE [Code] = 'mbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dby', 'Dibiyaso', NULL, 157.90) END +VALUES ('dby', 'Dibiyaso', NULL, 1583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dibiyaso', [Definition] = NULL, [SortOrder] = 157.90 WHERE [Code] = 'dby' END +SET [Description] = 'Dibiyaso', [Definition] = NULL, [SortOrder] = 1583.00 WHERE [Code] = 'dby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dio', 'Dibo', NULL, 158.00) END +VALUES ('dio', 'Dibo', NULL, 1584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dibo', [Definition] = NULL, [SortOrder] = 158.00 WHERE [Code] = 'dio' END +SET [Description] = 'Dibo', [Definition] = NULL, [SortOrder] = 1584.00 WHERE [Code] = 'dio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bvx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bvx', 'Dibole', NULL, 158.10) END +VALUES ('bvx', 'Dibole', NULL, 1585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dibole', [Definition] = NULL, [SortOrder] = 158.10 WHERE [Code] = 'bvx' END +SET [Description] = 'Dibole', [Definition] = NULL, [SortOrder] = 1585.00 WHERE [Code] = 'bvx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duy', 'Dicamay Agta', NULL, 158.20) END +VALUES ('duy', 'Dicamay Agta', NULL, 1586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dicamay Agta', [Definition] = NULL, [SortOrder] = 158.20 WHERE [Code] = 'duy' END +SET [Description] = 'Dicamay Agta', [Definition] = NULL, [SortOrder] = 1586.00 WHERE [Code] = 'duy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'did') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('did', 'Didinga', NULL, 158.30) END +VALUES ('did', 'Didinga', NULL, 1587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Didinga', [Definition] = NULL, [SortOrder] = 158.30 WHERE [Code] = 'did' END +SET [Description] = 'Didinga', [Definition] = NULL, [SortOrder] = 1587.00 WHERE [Code] = 'did' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddo', 'Dido', NULL, 158.40) END +VALUES ('ddo', 'Dido', NULL, 1588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dido', [Definition] = NULL, [SortOrder] = 158.40 WHERE [Code] = 'ddo' END +SET [Description] = 'Dido', [Definition] = NULL, [SortOrder] = 1588.00 WHERE [Code] = 'ddo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dif', 'Dieri', NULL, 158.50) END +VALUES ('dif', 'Dieri', NULL, 1589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dieri', [Definition] = NULL, [SortOrder] = 158.50 WHERE [Code] = 'dif' END +SET [Description] = 'Dieri', [Definition] = NULL, [SortOrder] = 1589.00 WHERE [Code] = 'dif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhu', 'Digaro-Mishmi', NULL, 158.60) END +VALUES ('mhu', 'Digaro-Mishmi', NULL, 1590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Digaro-Mishmi', [Definition] = NULL, [SortOrder] = 158.60 WHERE [Code] = 'mhu' END +SET [Description] = 'Digaro-Mishmi', [Definition] = NULL, [SortOrder] = 1590.00 WHERE [Code] = 'mhu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dig', 'Digo', NULL, 158.70) END +VALUES ('dig', 'Digo', NULL, 1591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Digo', [Definition] = NULL, [SortOrder] = 158.70 WHERE [Code] = 'dig' END +SET [Description] = 'Digo', [Definition] = NULL, [SortOrder] = 1591.00 WHERE [Code] = 'dig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dur', 'Dii', NULL, 158.80) END +VALUES ('dur', 'Dii', NULL, 1592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dii', [Definition] = NULL, [SortOrder] = 158.80 WHERE [Code] = 'dur' END +SET [Description] = 'Dii', [Definition] = NULL, [SortOrder] = 1592.00 WHERE [Code] = 'dur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cfa', 'Dijim-Bwilim', NULL, 158.90) END +VALUES ('cfa', 'Dijim-Bwilim', NULL, 1593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dijim-Bwilim', [Definition] = NULL, [SortOrder] = 158.90 WHERE [Code] = 'cfa' END +SET [Description] = 'Dijim-Bwilim', [Definition] = NULL, [SortOrder] = 1593.00 WHERE [Code] = 'cfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dil', 'Dilling', NULL, 159.00) END +VALUES ('dil', 'Dilling', NULL, 1594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dilling', [Definition] = NULL, [SortOrder] = 159.00 WHERE [Code] = 'dil' END +SET [Description] = 'Dilling', [Definition] = NULL, [SortOrder] = 1594.00 WHERE [Code] = 'dil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jma', 'Dima', NULL, 159.10) END +VALUES ('jma', 'Dima', NULL, 1595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dima', [Definition] = NULL, [SortOrder] = 159.10 WHERE [Code] = 'jma' END +SET [Description] = 'Dima', [Definition] = NULL, [SortOrder] = 1595.00 WHERE [Code] = 'jma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dis', 'Dimasa', NULL, 159.20) END +VALUES ('dis', 'Dimasa', NULL, 1596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dimasa', [Definition] = NULL, [SortOrder] = 159.20 WHERE [Code] = 'dis' END +SET [Description] = 'Dimasa', [Definition] = NULL, [SortOrder] = 1596.00 WHERE [Code] = 'dis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dii', 'Dimbong', NULL, 159.30) END +VALUES ('dii', 'Dimbong', NULL, 1597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dimbong', [Definition] = NULL, [SortOrder] = 159.30 WHERE [Code] = 'dii' END +SET [Description] = 'Dimbong', [Definition] = NULL, [SortOrder] = 1597.00 WHERE [Code] = 'dii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dim', 'Dime', NULL, 159.40) END +VALUES ('dim', 'Dime', NULL, 1598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dime', [Definition] = NULL, [SortOrder] = 159.40 WHERE [Code] = 'dim' END +SET [Description] = 'Dime', [Definition] = NULL, [SortOrder] = 1598.00 WHERE [Code] = 'dim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diq', 'Dimli (individual language)', NULL, 159.50) END +VALUES ('diq', 'Dimli (individual language)', NULL, 1599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dimli (individual language)', [Definition] = NULL, [SortOrder] = 159.50 WHERE [Code] = 'diq' END +SET [Description] = 'Dimli (individual language)', [Definition] = NULL, [SortOrder] = 1599.00 WHERE [Code] = 'diq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diz', 'Ding', NULL, 159.60) END +VALUES ('diz', 'Ding', NULL, 1600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ding', [Definition] = NULL, [SortOrder] = 159.60 WHERE [Code] = 'diz' END +SET [Description] = 'Ding', [Definition] = NULL, [SortOrder] = 1600.00 WHERE [Code] = 'diz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'din') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('din', 'Dinka', NULL, 159.70) END +VALUES ('din', 'Dinka', NULL, 1601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dinka', [Definition] = NULL, [SortOrder] = 159.70 WHERE [Code] = 'din' END +SET [Description] = 'Dinka', [Definition] = NULL, [SortOrder] = 1601.00 WHERE [Code] = 'din' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('nzr', 'Dir-Nyamzak-Mbarimi', NULL, 1602.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Dir-Nyamzak-Mbarimi', [Definition] = NULL, [SortOrder] = 1602.00 WHERE [Code] = 'nzr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdl', 'Dirasha', NULL, 159.80) END +VALUES ('gdl', 'Dirasha', NULL, 1603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dirasha', [Definition] = NULL, [SortOrder] = 159.80 WHERE [Code] = 'gdl' END +SET [Description] = 'Dirasha', [Definition] = NULL, [SortOrder] = 1603.00 WHERE [Code] = 'gdl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dwa', 'Diri', NULL, 159.90) END +VALUES ('dwa', 'Diri', NULL, 1604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Diri', [Definition] = NULL, [SortOrder] = 159.90 WHERE [Code] = 'dwa' END +SET [Description] = 'Diri', [Definition] = NULL, [SortOrder] = 1604.00 WHERE [Code] = 'dwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diu', 'Diriku', NULL, 160.00) END +VALUES ('diu', 'Diriku', NULL, 1605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Diriku', [Definition] = NULL, [SortOrder] = 160.00 WHERE [Code] = 'diu' END +SET [Description] = 'Diriku', [Definition] = NULL, [SortOrder] = 1605.00 WHERE [Code] = 'diu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dir', 'Dirim', NULL, 160.10) END +VALUES ('dir', 'Dirim', NULL, 1606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dirim', [Definition] = NULL, [SortOrder] = 160.10 WHERE [Code] = 'dir' END +SET [Description] = 'Dirim', [Definition] = NULL, [SortOrder] = 1606.00 WHERE [Code] = 'dir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsi', 'Disa', NULL, 160.20) END +VALUES ('dsi', 'Disa', NULL, 1607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Disa', [Definition] = NULL, [SortOrder] = 160.20 WHERE [Code] = 'dsi' END +SET [Description] = 'Disa', [Definition] = NULL, [SortOrder] = 1607.00 WHERE [Code] = 'dsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbz', 'Ditammari', NULL, 160.30) END +VALUES ('tbz', 'Ditammari', NULL, 1608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ditammari', [Definition] = NULL, [SortOrder] = 160.30 WHERE [Code] = 'tbz' END +SET [Description] = 'Ditammari', [Definition] = NULL, [SortOrder] = 1608.00 WHERE [Code] = 'tbz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtd', 'Ditidaht', NULL, 160.40) END +VALUES ('dtd', 'Ditidaht', NULL, 1609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ditidaht', [Definition] = NULL, [SortOrder] = 160.40 WHERE [Code] = 'dtd' END +SET [Description] = 'Ditidaht', [Definition] = NULL, [SortOrder] = 1609.00 WHERE [Code] = 'dtd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diy', 'Diuwe', NULL, 160.50) END +VALUES ('diy', 'Diuwe', NULL, 1610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Diuwe', [Definition] = NULL, [SortOrder] = 160.50 WHERE [Code] = 'diy' END +SET [Description] = 'Diuwe', [Definition] = NULL, [SortOrder] = 1610.00 WHERE [Code] = 'diy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtd', 'Diuxi-Tilantongo Mixtec', NULL, 160.60) END +VALUES ('xtd', 'Diuxi-Tilantongo Mixtec', NULL, 1611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Diuxi-Tilantongo Mixtec', [Definition] = NULL, [SortOrder] = 160.60 WHERE [Code] = 'xtd' END +SET [Description] = 'Diuxi-Tilantongo Mixtec', [Definition] = NULL, [SortOrder] = 1611.00 WHERE [Code] = 'xtd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dix', 'Dixon Reef', NULL, 160.70) END +VALUES ('dix', 'Dixon Reef', NULL, 1612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dixon Reef', [Definition] = NULL, [SortOrder] = 160.70 WHERE [Code] = 'dix' END +SET [Description] = 'Dixon Reef', [Definition] = NULL, [SortOrder] = 1612.00 WHERE [Code] = 'dix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdx', 'Dizin', NULL, 160.80) END +VALUES ('mdx', 'Dizin', NULL, 1613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dizin', [Definition] = NULL, [SortOrder] = 160.80 WHERE [Code] = 'mdx' END +SET [Description] = 'Dizin', [Definition] = NULL, [SortOrder] = 1613.00 WHERE [Code] = 'mdx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyy', 'Djabugay', NULL, 160.90) END +VALUES ('dyy', 'Djabugay', NULL, 1614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djabugay', [Definition] = NULL, [SortOrder] = 160.90 WHERE [Code] = 'dyy' END +SET [Description] = 'Djabugay', [Definition] = NULL, [SortOrder] = 1614.00 WHERE [Code] = 'dyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjw', 'Djabwurrung', NULL, 161.00) END +VALUES ('tjw', 'Djabwurrung', NULL, 1615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djabwurrung', [Definition] = NULL, [SortOrder] = 161.00 WHERE [Code] = 'tjw' END +SET [Description] = 'Djabwurrung', [Definition] = NULL, [SortOrder] = 1615.00 WHERE [Code] = 'tjw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dja', 'Djadjawurrung', NULL, 161.10) END +VALUES ('dja', 'Djadjawurrung', NULL, 1616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djadjawurrung', [Definition] = NULL, [SortOrder] = 161.10 WHERE [Code] = 'dja' END +SET [Description] = 'Djadjawurrung', [Definition] = NULL, [SortOrder] = 1616.00 WHERE [Code] = 'dja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djr', 'Djambarrpuyngu', NULL, 161.20) END +VALUES ('djr', 'Djambarrpuyngu', NULL, 1617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djambarrpuyngu', [Definition] = NULL, [SortOrder] = 161.20 WHERE [Code] = 'djr' END +SET [Description] = 'Djambarrpuyngu', [Definition] = NULL, [SortOrder] = 1617.00 WHERE [Code] = 'djr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djd', 'Djamindjung', NULL, 161.30) END +VALUES ('djd', 'Djamindjung', NULL, 1618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djamindjung', [Definition] = NULL, [SortOrder] = 161.30 WHERE [Code] = 'djd' END +SET [Description] = 'Djamindjung', [Definition] = NULL, [SortOrder] = 1618.00 WHERE [Code] = 'djd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djf', 'Djangun', NULL, 161.40) END +VALUES ('djf', 'Djangun', NULL, 1619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djangun', [Definition] = NULL, [SortOrder] = 161.40 WHERE [Code] = 'djf' END +SET [Description] = 'Djangun', [Definition] = NULL, [SortOrder] = 1619.00 WHERE [Code] = 'djf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djw', 'Djawi', NULL, 161.50) END +VALUES ('djw', 'Djawi', NULL, 1620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djawi', [Definition] = NULL, [SortOrder] = 161.50 WHERE [Code] = 'djw' END +SET [Description] = 'Djawi', [Definition] = NULL, [SortOrder] = 1620.00 WHERE [Code] = 'djw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djj', 'Djeebbana', NULL, 161.60) END +VALUES ('djj', 'Djeebbana', NULL, 1621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djeebbana', [Definition] = NULL, [SortOrder] = 161.60 WHERE [Code] = 'djj' END +SET [Description] = 'Djeebbana', [Definition] = NULL, [SortOrder] = 1621.00 WHERE [Code] = 'djj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyi', 'Djimini Senoufo', NULL, 161.70) END +VALUES ('dyi', 'Djimini Senoufo', NULL, 1622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djimini Senoufo', [Definition] = NULL, [SortOrder] = 161.70 WHERE [Code] = 'dyi' END +SET [Description] = 'Djimini Senoufo', [Definition] = NULL, [SortOrder] = 1622.00 WHERE [Code] = 'dyi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dji', 'Djinang', NULL, 161.80) END +VALUES ('dji', 'Djinang', NULL, 1623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djinang', [Definition] = NULL, [SortOrder] = 161.80 WHERE [Code] = 'dji' END +SET [Description] = 'Djinang', [Definition] = NULL, [SortOrder] = 1623.00 WHERE [Code] = 'dji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djb', 'Djinba', NULL, 161.90) END +VALUES ('djb', 'Djinba', NULL, 1624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djinba', [Definition] = NULL, [SortOrder] = 161.90 WHERE [Code] = 'djb' END +SET [Description] = 'Djinba', [Definition] = NULL, [SortOrder] = 1624.00 WHERE [Code] = 'djb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dze', 'Djiwarli', NULL, 162.00) END +VALUES ('dze', 'Djiwarli', NULL, 1625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Djiwarli', [Definition] = NULL, [SortOrder] = 162.00 WHERE [Code] = 'dze' END +SET [Description] = 'Djiwarli', [Definition] = NULL, [SortOrder] = 1625.00 WHERE [Code] = 'dze' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvo', 'Dobel', NULL, 162.10) END +VALUES ('kvo', 'Dobel', NULL, 1626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dobel', [Definition] = NULL, [SortOrder] = 162.10 WHERE [Code] = 'kvo' END +SET [Description] = 'Dobel', [Definition] = NULL, [SortOrder] = 1626.00 WHERE [Code] = 'kvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dob', 'Dobu', NULL, 162.20) END +VALUES ('dob', 'Dobu', NULL, 1627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dobu', [Definition] = NULL, [SortOrder] = 162.20 WHERE [Code] = 'dob' END +SET [Description] = 'Dobu', [Definition] = NULL, [SortOrder] = 1627.00 WHERE [Code] = 'dob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doe', 'Doe', NULL, 162.30) END +VALUES ('doe', 'Doe', NULL, 1628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doe', [Definition] = NULL, [SortOrder] = 162.30 WHERE [Code] = 'doe' END +SET [Description] = 'Doe', [Definition] = NULL, [SortOrder] = 1628.00 WHERE [Code] = 'doe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgg', 'Doga', NULL, 162.40) END +VALUES ('dgg', 'Doga', NULL, 1629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doga', [Definition] = NULL, [SortOrder] = 162.40 WHERE [Code] = 'dgg' END +SET [Description] = 'Doga', [Definition] = NULL, [SortOrder] = 1629.00 WHERE [Code] = 'dgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgx', 'Doghoro', NULL, 162.50) END +VALUES ('dgx', 'Doghoro', NULL, 1630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doghoro', [Definition] = NULL, [SortOrder] = 162.50 WHERE [Code] = 'dgx' END +SET [Description] = 'Doghoro', [Definition] = NULL, [SortOrder] = 1630.00 WHERE [Code] = 'dgx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dos', 'Dogosé', NULL, 162.60) END +VALUES ('dos', 'Dogosé', NULL, 1631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogosé', [Definition] = NULL, [SortOrder] = 162.60 WHERE [Code] = 'dos' END +SET [Description] = 'Dogosé', [Definition] = NULL, [SortOrder] = 1631.00 WHERE [Code] = 'dos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgs', 'Dogoso', NULL, 162.70) END +VALUES ('dgs', 'Dogoso', NULL, 1632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogoso', [Definition] = NULL, [SortOrder] = 162.70 WHERE [Code] = 'dgs' END +SET [Description] = 'Dogoso', [Definition] = NULL, [SortOrder] = 1632.00 WHERE [Code] = 'dgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgo', 'Dogri (individual language)', NULL, 162.80) END +VALUES ('dgo', 'Dogri (individual language)', NULL, 1633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogri (individual language)', [Definition] = NULL, [SortOrder] = 162.80 WHERE [Code] = 'dgo' END +SET [Description] = 'Dogri (individual language)', [Definition] = NULL, [SortOrder] = 1633.00 WHERE [Code] = 'dgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doi', 'Dogri (macrolanguage)', NULL, 162.90) END +VALUES ('doi', 'Dogri (macrolanguage)', NULL, 1634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogri (macrolanguage)', [Definition] = NULL, [SortOrder] = 162.90 WHERE [Code] = 'doi' END +SET [Description] = 'Dogri (macrolanguage)', [Definition] = NULL, [SortOrder] = 1634.00 WHERE [Code] = 'doi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgr', 'Dogrib', NULL, 163.00) END +VALUES ('dgr', 'Dogrib', NULL, 1635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogrib', [Definition] = NULL, [SortOrder] = 163.00 WHERE [Code] = 'dgr' END +SET [Description] = 'Dogrib', [Definition] = NULL, [SortOrder] = 1635.00 WHERE [Code] = 'dgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbg', 'Dogul Dom Dogon', NULL, 163.10) END +VALUES ('dbg', 'Dogul Dom Dogon', NULL, 1636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dogul Dom Dogon', [Definition] = NULL, [SortOrder] = 163.10 WHERE [Code] = 'dbg' END +SET [Description] = 'Dogul Dom Dogon', [Definition] = NULL, [SortOrder] = 1636.00 WHERE [Code] = 'dbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbi', 'Doka', NULL, 163.20) END +VALUES ('dbi', 'Doka', NULL, 1637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doka', [Definition] = NULL, [SortOrder] = 163.20 WHERE [Code] = 'dbi' END +SET [Description] = 'Doka', [Definition] = NULL, [SortOrder] = 1637.00 WHERE [Code] = 'dbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uya', 'Doko-Uyanga', NULL, 163.30) END +VALUES ('uya', 'Doko-Uyanga', NULL, 1638.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Doko-Uyanga', [Definition] = NULL, [SortOrder] = 1638.00 WHERE [Code] = 'uya' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('dsk', 'Dokshi', NULL, 1639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doko-Uyanga', [Definition] = NULL, [SortOrder] = 163.30 WHERE [Code] = 'uya' END +SET [Description] = 'Dokshi', [Definition] = NULL, [SortOrder] = 1639.00 WHERE [Code] = 'dsk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dlg', 'Dolgan', NULL, 163.40) END +VALUES ('dlg', 'Dolgan', NULL, 1640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dolgan', [Definition] = NULL, [SortOrder] = 163.40 WHERE [Code] = 'dlg' END +SET [Description] = 'Dolgan', [Definition] = NULL, [SortOrder] = 1640.00 WHERE [Code] = 'dlg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dre', 'Dolpo', NULL, 163.50) END +VALUES ('dre', 'Dolpo', NULL, 1641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dolpo', [Definition] = NULL, [SortOrder] = 163.50 WHERE [Code] = 'dre' END +SET [Description] = 'Dolpo', [Definition] = NULL, [SortOrder] = 1641.00 WHERE [Code] = 'dre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doa', 'Dom', NULL, 163.60) END +VALUES ('doa', 'Dom', NULL, 1642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dom', [Definition] = NULL, [SortOrder] = 163.60 WHERE [Code] = 'doa' END +SET [Description] = 'Dom', [Definition] = NULL, [SortOrder] = 1642.00 WHERE [Code] = 'doa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmk', 'Domaaki', NULL, 163.70) END +VALUES ('dmk', 'Domaaki', NULL, 1643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Domaaki', [Definition] = NULL, [SortOrder] = 163.70 WHERE [Code] = 'dmk' END +SET [Description] = 'Domaaki', [Definition] = NULL, [SortOrder] = 1643.00 WHERE [Code] = 'dmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmt', 'Domari', NULL, 163.80) END +VALUES ('rmt', 'Domari', NULL, 1644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Domari', [Definition] = NULL, [SortOrder] = 163.80 WHERE [Code] = 'rmt' END +SET [Description] = 'Domari', [Definition] = NULL, [SortOrder] = 1644.00 WHERE [Code] = 'rmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dov', 'Dombe', NULL, 163.90) END +VALUES ('dov', 'Dombe', NULL, 1645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dombe', [Definition] = NULL, [SortOrder] = 163.90 WHERE [Code] = 'dov' END +SET [Description] = 'Dombe', [Definition] = NULL, [SortOrder] = 1645.00 WHERE [Code] = 'dov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doq', 'Dominican Sign Language', NULL, 164.00) END +VALUES ('doq', 'Dominican Sign Language', NULL, 1646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dominican Sign Language', [Definition] = NULL, [SortOrder] = 164.00 WHERE [Code] = 'doq' END +SET [Description] = 'Dominican Sign Language', [Definition] = NULL, [SortOrder] = 1646.00 WHERE [Code] = 'doq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doy', 'Dompo', NULL, 164.10) END +VALUES ('doy', 'Dompo', NULL, 1647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dompo', [Definition] = NULL, [SortOrder] = 164.10 WHERE [Code] = 'doy' END +SET [Description] = 'Dompo', [Definition] = NULL, [SortOrder] = 1647.00 WHERE [Code] = 'doy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dof', 'Domu', NULL, 164.20) END +VALUES ('dof', 'Domu', NULL, 1648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Domu', [Definition] = NULL, [SortOrder] = 164.20 WHERE [Code] = 'dof' END +SET [Description] = 'Domu', [Definition] = NULL, [SortOrder] = 1648.00 WHERE [Code] = 'dof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dev', 'Domung', NULL, 164.30) END +VALUES ('dev', 'Domung', NULL, 1649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Domung', [Definition] = NULL, [SortOrder] = 164.30 WHERE [Code] = 'dev' END +SET [Description] = 'Domung', [Definition] = NULL, [SortOrder] = 1649.00 WHERE [Code] = 'dev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dok', 'Dondo', NULL, 164.40) END +VALUES ('dok', 'Dondo', NULL, 1650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dondo', [Definition] = NULL, [SortOrder] = 164.40 WHERE [Code] = 'dok' END +SET [Description] = 'Dondo', [Definition] = NULL, [SortOrder] = 1650.00 WHERE [Code] = 'dok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doh', 'Dong', NULL, 164.50) END +VALUES ('doh', 'Dong', NULL, 1651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dong', [Definition] = NULL, [SortOrder] = 164.50 WHERE [Code] = 'doh' END +SET [Description] = 'Dong', [Definition] = NULL, [SortOrder] = 1651.00 WHERE [Code] = 'doh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doo', 'Dongo', NULL, 164.60) END +VALUES ('doo', 'Dongo', NULL, 1652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dongo', [Definition] = NULL, [SortOrder] = 164.60 WHERE [Code] = 'doo' END +SET [Description] = 'Dongo', [Definition] = NULL, [SortOrder] = 1652.00 WHERE [Code] = 'doo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddd', 'Dongotono', NULL, 164.70) END +VALUES ('ddd', 'Dongotono', NULL, 1653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dongotono', [Definition] = NULL, [SortOrder] = 164.70 WHERE [Code] = 'ddd' END +SET [Description] = 'Dongotono', [Definition] = NULL, [SortOrder] = 1653.00 WHERE [Code] = 'ddd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yik', 'Dongshanba Lalo', NULL, 164.80) END +VALUES ('yik', 'Dongshanba Lalo', NULL, 1654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dongshanba Lalo', [Definition] = NULL, [SortOrder] = 164.80 WHERE [Code] = 'yik' END +SET [Description] = 'Dongshanba Lalo', [Definition] = NULL, [SortOrder] = 1654.00 WHERE [Code] = 'yik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sce', 'Dongxiang', NULL, 164.90) END +VALUES ('sce', 'Dongxiang', NULL, 1655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dongxiang', [Definition] = NULL, [SortOrder] = 164.90 WHERE [Code] = 'sce' END +SET [Description] = 'Dongxiang', [Definition] = NULL, [SortOrder] = 1655.00 WHERE [Code] = 'sce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dds', 'Donno So Dogon', NULL, 165.00) END +VALUES ('dds', 'Donno So Dogon', NULL, 1656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Donno So Dogon', [Definition] = NULL, [SortOrder] = 165.00 WHERE [Code] = 'dds' END +SET [Description] = 'Donno So Dogon', [Definition] = NULL, [SortOrder] = 1656.00 WHERE [Code] = 'dds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dde', 'Doondo', NULL, 165.10) END +VALUES ('dde', 'Doondo', NULL, 1657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doondo', [Definition] = NULL, [SortOrder] = 165.10 WHERE [Code] = 'dde' END +SET [Description] = 'Doondo', [Definition] = NULL, [SortOrder] = 1657.00 WHERE [Code] = 'dde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dor', 'Dori''o', NULL, 165.20) END +VALUES ('dor', 'Dori''o', NULL, 1658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dori''o', [Definition] = NULL, [SortOrder] = 165.20 WHERE [Code] = 'dor' END +SET [Description] = 'Dori''o', [Definition] = NULL, [SortOrder] = 1658.00 WHERE [Code] = 'dor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqc', 'Doromu-Koki', NULL, 165.30) END +VALUES ('kqc', 'Doromu-Koki', NULL, 1659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doromu-Koki', [Definition] = NULL, [SortOrder] = 165.30 WHERE [Code] = 'kqc' END +SET [Description] = 'Doromu-Koki', [Definition] = NULL, [SortOrder] = 1659.00 WHERE [Code] = 'kqc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doz', 'Dorze', NULL, 165.40) END +VALUES ('doz', 'Dorze', NULL, 1660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dorze', [Definition] = NULL, [SortOrder] = 165.40 WHERE [Code] = 'doz' END +SET [Description] = 'Dorze', [Definition] = NULL, [SortOrder] = 1660.00 WHERE [Code] = 'doz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dol', 'Doso', NULL, 165.50) END +VALUES ('dol', 'Doso', NULL, 1661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doso', [Definition] = NULL, [SortOrder] = 165.50 WHERE [Code] = 'dol' END +SET [Description] = 'Doso', [Definition] = NULL, [SortOrder] = 1661.00 WHERE [Code] = 'dol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dty', 'Dotyali', NULL, 165.60) END +VALUES ('dty', 'Dotyali', NULL, 1662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dotyali', [Definition] = NULL, [SortOrder] = 165.60 WHERE [Code] = 'dty' END +SET [Description] = 'Dotyali', [Definition] = NULL, [SortOrder] = 1662.00 WHERE [Code] = 'dty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tds', 'Doutai', NULL, 165.70) END +VALUES ('tds', 'Doutai', NULL, 1663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doutai', [Definition] = NULL, [SortOrder] = 165.70 WHERE [Code] = 'tds' END +SET [Description] = 'Doutai', [Definition] = NULL, [SortOrder] = 1663.00 WHERE [Code] = 'tds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dow', 'Doyayo', NULL, 165.80) END +VALUES ('dow', 'Doyayo', NULL, 1664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Doyayo', [Definition] = NULL, [SortOrder] = 165.80 WHERE [Code] = 'dow' END +SET [Description] = 'Doyayo', [Definition] = NULL, [SortOrder] = 1664.00 WHERE [Code] = 'dow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drt', 'Drents', NULL, 165.90) END +VALUES ('drt', 'Drents', NULL, 1665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Drents', [Definition] = NULL, [SortOrder] = 165.90 WHERE [Code] = 'drt' END +SET [Description] = 'Drents', [Definition] = NULL, [SortOrder] = 1665.00 WHERE [Code] = 'drt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duu', 'Drung', NULL, 166.00) END +VALUES ('duu', 'Drung', NULL, 1666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Drung', [Definition] = NULL, [SortOrder] = 166.00 WHERE [Code] = 'duu' END +SET [Description] = 'Drung', [Definition] = NULL, [SortOrder] = 1666.00 WHERE [Code] = 'duu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldb', 'Du~ya', NULL, 166.10) END +VALUES ('ldb', 'Du~ya', NULL, 1667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Du~ya', [Definition] = NULL, [SortOrder] = 166.10 WHERE [Code] = 'ldb' END +SET [Description] = 'Du~ya', [Definition] = NULL, [SortOrder] = 1667.00 WHERE [Code] = 'ldb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dua', 'Duala', NULL, 166.20) END +VALUES ('dua', 'Duala', NULL, 1668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duala', [Definition] = NULL, [SortOrder] = 166.20 WHERE [Code] = 'dua' END +SET [Description] = 'Duala', [Definition] = NULL, [SortOrder] = 1668.00 WHERE [Code] = 'dua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dup', 'Duano', NULL, 166.30) END +VALUES ('dup', 'Duano', NULL, 1669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duano', [Definition] = NULL, [SortOrder] = 166.30 WHERE [Code] = 'dup' END +SET [Description] = 'Duano', [Definition] = NULL, [SortOrder] = 1669.00 WHERE [Code] = 'dup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dva', 'Duau', NULL, 166.40) END +VALUES ('dva', 'Duau', NULL, 1670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duau', [Definition] = NULL, [SortOrder] = 166.40 WHERE [Code] = 'dva' END +SET [Description] = 'Duau', [Definition] = NULL, [SortOrder] = 1670.00 WHERE [Code] = 'dva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dub', 'Dubli', NULL, 166.50) END +VALUES ('dub', 'Dubli', NULL, 1671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dubli', [Definition] = NULL, [SortOrder] = 166.50 WHERE [Code] = 'dub' END +SET [Description] = 'Dubli', [Definition] = NULL, [SortOrder] = 1671.00 WHERE [Code] = 'dub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmu', 'Dubu', NULL, 166.60) END +VALUES ('dmu', 'Dubu', NULL, 1672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dubu', [Definition] = NULL, [SortOrder] = 166.60 WHERE [Code] = 'dmu' END +SET [Description] = 'Dubu', [Definition] = NULL, [SortOrder] = 1672.00 WHERE [Code] = 'dmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndu', 'Dugun', NULL, 166.70) END +VALUES ('ndu', 'Dugun', NULL, 1673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dugun', [Definition] = NULL, [SortOrder] = 166.70 WHERE [Code] = 'ndu' END +SET [Description] = 'Dugun', [Definition] = NULL, [SortOrder] = 1673.00 WHERE [Code] = 'ndu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbm', 'Duguri', NULL, 166.80) END +VALUES ('dbm', 'Duguri', NULL, 1674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duguri', [Definition] = NULL, [SortOrder] = 166.80 WHERE [Code] = 'dbm' END +SET [Description] = 'Duguri', [Definition] = NULL, [SortOrder] = 1674.00 WHERE [Code] = 'dbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dme', 'Dugwor', NULL, 166.90) END +VALUES ('dme', 'Dugwor', NULL, 1675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dugwor', [Definition] = NULL, [SortOrder] = 166.90 WHERE [Code] = 'dme' END +SET [Description] = 'Dugwor', [Definition] = NULL, [SortOrder] = 1675.00 WHERE [Code] = 'dme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbz', 'Duhwa', NULL, 167.00) END +VALUES ('kbz', 'Duhwa', NULL, 1676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duhwa', [Definition] = NULL, [SortOrder] = 167.00 WHERE [Code] = 'kbz' END +SET [Description] = 'Duhwa', [Definition] = NULL, [SortOrder] = 1676.00 WHERE [Code] = 'kbz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nke', 'Duke', NULL, 167.10) END +VALUES ('nke', 'Duke', NULL, 1677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duke', [Definition] = NULL, [SortOrder] = 167.10 WHERE [Code] = 'nke' END +SET [Description] = 'Duke', [Definition] = NULL, [SortOrder] = 1677.00 WHERE [Code] = 'nke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbo', 'Dulbu', NULL, 167.20) END +VALUES ('dbo', 'Dulbu', NULL, 1678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dulbu', [Definition] = NULL, [SortOrder] = 167.20 WHERE [Code] = 'dbo' END +SET [Description] = 'Dulbu', [Definition] = NULL, [SortOrder] = 1678.00 WHERE [Code] = 'dbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duz', 'Duli-Gey', NULL, 167.30) END +VALUES ('duz', 'Duli-Gey', NULL, 1679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duli-Gey', [Definition] = NULL, [SortOrder] = 167.30 WHERE [Code] = 'duz' END +SET [Description] = 'Duli-Gey', [Definition] = NULL, [SortOrder] = 1679.00 WHERE [Code] = 'duz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dma', 'Duma', NULL, 167.40) END +VALUES ('dma', 'Duma', NULL, 1680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duma', [Definition] = NULL, [SortOrder] = 167.40 WHERE [Code] = 'dma' END +SET [Description] = 'Duma', [Definition] = NULL, [SortOrder] = 1680.00 WHERE [Code] = 'dma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duf', 'Dumbea', NULL, 167.50) END +VALUES ('duf', 'Dumbea', NULL, 1681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dumbea', [Definition] = NULL, [SortOrder] = 167.50 WHERE [Code] = 'duf' END +SET [Description] = 'Dumbea', [Definition] = NULL, [SortOrder] = 1681.00 WHERE [Code] = 'duf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dus', 'Dumi', NULL, 167.60) END +VALUES ('dus', 'Dumi', NULL, 1682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dumi', [Definition] = NULL, [SortOrder] = 167.60 WHERE [Code] = 'dus' END +SET [Description] = 'Dumi', [Definition] = NULL, [SortOrder] = 1682.00 WHERE [Code] = 'dus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmv', 'Dumpas', NULL, 167.70) END +VALUES ('dmv', 'Dumpas', NULL, 1683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dumpas', [Definition] = NULL, [SortOrder] = 167.70 WHERE [Code] = 'dmv' END +SET [Description] = 'Dumpas', [Definition] = NULL, [SortOrder] = 1683.00 WHERE [Code] = 'dmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dui', 'Dumun', NULL, 167.80) END +VALUES ('dui', 'Dumun', NULL, 1684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dumun', [Definition] = NULL, [SortOrder] = 167.80 WHERE [Code] = 'dui' END +SET [Description] = 'Dumun', [Definition] = NULL, [SortOrder] = 1684.00 WHERE [Code] = 'dui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duc', 'Duna', NULL, 167.90) END +VALUES ('duc', 'Duna', NULL, 1685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duna', [Definition] = NULL, [SortOrder] = 167.90 WHERE [Code] = 'duc' END +SET [Description] = 'Duna', [Definition] = NULL, [SortOrder] = 1685.00 WHERE [Code] = 'duc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dng', 'Dungan', NULL, 168.00) END +VALUES ('dng', 'Dungan', NULL, 1686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dungan', [Definition] = NULL, [SortOrder] = 168.00 WHERE [Code] = 'dng' END +SET [Description] = 'Dungan', [Definition] = NULL, [SortOrder] = 1686.00 WHERE [Code] = 'dng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raa', 'Dungmali', NULL, 168.10) END +VALUES ('raa', 'Dungmali', NULL, 1687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dungmali', [Definition] = NULL, [SortOrder] = 168.10 WHERE [Code] = 'raa' END +SET [Description] = 'Dungmali', [Definition] = NULL, [SortOrder] = 1687.00 WHERE [Code] = 'raa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duh', 'Dungra Bhil', NULL, 168.20) END +VALUES ('duh', 'Dungra Bhil', NULL, 1688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dungra Bhil', [Definition] = NULL, [SortOrder] = 168.20 WHERE [Code] = 'duh' END +SET [Description] = 'Dungra Bhil', [Definition] = NULL, [SortOrder] = 1688.00 WHERE [Code] = 'duh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbv', 'Dungu', NULL, 168.30) END +VALUES ('dbv', 'Dungu', NULL, 1689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dungu', [Definition] = NULL, [SortOrder] = 168.30 WHERE [Code] = 'dbv' END +SET [Description] = 'Dungu', [Definition] = NULL, [SortOrder] = 1689.00 WHERE [Code] = 'dbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duo', 'Dupaninan Agta', NULL, 168.40) END +VALUES ('duo', 'Dupaninan Agta', NULL, 1690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dupaninan Agta', [Definition] = NULL, [SortOrder] = 168.40 WHERE [Code] = 'duo' END +SET [Description] = 'Dupaninan Agta', [Definition] = NULL, [SortOrder] = 1690.00 WHERE [Code] = 'duo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drq', 'Dura', NULL, 168.50) END +VALUES ('drq', 'Dura', NULL, 1691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dura', [Definition] = NULL, [SortOrder] = 168.50 WHERE [Code] = 'drq' END +SET [Description] = 'Dura', [Definition] = NULL, [SortOrder] = 1691.00 WHERE [Code] = 'drq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvp', 'Duri', NULL, 168.60) END +VALUES ('mvp', 'Duri', NULL, 1692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duri', [Definition] = NULL, [SortOrder] = 168.60 WHERE [Code] = 'mvp' END +SET [Description] = 'Duri', [Definition] = NULL, [SortOrder] = 1692.00 WHERE [Code] = 'mvp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbn', 'Duriankere', NULL, 168.70) END +VALUES ('dbn', 'Duriankere', NULL, 1693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duriankere', [Definition] = NULL, [SortOrder] = 168.70 WHERE [Code] = 'dbn' END +SET [Description] = 'Duriankere', [Definition] = NULL, [SortOrder] = 1693.00 WHERE [Code] = 'dbn' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('krp', 'Durop', NULL, 1694.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Durop', [Definition] = NULL, [SortOrder] = 1694.00 WHERE [Code] = 'krp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dug', 'Duruma', NULL, 168.80) END +VALUES ('dug', 'Duruma', NULL, 1695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duruma', [Definition] = NULL, [SortOrder] = 168.80 WHERE [Code] = 'dug' END +SET [Description] = 'Duruma', [Definition] = NULL, [SortOrder] = 1695.00 WHERE [Code] = 'dug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pci', 'Duruwa', NULL, 168.90) END +VALUES ('pci', 'Duruwa', NULL, 1696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duruwa', [Definition] = NULL, [SortOrder] = 168.90 WHERE [Code] = 'pci' END +SET [Description] = 'Duruwa', [Definition] = NULL, [SortOrder] = 1696.00 WHERE [Code] = 'pci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsn', 'Dusner', NULL, 169.00) END +VALUES ('dsn', 'Dusner', NULL, 1697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dusner', [Definition] = NULL, [SortOrder] = 169.00 WHERE [Code] = 'dsn' END +SET [Description] = 'Dusner', [Definition] = NULL, [SortOrder] = 1697.00 WHERE [Code] = 'dsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dun', 'Dusun Deyah', NULL, 169.10) END +VALUES ('dun', 'Dusun Deyah', NULL, 1698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dusun Deyah', [Definition] = NULL, [SortOrder] = 169.10 WHERE [Code] = 'dun' END +SET [Description] = 'Dusun Deyah', [Definition] = NULL, [SortOrder] = 1698.00 WHERE [Code] = 'dun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duq', 'Dusun Malang', NULL, 169.20) END +VALUES ('duq', 'Dusun Malang', NULL, 1699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dusun Malang', [Definition] = NULL, [SortOrder] = 169.20 WHERE [Code] = 'duq' END +SET [Description] = 'Dusun Malang', [Definition] = NULL, [SortOrder] = 1699.00 WHERE [Code] = 'duq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duw', 'Dusun Witu', NULL, 169.30) END +VALUES ('duw', 'Dusun Witu', NULL, 1700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dusun Witu', [Definition] = NULL, [SortOrder] = 169.30 WHERE [Code] = 'duw' END +SET [Description] = 'Dusun Witu', [Definition] = NULL, [SortOrder] = 1700.00 WHERE [Code] = 'duw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nld', 'Dutch', NULL, 169.40) END +VALUES ('nld', 'Dutch', NULL, 1701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dutch', [Definition] = NULL, [SortOrder] = 169.40 WHERE [Code] = 'nld' END +SET [Description] = 'Dutch', [Definition] = NULL, [SortOrder] = 1701.00 WHERE [Code] = 'nld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dse', 'Dutch Sign Language', NULL, 169.50) END +VALUES ('dse', 'Dutch Sign Language', NULL, 1702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dutch Sign Language', [Definition] = NULL, [SortOrder] = 169.50 WHERE [Code] = 'dse' END +SET [Description] = 'Dutch Sign Language', [Definition] = NULL, [SortOrder] = 1702.00 WHERE [Code] = 'dse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dws', 'Dutton World Speedwords', NULL, 169.60) END +VALUES ('dws', 'Dutton World Speedwords', NULL, 1703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dutton World Speedwords', [Definition] = NULL, [SortOrder] = 169.60 WHERE [Code] = 'dws' END +SET [Description] = 'Dutton World Speedwords', [Definition] = NULL, [SortOrder] = 1703.00 WHERE [Code] = 'dws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dux', 'Duungooma', NULL, 169.70) END +VALUES ('dux', 'Duungooma', NULL, 1704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duungooma', [Definition] = NULL, [SortOrder] = 169.70 WHERE [Code] = 'dux' END +SET [Description] = 'Duungooma', [Definition] = NULL, [SortOrder] = 1704.00 WHERE [Code] = 'dux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dae', 'Duupa', NULL, 169.80) END +VALUES ('dae', 'Duupa', NULL, 1705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duupa', [Definition] = NULL, [SortOrder] = 169.80 WHERE [Code] = 'dae' END +SET [Description] = 'Duupa', [Definition] = NULL, [SortOrder] = 1705.00 WHERE [Code] = 'dae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duv', 'Duvle', NULL, 169.90) END +VALUES ('duv', 'Duvle', NULL, 1706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duvle', [Definition] = NULL, [SortOrder] = 169.90 WHERE [Code] = 'duv' END +SET [Description] = 'Duvle', [Definition] = NULL, [SortOrder] = 1706.00 WHERE [Code] = 'duv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbp', 'Duwai', NULL, 170.00) END +VALUES ('dbp', 'Duwai', NULL, 1707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duwai', [Definition] = NULL, [SortOrder] = 170.00 WHERE [Code] = 'dbp' END +SET [Description] = 'Duwai', [Definition] = NULL, [SortOrder] = 1707.00 WHERE [Code] = 'dbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gve', 'Duwet', NULL, 170.10) END +VALUES ('gve', 'Duwet', NULL, 1708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Duwet', [Definition] = NULL, [SortOrder] = 170.10 WHERE [Code] = 'gve' END +SET [Description] = 'Duwet', [Definition] = NULL, [SortOrder] = 1708.00 WHERE [Code] = 'gve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnu', 'Dwang', NULL, 170.20) END +VALUES ('nnu', 'Dwang', NULL, 1709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dwang', [Definition] = NULL, [SortOrder] = 170.20 WHERE [Code] = 'nnu' END +SET [Description] = 'Dwang', [Definition] = NULL, [SortOrder] = 1709.00 WHERE [Code] = 'nnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyb', 'Dyaberdyaber', NULL, 170.30) END +VALUES ('dyb', 'Dyaberdyaber', NULL, 1710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyaberdyaber', [Definition] = NULL, [SortOrder] = 170.30 WHERE [Code] = 'dyb' END +SET [Description] = 'Dyaberdyaber', [Definition] = NULL, [SortOrder] = 1710.00 WHERE [Code] = 'dyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dya', 'Dyan', NULL, 170.40) END +VALUES ('dya', 'Dyan', NULL, 1711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyan', [Definition] = NULL, [SortOrder] = 170.40 WHERE [Code] = 'dya' END +SET [Description] = 'Dyan', [Definition] = NULL, [SortOrder] = 1711.00 WHERE [Code] = 'dya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyn', 'Dyangadi', NULL, 170.50) END +VALUES ('dyn', 'Dyangadi', NULL, 1712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyangadi', [Definition] = NULL, [SortOrder] = 170.50 WHERE [Code] = 'dyn' END +SET [Description] = 'Dyangadi', [Definition] = NULL, [SortOrder] = 1712.00 WHERE [Code] = 'dyn' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('dyr', 'Dyarim', NULL, 1713.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Dyarim', [Definition] = NULL, [SortOrder] = 1713.00 WHERE [Code] = 'dyr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbl', 'Dyirbal', NULL, 170.60) END +VALUES ('dbl', 'Dyirbal', NULL, 1714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyirbal', [Definition] = NULL, [SortOrder] = 170.60 WHERE [Code] = 'dbl' END +SET [Description] = 'Dyirbal', [Definition] = NULL, [SortOrder] = 1714.00 WHERE [Code] = 'dbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyd', 'Dyugun', NULL, 170.70) END +VALUES ('dyd', 'Dyugun', NULL, 1715.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyugun', [Definition] = NULL, [SortOrder] = 170.70 WHERE [Code] = 'dyd' END +SET [Description] = 'Dyugun', [Definition] = NULL, [SortOrder] = 1715.00 WHERE [Code] = 'dyd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyu', 'Dyula', NULL, 170.80) END +VALUES ('dyu', 'Dyula', NULL, 1716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dyula', [Definition] = NULL, [SortOrder] = 170.80 WHERE [Code] = 'dyu' END +SET [Description] = 'Dyula', [Definition] = NULL, [SortOrder] = 1716.00 WHERE [Code] = 'dyu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jen', 'Dza', NULL, 170.90) END +VALUES ('jen', 'Dza', NULL, 1717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dza', [Definition] = NULL, [SortOrder] = 170.90 WHERE [Code] = 'jen' END +SET [Description] = 'Dza', [Definition] = NULL, [SortOrder] = 1717.00 WHERE [Code] = 'jen' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzl', 'Dzalakha', NULL, 171.00) END +VALUES ('dzl', 'Dzalakha', NULL, 1718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzalakha', [Definition] = NULL, [SortOrder] = 171.00 WHERE [Code] = 'dzl' END +SET [Description] = 'Dzalakha', [Definition] = NULL, [SortOrder] = 1718.00 WHERE [Code] = 'dzl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzn', 'Dzando', NULL, 171.10) END +VALUES ('dzn', 'Dzando', NULL, 1719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzando', [Definition] = NULL, [SortOrder] = 171.10 WHERE [Code] = 'dzn' END +SET [Description] = 'Dzando', [Definition] = NULL, [SortOrder] = 1719.00 WHERE [Code] = 'dzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpn', 'Dzao Min', NULL, 171.20) END +VALUES ('bpn', 'Dzao Min', NULL, 1720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzao Min', [Definition] = NULL, [SortOrder] = 171.20 WHERE [Code] = 'bpn' END +SET [Description] = 'Dzao Min', [Definition] = NULL, [SortOrder] = 1720.00 WHERE [Code] = 'bpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dzo', 'Dzongkha', NULL, 171.30) END +VALUES ('dzo', 'Dzongkha', NULL, 1721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzongkha', [Definition] = NULL, [SortOrder] = 171.30 WHERE [Code] = 'dzo' END +SET [Description] = 'Dzongkha', [Definition] = NULL, [SortOrder] = 1721.00 WHERE [Code] = 'dzo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnn', 'Dzùùngoo', NULL, 171.40) END +VALUES ('dnn', 'Dzùùngoo', NULL, 1722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Dzùùngoo', [Definition] = NULL, [SortOrder] = 171.40 WHERE [Code] = 'dnn' END +SET [Description] = 'Dzùùngoo', [Definition] = NULL, [SortOrder] = 1722.00 WHERE [Code] = 'dnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eee', 'E', NULL, 171.50) END +VALUES ('eee', 'E', NULL, 1723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'E', [Definition] = NULL, [SortOrder] = 171.50 WHERE [Code] = 'eee' END +SET [Description] = 'E', [Definition] = NULL, [SortOrder] = 1723.00 WHERE [Code] = 'eee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yzg', 'E''ma Buyang', NULL, 171.60) END +VALUES ('yzg', 'E''ma Buyang', NULL, 1724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'E''ma Buyang', [Definition] = NULL, [SortOrder] = 171.60 WHERE [Code] = 'yzg' END +SET [Description] = 'E''ma Buyang', [Definition] = NULL, [SortOrder] = 1724.00 WHERE [Code] = 'yzg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbh', 'E''ñapa Woromaipu', NULL, 171.70) END +VALUES ('pbh', 'E''ñapa Woromaipu', NULL, 1725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'E''ñapa Woromaipu', [Definition] = NULL, [SortOrder] = 171.70 WHERE [Code] = 'pbh' END +SET [Description] = 'E''ñapa Woromaipu', [Definition] = NULL, [SortOrder] = 1725.00 WHERE [Code] = 'pbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtr', 'Early Tripuri', NULL, 171.80) END +VALUES ('xtr', 'Early Tripuri', NULL, 1726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Early Tripuri', [Definition] = NULL, [SortOrder] = 171.80 WHERE [Code] = 'xtr' END +SET [Description] = 'Early Tripuri', [Definition] = NULL, [SortOrder] = 1726.00 WHERE [Code] = 'xtr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omb', 'East Ambae', NULL, 171.90) END +VALUES ('omb', 'East Ambae', NULL, 1727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Ambae', [Definition] = NULL, [SortOrder] = 171.90 WHERE [Code] = 'omb' END +SET [Description] = 'East Ambae', [Definition] = NULL, [SortOrder] = 1727.00 WHERE [Code] = 'omb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbe', 'East Berawan', NULL, 172.00) END +VALUES ('zbe', 'East Berawan', NULL, 1728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Berawan', [Definition] = NULL, [SortOrder] = 172.00 WHERE [Code] = 'zbe' END +SET [Description] = 'East Berawan', [Definition] = NULL, [SortOrder] = 1728.00 WHERE [Code] = 'zbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmr', 'East Damar', NULL, 172.10) END +VALUES ('dmr', 'East Damar', NULL, 1729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Damar', [Definition] = NULL, [SortOrder] = 172.10 WHERE [Code] = 'dmr' END +SET [Description] = 'East Damar', [Definition] = NULL, [SortOrder] = 1729.00 WHERE [Code] = 'dmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fud', 'East Futuna', NULL, 172.20) END +VALUES ('fud', 'East Futuna', NULL, 1730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Futuna', [Definition] = NULL, [SortOrder] = 172.20 WHERE [Code] = 'fud' END +SET [Description] = 'East Futuna', [Definition] = NULL, [SortOrder] = 1730.00 WHERE [Code] = 'fud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjs', 'East Kewa', NULL, 172.30) END +VALUES ('kjs', 'East Kewa', NULL, 1731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Kewa', [Definition] = NULL, [SortOrder] = 172.30 WHERE [Code] = 'kjs' END +SET [Description] = 'East Kewa', [Definition] = NULL, [SortOrder] = 1731.00 WHERE [Code] = 'kjs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lma', 'East Limba', NULL, 172.40) END +VALUES ('lma', 'East Limba', NULL, 1732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Limba', [Definition] = NULL, [SortOrder] = 172.40 WHERE [Code] = 'lma' END +SET [Description] = 'East Limba', [Definition] = NULL, [SortOrder] = 1732.00 WHERE [Code] = 'lma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mky', 'East Makian', NULL, 172.50) END +VALUES ('mky', 'East Makian', NULL, 1733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Makian', [Definition] = NULL, [SortOrder] = 172.50 WHERE [Code] = 'mky' END +SET [Description] = 'East Makian', [Definition] = NULL, [SortOrder] = 1733.00 WHERE [Code] = 'mky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vme', 'East Masela', NULL, 172.60) END +VALUES ('vme', 'East Masela', NULL, 1734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Masela', [Definition] = NULL, [SortOrder] = 172.60 WHERE [Code] = 'vme' END +SET [Description] = 'East Masela', [Definition] = NULL, [SortOrder] = 1734.00 WHERE [Code] = 'vme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nle', 'East Nyala', NULL, 172.70) END +VALUES ('nle', 'East Nyala', NULL, 1735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Nyala', [Definition] = NULL, [SortOrder] = 172.70 WHERE [Code] = 'nle' END +SET [Description] = 'East Nyala', [Definition] = NULL, [SortOrder] = 1735.00 WHERE [Code] = 'nle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tre', 'East Tarangan', NULL, 172.80) END +VALUES ('tre', 'East Tarangan', NULL, 1736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Tarangan', [Definition] = NULL, [SortOrder] = 172.80 WHERE [Code] = 'tre' END +SET [Description] = 'East Tarangan', [Definition] = NULL, [SortOrder] = 1736.00 WHERE [Code] = 'tre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuy', 'East Yugur', NULL, 172.90) END +VALUES ('yuy', 'East Yugur', NULL, 1737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'East Yugur', [Definition] = NULL, [SortOrder] = 172.90 WHERE [Code] = 'yuy' END +SET [Description] = 'East Yugur', [Definition] = NULL, [SortOrder] = 1737.00 WHERE [Code] = 'yuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaq', 'Eastern Abnaki', NULL, 173.00) END +VALUES ('aaq', 'Eastern Abnaki', NULL, 1738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Abnaki', [Definition] = NULL, [SortOrder] = 173.00 WHERE [Code] = 'aaq' END +SET [Description] = 'Eastern Abnaki', [Definition] = NULL, [SortOrder] = 1738.00 WHERE [Code] = 'aaq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acp', 'Eastern Acipa', NULL, 173.10) END +VALUES ('acp', 'Eastern Acipa', NULL, 1739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Acipa', [Definition] = NULL, [SortOrder] = 173.10 WHERE [Code] = 'acp' END +SET [Description] = 'Eastern Acipa', [Definition] = NULL, [SortOrder] = 1739.00 WHERE [Code] = 'acp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qve', 'Eastern Apurímac Quechua', NULL, 173.20) END +VALUES ('qve', 'Eastern Apurímac Quechua', NULL, 1740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Apurímac Quechua', [Definition] = NULL, [SortOrder] = 173.20 WHERE [Code] = 'qve' END +SET [Description] = 'Eastern Apurímac Quechua', [Definition] = NULL, [SortOrder] = 1740.00 WHERE [Code] = 'qve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aer', 'Eastern Arrernte', NULL, 173.30) END +VALUES ('aer', 'Eastern Arrernte', NULL, 1741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Arrernte', [Definition] = NULL, [SortOrder] = 173.30 WHERE [Code] = 'aer' END +SET [Description] = 'Eastern Arrernte', [Definition] = NULL, [SortOrder] = 1741.00 WHERE [Code] = 'aer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgp', 'Eastern Balochi', NULL, 173.40) END +VALUES ('bgp', 'Eastern Balochi', NULL, 1742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Balochi', [Definition] = NULL, [SortOrder] = 173.40 WHERE [Code] = 'bgp' END +SET [Description] = 'Eastern Balochi', [Definition] = NULL, [SortOrder] = 1742.00 WHERE [Code] = 'bgp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gui', 'Eastern Bolivian Guaraní', NULL, 173.50) END +VALUES ('gui', 'Eastern Bolivian Guaraní', NULL, 1743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Bolivian Guaraní', [Definition] = NULL, [SortOrder] = 173.50 WHERE [Code] = 'gui' END +SET [Description] = 'Eastern Bolivian Guaraní', [Definition] = NULL, [SortOrder] = 1743.00 WHERE [Code] = 'gui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebk', 'Eastern Bontok', NULL, 173.60) END +VALUES ('ebk', 'Eastern Bontok', NULL, 1744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Bontok', [Definition] = NULL, [SortOrder] = 173.60 WHERE [Code] = 'ebk' END +SET [Description] = 'Eastern Bontok', [Definition] = NULL, [SortOrder] = 1744.00 WHERE [Code] = 'ebk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bru', 'Eastern Bru', NULL, 173.70) END +VALUES ('bru', 'Eastern Bru', NULL, 1745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Bru', [Definition] = NULL, [SortOrder] = 173.70 WHERE [Code] = 'bru' END +SET [Description] = 'Eastern Bru', [Definition] = NULL, [SortOrder] = 1745.00 WHERE [Code] = 'bru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ike') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ike', 'Eastern Canadian Inuktitut', NULL, 173.80) END +VALUES ('ike', 'Eastern Canadian Inuktitut', NULL, 1746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Canadian Inuktitut', [Definition] = NULL, [SortOrder] = 173.80 WHERE [Code] = 'ike' END +SET [Description] = 'Eastern Canadian Inuktitut', [Definition] = NULL, [SortOrder] = 1746.00 WHERE [Code] = 'ike' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjm', 'Eastern Cham', NULL, 173.90) END +VALUES ('cjm', 'Eastern Cham', NULL, 1747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Cham', [Definition] = NULL, [SortOrder] = 173.90 WHERE [Code] = 'cjm' END +SET [Description] = 'Eastern Cham', [Definition] = NULL, [SortOrder] = 1747.00 WHERE [Code] = 'cjm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azd', 'Eastern Durango Nahuatl', NULL, 174.00) END +VALUES ('azd', 'Eastern Durango Nahuatl', NULL, 1748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Durango Nahuatl', [Definition] = NULL, [SortOrder] = 174.00 WHERE [Code] = 'azd' END +SET [Description] = 'Eastern Durango Nahuatl', [Definition] = NULL, [SortOrder] = 1748.00 WHERE [Code] = 'azd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avl', 'Eastern Egyptian Bedawi Arabic', NULL, 174.10) END +VALUES ('avl', 'Eastern Egyptian Bedawi Arabic', NULL, 1749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Egyptian Bedawi Arabic', [Definition] = NULL, [SortOrder] = 174.10 WHERE [Code] = 'avl' END +SET [Description] = 'Eastern Egyptian Bedawi Arabic', [Definition] = NULL, [SortOrder] = 1749.00 WHERE [Code] = 'avl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frs', 'Eastern Frisian', NULL, 174.20) END +VALUES ('frs', 'Eastern Frisian', NULL, 1750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Frisian', [Definition] = NULL, [SortOrder] = 174.20 WHERE [Code] = 'frs' END +SET [Description] = 'Eastern Frisian', [Definition] = NULL, [SortOrder] = 1750.00 WHERE [Code] = 'frs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tge', 'Eastern Gorkha Tamang', NULL, 174.30) END +VALUES ('tge', 'Eastern Gorkha Tamang', NULL, 1751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Gorkha Tamang', [Definition] = NULL, [SortOrder] = 174.30 WHERE [Code] = 'tge' END +SET [Description] = 'Eastern Gorkha Tamang', [Definition] = NULL, [SortOrder] = 1751.00 WHERE [Code] = 'tge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cly', 'Eastern Highland Chatino', NULL, 174.40) END +VALUES ('cly', 'Eastern Highland Chatino', NULL, 1752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Highland Chatino', [Definition] = NULL, [SortOrder] = 174.40 WHERE [Code] = 'cly' END +SET [Description] = 'Eastern Highland Chatino', [Definition] = NULL, [SortOrder] = 1752.00 WHERE [Code] = 'cly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otm', 'Eastern Highland Otomi', NULL, 174.50) END +VALUES ('otm', 'Eastern Highland Otomi', NULL, 1753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Highland Otomi', [Definition] = NULL, [SortOrder] = 174.50 WHERE [Code] = 'otm' END +SET [Description] = 'Eastern Highland Otomi', [Definition] = NULL, [SortOrder] = 1753.00 WHERE [Code] = 'otm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zeh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zeh', 'Eastern Hongshuihe Zhuang', NULL, 174.60) END +VALUES ('zeh', 'Eastern Hongshuihe Zhuang', NULL, 1754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Hongshuihe Zhuang', [Definition] = NULL, [SortOrder] = 174.60 WHERE [Code] = 'zeh' END +SET [Description] = 'Eastern Hongshuihe Zhuang', [Definition] = NULL, [SortOrder] = 1754.00 WHERE [Code] = 'zeh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhe', 'Eastern Huasteca Nahuatl', NULL, 174.70) END +VALUES ('nhe', 'Eastern Huasteca Nahuatl', NULL, 1755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 174.70 WHERE [Code] = 'nhe' END +SET [Description] = 'Eastern Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 1755.00 WHERE [Code] = 'nhe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hme', 'Eastern Huishui Hmong', NULL, 174.80) END +VALUES ('hme', 'Eastern Huishui Hmong', NULL, 1756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Huishui Hmong', [Definition] = NULL, [SortOrder] = 174.80 WHERE [Code] = 'hme' END +SET [Description] = 'Eastern Huishui Hmong', [Definition] = NULL, [SortOrder] = 1756.00 WHERE [Code] = 'hme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrb', 'Eastern Karaboro', NULL, 174.90) END +VALUES ('xrb', 'Eastern Karaboro', NULL, 1757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Karaboro', [Definition] = NULL, [SortOrder] = 174.90 WHERE [Code] = 'xrb' END +SET [Description] = 'Eastern Karaboro', [Definition] = NULL, [SortOrder] = 1757.00 WHERE [Code] = 'xrb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktv', 'Eastern Katu', NULL, 175.00) END +VALUES ('ktv', 'Eastern Katu', NULL, 1758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Katu', [Definition] = NULL, [SortOrder] = 175.00 WHERE [Code] = 'ktv' END +SET [Description] = 'Eastern Katu', [Definition] = NULL, [SortOrder] = 1758.00 WHERE [Code] = 'ktv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eky', 'Eastern Kayah', NULL, 175.10) END +VALUES ('eky', 'Eastern Kayah', NULL, 1759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Kayah', [Definition] = NULL, [SortOrder] = 175.10 WHERE [Code] = 'eky' END +SET [Description] = 'Eastern Kayah', [Definition] = NULL, [SortOrder] = 1759.00 WHERE [Code] = 'eky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kee', 'Eastern Keres', NULL, 175.20) END +VALUES ('kee', 'Eastern Keres', NULL, 1760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Keres', [Definition] = NULL, [SortOrder] = 175.20 WHERE [Code] = 'kee' END +SET [Description] = 'Eastern Keres', [Definition] = NULL, [SortOrder] = 1760.00 WHERE [Code] = 'kee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cek', 'Eastern Khumi Chin', NULL, 175.30) END +VALUES ('cek', 'Eastern Khumi Chin', NULL, 1761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Khumi Chin', [Definition] = NULL, [SortOrder] = 175.30 WHERE [Code] = 'cek' END +SET [Description] = 'Eastern Khumi Chin', [Definition] = NULL, [SortOrder] = 1761.00 WHERE [Code] = 'cek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqo', 'Eastern Krahn', NULL, 175.40) END +VALUES ('kqo', 'Eastern Krahn', NULL, 1762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Krahn', [Definition] = NULL, [SortOrder] = 175.40 WHERE [Code] = 'kqo' END +SET [Description] = 'Eastern Krahn', [Definition] = NULL, [SortOrder] = 1762.00 WHERE [Code] = 'kqo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yit', 'Eastern Lalu', NULL, 175.50) END +VALUES ('yit', 'Eastern Lalu', NULL, 1763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Lalu', [Definition] = NULL, [SortOrder] = 175.50 WHERE [Code] = 'yit' END +SET [Description] = 'Eastern Lalu', [Definition] = NULL, [SortOrder] = 1763.00 WHERE [Code] = 'yit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwl', 'Eastern Lawa', NULL, 175.60) END +VALUES ('lwl', 'Eastern Lawa', NULL, 1764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Lawa', [Definition] = NULL, [SortOrder] = 175.60 WHERE [Code] = 'lwl' END +SET [Description] = 'Eastern Lawa', [Definition] = NULL, [SortOrder] = 1764.00 WHERE [Code] = 'lwl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgp', 'Eastern Magar', NULL, 175.70) END +VALUES ('mgp', 'Eastern Magar', NULL, 1765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Magar', [Definition] = NULL, [SortOrder] = 175.70 WHERE [Code] = 'mgp' END +SET [Description] = 'Eastern Magar', [Definition] = NULL, [SortOrder] = 1765.00 WHERE [Code] = 'mgp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emk', 'Eastern Maninkakan', NULL, 175.80) END +VALUES ('emk', 'Eastern Maninkakan', NULL, 1766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Maninkakan', [Definition] = NULL, [SortOrder] = 175.80 WHERE [Code] = 'emk' END +SET [Description] = 'Eastern Maninkakan', [Definition] = NULL, [SortOrder] = 1766.00 WHERE [Code] = 'emk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhr', 'Eastern Mari', NULL, 175.90) END +VALUES ('mhr', 'Eastern Mari', NULL, 1767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Mari', [Definition] = NULL, [SortOrder] = 175.90 WHERE [Code] = 'mhr' END +SET [Description] = 'Eastern Mari', [Definition] = NULL, [SortOrder] = 1767.00 WHERE [Code] = 'mhr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djk', 'Eastern Maroon Creole', NULL, 176.00) END +VALUES ('djk', 'Eastern Maroon Creole', NULL, 1768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Maroon Creole', [Definition] = NULL, [SortOrder] = 176.00 WHERE [Code] = 'djk' END +SET [Description] = 'Eastern Maroon Creole', [Definition] = NULL, [SortOrder] = 1768.00 WHERE [Code] = 'djk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emg', 'Eastern Meohang', NULL, 176.10) END +VALUES ('emg', 'Eastern Meohang', NULL, 1769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Meohang', [Definition] = NULL, [SortOrder] = 176.10 WHERE [Code] = 'emg' END +SET [Description] = 'Eastern Meohang', [Definition] = NULL, [SortOrder] = 1769.00 WHERE [Code] = 'emg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emq', 'Eastern Minyag', NULL, 176.20) END +VALUES ('emq', 'Eastern Minyag', NULL, 1770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Minyag', [Definition] = NULL, [SortOrder] = 176.20 WHERE [Code] = 'emq' END +SET [Description] = 'Eastern Minyag', [Definition] = NULL, [SortOrder] = 1770.00 WHERE [Code] = 'emq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mng', 'Eastern Mnong', NULL, 176.30) END +VALUES ('mng', 'Eastern Mnong', NULL, 1771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Mnong', [Definition] = NULL, [SortOrder] = 176.30 WHERE [Code] = 'mng' END +SET [Description] = 'Eastern Mnong', [Definition] = NULL, [SortOrder] = 1771.00 WHERE [Code] = 'mng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emu', 'Eastern Muria', NULL, 176.40) END +VALUES ('emu', 'Eastern Muria', NULL, 1772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Muria', [Definition] = NULL, [SortOrder] = 176.40 WHERE [Code] = 'emu' END +SET [Description] = 'Eastern Muria', [Definition] = NULL, [SortOrder] = 1772.00 WHERE [Code] = 'emu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nea', 'Eastern Ngad''a', NULL, 176.50) END +VALUES ('nea', 'Eastern Ngad''a', NULL, 1773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Ngad''a', [Definition] = NULL, [SortOrder] = 176.50 WHERE [Code] = 'nea' END +SET [Description] = 'Eastern Ngad''a', [Definition] = NULL, [SortOrder] = 1773.00 WHERE [Code] = 'nea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nos', 'Eastern Nisu', NULL, 176.60) END +VALUES ('nos', 'Eastern Nisu', NULL, 1774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Nisu', [Definition] = NULL, [SortOrder] = 176.60 WHERE [Code] = 'nos' END +SET [Description] = 'Eastern Nisu', [Definition] = NULL, [SortOrder] = 1774.00 WHERE [Code] = 'nos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojg', 'Eastern Ojibwa', NULL, 176.70) END +VALUES ('ojg', 'Eastern Ojibwa', NULL, 1775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Ojibwa', [Definition] = NULL, [SortOrder] = 176.70 WHERE [Code] = 'ojg' END +SET [Description] = 'Eastern Ojibwa', [Definition] = NULL, [SortOrder] = 1775.00 WHERE [Code] = 'ojg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hae', 'Eastern Oromo', NULL, 176.80) END +VALUES ('hae', 'Eastern Oromo', NULL, 1776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Oromo', [Definition] = NULL, [SortOrder] = 176.80 WHERE [Code] = 'hae' END +SET [Description] = 'Eastern Oromo', [Definition] = NULL, [SortOrder] = 1776.00 WHERE [Code] = 'hae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kif', 'Eastern Parbate Kham', NULL, 176.90) END +VALUES ('kif', 'Eastern Parbate Kham', NULL, 1777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Parbate Kham', [Definition] = NULL, [SortOrder] = 176.90 WHERE [Code] = 'kif' END +SET [Description] = 'Eastern Parbate Kham', [Definition] = NULL, [SortOrder] = 1777.00 WHERE [Code] = 'kif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pez', 'Eastern Penan', NULL, 177.00) END +VALUES ('pez', 'Eastern Penan', NULL, 1778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Penan', [Definition] = NULL, [SortOrder] = 177.00 WHERE [Code] = 'pez' END +SET [Description] = 'Eastern Penan', [Definition] = NULL, [SortOrder] = 1778.00 WHERE [Code] = 'pez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peb', 'Eastern Pomo', NULL, 177.10) END +VALUES ('peb', 'Eastern Pomo', NULL, 1779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Pomo', [Definition] = NULL, [SortOrder] = 177.10 WHERE [Code] = 'peb' END +SET [Description] = 'Eastern Pomo', [Definition] = NULL, [SortOrder] = 1779.00 WHERE [Code] = 'peb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmq', 'Eastern Qiandong Miao', NULL, 177.20) END +VALUES ('hmq', 'Eastern Qiandong Miao', NULL, 1780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Qiandong Miao', [Definition] = NULL, [SortOrder] = 177.20 WHERE [Code] = 'hmq' END +SET [Description] = 'Eastern Qiandong Miao', [Definition] = NULL, [SortOrder] = 1780.00 WHERE [Code] = 'hmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfe', 'Eastern Subanen', NULL, 177.30) END +VALUES ('sfe', 'Eastern Subanen', NULL, 1781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Subanen', [Definition] = NULL, [SortOrder] = 177.30 WHERE [Code] = 'sfe' END +SET [Description] = 'Eastern Subanen', [Definition] = NULL, [SortOrder] = 1781.00 WHERE [Code] = 'sfe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taj', 'Eastern Tamang', NULL, 177.40) END +VALUES ('taj', 'Eastern Tamang', NULL, 1782.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Tamang', [Definition] = NULL, [SortOrder] = 177.40 WHERE [Code] = 'taj' END +SET [Description] = 'Eastern Tamang', [Definition] = NULL, [SortOrder] = 1782.00 WHERE [Code] = 'taj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnj', 'Eastern Tawbuid', NULL, 177.50) END +VALUES ('bnj', 'Eastern Tawbuid', NULL, 1783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Tawbuid', [Definition] = NULL, [SortOrder] = 177.50 WHERE [Code] = 'bnj' END +SET [Description] = 'Eastern Tawbuid', [Definition] = NULL, [SortOrder] = 1783.00 WHERE [Code] = 'bnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muq', 'Eastern Xiangxi Miao', NULL, 177.60) END +VALUES ('muq', 'Eastern Xiangxi Miao', NULL, 1784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Xiangxi Miao', [Definition] = NULL, [SortOrder] = 177.60 WHERE [Code] = 'muq' END +SET [Description] = 'Eastern Xiangxi Miao', [Definition] = NULL, [SortOrder] = 1784.00 WHERE [Code] = 'muq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbx', 'Eastern Xwla Gbe', NULL, 177.70) END +VALUES ('gbx', 'Eastern Xwla Gbe', NULL, 1785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Xwla Gbe', [Definition] = NULL, [SortOrder] = 177.70 WHERE [Code] = 'gbx' END +SET [Description] = 'Eastern Xwla Gbe', [Definition] = NULL, [SortOrder] = 1785.00 WHERE [Code] = 'gbx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ydd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ydd', 'Eastern Yiddish', NULL, 177.80) END +VALUES ('ydd', 'Eastern Yiddish', NULL, 1786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eastern Yiddish', [Definition] = NULL, [SortOrder] = 177.80 WHERE [Code] = 'ydd' END +SET [Description] = 'Eastern Yiddish', [Definition] = NULL, [SortOrder] = 1786.00 WHERE [Code] = 'ydd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igb', 'Ebira', NULL, 177.90) END +VALUES ('igb', 'Ebira', NULL, 1787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ebira', [Definition] = NULL, [SortOrder] = 177.90 WHERE [Code] = 'igb' END +SET [Description] = 'Ebira', [Definition] = NULL, [SortOrder] = 1787.00 WHERE [Code] = 'igb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xeb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xeb', 'Eblan', NULL, 178.00) END +VALUES ('xeb', 'Eblan', NULL, 1788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eblan', [Definition] = NULL, [SortOrder] = 178.00 WHERE [Code] = 'xeb' END +SET [Description] = 'Eblan', [Definition] = NULL, [SortOrder] = 1788.00 WHERE [Code] = 'xeb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebr', 'Ebrié', NULL, 178.10) END +VALUES ('ebr', 'Ebrié', NULL, 1789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ebrié', [Definition] = NULL, [SortOrder] = 178.10 WHERE [Code] = 'ebr' END +SET [Description] = 'Ebrié', [Definition] = NULL, [SortOrder] = 1789.00 WHERE [Code] = 'ebr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebg', 'Ebughu', NULL, 178.20) END +VALUES ('ebg', 'Ebughu', NULL, 1790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ebughu', [Definition] = NULL, [SortOrder] = 178.20 WHERE [Code] = 'ebg' END +SET [Description] = 'Ebughu', [Definition] = NULL, [SortOrder] = 1790.00 WHERE [Code] = 'ebg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ecs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ecs', 'Ecuadorian Sign Language', NULL, 178.30) END +VALUES ('ecs', 'Ecuadorian Sign Language', NULL, 1791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ecuadorian Sign Language', [Definition] = NULL, [SortOrder] = 178.30 WHERE [Code] = 'ecs' END +SET [Description] = 'Ecuadorian Sign Language', [Definition] = NULL, [SortOrder] = 1791.00 WHERE [Code] = 'ecs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbj', 'Ede Cabe', NULL, 178.40) END +VALUES ('cbj', 'Ede Cabe', NULL, 1792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ede Cabe', [Definition] = NULL, [SortOrder] = 178.40 WHERE [Code] = 'cbj' END +SET [Description] = 'Ede Cabe', [Definition] = NULL, [SortOrder] = 1792.00 WHERE [Code] = 'cbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ica') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ica', 'Ede Ica', NULL, 178.50) END +VALUES ('ica', 'Ede Ica', NULL, 1793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ede Ica', [Definition] = NULL, [SortOrder] = 178.50 WHERE [Code] = 'ica' END +SET [Description] = 'Ede Ica', [Definition] = NULL, [SortOrder] = 1793.00 WHERE [Code] = 'ica' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idd', 'Ede Idaca', NULL, 178.60) END +VALUES ('idd', 'Ede Idaca', NULL, 1794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ede Idaca', [Definition] = NULL, [SortOrder] = 178.60 WHERE [Code] = 'idd' END +SET [Description] = 'Ede Idaca', [Definition] = NULL, [SortOrder] = 1794.00 WHERE [Code] = 'idd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ijj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijj', 'Ede Ije', NULL, 178.70) END +VALUES ('ijj', 'Ede Ije', NULL, 1795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ede Ije', [Definition] = NULL, [SortOrder] = 178.70 WHERE [Code] = 'ijj' END +SET [Description] = 'Ede Ije', [Definition] = NULL, [SortOrder] = 1795.00 WHERE [Code] = 'ijj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awy', 'Edera Awyu', NULL, 178.80) END +VALUES ('awy', 'Edera Awyu', NULL, 1796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Edera Awyu', [Definition] = NULL, [SortOrder] = 178.80 WHERE [Code] = 'awy' END +SET [Description] = 'Edera Awyu', [Definition] = NULL, [SortOrder] = 1796.00 WHERE [Code] = 'awy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etr', 'Edolo', NULL, 178.90) END +VALUES ('etr', 'Edolo', NULL, 1797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Edolo', [Definition] = NULL, [SortOrder] = 178.90 WHERE [Code] = 'etr' END +SET [Description] = 'Edolo', [Definition] = NULL, [SortOrder] = 1797.00 WHERE [Code] = 'etr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdm', 'Edomite', NULL, 179.00) END +VALUES ('xdm', 'Edomite', NULL, 1798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Edomite', [Definition] = NULL, [SortOrder] = 179.00 WHERE [Code] = 'xdm' END +SET [Description] = 'Edomite', [Definition] = NULL, [SortOrder] = 1798.00 WHERE [Code] = 'xdm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbf', 'Edopi', NULL, 179.10) END +VALUES ('dbf', 'Edopi', NULL, 1799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Edopi', [Definition] = NULL, [SortOrder] = 179.10 WHERE [Code] = 'dbf' END +SET [Description] = 'Edopi', [Definition] = NULL, [SortOrder] = 1799.00 WHERE [Code] = 'dbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'efa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('efa', 'Efai', NULL, 179.20) END +VALUES ('efa', 'Efai', NULL, 1800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Efai', [Definition] = NULL, [SortOrder] = 179.20 WHERE [Code] = 'efa' END +SET [Description] = 'Efai', [Definition] = NULL, [SortOrder] = 1800.00 WHERE [Code] = 'efa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'efe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('efe', 'Efe', NULL, 179.30) END +VALUES ('efe', 'Efe', NULL, 1801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Efe', [Definition] = NULL, [SortOrder] = 179.30 WHERE [Code] = 'efe' END +SET [Description] = 'Efe', [Definition] = NULL, [SortOrder] = 1801.00 WHERE [Code] = 'efe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'efi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('efi', 'Efik', NULL, 179.40) END +VALUES ('efi', 'Efik', NULL, 1802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Efik', [Definition] = NULL, [SortOrder] = 179.40 WHERE [Code] = 'efi' END +SET [Description] = 'Efik', [Definition] = NULL, [SortOrder] = 1802.00 WHERE [Code] = 'efi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ofu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ofu', 'Efutop', NULL, 179.50) END +VALUES ('ofu', 'Efutop', NULL, 1803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Efutop', [Definition] = NULL, [SortOrder] = 179.50 WHERE [Code] = 'ofu' END +SET [Description] = 'Efutop', [Definition] = NULL, [SortOrder] = 1803.00 WHERE [Code] = 'ofu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ega') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ega', 'Ega', NULL, 179.60) END +VALUES ('ega', 'Ega', NULL, 1804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ega', [Definition] = NULL, [SortOrder] = 179.60 WHERE [Code] = 'ega' END +SET [Description] = 'Ega', [Definition] = NULL, [SortOrder] = 1804.00 WHERE [Code] = 'ega' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ego') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ego', 'Eggon', NULL, 179.70) END +VALUES ('ego', 'Eggon', NULL, 1805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eggon', [Definition] = NULL, [SortOrder] = 179.70 WHERE [Code] = 'ego' END +SET [Description] = 'Eggon', [Definition] = NULL, [SortOrder] = 1805.00 WHERE [Code] = 'ego' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esl', 'Egypt Sign Language', NULL, 179.80) END +VALUES ('esl', 'Egypt Sign Language', NULL, 1806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Egypt Sign Language', [Definition] = NULL, [SortOrder] = 179.80 WHERE [Code] = 'esl' END +SET [Description] = 'Egypt Sign Language', [Definition] = NULL, [SortOrder] = 1806.00 WHERE [Code] = 'esl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'egy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('egy', 'Egyptian (Ancient)', NULL, 179.90) END +VALUES ('egy', 'Egyptian (Ancient)', NULL, 1807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Egyptian (Ancient)', [Definition] = NULL, [SortOrder] = 179.90 WHERE [Code] = 'egy' END +SET [Description] = 'Egyptian (Ancient)', [Definition] = NULL, [SortOrder] = 1807.00 WHERE [Code] = 'egy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arz', 'Egyptian Arabic', NULL, 180.00) END +VALUES ('arz', 'Egyptian Arabic', NULL, 1808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Egyptian Arabic', [Definition] = NULL, [SortOrder] = 180.00 WHERE [Code] = 'arz' END +SET [Description] = 'Egyptian Arabic', [Definition] = NULL, [SortOrder] = 1808.00 WHERE [Code] = 'arz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ehu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ehu', 'Ehueun', NULL, 180.10) END +VALUES ('ehu', 'Ehueun', NULL, 1809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ehueun', [Definition] = NULL, [SortOrder] = 180.10 WHERE [Code] = 'ehu' END +SET [Description] = 'Ehueun', [Definition] = NULL, [SortOrder] = 1809.00 WHERE [Code] = 'ehu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eip', 'Eipomek', NULL, 180.20) END +VALUES ('eip', 'Eipomek', NULL, 1810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eipomek', [Definition] = NULL, [SortOrder] = 180.20 WHERE [Code] = 'eip' END +SET [Description] = 'Eipomek', [Definition] = NULL, [SortOrder] = 1810.00 WHERE [Code] = 'eip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eit', 'Eitiep', NULL, 180.30) END +VALUES ('eit', 'Eitiep', NULL, 1811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eitiep', [Definition] = NULL, [SortOrder] = 180.30 WHERE [Code] = 'eit' END +SET [Description] = 'Eitiep', [Definition] = NULL, [SortOrder] = 1811.00 WHERE [Code] = 'eit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etu', 'Ejagham', NULL, 180.40) END +VALUES ('etu', 'Ejagham', NULL, 1812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ejagham', [Definition] = NULL, [SortOrder] = 180.40 WHERE [Code] = 'etu' END +SET [Description] = 'Ejagham', [Definition] = NULL, [SortOrder] = 1812.00 WHERE [Code] = 'etu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eja', 'Ejamat', NULL, 180.50) END +VALUES ('eja', 'Ejamat', NULL, 1813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ejamat', [Definition] = NULL, [SortOrder] = 180.50 WHERE [Code] = 'eja' END +SET [Description] = 'Ejamat', [Definition] = NULL, [SortOrder] = 1813.00 WHERE [Code] = 'eja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cey', 'Ekai Chin', NULL, 180.60) END +VALUES ('cey', 'Ekai Chin', NULL, 1814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekai Chin', [Definition] = NULL, [SortOrder] = 180.60 WHERE [Code] = 'cey' END +SET [Description] = 'Ekai Chin', [Definition] = NULL, [SortOrder] = 1814.00 WHERE [Code] = 'cey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eka', 'Ekajuk', NULL, 180.70) END +VALUES ('eka', 'Ekajuk', NULL, 1815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekajuk', [Definition] = NULL, [SortOrder] = 180.70 WHERE [Code] = 'eka' END +SET [Description] = 'Ekajuk', [Definition] = NULL, [SortOrder] = 1815.00 WHERE [Code] = 'eka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekg', 'Ekari', NULL, 180.80) END +VALUES ('ekg', 'Ekari', NULL, 1816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekari', [Definition] = NULL, [SortOrder] = 180.80 WHERE [Code] = 'ekg' END +SET [Description] = 'Ekari', [Definition] = NULL, [SortOrder] = 1816.00 WHERE [Code] = 'ekg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eki', 'Eki', NULL, 180.90) END +VALUES ('eki', 'Eki', NULL, 1817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eki', [Definition] = NULL, [SortOrder] = 180.90 WHERE [Code] = 'eki' END +SET [Description] = 'Eki', [Definition] = NULL, [SortOrder] = 1817.00 WHERE [Code] = 'eki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eke', 'Ekit', NULL, 181.00) END +VALUES ('eke', 'Ekit', NULL, 1818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekit', [Definition] = NULL, [SortOrder] = 181.00 WHERE [Code] = 'eke' END +SET [Description] = 'Ekit', [Definition] = NULL, [SortOrder] = 1818.00 WHERE [Code] = 'eke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekp', 'Ekpeye', NULL, 181.10) END +VALUES ('ekp', 'Ekpeye', NULL, 1819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ekpeye', [Definition] = NULL, [SortOrder] = 181.10 WHERE [Code] = 'ekp' END +SET [Description] = 'Ekpeye', [Definition] = NULL, [SortOrder] = 1819.00 WHERE [Code] = 'ekp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpp', 'El Alto Zapotec', NULL, 181.20) END +VALUES ('zpp', 'El Alto Zapotec', NULL, 1820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'El Alto Zapotec', [Definition] = NULL, [SortOrder] = 181.20 WHERE [Code] = 'zpp' END +SET [Description] = 'El Alto Zapotec', [Definition] = NULL, [SortOrder] = 1820.00 WHERE [Code] = 'zpp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elh', 'El Hugeirat', NULL, 181.30) END +VALUES ('elh', 'El Hugeirat', NULL, 1821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'El Hugeirat', [Definition] = NULL, [SortOrder] = 181.30 WHERE [Code] = 'elh' END +SET [Description] = 'El Hugeirat', [Definition] = NULL, [SortOrder] = 1821.00 WHERE [Code] = 'elh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elo', 'El Molo', NULL, 181.40) END +VALUES ('elo', 'El Molo', NULL, 1822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'El Molo', [Definition] = NULL, [SortOrder] = 181.40 WHERE [Code] = 'elo' END +SET [Description] = 'El Molo', [Definition] = NULL, [SortOrder] = 1822.00 WHERE [Code] = 'elo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crn', 'El Nayar Cora', NULL, 181.50) END +VALUES ('crn', 'El Nayar Cora', NULL, 1823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'El Nayar Cora', [Definition] = NULL, [SortOrder] = 181.50 WHERE [Code] = 'crn' END +SET [Description] = 'El Nayar Cora', [Definition] = NULL, [SortOrder] = 1823.00 WHERE [Code] = 'crn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elx', 'Elamite', NULL, 181.60) END +VALUES ('elx', 'Elamite', NULL, 1824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elamite', [Definition] = NULL, [SortOrder] = 181.60 WHERE [Code] = 'elx' END +SET [Description] = 'Elamite', [Definition] = NULL, [SortOrder] = 1824.00 WHERE [Code] = 'elx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elm', 'Eleme', NULL, 181.70) END +VALUES ('elm', 'Eleme', NULL, 1825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eleme', [Definition] = NULL, [SortOrder] = 181.70 WHERE [Code] = 'elm' END +SET [Description] = 'Eleme', [Definition] = NULL, [SortOrder] = 1825.00 WHERE [Code] = 'elm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ele') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ele', 'Elepi', NULL, 181.80) END +VALUES ('ele', 'Elepi', NULL, 1826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elepi', [Definition] = NULL, [SortOrder] = 181.80 WHERE [Code] = 'ele' END +SET [Description] = 'Elepi', [Definition] = NULL, [SortOrder] = 1826.00 WHERE [Code] = 'ele' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ovd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ovd', 'Elfdalian', NULL, 181.90) END +VALUES ('ovd', 'Elfdalian', NULL, 1827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elfdalian', [Definition] = NULL, [SortOrder] = 181.90 WHERE [Code] = 'ovd' END +SET [Description] = 'Elfdalian', [Definition] = NULL, [SortOrder] = 1827.00 WHERE [Code] = 'ovd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekm', 'Elip', NULL, 182.00) END +VALUES ('ekm', 'Elip', NULL, 1828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elip', [Definition] = NULL, [SortOrder] = 182.00 WHERE [Code] = 'ekm' END +SET [Description] = 'Elip', [Definition] = NULL, [SortOrder] = 1828.00 WHERE [Code] = 'ekm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elk', 'Elkei', NULL, 182.10) END +VALUES ('elk', 'Elkei', NULL, 1829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elkei', [Definition] = NULL, [SortOrder] = 182.10 WHERE [Code] = 'elk' END +SET [Description] = 'Elkei', [Definition] = NULL, [SortOrder] = 1829.00 WHERE [Code] = 'elk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zte', 'Elotepec Zapotec', NULL, 182.20) END +VALUES ('zte', 'Elotepec Zapotec', NULL, 1830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elotepec Zapotec', [Definition] = NULL, [SortOrder] = 182.20 WHERE [Code] = 'zte' END +SET [Description] = 'Elotepec Zapotec', [Definition] = NULL, [SortOrder] = 1830.00 WHERE [Code] = 'zte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afo', 'Eloyi', NULL, 182.30) END +VALUES ('afo', 'Eloyi', NULL, 1831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eloyi', [Definition] = NULL, [SortOrder] = 182.30 WHERE [Code] = 'afo' END +SET [Description] = 'Eloyi', [Definition] = NULL, [SortOrder] = 1831.00 WHERE [Code] = 'afo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrf', 'Elseng', NULL, 182.40) END +VALUES ('mrf', 'Elseng', NULL, 1832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elseng', [Definition] = NULL, [SortOrder] = 182.40 WHERE [Code] = 'mrf' END +SET [Description] = 'Elseng', [Definition] = NULL, [SortOrder] = 1832.00 WHERE [Code] = 'mrf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'elu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('elu', 'Elu', NULL, 182.50) END +VALUES ('elu', 'Elu', NULL, 1833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elu', [Definition] = NULL, [SortOrder] = 182.50 WHERE [Code] = 'elu' END +SET [Description] = 'Elu', [Definition] = NULL, [SortOrder] = 1833.00 WHERE [Code] = 'elu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xly', 'Elymian', NULL, 182.60) END +VALUES ('xly', 'Elymian', NULL, 1834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Elymian', [Definition] = NULL, [SortOrder] = 182.60 WHERE [Code] = 'xly' END +SET [Description] = 'Elymian', [Definition] = NULL, [SortOrder] = 1834.00 WHERE [Code] = 'xly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmw', 'Emae', NULL, 182.70) END +VALUES ('mmw', 'Emae', NULL, 1835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emae', [Definition] = NULL, [SortOrder] = 182.70 WHERE [Code] = 'mmw' END +SET [Description] = 'Emae', [Definition] = NULL, [SortOrder] = 1835.00 WHERE [Code] = 'mmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ema') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ema', 'Emai-Iuleha-Ora', NULL, 182.80) END +VALUES ('ema', 'Emai-Iuleha-Ora', NULL, 1836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emai-Iuleha-Ora', [Definition] = NULL, [SortOrder] = 182.80 WHERE [Code] = 'ema' END +SET [Description] = 'Emai-Iuleha-Ora', [Definition] = NULL, [SortOrder] = 1836.00 WHERE [Code] = 'ema' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emn', 'Eman', NULL, 182.90) END +VALUES ('emn', 'Eman', NULL, 1837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eman', [Definition] = NULL, [SortOrder] = 182.90 WHERE [Code] = 'emn' END +SET [Description] = 'Eman', [Definition] = NULL, [SortOrder] = 1837.00 WHERE [Code] = 'emn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emb', 'Embaloh', NULL, 183.00) END +VALUES ('emb', 'Embaloh', NULL, 1838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Embaloh', [Definition] = NULL, [SortOrder] = 183.00 WHERE [Code] = 'emb' END +SET [Description] = 'Embaloh', [Definition] = NULL, [SortOrder] = 1838.00 WHERE [Code] = 'emb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdc', 'Emberá-Baudó', NULL, 183.10) END +VALUES ('bdc', 'Emberá-Baudó', NULL, 1839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emberá-Baudó', [Definition] = NULL, [SortOrder] = 183.10 WHERE [Code] = 'bdc' END +SET [Description] = 'Emberá-Baudó', [Definition] = NULL, [SortOrder] = 1839.00 WHERE [Code] = 'bdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cto', 'Emberá-Catío', NULL, 183.20) END +VALUES ('cto', 'Emberá-Catío', NULL, 1840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emberá-Catío', [Definition] = NULL, [SortOrder] = 183.20 WHERE [Code] = 'cto' END +SET [Description] = 'Emberá-Catío', [Definition] = NULL, [SortOrder] = 1840.00 WHERE [Code] = 'cto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmi', 'Emberá-Chamí', NULL, 183.30) END +VALUES ('cmi', 'Emberá-Chamí', NULL, 1841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emberá-Chamí', [Definition] = NULL, [SortOrder] = 183.30 WHERE [Code] = 'cmi' END +SET [Description] = 'Emberá-Chamí', [Definition] = NULL, [SortOrder] = 1841.00 WHERE [Code] = 'cmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdc', 'Emberá-Tadó', NULL, 183.40) END +VALUES ('tdc', 'Emberá-Tadó', NULL, 1842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emberá-Tadó', [Definition] = NULL, [SortOrder] = 183.40 WHERE [Code] = 'tdc' END +SET [Description] = 'Emberá-Tadó', [Definition] = NULL, [SortOrder] = 1842.00 WHERE [Code] = 'tdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebu', 'Embu', NULL, 183.50) END +VALUES ('ebu', 'Embu', NULL, 1843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Embu', [Definition] = NULL, [SortOrder] = 183.50 WHERE [Code] = 'ebu' END +SET [Description] = 'Embu', [Definition] = NULL, [SortOrder] = 1843.00 WHERE [Code] = 'ebu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eme', 'Emerillon', NULL, 183.60) END +VALUES ('eme', 'Emerillon', NULL, 1844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emerillon', [Definition] = NULL, [SortOrder] = 183.60 WHERE [Code] = 'eme' END +SET [Description] = 'Emerillon', [Definition] = NULL, [SortOrder] = 1844.00 WHERE [Code] = 'eme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'egl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('egl', 'Emilian', NULL, 183.70) END +VALUES ('egl', 'Emilian', NULL, 1845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emilian', [Definition] = NULL, [SortOrder] = 183.70 WHERE [Code] = 'egl' END +SET [Description] = 'Emilian', [Definition] = NULL, [SortOrder] = 1845.00 WHERE [Code] = 'egl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emw', 'Emplawas', NULL, 183.80) END +VALUES ('emw', 'Emplawas', NULL, 1846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emplawas', [Definition] = NULL, [SortOrder] = 183.80 WHERE [Code] = 'emw' END +SET [Description] = 'Emplawas', [Definition] = NULL, [SortOrder] = 1846.00 WHERE [Code] = 'emw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enr', 'Emumu', NULL, 183.90) END +VALUES ('enr', 'Emumu', NULL, 1847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Emumu', [Definition] = NULL, [SortOrder] = 183.90 WHERE [Code] = 'enr' END +SET [Description] = 'Emumu', [Definition] = NULL, [SortOrder] = 1847.00 WHERE [Code] = 'enr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enc', 'En', NULL, 184.00) END +VALUES ('enc', 'En', NULL, 1848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'En', [Definition] = NULL, [SortOrder] = 184.00 WHERE [Code] = 'enc' END +SET [Description] = 'En', [Definition] = NULL, [SortOrder] = 1848.00 WHERE [Code] = 'enc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unk', 'Enawené-Nawé', NULL, 184.10) END +VALUES ('unk', 'Enawené-Nawé', NULL, 1849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enawené-Nawé', [Definition] = NULL, [SortOrder] = 184.10 WHERE [Code] = 'unk' END +SET [Description] = 'Enawené-Nawé', [Definition] = NULL, [SortOrder] = 1849.00 WHERE [Code] = 'unk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'end') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('end', 'Ende', NULL, 184.20) END +VALUES ('end', 'Ende', NULL, 1850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ende', [Definition] = NULL, [SortOrder] = 184.20 WHERE [Code] = 'end' END +SET [Description] = 'Ende', [Definition] = NULL, [SortOrder] = 1850.00 WHERE [Code] = 'end' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enq', 'Enga', NULL, 184.30) END +VALUES ('enq', 'Enga', NULL, 1851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enga', [Definition] = NULL, [SortOrder] = 184.30 WHERE [Code] = 'enq' END +SET [Description] = 'Enga', [Definition] = NULL, [SortOrder] = 1851.00 WHERE [Code] = 'enq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngr', 'Engdewu', NULL, 184.40) END +VALUES ('ngr', 'Engdewu', NULL, 1852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Engdewu', [Definition] = NULL, [SortOrder] = 184.40 WHERE [Code] = 'ngr' END +SET [Description] = 'Engdewu', [Definition] = NULL, [SortOrder] = 1852.00 WHERE [Code] = 'ngr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enn', 'Engenni', NULL, 184.50) END +VALUES ('enn', 'Engenni', NULL, 1853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Engenni', [Definition] = NULL, [SortOrder] = 184.50 WHERE [Code] = 'enn' END +SET [Description] = 'Engenni', [Definition] = NULL, [SortOrder] = 1853.00 WHERE [Code] = 'enn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eno', 'Enggano', NULL, 184.60) END +VALUES ('eno', 'Enggano', NULL, 1854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enggano', [Definition] = NULL, [SortOrder] = 184.60 WHERE [Code] = 'eno' END +SET [Description] = 'Enggano', [Definition] = NULL, [SortOrder] = 1854.00 WHERE [Code] = 'eno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eng', 'English', NULL, 184.70) END +VALUES ('eng', 'English', NULL, 1855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'English', [Definition] = NULL, [SortOrder] = 184.70 WHERE [Code] = 'eng' END +SET [Description] = 'English', [Definition] = NULL, [SortOrder] = 1855.00 WHERE [Code] = 'eng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enl', 'Enlhet', NULL, 184.80) END +VALUES ('enl', 'Enlhet', NULL, 1856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enlhet', [Definition] = NULL, [SortOrder] = 184.80 WHERE [Code] = 'enl' END +SET [Description] = 'Enlhet', [Definition] = NULL, [SortOrder] = 1856.00 WHERE [Code] = 'enl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptt', 'Enrekang', NULL, 184.90) END +VALUES ('ptt', 'Enrekang', NULL, 1857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enrekang', [Definition] = NULL, [SortOrder] = 184.90 WHERE [Code] = 'ptt' END +SET [Description] = 'Enrekang', [Definition] = NULL, [SortOrder] = 1857.00 WHERE [Code] = 'ptt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enu', 'Enu', NULL, 185.00) END +VALUES ('enu', 'Enu', NULL, 1858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enu', [Definition] = NULL, [SortOrder] = 185.00 WHERE [Code] = 'enu' END +SET [Description] = 'Enu', [Definition] = NULL, [SortOrder] = 1858.00 WHERE [Code] = 'enu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enw', 'Enwan (Akwa Ibom State)', NULL, 185.10) END +VALUES ('enw', 'Enwan (Akwa Ibom State)', NULL, 1859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enwan (Akwa Ibom State)', [Definition] = NULL, [SortOrder] = 185.10 WHERE [Code] = 'enw' END +SET [Description] = 'Enwan (Akwa Ibom State)', [Definition] = NULL, [SortOrder] = 1859.00 WHERE [Code] = 'enw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'env') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('env', 'Enwan (Edo State)', NULL, 185.20) END +VALUES ('env', 'Enwan (Edo State)', NULL, 1860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enwan (Edo State)', [Definition] = NULL, [SortOrder] = 185.20 WHERE [Code] = 'env' END +SET [Description] = 'Enwan (Edo State)', [Definition] = NULL, [SortOrder] = 1860.00 WHERE [Code] = 'env' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enx', 'Enxet', NULL, 185.30) END +VALUES ('enx', 'Enxet', NULL, 1861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enxet', [Definition] = NULL, [SortOrder] = 185.30 WHERE [Code] = 'enx' END +SET [Description] = 'Enxet', [Definition] = NULL, [SortOrder] = 1861.00 WHERE [Code] = 'enx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gey', 'Enya', NULL, 185.40) END +VALUES ('gey', 'Enya', NULL, 1862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Enya', [Definition] = NULL, [SortOrder] = 185.40 WHERE [Code] = 'gey' END +SET [Description] = 'Enya', [Definition] = NULL, [SortOrder] = 1862.00 WHERE [Code] = 'gey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sja', 'Epena', NULL, 185.50) END +VALUES ('sja', 'Epena', NULL, 1863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Epena', [Definition] = NULL, [SortOrder] = 185.50 WHERE [Code] = 'sja' END +SET [Description] = 'Epena', [Definition] = NULL, [SortOrder] = 1863.00 WHERE [Code] = 'sja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xep', 'Epi-Olmec', NULL, 185.60) END +VALUES ('xep', 'Epi-Olmec', NULL, 1864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Epi-Olmec', [Definition] = NULL, [SortOrder] = 185.60 WHERE [Code] = 'xep' END +SET [Description] = 'Epi-Olmec', [Definition] = NULL, [SortOrder] = 1864.00 WHERE [Code] = 'xep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'epi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('epi', 'Epie', NULL, 185.70) END +VALUES ('epi', 'Epie', NULL, 1865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Epie', [Definition] = NULL, [SortOrder] = 185.70 WHERE [Code] = 'epi' END +SET [Description] = 'Epie', [Definition] = NULL, [SortOrder] = 1865.00 WHERE [Code] = 'epi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emy', 'Epigraphic Mayan', NULL, 185.80) END +VALUES ('emy', 'Epigraphic Mayan', NULL, 1866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Epigraphic Mayan', [Definition] = NULL, [SortOrder] = 185.80 WHERE [Code] = 'emy' END +SET [Description] = 'Epigraphic Mayan', [Definition] = NULL, [SortOrder] = 1866.00 WHERE [Code] = 'emy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'era') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('era', 'Eravallan', NULL, 185.90) END +VALUES ('era', 'Eravallan', NULL, 1867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eravallan', [Definition] = NULL, [SortOrder] = 185.90 WHERE [Code] = 'era' END +SET [Description] = 'Eravallan', [Definition] = NULL, [SortOrder] = 1867.00 WHERE [Code] = 'era' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjy', 'Erave', NULL, 186.00) END +VALUES ('kjy', 'Erave', NULL, 1868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erave', [Definition] = NULL, [SortOrder] = 186.00 WHERE [Code] = 'kjy' END +SET [Description] = 'Erave', [Definition] = NULL, [SortOrder] = 1868.00 WHERE [Code] = 'kjy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twp', 'Ere', NULL, 186.10) END +VALUES ('twp', 'Ere', NULL, 1869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ere', [Definition] = NULL, [SortOrder] = 186.10 WHERE [Code] = 'twp' END +SET [Description] = 'Ere', [Definition] = NULL, [SortOrder] = 1869.00 WHERE [Code] = 'twp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ert') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ert', 'Eritai', NULL, 186.20) END +VALUES ('ert', 'Eritai', NULL, 1870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eritai', [Definition] = NULL, [SortOrder] = 186.20 WHERE [Code] = 'ert' END +SET [Description] = 'Eritai', [Definition] = NULL, [SortOrder] = 1870.00 WHERE [Code] = 'ert' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'erw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('erw', 'Erokwanas', NULL, 186.30) END +VALUES ('erw', 'Erokwanas', NULL, 1871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erokwanas', [Definition] = NULL, [SortOrder] = 186.30 WHERE [Code] = 'erw' END +SET [Description] = 'Erokwanas', [Definition] = NULL, [SortOrder] = 1871.00 WHERE [Code] = 'erw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'err') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('err', 'Erre', NULL, 186.40) END +VALUES ('err', 'Erre', NULL, 1872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erre', [Definition] = NULL, [SortOrder] = 186.40 WHERE [Code] = 'err' END +SET [Description] = 'Erre', [Definition] = NULL, [SortOrder] = 1872.00 WHERE [Code] = 'err' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emx', 'Erromintxela', NULL, 186.50) END +VALUES ('emx', 'Erromintxela', NULL, 1873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erromintxela', [Definition] = NULL, [SortOrder] = 186.50 WHERE [Code] = 'emx' END +SET [Description] = 'Erromintxela', [Definition] = NULL, [SortOrder] = 1873.00 WHERE [Code] = 'emx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ers') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ers', 'Ersu', NULL, 186.60) END +VALUES ('ers', 'Ersu', NULL, 1874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ersu', [Definition] = NULL, [SortOrder] = 186.60 WHERE [Code] = 'ers' END +SET [Description] = 'Ersu', [Definition] = NULL, [SortOrder] = 1874.00 WHERE [Code] = 'ers' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'erh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('erh', 'Eruwa', NULL, 186.70) END +VALUES ('erh', 'Eruwa', NULL, 1875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eruwa', [Definition] = NULL, [SortOrder] = 186.70 WHERE [Code] = 'erh' END +SET [Description] = 'Eruwa', [Definition] = NULL, [SortOrder] = 1875.00 WHERE [Code] = 'erh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myv', 'Erzya', NULL, 186.80) END +VALUES ('myv', 'Erzya', NULL, 1876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Erzya', [Definition] = NULL, [SortOrder] = 186.80 WHERE [Code] = 'myv' END +SET [Description] = 'Erzya', [Definition] = NULL, [SortOrder] = 1876.00 WHERE [Code] = 'myv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ish') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ish', 'Esan', NULL, 186.90) END +VALUES ('ish', 'Esan', NULL, 1877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esan', [Definition] = NULL, [SortOrder] = 186.90 WHERE [Code] = 'ish' END +SET [Description] = 'Esan', [Definition] = NULL, [SortOrder] = 1877.00 WHERE [Code] = 'ish' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcq', 'Ese', NULL, 187.00) END +VALUES ('mcq', 'Ese', NULL, 1878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ese', [Definition] = NULL, [SortOrder] = 187.00 WHERE [Code] = 'mcq' END +SET [Description] = 'Ese', [Definition] = NULL, [SortOrder] = 1878.00 WHERE [Code] = 'mcq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ese') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ese', 'Ese Ejja', NULL, 187.10) END +VALUES ('ese', 'Ese Ejja', NULL, 1879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ese Ejja', [Definition] = NULL, [SortOrder] = 187.10 WHERE [Code] = 'ese' END +SET [Description] = 'Ese Ejja', [Definition] = NULL, [SortOrder] = 1879.00 WHERE [Code] = 'ese' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esh', 'Eshtehardi', NULL, 187.20) END +VALUES ('esh', 'Eshtehardi', NULL, 1880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eshtehardi', [Definition] = NULL, [SortOrder] = 187.20 WHERE [Code] = 'esh' END +SET [Description] = 'Eshtehardi', [Definition] = NULL, [SortOrder] = 1880.00 WHERE [Code] = 'esh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ags') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ags', 'Esimbi', NULL, 187.30) END +VALUES ('ags', 'Esimbi', NULL, 1881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esimbi', [Definition] = NULL, [SortOrder] = 187.30 WHERE [Code] = 'ags' END +SET [Description] = 'Esimbi', [Definition] = NULL, [SortOrder] = 1881.00 WHERE [Code] = 'ags' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esy', 'Eskayan', NULL, 187.40) END +VALUES ('esy', 'Eskayan', NULL, 1882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eskayan', [Definition] = NULL, [SortOrder] = 187.40 WHERE [Code] = 'esy' END +SET [Description] = 'Eskayan', [Definition] = NULL, [SortOrder] = 1882.00 WHERE [Code] = 'esy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'epo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('epo', 'Esperanto', NULL, 187.50) END +VALUES ('epo', 'Esperanto', NULL, 1883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esperanto', [Definition] = NULL, [SortOrder] = 187.50 WHERE [Code] = 'epo' END +SET [Description] = 'Esperanto', [Definition] = NULL, [SortOrder] = 1883.00 WHERE [Code] = 'epo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esq', 'Esselen', NULL, 187.60) END +VALUES ('esq', 'Esselen', NULL, 1884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esselen', [Definition] = NULL, [SortOrder] = 187.60 WHERE [Code] = 'esq' END +SET [Description] = 'Esselen', [Definition] = NULL, [SortOrder] = 1884.00 WHERE [Code] = 'esq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ots') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ots', 'Estado de México Otomi', NULL, 187.70) END +VALUES ('ots', 'Estado de México Otomi', NULL, 1885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Estado de México Otomi', [Definition] = NULL, [SortOrder] = 187.70 WHERE [Code] = 'ots' END +SET [Description] = 'Estado de México Otomi', [Definition] = NULL, [SortOrder] = 1885.00 WHERE [Code] = 'ots' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'est') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('est', 'Estonian', NULL, 187.80) END +VALUES ('est', 'Estonian', NULL, 1886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Estonian', [Definition] = NULL, [SortOrder] = 187.80 WHERE [Code] = 'est' END +SET [Description] = 'Estonian', [Definition] = NULL, [SortOrder] = 1886.00 WHERE [Code] = 'est' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eso', 'Estonian Sign Language', NULL, 187.90) END +VALUES ('eso', 'Estonian Sign Language', NULL, 1887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Estonian Sign Language', [Definition] = NULL, [SortOrder] = 187.90 WHERE [Code] = 'eso' END +SET [Description] = 'Estonian Sign Language', [Definition] = NULL, [SortOrder] = 1887.00 WHERE [Code] = 'eso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esm', 'Esuma', NULL, 188.00) END +VALUES ('esm', 'Esuma', NULL, 1888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Esuma', [Definition] = NULL, [SortOrder] = 188.00 WHERE [Code] = 'esm' END +SET [Description] = 'Esuma', [Definition] = NULL, [SortOrder] = 1888.00 WHERE [Code] = 'esm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etc', 'Etchemin', NULL, 188.10) END +VALUES ('etc', 'Etchemin', NULL, 1889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etchemin', [Definition] = NULL, [SortOrder] = 188.10 WHERE [Code] = 'etc' END +SET [Description] = 'Etchemin', [Definition] = NULL, [SortOrder] = 1889.00 WHERE [Code] = 'etc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etb', 'Etebi', NULL, 188.20) END +VALUES ('etb', 'Etebi', NULL, 1890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etebi', [Definition] = NULL, [SortOrder] = 188.20 WHERE [Code] = 'etb' END +SET [Description] = 'Etebi', [Definition] = NULL, [SortOrder] = 1890.00 WHERE [Code] = 'etb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etx', 'Eten', NULL, 188.30) END +VALUES ('etx', 'Eten', NULL, 1891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eten', [Definition] = NULL, [SortOrder] = 188.30 WHERE [Code] = 'etx' END +SET [Description] = 'Eten', [Definition] = NULL, [SortOrder] = 1891.00 WHERE [Code] = 'etx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ecr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ecr', 'Eteocretan', NULL, 188.40) END +VALUES ('ecr', 'Eteocretan', NULL, 1892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eteocretan', [Definition] = NULL, [SortOrder] = 188.40 WHERE [Code] = 'ecr' END +SET [Description] = 'Eteocretan', [Definition] = NULL, [SortOrder] = 1892.00 WHERE [Code] = 'ecr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ecy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ecy', 'Eteocypriot', NULL, 188.50) END +VALUES ('ecy', 'Eteocypriot', NULL, 1893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eteocypriot', [Definition] = NULL, [SortOrder] = 188.50 WHERE [Code] = 'ecy' END +SET [Description] = 'Eteocypriot', [Definition] = NULL, [SortOrder] = 1893.00 WHERE [Code] = 'ecy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eth', 'Ethiopian Sign Language', NULL, 188.60) END +VALUES ('eth', 'Ethiopian Sign Language', NULL, 1894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ethiopian Sign Language', [Definition] = NULL, [SortOrder] = 188.60 WHERE [Code] = 'eth' END +SET [Description] = 'Ethiopian Sign Language', [Definition] = NULL, [SortOrder] = 1894.00 WHERE [Code] = 'eth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ich') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ich', 'Etkywan', NULL, 188.70) END +VALUES ('ich', 'Etkywan', NULL, 1895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etkywan', [Definition] = NULL, [SortOrder] = 188.70 WHERE [Code] = 'ich' END +SET [Description] = 'Etkywan', [Definition] = NULL, [SortOrder] = 1895.00 WHERE [Code] = 'ich' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eto', 'Eton (Cameroon)', NULL, 188.80) END +VALUES ('eto', 'Eton (Cameroon)', NULL, 1896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eton (Cameroon)', [Definition] = NULL, [SortOrder] = 188.80 WHERE [Code] = 'eto' END +SET [Description] = 'Eton (Cameroon)', [Definition] = NULL, [SortOrder] = 1896.00 WHERE [Code] = 'eto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etn', 'Eton (Vanuatu)', NULL, 188.90) END +VALUES ('etn', 'Eton (Vanuatu)', NULL, 1897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eton (Vanuatu)', [Definition] = NULL, [SortOrder] = 188.90 WHERE [Code] = 'etn' END +SET [Description] = 'Eton (Vanuatu)', [Definition] = NULL, [SortOrder] = 1897.00 WHERE [Code] = 'etn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ett') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ett', 'Etruscan', NULL, 189.00) END +VALUES ('ett', 'Etruscan', NULL, 1898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etruscan', [Definition] = NULL, [SortOrder] = 189.00 WHERE [Code] = 'ett' END +SET [Description] = 'Etruscan', [Definition] = NULL, [SortOrder] = 1898.00 WHERE [Code] = 'ett' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'utr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('utr', 'Etulo', NULL, 189.10) END +VALUES ('utr', 'Etulo', NULL, 1899.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Etulo', [Definition] = NULL, [SortOrder] = 1899.00 WHERE [Code] = 'utr' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('eud', 'Eudeve', NULL, 1900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Etulo', [Definition] = NULL, [SortOrder] = 189.10 WHERE [Code] = 'utr' END +SET [Description] = 'Eudeve', [Definition] = NULL, [SortOrder] = 1900.00 WHERE [Code] = 'eud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzz', 'Evant', NULL, 189.20) END +VALUES ('bzz', 'Evant', NULL, 1901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Evant', [Definition] = NULL, [SortOrder] = 189.20 WHERE [Code] = 'bzz' END +SET [Description] = 'Evant', [Definition] = NULL, [SortOrder] = 1901.00 WHERE [Code] = 'bzz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eve', 'Even', NULL, 189.30) END +VALUES ('eve', 'Even', NULL, 1902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Even', [Definition] = NULL, [SortOrder] = 189.30 WHERE [Code] = 'eve' END +SET [Description] = 'Even', [Definition] = NULL, [SortOrder] = 1902.00 WHERE [Code] = 'eve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'evn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('evn', 'Evenki', NULL, 189.40) END +VALUES ('evn', 'Evenki', NULL, 1903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Evenki', [Definition] = NULL, [SortOrder] = 189.40 WHERE [Code] = 'evn' END +SET [Description] = 'Evenki', [Definition] = NULL, [SortOrder] = 1903.00 WHERE [Code] = 'evn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gev', 'Eviya', NULL, 189.50) END +VALUES ('gev', 'Eviya', NULL, 1904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eviya', [Definition] = NULL, [SortOrder] = 189.50 WHERE [Code] = 'gev' END +SET [Description] = 'Eviya', [Definition] = NULL, [SortOrder] = 1904.00 WHERE [Code] = 'gev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nou', 'Ewage-Notu', NULL, 189.60) END +VALUES ('nou', 'Ewage-Notu', NULL, 1905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ewage-Notu', [Definition] = NULL, [SortOrder] = 189.60 WHERE [Code] = 'nou' END +SET [Description] = 'Ewage-Notu', [Definition] = NULL, [SortOrder] = 1905.00 WHERE [Code] = 'nou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ewe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ewe', 'Ewe', NULL, 189.70) END +VALUES ('ewe', 'Ewe', NULL, 1906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ewe', [Definition] = NULL, [SortOrder] = 189.70 WHERE [Code] = 'ewe' END +SET [Description] = 'Ewe', [Definition] = NULL, [SortOrder] = 1906.00 WHERE [Code] = 'ewe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ewo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ewo', 'Ewondo', NULL, 189.80) END +VALUES ('ewo', 'Ewondo', NULL, 1907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ewondo', [Definition] = NULL, [SortOrder] = 189.80 WHERE [Code] = 'ewo' END +SET [Description] = 'Ewondo', [Definition] = NULL, [SortOrder] = 1907.00 WHERE [Code] = 'ewo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ext') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ext', 'Extremaduran', NULL, 189.90) END +VALUES ('ext', 'Extremaduran', NULL, 1908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Extremaduran', [Definition] = NULL, [SortOrder] = 189.90 WHERE [Code] = 'ext' END +SET [Description] = 'Extremaduran', [Definition] = NULL, [SortOrder] = 1908.00 WHERE [Code] = 'ext' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eya', 'Eyak', NULL, 190.00) END +VALUES ('eya', 'Eyak', NULL, 1909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Eyak', [Definition] = NULL, [SortOrder] = 190.00 WHERE [Code] = 'eya' END +SET [Description] = 'Eyak', [Definition] = NULL, [SortOrder] = 1909.00 WHERE [Code] = 'eya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eza', 'Ezaa', NULL, 190.10) END +VALUES ('eza', 'Ezaa', NULL, 1910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ezaa', [Definition] = NULL, [SortOrder] = 190.10 WHERE [Code] = 'eza' END +SET [Description] = 'Ezaa', [Definition] = NULL, [SortOrder] = 1910.00 WHERE [Code] = 'eza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fab', 'Fa D''ambu', NULL, 190.20) END +VALUES ('fab', 'Fa D''ambu', NULL, 1911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fa D''ambu', [Definition] = NULL, [SortOrder] = 190.20 WHERE [Code] = 'fab' END +SET [Description] = 'Fa D''ambu', [Definition] = NULL, [SortOrder] = 1911.00 WHERE [Code] = 'fab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'faf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('faf', 'Fagani', NULL, 190.30) END +VALUES ('faf', 'Fagani', NULL, 1912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fagani', [Definition] = NULL, [SortOrder] = 190.30 WHERE [Code] = 'faf' END +SET [Description] = 'Fagani', [Definition] = NULL, [SortOrder] = 1912.00 WHERE [Code] = 'faf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fif', 'Faifi', NULL, 190.40) END +VALUES ('fif', 'Faifi', NULL, 1913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faifi', [Definition] = NULL, [SortOrder] = 190.40 WHERE [Code] = 'fif' END +SET [Description] = 'Faifi', [Definition] = NULL, [SortOrder] = 1913.00 WHERE [Code] = 'fif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azt', 'Faire Atta', NULL, 190.50) END +VALUES ('azt', 'Faire Atta', NULL, 1914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faire Atta', [Definition] = NULL, [SortOrder] = 190.50 WHERE [Code] = 'azt' END +SET [Description] = 'Faire Atta', [Definition] = NULL, [SortOrder] = 1914.00 WHERE [Code] = 'azt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'faj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('faj', 'Faita', NULL, 190.60) END +VALUES ('faj', 'Faita', NULL, 1915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faita', [Definition] = NULL, [SortOrder] = 190.60 WHERE [Code] = 'faj' END +SET [Description] = 'Faita', [Definition] = NULL, [SortOrder] = 1915.00 WHERE [Code] = 'faj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fai', 'Faiwol', NULL, 190.70) END +VALUES ('fai', 'Faiwol', NULL, 1916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faiwol', [Definition] = NULL, [SortOrder] = 190.70 WHERE [Code] = 'fai' END +SET [Description] = 'Faiwol', [Definition] = NULL, [SortOrder] = 1916.00 WHERE [Code] = 'fai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fax', 'Fala', NULL, 190.80) END +VALUES ('fax', 'Fala', NULL, 1917.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fala', [Definition] = NULL, [SortOrder] = 190.80 WHERE [Code] = 'fax' END +SET [Description] = 'Fala', [Definition] = NULL, [SortOrder] = 1917.00 WHERE [Code] = 'fax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cfm', 'Falam Chin', NULL, 190.90) END +VALUES ('cfm', 'Falam Chin', NULL, 1918.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Falam Chin', [Definition] = NULL, [SortOrder] = 190.90 WHERE [Code] = 'cfm' END +SET [Description] = 'Falam Chin', [Definition] = NULL, [SortOrder] = 1918.00 WHERE [Code] = 'cfm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fli', 'Fali', NULL, 191.00) END +VALUES ('fli', 'Fali', NULL, 1919.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fali', [Definition] = NULL, [SortOrder] = 191.00 WHERE [Code] = 'fli' END +SET [Description] = 'Fali', [Definition] = NULL, [SortOrder] = 1919.00 WHERE [Code] = 'fli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xfa', 'Faliscan', NULL, 191.10) END +VALUES ('xfa', 'Faliscan', NULL, 1920.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faliscan', [Definition] = NULL, [SortOrder] = 191.10 WHERE [Code] = 'xfa' END +SET [Description] = 'Faliscan', [Definition] = NULL, [SortOrder] = 1920.00 WHERE [Code] = 'xfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fam', 'Fam', NULL, 191.20) END +VALUES ('fam', 'Fam', NULL, 1921.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fam', [Definition] = NULL, [SortOrder] = 191.20 WHERE [Code] = 'fam' END +SET [Description] = 'Fam', [Definition] = NULL, [SortOrder] = 1921.00 WHERE [Code] = 'fam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fng', 'Fanagalo', NULL, 191.30) END +VALUES ('fng', 'Fanagalo', NULL, 1922.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fanagalo', [Definition] = NULL, [SortOrder] = 191.30 WHERE [Code] = 'fng' END +SET [Description] = 'Fanagalo', [Definition] = NULL, [SortOrder] = 1922.00 WHERE [Code] = 'fng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjp', 'Fanamaket', NULL, 191.40) END +VALUES ('bjp', 'Fanamaket', NULL, 1923.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fanamaket', [Definition] = NULL, [SortOrder] = 191.40 WHERE [Code] = 'bjp' END +SET [Description] = 'Fanamaket', [Definition] = NULL, [SortOrder] = 1923.00 WHERE [Code] = 'bjp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fnb', 'Fanbak', NULL, 191.50) END +VALUES ('fnb', 'Fanbak', NULL, 1924.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fanbak', [Definition] = NULL, [SortOrder] = 191.50 WHERE [Code] = 'fnb' END +SET [Description] = 'Fanbak', [Definition] = NULL, [SortOrder] = 1924.00 WHERE [Code] = 'fnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fak', 'Fang (Cameroon)', NULL, 191.60) END +VALUES ('fak', 'Fang (Cameroon)', NULL, 1925.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fang (Cameroon)', [Definition] = NULL, [SortOrder] = 191.60 WHERE [Code] = 'fak' END +SET [Description] = 'Fang (Cameroon)', [Definition] = NULL, [SortOrder] = 1925.00 WHERE [Code] = 'fak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fan', 'Fang (Equatorial Guinea)', NULL, 191.70) END +VALUES ('fan', 'Fang (Equatorial Guinea)', NULL, 1926.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fang (Equatorial Guinea)', [Definition] = NULL, [SortOrder] = 191.70 WHERE [Code] = 'fan' END +SET [Description] = 'Fang (Equatorial Guinea)', [Definition] = NULL, [SortOrder] = 1926.00 WHERE [Code] = 'fan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fni', 'Fania', NULL, 191.80) END +VALUES ('fni', 'Fania', NULL, 1927.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fania', [Definition] = NULL, [SortOrder] = 191.80 WHERE [Code] = 'fni' END +SET [Description] = 'Fania', [Definition] = NULL, [SortOrder] = 1927.00 WHERE [Code] = 'fni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fat', 'Fanti', NULL, 191.90) END +VALUES ('fat', 'Fanti', NULL, 1928.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fanti', [Definition] = NULL, [SortOrder] = 191.90 WHERE [Code] = 'fat' END +SET [Description] = 'Fanti', [Definition] = NULL, [SortOrder] = 1928.00 WHERE [Code] = 'fat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fmu', 'Far Western Muria', NULL, 192.00) END +VALUES ('fmu', 'Far Western Muria', NULL, 1929.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Far Western Muria', [Definition] = NULL, [SortOrder] = 192.00 WHERE [Code] = 'fmu' END +SET [Description] = 'Far Western Muria', [Definition] = NULL, [SortOrder] = 1929.00 WHERE [Code] = 'fmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gur', 'Farefare', NULL, 192.10) END +VALUES ('gur', 'Farefare', NULL, 1930.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Farefare', [Definition] = NULL, [SortOrder] = 192.10 WHERE [Code] = 'gur' END +SET [Description] = 'Farefare', [Definition] = NULL, [SortOrder] = 1930.00 WHERE [Code] = 'gur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fao', 'Faroese', NULL, 192.20) END +VALUES ('fao', 'Faroese', NULL, 1931.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Faroese', [Definition] = NULL, [SortOrder] = 192.20 WHERE [Code] = 'fao' END +SET [Description] = 'Faroese', [Definition] = NULL, [SortOrder] = 1931.00 WHERE [Code] = 'fao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fqs', 'Fas', NULL, 192.30) END +VALUES ('fqs', 'Fas', NULL, 1932.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fas', [Definition] = NULL, [SortOrder] = 192.30 WHERE [Code] = 'fqs' END +SET [Description] = 'Fas', [Definition] = NULL, [SortOrder] = 1932.00 WHERE [Code] = 'fqs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'faa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('faa', 'Fasu', NULL, 192.40) END +VALUES ('faa', 'Fasu', NULL, 1933.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fasu', [Definition] = NULL, [SortOrder] = 192.40 WHERE [Code] = 'faa' END +SET [Description] = 'Fasu', [Definition] = NULL, [SortOrder] = 1933.00 WHERE [Code] = 'faa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'far') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('far', 'Fataleka', NULL, 192.50) END +VALUES ('far', 'Fataleka', NULL, 1934.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fataleka', [Definition] = NULL, [SortOrder] = 192.50 WHERE [Code] = 'far' END +SET [Description] = 'Fataleka', [Definition] = NULL, [SortOrder] = 1934.00 WHERE [Code] = 'far' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddg', 'Fataluku', NULL, 192.60) END +VALUES ('ddg', 'Fataluku', NULL, 1935.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fataluku', [Definition] = NULL, [SortOrder] = 192.60 WHERE [Code] = 'ddg' END +SET [Description] = 'Fataluku', [Definition] = NULL, [SortOrder] = 1935.00 WHERE [Code] = 'ddg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fau', 'Fayu', NULL, 192.70) END +VALUES ('fau', 'Fayu', NULL, 1936.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fayu', [Definition] = NULL, [SortOrder] = 192.70 WHERE [Code] = 'fau' END +SET [Description] = 'Fayu', [Definition] = NULL, [SortOrder] = 1936.00 WHERE [Code] = 'fau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fmp', 'Fe''fe''', NULL, 192.80) END +VALUES ('fmp', 'Fe''fe''', NULL, 1937.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fe''fe''', [Definition] = NULL, [SortOrder] = 192.80 WHERE [Code] = 'fmp' END +SET [Description] = 'Fe''fe''', [Definition] = NULL, [SortOrder] = 1937.00 WHERE [Code] = 'fmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agl', 'Fembe', NULL, 192.90) END +VALUES ('agl', 'Fembe', NULL, 1938.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fembe', [Definition] = NULL, [SortOrder] = 192.90 WHERE [Code] = 'agl' END +SET [Description] = 'Fembe', [Definition] = NULL, [SortOrder] = 1938.00 WHERE [Code] = 'agl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fpe', 'Fernando Po Creole English', NULL, 193.00) END +VALUES ('fpe', 'Fernando Po Creole English', NULL, 1939.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fernando Po Creole English', [Definition] = NULL, [SortOrder] = 193.00 WHERE [Code] = 'fpe' END +SET [Description] = 'Fernando Po Creole English', [Definition] = NULL, [SortOrder] = 1939.00 WHERE [Code] = 'fpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fer', 'Feroge', NULL, 193.10) END +VALUES ('fer', 'Feroge', NULL, 1940.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Feroge', [Definition] = NULL, [SortOrder] = 193.10 WHERE [Code] = 'fer' END +SET [Description] = 'Feroge', [Definition] = NULL, [SortOrder] = 1940.00 WHERE [Code] = 'fer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hif', 'Fiji Hindi', NULL, 193.20) END +VALUES ('hif', 'Fiji Hindi', NULL, 1941.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fiji Hindi', [Definition] = NULL, [SortOrder] = 193.20 WHERE [Code] = 'hif' END +SET [Description] = 'Fiji Hindi', [Definition] = NULL, [SortOrder] = 1941.00 WHERE [Code] = 'hif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fij', 'Fijian', NULL, 193.30) END +VALUES ('fij', 'Fijian', NULL, 1942.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fijian', [Definition] = NULL, [SortOrder] = 193.30 WHERE [Code] = 'fij' END +SET [Description] = 'Fijian', [Definition] = NULL, [SortOrder] = 1942.00 WHERE [Code] = 'fij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fil', 'Filipino', NULL, 193.40) END +VALUES ('fil', 'Filipino', NULL, 1943.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Filipino', [Definition] = NULL, [SortOrder] = 193.40 WHERE [Code] = 'fil' END +SET [Description] = 'Filipino', [Definition] = NULL, [SortOrder] = 1943.00 WHERE [Code] = 'fil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlp', 'Filomena Mata-Coahuitlán Totonac', NULL, 193.50) END +VALUES ('tlp', 'Filomena Mata-Coahuitlán Totonac', NULL, 1944.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Filomena Mata-Coahuitlán Totonac', [Definition] = NULL, [SortOrder] = 193.50 WHERE [Code] = 'tlp' END +SET [Description] = 'Filomena Mata-Coahuitlán Totonac', [Definition] = NULL, [SortOrder] = 1944.00 WHERE [Code] = 'tlp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fss', 'Finland-Swedish Sign Language', NULL, 193.60) END +VALUES ('fss', 'Finland-Swedish Sign Language', NULL, 1945.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Finland-Swedish Sign Language', [Definition] = NULL, [SortOrder] = 193.60 WHERE [Code] = 'fss' END +SET [Description] = 'Finland-Swedish Sign Language', [Definition] = NULL, [SortOrder] = 1945.00 WHERE [Code] = 'fss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fin', 'Finnish', NULL, 193.70) END +VALUES ('fin', 'Finnish', NULL, 1946.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Finnish', [Definition] = NULL, [SortOrder] = 193.70 WHERE [Code] = 'fin' END +SET [Description] = 'Finnish', [Definition] = NULL, [SortOrder] = 1946.00 WHERE [Code] = 'fin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fse', 'Finnish Sign Language', NULL, 193.80) END +VALUES ('fse', 'Finnish Sign Language', NULL, 1947.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Finnish Sign Language', [Definition] = NULL, [SortOrder] = 193.80 WHERE [Code] = 'fse' END +SET [Description] = 'Finnish Sign Language', [Definition] = NULL, [SortOrder] = 1947.00 WHERE [Code] = 'fse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fag', 'Finongan', NULL, 193.90) END +VALUES ('fag', 'Finongan', NULL, 1948.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Finongan', [Definition] = NULL, [SortOrder] = 193.90 WHERE [Code] = 'fag' END +SET [Description] = 'Finongan', [Definition] = NULL, [SortOrder] = 1948.00 WHERE [Code] = 'fag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fip', 'Fipa', NULL, 194.00) END +VALUES ('fip', 'Fipa', NULL, 1949.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fipa', [Definition] = NULL, [SortOrder] = 194.00 WHERE [Code] = 'fip' END +SET [Description] = 'Fipa', [Definition] = NULL, [SortOrder] = 1949.00 WHERE [Code] = 'fip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fir', 'Firan', NULL, 194.10) END +VALUES ('fir', 'Firan', NULL, 1950.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Firan', [Definition] = NULL, [SortOrder] = 194.10 WHERE [Code] = 'fir' END +SET [Description] = 'Firan', [Definition] = NULL, [SortOrder] = 1950.00 WHERE [Code] = 'fir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fiw', 'Fiwaga', NULL, 194.20) END +VALUES ('fiw', 'Fiwaga', NULL, 1951.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fiwaga', [Definition] = NULL, [SortOrder] = 194.20 WHERE [Code] = 'fiw' END +SET [Description] = 'Fiwaga', [Definition] = NULL, [SortOrder] = 1951.00 WHERE [Code] = 'fiw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fly', 'Flaaitaal', NULL, 194.30) END +VALUES ('fly', 'Flaaitaal', NULL, 1952.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Flaaitaal', [Definition] = NULL, [SortOrder] = 194.30 WHERE [Code] = 'fly' END +SET [Description] = 'Flaaitaal', [Definition] = NULL, [SortOrder] = 1952.00 WHERE [Code] = 'fly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fln', 'Flinders Island', NULL, 194.40) END +VALUES ('fln', 'Flinders Island', NULL, 1953.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Flinders Island', [Definition] = NULL, [SortOrder] = 194.40 WHERE [Code] = 'fln' END +SET [Description] = 'Flinders Island', [Definition] = NULL, [SortOrder] = 1953.00 WHERE [Code] = 'fln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'flh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('flh', 'Foau', NULL, 194.50) END +VALUES ('flh', 'Foau', NULL, 1954.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foau', [Definition] = NULL, [SortOrder] = 194.50 WHERE [Code] = 'flh' END +SET [Description] = 'Foau', [Definition] = NULL, [SortOrder] = 1954.00 WHERE [Code] = 'flh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'foi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('foi', 'Foi', NULL, 194.60) END +VALUES ('foi', 'Foi', NULL, 1955.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foi', [Definition] = NULL, [SortOrder] = 194.60 WHERE [Code] = 'foi' END +SET [Description] = 'Foi', [Definition] = NULL, [SortOrder] = 1955.00 WHERE [Code] = 'foi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ffi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ffi', 'Foia Foia', NULL, 194.70) END +VALUES ('ffi', 'Foia Foia', NULL, 1956.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foia Foia', [Definition] = NULL, [SortOrder] = 194.70 WHERE [Code] = 'ffi' END +SET [Description] = 'Foia Foia', [Definition] = NULL, [SortOrder] = 1956.00 WHERE [Code] = 'ffi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppo', 'Folopa', NULL, 194.80) END +VALUES ('ppo', 'Folopa', NULL, 1957.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Folopa', [Definition] = NULL, [SortOrder] = 194.80 WHERE [Code] = 'ppo' END +SET [Description] = 'Folopa', [Definition] = NULL, [SortOrder] = 1957.00 WHERE [Code] = 'ppo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fom', 'Foma', NULL, 194.90) END +VALUES ('fom', 'Foma', NULL, 1958.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foma', [Definition] = NULL, [SortOrder] = 194.90 WHERE [Code] = 'fom' END +SET [Description] = 'Foma', [Definition] = NULL, [SortOrder] = 1958.00 WHERE [Code] = 'fom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fon', 'Fon', NULL, 195.00) END +VALUES ('fon', 'Fon', NULL, 1959.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fon', [Definition] = NULL, [SortOrder] = 195.00 WHERE [Code] = 'fon' END +SET [Description] = 'Fon', [Definition] = NULL, [SortOrder] = 1959.00 WHERE [Code] = 'fon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fgr', 'Fongoro', NULL, 195.10) END +VALUES ('fgr', 'Fongoro', NULL, 1960.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fongoro', [Definition] = NULL, [SortOrder] = 195.10 WHERE [Code] = 'fgr' END +SET [Description] = 'Fongoro', [Definition] = NULL, [SortOrder] = 1960.00 WHERE [Code] = 'fgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fod', 'Foodo', NULL, 195.20) END +VALUES ('fod', 'Foodo', NULL, 1961.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Foodo', [Definition] = NULL, [SortOrder] = 195.20 WHERE [Code] = 'fod' END +SET [Description] = 'Foodo', [Definition] = NULL, [SortOrder] = 1961.00 WHERE [Code] = 'fod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frq', 'Forak', NULL, 195.30) END +VALUES ('frq', 'Forak', NULL, 1962.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Forak', [Definition] = NULL, [SortOrder] = 195.30 WHERE [Code] = 'frq' END +SET [Description] = 'Forak', [Definition] = NULL, [SortOrder] = 1962.00 WHERE [Code] = 'frq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frd', 'Fordata', NULL, 195.40) END +VALUES ('frd', 'Fordata', NULL, 1963.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fordata', [Definition] = NULL, [SortOrder] = 195.40 WHERE [Code] = 'frd' END +SET [Description] = 'Fordata', [Definition] = NULL, [SortOrder] = 1963.00 WHERE [Code] = 'frd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'for') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('for', 'Fore', NULL, 195.50) END +VALUES ('for', 'Fore', NULL, 1964.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fore', [Definition] = NULL, [SortOrder] = 195.50 WHERE [Code] = 'for' END +SET [Description] = 'Fore', [Definition] = NULL, [SortOrder] = 1964.00 WHERE [Code] = 'for' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enf', 'Forest Enets', NULL, 195.60) END +VALUES ('enf', 'Forest Enets', NULL, 1965.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Forest Enets', [Definition] = NULL, [SortOrder] = 195.60 WHERE [Code] = 'enf' END +SET [Description] = 'Forest Enets', [Definition] = NULL, [SortOrder] = 1965.00 WHERE [Code] = 'enf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frt', 'Fortsenal', NULL, 195.70) END +VALUES ('frt', 'Fortsenal', NULL, 1966.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fortsenal', [Definition] = NULL, [SortOrder] = 195.70 WHERE [Code] = 'frt' END +SET [Description] = 'Fortsenal', [Definition] = NULL, [SortOrder] = 1966.00 WHERE [Code] = 'frt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zos', 'Francisco León Zoque', NULL, 195.80) END +VALUES ('zos', 'Francisco León Zoque', NULL, 1967.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Francisco León Zoque', [Definition] = NULL, [SortOrder] = 195.80 WHERE [Code] = 'zos' END +SET [Description] = 'Francisco León Zoque', [Definition] = NULL, [SortOrder] = 1967.00 WHERE [Code] = 'zos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frk', 'Frankish', NULL, 195.90) END +VALUES ('frk', 'Frankish', NULL, 1968.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Frankish', [Definition] = NULL, [SortOrder] = 195.90 WHERE [Code] = 'frk' END +SET [Description] = 'Frankish', [Definition] = NULL, [SortOrder] = 1968.00 WHERE [Code] = 'frk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fra', 'French', NULL, 196.00) END +VALUES ('fra', 'French', NULL, 1969.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'French', [Definition] = NULL, [SortOrder] = 196.00 WHERE [Code] = 'fra' END +SET [Description] = 'French', [Definition] = NULL, [SortOrder] = 1969.00 WHERE [Code] = 'fra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fsl', 'French Sign Language', NULL, 196.10) END +VALUES ('fsl', 'French Sign Language', NULL, 1970.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'French Sign Language', [Definition] = NULL, [SortOrder] = 196.10 WHERE [Code] = 'fsl' END +SET [Description] = 'French Sign Language', [Definition] = NULL, [SortOrder] = 1970.00 WHERE [Code] = 'fsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fur', 'Friulian', NULL, 196.20) END +VALUES ('fur', 'Friulian', NULL, 1971.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Friulian', [Definition] = NULL, [SortOrder] = 196.20 WHERE [Code] = 'fur' END +SET [Description] = 'Friulian', [Definition] = NULL, [SortOrder] = 1971.00 WHERE [Code] = 'fur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ful') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ful', 'Fulah', NULL, 196.30) END +VALUES ('ful', 'Fulah', NULL, 1972.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fulah', [Definition] = NULL, [SortOrder] = 196.30 WHERE [Code] = 'ful' END +SET [Description] = 'Fulah', [Definition] = NULL, [SortOrder] = 1972.00 WHERE [Code] = 'ful' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'flr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('flr', 'Fuliiru', NULL, 196.40) END +VALUES ('flr', 'Fuliiru', NULL, 1973.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fuliiru', [Definition] = NULL, [SortOrder] = 196.40 WHERE [Code] = 'flr' END +SET [Description] = 'Fuliiru', [Definition] = NULL, [SortOrder] = 1973.00 WHERE [Code] = 'flr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fun', 'Fulniô', NULL, 196.50) END +VALUES ('fun', 'Fulniô', NULL, 1974.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fulniô', [Definition] = NULL, [SortOrder] = 196.50 WHERE [Code] = 'fun' END +SET [Description] = 'Fulniô', [Definition] = NULL, [SortOrder] = 1974.00 WHERE [Code] = 'fun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fum', 'Fum', NULL, 196.60) END +VALUES ('fum', 'Fum', NULL, 1975.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fum', [Definition] = NULL, [SortOrder] = 196.60 WHERE [Code] = 'fum' END +SET [Description] = 'Fum', [Definition] = NULL, [SortOrder] = 1975.00 WHERE [Code] = 'fum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ula') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ula', 'Fungwa', NULL, 196.70) END +VALUES ('ula', 'Fungwa', NULL, 1976.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fungwa', [Definition] = NULL, [SortOrder] = 196.70 WHERE [Code] = 'ula' END +SET [Description] = 'Fungwa', [Definition] = NULL, [SortOrder] = 1976.00 WHERE [Code] = 'ula' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fvr', 'Fur', NULL, 196.80) END +VALUES ('fvr', 'Fur', NULL, 1977.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fur', [Definition] = NULL, [SortOrder] = 196.80 WHERE [Code] = 'fvr' END +SET [Description] = 'Fur', [Definition] = NULL, [SortOrder] = 1977.00 WHERE [Code] = 'fvr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuu', 'Furu', NULL, 196.90) END +VALUES ('fuu', 'Furu', NULL, 1978.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Furu', [Definition] = NULL, [SortOrder] = 196.90 WHERE [Code] = 'fuu' END +SET [Description] = 'Furu', [Definition] = NULL, [SortOrder] = 1978.00 WHERE [Code] = 'fuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fut', 'Futuna-Aniwa', NULL, 197.00) END +VALUES ('fut', 'Futuna-Aniwa', NULL, 1979.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Futuna-Aniwa', [Definition] = NULL, [SortOrder] = 197.00 WHERE [Code] = 'fut' END +SET [Description] = 'Futuna-Aniwa', [Definition] = NULL, [SortOrder] = 1979.00 WHERE [Code] = 'fut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuy', 'Fuyug', NULL, 197.10) END +VALUES ('fuy', 'Fuyug', NULL, 1980.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fuyug', [Definition] = NULL, [SortOrder] = 197.10 WHERE [Code] = 'fuy' END +SET [Description] = 'Fuyug', [Definition] = NULL, [SortOrder] = 1980.00 WHERE [Code] = 'fuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fwa', 'Fwâi', NULL, 197.20) END +VALUES ('fwa', 'Fwâi', NULL, 1981.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fwâi', [Definition] = NULL, [SortOrder] = 197.20 WHERE [Code] = 'fwa' END +SET [Description] = 'Fwâi', [Definition] = NULL, [SortOrder] = 1981.00 WHERE [Code] = 'fwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fwe', 'Fwe', NULL, 197.30) END +VALUES ('fwe', 'Fwe', NULL, 1982.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fwe', [Definition] = NULL, [SortOrder] = 197.30 WHERE [Code] = 'fwe' END +SET [Description] = 'Fwe', [Definition] = NULL, [SortOrder] = 1982.00 WHERE [Code] = 'fwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pym', 'Fyam', NULL, 197.40) END +VALUES ('pym', 'Fyam', NULL, 1983.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fyam', [Definition] = NULL, [SortOrder] = 197.40 WHERE [Code] = 'pym' END +SET [Description] = 'Fyam', [Definition] = NULL, [SortOrder] = 1983.00 WHERE [Code] = 'pym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fie', 'Fyer', NULL, 197.50) END +VALUES ('fie', 'Fyer', NULL, 1984.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Fyer', [Definition] = NULL, [SortOrder] = 197.50 WHERE [Code] = 'fie' END +SET [Description] = 'Fyer', [Definition] = NULL, [SortOrder] = 1984.00 WHERE [Code] = 'fie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaa', 'Ga', NULL, 197.60) END +VALUES ('gaa', 'Ga', NULL, 1985.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ga', [Definition] = NULL, [SortOrder] = 197.60 WHERE [Code] = 'gaa' END +SET [Description] = 'Ga', [Definition] = NULL, [SortOrder] = 1985.00 WHERE [Code] = 'gaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqa', 'Ga''anda', NULL, 197.70) END +VALUES ('gqa', 'Ga''anda', NULL, 1986.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ga''anda', [Definition] = NULL, [SortOrder] = 197.70 WHERE [Code] = 'gqa' END +SET [Description] = 'Ga''anda', [Definition] = NULL, [SortOrder] = 1986.00 WHERE [Code] = 'gqa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdg', 'Ga''dang', NULL, 197.80) END +VALUES ('gdg', 'Ga''dang', NULL, 1987.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ga''dang', [Definition] = NULL, [SortOrder] = 197.80 WHERE [Code] = 'gdg' END +SET [Description] = 'Ga''dang', [Definition] = NULL, [SortOrder] = 1987.00 WHERE [Code] = 'gdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttb', 'Gaa', NULL, 197.90) END +VALUES ('ttb', 'Gaa', NULL, 1988.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaa', [Definition] = NULL, [SortOrder] = 197.90 WHERE [Code] = 'ttb' END +SET [Description] = 'Gaa', [Definition] = NULL, [SortOrder] = 1988.00 WHERE [Code] = 'ttb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbi', 'Gaam', NULL, 198.00) END +VALUES ('tbi', 'Gaam', NULL, 1989.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaam', [Definition] = NULL, [SortOrder] = 198.00 WHERE [Code] = 'tbi' END +SET [Description] = 'Gaam', [Definition] = NULL, [SortOrder] = 1989.00 WHERE [Code] = 'tbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbw', 'Gabi-Gabi', NULL, 198.10) END +VALUES ('gbw', 'Gabi-Gabi', NULL, 1990.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gabi-Gabi', [Definition] = NULL, [SortOrder] = 198.10 WHERE [Code] = 'gbw' END +SET [Description] = 'Gabi-Gabi', [Definition] = NULL, [SortOrder] = 1990.00 WHERE [Code] = 'gbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gie', 'Gabogbo', NULL, 198.20) END +VALUES ('gie', 'Gabogbo', NULL, 1991.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gabogbo', [Definition] = NULL, [SortOrder] = 198.20 WHERE [Code] = 'gie' END +SET [Description] = 'Gabogbo', [Definition] = NULL, [SortOrder] = 1991.00 WHERE [Code] = 'gie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gab', 'Gabri', NULL, 198.30) END +VALUES ('gab', 'Gabri', NULL, 1992.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gabri', [Definition] = NULL, [SortOrder] = 198.30 WHERE [Code] = 'gab' END +SET [Description] = 'Gabri', [Definition] = NULL, [SortOrder] = 1992.00 WHERE [Code] = 'gab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgf', 'Gabrielino-Fernandeño', NULL, 198.40) END +VALUES ('xgf', 'Gabrielino-Fernandeño', NULL, 1993.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gabrielino-Fernandeño', [Definition] = NULL, [SortOrder] = 198.40 WHERE [Code] = 'xgf' END +SET [Description] = 'Gabrielino-Fernandeño', [Definition] = NULL, [SortOrder] = 1993.00 WHERE [Code] = 'xgf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdk', 'Gadang', NULL, 198.50) END +VALUES ('gdk', 'Gadang', NULL, 1994.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gadang', [Definition] = NULL, [SortOrder] = 198.50 WHERE [Code] = 'gdk' END +SET [Description] = 'Gadang', [Definition] = NULL, [SortOrder] = 1994.00 WHERE [Code] = 'gdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gad', 'Gaddang', NULL, 198.60) END +VALUES ('gad', 'Gaddang', NULL, 1995.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaddang', [Definition] = NULL, [SortOrder] = 198.60 WHERE [Code] = 'gad' END +SET [Description] = 'Gaddang', [Definition] = NULL, [SortOrder] = 1995.00 WHERE [Code] = 'gad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbk', 'Gaddi', NULL, 198.70) END +VALUES ('gbk', 'Gaddi', NULL, 1996.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaddi', [Definition] = NULL, [SortOrder] = 198.70 WHERE [Code] = 'gbk' END +SET [Description] = 'Gaddi', [Definition] = NULL, [SortOrder] = 1996.00 WHERE [Code] = 'gbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ged') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ged', 'Gade', NULL, 198.80) END +VALUES ('ged', 'Gade', NULL, 1997.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gade', [Definition] = NULL, [SortOrder] = 198.80 WHERE [Code] = 'ged' END +SET [Description] = 'Gade', [Definition] = NULL, [SortOrder] = 1997.00 WHERE [Code] = 'ged' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gda', 'Gade Lohar', NULL, 198.90) END +VALUES ('gda', 'Gade Lohar', NULL, 1998.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gade Lohar', [Definition] = NULL, [SortOrder] = 198.90 WHERE [Code] = 'gda' END +SET [Description] = 'Gade Lohar', [Definition] = NULL, [SortOrder] = 1998.00 WHERE [Code] = 'gda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdh', 'Gadjerawang', NULL, 199.00) END +VALUES ('gdh', 'Gadjerawang', NULL, 1999.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gadjerawang', [Definition] = NULL, [SortOrder] = 199.00 WHERE [Code] = 'gdh' END +SET [Description] = 'Gadjerawang', [Definition] = NULL, [SortOrder] = 1999.00 WHERE [Code] = 'gdh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaj', 'Gadsup', NULL, 199.10) END +VALUES ('gaj', 'Gadsup', NULL, 2000.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gadsup', [Definition] = NULL, [SortOrder] = 199.10 WHERE [Code] = 'gaj' END +SET [Description] = 'Gadsup', [Definition] = NULL, [SortOrder] = 2000.00 WHERE [Code] = 'gaj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gft', 'Gafat', NULL, 199.20) END +VALUES ('gft', 'Gafat', NULL, 2001.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gafat', [Definition] = NULL, [SortOrder] = 199.20 WHERE [Code] = 'gft' END +SET [Description] = 'Gafat', [Definition] = NULL, [SortOrder] = 2001.00 WHERE [Code] = 'gft' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbu', 'Gagadu', NULL, 199.30) END +VALUES ('gbu', 'Gagadu', NULL, 2002.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gagadu', [Definition] = NULL, [SortOrder] = 199.30 WHERE [Code] = 'gbu' END +SET [Description] = 'Gagadu', [Definition] = NULL, [SortOrder] = 2002.00 WHERE [Code] = 'gbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gag', 'Gagauz', NULL, 199.40) END +VALUES ('gag', 'Gagauz', NULL, 2003.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gagauz', [Definition] = NULL, [SortOrder] = 199.40 WHERE [Code] = 'gag' END +SET [Description] = 'Gagauz', [Definition] = NULL, [SortOrder] = 2003.00 WHERE [Code] = 'gag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btg', 'Gagnoa Bété', NULL, 199.50) END +VALUES ('btg', 'Gagnoa Bété', NULL, 2004.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gagnoa Bété', [Definition] = NULL, [SortOrder] = 199.50 WHERE [Code] = 'btg' END +SET [Description] = 'Gagnoa Bété', [Definition] = NULL, [SortOrder] = 2004.00 WHERE [Code] = 'btg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggu', 'Gagu', NULL, 199.60) END +VALUES ('ggu', 'Gagu', NULL, 2005.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gagu', [Definition] = NULL, [SortOrder] = 199.60 WHERE [Code] = 'ggu' END +SET [Description] = 'Gagu', [Definition] = NULL, [SortOrder] = 2005.00 WHERE [Code] = 'ggu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfu', 'Gahri', NULL, 199.70) END +VALUES ('bfu', 'Gahri', NULL, 2006.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gahri', [Definition] = NULL, [SortOrder] = 199.70 WHERE [Code] = 'bfu' END +SET [Description] = 'Gahri', [Definition] = NULL, [SortOrder] = 2006.00 WHERE [Code] = 'bfu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbf', 'Gaikundi', NULL, 199.80) END +VALUES ('gbf', 'Gaikundi', NULL, 2007.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaikundi', [Definition] = NULL, [SortOrder] = 199.80 WHERE [Code] = 'gbf' END +SET [Description] = 'Gaikundi', [Definition] = NULL, [SortOrder] = 2007.00 WHERE [Code] = 'gbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gic', 'Gail', NULL, 199.90) END +VALUES ('gic', 'Gail', NULL, 2008.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gail', [Definition] = NULL, [SortOrder] = 199.90 WHERE [Code] = 'gic' END +SET [Description] = 'Gail', [Definition] = NULL, [SortOrder] = 2008.00 WHERE [Code] = 'gic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcn', 'Gaina', NULL, 200.00) END +VALUES ('gcn', 'Gaina', NULL, 2009.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gaina', [Definition] = NULL, [SortOrder] = 200.00 WHERE [Code] = 'gcn' END +SET [Description] = 'Gaina', [Definition] = NULL, [SortOrder] = 2009.00 WHERE [Code] = 'gcn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gap', 'Gal', NULL, 200.10) END +VALUES ('gap', 'Gal', NULL, 2010.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gal', [Definition] = NULL, [SortOrder] = 200.10 WHERE [Code] = 'gap' END +SET [Description] = 'Gal', [Definition] = NULL, [SortOrder] = 2010.00 WHERE [Code] = 'gap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glo', 'Galambu', NULL, 200.20) END +VALUES ('glo', 'Galambu', NULL, 2011.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galambu', [Definition] = NULL, [SortOrder] = 200.20 WHERE [Code] = 'glo' END +SET [Description] = 'Galambu', [Definition] = NULL, [SortOrder] = 2011.00 WHERE [Code] = 'glo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xga', 'Galatian', NULL, 200.30) END +VALUES ('xga', 'Galatian', NULL, 2012.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galatian', [Definition] = NULL, [SortOrder] = 200.30 WHERE [Code] = 'xga' END +SET [Description] = 'Galatian', [Definition] = NULL, [SortOrder] = 2012.00 WHERE [Code] = 'xga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbi', 'Galela', NULL, 200.40) END +VALUES ('gbi', 'Galela', NULL, 2013.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galela', [Definition] = NULL, [SortOrder] = 200.40 WHERE [Code] = 'gbi' END +SET [Description] = 'Galela', [Definition] = NULL, [SortOrder] = 2013.00 WHERE [Code] = 'gbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gar', 'Galeya', NULL, 200.50) END +VALUES ('gar', 'Galeya', NULL, 2014.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galeya', [Definition] = NULL, [SortOrder] = 200.50 WHERE [Code] = 'gar' END +SET [Description] = 'Galeya', [Definition] = NULL, [SortOrder] = 2014.00 WHERE [Code] = 'gar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'car') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('car', 'Galibi Carib', NULL, 200.60) END +VALUES ('car', 'Galibi Carib', NULL, 2015.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galibi Carib', [Definition] = NULL, [SortOrder] = 200.60 WHERE [Code] = 'car' END +SET [Description] = 'Galibi Carib', [Definition] = NULL, [SortOrder] = 2015.00 WHERE [Code] = 'car' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gce', 'Galice', NULL, 200.70) END +VALUES ('gce', 'Galice', NULL, 2016.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galice', [Definition] = NULL, [SortOrder] = 200.70 WHERE [Code] = 'gce' END +SET [Description] = 'Galice', [Definition] = NULL, [SortOrder] = 2016.00 WHERE [Code] = 'gce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glg', 'Galician', NULL, 200.80) END +VALUES ('glg', 'Galician', NULL, 2017.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galician', [Definition] = NULL, [SortOrder] = 200.80 WHERE [Code] = 'glg' END +SET [Description] = 'Galician', [Definition] = NULL, [SortOrder] = 2017.00 WHERE [Code] = 'glg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgl', 'Galindan', NULL, 200.90) END +VALUES ('xgl', 'Galindan', NULL, 2018.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galindan', [Definition] = NULL, [SortOrder] = 200.90 WHERE [Code] = 'xgl' END +SET [Description] = 'Galindan', [Definition] = NULL, [SortOrder] = 2018.00 WHERE [Code] = 'xgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdn', 'Gallurese Sardinian', NULL, 201.00) END +VALUES ('sdn', 'Gallurese Sardinian', NULL, 2019.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gallurese Sardinian', [Definition] = NULL, [SortOrder] = 201.00 WHERE [Code] = 'sdn' END +SET [Description] = 'Gallurese Sardinian', [Definition] = NULL, [SortOrder] = 2019.00 WHERE [Code] = 'sdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'adl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('adl', 'Galo', NULL, 201.10) END +VALUES ('adl', 'Galo', NULL, 2020.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galo', [Definition] = NULL, [SortOrder] = 201.10 WHERE [Code] = 'adl' END +SET [Description] = 'Galo', [Definition] = NULL, [SortOrder] = 2020.00 WHERE [Code] = 'adl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gal', 'Galolen', NULL, 201.20) END +VALUES ('gal', 'Galolen', NULL, 2021.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Galolen', [Definition] = NULL, [SortOrder] = 201.20 WHERE [Code] = 'gal' END +SET [Description] = 'Galolen', [Definition] = NULL, [SortOrder] = 2021.00 WHERE [Code] = 'gal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgj', 'Gamale Kham', NULL, 201.30) END +VALUES ('kgj', 'Gamale Kham', NULL, 2022.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamale Kham', [Definition] = NULL, [SortOrder] = 201.30 WHERE [Code] = 'kgj' END +SET [Description] = 'Gamale Kham', [Definition] = NULL, [SortOrder] = 2022.00 WHERE [Code] = 'kgj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gma', 'Gambera', NULL, 201.40) END +VALUES ('gma', 'Gambera', NULL, 2023.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gambera', [Definition] = NULL, [SortOrder] = 201.40 WHERE [Code] = 'gma' END +SET [Description] = 'Gambera', [Definition] = NULL, [SortOrder] = 2023.00 WHERE [Code] = 'gma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wof', 'Gambian Wolof', NULL, 201.50) END +VALUES ('wof', 'Gambian Wolof', NULL, 2024.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gambian Wolof', [Definition] = NULL, [SortOrder] = 201.50 WHERE [Code] = 'wof' END +SET [Description] = 'Gambian Wolof', [Definition] = NULL, [SortOrder] = 2024.00 WHERE [Code] = 'wof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kld', 'Gamilaraay', NULL, 201.60) END +VALUES ('kld', 'Gamilaraay', NULL, 2025.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamilaraay', [Definition] = NULL, [SortOrder] = 201.60 WHERE [Code] = 'kld' END +SET [Description] = 'Gamilaraay', [Definition] = NULL, [SortOrder] = 2025.00 WHERE [Code] = 'kld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbl', 'Gamit', NULL, 201.70) END +VALUES ('gbl', 'Gamit', NULL, 2026.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamit', [Definition] = NULL, [SortOrder] = 201.70 WHERE [Code] = 'gbl' END +SET [Description] = 'Gamit', [Definition] = NULL, [SortOrder] = 2026.00 WHERE [Code] = 'gbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gak', 'Gamkonora', NULL, 201.80) END +VALUES ('gak', 'Gamkonora', NULL, 2027.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamkonora', [Definition] = NULL, [SortOrder] = 201.80 WHERE [Code] = 'gak' END +SET [Description] = 'Gamkonora', [Definition] = NULL, [SortOrder] = 2027.00 WHERE [Code] = 'gak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmv', 'Gamo', NULL, 201.90) END +VALUES ('gmv', 'Gamo', NULL, 2028.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamo', [Definition] = NULL, [SortOrder] = 201.90 WHERE [Code] = 'gmv' END +SET [Description] = 'Gamo', [Definition] = NULL, [SortOrder] = 2028.00 WHERE [Code] = 'gmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bte', 'Gamo-Ningi', NULL, 202.00) END +VALUES ('bte', 'Gamo-Ningi', NULL, 2029.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gamo-Ningi', [Definition] = NULL, [SortOrder] = 202.00 WHERE [Code] = 'bte' END +SET [Description] = 'Gamo-Ningi', [Definition] = NULL, [SortOrder] = 2029.00 WHERE [Code] = 'bte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gan', 'Gan Chinese', NULL, 202.10) END +VALUES ('gan', 'Gan Chinese', NULL, 2030.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gan Chinese', [Definition] = NULL, [SortOrder] = 202.10 WHERE [Code] = 'gan' END +SET [Description] = 'Gan Chinese', [Definition] = NULL, [SortOrder] = 2030.00 WHERE [Code] = 'gan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnq', 'Gana', NULL, 202.20) END +VALUES ('gnq', 'Gana', NULL, 2031.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gana', [Definition] = NULL, [SortOrder] = 202.20 WHERE [Code] = 'gnq' END +SET [Description] = 'Gana', [Definition] = NULL, [SortOrder] = 2031.00 WHERE [Code] = 'gnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gne', 'Ganang', NULL, 202.30) END +VALUES ('gne', 'Ganang', NULL, 2032.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganang', [Definition] = NULL, [SortOrder] = 202.30 WHERE [Code] = 'gne' END +SET [Description] = 'Ganang', [Definition] = NULL, [SortOrder] = 2032.00 WHERE [Code] = 'gne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lug', 'Ganda', NULL, 202.40) END +VALUES ('lug', 'Ganda', NULL, 2033.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganda', [Definition] = NULL, [SortOrder] = 202.40 WHERE [Code] = 'lug' END +SET [Description] = 'Ganda', [Definition] = NULL, [SortOrder] = 2033.00 WHERE [Code] = 'lug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgd', 'Gandhari', NULL, 202.50) END +VALUES ('pgd', 'Gandhari', NULL, 2034.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gandhari', [Definition] = NULL, [SortOrder] = 202.50 WHERE [Code] = 'pgd' END +SET [Description] = 'Gandhari', [Definition] = NULL, [SortOrder] = 2034.00 WHERE [Code] = 'pgd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gzn', 'Gane', NULL, 202.60) END +VALUES ('gzn', 'Gane', NULL, 2035.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gane', [Definition] = NULL, [SortOrder] = 202.60 WHERE [Code] = 'gzn' END +SET [Description] = 'Gane', [Definition] = NULL, [SortOrder] = 2035.00 WHERE [Code] = 'gzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcd', 'Ganggalida', NULL, 202.70) END +VALUES ('gcd', 'Ganggalida', NULL, 2036.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganggalida', [Definition] = NULL, [SortOrder] = 202.70 WHERE [Code] = 'gcd' END +SET [Description] = 'Ganggalida', [Definition] = NULL, [SortOrder] = 2036.00 WHERE [Code] = 'gcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggl', 'Ganglau', NULL, 202.80) END +VALUES ('ggl', 'Ganglau', NULL, 2037.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganglau', [Definition] = NULL, [SortOrder] = 202.80 WHERE [Code] = 'ggl' END +SET [Description] = 'Ganglau', [Definition] = NULL, [SortOrder] = 2037.00 WHERE [Code] = 'ggl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnb', 'Gangte', NULL, 202.90) END +VALUES ('gnb', 'Gangte', NULL, 2038.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gangte', [Definition] = NULL, [SortOrder] = 202.90 WHERE [Code] = 'gnb' END +SET [Description] = 'Gangte', [Definition] = NULL, [SortOrder] = 2038.00 WHERE [Code] = 'gnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnl', 'Gangulu', NULL, 203.00) END +VALUES ('gnl', 'Gangulu', NULL, 2039.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gangulu', [Definition] = NULL, [SortOrder] = 203.00 WHERE [Code] = 'gnl' END +SET [Description] = 'Gangulu', [Definition] = NULL, [SortOrder] = 2039.00 WHERE [Code] = 'gnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gao', 'Gants', NULL, 203.10) END +VALUES ('gao', 'Gants', NULL, 2040.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gants', [Definition] = NULL, [SortOrder] = 203.10 WHERE [Code] = 'gao' END +SET [Description] = 'Gants', [Definition] = NULL, [SortOrder] = 2040.00 WHERE [Code] = 'gao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gza', 'Ganza', NULL, 203.20) END +VALUES ('gza', 'Ganza', NULL, 2041.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganza', [Definition] = NULL, [SortOrder] = 203.20 WHERE [Code] = 'gza' END +SET [Description] = 'Ganza', [Definition] = NULL, [SortOrder] = 2041.00 WHERE [Code] = 'gza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnz', 'Ganzi', NULL, 203.30) END +VALUES ('gnz', 'Ganzi', NULL, 2042.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ganzi', [Definition] = NULL, [SortOrder] = 203.30 WHERE [Code] = 'gnz' END +SET [Description] = 'Ganzi', [Definition] = NULL, [SortOrder] = 2042.00 WHERE [Code] = 'gnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gga', 'Gao', NULL, 203.40) END +VALUES ('gga', 'Gao', NULL, 2043.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gao', [Definition] = NULL, [SortOrder] = 203.40 WHERE [Code] = 'gga' END +SET [Description] = 'Gao', [Definition] = NULL, [SortOrder] = 2043.00 WHERE [Code] = 'gga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwg', 'Gapapaiwa', NULL, 203.50) END +VALUES ('pwg', 'Gapapaiwa', NULL, 2044.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gapapaiwa', [Definition] = NULL, [SortOrder] = 203.50 WHERE [Code] = 'pwg' END +SET [Description] = 'Gapapaiwa', [Definition] = NULL, [SortOrder] = 2044.00 WHERE [Code] = 'pwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbm', 'Garhwali', NULL, 203.60) END +VALUES ('gbm', 'Garhwali', NULL, 2045.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garhwali', [Definition] = NULL, [SortOrder] = 203.60 WHERE [Code] = 'gbm' END +SET [Description] = 'Garhwali', [Definition] = NULL, [SortOrder] = 2045.00 WHERE [Code] = 'gbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cab', 'Garifuna', NULL, 203.70) END +VALUES ('cab', 'Garifuna', NULL, 2046.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garifuna', [Definition] = NULL, [SortOrder] = 203.70 WHERE [Code] = 'cab' END +SET [Description] = 'Garifuna', [Definition] = NULL, [SortOrder] = 2046.00 WHERE [Code] = 'cab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilg', 'Garig-Ilgar', NULL, 203.80) END +VALUES ('ilg', 'Garig-Ilgar', NULL, 2047.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garig-Ilgar', [Definition] = NULL, [SortOrder] = 203.80 WHERE [Code] = 'ilg' END +SET [Description] = 'Garig-Ilgar', [Definition] = NULL, [SortOrder] = 2047.00 WHERE [Code] = 'ilg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgi', 'Garingbal', NULL, 203.90) END +VALUES ('xgi', 'Garingbal', NULL, 2048.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garingbal', [Definition] = NULL, [SortOrder] = 203.90 WHERE [Code] = 'xgi' END +SET [Description] = 'Garingbal', [Definition] = NULL, [SortOrder] = 2048.00 WHERE [Code] = 'xgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gll', 'Garlali', NULL, 204.00) END +VALUES ('gll', 'Garlali', NULL, 2049.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garlali', [Definition] = NULL, [SortOrder] = 204.00 WHERE [Code] = 'gll' END +SET [Description] = 'Garlali', [Definition] = NULL, [SortOrder] = 2049.00 WHERE [Code] = 'gll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grt', 'Garo', NULL, 204.10) END +VALUES ('grt', 'Garo', NULL, 2050.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garo', [Definition] = NULL, [SortOrder] = 204.10 WHERE [Code] = 'grt' END +SET [Description] = 'Garo', [Definition] = NULL, [SortOrder] = 2050.00 WHERE [Code] = 'grt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gex', 'Garre', NULL, 204.20) END +VALUES ('gex', 'Garre', NULL, 2051.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garre', [Definition] = NULL, [SortOrder] = 204.20 WHERE [Code] = 'gex' END +SET [Description] = 'Garre', [Definition] = NULL, [SortOrder] = 2051.00 WHERE [Code] = 'gex' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrk', 'Garrwa', NULL, 204.30) END +VALUES ('wrk', 'Garrwa', NULL, 2052.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garrwa', [Definition] = NULL, [SortOrder] = 204.30 WHERE [Code] = 'wrk' END +SET [Description] = 'Garrwa', [Definition] = NULL, [SortOrder] = 2052.00 WHERE [Code] = 'wrk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyb', 'Garus', NULL, 204.40) END +VALUES ('gyb', 'Garus', NULL, 2053.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garus', [Definition] = NULL, [SortOrder] = 204.40 WHERE [Code] = 'gyb' END +SET [Description] = 'Garus', [Definition] = NULL, [SortOrder] = 2053.00 WHERE [Code] = 'gyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgr', 'Garza', NULL, 204.50) END +VALUES ('xgr', 'Garza', NULL, 2054.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Garza', [Definition] = NULL, [SortOrder] = 204.50 WHERE [Code] = 'xgr' END +SET [Description] = 'Garza', [Definition] = NULL, [SortOrder] = 2054.00 WHERE [Code] = 'xgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaq', 'Gata''', NULL, 204.60) END +VALUES ('gaq', 'Gata''', NULL, 2055.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gata''', [Definition] = NULL, [SortOrder] = 204.60 WHERE [Code] = 'gaq' END +SET [Description] = 'Gata''', [Definition] = NULL, [SortOrder] = 2055.00 WHERE [Code] = 'gaq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmc', 'Gavak', NULL, 204.70) END +VALUES ('dmc', 'Gavak', NULL, 2056.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gavak', [Definition] = NULL, [SortOrder] = 204.70 WHERE [Code] = 'dmc' END +SET [Description] = 'Gavak', [Definition] = NULL, [SortOrder] = 2056.00 WHERE [Code] = 'dmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gou', 'Gavar', NULL, 204.80) END +VALUES ('gou', 'Gavar', NULL, 2057.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gavar', [Definition] = NULL, [SortOrder] = 204.80 WHERE [Code] = 'gou' END +SET [Description] = 'Gavar', [Definition] = NULL, [SortOrder] = 2057.00 WHERE [Code] = 'gou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvo', 'Gavião Do Jiparaná', NULL, 204.90) END +VALUES ('gvo', 'Gavião Do Jiparaná', NULL, 2058.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gavião Do Jiparaná', [Definition] = NULL, [SortOrder] = 204.90 WHERE [Code] = 'gvo' END +SET [Description] = 'Gavião Do Jiparaná', [Definition] = NULL, [SortOrder] = 2058.00 WHERE [Code] = 'gvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwt', 'Gawar-Bati', NULL, 205.00) END +VALUES ('gwt', 'Gawar-Bati', NULL, 2059.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gawar-Bati', [Definition] = NULL, [SortOrder] = 205.00 WHERE [Code] = 'gwt' END +SET [Description] = 'Gawar-Bati', [Definition] = NULL, [SortOrder] = 2059.00 WHERE [Code] = 'gwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwc', 'Gawri', NULL, 205.10) END +VALUES ('gwc', 'Gawri', NULL, 2060.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gawri', [Definition] = NULL, [SortOrder] = 205.10 WHERE [Code] = 'gwc' END +SET [Description] = 'Gawri', [Definition] = NULL, [SortOrder] = 2060.00 WHERE [Code] = 'gwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwd', 'Gawwada', NULL, 205.20) END +VALUES ('gwd', 'Gawwada', NULL, 2061.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gawwada', [Definition] = NULL, [SortOrder] = 205.20 WHERE [Code] = 'gwd' END +SET [Description] = 'Gawwada', [Definition] = NULL, [SortOrder] = 2061.00 WHERE [Code] = 'gwd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyl', 'Gayil', NULL, 205.30) END +VALUES ('gyl', 'Gayil', NULL, 2062.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gayil', [Definition] = NULL, [SortOrder] = 205.30 WHERE [Code] = 'gyl' END +SET [Description] = 'Gayil', [Definition] = NULL, [SortOrder] = 2062.00 WHERE [Code] = 'gyl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gay', 'Gayo', NULL, 205.40) END +VALUES ('gay', 'Gayo', NULL, 2063.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gayo', [Definition] = NULL, [SortOrder] = 205.40 WHERE [Code] = 'gay' END +SET [Description] = 'Gayo', [Definition] = NULL, [SortOrder] = 2063.00 WHERE [Code] = 'gay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gzi', 'Gazi', NULL, 205.50) END +VALUES ('gzi', 'Gazi', NULL, 2064.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gazi', [Definition] = NULL, [SortOrder] = 205.50 WHERE [Code] = 'gzi' END +SET [Description] = 'Gazi', [Definition] = NULL, [SortOrder] = 2064.00 WHERE [Code] = 'gzi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbr', 'Gbagyi', NULL, 205.60) END +VALUES ('gbr', 'Gbagyi', NULL, 2065.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbagyi', [Definition] = NULL, [SortOrder] = 205.60 WHERE [Code] = 'gbr' END +SET [Description] = 'Gbagyi', [Definition] = NULL, [SortOrder] = 2065.00 WHERE [Code] = 'gbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbv', 'Gbanu', NULL, 205.70) END +VALUES ('gbv', 'Gbanu', NULL, 2066.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbanu', [Definition] = NULL, [SortOrder] = 205.70 WHERE [Code] = 'gbv' END +SET [Description] = 'Gbanu', [Definition] = NULL, [SortOrder] = 2066.00 WHERE [Code] = 'gbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbg', 'Gbanziri', NULL, 205.80) END +VALUES ('gbg', 'Gbanziri', NULL, 2067.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbanziri', [Definition] = NULL, [SortOrder] = 205.80 WHERE [Code] = 'gbg' END +SET [Description] = 'Gbanziri', [Definition] = NULL, [SortOrder] = 2067.00 WHERE [Code] = 'gbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gby', 'Gbari', NULL, 205.90) END +VALUES ('gby', 'Gbari', NULL, 2068.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbari', [Definition] = NULL, [SortOrder] = 205.90 WHERE [Code] = 'gby' END +SET [Description] = 'Gbari', [Definition] = NULL, [SortOrder] = 2068.00 WHERE [Code] = 'gby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gba', 'Gbaya (Central African Republic)', NULL, 206.00) END +VALUES ('gba', 'Gbaya (Central African Republic)', NULL, 2069.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya (Central African Republic)', [Definition] = NULL, [SortOrder] = 206.00 WHERE [Code] = 'gba' END +SET [Description] = 'Gbaya (Central African Republic)', [Definition] = NULL, [SortOrder] = 2069.00 WHERE [Code] = 'gba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krs', 'Gbaya (Sudan)', NULL, 206.10) END +VALUES ('krs', 'Gbaya (Sudan)', NULL, 2070.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya (Sudan)', [Definition] = NULL, [SortOrder] = 206.10 WHERE [Code] = 'krs' END +SET [Description] = 'Gbaya (Sudan)', [Definition] = NULL, [SortOrder] = 2070.00 WHERE [Code] = 'krs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbp', 'Gbaya-Bossangoa', NULL, 206.20) END +VALUES ('gbp', 'Gbaya-Bossangoa', NULL, 2071.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya-Bossangoa', [Definition] = NULL, [SortOrder] = 206.20 WHERE [Code] = 'gbp' END +SET [Description] = 'Gbaya-Bossangoa', [Definition] = NULL, [SortOrder] = 2071.00 WHERE [Code] = 'gbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbq', 'Gbaya-Bozoum', NULL, 206.30) END +VALUES ('gbq', 'Gbaya-Bozoum', NULL, 2072.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya-Bozoum', [Definition] = NULL, [SortOrder] = 206.30 WHERE [Code] = 'gbq' END +SET [Description] = 'Gbaya-Bozoum', [Definition] = NULL, [SortOrder] = 2072.00 WHERE [Code] = 'gbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmm', 'Gbaya-Mbodomo', NULL, 206.40) END +VALUES ('gmm', 'Gbaya-Mbodomo', NULL, 2073.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbaya-Mbodomo', [Definition] = NULL, [SortOrder] = 206.40 WHERE [Code] = 'gmm' END +SET [Description] = 'Gbaya-Mbodomo', [Definition] = NULL, [SortOrder] = 2073.00 WHERE [Code] = 'gmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyg', 'Gbayi', NULL, 206.50) END +VALUES ('gyg', 'Gbayi', NULL, 2074.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbayi', [Definition] = NULL, [SortOrder] = 206.50 WHERE [Code] = 'gyg' END +SET [Description] = 'Gbayi', [Definition] = NULL, [SortOrder] = 2074.00 WHERE [Code] = 'gyg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbs', 'Gbesi Gbe', NULL, 206.60) END +VALUES ('gbs', 'Gbesi Gbe', NULL, 2075.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbesi Gbe', [Definition] = NULL, [SortOrder] = 206.60 WHERE [Code] = 'gbs' END +SET [Description] = 'Gbesi Gbe', [Definition] = NULL, [SortOrder] = 2075.00 WHERE [Code] = 'gbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggb', 'Gbii', NULL, 206.70) END +VALUES ('ggb', 'Gbii', NULL, 2076.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbii', [Definition] = NULL, [SortOrder] = 206.70 WHERE [Code] = 'ggb' END +SET [Description] = 'Gbii', [Definition] = NULL, [SortOrder] = 2076.00 WHERE [Code] = 'ggb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgb', 'Gbin', NULL, 206.80) END +VALUES ('xgb', 'Gbin', NULL, 2077.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbin', [Definition] = NULL, [SortOrder] = 206.80 WHERE [Code] = 'xgb' END +SET [Description] = 'Gbin', [Definition] = NULL, [SortOrder] = 2077.00 WHERE [Code] = 'xgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grh', 'Gbiri-Niragu', NULL, 206.90) END +VALUES ('grh', 'Gbiri-Niragu', NULL, 2078.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gbiri-Niragu', [Definition] = NULL, [SortOrder] = 206.90 WHERE [Code] = 'grh' END +SET [Description] = 'Gbiri-Niragu', [Definition] = NULL, [SortOrder] = 2078.00 WHERE [Code] = 'grh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gec', 'Gboloo Grebo', NULL, 207.00) END +VALUES ('gec', 'Gboloo Grebo', NULL, 2079.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gboloo Grebo', [Definition] = NULL, [SortOrder] = 207.00 WHERE [Code] = 'gec' END +SET [Description] = 'Gboloo Grebo', [Definition] = NULL, [SortOrder] = 2079.00 WHERE [Code] = 'gec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmj', 'Ge', NULL, 207.10) END +VALUES ('hmj', 'Ge', NULL, 2080.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ge', [Definition] = NULL, [SortOrder] = 207.10 WHERE [Code] = 'hmj' END +SET [Description] = 'Ge', [Definition] = NULL, [SortOrder] = 2080.00 WHERE [Code] = 'hmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvq', 'Geba Karen', NULL, 207.20) END +VALUES ('kvq', 'Geba Karen', NULL, 2081.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geba Karen', [Definition] = NULL, [SortOrder] = 207.20 WHERE [Code] = 'kvq' END +SET [Description] = 'Geba Karen', [Definition] = NULL, [SortOrder] = 2081.00 WHERE [Code] = 'kvq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gei', 'Gebe', NULL, 207.30) END +VALUES ('gei', 'Gebe', NULL, 2082.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gebe', [Definition] = NULL, [SortOrder] = 207.30 WHERE [Code] = 'gei' END +SET [Description] = 'Gebe', [Definition] = NULL, [SortOrder] = 2082.00 WHERE [Code] = 'gei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdd', 'Gedaged', NULL, 207.40) END +VALUES ('gdd', 'Gedaged', NULL, 2083.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gedaged', [Definition] = NULL, [SortOrder] = 207.40 WHERE [Code] = 'gdd' END +SET [Description] = 'Gedaged', [Definition] = NULL, [SortOrder] = 2083.00 WHERE [Code] = 'gdd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drs', 'Gedeo', NULL, 207.50) END +VALUES ('drs', 'Gedeo', NULL, 2084.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gedeo', [Definition] = NULL, [SortOrder] = 207.50 WHERE [Code] = 'drs' END +SET [Description] = 'Gedeo', [Definition] = NULL, [SortOrder] = 2084.00 WHERE [Code] = 'drs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gez', 'Geez', NULL, 207.60) END +VALUES ('gez', 'Geez', NULL, 2085.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geez', [Definition] = NULL, [SortOrder] = 207.60 WHERE [Code] = 'gez' END +SET [Description] = 'Geez', [Definition] = NULL, [SortOrder] = 2085.00 WHERE [Code] = 'gez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyz', 'Geji', NULL, 207.70) END +VALUES ('gyz', 'Geji', NULL, 2086.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geji', [Definition] = NULL, [SortOrder] = 207.70 WHERE [Code] = 'gyz' END +SET [Description] = 'Geji', [Definition] = NULL, [SortOrder] = 2086.00 WHERE [Code] = 'gyz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghk', 'Geko Karen', NULL, 207.80) END +VALUES ('ghk', 'Geko Karen', NULL, 2087.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geko Karen', [Definition] = NULL, [SortOrder] = 207.80 WHERE [Code] = 'ghk' END +SET [Description] = 'Geko Karen', [Definition] = NULL, [SortOrder] = 2087.00 WHERE [Code] = 'ghk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlg', 'Gela', NULL, 207.90) END +VALUES ('nlg', 'Gela', NULL, 2088.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gela', [Definition] = NULL, [SortOrder] = 207.90 WHERE [Code] = 'nlg' END +SET [Description] = 'Gela', [Definition] = NULL, [SortOrder] = 2088.00 WHERE [Code] = 'nlg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'geq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geq', 'Geme', NULL, 208.00) END +VALUES ('geq', 'Geme', NULL, 2089.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geme', [Definition] = NULL, [SortOrder] = 208.00 WHERE [Code] = 'geq' END +SET [Description] = 'Geme', [Definition] = NULL, [SortOrder] = 2089.00 WHERE [Code] = 'geq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gej', 'Gen', NULL, 208.10) END +VALUES ('gej', 'Gen', NULL, 2090.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gen', [Definition] = NULL, [SortOrder] = 208.10 WHERE [Code] = 'gej' END +SET [Description] = 'Gen', [Definition] = NULL, [SortOrder] = 2090.00 WHERE [Code] = 'gej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaf', 'Gende', NULL, 208.20) END +VALUES ('gaf', 'Gende', NULL, 2091.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gende', [Definition] = NULL, [SortOrder] = 208.20 WHERE [Code] = 'gaf' END +SET [Description] = 'Gende', [Definition] = NULL, [SortOrder] = 2091.00 WHERE [Code] = 'gaf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'geg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geg', 'Gengle', NULL, 208.30) END +VALUES ('geg', 'Gengle', NULL, 2092.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gengle', [Definition] = NULL, [SortOrder] = 208.30 WHERE [Code] = 'geg' END +SET [Description] = 'Gengle', [Definition] = NULL, [SortOrder] = 2092.00 WHERE [Code] = 'geg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kat', 'Georgian', NULL, 208.40) END +VALUES ('kat', 'Georgian', NULL, 2093.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Georgian', [Definition] = NULL, [SortOrder] = 208.40 WHERE [Code] = 'kat' END +SET [Description] = 'Georgian', [Definition] = NULL, [SortOrder] = 2093.00 WHERE [Code] = 'kat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygp', 'Gepo', NULL, 208.50) END +VALUES ('ygp', 'Gepo', NULL, 2094.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gepo', [Definition] = NULL, [SortOrder] = 208.50 WHERE [Code] = 'ygp' END +SET [Description] = 'Gepo', [Definition] = NULL, [SortOrder] = 2094.00 WHERE [Code] = 'ygp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gew', 'Gera', NULL, 208.60) END +VALUES ('gew', 'Gera', NULL, 2095.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gera', [Definition] = NULL, [SortOrder] = 208.60 WHERE [Code] = 'gew' END +SET [Description] = 'Gera', [Definition] = NULL, [SortOrder] = 2095.00 WHERE [Code] = 'gew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gef', 'Gerai', NULL, 208.70) END +VALUES ('gef', 'Gerai', NULL, 2096.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gerai', [Definition] = NULL, [SortOrder] = 208.70 WHERE [Code] = 'gef' END +SET [Description] = 'Gerai', [Definition] = NULL, [SortOrder] = 2096.00 WHERE [Code] = 'gef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'deu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('deu', 'German', NULL, 208.80) END +VALUES ('deu', 'German', NULL, 2097.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'German', [Definition] = NULL, [SortOrder] = 208.80 WHERE [Code] = 'deu' END +SET [Description] = 'German', [Definition] = NULL, [SortOrder] = 2097.00 WHERE [Code] = 'deu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsg', 'German Sign Language', NULL, 208.90) END +VALUES ('gsg', 'German Sign Language', NULL, 2098.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'German Sign Language', [Definition] = NULL, [SortOrder] = 208.90 WHERE [Code] = 'gsg' END +SET [Description] = 'German Sign Language', [Definition] = NULL, [SortOrder] = 2098.00 WHERE [Code] = 'gsg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gea', 'Geruma', NULL, 209.00) END +VALUES ('gea', 'Geruma', NULL, 2099.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geruma', [Definition] = NULL, [SortOrder] = 209.00 WHERE [Code] = 'gea' END +SET [Description] = 'Geruma', [Definition] = NULL, [SortOrder] = 2099.00 WHERE [Code] = 'gea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ges') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ges', 'Geser-Gorom', NULL, 209.10) END +VALUES ('ges', 'Geser-Gorom', NULL, 2100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Geser-Gorom', [Definition] = NULL, [SortOrder] = 209.10 WHERE [Code] = 'ges' END +SET [Description] = 'Geser-Gorom', [Definition] = NULL, [SortOrder] = 2100.00 WHERE [Code] = 'ges' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gha', 'Ghadamès', NULL, 209.20) END +VALUES ('gha', 'Ghadamès', NULL, 2101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghadamès', [Definition] = NULL, [SortOrder] = 209.20 WHERE [Code] = 'gha' END +SET [Description] = 'Ghadamès', [Definition] = NULL, [SortOrder] = 2101.00 WHERE [Code] = 'gha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gpe', 'Ghanaian Pidgin English', NULL, 209.30) END +VALUES ('gpe', 'Ghanaian Pidgin English', NULL, 2102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghanaian Pidgin English', [Definition] = NULL, [SortOrder] = 209.30 WHERE [Code] = 'gpe' END +SET [Description] = 'Ghanaian Pidgin English', [Definition] = NULL, [SortOrder] = 2102.00 WHERE [Code] = 'gpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gse', 'Ghanaian Sign Language', NULL, 209.40) END +VALUES ('gse', 'Ghanaian Sign Language', NULL, 2103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghanaian Sign Language', [Definition] = NULL, [SortOrder] = 209.40 WHERE [Code] = 'gse' END +SET [Description] = 'Ghanaian Sign Language', [Definition] = NULL, [SortOrder] = 2103.00 WHERE [Code] = 'gse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gds', 'Ghandruk Sign Language', NULL, 209.50) END +VALUES ('gds', 'Ghandruk Sign Language', NULL, 2104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghandruk Sign Language', [Definition] = NULL, [SortOrder] = 209.50 WHERE [Code] = 'gds' END +SET [Description] = 'Ghandruk Sign Language', [Definition] = NULL, [SortOrder] = 2104.00 WHERE [Code] = 'gds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghn', 'Ghanongga', NULL, 209.60) END +VALUES ('ghn', 'Ghanongga', NULL, 2105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghanongga', [Definition] = NULL, [SortOrder] = 209.60 WHERE [Code] = 'ghn' END +SET [Description] = 'Ghanongga', [Definition] = NULL, [SortOrder] = 2105.00 WHERE [Code] = 'ghn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gri', 'Ghari', NULL, 209.70) END +VALUES ('gri', 'Ghari', NULL, 2106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghari', [Definition] = NULL, [SortOrder] = 209.70 WHERE [Code] = 'gri' END +SET [Description] = 'Ghari', [Definition] = NULL, [SortOrder] = 2106.00 WHERE [Code] = 'gri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmk', 'Ghayavi', NULL, 209.80) END +VALUES ('bmk', 'Ghayavi', NULL, 2107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghayavi', [Definition] = NULL, [SortOrder] = 209.80 WHERE [Code] = 'bmk' END +SET [Description] = 'Ghayavi', [Definition] = NULL, [SortOrder] = 2107.00 WHERE [Code] = 'bmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aln', 'Gheg Albanian', NULL, 209.90) END +VALUES ('aln', 'Gheg Albanian', NULL, 2108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gheg Albanian', [Definition] = NULL, [SortOrder] = 209.90 WHERE [Code] = 'aln' END +SET [Description] = 'Gheg Albanian', [Definition] = NULL, [SortOrder] = 2108.00 WHERE [Code] = 'aln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghr', 'Ghera', NULL, 210.00) END +VALUES ('ghr', 'Ghera', NULL, 2109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghera', [Definition] = NULL, [SortOrder] = 210.00 WHERE [Code] = 'ghr' END +SET [Description] = 'Ghera', [Definition] = NULL, [SortOrder] = 2109.00 WHERE [Code] = 'ghr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdo', 'Ghodoberi', NULL, 210.10) END +VALUES ('gdo', 'Ghodoberi', NULL, 2110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghodoberi', [Definition] = NULL, [SortOrder] = 210.10 WHERE [Code] = 'gdo' END +SET [Description] = 'Ghodoberi', [Definition] = NULL, [SortOrder] = 2110.00 WHERE [Code] = 'gdo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbj', 'Ghomálá''', NULL, 210.20) END +VALUES ('bbj', 'Ghomálá''', NULL, 2111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghomálá''', [Definition] = NULL, [SortOrder] = 210.20 WHERE [Code] = 'bbj' END +SET [Description] = 'Ghomálá''', [Definition] = NULL, [SortOrder] = 2111.00 WHERE [Code] = 'bbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gho', 'Ghomara', NULL, 210.30) END +VALUES ('gho', 'Ghomara', NULL, 2112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghomara', [Definition] = NULL, [SortOrder] = 210.30 WHERE [Code] = 'gho' END +SET [Description] = 'Ghomara', [Definition] = NULL, [SortOrder] = 2112.00 WHERE [Code] = 'gho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaa', 'Ghotuo', NULL, 210.40) END +VALUES ('aaa', 'Ghotuo', NULL, 2113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghotuo', [Definition] = NULL, [SortOrder] = 210.40 WHERE [Code] = 'aaa' END +SET [Description] = 'Ghotuo', [Definition] = NULL, [SortOrder] = 2113.00 WHERE [Code] = 'aaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghl', 'Ghulfan', NULL, 210.50) END +VALUES ('ghl', 'Ghulfan', NULL, 2114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ghulfan', [Definition] = NULL, [SortOrder] = 210.50 WHERE [Code] = 'ghl' END +SET [Description] = 'Ghulfan', [Definition] = NULL, [SortOrder] = 2114.00 WHERE [Code] = 'ghl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgi', 'Giangan', NULL, 210.60) END +VALUES ('bgi', 'Giangan', NULL, 2115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Giangan', [Definition] = NULL, [SortOrder] = 210.60 WHERE [Code] = 'bgi' END +SET [Description] = 'Giangan', [Definition] = NULL, [SortOrder] = 2115.00 WHERE [Code] = 'bgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gib', 'Gibanawa', NULL, 210.70) END +VALUES ('gib', 'Gibanawa', NULL, 2116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gibanawa', [Definition] = NULL, [SortOrder] = 210.70 WHERE [Code] = 'gib' END +SET [Description] = 'Gibanawa', [Definition] = NULL, [SortOrder] = 2116.00 WHERE [Code] = 'gib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gid', 'Gidar', NULL, 210.80) END +VALUES ('gid', 'Gidar', NULL, 2117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gidar', [Definition] = NULL, [SortOrder] = 210.80 WHERE [Code] = 'gid' END +SET [Description] = 'Gidar', [Definition] = NULL, [SortOrder] = 2117.00 WHERE [Code] = 'gid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kks', 'Giiwo', NULL, 210.90) END +VALUES ('kks', 'Giiwo', NULL, 2118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Giiwo', [Definition] = NULL, [SortOrder] = 210.90 WHERE [Code] = 'kks' END +SET [Description] = 'Giiwo', [Definition] = NULL, [SortOrder] = 2118.00 WHERE [Code] = 'kks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acd', 'Gikyode', NULL, 211.00) END +VALUES ('acd', 'Gikyode', NULL, 2119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gikyode', [Definition] = NULL, [SortOrder] = 211.00 WHERE [Code] = 'acd' END +SET [Description] = 'Gikyode', [Definition] = NULL, [SortOrder] = 2119.00 WHERE [Code] = 'acd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glk', 'Gilaki', NULL, 211.10) END +VALUES ('glk', 'Gilaki', NULL, 2120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gilaki', [Definition] = NULL, [SortOrder] = 211.10 WHERE [Code] = 'glk' END +SET [Description] = 'Gilaki', [Definition] = NULL, [SortOrder] = 2120.00 WHERE [Code] = 'glk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gil', 'Gilbertese', NULL, 211.20) END +VALUES ('gil', 'Gilbertese', NULL, 2121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gilbertese', [Definition] = NULL, [SortOrder] = 211.20 WHERE [Code] = 'gil' END +SET [Description] = 'Gilbertese', [Definition] = NULL, [SortOrder] = 2121.00 WHERE [Code] = 'gil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gix', 'Gilima', NULL, 211.30) END +VALUES ('gix', 'Gilima', NULL, 2122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gilima', [Definition] = NULL, [SortOrder] = 211.30 WHERE [Code] = 'gix' END +SET [Description] = 'Gilima', [Definition] = NULL, [SortOrder] = 2122.00 WHERE [Code] = 'gix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niv', 'Gilyak', NULL, 211.40) END +VALUES ('niv', 'Gilyak', NULL, 2123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gilyak', [Definition] = NULL, [SortOrder] = 211.40 WHERE [Code] = 'niv' END +SET [Description] = 'Gilyak', [Definition] = NULL, [SortOrder] = 2123.00 WHERE [Code] = 'niv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gim', 'Gimi (Eastern Highlands)', NULL, 211.50) END +VALUES ('gim', 'Gimi (Eastern Highlands)', NULL, 2124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gimi (Eastern Highlands)', [Definition] = NULL, [SortOrder] = 211.50 WHERE [Code] = 'gim' END +SET [Description] = 'Gimi (Eastern Highlands)', [Definition] = NULL, [SortOrder] = 2124.00 WHERE [Code] = 'gim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gip', 'Gimi (West New Britain)', NULL, 211.60) END +VALUES ('gip', 'Gimi (West New Britain)', NULL, 2125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gimi (West New Britain)', [Definition] = NULL, [SortOrder] = 211.60 WHERE [Code] = 'gip' END +SET [Description] = 'Gimi (West New Britain)', [Definition] = NULL, [SortOrder] = 2125.00 WHERE [Code] = 'gip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmp', 'Gimme', NULL, 211.70) END +VALUES ('kmp', 'Gimme', NULL, 2126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gimme', [Definition] = NULL, [SortOrder] = 211.70 WHERE [Code] = 'kmp' END +SET [Description] = 'Gimme', [Definition] = NULL, [SortOrder] = 2126.00 WHERE [Code] = 'kmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmn', 'Gimnime', NULL, 211.80) END +VALUES ('gmn', 'Gimnime', NULL, 2127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gimnime', [Definition] = NULL, [SortOrder] = 211.80 WHERE [Code] = 'gmn' END +SET [Description] = 'Gimnime', [Definition] = NULL, [SortOrder] = 2127.00 WHERE [Code] = 'gmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnm', 'Ginuman', NULL, 211.90) END +VALUES ('gnm', 'Ginuman', NULL, 2128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ginuman', [Definition] = NULL, [SortOrder] = 211.90 WHERE [Code] = 'gnm' END +SET [Description] = 'Ginuman', [Definition] = NULL, [SortOrder] = 2128.00 WHERE [Code] = 'gnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayg', 'Ginyanga', NULL, 212.00) END +VALUES ('ayg', 'Ginyanga', NULL, 2129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ginyanga', [Definition] = NULL, [SortOrder] = 212.00 WHERE [Code] = 'ayg' END +SET [Description] = 'Ginyanga', [Definition] = NULL, [SortOrder] = 2129.00 WHERE [Code] = 'ayg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbr', 'Girawa', NULL, 212.10) END +VALUES ('bbr', 'Girawa', NULL, 2130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Girawa', [Definition] = NULL, [SortOrder] = 212.10 WHERE [Code] = 'bbr' END +SET [Description] = 'Girawa', [Definition] = NULL, [SortOrder] = 2130.00 WHERE [Code] = 'bbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gii', 'Girirra', NULL, 212.20) END +VALUES ('gii', 'Girirra', NULL, 2131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Girirra', [Definition] = NULL, [SortOrder] = 212.20 WHERE [Code] = 'gii' END +SET [Description] = 'Girirra', [Definition] = NULL, [SortOrder] = 2131.00 WHERE [Code] = 'gii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyf', 'Giryama', NULL, 212.30) END +VALUES ('nyf', 'Giryama', NULL, 2132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Giryama', [Definition] = NULL, [SortOrder] = 212.30 WHERE [Code] = 'nyf' END +SET [Description] = 'Giryama', [Definition] = NULL, [SortOrder] = 2132.00 WHERE [Code] = 'nyf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gih', 'Githabul', NULL, 212.40) END +VALUES ('gih', 'Githabul', NULL, 2133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Githabul', [Definition] = NULL, [SortOrder] = 212.40 WHERE [Code] = 'gih' END +SET [Description] = 'Githabul', [Definition] = NULL, [SortOrder] = 2133.00 WHERE [Code] = 'gih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toh', 'Gitonga', NULL, 212.50) END +VALUES ('toh', 'Gitonga', NULL, 2134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gitonga', [Definition] = NULL, [SortOrder] = 212.50 WHERE [Code] = 'toh' END +SET [Description] = 'Gitonga', [Definition] = NULL, [SortOrder] = 2134.00 WHERE [Code] = 'toh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggt', 'Gitua', NULL, 212.60) END +VALUES ('ggt', 'Gitua', NULL, 2135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gitua', [Definition] = NULL, [SortOrder] = 212.60 WHERE [Code] = 'ggt' END +SET [Description] = 'Gitua', [Definition] = NULL, [SortOrder] = 2135.00 WHERE [Code] = 'ggt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'git') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('git', 'Gitxsan', NULL, 212.70) END +VALUES ('git', 'Gitxsan', NULL, 2136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gitxsan', [Definition] = NULL, [SortOrder] = 212.70 WHERE [Code] = 'git' END +SET [Description] = 'Gitxsan', [Definition] = NULL, [SortOrder] = 2136.00 WHERE [Code] = 'git' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giy', 'Giyug', NULL, 212.80) END +VALUES ('giy', 'Giyug', NULL, 2137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Giyug', [Definition] = NULL, [SortOrder] = 212.80 WHERE [Code] = 'giy' END +SET [Description] = 'Giyug', [Definition] = NULL, [SortOrder] = 2137.00 WHERE [Code] = 'giy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tof', 'Gizrra', NULL, 212.90) END +VALUES ('tof', 'Gizrra', NULL, 2138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gizrra', [Definition] = NULL, [SortOrder] = 212.90 WHERE [Code] = 'tof' END +SET [Description] = 'Gizrra', [Definition] = NULL, [SortOrder] = 2138.00 WHERE [Code] = 'tof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glr', 'Glaro-Twabo', NULL, 213.00) END +VALUES ('glr', 'Glaro-Twabo', NULL, 2139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Glaro-Twabo', [Definition] = NULL, [SortOrder] = 213.00 WHERE [Code] = 'glr' END +SET [Description] = 'Glaro-Twabo', [Definition] = NULL, [SortOrder] = 2139.00 WHERE [Code] = 'glr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glw', 'Glavda', NULL, 213.10) END +VALUES ('glw', 'Glavda', NULL, 2140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Glavda', [Definition] = NULL, [SortOrder] = 213.10 WHERE [Code] = 'glw' END +SET [Description] = 'Glavda', [Definition] = NULL, [SortOrder] = 2140.00 WHERE [Code] = 'glw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oub', 'Glio-Oubi', NULL, 213.20) END +VALUES ('oub', 'Glio-Oubi', NULL, 2141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Glio-Oubi', [Definition] = NULL, [SortOrder] = 213.20 WHERE [Code] = 'oub' END +SET [Description] = 'Glio-Oubi', [Definition] = NULL, [SortOrder] = 2141.00 WHERE [Code] = 'oub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnu', 'Gnau', NULL, 213.30) END +VALUES ('gnu', 'Gnau', NULL, 2142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gnau', [Definition] = NULL, [SortOrder] = 213.30 WHERE [Code] = 'gnu' END +SET [Description] = 'Gnau', [Definition] = NULL, [SortOrder] = 2142.00 WHERE [Code] = 'gnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gom', 'Goan Konkani', NULL, 213.40) END +VALUES ('gom', 'Goan Konkani', NULL, 2143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goan Konkani', [Definition] = NULL, [SortOrder] = 213.40 WHERE [Code] = 'gom' END +SET [Description] = 'Goan Konkani', [Definition] = NULL, [SortOrder] = 2143.00 WHERE [Code] = 'gom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gig', 'Goaria', NULL, 213.50) END +VALUES ('gig', 'Goaria', NULL, 2144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goaria', [Definition] = NULL, [SortOrder] = 213.50 WHERE [Code] = 'gig' END +SET [Description] = 'Goaria', [Definition] = NULL, [SortOrder] = 2144.00 WHERE [Code] = 'gig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goi', 'Gobasi', NULL, 213.60) END +VALUES ('goi', 'Gobasi', NULL, 2145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gobasi', [Definition] = NULL, [SortOrder] = 213.60 WHERE [Code] = 'goi' END +SET [Description] = 'Gobasi', [Definition] = NULL, [SortOrder] = 2145.00 WHERE [Code] = 'goi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gox', 'Gobu', NULL, 213.70) END +VALUES ('gox', 'Gobu', NULL, 2146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gobu', [Definition] = NULL, [SortOrder] = 213.70 WHERE [Code] = 'gox' END +SET [Description] = 'Gobu', [Definition] = NULL, [SortOrder] = 2146.00 WHERE [Code] = 'gox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'god') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('god', 'Godié', NULL, 213.80) END +VALUES ('god', 'Godié', NULL, 2147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Godié', [Definition] = NULL, [SortOrder] = 213.80 WHERE [Code] = 'god' END +SET [Description] = 'Godié', [Definition] = NULL, [SortOrder] = 2147.00 WHERE [Code] = 'god' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdx', 'Godwari', NULL, 213.90) END +VALUES ('gdx', 'Godwari', NULL, 2148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Godwari', [Definition] = NULL, [SortOrder] = 213.90 WHERE [Code] = 'gdx' END +SET [Description] = 'Godwari', [Definition] = NULL, [SortOrder] = 2148.00 WHERE [Code] = 'gdx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ank') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ank', 'Goemai', NULL, 214.00) END +VALUES ('ank', 'Goemai', NULL, 2149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goemai', [Definition] = NULL, [SortOrder] = 214.00 WHERE [Code] = 'ank' END +SET [Description] = 'Goemai', [Definition] = NULL, [SortOrder] = 2149.00 WHERE [Code] = 'ank' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gof', 'Gofa', NULL, 214.10) END +VALUES ('gof', 'Gofa', NULL, 2150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gofa', [Definition] = NULL, [SortOrder] = 214.10 WHERE [Code] = 'gof' END +SET [Description] = 'Gofa', [Definition] = NULL, [SortOrder] = 2150.00 WHERE [Code] = 'gof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gog', 'Gogo', NULL, 214.20) END +VALUES ('gog', 'Gogo', NULL, 2151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gogo', [Definition] = NULL, [SortOrder] = 214.20 WHERE [Code] = 'gog' END +SET [Description] = 'Gogo', [Definition] = NULL, [SortOrder] = 2151.00 WHERE [Code] = 'gog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggw', 'Gogodala', NULL, 214.30) END +VALUES ('ggw', 'Gogodala', NULL, 2152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gogodala', [Definition] = NULL, [SortOrder] = 214.30 WHERE [Code] = 'ggw' END +SET [Description] = 'Gogodala', [Definition] = NULL, [SortOrder] = 2152.00 WHERE [Code] = 'ggw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gkn', 'Gokana', NULL, 214.40) END +VALUES ('gkn', 'Gokana', NULL, 2153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gokana', [Definition] = NULL, [SortOrder] = 214.40 WHERE [Code] = 'gkn' END +SET [Description] = 'Gokana', [Definition] = NULL, [SortOrder] = 2153.00 WHERE [Code] = 'gkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gol', 'Gola', NULL, 214.50) END +VALUES ('gol', 'Gola', NULL, 2154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gola', [Definition] = NULL, [SortOrder] = 214.50 WHERE [Code] = 'gol' END +SET [Description] = 'Gola', [Definition] = NULL, [SortOrder] = 2154.00 WHERE [Code] = 'gol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvf', 'Golin', NULL, 214.60) END +VALUES ('gvf', 'Golin', NULL, 2155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Golin', [Definition] = NULL, [SortOrder] = 214.60 WHERE [Code] = 'gvf' END +SET [Description] = 'Golin', [Definition] = NULL, [SortOrder] = 2155.00 WHERE [Code] = 'gvf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lja', 'Golpa', NULL, 214.70) END +VALUES ('lja', 'Golpa', NULL, 2156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Golpa', [Definition] = NULL, [SortOrder] = 214.70 WHERE [Code] = 'lja' END +SET [Description] = 'Golpa', [Definition] = NULL, [SortOrder] = 2156.00 WHERE [Code] = 'lja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gon', 'Gondi', NULL, 214.80) END +VALUES ('gon', 'Gondi', NULL, 2157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gondi', [Definition] = NULL, [SortOrder] = 214.80 WHERE [Code] = 'gon' END +SET [Description] = 'Gondi', [Definition] = NULL, [SortOrder] = 2157.00 WHERE [Code] = 'gon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goo', 'Gone Dau', NULL, 214.90) END +VALUES ('goo', 'Gone Dau', NULL, 2158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gone Dau', [Definition] = NULL, [SortOrder] = 214.90 WHERE [Code] = 'goo' END +SET [Description] = 'Gone Dau', [Definition] = NULL, [SortOrder] = 2158.00 WHERE [Code] = 'goo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goe', 'Gongduk', NULL, 215.00) END +VALUES ('goe', 'Gongduk', NULL, 2159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gongduk', [Definition] = NULL, [SortOrder] = 215.00 WHERE [Code] = 'goe' END +SET [Description] = 'Gongduk', [Definition] = NULL, [SortOrder] = 2159.00 WHERE [Code] = 'goe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gjn', 'Gonja', NULL, 215.10) END +VALUES ('gjn', 'Gonja', NULL, 2160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gonja', [Definition] = NULL, [SortOrder] = 215.10 WHERE [Code] = 'gjn' END +SET [Description] = 'Gonja', [Definition] = NULL, [SortOrder] = 2160.00 WHERE [Code] = 'gjn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gov', 'Goo', NULL, 215.20) END +VALUES ('gov', 'Goo', NULL, 2161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goo', [Definition] = NULL, [SortOrder] = 215.20 WHERE [Code] = 'gov' END +SET [Description] = 'Goo', [Definition] = NULL, [SortOrder] = 2161.00 WHERE [Code] = 'gov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gni', 'Gooniyandi', NULL, 215.30) END +VALUES ('gni', 'Gooniyandi', NULL, 2162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gooniyandi', [Definition] = NULL, [SortOrder] = 215.30 WHERE [Code] = 'gni' END +SET [Description] = 'Gooniyandi', [Definition] = NULL, [SortOrder] = 2162.00 WHERE [Code] = 'gni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqr', 'Gor', NULL, 215.40) END +VALUES ('gqr', 'Gor', NULL, 2163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gor', [Definition] = NULL, [SortOrder] = 215.40 WHERE [Code] = 'gqr' END +SET [Description] = 'Gor', [Definition] = NULL, [SortOrder] = 2163.00 WHERE [Code] = 'gqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goc', 'Gorakor', NULL, 215.50) END +VALUES ('goc', 'Gorakor', NULL, 2164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorakor', [Definition] = NULL, [SortOrder] = 215.50 WHERE [Code] = 'goc' END +SET [Description] = 'Gorakor', [Definition] = NULL, [SortOrder] = 2164.00 WHERE [Code] = 'goc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goq', 'Gorap', NULL, 215.60) END +VALUES ('goq', 'Gorap', NULL, 2165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorap', [Definition] = NULL, [SortOrder] = 215.60 WHERE [Code] = 'goq' END +SET [Description] = 'Gorap', [Definition] = NULL, [SortOrder] = 2165.00 WHERE [Code] = 'goq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgg', 'Goreng', NULL, 215.70) END +VALUES ('xgg', 'Goreng', NULL, 2166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goreng', [Definition] = NULL, [SortOrder] = 215.70 WHERE [Code] = 'xgg' END +SET [Description] = 'Goreng', [Definition] = NULL, [SortOrder] = 2166.00 WHERE [Code] = 'xgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gor', 'Gorontalo', NULL, 215.80) END +VALUES ('gor', 'Gorontalo', NULL, 2167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorontalo', [Definition] = NULL, [SortOrder] = 215.80 WHERE [Code] = 'gor' END +SET [Description] = 'Gorontalo', [Definition] = NULL, [SortOrder] = 2167.00 WHERE [Code] = 'gor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grq', 'Gorovu', NULL, 215.90) END +VALUES ('grq', 'Gorovu', NULL, 2168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorovu', [Definition] = NULL, [SortOrder] = 215.90 WHERE [Code] = 'grq' END +SET [Description] = 'Gorovu', [Definition] = NULL, [SortOrder] = 2168.00 WHERE [Code] = 'grq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gow', 'Gorowa', NULL, 216.00) END +VALUES ('gow', 'Gorowa', NULL, 2169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gorowa', [Definition] = NULL, [SortOrder] = 216.00 WHERE [Code] = 'gow' END +SET [Description] = 'Gorowa', [Definition] = NULL, [SortOrder] = 2169.00 WHERE [Code] = 'gow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'got') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('got', 'Gothic', NULL, 216.10) END +VALUES ('got', 'Gothic', NULL, 2170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gothic', [Definition] = NULL, [SortOrder] = 216.10 WHERE [Code] = 'got' END +SET [Description] = 'Gothic', [Definition] = NULL, [SortOrder] = 2170.00 WHERE [Code] = 'got' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goy', 'Goundo', NULL, 216.20) END +VALUES ('goy', 'Goundo', NULL, 2171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Goundo', [Definition] = NULL, [SortOrder] = 216.20 WHERE [Code] = 'goy' END +SET [Description] = 'Goundo', [Definition] = NULL, [SortOrder] = 2171.00 WHERE [Code] = 'goy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gux', 'Gourmanchéma', NULL, 216.30) END +VALUES ('gux', 'Gourmanchéma', NULL, 2172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gourmanchéma', [Definition] = NULL, [SortOrder] = 216.30 WHERE [Code] = 'gux' END +SET [Description] = 'Gourmanchéma', [Definition] = NULL, [SortOrder] = 2172.00 WHERE [Code] = 'gux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goj', 'Gowlan', NULL, 216.40) END +VALUES ('goj', 'Gowlan', NULL, 2173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gowlan', [Definition] = NULL, [SortOrder] = 216.40 WHERE [Code] = 'goj' END +SET [Description] = 'Gowlan', [Definition] = NULL, [SortOrder] = 2173.00 WHERE [Code] = 'goj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gok', 'Gowli', NULL, 216.50) END +VALUES ('gok', 'Gowli', NULL, 2174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gowli', [Definition] = NULL, [SortOrder] = 216.50 WHERE [Code] = 'gok' END +SET [Description] = 'Gowli', [Definition] = NULL, [SortOrder] = 2174.00 WHERE [Code] = 'gok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwf', 'Gowro', NULL, 216.60) END +VALUES ('gwf', 'Gowro', NULL, 2175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gowro', [Definition] = NULL, [SortOrder] = 216.60 WHERE [Code] = 'gwf' END +SET [Description] = 'Gowro', [Definition] = NULL, [SortOrder] = 2175.00 WHERE [Code] = 'gwf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goz', 'Gozarkhani', NULL, 216.70) END +VALUES ('goz', 'Gozarkhani', NULL, 2176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gozarkhani', [Definition] = NULL, [SortOrder] = 216.70 WHERE [Code] = 'goz' END +SET [Description] = 'Gozarkhani', [Definition] = NULL, [SortOrder] = 2176.00 WHERE [Code] = 'goz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nli', 'Grangali', NULL, 216.80) END +VALUES ('nli', 'Grangali', NULL, 2177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Grangali', [Definition] = NULL, [SortOrder] = 216.80 WHERE [Code] = 'nli' END +SET [Description] = 'Grangali', [Definition] = NULL, [SortOrder] = 2177.00 WHERE [Code] = 'nli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbk', 'Grass Koiari', NULL, 216.90) END +VALUES ('kbk', 'Grass Koiari', NULL, 2178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Grass Koiari', [Definition] = NULL, [SortOrder] = 216.90 WHERE [Code] = 'kbk' END +SET [Description] = 'Grass Koiari', [Definition] = NULL, [SortOrder] = 2178.00 WHERE [Code] = 'kbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grb', 'Grebo', NULL, 217.00) END +VALUES ('grb', 'Grebo', NULL, 2179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Grebo', [Definition] = NULL, [SortOrder] = 217.00 WHERE [Code] = 'grb' END +SET [Description] = 'Grebo', [Definition] = NULL, [SortOrder] = 2179.00 WHERE [Code] = 'grb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gss', 'Greek Sign Language', NULL, 217.10) END +VALUES ('gss', 'Greek Sign Language', NULL, 2180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Greek Sign Language', [Definition] = NULL, [SortOrder] = 217.10 WHERE [Code] = 'gss' END +SET [Description] = 'Greek Sign Language', [Definition] = NULL, [SortOrder] = 2180.00 WHERE [Code] = 'gss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giq', 'Green Gelao', NULL, 217.20) END +VALUES ('giq', 'Green Gelao', NULL, 2181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Green Gelao', [Definition] = NULL, [SortOrder] = 217.20 WHERE [Code] = 'giq' END +SET [Description] = 'Green Gelao', [Definition] = NULL, [SortOrder] = 2181.00 WHERE [Code] = 'giq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcl', 'Grenadian Creole English', NULL, 217.30) END +VALUES ('gcl', 'Grenadian Creole English', NULL, 2182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Grenadian Creole English', [Definition] = NULL, [SortOrder] = 217.30 WHERE [Code] = 'gcl' END +SET [Description] = 'Grenadian Creole English', [Definition] = NULL, [SortOrder] = 2182.00 WHERE [Code] = 'gcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grs', 'Gresi', NULL, 217.40) END +VALUES ('grs', 'Gresi', NULL, 2183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gresi', [Definition] = NULL, [SortOrder] = 217.40 WHERE [Code] = 'grs' END +SET [Description] = 'Gresi', [Definition] = NULL, [SortOrder] = 2183.00 WHERE [Code] = 'grs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gro', 'Groma', NULL, 217.50) END +VALUES ('gro', 'Groma', NULL, 2184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Groma', [Definition] = NULL, [SortOrder] = 217.50 WHERE [Code] = 'gro' END +SET [Description] = 'Groma', [Definition] = NULL, [SortOrder] = 2184.00 WHERE [Code] = 'gro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gos', 'Gronings', NULL, 217.60) END +VALUES ('gos', 'Gronings', NULL, 2185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gronings', [Definition] = NULL, [SortOrder] = 217.60 WHERE [Code] = 'gos' END +SET [Description] = 'Gronings', [Definition] = NULL, [SortOrder] = 2185.00 WHERE [Code] = 'gos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ats') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ats', 'Gros Ventre', NULL, 217.70) END +VALUES ('ats', 'Gros Ventre', NULL, 2186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gros Ventre', [Definition] = NULL, [SortOrder] = 217.70 WHERE [Code] = 'ats' END +SET [Description] = 'Gros Ventre', [Definition] = NULL, [SortOrder] = 2186.00 WHERE [Code] = 'ats' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwx', 'Gua', NULL, 217.80) END +VALUES ('gwx', 'Gua', NULL, 2187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gua', [Definition] = NULL, [SortOrder] = 217.80 WHERE [Code] = 'gwx' END +SET [Description] = 'Gua', [Definition] = NULL, [SortOrder] = 2187.00 WHERE [Code] = 'gwx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcf', 'Guadeloupean Creole French', NULL, 217.90) END +VALUES ('gcf', 'Guadeloupean Creole French', NULL, 2188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guadeloupean Creole French', [Definition] = NULL, [SortOrder] = 217.90 WHERE [Code] = 'gcf' END +SET [Description] = 'Guadeloupean Creole French', [Definition] = NULL, [SortOrder] = 2188.00 WHERE [Code] = 'gcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guh', 'Guahibo', NULL, 218.00) END +VALUES ('guh', 'Guahibo', NULL, 2189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guahibo', [Definition] = NULL, [SortOrder] = 218.00 WHERE [Code] = 'guh' END +SET [Description] = 'Guahibo', [Definition] = NULL, [SortOrder] = 2189.00 WHERE [Code] = 'guh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvj', 'Guajá', NULL, 218.10) END +VALUES ('gvj', 'Guajá', NULL, 2190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guajá', [Definition] = NULL, [SortOrder] = 218.10 WHERE [Code] = 'gvj' END +SET [Description] = 'Guajá', [Definition] = NULL, [SortOrder] = 2190.00 WHERE [Code] = 'gvj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gub', 'Guajajára', NULL, 218.20) END +VALUES ('gub', 'Guajajára', NULL, 2191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guajajára', [Definition] = NULL, [SortOrder] = 218.20 WHERE [Code] = 'gub' END +SET [Description] = 'Guajajára', [Definition] = NULL, [SortOrder] = 2191.00 WHERE [Code] = 'gub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gum', 'Guambiano', NULL, 218.30) END +VALUES ('gum', 'Guambiano', NULL, 2192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guambiano', [Definition] = NULL, [SortOrder] = 218.30 WHERE [Code] = 'gum' END +SET [Description] = 'Guambiano', [Definition] = NULL, [SortOrder] = 2192.00 WHERE [Code] = 'gum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqn', 'Guana (Brazil)', NULL, 218.40) END +VALUES ('gqn', 'Guana (Brazil)', NULL, 2193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guana (Brazil)', [Definition] = NULL, [SortOrder] = 218.40 WHERE [Code] = 'gqn' END +SET [Description] = 'Guana (Brazil)', [Definition] = NULL, [SortOrder] = 2193.00 WHERE [Code] = 'gqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gva', 'Guana (Paraguay)', NULL, 218.50) END +VALUES ('gva', 'Guana (Paraguay)', NULL, 2194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guana (Paraguay)', [Definition] = NULL, [SortOrder] = 218.50 WHERE [Code] = 'gva' END +SET [Description] = 'Guana (Paraguay)', [Definition] = NULL, [SortOrder] = 2194.00 WHERE [Code] = 'gva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvc', 'Guanano', NULL, 218.60) END +VALUES ('gvc', 'Guanano', NULL, 2195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guanano', [Definition] = NULL, [SortOrder] = 218.60 WHERE [Code] = 'gvc' END +SET [Description] = 'Guanano', [Definition] = NULL, [SortOrder] = 2195.00 WHERE [Code] = 'gvc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnc', 'Guanche', NULL, 218.70) END +VALUES ('gnc', 'Guanche', NULL, 2196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guanche', [Definition] = NULL, [SortOrder] = 218.70 WHERE [Code] = 'gnc' END +SET [Description] = 'Guanche', [Definition] = NULL, [SortOrder] = 2196.00 WHERE [Code] = 'gnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jiq', 'Guanyinqiao', NULL, 218.80) END +VALUES ('jiq', 'Guanyinqiao', NULL, 2197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guanyinqiao', [Definition] = NULL, [SortOrder] = 218.80 WHERE [Code] = 'jiq' END +SET [Description] = 'Guanyinqiao', [Definition] = NULL, [SortOrder] = 2197.00 WHERE [Code] = 'jiq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grn', 'Guarani', NULL, 218.90) END +VALUES ('grn', 'Guarani', NULL, 2198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guarani', [Definition] = NULL, [SortOrder] = 218.90 WHERE [Code] = 'grn' END +SET [Description] = 'Guarani', [Definition] = NULL, [SortOrder] = 2198.00 WHERE [Code] = 'grn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyr', 'Guarayu', NULL, 219.00) END +VALUES ('gyr', 'Guarayu', NULL, 2199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guarayu', [Definition] = NULL, [SortOrder] = 219.00 WHERE [Code] = 'gyr' END +SET [Description] = 'Guarayu', [Definition] = NULL, [SortOrder] = 2199.00 WHERE [Code] = 'gyr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gae', 'Guarequena', NULL, 219.10) END +VALUES ('gae', 'Guarequena', NULL, 2200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guarequena', [Definition] = NULL, [SortOrder] = 219.10 WHERE [Code] = 'gae' END +SET [Description] = 'Guarequena', [Definition] = NULL, [SortOrder] = 2200.00 WHERE [Code] = 'gae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsm', 'Guatemalan Sign Language', NULL, 219.20) END +VALUES ('gsm', 'Guatemalan Sign Language', NULL, 2201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guatemalan Sign Language', [Definition] = NULL, [SortOrder] = 219.20 WHERE [Code] = 'gsm' END +SET [Description] = 'Guatemalan Sign Language', [Definition] = NULL, [SortOrder] = 2201.00 WHERE [Code] = 'gsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gta', 'Guató', NULL, 219.30) END +VALUES ('gta', 'Guató', NULL, 2202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guató', [Definition] = NULL, [SortOrder] = 219.30 WHERE [Code] = 'gta' END +SET [Description] = 'Guató', [Definition] = NULL, [SortOrder] = 2202.00 WHERE [Code] = 'gta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guo', 'Guayabero', NULL, 219.40) END +VALUES ('guo', 'Guayabero', NULL, 2203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guayabero', [Definition] = NULL, [SortOrder] = 219.40 WHERE [Code] = 'guo' END +SET [Description] = 'Guayabero', [Definition] = NULL, [SortOrder] = 2203.00 WHERE [Code] = 'guo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgd', 'Gudang', NULL, 219.50) END +VALUES ('xgd', 'Gudang', NULL, 2204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gudang', [Definition] = NULL, [SortOrder] = 219.50 WHERE [Code] = 'xgd' END +SET [Description] = 'Gudang', [Definition] = NULL, [SortOrder] = 2204.00 WHERE [Code] = 'xgd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nji', 'Gudanji', NULL, 219.60) END +VALUES ('nji', 'Gudanji', NULL, 2205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gudanji', [Definition] = NULL, [SortOrder] = 219.60 WHERE [Code] = 'nji' END +SET [Description] = 'Gudanji', [Definition] = NULL, [SortOrder] = 2205.00 WHERE [Code] = 'nji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gde', 'Gude', NULL, 219.70) END +VALUES ('gde', 'Gude', NULL, 2206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gude', [Definition] = NULL, [SortOrder] = 219.70 WHERE [Code] = 'gde' END +SET [Description] = 'Gude', [Definition] = NULL, [SortOrder] = 2206.00 WHERE [Code] = 'gde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdu', 'Gudu', NULL, 219.80) END +VALUES ('gdu', 'Gudu', NULL, 2207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gudu', [Definition] = NULL, [SortOrder] = 219.80 WHERE [Code] = 'gdu' END +SET [Description] = 'Gudu', [Definition] = NULL, [SortOrder] = 2207.00 WHERE [Code] = 'gdu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdf', 'Guduf-Gava', NULL, 219.90) END +VALUES ('gdf', 'Guduf-Gava', NULL, 2208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guduf-Gava', [Definition] = NULL, [SortOrder] = 219.90 WHERE [Code] = 'gdf' END +SET [Description] = 'Guduf-Gava', [Definition] = NULL, [SortOrder] = 2208.00 WHERE [Code] = 'gdf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amu', 'Guerrero Amuzgo', NULL, 220.00) END +VALUES ('amu', 'Guerrero Amuzgo', NULL, 2209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guerrero Amuzgo', [Definition] = NULL, [SortOrder] = 220.00 WHERE [Code] = 'amu' END +SET [Description] = 'Guerrero Amuzgo', [Definition] = NULL, [SortOrder] = 2209.00 WHERE [Code] = 'amu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngu', 'Guerrero Nahuatl', NULL, 220.10) END +VALUES ('ngu', 'Guerrero Nahuatl', NULL, 2210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guerrero Nahuatl', [Definition] = NULL, [SortOrder] = 220.10 WHERE [Code] = 'ngu' END +SET [Description] = 'Guerrero Nahuatl', [Definition] = NULL, [SortOrder] = 2210.00 WHERE [Code] = 'ngu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpg', 'Guevea De Humboldt Zapotec', NULL, 220.20) END +VALUES ('zpg', 'Guevea De Humboldt Zapotec', NULL, 2211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guevea De Humboldt Zapotec', [Definition] = NULL, [SortOrder] = 220.20 WHERE [Code] = 'zpg' END +SET [Description] = 'Guevea De Humboldt Zapotec', [Definition] = NULL, [SortOrder] = 2211.00 WHERE [Code] = 'zpg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggd', 'Gugadj', NULL, 220.30) END +VALUES ('ggd', 'Gugadj', NULL, 2212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gugadj', [Definition] = NULL, [SortOrder] = 220.30 WHERE [Code] = 'ggd' END +SET [Description] = 'Gugadj', [Definition] = NULL, [SortOrder] = 2212.00 WHERE [Code] = 'ggd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdc', 'Gugu Badhun', NULL, 220.40) END +VALUES ('gdc', 'Gugu Badhun', NULL, 2213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gugu Badhun', [Definition] = NULL, [SortOrder] = 220.40 WHERE [Code] = 'gdc' END +SET [Description] = 'Gugu Badhun', [Definition] = NULL, [SortOrder] = 2213.00 WHERE [Code] = 'gdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrw', 'Gugu Warra', NULL, 220.50) END +VALUES ('wrw', 'Gugu Warra', NULL, 2214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gugu Warra', [Definition] = NULL, [SortOrder] = 220.50 WHERE [Code] = 'wrw' END +SET [Description] = 'Gugu Warra', [Definition] = NULL, [SortOrder] = 2214.00 WHERE [Code] = 'wrw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkp', 'Gugubera', NULL, 220.60) END +VALUES ('kkp', 'Gugubera', NULL, 2215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gugubera', [Definition] = NULL, [SortOrder] = 220.60 WHERE [Code] = 'kkp' END +SET [Description] = 'Gugubera', [Definition] = NULL, [SortOrder] = 2215.00 WHERE [Code] = 'kkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghs', 'Guhu-Samane', NULL, 220.70) END +VALUES ('ghs', 'Guhu-Samane', NULL, 2216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guhu-Samane', [Definition] = NULL, [SortOrder] = 220.70 WHERE [Code] = 'ghs' END +SET [Description] = 'Guhu-Samane', [Definition] = NULL, [SortOrder] = 2216.00 WHERE [Code] = 'ghs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcr', 'Guianese Creole French', NULL, 220.80) END +VALUES ('gcr', 'Guianese Creole French', NULL, 2217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guianese Creole French', [Definition] = NULL, [SortOrder] = 220.80 WHERE [Code] = 'gcr' END +SET [Description] = 'Guianese Creole French', [Definition] = NULL, [SortOrder] = 2217.00 WHERE [Code] = 'gcr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgb', 'Guibei Zhuang', NULL, 220.90) END +VALUES ('zgb', 'Guibei Zhuang', NULL, 2218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guibei Zhuang', [Definition] = NULL, [SortOrder] = 220.90 WHERE [Code] = 'zgb' END +SET [Description] = 'Guibei Zhuang', [Definition] = NULL, [SortOrder] = 2218.00 WHERE [Code] = 'zgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bet', 'Guiberoua Béte', NULL, 221.00) END +VALUES ('bet', 'Guiberoua Béte', NULL, 2219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guiberoua Béte', [Definition] = NULL, [SortOrder] = 221.00 WHERE [Code] = 'bet' END +SET [Description] = 'Guiberoua Béte', [Definition] = NULL, [SortOrder] = 2219.00 WHERE [Code] = 'bet' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgn', 'Guibian Zhuang', NULL, 221.10) END +VALUES ('zgn', 'Guibian Zhuang', NULL, 2220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guibian Zhuang', [Definition] = NULL, [SortOrder] = 221.10 WHERE [Code] = 'zgn' END +SET [Description] = 'Guibian Zhuang', [Definition] = NULL, [SortOrder] = 2220.00 WHERE [Code] = 'zgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztu', 'Güilá Zapotec', NULL, 221.20) END +VALUES ('ztu', 'Güilá Zapotec', NULL, 2221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Güilá Zapotec', [Definition] = NULL, [SortOrder] = 221.20 WHERE [Code] = 'ztu' END +SET [Description] = 'Güilá Zapotec', [Definition] = NULL, [SortOrder] = 2221.00 WHERE [Code] = 'ztu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gkp', 'Guinea Kpelle', NULL, 221.30) END +VALUES ('gkp', 'Guinea Kpelle', NULL, 2222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guinea Kpelle', [Definition] = NULL, [SortOrder] = 221.30 WHERE [Code] = 'gkp' END +SET [Description] = 'Guinea Kpelle', [Definition] = NULL, [SortOrder] = 2222.00 WHERE [Code] = 'gkp' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('lgs', 'Guinea-Bissau Sign Language', NULL, 2223.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Guinea-Bissau Sign Language', [Definition] = NULL, [SortOrder] = 2223.00 WHERE [Code] = 'lgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gus', 'Guinean Sign Language', NULL, 221.40) END +VALUES ('gus', 'Guinean Sign Language', NULL, 2224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guinean Sign Language', [Definition] = NULL, [SortOrder] = 221.40 WHERE [Code] = 'gus' END +SET [Description] = 'Guinean Sign Language', [Definition] = NULL, [SortOrder] = 2224.00 WHERE [Code] = 'gus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqi', 'Guiqiong', NULL, 221.50) END +VALUES ('gqi', 'Guiqiong', NULL, 2225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guiqiong', [Definition] = NULL, [SortOrder] = 221.50 WHERE [Code] = 'gqi' END +SET [Description] = 'Guiqiong', [Definition] = NULL, [SortOrder] = 2225.00 WHERE [Code] = 'gqi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guj', 'Gujarati', NULL, 221.60) END +VALUES ('guj', 'Gujarati', NULL, 2226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gujarati', [Definition] = NULL, [SortOrder] = 221.60 WHERE [Code] = 'guj' END +SET [Description] = 'Gujarati', [Definition] = NULL, [SortOrder] = 2226.00 WHERE [Code] = 'guj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gju', 'Gujari', NULL, 221.70) END +VALUES ('gju', 'Gujari', NULL, 2227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gujari', [Definition] = NULL, [SortOrder] = 221.70 WHERE [Code] = 'gju' END +SET [Description] = 'Gujari', [Definition] = NULL, [SortOrder] = 2227.00 WHERE [Code] = 'gju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcm', 'Gula (Central African Republic)', NULL, 221.80) END +VALUES ('kcm', 'Gula (Central African Republic)', NULL, 2228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gula (Central African Republic)', [Definition] = NULL, [SortOrder] = 221.80 WHERE [Code] = 'kcm' END +SET [Description] = 'Gula (Central African Republic)', [Definition] = NULL, [SortOrder] = 2228.00 WHERE [Code] = 'kcm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glu', 'Gula (Chad)', NULL, 221.90) END +VALUES ('glu', 'Gula (Chad)', NULL, 2229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gula (Chad)', [Definition] = NULL, [SortOrder] = 221.90 WHERE [Code] = 'glu' END +SET [Description] = 'Gula (Chad)', [Definition] = NULL, [SortOrder] = 2229.00 WHERE [Code] = 'glu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glj', 'Gula Iro', NULL, 222.00) END +VALUES ('glj', 'Gula Iro', NULL, 2230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gula Iro', [Definition] = NULL, [SortOrder] = 222.00 WHERE [Code] = 'glj' END +SET [Description] = 'Gula Iro', [Definition] = NULL, [SortOrder] = 2230.00 WHERE [Code] = 'glj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmb', 'Gula''alaa', NULL, 222.10) END +VALUES ('gmb', 'Gula''alaa', NULL, 2231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gula''alaa', [Definition] = NULL, [SortOrder] = 222.10 WHERE [Code] = 'gmb' END +SET [Description] = 'Gula''alaa', [Definition] = NULL, [SortOrder] = 2231.00 WHERE [Code] = 'gmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvl', 'Gulay', NULL, 222.20) END +VALUES ('gvl', 'Gulay', NULL, 2232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gulay', [Definition] = NULL, [SortOrder] = 222.20 WHERE [Code] = 'gvl' END +SET [Description] = 'Gulay', [Definition] = NULL, [SortOrder] = 2232.00 WHERE [Code] = 'gvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gly', 'Gule', NULL, 222.30) END +VALUES ('gly', 'Gule', NULL, 2233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gule', [Definition] = NULL, [SortOrder] = 222.30 WHERE [Code] = 'gly' END +SET [Description] = 'Gule', [Definition] = NULL, [SortOrder] = 2233.00 WHERE [Code] = 'gly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afb', 'Gulf Arabic', NULL, 222.40) END +VALUES ('afb', 'Gulf Arabic', NULL, 2234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gulf Arabic', [Definition] = NULL, [SortOrder] = 222.40 WHERE [Code] = 'afb' END +SET [Description] = 'Gulf Arabic', [Definition] = NULL, [SortOrder] = 2234.00 WHERE [Code] = 'afb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmu', 'Gumalu', NULL, 222.50) END +VALUES ('gmu', 'Gumalu', NULL, 2235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gumalu', [Definition] = NULL, [SortOrder] = 222.50 WHERE [Code] = 'gmu' END +SET [Description] = 'Gumalu', [Definition] = NULL, [SortOrder] = 2235.00 WHERE [Code] = 'gmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnn', 'Gumatj', NULL, 222.60) END +VALUES ('gnn', 'Gumatj', NULL, 2236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gumatj', [Definition] = NULL, [SortOrder] = 222.60 WHERE [Code] = 'gnn' END +SET [Description] = 'Gumatj', [Definition] = NULL, [SortOrder] = 2236.00 WHERE [Code] = 'gnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvs', 'Gumawana', NULL, 222.70) END +VALUES ('gvs', 'Gumawana', NULL, 2237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gumawana', [Definition] = NULL, [SortOrder] = 222.70 WHERE [Code] = 'gvs' END +SET [Description] = 'Gumawana', [Definition] = NULL, [SortOrder] = 2237.00 WHERE [Code] = 'gvs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guk', 'Gumuz', NULL, 222.80) END +VALUES ('guk', 'Gumuz', NULL, 2238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gumuz', [Definition] = NULL, [SortOrder] = 222.80 WHERE [Code] = 'guk' END +SET [Description] = 'Gumuz', [Definition] = NULL, [SortOrder] = 2238.00 WHERE [Code] = 'guk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guw', 'Gun', NULL, 222.90) END +VALUES ('guw', 'Gun', NULL, 2239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gun', [Definition] = NULL, [SortOrder] = 222.90 WHERE [Code] = 'guw' END +SET [Description] = 'Gun', [Definition] = NULL, [SortOrder] = 2239.00 WHERE [Code] = 'guw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdi', 'Gundi', NULL, 223.00) END +VALUES ('gdi', 'Gundi', NULL, 2240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gundi', [Definition] = NULL, [SortOrder] = 223.00 WHERE [Code] = 'gdi' END +SET [Description] = 'Gundi', [Definition] = NULL, [SortOrder] = 2240.00 WHERE [Code] = 'gdi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gjm', 'Gunditjmara', NULL, 223.10) END +VALUES ('gjm', 'Gunditjmara', NULL, 2241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gunditjmara', [Definition] = NULL, [SortOrder] = 223.10 WHERE [Code] = 'gjm' END +SET [Description] = 'Gunditjmara', [Definition] = NULL, [SortOrder] = 2241.00 WHERE [Code] = 'gjm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrd', 'Gundungurra', NULL, 223.20) END +VALUES ('xrd', 'Gundungurra', NULL, 2242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gundungurra', [Definition] = NULL, [SortOrder] = 223.20 WHERE [Code] = 'xrd' END +SET [Description] = 'Gundungurra', [Definition] = NULL, [SortOrder] = 2242.00 WHERE [Code] = 'xrd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyf', 'Gungabula', NULL, 223.30) END +VALUES ('gyf', 'Gungabula', NULL, 2243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gungabula', [Definition] = NULL, [SortOrder] = 223.30 WHERE [Code] = 'gyf' END +SET [Description] = 'Gungabula', [Definition] = NULL, [SortOrder] = 2243.00 WHERE [Code] = 'gyf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rub', 'Gungu', NULL, 223.40) END +VALUES ('rub', 'Gungu', NULL, 2244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gungu', [Definition] = NULL, [SortOrder] = 223.40 WHERE [Code] = 'rub' END +SET [Description] = 'Gungu', [Definition] = NULL, [SortOrder] = 2244.00 WHERE [Code] = 'rub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnt', 'Guntai', NULL, 223.50) END +VALUES ('gnt', 'Guntai', NULL, 2245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guntai', [Definition] = NULL, [SortOrder] = 223.50 WHERE [Code] = 'gnt' END +SET [Description] = 'Guntai', [Definition] = NULL, [SortOrder] = 2245.00 WHERE [Code] = 'gnt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gup', 'Gunwinggu', NULL, 223.60) END +VALUES ('gup', 'Gunwinggu', NULL, 2246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gunwinggu', [Definition] = NULL, [SortOrder] = 223.60 WHERE [Code] = 'gup' END +SET [Description] = 'Gunwinggu', [Definition] = NULL, [SortOrder] = 2246.00 WHERE [Code] = 'gup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyy', 'Gunya', NULL, 223.70) END +VALUES ('gyy', 'Gunya', NULL, 2247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gunya', [Definition] = NULL, [SortOrder] = 223.70 WHERE [Code] = 'gyy' END +SET [Description] = 'Gunya', [Definition] = NULL, [SortOrder] = 2247.00 WHERE [Code] = 'gyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gpa', 'Gupa-Abawa', NULL, 223.80) END +VALUES ('gpa', 'Gupa-Abawa', NULL, 2248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gupa-Abawa', [Definition] = NULL, [SortOrder] = 223.80 WHERE [Code] = 'gpa' END +SET [Description] = 'Gupa-Abawa', [Definition] = NULL, [SortOrder] = 2248.00 WHERE [Code] = 'gpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guf', 'Gupapuyngu', NULL, 223.90) END +VALUES ('guf', 'Gupapuyngu', NULL, 2249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gupapuyngu', [Definition] = NULL, [SortOrder] = 223.90 WHERE [Code] = 'guf' END +SET [Description] = 'Gupapuyngu', [Definition] = NULL, [SortOrder] = 2249.00 WHERE [Code] = 'guf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grz', 'Guramalum', NULL, 224.00) END +VALUES ('grz', 'Guramalum', NULL, 2250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guramalum', [Definition] = NULL, [SortOrder] = 224.00 WHERE [Code] = 'grz' END +SET [Description] = 'Guramalum', [Definition] = NULL, [SortOrder] = 2250.00 WHERE [Code] = 'grz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hac', 'Gurani', NULL, 224.10) END +VALUES ('hac', 'Gurani', NULL, 2251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurani', [Definition] = NULL, [SortOrder] = 224.10 WHERE [Code] = 'hac' END +SET [Description] = 'Gurani', [Definition] = NULL, [SortOrder] = 2251.00 WHERE [Code] = 'hac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdj', 'Gurdjar', NULL, 224.20) END +VALUES ('gdj', 'Gurdjar', NULL, 2252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurdjar', [Definition] = NULL, [SortOrder] = 224.20 WHERE [Code] = 'gdj' END +SET [Description] = 'Gurdjar', [Definition] = NULL, [SortOrder] = 2252.00 WHERE [Code] = 'gdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnr', 'Gureng Gureng', NULL, 224.30) END +VALUES ('gnr', 'Gureng Gureng', NULL, 2253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gureng Gureng', [Definition] = NULL, [SortOrder] = 224.30 WHERE [Code] = 'gnr' END +SET [Description] = 'Gureng Gureng', [Definition] = NULL, [SortOrder] = 2253.00 WHERE [Code] = 'gnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggg', 'Gurgula', NULL, 224.40) END +VALUES ('ggg', 'Gurgula', NULL, 2254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurgula', [Definition] = NULL, [SortOrder] = 224.40 WHERE [Code] = 'ggg' END +SET [Description] = 'Gurgula', [Definition] = NULL, [SortOrder] = 2254.00 WHERE [Code] = 'ggg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grx', 'Guriaso', NULL, 224.50) END +VALUES ('grx', 'Guriaso', NULL, 2255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guriaso', [Definition] = NULL, [SortOrder] = 224.50 WHERE [Code] = 'grx' END +SET [Description] = 'Guriaso', [Definition] = NULL, [SortOrder] = 2255.00 WHERE [Code] = 'grx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gue', 'Gurindji', NULL, 224.60) END +VALUES ('gue', 'Gurindji', NULL, 2256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurindji', [Definition] = NULL, [SortOrder] = 224.60 WHERE [Code] = 'gue' END +SET [Description] = 'Gurindji', [Definition] = NULL, [SortOrder] = 2256.00 WHERE [Code] = 'gue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gjr', 'Gurindji Kriol', NULL, 224.70) END +VALUES ('gjr', 'Gurindji Kriol', NULL, 2257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurindji Kriol', [Definition] = NULL, [SortOrder] = 224.70 WHERE [Code] = 'gjr' END +SET [Description] = 'Gurindji Kriol', [Definition] = NULL, [SortOrder] = 2257.00 WHERE [Code] = 'gjr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvm', 'Gurmana', NULL, 224.80) END +VALUES ('gvm', 'Gurmana', NULL, 2258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurmana', [Definition] = NULL, [SortOrder] = 224.80 WHERE [Code] = 'gvm' END +SET [Description] = 'Gurmana', [Definition] = NULL, [SortOrder] = 2258.00 WHERE [Code] = 'gvm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goa', 'Guro', NULL, 224.90) END +VALUES ('goa', 'Guro', NULL, 2259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guro', [Definition] = NULL, [SortOrder] = 224.90 WHERE [Code] = 'goa' END +SET [Description] = 'Guro', [Definition] = NULL, [SortOrder] = 2259.00 WHERE [Code] = 'goa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gge', 'Gurr-goni', NULL, 225.00) END +VALUES ('gge', 'Gurr-goni', NULL, 2260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurr-goni', [Definition] = NULL, [SortOrder] = 225.00 WHERE [Code] = 'gge' END +SET [Description] = 'Gurr-goni', [Definition] = NULL, [SortOrder] = 2260.00 WHERE [Code] = 'gge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvr', 'Gurung', NULL, 225.10) END +VALUES ('gvr', 'Gurung', NULL, 2261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gurung', [Definition] = NULL, [SortOrder] = 225.10 WHERE [Code] = 'gvr' END +SET [Description] = 'Gurung', [Definition] = NULL, [SortOrder] = 2261.00 WHERE [Code] = 'gvr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grd', 'Guruntum-Mbaaru', NULL, 225.20) END +VALUES ('grd', 'Guruntum-Mbaaru', NULL, 2262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guruntum-Mbaaru', [Definition] = NULL, [SortOrder] = 225.20 WHERE [Code] = 'grd' END +SET [Description] = 'Guruntum-Mbaaru', [Definition] = NULL, [SortOrder] = 2262.00 WHERE [Code] = 'grd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guz', 'Gusii', NULL, 225.30) END +VALUES ('guz', 'Gusii', NULL, 2263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gusii', [Definition] = NULL, [SortOrder] = 225.30 WHERE [Code] = 'guz' END +SET [Description] = 'Gusii', [Definition] = NULL, [SortOrder] = 2263.00 WHERE [Code] = 'guz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsl', 'Gusilay', NULL, 225.40) END +VALUES ('gsl', 'Gusilay', NULL, 2264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gusilay', [Definition] = NULL, [SortOrder] = 225.40 WHERE [Code] = 'gsl' END +SET [Description] = 'Gusilay', [Definition] = NULL, [SortOrder] = 2264.00 WHERE [Code] = 'gsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kky', 'Guugu Yimidhirr', NULL, 225.50) END +VALUES ('kky', 'Guugu Yimidhirr', NULL, 2265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guugu Yimidhirr', [Definition] = NULL, [SortOrder] = 225.50 WHERE [Code] = 'kky' END +SET [Description] = 'Guugu Yimidhirr', [Definition] = NULL, [SortOrder] = 2265.00 WHERE [Code] = 'kky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgw', 'Guwa', NULL, 225.60) END +VALUES ('xgw', 'Guwa', NULL, 2266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guwa', [Definition] = NULL, [SortOrder] = 225.60 WHERE [Code] = 'xgw' END +SET [Description] = 'Guwa', [Definition] = NULL, [SortOrder] = 2266.00 WHERE [Code] = 'xgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwu', 'Guwamu', NULL, 225.70) END +VALUES ('gwu', 'Guwamu', NULL, 2267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guwamu', [Definition] = NULL, [SortOrder] = 225.70 WHERE [Code] = 'gwu' END +SET [Description] = 'Guwamu', [Definition] = NULL, [SortOrder] = 2267.00 WHERE [Code] = 'gwu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gka', 'Guya', NULL, 225.80) END +VALUES ('gka', 'Guya', NULL, 2268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guya', [Definition] = NULL, [SortOrder] = 225.80 WHERE [Code] = 'gka' END +SET [Description] = 'Guya', [Definition] = NULL, [SortOrder] = 2268.00 WHERE [Code] = 'gka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyn', 'Guyanese Creole English', NULL, 225.90) END +VALUES ('gyn', 'Guyanese Creole English', NULL, 2269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guyanese Creole English', [Definition] = NULL, [SortOrder] = 225.90 WHERE [Code] = 'gyn' END +SET [Description] = 'Guyanese Creole English', [Definition] = NULL, [SortOrder] = 2269.00 WHERE [Code] = 'gyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvy', 'Guyani', NULL, 226.00) END +VALUES ('gvy', 'Guyani', NULL, 2270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Guyani', [Definition] = NULL, [SortOrder] = 226.00 WHERE [Code] = 'gvy' END +SET [Description] = 'Guyani', [Definition] = NULL, [SortOrder] = 2270.00 WHERE [Code] = 'gvy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngs', 'Gvoko', NULL, 226.10) END +VALUES ('ngs', 'Gvoko', NULL, 2271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gvoko', [Definition] = NULL, [SortOrder] = 226.10 WHERE [Code] = 'ngs' END +SET [Description] = 'Gvoko', [Definition] = NULL, [SortOrder] = 2271.00 WHERE [Code] = 'ngs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwb', 'Gwa', NULL, 226.20) END +VALUES ('gwb', 'Gwa', NULL, 2272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwa', [Definition] = NULL, [SortOrder] = 226.20 WHERE [Code] = 'gwb' END +SET [Description] = 'Gwa', [Definition] = NULL, [SortOrder] = 2272.00 WHERE [Code] = 'gwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dah', 'Gwahatike', NULL, 226.30) END +VALUES ('dah', 'Gwahatike', NULL, 2273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwahatike', [Definition] = NULL, [SortOrder] = 226.30 WHERE [Code] = 'dah' END +SET [Description] = 'Gwahatike', [Definition] = NULL, [SortOrder] = 2273.00 WHERE [Code] = 'dah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jgk', 'Gwak', NULL, 226.40) END +VALUES ('jgk', 'Gwak', NULL, 2274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwak', [Definition] = NULL, [SortOrder] = 226.40 WHERE [Code] = 'jgk' END +SET [Description] = 'Gwak', [Definition] = NULL, [SortOrder] = 2274.00 WHERE [Code] = 'jgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bga', 'Gwamhi-Wuri', NULL, 226.50) END +VALUES ('bga', 'Gwamhi-Wuri', NULL, 2275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwamhi-Wuri', [Definition] = NULL, [SortOrder] = 226.50 WHERE [Code] = 'bga' END +SET [Description] = 'Gwamhi-Wuri', [Definition] = NULL, [SortOrder] = 2275.00 WHERE [Code] = 'bga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwn', 'Gwandara', NULL, 226.60) END +VALUES ('gwn', 'Gwandara', NULL, 2276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwandara', [Definition] = NULL, [SortOrder] = 226.60 WHERE [Code] = 'gwn' END +SET [Description] = 'Gwandara', [Definition] = NULL, [SortOrder] = 2276.00 WHERE [Code] = 'gwn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grw', 'Gweda', NULL, 226.70) END +VALUES ('grw', 'Gweda', NULL, 2277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gweda', [Definition] = NULL, [SortOrder] = 226.70 WHERE [Code] = 'grw' END +SET [Description] = 'Gweda', [Definition] = NULL, [SortOrder] = 2277.00 WHERE [Code] = 'grw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwe', 'Gweno', NULL, 226.80) END +VALUES ('gwe', 'Gweno', NULL, 2278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gweno', [Definition] = NULL, [SortOrder] = 226.80 WHERE [Code] = 'gwe' END +SET [Description] = 'Gweno', [Definition] = NULL, [SortOrder] = 2278.00 WHERE [Code] = 'gwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwr', 'Gwere', NULL, 226.90) END +VALUES ('gwr', 'Gwere', NULL, 2279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwere', [Definition] = NULL, [SortOrder] = 226.90 WHERE [Code] = 'gwr' END +SET [Description] = 'Gwere', [Definition] = NULL, [SortOrder] = 2279.00 WHERE [Code] = 'gwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwi', 'Gwich''in', NULL, 227.00) END +VALUES ('gwi', 'Gwich''in', NULL, 2280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gwich''in', [Definition] = NULL, [SortOrder] = 227.00 WHERE [Code] = 'gwi' END +SET [Description] = 'Gwich''in', [Definition] = NULL, [SortOrder] = 2280.00 WHERE [Code] = 'gwi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyo', 'Gyalsumdo', NULL, 227.10) END +VALUES ('gyo', 'Gyalsumdo', NULL, 2281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gyalsumdo', [Definition] = NULL, [SortOrder] = 227.10 WHERE [Code] = 'gyo' END +SET [Description] = 'Gyalsumdo', [Definition] = NULL, [SortOrder] = 2281.00 WHERE [Code] = 'gyo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyi', 'Gyele', NULL, 227.20) END +VALUES ('gyi', 'Gyele', NULL, 2282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gyele', [Definition] = NULL, [SortOrder] = 227.20 WHERE [Code] = 'gyi' END +SET [Description] = 'Gyele', [Definition] = NULL, [SortOrder] = 2282.00 WHERE [Code] = 'gyi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gye', 'Gyem', NULL, 227.30) END +VALUES ('gye', 'Gyem', NULL, 2283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Gyem', [Definition] = NULL, [SortOrder] = 227.30 WHERE [Code] = 'gye' END +SET [Description] = 'Gyem', [Definition] = NULL, [SortOrder] = 2283.00 WHERE [Code] = 'gye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haq', 'Ha', NULL, 227.40) END +VALUES ('haq', 'Ha', NULL, 2284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ha', [Definition] = NULL, [SortOrder] = 227.40 WHERE [Code] = 'haq' END +SET [Description] = 'Ha', [Definition] = NULL, [SortOrder] = 2284.00 WHERE [Code] = 'haq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbu', 'Habu', NULL, 227.50) END +VALUES ('hbu', 'Habu', NULL, 2285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Habu', [Definition] = NULL, [SortOrder] = 227.50 WHERE [Code] = 'hbu' END +SET [Description] = 'Habu', [Definition] = NULL, [SortOrder] = 2285.00 WHERE [Code] = 'hbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hdy', 'Hadiyya', NULL, 227.60) END +VALUES ('hdy', 'Hadiyya', NULL, 2286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadiyya', [Definition] = NULL, [SortOrder] = 227.60 WHERE [Code] = 'hdy' END +SET [Description] = 'Hadiyya', [Definition] = NULL, [SortOrder] = 2286.00 WHERE [Code] = 'hdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoj', 'Hadothi', NULL, 227.70) END +VALUES ('hoj', 'Hadothi', NULL, 2287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadothi', [Definition] = NULL, [SortOrder] = 227.70 WHERE [Code] = 'hoj' END +SET [Description] = 'Hadothi', [Definition] = NULL, [SortOrder] = 2287.00 WHERE [Code] = 'hoj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhd', 'Hadrami', NULL, 227.80) END +VALUES ('xhd', 'Hadrami', NULL, 2288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadrami', [Definition] = NULL, [SortOrder] = 227.80 WHERE [Code] = 'xhd' END +SET [Description] = 'Hadrami', [Definition] = NULL, [SortOrder] = 2288.00 WHERE [Code] = 'xhd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayh', 'Hadrami Arabic', NULL, 227.90) END +VALUES ('ayh', 'Hadrami Arabic', NULL, 2289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadrami Arabic', [Definition] = NULL, [SortOrder] = 227.90 WHERE [Code] = 'ayh' END +SET [Description] = 'Hadrami Arabic', [Definition] = NULL, [SortOrder] = 2289.00 WHERE [Code] = 'ayh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hts', 'Hadza', NULL, 228.00) END +VALUES ('hts', 'Hadza', NULL, 2290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hadza', [Definition] = NULL, [SortOrder] = 228.00 WHERE [Code] = 'hts' END +SET [Description] = 'Hadza', [Definition] = NULL, [SortOrder] = 2290.00 WHERE [Code] = 'hts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aek', 'Haeke', NULL, 228.10) END +VALUES ('aek', 'Haeke', NULL, 2291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haeke', [Definition] = NULL, [SortOrder] = 228.10 WHERE [Code] = 'aek' END +SET [Description] = 'Haeke', [Definition] = NULL, [SortOrder] = 2291.00 WHERE [Code] = 'aek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hah', 'Hahon', NULL, 228.20) END +VALUES ('hah', 'Hahon', NULL, 2292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hahon', [Definition] = NULL, [SortOrder] = 228.20 WHERE [Code] = 'hah' END +SET [Description] = 'Hahon', [Definition] = NULL, [SortOrder] = 2292.00 WHERE [Code] = 'hah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hgm', 'Hai//om', NULL, 228.30) END +VALUES ('hgm', 'Hai//om', NULL, 2293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hai//om', [Definition] = NULL, [SortOrder] = 228.30 WHERE [Code] = 'hgm' END +SET [Description] = 'Hai//om', [Definition] = NULL, [SortOrder] = 2293.00 WHERE [Code] = 'hgm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hai', 'Haida', NULL, 228.40) END +VALUES ('hai', 'Haida', NULL, 2294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haida', [Definition] = NULL, [SortOrder] = 228.40 WHERE [Code] = 'hai' END +SET [Description] = 'Haida', [Definition] = NULL, [SortOrder] = 2294.00 WHERE [Code] = 'hai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hgw', 'Haigwai', NULL, 228.50) END +VALUES ('hgw', 'Haigwai', NULL, 2295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haigwai', [Definition] = NULL, [SortOrder] = 228.50 WHERE [Code] = 'hgw' END +SET [Description] = 'Haigwai', [Definition] = NULL, [SortOrder] = 2295.00 WHERE [Code] = 'hgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haf', 'Haiphong Sign Language', NULL, 228.60) END +VALUES ('haf', 'Haiphong Sign Language', NULL, 2296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haiphong Sign Language', [Definition] = NULL, [SortOrder] = 228.60 WHERE [Code] = 'haf' END +SET [Description] = 'Haiphong Sign Language', [Definition] = NULL, [SortOrder] = 2296.00 WHERE [Code] = 'haf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'has') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('has', 'Haisla', NULL, 228.70) END +VALUES ('has', 'Haisla', NULL, 2297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haisla', [Definition] = NULL, [SortOrder] = 228.70 WHERE [Code] = 'has' END +SET [Description] = 'Haisla', [Definition] = NULL, [SortOrder] = 2297.00 WHERE [Code] = 'has' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hat', 'Haitian', NULL, 228.80) END +VALUES ('hat', 'Haitian', NULL, 2298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haitian', [Definition] = NULL, [SortOrder] = 228.80 WHERE [Code] = 'hat' END +SET [Description] = 'Haitian', [Definition] = NULL, [SortOrder] = 2298.00 WHERE [Code] = 'hat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hvc', 'Haitian Vodoun Culture Language', NULL, 228.90) END +VALUES ('hvc', 'Haitian Vodoun Culture Language', NULL, 2299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haitian Vodoun Culture Language', [Definition] = NULL, [SortOrder] = 228.90 WHERE [Code] = 'hvc' END +SET [Description] = 'Haitian Vodoun Culture Language', [Definition] = NULL, [SortOrder] = 2299.00 WHERE [Code] = 'hvc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hji', 'Haji', NULL, 229.00) END +VALUES ('hji', 'Haji', NULL, 2300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haji', [Definition] = NULL, [SortOrder] = 229.00 WHERE [Code] = 'hji' END +SET [Description] = 'Haji', [Definition] = NULL, [SortOrder] = 2300.00 WHERE [Code] = 'hji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haj', 'Hajong', NULL, 229.10) END +VALUES ('haj', 'Hajong', NULL, 2301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hajong', [Definition] = NULL, [SortOrder] = 229.10 WHERE [Code] = 'haj' END +SET [Description] = 'Hajong', [Definition] = NULL, [SortOrder] = 2301.00 WHERE [Code] = 'haj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnh', 'Hakha Chin', NULL, 229.20) END +VALUES ('cnh', 'Hakha Chin', NULL, 2302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hakha Chin', [Definition] = NULL, [SortOrder] = 229.20 WHERE [Code] = 'cnh' END +SET [Description] = 'Hakha Chin', [Definition] = NULL, [SortOrder] = 2302.00 WHERE [Code] = 'cnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hak', 'Hakka Chinese', NULL, 229.30) END +VALUES ('hak', 'Hakka Chinese', NULL, 2303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hakka Chinese', [Definition] = NULL, [SortOrder] = 229.30 WHERE [Code] = 'hak' END +SET [Description] = 'Hakka Chinese', [Definition] = NULL, [SortOrder] = 2303.00 WHERE [Code] = 'hak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hao', 'Hakö', NULL, 229.40) END +VALUES ('hao', 'Hakö', NULL, 2304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hakö', [Definition] = NULL, [SortOrder] = 229.40 WHERE [Code] = 'hao' END +SET [Description] = 'Hakö', [Definition] = NULL, [SortOrder] = 2304.00 WHERE [Code] = 'hao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hal', 'Halang', NULL, 229.50) END +VALUES ('hal', 'Halang', NULL, 2305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halang', [Definition] = NULL, [SortOrder] = 229.50 WHERE [Code] = 'hal' END +SET [Description] = 'Halang', [Definition] = NULL, [SortOrder] = 2305.00 WHERE [Code] = 'hal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hld', 'Halang Doan', NULL, 229.60) END +VALUES ('hld', 'Halang Doan', NULL, 2306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halang Doan', [Definition] = NULL, [SortOrder] = 229.60 WHERE [Code] = 'hld' END +SET [Description] = 'Halang Doan', [Definition] = NULL, [SortOrder] = 2306.00 WHERE [Code] = 'hld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hlb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hlb', 'Halbi', NULL, 229.70) END +VALUES ('hlb', 'Halbi', NULL, 2307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halbi', [Definition] = NULL, [SortOrder] = 229.70 WHERE [Code] = 'hlb' END +SET [Description] = 'Halbi', [Definition] = NULL, [SortOrder] = 2307.00 WHERE [Code] = 'hlb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khk', 'Halh Mongolian', NULL, 229.80) END +VALUES ('khk', 'Halh Mongolian', NULL, 2308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halh Mongolian', [Definition] = NULL, [SortOrder] = 229.80 WHERE [Code] = 'khk' END +SET [Description] = 'Halh Mongolian', [Definition] = NULL, [SortOrder] = 2308.00 WHERE [Code] = 'khk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hla', 'Halia', NULL, 229.90) END +VALUES ('hla', 'Halia', NULL, 2309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halia', [Definition] = NULL, [SortOrder] = 229.90 WHERE [Code] = 'hla' END +SET [Description] = 'Halia', [Definition] = NULL, [SortOrder] = 2309.00 WHERE [Code] = 'hla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hur', 'Halkomelem', NULL, 230.00) END +VALUES ('hur', 'Halkomelem', NULL, 2310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Halkomelem', [Definition] = NULL, [SortOrder] = 230.00 WHERE [Code] = 'hur' END +SET [Description] = 'Halkomelem', [Definition] = NULL, [SortOrder] = 2310.00 WHERE [Code] = 'hur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmu', 'Hamap', NULL, 230.10) END +VALUES ('hmu', 'Hamap', NULL, 2311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hamap', [Definition] = NULL, [SortOrder] = 230.10 WHERE [Code] = 'hmu' END +SET [Description] = 'Hamap', [Definition] = NULL, [SortOrder] = 2311.00 WHERE [Code] = 'hmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hba', 'Hamba', NULL, 230.20) END +VALUES ('hba', 'Hamba', NULL, 2312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hamba', [Definition] = NULL, [SortOrder] = 230.20 WHERE [Code] = 'hba' END +SET [Description] = 'Hamba', [Definition] = NULL, [SortOrder] = 2312.00 WHERE [Code] = 'hba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amf', 'Hamer-Banna', NULL, 230.30) END +VALUES ('amf', 'Hamer-Banna', NULL, 2313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hamer-Banna', [Definition] = NULL, [SortOrder] = 230.30 WHERE [Code] = 'amf' END +SET [Description] = 'Hamer-Banna', [Definition] = NULL, [SortOrder] = 2313.00 WHERE [Code] = 'amf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmt', 'Hamtai', NULL, 230.40) END +VALUES ('hmt', 'Hamtai', NULL, 2314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hamtai', [Definition] = NULL, [SortOrder] = 230.40 WHERE [Code] = 'hmt' END +SET [Description] = 'Hamtai', [Definition] = NULL, [SortOrder] = 2314.00 WHERE [Code] = 'hmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haa', 'Han', NULL, 230.50) END +VALUES ('haa', 'Han', NULL, 2315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Han', [Definition] = NULL, [SortOrder] = 230.50 WHERE [Code] = 'haa' END +SET [Description] = 'Han', [Definition] = NULL, [SortOrder] = 2315.00 WHERE [Code] = 'haa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hag', 'Hanga', NULL, 230.60) END +VALUES ('hag', 'Hanga', NULL, 2316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hanga', [Definition] = NULL, [SortOrder] = 230.60 WHERE [Code] = 'hag' END +SET [Description] = 'Hanga', [Definition] = NULL, [SortOrder] = 2316.00 WHERE [Code] = 'hag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wos', 'Hanga Hundi', NULL, 230.70) END +VALUES ('wos', 'Hanga Hundi', NULL, 2317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hanga Hundi', [Definition] = NULL, [SortOrder] = 230.70 WHERE [Code] = 'wos' END +SET [Description] = 'Hanga Hundi', [Definition] = NULL, [SortOrder] = 2317.00 WHERE [Code] = 'wos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'han') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('han', 'Hangaza', NULL, 230.80) END +VALUES ('han', 'Hangaza', NULL, 2318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hangaza', [Definition] = NULL, [SortOrder] = 230.80 WHERE [Code] = 'han' END +SET [Description] = 'Hangaza', [Definition] = NULL, [SortOrder] = 2318.00 WHERE [Code] = 'han' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hni', 'Hani', NULL, 230.90) END +VALUES ('hni', 'Hani', NULL, 2319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hani', [Definition] = NULL, [SortOrder] = 230.90 WHERE [Code] = 'hni' END +SET [Description] = 'Hani', [Definition] = NULL, [SortOrder] = 2319.00 WHERE [Code] = 'hni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lml', 'Hano', NULL, 231.00) END +VALUES ('lml', 'Hano', NULL, 2320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hano', [Definition] = NULL, [SortOrder] = 231.00 WHERE [Code] = 'lml' END +SET [Description] = 'Hano', [Definition] = NULL, [SortOrder] = 2320.00 WHERE [Code] = 'lml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hab', 'Hanoi Sign Language', NULL, 231.10) END +VALUES ('hab', 'Hanoi Sign Language', NULL, 2321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hanoi Sign Language', [Definition] = NULL, [SortOrder] = 231.10 WHERE [Code] = 'hab' END +SET [Description] = 'Hanoi Sign Language', [Definition] = NULL, [SortOrder] = 2321.00 WHERE [Code] = 'hab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnn', 'Hanunoo', NULL, 231.20) END +VALUES ('hnn', 'Hanunoo', NULL, 2322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hanunoo', [Definition] = NULL, [SortOrder] = 231.20 WHERE [Code] = 'hnn' END +SET [Description] = 'Hanunoo', [Definition] = NULL, [SortOrder] = 2322.00 WHERE [Code] = 'hnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xha', 'Harami', NULL, 231.30) END +VALUES ('xha', 'Harami', NULL, 2323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harami', [Definition] = NULL, [SortOrder] = 231.30 WHERE [Code] = 'xha' END +SET [Description] = 'Harami', [Definition] = NULL, [SortOrder] = 2323.00 WHERE [Code] = 'xha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'har') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('har', 'Harari', NULL, 231.40) END +VALUES ('har', 'Harari', NULL, 2324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harari', [Definition] = NULL, [SortOrder] = 231.40 WHERE [Code] = 'har' END +SET [Description] = 'Harari', [Definition] = NULL, [SortOrder] = 2324.00 WHERE [Code] = 'har' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjo', 'Harijan Kinnauri', NULL, 231.50) END +VALUES ('kjo', 'Harijan Kinnauri', NULL, 2325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harijan Kinnauri', [Definition] = NULL, [SortOrder] = 231.50 WHERE [Code] = 'kjo' END +SET [Description] = 'Harijan Kinnauri', [Definition] = NULL, [SortOrder] = 2325.00 WHERE [Code] = 'kjo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hro', 'Haroi', NULL, 231.60) END +VALUES ('hro', 'Haroi', NULL, 2326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haroi', [Definition] = NULL, [SortOrder] = 231.60 WHERE [Code] = 'hro' END +SET [Description] = 'Haroi', [Definition] = NULL, [SortOrder] = 2326.00 WHERE [Code] = 'hro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hss', 'Harsusi', NULL, 231.70) END +VALUES ('hss', 'Harsusi', NULL, 2327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harsusi', [Definition] = NULL, [SortOrder] = 231.70 WHERE [Code] = 'hss' END +SET [Description] = 'Harsusi', [Definition] = NULL, [SortOrder] = 2327.00 WHERE [Code] = 'hss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmd', 'Haruai', NULL, 231.80) END +VALUES ('tmd', 'Haruai', NULL, 2328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haruai', [Definition] = NULL, [SortOrder] = 231.80 WHERE [Code] = 'tmd' END +SET [Description] = 'Haruai', [Definition] = NULL, [SortOrder] = 2328.00 WHERE [Code] = 'tmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrk', 'Haruku', NULL, 231.90) END +VALUES ('hrk', 'Haruku', NULL, 2329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haruku', [Definition] = NULL, [SortOrder] = 231.90 WHERE [Code] = 'hrk' END +SET [Description] = 'Haruku', [Definition] = NULL, [SortOrder] = 2329.00 WHERE [Code] = 'hrk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgc', 'Haryanvi', NULL, 232.00) END +VALUES ('bgc', 'Haryanvi', NULL, 2330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haryanvi', [Definition] = NULL, [SortOrder] = 232.00 WHERE [Code] = 'bgc' END +SET [Description] = 'Haryanvi', [Definition] = NULL, [SortOrder] = 2330.00 WHERE [Code] = 'bgc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrz', 'Harzani', NULL, 232.10) END +VALUES ('hrz', 'Harzani', NULL, 2331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Harzani', [Definition] = NULL, [SortOrder] = 232.10 WHERE [Code] = 'hrz' END +SET [Description] = 'Harzani', [Definition] = NULL, [SortOrder] = 2331.00 WHERE [Code] = 'hrz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybj', 'Hasha', NULL, 232.20) END +VALUES ('ybj', 'Hasha', NULL, 2332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hasha', [Definition] = NULL, [SortOrder] = 232.20 WHERE [Code] = 'ybj' END +SET [Description] = 'Hasha', [Definition] = NULL, [SortOrder] = 2332.00 WHERE [Code] = 'ybj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mey', 'Hassaniyya', NULL, 232.30) END +VALUES ('mey', 'Hassaniyya', NULL, 2333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hassaniyya', [Definition] = NULL, [SortOrder] = 232.30 WHERE [Code] = 'mey' END +SET [Description] = 'Hassaniyya', [Definition] = NULL, [SortOrder] = 2333.00 WHERE [Code] = 'mey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'had') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('had', 'Hatam', NULL, 232.40) END +VALUES ('had', 'Hatam', NULL, 2334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hatam', [Definition] = NULL, [SortOrder] = 232.40 WHERE [Code] = 'had' END +SET [Description] = 'Hatam', [Definition] = NULL, [SortOrder] = 2334.00 WHERE [Code] = 'had' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xht', 'Hattic', NULL, 232.50) END +VALUES ('xht', 'Hattic', NULL, 2335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hattic', [Definition] = NULL, [SortOrder] = 232.50 WHERE [Code] = 'xht' END +SET [Description] = 'Hattic', [Definition] = NULL, [SortOrder] = 2335.00 WHERE [Code] = 'xht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hau', 'Hausa', NULL, 232.60) END +VALUES ('hau', 'Hausa', NULL, 2336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hausa', [Definition] = NULL, [SortOrder] = 232.60 WHERE [Code] = 'hau' END +SET [Description] = 'Hausa', [Definition] = NULL, [SortOrder] = 2336.00 WHERE [Code] = 'hau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsl', 'Hausa Sign Language', NULL, 232.70) END +VALUES ('hsl', 'Hausa Sign Language', NULL, 2337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hausa Sign Language', [Definition] = NULL, [SortOrder] = 232.70 WHERE [Code] = 'hsl' END +SET [Description] = 'Hausa Sign Language', [Definition] = NULL, [SortOrder] = 2337.00 WHERE [Code] = 'hsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuf', 'Havasupai-Walapai-Yavapai', NULL, 232.80) END +VALUES ('yuf', 'Havasupai-Walapai-Yavapai', NULL, 2338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Havasupai-Walapai-Yavapai', [Definition] = NULL, [SortOrder] = 232.80 WHERE [Code] = 'yuf' END +SET [Description] = 'Havasupai-Walapai-Yavapai', [Definition] = NULL, [SortOrder] = 2338.00 WHERE [Code] = 'yuf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hvk', 'Haveke', NULL, 232.90) END +VALUES ('hvk', 'Haveke', NULL, 2339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haveke', [Definition] = NULL, [SortOrder] = 232.90 WHERE [Code] = 'hvk' END +SET [Description] = 'Haveke', [Definition] = NULL, [SortOrder] = 2339.00 WHERE [Code] = 'hvk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hav', 'Havu', NULL, 233.00) END +VALUES ('hav', 'Havu', NULL, 2340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Havu', [Definition] = NULL, [SortOrder] = 233.00 WHERE [Code] = 'hav' END +SET [Description] = 'Havu', [Definition] = NULL, [SortOrder] = 2340.00 WHERE [Code] = 'hav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hwc', 'Hawai''i Creole English', NULL, 233.10) END +VALUES ('hwc', 'Hawai''i Creole English', NULL, 2341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hawai''i Creole English', [Definition] = NULL, [SortOrder] = 233.10 WHERE [Code] = 'hwc' END +SET [Description] = 'Hawai''i Creole English', [Definition] = NULL, [SortOrder] = 2341.00 WHERE [Code] = 'hwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hps', 'Hawai''i Sign Language (HSL)', NULL, 233.20) END +VALUES ('hps', 'Hawai''i Sign Language (HSL)', NULL, 2342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hawai''i Sign Language (HSL)', [Definition] = NULL, [SortOrder] = 233.20 WHERE [Code] = 'hps' END +SET [Description] = 'Hawai''i Sign Language (HSL)', [Definition] = NULL, [SortOrder] = 2342.00 WHERE [Code] = 'hps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haw', 'Hawaiian', NULL, 233.30) END +VALUES ('haw', 'Hawaiian', NULL, 2343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hawaiian', [Definition] = NULL, [SortOrder] = 233.30 WHERE [Code] = 'haw' END +SET [Description] = 'Hawaiian', [Definition] = NULL, [SortOrder] = 2343.00 WHERE [Code] = 'haw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hay', 'Haya', NULL, 233.40) END +VALUES ('hay', 'Haya', NULL, 2344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Haya', [Definition] = NULL, [SortOrder] = 233.40 WHERE [Code] = 'hay' END +SET [Description] = 'Haya', [Definition] = NULL, [SortOrder] = 2344.00 WHERE [Code] = 'hay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'haz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('haz', 'Hazaragi', NULL, 233.50) END +VALUES ('haz', 'Hazaragi', NULL, 2345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hazaragi', [Definition] = NULL, [SortOrder] = 233.50 WHERE [Code] = 'haz' END +SET [Description] = 'Hazaragi', [Definition] = NULL, [SortOrder] = 2345.00 WHERE [Code] = 'haz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xed', 'Hdi', NULL, 233.60) END +VALUES ('xed', 'Hdi', NULL, 2346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hdi', [Definition] = NULL, [SortOrder] = 233.60 WHERE [Code] = 'xed' END +SET [Description] = 'Hdi', [Definition] = NULL, [SortOrder] = 2346.00 WHERE [Code] = 'xed' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'heb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('heb', 'Hebrew', NULL, 233.70) END +VALUES ('heb', 'Hebrew', NULL, 2347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hebrew', [Definition] = NULL, [SortOrder] = 233.70 WHERE [Code] = 'heb' END +SET [Description] = 'Hebrew', [Definition] = NULL, [SortOrder] = 2347.00 WHERE [Code] = 'heb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'heh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('heh', 'Hehe', NULL, 233.80) END +VALUES ('heh', 'Hehe', NULL, 2348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hehe', [Definition] = NULL, [SortOrder] = 233.80 WHERE [Code] = 'heh' END +SET [Description] = 'Hehe', [Definition] = NULL, [SortOrder] = 2348.00 WHERE [Code] = 'heh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbn', 'Heiban', NULL, 233.90) END +VALUES ('hbn', 'Heiban', NULL, 2349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Heiban', [Definition] = NULL, [SortOrder] = 233.90 WHERE [Code] = 'hbn' END +SET [Description] = 'Heiban', [Definition] = NULL, [SortOrder] = 2349.00 WHERE [Code] = 'hbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hei', 'Heiltsuk', NULL, 234.00) END +VALUES ('hei', 'Heiltsuk', NULL, 2350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Heiltsuk', [Definition] = NULL, [SortOrder] = 234.00 WHERE [Code] = 'hei' END +SET [Description] = 'Heiltsuk', [Definition] = NULL, [SortOrder] = 2350.00 WHERE [Code] = 'hei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'heg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('heg', 'Helong', NULL, 234.10) END +VALUES ('heg', 'Helong', NULL, 2351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Helong', [Definition] = NULL, [SortOrder] = 234.10 WHERE [Code] = 'heg' END +SET [Description] = 'Helong', [Definition] = NULL, [SortOrder] = 2351.00 WHERE [Code] = 'heg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nix', 'Hema', NULL, 234.20) END +VALUES ('nix', 'Hema', NULL, 2352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hema', [Definition] = NULL, [SortOrder] = 234.20 WHERE [Code] = 'nix' END +SET [Description] = 'Hema', [Definition] = NULL, [SortOrder] = 2352.00 WHERE [Code] = 'nix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hem', 'Hemba', NULL, 234.30) END +VALUES ('hem', 'Hemba', NULL, 2353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hemba', [Definition] = NULL, [SortOrder] = 234.30 WHERE [Code] = 'hem' END +SET [Description] = 'Hemba', [Definition] = NULL, [SortOrder] = 2353.00 WHERE [Code] = 'hem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hed', 'Herdé', NULL, 234.40) END +VALUES ('hed', 'Herdé', NULL, 2354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Herdé', [Definition] = NULL, [SortOrder] = 234.40 WHERE [Code] = 'hed' END +SET [Description] = 'Herdé', [Definition] = NULL, [SortOrder] = 2354.00 WHERE [Code] = 'hed' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'her') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('her', 'Herero', NULL, 234.50) END +VALUES ('her', 'Herero', NULL, 2355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Herero', [Definition] = NULL, [SortOrder] = 234.50 WHERE [Code] = 'her' END +SET [Description] = 'Herero', [Definition] = NULL, [SortOrder] = 2355.00 WHERE [Code] = 'her' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llf', 'Hermit', NULL, 234.60) END +VALUES ('llf', 'Hermit', NULL, 2356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hermit', [Definition] = NULL, [SortOrder] = 234.60 WHERE [Code] = 'llf' END +SET [Description] = 'Hermit', [Definition] = NULL, [SortOrder] = 2356.00 WHERE [Code] = 'llf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhr', 'Hernican', NULL, 234.70) END +VALUES ('xhr', 'Hernican', NULL, 2357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hernican', [Definition] = NULL, [SortOrder] = 234.70 WHERE [Code] = 'xhr' END +SET [Description] = 'Hernican', [Definition] = NULL, [SortOrder] = 2357.00 WHERE [Code] = 'xhr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrt', 'Hértevin', NULL, 234.80) END +VALUES ('hrt', 'Hértevin', NULL, 2358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hértevin', [Definition] = NULL, [SortOrder] = 234.80 WHERE [Code] = 'hrt' END +SET [Description] = 'Hértevin', [Definition] = NULL, [SortOrder] = 2358.00 WHERE [Code] = 'hrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ham') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ham', 'Hewa', NULL, 234.90) END +VALUES ('ham', 'Hewa', NULL, 2359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hewa', [Definition] = NULL, [SortOrder] = 234.90 WHERE [Code] = 'ham' END +SET [Description] = 'Hewa', [Definition] = NULL, [SortOrder] = 2359.00 WHERE [Code] = 'ham' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auk', 'Heyo', NULL, 235.00) END +VALUES ('auk', 'Heyo', NULL, 2360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Heyo', [Definition] = NULL, [SortOrder] = 235.00 WHERE [Code] = 'auk' END +SET [Description] = 'Heyo', [Definition] = NULL, [SortOrder] = 2360.00 WHERE [Code] = 'auk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghc', 'Hiberno-Scottish Gaelic', NULL, 235.10) END +VALUES ('ghc', 'Hiberno-Scottish Gaelic', NULL, 2361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hiberno-Scottish Gaelic', [Definition] = NULL, [SortOrder] = 235.10 WHERE [Code] = 'ghc' END +SET [Description] = 'Hiberno-Scottish Gaelic', [Definition] = NULL, [SortOrder] = 2361.00 WHERE [Code] = 'ghc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hib', 'Hibito', NULL, 235.20) END +VALUES ('hib', 'Hibito', NULL, 2362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hibito', [Definition] = NULL, [SortOrder] = 235.20 WHERE [Code] = 'hib' END +SET [Description] = 'Hibito', [Definition] = NULL, [SortOrder] = 2362.00 WHERE [Code] = 'hib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hid', 'Hidatsa', NULL, 235.30) END +VALUES ('hid', 'Hidatsa', NULL, 2363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hidatsa', [Definition] = NULL, [SortOrder] = 235.30 WHERE [Code] = 'hid' END +SET [Description] = 'Hidatsa', [Definition] = NULL, [SortOrder] = 2363.00 WHERE [Code] = 'hid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hlu', 'Hieroglyphic Luwian', NULL, 235.40) END +VALUES ('hlu', 'Hieroglyphic Luwian', NULL, 2364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hieroglyphic Luwian', [Definition] = NULL, [SortOrder] = 235.40 WHERE [Code] = 'hlu' END +SET [Description] = 'Hieroglyphic Luwian', [Definition] = NULL, [SortOrder] = 2364.00 WHERE [Code] = 'hlu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mba', 'Higaonon', NULL, 235.50) END +VALUES ('mba', 'Higaonon', NULL, 2365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Higaonon', [Definition] = NULL, [SortOrder] = 235.50 WHERE [Code] = 'mba' END +SET [Description] = 'Higaonon', [Definition] = NULL, [SortOrder] = 2365.00 WHERE [Code] = 'mba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjk', 'Highland Konjo', NULL, 235.60) END +VALUES ('kjk', 'Highland Konjo', NULL, 2366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Konjo', [Definition] = NULL, [SortOrder] = 235.60 WHERE [Code] = 'kjk' END +SET [Description] = 'Highland Konjo', [Definition] = NULL, [SortOrder] = 2366.00 WHERE [Code] = 'kjk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chd', 'Highland Oaxaca Chontal', NULL, 235.70) END +VALUES ('chd', 'Highland Oaxaca Chontal', NULL, 2367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Oaxaca Chontal', [Definition] = NULL, [SortOrder] = 235.70 WHERE [Code] = 'chd' END +SET [Description] = 'Highland Oaxaca Chontal', [Definition] = NULL, [SortOrder] = 2367.00 WHERE [Code] = 'chd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poi', 'Highland Popoluca', NULL, 235.80) END +VALUES ('poi', 'Highland Popoluca', NULL, 2368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Popoluca', [Definition] = NULL, [SortOrder] = 235.80 WHERE [Code] = 'poi' END +SET [Description] = 'Highland Popoluca', [Definition] = NULL, [SortOrder] = 2368.00 WHERE [Code] = 'poi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azz', 'Highland Puebla Nahuatl', NULL, 235.90) END +VALUES ('azz', 'Highland Puebla Nahuatl', NULL, 2369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 235.90 WHERE [Code] = 'azz' END +SET [Description] = 'Highland Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 2369.00 WHERE [Code] = 'azz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tos', 'Highland Totonac', NULL, 236.00) END +VALUES ('tos', 'Highland Totonac', NULL, 2370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Highland Totonac', [Definition] = NULL, [SortOrder] = 236.00 WHERE [Code] = 'tos' END +SET [Description] = 'Highland Totonac', [Definition] = NULL, [SortOrder] = 2370.00 WHERE [Code] = 'tos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acw', 'Hijazi Arabic', NULL, 236.10) END +VALUES ('acw', 'Hijazi Arabic', NULL, 2371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hijazi Arabic', [Definition] = NULL, [SortOrder] = 236.10 WHERE [Code] = 'acw' END +SET [Description] = 'Hijazi Arabic', [Definition] = NULL, [SortOrder] = 2371.00 WHERE [Code] = 'acw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hij', 'Hijuk', NULL, 236.20) END +VALUES ('hij', 'Hijuk', NULL, 2372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hijuk', [Definition] = NULL, [SortOrder] = 236.20 WHERE [Code] = 'hij' END +SET [Description] = 'Hijuk', [Definition] = NULL, [SortOrder] = 2372.00 WHERE [Code] = 'hij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hil', 'Hiligaynon', NULL, 236.30) END +VALUES ('hil', 'Hiligaynon', NULL, 2373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hiligaynon', [Definition] = NULL, [SortOrder] = 236.30 WHERE [Code] = 'hil' END +SET [Description] = 'Hiligaynon', [Definition] = NULL, [SortOrder] = 2373.00 WHERE [Code] = 'hil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hir', 'Himarimã', NULL, 236.40) END +VALUES ('hir', 'Himarimã', NULL, 2374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Himarimã', [Definition] = NULL, [SortOrder] = 236.40 WHERE [Code] = 'hir' END +SET [Description] = 'Himarimã', [Definition] = NULL, [SortOrder] = 2374.00 WHERE [Code] = 'hir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hin', 'Hindi', NULL, 236.50) END +VALUES ('hin', 'Hindi', NULL, 2375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hindi', [Definition] = NULL, [SortOrder] = 236.50 WHERE [Code] = 'hin' END +SET [Description] = 'Hindi', [Definition] = NULL, [SortOrder] = 2375.00 WHERE [Code] = 'hin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hii', 'Hinduri', NULL, 236.60) END +VALUES ('hii', 'Hinduri', NULL, 2376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hinduri', [Definition] = NULL, [SortOrder] = 236.60 WHERE [Code] = 'hii' END +SET [Description] = 'Hinduri', [Definition] = NULL, [SortOrder] = 2376.00 WHERE [Code] = 'hii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gin', 'Hinukh', NULL, 236.70) END +VALUES ('gin', 'Hinukh', NULL, 2377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hinukh', [Definition] = NULL, [SortOrder] = 236.70 WHERE [Code] = 'gin' END +SET [Description] = 'Hinukh', [Definition] = NULL, [SortOrder] = 2377.00 WHERE [Code] = 'gin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmo', 'Hiri Motu', NULL, 236.80) END +VALUES ('hmo', 'Hiri Motu', NULL, 2378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hiri Motu', [Definition] = NULL, [SortOrder] = 236.80 WHERE [Code] = 'hmo' END +SET [Description] = 'Hiri Motu', [Definition] = NULL, [SortOrder] = 2378.00 WHERE [Code] = 'hmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hit', 'Hittite', NULL, 236.90) END +VALUES ('hit', 'Hittite', NULL, 2379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hittite', [Definition] = NULL, [SortOrder] = 236.90 WHERE [Code] = 'hit' END +SET [Description] = 'Hittite', [Definition] = NULL, [SortOrder] = 2379.00 WHERE [Code] = 'hit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'htu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('htu', 'Hitu', NULL, 237.00) END +VALUES ('htu', 'Hitu', NULL, 2380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hitu', [Definition] = NULL, [SortOrder] = 237.00 WHERE [Code] = 'htu' END +SET [Description] = 'Hitu', [Definition] = NULL, [SortOrder] = 2380.00 WHERE [Code] = 'htu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hiw', 'Hiw', NULL, 237.10) END +VALUES ('hiw', 'Hiw', NULL, 2381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hiw', [Definition] = NULL, [SortOrder] = 237.10 WHERE [Code] = 'hiw' END +SET [Description] = 'Hiw', [Definition] = NULL, [SortOrder] = 2381.00 WHERE [Code] = 'hiw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hix', 'Hixkaryána', NULL, 237.20) END +VALUES ('hix', 'Hixkaryána', NULL, 2382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hixkaryána', [Definition] = NULL, [SortOrder] = 237.20 WHERE [Code] = 'hix' END +SET [Description] = 'Hixkaryána', [Definition] = NULL, [SortOrder] = 2382.00 WHERE [Code] = 'hix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lic', 'Hlai', NULL, 237.30) END +VALUES ('lic', 'Hlai', NULL, 2383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hlai', [Definition] = NULL, [SortOrder] = 237.30 WHERE [Code] = 'lic' END +SET [Description] = 'Hlai', [Definition] = NULL, [SortOrder] = 2383.00 WHERE [Code] = 'lic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yhl', 'Hlepho Phowa', NULL, 237.40) END +VALUES ('yhl', 'Hlepho Phowa', NULL, 2384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hlepho Phowa', [Definition] = NULL, [SortOrder] = 237.40 WHERE [Code] = 'yhl' END +SET [Description] = 'Hlepho Phowa', [Definition] = NULL, [SortOrder] = 2384.00 WHERE [Code] = 'yhl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hle', 'Hlersu', NULL, 237.50) END +VALUES ('hle', 'Hlersu', NULL, 2385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hlersu', [Definition] = NULL, [SortOrder] = 237.50 WHERE [Code] = 'hle' END +SET [Description] = 'Hlersu', [Definition] = NULL, [SortOrder] = 2385.00 WHERE [Code] = 'hle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmr', 'Hmar', NULL, 237.60) END +VALUES ('hmr', 'Hmar', NULL, 2386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmar', [Definition] = NULL, [SortOrder] = 237.60 WHERE [Code] = 'hmr' END +SET [Description] = 'Hmar', [Definition] = NULL, [SortOrder] = 2386.00 WHERE [Code] = 'hmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmn', 'Hmong', NULL, 237.70) END +VALUES ('hmn', 'Hmong', NULL, 2387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong', [Definition] = NULL, [SortOrder] = 237.70 WHERE [Code] = 'hmn' END +SET [Description] = 'Hmong', [Definition] = NULL, [SortOrder] = 2387.00 WHERE [Code] = 'hmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mww', 'Hmong Daw', NULL, 237.80) END +VALUES ('mww', 'Hmong Daw', NULL, 2388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Daw', [Definition] = NULL, [SortOrder] = 237.80 WHERE [Code] = 'mww' END +SET [Description] = 'Hmong Daw', [Definition] = NULL, [SortOrder] = 2388.00 WHERE [Code] = 'mww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmv', 'Hmong Dô', NULL, 237.90) END +VALUES ('hmv', 'Hmong Dô', NULL, 2389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Dô', [Definition] = NULL, [SortOrder] = 237.90 WHERE [Code] = 'hmv' END +SET [Description] = 'Hmong Dô', [Definition] = NULL, [SortOrder] = 2389.00 WHERE [Code] = 'hmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmf', 'Hmong Don', NULL, 238.00) END +VALUES ('hmf', 'Hmong Don', NULL, 2390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Don', [Definition] = NULL, [SortOrder] = 238.00 WHERE [Code] = 'hmf' END +SET [Description] = 'Hmong Don', [Definition] = NULL, [SortOrder] = 2390.00 WHERE [Code] = 'hmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnj', 'Hmong Njua', NULL, 238.10) END +VALUES ('hnj', 'Hmong Njua', NULL, 2391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Njua', [Definition] = NULL, [SortOrder] = 238.10 WHERE [Code] = 'hnj' END +SET [Description] = 'Hmong Njua', [Definition] = NULL, [SortOrder] = 2391.00 WHERE [Code] = 'hnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmz', 'Hmong Shua', NULL, 238.20) END +VALUES ('hmz', 'Hmong Shua', NULL, 2392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmong Shua', [Definition] = NULL, [SortOrder] = 238.20 WHERE [Code] = 'hmz' END +SET [Description] = 'Hmong Shua', [Definition] = NULL, [SortOrder] = 2392.00 WHERE [Code] = 'hmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrk', 'Hmwaveke', NULL, 238.30) END +VALUES ('mrk', 'Hmwaveke', NULL, 2393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hmwaveke', [Definition] = NULL, [SortOrder] = 238.30 WHERE [Code] = 'mrk' END +SET [Description] = 'Hmwaveke', [Definition] = NULL, [SortOrder] = 2393.00 WHERE [Code] = 'mrk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoc', 'Ho', NULL, 238.40) END +VALUES ('hoc', 'Ho', NULL, 2394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ho', [Definition] = NULL, [SortOrder] = 238.40 WHERE [Code] = 'hoc' END +SET [Description] = 'Ho', [Definition] = NULL, [SortOrder] = 2394.00 WHERE [Code] = 'hoc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hos', 'Ho Chi Minh City Sign Language', NULL, 238.50) END +VALUES ('hos', 'Ho Chi Minh City Sign Language', NULL, 2395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ho Chi Minh City Sign Language', [Definition] = NULL, [SortOrder] = 238.50 WHERE [Code] = 'hos' END +SET [Description] = 'Ho Chi Minh City Sign Language', [Definition] = NULL, [SortOrder] = 2395.00 WHERE [Code] = 'hos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'win') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('win', 'Ho-Chunk', NULL, 238.60) END +VALUES ('win', 'Ho-Chunk', NULL, 2396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ho-Chunk', [Definition] = NULL, [SortOrder] = 238.60 WHERE [Code] = 'win' END +SET [Description] = 'Ho-Chunk', [Definition] = NULL, [SortOrder] = 2396.00 WHERE [Code] = 'win' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoa', 'Hoava', NULL, 238.70) END +VALUES ('hoa', 'Hoava', NULL, 2397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hoava', [Definition] = NULL, [SortOrder] = 238.70 WHERE [Code] = 'hoa' END +SET [Description] = 'Hoava', [Definition] = NULL, [SortOrder] = 2397.00 WHERE [Code] = 'hoa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoh', 'Hobyót', NULL, 238.80) END +VALUES ('hoh', 'Hobyót', NULL, 2398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hobyót', [Definition] = NULL, [SortOrder] = 238.80 WHERE [Code] = 'hoh' END +SET [Description] = 'Hobyót', [Definition] = NULL, [SortOrder] = 2398.00 WHERE [Code] = 'hoh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hhi', 'Hoia Hoia', NULL, 238.90) END +VALUES ('hhi', 'Hoia Hoia', NULL, 2399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hoia Hoia', [Definition] = NULL, [SortOrder] = 238.90 WHERE [Code] = 'hhi' END +SET [Description] = 'Hoia Hoia', [Definition] = NULL, [SortOrder] = 2399.00 WHERE [Code] = 'hhi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoi', 'Holikachuk', NULL, 239.00) END +VALUES ('hoi', 'Holikachuk', NULL, 2400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holikachuk', [Definition] = NULL, [SortOrder] = 239.00 WHERE [Code] = 'hoi' END +SET [Description] = 'Holikachuk', [Definition] = NULL, [SortOrder] = 2400.00 WHERE [Code] = 'hoi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoy', 'Holiya', NULL, 239.10) END +VALUES ('hoy', 'Holiya', NULL, 2401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holiya', [Definition] = NULL, [SortOrder] = 239.10 WHERE [Code] = 'hoy' END +SET [Description] = 'Holiya', [Definition] = NULL, [SortOrder] = 2401.00 WHERE [Code] = 'hoy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hod', 'Holma', NULL, 239.20) END +VALUES ('hod', 'Holma', NULL, 2402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holma', [Definition] = NULL, [SortOrder] = 239.20 WHERE [Code] = 'hod' END +SET [Description] = 'Holma', [Definition] = NULL, [SortOrder] = 2402.00 WHERE [Code] = 'hod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoo', 'Holoholo', NULL, 239.30) END +VALUES ('hoo', 'Holoholo', NULL, 2403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holoholo', [Definition] = NULL, [SortOrder] = 239.30 WHERE [Code] = 'hoo' END +SET [Description] = 'Holoholo', [Definition] = NULL, [SortOrder] = 2403.00 WHERE [Code] = 'hoo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hol', 'Holu', NULL, 239.40) END +VALUES ('hol', 'Holu', NULL, 2404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Holu', [Definition] = NULL, [SortOrder] = 239.40 WHERE [Code] = 'hol' END +SET [Description] = 'Holu', [Definition] = NULL, [SortOrder] = 2404.00 WHERE [Code] = 'hol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hom', 'Homa', NULL, 239.50) END +VALUES ('hom', 'Homa', NULL, 2405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Homa', [Definition] = NULL, [SortOrder] = 239.50 WHERE [Code] = 'hom' END +SET [Description] = 'Homa', [Definition] = NULL, [SortOrder] = 2405.00 WHERE [Code] = 'hom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hds', 'Honduras Sign Language', NULL, 239.60) END +VALUES ('hds', 'Honduras Sign Language', NULL, 2406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Honduras Sign Language', [Definition] = NULL, [SortOrder] = 239.60 WHERE [Code] = 'hds' END +SET [Description] = 'Honduras Sign Language', [Definition] = NULL, [SortOrder] = 2406.00 WHERE [Code] = 'hds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juh', 'Hõne', NULL, 239.70) END +VALUES ('juh', 'Hõne', NULL, 2407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hõne', [Definition] = NULL, [SortOrder] = 239.70 WHERE [Code] = 'juh' END +SET [Description] = 'Hõne', [Definition] = NULL, [SortOrder] = 2407.00 WHERE [Code] = 'juh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hks', 'Hong Kong Sign Language', NULL, 239.80) END +VALUES ('hks', 'Hong Kong Sign Language', NULL, 2408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hong Kong Sign Language', [Definition] = NULL, [SortOrder] = 239.80 WHERE [Code] = 'hks' END +SET [Description] = 'Hong Kong Sign Language', [Definition] = NULL, [SortOrder] = 2408.00 WHERE [Code] = 'hks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'how') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('how', 'Honi', NULL, 239.90) END +VALUES ('how', 'Honi', NULL, 2409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Honi', [Definition] = NULL, [SortOrder] = 239.90 WHERE [Code] = 'how' END +SET [Description] = 'Honi', [Definition] = NULL, [SortOrder] = 2409.00 WHERE [Code] = 'how' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hop', 'Hopi', NULL, 240.00) END +VALUES ('hop', 'Hopi', NULL, 2410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hopi', [Definition] = NULL, [SortOrder] = 240.00 WHERE [Code] = 'hop' END +SET [Description] = 'Hopi', [Definition] = NULL, [SortOrder] = 2410.00 WHERE [Code] = 'hop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrm', 'Horned Miao', NULL, 240.10) END +VALUES ('hrm', 'Horned Miao', NULL, 2411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Horned Miao', [Definition] = NULL, [SortOrder] = 240.10 WHERE [Code] = 'hrm' END +SET [Description] = 'Horned Miao', [Definition] = NULL, [SortOrder] = 2411.00 WHERE [Code] = 'hrm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hor', 'Horo', NULL, 240.20) END +VALUES ('hor', 'Horo', NULL, 2412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Horo', [Definition] = NULL, [SortOrder] = 240.20 WHERE [Code] = 'hor' END +SET [Description] = 'Horo', [Definition] = NULL, [SortOrder] = 2412.00 WHERE [Code] = 'hor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoe', 'Horom', NULL, 240.30) END +VALUES ('hoe', 'Horom', NULL, 2413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Horom', [Definition] = NULL, [SortOrder] = 240.30 WHERE [Code] = 'hoe' END +SET [Description] = 'Horom', [Definition] = NULL, [SortOrder] = 2413.00 WHERE [Code] = 'hoe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ero') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ero', 'Horpa', NULL, 240.40) END +VALUES ('ero', 'Horpa', NULL, 2414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Horpa', [Definition] = NULL, [SortOrder] = 240.40 WHERE [Code] = 'ero' END +SET [Description] = 'Horpa', [Definition] = NULL, [SortOrder] = 2414.00 WHERE [Code] = 'ero' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hot', 'Hote', NULL, 240.50) END +VALUES ('hot', 'Hote', NULL, 2415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hote', [Definition] = NULL, [SortOrder] = 240.50 WHERE [Code] = 'hot' END +SET [Description] = 'Hote', [Definition] = NULL, [SortOrder] = 2415.00 WHERE [Code] = 'hot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hti', 'Hoti', NULL, 240.60) END +VALUES ('hti', 'Hoti', NULL, 2416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hoti', [Definition] = NULL, [SortOrder] = 240.60 WHERE [Code] = 'hti' END +SET [Description] = 'Hoti', [Definition] = NULL, [SortOrder] = 2416.00 WHERE [Code] = 'hti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hov', 'Hovongan', NULL, 240.70) END +VALUES ('hov', 'Hovongan', NULL, 2417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hovongan', [Definition] = NULL, [SortOrder] = 240.70 WHERE [Code] = 'hov' END +SET [Description] = 'Hovongan', [Definition] = NULL, [SortOrder] = 2417.00 WHERE [Code] = 'hov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hhy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hhy', 'Hoyahoya', NULL, 240.80) END +VALUES ('hhy', 'Hoyahoya', NULL, 2418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hoyahoya', [Definition] = NULL, [SortOrder] = 240.80 WHERE [Code] = 'hhy' END +SET [Description] = 'Hoyahoya', [Definition] = NULL, [SortOrder] = 2418.00 WHERE [Code] = 'hhy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hoz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hoz', 'Hozo', NULL, 240.90) END +VALUES ('hoz', 'Hozo', NULL, 2419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hozo', [Definition] = NULL, [SortOrder] = 240.90 WHERE [Code] = 'hoz' END +SET [Description] = 'Hozo', [Definition] = NULL, [SortOrder] = 2419.00 WHERE [Code] = 'hoz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hpo', 'Hpon', NULL, 241.00) END +VALUES ('hpo', 'Hpon', NULL, 2420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hpon', [Definition] = NULL, [SortOrder] = 241.00 WHERE [Code] = 'hpo' END +SET [Description] = 'Hpon', [Definition] = NULL, [SortOrder] = 2420.00 WHERE [Code] = 'hpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hra', 'Hrangkhol', NULL, 241.10) END +VALUES ('hra', 'Hrangkhol', NULL, 2421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hrangkhol', [Definition] = NULL, [SortOrder] = 241.10 WHERE [Code] = 'hra' END +SET [Description] = 'Hrangkhol', [Definition] = NULL, [SortOrder] = 2421.00 WHERE [Code] = 'hra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hre', 'Hre', NULL, 241.20) END +VALUES ('hre', 'Hre', NULL, 2422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hre', [Definition] = NULL, [SortOrder] = 241.20 WHERE [Code] = 'hre' END +SET [Description] = 'Hre', [Definition] = NULL, [SortOrder] = 2422.00 WHERE [Code] = 'hre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hru', 'Hruso', NULL, 241.30) END +VALUES ('hru', 'Hruso', NULL, 2423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hruso', [Definition] = NULL, [SortOrder] = 241.30 WHERE [Code] = 'hru' END +SET [Description] = 'Hruso', [Definition] = NULL, [SortOrder] = 2423.00 WHERE [Code] = 'hru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huo', 'Hu', NULL, 241.40) END +VALUES ('huo', 'Hu', NULL, 2424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hu', [Definition] = NULL, [SortOrder] = 241.40 WHERE [Code] = 'huo' END +SET [Description] = 'Hu', [Definition] = NULL, [SortOrder] = 2424.00 WHERE [Code] = 'huo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hug', 'Huachipaeri', NULL, 241.50) END +VALUES ('hug', 'Huachipaeri', NULL, 2425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huachipaeri', [Definition] = NULL, [SortOrder] = 241.50 WHERE [Code] = 'hug' END +SET [Description] = 'Huachipaeri', [Definition] = NULL, [SortOrder] = 2425.00 WHERE [Code] = 'hug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qub', 'Huallaga Huánuco Quechua', NULL, 241.60) END +VALUES ('qub', 'Huallaga Huánuco Quechua', NULL, 2426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huallaga Huánuco Quechua', [Definition] = NULL, [SortOrder] = 241.60 WHERE [Code] = 'qub' END +SET [Description] = 'Huallaga Huánuco Quechua', [Definition] = NULL, [SortOrder] = 2426.00 WHERE [Code] = 'qub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvh', 'Huamalíes-Dos de Mayo Huánuco Quechua', NULL, 241.70) END +VALUES ('qvh', 'Huamalíes-Dos de Mayo Huánuco Quechua', NULL, 2427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huamalíes-Dos de Mayo Huánuco Quechua', [Definition] = NULL, [SortOrder] = 241.70 WHERE [Code] = 'qvh' END +SET [Description] = 'Huamalíes-Dos de Mayo Huánuco Quechua', [Definition] = NULL, [SortOrder] = 2427.00 WHERE [Code] = 'qvh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hub', 'Huambisa', NULL, 241.80) END +VALUES ('hub', 'Huambisa', NULL, 2428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huambisa', [Definition] = NULL, [SortOrder] = 241.80 WHERE [Code] = 'hub' END +SET [Description] = 'Huambisa', [Definition] = NULL, [SortOrder] = 2428.00 WHERE [Code] = 'hub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'var') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('var', 'Huarijio', NULL, 241.90) END +VALUES ('var', 'Huarijio', NULL, 2429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huarijio', [Definition] = NULL, [SortOrder] = 241.90 WHERE [Code] = 'var' END +SET [Description] = 'Huarijio', [Definition] = NULL, [SortOrder] = 2429.00 WHERE [Code] = 'var' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hus', 'Huastec', NULL, 242.00) END +VALUES ('hus', 'Huastec', NULL, 2430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huastec', [Definition] = NULL, [SortOrder] = 242.00 WHERE [Code] = 'hus' END +SET [Description] = 'Huastec', [Definition] = NULL, [SortOrder] = 2430.00 WHERE [Code] = 'hus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hud', 'Huaulu', NULL, 242.10) END +VALUES ('hud', 'Huaulu', NULL, 2431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huaulu', [Definition] = NULL, [SortOrder] = 242.10 WHERE [Code] = 'hud' END +SET [Description] = 'Huaulu', [Definition] = NULL, [SortOrder] = 2431.00 WHERE [Code] = 'hud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mau', 'Huautla Mazatec', NULL, 242.20) END +VALUES ('mau', 'Huautla Mazatec', NULL, 2432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huautla Mazatec', [Definition] = NULL, [SortOrder] = 242.20 WHERE [Code] = 'mau' END +SET [Description] = 'Huautla Mazatec', [Definition] = NULL, [SortOrder] = 2432.00 WHERE [Code] = 'mau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhq', 'Huaxcaleca Nahuatl', NULL, 242.30) END +VALUES ('nhq', 'Huaxcaleca Nahuatl', NULL, 2433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huaxcaleca Nahuatl', [Definition] = NULL, [SortOrder] = 242.30 WHERE [Code] = 'nhq' END +SET [Description] = 'Huaxcaleca Nahuatl', [Definition] = NULL, [SortOrder] = 2433.00 WHERE [Code] = 'nhq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwh', 'Huaylas Ancash Quechua', NULL, 242.40) END +VALUES ('qwh', 'Huaylas Ancash Quechua', NULL, 2434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huaylas Ancash Quechua', [Definition] = NULL, [SortOrder] = 242.40 WHERE [Code] = 'qwh' END +SET [Description] = 'Huaylas Ancash Quechua', [Definition] = NULL, [SortOrder] = 2434.00 WHERE [Code] = 'qwh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvw', 'Huaylla Wanca Quechua', NULL, 242.50) END +VALUES ('qvw', 'Huaylla Wanca Quechua', NULL, 2435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huaylla Wanca Quechua', [Definition] = NULL, [SortOrder] = 242.50 WHERE [Code] = 'qvw' END +SET [Description] = 'Huaylla Wanca Quechua', [Definition] = NULL, [SortOrder] = 2435.00 WHERE [Code] = 'qvw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbb', 'Huba', NULL, 242.60) END +VALUES ('hbb', 'Huba', NULL, 2436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huba', [Definition] = NULL, [SortOrder] = 242.60 WHERE [Code] = 'hbb' END +SET [Description] = 'Huba', [Definition] = NULL, [SortOrder] = 2436.00 WHERE [Code] = 'hbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tee', 'Huehuetla Tepehua', NULL, 242.70) END +VALUES ('tee', 'Huehuetla Tepehua', NULL, 2437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huehuetla Tepehua', [Definition] = NULL, [SortOrder] = 242.70 WHERE [Code] = 'tee' END +SET [Description] = 'Huehuetla Tepehua', [Definition] = NULL, [SortOrder] = 2437.00 WHERE [Code] = 'tee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hch', 'Huichol', NULL, 242.80) END +VALUES ('hch', 'Huichol', NULL, 2438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huichol', [Definition] = NULL, [SortOrder] = 242.80 WHERE [Code] = 'hch' END +SET [Description] = 'Huichol', [Definition] = NULL, [SortOrder] = 2438.00 WHERE [Code] = 'hch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huh', 'Huilliche', NULL, 242.90) END +VALUES ('huh', 'Huilliche', NULL, 2439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huilliche', [Definition] = NULL, [SortOrder] = 242.90 WHERE [Code] = 'huh' END +SET [Description] = 'Huilliche', [Definition] = NULL, [SortOrder] = 2439.00 WHERE [Code] = 'huh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxs', 'Huitepec Mixtec', NULL, 243.00) END +VALUES ('mxs', 'Huitepec Mixtec', NULL, 2440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huitepec Mixtec', [Definition] = NULL, [SortOrder] = 243.00 WHERE [Code] = 'mxs' END +SET [Description] = 'Huitepec Mixtec', [Definition] = NULL, [SortOrder] = 2440.00 WHERE [Code] = 'mxs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czh', 'Huizhou Chinese', NULL, 243.10) END +VALUES ('czh', 'Huizhou Chinese', NULL, 2441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huizhou Chinese', [Definition] = NULL, [SortOrder] = 243.10 WHERE [Code] = 'czh' END +SET [Description] = 'Huizhou Chinese', [Definition] = NULL, [SortOrder] = 2441.00 WHERE [Code] = 'czh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huw', 'Hukumina', NULL, 243.20) END +VALUES ('huw', 'Hukumina', NULL, 2442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hukumina', [Definition] = NULL, [SortOrder] = 243.20 WHERE [Code] = 'huw' END +SET [Description] = 'Hukumina', [Definition] = NULL, [SortOrder] = 2442.00 WHERE [Code] = 'huw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hul', 'Hula', NULL, 243.30) END +VALUES ('hul', 'Hula', NULL, 2443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hula', [Definition] = NULL, [SortOrder] = 243.30 WHERE [Code] = 'hul' END +SET [Description] = 'Hula', [Definition] = NULL, [SortOrder] = 2443.00 WHERE [Code] = 'hul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huy', 'Hulaulá', NULL, 243.40) END +VALUES ('huy', 'Hulaulá', NULL, 2444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hulaulá', [Definition] = NULL, [SortOrder] = 243.40 WHERE [Code] = 'huy' END +SET [Description] = 'Hulaulá', [Definition] = NULL, [SortOrder] = 2444.00 WHERE [Code] = 'huy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hui', 'Huli', NULL, 243.50) END +VALUES ('hui', 'Huli', NULL, 2445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Huli', [Definition] = NULL, [SortOrder] = 243.50 WHERE [Code] = 'hui' END +SET [Description] = 'Huli', [Definition] = NULL, [SortOrder] = 2445.00 WHERE [Code] = 'hui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huk', 'Hulung', NULL, 243.60) END +VALUES ('huk', 'Hulung', NULL, 2446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hulung', [Definition] = NULL, [SortOrder] = 243.60 WHERE [Code] = 'huk' END +SET [Description] = 'Hulung', [Definition] = NULL, [SortOrder] = 2446.00 WHERE [Code] = 'huk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmb', 'Humburi Senni Songhay', NULL, 243.70) END +VALUES ('hmb', 'Humburi Senni Songhay', NULL, 2447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Humburi Senni Songhay', [Definition] = NULL, [SortOrder] = 243.70 WHERE [Code] = 'hmb' END +SET [Description] = 'Humburi Senni Songhay', [Definition] = NULL, [SortOrder] = 2447.00 WHERE [Code] = 'hmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huf', 'Humene', NULL, 243.80) END +VALUES ('huf', 'Humene', NULL, 2448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Humene', [Definition] = NULL, [SortOrder] = 243.80 WHERE [Code] = 'huf' END +SET [Description] = 'Humene', [Definition] = NULL, [SortOrder] = 2448.00 WHERE [Code] = 'huf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hut', 'Humla', NULL, 243.90) END +VALUES ('hut', 'Humla', NULL, 2449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Humla', [Definition] = NULL, [SortOrder] = 243.90 WHERE [Code] = 'hut' END +SET [Description] = 'Humla', [Definition] = NULL, [SortOrder] = 2449.00 WHERE [Code] = 'hut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hke', 'Hunde', NULL, 244.00) END +VALUES ('hke', 'Hunde', NULL, 2450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunde', [Definition] = NULL, [SortOrder] = 244.00 WHERE [Code] = 'hke' END +SET [Description] = 'Hunde', [Definition] = NULL, [SortOrder] = 2450.00 WHERE [Code] = 'hke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnu', 'Hung', NULL, 244.10) END +VALUES ('hnu', 'Hung', NULL, 2451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hung', [Definition] = NULL, [SortOrder] = 244.10 WHERE [Code] = 'hnu' END +SET [Description] = 'Hung', [Definition] = NULL, [SortOrder] = 2451.00 WHERE [Code] = 'hnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hum', 'Hungana', NULL, 244.20) END +VALUES ('hum', 'Hungana', NULL, 2452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hungana', [Definition] = NULL, [SortOrder] = 244.20 WHERE [Code] = 'hum' END +SET [Description] = 'Hungana', [Definition] = NULL, [SortOrder] = 2452.00 WHERE [Code] = 'hum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hun', 'Hungarian', NULL, 244.30) END +VALUES ('hun', 'Hungarian', NULL, 2453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hungarian', [Definition] = NULL, [SortOrder] = 244.30 WHERE [Code] = 'hun' END +SET [Description] = 'Hungarian', [Definition] = NULL, [SortOrder] = 2453.00 WHERE [Code] = 'hun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsh', 'Hungarian Sign Language', NULL, 244.40) END +VALUES ('hsh', 'Hungarian Sign Language', NULL, 2454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hungarian Sign Language', [Definition] = NULL, [SortOrder] = 244.40 WHERE [Code] = 'hsh' END +SET [Description] = 'Hungarian Sign Language', [Definition] = NULL, [SortOrder] = 2454.00 WHERE [Code] = 'hsh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hng', 'Hungu', NULL, 244.50) END +VALUES ('hng', 'Hungu', NULL, 2455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hungu', [Definition] = NULL, [SortOrder] = 244.50 WHERE [Code] = 'hng' END +SET [Description] = 'Hungu', [Definition] = NULL, [SortOrder] = 2455.00 WHERE [Code] = 'hng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hkk', 'Hunjara-Kaina Ke', NULL, 244.60) END +VALUES ('hkk', 'Hunjara-Kaina Ke', NULL, 2456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunjara-Kaina Ke', [Definition] = NULL, [SortOrder] = 244.60 WHERE [Code] = 'hkk' END +SET [Description] = 'Hunjara-Kaina Ke', [Definition] = NULL, [SortOrder] = 2456.00 WHERE [Code] = 'hkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhc', 'Hunnic', NULL, 244.70) END +VALUES ('xhc', 'Hunnic', NULL, 2457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunnic', [Definition] = NULL, [SortOrder] = 244.70 WHERE [Code] = 'xhc' END +SET [Description] = 'Hunnic', [Definition] = NULL, [SortOrder] = 2457.00 WHERE [Code] = 'xhc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrx', 'Hunsrik', NULL, 244.80) END +VALUES ('hrx', 'Hunsrik', NULL, 2458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunsrik', [Definition] = NULL, [SortOrder] = 244.80 WHERE [Code] = 'hrx' END +SET [Description] = 'Hunsrik', [Definition] = NULL, [SortOrder] = 2458.00 WHERE [Code] = 'hrx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huz', 'Hunzib', NULL, 244.90) END +VALUES ('huz', 'Hunzib', NULL, 2459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hunzib', [Definition] = NULL, [SortOrder] = 244.90 WHERE [Code] = 'huz' END +SET [Description] = 'Hunzib', [Definition] = NULL, [SortOrder] = 2459.00 WHERE [Code] = 'huz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hup', 'Hupa', NULL, 245.00) END +VALUES ('hup', 'Hupa', NULL, 2460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hupa', [Definition] = NULL, [SortOrder] = 245.00 WHERE [Code] = 'hup' END +SET [Description] = 'Hupa', [Definition] = NULL, [SortOrder] = 2460.00 WHERE [Code] = 'hup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jup', 'Hupdë', NULL, 245.10) END +VALUES ('jup', 'Hupdë', NULL, 2461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hupdë', [Definition] = NULL, [SortOrder] = 245.10 WHERE [Code] = 'jup' END +SET [Description] = 'Hupdë', [Definition] = NULL, [SortOrder] = 2461.00 WHERE [Code] = 'jup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hap', 'Hupla', NULL, 245.20) END +VALUES ('hap', 'Hupla', NULL, 2462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hupla', [Definition] = NULL, [SortOrder] = 245.20 WHERE [Code] = 'hap' END +SET [Description] = 'Hupla', [Definition] = NULL, [SortOrder] = 2462.00 WHERE [Code] = 'hap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhu', 'Hurrian', NULL, 245.30) END +VALUES ('xhu', 'Hurrian', NULL, 2463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hurrian', [Definition] = NULL, [SortOrder] = 245.30 WHERE [Code] = 'xhu' END +SET [Description] = 'Hurrian', [Definition] = NULL, [SortOrder] = 2463.00 WHERE [Code] = 'xhu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'geh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geh', 'Hutterite German', NULL, 245.40) END +VALUES ('geh', 'Hutterite German', NULL, 2464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hutterite German', [Definition] = NULL, [SortOrder] = 245.40 WHERE [Code] = 'geh' END +SET [Description] = 'Hutterite German', [Definition] = NULL, [SortOrder] = 2464.00 WHERE [Code] = 'geh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hwo', 'Hwana', NULL, 245.50) END +VALUES ('hwo', 'Hwana', NULL, 2465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hwana', [Definition] = NULL, [SortOrder] = 245.50 WHERE [Code] = 'hwo' END +SET [Description] = 'Hwana', [Definition] = NULL, [SortOrder] = 2465.00 WHERE [Code] = 'hwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hya', 'Hya', NULL, 245.60) END +VALUES ('hya', 'Hya', NULL, 2466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hya', [Definition] = NULL, [SortOrder] = 245.60 WHERE [Code] = 'hya' END +SET [Description] = 'Hya', [Definition] = NULL, [SortOrder] = 2466.00 WHERE [Code] = 'hya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jab', 'Hyam', NULL, 245.70) END +VALUES ('jab', 'Hyam', NULL, 2467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hyam', [Definition] = NULL, [SortOrder] = 245.70 WHERE [Code] = 'jab' END +SET [Description] = 'Hyam', [Definition] = NULL, [SortOrder] = 2467.00 WHERE [Code] = 'jab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scp', 'Hyolmo', NULL, 245.80) END +VALUES ('scp', 'Hyolmo', NULL, 2468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Hyolmo', [Definition] = NULL, [SortOrder] = 245.80 WHERE [Code] = 'scp' END +SET [Description] = 'Hyolmo', [Definition] = NULL, [SortOrder] = 2468.00 WHERE [Code] = 'scp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iwk', 'I-Wak', NULL, 245.90) END +VALUES ('iwk', 'I-Wak', NULL, 2469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'I-Wak', [Definition] = NULL, [SortOrder] = 245.90 WHERE [Code] = 'iwk' END +SET [Description] = 'I-Wak', [Definition] = NULL, [SortOrder] = 2469.00 WHERE [Code] = 'iwk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iai', 'Iaai', NULL, 246.00) END +VALUES ('iai', 'Iaai', NULL, 2470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iaai', [Definition] = NULL, [SortOrder] = 246.00 WHERE [Code] = 'iai' END +SET [Description] = 'Iaai', [Definition] = NULL, [SortOrder] = 2470.00 WHERE [Code] = 'iai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yml', 'Iamalele', NULL, 246.10) END +VALUES ('yml', 'Iamalele', NULL, 2471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iamalele', [Definition] = NULL, [SortOrder] = 246.10 WHERE [Code] = 'yml' END +SET [Description] = 'Iamalele', [Definition] = NULL, [SortOrder] = 2471.00 WHERE [Code] = 'yml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ian') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ian', 'Iatmul', NULL, 246.20) END +VALUES ('ian', 'Iatmul', NULL, 2472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iatmul', [Definition] = NULL, [SortOrder] = 246.20 WHERE [Code] = 'ian' END +SET [Description] = 'Iatmul', [Definition] = NULL, [SortOrder] = 2472.00 WHERE [Code] = 'ian' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmu', 'Iau', NULL, 246.30) END +VALUES ('tmu', 'Iau', NULL, 2473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iau', [Definition] = NULL, [SortOrder] = 246.30 WHERE [Code] = 'tmu' END +SET [Description] = 'Iau', [Definition] = NULL, [SortOrder] = 2473.00 WHERE [Code] = 'tmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tek', 'Ibali Teke', NULL, 246.40) END +VALUES ('tek', 'Ibali Teke', NULL, 2474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibali Teke', [Definition] = NULL, [SortOrder] = 246.40 WHERE [Code] = 'tek' END +SET [Description] = 'Ibali Teke', [Definition] = NULL, [SortOrder] = 2474.00 WHERE [Code] = 'tek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibl', 'Ibaloi', NULL, 246.50) END +VALUES ('ibl', 'Ibaloi', NULL, 2475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibaloi', [Definition] = NULL, [SortOrder] = 246.50 WHERE [Code] = 'ibl' END +SET [Description] = 'Ibaloi', [Definition] = NULL, [SortOrder] = 2475.00 WHERE [Code] = 'ibl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iba', 'Iban', NULL, 246.60) END +VALUES ('iba', 'Iban', NULL, 2476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iban', [Definition] = NULL, [SortOrder] = 246.60 WHERE [Code] = 'iba' END +SET [Description] = 'Iban', [Definition] = NULL, [SortOrder] = 2476.00 WHERE [Code] = 'iba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibg', 'Ibanag', NULL, 246.70) END +VALUES ('ibg', 'Ibanag', NULL, 2477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibanag', [Definition] = NULL, [SortOrder] = 246.70 WHERE [Code] = 'ibg' END +SET [Description] = 'Ibanag', [Definition] = NULL, [SortOrder] = 2477.00 WHERE [Code] = 'ibg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iby', 'Ibani', NULL, 246.80) END +VALUES ('iby', 'Ibani', NULL, 2478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibani', [Definition] = NULL, [SortOrder] = 246.80 WHERE [Code] = 'iby' END +SET [Description] = 'Ibani', [Definition] = NULL, [SortOrder] = 2478.00 WHERE [Code] = 'iby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ivb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ivb', 'Ibatan', NULL, 246.90) END +VALUES ('ivb', 'Ibatan', NULL, 2479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibatan', [Definition] = NULL, [SortOrder] = 246.90 WHERE [Code] = 'ivb' END +SET [Description] = 'Ibatan', [Definition] = NULL, [SortOrder] = 2479.00 WHERE [Code] = 'ivb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xib', 'Iberian', NULL, 247.00) END +VALUES ('xib', 'Iberian', NULL, 2480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iberian', [Definition] = NULL, [SortOrder] = 247.00 WHERE [Code] = 'xib' END +SET [Description] = 'Iberian', [Definition] = NULL, [SortOrder] = 2480.00 WHERE [Code] = 'xib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibb', 'Ibibio', NULL, 247.10) END +VALUES ('ibb', 'Ibibio', NULL, 2481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibibio', [Definition] = NULL, [SortOrder] = 247.10 WHERE [Code] = 'ibb' END +SET [Description] = 'Ibibio', [Definition] = NULL, [SortOrder] = 2481.00 WHERE [Code] = 'ibb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibn', 'Ibino', NULL, 247.20) END +VALUES ('ibn', 'Ibino', NULL, 2482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibino', [Definition] = NULL, [SortOrder] = 247.20 WHERE [Code] = 'ibn' END +SET [Description] = 'Ibino', [Definition] = NULL, [SortOrder] = 2482.00 WHERE [Code] = 'ibn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibu', 'Ibu', NULL, 247.30) END +VALUES ('ibu', 'Ibu', NULL, 2483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibu', [Definition] = NULL, [SortOrder] = 247.30 WHERE [Code] = 'ibu' END +SET [Description] = 'Ibu', [Definition] = NULL, [SortOrder] = 2483.00 WHERE [Code] = 'ibu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibr', 'Ibuoro', NULL, 247.40) END +VALUES ('ibr', 'Ibuoro', NULL, 2484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ibuoro', [Definition] = NULL, [SortOrder] = 247.40 WHERE [Code] = 'ibr' END +SET [Description] = 'Ibuoro', [Definition] = NULL, [SortOrder] = 2484.00 WHERE [Code] = 'ibr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isl', 'Icelandic', NULL, 247.50) END +VALUES ('isl', 'Icelandic', NULL, 2485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Icelandic', [Definition] = NULL, [SortOrder] = 247.50 WHERE [Code] = 'isl' END +SET [Description] = 'Icelandic', [Definition] = NULL, [SortOrder] = 2485.00 WHERE [Code] = 'isl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'icl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('icl', 'Icelandic Sign Language', NULL, 247.60) END +VALUES ('icl', 'Icelandic Sign Language', NULL, 2486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Icelandic Sign Language', [Definition] = NULL, [SortOrder] = 247.60 WHERE [Code] = 'icl' END +SET [Description] = 'Icelandic Sign Language', [Definition] = NULL, [SortOrder] = 2486.00 WHERE [Code] = 'icl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bec', 'Iceve-Maci', NULL, 247.70) END +VALUES ('bec', 'Iceve-Maci', NULL, 2487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iceve-Maci', [Definition] = NULL, [SortOrder] = 247.70 WHERE [Code] = 'bec' END +SET [Description] = 'Iceve-Maci', [Definition] = NULL, [SortOrder] = 2487.00 WHERE [Code] = 'bec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dbj', 'Ida''an', NULL, 247.80) END +VALUES ('dbj', 'Ida''an', NULL, 2488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ida''an', [Definition] = NULL, [SortOrder] = 247.80 WHERE [Code] = 'dbj' END +SET [Description] = 'Ida''an', [Definition] = NULL, [SortOrder] = 2488.00 WHERE [Code] = 'dbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ida') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ida', 'Idakho-Isukha-Tiriki', NULL, 247.90) END +VALUES ('ida', 'Idakho-Isukha-Tiriki', NULL, 2489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idakho-Isukha-Tiriki', [Definition] = NULL, [SortOrder] = 247.90 WHERE [Code] = 'ida' END +SET [Description] = 'Idakho-Isukha-Tiriki', [Definition] = NULL, [SortOrder] = 2489.00 WHERE [Code] = 'ida' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idt', 'Idaté', NULL, 248.00) END +VALUES ('idt', 'Idaté', NULL, 2490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idaté', [Definition] = NULL, [SortOrder] = 248.00 WHERE [Code] = 'idt' END +SET [Description] = 'Idaté', [Definition] = NULL, [SortOrder] = 2490.00 WHERE [Code] = 'idt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ide') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ide', 'Idere', NULL, 248.10) END +VALUES ('ide', 'Idere', NULL, 2491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idere', [Definition] = NULL, [SortOrder] = 248.10 WHERE [Code] = 'ide' END +SET [Description] = 'Idere', [Definition] = NULL, [SortOrder] = 2491.00 WHERE [Code] = 'ide' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ids') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ids', 'Idesa', NULL, 248.20) END +VALUES ('ids', 'Idesa', NULL, 2492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idesa', [Definition] = NULL, [SortOrder] = 248.20 WHERE [Code] = 'ids' END +SET [Description] = 'Idesa', [Definition] = NULL, [SortOrder] = 2492.00 WHERE [Code] = 'ids' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idi', 'Idi', NULL, 248.30) END +VALUES ('idi', 'Idi', NULL, 2493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idi', [Definition] = NULL, [SortOrder] = 248.30 WHERE [Code] = 'idi' END +SET [Description] = 'Idi', [Definition] = NULL, [SortOrder] = 2493.00 WHERE [Code] = 'idi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ido') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ido', 'Ido', NULL, 248.40) END +VALUES ('ido', 'Ido', NULL, 2494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ido', [Definition] = NULL, [SortOrder] = 248.40 WHERE [Code] = 'ido' END +SET [Description] = 'Ido', [Definition] = NULL, [SortOrder] = 2494.00 WHERE [Code] = 'ido' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idu', 'Idoma', NULL, 248.50) END +VALUES ('idu', 'Idoma', NULL, 2495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idoma', [Definition] = NULL, [SortOrder] = 248.50 WHERE [Code] = 'idu' END +SET [Description] = 'Idoma', [Definition] = NULL, [SortOrder] = 2495.00 WHERE [Code] = 'idu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idc', 'Idon', NULL, 248.60) END +VALUES ('idc', 'Idon', NULL, 2496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idon', [Definition] = NULL, [SortOrder] = 248.60 WHERE [Code] = 'idc' END +SET [Description] = 'Idon', [Definition] = NULL, [SortOrder] = 2496.00 WHERE [Code] = 'idc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clk', 'Idu-Mishmi', NULL, 248.70) END +VALUES ('clk', 'Idu-Mishmi', NULL, 2497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Idu-Mishmi', [Definition] = NULL, [SortOrder] = 248.70 WHERE [Code] = 'clk' END +SET [Description] = 'Idu-Mishmi', [Definition] = NULL, [SortOrder] = 2497.00 WHERE [Code] = 'clk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'viv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('viv', 'Iduna', NULL, 248.80) END +VALUES ('viv', 'Iduna', NULL, 2498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iduna', [Definition] = NULL, [SortOrder] = 248.80 WHERE [Code] = 'viv' END +SET [Description] = 'Iduna', [Definition] = NULL, [SortOrder] = 2498.00 WHERE [Code] = 'viv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ife') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ife', 'Ifè', NULL, 248.90) END +VALUES ('ife', 'Ifè', NULL, 2499.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ifè', [Definition] = NULL, [SortOrder] = 248.90 WHERE [Code] = 'ife' END +SET [Description] = 'Ifè', [Definition] = NULL, [SortOrder] = 2499.00 WHERE [Code] = 'ife' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iff') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iff', 'Ifo', NULL, 249.00) END +VALUES ('iff', 'Ifo', NULL, 2500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ifo', [Definition] = NULL, [SortOrder] = 249.00 WHERE [Code] = 'iff' END +SET [Description] = 'Ifo', [Definition] = NULL, [SortOrder] = 2500.00 WHERE [Code] = 'iff' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igl', 'Igala', NULL, 249.10) END +VALUES ('igl', 'Igala', NULL, 2501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igala', [Definition] = NULL, [SortOrder] = 249.10 WHERE [Code] = 'igl' END +SET [Description] = 'Igala', [Definition] = NULL, [SortOrder] = 2501.00 WHERE [Code] = 'igl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igg', 'Igana', NULL, 249.20) END +VALUES ('igg', 'Igana', NULL, 2502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igana', [Definition] = NULL, [SortOrder] = 249.20 WHERE [Code] = 'igg' END +SET [Description] = 'Igana', [Definition] = NULL, [SortOrder] = 2502.00 WHERE [Code] = 'igg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibo', 'Igbo', NULL, 249.30) END +VALUES ('ibo', 'Igbo', NULL, 2503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igbo', [Definition] = NULL, [SortOrder] = 249.30 WHERE [Code] = 'ibo' END +SET [Description] = 'Igbo', [Definition] = NULL, [SortOrder] = 2503.00 WHERE [Code] = 'ibo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ige') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ige', 'Igede', NULL, 249.40) END +VALUES ('ige', 'Igede', NULL, 2504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igede', [Definition] = NULL, [SortOrder] = 249.40 WHERE [Code] = 'ige' END +SET [Description] = 'Igede', [Definition] = NULL, [SortOrder] = 2504.00 WHERE [Code] = 'ige' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ign') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ign', 'Ignaciano', NULL, 249.50) END +VALUES ('ign', 'Ignaciano', NULL, 2505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ignaciano', [Definition] = NULL, [SortOrder] = 249.50 WHERE [Code] = 'ign' END +SET [Description] = 'Ignaciano', [Definition] = NULL, [SortOrder] = 2505.00 WHERE [Code] = 'ign' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahl', 'Igo', NULL, 249.60) END +VALUES ('ahl', 'Igo', NULL, 2506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igo', [Definition] = NULL, [SortOrder] = 249.60 WHERE [Code] = 'ahl' END +SET [Description] = 'Igo', [Definition] = NULL, [SortOrder] = 2506.00 WHERE [Code] = 'ahl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nar', 'Iguta', NULL, 249.70) END +VALUES ('nar', 'Iguta', NULL, 2507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iguta', [Definition] = NULL, [SortOrder] = 249.70 WHERE [Code] = 'nar' END +SET [Description] = 'Iguta', [Definition] = NULL, [SortOrder] = 2507.00 WHERE [Code] = 'nar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igw', 'Igwe', NULL, 249.80) END +VALUES ('igw', 'Igwe', NULL, 2508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Igwe', [Definition] = NULL, [SortOrder] = 249.80 WHERE [Code] = 'igw' END +SET [Description] = 'Igwe', [Definition] = NULL, [SortOrder] = 2508.00 WHERE [Code] = 'igw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ihp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ihp', 'Iha', NULL, 249.90) END +VALUES ('ihp', 'Iha', NULL, 2509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iha', [Definition] = NULL, [SortOrder] = 249.90 WHERE [Code] = 'ihp' END +SET [Description] = 'Iha', [Definition] = NULL, [SortOrder] = 2509.00 WHERE [Code] = 'ihp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ihb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ihb', 'Iha Based Pidgin', NULL, 250.00) END +VALUES ('ihb', 'Iha Based Pidgin', NULL, 2510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iha Based Pidgin', [Definition] = NULL, [SortOrder] = 250.00 WHERE [Code] = 'ihb' END +SET [Description] = 'Iha Based Pidgin', [Definition] = NULL, [SortOrder] = 2510.00 WHERE [Code] = 'ihb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ihi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ihi', 'Ihievbe', NULL, 250.10) END +VALUES ('ihi', 'Ihievbe', NULL, 2511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ihievbe', [Definition] = NULL, [SortOrder] = 250.10 WHERE [Code] = 'ihi' END +SET [Description] = 'Ihievbe', [Definition] = NULL, [SortOrder] = 2511.00 WHERE [Code] = 'ihi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikx', 'Ik', NULL, 250.20) END +VALUES ('ikx', 'Ik', NULL, 2512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ik', [Definition] = NULL, [SortOrder] = 250.20 WHERE [Code] = 'ikx' END +SET [Description] = 'Ik', [Definition] = NULL, [SortOrder] = 2512.00 WHERE [Code] = 'ikx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikk', 'Ika', NULL, 250.30) END +VALUES ('ikk', 'Ika', NULL, 2513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ika', [Definition] = NULL, [SortOrder] = 250.30 WHERE [Code] = 'ikk' END +SET [Description] = 'Ika', [Definition] = NULL, [SortOrder] = 2513.00 WHERE [Code] = 'ikk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikr', 'Ikaranggal', NULL, 250.40) END +VALUES ('ikr', 'Ikaranggal', NULL, 2514.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Ikaranggal', [Definition] = NULL, [SortOrder] = 2514.00 WHERE [Code] = 'ikr' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('ikh', 'Ikhin-Arokho', NULL, 2515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikaranggal', [Definition] = NULL, [SortOrder] = 250.40 WHERE [Code] = 'ikr' END +SET [Description] = 'Ikhin-Arokho', [Definition] = NULL, [SortOrder] = 2515.00 WHERE [Code] = 'ikh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikz', 'Ikizu', NULL, 250.50) END +VALUES ('ikz', 'Ikizu', NULL, 2516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikizu', [Definition] = NULL, [SortOrder] = 250.50 WHERE [Code] = 'ikz' END +SET [Description] = 'Ikizu', [Definition] = NULL, [SortOrder] = 2516.00 WHERE [Code] = 'ikz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iki', 'Iko', NULL, 250.60) END +VALUES ('iki', 'Iko', NULL, 2517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iko', [Definition] = NULL, [SortOrder] = 250.60 WHERE [Code] = 'iki' END +SET [Description] = 'Iko', [Definition] = NULL, [SortOrder] = 2517.00 WHERE [Code] = 'iki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meb', 'Ikobi', NULL, 250.70) END +VALUES ('meb', 'Ikobi', NULL, 2518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikobi', [Definition] = NULL, [SortOrder] = 250.70 WHERE [Code] = 'meb' END +SET [Description] = 'Ikobi', [Definition] = NULL, [SortOrder] = 2518.00 WHERE [Code] = 'meb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntk', 'Ikoma-Nata-Isenye', NULL, 250.80) END +VALUES ('ntk', 'Ikoma-Nata-Isenye', NULL, 2519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikoma-Nata-Isenye', [Definition] = NULL, [SortOrder] = 250.80 WHERE [Code] = 'ntk' END +SET [Description] = 'Ikoma-Nata-Isenye', [Definition] = NULL, [SortOrder] = 2519.00 WHERE [Code] = 'ntk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txi', 'Ikpeng', NULL, 250.90) END +VALUES ('txi', 'Ikpeng', NULL, 2520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikpeng', [Definition] = NULL, [SortOrder] = 250.90 WHERE [Code] = 'txi' END +SET [Description] = 'Ikpeng', [Definition] = NULL, [SortOrder] = 2520.00 WHERE [Code] = 'txi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikp', 'Ikpeshi', NULL, 251.00) END +VALUES ('ikp', 'Ikpeshi', NULL, 2521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikpeshi', [Definition] = NULL, [SortOrder] = 251.00 WHERE [Code] = 'ikp' END +SET [Description] = 'Ikpeshi', [Definition] = NULL, [SortOrder] = 2521.00 WHERE [Code] = 'ikp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpo', 'Ikposo', NULL, 251.10) END +VALUES ('kpo', 'Ikposo', NULL, 2522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikposo', [Definition] = NULL, [SortOrder] = 251.10 WHERE [Code] = 'kpo' END +SET [Description] = 'Ikposo', [Definition] = NULL, [SortOrder] = 2522.00 WHERE [Code] = 'kpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikv', 'Iku-Gora-Ankwa', NULL, 251.20) END +VALUES ('ikv', 'Iku-Gora-Ankwa', NULL, 2523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iku-Gora-Ankwa', [Definition] = NULL, [SortOrder] = 251.20 WHERE [Code] = 'ikv' END +SET [Description] = 'Iku-Gora-Ankwa', [Definition] = NULL, [SortOrder] = 2523.00 WHERE [Code] = 'ikv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikl', 'Ikulu', NULL, 251.30) END +VALUES ('ikl', 'Ikulu', NULL, 2524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikulu', [Definition] = NULL, [SortOrder] = 251.30 WHERE [Code] = 'ikl' END +SET [Description] = 'Ikulu', [Definition] = NULL, [SortOrder] = 2524.00 WHERE [Code] = 'ikl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikw', 'Ikwere', NULL, 251.40) END +VALUES ('ikw', 'Ikwere', NULL, 2525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikwere', [Definition] = NULL, [SortOrder] = 251.40 WHERE [Code] = 'ikw' END +SET [Description] = 'Ikwere', [Definition] = NULL, [SortOrder] = 2525.00 WHERE [Code] = 'ikw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iqw', 'Ikwo', NULL, 251.50) END +VALUES ('iqw', 'Ikwo', NULL, 2526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ikwo', [Definition] = NULL, [SortOrder] = 251.50 WHERE [Code] = 'iqw' END +SET [Description] = 'Ikwo', [Definition] = NULL, [SortOrder] = 2526.00 WHERE [Code] = 'iqw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilb', 'Ila', NULL, 251.60) END +VALUES ('ilb', 'Ila', NULL, 2527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ila', [Definition] = NULL, [SortOrder] = 251.60 WHERE [Code] = 'ilb' END +SET [Description] = 'Ila', [Definition] = NULL, [SortOrder] = 2527.00 WHERE [Code] = 'ilb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ila') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ila', 'Ile Ape', NULL, 251.70) END +VALUES ('ila', 'Ile Ape', NULL, 2528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ile Ape', [Definition] = NULL, [SortOrder] = 251.70 WHERE [Code] = 'ila' END +SET [Description] = 'Ile Ape', [Definition] = NULL, [SortOrder] = 2528.00 WHERE [Code] = 'ila' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ili') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ili', 'Ili Turki', NULL, 251.80) END +VALUES ('ili', 'Ili Turki', NULL, 2529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ili Turki', [Definition] = NULL, [SortOrder] = 251.80 WHERE [Code] = 'ili' END +SET [Description] = 'Ili Turki', [Definition] = NULL, [SortOrder] = 2529.00 WHERE [Code] = 'ili' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilu', 'Ili''uun', NULL, 251.90) END +VALUES ('ilu', 'Ili''uun', NULL, 2530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ili''uun', [Definition] = NULL, [SortOrder] = 251.90 WHERE [Code] = 'ilu' END +SET [Description] = 'Ili''uun', [Definition] = NULL, [SortOrder] = 2530.00 WHERE [Code] = 'ilu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbi', 'Ilianen Manobo', NULL, 252.00) END +VALUES ('mbi', 'Ilianen Manobo', NULL, 2531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ilianen Manobo', [Definition] = NULL, [SortOrder] = 252.00 WHERE [Code] = 'mbi' END +SET [Description] = 'Ilianen Manobo', [Definition] = NULL, [SortOrder] = 2531.00 WHERE [Code] = 'mbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xil', 'Illyrian', NULL, 252.10) END +VALUES ('xil', 'Illyrian', NULL, 2532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Illyrian', [Definition] = NULL, [SortOrder] = 252.10 WHERE [Code] = 'xil' END +SET [Description] = 'Illyrian', [Definition] = NULL, [SortOrder] = 2532.00 WHERE [Code] = 'xil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilo', 'Iloko', NULL, 252.20) END +VALUES ('ilo', 'Iloko', NULL, 2533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iloko', [Definition] = NULL, [SortOrder] = 252.20 WHERE [Code] = 'ilo' END +SET [Description] = 'Iloko', [Definition] = NULL, [SortOrder] = 2533.00 WHERE [Code] = 'ilo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilk', 'Ilongot', NULL, 252.30) END +VALUES ('ilk', 'Ilongot', NULL, 2534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ilongot', [Definition] = NULL, [SortOrder] = 252.30 WHERE [Code] = 'ilk' END +SET [Description] = 'Ilongot', [Definition] = NULL, [SortOrder] = 2534.00 WHERE [Code] = 'ilk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilv', 'Ilue', NULL, 252.40) END +VALUES ('ilv', 'Ilue', NULL, 2535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ilue', [Definition] = NULL, [SortOrder] = 252.40 WHERE [Code] = 'ilv' END +SET [Description] = 'Ilue', [Definition] = NULL, [SortOrder] = 2535.00 WHERE [Code] = 'ilv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlk', 'Ilwana', NULL, 252.50) END +VALUES ('mlk', 'Ilwana', NULL, 2536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ilwana', [Definition] = NULL, [SortOrder] = 252.50 WHERE [Code] = 'mlk' END +SET [Description] = 'Ilwana', [Definition] = NULL, [SortOrder] = 2536.00 WHERE [Code] = 'mlk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvi', 'Imbabura Highland Quichua', NULL, 252.60) END +VALUES ('qvi', 'Imbabura Highland Quichua', NULL, 2537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imbabura Highland Quichua', [Definition] = NULL, [SortOrder] = 252.60 WHERE [Code] = 'qvi' END +SET [Description] = 'Imbabura Highland Quichua', [Definition] = NULL, [SortOrder] = 2537.00 WHERE [Code] = 'qvi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imo', 'Imbongu', NULL, 252.70) END +VALUES ('imo', 'Imbongu', NULL, 2538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imbongu', [Definition] = NULL, [SortOrder] = 252.70 WHERE [Code] = 'imo' END +SET [Description] = 'Imbongu', [Definition] = NULL, [SortOrder] = 2538.00 WHERE [Code] = 'imo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imn', 'Imonda', NULL, 252.80) END +VALUES ('imn', 'Imonda', NULL, 2539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imonda', [Definition] = NULL, [SortOrder] = 252.80 WHERE [Code] = 'imn' END +SET [Description] = 'Imonda', [Definition] = NULL, [SortOrder] = 2539.00 WHERE [Code] = 'imn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imt', 'Imotong', NULL, 252.90) END +VALUES ('imt', 'Imotong', NULL, 2540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imotong', [Definition] = NULL, [SortOrder] = 252.90 WHERE [Code] = 'imt' END +SET [Description] = 'Imotong', [Definition] = NULL, [SortOrder] = 2540.00 WHERE [Code] = 'imt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imr', 'Imroing', NULL, 253.00) END +VALUES ('imr', 'Imroing', NULL, 2541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Imroing', [Definition] = NULL, [SortOrder] = 253.00 WHERE [Code] = 'imr' END +SET [Description] = 'Imroing', [Definition] = NULL, [SortOrder] = 2541.00 WHERE [Code] = 'imr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abx', 'Inabaknon', NULL, 253.10) END +VALUES ('abx', 'Inabaknon', NULL, 2542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inabaknon', [Definition] = NULL, [SortOrder] = 253.10 WHERE [Code] = 'abx' END +SET [Description] = 'Inabaknon', [Definition] = NULL, [SortOrder] = 2542.00 WHERE [Code] = 'abx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzu', 'Inapang', NULL, 253.20) END +VALUES ('mzu', 'Inapang', NULL, 2543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inapang', [Definition] = NULL, [SortOrder] = 253.20 WHERE [Code] = 'mzu' END +SET [Description] = 'Inapang', [Definition] = NULL, [SortOrder] = 2543.00 WHERE [Code] = 'mzu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inp', 'Iñapari', NULL, 253.30) END +VALUES ('inp', 'Iñapari', NULL, 2544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iñapari', [Definition] = NULL, [SortOrder] = 253.30 WHERE [Code] = 'inp' END +SET [Description] = 'Iñapari', [Definition] = NULL, [SortOrder] = 2544.00 WHERE [Code] = 'inp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smn', 'Inari Sami', NULL, 253.40) END +VALUES ('smn', 'Inari Sami', NULL, 2545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inari Sami', [Definition] = NULL, [SortOrder] = 253.40 WHERE [Code] = 'smn' END +SET [Description] = 'Inari Sami', [Definition] = NULL, [SortOrder] = 2545.00 WHERE [Code] = 'smn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ins') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ins', 'Indian Sign Language', NULL, 253.50) END +VALUES ('ins', 'Indian Sign Language', NULL, 2546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indian Sign Language', [Definition] = NULL, [SortOrder] = 253.50 WHERE [Code] = 'ins' END +SET [Description] = 'Indian Sign Language', [Definition] = NULL, [SortOrder] = 2546.00 WHERE [Code] = 'ins' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idb', 'Indo-Portuguese', NULL, 253.60) END +VALUES ('idb', 'Indo-Portuguese', NULL, 2547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indo-Portuguese', [Definition] = NULL, [SortOrder] = 253.60 WHERE [Code] = 'idb' END +SET [Description] = 'Indo-Portuguese', [Definition] = NULL, [SortOrder] = 2547.00 WHERE [Code] = 'idb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ind') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ind', 'Indonesian', NULL, 253.70) END +VALUES ('ind', 'Indonesian', NULL, 2548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indonesian', [Definition] = NULL, [SortOrder] = 253.70 WHERE [Code] = 'ind' END +SET [Description] = 'Indonesian', [Definition] = NULL, [SortOrder] = 2548.00 WHERE [Code] = 'ind' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdl', 'Indonesian Bajau', NULL, 253.80) END +VALUES ('bdl', 'Indonesian Bajau', NULL, 2549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indonesian Bajau', [Definition] = NULL, [SortOrder] = 253.80 WHERE [Code] = 'bdl' END +SET [Description] = 'Indonesian Bajau', [Definition] = NULL, [SortOrder] = 2549.00 WHERE [Code] = 'bdl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inl', 'Indonesian Sign Language', NULL, 253.90) END +VALUES ('inl', 'Indonesian Sign Language', NULL, 2550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indonesian Sign Language', [Definition] = NULL, [SortOrder] = 253.90 WHERE [Code] = 'inl' END +SET [Description] = 'Indonesian Sign Language', [Definition] = NULL, [SortOrder] = 2550.00 WHERE [Code] = 'inl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'idr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('idr', 'Indri', NULL, 254.00) END +VALUES ('idr', 'Indri', NULL, 2551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indri', [Definition] = NULL, [SortOrder] = 254.00 WHERE [Code] = 'idr' END +SET [Description] = 'Indri', [Definition] = NULL, [SortOrder] = 2551.00 WHERE [Code] = 'idr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvy', 'Indus Kohistani', NULL, 254.10) END +VALUES ('mvy', 'Indus Kohistani', NULL, 2552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indus Kohistani', [Definition] = NULL, [SortOrder] = 254.10 WHERE [Code] = 'mvy' END +SET [Description] = 'Indus Kohistani', [Definition] = NULL, [SortOrder] = 2552.00 WHERE [Code] = 'mvy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xiv', 'Indus Valley Language', NULL, 254.20) END +VALUES ('xiv', 'Indus Valley Language', NULL, 2553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Indus Valley Language', [Definition] = NULL, [SortOrder] = 254.20 WHERE [Code] = 'xiv' END +SET [Description] = 'Indus Valley Language', [Definition] = NULL, [SortOrder] = 2553.00 WHERE [Code] = 'xiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oin', 'Inebu One', NULL, 254.30) END +VALUES ('oin', 'Inebu One', NULL, 2554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inebu One', [Definition] = NULL, [SortOrder] = 254.30 WHERE [Code] = 'oin' END +SET [Description] = 'Inebu One', [Definition] = NULL, [SortOrder] = 2554.00 WHERE [Code] = 'oin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inz', 'Ineseño', NULL, 254.40) END +VALUES ('inz', 'Ineseño', NULL, 2555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ineseño', [Definition] = NULL, [SortOrder] = 254.40 WHERE [Code] = 'inz' END +SET [Description] = 'Ineseño', [Definition] = NULL, [SortOrder] = 2555.00 WHERE [Code] = 'inz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inb', 'Inga', NULL, 254.50) END +VALUES ('inb', 'Inga', NULL, 2556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inga', [Definition] = NULL, [SortOrder] = 254.50 WHERE [Code] = 'inb' END +SET [Description] = 'Inga', [Definition] = NULL, [SortOrder] = 2556.00 WHERE [Code] = 'inb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'izh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('izh', 'Ingrian', NULL, 254.60) END +VALUES ('izh', 'Ingrian', NULL, 2557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ingrian', [Definition] = NULL, [SortOrder] = 254.60 WHERE [Code] = 'izh' END +SET [Description] = 'Ingrian', [Definition] = NULL, [SortOrder] = 2557.00 WHERE [Code] = 'izh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inh', 'Ingush', NULL, 254.70) END +VALUES ('inh', 'Ingush', NULL, 2558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ingush', [Definition] = NULL, [SortOrder] = 254.70 WHERE [Code] = 'inh' END +SET [Description] = 'Ingush', [Definition] = NULL, [SortOrder] = 2558.00 WHERE [Code] = 'inh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iti', 'Inlaod Itneg', NULL, 254.80) END +VALUES ('iti', 'Inlaod Itneg', NULL, 2559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inlaod Itneg', [Definition] = NULL, [SortOrder] = 254.80 WHERE [Code] = 'iti' END +SET [Description] = 'Inlaod Itneg', [Definition] = NULL, [SortOrder] = 2559.00 WHERE [Code] = 'iti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moe', 'Innu', NULL, 254.90) END +VALUES ('moe', 'Innu', NULL, 2560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Innu', [Definition] = NULL, [SortOrder] = 254.90 WHERE [Code] = 'moe' END +SET [Description] = 'Innu', [Definition] = NULL, [SortOrder] = 2560.00 WHERE [Code] = 'moe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ino') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ino', 'Inoke-Yate', NULL, 255.00) END +VALUES ('ino', 'Inoke-Yate', NULL, 2561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inoke-Yate', [Definition] = NULL, [SortOrder] = 255.00 WHERE [Code] = 'ino' END +SET [Description] = 'Inoke-Yate', [Definition] = NULL, [SortOrder] = 2561.00 WHERE [Code] = 'ino' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loc', 'Inonhan', NULL, 255.10) END +VALUES ('loc', 'Inonhan', NULL, 2562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inonhan', [Definition] = NULL, [SortOrder] = 255.10 WHERE [Code] = 'loc' END +SET [Description] = 'Inonhan', [Definition] = NULL, [SortOrder] = 2562.00 WHERE [Code] = 'loc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ior') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ior', 'Inor', NULL, 255.20) END +VALUES ('ior', 'Inor', NULL, 2563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inor', [Definition] = NULL, [SortOrder] = 255.20 WHERE [Code] = 'ior' END +SET [Description] = 'Inor', [Definition] = NULL, [SortOrder] = 2563.00 WHERE [Code] = 'ior' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkf', 'Inpui Naga', NULL, 255.30) END +VALUES ('nkf', 'Inpui Naga', NULL, 2564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inpui Naga', [Definition] = NULL, [SortOrder] = 255.30 WHERE [Code] = 'nkf' END +SET [Description] = 'Inpui Naga', [Definition] = NULL, [SortOrder] = 2564.00 WHERE [Code] = 'nkf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igs', 'Interglossa', NULL, 255.40) END +VALUES ('igs', 'Interglossa', NULL, 2565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Interglossa', [Definition] = NULL, [SortOrder] = 255.40 WHERE [Code] = 'igs' END +SET [Description] = 'Interglossa', [Definition] = NULL, [SortOrder] = 2565.00 WHERE [Code] = 'igs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ina') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ina', 'Interlingua (International Auxiliary Language Association)', NULL, 255.50) END +VALUES ('ina', 'Interlingua (International Auxiliary Language Association)', NULL, 2566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Interlingua (International Auxiliary Language Association)', [Definition] = NULL, [SortOrder] = 255.50 WHERE [Code] = 'ina' END +SET [Description] = 'Interlingua (International Auxiliary Language Association)', [Definition] = NULL, [SortOrder] = 2566.00 WHERE [Code] = 'ina' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ile') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ile', 'Interlingue', NULL, 255.60) END +VALUES ('ile', 'Interlingue', NULL, 2567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Interlingue', [Definition] = NULL, [SortOrder] = 255.60 WHERE [Code] = 'ile' END +SET [Description] = 'Interlingue', [Definition] = NULL, [SortOrder] = 2567.00 WHERE [Code] = 'ile' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ils') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ils', 'International Sign', NULL, 255.70) END +VALUES ('ils', 'International Sign', NULL, 2568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'International Sign', [Definition] = NULL, [SortOrder] = 255.70 WHERE [Code] = 'ils' END +SET [Description] = 'International Sign', [Definition] = NULL, [SortOrder] = 2568.00 WHERE [Code] = 'ils' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'int') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('int', 'Intha', NULL, 255.80) END +VALUES ('int', 'Intha', NULL, 2569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Intha', [Definition] = NULL, [SortOrder] = 255.80 WHERE [Code] = 'int' END +SET [Description] = 'Intha', [Definition] = NULL, [SortOrder] = 2569.00 WHERE [Code] = 'int' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ikt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ikt', 'Inuinnaqtun', NULL, 255.90) END +VALUES ('ikt', 'Inuinnaqtun', NULL, 2570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inuinnaqtun', [Definition] = NULL, [SortOrder] = 255.90 WHERE [Code] = 'ikt' END +SET [Description] = 'Inuinnaqtun', [Definition] = NULL, [SortOrder] = 2570.00 WHERE [Code] = 'ikt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iks', 'Inuit Sign Language', NULL, 256.00) END +VALUES ('iks', 'Inuit Sign Language', NULL, 2571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inuit Sign Language', [Definition] = NULL, [SortOrder] = 256.00 WHERE [Code] = 'iks' END +SET [Description] = 'Inuit Sign Language', [Definition] = NULL, [SortOrder] = 2571.00 WHERE [Code] = 'iks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iku', 'Inuktitut', NULL, 256.10) END +VALUES ('iku', 'Inuktitut', NULL, 2572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inuktitut', [Definition] = NULL, [SortOrder] = 256.10 WHERE [Code] = 'iku' END +SET [Description] = 'Inuktitut', [Definition] = NULL, [SortOrder] = 2572.00 WHERE [Code] = 'iku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ipk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ipk', 'Inupiaq', NULL, 256.20) END +VALUES ('ipk', 'Inupiaq', NULL, 2573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Inupiaq', [Definition] = NULL, [SortOrder] = 256.20 WHERE [Code] = 'ipk' END +SET [Description] = 'Inupiaq', [Definition] = NULL, [SortOrder] = 2573.00 WHERE [Code] = 'ipk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iow', 'Iowa-Oto', NULL, 256.30) END +VALUES ('iow', 'Iowa-Oto', NULL, 2574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iowa-Oto', [Definition] = NULL, [SortOrder] = 256.30 WHERE [Code] = 'iow' END +SET [Description] = 'Iowa-Oto', [Definition] = NULL, [SortOrder] = 2574.00 WHERE [Code] = 'iow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azm', 'Ipalapa Amuzgo', NULL, 256.40) END +VALUES ('azm', 'Ipalapa Amuzgo', NULL, 2575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ipalapa Amuzgo', [Definition] = NULL, [SortOrder] = 256.40 WHERE [Code] = 'azm' END +SET [Description] = 'Ipalapa Amuzgo', [Definition] = NULL, [SortOrder] = 2575.00 WHERE [Code] = 'azm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ipo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ipo', 'Ipiko', NULL, 256.50) END +VALUES ('ipo', 'Ipiko', NULL, 2576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ipiko', [Definition] = NULL, [SortOrder] = 256.50 WHERE [Code] = 'ipo' END +SET [Description] = 'Ipiko', [Definition] = NULL, [SortOrder] = 2576.00 WHERE [Code] = 'ipo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ipi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ipi', 'Ipili', NULL, 256.60) END +VALUES ('ipi', 'Ipili', NULL, 2577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ipili', [Definition] = NULL, [SortOrder] = 256.60 WHERE [Code] = 'ipi' END +SET [Description] = 'Ipili', [Definition] = NULL, [SortOrder] = 2577.00 WHERE [Code] = 'ipi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ass') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ass', 'Ipulo', NULL, 256.70) END +VALUES ('ass', 'Ipulo', NULL, 2578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ipulo', [Definition] = NULL, [SortOrder] = 256.70 WHERE [Code] = 'ass' END +SET [Description] = 'Ipulo', [Definition] = NULL, [SortOrder] = 2578.00 WHERE [Code] = 'ass' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iqu', 'Iquito', NULL, 256.80) END +VALUES ('iqu', 'Iquito', NULL, 2579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iquito', [Definition] = NULL, [SortOrder] = 256.80 WHERE [Code] = 'iqu' END +SET [Description] = 'Iquito', [Definition] = NULL, [SortOrder] = 2579.00 WHERE [Code] = 'iqu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irr', 'Ir', NULL, 256.90) END +VALUES ('irr', 'Ir', NULL, 2580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ir', [Definition] = NULL, [SortOrder] = 256.90 WHERE [Code] = 'irr' END +SET [Description] = 'Ir', [Definition] = NULL, [SortOrder] = 2580.00 WHERE [Code] = 'irr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pes', 'Iranian Persian', NULL, 257.00) END +VALUES ('pes', 'Iranian Persian', NULL, 2581.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Iranian Persian', [Definition] = NULL, [SortOrder] = 2581.00 WHERE [Code] = 'pes' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('psc', 'Iranian Sign Language', NULL, 2582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iranian Persian', [Definition] = NULL, [SortOrder] = 257.00 WHERE [Code] = 'pes' END +SET [Description] = 'Iranian Sign Language', [Definition] = NULL, [SortOrder] = 2582.00 WHERE [Code] = 'psc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irn', 'Irántxe', NULL, 257.10) END +VALUES ('irn', 'Irántxe', NULL, 2583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irántxe', [Definition] = NULL, [SortOrder] = 257.10 WHERE [Code] = 'irn' END +SET [Description] = 'Irántxe', [Definition] = NULL, [SortOrder] = 2583.00 WHERE [Code] = 'irn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilm', 'Iranun (Malaysia)', NULL, 257.20) END +VALUES ('ilm', 'Iranun (Malaysia)', NULL, 2584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iranun (Malaysia)', [Definition] = NULL, [SortOrder] = 257.20 WHERE [Code] = 'ilm' END +SET [Description] = 'Iranun (Malaysia)', [Definition] = NULL, [SortOrder] = 2584.00 WHERE [Code] = 'ilm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ilp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ilp', 'Iranun (Philippines)', NULL, 257.30) END +VALUES ('ilp', 'Iranun (Philippines)', NULL, 2585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iranun (Philippines)', [Definition] = NULL, [SortOrder] = 257.30 WHERE [Code] = 'ilp' END +SET [Description] = 'Iranun (Philippines)', [Definition] = NULL, [SortOrder] = 2585.00 WHERE [Code] = 'ilp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irk', 'Iraqw', NULL, 257.40) END +VALUES ('irk', 'Iraqw', NULL, 2586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iraqw', [Definition] = NULL, [SortOrder] = 257.40 WHERE [Code] = 'irk' END +SET [Description] = 'Iraqw', [Definition] = NULL, [SortOrder] = 2586.00 WHERE [Code] = 'irk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irh', 'Irarutu', NULL, 257.50) END +VALUES ('irh', 'Irarutu', NULL, 2587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irarutu', [Definition] = NULL, [SortOrder] = 257.50 WHERE [Code] = 'irh' END +SET [Description] = 'Irarutu', [Definition] = NULL, [SortOrder] = 2587.00 WHERE [Code] = 'irh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iry', 'Iraya', NULL, 257.60) END +VALUES ('iry', 'Iraya', NULL, 2588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iraya', [Definition] = NULL, [SortOrder] = 257.60 WHERE [Code] = 'iry' END +SET [Description] = 'Iraya', [Definition] = NULL, [SortOrder] = 2588.00 WHERE [Code] = 'iry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ire') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ire', 'Iresim', NULL, 257.70) END +VALUES ('ire', 'Iresim', NULL, 2589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iresim', [Definition] = NULL, [SortOrder] = 257.70 WHERE [Code] = 'ire' END +SET [Description] = 'Iresim', [Definition] = NULL, [SortOrder] = 2589.00 WHERE [Code] = 'ire' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gle', 'Irish', NULL, 257.80) END +VALUES ('gle', 'Irish', NULL, 2590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irish', [Definition] = NULL, [SortOrder] = 257.80 WHERE [Code] = 'gle' END +SET [Description] = 'Irish', [Definition] = NULL, [SortOrder] = 2590.00 WHERE [Code] = 'gle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isg', 'Irish Sign Language', NULL, 257.90) END +VALUES ('isg', 'Irish Sign Language', NULL, 2591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irish Sign Language', [Definition] = NULL, [SortOrder] = 257.90 WHERE [Code] = 'isg' END +SET [Description] = 'Irish Sign Language', [Definition] = NULL, [SortOrder] = 2591.00 WHERE [Code] = 'isg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iru', 'Irula', NULL, 258.00) END +VALUES ('iru', 'Irula', NULL, 2592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Irula', [Definition] = NULL, [SortOrder] = 258.00 WHERE [Code] = 'iru' END +SET [Description] = 'Irula', [Definition] = NULL, [SortOrder] = 2592.00 WHERE [Code] = 'iru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isa', 'Isabi', NULL, 258.10) END +VALUES ('isa', 'Isabi', NULL, 2593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isabi', [Definition] = NULL, [SortOrder] = 258.10 WHERE [Code] = 'isa' END +SET [Description] = 'Isabi', [Definition] = NULL, [SortOrder] = 2593.00 WHERE [Code] = 'isa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isn', 'Isanzu', NULL, 258.20) END +VALUES ('isn', 'Isanzu', NULL, 2594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isanzu', [Definition] = NULL, [SortOrder] = 258.20 WHERE [Code] = 'isn' END +SET [Description] = 'Isanzu', [Definition] = NULL, [SortOrder] = 2594.00 WHERE [Code] = 'isn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agk', 'Isarog Agta', NULL, 258.30) END +VALUES ('agk', 'Isarog Agta', NULL, 2595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isarog Agta', [Definition] = NULL, [SortOrder] = 258.30 WHERE [Code] = 'agk' END +SET [Description] = 'Isarog Agta', [Definition] = NULL, [SortOrder] = 2595.00 WHERE [Code] = 'agk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isc', 'Isconahua', NULL, 258.40) END +VALUES ('isc', 'Isconahua', NULL, 2596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isconahua', [Definition] = NULL, [SortOrder] = 258.40 WHERE [Code] = 'isc' END +SET [Description] = 'Isconahua', [Definition] = NULL, [SortOrder] = 2596.00 WHERE [Code] = 'isc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igo', 'Isebe', NULL, 258.50) END +VALUES ('igo', 'Isebe', NULL, 2597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isebe', [Definition] = NULL, [SortOrder] = 258.50 WHERE [Code] = 'igo' END +SET [Description] = 'Isebe', [Definition] = NULL, [SortOrder] = 2597.00 WHERE [Code] = 'igo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'its') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('its', 'Isekiri', NULL, 258.60) END +VALUES ('its', 'Isekiri', NULL, 2598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isekiri', [Definition] = NULL, [SortOrder] = 258.60 WHERE [Code] = 'its' END +SET [Description] = 'Isekiri', [Definition] = NULL, [SortOrder] = 2598.00 WHERE [Code] = 'its' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isk', 'Ishkashimi', NULL, 258.70) END +VALUES ('isk', 'Ishkashimi', NULL, 2599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ishkashimi', [Definition] = NULL, [SortOrder] = 258.70 WHERE [Code] = 'isk' END +SET [Description] = 'Ishkashimi', [Definition] = NULL, [SortOrder] = 2599.00 WHERE [Code] = 'isk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inn', 'Isinai', NULL, 258.80) END +VALUES ('inn', 'Isinai', NULL, 2600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isinai', [Definition] = NULL, [SortOrder] = 258.80 WHERE [Code] = 'inn' END +SET [Description] = 'Isinai', [Definition] = NULL, [SortOrder] = 2600.00 WHERE [Code] = 'inn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srl', 'Isirawa', NULL, 258.90) END +VALUES ('srl', 'Isirawa', NULL, 2601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isirawa', [Definition] = NULL, [SortOrder] = 258.90 WHERE [Code] = 'srl' END +SET [Description] = 'Isirawa', [Definition] = NULL, [SortOrder] = 2601.00 WHERE [Code] = 'srl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crb', 'Island Carib', NULL, 259.00) END +VALUES ('crb', 'Island Carib', NULL, 2602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Island Carib', [Definition] = NULL, [SortOrder] = 259.00 WHERE [Code] = 'crb' END +SET [Description] = 'Island Carib', [Definition] = NULL, [SortOrder] = 2602.00 WHERE [Code] = 'crb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'icr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('icr', 'Islander Creole English', NULL, 259.10) END +VALUES ('icr', 'Islander Creole English', NULL, 2603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Islander Creole English', [Definition] = NULL, [SortOrder] = 259.10 WHERE [Code] = 'icr' END +SET [Description] = 'Islander Creole English', [Definition] = NULL, [SortOrder] = 2603.00 WHERE [Code] = 'icr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isd', 'Isnag', NULL, 259.20) END +VALUES ('isd', 'Isnag', NULL, 2604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isnag', [Definition] = NULL, [SortOrder] = 259.20 WHERE [Code] = 'isd' END +SET [Description] = 'Isnag', [Definition] = NULL, [SortOrder] = 2604.00 WHERE [Code] = 'isd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iso', 'Isoko', NULL, 259.30) END +VALUES ('iso', 'Isoko', NULL, 2605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isoko', [Definition] = NULL, [SortOrder] = 259.30 WHERE [Code] = 'iso' END +SET [Description] = 'Isoko', [Definition] = NULL, [SortOrder] = 2605.00 WHERE [Code] = 'iso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isr', 'Israeli Sign Language', NULL, 259.40) END +VALUES ('isr', 'Israeli Sign Language', NULL, 2606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Israeli Sign Language', [Definition] = NULL, [SortOrder] = 259.40 WHERE [Code] = 'isr' END +SET [Description] = 'Israeli Sign Language', [Definition] = NULL, [SortOrder] = 2606.00 WHERE [Code] = 'isr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mir', 'Isthmus Mixe', NULL, 259.50) END +VALUES ('mir', 'Isthmus Mixe', NULL, 2607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus Mixe', [Definition] = NULL, [SortOrder] = 259.50 WHERE [Code] = 'mir' END +SET [Description] = 'Isthmus Mixe', [Definition] = NULL, [SortOrder] = 2607.00 WHERE [Code] = 'mir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zai', 'Isthmus Zapotec', NULL, 259.60) END +VALUES ('zai', 'Isthmus Zapotec', NULL, 2608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus Zapotec', [Definition] = NULL, [SortOrder] = 259.60 WHERE [Code] = 'zai' END +SET [Description] = 'Isthmus Zapotec', [Definition] = NULL, [SortOrder] = 2608.00 WHERE [Code] = 'zai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhk', 'Isthmus-Cosoleacaque Nahuatl', NULL, 259.70) END +VALUES ('nhk', 'Isthmus-Cosoleacaque Nahuatl', NULL, 2609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus-Cosoleacaque Nahuatl', [Definition] = NULL, [SortOrder] = 259.70 WHERE [Code] = 'nhk' END +SET [Description] = 'Isthmus-Cosoleacaque Nahuatl', [Definition] = NULL, [SortOrder] = 2609.00 WHERE [Code] = 'nhk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhx', 'Isthmus-Mecayapan Nahuatl', NULL, 259.80) END +VALUES ('nhx', 'Isthmus-Mecayapan Nahuatl', NULL, 2610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus-Mecayapan Nahuatl', [Definition] = NULL, [SortOrder] = 259.80 WHERE [Code] = 'nhx' END +SET [Description] = 'Isthmus-Mecayapan Nahuatl', [Definition] = NULL, [SortOrder] = 2610.00 WHERE [Code] = 'nhx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhp', 'Isthmus-Pajapan Nahuatl', NULL, 259.90) END +VALUES ('nhp', 'Isthmus-Pajapan Nahuatl', NULL, 2611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isthmus-Pajapan Nahuatl', [Definition] = NULL, [SortOrder] = 259.90 WHERE [Code] = 'nhp' END +SET [Description] = 'Isthmus-Pajapan Nahuatl', [Definition] = NULL, [SortOrder] = 2611.00 WHERE [Code] = 'nhp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ist') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ist', 'Istriot', NULL, 260.00) END +VALUES ('ist', 'Istriot', NULL, 2612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Istriot', [Definition] = NULL, [SortOrder] = 260.00 WHERE [Code] = 'ist' END +SET [Description] = 'Istriot', [Definition] = NULL, [SortOrder] = 2612.00 WHERE [Code] = 'ist' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruo', 'Istro Romanian', NULL, 260.10) END +VALUES ('ruo', 'Istro Romanian', NULL, 2613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Istro Romanian', [Definition] = NULL, [SortOrder] = 260.10 WHERE [Code] = 'ruo' END +SET [Description] = 'Istro Romanian', [Definition] = NULL, [SortOrder] = 2613.00 WHERE [Code] = 'ruo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szv', 'Isu (Fako Division)', NULL, 260.20) END +VALUES ('szv', 'Isu (Fako Division)', NULL, 2614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isu (Fako Division)', [Definition] = NULL, [SortOrder] = 260.20 WHERE [Code] = 'szv' END +SET [Description] = 'Isu (Fako Division)', [Definition] = NULL, [SortOrder] = 2614.00 WHERE [Code] = 'szv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isu', 'Isu (Menchum Division)', NULL, 260.30) END +VALUES ('isu', 'Isu (Menchum Division)', NULL, 2615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Isu (Menchum Division)', [Definition] = NULL, [SortOrder] = 260.30 WHERE [Code] = 'isu' END +SET [Description] = 'Isu (Menchum Division)', [Definition] = NULL, [SortOrder] = 2615.00 WHERE [Code] = 'isu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ita') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ita', 'Italian', NULL, 260.40) END +VALUES ('ita', 'Italian', NULL, 2616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Italian', [Definition] = NULL, [SortOrder] = 260.40 WHERE [Code] = 'ita' END +SET [Description] = 'Italian', [Definition] = NULL, [SortOrder] = 2616.00 WHERE [Code] = 'ita' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ise') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ise', 'Italian Sign Language', NULL, 260.50) END +VALUES ('ise', 'Italian Sign Language', NULL, 2617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Italian Sign Language', [Definition] = NULL, [SortOrder] = 260.50 WHERE [Code] = 'ise' END +SET [Description] = 'Italian Sign Language', [Definition] = NULL, [SortOrder] = 2617.00 WHERE [Code] = 'ise' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itv', 'Itawit', NULL, 260.60) END +VALUES ('itv', 'Itawit', NULL, 2618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itawit', [Definition] = NULL, [SortOrder] = 260.60 WHERE [Code] = 'itv' END +SET [Description] = 'Itawit', [Definition] = NULL, [SortOrder] = 2618.00 WHERE [Code] = 'itv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itl', 'Itelmen', NULL, 260.70) END +VALUES ('itl', 'Itelmen', NULL, 2619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itelmen', [Definition] = NULL, [SortOrder] = 260.70 WHERE [Code] = 'itl' END +SET [Description] = 'Itelmen', [Definition] = NULL, [SortOrder] = 2619.00 WHERE [Code] = 'itl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ite') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ite', 'Itene', NULL, 260.80) END +VALUES ('ite', 'Itene', NULL, 2620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itene', [Definition] = NULL, [SortOrder] = 260.80 WHERE [Code] = 'ite' END +SET [Description] = 'Itene', [Definition] = NULL, [SortOrder] = 2620.00 WHERE [Code] = 'ite' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itr', 'Iteri', NULL, 260.90) END +VALUES ('itr', 'Iteri', NULL, 2621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iteri', [Definition] = NULL, [SortOrder] = 260.90 WHERE [Code] = 'itr' END +SET [Description] = 'Iteri', [Definition] = NULL, [SortOrder] = 2621.00 WHERE [Code] = 'itr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itx', 'Itik', NULL, 261.00) END +VALUES ('itx', 'Itik', NULL, 2622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itik', [Definition] = NULL, [SortOrder] = 261.00 WHERE [Code] = 'itx' END +SET [Description] = 'Itik', [Definition] = NULL, [SortOrder] = 2622.00 WHERE [Code] = 'itx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itw', 'Ito', NULL, 261.10) END +VALUES ('itw', 'Ito', NULL, 2623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ito', [Definition] = NULL, [SortOrder] = 261.10 WHERE [Code] = 'itw' END +SET [Description] = 'Ito', [Definition] = NULL, [SortOrder] = 2623.00 WHERE [Code] = 'itw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ito') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ito', 'Itonama', NULL, 261.20) END +VALUES ('ito', 'Itonama', NULL, 2624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itonama', [Definition] = NULL, [SortOrder] = 261.20 WHERE [Code] = 'ito' END +SET [Description] = 'Itonama', [Definition] = NULL, [SortOrder] = 2624.00 WHERE [Code] = 'ito' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itm', 'Itu Mbon Uzo', NULL, 261.30) END +VALUES ('itm', 'Itu Mbon Uzo', NULL, 2625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itu Mbon Uzo', [Definition] = NULL, [SortOrder] = 261.30 WHERE [Code] = 'itm' END +SET [Description] = 'Itu Mbon Uzo', [Definition] = NULL, [SortOrder] = 2625.00 WHERE [Code] = 'itm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mce', 'Itundujia Mixtec', NULL, 261.40) END +VALUES ('mce', 'Itundujia Mixtec', NULL, 2626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itundujia Mixtec', [Definition] = NULL, [SortOrder] = 261.40 WHERE [Code] = 'mce' END +SET [Description] = 'Itundujia Mixtec', [Definition] = NULL, [SortOrder] = 2626.00 WHERE [Code] = 'mce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itz', 'Itzá', NULL, 261.50) END +VALUES ('itz', 'Itzá', NULL, 2627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Itzá', [Definition] = NULL, [SortOrder] = 261.50 WHERE [Code] = 'itz' END +SET [Description] = 'Itzá', [Definition] = NULL, [SortOrder] = 2627.00 WHERE [Code] = 'itz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ium') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ium', 'Iu Mien', NULL, 261.60) END +VALUES ('ium', 'Iu Mien', NULL, 2628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iu Mien', [Definition] = NULL, [SortOrder] = 261.60 WHERE [Code] = 'ium' END +SET [Description] = 'Iu Mien', [Definition] = NULL, [SortOrder] = 2628.00 WHERE [Code] = 'ium' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ivv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ivv', 'Ivatan', NULL, 261.70) END +VALUES ('ivv', 'Ivatan', NULL, 2629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ivatan', [Definition] = NULL, [SortOrder] = 261.70 WHERE [Code] = 'ivv' END +SET [Description] = 'Ivatan', [Definition] = NULL, [SortOrder] = 2629.00 WHERE [Code] = 'ivv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atg', 'Ivbie North-Okpela-Arhe', NULL, 261.80) END +VALUES ('atg', 'Ivbie North-Okpela-Arhe', NULL, 2630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ivbie North-Okpela-Arhe', [Definition] = NULL, [SortOrder] = 261.80 WHERE [Code] = 'atg' END +SET [Description] = 'Ivbie North-Okpela-Arhe', [Definition] = NULL, [SortOrder] = 2630.00 WHERE [Code] = 'atg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ibd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ibd', 'Iwaidja', NULL, 261.90) END +VALUES ('ibd', 'Iwaidja', NULL, 2631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iwaidja', [Definition] = NULL, [SortOrder] = 261.90 WHERE [Code] = 'ibd' END +SET [Description] = 'Iwaidja', [Definition] = NULL, [SortOrder] = 2631.00 WHERE [Code] = 'ibd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbm', 'Iwal', NULL, 262.00) END +VALUES ('kbm', 'Iwal', NULL, 2632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iwal', [Definition] = NULL, [SortOrder] = 262.00 WHERE [Code] = 'kbm' END +SET [Description] = 'Iwal', [Definition] = NULL, [SortOrder] = 2632.00 WHERE [Code] = 'kbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iwm', 'Iwam', NULL, 262.10) END +VALUES ('iwm', 'Iwam', NULL, 2633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iwam', [Definition] = NULL, [SortOrder] = 262.10 WHERE [Code] = 'iwm' END +SET [Description] = 'Iwam', [Definition] = NULL, [SortOrder] = 2633.00 WHERE [Code] = 'iwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iwo', 'Iwur', NULL, 262.20) END +VALUES ('iwo', 'Iwur', NULL, 2634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iwur', [Definition] = NULL, [SortOrder] = 262.20 WHERE [Code] = 'iwo' END +SET [Description] = 'Iwur', [Definition] = NULL, [SortOrder] = 2634.00 WHERE [Code] = 'iwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ixc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ixc', 'Ixcatec', NULL, 262.30) END +VALUES ('ixc', 'Ixcatec', NULL, 2635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixcatec', [Definition] = NULL, [SortOrder] = 262.30 WHERE [Code] = 'ixc' END +SET [Description] = 'Ixcatec', [Definition] = NULL, [SortOrder] = 2635.00 WHERE [Code] = 'ixc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzi', 'Ixcatlán Mazatec', NULL, 262.40) END +VALUES ('mzi', 'Ixcatlán Mazatec', NULL, 2636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixcatlán Mazatec', [Definition] = NULL, [SortOrder] = 262.40 WHERE [Code] = 'mzi' END +SET [Description] = 'Ixcatlán Mazatec', [Definition] = NULL, [SortOrder] = 2636.00 WHERE [Code] = 'mzi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ixl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ixl', 'Ixil', NULL, 262.50) END +VALUES ('ixl', 'Ixil', NULL, 2637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixil', [Definition] = NULL, [SortOrder] = 262.50 WHERE [Code] = 'ixl' END +SET [Description] = 'Ixil', [Definition] = NULL, [SortOrder] = 2637.00 WHERE [Code] = 'ixl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmj', 'Ixtayutla Mixtec', NULL, 262.60) END +VALUES ('vmj', 'Ixtayutla Mixtec', NULL, 2638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixtayutla Mixtec', [Definition] = NULL, [SortOrder] = 262.60 WHERE [Code] = 'vmj' END +SET [Description] = 'Ixtayutla Mixtec', [Definition] = NULL, [SortOrder] = 2638.00 WHERE [Code] = 'vmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otz', 'Ixtenco Otomi', NULL, 262.70) END +VALUES ('otz', 'Ixtenco Otomi', NULL, 2639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ixtenco Otomi', [Definition] = NULL, [SortOrder] = 262.70 WHERE [Code] = 'otz' END +SET [Description] = 'Ixtenco Otomi', [Definition] = NULL, [SortOrder] = 2639.00 WHERE [Code] = 'otz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iya', 'Iyayu', NULL, 262.80) END +VALUES ('iya', 'Iyayu', NULL, 2640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyayu', [Definition] = NULL, [SortOrder] = 262.80 WHERE [Code] = 'iya' END +SET [Description] = 'Iyayu', [Definition] = NULL, [SortOrder] = 2640.00 WHERE [Code] = 'iya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uiv', 'Iyive', NULL, 262.90) END +VALUES ('uiv', 'Iyive', NULL, 2641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyive', [Definition] = NULL, [SortOrder] = 262.90 WHERE [Code] = 'uiv' END +SET [Description] = 'Iyive', [Definition] = NULL, [SortOrder] = 2641.00 WHERE [Code] = 'uiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nca', 'Iyo', NULL, 263.00) END +VALUES ('nca', 'Iyo', NULL, 2642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyo', [Definition] = NULL, [SortOrder] = 263.00 WHERE [Code] = 'nca' END +SET [Description] = 'Iyo', [Definition] = NULL, [SortOrder] = 2642.00 WHERE [Code] = 'nca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crq', 'Iyo''wujwa Chorote', NULL, 263.10) END +VALUES ('crq', 'Iyo''wujwa Chorote', NULL, 2643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyo''wujwa Chorote', [Definition] = NULL, [SortOrder] = 263.10 WHERE [Code] = 'crq' END +SET [Description] = 'Iyo''wujwa Chorote', [Definition] = NULL, [SortOrder] = 2643.00 WHERE [Code] = 'crq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crt', 'Iyojwa''ja Chorote', NULL, 263.20) END +VALUES ('crt', 'Iyojwa''ja Chorote', NULL, 2644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iyojwa''ja Chorote', [Definition] = NULL, [SortOrder] = 263.20 WHERE [Code] = 'crt' END +SET [Description] = 'Iyojwa''ja Chorote', [Definition] = NULL, [SortOrder] = 2644.00 WHERE [Code] = 'crt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'izr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('izr', 'Izere', NULL, 263.30) END +VALUES ('izr', 'Izere', NULL, 2645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Izere', [Definition] = NULL, [SortOrder] = 263.30 WHERE [Code] = 'izr' END +SET [Description] = 'Izere', [Definition] = NULL, [SortOrder] = 2645.00 WHERE [Code] = 'izr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'izz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('izz', 'Izii', NULL, 263.40) END +VALUES ('izz', 'Izii', NULL, 2646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Izii', [Definition] = NULL, [SortOrder] = 263.40 WHERE [Code] = 'izz' END +SET [Description] = 'Izii', [Definition] = NULL, [SortOrder] = 2646.00 WHERE [Code] = 'izz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ijc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijc', 'Izon', NULL, 263.50) END +VALUES ('ijc', 'Izon', NULL, 2647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Izon', [Definition] = NULL, [SortOrder] = 263.50 WHERE [Code] = 'ijc' END +SET [Description] = 'Izon', [Definition] = NULL, [SortOrder] = 2647.00 WHERE [Code] = 'ijc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbo', 'Izora', NULL, 263.60) END +VALUES ('cbo', 'Izora', NULL, 2648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Izora', [Definition] = NULL, [SortOrder] = 263.60 WHERE [Code] = 'cbo' END +SET [Description] = 'Izora', [Definition] = NULL, [SortOrder] = 2648.00 WHERE [Code] = 'cbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbt', 'Jabutí', NULL, 263.70) END +VALUES ('jbt', 'Jabutí', NULL, 2649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jabutí', [Definition] = NULL, [SortOrder] = 263.70 WHERE [Code] = 'jbt' END +SET [Description] = 'Jabutí', [Definition] = NULL, [SortOrder] = 2649.00 WHERE [Code] = 'jbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jda', 'Jad', NULL, 263.80) END +VALUES ('jda', 'Jad', NULL, 2650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jad', [Definition] = NULL, [SortOrder] = 263.80 WHERE [Code] = 'jda' END +SET [Description] = 'Jad', [Definition] = NULL, [SortOrder] = 2650.00 WHERE [Code] = 'jda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jdg', 'Jadgali', NULL, 263.90) END +VALUES ('jdg', 'Jadgali', NULL, 2651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jadgali', [Definition] = NULL, [SortOrder] = 263.90 WHERE [Code] = 'jdg' END +SET [Description] = 'Jadgali', [Definition] = NULL, [SortOrder] = 2651.00 WHERE [Code] = 'jdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jah', 'Jah Hut', NULL, 264.00) END +VALUES ('jah', 'Jah Hut', NULL, 2652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jah Hut', [Definition] = NULL, [SortOrder] = 264.00 WHERE [Code] = 'jah' END +SET [Description] = 'Jah Hut', [Definition] = NULL, [SortOrder] = 2652.00 WHERE [Code] = 'jah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jad', 'Jahanka', NULL, 264.10) END +VALUES ('jad', 'Jahanka', NULL, 2653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jahanka', [Definition] = NULL, [SortOrder] = 264.10 WHERE [Code] = 'jad' END +SET [Description] = 'Jahanka', [Definition] = NULL, [SortOrder] = 2653.00 WHERE [Code] = 'jad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'awv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('awv', 'Jair Awyu', NULL, 264.20) END +VALUES ('awv', 'Jair Awyu', NULL, 2654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jair Awyu', [Definition] = NULL, [SortOrder] = 264.20 WHERE [Code] = 'awv' END +SET [Description] = 'Jair Awyu', [Definition] = NULL, [SortOrder] = 2654.00 WHERE [Code] = 'awv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xjt', 'Jaitmatang', NULL, 264.30) END +VALUES ('xjt', 'Jaitmatang', NULL, 2655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaitmatang', [Definition] = NULL, [SortOrder] = 264.30 WHERE [Code] = 'xjt' END +SET [Description] = 'Jaitmatang', [Definition] = NULL, [SortOrder] = 2655.00 WHERE [Code] = 'xjt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jat', 'Jakati', NULL, 264.40) END +VALUES ('jat', 'Jakati', NULL, 2656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jakati', [Definition] = NULL, [SortOrder] = 264.40 WHERE [Code] = 'jat' END +SET [Description] = 'Jakati', [Definition] = NULL, [SortOrder] = 2656.00 WHERE [Code] = 'jat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jrt', 'Jakattoe', NULL, 264.50) END +VALUES ('jrt', 'Jakattoe', NULL, 2657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jakattoe', [Definition] = NULL, [SortOrder] = 264.50 WHERE [Code] = 'jrt' END +SET [Description] = 'Jakattoe', [Definition] = NULL, [SortOrder] = 2657.00 WHERE [Code] = 'jrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jak', 'Jakun', NULL, 264.60) END +VALUES ('jak', 'Jakun', NULL, 2658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jakun', [Definition] = NULL, [SortOrder] = 264.60 WHERE [Code] = 'jak' END +SET [Description] = 'Jakun', [Definition] = NULL, [SortOrder] = 2658.00 WHERE [Code] = 'jak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maj', 'Jalapa De Díaz Mazatec', NULL, 264.70) END +VALUES ('maj', 'Jalapa De Díaz Mazatec', NULL, 2659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jalapa De Díaz Mazatec', [Definition] = NULL, [SortOrder] = 264.70 WHERE [Code] = 'maj' END +SET [Description] = 'Jalapa De Díaz Mazatec', [Definition] = NULL, [SortOrder] = 2659.00 WHERE [Code] = 'maj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxl', 'Jalkunan', NULL, 264.80) END +VALUES ('bxl', 'Jalkunan', NULL, 2660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jalkunan', [Definition] = NULL, [SortOrder] = 264.80 WHERE [Code] = 'bxl' END +SET [Description] = 'Jalkunan', [Definition] = NULL, [SortOrder] = 2660.00 WHERE [Code] = 'bxl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jcs', 'Jamaican Country Sign Language', NULL, 264.90) END +VALUES ('jcs', 'Jamaican Country Sign Language', NULL, 2661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamaican Country Sign Language', [Definition] = NULL, [SortOrder] = 264.90 WHERE [Code] = 'jcs' END +SET [Description] = 'Jamaican Country Sign Language', [Definition] = NULL, [SortOrder] = 2661.00 WHERE [Code] = 'jcs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jam', 'Jamaican Creole English', NULL, 265.00) END +VALUES ('jam', 'Jamaican Creole English', NULL, 2662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamaican Creole English', [Definition] = NULL, [SortOrder] = 265.00 WHERE [Code] = 'jam' END +SET [Description] = 'Jamaican Creole English', [Definition] = NULL, [SortOrder] = 2662.00 WHERE [Code] = 'jam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jls', 'Jamaican Sign Language', NULL, 265.10) END +VALUES ('jls', 'Jamaican Sign Language', NULL, 2663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamaican Sign Language', [Definition] = NULL, [SortOrder] = 265.10 WHERE [Code] = 'jls' END +SET [Description] = 'Jamaican Sign Language', [Definition] = NULL, [SortOrder] = 2663.00 WHERE [Code] = 'jls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaa', 'Jamamadí', NULL, 265.20) END +VALUES ('jaa', 'Jamamadí', NULL, 2664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamamadí', [Definition] = NULL, [SortOrder] = 265.20 WHERE [Code] = 'jaa' END +SET [Description] = 'Jamamadí', [Definition] = NULL, [SortOrder] = 2664.00 WHERE [Code] = 'jaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jax', 'Jambi Malay', NULL, 265.30) END +VALUES ('jax', 'Jambi Malay', NULL, 2665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jambi Malay', [Definition] = NULL, [SortOrder] = 265.30 WHERE [Code] = 'jax' END +SET [Description] = 'Jambi Malay', [Definition] = NULL, [SortOrder] = 2665.00 WHERE [Code] = 'jax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxt', 'Jamiltepec Mixtec', NULL, 265.40) END +VALUES ('mxt', 'Jamiltepec Mixtec', NULL, 2666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamiltepec Mixtec', [Definition] = NULL, [SortOrder] = 265.40 WHERE [Code] = 'mxt' END +SET [Description] = 'Jamiltepec Mixtec', [Definition] = NULL, [SortOrder] = 2666.00 WHERE [Code] = 'mxt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djm', 'Jamsay Dogon', NULL, 265.50) END +VALUES ('djm', 'Jamsay Dogon', NULL, 2667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jamsay Dogon', [Definition] = NULL, [SortOrder] = 265.50 WHERE [Code] = 'djm' END +SET [Description] = 'Jamsay Dogon', [Definition] = NULL, [SortOrder] = 2667.00 WHERE [Code] = 'djm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jan', 'Jandai', NULL, 265.60) END +VALUES ('jan', 'Jandai', NULL, 2668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jandai', [Definition] = NULL, [SortOrder] = 265.60 WHERE [Code] = 'jan' END +SET [Description] = 'Jandai', [Definition] = NULL, [SortOrder] = 2668.00 WHERE [Code] = 'jan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jnd', 'Jandavra', NULL, 265.70) END +VALUES ('jnd', 'Jandavra', NULL, 2669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jandavra', [Definition] = NULL, [SortOrder] = 265.70 WHERE [Code] = 'jnd' END +SET [Description] = 'Jandavra', [Definition] = NULL, [SortOrder] = 2669.00 WHERE [Code] = 'jnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djo', 'Jangkang', NULL, 265.80) END +VALUES ('djo', 'Jangkang', NULL, 2670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jangkang', [Definition] = NULL, [SortOrder] = 265.80 WHERE [Code] = 'djo' END +SET [Description] = 'Jangkang', [Definition] = NULL, [SortOrder] = 2670.00 WHERE [Code] = 'djo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jna', 'Jangshung', NULL, 265.90) END +VALUES ('jna', 'Jangshung', NULL, 2671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jangshung', [Definition] = NULL, [SortOrder] = 265.90 WHERE [Code] = 'jna' END +SET [Description] = 'Jangshung', [Definition] = NULL, [SortOrder] = 2671.00 WHERE [Code] = 'jna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jni', 'Janji', NULL, 266.00) END +VALUES ('jni', 'Janji', NULL, 2672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Janji', [Definition] = NULL, [SortOrder] = 266.00 WHERE [Code] = 'jni' END +SET [Description] = 'Janji', [Definition] = NULL, [SortOrder] = 2672.00 WHERE [Code] = 'jni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpn', 'Japanese', NULL, 266.10) END +VALUES ('jpn', 'Japanese', NULL, 2673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Japanese', [Definition] = NULL, [SortOrder] = 266.10 WHERE [Code] = 'jpn' END +SET [Description] = 'Japanese', [Definition] = NULL, [SortOrder] = 2673.00 WHERE [Code] = 'jpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jsl', 'Japanese Sign Language', NULL, 266.20) END +VALUES ('jsl', 'Japanese Sign Language', NULL, 2674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Japanese Sign Language', [Definition] = NULL, [SortOrder] = 266.20 WHERE [Code] = 'jsl' END +SET [Description] = 'Japanese Sign Language', [Definition] = NULL, [SortOrder] = 2674.00 WHERE [Code] = 'jsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jru', 'Japrería', NULL, 266.30) END +VALUES ('jru', 'Japrería', NULL, 2675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Japrería', [Definition] = NULL, [SortOrder] = 266.30 WHERE [Code] = 'jru' END +SET [Description] = 'Japrería', [Definition] = NULL, [SortOrder] = 2675.00 WHERE [Code] = 'jru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jqr', 'Jaqaru', NULL, 266.40) END +VALUES ('jqr', 'Jaqaru', NULL, 2676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaqaru', [Definition] = NULL, [SortOrder] = 266.40 WHERE [Code] = 'jqr' END +SET [Description] = 'Jaqaru', [Definition] = NULL, [SortOrder] = 2676.00 WHERE [Code] = 'jqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaf', 'Jara', NULL, 266.50) END +VALUES ('jaf', 'Jara', NULL, 2677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jara', [Definition] = NULL, [SortOrder] = 266.50 WHERE [Code] = 'jaf' END +SET [Description] = 'Jara', [Definition] = NULL, [SortOrder] = 2677.00 WHERE [Code] = 'jaf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jra', 'Jarai', NULL, 266.60) END +VALUES ('jra', 'Jarai', NULL, 2678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jarai', [Definition] = NULL, [SortOrder] = 266.60 WHERE [Code] = 'jra' END +SET [Description] = 'Jarai', [Definition] = NULL, [SortOrder] = 2678.00 WHERE [Code] = 'jra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anq', 'Jarawa (India)', NULL, 266.70) END +VALUES ('anq', 'Jarawa (India)', NULL, 2679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jarawa (India)', [Definition] = NULL, [SortOrder] = 266.70 WHERE [Code] = 'anq' END +SET [Description] = 'Jarawa (India)', [Definition] = NULL, [SortOrder] = 2679.00 WHERE [Code] = 'anq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddj', 'Jaru', NULL, 266.80) END +VALUES ('ddj', 'Jaru', NULL, 2680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaru', [Definition] = NULL, [SortOrder] = 266.80 WHERE [Code] = 'ddj' END +SET [Description] = 'Jaru', [Definition] = NULL, [SortOrder] = 2680.00 WHERE [Code] = 'ddj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxw', 'Jauja Wanca Quechua', NULL, 266.90) END +VALUES ('qxw', 'Jauja Wanca Quechua', NULL, 2681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jauja Wanca Quechua', [Definition] = NULL, [SortOrder] = 266.90 WHERE [Code] = 'qxw' END +SET [Description] = 'Jauja Wanca Quechua', [Definition] = NULL, [SortOrder] = 2681.00 WHERE [Code] = 'qxw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jns', 'Jaunsari', NULL, 267.00) END +VALUES ('jns', 'Jaunsari', NULL, 2682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaunsari', [Definition] = NULL, [SortOrder] = 267.00 WHERE [Code] = 'jns' END +SET [Description] = 'Jaunsari', [Definition] = NULL, [SortOrder] = 2682.00 WHERE [Code] = 'jns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jav', 'Javanese', NULL, 267.10) END +VALUES ('jav', 'Javanese', NULL, 2683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Javanese', [Definition] = NULL, [SortOrder] = 267.10 WHERE [Code] = 'jav' END +SET [Description] = 'Javanese', [Definition] = NULL, [SortOrder] = 2683.00 WHERE [Code] = 'jav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jvd', 'Javindo', NULL, 267.20) END +VALUES ('jvd', 'Javindo', NULL, 2684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Javindo', [Definition] = NULL, [SortOrder] = 267.20 WHERE [Code] = 'jvd' END +SET [Description] = 'Javindo', [Definition] = NULL, [SortOrder] = 2684.00 WHERE [Code] = 'jvd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaz', 'Jawe', NULL, 267.30) END +VALUES ('jaz', 'Jawe', NULL, 2685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jawe', [Definition] = NULL, [SortOrder] = 267.30 WHERE [Code] = 'jaz' END +SET [Description] = 'Jawe', [Definition] = NULL, [SortOrder] = 2685.00 WHERE [Code] = 'jaz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'djn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('djn', 'Jawoyn', NULL, 267.40) END +VALUES ('djn', 'Jawoyn', NULL, 2686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jawoyn', [Definition] = NULL, [SortOrder] = 267.40 WHERE [Code] = 'djn' END +SET [Description] = 'Jawoyn', [Definition] = NULL, [SortOrder] = 2686.00 WHERE [Code] = 'djn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jyy', 'Jaya', NULL, 267.50) END +VALUES ('jyy', 'Jaya', NULL, 2687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jaya', [Definition] = NULL, [SortOrder] = 267.50 WHERE [Code] = 'jyy' END +SET [Description] = 'Jaya', [Definition] = NULL, [SortOrder] = 2687.00 WHERE [Code] = 'jyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jeb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jeb', 'Jebero', NULL, 267.60) END +VALUES ('jeb', 'Jebero', NULL, 2688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jebero', [Definition] = NULL, [SortOrder] = 267.60 WHERE [Code] = 'jeb' END +SET [Description] = 'Jebero', [Definition] = NULL, [SortOrder] = 2688.00 WHERE [Code] = 'jeb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jeh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jeh', 'Jeh', NULL, 267.70) END +VALUES ('jeh', 'Jeh', NULL, 2689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jeh', [Definition] = NULL, [SortOrder] = 267.70 WHERE [Code] = 'jeh' END +SET [Description] = 'Jeh', [Definition] = NULL, [SortOrder] = 2689.00 WHERE [Code] = 'jeh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jhi', 'Jehai', NULL, 267.80) END +VALUES ('jhi', 'Jehai', NULL, 2690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jehai', [Definition] = NULL, [SortOrder] = 267.80 WHERE [Code] = 'jhi' END +SET [Description] = 'Jehai', [Definition] = NULL, [SortOrder] = 2690.00 WHERE [Code] = 'jhi' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('pzn', 'Jejarra Naga', NULL, 2691.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Jejarra Naga', [Definition] = NULL, [SortOrder] = 2691.00 WHERE [Code] = 'pzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jje', 'Jejueo', NULL, 267.90) END +VALUES ('jje', 'Jejueo', NULL, 2692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jejueo', [Definition] = NULL, [SortOrder] = 267.90 WHERE [Code] = 'jje' END +SET [Description] = 'Jejueo', [Definition] = NULL, [SortOrder] = 2692.00 WHERE [Code] = 'jje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tow', 'Jemez', NULL, 268.00) END +VALUES ('tow', 'Jemez', NULL, 2693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jemez', [Definition] = NULL, [SortOrder] = 268.00 WHERE [Code] = 'tow' END +SET [Description] = 'Jemez', [Definition] = NULL, [SortOrder] = 2693.00 WHERE [Code] = 'tow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bze', 'Jenaama Bozo', NULL, 268.10) END +VALUES ('bze', 'Jenaama Bozo', NULL, 2694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jenaama Bozo', [Definition] = NULL, [SortOrder] = 268.10 WHERE [Code] = 'bze' END +SET [Description] = 'Jenaama Bozo', [Definition] = NULL, [SortOrder] = 2694.00 WHERE [Code] = 'bze' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xuj', 'Jennu Kurumba', NULL, 268.20) END +VALUES ('xuj', 'Jennu Kurumba', NULL, 2695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jennu Kurumba', [Definition] = NULL, [SortOrder] = 268.20 WHERE [Code] = 'xuj' END +SET [Description] = 'Jennu Kurumba', [Definition] = NULL, [SortOrder] = 2695.00 WHERE [Code] = 'xuj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jer', 'Jere', NULL, 268.30) END +VALUES ('jer', 'Jere', NULL, 2696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jere', [Definition] = NULL, [SortOrder] = 268.30 WHERE [Code] = 'jer' END +SET [Description] = 'Jere', [Definition] = NULL, [SortOrder] = 2696.00 WHERE [Code] = 'jer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jek', 'Jeri Kuo', NULL, 268.40) END +VALUES ('jek', 'Jeri Kuo', NULL, 2697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jeri Kuo', [Definition] = NULL, [SortOrder] = 268.40 WHERE [Code] = 'jek' END +SET [Description] = 'Jeri Kuo', [Definition] = NULL, [SortOrder] = 2697.00 WHERE [Code] = 'jek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrf', 'Jèrriais', NULL, 268.50) END +VALUES ('nrf', 'Jèrriais', NULL, 2698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jèrriais', [Definition] = NULL, [SortOrder] = 268.50 WHERE [Code] = 'nrf' END +SET [Description] = 'Jèrriais', [Definition] = NULL, [SortOrder] = 2698.00 WHERE [Code] = 'nrf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jee', 'Jerung', NULL, 268.60) END +VALUES ('jee', 'Jerung', NULL, 2699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jerung', [Definition] = NULL, [SortOrder] = 268.60 WHERE [Code] = 'jee' END +SET [Description] = 'Jerung', [Definition] = NULL, [SortOrder] = 2699.00 WHERE [Code] = 'jee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmr', 'Jewish Babylonian Aramaic (ca. 200-1200 CE)', NULL, 268.70) END +VALUES ('tmr', 'Jewish Babylonian Aramaic (ca. 200-1200 CE)', NULL, 2700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jewish Babylonian Aramaic (ca. 200-1200 CE)', [Definition] = NULL, [SortOrder] = 268.70 WHERE [Code] = 'tmr' END +SET [Description] = 'Jewish Babylonian Aramaic (ca. 200-1200 CE)', [Definition] = NULL, [SortOrder] = 2700.00 WHERE [Code] = 'tmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpa', 'Jewish Palestinian Aramaic', NULL, 268.80) END +VALUES ('jpa', 'Jewish Palestinian Aramaic', NULL, 2701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jewish Palestinian Aramaic', [Definition] = NULL, [SortOrder] = 268.80 WHERE [Code] = 'jpa' END +SET [Description] = 'Jewish Palestinian Aramaic', [Definition] = NULL, [SortOrder] = 2701.00 WHERE [Code] = 'jpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jhs', 'Jhankot Sign Language', NULL, 268.90) END +VALUES ('jhs', 'Jhankot Sign Language', NULL, 2702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jhankot Sign Language', [Definition] = NULL, [SortOrder] = 268.90 WHERE [Code] = 'jhs' END +SET [Description] = 'Jhankot Sign Language', [Definition] = NULL, [SortOrder] = 2702.00 WHERE [Code] = 'jhs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jio', 'Jiamao', NULL, 269.00) END +VALUES ('jio', 'Jiamao', NULL, 2703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiamao', [Definition] = NULL, [SortOrder] = 269.00 WHERE [Code] = 'jio' END +SET [Description] = 'Jiamao', [Definition] = NULL, [SortOrder] = 2703.00 WHERE [Code] = 'jio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jya', 'Jiarong', NULL, 269.10) END +VALUES ('jya', 'Jiarong', NULL, 2704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiarong', [Definition] = NULL, [SortOrder] = 269.10 WHERE [Code] = 'jya' END +SET [Description] = 'Jiarong', [Definition] = NULL, [SortOrder] = 2704.00 WHERE [Code] = 'jya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juo', 'Jiba', NULL, 269.20) END +VALUES ('juo', 'Jiba', NULL, 2705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiba', [Definition] = NULL, [SortOrder] = 269.20 WHERE [Code] = 'juo' END +SET [Description] = 'Jiba', [Definition] = NULL, [SortOrder] = 2705.00 WHERE [Code] = 'juo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jib', 'Jibu', NULL, 269.30) END +VALUES ('jib', 'Jibu', NULL, 2706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jibu', [Definition] = NULL, [SortOrder] = 269.30 WHERE [Code] = 'jib' END +SET [Description] = 'Jibu', [Definition] = NULL, [SortOrder] = 2706.00 WHERE [Code] = 'jib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apj', 'Jicarilla Apache', NULL, 269.40) END +VALUES ('apj', 'Jicarilla Apache', NULL, 2707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jicarilla Apache', [Definition] = NULL, [SortOrder] = 269.40 WHERE [Code] = 'apj' END +SET [Description] = 'Jicarilla Apache', [Definition] = NULL, [SortOrder] = 2707.00 WHERE [Code] = 'apj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jii', 'Jiiddu', NULL, 269.50) END +VALUES ('jii', 'Jiiddu', NULL, 2708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiiddu', [Definition] = NULL, [SortOrder] = 269.50 WHERE [Code] = 'jii' END +SET [Description] = 'Jiiddu', [Definition] = NULL, [SortOrder] = 2708.00 WHERE [Code] = 'jii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jie', 'Jilbe', NULL, 269.60) END +VALUES ('jie', 'Jilbe', NULL, 2709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jilbe', [Definition] = NULL, [SortOrder] = 269.60 WHERE [Code] = 'jie' END +SET [Description] = 'Jilbe', [Definition] = NULL, [SortOrder] = 2709.00 WHERE [Code] = 'jie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jil', 'Jilim', NULL, 269.70) END +VALUES ('jil', 'Jilim', NULL, 2710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jilim', [Definition] = NULL, [SortOrder] = 269.70 WHERE [Code] = 'jil' END +SET [Description] = 'Jilim', [Definition] = NULL, [SortOrder] = 2710.00 WHERE [Code] = 'jil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jim', 'Jimi (Cameroon)', NULL, 269.80) END +VALUES ('jim', 'Jimi (Cameroon)', NULL, 2711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jimi (Cameroon)', [Definition] = NULL, [SortOrder] = 269.80 WHERE [Code] = 'jim' END +SET [Description] = 'Jimi (Cameroon)', [Definition] = NULL, [SortOrder] = 2711.00 WHERE [Code] = 'jim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmi', 'Jimi (Nigeria)', NULL, 269.90) END +VALUES ('jmi', 'Jimi (Nigeria)', NULL, 2712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jimi (Nigeria)', [Definition] = NULL, [SortOrder] = 269.90 WHERE [Code] = 'jmi' END +SET [Description] = 'Jimi (Nigeria)', [Definition] = NULL, [SortOrder] = 2712.00 WHERE [Code] = 'jmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jia', 'Jina', NULL, 270.00) END +VALUES ('jia', 'Jina', NULL, 2713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jina', [Definition] = NULL, [SortOrder] = 270.00 WHERE [Code] = 'jia' END +SET [Description] = 'Jina', [Definition] = NULL, [SortOrder] = 2713.00 WHERE [Code] = 'jia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jig', 'Jingulu', NULL, 270.10) END +VALUES ('jig', 'Jingulu', NULL, 2714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jingulu', [Definition] = NULL, [SortOrder] = 270.10 WHERE [Code] = 'jig' END +SET [Description] = 'Jingulu', [Definition] = NULL, [SortOrder] = 2714.00 WHERE [Code] = 'jig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjy', 'Jinyu Chinese', NULL, 270.20) END +VALUES ('cjy', 'Jinyu Chinese', NULL, 2715.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jinyu Chinese', [Definition] = NULL, [SortOrder] = 270.20 WHERE [Code] = 'cjy' END +SET [Description] = 'Jinyu Chinese', [Definition] = NULL, [SortOrder] = 2715.00 WHERE [Code] = 'cjy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnu', 'Jiongnai Bunu', NULL, 270.30) END +VALUES ('pnu', 'Jiongnai Bunu', NULL, 2716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiongnai Bunu', [Definition] = NULL, [SortOrder] = 270.30 WHERE [Code] = 'pnu' END +SET [Description] = 'Jiongnai Bunu', [Definition] = NULL, [SortOrder] = 2716.00 WHERE [Code] = 'pnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jul', 'Jirel', NULL, 270.40) END +VALUES ('jul', 'Jirel', NULL, 2717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jirel', [Definition] = NULL, [SortOrder] = 270.40 WHERE [Code] = 'jul' END +SET [Description] = 'Jirel', [Definition] = NULL, [SortOrder] = 2717.00 WHERE [Code] = 'jul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jrr', 'Jiru', NULL, 270.50) END +VALUES ('jrr', 'Jiru', NULL, 2718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jiru', [Definition] = NULL, [SortOrder] = 270.50 WHERE [Code] = 'jrr' END +SET [Description] = 'Jiru', [Definition] = NULL, [SortOrder] = 2718.00 WHERE [Code] = 'jrr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jit', 'Jita', NULL, 270.60) END +VALUES ('jit', 'Jita', NULL, 2719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jita', [Definition] = NULL, [SortOrder] = 270.60 WHERE [Code] = 'jit' END +SET [Description] = 'Jita', [Definition] = NULL, [SortOrder] = 2719.00 WHERE [Code] = 'jit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaj', 'Jju', NULL, 270.70) END +VALUES ('kaj', 'Jju', NULL, 2720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jju', [Definition] = NULL, [SortOrder] = 270.70 WHERE [Code] = 'kaj' END +SET [Description] = 'Jju', [Definition] = NULL, [SortOrder] = 2720.00 WHERE [Code] = 'kaj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'job') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('job', 'Joba', NULL, 270.80) END +VALUES ('job', 'Joba', NULL, 2721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Joba', [Definition] = NULL, [SortOrder] = 270.80 WHERE [Code] = 'job' END +SET [Description] = 'Joba', [Definition] = NULL, [SortOrder] = 2721.00 WHERE [Code] = 'job' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbr', 'Jofotek-Bromnya', NULL, 270.90) END +VALUES ('jbr', 'Jofotek-Bromnya', NULL, 2722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jofotek-Bromnya', [Definition] = NULL, [SortOrder] = 270.90 WHERE [Code] = 'jbr' END +SET [Description] = 'Jofotek-Bromnya', [Definition] = NULL, [SortOrder] = 2722.00 WHERE [Code] = 'jbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jog', 'Jogi', NULL, 271.00) END +VALUES ('jog', 'Jogi', NULL, 2723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jogi', [Definition] = NULL, [SortOrder] = 271.00 WHERE [Code] = 'jog' END +SET [Description] = 'Jogi', [Definition] = NULL, [SortOrder] = 2723.00 WHERE [Code] = 'jog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyo', 'Jola-Fonyi', NULL, 271.10) END +VALUES ('dyo', 'Jola-Fonyi', NULL, 2724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jola-Fonyi', [Definition] = NULL, [SortOrder] = 271.10 WHERE [Code] = 'dyo' END +SET [Description] = 'Jola-Fonyi', [Definition] = NULL, [SortOrder] = 2724.00 WHERE [Code] = 'dyo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csk', 'Jola-Kasa', NULL, 271.20) END +VALUES ('csk', 'Jola-Kasa', NULL, 2725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jola-Kasa', [Definition] = NULL, [SortOrder] = 271.20 WHERE [Code] = 'csk' END +SET [Description] = 'Jola-Kasa', [Definition] = NULL, [SortOrder] = 2725.00 WHERE [Code] = 'csk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jeu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jeu', 'Jonkor Bourmataguil', NULL, 271.30) END +VALUES ('jeu', 'Jonkor Bourmataguil', NULL, 2726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jonkor Bourmataguil', [Definition] = NULL, [SortOrder] = 271.30 WHERE [Code] = 'jeu' END +SET [Description] = 'Jonkor Bourmataguil', [Definition] = NULL, [SortOrder] = 2726.00 WHERE [Code] = 'jeu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jor', 'Jorá', NULL, 271.40) END +VALUES ('jor', 'Jorá', NULL, 2727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jorá', [Definition] = NULL, [SortOrder] = 271.40 WHERE [Code] = 'jor' END +SET [Description] = 'Jorá', [Definition] = NULL, [SortOrder] = 2727.00 WHERE [Code] = 'jor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jos', 'Jordanian Sign Language', NULL, 271.50) END +VALUES ('jos', 'Jordanian Sign Language', NULL, 2728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jordanian Sign Language', [Definition] = NULL, [SortOrder] = 271.50 WHERE [Code] = 'jos' END +SET [Description] = 'Jordanian Sign Language', [Definition] = NULL, [SortOrder] = 2728.00 WHERE [Code] = 'jos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jow', 'Jowulu', NULL, 271.60) END +VALUES ('jow', 'Jowulu', NULL, 2729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jowulu', [Definition] = NULL, [SortOrder] = 271.60 WHERE [Code] = 'jow' END +SET [Description] = 'Jowulu', [Definition] = NULL, [SortOrder] = 2729.00 WHERE [Code] = 'jow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juu', 'Ju', NULL, 271.70) END +VALUES ('juu', 'Ju', NULL, 2730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ju', [Definition] = NULL, [SortOrder] = 271.70 WHERE [Code] = 'juu' END +SET [Description] = 'Ju', [Definition] = NULL, [SortOrder] = 2730.00 WHERE [Code] = 'juu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktz', 'Ju/''hoan', NULL, 271.80) END +VALUES ('ktz', 'Ju/''hoan', NULL, 2731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ju/''hoan', [Definition] = NULL, [SortOrder] = 271.80 WHERE [Code] = 'ktz' END +SET [Description] = 'Ju/''hoan', [Definition] = NULL, [SortOrder] = 2731.00 WHERE [Code] = 'ktz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jun', 'Juang', NULL, 271.90) END +VALUES ('jun', 'Juang', NULL, 2732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juang', [Definition] = NULL, [SortOrder] = 271.90 WHERE [Code] = 'jun' END +SET [Description] = 'Juang', [Definition] = NULL, [SortOrder] = 2732.00 WHERE [Code] = 'jun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jrb', 'Judeo-Arabic', NULL, 272.00) END +VALUES ('jrb', 'Judeo-Arabic', NULL, 2733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Arabic', [Definition] = NULL, [SortOrder] = 272.00 WHERE [Code] = 'jrb' END +SET [Description] = 'Judeo-Arabic', [Definition] = NULL, [SortOrder] = 2733.00 WHERE [Code] = 'jrb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbe', 'Judeo-Berber', NULL, 272.10) END +VALUES ('jbe', 'Judeo-Berber', NULL, 2734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Berber', [Definition] = NULL, [SortOrder] = 272.10 WHERE [Code] = 'jbe' END +SET [Description] = 'Judeo-Berber', [Definition] = NULL, [SortOrder] = 2734.00 WHERE [Code] = 'jbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jge', 'Judeo-Georgian', NULL, 272.20) END +VALUES ('jge', 'Judeo-Georgian', NULL, 2735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Georgian', [Definition] = NULL, [SortOrder] = 272.20 WHERE [Code] = 'jge' END +SET [Description] = 'Judeo-Georgian', [Definition] = NULL, [SortOrder] = 2735.00 WHERE [Code] = 'jge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yhd', 'Judeo-Iraqi Arabic', NULL, 272.30) END +VALUES ('yhd', 'Judeo-Iraqi Arabic', NULL, 2736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Iraqi Arabic', [Definition] = NULL, [SortOrder] = 272.30 WHERE [Code] = 'yhd' END +SET [Description] = 'Judeo-Iraqi Arabic', [Definition] = NULL, [SortOrder] = 2736.00 WHERE [Code] = 'yhd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itk', 'Judeo-Italian', NULL, 272.40) END +VALUES ('itk', 'Judeo-Italian', NULL, 2737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Italian', [Definition] = NULL, [SortOrder] = 272.40 WHERE [Code] = 'itk' END +SET [Description] = 'Judeo-Italian', [Definition] = NULL, [SortOrder] = 2737.00 WHERE [Code] = 'itk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aju', 'Judeo-Moroccan Arabic', NULL, 272.50) END +VALUES ('aju', 'Judeo-Moroccan Arabic', NULL, 2738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Moroccan Arabic', [Definition] = NULL, [SortOrder] = 272.50 WHERE [Code] = 'aju' END +SET [Description] = 'Judeo-Moroccan Arabic', [Definition] = NULL, [SortOrder] = 2738.00 WHERE [Code] = 'aju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jpr', 'Judeo-Persian', NULL, 272.60) END +VALUES ('jpr', 'Judeo-Persian', NULL, 2739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Persian', [Definition] = NULL, [SortOrder] = 272.60 WHERE [Code] = 'jpr' END +SET [Description] = 'Judeo-Persian', [Definition] = NULL, [SortOrder] = 2739.00 WHERE [Code] = 'jpr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jdt', 'Judeo-Tat', NULL, 272.70) END +VALUES ('jdt', 'Judeo-Tat', NULL, 2740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Tat', [Definition] = NULL, [SortOrder] = 272.70 WHERE [Code] = 'jdt' END +SET [Description] = 'Judeo-Tat', [Definition] = NULL, [SortOrder] = 2740.00 WHERE [Code] = 'jdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yud', 'Judeo-Tripolitanian Arabic', NULL, 272.80) END +VALUES ('yud', 'Judeo-Tripolitanian Arabic', NULL, 2741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Tripolitanian Arabic', [Definition] = NULL, [SortOrder] = 272.80 WHERE [Code] = 'yud' END +SET [Description] = 'Judeo-Tripolitanian Arabic', [Definition] = NULL, [SortOrder] = 2741.00 WHERE [Code] = 'yud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jye', 'Judeo-Yemeni Arabic', NULL, 272.90) END +VALUES ('jye', 'Judeo-Yemeni Arabic', NULL, 2742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Judeo-Yemeni Arabic', [Definition] = NULL, [SortOrder] = 272.90 WHERE [Code] = 'jye' END +SET [Description] = 'Judeo-Yemeni Arabic', [Definition] = NULL, [SortOrder] = 2742.00 WHERE [Code] = 'jye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbu', 'Jukun Takum', NULL, 273.00) END +VALUES ('jbu', 'Jukun Takum', NULL, 2743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jukun Takum', [Definition] = NULL, [SortOrder] = 273.00 WHERE [Code] = 'jbu' END +SET [Description] = 'Jukun Takum', [Definition] = NULL, [SortOrder] = 2743.00 WHERE [Code] = 'jbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jua', 'Júma', NULL, 273.10) END +VALUES ('jua', 'Júma', NULL, 2744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Júma', [Definition] = NULL, [SortOrder] = 273.10 WHERE [Code] = 'jua' END +SET [Description] = 'Júma', [Definition] = NULL, [SortOrder] = 2744.00 WHERE [Code] = 'jua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jum', 'Jumjum', NULL, 273.20) END +VALUES ('jum', 'Jumjum', NULL, 2745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jumjum', [Definition] = NULL, [SortOrder] = 273.20 WHERE [Code] = 'jum' END +SET [Description] = 'Jumjum', [Definition] = NULL, [SortOrder] = 2745.00 WHERE [Code] = 'jum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jus', 'Jumla Sign Language', NULL, 273.30) END +VALUES ('jus', 'Jumla Sign Language', NULL, 2746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jumla Sign Language', [Definition] = NULL, [SortOrder] = 273.30 WHERE [Code] = 'jus' END +SET [Description] = 'Jumla Sign Language', [Definition] = NULL, [SortOrder] = 2746.00 WHERE [Code] = 'jus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jml', 'Jumli', NULL, 273.40) END +VALUES ('jml', 'Jumli', NULL, 2747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jumli', [Definition] = NULL, [SortOrder] = 273.40 WHERE [Code] = 'jml' END +SET [Description] = 'Jumli', [Definition] = NULL, [SortOrder] = 2747.00 WHERE [Code] = 'jml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inj', 'Jungle Inga', NULL, 273.50) END +VALUES ('inj', 'Jungle Inga', NULL, 2748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jungle Inga', [Definition] = NULL, [SortOrder] = 273.50 WHERE [Code] = 'inj' END +SET [Description] = 'Jungle Inga', [Definition] = NULL, [SortOrder] = 2748.00 WHERE [Code] = 'inj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxq', 'Juquila Mixe', NULL, 273.60) END +VALUES ('mxq', 'Juquila Mixe', NULL, 2749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juquila Mixe', [Definition] = NULL, [SortOrder] = 273.60 WHERE [Code] = 'mxq' END +SET [Description] = 'Juquila Mixe', [Definition] = NULL, [SortOrder] = 2749.00 WHERE [Code] = 'mxq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bex', 'Jur Modo', NULL, 273.70) END +VALUES ('bex', 'Jur Modo', NULL, 2750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jur Modo', [Definition] = NULL, [SortOrder] = 273.70 WHERE [Code] = 'bex' END +SET [Description] = 'Jur Modo', [Definition] = NULL, [SortOrder] = 2750.00 WHERE [Code] = 'bex' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juy', 'Juray', NULL, 273.80) END +VALUES ('juy', 'Juray', NULL, 2751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juray', [Definition] = NULL, [SortOrder] = 273.80 WHERE [Code] = 'juy' END +SET [Description] = 'Juray', [Definition] = NULL, [SortOrder] = 2751.00 WHERE [Code] = 'juy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juc', 'Jurchen', NULL, 273.90) END +VALUES ('juc', 'Jurchen', NULL, 2752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jurchen', [Definition] = NULL, [SortOrder] = 273.90 WHERE [Code] = 'juc' END +SET [Description] = 'Jurchen', [Definition] = NULL, [SortOrder] = 2752.00 WHERE [Code] = 'juc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jur', 'Jurúna', NULL, 274.00) END +VALUES ('jur', 'Jurúna', NULL, 2753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jurúna', [Definition] = NULL, [SortOrder] = 274.00 WHERE [Code] = 'jur' END +SET [Description] = 'Jurúna', [Definition] = NULL, [SortOrder] = 2753.00 WHERE [Code] = 'jur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jut', 'Jutish', NULL, 274.10) END +VALUES ('jut', 'Jutish', NULL, 2754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jutish', [Definition] = NULL, [SortOrder] = 274.10 WHERE [Code] = 'jut' END +SET [Description] = 'Jutish', [Definition] = NULL, [SortOrder] = 2754.00 WHERE [Code] = 'jut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwb', 'Juwal', NULL, 274.20) END +VALUES ('mwb', 'Juwal', NULL, 2755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juwal', [Definition] = NULL, [SortOrder] = 274.20 WHERE [Code] = 'mwb' END +SET [Description] = 'Juwal', [Definition] = NULL, [SortOrder] = 2755.00 WHERE [Code] = 'mwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmc', 'Juxtlahuaca Mixtec', NULL, 274.30) END +VALUES ('vmc', 'Juxtlahuaca Mixtec', NULL, 2756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Juxtlahuaca Mixtec', [Definition] = NULL, [SortOrder] = 274.30 WHERE [Code] = 'vmc' END +SET [Description] = 'Juxtlahuaca Mixtec', [Definition] = NULL, [SortOrder] = 2756.00 WHERE [Code] = 'vmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jwi', 'Jwira-Pepesa', NULL, 274.40) END +VALUES ('jwi', 'Jwira-Pepesa', NULL, 2757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jwira-Pepesa', [Definition] = NULL, [SortOrder] = 274.40 WHERE [Code] = 'jwi' END +SET [Description] = 'Jwira-Pepesa', [Definition] = NULL, [SortOrder] = 2757.00 WHERE [Code] = 'jwi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quc', 'K''iche''', NULL, 274.50) END +VALUES ('quc', 'K''iche''', NULL, 2758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'K''iche''', [Definition] = NULL, [SortOrder] = 274.50 WHERE [Code] = 'quc' END +SET [Description] = 'K''iche''', [Definition] = NULL, [SortOrder] = 2758.00 WHERE [Code] = 'quc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xku', 'Kaamba', NULL, 274.60) END +VALUES ('xku', 'Kaamba', NULL, 2759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaamba', [Definition] = NULL, [SortOrder] = 274.60 WHERE [Code] = 'xku' END +SET [Description] = 'Kaamba', [Definition] = NULL, [SortOrder] = 2759.00 WHERE [Code] = 'xku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldl', 'Kaan', NULL, 274.70) END +VALUES ('ldl', 'Kaan', NULL, 2760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaan', [Definition] = NULL, [SortOrder] = 274.70 WHERE [Code] = 'ldl' END +SET [Description] = 'Kaan', [Definition] = NULL, [SortOrder] = 2760.00 WHERE [Code] = 'ldl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckn', 'Kaang Chin', NULL, 274.80) END +VALUES ('ckn', 'Kaang Chin', NULL, 2761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaang Chin', [Definition] = NULL, [SortOrder] = 274.80 WHERE [Code] = 'ckn' END +SET [Description] = 'Kaang Chin', [Definition] = NULL, [SortOrder] = 2761.00 WHERE [Code] = 'ckn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gna', 'Kaansa', NULL, 274.90) END +VALUES ('gna', 'Kaansa', NULL, 2762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaansa', [Definition] = NULL, [SortOrder] = 274.90 WHERE [Code] = 'gna' END +SET [Description] = 'Kaansa', [Definition] = NULL, [SortOrder] = 2762.00 WHERE [Code] = 'gna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksp', 'Kaba', NULL, 275.00) END +VALUES ('ksp', 'Kaba', NULL, 2763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaba', [Definition] = NULL, [SortOrder] = 275.00 WHERE [Code] = 'ksp' END +SET [Description] = 'Kaba', [Definition] = NULL, [SortOrder] = 2763.00 WHERE [Code] = 'ksp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvf', 'Kabalai', NULL, 275.10) END +VALUES ('kvf', 'Kabalai', NULL, 2764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabalai', [Definition] = NULL, [SortOrder] = 275.10 WHERE [Code] = 'kvf' END +SET [Description] = 'Kabalai', [Definition] = NULL, [SortOrder] = 2764.00 WHERE [Code] = 'kvf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbd', 'Kabardian', NULL, 275.20) END +VALUES ('kbd', 'Kabardian', NULL, 2765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabardian', [Definition] = NULL, [SortOrder] = 275.20 WHERE [Code] = 'kbd' END +SET [Description] = 'Kabardian', [Definition] = NULL, [SortOrder] = 2765.00 WHERE [Code] = 'kbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkp', 'Kabatei', NULL, 275.30) END +VALUES ('xkp', 'Kabatei', NULL, 2766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabatei', [Definition] = NULL, [SortOrder] = 275.30 WHERE [Code] = 'xkp' END +SET [Description] = 'Kabatei', [Definition] = NULL, [SortOrder] = 2766.00 WHERE [Code] = 'xkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbp', 'Kabiyè', NULL, 275.40) END +VALUES ('kbp', 'Kabiyè', NULL, 2767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabiyè', [Definition] = NULL, [SortOrder] = 275.40 WHERE [Code] = 'kbp' END +SET [Description] = 'Kabiyè', [Definition] = NULL, [SortOrder] = 2767.00 WHERE [Code] = 'kbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klz', 'Kabola', NULL, 275.50) END +VALUES ('klz', 'Kabola', NULL, 2768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabola', [Definition] = NULL, [SortOrder] = 275.50 WHERE [Code] = 'klz' END +SET [Description] = 'Kabola', [Definition] = NULL, [SortOrder] = 2768.00 WHERE [Code] = 'klz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onk', 'Kabore One', NULL, 275.60) END +VALUES ('onk', 'Kabore One', NULL, 2769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabore One', [Definition] = NULL, [SortOrder] = 275.60 WHERE [Code] = 'onk' END +SET [Description] = 'Kabore One', [Definition] = NULL, [SortOrder] = 2769.00 WHERE [Code] = 'onk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkb', 'Kabras', NULL, 275.70) END +VALUES ('lkb', 'Kabras', NULL, 2770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabras', [Definition] = NULL, [SortOrder] = 275.70 WHERE [Code] = 'lkb' END +SET [Description] = 'Kabras', [Definition] = NULL, [SortOrder] = 2770.00 WHERE [Code] = 'lkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uka', 'Kaburi', NULL, 275.80) END +VALUES ('uka', 'Kaburi', NULL, 2771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaburi', [Definition] = NULL, [SortOrder] = 275.80 WHERE [Code] = 'uka' END +SET [Description] = 'Kaburi', [Definition] = NULL, [SortOrder] = 2771.00 WHERE [Code] = 'uka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbu', 'Kabutra', NULL, 275.90) END +VALUES ('kbu', 'Kabutra', NULL, 2772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabutra', [Definition] = NULL, [SortOrder] = 275.90 WHERE [Code] = 'kbu' END +SET [Description] = 'Kabutra', [Definition] = NULL, [SortOrder] = 2772.00 WHERE [Code] = 'kbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kea', 'Kabuverdianu', NULL, 276.00) END +VALUES ('kea', 'Kabuverdianu', NULL, 2773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabuverdianu', [Definition] = NULL, [SortOrder] = 276.00 WHERE [Code] = 'kea' END +SET [Description] = 'Kabuverdianu', [Definition] = NULL, [SortOrder] = 2773.00 WHERE [Code] = 'kea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwa', 'Kabwa', NULL, 276.10) END +VALUES ('cwa', 'Kabwa', NULL, 2774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabwa', [Definition] = NULL, [SortOrder] = 276.10 WHERE [Code] = 'cwa' END +SET [Description] = 'Kabwa', [Definition] = NULL, [SortOrder] = 2774.00 WHERE [Code] = 'cwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcw', 'Kabwari', NULL, 276.20) END +VALUES ('kcw', 'Kabwari', NULL, 2775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabwari', [Definition] = NULL, [SortOrder] = 276.20 WHERE [Code] = 'kcw' END +SET [Description] = 'Kabwari', [Definition] = NULL, [SortOrder] = 2775.00 WHERE [Code] = 'kcw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kab', 'Kabyle', NULL, 276.30) END +VALUES ('kab', 'Kabyle', NULL, 2776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kabyle', [Definition] = NULL, [SortOrder] = 276.30 WHERE [Code] = 'kab' END +SET [Description] = 'Kabyle', [Definition] = NULL, [SortOrder] = 2776.00 WHERE [Code] = 'kab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcx', 'Kachama-Ganjule', NULL, 276.40) END +VALUES ('kcx', 'Kachama-Ganjule', NULL, 2777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachama-Ganjule', [Definition] = NULL, [SortOrder] = 276.40 WHERE [Code] = 'kcx' END +SET [Description] = 'Kachama-Ganjule', [Definition] = NULL, [SortOrder] = 2777.00 WHERE [Code] = 'kcx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xac', 'Kachari', NULL, 276.50) END +VALUES ('xac', 'Kachari', NULL, 2778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachari', [Definition] = NULL, [SortOrder] = 276.50 WHERE [Code] = 'xac' END +SET [Description] = 'Kachari', [Definition] = NULL, [SortOrder] = 2778.00 WHERE [Code] = 'xac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfr', 'Kachhi', NULL, 276.60) END +VALUES ('kfr', 'Kachhi', NULL, 2779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachhi', [Definition] = NULL, [SortOrder] = 276.60 WHERE [Code] = 'kfr' END +SET [Description] = 'Kachhi', [Definition] = NULL, [SortOrder] = 2779.00 WHERE [Code] = 'kfr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gjk', 'Kachi Koli', NULL, 276.70) END +VALUES ('gjk', 'Kachi Koli', NULL, 2780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachi Koli', [Definition] = NULL, [SortOrder] = 276.70 WHERE [Code] = 'gjk' END +SET [Description] = 'Kachi Koli', [Definition] = NULL, [SortOrder] = 2780.00 WHERE [Code] = 'gjk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kac', 'Kachin', NULL, 276.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachin', [Definition] = NULL, [SortOrder] = 276.80 WHERE [Code] = 'kac' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koe', 'Kacipo-Bale Suri', NULL, 276.90) END +VALUES ('kac', 'Kachin', NULL, 2781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kacipo-Bale Suri', [Definition] = NULL, [SortOrder] = 276.90 WHERE [Code] = 'koe' END +SET [Description] = 'Kachin', [Definition] = NULL, [SortOrder] = 2781.00 WHERE [Code] = 'kac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkk', 'Kachok', NULL, 277.00) END +VALUES ('xkk', 'Kachok', NULL, 2782.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kachok', [Definition] = NULL, [SortOrder] = 277.00 WHERE [Code] = 'xkk' END +SET [Description] = 'Kachok', [Definition] = NULL, [SortOrder] = 2782.00 WHERE [Code] = 'xkk' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('koe', 'Kacipo-Bale Suri', NULL, 2783.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Kacipo-Bale Suri', [Definition] = NULL, [SortOrder] = 2783.00 WHERE [Code] = 'koe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzd', 'Kadai', NULL, 277.10) END +VALUES ('kzd', 'Kadai', NULL, 2784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadai', [Definition] = NULL, [SortOrder] = 277.10 WHERE [Code] = 'kzd' END +SET [Description] = 'Kadai', [Definition] = NULL, [SortOrder] = 2784.00 WHERE [Code] = 'kzd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kej', 'Kadar', NULL, 277.20) END +VALUES ('kej', 'Kadar', NULL, 2785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadar', [Definition] = NULL, [SortOrder] = 277.20 WHERE [Code] = 'kej' END +SET [Description] = 'Kadar', [Definition] = NULL, [SortOrder] = 2785.00 WHERE [Code] = 'kej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdu', 'Kadaru', NULL, 277.30) END +VALUES ('kdu', 'Kadaru', NULL, 2786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadaru', [Definition] = NULL, [SortOrder] = 277.30 WHERE [Code] = 'kdu' END +SET [Description] = 'Kadaru', [Definition] = NULL, [SortOrder] = 2786.00 WHERE [Code] = 'kdu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtp', 'Kadazan Dusun', NULL, 277.40) END +VALUES ('dtp', 'Kadazan Dusun', NULL, 2787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadazan Dusun', [Definition] = NULL, [SortOrder] = 277.40 WHERE [Code] = 'dtp' END +SET [Description] = 'Kadazan Dusun', [Definition] = NULL, [SortOrder] = 2787.00 WHERE [Code] = 'dtp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbc', 'Kadiwéu', NULL, 277.50) END +VALUES ('kbc', 'Kadiwéu', NULL, 2788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadiwéu', [Definition] = NULL, [SortOrder] = 277.50 WHERE [Code] = 'kbc' END +SET [Description] = 'Kadiwéu', [Definition] = NULL, [SortOrder] = 2788.00 WHERE [Code] = 'kbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkd', 'Kadu', NULL, 277.60) END +VALUES ('zkd', 'Kadu', NULL, 2789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadu', [Definition] = NULL, [SortOrder] = 277.60 WHERE [Code] = 'zkd' END +SET [Description] = 'Kadu', [Definition] = NULL, [SortOrder] = 2789.00 WHERE [Code] = 'zkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dkg', 'Kadung', NULL, 277.70) END +VALUES ('dkg', 'Kadung', NULL, 2790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kadung', [Definition] = NULL, [SortOrder] = 277.70 WHERE [Code] = 'dkg' END +SET [Description] = 'Kadung', [Definition] = NULL, [SortOrder] = 2790.00 WHERE [Code] = 'dkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktp', 'Kaduo', NULL, 277.80) END +VALUES ('ktp', 'Kaduo', NULL, 2791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaduo', [Definition] = NULL, [SortOrder] = 277.80 WHERE [Code] = 'ktp' END +SET [Description] = 'Kaduo', [Definition] = NULL, [SortOrder] = 2791.00 WHERE [Code] = 'ktp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkq', 'Kaeku', NULL, 277.90) END +VALUES ('kkq', 'Kaeku', NULL, 2792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaeku', [Definition] = NULL, [SortOrder] = 277.90 WHERE [Code] = 'kkq' END +SET [Description] = 'Kaeku', [Definition] = NULL, [SortOrder] = 2792.00 WHERE [Code] = 'kkq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jka', 'Kaera', NULL, 278.00) END +VALUES ('jka', 'Kaera', NULL, 2793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaera', [Definition] = NULL, [SortOrder] = 278.00 WHERE [Code] = 'jka' END +SET [Description] = 'Kaera', [Definition] = NULL, [SortOrder] = 2793.00 WHERE [Code] = 'jka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbr', 'Kafa', NULL, 278.10) END +VALUES ('kbr', 'Kafa', NULL, 2794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kafa', [Definition] = NULL, [SortOrder] = 278.10 WHERE [Code] = 'kbr' END +SET [Description] = 'Kafa', [Definition] = NULL, [SortOrder] = 2794.00 WHERE [Code] = 'kbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpu', 'Kafoa', NULL, 278.20) END +VALUES ('kpu', 'Kafoa', NULL, 2795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kafoa', [Definition] = NULL, [SortOrder] = 278.20 WHERE [Code] = 'kpu' END +SET [Description] = 'Kafoa', [Definition] = NULL, [SortOrder] = 2795.00 WHERE [Code] = 'kpu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kll', 'Kagan Kalagan', NULL, 278.30) END +VALUES ('kll', 'Kagan Kalagan', NULL, 2796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagan Kalagan', [Definition] = NULL, [SortOrder] = 278.30 WHERE [Code] = 'kll' END +SET [Description] = 'Kagan Kalagan', [Definition] = NULL, [SortOrder] = 2796.00 WHERE [Code] = 'kll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syw', 'Kagate', NULL, 278.40) END +VALUES ('syw', 'Kagate', NULL, 2797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagate', [Definition] = NULL, [SortOrder] = 278.40 WHERE [Code] = 'syw' END +SET [Description] = 'Kagate', [Definition] = NULL, [SortOrder] = 2797.00 WHERE [Code] = 'syw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cgc', 'Kagayanen', NULL, 278.50) END +VALUES ('cgc', 'Kagayanen', NULL, 2798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagayanen', [Definition] = NULL, [SortOrder] = 278.50 WHERE [Code] = 'cgc' END +SET [Description] = 'Kagayanen', [Definition] = NULL, [SortOrder] = 2798.00 WHERE [Code] = 'cgc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdm', 'Kagoma', NULL, 278.60) END +VALUES ('kdm', 'Kagoma', NULL, 2799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagoma', [Definition] = NULL, [SortOrder] = 278.60 WHERE [Code] = 'kdm' END +SET [Description] = 'Kagoma', [Definition] = NULL, [SortOrder] = 2799.00 WHERE [Code] = 'kdm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkg', 'Kagoro', NULL, 278.70) END +VALUES ('xkg', 'Kagoro', NULL, 2800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagoro', [Definition] = NULL, [SortOrder] = 278.70 WHERE [Code] = 'xkg' END +SET [Description] = 'Kagoro', [Definition] = NULL, [SortOrder] = 2800.00 WHERE [Code] = 'xkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kki', 'Kagulu', NULL, 278.80) END +VALUES ('kki', 'Kagulu', NULL, 2801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kagulu', [Definition] = NULL, [SortOrder] = 278.80 WHERE [Code] = 'kki' END +SET [Description] = 'Kagulu', [Definition] = NULL, [SortOrder] = 2801.00 WHERE [Code] = 'kki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hka', 'Kahe', NULL, 278.90) END +VALUES ('hka', 'Kahe', NULL, 2802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kahe', [Definition] = NULL, [SortOrder] = 278.90 WHERE [Code] = 'hka' END +SET [Description] = 'Kahe', [Definition] = NULL, [SortOrder] = 2802.00 WHERE [Code] = 'hka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agw', 'Kahua', NULL, 279.00) END +VALUES ('agw', 'Kahua', NULL, 2803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kahua', [Definition] = NULL, [SortOrder] = 279.00 WHERE [Code] = 'agw' END +SET [Description] = 'Kahua', [Definition] = NULL, [SortOrder] = 2803.00 WHERE [Code] = 'agw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kct', 'Kaian', NULL, 279.10) END +VALUES ('kct', 'Kaian', NULL, 2804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaian', [Definition] = NULL, [SortOrder] = 279.10 WHERE [Code] = 'kct' END +SET [Description] = 'Kaian', [Definition] = NULL, [SortOrder] = 2804.00 WHERE [Code] = 'kct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzb', 'Kaibobo', NULL, 279.20) END +VALUES ('kzb', 'Kaibobo', NULL, 2805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaibobo', [Definition] = NULL, [SortOrder] = 279.20 WHERE [Code] = 'kzb' END +SET [Description] = 'Kaibobo', [Definition] = NULL, [SortOrder] = 2805.00 WHERE [Code] = 'kzb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzp', 'Kaidipang', NULL, 279.30) END +VALUES ('kzp', 'Kaidipang', NULL, 2806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaidipang', [Definition] = NULL, [SortOrder] = 279.30 WHERE [Code] = 'kzp' END +SET [Description] = 'Kaidipang', [Definition] = NULL, [SortOrder] = 2806.00 WHERE [Code] = 'kzp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbw', 'Kaiep', NULL, 279.40) END +VALUES ('kbw', 'Kaiep', NULL, 2807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaiep', [Definition] = NULL, [SortOrder] = 279.40 WHERE [Code] = 'kbw' END +SET [Description] = 'Kaiep', [Definition] = NULL, [SortOrder] = 2807.00 WHERE [Code] = 'kbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kep', 'Kaikadi', NULL, 279.50) END +VALUES ('kep', 'Kaikadi', NULL, 2808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaikadi', [Definition] = NULL, [SortOrder] = 279.50 WHERE [Code] = 'kep' END +SET [Description] = 'Kaikadi', [Definition] = NULL, [SortOrder] = 2808.00 WHERE [Code] = 'kep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjv', 'Kaikavian Literary Language', NULL, 279.60) END +VALUES ('kjv', 'Kaikavian Literary Language', NULL, 2809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaikavian Literary Language', [Definition] = NULL, [SortOrder] = 279.60 WHERE [Code] = 'kjv' END +SET [Description] = 'Kaikavian Literary Language', [Definition] = NULL, [SortOrder] = 2809.00 WHERE [Code] = 'kjv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzq', 'Kaike', NULL, 279.70) END +VALUES ('kzq', 'Kaike', NULL, 2810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaike', [Definition] = NULL, [SortOrder] = 279.70 WHERE [Code] = 'kzq' END +SET [Description] = 'Kaike', [Definition] = NULL, [SortOrder] = 2810.00 WHERE [Code] = 'kzq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xai', 'Kaimbé', NULL, 279.80) END +VALUES ('xai', 'Kaimbé', NULL, 2811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaimbé', [Definition] = NULL, [SortOrder] = 279.80 WHERE [Code] = 'xai' END +SET [Description] = 'Kaimbé', [Definition] = NULL, [SortOrder] = 2811.00 WHERE [Code] = 'xai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zka', 'Kaimbulawa', NULL, 279.90) END +VALUES ('zka', 'Kaimbulawa', NULL, 2812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaimbulawa', [Definition] = NULL, [SortOrder] = 279.90 WHERE [Code] = 'zka' END +SET [Description] = 'Kaimbulawa', [Definition] = NULL, [SortOrder] = 2812.00 WHERE [Code] = 'zka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgp', 'Kaingang', NULL, 280.00) END +VALUES ('kgp', 'Kaingang', NULL, 2813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaingang', [Definition] = NULL, [SortOrder] = 280.00 WHERE [Code] = 'kgp' END +SET [Description] = 'Kaingang', [Definition] = NULL, [SortOrder] = 2813.00 WHERE [Code] = 'kgp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckr', 'Kairak', NULL, 280.10) END +VALUES ('ckr', 'Kairak', NULL, 2814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kairak', [Definition] = NULL, [SortOrder] = 280.10 WHERE [Code] = 'ckr' END +SET [Description] = 'Kairak', [Definition] = NULL, [SortOrder] = 2814.00 WHERE [Code] = 'ckr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxa', 'Kairiru', NULL, 280.20) END +VALUES ('kxa', 'Kairiru', NULL, 2815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kairiru', [Definition] = NULL, [SortOrder] = 280.20 WHERE [Code] = 'kxa' END +SET [Description] = 'Kairiru', [Definition] = NULL, [SortOrder] = 2815.00 WHERE [Code] = 'kxa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krd', 'Kairui-Midiki', NULL, 280.30) END +VALUES ('krd', 'Kairui-Midiki', NULL, 2816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kairui-Midiki', [Definition] = NULL, [SortOrder] = 280.30 WHERE [Code] = 'krd' END +SET [Description] = 'Kairui-Midiki', [Definition] = NULL, [SortOrder] = 2816.00 WHERE [Code] = 'krd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzm', 'Kais', NULL, 280.40) END +VALUES ('kzm', 'Kais', NULL, 2817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kais', [Definition] = NULL, [SortOrder] = 280.40 WHERE [Code] = 'kzm' END +SET [Description] = 'Kais', [Definition] = NULL, [SortOrder] = 2817.00 WHERE [Code] = 'kzm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdq', 'Kaitag', NULL, 280.50) END +VALUES ('xdq', 'Kaitag', NULL, 2818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaitag', [Definition] = NULL, [SortOrder] = 280.50 WHERE [Code] = 'xdq' END +SET [Description] = 'Kaitag', [Definition] = NULL, [SortOrder] = 2818.00 WHERE [Code] = 'xdq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kce', 'Kaivi', NULL, 280.60) END +VALUES ('kce', 'Kaivi', NULL, 2819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaivi', [Definition] = NULL, [SortOrder] = 280.60 WHERE [Code] = 'kce' END +SET [Description] = 'Kaivi', [Definition] = NULL, [SortOrder] = 2819.00 WHERE [Code] = 'kce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgk', 'Kaiwá', NULL, 280.70) END +VALUES ('kgk', 'Kaiwá', NULL, 2820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaiwá', [Definition] = NULL, [SortOrder] = 280.70 WHERE [Code] = 'kgk' END +SET [Description] = 'Kaiwá', [Definition] = NULL, [SortOrder] = 2820.00 WHERE [Code] = 'kgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcq', 'Kaiy', NULL, 280.80) END +VALUES ('tcq', 'Kaiy', NULL, 2821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaiy', [Definition] = NULL, [SortOrder] = 280.80 WHERE [Code] = 'tcq' END +SET [Description] = 'Kaiy', [Definition] = NULL, [SortOrder] = 2821.00 WHERE [Code] = 'tcq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckq', 'Kajakse', NULL, 280.90) END +VALUES ('ckq', 'Kajakse', NULL, 2822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kajakse', [Definition] = NULL, [SortOrder] = 280.90 WHERE [Code] = 'ckq' END +SET [Description] = 'Kajakse', [Definition] = NULL, [SortOrder] = 2822.00 WHERE [Code] = 'ckq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkj', 'Kajali', NULL, 281.00) END +VALUES ('xkj', 'Kajali', NULL, 2823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kajali', [Definition] = NULL, [SortOrder] = 281.00 WHERE [Code] = 'xkj' END +SET [Description] = 'Kajali', [Definition] = NULL, [SortOrder] = 2823.00 WHERE [Code] = 'xkj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kag', 'Kajaman', NULL, 281.10) END +VALUES ('kag', 'Kajaman', NULL, 2824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kajaman', [Definition] = NULL, [SortOrder] = 281.10 WHERE [Code] = 'kag' END +SET [Description] = 'Kajaman', [Definition] = NULL, [SortOrder] = 2824.00 WHERE [Code] = 'kag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqf', 'Kakabai', NULL, 281.20) END +VALUES ('kqf', 'Kakabai', NULL, 2825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kakabai', [Definition] = NULL, [SortOrder] = 281.20 WHERE [Code] = 'kqf' END +SET [Description] = 'Kakabai', [Definition] = NULL, [SortOrder] = 2825.00 WHERE [Code] = 'kqf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kke', 'Kakabe', NULL, 281.30) END +VALUES ('kke', 'Kakabe', NULL, 2826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kakabe', [Definition] = NULL, [SortOrder] = 281.30 WHERE [Code] = 'kke' END +SET [Description] = 'Kakabe', [Definition] = NULL, [SortOrder] = 2826.00 WHERE [Code] = 'kke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kka', 'Kakanda', NULL, 281.40) END +VALUES ('kka', 'Kakanda', NULL, 2827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kakanda', [Definition] = NULL, [SortOrder] = 281.40 WHERE [Code] = 'kka' END +SET [Description] = 'Kakanda', [Definition] = NULL, [SortOrder] = 2827.00 WHERE [Code] = 'kka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbd', 'Kaki Ae', NULL, 281.50) END +VALUES ('tbd', 'Kaki Ae', NULL, 2828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaki Ae', [Definition] = NULL, [SortOrder] = 281.50 WHERE [Code] = 'tbd' END +SET [Description] = 'Kaki Ae', [Definition] = NULL, [SortOrder] = 2828.00 WHERE [Code] = 'tbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkj', 'Kako', NULL, 281.60) END +VALUES ('kkj', 'Kako', NULL, 2829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kako', [Definition] = NULL, [SortOrder] = 281.60 WHERE [Code] = 'kkj' END +SET [Description] = 'Kako', [Definition] = NULL, [SortOrder] = 2829.00 WHERE [Code] = 'kkj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keo', 'Kakwa', NULL, 281.70) END +VALUES ('keo', 'Kakwa', NULL, 2830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kakwa', [Definition] = NULL, [SortOrder] = 281.70 WHERE [Code] = 'keo' END +SET [Description] = 'Kakwa', [Definition] = NULL, [SortOrder] = 2830.00 WHERE [Code] = 'keo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwp', 'Kala Lagaw Ya', NULL, 281.80) END +VALUES ('mwp', 'Kala Lagaw Ya', NULL, 2831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kala Lagaw Ya', [Definition] = NULL, [SortOrder] = 281.80 WHERE [Code] = 'mwp' END +SET [Description] = 'Kala Lagaw Ya', [Definition] = NULL, [SortOrder] = 2831.00 WHERE [Code] = 'mwp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kal', 'Kalaallisut', NULL, 281.90) END +VALUES ('kal', 'Kalaallisut', NULL, 2832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalaallisut', [Definition] = NULL, [SortOrder] = 281.90 WHERE [Code] = 'kal' END +SET [Description] = 'Kalaallisut', [Definition] = NULL, [SortOrder] = 2832.00 WHERE [Code] = 'kal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkm', 'Kalaamaya', NULL, 282.00) END +VALUES ('lkm', 'Kalaamaya', NULL, 2833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalaamaya', [Definition] = NULL, [SortOrder] = 282.00 WHERE [Code] = 'lkm' END +SET [Description] = 'Kalaamaya', [Definition] = NULL, [SortOrder] = 2833.00 WHERE [Code] = 'lkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kve', 'Kalabakan', NULL, 282.10) END +VALUES ('kve', 'Kalabakan', NULL, 2834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalabakan', [Definition] = NULL, [SortOrder] = 282.10 WHERE [Code] = 'kve' END +SET [Description] = 'Kalabakan', [Definition] = NULL, [SortOrder] = 2834.00 WHERE [Code] = 'kve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ijn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijn', 'Kalabari', NULL, 282.20) END +VALUES ('ijn', 'Kalabari', NULL, 2835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalabari', [Definition] = NULL, [SortOrder] = 282.20 WHERE [Code] = 'ijn' END +SET [Description] = 'Kalabari', [Definition] = NULL, [SortOrder] = 2835.00 WHERE [Code] = 'ijn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzz', 'Kalabra', NULL, 282.30) END +VALUES ('kzz', 'Kalabra', NULL, 2836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalabra', [Definition] = NULL, [SortOrder] = 282.30 WHERE [Code] = 'kzz' END +SET [Description] = 'Kalabra', [Definition] = NULL, [SortOrder] = 2836.00 WHERE [Code] = 'kzz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqe', 'Kalagan', NULL, 282.40) END +VALUES ('kqe', 'Kalagan', NULL, 2837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalagan', [Definition] = NULL, [SortOrder] = 282.40 WHERE [Code] = 'kqe' END +SET [Description] = 'Kalagan', [Definition] = NULL, [SortOrder] = 2837.00 WHERE [Code] = 'kqe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkf', 'Kalaktang Monpa', NULL, 282.50) END +VALUES ('kkf', 'Kalaktang Monpa', NULL, 2838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalaktang Monpa', [Definition] = NULL, [SortOrder] = 282.50 WHERE [Code] = 'kkf' END +SET [Description] = 'Kalaktang Monpa', [Definition] = NULL, [SortOrder] = 2838.00 WHERE [Code] = 'kkf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmh', 'Kalam', NULL, 282.60) END +VALUES ('kmh', 'Kalam', NULL, 2839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalam', [Definition] = NULL, [SortOrder] = 282.60 WHERE [Code] = 'kmh' END +SET [Description] = 'Kalam', [Definition] = NULL, [SortOrder] = 2839.00 WHERE [Code] = 'kmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knz', 'Kalamsé', NULL, 282.70) END +VALUES ('knz', 'Kalamsé', NULL, 2840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalamsé', [Definition] = NULL, [SortOrder] = 282.70 WHERE [Code] = 'knz' END +SET [Description] = 'Kalamsé', [Definition] = NULL, [SortOrder] = 2840.00 WHERE [Code] = 'knz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkl', 'Kalanadi', NULL, 282.80) END +VALUES ('wkl', 'Kalanadi', NULL, 2841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalanadi', [Definition] = NULL, [SortOrder] = 282.80 WHERE [Code] = 'wkl' END +SET [Description] = 'Kalanadi', [Definition] = NULL, [SortOrder] = 2841.00 WHERE [Code] = 'wkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kck', 'Kalanga', NULL, 282.90) END +VALUES ('kck', 'Kalanga', NULL, 2842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalanga', [Definition] = NULL, [SortOrder] = 282.90 WHERE [Code] = 'kck' END +SET [Description] = 'Kalanga', [Definition] = NULL, [SortOrder] = 2842.00 WHERE [Code] = 'kck' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kak', 'Kalanguya', NULL, 283.00) END +VALUES ('kak', 'Kalanguya', NULL, 2843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalanguya', [Definition] = NULL, [SortOrder] = 283.00 WHERE [Code] = 'kak' END +SET [Description] = 'Kalanguya', [Definition] = NULL, [SortOrder] = 2843.00 WHERE [Code] = 'kak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kly', 'Kalao', NULL, 283.10) END +VALUES ('kly', 'Kalao', NULL, 2844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalao', [Definition] = NULL, [SortOrder] = 283.10 WHERE [Code] = 'kly' END +SET [Description] = 'Kalao', [Definition] = NULL, [SortOrder] = 2844.00 WHERE [Code] = 'kly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyl', 'Kalapuya', NULL, 283.20) END +VALUES ('kyl', 'Kalapuya', NULL, 2845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalapuya', [Definition] = NULL, [SortOrder] = 283.20 WHERE [Code] = 'kyl' END +SET [Description] = 'Kalapuya', [Definition] = NULL, [SortOrder] = 2845.00 WHERE [Code] = 'kyl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kba', 'Kalarko', NULL, 283.30) END +VALUES ('kba', 'Kalarko', NULL, 2846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalarko', [Definition] = NULL, [SortOrder] = 283.30 WHERE [Code] = 'kba' END +SET [Description] = 'Kalarko', [Definition] = NULL, [SortOrder] = 2846.00 WHERE [Code] = 'kba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kls', 'Kalasha', NULL, 283.40) END +VALUES ('kls', 'Kalasha', NULL, 2847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalasha', [Definition] = NULL, [SortOrder] = 283.40 WHERE [Code] = 'kls' END +SET [Description] = 'Kalasha', [Definition] = NULL, [SortOrder] = 2847.00 WHERE [Code] = 'kls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kln', 'Kalenjin', NULL, 283.50) END +VALUES ('kln', 'Kalenjin', NULL, 2848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalenjin', [Definition] = NULL, [SortOrder] = 283.50 WHERE [Code] = 'kln' END +SET [Description] = 'Kalenjin', [Definition] = NULL, [SortOrder] = 2848.00 WHERE [Code] = 'kln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fla', 'Kalispel-Pend d''Oreille', NULL, 283.60) END +VALUES ('fla', 'Kalispel-Pend d''Oreille', NULL, 2849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalispel-Pend d''Oreille', [Definition] = NULL, [SortOrder] = 283.60 WHERE [Code] = 'fla' END +SET [Description] = 'Kalispel-Pend d''Oreille', [Definition] = NULL, [SortOrder] = 2849.00 WHERE [Code] = 'fla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xka', 'Kalkoti', NULL, 283.70) END +VALUES ('xka', 'Kalkoti', NULL, 2850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalkoti', [Definition] = NULL, [SortOrder] = 283.70 WHERE [Code] = 'xka' END +SET [Description] = 'Kalkoti', [Definition] = NULL, [SortOrder] = 2850.00 WHERE [Code] = 'xka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktg', 'Kalkutung', NULL, 283.80) END +VALUES ('ktg', 'Kalkutung', NULL, 2851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalkutung', [Definition] = NULL, [SortOrder] = 283.80 WHERE [Code] = 'ktg' END +SET [Description] = 'Kalkutung', [Definition] = NULL, [SortOrder] = 2851.00 WHERE [Code] = 'ktg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xal', 'Kalmyk', NULL, 283.90) END +VALUES ('xal', 'Kalmyk', NULL, 2852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalmyk', [Definition] = NULL, [SortOrder] = 283.90 WHERE [Code] = 'xal' END +SET [Description] = 'Kalmyk', [Definition] = NULL, [SortOrder] = 2852.00 WHERE [Code] = 'xal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmf', 'Kalo Finnish Romani', NULL, 284.00) END +VALUES ('rmf', 'Kalo Finnish Romani', NULL, 2853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalo Finnish Romani', [Definition] = NULL, [SortOrder] = 284.00 WHERE [Code] = 'rmf' END +SET [Description] = 'Kalo Finnish Romani', [Definition] = NULL, [SortOrder] = 2853.00 WHERE [Code] = 'rmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywa', 'Kalou', NULL, 284.10) END +VALUES ('ywa', 'Kalou', NULL, 2854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalou', [Definition] = NULL, [SortOrder] = 284.10 WHERE [Code] = 'ywa' END +SET [Description] = 'Kalou', [Definition] = NULL, [SortOrder] = 2854.00 WHERE [Code] = 'ywa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bco', 'Kaluli', NULL, 284.20) END +VALUES ('bco', 'Kaluli', NULL, 2855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaluli', [Definition] = NULL, [SortOrder] = 284.20 WHERE [Code] = 'bco' END +SET [Description] = 'Kaluli', [Definition] = NULL, [SortOrder] = 2855.00 WHERE [Code] = 'bco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kli', 'Kalumpang', NULL, 284.30) END +VALUES ('kli', 'Kalumpang', NULL, 2856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kalumpang', [Definition] = NULL, [SortOrder] = 284.30 WHERE [Code] = 'kli' END +SET [Description] = 'Kalumpang', [Definition] = NULL, [SortOrder] = 2856.00 WHERE [Code] = 'kli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdx', 'Kam', NULL, 284.40) END +VALUES ('kdx', 'Kam', NULL, 2857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kam', [Definition] = NULL, [SortOrder] = 284.40 WHERE [Code] = 'kdx' END +SET [Description] = 'Kam', [Definition] = NULL, [SortOrder] = 2857.00 WHERE [Code] = 'kdx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkm', 'Kamakan', NULL, 284.50) END +VALUES ('vkm', 'Kamakan', NULL, 2858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamakan', [Definition] = NULL, [SortOrder] = 284.50 WHERE [Code] = 'vkm' END +SET [Description] = 'Kamakan', [Definition] = NULL, [SortOrder] = 2858.00 WHERE [Code] = 'vkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woi', 'Kamang', NULL, 284.60) END +VALUES ('woi', 'Kamang', NULL, 2859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamang', [Definition] = NULL, [SortOrder] = 284.60 WHERE [Code] = 'woi' END +SET [Description] = 'Kamang', [Definition] = NULL, [SortOrder] = 2859.00 WHERE [Code] = 'woi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbq', 'Kamano', NULL, 284.70) END +VALUES ('kbq', 'Kamano', NULL, 2860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamano', [Definition] = NULL, [SortOrder] = 284.70 WHERE [Code] = 'kbq' END +SET [Description] = 'Kamano', [Definition] = NULL, [SortOrder] = 2860.00 WHERE [Code] = 'kbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kci', 'Kamantan', NULL, 284.80) END +VALUES ('kci', 'Kamantan', NULL, 2861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamantan', [Definition] = NULL, [SortOrder] = 284.80 WHERE [Code] = 'kci' END +SET [Description] = 'Kamantan', [Definition] = NULL, [SortOrder] = 2861.00 WHERE [Code] = 'kci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keq', 'Kamar', NULL, 284.90) END +VALUES ('keq', 'Kamar', NULL, 2862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamar', [Definition] = NULL, [SortOrder] = 284.90 WHERE [Code] = 'keq' END +SET [Description] = 'Kamar', [Definition] = NULL, [SortOrder] = 2862.00 WHERE [Code] = 'keq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmr', 'Kamara', NULL, 285.00) END +VALUES ('jmr', 'Kamara', NULL, 2863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamara', [Definition] = NULL, [SortOrder] = 285.00 WHERE [Code] = 'jmr' END +SET [Description] = 'Kamara', [Definition] = NULL, [SortOrder] = 2863.00 WHERE [Code] = 'jmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzx', 'Kamarian', NULL, 285.10) END +VALUES ('kzx', 'Kamarian', NULL, 2864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamarian', [Definition] = NULL, [SortOrder] = 285.10 WHERE [Code] = 'kzx' END +SET [Description] = 'Kamarian', [Definition] = NULL, [SortOrder] = 2864.00 WHERE [Code] = 'kzx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgx', 'Kamaru', NULL, 285.20) END +VALUES ('kgx', 'Kamaru', NULL, 2865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamaru', [Definition] = NULL, [SortOrder] = 285.20 WHERE [Code] = 'kgx' END +SET [Description] = 'Kamaru', [Definition] = NULL, [SortOrder] = 2865.00 WHERE [Code] = 'kgx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xas', 'Kamas', NULL, 285.30) END +VALUES ('xas', 'Kamas', NULL, 2866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamas', [Definition] = NULL, [SortOrder] = 285.30 WHERE [Code] = 'xas' END +SET [Description] = 'Kamas', [Definition] = NULL, [SortOrder] = 2866.00 WHERE [Code] = 'xas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klp', 'Kamasa', NULL, 285.40) END +VALUES ('klp', 'Kamasa', NULL, 2867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamasa', [Definition] = NULL, [SortOrder] = 285.40 WHERE [Code] = 'klp' END +SET [Description] = 'Kamasa', [Definition] = NULL, [SortOrder] = 2867.00 WHERE [Code] = 'klp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kms', 'Kamasau', NULL, 285.50) END +VALUES ('kms', 'Kamasau', NULL, 2868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamasau', [Definition] = NULL, [SortOrder] = 285.50 WHERE [Code] = 'kms' END +SET [Description] = 'Kamasau', [Definition] = NULL, [SortOrder] = 2868.00 WHERE [Code] = 'kms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyk', 'Kamayo', NULL, 285.60) END +VALUES ('kyk', 'Kamayo', NULL, 2869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamayo', [Definition] = NULL, [SortOrder] = 285.60 WHERE [Code] = 'kyk' END +SET [Description] = 'Kamayo', [Definition] = NULL, [SortOrder] = 2869.00 WHERE [Code] = 'kyk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kay', 'Kamayurá', NULL, 285.70) END +VALUES ('kay', 'Kamayurá', NULL, 2870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamayurá', [Definition] = NULL, [SortOrder] = 285.70 WHERE [Code] = 'kay' END +SET [Description] = 'Kamayurá', [Definition] = NULL, [SortOrder] = 2870.00 WHERE [Code] = 'kay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kam', 'Kamba (Kenya)', NULL, 285.80) END +VALUES ('kam', 'Kamba (Kenya)', NULL, 2871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamba (Kenya)', [Definition] = NULL, [SortOrder] = 285.80 WHERE [Code] = 'kam' END +SET [Description] = 'Kamba (Kenya)', [Definition] = NULL, [SortOrder] = 2871.00 WHERE [Code] = 'kam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktb', 'Kambaata', NULL, 285.90) END +VALUES ('ktb', 'Kambaata', NULL, 2872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kambaata', [Definition] = NULL, [SortOrder] = 285.90 WHERE [Code] = 'ktb' END +SET [Description] = 'Kambaata', [Definition] = NULL, [SortOrder] = 2872.00 WHERE [Code] = 'ktb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyy', 'Kambaira', NULL, 286.00) END +VALUES ('kyy', 'Kambaira', NULL, 2873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kambaira', [Definition] = NULL, [SortOrder] = 286.00 WHERE [Code] = 'kyy' END +SET [Description] = 'Kambaira', [Definition] = NULL, [SortOrder] = 2873.00 WHERE [Code] = 'kyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbr', 'Kambera', NULL, 286.10) END +VALUES ('xbr', 'Kambera', NULL, 2874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kambera', [Definition] = NULL, [SortOrder] = 286.10 WHERE [Code] = 'xbr' END +SET [Description] = 'Kambera', [Definition] = NULL, [SortOrder] = 2874.00 WHERE [Code] = 'xbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'irx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('irx', 'Kamberau', NULL, 286.20) END +VALUES ('irx', 'Kamberau', NULL, 2875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamberau', [Definition] = NULL, [SortOrder] = 286.20 WHERE [Code] = 'irx' END +SET [Description] = 'Kamberau', [Definition] = NULL, [SortOrder] = 2875.00 WHERE [Code] = 'irx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbw', 'Kambiwá', NULL, 286.30) END +VALUES ('xbw', 'Kambiwá', NULL, 2876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kambiwá', [Definition] = NULL, [SortOrder] = 286.30 WHERE [Code] = 'xbw' END +SET [Description] = 'Kambiwá', [Definition] = NULL, [SortOrder] = 2876.00 WHERE [Code] = 'xbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmi', 'Kami (Nigeria)', NULL, 286.40) END +VALUES ('kmi', 'Kami (Nigeria)', NULL, 2877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kami (Nigeria)', [Definition] = NULL, [SortOrder] = 286.40 WHERE [Code] = 'kmi' END +SET [Description] = 'Kami (Nigeria)', [Definition] = NULL, [SortOrder] = 2877.00 WHERE [Code] = 'kmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcu', 'Kami (Tanzania)', NULL, 286.50) END +VALUES ('kcu', 'Kami (Tanzania)', NULL, 2878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kami (Tanzania)', [Definition] = NULL, [SortOrder] = 286.50 WHERE [Code] = 'kcu' END +SET [Description] = 'Kami (Tanzania)', [Definition] = NULL, [SortOrder] = 2878.00 WHERE [Code] = 'kcu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcq', 'Kamo', NULL, 286.60) END +VALUES ('kcq', 'Kamo', NULL, 2879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamo', [Definition] = NULL, [SortOrder] = 286.60 WHERE [Code] = 'kcq' END +SET [Description] = 'Kamo', [Definition] = NULL, [SortOrder] = 2879.00 WHERE [Code] = 'kcq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgq', 'Kamoro', NULL, 286.70) END +VALUES ('kgq', 'Kamoro', NULL, 2880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamoro', [Definition] = NULL, [SortOrder] = 286.70 WHERE [Code] = 'kgq' END +SET [Description] = 'Kamoro', [Definition] = NULL, [SortOrder] = 2880.00 WHERE [Code] = 'kgq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmu', 'Kamu', NULL, 286.80) END +VALUES ('xmu', 'Kamu', NULL, 2881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamu', [Definition] = NULL, [SortOrder] = 286.80 WHERE [Code] = 'xmu' END +SET [Description] = 'Kamu', [Definition] = NULL, [SortOrder] = 2881.00 WHERE [Code] = 'xmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xla', 'Kamula', NULL, 286.90) END +VALUES ('xla', 'Kamula', NULL, 2882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamula', [Definition] = NULL, [SortOrder] = 286.90 WHERE [Code] = 'xla' END +SET [Description] = 'Kamula', [Definition] = NULL, [SortOrder] = 2882.00 WHERE [Code] = 'xla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xvi', 'Kamviri', NULL, 287.00) END +VALUES ('xvi', 'Kamviri', NULL, 2883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamviri', [Definition] = NULL, [SortOrder] = 287.00 WHERE [Code] = 'xvi' END +SET [Description] = 'Kamviri', [Definition] = NULL, [SortOrder] = 2883.00 WHERE [Code] = 'xvi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hig', 'Kamwe', NULL, 287.10) END +VALUES ('hig', 'Kamwe', NULL, 2884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kamwe', [Definition] = NULL, [SortOrder] = 287.10 WHERE [Code] = 'hig' END +SET [Description] = 'Kamwe', [Definition] = NULL, [SortOrder] = 2884.00 WHERE [Code] = 'hig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnb', 'Kanakanabu', NULL, 287.20) END +VALUES ('xnb', 'Kanakanabu', NULL, 2885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanakanabu', [Definition] = NULL, [SortOrder] = 287.20 WHERE [Code] = 'xnb' END +SET [Description] = 'Kanakanabu', [Definition] = NULL, [SortOrder] = 2885.00 WHERE [Code] = 'xnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knm', 'Kanamarí', NULL, 287.30) END +VALUES ('knm', 'Kanamarí', NULL, 2886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanamarí', [Definition] = NULL, [SortOrder] = 287.30 WHERE [Code] = 'knm' END +SET [Description] = 'Kanamarí', [Definition] = NULL, [SortOrder] = 2886.00 WHERE [Code] = 'knm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkn', 'Kanan', NULL, 287.40) END +VALUES ('zkn', 'Kanan', NULL, 2887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanan', [Definition] = NULL, [SortOrder] = 287.40 WHERE [Code] = 'zkn' END +SET [Description] = 'Kanan', [Definition] = NULL, [SortOrder] = 2887.00 WHERE [Code] = 'zkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xns', 'Kanashi', NULL, 287.50) END +VALUES ('xns', 'Kanashi', NULL, 2888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanashi', [Definition] = NULL, [SortOrder] = 287.50 WHERE [Code] = 'xns' END +SET [Description] = 'Kanashi', [Definition] = NULL, [SortOrder] = 2888.00 WHERE [Code] = 'xns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soq', 'Kanasi', NULL, 287.60) END +VALUES ('soq', 'Kanasi', NULL, 2889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanasi', [Definition] = NULL, [SortOrder] = 287.60 WHERE [Code] = 'soq' END +SET [Description] = 'Kanasi', [Definition] = NULL, [SortOrder] = 2889.00 WHERE [Code] = 'soq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjj', 'Kanauji', NULL, 287.70) END +VALUES ('bjj', 'Kanauji', NULL, 2890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanauji', [Definition] = NULL, [SortOrder] = 287.70 WHERE [Code] = 'bjj' END +SET [Description] = 'Kanauji', [Definition] = NULL, [SortOrder] = 2890.00 WHERE [Code] = 'bjj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqw', 'Kandas', NULL, 287.80) END +VALUES ('kqw', 'Kandas', NULL, 2891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kandas', [Definition] = NULL, [SortOrder] = 287.80 WHERE [Code] = 'kqw' END +SET [Description] = 'Kandas', [Definition] = NULL, [SortOrder] = 2891.00 WHERE [Code] = 'kqw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gam', 'Kandawo', NULL, 287.90) END +VALUES ('gam', 'Kandawo', NULL, 2892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kandawo', [Definition] = NULL, [SortOrder] = 287.90 WHERE [Code] = 'gam' END +SET [Description] = 'Kandawo', [Definition] = NULL, [SortOrder] = 2892.00 WHERE [Code] = 'gam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbs', 'Kande', NULL, 288.00) END +VALUES ('kbs', 'Kande', NULL, 2893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kande', [Definition] = NULL, [SortOrder] = 288.00 WHERE [Code] = 'kbs' END +SET [Description] = 'Kande', [Definition] = NULL, [SortOrder] = 2893.00 WHERE [Code] = 'kbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbl', 'Kanembu', NULL, 288.10) END +VALUES ('kbl', 'Kanembu', NULL, 2894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanembu', [Definition] = NULL, [SortOrder] = 288.10 WHERE [Code] = 'kbl' END +SET [Description] = 'Kanembu', [Definition] = NULL, [SortOrder] = 2894.00 WHERE [Code] = 'kbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyp', 'Kang', NULL, 288.20) END +VALUES ('kyp', 'Kang', NULL, 2895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kang', [Definition] = NULL, [SortOrder] = 288.20 WHERE [Code] = 'kyp' END +SET [Description] = 'Kang', [Definition] = NULL, [SortOrder] = 2895.00 WHERE [Code] = 'kyp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcp', 'Kanga', NULL, 288.30) END +VALUES ('kcp', 'Kanga', NULL, 2896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanga', [Definition] = NULL, [SortOrder] = 288.30 WHERE [Code] = 'kcp' END +SET [Description] = 'Kanga', [Definition] = NULL, [SortOrder] = 2896.00 WHERE [Code] = 'kcp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkv', 'Kangean', NULL, 288.40) END +VALUES ('kkv', 'Kangean', NULL, 2897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kangean', [Definition] = NULL, [SortOrder] = 288.40 WHERE [Code] = 'kkv' END +SET [Description] = 'Kangean', [Definition] = NULL, [SortOrder] = 2897.00 WHERE [Code] = 'kkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'igm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('igm', 'Kanggape', NULL, 288.50) END +VALUES ('igm', 'Kanggape', NULL, 2898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanggape', [Definition] = NULL, [SortOrder] = 288.50 WHERE [Code] = 'igm' END +SET [Description] = 'Kanggape', [Definition] = NULL, [SortOrder] = 2898.00 WHERE [Code] = 'igm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxs', 'Kangjia', NULL, 288.60) END +VALUES ('kxs', 'Kangjia', NULL, 2899.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kangjia', [Definition] = NULL, [SortOrder] = 288.60 WHERE [Code] = 'kxs' END +SET [Description] = 'Kangjia', [Definition] = NULL, [SortOrder] = 2899.00 WHERE [Code] = 'kxs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kty', 'Kango (Bas-Uélé District)', NULL, 288.70) END +VALUES ('kty', 'Kango (Bas-Uélé District)', NULL, 2900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kango (Bas-Uélé District)', [Definition] = NULL, [SortOrder] = 288.70 WHERE [Code] = 'kty' END +SET [Description] = 'Kango (Bas-Uélé District)', [Definition] = NULL, [SortOrder] = 2900.00 WHERE [Code] = 'kty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzy', 'Kango (Tshopo District)', NULL, 288.80) END +VALUES ('kzy', 'Kango (Tshopo District)', NULL, 2901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kango (Tshopo District)', [Definition] = NULL, [SortOrder] = 288.80 WHERE [Code] = 'kzy' END +SET [Description] = 'Kango (Tshopo District)', [Definition] = NULL, [SortOrder] = 2901.00 WHERE [Code] = 'kzy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnr', 'Kangri', NULL, 288.90) END +VALUES ('xnr', 'Kangri', NULL, 2902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kangri', [Definition] = NULL, [SortOrder] = 288.90 WHERE [Code] = 'xnr' END +SET [Description] = 'Kangri', [Definition] = NULL, [SortOrder] = 2902.00 WHERE [Code] = 'xnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktk', 'Kaniet', NULL, 289.00) END +VALUES ('ktk', 'Kaniet', NULL, 2903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaniet', [Definition] = NULL, [SortOrder] = 289.00 WHERE [Code] = 'ktk' END +SET [Description] = 'Kaniet', [Definition] = NULL, [SortOrder] = 2903.00 WHERE [Code] = 'ktk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kev', 'Kanikkaran', NULL, 289.10) END +VALUES ('kev', 'Kanikkaran', NULL, 2904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanikkaran', [Definition] = NULL, [SortOrder] = 289.10 WHERE [Code] = 'kev' END +SET [Description] = 'Kanikkaran', [Definition] = NULL, [SortOrder] = 2904.00 WHERE [Code] = 'kev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdp', 'Kaningdon-Nindem', NULL, 289.20) END +VALUES ('kdp', 'Kaningdon-Nindem', NULL, 2905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaningdon-Nindem', [Definition] = NULL, [SortOrder] = 289.20 WHERE [Code] = 'kdp' END +SET [Description] = 'Kaningdon-Nindem', [Definition] = NULL, [SortOrder] = 2905.00 WHERE [Code] = 'kdp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzo', 'Kaningi', NULL, 289.30) END +VALUES ('kzo', 'Kaningi', NULL, 2906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaningi', [Definition] = NULL, [SortOrder] = 289.30 WHERE [Code] = 'kzo' END +SET [Description] = 'Kaningi', [Definition] = NULL, [SortOrder] = 2906.00 WHERE [Code] = 'kzo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knr', 'Kaningra', NULL, 289.40) END +VALUES ('knr', 'Kaningra', NULL, 2907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaningra', [Definition] = NULL, [SortOrder] = 289.40 WHERE [Code] = 'knr' END +SET [Description] = 'Kaningra', [Definition] = NULL, [SortOrder] = 2907.00 WHERE [Code] = 'knr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wat', 'Kaninuwa', NULL, 289.50) END +VALUES ('wat', 'Kaninuwa', NULL, 2908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaninuwa', [Definition] = NULL, [SortOrder] = 289.50 WHERE [Code] = 'wat' END +SET [Description] = 'Kaninuwa', [Definition] = NULL, [SortOrder] = 2908.00 WHERE [Code] = 'wat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmu', 'Kanite', NULL, 289.60) END +VALUES ('kmu', 'Kanite', NULL, 2909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanite', [Definition] = NULL, [SortOrder] = 289.60 WHERE [Code] = 'kmu' END +SET [Description] = 'Kanite', [Definition] = NULL, [SortOrder] = 2909.00 WHERE [Code] = 'kmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kft', 'Kanjari', NULL, 289.70) END +VALUES ('kft', 'Kanjari', NULL, 2910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanjari', [Definition] = NULL, [SortOrder] = 289.70 WHERE [Code] = 'kft' END +SET [Description] = 'Kanjari', [Definition] = NULL, [SortOrder] = 2910.00 WHERE [Code] = 'kft' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbe', 'Kanju', NULL, 289.80) END +VALUES ('kbe', 'Kanju', NULL, 2911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanju', [Definition] = NULL, [SortOrder] = 289.80 WHERE [Code] = 'kbe' END +SET [Description] = 'Kanju', [Definition] = NULL, [SortOrder] = 2911.00 WHERE [Code] = 'kbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kne', 'Kankanaey', NULL, 289.90) END +VALUES ('kne', 'Kankanaey', NULL, 2912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kankanaey', [Definition] = NULL, [SortOrder] = 289.90 WHERE [Code] = 'kne' END +SET [Description] = 'Kankanaey', [Definition] = NULL, [SortOrder] = 2912.00 WHERE [Code] = 'kne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kan', 'Kannada', NULL, 290.00) END +VALUES ('kan', 'Kannada', NULL, 2913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kannada', [Definition] = NULL, [SortOrder] = 290.00 WHERE [Code] = 'kan' END +SET [Description] = 'Kannada', [Definition] = NULL, [SortOrder] = 2913.00 WHERE [Code] = 'kan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfi', 'Kannada Kurumba', NULL, 290.10) END +VALUES ('kfi', 'Kannada Kurumba', NULL, 2914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kannada Kurumba', [Definition] = NULL, [SortOrder] = 290.10 WHERE [Code] = 'kfi' END +SET [Description] = 'Kannada Kurumba', [Definition] = NULL, [SortOrder] = 2914.00 WHERE [Code] = 'kfi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxo', 'Kanoé', NULL, 290.20) END +VALUES ('kxo', 'Kanoé', NULL, 2915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanoé', [Definition] = NULL, [SortOrder] = 290.20 WHERE [Code] = 'kxo' END +SET [Description] = 'Kanoé', [Definition] = NULL, [SortOrder] = 2915.00 WHERE [Code] = 'kxo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxn', 'Kanowit-Tanjong Melanau', NULL, 290.30) END +VALUES ('kxn', 'Kanowit-Tanjong Melanau', NULL, 2916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanowit-Tanjong Melanau', [Definition] = NULL, [SortOrder] = 290.30 WHERE [Code] = 'kxn' END +SET [Description] = 'Kanowit-Tanjong Melanau', [Definition] = NULL, [SortOrder] = 2916.00 WHERE [Code] = 'kxn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksk', 'Kansa', NULL, 290.40) END +VALUES ('ksk', 'Kansa', NULL, 2917.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kansa', [Definition] = NULL, [SortOrder] = 290.40 WHERE [Code] = 'ksk' END +SET [Description] = 'Kansa', [Definition] = NULL, [SortOrder] = 2917.00 WHERE [Code] = 'ksk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkt', 'Kantosi', NULL, 290.50) END +VALUES ('xkt', 'Kantosi', NULL, 2918.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kantosi', [Definition] = NULL, [SortOrder] = 290.50 WHERE [Code] = 'xkt' END +SET [Description] = 'Kantosi', [Definition] = NULL, [SortOrder] = 2918.00 WHERE [Code] = 'xkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khx', 'Kanu', NULL, 290.60) END +VALUES ('khx', 'Kanu', NULL, 2919.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanu', [Definition] = NULL, [SortOrder] = 290.60 WHERE [Code] = 'khx' END +SET [Description] = 'Kanu', [Definition] = NULL, [SortOrder] = 2919.00 WHERE [Code] = 'khx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kni', 'Kanufi', NULL, 290.70) END +VALUES ('kni', 'Kanufi', NULL, 2920.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanufi', [Definition] = NULL, [SortOrder] = 290.70 WHERE [Code] = 'kni' END +SET [Description] = 'Kanufi', [Definition] = NULL, [SortOrder] = 2920.00 WHERE [Code] = 'kni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kau', 'Kanuri', NULL, 290.80) END +VALUES ('kau', 'Kanuri', NULL, 2921.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanuri', [Definition] = NULL, [SortOrder] = 290.80 WHERE [Code] = 'kau' END +SET [Description] = 'Kanuri', [Definition] = NULL, [SortOrder] = 2921.00 WHERE [Code] = 'kau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kny', 'Kanyok', NULL, 290.90) END +VALUES ('kny', 'Kanyok', NULL, 2922.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kanyok', [Definition] = NULL, [SortOrder] = 290.90 WHERE [Code] = 'kny' END +SET [Description] = 'Kanyok', [Definition] = NULL, [SortOrder] = 2922.00 WHERE [Code] = 'kny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kax', 'Kao', NULL, 291.00) END +VALUES ('kax', 'Kao', NULL, 2923.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kao', [Definition] = NULL, [SortOrder] = 291.00 WHERE [Code] = 'kax' END +SET [Description] = 'Kao', [Definition] = NULL, [SortOrder] = 2923.00 WHERE [Code] = 'kax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqn', 'Kaonde', NULL, 291.10) END +VALUES ('kqn', 'Kaonde', NULL, 2924.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaonde', [Definition] = NULL, [SortOrder] = 291.10 WHERE [Code] = 'kqn' END +SET [Description] = 'Kaonde', [Definition] = NULL, [SortOrder] = 2924.00 WHERE [Code] = 'kqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykm', 'Kap', NULL, 291.20) END +VALUES ('ykm', 'Kap', NULL, 2925.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kap', [Definition] = NULL, [SortOrder] = 291.20 WHERE [Code] = 'ykm' END +SET [Description] = 'Kap', [Definition] = NULL, [SortOrder] = 2925.00 WHERE [Code] = 'ykm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbx', 'Kapin', NULL, 291.30) END +VALUES ('tbx', 'Kapin', NULL, 2926.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapin', [Definition] = NULL, [SortOrder] = 291.30 WHERE [Code] = 'tbx' END +SET [Description] = 'Kapin', [Definition] = NULL, [SortOrder] = 2926.00 WHERE [Code] = 'tbx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpn', 'Kapinawá', NULL, 291.40) END +VALUES ('xpn', 'Kapinawá', NULL, 2927.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapinawá', [Definition] = NULL, [SortOrder] = 291.40 WHERE [Code] = 'xpn' END +SET [Description] = 'Kapinawá', [Definition] = NULL, [SortOrder] = 2927.00 WHERE [Code] = 'xpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpg', 'Kapingamarangi', NULL, 291.50) END +VALUES ('kpg', 'Kapingamarangi', NULL, 2928.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapingamarangi', [Definition] = NULL, [SortOrder] = 291.50 WHERE [Code] = 'kpg' END +SET [Description] = 'Kapingamarangi', [Definition] = NULL, [SortOrder] = 2928.00 WHERE [Code] = 'kpg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khp', 'Kapori', NULL, 291.60) END +VALUES ('khp', 'Kapori', NULL, 2929.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapori', [Definition] = NULL, [SortOrder] = 291.60 WHERE [Code] = 'khp' END +SET [Description] = 'Kapori', [Definition] = NULL, [SortOrder] = 2929.00 WHERE [Code] = 'khp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dju', 'Kapriman', NULL, 291.70) END +VALUES ('dju', 'Kapriman', NULL, 2930.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapriman', [Definition] = NULL, [SortOrder] = 291.70 WHERE [Code] = 'dju' END +SET [Description] = 'Kapriman', [Definition] = NULL, [SortOrder] = 2930.00 WHERE [Code] = 'dju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbi', 'Kaptiau', NULL, 291.80) END +VALUES ('kbi', 'Kaptiau', NULL, 2931.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaptiau', [Definition] = NULL, [SortOrder] = 291.80 WHERE [Code] = 'kbi' END +SET [Description] = 'Kaptiau', [Definition] = NULL, [SortOrder] = 2931.00 WHERE [Code] = 'kbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klo', 'Kapya', NULL, 291.90) END +VALUES ('klo', 'Kapya', NULL, 2932.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kapya', [Definition] = NULL, [SortOrder] = 291.90 WHERE [Code] = 'klo' END +SET [Description] = 'Kapya', [Definition] = NULL, [SortOrder] = 2932.00 WHERE [Code] = 'klo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cak', 'Kaqchikel', NULL, 292.00) END +VALUES ('cak', 'Kaqchikel', NULL, 2933.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaqchikel', [Definition] = NULL, [SortOrder] = 292.00 WHERE [Code] = 'cak' END +SET [Description] = 'Kaqchikel', [Definition] = NULL, [SortOrder] = 2933.00 WHERE [Code] = 'cak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kah', 'Kara (Central African Republic)', NULL, 292.10) END +VALUES ('kah', 'Kara (Central African Republic)', NULL, 2934.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara (Central African Republic)', [Definition] = NULL, [SortOrder] = 292.10 WHERE [Code] = 'kah' END +SET [Description] = 'Kara (Central African Republic)', [Definition] = NULL, [SortOrder] = 2934.00 WHERE [Code] = 'kah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zra', 'Kara (Korea)', NULL, 292.20) END +VALUES ('zra', 'Kara (Korea)', NULL, 2935.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara (Korea)', [Definition] = NULL, [SortOrder] = 292.20 WHERE [Code] = 'zra' END +SET [Description] = 'Kara (Korea)', [Definition] = NULL, [SortOrder] = 2935.00 WHERE [Code] = 'zra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leu', 'Kara (Papua New Guinea)', NULL, 292.30) END +VALUES ('leu', 'Kara (Papua New Guinea)', NULL, 2936.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 292.30 WHERE [Code] = 'leu' END +SET [Description] = 'Kara (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 2936.00 WHERE [Code] = 'leu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'reg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('reg', 'Kara (Tanzania)', NULL, 292.40) END +VALUES ('reg', 'Kara (Tanzania)', NULL, 2937.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara (Tanzania)', [Definition] = NULL, [SortOrder] = 292.40 WHERE [Code] = 'reg' END +SET [Description] = 'Kara (Tanzania)', [Definition] = NULL, [SortOrder] = 2937.00 WHERE [Code] = 'reg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaa', 'Kara-Kalpak', NULL, 292.50) END +VALUES ('kaa', 'Kara-Kalpak', NULL, 2938.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kara-Kalpak', [Definition] = NULL, [SortOrder] = 292.50 WHERE [Code] = 'kaa' END +SET [Description] = 'Kara-Kalpak', [Definition] = NULL, [SortOrder] = 2938.00 WHERE [Code] = 'kaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krc', 'Karachay-Balkar', NULL, 292.60) END +VALUES ('krc', 'Karachay-Balkar', NULL, 2939.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karachay-Balkar', [Definition] = NULL, [SortOrder] = 292.60 WHERE [Code] = 'krc' END +SET [Description] = 'Karachay-Balkar', [Definition] = NULL, [SortOrder] = 2939.00 WHERE [Code] = 'krc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kim', 'Karagas', NULL, 292.70) END +VALUES ('kim', 'Karagas', NULL, 2940.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karagas', [Definition] = NULL, [SortOrder] = 292.70 WHERE [Code] = 'kim' END +SET [Description] = 'Karagas', [Definition] = NULL, [SortOrder] = 2940.00 WHERE [Code] = 'kim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdr', 'Karaim', NULL, 292.80) END +VALUES ('kdr', 'Karaim', NULL, 2941.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karaim', [Definition] = NULL, [SortOrder] = 292.80 WHERE [Code] = 'kdr' END +SET [Description] = 'Karaim', [Definition] = NULL, [SortOrder] = 2941.00 WHERE [Code] = 'kdr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpj', 'Karajá', NULL, 292.90) END +VALUES ('kpj', 'Karajá', NULL, 2942.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karajá', [Definition] = NULL, [SortOrder] = 292.90 WHERE [Code] = 'kpj' END +SET [Description] = 'Karajá', [Definition] = NULL, [SortOrder] = 2942.00 WHERE [Code] = 'kpj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbd', 'Karajarri', NULL, 293.00) END +VALUES ('gbd', 'Karajarri', NULL, 2943.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karajarri', [Definition] = NULL, [SortOrder] = 293.00 WHERE [Code] = 'gbd' END +SET [Description] = 'Karajarri', [Definition] = NULL, [SortOrder] = 2943.00 WHERE [Code] = 'gbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xqa', 'Karakhanid', NULL, 293.10) END +VALUES ('xqa', 'Karakhanid', NULL, 2944.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karakhanid', [Definition] = NULL, [SortOrder] = 293.10 WHERE [Code] = 'xqa' END +SET [Description] = 'Karakhanid', [Definition] = NULL, [SortOrder] = 2944.00 WHERE [Code] = 'xqa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xar', 'Karami', NULL, 293.20) END +VALUES ('xar', 'Karami', NULL, 2945.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karami', [Definition] = NULL, [SortOrder] = 293.20 WHERE [Code] = 'xar' END +SET [Description] = 'Karami', [Definition] = NULL, [SortOrder] = 2945.00 WHERE [Code] = 'xar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdj', 'Karamojong', NULL, 293.30) END +VALUES ('kdj', 'Karamojong', NULL, 2946.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karamojong', [Definition] = NULL, [SortOrder] = 293.30 WHERE [Code] = 'kdj' END +SET [Description] = 'Karamojong', [Definition] = NULL, [SortOrder] = 2946.00 WHERE [Code] = 'kdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzr', 'Karang', NULL, 293.40) END +VALUES ('kzr', 'Karang', NULL, 2947.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karang', [Definition] = NULL, [SortOrder] = 293.40 WHERE [Code] = 'kzr' END +SET [Description] = 'Karang', [Definition] = NULL, [SortOrder] = 2947.00 WHERE [Code] = 'kzr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kth', 'Karanga', NULL, 293.50) END +VALUES ('kth', 'Karanga', NULL, 2948.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karanga', [Definition] = NULL, [SortOrder] = 293.50 WHERE [Code] = 'kth' END +SET [Description] = 'Karanga', [Definition] = NULL, [SortOrder] = 2948.00 WHERE [Code] = 'kth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkk', 'Karankawa', NULL, 293.60) END +VALUES ('zkk', 'Karankawa', NULL, 2949.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karankawa', [Definition] = NULL, [SortOrder] = 293.60 WHERE [Code] = 'zkk' END +SET [Description] = 'Karankawa', [Definition] = NULL, [SortOrder] = 2949.00 WHERE [Code] = 'zkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyj', 'Karao', NULL, 293.70) END +VALUES ('kyj', 'Karao', NULL, 2950.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karao', [Definition] = NULL, [SortOrder] = 293.70 WHERE [Code] = 'kyj' END +SET [Description] = 'Karao', [Definition] = NULL, [SortOrder] = 2950.00 WHERE [Code] = 'kyj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgv', 'Karas', NULL, 293.80) END +VALUES ('kgv', 'Karas', NULL, 2951.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karas', [Definition] = NULL, [SortOrder] = 293.80 WHERE [Code] = 'kgv' END +SET [Description] = 'Karas', [Definition] = NULL, [SortOrder] = 2951.00 WHERE [Code] = 'kgv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpt', 'Karata', NULL, 293.90) END +VALUES ('kpt', 'Karata', NULL, 2952.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karata', [Definition] = NULL, [SortOrder] = 293.90 WHERE [Code] = 'kpt' END +SET [Description] = 'Karata', [Definition] = NULL, [SortOrder] = 2952.00 WHERE [Code] = 'kpt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrw', 'Karawa', NULL, 294.00) END +VALUES ('xrw', 'Karawa', NULL, 2953.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karawa', [Definition] = NULL, [SortOrder] = 294.00 WHERE [Code] = 'xrw' END +SET [Description] = 'Karawa', [Definition] = NULL, [SortOrder] = 2953.00 WHERE [Code] = 'xrw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjw', 'Karbi', NULL, 294.10) END +VALUES ('mjw', 'Karbi', NULL, 2954.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karbi', [Definition] = NULL, [SortOrder] = 294.10 WHERE [Code] = 'mjw' END +SET [Description] = 'Karbi', [Definition] = NULL, [SortOrder] = 2954.00 WHERE [Code] = 'mjw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbn', 'Kare (Central African Republic)', NULL, 294.20) END +VALUES ('kbn', 'Kare (Central African Republic)', NULL, 2955.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kare (Central African Republic)', [Definition] = NULL, [SortOrder] = 294.20 WHERE [Code] = 'kbn' END +SET [Description] = 'Kare (Central African Republic)', [Definition] = NULL, [SortOrder] = 2955.00 WHERE [Code] = 'kbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmf', 'Kare (Papua New Guinea)', NULL, 294.30) END +VALUES ('kmf', 'Kare (Papua New Guinea)', NULL, 2956.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kare (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 294.30 WHERE [Code] = 'kmf' END +SET [Description] = 'Kare (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 2956.00 WHERE [Code] = 'kmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kai', 'Karekare', NULL, 294.40) END +VALUES ('kai', 'Karekare', NULL, 2957.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karekare', [Definition] = NULL, [SortOrder] = 294.40 WHERE [Code] = 'kai' END +SET [Description] = 'Karekare', [Definition] = NULL, [SortOrder] = 2957.00 WHERE [Code] = 'kai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krl', 'Karelian', NULL, 294.50) END +VALUES ('krl', 'Karelian', NULL, 2958.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karelian', [Definition] = NULL, [SortOrder] = 294.50 WHERE [Code] = 'krl' END +SET [Description] = 'Karelian', [Definition] = NULL, [SortOrder] = 2958.00 WHERE [Code] = 'krl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eaa', 'Karenggapa', NULL, 294.60) END +VALUES ('eaa', 'Karenggapa', NULL, 2959.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karenggapa', [Definition] = NULL, [SortOrder] = 294.60 WHERE [Code] = 'eaa' END +SET [Description] = 'Karenggapa', [Definition] = NULL, [SortOrder] = 2959.00 WHERE [Code] = 'eaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyd', 'Karey', NULL, 294.70) END +VALUES ('kyd', 'Karey', NULL, 2960.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karey', [Definition] = NULL, [SortOrder] = 294.70 WHERE [Code] = 'kyd' END +SET [Description] = 'Karey', [Definition] = NULL, [SortOrder] = 2960.00 WHERE [Code] = 'kyd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbj', 'Kari', NULL, 294.80) END +VALUES ('kbj', 'Kari', NULL, 2961.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kari', [Definition] = NULL, [SortOrder] = 294.80 WHERE [Code] = 'kbj' END +SET [Description] = 'Kari', [Definition] = NULL, [SortOrder] = 2961.00 WHERE [Code] = 'kbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgn', 'Karingani', NULL, 294.90) END +VALUES ('kgn', 'Karingani', NULL, 2962.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karingani', [Definition] = NULL, [SortOrder] = 294.90 WHERE [Code] = 'kgn' END +SET [Description] = 'Karingani', [Definition] = NULL, [SortOrder] = 2962.00 WHERE [Code] = 'kgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuq', 'Karipuna', NULL, 295.00) END +VALUES ('kuq', 'Karipuna', NULL, 2963.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karipuna', [Definition] = NULL, [SortOrder] = 295.00 WHERE [Code] = 'kuq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgm', 'Karipúna', NULL, 295.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karipúna', [Definition] = NULL, [SortOrder] = 295.10 WHERE [Code] = 'kgm' END +SET [Description] = 'Karipuna', [Definition] = NULL, [SortOrder] = 2963.00 WHERE [Code] = 'kuq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmv', 'Karipúna Creole French', NULL, 295.20) END +VALUES ('kmv', 'Karipúna Creole French', NULL, 2964.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karipúna Creole French', [Definition] = NULL, [SortOrder] = 295.20 WHERE [Code] = 'kmv' END +SET [Description] = 'Karipúna Creole French', [Definition] = NULL, [SortOrder] = 2964.00 WHERE [Code] = 'kmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzw', 'Karirí-Xocó', NULL, 295.30) END +VALUES ('kzw', 'Karirí-Xocó', NULL, 2965.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karirí-Xocó', [Definition] = NULL, [SortOrder] = 295.30 WHERE [Code] = 'kzw' END +SET [Description] = 'Karirí-Xocó', [Definition] = NULL, [SortOrder] = 2965.00 WHERE [Code] = 'kzw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktn', 'Karitiâna', NULL, 295.40) END +VALUES ('ktn', 'Karitiâna', NULL, 2966.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karitiâna', [Definition] = NULL, [SortOrder] = 295.40 WHERE [Code] = 'ktn' END +SET [Description] = 'Karitiâna', [Definition] = NULL, [SortOrder] = 2966.00 WHERE [Code] = 'ktn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kil', 'Kariya', NULL, 295.50) END +VALUES ('kil', 'Kariya', NULL, 2967.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kariya', [Definition] = NULL, [SortOrder] = 295.50 WHERE [Code] = 'kil' END +SET [Description] = 'Kariya', [Definition] = NULL, [SortOrder] = 2967.00 WHERE [Code] = 'kil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vka', 'Kariyarra', NULL, 295.60) END +VALUES ('vka', 'Kariyarra', NULL, 2968.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kariyarra', [Definition] = NULL, [SortOrder] = 295.60 WHERE [Code] = 'vka' END +SET [Description] = 'Kariyarra', [Definition] = NULL, [SortOrder] = 2968.00 WHERE [Code] = 'vka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuj', 'Karkar-Yuri', NULL, 295.70) END +VALUES ('yuj', 'Karkar-Yuri', NULL, 2969.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karkar-Yuri', [Definition] = NULL, [SortOrder] = 295.70 WHERE [Code] = 'yuj' END +SET [Description] = 'Karkar-Yuri', [Definition] = NULL, [SortOrder] = 2969.00 WHERE [Code] = 'yuj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krb', 'Karkin', NULL, 295.80) END +VALUES ('krb', 'Karkin', NULL, 2970.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karkin', [Definition] = NULL, [SortOrder] = 295.80 WHERE [Code] = 'krb' END +SET [Description] = 'Karkin', [Definition] = NULL, [SortOrder] = 2970.00 WHERE [Code] = 'krb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kko', 'Karko', NULL, 295.90) END +VALUES ('kko', 'Karko', NULL, 2971.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karko', [Definition] = NULL, [SortOrder] = 295.90 WHERE [Code] = 'kko' END +SET [Description] = 'Karko', [Definition] = NULL, [SortOrder] = 2971.00 WHERE [Code] = 'kko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbv', 'Karnai', NULL, 296.00) END +VALUES ('bbv', 'Karnai', NULL, 2972.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karnai', [Definition] = NULL, [SortOrder] = 296.00 WHERE [Code] = 'bbv' END +SET [Description] = 'Karnai', [Definition] = NULL, [SortOrder] = 2972.00 WHERE [Code] = 'bbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arr', 'Karo (Brazil)', NULL, 296.10) END +VALUES ('arr', 'Karo (Brazil)', NULL, 2973.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karo (Brazil)', [Definition] = NULL, [SortOrder] = 296.10 WHERE [Code] = 'arr' END +SET [Description] = 'Karo (Brazil)', [Definition] = NULL, [SortOrder] = 2973.00 WHERE [Code] = 'arr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxh', 'Karo (Ethiopia)', NULL, 296.20) END +VALUES ('kxh', 'Karo (Ethiopia)', NULL, 2974.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karo (Ethiopia)', [Definition] = NULL, [SortOrder] = 296.20 WHERE [Code] = 'kxh' END +SET [Description] = 'Karo (Ethiopia)', [Definition] = NULL, [SortOrder] = 2974.00 WHERE [Code] = 'kxh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyh', 'Karok', NULL, 296.30) END +VALUES ('kyh', 'Karok', NULL, 2975.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karok', [Definition] = NULL, [SortOrder] = 296.30 WHERE [Code] = 'kyh' END +SET [Description] = 'Karok', [Definition] = NULL, [SortOrder] = 2975.00 WHERE [Code] = 'kyh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krx', 'Karon', NULL, 296.40) END +VALUES ('krx', 'Karon', NULL, 2976.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karon', [Definition] = NULL, [SortOrder] = 296.40 WHERE [Code] = 'krx' END +SET [Description] = 'Karon', [Definition] = NULL, [SortOrder] = 2976.00 WHERE [Code] = 'krx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgw', 'Karon Dori', NULL, 296.50) END +VALUES ('kgw', 'Karon Dori', NULL, 2977.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karon Dori', [Definition] = NULL, [SortOrder] = 296.50 WHERE [Code] = 'kgw' END +SET [Description] = 'Karon Dori', [Definition] = NULL, [SortOrder] = 2977.00 WHERE [Code] = 'kgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkx', 'Karore', NULL, 296.60) END +VALUES ('xkx', 'Karore', NULL, 2978.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karore', [Definition] = NULL, [SortOrder] = 296.60 WHERE [Code] = 'xkx' END +SET [Description] = 'Karore', [Definition] = NULL, [SortOrder] = 2978.00 WHERE [Code] = 'xkx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rxw', 'Karuwali', NULL, 296.70) END +VALUES ('rxw', 'Karuwali', NULL, 2979.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Karuwali', [Definition] = NULL, [SortOrder] = 296.70 WHERE [Code] = 'rxw' END +SET [Description] = 'Karuwali', [Definition] = NULL, [SortOrder] = 2979.00 WHERE [Code] = 'rxw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccj', 'Kasanga', NULL, 296.80) END +VALUES ('ccj', 'Kasanga', NULL, 2980.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kasanga', [Definition] = NULL, [SortOrder] = 296.80 WHERE [Code] = 'ccj' END +SET [Description] = 'Kasanga', [Definition] = NULL, [SortOrder] = 2980.00 WHERE [Code] = 'ccj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsm', 'Kasem', NULL, 296.90) END +VALUES ('xsm', 'Kasem', NULL, 2981.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kasem', [Definition] = NULL, [SortOrder] = 296.90 WHERE [Code] = 'xsm' END +SET [Description] = 'Kasem', [Definition] = NULL, [SortOrder] = 2981.00 WHERE [Code] = 'xsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kju', 'Kashaya', NULL, 297.00) END +VALUES ('kju', 'Kashaya', NULL, 2982.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kashaya', [Definition] = NULL, [SortOrder] = 297.00 WHERE [Code] = 'kju' END +SET [Description] = 'Kashaya', [Definition] = NULL, [SortOrder] = 2982.00 WHERE [Code] = 'kju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kas', 'Kashmiri', NULL, 297.10) END +VALUES ('kas', 'Kashmiri', NULL, 2983.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kashmiri', [Definition] = NULL, [SortOrder] = 297.10 WHERE [Code] = 'kas' END +SET [Description] = 'Kashmiri', [Definition] = NULL, [SortOrder] = 2983.00 WHERE [Code] = 'kas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csb', 'Kashubian', NULL, 297.20) END +VALUES ('csb', 'Kashubian', NULL, 2984.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kashubian', [Definition] = NULL, [SortOrder] = 297.20 WHERE [Code] = 'csb' END +SET [Description] = 'Kashubian', [Definition] = NULL, [SortOrder] = 2984.00 WHERE [Code] = 'csb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksn', 'Kasiguranin', NULL, 297.30) END +VALUES ('ksn', 'Kasiguranin', NULL, 2985.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kasiguranin', [Definition] = NULL, [SortOrder] = 297.30 WHERE [Code] = 'ksn' END +SET [Description] = 'Kasiguranin', [Definition] = NULL, [SortOrder] = 2985.00 WHERE [Code] = 'ksn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkz', 'Kaska', NULL, 297.40) END +VALUES ('kkz', 'Kaska', NULL, 2986.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaska', [Definition] = NULL, [SortOrder] = 297.40 WHERE [Code] = 'kkz' END +SET [Description] = 'Kaska', [Definition] = NULL, [SortOrder] = 2986.00 WHERE [Code] = 'kkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsk', 'Kaskean', NULL, 297.50) END +VALUES ('zsk', 'Kaskean', NULL, 2987.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaskean', [Definition] = NULL, [SortOrder] = 297.50 WHERE [Code] = 'zsk' END +SET [Description] = 'Kaskean', [Definition] = NULL, [SortOrder] = 2987.00 WHERE [Code] = 'zsk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khs', 'Kasua', NULL, 297.60) END +VALUES ('khs', 'Kasua', NULL, 2988.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kasua', [Definition] = NULL, [SortOrder] = 297.60 WHERE [Code] = 'khs' END +SET [Description] = 'Kasua', [Definition] = NULL, [SortOrder] = 2988.00 WHERE [Code] = 'khs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktq', 'Katabaga', NULL, 297.70) END +VALUES ('ktq', 'Katabaga', NULL, 2989.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katabaga', [Definition] = NULL, [SortOrder] = 297.70 WHERE [Code] = 'ktq' END +SET [Description] = 'Katabaga', [Definition] = NULL, [SortOrder] = 2989.00 WHERE [Code] = 'ktq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xat', 'Katawixi', NULL, 297.80) END +VALUES ('xat', 'Katawixi', NULL, 2990.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katawixi', [Definition] = NULL, [SortOrder] = 297.80 WHERE [Code] = 'xat' END +SET [Description] = 'Katawixi', [Definition] = NULL, [SortOrder] = 2990.00 WHERE [Code] = 'xat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmb', 'Katbol', NULL, 297.90) END +VALUES ('tmb', 'Katbol', NULL, 2991.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katbol', [Definition] = NULL, [SortOrder] = 297.90 WHERE [Code] = 'tmb' END +SET [Description] = 'Katbol', [Definition] = NULL, [SortOrder] = 2991.00 WHERE [Code] = 'tmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtc', 'Katcha-Kadugli-Miri', NULL, 298.00) END +VALUES ('xtc', 'Katcha-Kadugli-Miri', NULL, 2992.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katcha-Kadugli-Miri', [Definition] = NULL, [SortOrder] = 298.00 WHERE [Code] = 'xtc' END +SET [Description] = 'Katcha-Kadugli-Miri', [Definition] = NULL, [SortOrder] = 2992.00 WHERE [Code] = 'xtc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmg', 'Kâte', NULL, 298.10) END +VALUES ('kmg', 'Kâte', NULL, 2993.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kâte', [Definition] = NULL, [SortOrder] = 298.10 WHERE [Code] = 'kmg' END +SET [Description] = 'Kâte', [Definition] = NULL, [SortOrder] = 2993.00 WHERE [Code] = 'kmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkt', 'Kathoriya Tharu', NULL, 298.20) END +VALUES ('tkt', 'Kathoriya Tharu', NULL, 2994.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kathoriya Tharu', [Definition] = NULL, [SortOrder] = 298.20 WHERE [Code] = 'tkt' END +SET [Description] = 'Kathoriya Tharu', [Definition] = NULL, [SortOrder] = 2994.00 WHERE [Code] = 'tkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykt', 'Kathu', NULL, 298.30) END +VALUES ('ykt', 'Kathu', NULL, 2995.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kathu', [Definition] = NULL, [SortOrder] = 298.30 WHERE [Code] = 'ykt' END +SET [Description] = 'Kathu', [Definition] = NULL, [SortOrder] = 2995.00 WHERE [Code] = 'ykt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsh', 'Kati', NULL, 298.40) END +VALUES ('bsh', 'Kati', NULL, 2996.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kati', [Definition] = NULL, [SortOrder] = 298.40 WHERE [Code] = 'bsh' END +SET [Description] = 'Kati', [Definition] = NULL, [SortOrder] = 2996.00 WHERE [Code] = 'bsh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfu', 'Katkari', NULL, 298.50) END +VALUES ('kfu', 'Katkari', NULL, 2997.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katkari', [Definition] = NULL, [SortOrder] = 298.50 WHERE [Code] = 'kfu' END +SET [Description] = 'Katkari', [Definition] = NULL, [SortOrder] = 2997.00 WHERE [Code] = 'kfu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcr', 'Katla', NULL, 298.60) END +VALUES ('kcr', 'Katla', NULL, 2998.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katla', [Definition] = NULL, [SortOrder] = 298.60 WHERE [Code] = 'kcr' END +SET [Description] = 'Katla', [Definition] = NULL, [SortOrder] = 2998.00 WHERE [Code] = 'kcr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktw', 'Kato', NULL, 298.70) END +VALUES ('ktw', 'Kato', NULL, 2999.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kato', [Definition] = NULL, [SortOrder] = 298.70 WHERE [Code] = 'ktw' END +SET [Description] = 'Kato', [Definition] = NULL, [SortOrder] = 2999.00 WHERE [Code] = 'ktw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaf', 'Katso', NULL, 298.80) END +VALUES ('kaf', 'Katso', NULL, 3000.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katso', [Definition] = NULL, [SortOrder] = 298.80 WHERE [Code] = 'kaf' END +SET [Description] = 'Katso', [Definition] = NULL, [SortOrder] = 3000.00 WHERE [Code] = 'kaf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kta', 'Katua', NULL, 298.90) END +VALUES ('kta', 'Katua', NULL, 3001.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katua', [Definition] = NULL, [SortOrder] = 298.90 WHERE [Code] = 'kta' END +SET [Description] = 'Katua', [Definition] = NULL, [SortOrder] = 3001.00 WHERE [Code] = 'kta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kav', 'Katukína', NULL, 299.00) END +VALUES ('kav', 'Katukína', NULL, 3002.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Katukína', [Definition] = NULL, [SortOrder] = 299.00 WHERE [Code] = 'kav' END +SET [Description] = 'Katukína', [Definition] = NULL, [SortOrder] = 3002.00 WHERE [Code] = 'kav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pss', 'Kaulong', NULL, 299.10) END +VALUES ('pss', 'Kaulong', NULL, 3003.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaulong', [Definition] = NULL, [SortOrder] = 299.10 WHERE [Code] = 'pss' END +SET [Description] = 'Kaulong', [Definition] = NULL, [SortOrder] = 3003.00 WHERE [Code] = 'pss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkk', 'Kaur', NULL, 299.20) END +VALUES ('vkk', 'Kaur', NULL, 3004.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaur', [Definition] = NULL, [SortOrder] = 299.20 WHERE [Code] = 'vkk' END +SET [Description] = 'Kaur', [Definition] = NULL, [SortOrder] = 3004.00 WHERE [Code] = 'vkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpp', 'Kaure', NULL, 299.30) END +VALUES ('bpp', 'Kaure', NULL, 3005.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaure', [Definition] = NULL, [SortOrder] = 299.30 WHERE [Code] = 'bpp' END +SET [Description] = 'Kaure', [Definition] = NULL, [SortOrder] = 3005.00 WHERE [Code] = 'bpp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zku', 'Kaurna', NULL, 299.40) END +VALUES ('zku', 'Kaurna', NULL, 3006.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaurna', [Definition] = NULL, [SortOrder] = 299.40 WHERE [Code] = 'zku' END +SET [Description] = 'Kaurna', [Definition] = NULL, [SortOrder] = 3006.00 WHERE [Code] = 'zku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xau', 'Kauwera', NULL, 299.50) END +VALUES ('xau', 'Kauwera', NULL, 3007.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kauwera', [Definition] = NULL, [SortOrder] = 299.50 WHERE [Code] = 'xau' END +SET [Description] = 'Kauwera', [Definition] = NULL, [SortOrder] = 3007.00 WHERE [Code] = 'xau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ckv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ckv', 'Kavalan', NULL, 299.60) END +VALUES ('ckv', 'Kavalan', NULL, 3008.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kavalan', [Definition] = NULL, [SortOrder] = 299.60 WHERE [Code] = 'ckv' END +SET [Description] = 'Kavalan', [Definition] = NULL, [SortOrder] = 3008.00 WHERE [Code] = 'ckv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krv', 'Kavet', NULL, 299.70) END +VALUES ('krv', 'Kavet', NULL, 3009.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kavet', [Definition] = NULL, [SortOrder] = 299.70 WHERE [Code] = 'krv' END +SET [Description] = 'Kavet', [Definition] = NULL, [SortOrder] = 3009.00 WHERE [Code] = 'krv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcb', 'Kawacha', NULL, 299.80) END +VALUES ('kcb', 'Kawacha', NULL, 3010.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kawacha', [Definition] = NULL, [SortOrder] = 299.80 WHERE [Code] = 'kcb' END +SET [Description] = 'Kawacha', [Definition] = NULL, [SortOrder] = 3010.00 WHERE [Code] = 'kcb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xaw', 'Kawaiisu', NULL, 299.90) END +VALUES ('xaw', 'Kawaiisu', NULL, 3011.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kawaiisu', [Definition] = NULL, [SortOrder] = 299.90 WHERE [Code] = 'xaw' END +SET [Description] = 'Kawaiisu', [Definition] = NULL, [SortOrder] = 3011.00 WHERE [Code] = 'xaw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgb', 'Kawe', NULL, 300.00) END +VALUES ('kgb', 'Kawe', NULL, 3012.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kawe', [Definition] = NULL, [SortOrder] = 300.00 WHERE [Code] = 'kgb' END +SET [Description] = 'Kawe', [Definition] = NULL, [SortOrder] = 3012.00 WHERE [Code] = 'kgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaw', 'Kawi', NULL, 300.10) END +VALUES ('kaw', 'Kawi', NULL, 3013.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kawi', [Definition] = NULL, [SortOrder] = 300.10 WHERE [Code] = 'kaw' END +SET [Description] = 'Kawi', [Definition] = NULL, [SortOrder] = 3013.00 WHERE [Code] = 'kaw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktx', 'Kaxararí', NULL, 300.20) END +VALUES ('ktx', 'Kaxararí', NULL, 3014.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaxararí', [Definition] = NULL, [SortOrder] = 300.20 WHERE [Code] = 'ktx' END +SET [Description] = 'Kaxararí', [Definition] = NULL, [SortOrder] = 3014.00 WHERE [Code] = 'ktx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbb', 'Kaxuiâna', NULL, 300.30) END +VALUES ('kbb', 'Kaxuiâna', NULL, 3015.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaxuiâna', [Definition] = NULL, [SortOrder] = 300.30 WHERE [Code] = 'kbb' END +SET [Description] = 'Kaxuiâna', [Definition] = NULL, [SortOrder] = 3015.00 WHERE [Code] = 'kbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyz', 'Kayabí', NULL, 300.40) END +VALUES ('kyz', 'Kayabí', NULL, 3016.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayabí', [Definition] = NULL, [SortOrder] = 300.40 WHERE [Code] = 'kyz' END +SET [Description] = 'Kayabí', [Definition] = NULL, [SortOrder] = 3016.00 WHERE [Code] = 'kyz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyt', 'Kayagar', NULL, 300.50) END +VALUES ('kyt', 'Kayagar', NULL, 3017.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayagar', [Definition] = NULL, [SortOrder] = 300.50 WHERE [Code] = 'kyt' END +SET [Description] = 'Kayagar', [Definition] = NULL, [SortOrder] = 3017.00 WHERE [Code] = 'kyt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdu', 'Kayan', NULL, 300.60) END +VALUES ('pdu', 'Kayan', NULL, 3018.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayan', [Definition] = NULL, [SortOrder] = 300.60 WHERE [Code] = 'pdu' END +SET [Description] = 'Kayan', [Definition] = NULL, [SortOrder] = 3018.00 WHERE [Code] = 'pdu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xay', 'Kayan Mahakam', NULL, 300.70) END +VALUES ('xay', 'Kayan Mahakam', NULL, 3019.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayan Mahakam', [Definition] = NULL, [SortOrder] = 300.70 WHERE [Code] = 'xay' END +SET [Description] = 'Kayan Mahakam', [Definition] = NULL, [SortOrder] = 3019.00 WHERE [Code] = 'xay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkn', 'Kayan River Kayan', NULL, 300.80) END +VALUES ('xkn', 'Kayan River Kayan', NULL, 3020.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayan River Kayan', [Definition] = NULL, [SortOrder] = 300.80 WHERE [Code] = 'xkn' END +SET [Description] = 'Kayan River Kayan', [Definition] = NULL, [SortOrder] = 3020.00 WHERE [Code] = 'xkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txu', 'Kayapó', NULL, 300.90) END +VALUES ('txu', 'Kayapó', NULL, 3021.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayapó', [Definition] = NULL, [SortOrder] = 300.90 WHERE [Code] = 'txu' END +SET [Description] = 'Kayapó', [Definition] = NULL, [SortOrder] = 3021.00 WHERE [Code] = 'txu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gyd', 'Kayardild', NULL, 301.00) END +VALUES ('gyd', 'Kayardild', NULL, 3022.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayardild', [Definition] = NULL, [SortOrder] = 301.00 WHERE [Code] = 'gyd' END +SET [Description] = 'Kayardild', [Definition] = NULL, [SortOrder] = 3022.00 WHERE [Code] = 'gyd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvl', 'Kayaw', NULL, 301.10) END +VALUES ('kvl', 'Kayaw', NULL, 3023.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayaw', [Definition] = NULL, [SortOrder] = 301.10 WHERE [Code] = 'kvl' END +SET [Description] = 'Kayaw', [Definition] = NULL, [SortOrder] = 3023.00 WHERE [Code] = 'kvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzl', 'Kayeli', NULL, 301.20) END +VALUES ('kzl', 'Kayeli', NULL, 3024.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayeli', [Definition] = NULL, [SortOrder] = 301.20 WHERE [Code] = 'kzl' END +SET [Description] = 'Kayeli', [Definition] = NULL, [SortOrder] = 3024.00 WHERE [Code] = 'kzl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxy', 'Kayong', NULL, 301.30) END +VALUES ('kxy', 'Kayong', NULL, 3025.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayong', [Definition] = NULL, [SortOrder] = 301.30 WHERE [Code] = 'kxy' END +SET [Description] = 'Kayong', [Definition] = NULL, [SortOrder] = 3025.00 WHERE [Code] = 'kxy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyv', 'Kayort', NULL, 301.40) END +VALUES ('kyv', 'Kayort', NULL, 3026.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayort', [Definition] = NULL, [SortOrder] = 301.40 WHERE [Code] = 'kyv' END +SET [Description] = 'Kayort', [Definition] = NULL, [SortOrder] = 3026.00 WHERE [Code] = 'kyv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbb', 'Kaytetye', NULL, 301.50) END +VALUES ('gbb', 'Kaytetye', NULL, 3027.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kaytetye', [Definition] = NULL, [SortOrder] = 301.50 WHERE [Code] = 'gbb' END +SET [Description] = 'Kaytetye', [Definition] = NULL, [SortOrder] = 3027.00 WHERE [Code] = 'gbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzu', 'Kayupulau', NULL, 301.60) END +VALUES ('kzu', 'Kayupulau', NULL, 3028.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kayupulau', [Definition] = NULL, [SortOrder] = 301.60 WHERE [Code] = 'kzu' END +SET [Description] = 'Kayupulau', [Definition] = NULL, [SortOrder] = 3028.00 WHERE [Code] = 'kzu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kaz', 'Kazakh', NULL, 301.70) END +VALUES ('kaz', 'Kazakh', NULL, 3029.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kazakh', [Definition] = NULL, [SortOrder] = 301.70 WHERE [Code] = 'kaz' END +SET [Description] = 'Kazakh', [Definition] = NULL, [SortOrder] = 3029.00 WHERE [Code] = 'kaz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzk', 'Kazukuru', NULL, 301.80) END +VALUES ('kzk', 'Kazukuru', NULL, 3030.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kazukuru', [Definition] = NULL, [SortOrder] = 301.80 WHERE [Code] = 'kzk' END +SET [Description] = 'Kazukuru', [Definition] = NULL, [SortOrder] = 3030.00 WHERE [Code] = 'kzk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxk', 'Ke''o', NULL, 301.90) END +VALUES ('xxk', 'Ke''o', NULL, 3031.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ke''o', [Definition] = NULL, [SortOrder] = 301.90 WHERE [Code] = 'xxk' END +SET [Description] = 'Ke''o', [Definition] = NULL, [SortOrder] = 3031.00 WHERE [Code] = 'xxk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keh', 'Keak', NULL, 302.00) END +VALUES ('keh', 'Keak', NULL, 3032.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keak', [Definition] = NULL, [SortOrder] = 302.00 WHERE [Code] = 'keh' END +SET [Description] = 'Keak', [Definition] = NULL, [SortOrder] = 3032.00 WHERE [Code] = 'keh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khz', 'Keapara', NULL, 302.10) END +VALUES ('khz', 'Keapara', NULL, 3033.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keapara', [Definition] = NULL, [SortOrder] = 302.10 WHERE [Code] = 'khz' END +SET [Description] = 'Keapara', [Definition] = NULL, [SortOrder] = 3033.00 WHERE [Code] = 'khz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meo', 'Kedah Malay', NULL, 302.20) END +VALUES ('meo', 'Kedah Malay', NULL, 3034.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kedah Malay', [Definition] = NULL, [SortOrder] = 302.20 WHERE [Code] = 'meo' END +SET [Description] = 'Kedah Malay', [Definition] = NULL, [SortOrder] = 3034.00 WHERE [Code] = 'meo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksx', 'Kedang', NULL, 302.30) END +VALUES ('ksx', 'Kedang', NULL, 3035.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kedang', [Definition] = NULL, [SortOrder] = 302.30 WHERE [Code] = 'ksx' END +SET [Description] = 'Kedang', [Definition] = NULL, [SortOrder] = 3035.00 WHERE [Code] = 'ksx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdy', 'Keder', NULL, 302.40) END +VALUES ('kdy', 'Keder', NULL, 3036.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keder', [Definition] = NULL, [SortOrder] = 302.40 WHERE [Code] = 'kdy' END +SET [Description] = 'Keder', [Definition] = NULL, [SortOrder] = 3036.00 WHERE [Code] = 'kdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkr', 'Keerray-Woorroong', NULL, 302.50) END +VALUES ('wkr', 'Keerray-Woorroong', NULL, 3037.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keerray-Woorroong', [Definition] = NULL, [SortOrder] = 302.50 WHERE [Code] = 'wkr' END +SET [Description] = 'Keerray-Woorroong', [Definition] = NULL, [SortOrder] = 3037.00 WHERE [Code] = 'wkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khh', 'Kehu', NULL, 302.60) END +VALUES ('khh', 'Kehu', NULL, 3038.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kehu', [Definition] = NULL, [SortOrder] = 302.60 WHERE [Code] = 'khh' END +SET [Description] = 'Kehu', [Definition] = NULL, [SortOrder] = 3038.00 WHERE [Code] = 'khh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kei', 'Kei', NULL, 302.70) END +VALUES ('kei', 'Kei', NULL, 3039.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kei', [Definition] = NULL, [SortOrder] = 302.70 WHERE [Code] = 'kei' END +SET [Description] = 'Kei', [Definition] = NULL, [SortOrder] = 3039.00 WHERE [Code] = 'kei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kec', 'Keiga', NULL, 302.80) END +VALUES ('kec', 'Keiga', NULL, 3040.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keiga', [Definition] = NULL, [SortOrder] = 302.80 WHERE [Code] = 'kec' END +SET [Description] = 'Keiga', [Definition] = NULL, [SortOrder] = 3040.00 WHERE [Code] = 'kec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmh', 'Kein', NULL, 302.90) END +VALUES ('bmh', 'Kein', NULL, 3041.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kein', [Definition] = NULL, [SortOrder] = 302.90 WHERE [Code] = 'bmh' END +SET [Description] = 'Kein', [Definition] = NULL, [SortOrder] = 3041.00 WHERE [Code] = 'bmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eyo', 'Keiyo', NULL, 303.00) END +VALUES ('eyo', 'Keiyo', NULL, 3042.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keiyo', [Definition] = NULL, [SortOrder] = 303.00 WHERE [Code] = 'eyo' END +SET [Description] = 'Keiyo', [Definition] = NULL, [SortOrder] = 3042.00 WHERE [Code] = 'eyo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kek', 'Kekchí', NULL, 303.10) END +VALUES ('kek', 'Kekchí', NULL, 3043.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kekchí', [Definition] = NULL, [SortOrder] = 303.10 WHERE [Code] = 'kek' END +SET [Description] = 'Kekchí', [Definition] = NULL, [SortOrder] = 3043.00 WHERE [Code] = 'kek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kel', 'Kela (Democratic Republic of Congo)', NULL, 303.20) END +VALUES ('kel', 'Kela (Democratic Republic of Congo)', NULL, 3044.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kela (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 303.20 WHERE [Code] = 'kel' END +SET [Description] = 'Kela (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 3044.00 WHERE [Code] = 'kel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcl', 'Kela (Papua New Guinea)', NULL, 303.30) END +VALUES ('kcl', 'Kela (Papua New Guinea)', NULL, 3045.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kela (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 303.30 WHERE [Code] = 'kcl' END +SET [Description] = 'Kela (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3045.00 WHERE [Code] = 'kcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzi', 'Kelabit', NULL, 303.40) END +VALUES ('kzi', 'Kelabit', NULL, 3046.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kelabit', [Definition] = NULL, [SortOrder] = 303.40 WHERE [Code] = 'kzi' END +SET [Description] = 'Kelabit', [Definition] = NULL, [SortOrder] = 3046.00 WHERE [Code] = 'kzi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keb', 'Kélé', NULL, 303.50) END +VALUES ('keb', 'Kélé', NULL, 3047.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kélé', [Definition] = NULL, [SortOrder] = 303.50 WHERE [Code] = 'keb' END +SET [Description] = 'Kélé', [Definition] = NULL, [SortOrder] = 3047.00 WHERE [Code] = 'keb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khy', 'Kele (Democratic Republic of Congo)', NULL, 303.60) END +VALUES ('khy', 'Kele (Democratic Republic of Congo)', NULL, 3048.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kele (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 303.60 WHERE [Code] = 'khy' END +SET [Description] = 'Kele (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 3048.00 WHERE [Code] = 'khy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbc', 'Kele (Papua New Guinea)', NULL, 303.70) END +VALUES ('sbc', 'Kele (Papua New Guinea)', NULL, 3049.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kele (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 303.70 WHERE [Code] = 'sbc' END +SET [Description] = 'Kele (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3049.00 WHERE [Code] = 'sbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzx', 'Kelengaxo Bozo', NULL, 303.80) END +VALUES ('bzx', 'Kelengaxo Bozo', NULL, 3050.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kelengaxo Bozo', [Definition] = NULL, [SortOrder] = 303.80 WHERE [Code] = 'bzx' END +SET [Description] = 'Kelengaxo Bozo', [Definition] = NULL, [SortOrder] = 3050.00 WHERE [Code] = 'bzx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ify') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ify', 'Keley-I Kallahan', NULL, 303.90) END +VALUES ('ify', 'Keley-I Kallahan', NULL, 3051.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keley-I Kallahan', [Definition] = NULL, [SortOrder] = 303.90 WHERE [Code] = 'ify' END +SET [Description] = 'Keley-I Kallahan', [Definition] = NULL, [SortOrder] = 3051.00 WHERE [Code] = 'ify' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbo', 'Keliko', NULL, 304.00) END +VALUES ('kbo', 'Keliko', NULL, 3052.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keliko', [Definition] = NULL, [SortOrder] = 304.00 WHERE [Code] = 'kbo' END +SET [Description] = 'Keliko', [Definition] = NULL, [SortOrder] = 3052.00 WHERE [Code] = 'kbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xel', 'Kelo', NULL, 304.10) END +VALUES ('xel', 'Kelo', NULL, 3053.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kelo', [Definition] = NULL, [SortOrder] = 304.10 WHERE [Code] = 'xel' END +SET [Description] = 'Kelo', [Definition] = NULL, [SortOrder] = 3053.00 WHERE [Code] = 'xel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyo', 'Kelon', NULL, 304.20) END +VALUES ('kyo', 'Kelon', NULL, 3054.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kelon', [Definition] = NULL, [SortOrder] = 304.20 WHERE [Code] = 'kyo' END +SET [Description] = 'Kelon', [Definition] = NULL, [SortOrder] = 3054.00 WHERE [Code] = 'kyo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kem', 'Kemak', NULL, 304.30) END +VALUES ('kem', 'Kemak', NULL, 3055.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemak', [Definition] = NULL, [SortOrder] = 304.30 WHERE [Code] = 'kem' END +SET [Description] = 'Kemak', [Definition] = NULL, [SortOrder] = 3055.00 WHERE [Code] = 'kem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xem', 'Kembayan', NULL, 304.40) END +VALUES ('xem', 'Kembayan', NULL, 3056.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kembayan', [Definition] = NULL, [SortOrder] = 304.40 WHERE [Code] = 'xem' END +SET [Description] = 'Kembayan', [Definition] = NULL, [SortOrder] = 3056.00 WHERE [Code] = 'xem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzp', 'Kemberano', NULL, 304.50) END +VALUES ('bzp', 'Kemberano', NULL, 3057.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemberano', [Definition] = NULL, [SortOrder] = 304.50 WHERE [Code] = 'bzp' END +SET [Description] = 'Kemberano', [Definition] = NULL, [SortOrder] = 3057.00 WHERE [Code] = 'bzp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkw', 'Kembra', NULL, 304.60) END +VALUES ('xkw', 'Kembra', NULL, 3058.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kembra', [Definition] = NULL, [SortOrder] = 304.60 WHERE [Code] = 'xkw' END +SET [Description] = 'Kembra', [Definition] = NULL, [SortOrder] = 3058.00 WHERE [Code] = 'xkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmo', 'Kemedzung', NULL, 304.70) END +VALUES ('dmo', 'Kemedzung', NULL, 3059.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemedzung', [Definition] = NULL, [SortOrder] = 304.70 WHERE [Code] = 'dmo' END +SET [Description] = 'Kemedzung', [Definition] = NULL, [SortOrder] = 3059.00 WHERE [Code] = 'dmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjk', 'Kemi Sami', NULL, 304.80) END +VALUES ('sjk', 'Kemi Sami', NULL, 3060.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemi Sami', [Definition] = NULL, [SortOrder] = 304.80 WHERE [Code] = 'sjk' END +SET [Description] = 'Kemi Sami', [Definition] = NULL, [SortOrder] = 3060.00 WHERE [Code] = 'sjk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfj', 'Kemiehua', NULL, 304.90) END +VALUES ('kfj', 'Kemiehua', NULL, 3061.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemiehua', [Definition] = NULL, [SortOrder] = 304.90 WHERE [Code] = 'kfj' END +SET [Description] = 'Kemiehua', [Definition] = NULL, [SortOrder] = 3061.00 WHERE [Code] = 'kfj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmt', 'Kemtuik', NULL, 305.00) END +VALUES ('kmt', 'Kemtuik', NULL, 3062.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kemtuik', [Definition] = NULL, [SortOrder] = 305.00 WHERE [Code] = 'kmt' END +SET [Description] = 'Kemtuik', [Definition] = NULL, [SortOrder] = 3062.00 WHERE [Code] = 'kmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbn', 'Kenaboi', NULL, 305.10) END +VALUES ('xbn', 'Kenaboi', NULL, 3063.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenaboi', [Definition] = NULL, [SortOrder] = 305.10 WHERE [Code] = 'xbn' END +SET [Description] = 'Kenaboi', [Definition] = NULL, [SortOrder] = 3063.00 WHERE [Code] = 'xbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gat', 'Kenati', NULL, 305.20) END +VALUES ('gat', 'Kenati', NULL, 3064.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenati', [Definition] = NULL, [SortOrder] = 305.20 WHERE [Code] = 'gat' END +SET [Description] = 'Kenati', [Definition] = NULL, [SortOrder] = 3064.00 WHERE [Code] = 'gat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knx', 'Kendayan', NULL, 305.30) END +VALUES ('knx', 'Kendayan', NULL, 3065.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kendayan', [Definition] = NULL, [SortOrder] = 305.30 WHERE [Code] = 'knx' END +SET [Description] = 'Kendayan', [Definition] = NULL, [SortOrder] = 3065.00 WHERE [Code] = 'knx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klf', 'Kendeje', NULL, 305.40) END +VALUES ('klf', 'Kendeje', NULL, 3066.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kendeje', [Definition] = NULL, [SortOrder] = 305.40 WHERE [Code] = 'klf' END +SET [Description] = 'Kendeje', [Definition] = NULL, [SortOrder] = 3066.00 WHERE [Code] = 'klf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvm', 'Kendem', NULL, 305.50) END +VALUES ('kvm', 'Kendem', NULL, 3067.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kendem', [Definition] = NULL, [SortOrder] = 305.50 WHERE [Code] = 'kvm' END +SET [Description] = 'Kendem', [Definition] = NULL, [SortOrder] = 3067.00 WHERE [Code] = 'kvm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyq', 'Kenga', NULL, 305.60) END +VALUES ('kyq', 'Kenga', NULL, 3068.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenga', [Definition] = NULL, [SortOrder] = 305.60 WHERE [Code] = 'kyq' END +SET [Description] = 'Kenga', [Definition] = NULL, [SortOrder] = 3068.00 WHERE [Code] = 'kyq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxi', 'Keningau Murut', NULL, 305.70) END +VALUES ('kxi', 'Keningau Murut', NULL, 3069.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keningau Murut', [Definition] = NULL, [SortOrder] = 305.70 WHERE [Code] = 'kxi' END +SET [Description] = 'Keningau Murut', [Definition] = NULL, [SortOrder] = 3069.00 WHERE [Code] = 'kxi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knl', 'Keninjal', NULL, 305.80) END +VALUES ('knl', 'Keninjal', NULL, 3070.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keninjal', [Definition] = NULL, [SortOrder] = 305.80 WHERE [Code] = 'knl' END +SET [Description] = 'Keninjal', [Definition] = NULL, [SortOrder] = 3070.00 WHERE [Code] = 'knl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kns', 'Kensiu', NULL, 305.90) END +VALUES ('kns', 'Kensiu', NULL, 3071.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kensiu', [Definition] = NULL, [SortOrder] = 305.90 WHERE [Code] = 'kns' END +SET [Description] = 'Kensiu', [Definition] = NULL, [SortOrder] = 3071.00 WHERE [Code] = 'kns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndb', 'Kenswei Nsei', NULL, 306.00) END +VALUES ('ndb', 'Kenswei Nsei', NULL, 3072.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenswei Nsei', [Definition] = NULL, [SortOrder] = 306.00 WHERE [Code] = 'ndb' END +SET [Description] = 'Kenswei Nsei', [Definition] = NULL, [SortOrder] = 3072.00 WHERE [Code] = 'ndb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xki', 'Kenyan Sign Language', NULL, 306.10) END +VALUES ('xki', 'Kenyan Sign Language', NULL, 3073.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenyan Sign Language', [Definition] = NULL, [SortOrder] = 306.10 WHERE [Code] = 'xki' END +SET [Description] = 'Kenyan Sign Language', [Definition] = NULL, [SortOrder] = 3073.00 WHERE [Code] = 'xki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ken') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ken', 'Kenyang', NULL, 306.20) END +VALUES ('ken', 'Kenyang', NULL, 3074.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenyang', [Definition] = NULL, [SortOrder] = 306.20 WHERE [Code] = 'ken' END +SET [Description] = 'Kenyang', [Definition] = NULL, [SortOrder] = 3074.00 WHERE [Code] = 'ken' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lke', 'Kenyi', NULL, 306.30) END +VALUES ('lke', 'Kenyi', NULL, 3075.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenyi', [Definition] = NULL, [SortOrder] = 306.30 WHERE [Code] = 'lke' END +SET [Description] = 'Kenyi', [Definition] = NULL, [SortOrder] = 3075.00 WHERE [Code] = 'lke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnz', 'Kenzi', NULL, 306.40) END +VALUES ('xnz', 'Kenzi', NULL, 3076.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kenzi', [Definition] = NULL, [SortOrder] = 306.40 WHERE [Code] = 'xnz' END +SET [Description] = 'Kenzi', [Definition] = NULL, [SortOrder] = 3076.00 WHERE [Code] = 'xnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xeu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xeu', 'Keoru-Ahia', NULL, 306.50) END +VALUES ('xeu', 'Keoru-Ahia', NULL, 3077.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keoru-Ahia', [Definition] = NULL, [SortOrder] = 306.50 WHERE [Code] = 'xeu' END +SET [Description] = 'Keoru-Ahia', [Definition] = NULL, [SortOrder] = 3077.00 WHERE [Code] = 'xeu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpn', 'Kepkiriwát', NULL, 306.60) END +VALUES ('kpn', 'Kepkiriwát', NULL, 3078.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kepkiriwát', [Definition] = NULL, [SortOrder] = 306.60 WHERE [Code] = 'kpn' END +SET [Description] = 'Kepkiriwát', [Definition] = NULL, [SortOrder] = 3078.00 WHERE [Code] = 'kpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuk', 'Kepo''', NULL, 306.70) END +VALUES ('kuk', 'Kepo''', NULL, 3079.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kepo''', [Definition] = NULL, [SortOrder] = 306.70 WHERE [Code] = 'kuk' END +SET [Description] = 'Kepo''', [Definition] = NULL, [SortOrder] = 3079.00 WHERE [Code] = 'kuk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ker') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ker', 'Kera', NULL, 306.80) END +VALUES ('ker', 'Kera', NULL, 3080.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kera', [Definition] = NULL, [SortOrder] = 306.80 WHERE [Code] = 'ker' END +SET [Description] = 'Kera', [Definition] = NULL, [SortOrder] = 3080.00 WHERE [Code] = 'ker' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hhr', 'Kerak', NULL, 306.90) END +VALUES ('hhr', 'Kerak', NULL, 3081.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerak', [Definition] = NULL, [SortOrder] = 306.90 WHERE [Code] = 'hhr' END +SET [Description] = 'Kerak', [Definition] = NULL, [SortOrder] = 3081.00 WHERE [Code] = 'hhr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xke', 'Kereho', NULL, 307.00) END +VALUES ('xke', 'Kereho', NULL, 3082.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kereho', [Definition] = NULL, [SortOrder] = 307.00 WHERE [Code] = 'xke' END +SET [Description] = 'Kereho', [Definition] = NULL, [SortOrder] = 3082.00 WHERE [Code] = 'xke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krk', 'Kerek', NULL, 307.10) END +VALUES ('krk', 'Kerek', NULL, 3083.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerek', [Definition] = NULL, [SortOrder] = 307.10 WHERE [Code] = 'krk' END +SET [Description] = 'Kerek', [Definition] = NULL, [SortOrder] = 3083.00 WHERE [Code] = 'krk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ked') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ked', 'Kerewe', NULL, 307.20) END +VALUES ('ked', 'Kerewe', NULL, 3084.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerewe', [Definition] = NULL, [SortOrder] = 307.20 WHERE [Code] = 'ked' END +SET [Description] = 'Kerewe', [Definition] = NULL, [SortOrder] = 3084.00 WHERE [Code] = 'ked' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxz', 'Kerewo', NULL, 307.30) END +VALUES ('kxz', 'Kerewo', NULL, 3085.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerewo', [Definition] = NULL, [SortOrder] = 307.30 WHERE [Code] = 'kxz' END +SET [Description] = 'Kerewo', [Definition] = NULL, [SortOrder] = 3085.00 WHERE [Code] = 'kxz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvr', 'Kerinci', NULL, 307.40) END +VALUES ('kvr', 'Kerinci', NULL, 3086.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kerinci', [Definition] = NULL, [SortOrder] = 307.40 WHERE [Code] = 'kvr' END +SET [Description] = 'Kerinci', [Definition] = NULL, [SortOrder] = 3086.00 WHERE [Code] = 'kvr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xes', 'Kesawai', NULL, 307.50) END +VALUES ('xes', 'Kesawai', NULL, 3087.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kesawai', [Definition] = NULL, [SortOrder] = 307.50 WHERE [Code] = 'xes' END +SET [Description] = 'Kesawai', [Definition] = NULL, [SortOrder] = 3087.00 WHERE [Code] = 'xes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ket') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ket', 'Ket', NULL, 307.60) END +VALUES ('ket', 'Ket', NULL, 3088.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ket', [Definition] = NULL, [SortOrder] = 307.60 WHERE [Code] = 'ket' END +SET [Description] = 'Ket', [Definition] = NULL, [SortOrder] = 3088.00 WHERE [Code] = 'ket' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kae', 'Ketangalan', NULL, 307.70) END +VALUES ('kae', 'Ketangalan', NULL, 3089.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ketangalan', [Definition] = NULL, [SortOrder] = 307.70 WHERE [Code] = 'kae' END +SET [Description] = 'Ketangalan', [Definition] = NULL, [SortOrder] = 3089.00 WHERE [Code] = 'kae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcv', 'Kete', NULL, 307.80) END +VALUES ('kcv', 'Kete', NULL, 3090.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kete', [Definition] = NULL, [SortOrder] = 307.80 WHERE [Code] = 'kcv' END +SET [Description] = 'Kete', [Definition] = NULL, [SortOrder] = 3090.00 WHERE [Code] = 'kcv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xte', 'Ketengban', NULL, 307.90) END +VALUES ('xte', 'Ketengban', NULL, 3091.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ketengban', [Definition] = NULL, [SortOrder] = 307.90 WHERE [Code] = 'xte' END +SET [Description] = 'Ketengban', [Definition] = NULL, [SortOrder] = 3091.00 WHERE [Code] = 'xte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktt', 'Ketum', NULL, 308.00) END +VALUES ('ktt', 'Ketum', NULL, 3092.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ketum', [Definition] = NULL, [SortOrder] = 308.00 WHERE [Code] = 'ktt' END +SET [Description] = 'Ketum', [Definition] = NULL, [SortOrder] = 3092.00 WHERE [Code] = 'ktt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyg', 'Keyagana', NULL, 308.10) END +VALUES ('kyg', 'Keyagana', NULL, 3093.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Keyagana', [Definition] = NULL, [SortOrder] = 308.10 WHERE [Code] = 'kyg' END +SET [Description] = 'Keyagana', [Definition] = NULL, [SortOrder] = 3093.00 WHERE [Code] = 'kyg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkv', 'Kgalagadi', NULL, 308.20) END +VALUES ('xkv', 'Kgalagadi', NULL, 3094.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kgalagadi', [Definition] = NULL, [SortOrder] = 308.20 WHERE [Code] = 'xkv' END +SET [Description] = 'Kgalagadi', [Definition] = NULL, [SortOrder] = 3094.00 WHERE [Code] = 'xkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hkh', 'Khah', NULL, 308.30) END +VALUES ('hkh', 'Khah', NULL, 3095.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khah', [Definition] = NULL, [SortOrder] = 308.30 WHERE [Code] = 'hkh' END +SET [Description] = 'Khah', [Definition] = NULL, [SortOrder] = 3095.00 WHERE [Code] = 'hkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjh', 'Khakas', NULL, 308.40) END +VALUES ('kjh', 'Khakas', NULL, 3096.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khakas', [Definition] = NULL, [SortOrder] = 308.40 WHERE [Code] = 'kjh' END +SET [Description] = 'Khakas', [Definition] = NULL, [SortOrder] = 3096.00 WHERE [Code] = 'kjh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klj', 'Khalaj', NULL, 308.50) END +VALUES ('klj', 'Khalaj', NULL, 3097.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khalaj', [Definition] = NULL, [SortOrder] = 308.50 WHERE [Code] = 'klj' END +SET [Description] = 'Khalaj', [Definition] = NULL, [SortOrder] = 3097.00 WHERE [Code] = 'klj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klr', 'Khaling', NULL, 308.60) END +VALUES ('klr', 'Khaling', NULL, 3098.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khaling', [Definition] = NULL, [SortOrder] = 308.60 WHERE [Code] = 'klr' END +SET [Description] = 'Khaling', [Definition] = NULL, [SortOrder] = 3098.00 WHERE [Code] = 'klr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kbg', 'Khamba', NULL, 308.70) END +VALUES ('kbg', 'Khamba', NULL, 3099.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Khamba', [Definition] = NULL, [SortOrder] = 3099.00 WHERE [Code] = 'kbg' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('ykh', 'Khamnigan Mongo', NULL, 3100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khamba', [Definition] = NULL, [SortOrder] = 308.70 WHERE [Code] = 'kbg' END +SET [Description] = 'Khamnigan Mongo', [Definition] = NULL, [SortOrder] = 3100.00 WHERE [Code] = 'ykh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khg', 'Khams Tibetan', NULL, 308.80) END +VALUES ('khg', 'Khams Tibetan', NULL, 3101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khams Tibetan', [Definition] = NULL, [SortOrder] = 308.80 WHERE [Code] = 'khg' END +SET [Description] = 'Khams Tibetan', [Definition] = NULL, [SortOrder] = 3101.00 WHERE [Code] = 'khg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kht', 'Khamti', NULL, 308.90) END +VALUES ('kht', 'Khamti', NULL, 3102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khamti', [Definition] = NULL, [SortOrder] = 308.90 WHERE [Code] = 'kht' END +SET [Description] = 'Khamti', [Definition] = NULL, [SortOrder] = 3102.00 WHERE [Code] = 'kht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksu', 'Khamyang', NULL, 309.00) END +VALUES ('ksu', 'Khamyang', NULL, 3103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khamyang', [Definition] = NULL, [SortOrder] = 309.00 WHERE [Code] = 'ksu' END +SET [Description] = 'Khamyang', [Definition] = NULL, [SortOrder] = 3103.00 WHERE [Code] = 'ksu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogo', 'Khana', NULL, 309.10) END +VALUES ('ogo', 'Khana', NULL, 3104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khana', [Definition] = NULL, [SortOrder] = 309.10 WHERE [Code] = 'ogo' END +SET [Description] = 'Khana', [Definition] = NULL, [SortOrder] = 3104.00 WHERE [Code] = 'ogo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khn', 'Khandesi', NULL, 309.20) END +VALUES ('khn', 'Khandesi', NULL, 3105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khandesi', [Definition] = NULL, [SortOrder] = 309.20 WHERE [Code] = 'khn' END +SET [Description] = 'Khandesi', [Definition] = NULL, [SortOrder] = 3105.00 WHERE [Code] = 'khn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjm', 'Kháng', NULL, 309.30) END +VALUES ('kjm', 'Kháng', NULL, 3106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kháng', [Definition] = NULL, [SortOrder] = 309.30 WHERE [Code] = 'kjm' END +SET [Description] = 'Kháng', [Definition] = NULL, [SortOrder] = 3106.00 WHERE [Code] = 'kjm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kca', 'Khanty', NULL, 309.40) END +VALUES ('kca', 'Khanty', NULL, 3107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khanty', [Definition] = NULL, [SortOrder] = 309.40 WHERE [Code] = 'kca' END +SET [Description] = 'Khanty', [Definition] = NULL, [SortOrder] = 3107.00 WHERE [Code] = 'kca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xao', 'Khao', NULL, 309.50) END +VALUES ('xao', 'Khao', NULL, 3108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khao', [Definition] = NULL, [SortOrder] = 309.50 WHERE [Code] = 'xao' END +SET [Description] = 'Khao', [Definition] = NULL, [SortOrder] = 3108.00 WHERE [Code] = 'xao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfw', 'Kharam Naga', NULL, 309.60) END +VALUES ('kfw', 'Kharam Naga', NULL, 3109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kharam Naga', [Definition] = NULL, [SortOrder] = 309.60 WHERE [Code] = 'kfw' END +SET [Description] = 'Kharam Naga', [Definition] = NULL, [SortOrder] = 3109.00 WHERE [Code] = 'kfw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khr', 'Kharia', NULL, 309.70) END +VALUES ('khr', 'Kharia', NULL, 3110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kharia', [Definition] = NULL, [SortOrder] = 309.70 WHERE [Code] = 'khr' END +SET [Description] = 'Kharia', [Definition] = NULL, [SortOrder] = 3110.00 WHERE [Code] = 'khr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksy', 'Kharia Thar', NULL, 309.80) END +VALUES ('ksy', 'Kharia Thar', NULL, 3111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kharia Thar', [Definition] = NULL, [SortOrder] = 309.80 WHERE [Code] = 'ksy' END +SET [Description] = 'Kharia Thar', [Definition] = NULL, [SortOrder] = 3111.00 WHERE [Code] = 'ksy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kha', 'Khasi', NULL, 309.90) END +VALUES ('kha', 'Khasi', NULL, 3112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khasi', [Definition] = NULL, [SortOrder] = 309.90 WHERE [Code] = 'kha' END +SET [Description] = 'Khasi', [Definition] = NULL, [SortOrder] = 3112.00 WHERE [Code] = 'kha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lko', 'Khayo', NULL, 310.00) END +VALUES ('lko', 'Khayo', NULL, 3113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khayo', [Definition] = NULL, [SortOrder] = 310.00 WHERE [Code] = 'lko' END +SET [Description] = 'Khayo', [Definition] = NULL, [SortOrder] = 3113.00 WHERE [Code] = 'lko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkz', 'Khazar', NULL, 310.10) END +VALUES ('zkz', 'Khazar', NULL, 3114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khazar', [Definition] = NULL, [SortOrder] = 310.10 WHERE [Code] = 'zkz' END +SET [Description] = 'Khazar', [Definition] = NULL, [SortOrder] = 3114.00 WHERE [Code] = 'zkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqg', 'Khe', NULL, 310.20) END +VALUES ('kqg', 'Khe', NULL, 3115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khe', [Definition] = NULL, [SortOrder] = 310.20 WHERE [Code] = 'kqg' END +SET [Description] = 'Khe', [Definition] = NULL, [SortOrder] = 3115.00 WHERE [Code] = 'kqg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlx', 'Khehek', NULL, 310.30) END +VALUES ('tlx', 'Khehek', NULL, 3116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khehek', [Definition] = NULL, [SortOrder] = 310.30 WHERE [Code] = 'tlx' END +SET [Description] = 'Khehek', [Definition] = NULL, [SortOrder] = 3116.00 WHERE [Code] = 'tlx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkf', 'Khengkha', NULL, 310.40) END +VALUES ('xkf', 'Khengkha', NULL, 3117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khengkha', [Definition] = NULL, [SortOrder] = 310.40 WHERE [Code] = 'xkf' END +SET [Description] = 'Khengkha', [Definition] = NULL, [SortOrder] = 3117.00 WHERE [Code] = 'xkf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhe', 'Khetrani', NULL, 310.50) END +VALUES ('xhe', 'Khetrani', NULL, 3118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khetrani', [Definition] = NULL, [SortOrder] = 310.50 WHERE [Code] = 'xhe' END +SET [Description] = 'Khetrani', [Definition] = NULL, [SortOrder] = 3118.00 WHERE [Code] = 'xhe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkh', 'Khezha Naga', NULL, 310.60) END +VALUES ('nkh', 'Khezha Naga', NULL, 3119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khezha Naga', [Definition] = NULL, [SortOrder] = 310.60 WHERE [Code] = 'nkh' END +SET [Description] = 'Khezha Naga', [Definition] = NULL, [SortOrder] = 3119.00 WHERE [Code] = 'nkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kix', 'Khiamniungan Naga', NULL, 310.70) END +VALUES ('kix', 'Khiamniungan Naga', NULL, 3120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khiamniungan Naga', [Definition] = NULL, [SortOrder] = 310.70 WHERE [Code] = 'kix' END +SET [Description] = 'Khiamniungan Naga', [Definition] = NULL, [SortOrder] = 3120.00 WHERE [Code] = 'kix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjj', 'Khinalugh', NULL, 310.80) END +VALUES ('kjj', 'Khinalugh', NULL, 3121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khinalugh', [Definition] = NULL, [SortOrder] = 310.80 WHERE [Code] = 'kjj' END +SET [Description] = 'Khinalugh', [Definition] = NULL, [SortOrder] = 3121.00 WHERE [Code] = 'kjj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwx', 'Khirwar', NULL, 310.90) END +VALUES ('kwx', 'Khirwar', NULL, 3122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khirwar', [Definition] = NULL, [SortOrder] = 310.90 WHERE [Code] = 'kwx' END +SET [Description] = 'Khirwar', [Definition] = NULL, [SortOrder] = 3122.00 WHERE [Code] = 'kwx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqm', 'Khisa', NULL, 311.00) END +VALUES ('kqm', 'Khisa', NULL, 3123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khisa', [Definition] = NULL, [SortOrder] = 311.00 WHERE [Code] = 'kqm' END +SET [Description] = 'Khisa', [Definition] = NULL, [SortOrder] = 3123.00 WHERE [Code] = 'kqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykl', 'Khlula', NULL, 311.10) END +VALUES ('ykl', 'Khlula', NULL, 3124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khlula', [Definition] = NULL, [SortOrder] = 311.10 WHERE [Code] = 'ykl' END +SET [Description] = 'Khlula', [Definition] = NULL, [SortOrder] = 3124.00 WHERE [Code] = 'ykl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khm', 'Khmer', NULL, 311.20) END +VALUES ('khm', 'Khmer', NULL, 3125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khmer', [Definition] = NULL, [SortOrder] = 311.20 WHERE [Code] = 'khm' END +SET [Description] = 'Khmer', [Definition] = NULL, [SortOrder] = 3125.00 WHERE [Code] = 'khm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjg', 'Khmu', NULL, 311.30) END +VALUES ('kjg', 'Khmu', NULL, 3126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khmu', [Definition] = NULL, [SortOrder] = 311.30 WHERE [Code] = 'kjg' END +SET [Description] = 'Khmu', [Definition] = NULL, [SortOrder] = 3126.00 WHERE [Code] = 'kjg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkc', 'Kho''ini', NULL, 311.40) END +VALUES ('xkc', 'Kho''ini', NULL, 3127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kho''ini', [Definition] = NULL, [SortOrder] = 311.40 WHERE [Code] = 'xkc' END +SET [Description] = 'Kho''ini', [Definition] = NULL, [SortOrder] = 3127.00 WHERE [Code] = 'xkc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naq', 'Khoekhoe', NULL, 311.50) END +VALUES ('naq', 'Khoekhoe', NULL, 3128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khoekhoe', [Definition] = NULL, [SortOrder] = 311.50 WHERE [Code] = 'naq' END +SET [Description] = 'Khoekhoe', [Definition] = NULL, [SortOrder] = 3128.00 WHERE [Code] = 'naq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkb', 'Khoibu Naga', NULL, 311.60) END +VALUES ('nkb', 'Khoibu Naga', NULL, 3129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khoibu Naga', [Definition] = NULL, [SortOrder] = 311.60 WHERE [Code] = 'nkb' END +SET [Description] = 'Khoibu Naga', [Definition] = NULL, [SortOrder] = 3129.00 WHERE [Code] = 'nkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktc', 'Kholok', NULL, 311.70) END +VALUES ('ktc', 'Kholok', NULL, 3130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kholok', [Definition] = NULL, [SortOrder] = 311.70 WHERE [Code] = 'ktc' END +SET [Description] = 'Kholok', [Definition] = NULL, [SortOrder] = 3130.00 WHERE [Code] = 'ktc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmz', 'Khorasani Turkish', NULL, 311.80) END +VALUES ('kmz', 'Khorasani Turkish', NULL, 3131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khorasani Turkish', [Definition] = NULL, [SortOrder] = 311.80 WHERE [Code] = 'kmz' END +SET [Description] = 'Khorasani Turkish', [Definition] = NULL, [SortOrder] = 3131.00 WHERE [Code] = 'kmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkh', 'Khorezmian', NULL, 311.90) END +VALUES ('zkh', 'Khorezmian', NULL, 3132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khorezmian', [Definition] = NULL, [SortOrder] = 311.90 WHERE [Code] = 'zkh' END +SET [Description] = 'Khorezmian', [Definition] = NULL, [SortOrder] = 3132.00 WHERE [Code] = 'zkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kho', 'Khotanese', NULL, 312.00) END +VALUES ('kho', 'Khotanese', NULL, 3133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khotanese', [Definition] = NULL, [SortOrder] = 312.00 WHERE [Code] = 'kho' END +SET [Description] = 'Khotanese', [Definition] = NULL, [SortOrder] = 3133.00 WHERE [Code] = 'kho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khw', 'Khowar', NULL, 312.10) END +VALUES ('khw', 'Khowar', NULL, 3134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khowar', [Definition] = NULL, [SortOrder] = 312.10 WHERE [Code] = 'khw' END +SET [Description] = 'Khowar', [Definition] = NULL, [SortOrder] = 3134.00 WHERE [Code] = 'khw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhv', 'Khua', NULL, 312.20) END +VALUES ('xhv', 'Khua', NULL, 3135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khua', [Definition] = NULL, [SortOrder] = 312.20 WHERE [Code] = 'xhv' END +SET [Description] = 'Khua', [Definition] = NULL, [SortOrder] = 3135.00 WHERE [Code] = 'xhv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khf', 'Khuen', NULL, 312.30) END +VALUES ('khf', 'Khuen', NULL, 3136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khuen', [Definition] = NULL, [SortOrder] = 312.30 WHERE [Code] = 'khf' END +SET [Description] = 'Khuen', [Definition] = NULL, [SortOrder] = 3136.00 WHERE [Code] = 'khf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnk', 'Khumi Chin', NULL, 312.40) END +VALUES ('cnk', 'Khumi Chin', NULL, 3137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khumi Chin', [Definition] = NULL, [SortOrder] = 312.40 WHERE [Code] = 'cnk' END +SET [Description] = 'Khumi Chin', [Definition] = NULL, [SortOrder] = 3137.00 WHERE [Code] = 'cnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkh', 'Khün', NULL, 312.50) END +VALUES ('kkh', 'Khün', NULL, 3138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khün', [Definition] = NULL, [SortOrder] = 312.50 WHERE [Code] = 'kkh' END +SET [Description] = 'Khün', [Definition] = NULL, [SortOrder] = 3138.00 WHERE [Code] = 'kkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfm', 'Khunsari', NULL, 312.60) END +VALUES ('kfm', 'Khunsari', NULL, 3139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khunsari', [Definition] = NULL, [SortOrder] = 312.60 WHERE [Code] = 'kfm' END +SET [Description] = 'Khunsari', [Definition] = NULL, [SortOrder] = 3139.00 WHERE [Code] = 'kfm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khv', 'Khvarshi', NULL, 312.70) END +VALUES ('khv', 'Khvarshi', NULL, 3140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Khvarshi', [Definition] = NULL, [SortOrder] = 312.70 WHERE [Code] = 'khv' END +SET [Description] = 'Khvarshi', [Definition] = NULL, [SortOrder] = 3140.00 WHERE [Code] = 'khv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blv', 'Kibala', NULL, 312.80) END +VALUES ('blv', 'Kibala', NULL, 3141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kibala', [Definition] = NULL, [SortOrder] = 312.80 WHERE [Code] = 'blv' END +SET [Description] = 'Kibala', [Definition] = NULL, [SortOrder] = 3141.00 WHERE [Code] = 'blv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kie', 'Kibet', NULL, 312.90) END +VALUES ('kie', 'Kibet', NULL, 3142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kibet', [Definition] = NULL, [SortOrder] = 312.90 WHERE [Code] = 'kie' END +SET [Description] = 'Kibet', [Definition] = NULL, [SortOrder] = 3142.00 WHERE [Code] = 'kie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prm', 'Kibiri', NULL, 313.00) END +VALUES ('prm', 'Kibiri', NULL, 3143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kibiri', [Definition] = NULL, [SortOrder] = 313.00 WHERE [Code] = 'prm' END +SET [Description] = 'Kibiri', [Definition] = NULL, [SortOrder] = 3143.00 WHERE [Code] = 'prm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kic', 'Kickapoo', NULL, 313.10) END +VALUES ('kic', 'Kickapoo', NULL, 3144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kickapoo', [Definition] = NULL, [SortOrder] = 313.10 WHERE [Code] = 'kic' END +SET [Description] = 'Kickapoo', [Definition] = NULL, [SortOrder] = 3144.00 WHERE [Code] = 'kic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gia', 'Kija', NULL, 313.20) END +VALUES ('gia', 'Kija', NULL, 3145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kija', [Definition] = NULL, [SortOrder] = 313.20 WHERE [Code] = 'gia' END +SET [Description] = 'Kija', [Definition] = NULL, [SortOrder] = 3145.00 WHERE [Code] = 'gia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzg', 'Kikai', NULL, 313.30) END +VALUES ('kzg', 'Kikai', NULL, 3146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kikai', [Definition] = NULL, [SortOrder] = 313.30 WHERE [Code] = 'kzg' END +SET [Description] = 'Kikai', [Definition] = NULL, [SortOrder] = 3146.00 WHERE [Code] = 'kzg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kik', 'Kikuyu', NULL, 313.40) END +VALUES ('kik', 'Kikuyu', NULL, 3147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kikuyu', [Definition] = NULL, [SortOrder] = 313.40 WHERE [Code] = 'kik' END +SET [Description] = 'Kikuyu', [Definition] = NULL, [SortOrder] = 3147.00 WHERE [Code] = 'kik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjd', 'Kildin Sami', NULL, 313.50) END +VALUES ('sjd', 'Kildin Sami', NULL, 3148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kildin Sami', [Definition] = NULL, [SortOrder] = 313.50 WHERE [Code] = 'sjd' END +SET [Description] = 'Kildin Sami', [Definition] = NULL, [SortOrder] = 3148.00 WHERE [Code] = 'sjd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kij', 'Kilivila', NULL, 313.60) END +VALUES ('kij', 'Kilivila', NULL, 3149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kilivila', [Definition] = NULL, [SortOrder] = 313.60 WHERE [Code] = 'kij' END +SET [Description] = 'Kilivila', [Definition] = NULL, [SortOrder] = 3149.00 WHERE [Code] = 'kij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klb', 'Kiliwa', NULL, 313.70) END +VALUES ('klb', 'Kiliwa', NULL, 3150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiliwa', [Definition] = NULL, [SortOrder] = 313.70 WHERE [Code] = 'klb' END +SET [Description] = 'Kiliwa', [Definition] = NULL, [SortOrder] = 3150.00 WHERE [Code] = 'klb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kih', 'Kilmeri', NULL, 313.80) END +VALUES ('kih', 'Kilmeri', NULL, 3151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kilmeri', [Definition] = NULL, [SortOrder] = 313.80 WHERE [Code] = 'kih' END +SET [Description] = 'Kilmeri', [Definition] = NULL, [SortOrder] = 3151.00 WHERE [Code] = 'kih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kia', 'Kim', NULL, 313.90) END +VALUES ('kia', 'Kim', NULL, 3152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kim', [Definition] = NULL, [SortOrder] = 313.90 WHERE [Code] = 'kia' END +SET [Description] = 'Kim', [Definition] = NULL, [SortOrder] = 3152.00 WHERE [Code] = 'kia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mji', 'Kim Mun', NULL, 314.00) END +VALUES ('mji', 'Kim Mun', NULL, 3153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kim Mun', [Definition] = NULL, [SortOrder] = 314.00 WHERE [Code] = 'mji' END +SET [Description] = 'Kim Mun', [Definition] = NULL, [SortOrder] = 3153.00 WHERE [Code] = 'mji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kig', 'Kimaama', NULL, 314.10) END +VALUES ('kig', 'Kimaama', NULL, 3154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimaama', [Definition] = NULL, [SortOrder] = 314.10 WHERE [Code] = 'kig' END +SET [Description] = 'Kimaama', [Definition] = NULL, [SortOrder] = 3154.00 WHERE [Code] = 'kig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqr', 'Kimaragang', NULL, 314.20) END +VALUES ('kqr', 'Kimaragang', NULL, 3155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimaragang', [Definition] = NULL, [SortOrder] = 314.20 WHERE [Code] = 'kqr' END +SET [Description] = 'Kimaragang', [Definition] = NULL, [SortOrder] = 3155.00 WHERE [Code] = 'kqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiv', 'Kimbu', NULL, 314.30) END +VALUES ('kiv', 'Kimbu', NULL, 3156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimbu', [Definition] = NULL, [SortOrder] = 314.30 WHERE [Code] = 'kiv' END +SET [Description] = 'Kimbu', [Definition] = NULL, [SortOrder] = 3156.00 WHERE [Code] = 'kiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmb', 'Kimbundu', NULL, 314.40) END +VALUES ('kmb', 'Kimbundu', NULL, 3157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimbundu', [Definition] = NULL, [SortOrder] = 314.40 WHERE [Code] = 'kmb' END +SET [Description] = 'Kimbundu', [Definition] = NULL, [SortOrder] = 3157.00 WHERE [Code] = 'kmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbt', 'Kimki', NULL, 314.50) END +VALUES ('sbt', 'Kimki', NULL, 3158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimki', [Definition] = NULL, [SortOrder] = 314.50 WHERE [Code] = 'sbt' END +SET [Description] = 'Kimki', [Definition] = NULL, [SortOrder] = 3158.00 WHERE [Code] = 'sbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqp', 'Kimré', NULL, 314.60) END +VALUES ('kqp', 'Kimré', NULL, 3159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kimré', [Definition] = NULL, [SortOrder] = 314.60 WHERE [Code] = 'kqp' END +SET [Description] = 'Kimré', [Definition] = NULL, [SortOrder] = 3159.00 WHERE [Code] = 'kqp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbw', 'Kinabalian', NULL, 314.70) END +VALUES ('cbw', 'Kinabalian', NULL, 3160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinabalian', [Definition] = NULL, [SortOrder] = 314.70 WHERE [Code] = 'cbw' END +SET [Description] = 'Kinabalian', [Definition] = NULL, [SortOrder] = 3160.00 WHERE [Code] = 'cbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kco', 'Kinalakna', NULL, 314.80) END +VALUES ('kco', 'Kinalakna', NULL, 3161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinalakna', [Definition] = NULL, [SortOrder] = 314.80 WHERE [Code] = 'kco' END +SET [Description] = 'Kinalakna', [Definition] = NULL, [SortOrder] = 3161.00 WHERE [Code] = 'kco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkx', 'Kinamiging Manobo', NULL, 314.90) END +VALUES ('mkx', 'Kinamiging Manobo', NULL, 3162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinamiging Manobo', [Definition] = NULL, [SortOrder] = 314.90 WHERE [Code] = 'mkx' END +SET [Description] = 'Kinamiging Manobo', [Definition] = NULL, [SortOrder] = 3162.00 WHERE [Code] = 'mkx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krj', 'Kinaray-A', NULL, 315.00) END +VALUES ('krj', 'Kinaray-A', NULL, 3163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinaray-A', [Definition] = NULL, [SortOrder] = 315.00 WHERE [Code] = 'krj' END +SET [Description] = 'Kinaray-A', [Definition] = NULL, [SortOrder] = 3163.00 WHERE [Code] = 'krj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zga', 'Kinga', NULL, 315.10) END +VALUES ('zga', 'Kinga', NULL, 3164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinga', [Definition] = NULL, [SortOrder] = 315.10 WHERE [Code] = 'zga' END +SET [Description] = 'Kinga', [Definition] = NULL, [SortOrder] = 3164.00 WHERE [Code] = 'zga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfk', 'Kinnauri', NULL, 315.20) END +VALUES ('kfk', 'Kinnauri', NULL, 3165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinnauri', [Definition] = NULL, [SortOrder] = 315.20 WHERE [Code] = 'kfk' END +SET [Description] = 'Kinnauri', [Definition] = NULL, [SortOrder] = 3165.00 WHERE [Code] = 'kfk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knq', 'Kintaq', NULL, 315.30) END +VALUES ('knq', 'Kintaq', NULL, 3166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kintaq', [Definition] = NULL, [SortOrder] = 315.30 WHERE [Code] = 'knq' END +SET [Description] = 'Kintaq', [Definition] = NULL, [SortOrder] = 3166.00 WHERE [Code] = 'knq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkd', 'Kinuku', NULL, 315.40) END +VALUES ('kkd', 'Kinuku', NULL, 3167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinuku', [Definition] = NULL, [SortOrder] = 315.40 WHERE [Code] = 'kkd' END +SET [Description] = 'Kinuku', [Definition] = NULL, [SortOrder] = 3167.00 WHERE [Code] = 'kkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kin', 'Kinyarwanda', NULL, 315.50) END +VALUES ('kin', 'Kinyarwanda', NULL, 3168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kinyarwanda', [Definition] = NULL, [SortOrder] = 315.50 WHERE [Code] = 'kin' END +SET [Description] = 'Kinyarwanda', [Definition] = NULL, [SortOrder] = 3168.00 WHERE [Code] = 'kin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ues') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ues', 'Kioko', NULL, 315.60) END +VALUES ('ues', 'Kioko', NULL, 3169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kioko', [Definition] = NULL, [SortOrder] = 315.60 WHERE [Code] = 'ues' END +SET [Description] = 'Kioko', [Definition] = NULL, [SortOrder] = 3169.00 WHERE [Code] = 'ues' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkm', 'Kiong', NULL, 315.70) END +VALUES ('kkm', 'Kiong', NULL, 3170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiong', [Definition] = NULL, [SortOrder] = 315.70 WHERE [Code] = 'kkm' END +SET [Description] = 'Kiong', [Definition] = NULL, [SortOrder] = 3170.00 WHERE [Code] = 'kkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xko', 'Kiorr', NULL, 315.80) END +VALUES ('xko', 'Kiorr', NULL, 3171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiorr', [Definition] = NULL, [SortOrder] = 315.80 WHERE [Code] = 'xko' END +SET [Description] = 'Kiorr', [Definition] = NULL, [SortOrder] = 3171.00 WHERE [Code] = 'xko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kio', 'Kiowa', NULL, 315.90) END +VALUES ('kio', 'Kiowa', NULL, 3172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiowa', [Definition] = NULL, [SortOrder] = 315.90 WHERE [Code] = 'kio' END +SET [Description] = 'Kiowa', [Definition] = NULL, [SortOrder] = 3172.00 WHERE [Code] = 'kio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apk', 'Kiowa Apache', NULL, 316.00) END +VALUES ('apk', 'Kiowa Apache', NULL, 3173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiowa Apache', [Definition] = NULL, [SortOrder] = 316.00 WHERE [Code] = 'apk' END +SET [Description] = 'Kiowa Apache', [Definition] = NULL, [SortOrder] = 3173.00 WHERE [Code] = 'apk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgc', 'Kipsigis', NULL, 316.10) END +VALUES ('sgc', 'Kipsigis', NULL, 3174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kipsigis', [Definition] = NULL, [SortOrder] = 316.10 WHERE [Code] = 'sgc' END +SET [Description] = 'Kipsigis', [Definition] = NULL, [SortOrder] = 3174.00 WHERE [Code] = 'sgc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyi', 'Kiput', NULL, 316.20) END +VALUES ('kyi', 'Kiput', NULL, 3175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiput', [Definition] = NULL, [SortOrder] = 316.20 WHERE [Code] = 'kyi' END +SET [Description] = 'Kiput', [Definition] = NULL, [SortOrder] = 3175.00 WHERE [Code] = 'kyi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkr', 'Kir-Balar', NULL, 316.30) END +VALUES ('kkr', 'Kir-Balar', NULL, 3176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kir-Balar', [Definition] = NULL, [SortOrder] = 316.30 WHERE [Code] = 'kkr' END +SET [Description] = 'Kir-Balar', [Definition] = NULL, [SortOrder] = 3176.00 WHERE [Code] = 'kkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'geb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('geb', 'Kire', NULL, 316.40) END +VALUES ('geb', 'Kire', NULL, 3177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kire', [Definition] = NULL, [SortOrder] = 316.40 WHERE [Code] = 'geb' END +SET [Description] = 'Kire', [Definition] = NULL, [SortOrder] = 3177.00 WHERE [Code] = 'geb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kir', 'Kirghiz', NULL, 316.50) END +VALUES ('kir', 'Kirghiz', NULL, 3178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirghiz', [Definition] = NULL, [SortOrder] = 316.50 WHERE [Code] = 'kir' END +SET [Description] = 'Kirghiz', [Definition] = NULL, [SortOrder] = 3178.00 WHERE [Code] = 'kir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okr', 'Kirike', NULL, 316.60) END +VALUES ('okr', 'Kirike', NULL, 3179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirike', [Definition] = NULL, [SortOrder] = 316.60 WHERE [Code] = 'okr' END +SET [Description] = 'Kirike', [Definition] = NULL, [SortOrder] = 3179.00 WHERE [Code] = 'okr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiy', 'Kirikiri', NULL, 316.70) END +VALUES ('kiy', 'Kirikiri', NULL, 3180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirikiri', [Definition] = NULL, [SortOrder] = 316.70 WHERE [Code] = 'kiy' END +SET [Description] = 'Kirikiri', [Definition] = NULL, [SortOrder] = 3180.00 WHERE [Code] = 'kiy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiu', 'Kirmanjki (individual language)', NULL, 316.80) END +VALUES ('kiu', 'Kirmanjki (individual language)', NULL, 3181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirmanjki (individual language)', [Definition] = NULL, [SortOrder] = 316.80 WHERE [Code] = 'kiu' END +SET [Description] = 'Kirmanjki (individual language)', [Definition] = NULL, [SortOrder] = 3181.00 WHERE [Code] = 'kiu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fkk', 'Kirya-Konzel', NULL, 316.90) END +VALUES ('fkk', 'Kirya-Konzel', NULL, 3182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kirya-Konzel', [Definition] = NULL, [SortOrder] = 316.90 WHERE [Code] = 'fkk' END +SET [Description] = 'Kirya-Konzel', [Definition] = NULL, [SortOrder] = 3182.00 WHERE [Code] = 'fkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kis', 'Kis', NULL, 317.00) END +VALUES ('kis', 'Kis', NULL, 3183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kis', [Definition] = NULL, [SortOrder] = 317.00 WHERE [Code] = 'kis' END +SET [Description] = 'Kis', [Definition] = NULL, [SortOrder] = 3183.00 WHERE [Code] = 'kis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lks', 'Kisa', NULL, 317.10) END +VALUES ('lks', 'Kisa', NULL, 3184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisa', [Definition] = NULL, [SortOrder] = 317.10 WHERE [Code] = 'lks' END +SET [Description] = 'Kisa', [Definition] = NULL, [SortOrder] = 3184.00 WHERE [Code] = 'lks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xis', 'Kisan', NULL, 317.20) END +VALUES ('xis', 'Kisan', NULL, 3185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisan', [Definition] = NULL, [SortOrder] = 317.20 WHERE [Code] = 'xis' END +SET [Description] = 'Kisan', [Definition] = NULL, [SortOrder] = 3185.00 WHERE [Code] = 'xis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqh', 'Kisankasa', NULL, 317.30) END +VALUES ('kqh', 'Kisankasa', NULL, 3186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisankasa', [Definition] = NULL, [SortOrder] = 317.30 WHERE [Code] = 'kqh' END +SET [Description] = 'Kisankasa', [Definition] = NULL, [SortOrder] = 3186.00 WHERE [Code] = 'kqh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kje', 'Kisar', NULL, 317.40) END +VALUES ('kje', 'Kisar', NULL, 3187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisar', [Definition] = NULL, [SortOrder] = 317.40 WHERE [Code] = 'kje' END +SET [Description] = 'Kisar', [Definition] = NULL, [SortOrder] = 3187.00 WHERE [Code] = 'kje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiz', 'Kisi', NULL, 317.50) END +VALUES ('kiz', 'Kisi', NULL, 3188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kisi', [Definition] = NULL, [SortOrder] = 317.50 WHERE [Code] = 'kiz' END +SET [Description] = 'Kisi', [Definition] = NULL, [SortOrder] = 3188.00 WHERE [Code] = 'kiz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gru', 'Kistane', NULL, 317.60) END +VALUES ('gru', 'Kistane', NULL, 3189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kistane', [Definition] = NULL, [SortOrder] = 317.60 WHERE [Code] = 'gru' END +SET [Description] = 'Kistane', [Definition] = NULL, [SortOrder] = 3189.00 WHERE [Code] = 'gru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwk', 'Kita Maninkakan', NULL, 317.70) END +VALUES ('mwk', 'Kita Maninkakan', NULL, 3190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kita Maninkakan', [Definition] = NULL, [SortOrder] = 317.70 WHERE [Code] = 'mwk' END +SET [Description] = 'Kita Maninkakan', [Definition] = NULL, [SortOrder] = 3190.00 WHERE [Code] = 'mwk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkt', 'Kitan', NULL, 317.80) END +VALUES ('zkt', 'Kitan', NULL, 3191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kitan', [Definition] = NULL, [SortOrder] = 317.80 WHERE [Code] = 'zkt' END +SET [Description] = 'Kitan', [Definition] = NULL, [SortOrder] = 3191.00 WHERE [Code] = 'zkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kii', 'Kitsai', NULL, 317.90) END +VALUES ('kii', 'Kitsai', NULL, 3192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kitsai', [Definition] = NULL, [SortOrder] = 317.90 WHERE [Code] = 'kii' END +SET [Description] = 'Kitsai', [Definition] = NULL, [SortOrder] = 3192.00 WHERE [Code] = 'kii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkw', 'Kituba (Congo)', NULL, 318.00) END +VALUES ('mkw', 'Kituba (Congo)', NULL, 3193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kituba (Congo)', [Definition] = NULL, [SortOrder] = 318.00 WHERE [Code] = 'mkw' END +SET [Description] = 'Kituba (Congo)', [Definition] = NULL, [SortOrder] = 3193.00 WHERE [Code] = 'mkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktu', 'Kituba (Democratic Republic of Congo)', NULL, 318.10) END +VALUES ('ktu', 'Kituba (Democratic Republic of Congo)', NULL, 3194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kituba (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 318.10 WHERE [Code] = 'ktu' END +SET [Description] = 'Kituba (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 3194.00 WHERE [Code] = 'ktu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wei', 'Kiunum', NULL, 318.20) END +VALUES ('wei', 'Kiunum', NULL, 3195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kiunum', [Definition] = NULL, [SortOrder] = 318.20 WHERE [Code] = 'wei' END +SET [Description] = 'Kiunum', [Definition] = NULL, [SortOrder] = 3195.00 WHERE [Code] = 'wei' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'izm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('izm', 'Kizamani', NULL, 3196.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Kizamani', [Definition] = NULL, [SortOrder] = 3196.00 WHERE [Code] = 'izm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lda', 'Kla-Dan', NULL, 318.30) END +VALUES ('lda', 'Kla-Dan', NULL, 3197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kla-Dan', [Definition] = NULL, [SortOrder] = 318.30 WHERE [Code] = 'lda' END +SET [Description] = 'Kla-Dan', [Definition] = NULL, [SortOrder] = 3197.00 WHERE [Code] = 'lda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kla', 'Klamath-Modoc', NULL, 318.40) END +VALUES ('kla', 'Klamath-Modoc', NULL, 3198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Klamath-Modoc', [Definition] = NULL, [SortOrder] = 318.40 WHERE [Code] = 'kla' END +SET [Description] = 'Klamath-Modoc', [Definition] = NULL, [SortOrder] = 3198.00 WHERE [Code] = 'kla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klu', 'Klao', NULL, 318.50) END +VALUES ('klu', 'Klao', NULL, 3199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Klao', [Definition] = NULL, [SortOrder] = 318.50 WHERE [Code] = 'klu' END +SET [Description] = 'Klao', [Definition] = NULL, [SortOrder] = 3199.00 WHERE [Code] = 'klu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqt', 'Klias River Kadazan', NULL, 318.60) END +VALUES ('kqt', 'Klias River Kadazan', NULL, 3200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Klias River Kadazan', [Definition] = NULL, [SortOrder] = 318.60 WHERE [Code] = 'kqt' END +SET [Description] = 'Klias River Kadazan', [Definition] = NULL, [SortOrder] = 3200.00 WHERE [Code] = 'kqt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlh', 'Klingon', NULL, 318.70) END +VALUES ('tlh', 'Klingon', NULL, 3201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Klingon', [Definition] = NULL, [SortOrder] = 318.70 WHERE [Code] = 'tlh' END +SET [Description] = 'Klingon', [Definition] = NULL, [SortOrder] = 3201.00 WHERE [Code] = 'tlh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czk', 'Knaanic', NULL, 318.80) END +VALUES ('czk', 'Knaanic', NULL, 3202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Knaanic', [Definition] = NULL, [SortOrder] = 318.80 WHERE [Code] = 'czk' END +SET [Description] = 'Knaanic', [Definition] = NULL, [SortOrder] = 3202.00 WHERE [Code] = 'czk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuj', 'Ko', NULL, 318.90) END +VALUES ('fuj', 'Ko', NULL, 3203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ko', [Definition] = NULL, [SortOrder] = 318.90 WHERE [Code] = 'fuj' END +SET [Description] = 'Ko', [Definition] = NULL, [SortOrder] = 3203.00 WHERE [Code] = 'fuj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kib', 'Koalib', NULL, 319.00) END +VALUES ('kib', 'Koalib', NULL, 3204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koalib', [Definition] = NULL, [SortOrder] = 319.00 WHERE [Code] = 'kib' END +SET [Description] = 'Koalib', [Definition] = NULL, [SortOrder] = 3204.00 WHERE [Code] = 'kib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cku', 'Koasati', NULL, 319.10) END +VALUES ('cku', 'Koasati', NULL, 3205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koasati', [Definition] = NULL, [SortOrder] = 319.10 WHERE [Code] = 'cku' END +SET [Description] = 'Koasati', [Definition] = NULL, [SortOrder] = 3205.00 WHERE [Code] = 'cku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpd', 'Koba', NULL, 319.20) END +VALUES ('kpd', 'Koba', NULL, 3206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koba', [Definition] = NULL, [SortOrder] = 319.20 WHERE [Code] = 'kpd' END +SET [Description] = 'Koba', [Definition] = NULL, [SortOrder] = 3206.00 WHERE [Code] = 'kpd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcj', 'Kobiana', NULL, 319.30) END +VALUES ('kcj', 'Kobiana', NULL, 3207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kobiana', [Definition] = NULL, [SortOrder] = 319.30 WHERE [Code] = 'kcj' END +SET [Description] = 'Kobiana', [Definition] = NULL, [SortOrder] = 3207.00 WHERE [Code] = 'kcj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okc', 'Kobo', NULL, 319.40) END +VALUES ('okc', 'Kobo', NULL, 3208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kobo', [Definition] = NULL, [SortOrder] = 319.40 WHERE [Code] = 'okc' END +SET [Description] = 'Kobo', [Definition] = NULL, [SortOrder] = 3208.00 WHERE [Code] = 'okc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgu', 'Kobol', NULL, 319.50) END +VALUES ('kgu', 'Kobol', NULL, 3209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kobol', [Definition] = NULL, [SortOrder] = 319.50 WHERE [Code] = 'kgu' END +SET [Description] = 'Kobol', [Definition] = NULL, [SortOrder] = 3209.00 WHERE [Code] = 'kgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpw', 'Kobon', NULL, 319.60) END +VALUES ('kpw', 'Kobon', NULL, 3210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kobon', [Definition] = NULL, [SortOrder] = 319.60 WHERE [Code] = 'kpw' END +SET [Description] = 'Kobon', [Definition] = NULL, [SortOrder] = 3210.00 WHERE [Code] = 'kpw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdq', 'Koch', NULL, 319.70) END +VALUES ('kdq', 'Koch', NULL, 3211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koch', [Definition] = NULL, [SortOrder] = 319.70 WHERE [Code] = 'kdq' END +SET [Description] = 'Koch', [Definition] = NULL, [SortOrder] = 3211.00 WHERE [Code] = 'kdq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thq', 'Kochila Tharu', NULL, 319.80) END +VALUES ('thq', 'Kochila Tharu', NULL, 3212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kochila Tharu', [Definition] = NULL, [SortOrder] = 319.80 WHERE [Code] = 'thq' END +SET [Description] = 'Kochila Tharu', [Definition] = NULL, [SortOrder] = 3212.00 WHERE [Code] = 'thq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdz', 'Koda', NULL, 319.90) END +VALUES ('cdz', 'Koda', NULL, 3213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koda', [Definition] = NULL, [SortOrder] = 319.90 WHERE [Code] = 'cdz' END +SET [Description] = 'Koda', [Definition] = NULL, [SortOrder] = 3213.00 WHERE [Code] = 'cdz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksz', 'Kodaku', NULL, 320.00) END +VALUES ('ksz', 'Kodaku', NULL, 3214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodaku', [Definition] = NULL, [SortOrder] = 320.00 WHERE [Code] = 'ksz' END +SET [Description] = 'Kodaku', [Definition] = NULL, [SortOrder] = 3214.00 WHERE [Code] = 'ksz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfa', 'Kodava', NULL, 320.10) END +VALUES ('kfa', 'Kodava', NULL, 3215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodava', [Definition] = NULL, [SortOrder] = 320.10 WHERE [Code] = 'kfa' END +SET [Description] = 'Kodava', [Definition] = NULL, [SortOrder] = 3215.00 WHERE [Code] = 'kfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vko', 'Kodeoha', NULL, 320.20) END +VALUES ('vko', 'Kodeoha', NULL, 3216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodeoha', [Definition] = NULL, [SortOrder] = 320.20 WHERE [Code] = 'vko' END +SET [Description] = 'Kodeoha', [Definition] = NULL, [SortOrder] = 3216.00 WHERE [Code] = 'vko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kod', 'Kodi', NULL, 320.30) END +VALUES ('kod', 'Kodi', NULL, 3217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodi', [Definition] = NULL, [SortOrder] = 320.30 WHERE [Code] = 'kod' END +SET [Description] = 'Kodi', [Definition] = NULL, [SortOrder] = 3217.00 WHERE [Code] = 'kod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwp', 'Kodia', NULL, 320.40) END +VALUES ('kwp', 'Kodia', NULL, 3218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kodia', [Definition] = NULL, [SortOrder] = 320.40 WHERE [Code] = 'kwp' END +SET [Description] = 'Kodia', [Definition] = NULL, [SortOrder] = 3218.00 WHERE [Code] = 'kwp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcs', 'Koenoem', NULL, 320.50) END +VALUES ('kcs', 'Koenoem', NULL, 3219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koenoem', [Definition] = NULL, [SortOrder] = 320.50 WHERE [Code] = 'kcs' END +SET [Description] = 'Koenoem', [Definition] = NULL, [SortOrder] = 3219.00 WHERE [Code] = 'kcs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kso', 'Kofa', NULL, 320.60) END +VALUES ('kso', 'Kofa', NULL, 3220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kofa', [Definition] = NULL, [SortOrder] = 320.60 WHERE [Code] = 'kso' END +SET [Description] = 'Kofa', [Definition] = NULL, [SortOrder] = 3220.00 WHERE [Code] = 'kso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpi', 'Kofei', NULL, 320.70) END +VALUES ('kpi', 'Kofei', NULL, 3221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kofei', [Definition] = NULL, [SortOrder] = 320.70 WHERE [Code] = 'kpi' END +SET [Description] = 'Kofei', [Definition] = NULL, [SortOrder] = 3221.00 WHERE [Code] = 'kpi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwl', 'Kofyar', NULL, 320.80) END +VALUES ('kwl', 'Kofyar', NULL, 3222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kofyar', [Definition] = NULL, [SortOrder] = 320.80 WHERE [Code] = 'kwl' END +SET [Description] = 'Kofyar', [Definition] = NULL, [SortOrder] = 3222.00 WHERE [Code] = 'kwl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkg', 'Koguryo', NULL, 320.90) END +VALUES ('zkg', 'Koguryo', NULL, 3223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koguryo', [Definition] = NULL, [SortOrder] = 320.90 WHERE [Code] = 'zkg' END +SET [Description] = 'Koguryo', [Definition] = NULL, [SortOrder] = 3223.00 WHERE [Code] = 'zkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkx', 'Kohin', NULL, 321.00) END +VALUES ('kkx', 'Kohin', NULL, 3224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kohin', [Definition] = NULL, [SortOrder] = 321.00 WHERE [Code] = 'kkx' END +SET [Description] = 'Kohin', [Definition] = NULL, [SortOrder] = 3224.00 WHERE [Code] = 'kkx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plk', 'Kohistani Shina', NULL, 321.10) END +VALUES ('plk', 'Kohistani Shina', NULL, 3225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kohistani Shina', [Definition] = NULL, [SortOrder] = 321.10 WHERE [Code] = 'plk' END +SET [Description] = 'Kohistani Shina', [Definition] = NULL, [SortOrder] = 3225.00 WHERE [Code] = 'plk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpm', 'Koho', NULL, 321.20) END +VALUES ('kpm', 'Koho', NULL, 3226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koho', [Definition] = NULL, [SortOrder] = 321.20 WHERE [Code] = 'kpm' END +SET [Description] = 'Koho', [Definition] = NULL, [SortOrder] = 3226.00 WHERE [Code] = 'kpm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcs', 'Kohumono', NULL, 321.30) END +VALUES ('bcs', 'Kohumono', NULL, 3227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kohumono', [Definition] = NULL, [SortOrder] = 321.30 WHERE [Code] = 'bcs' END +SET [Description] = 'Kohumono', [Definition] = NULL, [SortOrder] = 3227.00 WHERE [Code] = 'bcs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkt', 'Koi', NULL, 321.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koi', [Definition] = NULL, [SortOrder] = 321.40 WHERE [Code] = 'kkt' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkb', 'Koibal', NULL, 321.50) END +VALUES ('kkt', 'Koi', NULL, 3228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koibal', [Definition] = NULL, [SortOrder] = 321.50 WHERE [Code] = 'zkb' END +SET [Description] = 'Koi', [Definition] = NULL, [SortOrder] = 3228.00 WHERE [Code] = 'kkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkd', 'Koireng', NULL, 321.60) END +VALUES ('nkd', 'Koireng', NULL, 3229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koireng', [Definition] = NULL, [SortOrder] = 321.60 WHERE [Code] = 'nkd' END +SET [Description] = 'Koireng', [Definition] = NULL, [SortOrder] = 3229.00 WHERE [Code] = 'nkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqi', 'Koitabu', NULL, 321.70) END +VALUES ('kqi', 'Koitabu', NULL, 3230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koitabu', [Definition] = NULL, [SortOrder] = 321.70 WHERE [Code] = 'kqi' END +SET [Description] = 'Koitabu', [Definition] = NULL, [SortOrder] = 3230.00 WHERE [Code] = 'kqi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxt', 'Koiwat', NULL, 321.80) END +VALUES ('kxt', 'Koiwat', NULL, 3231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koiwat', [Definition] = NULL, [SortOrder] = 321.80 WHERE [Code] = 'kxt' END +SET [Description] = 'Koiwat', [Definition] = NULL, [SortOrder] = 3231.00 WHERE [Code] = 'kxt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trp', 'Kok Borok', NULL, 321.90) END +VALUES ('trp', 'Kok Borok', NULL, 3232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kok Borok', [Definition] = NULL, [SortOrder] = 321.90 WHERE [Code] = 'trp' END +SET [Description] = 'Kok Borok', [Definition] = NULL, [SortOrder] = 3232.00 WHERE [Code] = 'trp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gko', 'Kok-Nar', NULL, 322.00) END +VALUES ('gko', 'Kok-Nar', NULL, 3233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kok-Nar', [Definition] = NULL, [SortOrder] = 322.00 WHERE [Code] = 'gko' END +SET [Description] = 'Kok-Nar', [Definition] = NULL, [SortOrder] = 3233.00 WHERE [Code] = 'gko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktd', 'Kokata', NULL, 322.10) END +VALUES ('ktd', 'Kokata', NULL, 3234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kokata', [Definition] = NULL, [SortOrder] = 322.10 WHERE [Code] = 'ktd' END +SET [Description] = 'Kokata', [Definition] = NULL, [SortOrder] = 3234.00 WHERE [Code] = 'ktd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kou', 'Koke', NULL, 322.20) END +VALUES ('kou', 'Koke', NULL, 3235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koke', [Definition] = NULL, [SortOrder] = 322.20 WHERE [Code] = 'kou' END +SET [Description] = 'Koke', [Definition] = NULL, [SortOrder] = 3235.00 WHERE [Code] = 'kou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxk', 'Koki Naga', NULL, 322.30) END +VALUES ('nxk', 'Koki Naga', NULL, 3236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koki Naga', [Definition] = NULL, [SortOrder] = 322.30 WHERE [Code] = 'nxk' END +SET [Description] = 'Koki Naga', [Definition] = NULL, [SortOrder] = 3236.00 WHERE [Code] = 'nxk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okg', 'Koko Babangk', NULL, 322.40) END +VALUES ('okg', 'Koko Babangk', NULL, 3237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koko Babangk', [Definition] = NULL, [SortOrder] = 322.40 WHERE [Code] = 'okg' END +SET [Description] = 'Koko Babangk', [Definition] = NULL, [SortOrder] = 3237.00 WHERE [Code] = 'okg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xod', 'Kokoda', NULL, 322.50) END +VALUES ('xod', 'Kokoda', NULL, 3238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kokoda', [Definition] = NULL, [SortOrder] = 322.50 WHERE [Code] = 'xod' END +SET [Description] = 'Kokoda', [Definition] = NULL, [SortOrder] = 3238.00 WHERE [Code] = 'xod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzn', 'Kokola', NULL, 322.60) END +VALUES ('kzn', 'Kokola', NULL, 3239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kokola', [Definition] = NULL, [SortOrder] = 322.60 WHERE [Code] = 'kzn' END +SET [Description] = 'Kokola', [Definition] = NULL, [SortOrder] = 3239.00 WHERE [Code] = 'kzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkk', 'Kokota', NULL, 322.70) END +VALUES ('kkk', 'Kokota', NULL, 3240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kokota', [Definition] = NULL, [SortOrder] = 322.70 WHERE [Code] = 'kkk' END +SET [Description] = 'Kokota', [Definition] = NULL, [SortOrder] = 3240.00 WHERE [Code] = 'kkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekl', 'Kol (Bangladesh)', NULL, 322.80) END +VALUES ('ekl', 'Kol (Bangladesh)', NULL, 3241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kol (Bangladesh)', [Definition] = NULL, [SortOrder] = 322.80 WHERE [Code] = 'ekl' END +SET [Description] = 'Kol (Bangladesh)', [Definition] = NULL, [SortOrder] = 3241.00 WHERE [Code] = 'ekl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biw', 'Kol (Cameroon)', NULL, 322.90) END +VALUES ('biw', 'Kol (Cameroon)', NULL, 3242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kol (Cameroon)', [Definition] = NULL, [SortOrder] = 322.90 WHERE [Code] = 'biw' END +SET [Description] = 'Kol (Cameroon)', [Definition] = NULL, [SortOrder] = 3242.00 WHERE [Code] = 'biw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kol', 'Kol (Papua New Guinea)', NULL, 323.00) END +VALUES ('kol', 'Kol (Papua New Guinea)', NULL, 3243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kol (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 323.00 WHERE [Code] = 'kol' END +SET [Description] = 'Kol (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3243.00 WHERE [Code] = 'kol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvv', 'Kola', NULL, 323.10) END +VALUES ('kvv', 'Kola', NULL, 3244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kola', [Definition] = NULL, [SortOrder] = 323.10 WHERE [Code] = 'kvv' END +SET [Description] = 'Kola', [Definition] = NULL, [SortOrder] = 3244.00 WHERE [Code] = 'kvv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klc', 'Kolbila', NULL, 323.20) END +VALUES ('klc', 'Kolbila', NULL, 3245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kolbila', [Definition] = NULL, [SortOrder] = 323.20 WHERE [Code] = 'klc' END +SET [Description] = 'Kolbila', [Definition] = NULL, [SortOrder] = 3245.00 WHERE [Code] = 'klc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skn', 'Kolibugan Subanon', NULL, 323.30) END +VALUES ('skn', 'Kolibugan Subanon', NULL, 3246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kolibugan Subanon', [Definition] = NULL, [SortOrder] = 323.30 WHERE [Code] = 'skn' END +SET [Description] = 'Kolibugan Subanon', [Definition] = NULL, [SortOrder] = 3246.00 WHERE [Code] = 'skn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksh', 'Kölsch', NULL, 323.40) END +VALUES ('ksh', 'Kölsch', NULL, 3247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kölsch', [Definition] = NULL, [SortOrder] = 323.40 WHERE [Code] = 'ksh' END +SET [Description] = 'Kölsch', [Definition] = NULL, [SortOrder] = 3247.00 WHERE [Code] = 'ksh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klx', 'Koluwawa', NULL, 323.50) END +VALUES ('klx', 'Koluwawa', NULL, 3248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koluwawa', [Definition] = NULL, [SortOrder] = 323.50 WHERE [Code] = 'klx' END +SET [Description] = 'Koluwawa', [Definition] = NULL, [SortOrder] = 3248.00 WHERE [Code] = 'klx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkm', 'Kom (Cameroon)', NULL, 323.60) END +VALUES ('bkm', 'Kom (Cameroon)', NULL, 3249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kom (Cameroon)', [Definition] = NULL, [SortOrder] = 323.60 WHERE [Code] = 'bkm' END +SET [Description] = 'Kom (Cameroon)', [Definition] = NULL, [SortOrder] = 3249.00 WHERE [Code] = 'bkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmm', 'Kom (India)', NULL, 323.70) END +VALUES ('kmm', 'Kom (India)', NULL, 3250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kom (India)', [Definition] = NULL, [SortOrder] = 323.70 WHERE [Code] = 'kmm' END +SET [Description] = 'Kom (India)', [Definition] = NULL, [SortOrder] = 3250.00 WHERE [Code] = 'kmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmy', 'Koma', NULL, 323.80) END +VALUES ('kmy', 'Koma', NULL, 3251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koma', [Definition] = NULL, [SortOrder] = 323.80 WHERE [Code] = 'kmy' END +SET [Description] = 'Koma', [Definition] = NULL, [SortOrder] = 3251.00 WHERE [Code] = 'kmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpf', 'Komba', NULL, 323.90) END +VALUES ('kpf', 'Komba', NULL, 3252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komba', [Definition] = NULL, [SortOrder] = 323.90 WHERE [Code] = 'kpf' END +SET [Description] = 'Komba', [Definition] = NULL, [SortOrder] = 3252.00 WHERE [Code] = 'kpf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyn', 'Kombai', NULL, 324.00) END +VALUES ('tyn', 'Kombai', NULL, 3253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kombai', [Definition] = NULL, [SortOrder] = 324.00 WHERE [Code] = 'tyn' END +SET [Description] = 'Kombai', [Definition] = NULL, [SortOrder] = 3253.00 WHERE [Code] = 'tyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbi', 'Kombio', NULL, 324.10) END +VALUES ('xbi', 'Kombio', NULL, 3254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kombio', [Definition] = NULL, [SortOrder] = 324.10 WHERE [Code] = 'xbi' END +SET [Description] = 'Kombio', [Definition] = NULL, [SortOrder] = 3254.00 WHERE [Code] = 'xbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kge', 'Komering', NULL, 324.20) END +VALUES ('kge', 'Komering', NULL, 3255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komering', [Definition] = NULL, [SortOrder] = 324.20 WHERE [Code] = 'kge' END +SET [Description] = 'Komering', [Definition] = NULL, [SortOrder] = 3255.00 WHERE [Code] = 'kge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kom', 'Komi', NULL, 324.30) END +VALUES ('kom', 'Komi', NULL, 3256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komi', [Definition] = NULL, [SortOrder] = 324.30 WHERE [Code] = 'kom' END +SET [Description] = 'Komi', [Definition] = NULL, [SortOrder] = 3256.00 WHERE [Code] = 'kom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koi', 'Komi-Permyak', NULL, 324.40) END +VALUES ('koi', 'Komi-Permyak', NULL, 3257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komi-Permyak', [Definition] = NULL, [SortOrder] = 324.40 WHERE [Code] = 'koi' END +SET [Description] = 'Komi-Permyak', [Definition] = NULL, [SortOrder] = 3257.00 WHERE [Code] = 'koi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpv', 'Komi-Zyrian', NULL, 324.50) END +VALUES ('kpv', 'Komi-Zyrian', NULL, 3258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komi-Zyrian', [Definition] = NULL, [SortOrder] = 324.50 WHERE [Code] = 'kpv' END +SET [Description] = 'Komi-Zyrian', [Definition] = NULL, [SortOrder] = 3258.00 WHERE [Code] = 'kpv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xoi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xoi', 'Kominimung', NULL, 324.60) END +VALUES ('xoi', 'Kominimung', NULL, 3259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kominimung', [Definition] = NULL, [SortOrder] = 324.60 WHERE [Code] = 'xoi' END +SET [Description] = 'Kominimung', [Definition] = NULL, [SortOrder] = 3259.00 WHERE [Code] = 'xoi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmw', 'Komo (Democratic Republic of Congo)', NULL, 324.70) END +VALUES ('kmw', 'Komo (Democratic Republic of Congo)', NULL, 3260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komo (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 324.70 WHERE [Code] = 'kmw' END +SET [Description] = 'Komo (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 3260.00 WHERE [Code] = 'kmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xom', 'Komo (Sudan)', NULL, 324.80) END +VALUES ('xom', 'Komo (Sudan)', NULL, 3261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komo (Sudan)', [Definition] = NULL, [SortOrder] = 324.80 WHERE [Code] = 'xom' END +SET [Description] = 'Komo (Sudan)', [Definition] = NULL, [SortOrder] = 3261.00 WHERE [Code] = 'xom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvh', 'Komodo', NULL, 324.90) END +VALUES ('kvh', 'Komodo', NULL, 3262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komodo', [Definition] = NULL, [SortOrder] = 324.90 WHERE [Code] = 'kvh' END +SET [Description] = 'Komodo', [Definition] = NULL, [SortOrder] = 3262.00 WHERE [Code] = 'kvh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvp', 'Kompane', NULL, 325.00) END +VALUES ('kvp', 'Kompane', NULL, 3263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kompane', [Definition] = NULL, [SortOrder] = 325.00 WHERE [Code] = 'kvp' END +SET [Description] = 'Kompane', [Definition] = NULL, [SortOrder] = 3263.00 WHERE [Code] = 'kvp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzv', 'Komyandaret', NULL, 325.10) END +VALUES ('kzv', 'Komyandaret', NULL, 3264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Komyandaret', [Definition] = NULL, [SortOrder] = 325.10 WHERE [Code] = 'kzv' END +SET [Description] = 'Komyandaret', [Definition] = NULL, [SortOrder] = 3264.00 WHERE [Code] = 'kzv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkn', 'Kon Keu', NULL, 325.20) END +VALUES ('kkn', 'Kon Keu', NULL, 3265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kon Keu', [Definition] = NULL, [SortOrder] = 325.20 WHERE [Code] = 'kkn' END +SET [Description] = 'Kon Keu', [Definition] = NULL, [SortOrder] = 3265.00 WHERE [Code] = 'kkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxw', 'Konai', NULL, 325.30) END +VALUES ('kxw', 'Konai', NULL, 3266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konai', [Definition] = NULL, [SortOrder] = 325.30 WHERE [Code] = 'kxw' END +SET [Description] = 'Konai', [Definition] = NULL, [SortOrder] = 3266.00 WHERE [Code] = 'kxw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knd', 'Konda', NULL, 325.40) END +VALUES ('knd', 'Konda', NULL, 3267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konda', [Definition] = NULL, [SortOrder] = 325.40 WHERE [Code] = 'knd' END +SET [Description] = 'Konda', [Definition] = NULL, [SortOrder] = 3267.00 WHERE [Code] = 'knd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfc', 'Konda-Dora', NULL, 325.50) END +VALUES ('kfc', 'Konda-Dora', NULL, 3268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konda-Dora', [Definition] = NULL, [SortOrder] = 325.50 WHERE [Code] = 'kfc' END +SET [Description] = 'Konda-Dora', [Definition] = NULL, [SortOrder] = 3268.00 WHERE [Code] = 'kfc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdw', 'Koneraw', NULL, 325.60) END +VALUES ('kdw', 'Koneraw', NULL, 3269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koneraw', [Definition] = NULL, [SortOrder] = 325.60 WHERE [Code] = 'kdw' END +SET [Description] = 'Koneraw', [Definition] = NULL, [SortOrder] = 3269.00 WHERE [Code] = 'kdw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kon', 'Kongo', NULL, 325.70) END +VALUES ('kon', 'Kongo', NULL, 3270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kongo', [Definition] = NULL, [SortOrder] = 325.70 WHERE [Code] = 'kon' END +SET [Description] = 'Kongo', [Definition] = NULL, [SortOrder] = 3270.00 WHERE [Code] = 'kon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knn', 'Konkani (individual language)', NULL, 325.80) END +VALUES ('knn', 'Konkani (individual language)', NULL, 3271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konkani (individual language)', [Definition] = NULL, [SortOrder] = 325.80 WHERE [Code] = 'knn' END +SET [Description] = 'Konkani (individual language)', [Definition] = NULL, [SortOrder] = 3271.00 WHERE [Code] = 'knn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kok', 'Konkani (macrolanguage)', NULL, 325.90) END +VALUES ('kok', 'Konkani (macrolanguage)', NULL, 3272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konkani (macrolanguage)', [Definition] = NULL, [SortOrder] = 325.90 WHERE [Code] = 'kok' END +SET [Description] = 'Konkani (macrolanguage)', [Definition] = NULL, [SortOrder] = 3272.00 WHERE [Code] = 'kok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xon', 'Konkomba', NULL, 326.00) END +VALUES ('xon', 'Konkomba', NULL, 3273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konkomba', [Definition] = NULL, [SortOrder] = 326.00 WHERE [Code] = 'xon' END +SET [Description] = 'Konkomba', [Definition] = NULL, [SortOrder] = 3273.00 WHERE [Code] = 'xon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kma', 'Konni', NULL, 326.10) END +VALUES ('kma', 'Konni', NULL, 3274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konni', [Definition] = NULL, [SortOrder] = 326.10 WHERE [Code] = 'kma' END +SET [Description] = 'Konni', [Definition] = NULL, [SortOrder] = 3274.00 WHERE [Code] = 'kma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knu', 'Kono (Guinea)', NULL, 326.20) END +VALUES ('knu', 'Kono (Guinea)', NULL, 3275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kono (Guinea)', [Definition] = NULL, [SortOrder] = 326.20 WHERE [Code] = 'knu' END +SET [Description] = 'Kono (Guinea)', [Definition] = NULL, [SortOrder] = 3275.00 WHERE [Code] = 'knu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klk', 'Kono (Nigeria)', NULL, 326.30) END +VALUES ('klk', 'Kono (Nigeria)', NULL, 3276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kono (Nigeria)', [Definition] = NULL, [SortOrder] = 326.30 WHERE [Code] = 'klk' END +SET [Description] = 'Kono (Nigeria)', [Definition] = NULL, [SortOrder] = 3276.00 WHERE [Code] = 'klk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kno', 'Kono (Sierra Leone)', NULL, 326.40) END +VALUES ('kno', 'Kono (Sierra Leone)', NULL, 3277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kono (Sierra Leone)', [Definition] = NULL, [SortOrder] = 326.40 WHERE [Code] = 'kno' END +SET [Description] = 'Kono (Sierra Leone)', [Definition] = NULL, [SortOrder] = 3277.00 WHERE [Code] = 'kno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koa', 'Konomala', NULL, 326.50) END +VALUES ('koa', 'Konomala', NULL, 3278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konomala', [Definition] = NULL, [SortOrder] = 326.50 WHERE [Code] = 'koa' END +SET [Description] = 'Konomala', [Definition] = NULL, [SortOrder] = 3278.00 WHERE [Code] = 'koa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcz', 'Konongo', NULL, 326.60) END +VALUES ('kcz', 'Konongo', NULL, 3279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konongo', [Definition] = NULL, [SortOrder] = 326.60 WHERE [Code] = 'kcz' END +SET [Description] = 'Konongo', [Definition] = NULL, [SortOrder] = 3279.00 WHERE [Code] = 'kcz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxc', 'Konso', NULL, 326.70) END +VALUES ('kxc', 'Konso', NULL, 3280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konso', [Definition] = NULL, [SortOrder] = 326.70 WHERE [Code] = 'kxc' END +SET [Description] = 'Konso', [Definition] = NULL, [SortOrder] = 3280.00 WHERE [Code] = 'kxc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbe', 'Konyak Naga', NULL, 326.80) END +VALUES ('nbe', 'Konyak Naga', NULL, 3281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konyak Naga', [Definition] = NULL, [SortOrder] = 326.80 WHERE [Code] = 'nbe' END +SET [Description] = 'Konyak Naga', [Definition] = NULL, [SortOrder] = 3281.00 WHERE [Code] = 'nbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mku', 'Konyanka Maninka', NULL, 326.90) END +VALUES ('mku', 'Konyanka Maninka', NULL, 3282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konyanka Maninka', [Definition] = NULL, [SortOrder] = 326.90 WHERE [Code] = 'mku' END +SET [Description] = 'Konyanka Maninka', [Definition] = NULL, [SortOrder] = 3282.00 WHERE [Code] = 'mku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koo', 'Konzo', NULL, 327.00) END +VALUES ('koo', 'Konzo', NULL, 3283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Konzo', [Definition] = NULL, [SortOrder] = 327.00 WHERE [Code] = 'koo' END +SET [Description] = 'Konzo', [Definition] = NULL, [SortOrder] = 3283.00 WHERE [Code] = 'koo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kng', 'Koongo', NULL, 327.10) END +VALUES ('kng', 'Koongo', NULL, 3284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koongo', [Definition] = NULL, [SortOrder] = 327.10 WHERE [Code] = 'kng' END +SET [Description] = 'Koongo', [Definition] = NULL, [SortOrder] = 3284.00 WHERE [Code] = 'kng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ozm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ozm', 'Koonzime', NULL, 327.20) END +VALUES ('ozm', 'Koonzime', NULL, 3285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koonzime', [Definition] = NULL, [SortOrder] = 327.20 WHERE [Code] = 'ozm' END +SET [Description] = 'Koonzime', [Definition] = NULL, [SortOrder] = 3285.00 WHERE [Code] = 'ozm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqy', 'Koorete', NULL, 327.30) END +VALUES ('kqy', 'Koorete', NULL, 3286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koorete', [Definition] = NULL, [SortOrder] = 327.30 WHERE [Code] = 'kqy' END +SET [Description] = 'Koorete', [Definition] = NULL, [SortOrder] = 3286.00 WHERE [Code] = 'kqy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xop', 'Kopar', NULL, 327.40) END +VALUES ('xop', 'Kopar', NULL, 3287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kopar', [Definition] = NULL, [SortOrder] = 327.40 WHERE [Code] = 'xop' END +SET [Description] = 'Kopar', [Definition] = NULL, [SortOrder] = 3287.00 WHERE [Code] = 'xop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opk', 'Kopkaka', NULL, 327.50) END +VALUES ('opk', 'Kopkaka', NULL, 3288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kopkaka', [Definition] = NULL, [SortOrder] = 327.50 WHERE [Code] = 'opk' END +SET [Description] = 'Kopkaka', [Definition] = NULL, [SortOrder] = 3288.00 WHERE [Code] = 'opk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpr', 'Korafe-Yegha', NULL, 327.60) END +VALUES ('kpr', 'Korafe-Yegha', NULL, 3289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korafe-Yegha', [Definition] = NULL, [SortOrder] = 327.60 WHERE [Code] = 'kpr' END +SET [Description] = 'Korafe-Yegha', [Definition] = NULL, [SortOrder] = 3289.00 WHERE [Code] = 'kpr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koz', 'Korak', NULL, 327.70) END +VALUES ('koz', 'Korak', NULL, 3290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korak', [Definition] = NULL, [SortOrder] = 327.70 WHERE [Code] = 'koz' END +SET [Description] = 'Korak', [Definition] = NULL, [SortOrder] = 3290.00 WHERE [Code] = 'koz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqz', 'Korana', NULL, 327.80) END +VALUES ('kqz', 'Korana', NULL, 3291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korana', [Definition] = NULL, [SortOrder] = 327.80 WHERE [Code] = 'kqz' END +SET [Description] = 'Korana', [Definition] = NULL, [SortOrder] = 3291.00 WHERE [Code] = 'kqz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcy', 'Korandje', NULL, 327.90) END +VALUES ('kcy', 'Korandje', NULL, 3292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korandje', [Definition] = NULL, [SortOrder] = 327.90 WHERE [Code] = 'kcy' END +SET [Description] = 'Korandje', [Definition] = NULL, [SortOrder] = 3292.00 WHERE [Code] = 'kcy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kor', 'Korean', NULL, 328.00) END +VALUES ('kor', 'Korean', NULL, 3293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korean', [Definition] = NULL, [SortOrder] = 328.00 WHERE [Code] = 'kor' END +SET [Description] = 'Korean', [Definition] = NULL, [SortOrder] = 3293.00 WHERE [Code] = 'kor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvk', 'Korean Sign Language', NULL, 328.10) END +VALUES ('kvk', 'Korean Sign Language', NULL, 3294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korean Sign Language', [Definition] = NULL, [SortOrder] = 328.10 WHERE [Code] = 'kvk' END +SET [Description] = 'Korean Sign Language', [Definition] = NULL, [SortOrder] = 3294.00 WHERE [Code] = 'kvk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'coe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('coe', 'Koreguaje', NULL, 328.20) END +VALUES ('coe', 'Koreguaje', NULL, 3295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koreguaje', [Definition] = NULL, [SortOrder] = 328.20 WHERE [Code] = 'coe' END +SET [Description] = 'Koreguaje', [Definition] = NULL, [SortOrder] = 3295.00 WHERE [Code] = 'coe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okh', 'Koresh-e Rostam', NULL, 328.30) END +VALUES ('okh', 'Koresh-e Rostam', NULL, 3296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koresh-e Rostam', [Definition] = NULL, [SortOrder] = 328.30 WHERE [Code] = 'okh' END +SET [Description] = 'Koresh-e Rostam', [Definition] = NULL, [SortOrder] = 3296.00 WHERE [Code] = 'okh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfq', 'Korku', NULL, 328.40) END +VALUES ('kfq', 'Korku', NULL, 3297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korku', [Definition] = NULL, [SortOrder] = 328.40 WHERE [Code] = 'kfq' END +SET [Description] = 'Korku', [Definition] = NULL, [SortOrder] = 3297.00 WHERE [Code] = 'kfq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkp', 'Korlai Creole Portuguese', NULL, 328.50) END +VALUES ('vkp', 'Korlai Creole Portuguese', NULL, 3298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korlai Creole Portuguese', [Definition] = NULL, [SortOrder] = 328.50 WHERE [Code] = 'vkp' END +SET [Description] = 'Korlai Creole Portuguese', [Definition] = NULL, [SortOrder] = 3298.00 WHERE [Code] = 'vkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfo', 'Koro (Côte d''Ivoire)', NULL, 328.60) END +VALUES ('kfo', 'Koro (Côte d''Ivoire)', NULL, 3299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 328.60 WHERE [Code] = 'kfo' END +SET [Description] = 'Koro (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 3299.00 WHERE [Code] = 'kfo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jkr', 'Koro (India)', NULL, 328.70) END +VALUES ('jkr', 'Koro (India)', NULL, 3300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro (India)', [Definition] = NULL, [SortOrder] = 328.70 WHERE [Code] = 'jkr' END +SET [Description] = 'Koro (India)', [Definition] = NULL, [SortOrder] = 3300.00 WHERE [Code] = 'jkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxr', 'Koro (Papua New Guinea)', NULL, 328.80) END +VALUES ('kxr', 'Koro (Papua New Guinea)', NULL, 3301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 328.80 WHERE [Code] = 'kxr' END +SET [Description] = 'Koro (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3301.00 WHERE [Code] = 'kxr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krf', 'Koro (Vanuatu)', NULL, 328.90) END +VALUES ('krf', 'Koro (Vanuatu)', NULL, 3302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro (Vanuatu)', [Definition] = NULL, [SortOrder] = 328.90 WHERE [Code] = 'krf' END +SET [Description] = 'Koro (Vanuatu)', [Definition] = NULL, [SortOrder] = 3302.00 WHERE [Code] = 'krf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkn', 'Koro Nulu', NULL, 329.00) END +VALUES ('vkn', 'Koro Nulu', NULL, 3303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro Nulu', [Definition] = NULL, [SortOrder] = 329.00 WHERE [Code] = 'vkn' END +SET [Description] = 'Koro Nulu', [Definition] = NULL, [SortOrder] = 3303.00 WHERE [Code] = 'vkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqv', 'Koro Wachi', NULL, 329.10) END +VALUES ('bqv', 'Koro Wachi', NULL, 3304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro Wachi', [Definition] = NULL, [SortOrder] = 329.10 WHERE [Code] = 'bqv' END +SET [Description] = 'Koro Wachi', [Definition] = NULL, [SortOrder] = 3304.00 WHERE [Code] = 'bqv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkz', 'Koro Zuba', NULL, 329.20) END +VALUES ('vkz', 'Koro Zuba', NULL, 3305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koro Zuba', [Definition] = NULL, [SortOrder] = 329.20 WHERE [Code] = 'vkz' END +SET [Description] = 'Koro Zuba', [Definition] = NULL, [SortOrder] = 3305.00 WHERE [Code] = 'vkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfz', 'Koromfé', NULL, 329.30) END +VALUES ('kfz', 'Koromfé', NULL, 3306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koromfé', [Definition] = NULL, [SortOrder] = 329.30 WHERE [Code] = 'kfz' END +SET [Description] = 'Koromfé', [Definition] = NULL, [SortOrder] = 3306.00 WHERE [Code] = 'kfz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqj', 'Koromira', NULL, 329.40) END +VALUES ('kqj', 'Koromira', NULL, 3307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koromira', [Definition] = NULL, [SortOrder] = 329.40 WHERE [Code] = 'kqj' END +SET [Description] = 'Koromira', [Definition] = NULL, [SortOrder] = 3307.00 WHERE [Code] = 'kqj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpr', 'Koronadal Blaan', NULL, 329.50) END +VALUES ('bpr', 'Koronadal Blaan', NULL, 3308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koronadal Blaan', [Definition] = NULL, [SortOrder] = 329.50 WHERE [Code] = 'bpr' END +SET [Description] = 'Koronadal Blaan', [Definition] = NULL, [SortOrder] = 3308.00 WHERE [Code] = 'bpr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkq', 'Koroni', NULL, 329.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koroni', [Definition] = NULL, [SortOrder] = 329.60 WHERE [Code] = 'xkq' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krp', 'Korop', NULL, 329.70) END +VALUES ('xkq', 'Koroni', NULL, 3309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korop', [Definition] = NULL, [SortOrder] = 329.70 WHERE [Code] = 'krp' END +SET [Description] = 'Koroni', [Definition] = NULL, [SortOrder] = 3309.00 WHERE [Code] = 'xkq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxr', 'Koropó', NULL, 329.80) END +VALUES ('xxr', 'Koropó', NULL, 3310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koropó', [Definition] = NULL, [SortOrder] = 329.80 WHERE [Code] = 'xxr' END +SET [Description] = 'Koropó', [Definition] = NULL, [SortOrder] = 3310.00 WHERE [Code] = 'xxr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktl', 'Koroshi', NULL, 329.90) END +VALUES ('ktl', 'Koroshi', NULL, 3311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koroshi', [Definition] = NULL, [SortOrder] = 329.90 WHERE [Code] = 'ktl' END +SET [Description] = 'Koroshi', [Definition] = NULL, [SortOrder] = 3311.00 WHERE [Code] = 'ktl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khe', 'Korowai', NULL, 330.00) END +VALUES ('khe', 'Korowai', NULL, 3312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korowai', [Definition] = NULL, [SortOrder] = 330.00 WHERE [Code] = 'khe' END +SET [Description] = 'Korowai', [Definition] = NULL, [SortOrder] = 3312.00 WHERE [Code] = 'khe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfd', 'Korra Koraga', NULL, 330.10) END +VALUES ('kfd', 'Korra Koraga', NULL, 3313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korra Koraga', [Definition] = NULL, [SortOrder] = 330.10 WHERE [Code] = 'kfd' END +SET [Description] = 'Korra Koraga', [Definition] = NULL, [SortOrder] = 3313.00 WHERE [Code] = 'kfd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xor', 'Korubo', NULL, 330.20) END +VALUES ('xor', 'Korubo', NULL, 3314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korubo', [Definition] = NULL, [SortOrder] = 330.20 WHERE [Code] = 'xor' END +SET [Description] = 'Korubo', [Definition] = NULL, [SortOrder] = 3314.00 WHERE [Code] = 'xor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpq', 'Korupun-Sela', NULL, 330.30) END +VALUES ('kpq', 'Korupun-Sela', NULL, 3315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korupun-Sela', [Definition] = NULL, [SortOrder] = 330.30 WHERE [Code] = 'kpq' END +SET [Description] = 'Korupun-Sela', [Definition] = NULL, [SortOrder] = 3315.00 WHERE [Code] = 'kpq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfp', 'Korwa', NULL, 330.40) END +VALUES ('kfp', 'Korwa', NULL, 3316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Korwa', [Definition] = NULL, [SortOrder] = 330.40 WHERE [Code] = 'kfp' END +SET [Description] = 'Korwa', [Definition] = NULL, [SortOrder] = 3316.00 WHERE [Code] = 'kfp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpy', 'Koryak', NULL, 330.50) END +VALUES ('kpy', 'Koryak', NULL, 3317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koryak', [Definition] = NULL, [SortOrder] = 330.50 WHERE [Code] = 'kpy' END +SET [Description] = 'Koryak', [Definition] = NULL, [SortOrder] = 3317.00 WHERE [Code] = 'kpy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiq', 'Kosadle', NULL, 330.60) END +VALUES ('kiq', 'Kosadle', NULL, 3318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kosadle', [Definition] = NULL, [SortOrder] = 330.60 WHERE [Code] = 'kiq' END +SET [Description] = 'Kosadle', [Definition] = NULL, [SortOrder] = 3318.00 WHERE [Code] = 'kiq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkl', 'Kosarek Yale', NULL, 330.70) END +VALUES ('kkl', 'Kosarek Yale', NULL, 3319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kosarek Yale', [Definition] = NULL, [SortOrder] = 330.70 WHERE [Code] = 'kkl' END +SET [Description] = 'Kosarek Yale', [Definition] = NULL, [SortOrder] = 3319.00 WHERE [Code] = 'kkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kze', 'Kosena', NULL, 330.80) END +VALUES ('kze', 'Kosena', NULL, 3320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kosena', [Definition] = NULL, [SortOrder] = 330.80 WHERE [Code] = 'kze' END +SET [Description] = 'Kosena', [Definition] = NULL, [SortOrder] = 3320.00 WHERE [Code] = 'kze' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kid', 'Koshin', NULL, 330.90) END +VALUES ('kid', 'Koshin', NULL, 3321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koshin', [Definition] = NULL, [SortOrder] = 330.90 WHERE [Code] = 'kid' END +SET [Description] = 'Koshin', [Definition] = NULL, [SortOrder] = 3321.00 WHERE [Code] = 'kid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kos', 'Kosraean', NULL, 331.00) END +VALUES ('kos', 'Kosraean', NULL, 3322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kosraean', [Definition] = NULL, [SortOrder] = 331.00 WHERE [Code] = 'kos' END +SET [Description] = 'Kosraean', [Definition] = NULL, [SortOrder] = 3322.00 WHERE [Code] = 'kos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koq', 'Kota (Gabon)', NULL, 331.10) END +VALUES ('koq', 'Kota (Gabon)', NULL, 3323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kota (Gabon)', [Definition] = NULL, [SortOrder] = 331.10 WHERE [Code] = 'koq' END +SET [Description] = 'Kota (Gabon)', [Definition] = NULL, [SortOrder] = 3323.00 WHERE [Code] = 'koq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfe', 'Kota (India)', NULL, 331.20) END +VALUES ('kfe', 'Kota (India)', NULL, 3324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kota (India)', [Definition] = NULL, [SortOrder] = 331.20 WHERE [Code] = 'kfe' END +SET [Description] = 'Kota (India)', [Definition] = NULL, [SortOrder] = 3324.00 WHERE [Code] = 'kfe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqg', 'Kota Bangun Kutai Malay', NULL, 331.30) END +VALUES ('mqg', 'Kota Bangun Kutai Malay', NULL, 3325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kota Bangun Kutai Malay', [Definition] = NULL, [SortOrder] = 331.30 WHERE [Code] = 'mqg' END +SET [Description] = 'Kota Bangun Kutai Malay', [Definition] = NULL, [SortOrder] = 3325.00 WHERE [Code] = 'mqg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grm', 'Kota Marudu Talantang', NULL, 331.40) END +VALUES ('grm', 'Kota Marudu Talantang', NULL, 3326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kota Marudu Talantang', [Definition] = NULL, [SortOrder] = 331.40 WHERE [Code] = 'grm' END +SET [Description] = 'Kota Marudu Talantang', [Definition] = NULL, [SortOrder] = 3326.00 WHERE [Code] = 'grm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqk', 'Kotafon Gbe', NULL, 331.50) END +VALUES ('kqk', 'Kotafon Gbe', NULL, 3327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kotafon Gbe', [Definition] = NULL, [SortOrder] = 331.50 WHERE [Code] = 'kqk' END +SET [Description] = 'Kotafon Gbe', [Definition] = NULL, [SortOrder] = 3327.00 WHERE [Code] = 'kqk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'avk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('avk', 'Kotava', NULL, 331.60) END +VALUES ('avk', 'Kotava', NULL, 3328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kotava', [Definition] = NULL, [SortOrder] = 331.60 WHERE [Code] = 'avk' END +SET [Description] = 'Kotava', [Definition] = NULL, [SortOrder] = 3328.00 WHERE [Code] = 'avk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eko', 'Koti', NULL, 331.70) END +VALUES ('eko', 'Koti', NULL, 3329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koti', [Definition] = NULL, [SortOrder] = 331.70 WHERE [Code] = 'eko' END +SET [Description] = 'Koti', [Definition] = NULL, [SortOrder] = 3329.00 WHERE [Code] = 'eko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zko', 'Kott', NULL, 331.80) END +VALUES ('zko', 'Kott', NULL, 3330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kott', [Definition] = NULL, [SortOrder] = 331.80 WHERE [Code] = 'zko' END +SET [Description] = 'Kott', [Definition] = NULL, [SortOrder] = 3330.00 WHERE [Code] = 'zko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snz', 'Kou', NULL, 331.90) END +VALUES ('snz', 'Kou', NULL, 3331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kou', [Definition] = NULL, [SortOrder] = 331.90 WHERE [Code] = 'snz' END +SET [Description] = 'Kou', [Definition] = NULL, [SortOrder] = 3331.00 WHERE [Code] = 'snz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyf', 'Kouya', NULL, 332.00) END +VALUES ('kyf', 'Kouya', NULL, 3332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kouya', [Definition] = NULL, [SortOrder] = 332.00 WHERE [Code] = 'kyf' END +SET [Description] = 'Kouya', [Definition] = NULL, [SortOrder] = 3332.00 WHERE [Code] = 'kyf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqb', 'Kovai', NULL, 332.10) END +VALUES ('kqb', 'Kovai', NULL, 3333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kovai', [Definition] = NULL, [SortOrder] = 332.10 WHERE [Code] = 'kqb' END +SET [Description] = 'Kovai', [Definition] = NULL, [SortOrder] = 3333.00 WHERE [Code] = 'kqb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvc', 'Kove', NULL, 332.20) END +VALUES ('kvc', 'Kove', NULL, 3334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kove', [Definition] = NULL, [SortOrder] = 332.20 WHERE [Code] = 'kvc' END +SET [Description] = 'Kove', [Definition] = NULL, [SortOrder] = 3334.00 WHERE [Code] = 'kvc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xow', 'Kowaki', NULL, 332.30) END +VALUES ('xow', 'Kowaki', NULL, 3335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kowaki', [Definition] = NULL, [SortOrder] = 332.30 WHERE [Code] = 'xow' END +SET [Description] = 'Kowaki', [Definition] = NULL, [SortOrder] = 3335.00 WHERE [Code] = 'xow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwh', 'Kowiai', NULL, 332.40) END +VALUES ('kwh', 'Kowiai', NULL, 3336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kowiai', [Definition] = NULL, [SortOrder] = 332.40 WHERE [Code] = 'kwh' END +SET [Description] = 'Kowiai', [Definition] = NULL, [SortOrder] = 3336.00 WHERE [Code] = 'kwh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqd', 'Koy Sanjaq Surat', NULL, 332.50) END +VALUES ('kqd', 'Koy Sanjaq Surat', NULL, 3337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koy Sanjaq Surat', [Definition] = NULL, [SortOrder] = 332.50 WHERE [Code] = 'kqd' END +SET [Description] = 'Koy Sanjaq Surat', [Definition] = NULL, [SortOrder] = 3337.00 WHERE [Code] = 'kqd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kff') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kff', 'Koya', NULL, 332.60) END +VALUES ('kff', 'Koya', NULL, 3338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koya', [Definition] = NULL, [SortOrder] = 332.60 WHERE [Code] = 'kff' END +SET [Description] = 'Koya', [Definition] = NULL, [SortOrder] = 3338.00 WHERE [Code] = 'kff' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kga', 'Koyaga', NULL, 332.70) END +VALUES ('kga', 'Koyaga', NULL, 3339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyaga', [Definition] = NULL, [SortOrder] = 332.70 WHERE [Code] = 'kga' END +SET [Description] = 'Koyaga', [Definition] = NULL, [SortOrder] = 3339.00 WHERE [Code] = 'kga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koh', 'Koyo', NULL, 332.80) END +VALUES ('koh', 'Koyo', NULL, 3340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyo', [Definition] = NULL, [SortOrder] = 332.80 WHERE [Code] = 'koh' END +SET [Description] = 'Koyo', [Definition] = NULL, [SortOrder] = 3340.00 WHERE [Code] = 'koh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khq', 'Koyra Chiini Songhay', NULL, 332.90) END +VALUES ('khq', 'Koyra Chiini Songhay', NULL, 3341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyra Chiini Songhay', [Definition] = NULL, [SortOrder] = 332.90 WHERE [Code] = 'khq' END +SET [Description] = 'Koyra Chiini Songhay', [Definition] = NULL, [SortOrder] = 3341.00 WHERE [Code] = 'khq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ses') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ses', 'Koyraboro Senni Songhai', NULL, 333.00) END +VALUES ('ses', 'Koyraboro Senni Songhai', NULL, 3342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyraboro Senni Songhai', [Definition] = NULL, [SortOrder] = 333.00 WHERE [Code] = 'ses' END +SET [Description] = 'Koyraboro Senni Songhai', [Definition] = NULL, [SortOrder] = 3342.00 WHERE [Code] = 'ses' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koy', 'Koyukon', NULL, 333.10) END +VALUES ('koy', 'Koyukon', NULL, 3343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Koyukon', [Definition] = NULL, [SortOrder] = 333.10 WHERE [Code] = 'koy' END +SET [Description] = 'Koyukon', [Definition] = NULL, [SortOrder] = 3343.00 WHERE [Code] = 'koy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuw', 'Kpagua', NULL, 333.20) END +VALUES ('kuw', 'Kpagua', NULL, 3344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpagua', [Definition] = NULL, [SortOrder] = 333.20 WHERE [Code] = 'kuw' END +SET [Description] = 'Kpagua', [Definition] = NULL, [SortOrder] = 3344.00 WHERE [Code] = 'kuw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpl', 'Kpala', NULL, 333.30) END +VALUES ('kpl', 'Kpala', NULL, 3345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpala', [Definition] = NULL, [SortOrder] = 333.30 WHERE [Code] = 'kpl' END +SET [Description] = 'Kpala', [Definition] = NULL, [SortOrder] = 3345.00 WHERE [Code] = 'kpl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpk', 'Kpan', NULL, 333.40) END +VALUES ('kpk', 'Kpan', NULL, 3346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpan', [Definition] = NULL, [SortOrder] = 333.40 WHERE [Code] = 'kpk' END +SET [Description] = 'Kpan', [Definition] = NULL, [SortOrder] = 3346.00 WHERE [Code] = 'kpk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbn', 'Kpasam', NULL, 333.50) END +VALUES ('pbn', 'Kpasam', NULL, 3347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpasam', [Definition] = NULL, [SortOrder] = 333.50 WHERE [Code] = 'pbn' END +SET [Description] = 'Kpasam', [Definition] = NULL, [SortOrder] = 3347.00 WHERE [Code] = 'pbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'koc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('koc', 'Kpati', NULL, 333.60) END +VALUES ('koc', 'Kpati', NULL, 3348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpati', [Definition] = NULL, [SortOrder] = 333.60 WHERE [Code] = 'koc' END +SET [Description] = 'Kpati', [Definition] = NULL, [SortOrder] = 3348.00 WHERE [Code] = 'koc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kym', 'Kpatili', NULL, 333.70) END +VALUES ('kym', 'Kpatili', NULL, 3349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpatili', [Definition] = NULL, [SortOrder] = 333.70 WHERE [Code] = 'kym' END +SET [Description] = 'Kpatili', [Definition] = NULL, [SortOrder] = 3349.00 WHERE [Code] = 'kym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpo', 'Kpeego', NULL, 333.80) END +VALUES ('cpo', 'Kpeego', NULL, 3350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpeego', [Definition] = NULL, [SortOrder] = 333.80 WHERE [Code] = 'cpo' END +SET [Description] = 'Kpeego', [Definition] = NULL, [SortOrder] = 3350.00 WHERE [Code] = 'cpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpe', 'Kpelle', NULL, 333.90) END +VALUES ('kpe', 'Kpelle', NULL, 3351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpelle', [Definition] = NULL, [SortOrder] = 333.90 WHERE [Code] = 'kpe' END +SET [Description] = 'Kpelle', [Definition] = NULL, [SortOrder] = 3351.00 WHERE [Code] = 'kpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kef', 'Kpessi', NULL, 334.00) END +VALUES ('kef', 'Kpessi', NULL, 3352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kpessi', [Definition] = NULL, [SortOrder] = 334.00 WHERE [Code] = 'kef' END +SET [Description] = 'Kpessi', [Definition] = NULL, [SortOrder] = 3352.00 WHERE [Code] = 'kef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kph', 'Kplang', NULL, 334.10) END +VALUES ('kph', 'Kplang', NULL, 3353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kplang', [Definition] = NULL, [SortOrder] = 334.10 WHERE [Code] = 'kph' END +SET [Description] = 'Kplang', [Definition] = NULL, [SortOrder] = 3353.00 WHERE [Code] = 'kph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kye', 'Krache', NULL, 334.20) END +VALUES ('kye', 'Krache', NULL, 3354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krache', [Definition] = NULL, [SortOrder] = 334.20 WHERE [Code] = 'kye' END +SET [Description] = 'Krache', [Definition] = NULL, [SortOrder] = 3354.00 WHERE [Code] = 'kye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xra', 'Krahô', NULL, 334.30) END +VALUES ('xra', 'Krahô', NULL, 3355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krahô', [Definition] = NULL, [SortOrder] = 334.30 WHERE [Code] = 'xra' END +SET [Description] = 'Krahô', [Definition] = NULL, [SortOrder] = 3355.00 WHERE [Code] = 'xra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rka', 'Kraol', NULL, 334.40) END +VALUES ('rka', 'Kraol', NULL, 3356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kraol', [Definition] = NULL, [SortOrder] = 334.40 WHERE [Code] = 'rka' END +SET [Description] = 'Kraol', [Definition] = NULL, [SortOrder] = 3356.00 WHERE [Code] = 'rka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqq', 'Krenak', NULL, 334.50) END +VALUES ('kqq', 'Krenak', NULL, 3357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krenak', [Definition] = NULL, [SortOrder] = 334.50 WHERE [Code] = 'kqq' END +SET [Description] = 'Krenak', [Definition] = NULL, [SortOrder] = 3357.00 WHERE [Code] = 'kqq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkv', 'Krevinian', NULL, 334.60) END +VALUES ('zkv', 'Krevinian', NULL, 3358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krevinian', [Definition] = NULL, [SortOrder] = 334.60 WHERE [Code] = 'zkv' END +SET [Description] = 'Krevinian', [Definition] = NULL, [SortOrder] = 3358.00 WHERE [Code] = 'zkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xre', 'Kreye', NULL, 334.70) END +VALUES ('xre', 'Kreye', NULL, 3359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kreye', [Definition] = NULL, [SortOrder] = 334.70 WHERE [Code] = 'xre' END +SET [Description] = 'Kreye', [Definition] = NULL, [SortOrder] = 3359.00 WHERE [Code] = 'xre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngt', 'Kriang', NULL, 334.80) END +VALUES ('ngt', 'Kriang', NULL, 3360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kriang', [Definition] = NULL, [SortOrder] = 334.80 WHERE [Code] = 'ngt' END +SET [Description] = 'Kriang', [Definition] = NULL, [SortOrder] = 3360.00 WHERE [Code] = 'ngt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xri', 'Krikati-Timbira', NULL, 334.90) END +VALUES ('xri', 'Krikati-Timbira', NULL, 3361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krikati-Timbira', [Definition] = NULL, [SortOrder] = 334.90 WHERE [Code] = 'xri' END +SET [Description] = 'Krikati-Timbira', [Definition] = NULL, [SortOrder] = 3361.00 WHERE [Code] = 'xri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kri', 'Krio', NULL, 335.00) END +VALUES ('kri', 'Krio', NULL, 3362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krio', [Definition] = NULL, [SortOrder] = 335.00 WHERE [Code] = 'kri' END +SET [Description] = 'Krio', [Definition] = NULL, [SortOrder] = 3362.00 WHERE [Code] = 'kri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rop', 'Kriol', NULL, 335.10) END +VALUES ('rop', 'Kriol', NULL, 3363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kriol', [Definition] = NULL, [SortOrder] = 335.10 WHERE [Code] = 'rop' END +SET [Description] = 'Kriol', [Definition] = NULL, [SortOrder] = 3363.00 WHERE [Code] = 'rop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksi', 'Krisa', NULL, 335.20) END +VALUES ('ksi', 'Krisa', NULL, 3364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krisa', [Definition] = NULL, [SortOrder] = 335.20 WHERE [Code] = 'ksi' END +SET [Description] = 'Krisa', [Definition] = NULL, [SortOrder] = 3364.00 WHERE [Code] = 'ksi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxb', 'Krobu', NULL, 335.30) END +VALUES ('kxb', 'Krobu', NULL, 3365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krobu', [Definition] = NULL, [SortOrder] = 335.30 WHERE [Code] = 'kxb' END +SET [Description] = 'Krobu', [Definition] = NULL, [SortOrder] = 3365.00 WHERE [Code] = 'kxb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgo', 'Krongo', NULL, 335.40) END +VALUES ('kgo', 'Krongo', NULL, 3366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krongo', [Definition] = NULL, [SortOrder] = 335.40 WHERE [Code] = 'kgo' END +SET [Description] = 'Krongo', [Definition] = NULL, [SortOrder] = 3366.00 WHERE [Code] = 'kgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krr', 'Krung', NULL, 335.50) END +VALUES ('krr', 'Krung', NULL, 3367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krung', [Definition] = NULL, [SortOrder] = 335.50 WHERE [Code] = 'krr' END +SET [Description] = 'Krung', [Definition] = NULL, [SortOrder] = 3367.00 WHERE [Code] = 'krr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jct', 'Krymchak', NULL, 335.60) END +VALUES ('jct', 'Krymchak', NULL, 3368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Krymchak', [Definition] = NULL, [SortOrder] = 335.60 WHERE [Code] = 'jct' END +SET [Description] = 'Krymchak', [Definition] = NULL, [SortOrder] = 3368.00 WHERE [Code] = 'jct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kry', 'Kryts', NULL, 335.70) END +VALUES ('kry', 'Kryts', NULL, 3369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kryts', [Definition] = NULL, [SortOrder] = 335.70 WHERE [Code] = 'kry' END +SET [Description] = 'Kryts', [Definition] = NULL, [SortOrder] = 3369.00 WHERE [Code] = 'kry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyu', 'Kua', NULL, 335.80) END +VALUES ('tyu', 'Kua', NULL, 3370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kua', [Definition] = NULL, [SortOrder] = 335.80 WHERE [Code] = 'tyu' END +SET [Description] = 'Kua', [Definition] = NULL, [SortOrder] = 3370.00 WHERE [Code] = 'tyu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykn', 'Kua-nsi', NULL, 335.90) END +VALUES ('ykn', 'Kua-nsi', NULL, 3371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kua-nsi', [Definition] = NULL, [SortOrder] = 335.90 WHERE [Code] = 'ykn' END +SET [Description] = 'Kua-nsi', [Definition] = NULL, [SortOrder] = 3371.00 WHERE [Code] = 'ykn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yku', 'Kuamasi', NULL, 336.00) END +VALUES ('yku', 'Kuamasi', NULL, 3372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuamasi', [Definition] = NULL, [SortOrder] = 336.00 WHERE [Code] = 'yku' END +SET [Description] = 'Kuamasi', [Definition] = NULL, [SortOrder] = 3372.00 WHERE [Code] = 'yku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uan', 'Kuan', NULL, 336.10) END +VALUES ('uan', 'Kuan', NULL, 3373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuan', [Definition] = NULL, [SortOrder] = 336.10 WHERE [Code] = 'uan' END +SET [Description] = 'Kuan', [Definition] = NULL, [SortOrder] = 3373.00 WHERE [Code] = 'uan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnh', 'Kuanhua', NULL, 336.20) END +VALUES ('xnh', 'Kuanhua', NULL, 3374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuanhua', [Definition] = NULL, [SortOrder] = 336.20 WHERE [Code] = 'xnh' END +SET [Description] = 'Kuanhua', [Definition] = NULL, [SortOrder] = 3374.00 WHERE [Code] = 'xnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksd', 'Kuanua', NULL, 336.30) END +VALUES ('ksd', 'Kuanua', NULL, 3375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuanua', [Definition] = NULL, [SortOrder] = 336.30 WHERE [Code] = 'ksd' END +SET [Description] = 'Kuanua', [Definition] = NULL, [SortOrder] = 3375.00 WHERE [Code] = 'ksd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kua', 'Kuanyama', NULL, 336.40) END +VALUES ('kua', 'Kuanyama', NULL, 3376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuanyama', [Definition] = NULL, [SortOrder] = 336.40 WHERE [Code] = 'kua' END +SET [Description] = 'Kuanyama', [Definition] = NULL, [SortOrder] = 3376.00 WHERE [Code] = 'kua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugh', 'Kubachi', NULL, 336.50) END +VALUES ('ugh', 'Kubachi', NULL, 3377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kubachi', [Definition] = NULL, [SortOrder] = 336.50 WHERE [Code] = 'ugh' END +SET [Description] = 'Kubachi', [Definition] = NULL, [SortOrder] = 3377.00 WHERE [Code] = 'ugh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgf', 'Kube', NULL, 336.60) END +VALUES ('kgf', 'Kube', NULL, 3378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kube', [Definition] = NULL, [SortOrder] = 336.60 WHERE [Code] = 'kgf' END +SET [Description] = 'Kube', [Definition] = NULL, [SortOrder] = 3378.00 WHERE [Code] = 'kgf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kof', 'Kubi', NULL, 336.70) END +VALUES ('kof', 'Kubi', NULL, 3379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kubi', [Definition] = NULL, [SortOrder] = 336.70 WHERE [Code] = 'kof' END +SET [Description] = 'Kubi', [Definition] = NULL, [SortOrder] = 3379.00 WHERE [Code] = 'kof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jko', 'Kubo', NULL, 336.80) END +VALUES ('jko', 'Kubo', NULL, 3380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kubo', [Definition] = NULL, [SortOrder] = 336.80 WHERE [Code] = 'jko' END +SET [Description] = 'Kubo', [Definition] = NULL, [SortOrder] = 3380.00 WHERE [Code] = 'jko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvb', 'Kubu', NULL, 336.90) END +VALUES ('kvb', 'Kubu', NULL, 3381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kubu', [Definition] = NULL, [SortOrder] = 336.90 WHERE [Code] = 'kvb' END +SET [Description] = 'Kubu', [Definition] = NULL, [SortOrder] = 3381.00 WHERE [Code] = 'kvb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkc', 'Kucong', NULL, 337.00) END +VALUES ('lkc', 'Kucong', NULL, 3382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kucong', [Definition] = NULL, [SortOrder] = 337.00 WHERE [Code] = 'lkc' END +SET [Description] = 'Kucong', [Definition] = NULL, [SortOrder] = 3382.00 WHERE [Code] = 'lkc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfg', 'Kudiya', NULL, 337.10) END +VALUES ('kfg', 'Kudiya', NULL, 3383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kudiya', [Definition] = NULL, [SortOrder] = 337.10 WHERE [Code] = 'kfg' END +SET [Description] = 'Kudiya', [Definition] = NULL, [SortOrder] = 3383.00 WHERE [Code] = 'kfg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyw', 'Kudmali', NULL, 337.20) END +VALUES ('kyw', 'Kudmali', NULL, 3384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kudmali', [Definition] = NULL, [SortOrder] = 337.20 WHERE [Code] = 'kyw' END +SET [Description] = 'Kudmali', [Definition] = NULL, [SortOrder] = 3384.00 WHERE [Code] = 'kyw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kov', 'Kudu-Camo', NULL, 337.30) END +VALUES ('kov', 'Kudu-Camo', NULL, 3385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kudu-Camo', [Definition] = NULL, [SortOrder] = 337.30 WHERE [Code] = 'kov' END +SET [Description] = 'Kudu-Camo', [Definition] = NULL, [SortOrder] = 3385.00 WHERE [Code] = 'kov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqx', 'Kufr Qassem Sign Language (KQSL)', NULL, 337.40) END +VALUES ('sqx', 'Kufr Qassem Sign Language (KQSL)', NULL, 3386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kufr Qassem Sign Language (KQSL)', [Definition] = NULL, [SortOrder] = 337.40 WHERE [Code] = 'sqx' END +SET [Description] = 'Kufr Qassem Sign Language (KQSL)', [Definition] = NULL, [SortOrder] = 3386.00 WHERE [Code] = 'sqx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kow', 'Kugama', NULL, 337.50) END +VALUES ('kow', 'Kugama', NULL, 3387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kugama', [Definition] = NULL, [SortOrder] = 337.50 WHERE [Code] = 'kow' END +SET [Description] = 'Kugama', [Definition] = NULL, [SortOrder] = 3387.00 WHERE [Code] = 'kow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kes', 'Kugbo', NULL, 337.60) END +VALUES ('kes', 'Kugbo', NULL, 3388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kugbo', [Definition] = NULL, [SortOrder] = 337.60 WHERE [Code] = 'kes' END +SET [Description] = 'Kugbo', [Definition] = NULL, [SortOrder] = 3388.00 WHERE [Code] = 'kes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmh', 'Kugu-Muminh', NULL, 337.70) END +VALUES ('xmh', 'Kugu-Muminh', NULL, 3389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kugu-Muminh', [Definition] = NULL, [SortOrder] = 337.70 WHERE [Code] = 'xmh' END +SET [Description] = 'Kugu-Muminh', [Definition] = NULL, [SortOrder] = 3389.00 WHERE [Code] = 'xmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uki', 'Kui (India)', NULL, 337.80) END +VALUES ('uki', 'Kui (India)', NULL, 3390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kui (India)', [Definition] = NULL, [SortOrder] = 337.80 WHERE [Code] = 'uki' END +SET [Description] = 'Kui (India)', [Definition] = NULL, [SortOrder] = 3390.00 WHERE [Code] = 'uki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvd', 'Kui (Indonesia)', NULL, 337.90) END +VALUES ('kvd', 'Kui (Indonesia)', NULL, 3391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kui (Indonesia)', [Definition] = NULL, [SortOrder] = 337.90 WHERE [Code] = 'kvd' END +SET [Description] = 'Kui (Indonesia)', [Definition] = NULL, [SortOrder] = 3391.00 WHERE [Code] = 'kvd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dkr', 'Kuijau', NULL, 338.00) END +VALUES ('dkr', 'Kuijau', NULL, 3392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuijau', [Definition] = NULL, [SortOrder] = 338.00 WHERE [Code] = 'dkr' END +SET [Description] = 'Kuijau', [Definition] = NULL, [SortOrder] = 3392.00 WHERE [Code] = 'dkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kui', 'Kuikúro-Kalapálo', NULL, 338.10) END +VALUES ('kui', 'Kuikúro-Kalapálo', NULL, 3393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuikúro-Kalapálo', [Definition] = NULL, [SortOrder] = 338.10 WHERE [Code] = 'kui' END +SET [Description] = 'Kuikúro-Kalapálo', [Definition] = NULL, [SortOrder] = 3393.00 WHERE [Code] = 'kui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkj', 'Kujarge', NULL, 338.20) END +VALUES ('vkj', 'Kujarge', NULL, 3394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kujarge', [Definition] = NULL, [SortOrder] = 338.20 WHERE [Code] = 'vkj' END +SET [Description] = 'Kujarge', [Definition] = NULL, [SortOrder] = 3394.00 WHERE [Code] = 'vkj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfn', 'Kuk', NULL, 338.30) END +VALUES ('kfn', 'Kuk', NULL, 3395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuk', [Definition] = NULL, [SortOrder] = 338.30 WHERE [Code] = 'kfn' END +SET [Description] = 'Kuk', [Definition] = NULL, [SortOrder] = 3395.00 WHERE [Code] = 'kfn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kux', 'Kukatja', NULL, 338.40) END +VALUES ('kux', 'Kukatja', NULL, 3396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kukatja', [Definition] = NULL, [SortOrder] = 338.40 WHERE [Code] = 'kux' END +SET [Description] = 'Kukatja', [Definition] = NULL, [SortOrder] = 3396.00 WHERE [Code] = 'kux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ght') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ght', 'Kuke', NULL, 338.50) END +VALUES ('ght', 'Kuke', NULL, 3397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuke', [Definition] = NULL, [SortOrder] = 338.50 WHERE [Code] = 'ght' END +SET [Description] = 'Kuke', [Definition] = NULL, [SortOrder] = 3397.00 WHERE [Code] = 'ght' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kez', 'Kukele', NULL, 338.60) END +VALUES ('kez', 'Kukele', NULL, 3398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kukele', [Definition] = NULL, [SortOrder] = 338.60 WHERE [Code] = 'kez' END +SET [Description] = 'Kukele', [Definition] = NULL, [SortOrder] = 3398.00 WHERE [Code] = 'kez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kex', 'Kukna', NULL, 338.70) END +VALUES ('kex', 'Kukna', NULL, 3399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kukna', [Definition] = NULL, [SortOrder] = 338.70 WHERE [Code] = 'kex' END +SET [Description] = 'Kukna', [Definition] = NULL, [SortOrder] = 3399.00 WHERE [Code] = 'kex' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukv', 'Kuku', NULL, 338.80) END +VALUES ('ukv', 'Kuku', NULL, 3400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku', [Definition] = NULL, [SortOrder] = 338.80 WHERE [Code] = 'ukv' END +SET [Description] = 'Kuku', [Definition] = NULL, [SortOrder] = 3400.00 WHERE [Code] = 'ukv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmq', 'Kuku-Mangk', NULL, 338.90) END +VALUES ('xmq', 'Kuku-Mangk', NULL, 3401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Mangk', [Definition] = NULL, [SortOrder] = 338.90 WHERE [Code] = 'xmq' END +SET [Description] = 'Kuku-Mangk', [Definition] = NULL, [SortOrder] = 3401.00 WHERE [Code] = 'xmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmp', 'Kuku-Mu''inh', NULL, 339.00) END +VALUES ('xmp', 'Kuku-Mu''inh', NULL, 3402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Mu''inh', [Definition] = NULL, [SortOrder] = 339.00 WHERE [Code] = 'xmp' END +SET [Description] = 'Kuku-Mu''inh', [Definition] = NULL, [SortOrder] = 3402.00 WHERE [Code] = 'xmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugb', 'Kuku-Ugbanh', NULL, 339.10) END +VALUES ('ugb', 'Kuku-Ugbanh', NULL, 3403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Ugbanh', [Definition] = NULL, [SortOrder] = 339.10 WHERE [Code] = 'ugb' END +SET [Description] = 'Kuku-Ugbanh', [Definition] = NULL, [SortOrder] = 3403.00 WHERE [Code] = 'ugb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uwa', 'Kuku-Uwanh', NULL, 339.20) END +VALUES ('uwa', 'Kuku-Uwanh', NULL, 3404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Uwanh', [Definition] = NULL, [SortOrder] = 339.20 WHERE [Code] = 'uwa' END +SET [Description] = 'Kuku-Uwanh', [Definition] = NULL, [SortOrder] = 3404.00 WHERE [Code] = 'uwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvn', 'Kuku-Yalanji', NULL, 339.30) END +VALUES ('gvn', 'Kuku-Yalanji', NULL, 3405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuku-Yalanji', [Definition] = NULL, [SortOrder] = 339.30 WHERE [Code] = 'gvn' END +SET [Description] = 'Kuku-Yalanji', [Definition] = NULL, [SortOrder] = 3405.00 WHERE [Code] = 'gvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpg', 'Kula', NULL, 339.40) END +VALUES ('tpg', 'Kula', NULL, 3406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kula', [Definition] = NULL, [SortOrder] = 339.40 WHERE [Code] = 'tpg' END +SET [Description] = 'Kula', [Definition] = NULL, [SortOrder] = 3406.00 WHERE [Code] = 'tpg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kul', 'Kulere', NULL, 339.50) END +VALUES ('kul', 'Kulere', NULL, 3407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulere', [Definition] = NULL, [SortOrder] = 339.50 WHERE [Code] = 'kul' END +SET [Description] = 'Kulere', [Definition] = NULL, [SortOrder] = 3407.00 WHERE [Code] = 'kul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxj', 'Kulfa', NULL, 339.60) END +VALUES ('kxj', 'Kulfa', NULL, 3408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulfa', [Definition] = NULL, [SortOrder] = 339.60 WHERE [Code] = 'kxj' END +SET [Description] = 'Kulfa', [Definition] = NULL, [SortOrder] = 3408.00 WHERE [Code] = 'kxj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpk', 'Kulina Pano', NULL, 339.70) END +VALUES ('xpk', 'Kulina Pano', NULL, 3409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulina Pano', [Definition] = NULL, [SortOrder] = 339.70 WHERE [Code] = 'xpk' END +SET [Description] = 'Kulina Pano', [Definition] = NULL, [SortOrder] = 3409.00 WHERE [Code] = 'xpk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkl', 'Kulisusu', NULL, 339.80) END +VALUES ('vkl', 'Kulisusu', NULL, 3410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulisusu', [Definition] = NULL, [SortOrder] = 339.80 WHERE [Code] = 'vkl' END +SET [Description] = 'Kulisusu', [Definition] = NULL, [SortOrder] = 3410.00 WHERE [Code] = 'vkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfx', 'Kullu Pahari', NULL, 339.90) END +VALUES ('kfx', 'Kullu Pahari', NULL, 3411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kullu Pahari', [Definition] = NULL, [SortOrder] = 339.90 WHERE [Code] = 'kfx' END +SET [Description] = 'Kullu Pahari', [Definition] = NULL, [SortOrder] = 3411.00 WHERE [Code] = 'kfx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uon', 'Kulon', NULL, 340.00) END +VALUES ('uon', 'Kulon', NULL, 3412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulon', [Definition] = NULL, [SortOrder] = 340.00 WHERE [Code] = 'uon' END +SET [Description] = 'Kulon', [Definition] = NULL, [SortOrder] = 3412.00 WHERE [Code] = 'uon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kle', 'Kulung (Nepal)', NULL, 340.10) END +VALUES ('kle', 'Kulung (Nepal)', NULL, 3413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulung (Nepal)', [Definition] = NULL, [SortOrder] = 340.10 WHERE [Code] = 'kle' END +SET [Description] = 'Kulung (Nepal)', [Definition] = NULL, [SortOrder] = 3413.00 WHERE [Code] = 'kle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbu', 'Kulung (Nigeria)', NULL, 340.20) END +VALUES ('bbu', 'Kulung (Nigeria)', NULL, 3414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kulung (Nigeria)', [Definition] = NULL, [SortOrder] = 340.20 WHERE [Code] = 'bbu' END +SET [Description] = 'Kulung (Nigeria)', [Definition] = NULL, [SortOrder] = 3414.00 WHERE [Code] = 'bbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksl', 'Kumalu', NULL, 340.30) END +VALUES ('ksl', 'Kumalu', NULL, 3415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumalu', [Definition] = NULL, [SortOrder] = 340.30 WHERE [Code] = 'ksl' END +SET [Description] = 'Kumalu', [Definition] = NULL, [SortOrder] = 3415.00 WHERE [Code] = 'ksl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdi', 'Kumam', NULL, 340.40) END +VALUES ('kdi', 'Kumam', NULL, 3416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumam', [Definition] = NULL, [SortOrder] = 340.40 WHERE [Code] = 'kdi' END +SET [Description] = 'Kumam', [Definition] = NULL, [SortOrder] = 3416.00 WHERE [Code] = 'kdi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kue', 'Kuman (Papua New Guinea)', NULL, 340.50) END +VALUES ('kue', 'Kuman (Papua New Guinea)', NULL, 3417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuman (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 340.50 WHERE [Code] = 'kue' END +SET [Description] = 'Kuman (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3417.00 WHERE [Code] = 'kue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwm', 'Kuman (Russia)', NULL, 340.60) END +VALUES ('qwm', 'Kuman (Russia)', NULL, 3418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuman (Russia)', [Definition] = NULL, [SortOrder] = 340.60 WHERE [Code] = 'qwm' END +SET [Description] = 'Kuman (Russia)', [Definition] = NULL, [SortOrder] = 3418.00 WHERE [Code] = 'qwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfy', 'Kumaoni', NULL, 340.70) END +VALUES ('kfy', 'Kumaoni', NULL, 3419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumaoni', [Definition] = NULL, [SortOrder] = 340.70 WHERE [Code] = 'kfy' END +SET [Description] = 'Kumaoni', [Definition] = NULL, [SortOrder] = 3419.00 WHERE [Code] = 'kfy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmj', 'Kumarbhag Paharia', NULL, 340.80) END +VALUES ('kmj', 'Kumarbhag Paharia', NULL, 3420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumarbhag Paharia', [Definition] = NULL, [SortOrder] = 340.80 WHERE [Code] = 'kmj' END +SET [Description] = 'Kumarbhag Paharia', [Definition] = NULL, [SortOrder] = 3420.00 WHERE [Code] = 'kmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksm', 'Kumba', NULL, 340.90) END +VALUES ('ksm', 'Kumba', NULL, 3421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumba', [Definition] = NULL, [SortOrder] = 340.90 WHERE [Code] = 'ksm' END +SET [Description] = 'Kumba', [Definition] = NULL, [SortOrder] = 3421.00 WHERE [Code] = 'ksm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgs', 'Kumbainggar', NULL, 341.00) END +VALUES ('kgs', 'Kumbainggar', NULL, 3422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumbainggar', [Definition] = NULL, [SortOrder] = 341.00 WHERE [Code] = 'kgs' END +SET [Description] = 'Kumbainggar', [Definition] = NULL, [SortOrder] = 3422.00 WHERE [Code] = 'kgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkb', 'Kumbaran', NULL, 341.10) END +VALUES ('wkb', 'Kumbaran', NULL, 3423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumbaran', [Definition] = NULL, [SortOrder] = 341.10 WHERE [Code] = 'wkb' END +SET [Description] = 'Kumbaran', [Definition] = NULL, [SortOrder] = 3423.00 WHERE [Code] = 'wkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xks', 'Kumbewaha', NULL, 341.20) END +VALUES ('xks', 'Kumbewaha', NULL, 3424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumbewaha', [Definition] = NULL, [SortOrder] = 341.20 WHERE [Code] = 'xks' END +SET [Description] = 'Kumbewaha', [Definition] = NULL, [SortOrder] = 3424.00 WHERE [Code] = 'xks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kra', 'Kumhali', NULL, 341.30) END +VALUES ('kra', 'Kumhali', NULL, 3425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumhali', [Definition] = NULL, [SortOrder] = 341.30 WHERE [Code] = 'kra' END +SET [Description] = 'Kumhali', [Definition] = NULL, [SortOrder] = 3425.00 WHERE [Code] = 'kra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dih', 'Kumiai', NULL, 341.40) END +VALUES ('dih', 'Kumiai', NULL, 3426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumiai', [Definition] = NULL, [SortOrder] = 341.40 WHERE [Code] = 'dih' END +SET [Description] = 'Kumiai', [Definition] = NULL, [SortOrder] = 3426.00 WHERE [Code] = 'dih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuo', 'Kumukio', NULL, 341.50) END +VALUES ('kuo', 'Kumukio', NULL, 3427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumukio', [Definition] = NULL, [SortOrder] = 341.50 WHERE [Code] = 'kuo' END +SET [Description] = 'Kumukio', [Definition] = NULL, [SortOrder] = 3427.00 WHERE [Code] = 'kuo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kum', 'Kumyk', NULL, 341.60) END +VALUES ('kum', 'Kumyk', NULL, 3428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumyk', [Definition] = NULL, [SortOrder] = 341.60 WHERE [Code] = 'kum' END +SET [Description] = 'Kumyk', [Definition] = NULL, [SortOrder] = 3428.00 WHERE [Code] = 'kum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zum', 'Kumzari', NULL, 341.70) END +VALUES ('zum', 'Kumzari', NULL, 3429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kumzari', [Definition] = NULL, [SortOrder] = 341.70 WHERE [Code] = 'zum' END +SET [Description] = 'Kumzari', [Definition] = NULL, [SortOrder] = 3429.00 WHERE [Code] = 'zum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kun', 'Kunama', NULL, 341.80) END +VALUES ('kun', 'Kunama', NULL, 3430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunama', [Definition] = NULL, [SortOrder] = 341.80 WHERE [Code] = 'kun' END +SET [Description] = 'Kunama', [Definition] = NULL, [SortOrder] = 3430.00 WHERE [Code] = 'kun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlg', 'Kunbarlang', NULL, 341.90) END +VALUES ('wlg', 'Kunbarlang', NULL, 3431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunbarlang', [Definition] = NULL, [SortOrder] = 341.90 WHERE [Code] = 'wlg' END +SET [Description] = 'Kunbarlang', [Definition] = NULL, [SortOrder] = 3431.00 WHERE [Code] = 'wlg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdn', 'Kunda', NULL, 342.00) END +VALUES ('kdn', 'Kunda', NULL, 3432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunda', [Definition] = NULL, [SortOrder] = 342.00 WHERE [Code] = 'kdn' END +SET [Description] = 'Kunda', [Definition] = NULL, [SortOrder] = 3432.00 WHERE [Code] = 'kdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shd', 'Kundal Shahi', NULL, 342.10) END +VALUES ('shd', 'Kundal Shahi', NULL, 3433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kundal Shahi', [Definition] = NULL, [SortOrder] = 342.10 WHERE [Code] = 'shd' END +SET [Description] = 'Kundal Shahi', [Definition] = NULL, [SortOrder] = 3433.00 WHERE [Code] = 'shd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wku', 'Kunduvadi', NULL, 342.20) END +VALUES ('wku', 'Kunduvadi', NULL, 3434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunduvadi', [Definition] = NULL, [SortOrder] = 342.20 WHERE [Code] = 'wku' END +SET [Description] = 'Kunduvadi', [Definition] = NULL, [SortOrder] = 3434.00 WHERE [Code] = 'wku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfl', 'Kung', NULL, 342.30) END +VALUES ('kfl', 'Kung', NULL, 3435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kung', [Definition] = NULL, [SortOrder] = 342.30 WHERE [Code] = 'kfl' END +SET [Description] = 'Kung', [Definition] = NULL, [SortOrder] = 3435.00 WHERE [Code] = 'kfl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knw', 'Kung-Ekoka', NULL, 342.40) END +VALUES ('knw', 'Kung-Ekoka', NULL, 3436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kung-Ekoka', [Definition] = NULL, [SortOrder] = 342.40 WHERE [Code] = 'knw' END +SET [Description] = 'Kung-Ekoka', [Definition] = NULL, [SortOrder] = 3436.00 WHERE [Code] = 'knw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ggk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ggk', 'Kungarakany', NULL, 342.50) END +VALUES ('ggk', 'Kungarakany', NULL, 3437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kungarakany', [Definition] = NULL, [SortOrder] = 342.50 WHERE [Code] = 'ggk' END +SET [Description] = 'Kungarakany', [Definition] = NULL, [SortOrder] = 3437.00 WHERE [Code] = 'ggk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdt', 'Kungardutyi', NULL, 342.60) END +VALUES ('gdt', 'Kungardutyi', NULL, 3438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kungardutyi', [Definition] = NULL, [SortOrder] = 342.60 WHERE [Code] = 'gdt' END +SET [Description] = 'Kungardutyi', [Definition] = NULL, [SortOrder] = 3438.00 WHERE [Code] = 'gdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgl', 'Kunggari', NULL, 342.70) END +VALUES ('kgl', 'Kunggari', NULL, 3439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunggari', [Definition] = NULL, [SortOrder] = 342.70 WHERE [Code] = 'kgl' END +SET [Description] = 'Kunggari', [Definition] = NULL, [SortOrder] = 3439.00 WHERE [Code] = 'kgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lku', 'Kungkari', NULL, 342.80) END +VALUES ('lku', 'Kungkari', NULL, 3440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kungkari', [Definition] = NULL, [SortOrder] = 342.80 WHERE [Code] = 'lku' END +SET [Description] = 'Kungkari', [Definition] = NULL, [SortOrder] = 3440.00 WHERE [Code] = 'lku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kse', 'Kuni', NULL, 342.90) END +VALUES ('kse', 'Kuni', NULL, 3441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuni', [Definition] = NULL, [SortOrder] = 342.90 WHERE [Code] = 'kse' END +SET [Description] = 'Kuni', [Definition] = NULL, [SortOrder] = 3441.00 WHERE [Code] = 'kse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvg', 'Kuni-Boazi', NULL, 343.00) END +VALUES ('kvg', 'Kuni-Boazi', NULL, 3442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuni-Boazi', [Definition] = NULL, [SortOrder] = 343.00 WHERE [Code] = 'kvg' END +SET [Description] = 'Kuni-Boazi', [Definition] = NULL, [SortOrder] = 3442.00 WHERE [Code] = 'kvg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xug', 'Kunigami', NULL, 343.10) END +VALUES ('xug', 'Kunigami', NULL, 3443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunigami', [Definition] = NULL, [SortOrder] = 343.10 WHERE [Code] = 'xug' END +SET [Description] = 'Kunigami', [Definition] = NULL, [SortOrder] = 3443.00 WHERE [Code] = 'xug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kup', 'Kunimaipa', NULL, 343.20) END +VALUES ('kup', 'Kunimaipa', NULL, 3444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunimaipa', [Definition] = NULL, [SortOrder] = 343.20 WHERE [Code] = 'kup' END +SET [Description] = 'Kunimaipa', [Definition] = NULL, [SortOrder] = 3444.00 WHERE [Code] = 'kup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pep', 'Kunja', NULL, 343.30) END +VALUES ('pep', 'Kunja', NULL, 3445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunja', [Definition] = NULL, [SortOrder] = 343.30 WHERE [Code] = 'pep' END +SET [Description] = 'Kunja', [Definition] = NULL, [SortOrder] = 3445.00 WHERE [Code] = 'pep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjn', 'Kunjen', NULL, 343.40) END +VALUES ('kjn', 'Kunjen', NULL, 3446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunjen', [Definition] = NULL, [SortOrder] = 343.40 WHERE [Code] = 'kjn' END +SET [Description] = 'Kunjen', [Definition] = NULL, [SortOrder] = 3446.00 WHERE [Code] = 'kjn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njx', 'Kunyi', NULL, 343.50) END +VALUES ('njx', 'Kunyi', NULL, 3447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunyi', [Definition] = NULL, [SortOrder] = 343.50 WHERE [Code] = 'njx' END +SET [Description] = 'Kunyi', [Definition] = NULL, [SortOrder] = 3447.00 WHERE [Code] = 'njx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuz', 'Kunza', NULL, 343.60) END +VALUES ('kuz', 'Kunza', NULL, 3448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kunza', [Definition] = NULL, [SortOrder] = 343.60 WHERE [Code] = 'kuz' END +SET [Description] = 'Kunza', [Definition] = NULL, [SortOrder] = 3448.00 WHERE [Code] = 'kuz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xuo', 'Kuo', NULL, 343.70) END +VALUES ('xuo', 'Kuo', NULL, 3449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuo', [Definition] = NULL, [SortOrder] = 343.70 WHERE [Code] = 'xuo' END +SET [Description] = 'Kuo', [Definition] = NULL, [SortOrder] = 3449.00 WHERE [Code] = 'xuo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kto', 'Kuot', NULL, 343.80) END +VALUES ('kto', 'Kuot', NULL, 3450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuot', [Definition] = NULL, [SortOrder] = 343.80 WHERE [Code] = 'kto' END +SET [Description] = 'Kuot', [Definition] = NULL, [SortOrder] = 3450.00 WHERE [Code] = 'kto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kug', 'Kupa', NULL, 343.90) END +VALUES ('kug', 'Kupa', NULL, 3451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kupa', [Definition] = NULL, [SortOrder] = 343.90 WHERE [Code] = 'kug' END +SET [Description] = 'Kupa', [Definition] = NULL, [SortOrder] = 3451.00 WHERE [Code] = 'kug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkn', 'Kupang Malay', NULL, 344.00) END +VALUES ('mkn', 'Kupang Malay', NULL, 3452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kupang Malay', [Definition] = NULL, [SortOrder] = 344.00 WHERE [Code] = 'mkn' END +SET [Description] = 'Kupang Malay', [Definition] = NULL, [SortOrder] = 3452.00 WHERE [Code] = 'mkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'key') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('key', 'Kupia', NULL, 344.10) END +VALUES ('key', 'Kupia', NULL, 3453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kupia', [Definition] = NULL, [SortOrder] = 344.10 WHERE [Code] = 'key' END +SET [Description] = 'Kupia', [Definition] = NULL, [SortOrder] = 3453.00 WHERE [Code] = 'key' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpz', 'Kupsabiny', NULL, 344.20) END +VALUES ('kpz', 'Kupsabiny', NULL, 3454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kupsabiny', [Definition] = NULL, [SortOrder] = 344.20 WHERE [Code] = 'kpz' END +SET [Description] = 'Kupsabiny', [Definition] = NULL, [SortOrder] = 3454.00 WHERE [Code] = 'kpz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuv', 'Kur', NULL, 344.30) END +VALUES ('kuv', 'Kur', NULL, 3455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kur', [Definition] = NULL, [SortOrder] = 344.30 WHERE [Code] = 'kuv' END +SET [Description] = 'Kur', [Definition] = NULL, [SortOrder] = 3455.00 WHERE [Code] = 'kuv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqk', 'Kura Ede Nago', NULL, 344.40) END +VALUES ('nqk', 'Kura Ede Nago', NULL, 3456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kura Ede Nago', [Definition] = NULL, [SortOrder] = 344.40 WHERE [Code] = 'nqk' END +SET [Description] = 'Kura Ede Nago', [Definition] = NULL, [SortOrder] = 3456.00 WHERE [Code] = 'nqk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krh', 'Kurama', NULL, 344.50) END +VALUES ('krh', 'Kurama', NULL, 3457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurama', [Definition] = NULL, [SortOrder] = 344.50 WHERE [Code] = 'krh' END +SET [Description] = 'Kurama', [Definition] = NULL, [SortOrder] = 3457.00 WHERE [Code] = 'krh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knk', 'Kuranko', NULL, 344.60) END +VALUES ('knk', 'Kuranko', NULL, 3458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuranko', [Definition] = NULL, [SortOrder] = 344.60 WHERE [Code] = 'knk' END +SET [Description] = 'Kuranko', [Definition] = NULL, [SortOrder] = 3458.00 WHERE [Code] = 'knk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kur', 'Kurdish', NULL, 344.70) END +VALUES ('kur', 'Kurdish', NULL, 3459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurdish', [Definition] = NULL, [SortOrder] = 344.70 WHERE [Code] = 'kur' END +SET [Description] = 'Kurdish', [Definition] = NULL, [SortOrder] = 3459.00 WHERE [Code] = 'kur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbn', 'Kuri', NULL, 344.80) END +VALUES ('nbn', 'Kuri', NULL, 3460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuri', [Definition] = NULL, [SortOrder] = 344.80 WHERE [Code] = 'nbn' END +SET [Description] = 'Kuri', [Definition] = NULL, [SortOrder] = 3460.00 WHERE [Code] = 'nbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuj', 'Kuria', NULL, 344.90) END +VALUES ('kuj', 'Kuria', NULL, 3461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuria', [Definition] = NULL, [SortOrder] = 344.90 WHERE [Code] = 'kuj' END +SET [Description] = 'Kuria', [Definition] = NULL, [SortOrder] = 3461.00 WHERE [Code] = 'kuj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfh', 'Kurichiya', NULL, 345.00) END +VALUES ('kfh', 'Kurichiya', NULL, 3462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurichiya', [Definition] = NULL, [SortOrder] = 345.00 WHERE [Code] = 'kfh' END +SET [Description] = 'Kurichiya', [Definition] = NULL, [SortOrder] = 3462.00 WHERE [Code] = 'kfh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfv', 'Kurmukar', NULL, 345.10) END +VALUES ('kfv', 'Kurmukar', NULL, 3463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurmukar', [Definition] = NULL, [SortOrder] = 345.10 WHERE [Code] = 'kfv' END +SET [Description] = 'Kurmukar', [Definition] = NULL, [SortOrder] = 3463.00 WHERE [Code] = 'kfv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unn', 'Kurnai', NULL, 345.20) END +VALUES ('unn', 'Kurnai', NULL, 3464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurnai', [Definition] = NULL, [SortOrder] = 345.20 WHERE [Code] = 'unn' END +SET [Description] = 'Kurnai', [Definition] = NULL, [SortOrder] = 3464.00 WHERE [Code] = 'unn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vku', 'Kurrama', NULL, 345.30) END +VALUES ('vku', 'Kurrama', NULL, 3465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurrama', [Definition] = NULL, [SortOrder] = 345.30 WHERE [Code] = 'vku' END +SET [Description] = 'Kurrama', [Definition] = NULL, [SortOrder] = 3465.00 WHERE [Code] = 'vku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktm', 'Kurti', NULL, 345.40) END +VALUES ('ktm', 'Kurti', NULL, 3466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurti', [Definition] = NULL, [SortOrder] = 345.40 WHERE [Code] = 'ktm' END +SET [Description] = 'Kurti', [Definition] = NULL, [SortOrder] = 3466.00 WHERE [Code] = 'ktm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkz', 'Kurtokha', NULL, 345.50) END +VALUES ('xkz', 'Kurtokha', NULL, 3467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurtokha', [Definition] = NULL, [SortOrder] = 345.50 WHERE [Code] = 'xkz' END +SET [Description] = 'Kurtokha', [Definition] = NULL, [SortOrder] = 3467.00 WHERE [Code] = 'xkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyr', 'Kuruáya', NULL, 345.60) END +VALUES ('kyr', 'Kuruáya', NULL, 3468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuruáya', [Definition] = NULL, [SortOrder] = 345.60 WHERE [Code] = 'kyr' END +SET [Description] = 'Kuruáya', [Definition] = NULL, [SortOrder] = 3468.00 WHERE [Code] = 'kyr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjr', 'Kurudu', NULL, 345.70) END +VALUES ('kjr', 'Kurudu', NULL, 3469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurudu', [Definition] = NULL, [SortOrder] = 345.70 WHERE [Code] = 'kjr' END +SET [Description] = 'Kurudu', [Definition] = NULL, [SortOrder] = 3469.00 WHERE [Code] = 'kjr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kru', 'Kurukh', NULL, 345.80) END +VALUES ('kru', 'Kurukh', NULL, 3470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kurukh', [Definition] = NULL, [SortOrder] = 345.80 WHERE [Code] = 'kru' END +SET [Description] = 'Kurukh', [Definition] = NULL, [SortOrder] = 3470.00 WHERE [Code] = 'kru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kus', 'Kusaal', NULL, 345.90) END +VALUES ('kus', 'Kusaal', NULL, 3471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kusaal', [Definition] = NULL, [SortOrder] = 345.90 WHERE [Code] = 'kus' END +SET [Description] = 'Kusaal', [Definition] = NULL, [SortOrder] = 3471.00 WHERE [Code] = 'kus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksg', 'Kusaghe', NULL, 346.00) END +VALUES ('ksg', 'Kusaghe', NULL, 3472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kusaghe', [Definition] = NULL, [SortOrder] = 346.00 WHERE [Code] = 'ksg' END +SET [Description] = 'Kusaghe', [Definition] = NULL, [SortOrder] = 3472.00 WHERE [Code] = 'ksg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuh', 'Kushi', NULL, 346.10) END +VALUES ('kuh', 'Kushi', NULL, 3473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kushi', [Definition] = NULL, [SortOrder] = 346.10 WHERE [Code] = 'kuh' END +SET [Description] = 'Kushi', [Definition] = NULL, [SortOrder] = 3473.00 WHERE [Code] = 'kuh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksv', 'Kusu', NULL, 346.20) END +VALUES ('ksv', 'Kusu', NULL, 3474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kusu', [Definition] = NULL, [SortOrder] = 346.20 WHERE [Code] = 'ksv' END +SET [Description] = 'Kusu', [Definition] = NULL, [SortOrder] = 3474.00 WHERE [Code] = 'ksv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgg', 'Kusunda', NULL, 346.30) END +VALUES ('kgg', 'Kusunda', NULL, 3475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kusunda', [Definition] = NULL, [SortOrder] = 346.30 WHERE [Code] = 'kgg' END +SET [Description] = 'Kusunda', [Definition] = NULL, [SortOrder] = 3475.00 WHERE [Code] = 'kgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kut', 'Kutenai', NULL, 346.40) END +VALUES ('kut', 'Kutenai', NULL, 3476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutenai', [Definition] = NULL, [SortOrder] = 346.40 WHERE [Code] = 'kut' END +SET [Description] = 'Kutenai', [Definition] = NULL, [SortOrder] = 3476.00 WHERE [Code] = 'kut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kub', 'Kutep', NULL, 346.50) END +VALUES ('kub', 'Kutep', NULL, 3477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutep', [Definition] = NULL, [SortOrder] = 346.50 WHERE [Code] = 'kub' END +SET [Description] = 'Kutep', [Definition] = NULL, [SortOrder] = 3477.00 WHERE [Code] = 'kub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xut', 'Kuthant', NULL, 346.60) END +VALUES ('xut', 'Kuthant', NULL, 3478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuthant', [Definition] = NULL, [SortOrder] = 346.60 WHERE [Code] = 'xut' END +SET [Description] = 'Kuthant', [Definition] = NULL, [SortOrder] = 3478.00 WHERE [Code] = 'xut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skm', 'Kutong', NULL, 346.70) END +VALUES ('skm', 'Kutong', NULL, 3479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutong', [Definition] = NULL, [SortOrder] = 346.70 WHERE [Code] = 'skm' END +SET [Description] = 'Kutong', [Definition] = NULL, [SortOrder] = 3479.00 WHERE [Code] = 'skm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpa', 'Kutto', NULL, 346.80) END +VALUES ('kpa', 'Kutto', NULL, 3480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutto', [Definition] = NULL, [SortOrder] = 346.80 WHERE [Code] = 'kpa' END +SET [Description] = 'Kutto', [Definition] = NULL, [SortOrder] = 3480.00 WHERE [Code] = 'kpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdc', 'Kutu', NULL, 346.90) END +VALUES ('kdc', 'Kutu', NULL, 3481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kutu', [Definition] = NULL, [SortOrder] = 346.90 WHERE [Code] = 'kdc' END +SET [Description] = 'Kutu', [Definition] = NULL, [SortOrder] = 3481.00 WHERE [Code] = 'kdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khj', 'Kuturmi', NULL, 347.00) END +VALUES ('khj', 'Kuturmi', NULL, 3482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuturmi', [Definition] = NULL, [SortOrder] = 347.00 WHERE [Code] = 'khj' END +SET [Description] = 'Kuturmi', [Definition] = NULL, [SortOrder] = 3482.00 WHERE [Code] = 'khj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thd', 'Kuuk Thaayorre', NULL, 347.10) END +VALUES ('thd', 'Kuuk Thaayorre', NULL, 3483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuuk Thaayorre', [Definition] = NULL, [SortOrder] = 347.10 WHERE [Code] = 'thd' END +SET [Description] = 'Kuuk Thaayorre', [Definition] = NULL, [SortOrder] = 3483.00 WHERE [Code] = 'thd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uky', 'Kuuk-Yak', NULL, 347.20) END +VALUES ('uky', 'Kuuk-Yak', NULL, 3484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuuk-Yak', [Definition] = NULL, [SortOrder] = 347.20 WHERE [Code] = 'uky' END +SET [Description] = 'Kuuk-Yak', [Definition] = NULL, [SortOrder] = 3484.00 WHERE [Code] = 'uky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuy', 'Kuuku-Ya''u', NULL, 347.30) END +VALUES ('kuy', 'Kuuku-Ya''u', NULL, 3485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuuku-Ya''u', [Definition] = NULL, [SortOrder] = 347.30 WHERE [Code] = 'kuy' END +SET [Description] = 'Kuuku-Ya''u', [Definition] = NULL, [SortOrder] = 3485.00 WHERE [Code] = 'kuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olu', 'Kuvale', NULL, 347.40) END +VALUES ('olu', 'Kuvale', NULL, 3486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuvale', [Definition] = NULL, [SortOrder] = 347.40 WHERE [Code] = 'olu' END +SET [Description] = 'Kuvale', [Definition] = NULL, [SortOrder] = 3486.00 WHERE [Code] = 'olu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxv', 'Kuvi', NULL, 347.50) END +VALUES ('kxv', 'Kuvi', NULL, 3487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuvi', [Definition] = NULL, [SortOrder] = 347.50 WHERE [Code] = 'kxv' END +SET [Description] = 'Kuvi', [Definition] = NULL, [SortOrder] = 3487.00 WHERE [Code] = 'kxv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blh', 'Kuwaa', NULL, 347.60) END +VALUES ('blh', 'Kuwaa', NULL, 3488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuwaa', [Definition] = NULL, [SortOrder] = 347.60 WHERE [Code] = 'blh' END +SET [Description] = 'Kuwaa', [Definition] = NULL, [SortOrder] = 3488.00 WHERE [Code] = 'blh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwt', 'Kuwaataay', NULL, 347.70) END +VALUES ('cwt', 'Kuwaataay', NULL, 3489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuwaataay', [Definition] = NULL, [SortOrder] = 347.70 WHERE [Code] = 'cwt' END +SET [Description] = 'Kuwaataay', [Definition] = NULL, [SortOrder] = 3489.00 WHERE [Code] = 'cwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woa', 'Kuwema', NULL, 347.80) END +VALUES ('woa', 'Kuwema', NULL, 3490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuwema', [Definition] = NULL, [SortOrder] = 347.80 WHERE [Code] = 'woa' END +SET [Description] = 'Kuwema', [Definition] = NULL, [SortOrder] = 3490.00 WHERE [Code] = 'woa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdt', 'Kuy', NULL, 347.90) END +VALUES ('kdt', 'Kuy', NULL, 3491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kuy', [Definition] = NULL, [SortOrder] = 347.90 WHERE [Code] = 'kdt' END +SET [Description] = 'Kuy', [Definition] = NULL, [SortOrder] = 3491.00 WHERE [Code] = 'kdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fkv', 'Kven Finnish', NULL, 348.00) END +VALUES ('fkv', 'Kven Finnish', NULL, 3492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kven Finnish', [Definition] = NULL, [SortOrder] = 348.00 WHERE [Code] = 'fkv' END +SET [Description] = 'Kven Finnish', [Definition] = NULL, [SortOrder] = 3492.00 WHERE [Code] = 'fkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wka', 'Kw''adza', NULL, 348.10) END +VALUES ('wka', 'Kw''adza', NULL, 3493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kw''adza', [Definition] = NULL, [SortOrder] = 348.10 WHERE [Code] = 'wka' END +SET [Description] = 'Kw''adza', [Definition] = NULL, [SortOrder] = 3493.00 WHERE [Code] = 'wka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwb', 'Kwa', NULL, 348.20) END +VALUES ('kwb', 'Kwa', NULL, 3494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwa', [Definition] = NULL, [SortOrder] = 348.20 WHERE [Code] = 'kwb' END +SET [Description] = 'Kwa', [Definition] = NULL, [SortOrder] = 3494.00 WHERE [Code] = 'kwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bko', 'Kwa''', NULL, 348.30) END +VALUES ('bko', 'Kwa''', NULL, 3495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwa''', [Definition] = NULL, [SortOrder] = 348.30 WHERE [Code] = 'bko' END +SET [Description] = 'Kwa''', [Definition] = NULL, [SortOrder] = 3495.00 WHERE [Code] = 'bko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksq', 'Kwaami', NULL, 348.40) END +VALUES ('ksq', 'Kwaami', NULL, 3496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaami', [Definition] = NULL, [SortOrder] = 348.40 WHERE [Code] = 'ksq' END +SET [Description] = 'Kwaami', [Definition] = NULL, [SortOrder] = 3496.00 WHERE [Code] = 'ksq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwz', 'Kwadi', NULL, 348.50) END +VALUES ('kwz', 'Kwadi', NULL, 3497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwadi', [Definition] = NULL, [SortOrder] = 348.50 WHERE [Code] = 'kwz' END +SET [Description] = 'Kwadi', [Definition] = NULL, [SortOrder] = 3497.00 WHERE [Code] = 'kwz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwd', 'Kwaio', NULL, 348.60) END +VALUES ('kwd', 'Kwaio', NULL, 3498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaio', [Definition] = NULL, [SortOrder] = 348.60 WHERE [Code] = 'kwd' END +SET [Description] = 'Kwaio', [Definition] = NULL, [SortOrder] = 3498.00 WHERE [Code] = 'kwd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdz', 'Kwaja', NULL, 348.70) END +VALUES ('kdz', 'Kwaja', NULL, 3499.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaja', [Definition] = NULL, [SortOrder] = 348.70 WHERE [Code] = 'kdz' END +SET [Description] = 'Kwaja', [Definition] = NULL, [SortOrder] = 3499.00 WHERE [Code] = 'kdz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwk', 'Kwakiutl', NULL, 348.80) END +VALUES ('kwk', 'Kwakiutl', NULL, 3500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwakiutl', [Definition] = NULL, [SortOrder] = 348.80 WHERE [Code] = 'kwk' END +SET [Description] = 'Kwakiutl', [Definition] = NULL, [SortOrder] = 3500.00 WHERE [Code] = 'kwk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwu', 'Kwakum', NULL, 348.90) END +VALUES ('kwu', 'Kwakum', NULL, 3501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwakum', [Definition] = NULL, [SortOrder] = 348.90 WHERE [Code] = 'kwu' END +SET [Description] = 'Kwakum', [Definition] = NULL, [SortOrder] = 3501.00 WHERE [Code] = 'kwu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qwt', 'Kwalhioqua-Tlatskanai', NULL, 349.00) END +VALUES ('qwt', 'Kwalhioqua-Tlatskanai', NULL, 3502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwalhioqua-Tlatskanai', [Definition] = NULL, [SortOrder] = 349.00 WHERE [Code] = 'qwt' END +SET [Description] = 'Kwalhioqua-Tlatskanai', [Definition] = NULL, [SortOrder] = 3502.00 WHERE [Code] = 'qwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmq', 'Kwama', NULL, 349.10) END +VALUES ('kmq', 'Kwama', NULL, 3503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwama', [Definition] = NULL, [SortOrder] = 349.10 WHERE [Code] = 'kmq' END +SET [Description] = 'Kwama', [Definition] = NULL, [SortOrder] = 3503.00 WHERE [Code] = 'kmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwm', 'Kwambi', NULL, 349.20) END +VALUES ('kwm', 'Kwambi', NULL, 3504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwambi', [Definition] = NULL, [SortOrder] = 349.20 WHERE [Code] = 'kwm' END +SET [Description] = 'Kwambi', [Definition] = NULL, [SortOrder] = 3504.00 WHERE [Code] = 'kwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnk', 'Kwamera', NULL, 349.30) END +VALUES ('tnk', 'Kwamera', NULL, 3505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwamera', [Definition] = NULL, [SortOrder] = 349.30 WHERE [Code] = 'tnk' END +SET [Description] = 'Kwamera', [Definition] = NULL, [SortOrder] = 3505.00 WHERE [Code] = 'tnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktf', 'Kwami', NULL, 349.40) END +VALUES ('ktf', 'Kwami', NULL, 3506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwami', [Definition] = NULL, [SortOrder] = 349.40 WHERE [Code] = 'ktf' END +SET [Description] = 'Kwami', [Definition] = NULL, [SortOrder] = 3506.00 WHERE [Code] = 'ktf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okk', 'Kwamtim One', NULL, 349.50) END +VALUES ('okk', 'Kwamtim One', NULL, 3507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwamtim One', [Definition] = NULL, [SortOrder] = 349.50 WHERE [Code] = 'okk' END +SET [Description] = 'Kwamtim One', [Definition] = NULL, [SortOrder] = 3507.00 WHERE [Code] = 'okk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdo', 'Kwandu', NULL, 349.60) END +VALUES ('xdo', 'Kwandu', NULL, 3508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwandu', [Definition] = NULL, [SortOrder] = 349.60 WHERE [Code] = 'xdo' END +SET [Description] = 'Kwandu', [Definition] = NULL, [SortOrder] = 3508.00 WHERE [Code] = 'xdo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvi', 'Kwang', NULL, 349.70) END +VALUES ('kvi', 'Kwang', NULL, 3509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwang', [Definition] = NULL, [SortOrder] = 349.70 WHERE [Code] = 'kvi' END +SET [Description] = 'Kwang', [Definition] = NULL, [SortOrder] = 3509.00 WHERE [Code] = 'kvi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwj', 'Kwanga', NULL, 349.80) END +VALUES ('kwj', 'Kwanga', NULL, 3510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwanga', [Definition] = NULL, [SortOrder] = 349.80 WHERE [Code] = 'kwj' END +SET [Description] = 'Kwanga', [Definition] = NULL, [SortOrder] = 3510.00 WHERE [Code] = 'kwj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwn', 'Kwangali', NULL, 349.90) END +VALUES ('kwn', 'Kwangali', NULL, 3511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwangali', [Definition] = NULL, [SortOrder] = 349.90 WHERE [Code] = 'kwn' END +SET [Description] = 'Kwangali', [Definition] = NULL, [SortOrder] = 3511.00 WHERE [Code] = 'kwn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knp', 'Kwanja', NULL, 350.00) END +VALUES ('knp', 'Kwanja', NULL, 3512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwanja', [Definition] = NULL, [SortOrder] = 350.00 WHERE [Code] = 'knp' END +SET [Description] = 'Kwanja', [Definition] = NULL, [SortOrder] = 3512.00 WHERE [Code] = 'knp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwf', 'Kwara''ae', NULL, 350.10) END +VALUES ('kwf', 'Kwara''ae', NULL, 3513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwara''ae', [Definition] = NULL, [SortOrder] = 350.10 WHERE [Code] = 'kwf' END +SET [Description] = 'Kwara''ae', [Definition] = NULL, [SortOrder] = 3513.00 WHERE [Code] = 'kwf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmg', 'Kwasio', NULL, 350.20) END +VALUES ('nmg', 'Kwasio', NULL, 3514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwasio', [Definition] = NULL, [SortOrder] = 350.20 WHERE [Code] = 'nmg' END +SET [Description] = 'Kwasio', [Definition] = NULL, [SortOrder] = 3514.00 WHERE [Code] = 'nmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kya', 'Kwaya', NULL, 350.30) END +VALUES ('kya', 'Kwaya', NULL, 3515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaya', [Definition] = NULL, [SortOrder] = 350.30 WHERE [Code] = 'kya' END +SET [Description] = 'Kwaya', [Definition] = NULL, [SortOrder] = 3515.00 WHERE [Code] = 'kya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwa', 'Kwaza', NULL, 350.40) END +VALUES ('xwa', 'Kwaza', NULL, 3516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwaza', [Definition] = NULL, [SortOrder] = 350.40 WHERE [Code] = 'xwa' END +SET [Description] = 'Kwaza', [Definition] = NULL, [SortOrder] = 3516.00 WHERE [Code] = 'xwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwg', 'Kwegu', NULL, 350.50) END +VALUES ('xwg', 'Kwegu', NULL, 3517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwegu', [Definition] = NULL, [SortOrder] = 350.50 WHERE [Code] = 'xwg' END +SET [Description] = 'Kwegu', [Definition] = NULL, [SortOrder] = 3517.00 WHERE [Code] = 'xwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwr', 'Kwer', NULL, 350.60) END +VALUES ('kwr', 'Kwer', NULL, 3518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwer', [Definition] = NULL, [SortOrder] = 350.60 WHERE [Code] = 'kwr' END +SET [Description] = 'Kwer', [Definition] = NULL, [SortOrder] = 3518.00 WHERE [Code] = 'kwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwe', 'Kwerba', NULL, 350.70) END +VALUES ('kwe', 'Kwerba', NULL, 3519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwerba', [Definition] = NULL, [SortOrder] = 350.70 WHERE [Code] = 'kwe' END +SET [Description] = 'Kwerba', [Definition] = NULL, [SortOrder] = 3519.00 WHERE [Code] = 'kwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwr', 'Kwerba Mamberamo', NULL, 350.80) END +VALUES ('xwr', 'Kwerba Mamberamo', NULL, 3520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwerba Mamberamo', [Definition] = NULL, [SortOrder] = 350.80 WHERE [Code] = 'xwr' END +SET [Description] = 'Kwerba Mamberamo', [Definition] = NULL, [SortOrder] = 3520.00 WHERE [Code] = 'xwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwe', 'Kwere', NULL, 350.90) END +VALUES ('cwe', 'Kwere', NULL, 3521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwere', [Definition] = NULL, [SortOrder] = 350.90 WHERE [Code] = 'cwe' END +SET [Description] = 'Kwere', [Definition] = NULL, [SortOrder] = 3521.00 WHERE [Code] = 'cwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkb', 'Kwerisa', NULL, 351.00) END +VALUES ('kkb', 'Kwerisa', NULL, 3522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwerisa', [Definition] = NULL, [SortOrder] = 351.00 WHERE [Code] = 'kkb' END +SET [Description] = 'Kwerisa', [Definition] = NULL, [SortOrder] = 3522.00 WHERE [Code] = 'kkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kws', 'Kwese', NULL, 351.10) END +VALUES ('kws', 'Kwese', NULL, 3523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwese', [Definition] = NULL, [SortOrder] = 351.10 WHERE [Code] = 'kws' END +SET [Description] = 'Kwese', [Definition] = NULL, [SortOrder] = 3523.00 WHERE [Code] = 'kws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwt', 'Kwesten', NULL, 351.20) END +VALUES ('kwt', 'Kwesten', NULL, 3524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwesten', [Definition] = NULL, [SortOrder] = 351.20 WHERE [Code] = 'kwt' END +SET [Description] = 'Kwesten', [Definition] = NULL, [SortOrder] = 3524.00 WHERE [Code] = 'kwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gww', 'Kwini', NULL, 351.30) END +VALUES ('gww', 'Kwini', NULL, 3525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwini', [Definition] = NULL, [SortOrder] = 351.30 WHERE [Code] = 'gww' END +SET [Description] = 'Kwini', [Definition] = NULL, [SortOrder] = 3525.00 WHERE [Code] = 'gww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuc', 'Kwinsu', NULL, 351.40) END +VALUES ('kuc', 'Kwinsu', NULL, 3526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwinsu', [Definition] = NULL, [SortOrder] = 351.40 WHERE [Code] = 'kuc' END +SET [Description] = 'Kwinsu', [Definition] = NULL, [SortOrder] = 3526.00 WHERE [Code] = 'kuc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kww', 'Kwinti', NULL, 351.50) END +VALUES ('kww', 'Kwinti', NULL, 3527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwinti', [Definition] = NULL, [SortOrder] = 351.50 WHERE [Code] = 'kww' END +SET [Description] = 'Kwinti', [Definition] = NULL, [SortOrder] = 3527.00 WHERE [Code] = 'kww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmo', 'Kwoma', NULL, 351.60) END +VALUES ('kmo', 'Kwoma', NULL, 3528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwoma', [Definition] = NULL, [SortOrder] = 351.60 WHERE [Code] = 'kmo' END +SET [Description] = 'Kwoma', [Definition] = NULL, [SortOrder] = 3528.00 WHERE [Code] = 'kmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwo', 'Kwomtari', NULL, 351.70) END +VALUES ('kwo', 'Kwomtari', NULL, 3529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kwomtari', [Definition] = NULL, [SortOrder] = 351.70 WHERE [Code] = 'kwo' END +SET [Description] = 'Kwomtari', [Definition] = NULL, [SortOrder] = 3529.00 WHERE [Code] = 'kwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xuu', 'Kxoe', NULL, 351.80) END +VALUES ('xuu', 'Kxoe', NULL, 3530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kxoe', [Definition] = NULL, [SortOrder] = 351.80 WHERE [Code] = 'xuu' END +SET [Description] = 'Kxoe', [Definition] = NULL, [SortOrder] = 3530.00 WHERE [Code] = 'xuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bka', 'Kyak', NULL, 351.90) END +VALUES ('bka', 'Kyak', NULL, 3531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyak', [Definition] = NULL, [SortOrder] = 351.90 WHERE [Code] = 'bka' END +SET [Description] = 'Kyak', [Definition] = NULL, [SortOrder] = 3531.00 WHERE [Code] = 'bka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyc', 'Kyaka', NULL, 352.00) END +VALUES ('kyc', 'Kyaka', NULL, 3532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyaka', [Definition] = NULL, [SortOrder] = 352.00 WHERE [Code] = 'kyc' END +SET [Description] = 'Kyaka', [Definition] = NULL, [SortOrder] = 3532.00 WHERE [Code] = 'kyc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqq', 'Kyan-Karyaw Naga', NULL, 352.10) END +VALUES ('nqq', 'Kyan-Karyaw Naga', NULL, 3533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyan-Karyaw Naga', [Definition] = NULL, [SortOrder] = 352.10 WHERE [Code] = 'nqq' END +SET [Description] = 'Kyan-Karyaw Naga', [Definition] = NULL, [SortOrder] = 3533.00 WHERE [Code] = 'nqq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tye', 'Kyanga', NULL, 352.20) END +VALUES ('tye', 'Kyanga', NULL, 3534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyanga', [Definition] = NULL, [SortOrder] = 352.20 WHERE [Code] = 'tye' END +SET [Description] = 'Kyanga', [Definition] = NULL, [SortOrder] = 3534.00 WHERE [Code] = 'tye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kql', 'Kyenele', NULL, 352.30) END +VALUES ('kql', 'Kyenele', NULL, 3535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyenele', [Definition] = NULL, [SortOrder] = 352.30 WHERE [Code] = 'kql' END +SET [Description] = 'Kyenele', [Definition] = NULL, [SortOrder] = 3535.00 WHERE [Code] = 'kql' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgy', 'Kyerung', NULL, 352.40) END +VALUES ('kgy', 'Kyerung', NULL, 3536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Kyerung', [Definition] = NULL, [SortOrder] = 352.40 WHERE [Code] = 'kgy' END +SET [Description] = 'Kyerung', [Definition] = NULL, [SortOrder] = 3536.00 WHERE [Code] = 'kgy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbi', 'La''bi', NULL, 352.50) END +VALUES ('lbi', 'La''bi', NULL, 3537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'La''bi', [Definition] = NULL, [SortOrder] = 352.50 WHERE [Code] = 'lbi' END +SET [Description] = 'La''bi', [Definition] = NULL, [SortOrder] = 3537.00 WHERE [Code] = 'lbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwj', 'Láá Láá Bwamu', NULL, 352.60) END +VALUES ('bwj', 'Láá Láá Bwamu', NULL, 3538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Láá Láá Bwamu', [Definition] = NULL, [SortOrder] = 352.60 WHERE [Code] = 'bwj' END +SET [Description] = 'Láá Láá Bwamu', [Definition] = NULL, [SortOrder] = 3538.00 WHERE [Code] = 'bwj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldn', 'Láadan', NULL, 352.70) END +VALUES ('ldn', 'Láadan', NULL, 3539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Láadan', [Definition] = NULL, [SortOrder] = 352.70 WHERE [Code] = 'ldn' END +SET [Description] = 'Láadan', [Definition] = NULL, [SortOrder] = 3539.00 WHERE [Code] = 'ldn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdm', 'Laal', NULL, 352.80) END +VALUES ('gdm', 'Laal', NULL, 3540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laal', [Definition] = NULL, [SortOrder] = 352.80 WHERE [Code] = 'gdm' END +SET [Description] = 'Laal', [Definition] = NULL, [SortOrder] = 3540.00 WHERE [Code] = 'gdm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldi', 'Laari', NULL, 352.90) END +VALUES ('ldi', 'Laari', NULL, 3541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laari', [Definition] = NULL, [SortOrder] = 352.90 WHERE [Code] = 'ldi' END +SET [Description] = 'Laari', [Definition] = NULL, [SortOrder] = 3541.00 WHERE [Code] = 'ldi' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('loh', 'Laarim', NULL, 3542.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Laarim', [Definition] = NULL, [SortOrder] = 3542.00 WHERE [Code] = 'loh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lau', 'Laba', NULL, 353.00) END +VALUES ('lau', 'Laba', NULL, 3543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laba', [Definition] = NULL, [SortOrder] = 353.00 WHERE [Code] = 'lau' END +SET [Description] = 'Laba', [Definition] = NULL, [SortOrder] = 3543.00 WHERE [Code] = 'lau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbb', 'Label', NULL, 353.10) END +VALUES ('lbb', 'Label', NULL, 3544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Label', [Definition] = NULL, [SortOrder] = 353.10 WHERE [Code] = 'lbb' END +SET [Description] = 'Label', [Definition] = NULL, [SortOrder] = 3544.00 WHERE [Code] = 'lbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jku', 'Labir', NULL, 353.20) END +VALUES ('jku', 'Labir', NULL, 3545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labir', [Definition] = NULL, [SortOrder] = 353.20 WHERE [Code] = 'jku' END +SET [Description] = 'Labir', [Definition] = NULL, [SortOrder] = 3545.00 WHERE [Code] = 'jku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwi', 'Labo', NULL, 353.30) END +VALUES ('mwi', 'Labo', NULL, 3546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labo', [Definition] = NULL, [SortOrder] = 353.30 WHERE [Code] = 'mwi' END +SET [Description] = 'Labo', [Definition] = NULL, [SortOrder] = 3546.00 WHERE [Code] = 'mwi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypb', 'Labo Phowa', NULL, 353.40) END +VALUES ('ypb', 'Labo Phowa', NULL, 3547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labo Phowa', [Definition] = NULL, [SortOrder] = 353.40 WHERE [Code] = 'ypb' END +SET [Description] = 'Labo Phowa', [Definition] = NULL, [SortOrder] = 3547.00 WHERE [Code] = 'ypb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbu', 'Labu', NULL, 353.50) END +VALUES ('lbu', 'Labu', NULL, 3548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labu', [Definition] = NULL, [SortOrder] = 353.50 WHERE [Code] = 'lbu' END +SET [Description] = 'Labu', [Definition] = NULL, [SortOrder] = 3548.00 WHERE [Code] = 'lbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtb', 'Labuk-Kinabatangan Kadazan', NULL, 353.60) END +VALUES ('dtb', 'Labuk-Kinabatangan Kadazan', NULL, 3549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Labuk-Kinabatangan Kadazan', [Definition] = NULL, [SortOrder] = 353.60 WHERE [Code] = 'dtb' END +SET [Description] = 'Labuk-Kinabatangan Kadazan', [Definition] = NULL, [SortOrder] = 3549.00 WHERE [Code] = 'dtb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lac', 'Lacandon', NULL, 353.70) END +VALUES ('lac', 'Lacandon', NULL, 3550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lacandon', [Definition] = NULL, [SortOrder] = 353.70 WHERE [Code] = 'lac' END +SET [Description] = 'Lacandon', [Definition] = NULL, [SortOrder] = 3550.00 WHERE [Code] = 'lac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbt', 'Lachi', NULL, 353.80) END +VALUES ('lbt', 'Lachi', NULL, 3551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lachi', [Definition] = NULL, [SortOrder] = 353.80 WHERE [Code] = 'lbt' END +SET [Description] = 'Lachi', [Definition] = NULL, [SortOrder] = 3551.00 WHERE [Code] = 'lbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpa', 'Lachiguiri Zapotec', NULL, 353.90) END +VALUES ('zpa', 'Lachiguiri Zapotec', NULL, 3552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lachiguiri Zapotec', [Definition] = NULL, [SortOrder] = 353.90 WHERE [Code] = 'zpa' END +SET [Description] = 'Lachiguiri Zapotec', [Definition] = NULL, [SortOrder] = 3552.00 WHERE [Code] = 'zpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpl', 'Lachixío Zapotec', NULL, 354.00) END +VALUES ('zpl', 'Lachixío Zapotec', NULL, 3553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lachixío Zapotec', [Definition] = NULL, [SortOrder] = 354.00 WHERE [Code] = 'zpl' END +SET [Description] = 'Lachixío Zapotec', [Definition] = NULL, [SortOrder] = 3553.00 WHERE [Code] = 'zpl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbj', 'Ladakhi', NULL, 354.10) END +VALUES ('lbj', 'Ladakhi', NULL, 3554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ladakhi', [Definition] = NULL, [SortOrder] = 354.10 WHERE [Code] = 'lbj' END +SET [Description] = 'Ladakhi', [Definition] = NULL, [SortOrder] = 3554.00 WHERE [Code] = 'lbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lld', 'Ladin', NULL, 354.20) END +VALUES ('lld', 'Ladin', NULL, 3555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ladin', [Definition] = NULL, [SortOrder] = 354.20 WHERE [Code] = 'lld' END +SET [Description] = 'Ladin', [Definition] = NULL, [SortOrder] = 3555.00 WHERE [Code] = 'lld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lad', 'Ladino', NULL, 354.30) END +VALUES ('lad', 'Ladino', NULL, 3556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ladino', [Definition] = NULL, [SortOrder] = 354.30 WHERE [Code] = 'lad' END +SET [Description] = 'Ladino', [Definition] = NULL, [SortOrder] = 3556.00 WHERE [Code] = 'lad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llj', 'Ladji Ladji', NULL, 354.40) END +VALUES ('llj', 'Ladji Ladji', NULL, 3557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ladji Ladji', [Definition] = NULL, [SortOrder] = 354.40 WHERE [Code] = 'llj' END +SET [Description] = 'Ladji Ladji', [Definition] = NULL, [SortOrder] = 3557.00 WHERE [Code] = 'llj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkl', 'Laeko-Libuat', NULL, 354.50) END +VALUES ('lkl', 'Laeko-Libuat', NULL, 3558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laeko-Libuat', [Definition] = NULL, [SortOrder] = 354.50 WHERE [Code] = 'lkl' END +SET [Description] = 'Laeko-Libuat', [Definition] = NULL, [SortOrder] = 3558.00 WHERE [Code] = 'lkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laf', 'Lafofa', NULL, 354.60) END +VALUES ('laf', 'Lafofa', NULL, 3559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lafofa', [Definition] = NULL, [SortOrder] = 354.60 WHERE [Code] = 'laf' END +SET [Description] = 'Lafofa', [Definition] = NULL, [SortOrder] = 3559.00 WHERE [Code] = 'laf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgb', 'Laghu', NULL, 354.70) END +VALUES ('lgb', 'Laghu', NULL, 3560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laghu', [Definition] = NULL, [SortOrder] = 354.70 WHERE [Code] = 'lgb' END +SET [Description] = 'Laghu', [Definition] = NULL, [SortOrder] = 3560.00 WHERE [Code] = 'lgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgh', 'Laghuu', NULL, 354.80) END +VALUES ('lgh', 'Laghuu', NULL, 3561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laghuu', [Definition] = NULL, [SortOrder] = 354.80 WHERE [Code] = 'lgh' END +SET [Description] = 'Laghuu', [Definition] = NULL, [SortOrder] = 3561.00 WHERE [Code] = 'lgh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kot', 'Lagwan', NULL, 354.90) END +VALUES ('kot', 'Lagwan', NULL, 3562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lagwan', [Definition] = NULL, [SortOrder] = 354.90 WHERE [Code] = 'kot' END +SET [Description] = 'Lagwan', [Definition] = NULL, [SortOrder] = 3562.00 WHERE [Code] = 'kot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhh', 'Laha (Indonesia)', NULL, 355.00) END +VALUES ('lhh', 'Laha (Indonesia)', NULL, 3563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laha (Indonesia)', [Definition] = NULL, [SortOrder] = 355.00 WHERE [Code] = 'lhh' END +SET [Description] = 'Laha (Indonesia)', [Definition] = NULL, [SortOrder] = 3563.00 WHERE [Code] = 'lhh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lha', 'Laha (Viet Nam)', NULL, 355.10) END +VALUES ('lha', 'Laha (Viet Nam)', NULL, 3564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laha (Viet Nam)', [Definition] = NULL, [SortOrder] = 355.10 WHERE [Code] = 'lha' END +SET [Description] = 'Laha (Viet Nam)', [Definition] = NULL, [SortOrder] = 3564.00 WHERE [Code] = 'lha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhn', 'Lahanan', NULL, 355.20) END +VALUES ('lhn', 'Lahanan', NULL, 3565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahanan', [Definition] = NULL, [SortOrder] = 355.20 WHERE [Code] = 'lhn' END +SET [Description] = 'Lahanan', [Definition] = NULL, [SortOrder] = 3565.00 WHERE [Code] = 'lhn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lah', 'Lahnda', NULL, 355.30) END +VALUES ('lah', 'Lahnda', NULL, 3566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahnda', [Definition] = NULL, [SortOrder] = 355.30 WHERE [Code] = 'lah' END +SET [Description] = 'Lahnda', [Definition] = NULL, [SortOrder] = 3566.00 WHERE [Code] = 'lah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvt', 'Lahta Karen', NULL, 355.40) END +VALUES ('kvt', 'Lahta Karen', NULL, 3567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahta Karen', [Definition] = NULL, [SortOrder] = 355.40 WHERE [Code] = 'kvt' END +SET [Description] = 'Lahta Karen', [Definition] = NULL, [SortOrder] = 3567.00 WHERE [Code] = 'kvt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhu', 'Lahu', NULL, 355.50) END +VALUES ('lhu', 'Lahu', NULL, 3568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahu', [Definition] = NULL, [SortOrder] = 355.50 WHERE [Code] = 'lhu' END +SET [Description] = 'Lahu', [Definition] = NULL, [SortOrder] = 3568.00 WHERE [Code] = 'lhu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhi', 'Lahu Shi', NULL, 355.60) END +VALUES ('lhi', 'Lahu Shi', NULL, 3569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahu Shi', [Definition] = NULL, [SortOrder] = 355.60 WHERE [Code] = 'lhi' END +SET [Description] = 'Lahu Shi', [Definition] = NULL, [SortOrder] = 3569.00 WHERE [Code] = 'lhi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhl', 'Lahul Lohar', NULL, 355.70) END +VALUES ('lhl', 'Lahul Lohar', NULL, 3570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lahul Lohar', [Definition] = NULL, [SortOrder] = 355.70 WHERE [Code] = 'lhl' END +SET [Description] = 'Lahul Lohar', [Definition] = NULL, [SortOrder] = 3570.00 WHERE [Code] = 'lhl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmx', 'Laimbue', NULL, 355.80) END +VALUES ('lmx', 'Laimbue', NULL, 3571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laimbue', [Definition] = NULL, [SortOrder] = 355.80 WHERE [Code] = 'lmx' END +SET [Description] = 'Laimbue', [Definition] = NULL, [SortOrder] = 3571.00 WHERE [Code] = 'lmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clj', 'Laitu Chin', NULL, 355.90) END +VALUES ('clj', 'Laitu Chin', NULL, 3572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laitu Chin', [Definition] = NULL, [SortOrder] = 355.90 WHERE [Code] = 'clj' END +SET [Description] = 'Laitu Chin', [Definition] = NULL, [SortOrder] = 3572.00 WHERE [Code] = 'clj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lji', 'Laiyolo', NULL, 356.00) END +VALUES ('lji', 'Laiyolo', NULL, 3573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laiyolo', [Definition] = NULL, [SortOrder] = 356.00 WHERE [Code] = 'lji' END +SET [Description] = 'Laiyolo', [Definition] = NULL, [SortOrder] = 3573.00 WHERE [Code] = 'lji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbe', 'Lak', NULL, 356.10) END +VALUES ('lbe', 'Lak', NULL, 3574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lak', [Definition] = NULL, [SortOrder] = 356.10 WHERE [Code] = 'lbe' END +SET [Description] = 'Lak', [Definition] = NULL, [SortOrder] = 3574.00 WHERE [Code] = 'lbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lap', 'Laka (Chad)', NULL, 356.20) END +VALUES ('lap', 'Laka (Chad)', NULL, 3575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laka (Chad)', [Definition] = NULL, [SortOrder] = 356.20 WHERE [Code] = 'lap' END +SET [Description] = 'Laka (Chad)', [Definition] = NULL, [SortOrder] = 3575.00 WHERE [Code] = 'lap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lka', 'Lakalei', NULL, 356.30) END +VALUES ('lka', 'Lakalei', NULL, 3576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakalei', [Definition] = NULL, [SortOrder] = 356.30 WHERE [Code] = 'lka' END +SET [Description] = 'Lakalei', [Definition] = NULL, [SortOrder] = 3576.00 WHERE [Code] = 'lka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmw', 'Lake Miwok', NULL, 356.40) END +VALUES ('lmw', 'Lake Miwok', NULL, 3577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lake Miwok', [Definition] = NULL, [SortOrder] = 356.40 WHERE [Code] = 'lmw' END +SET [Description] = 'Lake Miwok', [Definition] = NULL, [SortOrder] = 3577.00 WHERE [Code] = 'lmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkh', 'Lakha', NULL, 356.50) END +VALUES ('lkh', 'Lakha', NULL, 3578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakha', [Definition] = NULL, [SortOrder] = 356.50 WHERE [Code] = 'lkh' END +SET [Description] = 'Lakha', [Definition] = NULL, [SortOrder] = 3578.00 WHERE [Code] = 'lkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lki', 'Laki', NULL, 356.60) END +VALUES ('lki', 'Laki', NULL, 3579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laki', [Definition] = NULL, [SortOrder] = 356.60 WHERE [Code] = 'lki' END +SET [Description] = 'Laki', [Definition] = NULL, [SortOrder] = 3579.00 WHERE [Code] = 'lki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbc', 'Lakkia', NULL, 356.70) END +VALUES ('lbc', 'Lakkia', NULL, 3580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakkia', [Definition] = NULL, [SortOrder] = 356.70 WHERE [Code] = 'lbc' END +SET [Description] = 'Lakkia', [Definition] = NULL, [SortOrder] = 3580.00 WHERE [Code] = 'lbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkn', 'Lakon', NULL, 356.80) END +VALUES ('lkn', 'Lakon', NULL, 3581.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakon', [Definition] = NULL, [SortOrder] = 356.80 WHERE [Code] = 'lkn' END +SET [Description] = 'Lakon', [Definition] = NULL, [SortOrder] = 3581.00 WHERE [Code] = 'lkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkd', 'Lakondê', NULL, 356.90) END +VALUES ('lkd', 'Lakondê', NULL, 3582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakondê', [Definition] = NULL, [SortOrder] = 356.90 WHERE [Code] = 'lkd' END +SET [Description] = 'Lakondê', [Definition] = NULL, [SortOrder] = 3582.00 WHERE [Code] = 'lkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkt', 'Lakota', NULL, 357.00) END +VALUES ('lkt', 'Lakota', NULL, 3583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakota', [Definition] = NULL, [SortOrder] = 357.00 WHERE [Code] = 'lkt' END +SET [Description] = 'Lakota', [Definition] = NULL, [SortOrder] = 3583.00 WHERE [Code] = 'lkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dic', 'Lakota Dida', NULL, 357.10) END +VALUES ('dic', 'Lakota Dida', NULL, 3584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakota Dida', [Definition] = NULL, [SortOrder] = 357.10 WHERE [Code] = 'dic' END +SET [Description] = 'Lakota Dida', [Definition] = NULL, [SortOrder] = 3584.00 WHERE [Code] = 'dic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lxm', 'Lakurumau', NULL, 357.20) END +VALUES ('lxm', 'Lakurumau', NULL, 3585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lakurumau', [Definition] = NULL, [SortOrder] = 357.20 WHERE [Code] = 'lxm' END +SET [Description] = 'Lakurumau', [Definition] = NULL, [SortOrder] = 3585.00 WHERE [Code] = 'lxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrz', 'Lala', NULL, 357.30) END +VALUES ('nrz', 'Lala', NULL, 3586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lala', [Definition] = NULL, [SortOrder] = 357.30 WHERE [Code] = 'nrz' END +SET [Description] = 'Lala', [Definition] = NULL, [SortOrder] = 3586.00 WHERE [Code] = 'nrz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leb', 'Lala-Bisa', NULL, 357.40) END +VALUES ('leb', 'Lala-Bisa', NULL, 3587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lala-Bisa', [Definition] = NULL, [SortOrder] = 357.40 WHERE [Code] = 'leb' END +SET [Description] = 'Lala-Bisa', [Definition] = NULL, [SortOrder] = 3587.00 WHERE [Code] = 'leb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lla', 'Lala-Roba', NULL, 357.50) END +VALUES ('lla', 'Lala-Roba', NULL, 3588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lala-Roba', [Definition] = NULL, [SortOrder] = 357.50 WHERE [Code] = 'lla' END +SET [Description] = 'Lala-Roba', [Definition] = NULL, [SortOrder] = 3588.00 WHERE [Code] = 'lla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnl', 'Lalana Chinantec', NULL, 357.60) END +VALUES ('cnl', 'Lalana Chinantec', NULL, 3589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lalana Chinantec', [Definition] = NULL, [SortOrder] = 357.60 WHERE [Code] = 'cnl' END +SET [Description] = 'Lalana Chinantec', [Definition] = NULL, [SortOrder] = 3589.00 WHERE [Code] = 'cnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lal', 'Lalia', NULL, 357.70) END +VALUES ('lal', 'Lalia', NULL, 3590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lalia', [Definition] = NULL, [SortOrder] = 357.70 WHERE [Code] = 'lal' END +SET [Description] = 'Lalia', [Definition] = NULL, [SortOrder] = 3590.00 WHERE [Code] = 'lal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'las') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('las', 'Lama (Togo)', NULL, 357.80) END +VALUES ('las', 'Lama (Togo)', NULL, 3591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lama (Togo)', [Definition] = NULL, [SortOrder] = 357.80 WHERE [Code] = 'las' END +SET [Description] = 'Lama (Togo)', [Definition] = NULL, [SortOrder] = 3591.00 WHERE [Code] = 'las' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lay', 'Lama Bai', NULL, 357.90) END +VALUES ('lay', 'Lama Bai', NULL, 3592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lama Bai', [Definition] = NULL, [SortOrder] = 357.90 WHERE [Code] = 'lay' END +SET [Description] = 'Lama Bai', [Definition] = NULL, [SortOrder] = 3592.00 WHERE [Code] = 'lay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slp', 'Lamaholot', NULL, 358.00) END +VALUES ('slp', 'Lamaholot', NULL, 3593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamaholot', [Definition] = NULL, [SortOrder] = 358.00 WHERE [Code] = 'slp' END +SET [Description] = 'Lamaholot', [Definition] = NULL, [SortOrder] = 3593.00 WHERE [Code] = 'slp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lby', 'Lamalama', NULL, 358.10) END +VALUES ('lby', 'Lamalama', NULL, 3594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamalama', [Definition] = NULL, [SortOrder] = 358.10 WHERE [Code] = 'lby' END +SET [Description] = 'Lamalama', [Definition] = NULL, [SortOrder] = 3594.00 WHERE [Code] = 'lby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmr', 'Lamalera', NULL, 358.20) END +VALUES ('lmr', 'Lamalera', NULL, 3595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamalera', [Definition] = NULL, [SortOrder] = 358.20 WHERE [Code] = 'lmr' END +SET [Description] = 'Lamalera', [Definition] = NULL, [SortOrder] = 3595.00 WHERE [Code] = 'lmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hia', 'Lamang', NULL, 358.30) END +VALUES ('hia', 'Lamang', NULL, 3596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamang', [Definition] = NULL, [SortOrder] = 358.30 WHERE [Code] = 'hia' END +SET [Description] = 'Lamang', [Definition] = NULL, [SortOrder] = 3596.00 WHERE [Code] = 'hia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmq', 'Lamatuka', NULL, 358.40) END +VALUES ('lmq', 'Lamatuka', NULL, 3597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamatuka', [Definition] = NULL, [SortOrder] = 358.40 WHERE [Code] = 'lmq' END +SET [Description] = 'Lamatuka', [Definition] = NULL, [SortOrder] = 3597.00 WHERE [Code] = 'lmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lam', 'Lamba', NULL, 358.50) END +VALUES ('lam', 'Lamba', NULL, 3598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamba', [Definition] = NULL, [SortOrder] = 358.50 WHERE [Code] = 'lam' END +SET [Description] = 'Lamba', [Definition] = NULL, [SortOrder] = 3598.00 WHERE [Code] = 'lam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmn', 'Lambadi', NULL, 358.60) END +VALUES ('lmn', 'Lambadi', NULL, 3599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lambadi', [Definition] = NULL, [SortOrder] = 358.60 WHERE [Code] = 'lmn' END +SET [Description] = 'Lambadi', [Definition] = NULL, [SortOrder] = 3599.00 WHERE [Code] = 'lmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quf', 'Lambayeque Quechua', NULL, 358.70) END +VALUES ('quf', 'Lambayeque Quechua', NULL, 3600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lambayeque Quechua', [Definition] = NULL, [SortOrder] = 358.70 WHERE [Code] = 'quf' END +SET [Description] = 'Lambayeque Quechua', [Definition] = NULL, [SortOrder] = 3600.00 WHERE [Code] = 'quf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmh', 'Lambichhong', NULL, 358.80) END +VALUES ('lmh', 'Lambichhong', NULL, 3601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lambichhong', [Definition] = NULL, [SortOrder] = 358.80 WHERE [Code] = 'lmh' END +SET [Description] = 'Lambichhong', [Definition] = NULL, [SortOrder] = 3601.00 WHERE [Code] = 'lmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmy', 'Lamboya', NULL, 358.90) END +VALUES ('lmy', 'Lamboya', NULL, 3602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamboya', [Definition] = NULL, [SortOrder] = 358.90 WHERE [Code] = 'lmy' END +SET [Description] = 'Lamboya', [Definition] = NULL, [SortOrder] = 3602.00 WHERE [Code] = 'lmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lai', 'Lambya', NULL, 359.00) END +VALUES ('lai', 'Lambya', NULL, 3603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lambya', [Definition] = NULL, [SortOrder] = 359.00 WHERE [Code] = 'lai' END +SET [Description] = 'Lambya', [Definition] = NULL, [SortOrder] = 3603.00 WHERE [Code] = 'lai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bma', 'Lame', NULL, 359.10) END +VALUES ('bma', 'Lame', NULL, 3604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lame', [Definition] = NULL, [SortOrder] = 359.10 WHERE [Code] = 'bma' END +SET [Description] = 'Lame', [Definition] = NULL, [SortOrder] = 3604.00 WHERE [Code] = 'bma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmu', 'Lamenu', NULL, 359.20) END +VALUES ('lmu', 'Lamenu', NULL, 3605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamenu', [Definition] = NULL, [SortOrder] = 359.20 WHERE [Code] = 'lmu' END +SET [Description] = 'Lamenu', [Definition] = NULL, [SortOrder] = 3605.00 WHERE [Code] = 'lmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldh', 'Lamja-Dengsa-Tola', NULL, 359.30) END +VALUES ('ldh', 'Lamja-Dengsa-Tola', NULL, 3606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamja-Dengsa-Tola', [Definition] = NULL, [SortOrder] = 359.30 WHERE [Code] = 'ldh' END +SET [Description] = 'Lamja-Dengsa-Tola', [Definition] = NULL, [SortOrder] = 3606.00 WHERE [Code] = 'ldh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmk', 'Lamkang', NULL, 359.40) END +VALUES ('lmk', 'Lamkang', NULL, 3607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamkang', [Definition] = NULL, [SortOrder] = 359.40 WHERE [Code] = 'lmk' END +SET [Description] = 'Lamkang', [Definition] = NULL, [SortOrder] = 3607.00 WHERE [Code] = 'lmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lev', 'Lamma', NULL, 359.50) END +VALUES ('lev', 'Lamma', NULL, 3608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamma', [Definition] = NULL, [SortOrder] = 359.50 WHERE [Code] = 'lev' END +SET [Description] = 'Lamma', [Definition] = NULL, [SortOrder] = 3608.00 WHERE [Code] = 'lev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lns', 'Lamnso''', NULL, 359.60) END +VALUES ('lns', 'Lamnso''', NULL, 3609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamnso''', [Definition] = NULL, [SortOrder] = 359.60 WHERE [Code] = 'lns' END +SET [Description] = 'Lamnso''', [Definition] = NULL, [SortOrder] = 3609.00 WHERE [Code] = 'lns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmg', 'Lamogai', NULL, 359.70) END +VALUES ('lmg', 'Lamogai', NULL, 3610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamogai', [Definition] = NULL, [SortOrder] = 359.70 WHERE [Code] = 'lmg' END +SET [Description] = 'Lamogai', [Definition] = NULL, [SortOrder] = 3610.00 WHERE [Code] = 'lmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ljp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ljp', 'Lampung Api', NULL, 359.80) END +VALUES ('ljp', 'Lampung Api', NULL, 3611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lampung Api', [Definition] = NULL, [SortOrder] = 359.80 WHERE [Code] = 'ljp' END +SET [Description] = 'Lampung Api', [Definition] = NULL, [SortOrder] = 3611.00 WHERE [Code] = 'ljp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abl', 'Lampung Nyo', NULL, 359.90) END +VALUES ('abl', 'Lampung Nyo', NULL, 3612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lampung Nyo', [Definition] = NULL, [SortOrder] = 359.90 WHERE [Code] = 'abl' END +SET [Description] = 'Lampung Nyo', [Definition] = NULL, [SortOrder] = 3612.00 WHERE [Code] = 'abl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llh', 'Lamu', NULL, 360.00) END +VALUES ('llh', 'Lamu', NULL, 3613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lamu', [Definition] = NULL, [SortOrder] = 360.00 WHERE [Code] = 'llh' END +SET [Description] = 'Lamu', [Definition] = NULL, [SortOrder] = 3613.00 WHERE [Code] = 'llh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruu', 'Lanas Lobu', NULL, 360.10) END +VALUES ('ruu', 'Lanas Lobu', NULL, 3614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lanas Lobu', [Definition] = NULL, [SortOrder] = 360.10 WHERE [Code] = 'ruu' END +SET [Description] = 'Lanas Lobu', [Definition] = NULL, [SortOrder] = 3614.00 WHERE [Code] = 'ruu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldm', 'Landoma', NULL, 360.20) END +VALUES ('ldm', 'Landoma', NULL, 3615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Landoma', [Definition] = NULL, [SortOrder] = 360.20 WHERE [Code] = 'ldm' END +SET [Description] = 'Landoma', [Definition] = NULL, [SortOrder] = 3615.00 WHERE [Code] = 'ldm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yne', 'Lang''e', NULL, 360.30) END +VALUES ('yne', 'Lang''e', NULL, 3616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lang''e', [Definition] = NULL, [SortOrder] = 360.30 WHERE [Code] = 'yne' END +SET [Description] = 'Lang''e', [Definition] = NULL, [SortOrder] = 3616.00 WHERE [Code] = 'yne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnm', 'Langam', NULL, 360.40) END +VALUES ('lnm', 'Langam', NULL, 3617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langam', [Definition] = NULL, [SortOrder] = 360.40 WHERE [Code] = 'lnm' END +SET [Description] = 'Langam', [Definition] = NULL, [SortOrder] = 3617.00 WHERE [Code] = 'lnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lna', 'Langbashe', NULL, 360.50) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langbashe', [Definition] = NULL, [SortOrder] = 360.50 WHERE [Code] = 'lna' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lag', 'Langi', NULL, 360.60) END +VALUES ('lna', 'Langbashe', NULL, 3618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langi', [Definition] = NULL, [SortOrder] = 360.60 WHERE [Code] = 'lag' END +SET [Description] = 'Langbashe', [Definition] = NULL, [SortOrder] = 3618.00 WHERE [Code] = 'lna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yln', 'Langnian Buyang', NULL, 360.70) END +VALUES ('yln', 'Langnian Buyang', NULL, 3619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langnian Buyang', [Definition] = NULL, [SortOrder] = 360.70 WHERE [Code] = 'yln' END +SET [Description] = 'Langnian Buyang', [Definition] = NULL, [SortOrder] = 3619.00 WHERE [Code] = 'yln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgo', 'Lango (South Sudan)', NULL, 360.80) END +VALUES ('lgo', 'Lango (South Sudan)', NULL, 3620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lango (South Sudan)', [Definition] = NULL, [SortOrder] = 360.80 WHERE [Code] = 'lgo' END +SET [Description] = 'Lango (South Sudan)', [Definition] = NULL, [SortOrder] = 3620.00 WHERE [Code] = 'lgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laj', 'Lango (Uganda)', NULL, 360.90) END +VALUES ('laj', 'Lango (Uganda)', NULL, 3621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lango (Uganda)', [Definition] = NULL, [SortOrder] = 360.90 WHERE [Code] = 'laj' END +SET [Description] = 'Lango (Uganda)', [Definition] = NULL, [SortOrder] = 3621.00 WHERE [Code] = 'laj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lng', 'Langobardic', NULL, 361.00) END +VALUES ('lng', 'Langobardic', NULL, 3622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langobardic', [Definition] = NULL, [SortOrder] = 361.00 WHERE [Code] = 'lng' END +SET [Description] = 'Langobardic', [Definition] = NULL, [SortOrder] = 3622.00 WHERE [Code] = 'lng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfb', 'Langue des signes de Belgique Francophone', NULL, 361.10) END +VALUES ('sfb', 'Langue des signes de Belgique Francophone', NULL, 3623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Langue des signes de Belgique Francophone', [Definition] = NULL, [SortOrder] = 361.10 WHERE [Code] = 'sfb' END +SET [Description] = 'Langue des signes de Belgique Francophone', [Definition] = NULL, [SortOrder] = 3623.00 WHERE [Code] = 'sfb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnw', 'Lanima', NULL, 361.20) END +VALUES ('lnw', 'Lanima', NULL, 3624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lanima', [Definition] = NULL, [SortOrder] = 361.20 WHERE [Code] = 'lnw' END +SET [Description] = 'Lanima', [Definition] = NULL, [SortOrder] = 3624.00 WHERE [Code] = 'lnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnh', 'Lanoh', NULL, 361.30) END +VALUES ('lnh', 'Lanoh', NULL, 3625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lanoh', [Definition] = NULL, [SortOrder] = 361.30 WHERE [Code] = 'lnh' END +SET [Description] = 'Lanoh', [Definition] = NULL, [SortOrder] = 3625.00 WHERE [Code] = 'lnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lao', 'Lao', NULL, 361.40) END +VALUES ('lao', 'Lao', NULL, 3626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lao', [Definition] = NULL, [SortOrder] = 361.40 WHERE [Code] = 'lao' END +SET [Description] = 'Lao', [Definition] = NULL, [SortOrder] = 3626.00 WHERE [Code] = 'lao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlq', 'Lao Naga', NULL, 361.50) END +VALUES ('nlq', 'Lao Naga', NULL, 3627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lao Naga', [Definition] = NULL, [SortOrder] = 361.50 WHERE [Code] = 'nlq' END +SET [Description] = 'Lao Naga', [Definition] = NULL, [SortOrder] = 3627.00 WHERE [Code] = 'nlq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwm', 'Laomian', NULL, 361.60) END +VALUES ('lwm', 'Laomian', NULL, 3628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laomian', [Definition] = NULL, [SortOrder] = 361.60 WHERE [Code] = 'lwm' END +SET [Description] = 'Laomian', [Definition] = NULL, [SortOrder] = 3628.00 WHERE [Code] = 'lwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbg', 'Laopang', NULL, 361.70) END +VALUES ('lbg', 'Laopang', NULL, 3629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laopang', [Definition] = NULL, [SortOrder] = 361.70 WHERE [Code] = 'lbg' END +SET [Description] = 'Laopang', [Definition] = NULL, [SortOrder] = 3629.00 WHERE [Code] = 'lbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lso', 'Laos Sign Language', NULL, 361.80) END +VALUES ('lso', 'Laos Sign Language', NULL, 3630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laos Sign Language', [Definition] = NULL, [SortOrder] = 361.80 WHERE [Code] = 'lso' END +SET [Description] = 'Laos Sign Language', [Definition] = NULL, [SortOrder] = 3630.00 WHERE [Code] = 'lso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztl', 'Lapaguía-Guivini Zapotec', NULL, 361.90) END +VALUES ('ztl', 'Lapaguía-Guivini Zapotec', NULL, 3631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lapaguía-Guivini Zapotec', [Definition] = NULL, [SortOrder] = 361.90 WHERE [Code] = 'ztl' END +SET [Description] = 'Lapaguía-Guivini Zapotec', [Definition] = NULL, [SortOrder] = 3631.00 WHERE [Code] = 'ztl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrg', 'Laragia', NULL, 362.00) END +VALUES ('lrg', 'Laragia', NULL, 3632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laragia', [Definition] = NULL, [SortOrder] = 362.00 WHERE [Code] = 'lrg' END +SET [Description] = 'Laragia', [Definition] = NULL, [SortOrder] = 3632.00 WHERE [Code] = 'lrg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrt', 'Larantuka Malay', NULL, 362.10) END +VALUES ('lrt', 'Larantuka Malay', NULL, 3633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Larantuka Malay', [Definition] = NULL, [SortOrder] = 362.10 WHERE [Code] = 'lrt' END +SET [Description] = 'Larantuka Malay', [Definition] = NULL, [SortOrder] = 3633.00 WHERE [Code] = 'lrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbz', 'Lardil', NULL, 362.20) END +VALUES ('lbz', 'Lardil', NULL, 3634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lardil', [Definition] = NULL, [SortOrder] = 362.20 WHERE [Code] = 'lbz' END +SET [Description] = 'Lardil', [Definition] = NULL, [SortOrder] = 3634.00 WHERE [Code] = 'lbz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrv', 'Larevat', NULL, 362.30) END +VALUES ('lrv', 'Larevat', NULL, 3635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Larevat', [Definition] = NULL, [SortOrder] = 362.30 WHERE [Code] = 'lrv' END +SET [Description] = 'Larevat', [Definition] = NULL, [SortOrder] = 3635.00 WHERE [Code] = 'lrv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmd', 'Large Flowery Miao', NULL, 362.40) END +VALUES ('hmd', 'Large Flowery Miao', NULL, 3636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Large Flowery Miao', [Definition] = NULL, [SortOrder] = 362.40 WHERE [Code] = 'hmd' END +SET [Description] = 'Large Flowery Miao', [Definition] = NULL, [SortOrder] = 3636.00 WHERE [Code] = 'hmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrl', 'Lari', NULL, 362.50) END +VALUES ('lrl', 'Lari', NULL, 3637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lari', [Definition] = NULL, [SortOrder] = 362.50 WHERE [Code] = 'lrl' END +SET [Description] = 'Lari', [Definition] = NULL, [SortOrder] = 3637.00 WHERE [Code] = 'lrl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alo', 'Larike-Wakasihu', NULL, 362.60) END +VALUES ('alo', 'Larike-Wakasihu', NULL, 3638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Larike-Wakasihu', [Definition] = NULL, [SortOrder] = 362.60 WHERE [Code] = 'alo' END +SET [Description] = 'Larike-Wakasihu', [Definition] = NULL, [SortOrder] = 3638.00 WHERE [Code] = 'alo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lro', 'Laro', NULL, 362.70) END +VALUES ('lro', 'Laro', NULL, 3639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laro', [Definition] = NULL, [SortOrder] = 362.70 WHERE [Code] = 'lro' END +SET [Description] = 'Laro', [Definition] = NULL, [SortOrder] = 3639.00 WHERE [Code] = 'lro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lar', 'Larteh', NULL, 362.80) END +VALUES ('lar', 'Larteh', NULL, 3640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Larteh', [Definition] = NULL, [SortOrder] = 362.80 WHERE [Code] = 'lar' END +SET [Description] = 'Larteh', [Definition] = NULL, [SortOrder] = 3640.00 WHERE [Code] = 'lar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lan', 'Laru', NULL, 362.90) END +VALUES ('lan', 'Laru', NULL, 3641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laru', [Definition] = NULL, [SortOrder] = 362.90 WHERE [Code] = 'lan' END +SET [Description] = 'Laru', [Definition] = NULL, [SortOrder] = 3641.00 WHERE [Code] = 'lan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zcd', 'Las Delicias Zapotec', NULL, 363.00) END +VALUES ('zcd', 'Las Delicias Zapotec', NULL, 3642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Las Delicias Zapotec', [Definition] = NULL, [SortOrder] = 363.00 WHERE [Code] = 'zcd' END +SET [Description] = 'Las Delicias Zapotec', [Definition] = NULL, [SortOrder] = 3642.00 WHERE [Code] = 'zcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llm', 'Lasalimu', NULL, 363.10) END +VALUES ('llm', 'Lasalimu', NULL, 3643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lasalimu', [Definition] = NULL, [SortOrder] = 363.10 WHERE [Code] = 'llm' END +SET [Description] = 'Lasalimu', [Definition] = NULL, [SortOrder] = 3643.00 WHERE [Code] = 'llm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsa', 'Lasgerdi', NULL, 363.20) END +VALUES ('lsa', 'Lasgerdi', NULL, 3644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lasgerdi', [Definition] = NULL, [SortOrder] = 363.20 WHERE [Code] = 'lsa' END +SET [Description] = 'Lasgerdi', [Definition] = NULL, [SortOrder] = 3644.00 WHERE [Code] = 'lsa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsi', 'Lashi', NULL, 363.30) END +VALUES ('lsi', 'Lashi', NULL, 3645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lashi', [Definition] = NULL, [SortOrder] = 363.30 WHERE [Code] = 'lsi' END +SET [Description] = 'Lashi', [Definition] = NULL, [SortOrder] = 3645.00 WHERE [Code] = 'lsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lss', 'Lasi', NULL, 363.40) END +VALUES ('lss', 'Lasi', NULL, 3646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lasi', [Definition] = NULL, [SortOrder] = 363.40 WHERE [Code] = 'lss' END +SET [Description] = 'Lasi', [Definition] = NULL, [SortOrder] = 3646.00 WHERE [Code] = 'lss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltc', 'Late Middle Chinese', NULL, 363.50) END +VALUES ('ltc', 'Late Middle Chinese', NULL, 3647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Late Middle Chinese', [Definition] = NULL, [SortOrder] = 363.50 WHERE [Code] = 'ltc' END +SET [Description] = 'Late Middle Chinese', [Definition] = NULL, [SortOrder] = 3647.00 WHERE [Code] = 'ltc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltg', 'Latgalian', NULL, 363.60) END +VALUES ('ltg', 'Latgalian', NULL, 3648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latgalian', [Definition] = NULL, [SortOrder] = 363.60 WHERE [Code] = 'ltg' END +SET [Description] = 'Latgalian', [Definition] = NULL, [SortOrder] = 3648.00 WHERE [Code] = 'ltg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lat', 'Latin', NULL, 363.70) END +VALUES ('lat', 'Latin', NULL, 3649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latin', [Definition] = NULL, [SortOrder] = 363.70 WHERE [Code] = 'lat' END +SET [Description] = 'Latin', [Definition] = NULL, [SortOrder] = 3649.00 WHERE [Code] = 'lat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltu', 'Latu', NULL, 363.80) END +VALUES ('ltu', 'Latu', NULL, 3650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latu', [Definition] = NULL, [SortOrder] = 363.80 WHERE [Code] = 'ltu' END +SET [Description] = 'Latu', [Definition] = NULL, [SortOrder] = 3650.00 WHERE [Code] = 'ltu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltn', 'Latundê', NULL, 363.90) END +VALUES ('ltn', 'Latundê', NULL, 3651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latundê', [Definition] = NULL, [SortOrder] = 363.90 WHERE [Code] = 'ltn' END +SET [Description] = 'Latundê', [Definition] = NULL, [SortOrder] = 3651.00 WHERE [Code] = 'ltn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lav', 'Latvian', NULL, 364.00) END +VALUES ('lav', 'Latvian', NULL, 3652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latvian', [Definition] = NULL, [SortOrder] = 364.00 WHERE [Code] = 'lav' END +SET [Description] = 'Latvian', [Definition] = NULL, [SortOrder] = 3652.00 WHERE [Code] = 'lav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsl', 'Latvian Sign Language', NULL, 364.10) END +VALUES ('lsl', 'Latvian Sign Language', NULL, 3653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Latvian Sign Language', [Definition] = NULL, [SortOrder] = 364.10 WHERE [Code] = 'lsl' END +SET [Description] = 'Latvian Sign Language', [Definition] = NULL, [SortOrder] = 3653.00 WHERE [Code] = 'lsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llu', 'Lau', NULL, 364.20) END +VALUES ('llu', 'Lau', NULL, 3654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lau', [Definition] = NULL, [SortOrder] = 364.20 WHERE [Code] = 'llu' END +SET [Description] = 'Lau', [Definition] = NULL, [SortOrder] = 3654.00 WHERE [Code] = 'llu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luf', 'Laua', NULL, 364.30) END +VALUES ('luf', 'Laua', NULL, 3655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laua', [Definition] = NULL, [SortOrder] = 364.30 WHERE [Code] = 'luf' END +SET [Description] = 'Laua', [Definition] = NULL, [SortOrder] = 3655.00 WHERE [Code] = 'luf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llx', 'Lauan', NULL, 364.40) END +VALUES ('llx', 'Lauan', NULL, 3656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lauan', [Definition] = NULL, [SortOrder] = 364.40 WHERE [Code] = 'llx' END +SET [Description] = 'Lauan', [Definition] = NULL, [SortOrder] = 3656.00 WHERE [Code] = 'llx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'law') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('law', 'Lauje', NULL, 364.50) END +VALUES ('law', 'Lauje', NULL, 3657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lauje', [Definition] = NULL, [SortOrder] = 364.50 WHERE [Code] = 'law' END +SET [Description] = 'Lauje', [Definition] = NULL, [SortOrder] = 3657.00 WHERE [Code] = 'law' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lur', 'Laura', NULL, 364.60) END +VALUES ('lur', 'Laura', NULL, 3658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laura', [Definition] = NULL, [SortOrder] = 364.60 WHERE [Code] = 'lur' END +SET [Description] = 'Laura', [Definition] = NULL, [SortOrder] = 3658.00 WHERE [Code] = 'lur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lre', 'Laurentian', NULL, 364.70) END +VALUES ('lre', 'Laurentian', NULL, 3659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laurentian', [Definition] = NULL, [SortOrder] = 364.70 WHERE [Code] = 'lre' END +SET [Description] = 'Laurentian', [Definition] = NULL, [SortOrder] = 3659.00 WHERE [Code] = 'lre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clt', 'Lautu Chin', NULL, 364.80) END +VALUES ('clt', 'Lautu Chin', NULL, 3660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lautu Chin', [Definition] = NULL, [SortOrder] = 364.80 WHERE [Code] = 'clt' END +SET [Description] = 'Lautu Chin', [Definition] = NULL, [SortOrder] = 3660.00 WHERE [Code] = 'clt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbv', 'Lavatbura-Lamusong', NULL, 364.90) END +VALUES ('lbv', 'Lavatbura-Lamusong', NULL, 3661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lavatbura-Lamusong', [Definition] = NULL, [SortOrder] = 364.90 WHERE [Code] = 'lbv' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brb', 'Brao', NULL, 365.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Brao', [Definition] = NULL, [SortOrder] = 365.00 WHERE [Code] = 'brb' END +SET [Description] = 'Lavatbura-Lamusong', [Definition] = NULL, [SortOrder] = 3661.00 WHERE [Code] = 'lbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbo', 'Laven', NULL, 365.10) END +VALUES ('lbo', 'Laven', NULL, 3662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laven', [Definition] = NULL, [SortOrder] = 365.10 WHERE [Code] = 'lbo' END +SET [Description] = 'Laven', [Definition] = NULL, [SortOrder] = 3662.00 WHERE [Code] = 'lbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lvi', 'Lavi', NULL, 365.20) END +VALUES ('lvi', 'Lavi', NULL, 3663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lavi', [Definition] = NULL, [SortOrder] = 365.20 WHERE [Code] = 'lvi' END +SET [Description] = 'Lavi', [Definition] = NULL, [SortOrder] = 3663.00 WHERE [Code] = 'lvi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lvk', 'Lavukaleve', NULL, 365.30) END +VALUES ('lvk', 'Lavukaleve', NULL, 3664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lavukaleve', [Definition] = NULL, [SortOrder] = 365.30 WHERE [Code] = 'lvk' END +SET [Description] = 'Lavukaleve', [Definition] = NULL, [SortOrder] = 3664.00 WHERE [Code] = 'lvk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbx', 'Lawangan', NULL, 365.40) END +VALUES ('lbx', 'Lawangan', NULL, 3665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lawangan', [Definition] = NULL, [SortOrder] = 365.40 WHERE [Code] = 'lbx' END +SET [Description] = 'Lawangan', [Definition] = NULL, [SortOrder] = 3665.00 WHERE [Code] = 'lbx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwu', 'Lawu', NULL, 365.50) END +VALUES ('lwu', 'Lawu', NULL, 3666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lawu', [Definition] = NULL, [SortOrder] = 365.50 WHERE [Code] = 'lwu' END +SET [Description] = 'Lawu', [Definition] = NULL, [SortOrder] = 3666.00 WHERE [Code] = 'lwu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgi', 'Lawunuia', NULL, 365.60) END +VALUES ('tgi', 'Lawunuia', NULL, 3667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lawunuia', [Definition] = NULL, [SortOrder] = 365.60 WHERE [Code] = 'tgi' END +SET [Description] = 'Lawunuia', [Definition] = NULL, [SortOrder] = 3667.00 WHERE [Code] = 'tgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lya', 'Layakha', NULL, 365.70) END +VALUES ('lya', 'Layakha', NULL, 3668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Layakha', [Definition] = NULL, [SortOrder] = 365.70 WHERE [Code] = 'lya' END +SET [Description] = 'Layakha', [Definition] = NULL, [SortOrder] = 3668.00 WHERE [Code] = 'lya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lzz', 'Laz', NULL, 365.80) END +VALUES ('lzz', 'Laz', NULL, 3669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Laz', [Definition] = NULL, [SortOrder] = 365.80 WHERE [Code] = 'lzz' END +SET [Description] = 'Laz', [Definition] = NULL, [SortOrder] = 3669.00 WHERE [Code] = 'lzz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cle', 'Lealao Chinantec', NULL, 365.90) END +VALUES ('cle', 'Lealao Chinantec', NULL, 3670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lealao Chinantec', [Definition] = NULL, [SortOrder] = 365.90 WHERE [Code] = 'cle' END +SET [Description] = 'Lealao Chinantec', [Definition] = NULL, [SortOrder] = 3670.00 WHERE [Code] = 'cle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lec', 'Leco', NULL, 366.00) END +VALUES ('lec', 'Leco', NULL, 3671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leco', [Definition] = NULL, [SortOrder] = 366.00 WHERE [Code] = 'lec' END +SET [Description] = 'Leco', [Definition] = NULL, [SortOrder] = 3671.00 WHERE [Code] = 'lec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lew', 'Ledo Kaili', NULL, 366.10) END +VALUES ('lew', 'Ledo Kaili', NULL, 3672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ledo Kaili', [Definition] = NULL, [SortOrder] = 366.10 WHERE [Code] = 'lew' END +SET [Description] = 'Ledo Kaili', [Definition] = NULL, [SortOrder] = 3672.00 WHERE [Code] = 'lew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldk', 'Leelau', NULL, 366.20) END +VALUES ('ldk', 'Leelau', NULL, 3673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leelau', [Definition] = NULL, [SortOrder] = 366.20 WHERE [Code] = 'ldk' END +SET [Description] = 'Leelau', [Definition] = NULL, [SortOrder] = 3673.00 WHERE [Code] = 'ldk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lfa', 'Lefa', NULL, 366.30) END +VALUES ('lfa', 'Lefa', NULL, 3674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lefa', [Definition] = NULL, [SortOrder] = 366.30 WHERE [Code] = 'lfa' END +SET [Description] = 'Lefa', [Definition] = NULL, [SortOrder] = 3674.00 WHERE [Code] = 'lfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgm', 'Lega-Mwenga', NULL, 366.40) END +VALUES ('lgm', 'Lega-Mwenga', NULL, 3675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lega-Mwenga', [Definition] = NULL, [SortOrder] = 366.40 WHERE [Code] = 'lgm' END +SET [Description] = 'Lega-Mwenga', [Definition] = NULL, [SortOrder] = 3675.00 WHERE [Code] = 'lgm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lea', 'Lega-Shabunda', NULL, 366.50) END +VALUES ('lea', 'Lega-Shabunda', NULL, 3676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lega-Shabunda', [Definition] = NULL, [SortOrder] = 366.50 WHERE [Code] = 'lea' END +SET [Description] = 'Lega-Shabunda', [Definition] = NULL, [SortOrder] = 3676.00 WHERE [Code] = 'lea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agb', 'Legbo', NULL, 366.60) END +VALUES ('agb', 'Legbo', NULL, 3677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Legbo', [Definition] = NULL, [SortOrder] = 366.60 WHERE [Code] = 'agb' END +SET [Description] = 'Legbo', [Definition] = NULL, [SortOrder] = 3677.00 WHERE [Code] = 'agb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcc', 'Legenyem', NULL, 366.70) END +VALUES ('lcc', 'Legenyem', NULL, 3678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Legenyem', [Definition] = NULL, [SortOrder] = 366.70 WHERE [Code] = 'lcc' END +SET [Description] = 'Legenyem', [Definition] = NULL, [SortOrder] = 3678.00 WHERE [Code] = 'lcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tql', 'Lehali', NULL, 366.80) END +VALUES ('tql', 'Lehali', NULL, 3679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lehali', [Definition] = NULL, [SortOrder] = 366.80 WHERE [Code] = 'tql' END +SET [Description] = 'Lehali', [Definition] = NULL, [SortOrder] = 3679.00 WHERE [Code] = 'tql' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urr', 'Lehalurup', NULL, 366.90) END +VALUES ('urr', 'Lehalurup', NULL, 3680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lehalurup', [Definition] = NULL, [SortOrder] = 366.90 WHERE [Code] = 'urr' END +SET [Description] = 'Lehalurup', [Definition] = NULL, [SortOrder] = 3680.00 WHERE [Code] = 'urr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cae', 'Lehar', NULL, 367.00) END +VALUES ('cae', 'Lehar', NULL, 3681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lehar', [Definition] = NULL, [SortOrder] = 367.00 WHERE [Code] = 'cae' END +SET [Description] = 'Lehar', [Definition] = NULL, [SortOrder] = 3681.00 WHERE [Code] = 'cae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lzn', 'Leinong Naga', NULL, 367.10) END +VALUES ('lzn', 'Leinong Naga', NULL, 3682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leinong Naga', [Definition] = NULL, [SortOrder] = 367.10 WHERE [Code] = 'lzn' END +SET [Description] = 'Leinong Naga', [Definition] = NULL, [SortOrder] = 3682.00 WHERE [Code] = 'lzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lek', 'Leipon', NULL, 367.20) END +VALUES ('lek', 'Leipon', NULL, 3683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leipon', [Definition] = NULL, [SortOrder] = 367.20 WHERE [Code] = 'lek' END +SET [Description] = 'Leipon', [Definition] = NULL, [SortOrder] = 3683.00 WHERE [Code] = 'lek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llk', 'Lelak', NULL, 367.30) END +VALUES ('llk', 'Lelak', NULL, 3684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lelak', [Definition] = NULL, [SortOrder] = 367.30 WHERE [Code] = 'llk' END +SET [Description] = 'Lelak', [Definition] = NULL, [SortOrder] = 3684.00 WHERE [Code] = 'llk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lln', 'Lele (Chad)', NULL, 367.40) END +VALUES ('lln', 'Lele (Chad)', NULL, 3685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lele (Chad)', [Definition] = NULL, [SortOrder] = 367.40 WHERE [Code] = 'lln' END +SET [Description] = 'Lele (Chad)', [Definition] = NULL, [SortOrder] = 3685.00 WHERE [Code] = 'lln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lel', 'Lele (Democratic Republic of Congo)', NULL, 367.50) END +VALUES ('lel', 'Lele (Democratic Republic of Congo)', NULL, 3686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lele (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 367.50 WHERE [Code] = 'lel' END +SET [Description] = 'Lele (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 3686.00 WHERE [Code] = 'lel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llc', 'Lele (Guinea)', NULL, 367.60) END +VALUES ('llc', 'Lele (Guinea)', NULL, 3687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lele (Guinea)', [Definition] = NULL, [SortOrder] = 367.60 WHERE [Code] = 'llc' END +SET [Description] = 'Lele (Guinea)', [Definition] = NULL, [SortOrder] = 3687.00 WHERE [Code] = 'llc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lle', 'Lele (Papua New Guinea)', NULL, 367.70) END +VALUES ('lle', 'Lele (Papua New Guinea)', NULL, 3688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lele (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 367.70 WHERE [Code] = 'lle' END +SET [Description] = 'Lele (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3688.00 WHERE [Code] = 'lle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lef', 'Lelemi', NULL, 367.80) END +VALUES ('lef', 'Lelemi', NULL, 3689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lelemi', [Definition] = NULL, [SortOrder] = 367.80 WHERE [Code] = 'lef' END +SET [Description] = 'Lelemi', [Definition] = NULL, [SortOrder] = 3689.00 WHERE [Code] = 'lef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpa', 'Lelepa', NULL, 367.90) END +VALUES ('lpa', 'Lelepa', NULL, 3690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lelepa', [Definition] = NULL, [SortOrder] = 367.90 WHERE [Code] = 'lpa' END +SET [Description] = 'Lelepa', [Definition] = NULL, [SortOrder] = 3690.00 WHERE [Code] = 'lpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leq', 'Lembena', NULL, 368.00) END +VALUES ('leq', 'Lembena', NULL, 3691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lembena', [Definition] = NULL, [SortOrder] = 368.00 WHERE [Code] = 'leq' END +SET [Description] = 'Lembena', [Definition] = NULL, [SortOrder] = 3691.00 WHERE [Code] = 'leq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrz', 'Lemerig', NULL, 368.10) END +VALUES ('lrz', 'Lemerig', NULL, 3692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemerig', [Definition] = NULL, [SortOrder] = 368.10 WHERE [Code] = 'lrz' END +SET [Description] = 'Lemerig', [Definition] = NULL, [SortOrder] = 3692.00 WHERE [Code] = 'lrz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lei', 'Lemio', NULL, 368.20) END +VALUES ('lei', 'Lemio', NULL, 3693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemio', [Definition] = NULL, [SortOrder] = 368.20 WHERE [Code] = 'lei' END +SET [Description] = 'Lemio', [Definition] = NULL, [SortOrder] = 3693.00 WHERE [Code] = 'lei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xle', 'Lemnian', NULL, 368.30) END +VALUES ('xle', 'Lemnian', NULL, 3694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemnian', [Definition] = NULL, [SortOrder] = 368.30 WHERE [Code] = 'xle' END +SET [Description] = 'Lemnian', [Definition] = NULL, [SortOrder] = 3694.00 WHERE [Code] = 'xle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ley') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ley', 'Lemolang', NULL, 368.40) END +VALUES ('ley', 'Lemolang', NULL, 3695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemolang', [Definition] = NULL, [SortOrder] = 368.40 WHERE [Code] = 'ley' END +SET [Description] = 'Lemolang', [Definition] = NULL, [SortOrder] = 3695.00 WHERE [Code] = 'ley' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldj', 'Lemoro', NULL, 368.50) END +VALUES ('ldj', 'Lemoro', NULL, 3696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lemoro', [Definition] = NULL, [SortOrder] = 368.50 WHERE [Code] = 'ldj' END +SET [Description] = 'Lemoro', [Definition] = NULL, [SortOrder] = 3696.00 WHERE [Code] = 'ldj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnl', 'Lenakel', NULL, 368.60) END +VALUES ('tnl', 'Lenakel', NULL, 3697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenakel', [Definition] = NULL, [SortOrder] = 368.60 WHERE [Code] = 'tnl' END +SET [Description] = 'Lenakel', [Definition] = NULL, [SortOrder] = 3697.00 WHERE [Code] = 'tnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'len') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('len', 'Lenca', NULL, 368.70) END +VALUES ('len', 'Lenca', NULL, 3698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenca', [Definition] = NULL, [SortOrder] = 368.70 WHERE [Code] = 'len' END +SET [Description] = 'Lenca', [Definition] = NULL, [SortOrder] = 3698.00 WHERE [Code] = 'len' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'led') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('led', 'Lendu', NULL, 368.80) END +VALUES ('led', 'Lendu', NULL, 3699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lendu', [Definition] = NULL, [SortOrder] = 368.80 WHERE [Code] = 'led' END +SET [Description] = 'Lendu', [Definition] = NULL, [SortOrder] = 3699.00 WHERE [Code] = 'led' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgi', 'Lengilu', NULL, 368.90) END +VALUES ('lgi', 'Lengilu', NULL, 3700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lengilu', [Definition] = NULL, [SortOrder] = 368.90 WHERE [Code] = 'lgi' END +SET [Description] = 'Lengilu', [Definition] = NULL, [SortOrder] = 3700.00 WHERE [Code] = 'lgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgr', 'Lengo', NULL, 369.00) END +VALUES ('lgr', 'Lengo', NULL, 3701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lengo', [Definition] = NULL, [SortOrder] = 369.00 WHERE [Code] = 'lgr' END +SET [Description] = 'Lengo', [Definition] = NULL, [SortOrder] = 3701.00 WHERE [Code] = 'lgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lej', 'Lengola', NULL, 369.10) END +VALUES ('lej', 'Lengola', NULL, 3702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lengola', [Definition] = NULL, [SortOrder] = 369.10 WHERE [Code] = 'lej' END +SET [Description] = 'Lengola', [Definition] = NULL, [SortOrder] = 3702.00 WHERE [Code] = 'lej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnj', 'Leningitij', NULL, 369.20) END +VALUES ('lnj', 'Leningitij', NULL, 3703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leningitij', [Definition] = NULL, [SortOrder] = 369.20 WHERE [Code] = 'lnj' END +SET [Description] = 'Leningitij', [Definition] = NULL, [SortOrder] = 3703.00 WHERE [Code] = 'lnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leh', 'Lenje', NULL, 369.30) END +VALUES ('leh', 'Lenje', NULL, 3704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenje', [Definition] = NULL, [SortOrder] = 369.30 WHERE [Code] = 'leh' END +SET [Description] = 'Lenje', [Definition] = NULL, [SortOrder] = 3704.00 WHERE [Code] = 'leh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ler') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ler', 'Lenkau', NULL, 369.40) END +VALUES ('ler', 'Lenkau', NULL, 3705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenkau', [Definition] = NULL, [SortOrder] = 369.40 WHERE [Code] = 'ler' END +SET [Description] = 'Lenkau', [Definition] = NULL, [SortOrder] = 3705.00 WHERE [Code] = 'ler' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldg', 'Lenyima', NULL, 369.50) END +VALUES ('ldg', 'Lenyima', NULL, 3706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lenyima', [Definition] = NULL, [SortOrder] = 369.50 WHERE [Code] = 'ldg' END +SET [Description] = 'Lenyima', [Definition] = NULL, [SortOrder] = 3706.00 WHERE [Code] = 'ldg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lep', 'Lepcha', NULL, 369.60) END +VALUES ('lep', 'Lepcha', NULL, 3707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lepcha', [Definition] = NULL, [SortOrder] = 369.60 WHERE [Code] = 'lep' END +SET [Description] = 'Lepcha', [Definition] = NULL, [SortOrder] = 3707.00 WHERE [Code] = 'lep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpe', 'Lepki', NULL, 369.70) END +VALUES ('lpe', 'Lepki', NULL, 3708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lepki', [Definition] = NULL, [SortOrder] = 369.70 WHERE [Code] = 'lpe' END +SET [Description] = 'Lepki', [Definition] = NULL, [SortOrder] = 3708.00 WHERE [Code] = 'lpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlp', 'Lepontic', NULL, 369.80) END +VALUES ('xlp', 'Lepontic', NULL, 3709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lepontic', [Definition] = NULL, [SortOrder] = 369.80 WHERE [Code] = 'xlp' END +SET [Description] = 'Lepontic', [Definition] = NULL, [SortOrder] = 3709.00 WHERE [Code] = 'xlp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnh', 'Lere', NULL, 369.90) END +VALUES ('gnh', 'Lere', NULL, 3710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lere', [Definition] = NULL, [SortOrder] = 369.90 WHERE [Code] = 'gnh' END +SET [Description] = 'Lere', [Definition] = NULL, [SortOrder] = 3710.00 WHERE [Code] = 'gnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'les') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('les', 'Lese', NULL, 370.00) END +VALUES ('les', 'Lese', NULL, 3711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lese', [Definition] = NULL, [SortOrder] = 370.00 WHERE [Code] = 'les' END +SET [Description] = 'Lese', [Definition] = NULL, [SortOrder] = 3711.00 WHERE [Code] = 'les' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'let') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('let', 'Lesing-Gelimi', NULL, 370.10) END +VALUES ('let', 'Lesing-Gelimi', NULL, 3712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lesing-Gelimi', [Definition] = NULL, [SortOrder] = 370.10 WHERE [Code] = 'let' END +SET [Description] = 'Lesing-Gelimi', [Definition] = NULL, [SortOrder] = 3712.00 WHERE [Code] = 'let' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nms', 'Letemboi', NULL, 370.20) END +VALUES ('nms', 'Letemboi', NULL, 3713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Letemboi', [Definition] = NULL, [SortOrder] = 370.20 WHERE [Code] = 'nms' END +SET [Description] = 'Letemboi', [Definition] = NULL, [SortOrder] = 3713.00 WHERE [Code] = 'nms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'leo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('leo', 'Leti (Cameroon)', NULL, 370.30) END +VALUES ('leo', 'Leti (Cameroon)', NULL, 3714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leti (Cameroon)', [Definition] = NULL, [SortOrder] = 370.30 WHERE [Code] = 'leo' END +SET [Description] = 'Leti (Cameroon)', [Definition] = NULL, [SortOrder] = 3714.00 WHERE [Code] = 'leo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lti', 'Leti (Indonesia)', NULL, 370.40) END +VALUES ('lti', 'Leti (Indonesia)', NULL, 3715.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Leti (Indonesia)', [Definition] = NULL, [SortOrder] = 3715.00 WHERE [Code] = 'lti' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('apc', 'Levantine Arabic', NULL, 3716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leti (Indonesia)', [Definition] = NULL, [SortOrder] = 370.40 WHERE [Code] = 'lti' END +SET [Description] = 'Levantine Arabic', [Definition] = NULL, [SortOrder] = 3716.00 WHERE [Code] = 'apc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lvu', 'Levuka', NULL, 370.50) END +VALUES ('lvu', 'Levuka', NULL, 3717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Levuka', [Definition] = NULL, [SortOrder] = 370.50 WHERE [Code] = 'lvu' END +SET [Description] = 'Levuka', [Definition] = NULL, [SortOrder] = 3717.00 WHERE [Code] = 'lvu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lww', 'Lewo', NULL, 370.60) END +VALUES ('lww', 'Lewo', NULL, 3718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lewo', [Definition] = NULL, [SortOrder] = 370.60 WHERE [Code] = 'lww' END +SET [Description] = 'Lewo', [Definition] = NULL, [SortOrder] = 3718.00 WHERE [Code] = 'lww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwe', 'Lewo Eleng', NULL, 370.70) END +VALUES ('lwe', 'Lewo Eleng', NULL, 3719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lewo Eleng', [Definition] = NULL, [SortOrder] = 370.70 WHERE [Code] = 'lwe' END +SET [Description] = 'Lewo Eleng', [Definition] = NULL, [SortOrder] = 3719.00 WHERE [Code] = 'lwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwt', 'Lewotobi', NULL, 370.80) END +VALUES ('lwt', 'Lewotobi', NULL, 3720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lewotobi', [Definition] = NULL, [SortOrder] = 370.80 WHERE [Code] = 'lwt' END +SET [Description] = 'Lewotobi', [Definition] = NULL, [SortOrder] = 3720.00 WHERE [Code] = 'lwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayi', 'Leyigha', NULL, 370.90) END +VALUES ('ayi', 'Leyigha', NULL, 3721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Leyigha', [Definition] = NULL, [SortOrder] = 370.90 WHERE [Code] = 'ayi' END +SET [Description] = 'Leyigha', [Definition] = NULL, [SortOrder] = 3721.00 WHERE [Code] = 'ayi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lez', 'Lezghian', NULL, 371.00) END +VALUES ('lez', 'Lezghian', NULL, 3722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lezghian', [Definition] = NULL, [SortOrder] = 371.00 WHERE [Code] = 'lez' END +SET [Description] = 'Lezghian', [Definition] = NULL, [SortOrder] = 3722.00 WHERE [Code] = 'lez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhp', 'Lhokpu', NULL, 371.10) END +VALUES ('lhp', 'Lhokpu', NULL, 3723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lhokpu', [Definition] = NULL, [SortOrder] = 371.10 WHERE [Code] = 'lhp' END +SET [Description] = 'Lhokpu', [Definition] = NULL, [SortOrder] = 3723.00 WHERE [Code] = 'lhp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhm', 'Lhomi', NULL, 371.20) END +VALUES ('lhm', 'Lhomi', NULL, 3724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lhomi', [Definition] = NULL, [SortOrder] = 371.20 WHERE [Code] = 'lhm' END +SET [Description] = 'Lhomi', [Definition] = NULL, [SortOrder] = 3724.00 WHERE [Code] = 'lhm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ljl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ljl', 'Li''o', NULL, 371.30) END +VALUES ('ljl', 'Li''o', NULL, 3725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Li''o', [Definition] = NULL, [SortOrder] = 371.30 WHERE [Code] = 'ljl' END +SET [Description] = 'Li''o', [Definition] = NULL, [SortOrder] = 3725.00 WHERE [Code] = 'ljl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lix', 'Liabuku', NULL, 371.40) END +VALUES ('lix', 'Liabuku', NULL, 3726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liabuku', [Definition] = NULL, [SortOrder] = 371.40 WHERE [Code] = 'lix' END +SET [Description] = 'Liabuku', [Definition] = NULL, [SortOrder] = 3726.00 WHERE [Code] = 'lix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ste') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ste', 'Liana-Seti', NULL, 371.50) END +VALUES ('ste', 'Liana-Seti', NULL, 3727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liana-Seti', [Definition] = NULL, [SortOrder] = 371.50 WHERE [Code] = 'ste' END +SET [Description] = 'Liana-Seti', [Definition] = NULL, [SortOrder] = 3727.00 WHERE [Code] = 'ste' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njn', 'Liangmai Naga', NULL, 371.60) END +VALUES ('njn', 'Liangmai Naga', NULL, 3728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liangmai Naga', [Definition] = NULL, [SortOrder] = 371.60 WHERE [Code] = 'njn' END +SET [Description] = 'Liangmai Naga', [Definition] = NULL, [SortOrder] = 3728.00 WHERE [Code] = 'njn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zln', 'Lianshan Zhuang', NULL, 371.70) END +VALUES ('zln', 'Lianshan Zhuang', NULL, 3729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lianshan Zhuang', [Definition] = NULL, [SortOrder] = 371.70 WHERE [Code] = 'zln' END +SET [Description] = 'Lianshan Zhuang', [Definition] = NULL, [SortOrder] = 3729.00 WHERE [Code] = 'zln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpe', 'Liberia Kpelle', NULL, 371.80) END +VALUES ('xpe', 'Liberia Kpelle', NULL, 3730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liberia Kpelle', [Definition] = NULL, [SortOrder] = 371.80 WHERE [Code] = 'xpe' END +SET [Description] = 'Liberia Kpelle', [Definition] = NULL, [SortOrder] = 3730.00 WHERE [Code] = 'xpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lir', 'Liberian English', NULL, 371.90) END +VALUES ('lir', 'Liberian English', NULL, 3731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liberian English', [Definition] = NULL, [SortOrder] = 371.90 WHERE [Code] = 'lir' END +SET [Description] = 'Liberian English', [Definition] = NULL, [SortOrder] = 3731.00 WHERE [Code] = 'lir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liq', 'Libido', NULL, 372.00) END +VALUES ('liq', 'Libido', NULL, 3732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libido', [Definition] = NULL, [SortOrder] = 372.00 WHERE [Code] = 'liq' END +SET [Description] = 'Libido', [Definition] = NULL, [SortOrder] = 3732.00 WHERE [Code] = 'liq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liz', 'Libinza', NULL, 372.10) END +VALUES ('liz', 'Libinza', NULL, 3733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libinza', [Definition] = NULL, [SortOrder] = 372.10 WHERE [Code] = 'liz' END +SET [Description] = 'Libinza', [Definition] = NULL, [SortOrder] = 3733.00 WHERE [Code] = 'liz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbl', 'Libon Bikol', NULL, 372.20) END +VALUES ('lbl', 'Libon Bikol', NULL, 3734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libon Bikol', [Definition] = NULL, [SortOrder] = 372.20 WHERE [Code] = 'lbl' END +SET [Description] = 'Libon Bikol', [Definition] = NULL, [SortOrder] = 3734.00 WHERE [Code] = 'lbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xli', 'Liburnian', NULL, 372.30) END +VALUES ('xli', 'Liburnian', NULL, 3735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liburnian', [Definition] = NULL, [SortOrder] = 372.30 WHERE [Code] = 'xli' END +SET [Description] = 'Liburnian', [Definition] = NULL, [SortOrder] = 3735.00 WHERE [Code] = 'xli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayl', 'Libyan Arabic', NULL, 372.40) END +VALUES ('ayl', 'Libyan Arabic', NULL, 3736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libyan Arabic', [Definition] = NULL, [SortOrder] = 372.40 WHERE [Code] = 'ayl' END +SET [Description] = 'Libyan Arabic', [Definition] = NULL, [SortOrder] = 3736.00 WHERE [Code] = 'ayl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbs', 'Libyan Sign Language', NULL, 372.50) END +VALUES ('lbs', 'Libyan Sign Language', NULL, 3737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Libyan Sign Language', [Definition] = NULL, [SortOrder] = 372.50 WHERE [Code] = 'lbs' END +SET [Description] = 'Libyan Sign Language', [Definition] = NULL, [SortOrder] = 3737.00 WHERE [Code] = 'lbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'add') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('add', 'Lidzonka', NULL, 372.60) END +VALUES ('add', 'Lidzonka', NULL, 3738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lidzonka', [Definition] = NULL, [SortOrder] = 372.60 WHERE [Code] = 'add' END +SET [Description] = 'Lidzonka', [Definition] = NULL, [SortOrder] = 3738.00 WHERE [Code] = 'add' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lig', 'Ligbi', NULL, 372.70) END +VALUES ('lig', 'Ligbi', NULL, 3739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ligbi', [Definition] = NULL, [SortOrder] = 372.70 WHERE [Code] = 'lig' END +SET [Description] = 'Ligbi', [Definition] = NULL, [SortOrder] = 3739.00 WHERE [Code] = 'lig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgz', 'Ligenza', NULL, 372.80) END +VALUES ('lgz', 'Ligenza', NULL, 3740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ligenza', [Definition] = NULL, [SortOrder] = 372.80 WHERE [Code] = 'lgz' END +SET [Description] = 'Ligenza', [Definition] = NULL, [SortOrder] = 3740.00 WHERE [Code] = 'lgz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lij', 'Ligurian', NULL, 372.90) END +VALUES ('lij', 'Ligurian', NULL, 3741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ligurian', [Definition] = NULL, [SortOrder] = 372.90 WHERE [Code] = 'lij' END +SET [Description] = 'Ligurian', [Definition] = NULL, [SortOrder] = 3741.00 WHERE [Code] = 'lij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlg', 'Ligurian (Ancient)', NULL, 373.00) END +VALUES ('xlg', 'Ligurian (Ancient)', NULL, 3742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ligurian (Ancient)', [Definition] = NULL, [SortOrder] = 373.00 WHERE [Code] = 'xlg' END +SET [Description] = 'Ligurian (Ancient)', [Definition] = NULL, [SortOrder] = 3742.00 WHERE [Code] = 'xlg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lih', 'Lihir', NULL, 373.10) END +VALUES ('lih', 'Lihir', NULL, 3743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lihir', [Definition] = NULL, [SortOrder] = 373.10 WHERE [Code] = 'lih' END +SET [Description] = 'Lihir', [Definition] = NULL, [SortOrder] = 3743.00 WHERE [Code] = 'lih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgi', 'Lijili', NULL, 373.20) END +VALUES ('mgi', 'Lijili', NULL, 3744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lijili', [Definition] = NULL, [SortOrder] = 373.20 WHERE [Code] = 'mgi' END +SET [Description] = 'Lijili', [Definition] = NULL, [SortOrder] = 3744.00 WHERE [Code] = 'mgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lik', 'Lika', NULL, 373.30) END +VALUES ('lik', 'Lika', NULL, 3745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lika', [Definition] = NULL, [SortOrder] = 373.30 WHERE [Code] = 'lik' END +SET [Description] = 'Lika', [Definition] = NULL, [SortOrder] = 3745.00 WHERE [Code] = 'lik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lio', 'Liki', NULL, 373.40) END +VALUES ('lio', 'Liki', NULL, 3746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liki', [Definition] = NULL, [SortOrder] = 373.40 WHERE [Code] = 'lio' END +SET [Description] = 'Liki', [Definition] = NULL, [SortOrder] = 3746.00 WHERE [Code] = 'lio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lie', 'Likila', NULL, 373.50) END +VALUES ('lie', 'Likila', NULL, 3747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Likila', [Definition] = NULL, [SortOrder] = 373.50 WHERE [Code] = 'lie' END +SET [Description] = 'Likila', [Definition] = NULL, [SortOrder] = 3747.00 WHERE [Code] = 'lie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxx', 'Likuba', NULL, 373.60) END +VALUES ('kxx', 'Likuba', NULL, 3748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Likuba', [Definition] = NULL, [SortOrder] = 373.60 WHERE [Code] = 'kxx' END +SET [Description] = 'Likuba', [Definition] = NULL, [SortOrder] = 3748.00 WHERE [Code] = 'kxx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lib', 'Likum', NULL, 373.70) END +VALUES ('lib', 'Likum', NULL, 3749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Likum', [Definition] = NULL, [SortOrder] = 373.70 WHERE [Code] = 'lib' END +SET [Description] = 'Likum', [Definition] = NULL, [SortOrder] = 3749.00 WHERE [Code] = 'lib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwc', 'Likwala', NULL, 373.80) END +VALUES ('kwc', 'Likwala', NULL, 3750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Likwala', [Definition] = NULL, [SortOrder] = 373.80 WHERE [Code] = 'kwc' END +SET [Description] = 'Likwala', [Definition] = NULL, [SortOrder] = 3750.00 WHERE [Code] = 'kwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lll', 'Lilau', NULL, 373.90) END +VALUES ('lll', 'Lilau', NULL, 3751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lilau', [Definition] = NULL, [SortOrder] = 373.90 WHERE [Code] = 'lll' END +SET [Description] = 'Lilau', [Definition] = NULL, [SortOrder] = 3751.00 WHERE [Code] = 'lll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lil', 'Lillooet', NULL, 374.00) END +VALUES ('lil', 'Lillooet', NULL, 3752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lillooet', [Definition] = NULL, [SortOrder] = 374.00 WHERE [Code] = 'lil' END +SET [Description] = 'Lillooet', [Definition] = NULL, [SortOrder] = 3752.00 WHERE [Code] = 'lil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bme', 'Limassa', NULL, 374.10) END +VALUES ('bme', 'Limassa', NULL, 3753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limassa', [Definition] = NULL, [SortOrder] = 374.10 WHERE [Code] = 'bme' END +SET [Description] = 'Limassa', [Definition] = NULL, [SortOrder] = 3753.00 WHERE [Code] = 'bme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lif', 'Limbu', NULL, 374.20) END +VALUES ('lif', 'Limbu', NULL, 3754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limbu', [Definition] = NULL, [SortOrder] = 374.20 WHERE [Code] = 'lif' END +SET [Description] = 'Limbu', [Definition] = NULL, [SortOrder] = 3754.00 WHERE [Code] = 'lif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmp', 'Limbum', NULL, 374.30) END +VALUES ('lmp', 'Limbum', NULL, 3755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limbum', [Definition] = NULL, [SortOrder] = 374.30 WHERE [Code] = 'lmp' END +SET [Description] = 'Limbum', [Definition] = NULL, [SortOrder] = 3755.00 WHERE [Code] = 'lmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lim', 'Limburgan', NULL, 374.40) END +VALUES ('lim', 'Limburgan', NULL, 3756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limburgan', [Definition] = NULL, [SortOrder] = 374.40 WHERE [Code] = 'lim' END +SET [Description] = 'Limburgan', [Definition] = NULL, [SortOrder] = 3756.00 WHERE [Code] = 'lim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylm', 'Limi', NULL, 374.50) END +VALUES ('ylm', 'Limi', NULL, 3757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limi', [Definition] = NULL, [SortOrder] = 374.50 WHERE [Code] = 'ylm' END +SET [Description] = 'Limi', [Definition] = NULL, [SortOrder] = 3757.00 WHERE [Code] = 'ylm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmc', 'Limilngan', NULL, 374.60) END +VALUES ('lmc', 'Limilngan', NULL, 3758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limilngan', [Definition] = NULL, [SortOrder] = 374.60 WHERE [Code] = 'lmc' END +SET [Description] = 'Limilngan', [Definition] = NULL, [SortOrder] = 3758.00 WHERE [Code] = 'lmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmk', 'Limos Kalinga', NULL, 374.70) END +VALUES ('kmk', 'Limos Kalinga', NULL, 3759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Limos Kalinga', [Definition] = NULL, [SortOrder] = 374.70 WHERE [Code] = 'kmk' END +SET [Description] = 'Limos Kalinga', [Definition] = NULL, [SortOrder] = 3759.00 WHERE [Code] = 'kmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lab', 'Linear A', NULL, 374.80) END +VALUES ('lab', 'Linear A', NULL, 3760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Linear A', [Definition] = NULL, [SortOrder] = 374.80 WHERE [Code] = 'lab' END +SET [Description] = 'Linear A', [Definition] = NULL, [SortOrder] = 3760.00 WHERE [Code] = 'lab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lin', 'Lingala', NULL, 374.90) END +VALUES ('lin', 'Lingala', NULL, 3761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingala', [Definition] = NULL, [SortOrder] = 374.90 WHERE [Code] = 'lin' END +SET [Description] = 'Lingala', [Definition] = NULL, [SortOrder] = 3761.00 WHERE [Code] = 'lin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onb', 'Lingao', NULL, 375.00) END +VALUES ('onb', 'Lingao', NULL, 3762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingao', [Definition] = NULL, [SortOrder] = 375.00 WHERE [Code] = 'onb' END +SET [Description] = 'Lingao', [Definition] = NULL, [SortOrder] = 3762.00 WHERE [Code] = 'onb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgk', 'Lingarak', NULL, 375.10) END +VALUES ('lgk', 'Lingarak', NULL, 3763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingarak', [Definition] = NULL, [SortOrder] = 375.10 WHERE [Code] = 'lgk' END +SET [Description] = 'Lingarak', [Definition] = NULL, [SortOrder] = 3763.00 WHERE [Code] = 'lgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pml', 'Lingua Franca', NULL, 375.20) END +VALUES ('pml', 'Lingua Franca', NULL, 3764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingua Franca', [Definition] = NULL, [SortOrder] = 375.20 WHERE [Code] = 'pml' END +SET [Description] = 'Lingua Franca', [Definition] = NULL, [SortOrder] = 3764.00 WHERE [Code] = 'pml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lfn', 'Lingua Franca Nova', NULL, 375.30) END +VALUES ('lfn', 'Lingua Franca Nova', NULL, 3765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lingua Franca Nova', [Definition] = NULL, [SortOrder] = 375.30 WHERE [Code] = 'lfn' END +SET [Description] = 'Lingua Franca Nova', [Definition] = NULL, [SortOrder] = 3765.00 WHERE [Code] = 'lfn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apl', 'Lipan Apache', NULL, 375.40) END +VALUES ('apl', 'Lipan Apache', NULL, 3766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lipan Apache', [Definition] = NULL, [SortOrder] = 375.40 WHERE [Code] = 'apl' END +SET [Description] = 'Lipan Apache', [Definition] = NULL, [SortOrder] = 3766.00 WHERE [Code] = 'apl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpo', 'Lipo', NULL, 375.50) END +VALUES ('lpo', 'Lipo', NULL, 3767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lipo', [Definition] = NULL, [SortOrder] = 375.50 WHERE [Code] = 'lpo' END +SET [Description] = 'Lipo', [Definition] = NULL, [SortOrder] = 3767.00 WHERE [Code] = 'lpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcs', 'Lisabata-Nuniali', NULL, 375.60) END +VALUES ('lcs', 'Lisabata-Nuniali', NULL, 3768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lisabata-Nuniali', [Definition] = NULL, [SortOrder] = 375.60 WHERE [Code] = 'lcs' END +SET [Description] = 'Lisabata-Nuniali', [Definition] = NULL, [SortOrder] = 3768.00 WHERE [Code] = 'lcs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcl', 'Lisela', NULL, 375.70) END +VALUES ('lcl', 'Lisela', NULL, 3769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lisela', [Definition] = NULL, [SortOrder] = 375.70 WHERE [Code] = 'lcl' END +SET [Description] = 'Lisela', [Definition] = NULL, [SortOrder] = 3769.00 WHERE [Code] = 'lcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsh', 'Lish', NULL, 375.80) END +VALUES ('lsh', 'Lish', NULL, 3770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lish', [Definition] = NULL, [SortOrder] = 375.80 WHERE [Code] = 'lsh' END +SET [Description] = 'Lish', [Definition] = NULL, [SortOrder] = 3770.00 WHERE [Code] = 'lsh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trg', 'Lishán Didán', NULL, 375.90) END +VALUES ('trg', 'Lishán Didán', NULL, 3771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lishán Didán', [Definition] = NULL, [SortOrder] = 375.90 WHERE [Code] = 'trg' END +SET [Description] = 'Lishán Didán', [Definition] = NULL, [SortOrder] = 3771.00 WHERE [Code] = 'trg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsd', 'Lishana Deni', NULL, 376.00) END +VALUES ('lsd', 'Lishana Deni', NULL, 3772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lishana Deni', [Definition] = NULL, [SortOrder] = 376.00 WHERE [Code] = 'lsd' END +SET [Description] = 'Lishana Deni', [Definition] = NULL, [SortOrder] = 3772.00 WHERE [Code] = 'lsd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aij', 'Lishanid Noshan', NULL, 376.10) END +VALUES ('aij', 'Lishanid Noshan', NULL, 3773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lishanid Noshan', [Definition] = NULL, [SortOrder] = 376.10 WHERE [Code] = 'aij' END +SET [Description] = 'Lishanid Noshan', [Definition] = NULL, [SortOrder] = 3773.00 WHERE [Code] = 'aij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lis', 'Lisu', NULL, 376.20) END +VALUES ('lis', 'Lisu', NULL, 3774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lisu', [Definition] = NULL, [SortOrder] = 376.20 WHERE [Code] = 'lis' END +SET [Description] = 'Lisu', [Definition] = NULL, [SortOrder] = 3774.00 WHERE [Code] = 'lis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lzh', 'Literary Chinese', NULL, 376.30) END +VALUES ('lzh', 'Literary Chinese', NULL, 3775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Literary Chinese', [Definition] = NULL, [SortOrder] = 376.30 WHERE [Code] = 'lzh' END +SET [Description] = 'Literary Chinese', [Definition] = NULL, [SortOrder] = 3775.00 WHERE [Code] = 'lzh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lit', 'Lithuanian', NULL, 376.40) END +VALUES ('lit', 'Lithuanian', NULL, 3776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lithuanian', [Definition] = NULL, [SortOrder] = 376.40 WHERE [Code] = 'lit' END +SET [Description] = 'Lithuanian', [Definition] = NULL, [SortOrder] = 3776.00 WHERE [Code] = 'lit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lls', 'Lithuanian Sign Language', NULL, 376.50) END +VALUES ('lls', 'Lithuanian Sign Language', NULL, 3777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lithuanian Sign Language', [Definition] = NULL, [SortOrder] = 376.50 WHERE [Code] = 'lls' END +SET [Description] = 'Lithuanian Sign Language', [Definition] = NULL, [SortOrder] = 3777.00 WHERE [Code] = 'lls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lzl', 'Litzlitz', NULL, 376.60) END +VALUES ('lzl', 'Litzlitz', NULL, 3778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Litzlitz', [Definition] = NULL, [SortOrder] = 376.60 WHERE [Code] = 'lzl' END +SET [Description] = 'Litzlitz', [Definition] = NULL, [SortOrder] = 3778.00 WHERE [Code] = 'lzl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zlj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zlj', 'Liujiang Zhuang', NULL, 376.70) END +VALUES ('zlj', 'Liujiang Zhuang', NULL, 3779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liujiang Zhuang', [Definition] = NULL, [SortOrder] = 376.70 WHERE [Code] = 'zlj' END +SET [Description] = 'Liujiang Zhuang', [Definition] = NULL, [SortOrder] = 3779.00 WHERE [Code] = 'zlj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zlq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zlq', 'Liuqian Zhuang', NULL, 376.80) END +VALUES ('zlq', 'Liuqian Zhuang', NULL, 3780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liuqian Zhuang', [Definition] = NULL, [SortOrder] = 376.80 WHERE [Code] = 'zlq' END +SET [Description] = 'Liuqian Zhuang', [Definition] = NULL, [SortOrder] = 3780.00 WHERE [Code] = 'zlq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liv', 'Liv', NULL, 376.90) END +VALUES ('liv', 'Liv', NULL, 3781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Liv', [Definition] = NULL, [SortOrder] = 376.90 WHERE [Code] = 'liv' END +SET [Description] = 'Liv', [Definition] = NULL, [SortOrder] = 3781.00 WHERE [Code] = 'liv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olo', 'Livvi', NULL, 377.00) END +VALUES ('olo', 'Livvi', NULL, 3782.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Livvi', [Definition] = NULL, [SortOrder] = 377.00 WHERE [Code] = 'olo' END +SET [Description] = 'Livvi', [Definition] = NULL, [SortOrder] = 3782.00 WHERE [Code] = 'olo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lht', 'Lo-Toga', NULL, 377.10) END +VALUES ('lht', 'Lo-Toga', NULL, 3783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lo-Toga', [Definition] = NULL, [SortOrder] = 377.10 WHERE [Code] = 'lht' END +SET [Description] = 'Lo-Toga', [Definition] = NULL, [SortOrder] = 3783.00 WHERE [Code] = 'lht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrk', 'Loarki', NULL, 377.20) END +VALUES ('lrk', 'Loarki', NULL, 3784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loarki', [Definition] = NULL, [SortOrder] = 377.20 WHERE [Code] = 'lrk' END +SET [Description] = 'Loarki', [Definition] = NULL, [SortOrder] = 3784.00 WHERE [Code] = 'lrk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loq', 'Lobala', NULL, 377.30) END +VALUES ('loq', 'Lobala', NULL, 3785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lobala', [Definition] = NULL, [SortOrder] = 377.30 WHERE [Code] = 'loq' END +SET [Description] = 'Lobala', [Definition] = NULL, [SortOrder] = 3785.00 WHERE [Code] = 'loq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lob', 'Lobi', NULL, 377.40) END +VALUES ('lob', 'Lobi', NULL, 3786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lobi', [Definition] = NULL, [SortOrder] = 377.40 WHERE [Code] = 'lob' END +SET [Description] = 'Lobi', [Definition] = NULL, [SortOrder] = 3786.00 WHERE [Code] = 'lob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbm', 'Lodhi', NULL, 377.50) END +VALUES ('lbm', 'Lodhi', NULL, 3787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lodhi', [Definition] = NULL, [SortOrder] = 377.50 WHERE [Code] = 'lbm' END +SET [Description] = 'Lodhi', [Definition] = NULL, [SortOrder] = 3787.00 WHERE [Code] = 'lbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgq', 'Logba', NULL, 377.60) END +VALUES ('lgq', 'Logba', NULL, 3788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logba', [Definition] = NULL, [SortOrder] = 377.60 WHERE [Code] = 'lgq' END +SET [Description] = 'Logba', [Definition] = NULL, [SortOrder] = 3788.00 WHERE [Code] = 'lgq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lqr', 'Logir', NULL, 377.70) END +VALUES ('lqr', 'Logir', NULL, 3789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logir', [Definition] = NULL, [SortOrder] = 377.70 WHERE [Code] = 'lqr' END +SET [Description] = 'Logir', [Definition] = NULL, [SortOrder] = 3789.00 WHERE [Code] = 'lqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'log') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('log', 'Logo', NULL, 377.80) END +VALUES ('log', 'Logo', NULL, 3790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logo', [Definition] = NULL, [SortOrder] = 377.80 WHERE [Code] = 'log' END +SET [Description] = 'Logo', [Definition] = NULL, [SortOrder] = 3790.00 WHERE [Code] = 'log' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lof', 'Logol', NULL, 377.90) END +VALUES ('lof', 'Logol', NULL, 3791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logol', [Definition] = NULL, [SortOrder] = 377.90 WHERE [Code] = 'lof' END +SET [Description] = 'Logol', [Definition] = NULL, [SortOrder] = 3791.00 WHERE [Code] = 'lof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rag', 'Logooli', NULL, 378.00) END +VALUES ('rag', 'Logooli', NULL, 3792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logooli', [Definition] = NULL, [SortOrder] = 378.00 WHERE [Code] = 'rag' END +SET [Description] = 'Logooli', [Definition] = NULL, [SortOrder] = 3792.00 WHERE [Code] = 'rag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'liu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('liu', 'Logorik', NULL, 378.10) END +VALUES ('liu', 'Logorik', NULL, 3793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logorik', [Definition] = NULL, [SortOrder] = 378.10 WHERE [Code] = 'liu' END +SET [Description] = 'Logorik', [Definition] = NULL, [SortOrder] = 3793.00 WHERE [Code] = 'liu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'src') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('src', 'Logudorese Sardinian', NULL, 378.20) END +VALUES ('src', 'Logudorese Sardinian', NULL, 3794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Logudorese Sardinian', [Definition] = NULL, [SortOrder] = 378.20 WHERE [Code] = 'src' END +SET [Description] = 'Logudorese Sardinian', [Definition] = NULL, [SortOrder] = 3794.00 WHERE [Code] = 'src' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbr', 'Lohorung', NULL, 378.30) END +VALUES ('lbr', 'Lohorung', NULL, 3795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lohorung', [Definition] = NULL, [SortOrder] = 378.30 WHERE [Code] = 'lbr' END +SET [Description] = 'Lohorung', [Definition] = NULL, [SortOrder] = 3795.00 WHERE [Code] = 'lbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvj', 'Loja Highland Quichua', NULL, 378.40) END +VALUES ('qvj', 'Loja Highland Quichua', NULL, 3796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loja Highland Quichua', [Definition] = NULL, [SortOrder] = 378.40 WHERE [Code] = 'qvj' END +SET [Description] = 'Loja Highland Quichua', [Definition] = NULL, [SortOrder] = 3796.00 WHERE [Code] = 'qvj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbo', 'Lojban', NULL, 378.50) END +VALUES ('jbo', 'Lojban', NULL, 3797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lojban', [Definition] = NULL, [SortOrder] = 378.50 WHERE [Code] = 'jbo' END +SET [Description] = 'Lojban', [Definition] = NULL, [SortOrder] = 3797.00 WHERE [Code] = 'jbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaz', 'Lokaa', NULL, 378.60) END +VALUES ('yaz', 'Lokaa', NULL, 3798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lokaa', [Definition] = NULL, [SortOrder] = 378.60 WHERE [Code] = 'yaz' END +SET [Description] = 'Lokaa', [Definition] = NULL, [SortOrder] = 3798.00 WHERE [Code] = 'yaz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loy', 'Loke', NULL, 378.70) END +VALUES ('loy', 'Loke', NULL, 3799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loke', [Definition] = NULL, [SortOrder] = 378.70 WHERE [Code] = 'loy' END +SET [Description] = 'Loke', [Definition] = NULL, [SortOrder] = 3799.00 WHERE [Code] = 'loy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lok', 'Loko', NULL, 378.80) END +VALUES ('lok', 'Loko', NULL, 3800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loko', [Definition] = NULL, [SortOrder] = 378.80 WHERE [Code] = 'lok' END +SET [Description] = 'Loko', [Definition] = NULL, [SortOrder] = 3800.00 WHERE [Code] = 'lok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lky', 'Lokoya', NULL, 378.90) END +VALUES ('lky', 'Lokoya', NULL, 3801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lokoya', [Definition] = NULL, [SortOrder] = 378.90 WHERE [Code] = 'lky' END +SET [Description] = 'Lokoya', [Definition] = NULL, [SortOrder] = 3801.00 WHERE [Code] = 'lky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcd', 'Lola', NULL, 379.00) END +VALUES ('lcd', 'Lola', NULL, 3802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lola', [Definition] = NULL, [SortOrder] = 379.00 WHERE [Code] = 'lcd' END +SET [Description] = 'Lola', [Definition] = NULL, [SortOrder] = 3802.00 WHERE [Code] = 'lcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llq', 'Lolak', NULL, 379.10) END +VALUES ('llq', 'Lolak', NULL, 3803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lolak', [Definition] = NULL, [SortOrder] = 379.10 WHERE [Code] = 'llq' END +SET [Description] = 'Lolak', [Definition] = NULL, [SortOrder] = 3803.00 WHERE [Code] = 'llq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llg', 'Lole', NULL, 379.20) END +VALUES ('llg', 'Lole', NULL, 3804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lole', [Definition] = NULL, [SortOrder] = 379.20 WHERE [Code] = 'llg' END +SET [Description] = 'Lole', [Definition] = NULL, [SortOrder] = 3804.00 WHERE [Code] = 'llg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llb', 'Lolo', NULL, 379.30) END +VALUES ('llb', 'Lolo', NULL, 3805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lolo', [Definition] = NULL, [SortOrder] = 379.30 WHERE [Code] = 'llb' END +SET [Description] = 'Lolo', [Definition] = NULL, [SortOrder] = 3805.00 WHERE [Code] = 'llb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loa', 'Loloda', NULL, 379.40) END +VALUES ('loa', 'Loloda', NULL, 3806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loloda', [Definition] = NULL, [SortOrder] = 379.40 WHERE [Code] = 'loa' END +SET [Description] = 'Loloda', [Definition] = NULL, [SortOrder] = 3806.00 WHERE [Code] = 'loa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ycl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ycl', 'Lolopo', NULL, 379.50) END +VALUES ('ycl', 'Lolopo', NULL, 3807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lolopo', [Definition] = NULL, [SortOrder] = 379.50 WHERE [Code] = 'ycl' END +SET [Description] = 'Lolopo', [Definition] = NULL, [SortOrder] = 3807.00 WHERE [Code] = 'ycl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loi', 'Loma (Côte d''Ivoire)', NULL, 379.60) END +VALUES ('loi', 'Loma (Côte d''Ivoire)', NULL, 3808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loma (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 379.60 WHERE [Code] = 'loi' END +SET [Description] = 'Loma (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 3808.00 WHERE [Code] = 'loi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lom', 'Loma (Liberia)', NULL, 379.70) END +VALUES ('lom', 'Loma (Liberia)', NULL, 3809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loma (Liberia)', [Definition] = NULL, [SortOrder] = 379.70 WHERE [Code] = 'lom' END +SET [Description] = 'Loma (Liberia)', [Definition] = NULL, [SortOrder] = 3809.00 WHERE [Code] = 'lom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmv', 'Lomaiviti', NULL, 379.80) END +VALUES ('lmv', 'Lomaiviti', NULL, 3810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lomaiviti', [Definition] = NULL, [SortOrder] = 379.80 WHERE [Code] = 'lmv' END +SET [Description] = 'Lomaiviti', [Definition] = NULL, [SortOrder] = 3810.00 WHERE [Code] = 'lmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmi', 'Lomavren', NULL, 379.90) END +VALUES ('rmi', 'Lomavren', NULL, 3811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lomavren', [Definition] = NULL, [SortOrder] = 379.90 WHERE [Code] = 'rmi' END +SET [Description] = 'Lomavren', [Definition] = NULL, [SortOrder] = 3811.00 WHERE [Code] = 'rmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmo', 'Lombard', NULL, 380.00) END +VALUES ('lmo', 'Lombard', NULL, 3812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lombard', [Definition] = NULL, [SortOrder] = 380.00 WHERE [Code] = 'lmo' END +SET [Description] = 'Lombard', [Definition] = NULL, [SortOrder] = 3812.00 WHERE [Code] = 'lmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmi', 'Lombi', NULL, 380.10) END +VALUES ('lmi', 'Lombi', NULL, 3813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lombi', [Definition] = NULL, [SortOrder] = 380.10 WHERE [Code] = 'lmi' END +SET [Description] = 'Lombi', [Definition] = NULL, [SortOrder] = 3813.00 WHERE [Code] = 'lmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loo', 'Lombo', NULL, 380.20) END +VALUES ('loo', 'Lombo', NULL, 3814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lombo', [Definition] = NULL, [SortOrder] = 380.20 WHERE [Code] = 'loo' END +SET [Description] = 'Lombo', [Definition] = NULL, [SortOrder] = 3814.00 WHERE [Code] = 'loo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngl', 'Lomwe', NULL, 380.30) END +VALUES ('ngl', 'Lomwe', NULL, 3815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lomwe', [Definition] = NULL, [SortOrder] = 380.30 WHERE [Code] = 'ngl' END +SET [Description] = 'Lomwe', [Definition] = NULL, [SortOrder] = 3815.00 WHERE [Code] = 'ngl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lce', 'Loncong', NULL, 380.40) END +VALUES ('lce', 'Loncong', NULL, 3816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loncong', [Definition] = NULL, [SortOrder] = 380.40 WHERE [Code] = 'lce' END +SET [Description] = 'Loncong', [Definition] = NULL, [SortOrder] = 3816.00 WHERE [Code] = 'lce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpn', 'Long Phuri Naga', NULL, 380.50) END +VALUES ('lpn', 'Long Phuri Naga', NULL, 3817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Long Phuri Naga', [Definition] = NULL, [SortOrder] = 380.50 WHERE [Code] = 'lpn' END +SET [Description] = 'Long Phuri Naga', [Definition] = NULL, [SortOrder] = 3817.00 WHERE [Code] = 'lpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttw', 'Long Wat', NULL, 380.60) END +VALUES ('ttw', 'Long Wat', NULL, 3818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Long Wat', [Definition] = NULL, [SortOrder] = 380.60 WHERE [Code] = 'ttw' END +SET [Description] = 'Long Wat', [Definition] = NULL, [SortOrder] = 3818.00 WHERE [Code] = 'ttw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgu', 'Longgu', NULL, 380.70) END +VALUES ('lgu', 'Longgu', NULL, 3819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Longgu', [Definition] = NULL, [SortOrder] = 380.70 WHERE [Code] = 'lgu' END +SET [Description] = 'Longgu', [Definition] = NULL, [SortOrder] = 3819.00 WHERE [Code] = 'lgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wok', 'Longto', NULL, 380.80) END +VALUES ('wok', 'Longto', NULL, 3820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Longto', [Definition] = NULL, [SortOrder] = 380.80 WHERE [Code] = 'wok' END +SET [Description] = 'Longto', [Definition] = NULL, [SortOrder] = 3820.00 WHERE [Code] = 'wok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnu', 'Longuda', NULL, 380.90) END +VALUES ('lnu', 'Longuda', NULL, 3821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Longuda', [Definition] = NULL, [SortOrder] = 380.90 WHERE [Code] = 'lnu' END +SET [Description] = 'Longuda', [Definition] = NULL, [SortOrder] = 3821.00 WHERE [Code] = 'lnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'los') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('los', 'Loniu', NULL, 381.00) END +VALUES ('los', 'Loniu', NULL, 3822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loniu', [Definition] = NULL, [SortOrder] = 381.00 WHERE [Code] = 'los' END +SET [Description] = 'Loniu', [Definition] = NULL, [SortOrder] = 3822.00 WHERE [Code] = 'los' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crc', 'Lonwolwol', NULL, 381.10) END +VALUES ('crc', 'Lonwolwol', NULL, 3823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lonwolwol', [Definition] = NULL, [SortOrder] = 381.10 WHERE [Code] = 'crc' END +SET [Description] = 'Lonwolwol', [Definition] = NULL, [SortOrder] = 3823.00 WHERE [Code] = 'crc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnz', 'Lonzo', NULL, 381.20) END +VALUES ('lnz', 'Lonzo', NULL, 3824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lonzo', [Definition] = NULL, [SortOrder] = 381.20 WHERE [Code] = 'lnz' END +SET [Description] = 'Lonzo', [Definition] = NULL, [SortOrder] = 3824.00 WHERE [Code] = 'lnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldo', 'Loo', NULL, 381.30) END +VALUES ('ldo', 'Loo', NULL, 3825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loo', [Definition] = NULL, [SortOrder] = 381.30 WHERE [Code] = 'ldo' END +SET [Description] = 'Loo', [Definition] = NULL, [SortOrder] = 3825.00 WHERE [Code] = 'ldo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lop', 'Lopa', NULL, 381.40) END +VALUES ('lop', 'Lopa', NULL, 3826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lopa', [Definition] = NULL, [SortOrder] = 381.40 WHERE [Code] = 'lop' END +SET [Description] = 'Lopa', [Definition] = NULL, [SortOrder] = 3826.00 WHERE [Code] = 'lop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lov', 'Lopi', NULL, 381.50) END +VALUES ('lov', 'Lopi', NULL, 3827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lopi', [Definition] = NULL, [SortOrder] = 381.50 WHERE [Code] = 'lov' END +SET [Description] = 'Lopi', [Definition] = NULL, [SortOrder] = 3827.00 WHERE [Code] = 'lov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lpx', 'Lopit', NULL, 381.60) END +VALUES ('lpx', 'Lopit', NULL, 3828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lopit', [Definition] = NULL, [SortOrder] = 381.60 WHERE [Code] = 'lpx' END +SET [Description] = 'Lopit', [Definition] = NULL, [SortOrder] = 3828.00 WHERE [Code] = 'lpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrn', 'Lorang', NULL, 381.70) END +VALUES ('lrn', 'Lorang', NULL, 3829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lorang', [Definition] = NULL, [SortOrder] = 381.70 WHERE [Code] = 'lrn' END +SET [Description] = 'Lorang', [Definition] = NULL, [SortOrder] = 3829.00 WHERE [Code] = 'lrn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnn', 'Lorediakarkar', NULL, 381.80) END +VALUES ('lnn', 'Lorediakarkar', NULL, 3830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lorediakarkar', [Definition] = NULL, [SortOrder] = 381.80 WHERE [Code] = 'lnn' END +SET [Description] = 'Lorediakarkar', [Definition] = NULL, [SortOrder] = 3830.00 WHERE [Code] = 'lnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spq', 'Loreto-Ucayali Spanish', NULL, 381.90) END +VALUES ('spq', 'Loreto-Ucayali Spanish', NULL, 3831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loreto-Ucayali Spanish', [Definition] = NULL, [SortOrder] = 381.90 WHERE [Code] = 'spq' END +SET [Description] = 'Loreto-Ucayali Spanish', [Definition] = NULL, [SortOrder] = 3831.00 WHERE [Code] = 'spq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uvl', 'Lote', NULL, 382.00) END +VALUES ('uvl', 'Lote', NULL, 3832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lote', [Definition] = NULL, [SortOrder] = 382.00 WHERE [Code] = 'uvl' END +SET [Description] = 'Lote', [Definition] = NULL, [SortOrder] = 3832.00 WHERE [Code] = 'uvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njh', 'Lotha Naga', NULL, 382.10) END +VALUES ('njh', 'Lotha Naga', NULL, 3833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lotha Naga', [Definition] = NULL, [SortOrder] = 382.10 WHERE [Code] = 'njh' END +SET [Description] = 'Lotha Naga', [Definition] = NULL, [SortOrder] = 3833.00 WHERE [Code] = 'njh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtr', 'Lotud', NULL, 382.20) END +VALUES ('dtr', 'Lotud', NULL, 3834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lotud', [Definition] = NULL, [SortOrder] = 382.20 WHERE [Code] = 'dtr' END +SET [Description] = 'Lotud', [Definition] = NULL, [SortOrder] = 3834.00 WHERE [Code] = 'dtr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loj', 'Lou', NULL, 382.30) END +VALUES ('loj', 'Lou', NULL, 3835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lou', [Definition] = NULL, [SortOrder] = 382.30 WHERE [Code] = 'loj' END +SET [Description] = 'Lou', [Definition] = NULL, [SortOrder] = 3835.00 WHERE [Code] = 'loj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lou', 'Louisiana Creole', NULL, 382.40) END +VALUES ('lou', 'Louisiana Creole', NULL, 3836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Louisiana Creole', [Definition] = NULL, [SortOrder] = 382.40 WHERE [Code] = 'lou' END +SET [Description] = 'Louisiana Creole', [Definition] = NULL, [SortOrder] = 3836.00 WHERE [Code] = 'lou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lox', 'Loun', NULL, 382.50) END +VALUES ('lox', 'Loun', NULL, 3837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loun', [Definition] = NULL, [SortOrder] = 382.50 WHERE [Code] = 'lox' END +SET [Description] = 'Loun', [Definition] = NULL, [SortOrder] = 3837.00 WHERE [Code] = 'lox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlo', 'Loup A', NULL, 382.60) END +VALUES ('xlo', 'Loup A', NULL, 3838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loup A', [Definition] = NULL, [SortOrder] = 382.60 WHERE [Code] = 'xlo' END +SET [Description] = 'Loup A', [Definition] = NULL, [SortOrder] = 3838.00 WHERE [Code] = 'xlo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlb', 'Loup B', NULL, 382.70) END +VALUES ('xlb', 'Loup B', NULL, 3839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loup B', [Definition] = NULL, [SortOrder] = 382.70 WHERE [Code] = 'xlb' END +SET [Description] = 'Loup B', [Definition] = NULL, [SortOrder] = 3839.00 WHERE [Code] = 'xlb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nds', 'Low German', NULL, 382.80) END +VALUES ('nds', 'Low German', NULL, 3840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Low German', [Definition] = NULL, [SortOrder] = 382.80 WHERE [Code] = 'nds' END +SET [Description] = 'Low German', [Definition] = NULL, [SortOrder] = 3840.00 WHERE [Code] = 'nds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbb', 'Lower Burdekin', NULL, 382.90) END +VALUES ('xbb', 'Lower Burdekin', NULL, 3841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Burdekin', [Definition] = NULL, [SortOrder] = 382.90 WHERE [Code] = 'xbb' END +SET [Description] = 'Lower Burdekin', [Definition] = NULL, [SortOrder] = 3841.00 WHERE [Code] = 'xbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cea', 'Lower Chehalis', NULL, 383.00) END +VALUES ('cea', 'Lower Chehalis', NULL, 3842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Chehalis', [Definition] = NULL, [SortOrder] = 383.00 WHERE [Code] = 'cea' END +SET [Description] = 'Lower Chehalis', [Definition] = NULL, [SortOrder] = 3842.00 WHERE [Code] = 'cea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dni', 'Lower Grand Valley Dani', NULL, 383.10) END +VALUES ('dni', 'Lower Grand Valley Dani', NULL, 3843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Grand Valley Dani', [Definition] = NULL, [SortOrder] = 383.10 WHERE [Code] = 'dni' END +SET [Description] = 'Lower Grand Valley Dani', [Definition] = NULL, [SortOrder] = 3843.00 WHERE [Code] = 'dni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsb', 'Lower Nossob', NULL, 383.20) END +VALUES ('nsb', 'Lower Nossob', NULL, 3844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Nossob', [Definition] = NULL, [SortOrder] = 383.20 WHERE [Code] = 'nsb' END +SET [Description] = 'Lower Nossob', [Definition] = NULL, [SortOrder] = 3844.00 WHERE [Code] = 'nsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sli', 'Lower Silesian', NULL, 383.30) END +VALUES ('sli', 'Lower Silesian', NULL, 3845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Silesian', [Definition] = NULL, [SortOrder] = 383.30 WHERE [Code] = 'sli' END +SET [Description] = 'Lower Silesian', [Definition] = NULL, [SortOrder] = 3845.00 WHERE [Code] = 'sli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsb', 'Lower Sorbian', NULL, 383.40) END +VALUES ('dsb', 'Lower Sorbian', NULL, 3846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Sorbian', [Definition] = NULL, [SortOrder] = 383.40 WHERE [Code] = 'dsb' END +SET [Description] = 'Lower Sorbian', [Definition] = NULL, [SortOrder] = 3846.00 WHERE [Code] = 'dsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axl', 'Lower Southern Aranda', NULL, 383.50) END +VALUES ('axl', 'Lower Southern Aranda', NULL, 3847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Southern Aranda', [Definition] = NULL, [SortOrder] = 383.50 WHERE [Code] = 'axl' END +SET [Description] = 'Lower Southern Aranda', [Definition] = NULL, [SortOrder] = 3847.00 WHERE [Code] = 'axl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tto', 'Lower Ta''oih', NULL, 383.60) END +VALUES ('tto', 'Lower Ta''oih', NULL, 3848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Ta''oih', [Definition] = NULL, [SortOrder] = 383.60 WHERE [Code] = 'tto' END +SET [Description] = 'Lower Ta''oih', [Definition] = NULL, [SortOrder] = 3848.00 WHERE [Code] = 'tto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taa', 'Lower Tanana', NULL, 383.70) END +VALUES ('taa', 'Lower Tanana', NULL, 3849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lower Tanana', [Definition] = NULL, [SortOrder] = 383.70 WHERE [Code] = 'taa' END +SET [Description] = 'Lower Tanana', [Definition] = NULL, [SortOrder] = 3849.00 WHERE [Code] = 'taa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'clo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('clo', 'Lowland Oaxaca Chontal', NULL, 383.80) END +VALUES ('clo', 'Lowland Oaxaca Chontal', NULL, 3850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lowland Oaxaca Chontal', [Definition] = NULL, [SortOrder] = 383.80 WHERE [Code] = 'clo' END +SET [Description] = 'Lowland Oaxaca Chontal', [Definition] = NULL, [SortOrder] = 3850.00 WHERE [Code] = 'clo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tac', 'Lowland Tarahumara', NULL, 383.90) END +VALUES ('tac', 'Lowland Tarahumara', NULL, 3851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lowland Tarahumara', [Definition] = NULL, [SortOrder] = 383.90 WHERE [Code] = 'tac' END +SET [Description] = 'Lowland Tarahumara', [Definition] = NULL, [SortOrder] = 3851.00 WHERE [Code] = 'tac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztp', 'Loxicha Zapotec', NULL, 384.00) END +VALUES ('ztp', 'Loxicha Zapotec', NULL, 3852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Loxicha Zapotec', [Definition] = NULL, [SortOrder] = 384.00 WHERE [Code] = 'ztp' END +SET [Description] = 'Loxicha Zapotec', [Definition] = NULL, [SortOrder] = 3852.00 WHERE [Code] = 'ztp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loz', 'Lozi', NULL, 384.10) END +VALUES ('loz', 'Lozi', NULL, 3853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lozi', [Definition] = NULL, [SortOrder] = 384.10 WHERE [Code] = 'loz' END +SET [Description] = 'Lozi', [Definition] = NULL, [SortOrder] = 3853.00 WHERE [Code] = 'loz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khb', 'Lü', NULL, 384.20) END +VALUES ('khb', 'Lü', NULL, 3854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lü', [Definition] = NULL, [SortOrder] = 384.20 WHERE [Code] = 'khb' END +SET [Description] = 'Lü', [Definition] = NULL, [SortOrder] = 3854.00 WHERE [Code] = 'khb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lex', 'Luang', NULL, 384.30) END +VALUES ('lex', 'Luang', NULL, 3855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luang', [Definition] = NULL, [SortOrder] = 384.30 WHERE [Code] = 'lex' END +SET [Description] = 'Luang', [Definition] = NULL, [SortOrder] = 3855.00 WHERE [Code] = 'lex' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lub', 'Luba-Katanga', NULL, 384.40) END +VALUES ('lub', 'Luba-Katanga', NULL, 3856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luba-Katanga', [Definition] = NULL, [SortOrder] = 384.40 WHERE [Code] = 'lub' END +SET [Description] = 'Luba-Katanga', [Definition] = NULL, [SortOrder] = 3856.00 WHERE [Code] = 'lub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lua', 'Luba-Lulua', NULL, 384.50) END +VALUES ('lua', 'Luba-Lulua', NULL, 3857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luba-Lulua', [Definition] = NULL, [SortOrder] = 384.50 WHERE [Code] = 'lua' END +SET [Description] = 'Luba-Lulua', [Definition] = NULL, [SortOrder] = 3857.00 WHERE [Code] = 'lua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcc', 'Lubila', NULL, 384.60) END +VALUES ('kcc', 'Lubila', NULL, 3858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lubila', [Definition] = NULL, [SortOrder] = 384.60 WHERE [Code] = 'kcc' END +SET [Description] = 'Lubila', [Definition] = NULL, [SortOrder] = 3858.00 WHERE [Code] = 'kcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcf', 'Lubu', NULL, 384.70) END +VALUES ('lcf', 'Lubu', NULL, 3859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lubu', [Definition] = NULL, [SortOrder] = 384.70 WHERE [Code] = 'lcf' END +SET [Description] = 'Lubu', [Definition] = NULL, [SortOrder] = 3859.00 WHERE [Code] = 'lcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knb', 'Lubuagan Kalinga', NULL, 384.80) END +VALUES ('knb', 'Lubuagan Kalinga', NULL, 3860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lubuagan Kalinga', [Definition] = NULL, [SortOrder] = 384.80 WHERE [Code] = 'knb' END +SET [Description] = 'Lubuagan Kalinga', [Definition] = NULL, [SortOrder] = 3860.00 WHERE [Code] = 'knb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lch', 'Luchazi', NULL, 384.90) END +VALUES ('lch', 'Luchazi', NULL, 3861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luchazi', [Definition] = NULL, [SortOrder] = 384.90 WHERE [Code] = 'lch' END +SET [Description] = 'Luchazi', [Definition] = NULL, [SortOrder] = 3861.00 WHERE [Code] = 'lch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luq', 'Lucumi', NULL, 385.00) END +VALUES ('luq', 'Lucumi', NULL, 3862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lucumi', [Definition] = NULL, [SortOrder] = 385.00 WHERE [Code] = 'luq' END +SET [Description] = 'Lucumi', [Definition] = NULL, [SortOrder] = 3862.00 WHERE [Code] = 'luq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lud', 'Ludian', NULL, 385.10) END +VALUES ('lud', 'Ludian', NULL, 3863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ludian', [Definition] = NULL, [SortOrder] = 385.10 WHERE [Code] = 'lud' END +SET [Description] = 'Ludian', [Definition] = NULL, [SortOrder] = 3863.00 WHERE [Code] = 'lud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldq', 'Lufu', NULL, 385.20) END +VALUES ('ldq', 'Lufu', NULL, 3864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lufu', [Definition] = NULL, [SortOrder] = 385.20 WHERE [Code] = 'ldq' END +SET [Description] = 'Lufu', [Definition] = NULL, [SortOrder] = 3864.00 WHERE [Code] = 'ldq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgg', 'Lugbara', NULL, 385.30) END +VALUES ('lgg', 'Lugbara', NULL, 3865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lugbara', [Definition] = NULL, [SortOrder] = 385.30 WHERE [Code] = 'lgg' END +SET [Description] = 'Lugbara', [Definition] = NULL, [SortOrder] = 3865.00 WHERE [Code] = 'lgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruf', 'Luguru', NULL, 385.40) END +VALUES ('ruf', 'Luguru', NULL, 3866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luguru', [Definition] = NULL, [SortOrder] = 385.40 WHERE [Code] = 'ruf' END +SET [Description] = 'Luguru', [Definition] = NULL, [SortOrder] = 3866.00 WHERE [Code] = 'ruf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcq', 'Luhu', NULL, 385.50) END +VALUES ('lcq', 'Luhu', NULL, 3867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luhu', [Definition] = NULL, [SortOrder] = 385.50 WHERE [Code] = 'lcq' END +SET [Description] = 'Luhu', [Definition] = NULL, [SortOrder] = 3867.00 WHERE [Code] = 'lcq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lum', 'Luimbi', NULL, 385.60) END +VALUES ('lum', 'Luimbi', NULL, 3868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luimbi', [Definition] = NULL, [SortOrder] = 385.60 WHERE [Code] = 'lum' END +SET [Description] = 'Luimbi', [Definition] = NULL, [SortOrder] = 3868.00 WHERE [Code] = 'lum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lui', 'Luiseno', NULL, 385.70) END +VALUES ('lui', 'Luiseno', NULL, 3869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luiseno', [Definition] = NULL, [SortOrder] = 385.70 WHERE [Code] = 'lui' END +SET [Description] = 'Luiseno', [Definition] = NULL, [SortOrder] = 3869.00 WHERE [Code] = 'lui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dop', 'Lukpa', NULL, 385.80) END +VALUES ('dop', 'Lukpa', NULL, 3870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lukpa', [Definition] = NULL, [SortOrder] = 385.80 WHERE [Code] = 'dop' END +SET [Description] = 'Lukpa', [Definition] = NULL, [SortOrder] = 3870.00 WHERE [Code] = 'dop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ule') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ule', 'Lule', NULL, 385.90) END +VALUES ('ule', 'Lule', NULL, 3871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lule', [Definition] = NULL, [SortOrder] = 385.90 WHERE [Code] = 'ule' END +SET [Description] = 'Lule', [Definition] = NULL, [SortOrder] = 3871.00 WHERE [Code] = 'ule' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smj', 'Lule Sami', NULL, 386.00) END +VALUES ('smj', 'Lule Sami', NULL, 3872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lule Sami', [Definition] = NULL, [SortOrder] = 386.00 WHERE [Code] = 'smj' END +SET [Description] = 'Lule Sami', [Definition] = NULL, [SortOrder] = 3872.00 WHERE [Code] = 'smj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luu', 'Lumba-Yakkha', NULL, 386.10) END +VALUES ('luu', 'Lumba-Yakkha', NULL, 3873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lumba-Yakkha', [Definition] = NULL, [SortOrder] = 386.10 WHERE [Code] = 'luu' END +SET [Description] = 'Lumba-Yakkha', [Definition] = NULL, [SortOrder] = 3873.00 WHERE [Code] = 'luu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lup', 'Lumbu', NULL, 386.20) END +VALUES ('lup', 'Lumbu', NULL, 3874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lumbu', [Definition] = NULL, [SortOrder] = 386.20 WHERE [Code] = 'lup' END +SET [Description] = 'Lumbu', [Definition] = NULL, [SortOrder] = 3874.00 WHERE [Code] = 'lup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmd', 'Lumun', NULL, 386.30) END +VALUES ('lmd', 'Lumun', NULL, 3875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lumun', [Definition] = NULL, [SortOrder] = 386.30 WHERE [Code] = 'lmd' END +SET [Description] = 'Lumun', [Definition] = NULL, [SortOrder] = 3875.00 WHERE [Code] = 'lmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luj', 'Luna', NULL, 386.40) END +VALUES ('luj', 'Luna', NULL, 3876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luna', [Definition] = NULL, [SortOrder] = 386.40 WHERE [Code] = 'luj' END +SET [Description] = 'Luna', [Definition] = NULL, [SortOrder] = 3876.00 WHERE [Code] = 'luj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luk', 'Lunanakha', NULL, 386.50) END +VALUES ('luk', 'Lunanakha', NULL, 3877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lunanakha', [Definition] = NULL, [SortOrder] = 386.50 WHERE [Code] = 'luk' END +SET [Description] = 'Lunanakha', [Definition] = NULL, [SortOrder] = 3877.00 WHERE [Code] = 'luk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lun', 'Lunda', NULL, 386.60) END +VALUES ('lun', 'Lunda', NULL, 3878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lunda', [Definition] = NULL, [SortOrder] = 386.60 WHERE [Code] = 'lun' END +SET [Description] = 'Lunda', [Definition] = NULL, [SortOrder] = 3878.00 WHERE [Code] = 'lun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnd', 'Lundayeh', NULL, 386.70) END +VALUES ('lnd', 'Lundayeh', NULL, 3879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lundayeh', [Definition] = NULL, [SortOrder] = 386.70 WHERE [Code] = 'lnd' END +SET [Description] = 'Lundayeh', [Definition] = NULL, [SortOrder] = 3879.00 WHERE [Code] = 'lnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmg', 'Lungalunga', NULL, 386.80) END +VALUES ('vmg', 'Lungalunga', NULL, 3880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lungalunga', [Definition] = NULL, [SortOrder] = 386.80 WHERE [Code] = 'vmg' END +SET [Description] = 'Lungalunga', [Definition] = NULL, [SortOrder] = 3880.00 WHERE [Code] = 'vmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lga', 'Lungga', NULL, 386.90) END +VALUES ('lga', 'Lungga', NULL, 3881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lungga', [Definition] = NULL, [SortOrder] = 386.90 WHERE [Code] = 'lga' END +SET [Description] = 'Lungga', [Definition] = NULL, [SortOrder] = 3881.00 WHERE [Code] = 'lga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luw', 'Luo (Cameroon)', NULL, 387.00) END +VALUES ('luw', 'Luo (Cameroon)', NULL, 3882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luo (Cameroon)', [Definition] = NULL, [SortOrder] = 387.00 WHERE [Code] = 'luw' END +SET [Description] = 'Luo (Cameroon)', [Definition] = NULL, [SortOrder] = 3882.00 WHERE [Code] = 'luw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luo', 'Luo (Kenya and Tanzania)', NULL, 387.10) END +VALUES ('luo', 'Luo (Kenya and Tanzania)', NULL, 3883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luo (Kenya and Tanzania)', [Definition] = NULL, [SortOrder] = 387.10 WHERE [Code] = 'luo' END +SET [Description] = 'Luo (Kenya and Tanzania)', [Definition] = NULL, [SortOrder] = 3883.00 WHERE [Code] = 'luo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hml', 'Luopohe Hmong', NULL, 387.20) END +VALUES ('hml', 'Luopohe Hmong', NULL, 3884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luopohe Hmong', [Definition] = NULL, [SortOrder] = 387.20 WHERE [Code] = 'hml' END +SET [Description] = 'Luopohe Hmong', [Definition] = NULL, [SortOrder] = 3884.00 WHERE [Code] = 'hml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldd', 'Luri', NULL, 387.30) END +VALUES ('ldd', 'Luri', NULL, 3885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luri', [Definition] = NULL, [SortOrder] = 387.30 WHERE [Code] = 'ldd' END +SET [Description] = 'Luri', [Definition] = NULL, [SortOrder] = 3885.00 WHERE [Code] = 'ldd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lse', 'Lusengo', NULL, 387.40) END +VALUES ('lse', 'Lusengo', NULL, 3886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lusengo', [Definition] = NULL, [SortOrder] = 387.40 WHERE [Code] = 'lse' END +SET [Description] = 'Lusengo', [Definition] = NULL, [SortOrder] = 3886.00 WHERE [Code] = 'lse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lus', 'Lushai', NULL, 387.50) END +VALUES ('lus', 'Lushai', NULL, 3887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lushai', [Definition] = NULL, [SortOrder] = 387.50 WHERE [Code] = 'lus' END +SET [Description] = 'Lushai', [Definition] = NULL, [SortOrder] = 3887.00 WHERE [Code] = 'lus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lut', 'Lushootseed', NULL, 387.60) END +VALUES ('lut', 'Lushootseed', NULL, 3888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lushootseed', [Definition] = NULL, [SortOrder] = 387.60 WHERE [Code] = 'lut' END +SET [Description] = 'Lushootseed', [Definition] = NULL, [SortOrder] = 3888.00 WHERE [Code] = 'lut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khl', 'Lusi', NULL, 387.70) END +VALUES ('khl', 'Lusi', NULL, 3889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lusi', [Definition] = NULL, [SortOrder] = 387.70 WHERE [Code] = 'khl' END +SET [Description] = 'Lusi', [Definition] = NULL, [SortOrder] = 3889.00 WHERE [Code] = 'khl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xls', 'Lusitanian', NULL, 387.80) END +VALUES ('xls', 'Lusitanian', NULL, 3890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lusitanian', [Definition] = NULL, [SortOrder] = 387.80 WHERE [Code] = 'xls' END +SET [Description] = 'Lusitanian', [Definition] = NULL, [SortOrder] = 3890.00 WHERE [Code] = 'xls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndy', 'Lutos', NULL, 387.90) END +VALUES ('ndy', 'Lutos', NULL, 3891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lutos', [Definition] = NULL, [SortOrder] = 387.90 WHERE [Code] = 'ndy' END +SET [Description] = 'Lutos', [Definition] = NULL, [SortOrder] = 3891.00 WHERE [Code] = 'ndy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lue', 'Luvale', NULL, 388.00) END +VALUES ('lue', 'Luvale', NULL, 3892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luvale', [Definition] = NULL, [SortOrder] = 388.00 WHERE [Code] = 'lue' END +SET [Description] = 'Luvale', [Definition] = NULL, [SortOrder] = 3892.00 WHERE [Code] = 'lue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luv', 'Luwati', NULL, 388.10) END +VALUES ('luv', 'Luwati', NULL, 3893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luwati', [Definition] = NULL, [SortOrder] = 388.10 WHERE [Code] = 'luv' END +SET [Description] = 'Luwati', [Definition] = NULL, [SortOrder] = 3893.00 WHERE [Code] = 'luv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwo', 'Luwo', NULL, 388.20) END +VALUES ('lwo', 'Luwo', NULL, 3894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luwo', [Definition] = NULL, [SortOrder] = 388.20 WHERE [Code] = 'lwo' END +SET [Description] = 'Luwo', [Definition] = NULL, [SortOrder] = 3894.00 WHERE [Code] = 'lwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ltz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ltz', 'Luxembourgish', NULL, 388.30) END +VALUES ('ltz', 'Luxembourgish', NULL, 3895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luxembourgish', [Definition] = NULL, [SortOrder] = 388.30 WHERE [Code] = 'ltz' END +SET [Description] = 'Luxembourgish', [Definition] = NULL, [SortOrder] = 3895.00 WHERE [Code] = 'ltz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lyn', 'Luyana', NULL, 388.40) END +VALUES ('lyn', 'Luyana', NULL, 3896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luyana', [Definition] = NULL, [SortOrder] = 388.40 WHERE [Code] = 'lyn' END +SET [Description] = 'Luyana', [Definition] = NULL, [SortOrder] = 3896.00 WHERE [Code] = 'lyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luy', 'Luyia', NULL, 388.50) END +VALUES ('luy', 'Luyia', NULL, 3897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Luyia', [Definition] = NULL, [SortOrder] = 388.50 WHERE [Code] = 'luy' END +SET [Description] = 'Luyia', [Definition] = NULL, [SortOrder] = 3897.00 WHERE [Code] = 'luy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwa', 'Lwalu', NULL, 388.60) END +VALUES ('lwa', 'Lwalu', NULL, 3898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lwalu', [Definition] = NULL, [SortOrder] = 388.60 WHERE [Code] = 'lwa' END +SET [Description] = 'Lwalu', [Definition] = NULL, [SortOrder] = 3898.00 WHERE [Code] = 'lwa' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('lvl', 'Lwel', NULL, 3899.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Lwel', [Definition] = NULL, [SortOrder] = 3899.00 WHERE [Code] = 'lvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xlc', 'Lycian', NULL, 388.70) END +VALUES ('xlc', 'Lycian', NULL, 3900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lycian', [Definition] = NULL, [SortOrder] = 388.70 WHERE [Code] = 'xlc' END +SET [Description] = 'Lycian', [Definition] = NULL, [SortOrder] = 3900.00 WHERE [Code] = 'xlc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xld', 'Lydian', NULL, 388.80) END +VALUES ('xld', 'Lydian', NULL, 3901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lydian', [Definition] = NULL, [SortOrder] = 388.80 WHERE [Code] = 'xld' END +SET [Description] = 'Lydian', [Definition] = NULL, [SortOrder] = 3901.00 WHERE [Code] = 'xld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lee', 'Lyélé', NULL, 388.90) END +VALUES ('lee', 'Lyélé', NULL, 3902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lyélé', [Definition] = NULL, [SortOrder] = 388.90 WHERE [Code] = 'lee' END +SET [Description] = 'Lyélé', [Definition] = NULL, [SortOrder] = 3902.00 WHERE [Code] = 'lee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lyg', 'Lyngngam', NULL, 389.00) END +VALUES ('lyg', 'Lyngngam', NULL, 3903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Lyngngam', [Definition] = NULL, [SortOrder] = 389.00 WHERE [Code] = 'lyg' END +SET [Description] = 'Lyngngam', [Definition] = NULL, [SortOrder] = 3903.00 WHERE [Code] = 'lyg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msj', 'Ma (Democratic Republic of Congo)', NULL, 389.10) END +VALUES ('msj', 'Ma (Democratic Republic of Congo)', NULL, 3904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 389.10 WHERE [Code] = 'msj' END +SET [Description] = 'Ma (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 3904.00 WHERE [Code] = 'msj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjn', 'Ma (Papua New Guinea)', NULL, 389.20) END +VALUES ('mjn', 'Ma (Papua New Guinea)', NULL, 3905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 389.20 WHERE [Code] = 'mjn' END +SET [Description] = 'Ma (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3905.00 WHERE [Code] = 'mjn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skc', 'Ma Manda', NULL, 389.30) END +VALUES ('skc', 'Ma Manda', NULL, 3906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma Manda', [Definition] = NULL, [SortOrder] = 389.30 WHERE [Code] = 'skc' END +SET [Description] = 'Ma Manda', [Definition] = NULL, [SortOrder] = 3906.00 WHERE [Code] = 'skc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhy', 'Ma''anyan', NULL, 389.40) END +VALUES ('mhy', 'Ma''anyan', NULL, 3907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma''anyan', [Definition] = NULL, [SortOrder] = 389.40 WHERE [Code] = 'mhy' END +SET [Description] = 'Ma''anyan', [Definition] = NULL, [SortOrder] = 3907.00 WHERE [Code] = 'mhy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhi', 'Ma''di', NULL, 389.50) END +VALUES ('mhi', 'Ma''di', NULL, 3908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma''di', [Definition] = NULL, [SortOrder] = 389.50 WHERE [Code] = 'mhi' END +SET [Description] = 'Ma''di', [Definition] = NULL, [SortOrder] = 3908.00 WHERE [Code] = 'mhi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slz', 'Ma''ya', NULL, 389.60) END +VALUES ('slz', 'Ma''ya', NULL, 3909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ma''ya', [Definition] = NULL, [SortOrder] = 389.60 WHERE [Code] = 'slz' END +SET [Description] = 'Ma''ya', [Definition] = NULL, [SortOrder] = 3909.00 WHERE [Code] = 'slz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cma', 'Maa', NULL, 389.70) END +VALUES ('cma', 'Maa', NULL, 3910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maa', [Definition] = NULL, [SortOrder] = 389.70 WHERE [Code] = 'cma' END +SET [Description] = 'Maa', [Definition] = NULL, [SortOrder] = 3910.00 WHERE [Code] = 'cma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mew', 'Maaka', NULL, 389.80) END +VALUES ('mew', 'Maaka', NULL, 3911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maaka', [Definition] = NULL, [SortOrder] = 389.80 WHERE [Code] = 'mew' END +SET [Description] = 'Maaka', [Definition] = NULL, [SortOrder] = 3911.00 WHERE [Code] = 'mew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ffm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ffm', 'Maasina Fulfulde', NULL, 389.90) END +VALUES ('ffm', 'Maasina Fulfulde', NULL, 3912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maasina Fulfulde', [Definition] = NULL, [SortOrder] = 389.90 WHERE [Code] = 'ffm' END +SET [Description] = 'Maasina Fulfulde', [Definition] = NULL, [SortOrder] = 3912.00 WHERE [Code] = 'ffm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymm', 'Maay', NULL, 390.00) END +VALUES ('ymm', 'Maay', NULL, 3913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maay', [Definition] = NULL, [SortOrder] = 390.00 WHERE [Code] = 'ymm' END +SET [Description] = 'Maay', [Definition] = NULL, [SortOrder] = 3913.00 WHERE [Code] = 'ymm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mde', 'Maba (Chad)', NULL, 390.10) END +VALUES ('mde', 'Maba (Chad)', NULL, 3914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maba (Chad)', [Definition] = NULL, [SortOrder] = 390.10 WHERE [Code] = 'mde' END +SET [Description] = 'Maba (Chad)', [Definition] = NULL, [SortOrder] = 3914.00 WHERE [Code] = 'mde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqa', 'Maba (Indonesia)', NULL, 390.20) END +VALUES ('mqa', 'Maba (Indonesia)', NULL, 3915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maba (Indonesia)', [Definition] = NULL, [SortOrder] = 390.20 WHERE [Code] = 'mqa' END +SET [Description] = 'Maba (Indonesia)', [Definition] = NULL, [SortOrder] = 3915.00 WHERE [Code] = 'mqa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmz', 'Mabaale', NULL, 390.30) END +VALUES ('mmz', 'Mabaale', NULL, 3916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mabaale', [Definition] = NULL, [SortOrder] = 390.30 WHERE [Code] = 'mmz' END +SET [Description] = 'Mabaale', [Definition] = NULL, [SortOrder] = 3916.00 WHERE [Code] = 'mmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfz', 'Mabaan', NULL, 390.40) END +VALUES ('mfz', 'Mabaan', NULL, 3917.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mabaan', [Definition] = NULL, [SortOrder] = 390.40 WHERE [Code] = 'mfz' END +SET [Description] = 'Mabaan', [Definition] = NULL, [SortOrder] = 3917.00 WHERE [Code] = 'mfz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkg', 'Mabaka Valley Kalinga', NULL, 390.50) END +VALUES ('kkg', 'Mabaka Valley Kalinga', NULL, 3918.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mabaka Valley Kalinga', [Definition] = NULL, [SortOrder] = 390.50 WHERE [Code] = 'kkg' END +SET [Description] = 'Mabaka Valley Kalinga', [Definition] = NULL, [SortOrder] = 3918.00 WHERE [Code] = 'kkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muj', 'Mabire', NULL, 390.60) END +VALUES ('muj', 'Mabire', NULL, 3919.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mabire', [Definition] = NULL, [SortOrder] = 390.60 WHERE [Code] = 'muj' END +SET [Description] = 'Mabire', [Definition] = NULL, [SortOrder] = 3919.00 WHERE [Code] = 'muj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mca', 'Maca', NULL, 390.70) END +VALUES ('mca', 'Maca', NULL, 3920.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maca', [Definition] = NULL, [SortOrder] = 390.70 WHERE [Code] = 'mca' END +SET [Description] = 'Maca', [Definition] = NULL, [SortOrder] = 3920.00 WHERE [Code] = 'mca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcl', 'Macaguaje', NULL, 390.80) END +VALUES ('mcl', 'Macaguaje', NULL, 3921.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macaguaje', [Definition] = NULL, [SortOrder] = 390.80 WHERE [Code] = 'mcl' END +SET [Description] = 'Macaguaje', [Definition] = NULL, [SortOrder] = 3921.00 WHERE [Code] = 'mcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbn', 'Macaguán', NULL, 390.90) END +VALUES ('mbn', 'Macaguán', NULL, 3922.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macaguán', [Definition] = NULL, [SortOrder] = 390.90 WHERE [Code] = 'mbn' END +SET [Description] = 'Macaguán', [Definition] = NULL, [SortOrder] = 3922.00 WHERE [Code] = 'mbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzs', 'Macanese', NULL, 391.00) END +VALUES ('mzs', 'Macanese', NULL, 3923.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macanese', [Definition] = NULL, [SortOrder] = 391.00 WHERE [Code] = 'mzs' END +SET [Description] = 'Macanese', [Definition] = NULL, [SortOrder] = 3923.00 WHERE [Code] = 'mzs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rup', 'Macedo-Romanian', NULL, 391.10) END +VALUES ('rup', 'Macedo-Romanian', NULL, 3924.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macedo-Romanian', [Definition] = NULL, [SortOrder] = 391.10 WHERE [Code] = 'rup' END +SET [Description] = 'Macedo-Romanian', [Definition] = NULL, [SortOrder] = 3924.00 WHERE [Code] = 'rup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkd', 'Macedonian', NULL, 391.20) END +VALUES ('mkd', 'Macedonian', NULL, 3925.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macedonian', [Definition] = NULL, [SortOrder] = 391.20 WHERE [Code] = 'mkd' END +SET [Description] = 'Macedonian', [Definition] = NULL, [SortOrder] = 3925.00 WHERE [Code] = 'mkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmc', 'Machame', NULL, 391.30) END +VALUES ('jmc', 'Machame', NULL, 3926.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Machame', [Definition] = NULL, [SortOrder] = 391.30 WHERE [Code] = 'jmc' END +SET [Description] = 'Machame', [Definition] = NULL, [SortOrder] = 3926.00 WHERE [Code] = 'jmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcb', 'Machiguenga', NULL, 391.40) END +VALUES ('mcb', 'Machiguenga', NULL, 3927.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Machiguenga', [Definition] = NULL, [SortOrder] = 391.40 WHERE [Code] = 'mcb' END +SET [Description] = 'Machiguenga', [Definition] = NULL, [SortOrder] = 3927.00 WHERE [Code] = 'mcb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpd', 'Machinere', NULL, 391.50) END +VALUES ('mpd', 'Machinere', NULL, 3928.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Machinere', [Definition] = NULL, [SortOrder] = 391.50 WHERE [Code] = 'mpd' END +SET [Description] = 'Machinere', [Definition] = NULL, [SortOrder] = 3928.00 WHERE [Code] = 'mpd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvw', 'Machinga', NULL, 391.60) END +VALUES ('mvw', 'Machinga', NULL, 3929.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Machinga', [Definition] = NULL, [SortOrder] = 391.60 WHERE [Code] = 'mvw' END +SET [Description] = 'Machinga', [Definition] = NULL, [SortOrder] = 3929.00 WHERE [Code] = 'mvw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wpc', 'Maco', NULL, 391.70) END +VALUES ('wpc', 'Maco', NULL, 3930.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maco', [Definition] = NULL, [SortOrder] = 391.70 WHERE [Code] = 'wpc' END +SET [Description] = 'Maco', [Definition] = NULL, [SortOrder] = 3930.00 WHERE [Code] = 'wpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myy', 'Macuna', NULL, 391.80) END +VALUES ('myy', 'Macuna', NULL, 3931.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macuna', [Definition] = NULL, [SortOrder] = 391.80 WHERE [Code] = 'myy' END +SET [Description] = 'Macuna', [Definition] = NULL, [SortOrder] = 3931.00 WHERE [Code] = 'myy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbc', 'Macushi', NULL, 391.90) END +VALUES ('mbc', 'Macushi', NULL, 3932.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Macushi', [Definition] = NULL, [SortOrder] = 391.90 WHERE [Code] = 'mbc' END +SET [Description] = 'Macushi', [Definition] = NULL, [SortOrder] = 3932.00 WHERE [Code] = 'mbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxu', 'Mada (Cameroon)', NULL, 392.00) END +VALUES ('mxu', 'Mada (Cameroon)', NULL, 3933.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mada (Cameroon)', [Definition] = NULL, [SortOrder] = 392.00 WHERE [Code] = 'mxu' END +SET [Description] = 'Mada (Cameroon)', [Definition] = NULL, [SortOrder] = 3933.00 WHERE [Code] = 'mxu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mda', 'Mada (Nigeria)', NULL, 392.10) END +VALUES ('mda', 'Mada (Nigeria)', NULL, 3934.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mada (Nigeria)', [Definition] = NULL, [SortOrder] = 392.10 WHERE [Code] = 'mda' END +SET [Description] = 'Mada (Nigeria)', [Definition] = NULL, [SortOrder] = 3934.00 WHERE [Code] = 'mda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzc', 'Madagascar Sign Language', NULL, 392.20) END +VALUES ('mzc', 'Madagascar Sign Language', NULL, 3935.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madagascar Sign Language', [Definition] = NULL, [SortOrder] = 392.20 WHERE [Code] = 'mzc' END +SET [Description] = 'Madagascar Sign Language', [Definition] = NULL, [SortOrder] = 3935.00 WHERE [Code] = 'mzc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmx', 'Madak', NULL, 392.30) END +VALUES ('mmx', 'Madak', NULL, 3936.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madak', [Definition] = NULL, [SortOrder] = 392.30 WHERE [Code] = 'mmx' END +SET [Description] = 'Madak', [Definition] = NULL, [SortOrder] = 3936.00 WHERE [Code] = 'mmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmx', 'Maden', NULL, 392.40) END +VALUES ('xmx', 'Maden', NULL, 3937.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maden', [Definition] = NULL, [SortOrder] = 392.40 WHERE [Code] = 'xmx' END +SET [Description] = 'Maden', [Definition] = NULL, [SortOrder] = 3937.00 WHERE [Code] = 'xmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmd', 'Madhi Madhi', NULL, 392.50) END +VALUES ('dmd', 'Madhi Madhi', NULL, 3938.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madhi Madhi', [Definition] = NULL, [SortOrder] = 392.50 WHERE [Code] = 'dmd' END +SET [Description] = 'Madhi Madhi', [Definition] = NULL, [SortOrder] = 3938.00 WHERE [Code] = 'dmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grg', 'Madi', NULL, 392.60) END +VALUES ('grg', 'Madi', NULL, 3939.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madi', [Definition] = NULL, [SortOrder] = 392.60 WHERE [Code] = 'grg' END +SET [Description] = 'Madi', [Definition] = NULL, [SortOrder] = 3939.00 WHERE [Code] = 'grg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mad', 'Madurese', NULL, 392.70) END +VALUES ('mad', 'Madurese', NULL, 3940.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Madurese', [Definition] = NULL, [SortOrder] = 392.70 WHERE [Code] = 'mad' END +SET [Description] = 'Madurese', [Definition] = NULL, [SortOrder] = 3940.00 WHERE [Code] = 'mad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mme', 'Mae', NULL, 392.80) END +VALUES ('mme', 'Mae', NULL, 3941.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mae', [Definition] = NULL, [SortOrder] = 392.80 WHERE [Code] = 'mme' END +SET [Description] = 'Mae', [Definition] = NULL, [SortOrder] = 3941.00 WHERE [Code] = 'mme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmk', 'Maek', NULL, 392.90) END +VALUES ('hmk', 'Maek', NULL, 3942.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maek', [Definition] = NULL, [SortOrder] = 392.90 WHERE [Code] = 'hmk' END +SET [Description] = 'Maek', [Definition] = NULL, [SortOrder] = 3942.00 WHERE [Code] = 'hmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itt', 'Maeng Itneg', NULL, 393.00) END +VALUES ('itt', 'Maeng Itneg', NULL, 3943.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maeng Itneg', [Definition] = NULL, [SortOrder] = 393.00 WHERE [Code] = 'itt' END +SET [Description] = 'Maeng Itneg', [Definition] = NULL, [SortOrder] = 3943.00 WHERE [Code] = 'itt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maf', 'Mafa', NULL, 393.10) END +VALUES ('maf', 'Mafa', NULL, 3944.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mafa', [Definition] = NULL, [SortOrder] = 393.10 WHERE [Code] = 'maf' END +SET [Description] = 'Mafa', [Definition] = NULL, [SortOrder] = 3944.00 WHERE [Code] = 'maf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkv', 'Mafea', NULL, 393.20) END +VALUES ('mkv', 'Mafea', NULL, 3945.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mafea', [Definition] = NULL, [SortOrder] = 393.20 WHERE [Code] = 'mkv' END +SET [Description] = 'Mafea', [Definition] = NULL, [SortOrder] = 3945.00 WHERE [Code] = 'mkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgb', 'Mag-antsi Ayta', NULL, 393.30) END +VALUES ('sgb', 'Mag-antsi Ayta', NULL, 3946.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mag-antsi Ayta', [Definition] = NULL, [SortOrder] = 393.30 WHERE [Code] = 'sgb' END +SET [Description] = 'Mag-antsi Ayta', [Definition] = NULL, [SortOrder] = 3946.00 WHERE [Code] = 'sgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blx', 'Mag-Indi Ayta', NULL, 393.40) END +VALUES ('blx', 'Mag-Indi Ayta', NULL, 3947.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mag-Indi Ayta', [Definition] = NULL, [SortOrder] = 393.40 WHERE [Code] = 'blx' END +SET [Description] = 'Mag-Indi Ayta', [Definition] = NULL, [SortOrder] = 3947.00 WHERE [Code] = 'blx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mag', 'Magahi', NULL, 393.50) END +VALUES ('mag', 'Magahi', NULL, 3948.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magahi', [Definition] = NULL, [SortOrder] = 393.50 WHERE [Code] = 'mag' END +SET [Description] = 'Magahi', [Definition] = NULL, [SortOrder] = 3948.00 WHERE [Code] = 'mag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayt', 'Magbukun Ayta', NULL, 393.60) END +VALUES ('ayt', 'Magbukun Ayta', NULL, 3949.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magbukun Ayta', [Definition] = NULL, [SortOrder] = 393.60 WHERE [Code] = 'ayt' END +SET [Description] = 'Magbukun Ayta', [Definition] = NULL, [SortOrder] = 3949.00 WHERE [Code] = 'ayt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtm', 'Magdalena Peñasco Mixtec', NULL, 393.70) END +VALUES ('xtm', 'Magdalena Peñasco Mixtec', NULL, 3950.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magdalena Peñasco Mixtec', [Definition] = NULL, [SortOrder] = 393.70 WHERE [Code] = 'xtm' END +SET [Description] = 'Magdalena Peñasco Mixtec', [Definition] = NULL, [SortOrder] = 3950.00 WHERE [Code] = 'xtm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmd', 'Mághdì', NULL, 393.80) END +VALUES ('gmd', 'Mághdì', NULL, 3951.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mághdì', [Definition] = NULL, [SortOrder] = 393.80 WHERE [Code] = 'gmd' END +SET [Description] = 'Mághdì', [Definition] = NULL, [SortOrder] = 3951.00 WHERE [Code] = 'gmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gkd', 'Magi (Madang Province)', NULL, 393.90) END +VALUES ('gkd', 'Magi (Madang Province)', NULL, 3952.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magi (Madang Province)', [Definition] = NULL, [SortOrder] = 393.90 WHERE [Code] = 'gkd' END +SET [Description] = 'Magi (Madang Province)', [Definition] = NULL, [SortOrder] = 3952.00 WHERE [Code] = 'gkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmg', 'Magiyi', NULL, 394.00) END +VALUES ('gmg', 'Magiyi', NULL, 3953.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magiyi', [Definition] = NULL, [SortOrder] = 394.00 WHERE [Code] = 'gmg' END +SET [Description] = 'Magiyi', [Definition] = NULL, [SortOrder] = 3953.00 WHERE [Code] = 'gmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmx', 'Magoma', NULL, 394.10) END +VALUES ('gmx', 'Magoma', NULL, 3954.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magoma', [Definition] = NULL, [SortOrder] = 394.10 WHERE [Code] = 'gmx' END +SET [Description] = 'Magoma', [Definition] = NULL, [SortOrder] = 3954.00 WHERE [Code] = 'gmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgr', 'Magori', NULL, 394.20) END +VALUES ('zgr', 'Magori', NULL, 3955.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Magori', [Definition] = NULL, [SortOrder] = 394.20 WHERE [Code] = 'zgr' END +SET [Description] = 'Magori', [Definition] = NULL, [SortOrder] = 3955.00 WHERE [Code] = 'zgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdh', 'Maguindanaon', NULL, 394.30) END +VALUES ('mdh', 'Maguindanaon', NULL, 3956.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maguindanaon', [Definition] = NULL, [SortOrder] = 394.30 WHERE [Code] = 'mdh' END +SET [Description] = 'Maguindanaon', [Definition] = NULL, [SortOrder] = 3956.00 WHERE [Code] = 'mdh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjx', 'Mahali', NULL, 394.40) END +VALUES ('mjx', 'Mahali', NULL, 3957.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahali', [Definition] = NULL, [SortOrder] = 394.40 WHERE [Code] = 'mjx' END +SET [Description] = 'Mahali', [Definition] = NULL, [SortOrder] = 3957.00 WHERE [Code] = 'mjx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmh', 'Maharastri Prakrit', NULL, 394.50) END +VALUES ('pmh', 'Maharastri Prakrit', NULL, 3958.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maharastri Prakrit', [Definition] = NULL, [SortOrder] = 394.50 WHERE [Code] = 'pmh' END +SET [Description] = 'Maharastri Prakrit', [Definition] = NULL, [SortOrder] = 3958.00 WHERE [Code] = 'pmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfz', 'Mahasu Pahari', NULL, 394.60) END +VALUES ('bfz', 'Mahasu Pahari', NULL, 3959.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahasu Pahari', [Definition] = NULL, [SortOrder] = 394.60 WHERE [Code] = 'bfz' END +SET [Description] = 'Mahasu Pahari', [Definition] = NULL, [SortOrder] = 3959.00 WHERE [Code] = 'bfz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjy', 'Mahican', NULL, 394.70) END +VALUES ('mjy', 'Mahican', NULL, 3960.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahican', [Definition] = NULL, [SortOrder] = 394.70 WHERE [Code] = 'mjy' END +SET [Description] = 'Mahican', [Definition] = NULL, [SortOrder] = 3960.00 WHERE [Code] = 'mjy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhb', 'Mahongwe', NULL, 394.80) END +VALUES ('mhb', 'Mahongwe', NULL, 3961.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahongwe', [Definition] = NULL, [SortOrder] = 394.80 WHERE [Code] = 'mhb' END +SET [Description] = 'Mahongwe', [Definition] = NULL, [SortOrder] = 3961.00 WHERE [Code] = 'mhb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxx', 'Mahou', NULL, 394.90) END +VALUES ('mxx', 'Mahou', NULL, 3962.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mahou', [Definition] = NULL, [SortOrder] = 394.90 WHERE [Code] = 'mxx' END +SET [Description] = 'Mahou', [Definition] = NULL, [SortOrder] = 3962.00 WHERE [Code] = 'mxx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayz', 'Mai Brat', NULL, 395.00) END +VALUES ('ayz', 'Mai Brat', NULL, 3963.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mai Brat', [Definition] = NULL, [SortOrder] = 395.00 WHERE [Code] = 'ayz' END +SET [Description] = 'Mai Brat', [Definition] = NULL, [SortOrder] = 3963.00 WHERE [Code] = 'ayz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sks', 'Maia', NULL, 395.10) END +VALUES ('sks', 'Maia', NULL, 3964.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maia', [Definition] = NULL, [SortOrder] = 395.10 WHERE [Code] = 'sks' END +SET [Description] = 'Maia', [Definition] = NULL, [SortOrder] = 3964.00 WHERE [Code] = 'sks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzz', 'Maiadomu', NULL, 395.20) END +VALUES ('mzz', 'Maiadomu', NULL, 3965.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiadomu', [Definition] = NULL, [SortOrder] = 395.20 WHERE [Code] = 'mzz' END +SET [Description] = 'Maiadomu', [Definition] = NULL, [SortOrder] = 3965.00 WHERE [Code] = 'mzz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnh', 'Maiani', NULL, 395.30) END +VALUES ('tnh', 'Maiani', NULL, 3966.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiani', [Definition] = NULL, [SortOrder] = 395.30 WHERE [Code] = 'tnh' END +SET [Description] = 'Maiani', [Definition] = NULL, [SortOrder] = 3966.00 WHERE [Code] = 'tnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmm', 'Maii', NULL, 395.40) END +VALUES ('mmm', 'Maii', NULL, 3967.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maii', [Definition] = NULL, [SortOrder] = 395.40 WHERE [Code] = 'mmm' END +SET [Description] = 'Maii', [Definition] = NULL, [SortOrder] = 3967.00 WHERE [Code] = 'mmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgu', 'Mailu', NULL, 395.50) END +VALUES ('mgu', 'Mailu', NULL, 3968.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mailu', [Definition] = NULL, [SortOrder] = 395.50 WHERE [Code] = 'mgu' END +SET [Description] = 'Mailu', [Definition] = NULL, [SortOrder] = 3968.00 WHERE [Code] = 'mgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwb', 'Maindo', NULL, 395.60) END +VALUES ('cwb', 'Maindo', NULL, 3969.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maindo', [Definition] = NULL, [SortOrder] = 395.60 WHERE [Code] = 'cwb' END +SET [Description] = 'Maindo', [Definition] = NULL, [SortOrder] = 3969.00 WHERE [Code] = 'cwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmf', 'Mainfränkisch', NULL, 395.70) END +VALUES ('vmf', 'Mainfränkisch', NULL, 3970.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mainfränkisch', [Definition] = NULL, [SortOrder] = 395.70 WHERE [Code] = 'vmf' END +SET [Description] = 'Mainfränkisch', [Definition] = NULL, [SortOrder] = 3970.00 WHERE [Code] = 'vmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkl', 'Mainstream Kenyah', NULL, 395.80) END +VALUES ('xkl', 'Mainstream Kenyah', NULL, 3971.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mainstream Kenyah', [Definition] = NULL, [SortOrder] = 395.80 WHERE [Code] = 'xkl' END +SET [Description] = 'Mainstream Kenyah', [Definition] = NULL, [SortOrder] = 3971.00 WHERE [Code] = 'xkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zrs', 'Mairasi', NULL, 395.90) END +VALUES ('zrs', 'Mairasi', NULL, 3972.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mairasi', [Definition] = NULL, [SortOrder] = 395.90 WHERE [Code] = 'zrs' END +SET [Description] = 'Mairasi', [Definition] = NULL, [SortOrder] = 3972.00 WHERE [Code] = 'zrs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbq', 'Maisin', NULL, 396.00) END +VALUES ('mbq', 'Maisin', NULL, 3973.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maisin', [Definition] = NULL, [SortOrder] = 396.00 WHERE [Code] = 'mbq' END +SET [Description] = 'Maisin', [Definition] = NULL, [SortOrder] = 3973.00 WHERE [Code] = 'mbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mai', 'Maithili', NULL, 396.10) END +VALUES ('mai', 'Maithili', NULL, 3974.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maithili', [Definition] = NULL, [SortOrder] = 396.10 WHERE [Code] = 'mai' END +SET [Description] = 'Maithili', [Definition] = NULL, [SortOrder] = 3974.00 WHERE [Code] = 'mai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmm', 'Maiwa (Indonesia)', NULL, 396.20) END +VALUES ('wmm', 'Maiwa (Indonesia)', NULL, 3975.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiwa (Indonesia)', [Definition] = NULL, [SortOrder] = 396.20 WHERE [Code] = 'wmm' END +SET [Description] = 'Maiwa (Indonesia)', [Definition] = NULL, [SortOrder] = 3975.00 WHERE [Code] = 'wmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mti', 'Maiwa (Papua New Guinea)', NULL, 396.30) END +VALUES ('mti', 'Maiwa (Papua New Guinea)', NULL, 3976.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiwa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 396.30 WHERE [Code] = 'mti' END +SET [Description] = 'Maiwa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 3976.00 WHERE [Code] = 'mti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mum', 'Maiwala', NULL, 396.40) END +VALUES ('mum', 'Maiwala', NULL, 3977.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maiwala', [Definition] = NULL, [SortOrder] = 396.40 WHERE [Code] = 'mum' END +SET [Description] = 'Maiwala', [Definition] = NULL, [SortOrder] = 3977.00 WHERE [Code] = 'mum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpe', 'Majang', NULL, 396.50) END +VALUES ('mpe', 'Majang', NULL, 3978.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majang', [Definition] = NULL, [SortOrder] = 396.50 WHERE [Code] = 'mpe' END +SET [Description] = 'Majang', [Definition] = NULL, [SortOrder] = 3978.00 WHERE [Code] = 'mpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmj', 'Majera', NULL, 396.60) END +VALUES ('xmj', 'Majera', NULL, 3979.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majera', [Definition] = NULL, [SortOrder] = 396.60 WHERE [Code] = 'xmj' END +SET [Description] = 'Majera', [Definition] = NULL, [SortOrder] = 3979.00 WHERE [Code] = 'xmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjz', 'Majhi', NULL, 396.70) END +VALUES ('mjz', 'Majhi', NULL, 3980.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majhi', [Definition] = NULL, [SortOrder] = 396.70 WHERE [Code] = 'mjz' END +SET [Description] = 'Majhi', [Definition] = NULL, [SortOrder] = 3980.00 WHERE [Code] = 'mjz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmj', 'Majhwar', NULL, 396.80) END +VALUES ('mmj', 'Majhwar', NULL, 3981.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majhwar', [Definition] = NULL, [SortOrder] = 396.80 WHERE [Code] = 'mmj' END +SET [Description] = 'Majhwar', [Definition] = NULL, [SortOrder] = 3981.00 WHERE [Code] = 'mmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmd', 'Majukayang Kalinga', NULL, 396.90) END +VALUES ('kmd', 'Majukayang Kalinga', NULL, 3982.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Majukayang Kalinga', [Definition] = NULL, [SortOrder] = 396.90 WHERE [Code] = 'kmd' END +SET [Description] = 'Majukayang Kalinga', [Definition] = NULL, [SortOrder] = 3982.00 WHERE [Code] = 'kmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkg', 'Mak (China)', NULL, 397.00) END +VALUES ('mkg', 'Mak (China)', NULL, 3983.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mak (China)', [Definition] = NULL, [SortOrder] = 397.00 WHERE [Code] = 'mkg' END +SET [Description] = 'Mak (China)', [Definition] = NULL, [SortOrder] = 3983.00 WHERE [Code] = 'mkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbl', 'Mak (Nigeria)', NULL, 397.10) END +VALUES ('pbl', 'Mak (Nigeria)', NULL, 3984.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mak (Nigeria)', [Definition] = NULL, [SortOrder] = 397.10 WHERE [Code] = 'pbl' END +SET [Description] = 'Mak (Nigeria)', [Definition] = NULL, [SortOrder] = 3984.00 WHERE [Code] = 'pbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcp', 'Makaa', NULL, 397.20) END +VALUES ('mcp', 'Makaa', NULL, 3985.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makaa', [Definition] = NULL, [SortOrder] = 397.20 WHERE [Code] = 'mcp' END +SET [Description] = 'Makaa', [Definition] = NULL, [SortOrder] = 3985.00 WHERE [Code] = 'mcp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myh', 'Makah', NULL, 397.30) END +VALUES ('myh', 'Makah', NULL, 3986.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makah', [Definition] = NULL, [SortOrder] = 397.30 WHERE [Code] = 'myh' END +SET [Description] = 'Makah', [Definition] = NULL, [SortOrder] = 3986.00 WHERE [Code] = 'myh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjb', 'Makalero', NULL, 397.40) END +VALUES ('mjb', 'Makalero', NULL, 3987.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makalero', [Definition] = NULL, [SortOrder] = 397.40 WHERE [Code] = 'mjb' END +SET [Description] = 'Makalero', [Definition] = NULL, [SortOrder] = 3987.00 WHERE [Code] = 'mjb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkz', 'Makasae', NULL, 397.50) END +VALUES ('mkz', 'Makasae', NULL, 3988.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makasae', [Definition] = NULL, [SortOrder] = 397.50 WHERE [Code] = 'mkz' END +SET [Description] = 'Makasae', [Definition] = NULL, [SortOrder] = 3988.00 WHERE [Code] = 'mkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mak', 'Makasar', NULL, 397.60) END +VALUES ('mak', 'Makasar', NULL, 3989.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makasar', [Definition] = NULL, [SortOrder] = 397.60 WHERE [Code] = 'mak' END +SET [Description] = 'Makasar', [Definition] = NULL, [SortOrder] = 3989.00 WHERE [Code] = 'mak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfp', 'Makassar Malay', NULL, 397.70) END +VALUES ('mfp', 'Makassar Malay', NULL, 3990.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makassar Malay', [Definition] = NULL, [SortOrder] = 397.70 WHERE [Code] = 'mfp' END +SET [Description] = 'Makassar Malay', [Definition] = NULL, [SortOrder] = 3990.00 WHERE [Code] = 'mfp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aup', 'Makayam', NULL, 397.80) END +VALUES ('aup', 'Makayam', NULL, 3991.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makayam', [Definition] = NULL, [SortOrder] = 397.80 WHERE [Code] = 'aup' END +SET [Description] = 'Makayam', [Definition] = NULL, [SortOrder] = 3991.00 WHERE [Code] = 'aup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmw', 'Makhuwa', NULL, 397.90) END +VALUES ('vmw', 'Makhuwa', NULL, 3992.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa', [Definition] = NULL, [SortOrder] = 397.90 WHERE [Code] = 'vmw' END +SET [Description] = 'Makhuwa', [Definition] = NULL, [SortOrder] = 3992.00 WHERE [Code] = 'vmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmc', 'Makhuwa-Marrevone', NULL, 398.00) END +VALUES ('xmc', 'Makhuwa-Marrevone', NULL, 3993.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Marrevone', [Definition] = NULL, [SortOrder] = 398.00 WHERE [Code] = 'xmc' END +SET [Description] = 'Makhuwa-Marrevone', [Definition] = NULL, [SortOrder] = 3993.00 WHERE [Code] = 'xmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgh', 'Makhuwa-Meetto', NULL, 398.10) END +VALUES ('mgh', 'Makhuwa-Meetto', NULL, 3994.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Meetto', [Definition] = NULL, [SortOrder] = 398.10 WHERE [Code] = 'mgh' END +SET [Description] = 'Makhuwa-Meetto', [Definition] = NULL, [SortOrder] = 3994.00 WHERE [Code] = 'mgh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhm', 'Makhuwa-Moniga', NULL, 398.20) END +VALUES ('mhm', 'Makhuwa-Moniga', NULL, 3995.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Moniga', [Definition] = NULL, [SortOrder] = 398.20 WHERE [Code] = 'mhm' END +SET [Description] = 'Makhuwa-Moniga', [Definition] = NULL, [SortOrder] = 3995.00 WHERE [Code] = 'mhm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsq', 'Makhuwa-Saka', NULL, 398.30) END +VALUES ('xsq', 'Makhuwa-Saka', NULL, 3996.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Saka', [Definition] = NULL, [SortOrder] = 398.30 WHERE [Code] = 'xsq' END +SET [Description] = 'Makhuwa-Saka', [Definition] = NULL, [SortOrder] = 3996.00 WHERE [Code] = 'xsq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmk', 'Makhuwa-Shirima', NULL, 398.40) END +VALUES ('vmk', 'Makhuwa-Shirima', NULL, 3997.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makhuwa-Shirima', [Definition] = NULL, [SortOrder] = 398.40 WHERE [Code] = 'vmk' END +SET [Description] = 'Makhuwa-Shirima', [Definition] = NULL, [SortOrder] = 3997.00 WHERE [Code] = 'vmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgf', 'Maklew', NULL, 398.50) END +VALUES ('mgf', 'Maklew', NULL, 3998.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maklew', [Definition] = NULL, [SortOrder] = 398.50 WHERE [Code] = 'mgf' END +SET [Description] = 'Maklew', [Definition] = NULL, [SortOrder] = 3998.00 WHERE [Code] = 'mgf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmh', 'Makolkol', NULL, 398.60) END +VALUES ('zmh', 'Makolkol', NULL, 3999.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makolkol', [Definition] = NULL, [SortOrder] = 398.60 WHERE [Code] = 'zmh' END +SET [Description] = 'Makolkol', [Definition] = NULL, [SortOrder] = 3999.00 WHERE [Code] = 'zmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kde', 'Makonde', NULL, 398.70) END +VALUES ('kde', 'Makonde', NULL, 4000.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makonde', [Definition] = NULL, [SortOrder] = 398.70 WHERE [Code] = 'kde' END +SET [Description] = 'Makonde', [Definition] = NULL, [SortOrder] = 4000.00 WHERE [Code] = 'kde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xak', 'Maku', NULL, 398.80) END +VALUES ('xak', 'Maku', NULL, 4001.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maku', [Definition] = NULL, [SortOrder] = 398.80 WHERE [Code] = 'xak' END +SET [Description] = 'Maku', [Definition] = NULL, [SortOrder] = 4001.00 WHERE [Code] = 'xak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lva', 'Maku''a', NULL, 398.90) END +VALUES ('lva', 'Maku''a', NULL, 4002.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maku''a', [Definition] = NULL, [SortOrder] = 398.90 WHERE [Code] = 'lva' END +SET [Description] = 'Maku''a', [Definition] = NULL, [SortOrder] = 4002.00 WHERE [Code] = 'lva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpu', 'Makuráp', NULL, 399.00) END +VALUES ('mpu', 'Makuráp', NULL, 4003.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makuráp', [Definition] = NULL, [SortOrder] = 399.00 WHERE [Code] = 'mpu' END +SET [Description] = 'Makuráp', [Definition] = NULL, [SortOrder] = 4003.00 WHERE [Code] = 'mpu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmn', 'Makuri Naga', NULL, 399.10) END +VALUES ('jmn', 'Makuri Naga', NULL, 4004.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makuri Naga', [Definition] = NULL, [SortOrder] = 399.10 WHERE [Code] = 'jmn' END +SET [Description] = 'Makuri Naga', [Definition] = NULL, [SortOrder] = 4004.00 WHERE [Code] = 'jmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymk', 'Makwe', NULL, 399.20) END +VALUES ('ymk', 'Makwe', NULL, 4005.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makwe', [Definition] = NULL, [SortOrder] = 399.20 WHERE [Code] = 'ymk' END +SET [Description] = 'Makwe', [Definition] = NULL, [SortOrder] = 4005.00 WHERE [Code] = 'ymk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umn', 'Makyan Naga', NULL, 399.30) END +VALUES ('umn', 'Makyan Naga', NULL, 4006.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Makyan Naga', [Definition] = NULL, [SortOrder] = 399.30 WHERE [Code] = 'umn' END +SET [Description] = 'Makyan Naga', [Definition] = NULL, [SortOrder] = 4006.00 WHERE [Code] = 'umn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlf', 'Mal', NULL, 399.40) END +VALUES ('mlf', 'Mal', NULL, 4007.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mal', [Definition] = NULL, [SortOrder] = 399.40 WHERE [Code] = 'mlf' END +SET [Description] = 'Mal', [Definition] = NULL, [SortOrder] = 4007.00 WHERE [Code] = 'mlf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkb', 'Mal Paharia', NULL, 399.50) END +VALUES ('mkb', 'Mal Paharia', NULL, 4008.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mal Paharia', [Definition] = NULL, [SortOrder] = 399.50 WHERE [Code] = 'mkb' END +SET [Description] = 'Mal Paharia', [Definition] = NULL, [SortOrder] = 4008.00 WHERE [Code] = 'mkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruy', 'Mala (Nigeria)', NULL, 399.60) END +VALUES ('ruy', 'Mala (Nigeria)', NULL, 4009.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mala (Nigeria)', [Definition] = NULL, [SortOrder] = 399.60 WHERE [Code] = 'ruy' END +SET [Description] = 'Mala (Nigeria)', [Definition] = NULL, [SortOrder] = 4009.00 WHERE [Code] = 'ruy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ped') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ped', 'Mala (Papua New Guinea)', NULL, 399.70) END +VALUES ('ped', 'Mala (Papua New Guinea)', NULL, 4010.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mala (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 399.70 WHERE [Code] = 'ped' END +SET [Description] = 'Mala (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 4010.00 WHERE [Code] = 'ped' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ima') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ima', 'Mala Malasar', NULL, 399.80) END +VALUES ('ima', 'Mala Malasar', NULL, 4011.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mala Malasar', [Definition] = NULL, [SortOrder] = 399.80 WHERE [Code] = 'ima' END +SET [Description] = 'Mala Malasar', [Definition] = NULL, [SortOrder] = 4011.00 WHERE [Code] = 'ima' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccm', 'Malaccan Creole Malay', NULL, 399.90) END +VALUES ('ccm', 'Malaccan Creole Malay', NULL, 4012.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaccan Creole Malay', [Definition] = NULL, [SortOrder] = 399.90 WHERE [Code] = 'ccm' END +SET [Description] = 'Malaccan Creole Malay', [Definition] = NULL, [SortOrder] = 4012.00 WHERE [Code] = 'ccm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcm', 'Malaccan Creole Portuguese', NULL, 400.00) END +VALUES ('mcm', 'Malaccan Creole Portuguese', NULL, 4013.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaccan Creole Portuguese', [Definition] = NULL, [SortOrder] = 400.00 WHERE [Code] = 'mcm' END +SET [Description] = 'Malaccan Creole Portuguese', [Definition] = NULL, [SortOrder] = 4013.00 WHERE [Code] = 'mcm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlg', 'Malagasy', NULL, 400.10) END +VALUES ('mlg', 'Malagasy', NULL, 4014.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malagasy', [Definition] = NULL, [SortOrder] = 400.10 WHERE [Code] = 'mlg' END +SET [Description] = 'Malagasy', [Definition] = NULL, [SortOrder] = 4014.00 WHERE [Code] = 'mlg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpb', 'Malak Malak', NULL, 400.20) END +VALUES ('mpb', 'Malak Malak', NULL, 4015.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malak Malak', [Definition] = NULL, [SortOrder] = 400.20 WHERE [Code] = 'mpb' END +SET [Description] = 'Malak Malak', [Definition] = NULL, [SortOrder] = 4015.00 WHERE [Code] = 'mpb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmt', 'Malalamai', NULL, 400.30) END +VALUES ('mmt', 'Malalamai', NULL, 4016.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malalamai', [Definition] = NULL, [SortOrder] = 400.30 WHERE [Code] = 'mmt' END +SET [Description] = 'Malalamai', [Definition] = NULL, [SortOrder] = 4016.00 WHERE [Code] = 'mmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mln', 'Malango', NULL, 400.40) END +VALUES ('mln', 'Malango', NULL, 4017.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malango', [Definition] = NULL, [SortOrder] = 400.40 WHERE [Code] = 'mln' END +SET [Description] = 'Malango', [Definition] = NULL, [SortOrder] = 4017.00 WHERE [Code] = 'mln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjo', 'Malankuravan', NULL, 400.50) END +VALUES ('mjo', 'Malankuravan', NULL, 4018.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malankuravan', [Definition] = NULL, [SortOrder] = 400.50 WHERE [Code] = 'mjo' END +SET [Description] = 'Malankuravan', [Definition] = NULL, [SortOrder] = 4018.00 WHERE [Code] = 'mjo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjp', 'Malapandaram', NULL, 400.60) END +VALUES ('mjp', 'Malapandaram', NULL, 4019.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malapandaram', [Definition] = NULL, [SortOrder] = 400.60 WHERE [Code] = 'mjp' END +SET [Description] = 'Malapandaram', [Definition] = NULL, [SortOrder] = 4019.00 WHERE [Code] = 'mjp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjq', 'Malaryan', NULL, 400.70) END +VALUES ('mjq', 'Malaryan', NULL, 4020.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaryan', [Definition] = NULL, [SortOrder] = 400.70 WHERE [Code] = 'mjq' END +SET [Description] = 'Malaryan', [Definition] = NULL, [SortOrder] = 4020.00 WHERE [Code] = 'mjq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkr', 'Malas', NULL, 400.80) END +VALUES ('mkr', 'Malas', NULL, 4021.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malas', [Definition] = NULL, [SortOrder] = 400.80 WHERE [Code] = 'mkr' END +SET [Description] = 'Malas', [Definition] = NULL, [SortOrder] = 4021.00 WHERE [Code] = 'mkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymr', 'Malasar', NULL, 400.90) END +VALUES ('ymr', 'Malasar', NULL, 4022.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malasar', [Definition] = NULL, [SortOrder] = 400.90 WHERE [Code] = 'ymr' END +SET [Description] = 'Malasar', [Definition] = NULL, [SortOrder] = 4022.00 WHERE [Code] = 'ymr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjr', 'Malavedan', NULL, 401.00) END +VALUES ('mjr', 'Malavedan', NULL, 4023.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malavedan', [Definition] = NULL, [SortOrder] = 401.00 WHERE [Code] = 'mjr' END +SET [Description] = 'Malavedan', [Definition] = NULL, [SortOrder] = 4023.00 WHERE [Code] = 'mjr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lon', 'Malawi Lomwe', NULL, 401.10) END +VALUES ('lon', 'Malawi Lomwe', NULL, 4024.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malawi Lomwe', [Definition] = NULL, [SortOrder] = 401.10 WHERE [Code] = 'lon' END +SET [Description] = 'Malawi Lomwe', [Definition] = NULL, [SortOrder] = 4024.00 WHERE [Code] = 'lon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swk', 'Malawi Sena', NULL, 401.20) END +VALUES ('swk', 'Malawi Sena', NULL, 4025.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malawi Sena', [Definition] = NULL, [SortOrder] = 401.20 WHERE [Code] = 'swk' END +SET [Description] = 'Malawi Sena', [Definition] = NULL, [SortOrder] = 4025.00 WHERE [Code] = 'swk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lws', 'Malawian Sign Language', NULL, 401.30) END +VALUES ('lws', 'Malawian Sign Language', NULL, 4026.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malawian Sign Language', [Definition] = NULL, [SortOrder] = 401.30 WHERE [Code] = 'lws' END +SET [Description] = 'Malawian Sign Language', [Definition] = NULL, [SortOrder] = 4026.00 WHERE [Code] = 'lws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zlm', 'Malay (individual language)', NULL, 401.40) END +VALUES ('zlm', 'Malay (individual language)', NULL, 4027.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malay (individual language)', [Definition] = NULL, [SortOrder] = 401.40 WHERE [Code] = 'zlm' END +SET [Description] = 'Malay (individual language)', [Definition] = NULL, [SortOrder] = 4027.00 WHERE [Code] = 'zlm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msa', 'Malay (macrolanguage)', NULL, 401.50) END +VALUES ('msa', 'Malay (macrolanguage)', NULL, 4028.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malay (macrolanguage)', [Definition] = NULL, [SortOrder] = 401.50 WHERE [Code] = 'msa' END +SET [Description] = 'Malay (macrolanguage)', [Definition] = NULL, [SortOrder] = 4028.00 WHERE [Code] = 'msa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mal', 'Malayalam', NULL, 401.60) END +VALUES ('mal', 'Malayalam', NULL, 4029.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malayalam', [Definition] = NULL, [SortOrder] = 401.60 WHERE [Code] = 'mal' END +SET [Description] = 'Malayalam', [Definition] = NULL, [SortOrder] = 4029.00 WHERE [Code] = 'mal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xdy', 'Malayic Dayak', NULL, 401.70) END +VALUES ('xdy', 'Malayic Dayak', NULL, 4030.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malayic Dayak', [Definition] = NULL, [SortOrder] = 401.70 WHERE [Code] = 'xdy' END +SET [Description] = 'Malayic Dayak', [Definition] = NULL, [SortOrder] = 4030.00 WHERE [Code] = 'xdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlz', 'Malaynon', NULL, 401.80) END +VALUES ('mlz', 'Malaynon', NULL, 4031.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaynon', [Definition] = NULL, [SortOrder] = 401.80 WHERE [Code] = 'mlz' END +SET [Description] = 'Malaynon', [Definition] = NULL, [SortOrder] = 4031.00 WHERE [Code] = 'mlz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbp', 'Malayo', NULL, 401.90) END +VALUES ('mbp', 'Malayo', NULL, 4032.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malayo', [Definition] = NULL, [SortOrder] = 401.90 WHERE [Code] = 'mbp' END +SET [Description] = 'Malayo', [Definition] = NULL, [SortOrder] = 4032.00 WHERE [Code] = 'mbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xml', 'Malaysian Sign Language', NULL, 402.00) END +VALUES ('xml', 'Malaysian Sign Language', NULL, 4033.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malaysian Sign Language', [Definition] = NULL, [SortOrder] = 402.00 WHERE [Code] = 'xml' END +SET [Description] = 'Malaysian Sign Language', [Definition] = NULL, [SortOrder] = 4033.00 WHERE [Code] = 'xml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfo', 'Malba Birifor', NULL, 402.10) END +VALUES ('bfo', 'Malba Birifor', NULL, 4034.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malba Birifor', [Definition] = NULL, [SortOrder] = 402.10 WHERE [Code] = 'bfo' END +SET [Description] = 'Malba Birifor', [Definition] = NULL, [SortOrder] = 4034.00 WHERE [Code] = 'bfo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdy', 'Male (Ethiopia)', NULL, 402.20) END +VALUES ('mdy', 'Male (Ethiopia)', NULL, 4035.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Male (Ethiopia)', [Definition] = NULL, [SortOrder] = 402.20 WHERE [Code] = 'mdy' END +SET [Description] = 'Male (Ethiopia)', [Definition] = NULL, [SortOrder] = 4035.00 WHERE [Code] = 'mdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdc', 'Male (Papua New Guinea)', NULL, 402.30) END +VALUES ('mdc', 'Male (Papua New Guinea)', NULL, 4036.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Male (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 402.30 WHERE [Code] = 'mdc' END +SET [Description] = 'Male (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 4036.00 WHERE [Code] = 'mdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pqm', 'Malecite-Passamaquoddy', NULL, 402.40) END +VALUES ('pqm', 'Malecite-Passamaquoddy', NULL, 4037.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malecite-Passamaquoddy', [Definition] = NULL, [SortOrder] = 402.40 WHERE [Code] = 'pqm' END +SET [Description] = 'Malecite-Passamaquoddy', [Definition] = NULL, [SortOrder] = 4037.00 WHERE [Code] = 'pqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gut', 'Maléku Jaíka', NULL, 402.50) END +VALUES ('gut', 'Maléku Jaíka', NULL, 4038.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maléku Jaíka', [Definition] = NULL, [SortOrder] = 402.50 WHERE [Code] = 'gut' END +SET [Description] = 'Maléku Jaíka', [Definition] = NULL, [SortOrder] = 4038.00 WHERE [Code] = 'gut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkt', 'Maleng', NULL, 402.60) END +VALUES ('pkt', 'Maleng', NULL, 4039.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maleng', [Definition] = NULL, [SortOrder] = 402.60 WHERE [Code] = 'pkt' END +SET [Description] = 'Maleng', [Definition] = NULL, [SortOrder] = 4039.00 WHERE [Code] = 'pkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgl', 'Maleu-Kilenge', NULL, 402.70) END +VALUES ('mgl', 'Maleu-Kilenge', NULL, 4040.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maleu-Kilenge', [Definition] = NULL, [SortOrder] = 402.70 WHERE [Code] = 'mgl' END +SET [Description] = 'Maleu-Kilenge', [Definition] = NULL, [SortOrder] = 4040.00 WHERE [Code] = 'mgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlx', 'Malfaxal', NULL, 402.80) END +VALUES ('mlx', 'Malfaxal', NULL, 4041.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malfaxal', [Definition] = NULL, [SortOrder] = 402.80 WHERE [Code] = 'mlx' END +SET [Description] = 'Malfaxal', [Definition] = NULL, [SortOrder] = 4041.00 WHERE [Code] = 'mlx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vml', 'Malgana', NULL, 402.90) END +VALUES ('vml', 'Malgana', NULL, 4042.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malgana', [Definition] = NULL, [SortOrder] = 402.90 WHERE [Code] = 'vml' END +SET [Description] = 'Malgana', [Definition] = NULL, [SortOrder] = 4042.00 WHERE [Code] = 'vml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxf', 'Malgbe', NULL, 403.00) END +VALUES ('mxf', 'Malgbe', NULL, 4043.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malgbe', [Definition] = NULL, [SortOrder] = 403.00 WHERE [Code] = 'mxf' END +SET [Description] = 'Malgbe', [Definition] = NULL, [SortOrder] = 4043.00 WHERE [Code] = 'mxf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gcc', 'Mali', NULL, 403.10) END +VALUES ('gcc', 'Mali', NULL, 4044.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mali', [Definition] = NULL, [SortOrder] = 403.10 WHERE [Code] = 'gcc' END +SET [Description] = 'Mali', [Definition] = NULL, [SortOrder] = 4044.00 WHERE [Code] = 'gcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgq', 'Malila', NULL, 403.20) END +VALUES ('mgq', 'Malila', NULL, 4045.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malila', [Definition] = NULL, [SortOrder] = 403.20 WHERE [Code] = 'mgq' END +SET [Description] = 'Malila', [Definition] = NULL, [SortOrder] = 4045.00 WHERE [Code] = 'mgq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzd', 'Malimba', NULL, 403.30) END +VALUES ('mzd', 'Malimba', NULL, 4046.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malimba', [Definition] = NULL, [SortOrder] = 403.30 WHERE [Code] = 'mzd' END +SET [Description] = 'Malimba', [Definition] = NULL, [SortOrder] = 4046.00 WHERE [Code] = 'mzd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mli', 'Malimpung', NULL, 403.40) END +VALUES ('mli', 'Malimpung', NULL, 4047.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malimpung', [Definition] = NULL, [SortOrder] = 403.40 WHERE [Code] = 'mli' END +SET [Description] = 'Malimpung', [Definition] = NULL, [SortOrder] = 4047.00 WHERE [Code] = 'mli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcf', 'Malinaltepec Me''phaa', NULL, 403.50) END +VALUES ('tcf', 'Malinaltepec Me''phaa', NULL, 4048.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malinaltepec Me''phaa', [Definition] = NULL, [SortOrder] = 403.50 WHERE [Code] = 'tcf' END +SET [Description] = 'Malinaltepec Me''phaa', [Definition] = NULL, [SortOrder] = 4048.00 WHERE [Code] = 'tcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mla', 'Malo', NULL, 403.60) END +VALUES ('mla', 'Malo', NULL, 4049.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malo', [Definition] = NULL, [SortOrder] = 403.60 WHERE [Code] = 'mla' END +SET [Description] = 'Malo', [Definition] = NULL, [SortOrder] = 4049.00 WHERE [Code] = 'mla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbk', 'Malol', NULL, 403.70) END +VALUES ('mbk', 'Malol', NULL, 4050.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malol', [Definition] = NULL, [SortOrder] = 403.70 WHERE [Code] = 'mbk' END +SET [Description] = 'Malol', [Definition] = NULL, [SortOrder] = 4050.00 WHERE [Code] = 'mbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlt', 'Maltese', NULL, 403.80) END +VALUES ('mlt', 'Maltese', NULL, 4051.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maltese', [Definition] = NULL, [SortOrder] = 403.80 WHERE [Code] = 'mlt' END +SET [Description] = 'Maltese', [Definition] = NULL, [SortOrder] = 4051.00 WHERE [Code] = 'mlt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdl', 'Maltese Sign Language', NULL, 403.90) END +VALUES ('mdl', 'Maltese Sign Language', NULL, 4052.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maltese Sign Language', [Definition] = NULL, [SortOrder] = 403.90 WHERE [Code] = 'mdl' END +SET [Description] = 'Maltese Sign Language', [Definition] = NULL, [SortOrder] = 4052.00 WHERE [Code] = 'mdl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mll', 'Malua Bay', NULL, 404.00) END +VALUES ('mll', 'Malua Bay', NULL, 4053.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malua Bay', [Definition] = NULL, [SortOrder] = 404.00 WHERE [Code] = 'mll' END +SET [Description] = 'Malua Bay', [Definition] = NULL, [SortOrder] = 4053.00 WHERE [Code] = 'mll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mup', 'Malvi', NULL, 404.10) END +VALUES ('mup', 'Malvi', NULL, 4054.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malvi', [Definition] = NULL, [SortOrder] = 404.10 WHERE [Code] = 'mup' END +SET [Description] = 'Malvi', [Definition] = NULL, [SortOrder] = 4054.00 WHERE [Code] = 'mup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yga', 'Malyangapa', NULL, 404.20) END +VALUES ('yga', 'Malyangapa', NULL, 4055.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Malyangapa', [Definition] = NULL, [SortOrder] = 404.20 WHERE [Code] = 'yga' END +SET [Description] = 'Malyangapa', [Definition] = NULL, [SortOrder] = 4055.00 WHERE [Code] = 'yga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mam', 'Mam', NULL, 404.30) END +VALUES ('mam', 'Mam', NULL, 4056.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mam', [Definition] = NULL, [SortOrder] = 404.30 WHERE [Code] = 'mam' END +SET [Description] = 'Mam', [Definition] = NULL, [SortOrder] = 4056.00 WHERE [Code] = 'mam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mma', 'Mama', NULL, 404.40) END +VALUES ('mma', 'Mama', NULL, 4057.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mama', [Definition] = NULL, [SortOrder] = 404.40 WHERE [Code] = 'mma' END +SET [Description] = 'Mama', [Definition] = NULL, [SortOrder] = 4057.00 WHERE [Code] = 'mma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhf', 'Mamaa', NULL, 404.50) END +VALUES ('mhf', 'Mamaa', NULL, 4058.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamaa', [Definition] = NULL, [SortOrder] = 404.50 WHERE [Code] = 'mhf' END +SET [Description] = 'Mamaa', [Definition] = NULL, [SortOrder] = 4058.00 WHERE [Code] = 'mhf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmd', 'Mamaindé', NULL, 404.60) END +VALUES ('wmd', 'Mamaindé', NULL, 4059.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamaindé', [Definition] = NULL, [SortOrder] = 404.60 WHERE [Code] = 'wmd' END +SET [Description] = 'Mamaindé', [Definition] = NULL, [SortOrder] = 4059.00 WHERE [Code] = 'wmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmn', 'Mamanwa', NULL, 404.70) END +VALUES ('mmn', 'Mamanwa', NULL, 4060.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamanwa', [Definition] = NULL, [SortOrder] = 404.70 WHERE [Code] = 'mmn' END +SET [Description] = 'Mamanwa', [Definition] = NULL, [SortOrder] = 4060.00 WHERE [Code] = 'mmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myk', 'Mamara Senoufo', NULL, 404.80) END +VALUES ('myk', 'Mamara Senoufo', NULL, 4061.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamara Senoufo', [Definition] = NULL, [SortOrder] = 404.80 WHERE [Code] = 'myk' END +SET [Description] = 'Mamara Senoufo', [Definition] = NULL, [SortOrder] = 4061.00 WHERE [Code] = 'myk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqj', 'Mamasa', NULL, 404.90) END +VALUES ('mqj', 'Mamasa', NULL, 4062.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamasa', [Definition] = NULL, [SortOrder] = 404.90 WHERE [Code] = 'mqj' END +SET [Description] = 'Mamasa', [Definition] = NULL, [SortOrder] = 4062.00 WHERE [Code] = 'mqj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgm', 'Mambae', NULL, 405.00) END +VALUES ('mgm', 'Mambae', NULL, 4063.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mambae', [Definition] = NULL, [SortOrder] = 405.00 WHERE [Code] = 'mgm' END +SET [Description] = 'Mambae', [Definition] = NULL, [SortOrder] = 4063.00 WHERE [Code] = 'mgm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcs', 'Mambai', NULL, 405.10) END +VALUES ('mcs', 'Mambai', NULL, 4064.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mambai', [Definition] = NULL, [SortOrder] = 405.10 WHERE [Code] = 'mcs' END +SET [Description] = 'Mambai', [Definition] = NULL, [SortOrder] = 4064.00 WHERE [Code] = 'mcs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvd', 'Mamboru', NULL, 405.20) END +VALUES ('mvd', 'Mamboru', NULL, 4065.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamboru', [Definition] = NULL, [SortOrder] = 405.20 WHERE [Code] = 'mvd' END +SET [Description] = 'Mamboru', [Definition] = NULL, [SortOrder] = 4065.00 WHERE [Code] = 'mvd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgr', 'Mambwe-Lungu', NULL, 405.30) END +VALUES ('mgr', 'Mambwe-Lungu', NULL, 4066.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mambwe-Lungu', [Definition] = NULL, [SortOrder] = 405.30 WHERE [Code] = 'mgr' END +SET [Description] = 'Mambwe-Lungu', [Definition] = NULL, [SortOrder] = 4066.00 WHERE [Code] = 'mgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maw', 'Mampruli', NULL, 405.40) END +VALUES ('maw', 'Mampruli', NULL, 4067.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mampruli', [Definition] = NULL, [SortOrder] = 405.40 WHERE [Code] = 'maw' END +SET [Description] = 'Mampruli', [Definition] = NULL, [SortOrder] = 4067.00 WHERE [Code] = 'maw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqx', 'Mamuju', NULL, 405.50) END +VALUES ('mqx', 'Mamuju', NULL, 4068.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamuju', [Definition] = NULL, [SortOrder] = 405.50 WHERE [Code] = 'mqx' END +SET [Description] = 'Mamuju', [Definition] = NULL, [SortOrder] = 4068.00 WHERE [Code] = 'mqx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emm', 'Mamulique', NULL, 405.60) END +VALUES ('emm', 'Mamulique', NULL, 4069.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamulique', [Definition] = NULL, [SortOrder] = 405.60 WHERE [Code] = 'emm' END +SET [Description] = 'Mamulique', [Definition] = NULL, [SortOrder] = 4069.00 WHERE [Code] = 'emm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdf', 'Mamusi', NULL, 405.70) END +VALUES ('kdf', 'Mamusi', NULL, 4070.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamusi', [Definition] = NULL, [SortOrder] = 405.70 WHERE [Code] = 'kdf' END +SET [Description] = 'Mamusi', [Definition] = NULL, [SortOrder] = 4070.00 WHERE [Code] = 'kdf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdi', 'Mamvu', NULL, 405.80) END +VALUES ('mdi', 'Mamvu', NULL, 4071.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mamvu', [Definition] = NULL, [SortOrder] = 405.80 WHERE [Code] = 'mdi' END +SET [Description] = 'Mamvu', [Definition] = NULL, [SortOrder] = 4071.00 WHERE [Code] = 'mdi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mml', 'Man Met', NULL, 405.90) END +VALUES ('mml', 'Man Met', NULL, 4072.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Man Met', [Definition] = NULL, [SortOrder] = 405.90 WHERE [Code] = 'mml' END +SET [Description] = 'Man Met', [Definition] = NULL, [SortOrder] = 4072.00 WHERE [Code] = 'mml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmm', 'Manado Malay', NULL, 406.00) END +VALUES ('xmm', 'Manado Malay', NULL, 4073.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manado Malay', [Definition] = NULL, [SortOrder] = 406.00 WHERE [Code] = 'xmm' END +SET [Description] = 'Manado Malay', [Definition] = NULL, [SortOrder] = 4073.00 WHERE [Code] = 'xmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mva', 'Manam', NULL, 406.10) END +VALUES ('mva', 'Manam', NULL, 4074.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manam', [Definition] = NULL, [SortOrder] = 406.10 WHERE [Code] = 'mva' END +SET [Description] = 'Manam', [Definition] = NULL, [SortOrder] = 4074.00 WHERE [Code] = 'mva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mle', 'Manambu', NULL, 406.20) END +VALUES ('mle', 'Manambu', NULL, 4075.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manambu', [Definition] = NULL, [SortOrder] = 406.20 WHERE [Code] = 'mle' END +SET [Description] = 'Manambu', [Definition] = NULL, [SortOrder] = 4075.00 WHERE [Code] = 'mle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmm', 'Manangba', NULL, 406.30) END +VALUES ('nmm', 'Manangba', NULL, 4076.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manangba', [Definition] = NULL, [SortOrder] = 406.30 WHERE [Code] = 'nmm' END +SET [Description] = 'Manangba', [Definition] = NULL, [SortOrder] = 4076.00 WHERE [Code] = 'nmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'znk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('znk', 'Manangkari', NULL, 406.40) END +VALUES ('znk', 'Manangkari', NULL, 4077.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manangkari', [Definition] = NULL, [SortOrder] = 406.40 WHERE [Code] = 'znk' END +SET [Description] = 'Manangkari', [Definition] = NULL, [SortOrder] = 4077.00 WHERE [Code] = 'znk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnc', 'Manchu', NULL, 406.50) END +VALUES ('mnc', 'Manchu', NULL, 4078.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manchu', [Definition] = NULL, [SortOrder] = 406.50 WHERE [Code] = 'mnc' END +SET [Description] = 'Manchu', [Definition] = NULL, [SortOrder] = 4078.00 WHERE [Code] = 'mnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zma', 'Manda (Australia)', NULL, 406.60) END +VALUES ('zma', 'Manda (Australia)', NULL, 4079.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manda (Australia)', [Definition] = NULL, [SortOrder] = 406.60 WHERE [Code] = 'zma' END +SET [Description] = 'Manda (Australia)', [Definition] = NULL, [SortOrder] = 4079.00 WHERE [Code] = 'zma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mha', 'Manda (India)', NULL, 406.70) END +VALUES ('mha', 'Manda (India)', NULL, 4080.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manda (India)', [Definition] = NULL, [SortOrder] = 406.70 WHERE [Code] = 'mha' END +SET [Description] = 'Manda (India)', [Definition] = NULL, [SortOrder] = 4080.00 WHERE [Code] = 'mha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgs', 'Manda (Tanzania)', NULL, 406.80) END +VALUES ('mgs', 'Manda (Tanzania)', NULL, 4081.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manda (Tanzania)', [Definition] = NULL, [SortOrder] = 406.80 WHERE [Code] = 'mgs' END +SET [Description] = 'Manda (Tanzania)', [Definition] = NULL, [SortOrder] = 4081.00 WHERE [Code] = 'mgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mht', 'Mandahuaca', NULL, 406.90) END +VALUES ('mht', 'Mandahuaca', NULL, 4082.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandahuaca', [Definition] = NULL, [SortOrder] = 406.90 WHERE [Code] = 'mht' END +SET [Description] = 'Mandahuaca', [Definition] = NULL, [SortOrder] = 4082.00 WHERE [Code] = 'mht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mid', 'Mandaic', NULL, 407.00) END +VALUES ('mid', 'Mandaic', NULL, 4083.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandaic', [Definition] = NULL, [SortOrder] = 407.00 WHERE [Code] = 'mid' END +SET [Description] = 'Mandaic', [Definition] = NULL, [SortOrder] = 4083.00 WHERE [Code] = 'mid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhq', 'Mandan', NULL, 407.10) END +VALUES ('mhq', 'Mandan', NULL, 4084.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandan', [Definition] = NULL, [SortOrder] = 407.10 WHERE [Code] = 'mhq' END +SET [Description] = 'Mandan', [Definition] = NULL, [SortOrder] = 4084.00 WHERE [Code] = 'mhq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmk', 'Mandandanyi', NULL, 407.20) END +VALUES ('zmk', 'Mandandanyi', NULL, 4085.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandandanyi', [Definition] = NULL, [SortOrder] = 407.20 WHERE [Code] = 'zmk' END +SET [Description] = 'Mandandanyi', [Definition] = NULL, [SortOrder] = 4085.00 WHERE [Code] = 'zmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdr', 'Mandar', NULL, 407.30) END +VALUES ('mdr', 'Mandar', NULL, 4086.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandar', [Definition] = NULL, [SortOrder] = 407.30 WHERE [Code] = 'mdr' END +SET [Description] = 'Mandar', [Definition] = NULL, [SortOrder] = 4086.00 WHERE [Code] = 'mdr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbf', 'Mandara', NULL, 407.40) END +VALUES ('tbf', 'Mandara', NULL, 4087.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandara', [Definition] = NULL, [SortOrder] = 407.40 WHERE [Code] = 'tbf' END +SET [Description] = 'Mandara', [Definition] = NULL, [SortOrder] = 4087.00 WHERE [Code] = 'tbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqu', 'Mandari', NULL, 407.50) END +VALUES ('mqu', 'Mandari', NULL, 4088.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandari', [Definition] = NULL, [SortOrder] = 407.50 WHERE [Code] = 'mqu' END +SET [Description] = 'Mandari', [Definition] = NULL, [SortOrder] = 4088.00 WHERE [Code] = 'mqu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmn', 'Mandarin Chinese', NULL, 407.60) END +VALUES ('cmn', 'Mandarin Chinese', NULL, 4089.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandarin Chinese', [Definition] = NULL, [SortOrder] = 407.60 WHERE [Code] = 'cmn' END +SET [Description] = 'Mandarin Chinese', [Definition] = NULL, [SortOrder] = 4089.00 WHERE [Code] = 'cmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mry', 'Mandaya', NULL, 407.70) END +VALUES ('mry', 'Mandaya', NULL, 4090.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandaya', [Definition] = NULL, [SortOrder] = 407.70 WHERE [Code] = 'mry' END +SET [Description] = 'Mandaya', [Definition] = NULL, [SortOrder] = 4090.00 WHERE [Code] = 'mry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjl', 'Mandeali', NULL, 407.80) END +VALUES ('mjl', 'Mandeali', NULL, 4091.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandeali', [Definition] = NULL, [SortOrder] = 407.80 WHERE [Code] = 'mjl' END +SET [Description] = 'Mandeali', [Definition] = NULL, [SortOrder] = 4091.00 WHERE [Code] = 'mjl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqr', 'Mander', NULL, 407.90) END +VALUES ('mqr', 'Mander', NULL, 4092.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mander', [Definition] = NULL, [SortOrder] = 407.90 WHERE [Code] = 'mqr' END +SET [Description] = 'Mander', [Definition] = NULL, [SortOrder] = 4092.00 WHERE [Code] = 'mqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'man') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('man', 'Mandingo', NULL, 408.00) END +VALUES ('man', 'Mandingo', NULL, 4093.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandingo', [Definition] = NULL, [SortOrder] = 408.00 WHERE [Code] = 'man' END +SET [Description] = 'Mandingo', [Definition] = NULL, [SortOrder] = 4093.00 WHERE [Code] = 'man' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnk', 'Mandinka', NULL, 408.10) END +VALUES ('mnk', 'Mandinka', NULL, 4094.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandinka', [Definition] = NULL, [SortOrder] = 408.10 WHERE [Code] = 'mnk' END +SET [Description] = 'Mandinka', [Definition] = NULL, [SortOrder] = 4094.00 WHERE [Code] = 'mnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfv', 'Mandjak', NULL, 408.20) END +VALUES ('mfv', 'Mandjak', NULL, 4095.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandjak', [Definition] = NULL, [SortOrder] = 408.20 WHERE [Code] = 'mfv' END +SET [Description] = 'Mandjak', [Definition] = NULL, [SortOrder] = 4095.00 WHERE [Code] = 'mfv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aax', 'Mandobo Atas', NULL, 408.30) END +VALUES ('aax', 'Mandobo Atas', NULL, 4096.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandobo Atas', [Definition] = NULL, [SortOrder] = 408.30 WHERE [Code] = 'aax' END +SET [Description] = 'Mandobo Atas', [Definition] = NULL, [SortOrder] = 4096.00 WHERE [Code] = 'aax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwp', 'Mandobo Bawah', NULL, 408.40) END +VALUES ('bwp', 'Mandobo Bawah', NULL, 4097.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mandobo Bawah', [Definition] = NULL, [SortOrder] = 408.40 WHERE [Code] = 'bwp' END +SET [Description] = 'Mandobo Bawah', [Definition] = NULL, [SortOrder] = 4097.00 WHERE [Code] = 'bwp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jet', 'Manem', NULL, 408.50) END +VALUES ('jet', 'Manem', NULL, 4098.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manem', [Definition] = NULL, [SortOrder] = 408.50 WHERE [Code] = 'jet' END +SET [Description] = 'Manem', [Definition] = NULL, [SortOrder] = 4098.00 WHERE [Code] = 'jet' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zng', 'Mang', NULL, 408.60) END +VALUES ('zng', 'Mang', NULL, 4099.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mang', [Definition] = NULL, [SortOrder] = 408.60 WHERE [Code] = 'zng' END +SET [Description] = 'Mang', [Definition] = NULL, [SortOrder] = 4099.00 WHERE [Code] = 'zng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kby', 'Manga Kanuri', NULL, 408.70) END +VALUES ('kby', 'Manga Kanuri', NULL, 4100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manga Kanuri', [Definition] = NULL, [SortOrder] = 408.70 WHERE [Code] = 'kby' END +SET [Description] = 'Manga Kanuri', [Definition] = NULL, [SortOrder] = 4100.00 WHERE [Code] = 'kby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mem', 'Mangala', NULL, 408.80) END +VALUES ('mem', 'Mangala', NULL, 4101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangala', [Definition] = NULL, [SortOrder] = 408.80 WHERE [Code] = 'mem' END +SET [Description] = 'Mangala', [Definition] = NULL, [SortOrder] = 4101.00 WHERE [Code] = 'mem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrv', 'Mangareva', NULL, 408.90) END +VALUES ('mrv', 'Mangareva', NULL, 4102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangareva', [Definition] = NULL, [SortOrder] = 408.90 WHERE [Code] = 'mrv' END +SET [Description] = 'Mangareva', [Definition] = NULL, [SortOrder] = 4102.00 WHERE [Code] = 'mrv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpc', 'Mangarrayi', NULL, 409.00) END +VALUES ('mpc', 'Mangarrayi', NULL, 4103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangarrayi', [Definition] = NULL, [SortOrder] = 409.00 WHERE [Code] = 'mpc' END +SET [Description] = 'Mangarrayi', [Definition] = NULL, [SortOrder] = 4103.00 WHERE [Code] = 'mpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zns', 'Mangas', NULL, 409.10) END +VALUES ('zns', 'Mangas', NULL, 4104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangas', [Definition] = NULL, [SortOrder] = 409.10 WHERE [Code] = 'zns' END +SET [Description] = 'Mangas', [Definition] = NULL, [SortOrder] = 4104.00 WHERE [Code] = 'zns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myj', 'Mangayat', NULL, 409.20) END +VALUES ('myj', 'Mangayat', NULL, 4105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangayat', [Definition] = NULL, [SortOrder] = 409.20 WHERE [Code] = 'myj' END +SET [Description] = 'Mangayat', [Definition] = NULL, [SortOrder] = 4105.00 WHERE [Code] = 'myj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdj', 'Mangbetu', NULL, 409.30) END +VALUES ('mdj', 'Mangbetu', NULL, 4106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangbetu', [Definition] = NULL, [SortOrder] = 409.30 WHERE [Code] = 'mdj' END +SET [Description] = 'Mangbetu', [Definition] = NULL, [SortOrder] = 4106.00 WHERE [Code] = 'mdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdk', 'Mangbutu', NULL, 409.40) END +VALUES ('mdk', 'Mangbutu', NULL, 4107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangbutu', [Definition] = NULL, [SortOrder] = 409.40 WHERE [Code] = 'mdk' END +SET [Description] = 'Mangbutu', [Definition] = NULL, [SortOrder] = 4107.00 WHERE [Code] = 'mdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zme', 'Mangerr', NULL, 409.50) END +VALUES ('zme', 'Mangerr', NULL, 4108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangerr', [Definition] = NULL, [SortOrder] = 409.50 WHERE [Code] = 'zme' END +SET [Description] = 'Mangerr', [Definition] = NULL, [SortOrder] = 4108.00 WHERE [Code] = 'zme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmo', 'Mangga Buang', NULL, 409.60) END +VALUES ('mmo', 'Mangga Buang', NULL, 4109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangga Buang', [Definition] = NULL, [SortOrder] = 409.60 WHERE [Code] = 'mmo' END +SET [Description] = 'Mangga Buang', [Definition] = NULL, [SortOrder] = 4109.00 WHERE [Code] = 'mmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqy', 'Manggarai', NULL, 409.70) END +VALUES ('mqy', 'Manggarai', NULL, 4110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manggarai', [Definition] = NULL, [SortOrder] = 409.70 WHERE [Code] = 'mqy' END +SET [Description] = 'Manggarai', [Definition] = NULL, [SortOrder] = 4110.00 WHERE [Code] = 'mqy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mge', 'Mango', NULL, 409.80) END +VALUES ('mge', 'Mango', NULL, 4111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mango', [Definition] = NULL, [SortOrder] = 409.80 WHERE [Code] = 'mge' END +SET [Description] = 'Mango', [Definition] = NULL, [SortOrder] = 4111.00 WHERE [Code] = 'mge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqc', 'Mangole', NULL, 409.90) END +VALUES ('mqc', 'Mangole', NULL, 4112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangole', [Definition] = NULL, [SortOrder] = 409.90 WHERE [Code] = 'mqc' END +SET [Description] = 'Mangole', [Definition] = NULL, [SortOrder] = 4112.00 WHERE [Code] = 'mqc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbh', 'Mangseng', NULL, 410.00) END +VALUES ('mbh', 'Mangseng', NULL, 4113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangseng', [Definition] = NULL, [SortOrder] = 410.00 WHERE [Code] = 'mbh' END +SET [Description] = 'Mangseng', [Definition] = NULL, [SortOrder] = 4113.00 WHERE [Code] = 'mbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mom', 'Mangue', NULL, 410.10) END +VALUES ('mom', 'Mangue', NULL, 4114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mangue', [Definition] = NULL, [SortOrder] = 410.10 WHERE [Code] = 'mom' END +SET [Description] = 'Mangue', [Definition] = NULL, [SortOrder] = 4114.00 WHERE [Code] = 'mom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmn', 'Manichaean Middle Persian', NULL, 410.20) END +VALUES ('xmn', 'Manichaean Middle Persian', NULL, 4115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manichaean Middle Persian', [Definition] = NULL, [SortOrder] = 410.20 WHERE [Code] = 'xmn' END +SET [Description] = 'Manichaean Middle Persian', [Definition] = NULL, [SortOrder] = 4115.00 WHERE [Code] = 'xmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abd', 'Manide', NULL, 410.30) END +VALUES ('abd', 'Manide', NULL, 4116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manide', [Definition] = NULL, [SortOrder] = 410.30 WHERE [Code] = 'abd' END +SET [Description] = 'Manide', [Definition] = NULL, [SortOrder] = 4116.00 WHERE [Code] = 'abd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnx', 'Manikion', NULL, 410.40) END +VALUES ('mnx', 'Manikion', NULL, 4117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manikion', [Definition] = NULL, [SortOrder] = 410.40 WHERE [Code] = 'mnx' END +SET [Description] = 'Manikion', [Definition] = NULL, [SortOrder] = 4117.00 WHERE [Code] = 'mnx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqp', 'Manipa', NULL, 410.50) END +VALUES ('mqp', 'Manipa', NULL, 4118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manipa', [Definition] = NULL, [SortOrder] = 410.50 WHERE [Code] = 'mqp' END +SET [Description] = 'Manipa', [Definition] = NULL, [SortOrder] = 4118.00 WHERE [Code] = 'mqp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mni', 'Manipuri', NULL, 410.60) END +VALUES ('mni', 'Manipuri', NULL, 4119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manipuri', [Definition] = NULL, [SortOrder] = 410.60 WHERE [Code] = 'mni' END +SET [Description] = 'Manipuri', [Definition] = NULL, [SortOrder] = 4119.00 WHERE [Code] = 'mni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knf', 'Mankanya', NULL, 410.70) END +VALUES ('knf', 'Mankanya', NULL, 4120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mankanya', [Definition] = NULL, [SortOrder] = 410.70 WHERE [Code] = 'knf' END +SET [Description] = 'Mankanya', [Definition] = NULL, [SortOrder] = 4120.00 WHERE [Code] = 'knf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlm', 'Mankiyali', NULL, 410.80) END +VALUES ('nlm', 'Mankiyali', NULL, 4121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mankiyali', [Definition] = NULL, [SortOrder] = 410.80 WHERE [Code] = 'nlm' END +SET [Description] = 'Mankiyali', [Definition] = NULL, [SortOrder] = 4121.00 WHERE [Code] = 'nlm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mju', 'Manna-Dora', NULL, 410.90) END +VALUES ('mju', 'Manna-Dora', NULL, 4122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manna-Dora', [Definition] = NULL, [SortOrder] = 410.90 WHERE [Code] = 'mju' END +SET [Description] = 'Manna-Dora', [Definition] = NULL, [SortOrder] = 4122.00 WHERE [Code] = 'mju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjv', 'Mannan', NULL, 411.00) END +VALUES ('mjv', 'Mannan', NULL, 4123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mannan', [Definition] = NULL, [SortOrder] = 411.00 WHERE [Code] = 'mjv' END +SET [Description] = 'Mannan', [Definition] = NULL, [SortOrder] = 4123.00 WHERE [Code] = 'mjv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mev', 'Mano', NULL, 411.10) END +VALUES ('mev', 'Mano', NULL, 4124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mano', [Definition] = NULL, [SortOrder] = 411.10 WHERE [Code] = 'mev' END +SET [Description] = 'Mano', [Definition] = NULL, [SortOrder] = 4124.00 WHERE [Code] = 'mev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woo', 'Manombai', NULL, 411.20) END +VALUES ('woo', 'Manombai', NULL, 4125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manombai', [Definition] = NULL, [SortOrder] = 411.20 WHERE [Code] = 'woo' END +SET [Description] = 'Manombai', [Definition] = NULL, [SortOrder] = 4125.00 WHERE [Code] = 'woo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msk', 'Mansaka', NULL, 411.30) END +VALUES ('msk', 'Mansaka', NULL, 4126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mansaka', [Definition] = NULL, [SortOrder] = 411.30 WHERE [Code] = 'msk' END +SET [Description] = 'Mansaka', [Definition] = NULL, [SortOrder] = 4126.00 WHERE [Code] = 'msk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mns', 'Mansi', NULL, 411.40) END +VALUES ('mns', 'Mansi', NULL, 4127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mansi', [Definition] = NULL, [SortOrder] = 411.40 WHERE [Code] = 'mns' END +SET [Description] = 'Mansi', [Definition] = NULL, [SortOrder] = 4127.00 WHERE [Code] = 'mns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msw', 'Mansoanka', NULL, 411.50) END +VALUES ('msw', 'Mansoanka', NULL, 4128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mansoanka', [Definition] = NULL, [SortOrder] = 411.50 WHERE [Code] = 'msw' END +SET [Description] = 'Mansoanka', [Definition] = NULL, [SortOrder] = 4128.00 WHERE [Code] = 'msw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myg', 'Manta', NULL, 411.60) END +VALUES ('myg', 'Manta', NULL, 4129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manta', [Definition] = NULL, [SortOrder] = 411.60 WHERE [Code] = 'myg' END +SET [Description] = 'Manta', [Definition] = NULL, [SortOrder] = 4129.00 WHERE [Code] = 'myg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nty', 'Mantsi', NULL, 411.70) END +VALUES ('nty', 'Mantsi', NULL, 4130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mantsi', [Definition] = NULL, [SortOrder] = 411.70 WHERE [Code] = 'nty' END +SET [Description] = 'Mantsi', [Definition] = NULL, [SortOrder] = 4130.00 WHERE [Code] = 'nty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxf', 'Manumanaw Karen', NULL, 411.80) END +VALUES ('kxf', 'Manumanaw Karen', NULL, 4131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manumanaw Karen', [Definition] = NULL, [SortOrder] = 411.80 WHERE [Code] = 'kxf' END +SET [Description] = 'Manumanaw Karen', [Definition] = NULL, [SortOrder] = 4131.00 WHERE [Code] = 'kxf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glv', 'Manx', NULL, 411.90) END +VALUES ('glv', 'Manx', NULL, 4132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manx', [Definition] = NULL, [SortOrder] = 411.90 WHERE [Code] = 'glv' END +SET [Description] = 'Manx', [Definition] = NULL, [SortOrder] = 4132.00 WHERE [Code] = 'glv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzj', 'Manya', NULL, 412.00) END +VALUES ('mzj', 'Manya', NULL, 4133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manya', [Definition] = NULL, [SortOrder] = 412.00 WHERE [Code] = 'mzj' END +SET [Description] = 'Manya', [Definition] = NULL, [SortOrder] = 4133.00 WHERE [Code] = 'mzj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mny', 'Manyawa', NULL, 412.10) END +VALUES ('mny', 'Manyawa', NULL, 4134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manyawa', [Definition] = NULL, [SortOrder] = 412.10 WHERE [Code] = 'mny' END +SET [Description] = 'Manyawa', [Definition] = NULL, [SortOrder] = 4134.00 WHERE [Code] = 'mny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxc', 'Manyika', NULL, 412.20) END +VALUES ('mxc', 'Manyika', NULL, 4135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manyika', [Definition] = NULL, [SortOrder] = 412.20 WHERE [Code] = 'mxc' END +SET [Description] = 'Manyika', [Definition] = NULL, [SortOrder] = 4135.00 WHERE [Code] = 'mxc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzv', 'Manza', NULL, 412.30) END +VALUES ('mzv', 'Manza', NULL, 4136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Manza', [Definition] = NULL, [SortOrder] = 412.30 WHERE [Code] = 'mzv' END +SET [Description] = 'Manza', [Definition] = NULL, [SortOrder] = 4136.00 WHERE [Code] = 'mzv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbi', 'Mao Naga', NULL, 412.40) END +VALUES ('nbi', 'Mao Naga', NULL, 4137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mao Naga', [Definition] = NULL, [SortOrder] = 412.40 WHERE [Code] = 'nbi' END +SET [Description] = 'Mao Naga', [Definition] = NULL, [SortOrder] = 4137.00 WHERE [Code] = 'nbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmd', 'Maonan', NULL, 412.50) END +VALUES ('mmd', 'Maonan', NULL, 4138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maonan', [Definition] = NULL, [SortOrder] = 412.50 WHERE [Code] = 'mmd' END +SET [Description] = 'Maonan', [Definition] = NULL, [SortOrder] = 4138.00 WHERE [Code] = 'mmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swb', 'Maore Comorian', NULL, 412.60) END +VALUES ('swb', 'Maore Comorian', NULL, 4139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maore Comorian', [Definition] = NULL, [SortOrder] = 412.60 WHERE [Code] = 'swb' END +SET [Description] = 'Maore Comorian', [Definition] = NULL, [SortOrder] = 4139.00 WHERE [Code] = 'swb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mri', 'Maori', NULL, 412.70) END +VALUES ('mri', 'Maori', NULL, 4140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maori', [Definition] = NULL, [SortOrder] = 412.70 WHERE [Code] = 'mri' END +SET [Description] = 'Maori', [Definition] = NULL, [SortOrder] = 4140.00 WHERE [Code] = 'mri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlh', 'Mape', NULL, 412.80) END +VALUES ('mlh', 'Mape', NULL, 4141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mape', [Definition] = NULL, [SortOrder] = 412.80 WHERE [Code] = 'mlh' END +SET [Description] = 'Mape', [Definition] = NULL, [SortOrder] = 4141.00 WHERE [Code] = 'mlh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnm', 'Mapena', NULL, 412.90) END +VALUES ('mnm', 'Mapena', NULL, 4142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapena', [Definition] = NULL, [SortOrder] = 412.90 WHERE [Code] = 'mnm' END +SET [Description] = 'Mapena', [Definition] = NULL, [SortOrder] = 4142.00 WHERE [Code] = 'mnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpy', 'Mapia', NULL, 413.00) END +VALUES ('mpy', 'Mapia', NULL, 4143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapia', [Definition] = NULL, [SortOrder] = 413.00 WHERE [Code] = 'mpy' END +SET [Description] = 'Mapia', [Definition] = NULL, [SortOrder] = 4143.00 WHERE [Code] = 'mpy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpw', 'Mapidian', NULL, 413.10) END +VALUES ('mpw', 'Mapidian', NULL, 4144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapidian', [Definition] = NULL, [SortOrder] = 413.10 WHERE [Code] = 'mpw' END +SET [Description] = 'Mapidian', [Definition] = NULL, [SortOrder] = 4144.00 WHERE [Code] = 'mpw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzh', 'Mapos Buang', NULL, 413.20) END +VALUES ('bzh', 'Mapos Buang', NULL, 4145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapos Buang', [Definition] = NULL, [SortOrder] = 413.20 WHERE [Code] = 'bzh' END +SET [Description] = 'Mapos Buang', [Definition] = NULL, [SortOrder] = 4145.00 WHERE [Code] = 'bzh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcg', 'Mapoyo', NULL, 413.30) END +VALUES ('mcg', 'Mapoyo', NULL, 4146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapoyo', [Definition] = NULL, [SortOrder] = 413.30 WHERE [Code] = 'mcg' END +SET [Description] = 'Mapoyo', [Definition] = NULL, [SortOrder] = 4146.00 WHERE [Code] = 'mcg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arn', 'Mapudungun', NULL, 413.40) END +VALUES ('arn', 'Mapudungun', NULL, 4147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapudungun', [Definition] = NULL, [SortOrder] = 413.40 WHERE [Code] = 'arn' END +SET [Description] = 'Mapudungun', [Definition] = NULL, [SortOrder] = 4147.00 WHERE [Code] = 'arn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjm', 'Mapun', NULL, 413.50) END +VALUES ('sjm', 'Mapun', NULL, 4148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mapun', [Definition] = NULL, [SortOrder] = 413.50 WHERE [Code] = 'sjm' END +SET [Description] = 'Mapun', [Definition] = NULL, [SortOrder] = 4148.00 WHERE [Code] = 'sjm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mch', 'Maquiritari', NULL, 413.60) END +VALUES ('mch', 'Maquiritari', NULL, 4149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maquiritari', [Definition] = NULL, [SortOrder] = 413.60 WHERE [Code] = 'mch' END +SET [Description] = 'Maquiritari', [Definition] = NULL, [SortOrder] = 4149.00 WHERE [Code] = 'mch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrh', 'Mara Chin', NULL, 413.70) END +VALUES ('mrh', 'Mara Chin', NULL, 4150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mara Chin', [Definition] = NULL, [SortOrder] = 413.70 WHERE [Code] = 'mrh' END +SET [Description] = 'Mara Chin', [Definition] = NULL, [SortOrder] = 4150.00 WHERE [Code] = 'mrh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lri', 'Marachi', NULL, 413.80) END +VALUES ('lri', 'Marachi', NULL, 4151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marachi', [Definition] = NULL, [SortOrder] = 413.80 WHERE [Code] = 'lri' END +SET [Description] = 'Marachi', [Definition] = NULL, [SortOrder] = 4151.00 WHERE [Code] = 'lri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmh', 'Maraghei', NULL, 413.90) END +VALUES ('vmh', 'Maraghei', NULL, 4152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maraghei', [Definition] = NULL, [SortOrder] = 413.90 WHERE [Code] = 'vmh' END +SET [Description] = 'Maraghei', [Definition] = NULL, [SortOrder] = 4152.00 WHERE [Code] = 'vmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrs', 'Maragus', NULL, 414.00) END +VALUES ('mrs', 'Maragus', NULL, 4153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maragus', [Definition] = NULL, [SortOrder] = 414.00 WHERE [Code] = 'mrs' END +SET [Description] = 'Maragus', [Definition] = NULL, [SortOrder] = 4153.00 WHERE [Code] = 'mrs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nma', 'Maram Naga', NULL, 414.10) END +VALUES ('nma', 'Maram Naga', NULL, 4154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maram Naga', [Definition] = NULL, [SortOrder] = 414.10 WHERE [Code] = 'nma' END +SET [Description] = 'Maram Naga', [Definition] = NULL, [SortOrder] = 4154.00 WHERE [Code] = 'nma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrm', 'Marama', NULL, 414.20) END +VALUES ('lrm', 'Marama', NULL, 4155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marama', [Definition] = NULL, [SortOrder] = 414.20 WHERE [Code] = 'lrm' END +SET [Description] = 'Marama', [Definition] = NULL, [SortOrder] = 4155.00 WHERE [Code] = 'lrm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrw', 'Maranao', NULL, 414.30) END +VALUES ('mrw', 'Maranao', NULL, 4156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maranao', [Definition] = NULL, [SortOrder] = 414.30 WHERE [Code] = 'mrw' END +SET [Description] = 'Maranao', [Definition] = NULL, [SortOrder] = 4156.00 WHERE [Code] = 'mrw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmr', 'Maranunggu', NULL, 414.40) END +VALUES ('zmr', 'Maranunggu', NULL, 4157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maranunggu', [Definition] = NULL, [SortOrder] = 414.40 WHERE [Code] = 'zmr' END +SET [Description] = 'Maranunggu', [Definition] = NULL, [SortOrder] = 4157.00 WHERE [Code] = 'zmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgb', 'Mararit', NULL, 414.50) END +VALUES ('mgb', 'Mararit', NULL, 4158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mararit', [Definition] = NULL, [SortOrder] = 414.50 WHERE [Code] = 'mgb' END +SET [Description] = 'Mararit', [Definition] = NULL, [SortOrder] = 4158.00 WHERE [Code] = 'mgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mar', 'Marathi', NULL, 414.60) END +VALUES ('mar', 'Marathi', NULL, 4159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marathi', [Definition] = NULL, [SortOrder] = 414.60 WHERE [Code] = 'mar' END +SET [Description] = 'Marathi', [Definition] = NULL, [SortOrder] = 4159.00 WHERE [Code] = 'mar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvr', 'Marau', NULL, 414.70) END +VALUES ('mvr', 'Marau', NULL, 4160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marau', [Definition] = NULL, [SortOrder] = 414.70 WHERE [Code] = 'mvr' END +SET [Description] = 'Marau', [Definition] = NULL, [SortOrder] = 4160.00 WHERE [Code] = 'mvr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpg', 'Marba', NULL, 414.80) END +VALUES ('mpg', 'Marba', NULL, 4161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marba', [Definition] = NULL, [SortOrder] = 414.80 WHERE [Code] = 'mpg' END +SET [Description] = 'Marba', [Definition] = NULL, [SortOrder] = 4161.00 WHERE [Code] = 'mpg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsz', 'Mardin Sign Language', NULL, 414.90) END +VALUES ('dsz', 'Mardin Sign Language', NULL, 4162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mardin Sign Language', [Definition] = NULL, [SortOrder] = 414.90 WHERE [Code] = 'dsz' END +SET [Description] = 'Mardin Sign Language', [Definition] = NULL, [SortOrder] = 4162.00 WHERE [Code] = 'dsz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrx', 'Maremgi', NULL, 415.00) END +VALUES ('mrx', 'Maremgi', NULL, 4163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maremgi', [Definition] = NULL, [SortOrder] = 415.00 WHERE [Code] = 'mrx' END +SET [Description] = 'Maremgi', [Definition] = NULL, [SortOrder] = 4163.00 WHERE [Code] = 'mrx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmr', 'Marenje', NULL, 415.10) END +VALUES ('vmr', 'Marenje', NULL, 4164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marenje', [Definition] = NULL, [SortOrder] = 415.10 WHERE [Code] = 'vmr' END +SET [Description] = 'Marenje', [Definition] = NULL, [SortOrder] = 4164.00 WHERE [Code] = 'vmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvu', 'Marfa', NULL, 415.20) END +VALUES ('mvu', 'Marfa', NULL, 4165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marfa', [Definition] = NULL, [SortOrder] = 415.20 WHERE [Code] = 'mvu' END +SET [Description] = 'Marfa', [Definition] = NULL, [SortOrder] = 4165.00 WHERE [Code] = 'mvu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmc', 'Margany', NULL, 415.30) END +VALUES ('zmc', 'Margany', NULL, 4166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Margany', [Definition] = NULL, [SortOrder] = 415.30 WHERE [Code] = 'zmc' END +SET [Description] = 'Margany', [Definition] = NULL, [SortOrder] = 4166.00 WHERE [Code] = 'zmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrt', 'Marghi Central', NULL, 415.40) END +VALUES ('mrt', 'Marghi Central', NULL, 4167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marghi Central', [Definition] = NULL, [SortOrder] = 415.40 WHERE [Code] = 'mrt' END +SET [Description] = 'Marghi Central', [Definition] = NULL, [SortOrder] = 4167.00 WHERE [Code] = 'mrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfm', 'Marghi South', NULL, 415.50) END +VALUES ('mfm', 'Marghi South', NULL, 4168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marghi South', [Definition] = NULL, [SortOrder] = 415.50 WHERE [Code] = 'mfm' END +SET [Description] = 'Marghi South', [Definition] = NULL, [SortOrder] = 4168.00 WHERE [Code] = 'mfm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvm', 'Margos-Yarowilca-Lauricocha Quechua', NULL, 415.60) END +VALUES ('qvm', 'Margos-Yarowilca-Lauricocha Quechua', NULL, 4169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Margos-Yarowilca-Lauricocha Quechua', [Definition] = NULL, [SortOrder] = 415.60 WHERE [Code] = 'qvm' END +SET [Description] = 'Margos-Yarowilca-Lauricocha Quechua', [Definition] = NULL, [SortOrder] = 4169.00 WHERE [Code] = 'qvm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhg', 'Margu', NULL, 415.70) END +VALUES ('mhg', 'Margu', NULL, 4170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Margu', [Definition] = NULL, [SortOrder] = 415.70 WHERE [Code] = 'mhg' END +SET [Description] = 'Margu', [Definition] = NULL, [SortOrder] = 4170.00 WHERE [Code] = 'mhg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbx', 'Mari (East Sepik Province)', NULL, 415.80) END +VALUES ('mbx', 'Mari (East Sepik Province)', NULL, 4171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mari (East Sepik Province)', [Definition] = NULL, [SortOrder] = 415.80 WHERE [Code] = 'mbx' END +SET [Description] = 'Mari (East Sepik Province)', [Definition] = NULL, [SortOrder] = 4171.00 WHERE [Code] = 'mbx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hob', 'Mari (Madang Province)', NULL, 415.90) END +VALUES ('hob', 'Mari (Madang Province)', NULL, 4172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mari (Madang Province)', [Definition] = NULL, [SortOrder] = 415.90 WHERE [Code] = 'hob' END +SET [Description] = 'Mari (Madang Province)', [Definition] = NULL, [SortOrder] = 4172.00 WHERE [Code] = 'hob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chm', 'Mari (Russia)', NULL, 416.00) END +VALUES ('chm', 'Mari (Russia)', NULL, 4173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mari (Russia)', [Definition] = NULL, [SortOrder] = 416.00 WHERE [Code] = 'chm' END +SET [Description] = 'Mari (Russia)', [Definition] = NULL, [SortOrder] = 4173.00 WHERE [Code] = 'chm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrr', 'Maria (India)', NULL, 416.10) END +VALUES ('mrr', 'Maria (India)', NULL, 4174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maria (India)', [Definition] = NULL, [SortOrder] = 416.10 WHERE [Code] = 'mrr' END +SET [Description] = 'Maria (India)', [Definition] = NULL, [SortOrder] = 4174.00 WHERE [Code] = 'mrr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mds', 'Maria (Papua New Guinea)', NULL, 416.20) END +VALUES ('mds', 'Maria (Papua New Guinea)', NULL, 4175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maria (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 416.20 WHERE [Code] = 'mds' END +SET [Description] = 'Maria (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 4175.00 WHERE [Code] = 'mds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrc', 'Maricopa', NULL, 416.30) END +VALUES ('mrc', 'Maricopa', NULL, 4176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maricopa', [Definition] = NULL, [SortOrder] = 416.30 WHERE [Code] = 'mrc' END +SET [Description] = 'Maricopa', [Definition] = NULL, [SortOrder] = 4176.00 WHERE [Code] = 'mrc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmd', 'Maridan', NULL, 416.40) END +VALUES ('zmd', 'Maridan', NULL, 4177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maridan', [Definition] = NULL, [SortOrder] = 416.40 WHERE [Code] = 'zmd' END +SET [Description] = 'Maridan', [Definition] = NULL, [SortOrder] = 4177.00 WHERE [Code] = 'zmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmj', 'Maridjabin', NULL, 416.50) END +VALUES ('zmj', 'Maridjabin', NULL, 4178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maridjabin', [Definition] = NULL, [SortOrder] = 416.50 WHERE [Code] = 'zmj' END +SET [Description] = 'Maridjabin', [Definition] = NULL, [SortOrder] = 4178.00 WHERE [Code] = 'zmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dad', 'Marik', NULL, 416.60) END +VALUES ('dad', 'Marik', NULL, 4179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marik', [Definition] = NULL, [SortOrder] = 416.60 WHERE [Code] = 'dad' END +SET [Description] = 'Marik', [Definition] = NULL, [SortOrder] = 4179.00 WHERE [Code] = 'dad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmm', 'Marimanindji', NULL, 416.70) END +VALUES ('zmm', 'Marimanindji', NULL, 4180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marimanindji', [Definition] = NULL, [SortOrder] = 416.70 WHERE [Code] = 'zmm' END +SET [Description] = 'Marimanindji', [Definition] = NULL, [SortOrder] = 4180.00 WHERE [Code] = 'zmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrz', 'Marind', NULL, 416.80) END +VALUES ('mrz', 'Marind', NULL, 4181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marind', [Definition] = NULL, [SortOrder] = 416.80 WHERE [Code] = 'mrz' END +SET [Description] = 'Marind', [Definition] = NULL, [SortOrder] = 4181.00 WHERE [Code] = 'mrz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbw', 'Maring', NULL, 416.90) END +VALUES ('mbw', 'Maring', NULL, 4182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maring', [Definition] = NULL, [SortOrder] = 416.90 WHERE [Code] = 'mbw' END +SET [Description] = 'Maring', [Definition] = NULL, [SortOrder] = 4182.00 WHERE [Code] = 'mbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nng', 'Maring Naga', NULL, 417.00) END +VALUES ('nng', 'Maring Naga', NULL, 4183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maring Naga', [Definition] = NULL, [SortOrder] = 417.00 WHERE [Code] = 'nng' END +SET [Description] = 'Maring Naga', [Definition] = NULL, [SortOrder] = 4183.00 WHERE [Code] = 'nng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmt', 'Maringarr', NULL, 417.10) END +VALUES ('zmt', 'Maringarr', NULL, 4184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maringarr', [Definition] = NULL, [SortOrder] = 417.10 WHERE [Code] = 'zmt' END +SET [Description] = 'Maringarr', [Definition] = NULL, [SortOrder] = 4184.00 WHERE [Code] = 'zmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrb', 'Marino', NULL, 417.20) END +VALUES ('mrb', 'Marino', NULL, 4185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marino', [Definition] = NULL, [SortOrder] = 417.20 WHERE [Code] = 'mrb' END +SET [Description] = 'Marino', [Definition] = NULL, [SortOrder] = 4185.00 WHERE [Code] = 'mrb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqi', 'Mariri', NULL, 417.30) END +VALUES ('mqi', 'Mariri', NULL, 4186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mariri', [Definition] = NULL, [SortOrder] = 417.30 WHERE [Code] = 'mqi' END +SET [Description] = 'Mariri', [Definition] = NULL, [SortOrder] = 4186.00 WHERE [Code] = 'mqi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsr', 'Maritime Sign Language', NULL, 417.40) END +VALUES ('nsr', 'Maritime Sign Language', NULL, 4187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maritime Sign Language', [Definition] = NULL, [SortOrder] = 417.40 WHERE [Code] = 'nsr' END +SET [Description] = 'Maritime Sign Language', [Definition] = NULL, [SortOrder] = 4187.00 WHERE [Code] = 'nsr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msp', 'Maritsauá', NULL, 417.50) END +VALUES ('msp', 'Maritsauá', NULL, 4188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maritsauá', [Definition] = NULL, [SortOrder] = 417.50 WHERE [Code] = 'msp' END +SET [Description] = 'Maritsauá', [Definition] = NULL, [SortOrder] = 4188.00 WHERE [Code] = 'msp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmy', 'Mariyedi', NULL, 417.60) END +VALUES ('zmy', 'Mariyedi', NULL, 4189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mariyedi', [Definition] = NULL, [SortOrder] = 417.60 WHERE [Code] = 'zmy' END +SET [Description] = 'Mariyedi', [Definition] = NULL, [SortOrder] = 4189.00 WHERE [Code] = 'zmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkm', 'Marka', NULL, 417.70) END +VALUES ('rkm', 'Marka', NULL, 4190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marka', [Definition] = NULL, [SortOrder] = 417.70 WHERE [Code] = 'rkm' END +SET [Description] = 'Marka', [Definition] = NULL, [SortOrder] = 4190.00 WHERE [Code] = 'rkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enb', 'Markweeta', NULL, 417.80) END +VALUES ('enb', 'Markweeta', NULL, 4191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Markweeta', [Definition] = NULL, [SortOrder] = 417.80 WHERE [Code] = 'enb' END +SET [Description] = 'Markweeta', [Definition] = NULL, [SortOrder] = 4191.00 WHERE [Code] = 'enb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmz', 'Marma', NULL, 417.90) END +VALUES ('rmz', 'Marma', NULL, 4192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marma', [Definition] = NULL, [SortOrder] = 417.90 WHERE [Code] = 'rmz' END +SET [Description] = 'Marma', [Definition] = NULL, [SortOrder] = 4192.00 WHERE [Code] = 'rmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvo', 'Marovo', NULL, 418.00) END +VALUES ('mvo', 'Marovo', NULL, 4193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marovo', [Definition] = NULL, [SortOrder] = 418.00 WHERE [Code] = 'mvo' END +SET [Description] = 'Marovo', [Definition] = NULL, [SortOrder] = 4193.00 WHERE [Code] = 'mvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mec', 'Marra', NULL, 418.10) END +VALUES ('mec', 'Marra', NULL, 4194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marra', [Definition] = NULL, [SortOrder] = 418.10 WHERE [Code] = 'mec' END +SET [Description] = 'Marra', [Definition] = NULL, [SortOrder] = 4194.00 WHERE [Code] = 'mec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xru', 'Marriammu', NULL, 418.20) END +VALUES ('xru', 'Marriammu', NULL, 4195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marriammu', [Definition] = NULL, [SortOrder] = 418.20 WHERE [Code] = 'xru' END +SET [Description] = 'Marriammu', [Definition] = NULL, [SortOrder] = 4195.00 WHERE [Code] = 'xru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfr', 'Marrithiyel', NULL, 418.30) END +VALUES ('mfr', 'Marrithiyel', NULL, 4196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marrithiyel', [Definition] = NULL, [SortOrder] = 418.30 WHERE [Code] = 'mfr' END +SET [Description] = 'Marrithiyel', [Definition] = NULL, [SortOrder] = 4196.00 WHERE [Code] = 'mfr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umc', 'Marrucinian', NULL, 418.40) END +VALUES ('umc', 'Marrucinian', NULL, 4197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marrucinian', [Definition] = NULL, [SortOrder] = 418.40 WHERE [Code] = 'umc' END +SET [Description] = 'Marrucinian', [Definition] = NULL, [SortOrder] = 4197.00 WHERE [Code] = 'umc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mah', 'Marshallese', NULL, 418.50) END +VALUES ('mah', 'Marshallese', NULL, 4198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marshallese', [Definition] = NULL, [SortOrder] = 418.50 WHERE [Code] = 'mah' END +SET [Description] = 'Marshallese', [Definition] = NULL, [SortOrder] = 4198.00 WHERE [Code] = 'mah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ims') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ims', 'Marsian', NULL, 418.60) END +VALUES ('ims', 'Marsian', NULL, 4199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marsian', [Definition] = NULL, [SortOrder] = 418.60 WHERE [Code] = 'ims' END +SET [Description] = 'Marsian', [Definition] = NULL, [SortOrder] = 4199.00 WHERE [Code] = 'ims' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mre', 'Martha''s Vineyard Sign Language', NULL, 418.70) END +VALUES ('mre', 'Martha''s Vineyard Sign Language', NULL, 4200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Martha''s Vineyard Sign Language', [Definition] = NULL, [SortOrder] = 418.70 WHERE [Code] = 'mre' END +SET [Description] = 'Martha''s Vineyard Sign Language', [Definition] = NULL, [SortOrder] = 4200.00 WHERE [Code] = 'mre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmg', 'Marti Ke', NULL, 418.80) END +VALUES ('zmg', 'Marti Ke', NULL, 4201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marti Ke', [Definition] = NULL, [SortOrder] = 418.80 WHERE [Code] = 'zmg' END +SET [Description] = 'Marti Ke', [Definition] = NULL, [SortOrder] = 4201.00 WHERE [Code] = 'zmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpj', 'Martu Wangka', NULL, 418.90) END +VALUES ('mpj', 'Martu Wangka', NULL, 4202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Martu Wangka', [Definition] = NULL, [SortOrder] = 418.90 WHERE [Code] = 'mpj' END +SET [Description] = 'Martu Wangka', [Definition] = NULL, [SortOrder] = 4202.00 WHERE [Code] = 'mpj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vma', 'Martuyhunira', NULL, 419.00) END +VALUES ('vma', 'Martuyhunira', NULL, 4203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Martuyhunira', [Definition] = NULL, [SortOrder] = 419.00 WHERE [Code] = 'vma' END +SET [Description] = 'Martuyhunira', [Definition] = NULL, [SortOrder] = 4203.00 WHERE [Code] = 'vma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhx', 'Maru', NULL, 419.10) END +VALUES ('mhx', 'Maru', NULL, 4204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maru', [Definition] = NULL, [SortOrder] = 419.10 WHERE [Code] = 'mhx' END +SET [Description] = 'Maru', [Definition] = NULL, [SortOrder] = 4204.00 WHERE [Code] = 'mhx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzr', 'Marúbo', NULL, 419.20) END +VALUES ('mzr', 'Marúbo', NULL, 4205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marúbo', [Definition] = NULL, [SortOrder] = 419.20 WHERE [Code] = 'mzr' END +SET [Description] = 'Marúbo', [Definition] = NULL, [SortOrder] = 4205.00 WHERE [Code] = 'mzr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwr', 'Marwari', NULL, 419.30) END +VALUES ('mwr', 'Marwari', NULL, 4206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marwari', [Definition] = NULL, [SortOrder] = 419.30 WHERE [Code] = 'mwr' END +SET [Description] = 'Marwari', [Definition] = NULL, [SortOrder] = 4206.00 WHERE [Code] = 'mwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwr', 'Marwari (India)', NULL, 419.40) END +VALUES ('rwr', 'Marwari (India)', NULL, 4207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marwari (India)', [Definition] = NULL, [SortOrder] = 419.40 WHERE [Code] = 'rwr' END +SET [Description] = 'Marwari (India)', [Definition] = NULL, [SortOrder] = 4207.00 WHERE [Code] = 'rwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mve', 'Marwari (Pakistan)', NULL, 419.50) END +VALUES ('mve', 'Marwari (Pakistan)', NULL, 4208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Marwari (Pakistan)', [Definition] = NULL, [SortOrder] = 419.50 WHERE [Code] = 'mve' END +SET [Description] = 'Marwari (Pakistan)', [Definition] = NULL, [SortOrder] = 4208.00 WHERE [Code] = 'mve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myx', 'Masaaba', NULL, 419.60) END +VALUES ('myx', 'Masaaba', NULL, 4209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masaaba', [Definition] = NULL, [SortOrder] = 419.60 WHERE [Code] = 'myx' END +SET [Description] = 'Masaaba', [Definition] = NULL, [SortOrder] = 4209.00 WHERE [Code] = 'myx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tis', 'Masadiit Itneg', NULL, 419.70) END +VALUES ('tis', 'Masadiit Itneg', NULL, 4210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masadiit Itneg', [Definition] = NULL, [SortOrder] = 419.70 WHERE [Code] = 'tis' END +SET [Description] = 'Masadiit Itneg', [Definition] = NULL, [SortOrder] = 4210.00 WHERE [Code] = 'tis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mas', 'Masai', NULL, 419.80) END +VALUES ('mas', 'Masai', NULL, 4211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masai', [Definition] = NULL, [SortOrder] = 419.80 WHERE [Code] = 'mas' END +SET [Description] = 'Masai', [Definition] = NULL, [SortOrder] = 4211.00 WHERE [Code] = 'mas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mls', 'Masalit', NULL, 419.90) END +VALUES ('mls', 'Masalit', NULL, 4212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masalit', [Definition] = NULL, [SortOrder] = 419.90 WHERE [Code] = 'mls' END +SET [Description] = 'Masalit', [Definition] = NULL, [SortOrder] = 4212.00 WHERE [Code] = 'mls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcn', 'Masana', NULL, 420.00) END +VALUES ('mcn', 'Masana', NULL, 4213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masana', [Definition] = NULL, [SortOrder] = 420.00 WHERE [Code] = 'mcn' END +SET [Description] = 'Masana', [Definition] = NULL, [SortOrder] = 4213.00 WHERE [Code] = 'mcn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msb', 'Masbatenyo', NULL, 420.10) END +VALUES ('msb', 'Masbatenyo', NULL, 4214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masbatenyo', [Definition] = NULL, [SortOrder] = 420.10 WHERE [Code] = 'msb' END +SET [Description] = 'Masbatenyo', [Definition] = NULL, [SortOrder] = 4214.00 WHERE [Code] = 'msb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuj', 'Mashco Piro', NULL, 420.20) END +VALUES ('cuj', 'Mashco Piro', NULL, 4215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mashco Piro', [Definition] = NULL, [SortOrder] = 420.20 WHERE [Code] = 'cuj' END +SET [Description] = 'Mashco Piro', [Definition] = NULL, [SortOrder] = 4215.00 WHERE [Code] = 'cuj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jms', 'Mashi (Nigeria)', NULL, 420.30) END +VALUES ('jms', 'Mashi (Nigeria)', NULL, 4216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mashi (Nigeria)', [Definition] = NULL, [SortOrder] = 420.30 WHERE [Code] = 'jms' END +SET [Description] = 'Mashi (Nigeria)', [Definition] = NULL, [SortOrder] = 4216.00 WHERE [Code] = 'jms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mho', 'Mashi (Zambia)', NULL, 420.40) END +VALUES ('mho', 'Mashi (Zambia)', NULL, 4217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mashi (Zambia)', [Definition] = NULL, [SortOrder] = 420.40 WHERE [Code] = 'mho' END +SET [Description] = 'Mashi (Zambia)', [Definition] = NULL, [SortOrder] = 4217.00 WHERE [Code] = 'mho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msh', 'Masikoro Malagasy', NULL, 420.50) END +VALUES ('msh', 'Masikoro Malagasy', NULL, 4218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masikoro Malagasy', [Definition] = NULL, [SortOrder] = 420.50 WHERE [Code] = 'msh' END +SET [Description] = 'Masikoro Malagasy', [Definition] = NULL, [SortOrder] = 4218.00 WHERE [Code] = 'msh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ism') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ism', 'Masimasi', NULL, 420.60) END +VALUES ('ism', 'Masimasi', NULL, 4219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masimasi', [Definition] = NULL, [SortOrder] = 420.60 WHERE [Code] = 'ism' END +SET [Description] = 'Masimasi', [Definition] = NULL, [SortOrder] = 4219.00 WHERE [Code] = 'ism' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bnf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bnf', 'Masiwang', NULL, 420.70) END +VALUES ('bnf', 'Masiwang', NULL, 4220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masiwang', [Definition] = NULL, [SortOrder] = 420.70 WHERE [Code] = 'bnf' END +SET [Description] = 'Masiwang', [Definition] = NULL, [SortOrder] = 4220.00 WHERE [Code] = 'bnf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klv', 'Maskelynes', NULL, 420.80) END +VALUES ('klv', 'Maskelynes', NULL, 4221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maskelynes', [Definition] = NULL, [SortOrder] = 420.80 WHERE [Code] = 'klv' END +SET [Description] = 'Maskelynes', [Definition] = NULL, [SortOrder] = 4221.00 WHERE [Code] = 'klv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msv', 'Maslam', NULL, 420.90) END +VALUES ('msv', 'Maslam', NULL, 4222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maslam', [Definition] = NULL, [SortOrder] = 420.90 WHERE [Code] = 'msv' END +SET [Description] = 'Maslam', [Definition] = NULL, [SortOrder] = 4222.00 WHERE [Code] = 'msv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mes', 'Masmaje', NULL, 421.00) END +VALUES ('mes', 'Masmaje', NULL, 4223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Masmaje', [Definition] = NULL, [SortOrder] = 421.00 WHERE [Code] = 'mes' END +SET [Description] = 'Masmaje', [Definition] = NULL, [SortOrder] = 4223.00 WHERE [Code] = 'mes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdg', 'Massalat', NULL, 421.10) END +VALUES ('mdg', 'Massalat', NULL, 4224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Massalat', [Definition] = NULL, [SortOrder] = 421.10 WHERE [Code] = 'mdg' END +SET [Description] = 'Massalat', [Definition] = NULL, [SortOrder] = 4224.00 WHERE [Code] = 'mdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvs', 'Massep', NULL, 421.20) END +VALUES ('mvs', 'Massep', NULL, 4225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Massep', [Definition] = NULL, [SortOrder] = 421.20 WHERE [Code] = 'mvs' END +SET [Description] = 'Massep', [Definition] = NULL, [SortOrder] = 4225.00 WHERE [Code] = 'mvs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtn', 'Matagalpa', NULL, 421.30) END +VALUES ('mtn', 'Matagalpa', NULL, 4226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matagalpa', [Definition] = NULL, [SortOrder] = 421.30 WHERE [Code] = 'mtn' END +SET [Description] = 'Matagalpa', [Definition] = NULL, [SortOrder] = 4226.00 WHERE [Code] = 'mtn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfh', 'Matal', NULL, 421.40) END +VALUES ('mfh', 'Matal', NULL, 4227.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Matal', [Definition] = NULL, [SortOrder] = 4227.00 WHERE [Code] = 'mfh' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wtb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('wtb', 'Matambwe', NULL, 4228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matal', [Definition] = NULL, [SortOrder] = 421.40 WHERE [Code] = 'mfh' END +SET [Description] = 'Matambwe', [Definition] = NULL, [SortOrder] = 4228.00 WHERE [Code] = 'wtb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmt', 'Matbat', NULL, 421.50) END +VALUES ('xmt', 'Matbat', NULL, 4229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matbat', [Definition] = NULL, [SortOrder] = 421.50 WHERE [Code] = 'xmt' END +SET [Description] = 'Matbat', [Definition] = NULL, [SortOrder] = 4229.00 WHERE [Code] = 'xmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgv', 'Matengo', NULL, 421.60) END +VALUES ('mgv', 'Matengo', NULL, 4230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matengo', [Definition] = NULL, [SortOrder] = 421.60 WHERE [Code] = 'mgv' END +SET [Description] = 'Matengo', [Definition] = NULL, [SortOrder] = 4230.00 WHERE [Code] = 'mgv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqe', 'Matepi', NULL, 421.70) END +VALUES ('mqe', 'Matepi', NULL, 4231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matepi', [Definition] = NULL, [SortOrder] = 421.70 WHERE [Code] = 'mqe' END +SET [Description] = 'Matepi', [Definition] = NULL, [SortOrder] = 4231.00 WHERE [Code] = 'mqe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbt', 'Matigsalug Manobo', NULL, 421.80) END +VALUES ('mbt', 'Matigsalug Manobo', NULL, 4232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matigsalug Manobo', [Definition] = NULL, [SortOrder] = 421.80 WHERE [Code] = 'mbt' END +SET [Description] = 'Matigsalug Manobo', [Definition] = NULL, [SortOrder] = 4232.00 WHERE [Code] = 'mbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzo', 'Matipuhy', NULL, 421.90) END +VALUES ('mzo', 'Matipuhy', NULL, 4233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matipuhy', [Definition] = NULL, [SortOrder] = 421.90 WHERE [Code] = 'mzo' END +SET [Description] = 'Matipuhy', [Definition] = NULL, [SortOrder] = 4233.00 WHERE [Code] = 'mzo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpq', 'Matís', NULL, 422.00) END +VALUES ('mpq', 'Matís', NULL, 4234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matís', [Definition] = NULL, [SortOrder] = 422.00 WHERE [Code] = 'mpq' END +SET [Description] = 'Matís', [Definition] = NULL, [SortOrder] = 4234.00 WHERE [Code] = 'mpq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zml', 'Matngala', NULL, 422.10) END +VALUES ('zml', 'Matngala', NULL, 4235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matngala', [Definition] = NULL, [SortOrder] = 422.10 WHERE [Code] = 'zml' END +SET [Description] = 'Matngala', [Definition] = NULL, [SortOrder] = 4235.00 WHERE [Code] = 'zml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'met') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('met', 'Mato', NULL, 422.20) END +VALUES ('met', 'Mato', NULL, 4236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mato', [Definition] = NULL, [SortOrder] = 422.20 WHERE [Code] = 'met' END +SET [Description] = 'Mato', [Definition] = NULL, [SortOrder] = 4236.00 WHERE [Code] = 'met' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axg', 'Mato Grosso Arára', NULL, 422.30) END +VALUES ('axg', 'Mato Grosso Arára', NULL, 4237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mato Grosso Arára', [Definition] = NULL, [SortOrder] = 422.30 WHERE [Code] = 'axg' END +SET [Description] = 'Mato Grosso Arára', [Definition] = NULL, [SortOrder] = 4237.00 WHERE [Code] = 'axg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtm', 'Mator', NULL, 422.40) END +VALUES ('mtm', 'Mator', NULL, 4238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mator', [Definition] = NULL, [SortOrder] = 422.40 WHERE [Code] = 'mtm' END +SET [Description] = 'Mator', [Definition] = NULL, [SortOrder] = 4238.00 WHERE [Code] = 'mtm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcf', 'Matsés', NULL, 422.50) END +VALUES ('mcf', 'Matsés', NULL, 4239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matsés', [Definition] = NULL, [SortOrder] = 422.50 WHERE [Code] = 'mcf' END +SET [Description] = 'Matsés', [Definition] = NULL, [SortOrder] = 4239.00 WHERE [Code] = 'mcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvb', 'Mattole', NULL, 422.60) END +VALUES ('mvb', 'Mattole', NULL, 4240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mattole', [Definition] = NULL, [SortOrder] = 422.60 WHERE [Code] = 'mvb' END +SET [Description] = 'Mattole', [Definition] = NULL, [SortOrder] = 4240.00 WHERE [Code] = 'mvb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hlt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hlt', 'Matu Chin', NULL, 422.70) END +VALUES ('hlt', 'Matu Chin', NULL, 4241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matu Chin', [Definition] = NULL, [SortOrder] = 422.70 WHERE [Code] = 'hlt' END +SET [Description] = 'Matu Chin', [Definition] = NULL, [SortOrder] = 4241.00 WHERE [Code] = 'hlt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjk', 'Matukar', NULL, 422.80) END +VALUES ('mjk', 'Matukar', NULL, 4242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matukar', [Definition] = NULL, [SortOrder] = 422.80 WHERE [Code] = 'mjk' END +SET [Description] = 'Matukar', [Definition] = NULL, [SortOrder] = 4242.00 WHERE [Code] = 'mjk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgw', 'Matumbi', NULL, 422.90) END +VALUES ('mgw', 'Matumbi', NULL, 4243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matumbi', [Definition] = NULL, [SortOrder] = 422.90 WHERE [Code] = 'mgw' END +SET [Description] = 'Matumbi', [Definition] = NULL, [SortOrder] = 4243.00 WHERE [Code] = 'mgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stj', 'Matya Samo', NULL, 423.00) END +VALUES ('stj', 'Matya Samo', NULL, 4244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Matya Samo', [Definition] = NULL, [SortOrder] = 423.00 WHERE [Code] = 'stj' END +SET [Description] = 'Matya Samo', [Definition] = NULL, [SortOrder] = 4244.00 WHERE [Code] = 'stj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mph', 'Maung', NULL, 423.10) END +VALUES ('mph', 'Maung', NULL, 4245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maung', [Definition] = NULL, [SortOrder] = 423.10 WHERE [Code] = 'mph' END +SET [Description] = 'Maung', [Definition] = NULL, [SortOrder] = 4245.00 WHERE [Code] = 'mph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsy', 'Mauritian Sign Language', NULL, 423.20) END +VALUES ('lsy', 'Mauritian Sign Language', NULL, 4246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mauritian Sign Language', [Definition] = NULL, [SortOrder] = 423.20 WHERE [Code] = 'lsy' END +SET [Description] = 'Mauritian Sign Language', [Definition] = NULL, [SortOrder] = 4246.00 WHERE [Code] = 'lsy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhl', 'Mauwake', NULL, 423.30) END +VALUES ('mhl', 'Mauwake', NULL, 4247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mauwake', [Definition] = NULL, [SortOrder] = 423.30 WHERE [Code] = 'mhl' END +SET [Description] = 'Mauwake', [Definition] = NULL, [SortOrder] = 4247.00 WHERE [Code] = 'mhl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcw', 'Mawa (Chad)', NULL, 423.40) END +VALUES ('mcw', 'Mawa (Chad)', NULL, 4248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawa (Chad)', [Definition] = NULL, [SortOrder] = 423.40 WHERE [Code] = 'mcw' END +SET [Description] = 'Mawa (Chad)', [Definition] = NULL, [SortOrder] = 4248.00 WHERE [Code] = 'mcw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wma', 'Mawa (Nigeria)', NULL, 423.50) END +VALUES ('wma', 'Mawa (Nigeria)', NULL, 4249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawa (Nigeria)', [Definition] = NULL, [SortOrder] = 423.50 WHERE [Code] = 'wma' END +SET [Description] = 'Mawa (Nigeria)', [Definition] = NULL, [SortOrder] = 4249.00 WHERE [Code] = 'wma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjj', 'Mawak', NULL, 423.60) END +VALUES ('mjj', 'Mawak', NULL, 4250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawak', [Definition] = NULL, [SortOrder] = 423.60 WHERE [Code] = 'mjj' END +SET [Description] = 'Mawak', [Definition] = NULL, [SortOrder] = 4250.00 WHERE [Code] = 'mjj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcz', 'Mawan', NULL, 423.70) END +VALUES ('mcz', 'Mawan', NULL, 4251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawan', [Definition] = NULL, [SortOrder] = 423.70 WHERE [Code] = 'mcz' END +SET [Description] = 'Mawan', [Definition] = NULL, [SortOrder] = 4251.00 WHERE [Code] = 'mcz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzx', 'Mawayana', NULL, 423.80) END +VALUES ('mzx', 'Mawayana', NULL, 4252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawayana', [Definition] = NULL, [SortOrder] = 423.80 WHERE [Code] = 'mzx' END +SET [Description] = 'Mawayana', [Definition] = NULL, [SortOrder] = 4252.00 WHERE [Code] = 'mzx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mke', 'Mawchi', NULL, 423.90) END +VALUES ('mke', 'Mawchi', NULL, 4253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawchi', [Definition] = NULL, [SortOrder] = 423.90 WHERE [Code] = 'mke' END +SET [Description] = 'Mawchi', [Definition] = NULL, [SortOrder] = 4253.00 WHERE [Code] = 'mke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgk', 'Mawes', NULL, 424.00) END +VALUES ('mgk', 'Mawes', NULL, 4254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mawes', [Definition] = NULL, [SortOrder] = 424.00 WHERE [Code] = 'mgk' END +SET [Description] = 'Mawes', [Definition] = NULL, [SortOrder] = 4254.00 WHERE [Code] = 'mgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbl', 'Maxakalí', NULL, 424.10) END +VALUES ('mbl', 'Maxakalí', NULL, 4255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maxakalí', [Definition] = NULL, [SortOrder] = 424.10 WHERE [Code] = 'mbl' END +SET [Description] = 'Maxakalí', [Definition] = NULL, [SortOrder] = 4255.00 WHERE [Code] = 'mbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxl', 'Maxi Gbe', NULL, 424.20) END +VALUES ('mxl', 'Maxi Gbe', NULL, 4256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maxi Gbe', [Definition] = NULL, [SortOrder] = 424.20 WHERE [Code] = 'mxl' END +SET [Description] = 'Maxi Gbe', [Definition] = NULL, [SortOrder] = 4256.00 WHERE [Code] = 'mxl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sym', 'Maya Samo', NULL, 424.30) END +VALUES ('sym', 'Maya Samo', NULL, 4257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Maya Samo', [Definition] = NULL, [SortOrder] = 424.30 WHERE [Code] = 'sym' END +SET [Description] = 'Maya Samo', [Definition] = NULL, [SortOrder] = 4257.00 WHERE [Code] = 'sym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmy', 'Mayaguduna', NULL, 424.40) END +VALUES ('xmy', 'Mayaguduna', NULL, 4258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayaguduna', [Definition] = NULL, [SortOrder] = 424.40 WHERE [Code] = 'xmy' END +SET [Description] = 'Mayaguduna', [Definition] = NULL, [SortOrder] = 4258.00 WHERE [Code] = 'xmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yan', 'Mayangna', NULL, 424.50) END +VALUES ('yan', 'Mayangna', NULL, 4259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayangna', [Definition] = NULL, [SortOrder] = 424.50 WHERE [Code] = 'yan' END +SET [Description] = 'Mayangna', [Definition] = NULL, [SortOrder] = 4259.00 WHERE [Code] = 'yan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxa', 'Mayawali', NULL, 424.60) END +VALUES ('yxa', 'Mayawali', NULL, 4260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayawali', [Definition] = NULL, [SortOrder] = 424.60 WHERE [Code] = 'yxa' END +SET [Description] = 'Mayawali', [Definition] = NULL, [SortOrder] = 4260.00 WHERE [Code] = 'yxa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myc', 'Mayeka', NULL, 424.70) END +VALUES ('myc', 'Mayeka', NULL, 4261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayeka', [Definition] = NULL, [SortOrder] = 424.70 WHERE [Code] = 'myc' END +SET [Description] = 'Mayeka', [Definition] = NULL, [SortOrder] = 4261.00 WHERE [Code] = 'myc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyk', 'Mayi-Kulan', NULL, 424.80) END +VALUES ('xyk', 'Mayi-Kulan', NULL, 4262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayi-Kulan', [Definition] = NULL, [SortOrder] = 424.80 WHERE [Code] = 'xyk' END +SET [Description] = 'Mayi-Kulan', [Definition] = NULL, [SortOrder] = 4262.00 WHERE [Code] = 'xyk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyt', 'Mayi-Thakurti', NULL, 424.90) END +VALUES ('xyt', 'Mayi-Thakurti', NULL, 4263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayi-Thakurti', [Definition] = NULL, [SortOrder] = 424.90 WHERE [Code] = 'xyt' END +SET [Description] = 'Mayi-Thakurti', [Definition] = NULL, [SortOrder] = 4263.00 WHERE [Code] = 'xyt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyj', 'Mayi-Yapi', NULL, 425.00) END +VALUES ('xyj', 'Mayi-Yapi', NULL, 4264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayi-Yapi', [Definition] = NULL, [SortOrder] = 425.00 WHERE [Code] = 'xyj' END +SET [Description] = 'Mayi-Yapi', [Definition] = NULL, [SortOrder] = 4264.00 WHERE [Code] = 'xyj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfy', 'Mayo', NULL, 425.10) END +VALUES ('mfy', 'Mayo', NULL, 4265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayo', [Definition] = NULL, [SortOrder] = 425.10 WHERE [Code] = 'mfy' END +SET [Description] = 'Mayo', [Definition] = NULL, [SortOrder] = 4265.00 WHERE [Code] = 'mfy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdm', 'Mayogo', NULL, 425.20) END +VALUES ('mdm', 'Mayogo', NULL, 4266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayogo', [Definition] = NULL, [SortOrder] = 425.20 WHERE [Code] = 'mdm' END +SET [Description] = 'Mayogo', [Definition] = NULL, [SortOrder] = 4266.00 WHERE [Code] = 'mdm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifu', 'Mayoyao Ifugao', NULL, 425.30) END +VALUES ('ifu', 'Mayoyao Ifugao', NULL, 4267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mayoyao Ifugao', [Definition] = NULL, [SortOrder] = 425.30 WHERE [Code] = 'ifu' END +SET [Description] = 'Mayoyao Ifugao', [Definition] = NULL, [SortOrder] = 4267.00 WHERE [Code] = 'ifu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dkx', 'Mazagway', NULL, 425.40) END +VALUES ('dkx', 'Mazagway', NULL, 4268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazagway', [Definition] = NULL, [SortOrder] = 425.40 WHERE [Code] = 'dkx' END +SET [Description] = 'Mazagway', [Definition] = NULL, [SortOrder] = 4268.00 WHERE [Code] = 'dkx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpy', 'Mazaltepec Zapotec', NULL, 425.50) END +VALUES ('zpy', 'Mazaltepec Zapotec', NULL, 4269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazaltepec Zapotec', [Definition] = NULL, [SortOrder] = 425.50 WHERE [Code] = 'zpy' END +SET [Description] = 'Mazaltepec Zapotec', [Definition] = NULL, [SortOrder] = 4269.00 WHERE [Code] = 'zpy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzn', 'Mazanderani', NULL, 425.60) END +VALUES ('mzn', 'Mazanderani', NULL, 4270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazanderani', [Definition] = NULL, [SortOrder] = 425.60 WHERE [Code] = 'mzn' END +SET [Description] = 'Mazanderani', [Definition] = NULL, [SortOrder] = 4270.00 WHERE [Code] = 'mzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmz', 'Mazatlán Mazatec', NULL, 425.70) END +VALUES ('vmz', 'Mazatlán Mazatec', NULL, 4271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazatlán Mazatec', [Definition] = NULL, [SortOrder] = 425.70 WHERE [Code] = 'vmz' END +SET [Description] = 'Mazatlán Mazatec', [Definition] = NULL, [SortOrder] = 4271.00 WHERE [Code] = 'vmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzl', 'Mazatlán Mixe', NULL, 425.80) END +VALUES ('mzl', 'Mazatlán Mixe', NULL, 4272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mazatlán Mixe', [Definition] = NULL, [SortOrder] = 425.80 WHERE [Code] = 'mzl' END +SET [Description] = 'Mazatlán Mixe', [Definition] = NULL, [SortOrder] = 4272.00 WHERE [Code] = 'mzl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfc', 'Mba', NULL, 425.90) END +VALUES ('mfc', 'Mba', NULL, 4273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mba', [Definition] = NULL, [SortOrder] = 425.90 WHERE [Code] = 'mfc' END +SET [Description] = 'Mba', [Definition] = NULL, [SortOrder] = 4273.00 WHERE [Code] = 'mfc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdp', 'Mbala', NULL, 426.00) END +VALUES ('mdp', 'Mbala', NULL, 4274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbala', [Definition] = NULL, [SortOrder] = 426.00 WHERE [Code] = 'mdp' END +SET [Description] = 'Mbala', [Definition] = NULL, [SortOrder] = 4274.00 WHERE [Code] = 'mdp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnb', 'Mbalanhu', NULL, 426.10) END +VALUES ('lnb', 'Mbalanhu', NULL, 4275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbalanhu', [Definition] = NULL, [SortOrder] = 426.10 WHERE [Code] = 'lnb' END +SET [Description] = 'Mbalanhu', [Definition] = NULL, [SortOrder] = 4275.00 WHERE [Code] = 'lnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmz', 'Mbandja', NULL, 426.20) END +VALUES ('zmz', 'Mbandja', NULL, 4276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbandja', [Definition] = NULL, [SortOrder] = 426.20 WHERE [Code] = 'zmz' END +SET [Description] = 'Mbandja', [Definition] = NULL, [SortOrder] = 4276.00 WHERE [Code] = 'zmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxg', 'Mbangala', NULL, 426.30) END +VALUES ('mxg', 'Mbangala', NULL, 4277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbangala', [Definition] = NULL, [SortOrder] = 426.30 WHERE [Code] = 'mxg' END +SET [Description] = 'Mbangala', [Definition] = NULL, [SortOrder] = 4277.00 WHERE [Code] = 'mxg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgn', 'Mbangi', NULL, 426.40) END +VALUES ('mgn', 'Mbangi', NULL, 4278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbangi', [Definition] = NULL, [SortOrder] = 426.40 WHERE [Code] = 'mgn' END +SET [Description] = 'Mbangi', [Definition] = NULL, [SortOrder] = 4278.00 WHERE [Code] = 'mgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmn', 'Mbangwe', NULL, 426.50) END +VALUES ('zmn', 'Mbangwe', NULL, 4279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbangwe', [Definition] = NULL, [SortOrder] = 426.50 WHERE [Code] = 'zmn' END +SET [Description] = 'Mbangwe', [Definition] = NULL, [SortOrder] = 4279.00 WHERE [Code] = 'zmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvl', 'Mbara (Australia)', NULL, 426.60) END +VALUES ('mvl', 'Mbara (Australia)', NULL, 4280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbara (Australia)', [Definition] = NULL, [SortOrder] = 426.60 WHERE [Code] = 'mvl' END +SET [Description] = 'Mbara (Australia)', [Definition] = NULL, [SortOrder] = 4280.00 WHERE [Code] = 'mvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpk', 'Mbara (Chad)', NULL, 426.70) END +VALUES ('mpk', 'Mbara (Chad)', NULL, 4281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbara (Chad)', [Definition] = NULL, [SortOrder] = 426.70 WHERE [Code] = 'mpk' END +SET [Description] = 'Mbara (Chad)', [Definition] = NULL, [SortOrder] = 4281.00 WHERE [Code] = 'mpk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmv', 'Mbariman-Gudhinma', NULL, 426.80) END +VALUES ('zmv', 'Mbariman-Gudhinma', NULL, 4282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbariman-Gudhinma', [Definition] = NULL, [SortOrder] = 426.80 WHERE [Code] = 'zmv' END +SET [Description] = 'Mbariman-Gudhinma', [Definition] = NULL, [SortOrder] = 4282.00 WHERE [Code] = 'zmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdn', 'Mbati', NULL, 426.90) END +VALUES ('mdn', 'Mbati', NULL, 4283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbati', [Definition] = NULL, [SortOrder] = 426.90 WHERE [Code] = 'mdn' END +SET [Description] = 'Mbati', [Definition] = NULL, [SortOrder] = 4283.00 WHERE [Code] = 'mdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwa', 'Mbato', NULL, 427.00) END +VALUES ('gwa', 'Mbato', NULL, 4284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbato', [Definition] = NULL, [SortOrder] = 427.00 WHERE [Code] = 'gwa' END +SET [Description] = 'Mbato', [Definition] = NULL, [SortOrder] = 4284.00 WHERE [Code] = 'gwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myb', 'Mbay', NULL, 427.10) END +VALUES ('myb', 'Mbay', NULL, 4285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbay', [Definition] = NULL, [SortOrder] = 427.10 WHERE [Code] = 'myb' END +SET [Description] = 'Mbay', [Definition] = NULL, [SortOrder] = 4285.00 WHERE [Code] = 'myb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfo', 'Mbe', NULL, 427.20) END +VALUES ('mfo', 'Mbe', NULL, 4286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbe', [Definition] = NULL, [SortOrder] = 427.20 WHERE [Code] = 'mfo' END +SET [Description] = 'Mbe', [Definition] = NULL, [SortOrder] = 4286.00 WHERE [Code] = 'mfo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtk', 'Mbe''', NULL, 427.30) END +VALUES ('mtk', 'Mbe''', NULL, 4287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbe''', [Definition] = NULL, [SortOrder] = 427.30 WHERE [Code] = 'mtk' END +SET [Description] = 'Mbe''', [Definition] = NULL, [SortOrder] = 4287.00 WHERE [Code] = 'mtk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mql', 'Mbelime', NULL, 427.40) END +VALUES ('mql', 'Mbelime', NULL, 4288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbelime', [Definition] = NULL, [SortOrder] = 427.40 WHERE [Code] = 'mql' END +SET [Description] = 'Mbelime', [Definition] = NULL, [SortOrder] = 4288.00 WHERE [Code] = 'mql' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdt', 'Mbere', NULL, 427.50) END +VALUES ('mdt', 'Mbere', NULL, 4289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbere', [Definition] = NULL, [SortOrder] = 427.50 WHERE [Code] = 'mdt' END +SET [Description] = 'Mbere', [Definition] = NULL, [SortOrder] = 4289.00 WHERE [Code] = 'mdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zms', 'Mbesa', NULL, 427.60) END +VALUES ('zms', 'Mbesa', NULL, 4290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbesa', [Definition] = NULL, [SortOrder] = 427.60 WHERE [Code] = 'zms' END +SET [Description] = 'Mbesa', [Definition] = NULL, [SortOrder] = 4290.00 WHERE [Code] = 'zms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emz', 'Mbessa', NULL, 427.70) END +VALUES ('emz', 'Mbessa', NULL, 4291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbessa', [Definition] = NULL, [SortOrder] = 427.70 WHERE [Code] = 'emz' END +SET [Description] = 'Mbessa', [Definition] = NULL, [SortOrder] = 4291.00 WHERE [Code] = 'emz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbo', 'Mbo (Cameroon)', NULL, 427.80) END +VALUES ('mbo', 'Mbo (Cameroon)', NULL, 4292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbo (Cameroon)', [Definition] = NULL, [SortOrder] = 427.80 WHERE [Code] = 'mbo' END +SET [Description] = 'Mbo (Cameroon)', [Definition] = NULL, [SortOrder] = 4292.00 WHERE [Code] = 'mbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmw', 'Mbo (Democratic Republic of Congo)', NULL, 427.90) END +VALUES ('zmw', 'Mbo (Democratic Republic of Congo)', NULL, 4293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbo (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 427.90 WHERE [Code] = 'zmw' END +SET [Description] = 'Mbo (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 4293.00 WHERE [Code] = 'zmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moi', 'Mboi', NULL, 428.00) END +VALUES ('moi', 'Mboi', NULL, 4294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mboi', [Definition] = NULL, [SortOrder] = 428.00 WHERE [Code] = 'moi' END +SET [Description] = 'Mboi', [Definition] = NULL, [SortOrder] = 4294.00 WHERE [Code] = 'moi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdu', 'Mboko', NULL, 428.10) END +VALUES ('mdu', 'Mboko', NULL, 4295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mboko', [Definition] = NULL, [SortOrder] = 428.10 WHERE [Code] = 'mdu' END +SET [Description] = 'Mboko', [Definition] = NULL, [SortOrder] = 4295.00 WHERE [Code] = 'mdu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdq', 'Mbole', NULL, 428.20) END +VALUES ('mdq', 'Mbole', NULL, 4296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbole', [Definition] = NULL, [SortOrder] = 428.20 WHERE [Code] = 'mdq' END +SET [Description] = 'Mbole', [Definition] = NULL, [SortOrder] = 4296.00 WHERE [Code] = 'mdq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmb', 'Mbonga', NULL, 428.30) END +VALUES ('xmb', 'Mbonga', NULL, 4297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbonga', [Definition] = NULL, [SortOrder] = 428.30 WHERE [Code] = 'xmb' END +SET [Description] = 'Mbonga', [Definition] = NULL, [SortOrder] = 4297.00 WHERE [Code] = 'xmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgu', 'Mbongno', NULL, 428.40) END +VALUES ('bgu', 'Mbongno', NULL, 4298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbongno', [Definition] = NULL, [SortOrder] = 428.40 WHERE [Code] = 'bgu' END +SET [Description] = 'Mbongno', [Definition] = NULL, [SortOrder] = 4298.00 WHERE [Code] = 'bgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdw', 'Mbosi', NULL, 428.50) END +VALUES ('mdw', 'Mbosi', NULL, 4299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbosi', [Definition] = NULL, [SortOrder] = 428.50 WHERE [Code] = 'mdw' END +SET [Description] = 'Mbosi', [Definition] = NULL, [SortOrder] = 4299.00 WHERE [Code] = 'mdw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxo', 'Mbowe', NULL, 428.60) END +VALUES ('mxo', 'Mbowe', NULL, 4300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbowe', [Definition] = NULL, [SortOrder] = 428.60 WHERE [Code] = 'mxo' END +SET [Description] = 'Mbowe', [Definition] = NULL, [SortOrder] = 4300.00 WHERE [Code] = 'mxo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mka', 'Mbre', NULL, 428.70) END +VALUES ('mka', 'Mbre', NULL, 4301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbre', [Definition] = NULL, [SortOrder] = 428.70 WHERE [Code] = 'mka' END +SET [Description] = 'Mbre', [Definition] = NULL, [SortOrder] = 4301.00 WHERE [Code] = 'mka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmd', 'Mbudum', NULL, 428.80) END +VALUES ('xmd', 'Mbudum', NULL, 4302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbudum', [Definition] = NULL, [SortOrder] = 428.80 WHERE [Code] = 'xmd' END +SET [Description] = 'Mbudum', [Definition] = NULL, [SortOrder] = 4302.00 WHERE [Code] = 'xmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhd', 'Mbugu', NULL, 428.90) END +VALUES ('mhd', 'Mbugu', NULL, 4303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbugu', [Definition] = NULL, [SortOrder] = 428.90 WHERE [Code] = 'mhd' END +SET [Description] = 'Mbugu', [Definition] = NULL, [SortOrder] = 4303.00 WHERE [Code] = 'mhd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgz', 'Mbugwe', NULL, 429.00) END +VALUES ('mgz', 'Mbugwe', NULL, 4304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbugwe', [Definition] = NULL, [SortOrder] = 429.00 WHERE [Code] = 'mgz' END +SET [Description] = 'Mbugwe', [Definition] = NULL, [SortOrder] = 4304.00 WHERE [Code] = 'mgz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpc', 'Mbuk', NULL, 429.10) END +VALUES ('bpc', 'Mbuk', NULL, 4305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbuk', [Definition] = NULL, [SortOrder] = 429.10 WHERE [Code] = 'bpc' END +SET [Description] = 'Mbuk', [Definition] = NULL, [SortOrder] = 4305.00 WHERE [Code] = 'bpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqb', 'Mbuko', NULL, 429.20) END +VALUES ('mqb', 'Mbuko', NULL, 4306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbuko', [Definition] = NULL, [SortOrder] = 429.20 WHERE [Code] = 'mqb' END +SET [Description] = 'Mbuko', [Definition] = NULL, [SortOrder] = 4306.00 WHERE [Code] = 'mqb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhw', 'Mbukushu', NULL, 429.30) END +VALUES ('mhw', 'Mbukushu', NULL, 4307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbukushu', [Definition] = NULL, [SortOrder] = 429.30 WHERE [Code] = 'mhw' END +SET [Description] = 'Mbukushu', [Definition] = NULL, [SortOrder] = 4307.00 WHERE [Code] = 'mhw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mna', 'Mbula', NULL, 429.40) END +VALUES ('mna', 'Mbula', NULL, 4308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbula', [Definition] = NULL, [SortOrder] = 429.40 WHERE [Code] = 'mna' END +SET [Description] = 'Mbula', [Definition] = NULL, [SortOrder] = 4308.00 WHERE [Code] = 'mna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbu', 'Mbula-Bwazza', NULL, 429.50) END +VALUES ('mbu', 'Mbula-Bwazza', NULL, 4309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbula-Bwazza', [Definition] = NULL, [SortOrder] = 429.50 WHERE [Code] = 'mbu' END +SET [Description] = 'Mbula-Bwazza', [Definition] = NULL, [SortOrder] = 4309.00 WHERE [Code] = 'mbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlb', 'Mbule', NULL, 429.60) END +VALUES ('mlb', 'Mbule', NULL, 4310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbule', [Definition] = NULL, [SortOrder] = 429.60 WHERE [Code] = 'mlb' END +SET [Description] = 'Mbule', [Definition] = NULL, [SortOrder] = 4310.00 WHERE [Code] = 'mlb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbv', 'Mbulungish', NULL, 429.70) END +VALUES ('mbv', 'Mbulungish', NULL, 4311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbulungish', [Definition] = NULL, [SortOrder] = 429.70 WHERE [Code] = 'mbv' END +SET [Description] = 'Mbulungish', [Definition] = NULL, [SortOrder] = 4311.00 WHERE [Code] = 'mbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdd', 'Mbum', NULL, 429.80) END +VALUES ('mdd', 'Mbum', NULL, 4312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbum', [Definition] = NULL, [SortOrder] = 429.80 WHERE [Code] = 'mdd' END +SET [Description] = 'Mbum', [Definition] = NULL, [SortOrder] = 4312.00 WHERE [Code] = 'mdd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mck', 'Mbunda', NULL, 429.90) END +VALUES ('mck', 'Mbunda', NULL, 4313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbunda', [Definition] = NULL, [SortOrder] = 429.90 WHERE [Code] = 'mck' END +SET [Description] = 'Mbunda', [Definition] = NULL, [SortOrder] = 4313.00 WHERE [Code] = 'mck' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgy', 'Mbunga', NULL, 430.00) END +VALUES ('mgy', 'Mbunga', NULL, 4314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbunga', [Definition] = NULL, [SortOrder] = 430.00 WHERE [Code] = 'mgy' END +SET [Description] = 'Mbunga', [Definition] = NULL, [SortOrder] = 4314.00 WHERE [Code] = 'mgy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbt', 'Mburku', NULL, 430.10) END +VALUES ('bbt', 'Mburku', NULL, 4315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mburku', [Definition] = NULL, [SortOrder] = 430.10 WHERE [Code] = 'bbt' END +SET [Description] = 'Mburku', [Definition] = NULL, [SortOrder] = 4315.00 WHERE [Code] = 'bbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfu', 'Mbwela', NULL, 430.20) END +VALUES ('mfu', 'Mbwela', NULL, 4316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbwela', [Definition] = NULL, [SortOrder] = 430.20 WHERE [Code] = 'mfu' END +SET [Description] = 'Mbwela', [Definition] = NULL, [SortOrder] = 4316.00 WHERE [Code] = 'mfu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gun', 'Mbyá Guaraní', NULL, 430.30) END +VALUES ('gun', 'Mbyá Guaraní', NULL, 4317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mbyá Guaraní', [Definition] = NULL, [SortOrder] = 430.30 WHERE [Code] = 'gun' END +SET [Description] = 'Mbyá Guaraní', [Definition] = NULL, [SortOrder] = 4317.00 WHERE [Code] = 'gun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mym', 'Me''en', NULL, 430.40) END +VALUES ('mym', 'Me''en', NULL, 4318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Me''en', [Definition] = NULL, [SortOrder] = 430.40 WHERE [Code] = 'mym' END +SET [Description] = 'Me''en', [Definition] = NULL, [SortOrder] = 4318.00 WHERE [Code] = 'mym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjm', 'Medebur', NULL, 430.50) END +VALUES ('mjm', 'Medebur', NULL, 4319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Medebur', [Definition] = NULL, [SortOrder] = 430.50 WHERE [Code] = 'mjm' END +SET [Description] = 'Medebur', [Definition] = NULL, [SortOrder] = 4319.00 WHERE [Code] = 'mjm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmf', 'Medefaidrin', NULL, 430.60) END +VALUES ('dmf', 'Medefaidrin', NULL, 4320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Medefaidrin', [Definition] = NULL, [SortOrder] = 430.60 WHERE [Code] = 'dmf' END +SET [Description] = 'Medefaidrin', [Definition] = NULL, [SortOrder] = 4320.00 WHERE [Code] = 'dmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mue', 'Media Lengua', NULL, 430.70) END +VALUES ('mue', 'Media Lengua', NULL, 4321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Media Lengua', [Definition] = NULL, [SortOrder] = 430.70 WHERE [Code] = 'mue' END +SET [Description] = 'Media Lengua', [Definition] = NULL, [SortOrder] = 4321.00 WHERE [Code] = 'mue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xme', 'Median', NULL, 430.80) END +VALUES ('xme', 'Median', NULL, 4322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Median', [Definition] = NULL, [SortOrder] = 430.80 WHERE [Code] = 'xme' END +SET [Description] = 'Median', [Definition] = NULL, [SortOrder] = 4322.00 WHERE [Code] = 'xme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mud', 'Mednyj Aleut', NULL, 430.90) END +VALUES ('mud', 'Mednyj Aleut', NULL, 4323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mednyj Aleut', [Definition] = NULL, [SortOrder] = 430.90 WHERE [Code] = 'mud' END +SET [Description] = 'Mednyj Aleut', [Definition] = NULL, [SortOrder] = 4323.00 WHERE [Code] = 'mud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byv', 'Medumba', NULL, 431.00) END +VALUES ('byv', 'Medumba', NULL, 4324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Medumba', [Definition] = NULL, [SortOrder] = 431.00 WHERE [Code] = 'byv' END +SET [Description] = 'Medumba', [Definition] = NULL, [SortOrder] = 4324.00 WHERE [Code] = 'byv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfj', 'Mefele', NULL, 431.10) END +VALUES ('mfj', 'Mefele', NULL, 4325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mefele', [Definition] = NULL, [SortOrder] = 431.10 WHERE [Code] = 'mfj' END +SET [Description] = 'Mefele', [Definition] = NULL, [SortOrder] = 4325.00 WHERE [Code] = 'mfj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mef', 'Megam', NULL, 431.20) END +VALUES ('mef', 'Megam', NULL, 4326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Megam', [Definition] = NULL, [SortOrder] = 431.20 WHERE [Code] = 'mef' END +SET [Description] = 'Megam', [Definition] = NULL, [SortOrder] = 4326.00 WHERE [Code] = 'mef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruq', 'Megleno Romanian', NULL, 431.30) END +VALUES ('ruq', 'Megleno Romanian', NULL, 4327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Megleno Romanian', [Definition] = NULL, [SortOrder] = 431.30 WHERE [Code] = 'ruq' END +SET [Description] = 'Megleno Romanian', [Definition] = NULL, [SortOrder] = 4327.00 WHERE [Code] = 'ruq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nux', 'Mehek', NULL, 431.40) END +VALUES ('nux', 'Mehek', NULL, 4328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mehek', [Definition] = NULL, [SortOrder] = 431.40 WHERE [Code] = 'nux' END +SET [Description] = 'Mehek', [Definition] = NULL, [SortOrder] = 4328.00 WHERE [Code] = 'nux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmh', 'Mehináku', NULL, 431.50) END +VALUES ('mmh', 'Mehináku', NULL, 4329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mehináku', [Definition] = NULL, [SortOrder] = 431.50 WHERE [Code] = 'mmh' END +SET [Description] = 'Mehináku', [Definition] = NULL, [SortOrder] = 4329.00 WHERE [Code] = 'mmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdq', 'Mehri', NULL, 431.60) END +VALUES ('gdq', 'Mehri', NULL, 4330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mehri', [Definition] = NULL, [SortOrder] = 431.60 WHERE [Code] = 'gdq' END +SET [Description] = 'Mehri', [Definition] = NULL, [SortOrder] = 4330.00 WHERE [Code] = 'gdq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mek', 'Mekeo', NULL, 431.70) END +VALUES ('mek', 'Mekeo', NULL, 4331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mekeo', [Definition] = NULL, [SortOrder] = 431.70 WHERE [Code] = 'mek' END +SET [Description] = 'Mekeo', [Definition] = NULL, [SortOrder] = 4331.00 WHERE [Code] = 'mek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvk', 'Mekmek', NULL, 431.80) END +VALUES ('mvk', 'Mekmek', NULL, 4332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mekmek', [Definition] = NULL, [SortOrder] = 431.80 WHERE [Code] = 'mvk' END +SET [Description] = 'Mekmek', [Definition] = NULL, [SortOrder] = 4332.00 WHERE [Code] = 'mvk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msf', 'Mekwei', NULL, 431.90) END +VALUES ('msf', 'Mekwei', NULL, 4333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mekwei', [Definition] = NULL, [SortOrder] = 431.90 WHERE [Code] = 'msf' END +SET [Description] = 'Mekwei', [Definition] = NULL, [SortOrder] = 4333.00 WHERE [Code] = 'msf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hkn', 'Mel-Khaonh', NULL, 432.00) END +VALUES ('hkn', 'Mel-Khaonh', NULL, 4334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mel-Khaonh', [Definition] = NULL, [SortOrder] = 432.00 WHERE [Code] = 'hkn' END +SET [Description] = 'Mel-Khaonh', [Definition] = NULL, [SortOrder] = 4334.00 WHERE [Code] = 'hkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxe', 'Mele-Fila', NULL, 432.10) END +VALUES ('mxe', 'Mele-Fila', NULL, 4335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mele-Fila', [Definition] = NULL, [SortOrder] = 432.10 WHERE [Code] = 'mxe' END +SET [Description] = 'Mele-Fila', [Definition] = NULL, [SortOrder] = 4335.00 WHERE [Code] = 'mxe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfx', 'Melo', NULL, 432.20) END +VALUES ('mfx', 'Melo', NULL, 4336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Melo', [Definition] = NULL, [SortOrder] = 432.20 WHERE [Code] = 'mfx' END +SET [Description] = 'Melo', [Definition] = NULL, [SortOrder] = 4336.00 WHERE [Code] = 'mfx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'med') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('med', 'Melpa', NULL, 432.30) END +VALUES ('med', 'Melpa', NULL, 4337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Melpa', [Definition] = NULL, [SortOrder] = 432.30 WHERE [Code] = 'med' END +SET [Description] = 'Melpa', [Definition] = NULL, [SortOrder] = 4337.00 WHERE [Code] = 'med' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mby', 'Memoni', NULL, 432.40) END +VALUES ('mby', 'Memoni', NULL, 4338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Memoni', [Definition] = NULL, [SortOrder] = 432.40 WHERE [Code] = 'mby' END +SET [Description] = 'Memoni', [Definition] = NULL, [SortOrder] = 4338.00 WHERE [Code] = 'mby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkd', 'Mendalam Kayan', NULL, 432.50) END +VALUES ('xkd', 'Mendalam Kayan', NULL, 4339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mendalam Kayan', [Definition] = NULL, [SortOrder] = 432.50 WHERE [Code] = 'xkd' END +SET [Description] = 'Mendalam Kayan', [Definition] = NULL, [SortOrder] = 4339.00 WHERE [Code] = 'xkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfd', 'Mendankwe-Nkwen', NULL, 432.60) END +VALUES ('mfd', 'Mendankwe-Nkwen', NULL, 4340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mendankwe-Nkwen', [Definition] = NULL, [SortOrder] = 432.60 WHERE [Code] = 'mfd' END +SET [Description] = 'Mendankwe-Nkwen', [Definition] = NULL, [SortOrder] = 4340.00 WHERE [Code] = 'mfd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sim', 'Mende (Papua New Guinea)', NULL, 432.70) END +VALUES ('sim', 'Mende (Papua New Guinea)', NULL, 4341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mende (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 432.70 WHERE [Code] = 'sim' END +SET [Description] = 'Mende (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 4341.00 WHERE [Code] = 'sim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'men') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('men', 'Mende (Sierra Leone)', NULL, 432.80) END +VALUES ('men', 'Mende (Sierra Leone)', NULL, 4342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mende (Sierra Leone)', [Definition] = NULL, [SortOrder] = 432.80 WHERE [Code] = 'men' END +SET [Description] = 'Mende (Sierra Leone)', [Definition] = NULL, [SortOrder] = 4342.00 WHERE [Code] = 'men' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmg', 'Mengaka', NULL, 432.90) END +VALUES ('xmg', 'Mengaka', NULL, 4343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mengaka', [Definition] = NULL, [SortOrder] = 432.90 WHERE [Code] = 'xmg' END +SET [Description] = 'Mengaka', [Definition] = NULL, [SortOrder] = 4343.00 WHERE [Code] = 'xmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mee', 'Mengen', NULL, 433.00) END +VALUES ('mee', 'Mengen', NULL, 4344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mengen', [Definition] = NULL, [SortOrder] = 433.00 WHERE [Code] = 'mee' END +SET [Description] = 'Mengen', [Definition] = NULL, [SortOrder] = 4344.00 WHERE [Code] = 'mee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mct', 'Mengisa', NULL, 433.10) END +VALUES ('mct', 'Mengisa', NULL, 4345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mengisa', [Definition] = NULL, [SortOrder] = 433.10 WHERE [Code] = 'mct' END +SET [Description] = 'Mengisa', [Definition] = NULL, [SortOrder] = 4345.00 WHERE [Code] = 'mct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnr', 'Ménik', NULL, 433.20) END +VALUES ('tnr', 'Ménik', NULL, 4346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ménik', [Definition] = NULL, [SortOrder] = 433.20 WHERE [Code] = 'tnr' END +SET [Description] = 'Ménik', [Definition] = NULL, [SortOrder] = 4346.00 WHERE [Code] = 'tnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mea', 'Menka', NULL, 433.30) END +VALUES ('mea', 'Menka', NULL, 4347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Menka', [Definition] = NULL, [SortOrder] = 433.30 WHERE [Code] = 'mea' END +SET [Description] = 'Menka', [Definition] = NULL, [SortOrder] = 4347.00 WHERE [Code] = 'mea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mez', 'Menominee', NULL, 433.40) END +VALUES ('mez', 'Menominee', NULL, 4348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Menominee', [Definition] = NULL, [SortOrder] = 433.40 WHERE [Code] = 'mez' END +SET [Description] = 'Menominee', [Definition] = NULL, [SortOrder] = 4348.00 WHERE [Code] = 'mez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwv', 'Mentawai', NULL, 433.50) END +VALUES ('mwv', 'Mentawai', NULL, 4349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mentawai', [Definition] = NULL, [SortOrder] = 433.50 WHERE [Code] = 'mwv' END +SET [Description] = 'Mentawai', [Definition] = NULL, [SortOrder] = 4349.00 WHERE [Code] = 'mwv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcr', 'Menya', NULL, 433.60) END +VALUES ('mcr', 'Menya', NULL, 4350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Menya', [Definition] = NULL, [SortOrder] = 433.60 WHERE [Code] = 'mcr' END +SET [Description] = 'Menya', [Definition] = NULL, [SortOrder] = 4350.00 WHERE [Code] = 'mcr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvx', 'Meoswar', NULL, 433.70) END +VALUES ('mvx', 'Meoswar', NULL, 4351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meoswar', [Definition] = NULL, [SortOrder] = 433.70 WHERE [Code] = 'mvx' END +SET [Description] = 'Meoswar', [Definition] = NULL, [SortOrder] = 4351.00 WHERE [Code] = 'mvx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnu', 'Mer', NULL, 433.80) END +VALUES ('mnu', 'Mer', NULL, 4352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mer', [Definition] = NULL, [SortOrder] = 433.80 WHERE [Code] = 'mnu' END +SET [Description] = 'Mer', [Definition] = NULL, [SortOrder] = 4352.00 WHERE [Code] = 'mnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxm', 'Meramera', NULL, 433.90) END +VALUES ('mxm', 'Meramera', NULL, 4353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meramera', [Definition] = NULL, [SortOrder] = 433.90 WHERE [Code] = 'mxm' END +SET [Description] = 'Meramera', [Definition] = NULL, [SortOrder] = 4353.00 WHERE [Code] = 'mxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmb', 'Merei', NULL, 434.00) END +VALUES ('lmb', 'Merei', NULL, 4354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Merei', [Definition] = NULL, [SortOrder] = 434.00 WHERE [Code] = 'lmb' END +SET [Description] = 'Merei', [Definition] = NULL, [SortOrder] = 4354.00 WHERE [Code] = 'lmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meq', 'Merey', NULL, 434.10) END +VALUES ('meq', 'Merey', NULL, 4355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Merey', [Definition] = NULL, [SortOrder] = 434.10 WHERE [Code] = 'meq' END +SET [Description] = 'Merey', [Definition] = NULL, [SortOrder] = 4355.00 WHERE [Code] = 'meq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulk', 'Meriam Mir', NULL, 434.20) END +VALUES ('ulk', 'Meriam Mir', NULL, 4356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meriam Mir', [Definition] = NULL, [SortOrder] = 434.20 WHERE [Code] = 'ulk' END +SET [Description] = 'Meriam Mir', [Definition] = NULL, [SortOrder] = 4356.00 WHERE [Code] = 'ulk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrm', 'Merlav', NULL, 434.30) END +VALUES ('mrm', 'Merlav', NULL, 4357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Merlav', [Definition] = NULL, [SortOrder] = 434.30 WHERE [Code] = 'mrm' END +SET [Description] = 'Merlav', [Definition] = NULL, [SortOrder] = 4357.00 WHERE [Code] = 'mrm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmr', 'Meroitic', NULL, 434.40) END +VALUES ('xmr', 'Meroitic', NULL, 4358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meroitic', [Definition] = NULL, [SortOrder] = 434.40 WHERE [Code] = 'xmr' END +SET [Description] = 'Meroitic', [Definition] = NULL, [SortOrder] = 4358.00 WHERE [Code] = 'xmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mer', 'Meru', NULL, 434.50) END +VALUES ('mer', 'Meru', NULL, 4359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meru', [Definition] = NULL, [SortOrder] = 434.50 WHERE [Code] = 'mer' END +SET [Description] = 'Meru', [Definition] = NULL, [SortOrder] = 4359.00 WHERE [Code] = 'mer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wry', 'Merwari', NULL, 434.60) END +VALUES ('wry', 'Merwari', NULL, 4360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Merwari', [Definition] = NULL, [SortOrder] = 434.60 WHERE [Code] = 'wry' END +SET [Description] = 'Merwari', [Definition] = NULL, [SortOrder] = 4360.00 WHERE [Code] = 'wry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iyo', 'Mesaka', NULL, 434.70) END +VALUES ('iyo', 'Mesaka', NULL, 4361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesaka', [Definition] = NULL, [SortOrder] = 434.70 WHERE [Code] = 'iyo' END +SET [Description] = 'Mesaka', [Definition] = NULL, [SortOrder] = 4361.00 WHERE [Code] = 'iyo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apm', 'Mescalero-Chiricahua Apache', NULL, 434.80) END +VALUES ('apm', 'Mescalero-Chiricahua Apache', NULL, 4362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mescalero-Chiricahua Apache', [Definition] = NULL, [SortOrder] = 434.80 WHERE [Code] = 'apm' END +SET [Description] = 'Mescalero-Chiricahua Apache', [Definition] = NULL, [SortOrder] = 4362.00 WHERE [Code] = 'apm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mci', 'Mese', NULL, 434.90) END +VALUES ('mci', 'Mese', NULL, 4363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mese', [Definition] = NULL, [SortOrder] = 434.90 WHERE [Code] = 'mci' END +SET [Description] = 'Mese', [Definition] = NULL, [SortOrder] = 4363.00 WHERE [Code] = 'mci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sac', 'Meskwaki', NULL, 435.00) END +VALUES ('sac', 'Meskwaki', NULL, 4364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meskwaki', [Definition] = NULL, [SortOrder] = 435.00 WHERE [Code] = 'sac' END +SET [Description] = 'Meskwaki', [Definition] = NULL, [SortOrder] = 4364.00 WHERE [Code] = 'sac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zim', 'Mesme', NULL, 435.10) END +VALUES ('zim', 'Mesme', NULL, 4365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesme', [Definition] = NULL, [SortOrder] = 435.10 WHERE [Code] = 'zim' END +SET [Description] = 'Mesme', [Definition] = NULL, [SortOrder] = 4365.00 WHERE [Code] = 'zim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mys', 'Mesmes', NULL, 435.20) END +VALUES ('mys', 'Mesmes', NULL, 4366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesmes', [Definition] = NULL, [SortOrder] = 435.20 WHERE [Code] = 'mys' END +SET [Description] = 'Mesmes', [Definition] = NULL, [SortOrder] = 4366.00 WHERE [Code] = 'mys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acm', 'Mesopotamian Arabic', NULL, 435.30) END +VALUES ('acm', 'Mesopotamian Arabic', NULL, 4367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesopotamian Arabic', [Definition] = NULL, [SortOrder] = 435.30 WHERE [Code] = 'acm' END +SET [Description] = 'Mesopotamian Arabic', [Definition] = NULL, [SortOrder] = 4367.00 WHERE [Code] = 'acm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvz', 'Mesqan', NULL, 435.40) END +VALUES ('mvz', 'Mesqan', NULL, 4368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mesqan', [Definition] = NULL, [SortOrder] = 435.40 WHERE [Code] = 'mvz' END +SET [Description] = 'Mesqan', [Definition] = NULL, [SortOrder] = 4368.00 WHERE [Code] = 'mvz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cms', 'Messapic', NULL, 435.50) END +VALUES ('cms', 'Messapic', NULL, 4369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Messapic', [Definition] = NULL, [SortOrder] = 435.50 WHERE [Code] = 'cms' END +SET [Description] = 'Messapic', [Definition] = NULL, [SortOrder] = 4369.00 WHERE [Code] = 'cms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgo', 'Meta''', NULL, 435.60) END +VALUES ('mgo', 'Meta''', NULL, 4370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meta''', [Definition] = NULL, [SortOrder] = 435.60 WHERE [Code] = 'mgo' END +SET [Description] = 'Meta''', [Definition] = NULL, [SortOrder] = 4370.00 WHERE [Code] = 'mgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxv', 'Metlatónoc Mixtec', NULL, 435.70) END +VALUES ('mxv', 'Metlatónoc Mixtec', NULL, 4371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Metlatónoc Mixtec', [Definition] = NULL, [SortOrder] = 435.70 WHERE [Code] = 'mxv' END +SET [Description] = 'Metlatónoc Mixtec', [Definition] = NULL, [SortOrder] = 4371.00 WHERE [Code] = 'mxv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtr', 'Mewari', NULL, 435.80) END +VALUES ('mtr', 'Mewari', NULL, 4372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mewari', [Definition] = NULL, [SortOrder] = 435.80 WHERE [Code] = 'mtr' END +SET [Description] = 'Mewari', [Definition] = NULL, [SortOrder] = 4372.00 WHERE [Code] = 'mtr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wtm', 'Mewati', NULL, 435.90) END +VALUES ('wtm', 'Mewati', NULL, 4373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mewati', [Definition] = NULL, [SortOrder] = 435.90 WHERE [Code] = 'wtm' END +SET [Description] = 'Mewati', [Definition] = NULL, [SortOrder] = 4373.00 WHERE [Code] = 'wtm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfs', 'Mexican Sign Language', NULL, 436.00) END +VALUES ('mfs', 'Mexican Sign Language', NULL, 4374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mexican Sign Language', [Definition] = NULL, [SortOrder] = 436.00 WHERE [Code] = 'mfs' END +SET [Description] = 'Mexican Sign Language', [Definition] = NULL, [SortOrder] = 4374.00 WHERE [Code] = 'mfs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mej', 'Meyah', NULL, 436.10) END +VALUES ('mej', 'Meyah', NULL, 4375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Meyah', [Definition] = NULL, [SortOrder] = 436.10 WHERE [Code] = 'mej' END +SET [Description] = 'Meyah', [Definition] = NULL, [SortOrder] = 4375.00 WHERE [Code] = 'mej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbe', 'Mezontla Popoloca', NULL, 436.20) END +VALUES ('pbe', 'Mezontla Popoloca', NULL, 4376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mezontla Popoloca', [Definition] = NULL, [SortOrder] = 436.20 WHERE [Code] = 'pbe' END +SET [Description] = 'Mezontla Popoloca', [Definition] = NULL, [SortOrder] = 4376.00 WHERE [Code] = 'pbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ote') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ote', 'Mezquital Otomi', NULL, 436.30) END +VALUES ('ote', 'Mezquital Otomi', NULL, 4377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mezquital Otomi', [Definition] = NULL, [SortOrder] = 436.30 WHERE [Code] = 'ote' END +SET [Description] = 'Mezquital Otomi', [Definition] = NULL, [SortOrder] = 4377.00 WHERE [Code] = 'ote' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmf', 'Mfinu', NULL, 436.40) END +VALUES ('zmf', 'Mfinu', NULL, 4378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mfinu', [Definition] = NULL, [SortOrder] = 436.40 WHERE [Code] = 'zmf' END +SET [Description] = 'Mfinu', [Definition] = NULL, [SortOrder] = 4378.00 WHERE [Code] = 'zmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfu', 'Mfumte', NULL, 436.50) END +VALUES ('nfu', 'Mfumte', NULL, 4379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mfumte', [Definition] = NULL, [SortOrder] = 436.50 WHERE [Code] = 'nfu' END +SET [Description] = 'Mfumte', [Definition] = NULL, [SortOrder] = 4379.00 WHERE [Code] = 'nfu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmz', 'Mgbolizhia', NULL, 436.60) END +VALUES ('gmz', 'Mgbolizhia', NULL, 4380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mgbolizhia', [Definition] = NULL, [SortOrder] = 436.60 WHERE [Code] = 'gmz' END +SET [Description] = 'Mgbolizhia', [Definition] = NULL, [SortOrder] = 4380.00 WHERE [Code] = 'gmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mic', 'Mi''kmaq', NULL, 436.70) END +VALUES ('mic', 'Mi''kmaq', NULL, 4381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mi''kmaq', [Definition] = NULL, [SortOrder] = 436.70 WHERE [Code] = 'mic' END +SET [Description] = 'Mi''kmaq', [Definition] = NULL, [SortOrder] = 4381.00 WHERE [Code] = 'mic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zam', 'Miahuatlán Zapotec', NULL, 436.80) END +VALUES ('zam', 'Miahuatlán Zapotec', NULL, 4382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miahuatlán Zapotec', [Definition] = NULL, [SortOrder] = 436.80 WHERE [Code] = 'zam' END +SET [Description] = 'Miahuatlán Zapotec', [Definition] = NULL, [SortOrder] = 4382.00 WHERE [Code] = 'zam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mia', 'Miami', NULL, 436.90) END +VALUES ('mia', 'Miami', NULL, 4383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miami', [Definition] = NULL, [SortOrder] = 436.90 WHERE [Code] = 'mia' END +SET [Description] = 'Miami', [Definition] = NULL, [SortOrder] = 4383.00 WHERE [Code] = 'mia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpt', 'Mian', NULL, 437.00) END +VALUES ('mpt', 'Mian', NULL, 4384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mian', [Definition] = NULL, [SortOrder] = 437.00 WHERE [Code] = 'mpt' END +SET [Description] = 'Mian', [Definition] = NULL, [SortOrder] = 4384.00 WHERE [Code] = 'mpt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pla', 'Miani', NULL, 437.10) END +VALUES ('pla', 'Miani', NULL, 4385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miani', [Definition] = NULL, [SortOrder] = 437.10 WHERE [Code] = 'pla' END +SET [Description] = 'Miani', [Definition] = NULL, [SortOrder] = 4385.00 WHERE [Code] = 'pla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crg', 'Michif', NULL, 437.20) END +VALUES ('crg', 'Michif', NULL, 4386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Michif', [Definition] = NULL, [SortOrder] = 437.20 WHERE [Code] = 'crg' END +SET [Description] = 'Michif', [Definition] = NULL, [SortOrder] = 4386.00 WHERE [Code] = 'crg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmm', 'Michigamea', NULL, 437.30) END +VALUES ('cmm', 'Michigamea', NULL, 4387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Michigamea', [Definition] = NULL, [SortOrder] = 437.30 WHERE [Code] = 'cmm' END +SET [Description] = 'Michigamea', [Definition] = NULL, [SortOrder] = 4387.00 WHERE [Code] = 'cmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmc', 'Michoacán Mazahua', NULL, 437.40) END +VALUES ('mmc', 'Michoacán Mazahua', NULL, 4388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Michoacán Mazahua', [Definition] = NULL, [SortOrder] = 437.40 WHERE [Code] = 'mmc' END +SET [Description] = 'Michoacán Mazahua', [Definition] = NULL, [SortOrder] = 4388.00 WHERE [Code] = 'mmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncl', 'Michoacán Nahuatl', NULL, 437.50) END +VALUES ('ncl', 'Michoacán Nahuatl', NULL, 4389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Michoacán Nahuatl', [Definition] = NULL, [SortOrder] = 437.50 WHERE [Code] = 'ncl' END +SET [Description] = 'Michoacán Nahuatl', [Definition] = NULL, [SortOrder] = 4389.00 WHERE [Code] = 'ncl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnt', 'Mid Grand Valley Dani', NULL, 437.60) END +VALUES ('dnt', 'Mid Grand Valley Dani', NULL, 4390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mid Grand Valley Dani', [Definition] = NULL, [SortOrder] = 437.60 WHERE [Code] = 'dnt' END +SET [Description] = 'Mid Grand Valley Dani', [Definition] = NULL, [SortOrder] = 4390.00 WHERE [Code] = 'dnt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bjo', 'Mid-Southern Banda', NULL, 437.70) END +VALUES ('bjo', 'Mid-Southern Banda', NULL, 4391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mid-Southern Banda', [Definition] = NULL, [SortOrder] = 437.70 WHERE [Code] = 'bjo' END +SET [Description] = 'Mid-Southern Banda', [Definition] = NULL, [SortOrder] = 4391.00 WHERE [Code] = 'bjo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axm', 'Middle Armenian', NULL, 437.80) END +VALUES ('axm', 'Middle Armenian', NULL, 4392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Armenian', [Definition] = NULL, [SortOrder] = 437.80 WHERE [Code] = 'axm' END +SET [Description] = 'Middle Armenian', [Definition] = NULL, [SortOrder] = 4392.00 WHERE [Code] = 'axm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xbm', 'Middle Breton', NULL, 437.90) END +VALUES ('xbm', 'Middle Breton', NULL, 4393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Breton', [Definition] = NULL, [SortOrder] = 437.90 WHERE [Code] = 'xbm' END +SET [Description] = 'Middle Breton', [Definition] = NULL, [SortOrder] = 4393.00 WHERE [Code] = 'xbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnx', 'Middle Cornish', NULL, 438.00) END +VALUES ('cnx', 'Middle Cornish', NULL, 4394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Cornish', [Definition] = NULL, [SortOrder] = 438.00 WHERE [Code] = 'cnx' END +SET [Description] = 'Middle Cornish', [Definition] = NULL, [SortOrder] = 4394.00 WHERE [Code] = 'cnx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dum', 'Middle Dutch (ca. 1050-1350)', NULL, 438.10) END +VALUES ('dum', 'Middle Dutch (ca. 1050-1350)', NULL, 4395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Dutch (ca. 1050-1350)', [Definition] = NULL, [SortOrder] = 438.10 WHERE [Code] = 'dum' END +SET [Description] = 'Middle Dutch (ca. 1050-1350)', [Definition] = NULL, [SortOrder] = 4395.00 WHERE [Code] = 'dum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enm', 'Middle English (1100-1500)', NULL, 438.20) END +VALUES ('enm', 'Middle English (1100-1500)', NULL, 4396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle English (1100-1500)', [Definition] = NULL, [SortOrder] = 438.20 WHERE [Code] = 'enm' END +SET [Description] = 'Middle English (1100-1500)', [Definition] = NULL, [SortOrder] = 4396.00 WHERE [Code] = 'enm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frm', 'Middle French (ca. 1400-1600)', NULL, 438.30) END +VALUES ('frm', 'Middle French (ca. 1400-1600)', NULL, 4397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle French (ca. 1400-1600)', [Definition] = NULL, [SortOrder] = 438.30 WHERE [Code] = 'frm' END +SET [Description] = 'Middle French (ca. 1400-1600)', [Definition] = NULL, [SortOrder] = 4397.00 WHERE [Code] = 'frm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmh', 'Middle High German (ca. 1050-1500)', NULL, 438.40) END +VALUES ('gmh', 'Middle High German (ca. 1050-1500)', NULL, 4398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle High German (ca. 1050-1500)', [Definition] = NULL, [SortOrder] = 438.40 WHERE [Code] = 'gmh' END +SET [Description] = 'Middle High German (ca. 1050-1500)', [Definition] = NULL, [SortOrder] = 4398.00 WHERE [Code] = 'gmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'htx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('htx', 'Middle Hittite', NULL, 438.50) END +VALUES ('htx', 'Middle Hittite', NULL, 4399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Hittite', [Definition] = NULL, [SortOrder] = 438.50 WHERE [Code] = 'htx' END +SET [Description] = 'Middle Hittite', [Definition] = NULL, [SortOrder] = 4399.00 WHERE [Code] = 'htx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mga', 'Middle Irish (900-1200)', NULL, 438.60) END +VALUES ('mga', 'Middle Irish (900-1200)', NULL, 4400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Irish (900-1200)', [Definition] = NULL, [SortOrder] = 438.60 WHERE [Code] = 'mga' END +SET [Description] = 'Middle Irish (900-1200)', [Definition] = NULL, [SortOrder] = 4400.00 WHERE [Code] = 'mga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xhm', 'Middle Khmer (1400 to 1850 CE)', NULL, 438.70) END +VALUES ('xhm', 'Middle Khmer (1400 to 1850 CE)', NULL, 4401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Khmer (1400 to 1850 CE)', [Definition] = NULL, [SortOrder] = 438.70 WHERE [Code] = 'xhm' END +SET [Description] = 'Middle Khmer (1400 to 1850 CE)', [Definition] = NULL, [SortOrder] = 4401.00 WHERE [Code] = 'xhm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okm', 'Middle Korean (10th-16th cent.)', NULL, 438.80) END +VALUES ('okm', 'Middle Korean (10th-16th cent.)', NULL, 4402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Korean (10th-16th cent.)', [Definition] = NULL, [SortOrder] = 438.80 WHERE [Code] = 'okm' END +SET [Description] = 'Middle Korean (10th-16th cent.)', [Definition] = NULL, [SortOrder] = 4402.00 WHERE [Code] = 'okm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gml', 'Middle Low German', NULL, 438.90) END +VALUES ('gml', 'Middle Low German', NULL, 4403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Low German', [Definition] = NULL, [SortOrder] = 438.90 WHERE [Code] = 'gml' END +SET [Description] = 'Middle Low German', [Definition] = NULL, [SortOrder] = 4403.00 WHERE [Code] = 'gml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xng', 'Middle Mongolian', NULL, 439.00) END +VALUES ('xng', 'Middle Mongolian', NULL, 4404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Mongolian', [Definition] = NULL, [SortOrder] = 439.00 WHERE [Code] = 'xng' END +SET [Description] = 'Middle Mongolian', [Definition] = NULL, [SortOrder] = 4404.00 WHERE [Code] = 'xng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwx', 'Middle Newar', NULL, 439.10) END +VALUES ('nwx', 'Middle Newar', NULL, 4405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Newar', [Definition] = NULL, [SortOrder] = 439.10 WHERE [Code] = 'nwx' END +SET [Description] = 'Middle Newar', [Definition] = NULL, [SortOrder] = 4405.00 WHERE [Code] = 'nwx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpl', 'Middle Watut', NULL, 439.20) END +VALUES ('mpl', 'Middle Watut', NULL, 4406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Watut', [Definition] = NULL, [SortOrder] = 439.20 WHERE [Code] = 'mpl' END +SET [Description] = 'Middle Watut', [Definition] = NULL, [SortOrder] = 4406.00 WHERE [Code] = 'mpl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlm', 'Middle Welsh', NULL, 439.30) END +VALUES ('wlm', 'Middle Welsh', NULL, 4407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Middle Welsh', [Definition] = NULL, [SortOrder] = 439.30 WHERE [Code] = 'wlm' END +SET [Description] = 'Middle Welsh', [Definition] = NULL, [SortOrder] = 4407.00 WHERE [Code] = 'wlm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mei', 'Midob', NULL, 439.40) END +VALUES ('mei', 'Midob', NULL, 4408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Midob', [Definition] = NULL, [SortOrder] = 439.40 WHERE [Code] = 'mei' END +SET [Description] = 'Midob', [Definition] = NULL, [SortOrder] = 4408.00 WHERE [Code] = 'mei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmy', 'Migaama', NULL, 439.50) END +VALUES ('mmy', 'Migaama', NULL, 4409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Migaama', [Definition] = NULL, [SortOrder] = 439.50 WHERE [Code] = 'mmy' END +SET [Description] = 'Migaama', [Definition] = NULL, [SortOrder] = 4409.00 WHERE [Code] = 'mmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpp', 'Migabac', NULL, 439.60) END +VALUES ('mpp', 'Migabac', NULL, 4410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Migabac', [Definition] = NULL, [SortOrder] = 439.60 WHERE [Code] = 'mpp' END +SET [Description] = 'Migabac', [Definition] = NULL, [SortOrder] = 4410.00 WHERE [Code] = 'mpp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klm', 'Migum', NULL, 439.70) END +VALUES ('klm', 'Migum', NULL, 4411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Migum', [Definition] = NULL, [SortOrder] = 439.70 WHERE [Code] = 'klm' END +SET [Description] = 'Migum', [Definition] = NULL, [SortOrder] = 4411.00 WHERE [Code] = 'klm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxj', 'Miju-Mishmi', NULL, 439.80) END +VALUES ('mxj', 'Miju-Mishmi', NULL, 4412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miju-Mishmi', [Definition] = NULL, [SortOrder] = 439.80 WHERE [Code] = 'mxj' END +SET [Description] = 'Miju-Mishmi', [Definition] = NULL, [SortOrder] = 4412.00 WHERE [Code] = 'mxj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mik', 'Mikasuki', NULL, 439.90) END +VALUES ('mik', 'Mikasuki', NULL, 4413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mikasuki', [Definition] = NULL, [SortOrder] = 439.90 WHERE [Code] = 'mik' END +SET [Description] = 'Mikasuki', [Definition] = NULL, [SortOrder] = 4413.00 WHERE [Code] = 'mik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymh', 'Mili', NULL, 440.00) END +VALUES ('ymh', 'Mili', NULL, 4414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mili', [Definition] = NULL, [SortOrder] = 440.00 WHERE [Code] = 'ymh' END +SET [Description] = 'Mili', [Definition] = NULL, [SortOrder] = 4414.00 WHERE [Code] = 'ymh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlj', 'Miltu', NULL, 440.10) END +VALUES ('mlj', 'Miltu', NULL, 4415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miltu', [Definition] = NULL, [SortOrder] = 440.10 WHERE [Code] = 'mlj' END +SET [Description] = 'Miltu', [Definition] = NULL, [SortOrder] = 4415.00 WHERE [Code] = 'mlj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iml', 'Miluk', NULL, 440.20) END +VALUES ('iml', 'Miluk', NULL, 4416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miluk', [Definition] = NULL, [SortOrder] = 440.20 WHERE [Code] = 'iml' END +SET [Description] = 'Miluk', [Definition] = NULL, [SortOrder] = 4416.00 WHERE [Code] = 'iml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'imy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('imy', 'Milyan', NULL, 440.30) END +VALUES ('imy', 'Milyan', NULL, 4417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Milyan', [Definition] = NULL, [SortOrder] = 440.30 WHERE [Code] = 'imy' END +SET [Description] = 'Milyan', [Definition] = NULL, [SortOrder] = 4417.00 WHERE [Code] = 'imy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnp', 'Min Bei Chinese', NULL, 440.40) END +VALUES ('mnp', 'Min Bei Chinese', NULL, 4418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Min Bei Chinese', [Definition] = NULL, [SortOrder] = 440.40 WHERE [Code] = 'mnp' END +SET [Description] = 'Min Bei Chinese', [Definition] = NULL, [SortOrder] = 4418.00 WHERE [Code] = 'mnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cdo', 'Min Dong Chinese', NULL, 440.50) END +VALUES ('cdo', 'Min Dong Chinese', NULL, 4419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Min Dong Chinese', [Definition] = NULL, [SortOrder] = 440.50 WHERE [Code] = 'cdo' END +SET [Description] = 'Min Dong Chinese', [Definition] = NULL, [SortOrder] = 4419.00 WHERE [Code] = 'cdo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nan', 'Min Nan Chinese', NULL, 440.60) END +VALUES ('nan', 'Min Nan Chinese', NULL, 4420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Min Nan Chinese', [Definition] = NULL, [SortOrder] = 440.60 WHERE [Code] = 'nan' END +SET [Description] = 'Min Nan Chinese', [Definition] = NULL, [SortOrder] = 4420.00 WHERE [Code] = 'nan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czo', 'Min Zhong Chinese', NULL, 440.70) END +VALUES ('czo', 'Min Zhong Chinese', NULL, 4421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Min Zhong Chinese', [Definition] = NULL, [SortOrder] = 440.70 WHERE [Code] = 'czo' END +SET [Description] = 'Min Zhong Chinese', [Definition] = NULL, [SortOrder] = 4421.00 WHERE [Code] = 'czo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hna', 'Mina (Cameroon)', NULL, 440.80) END +VALUES ('hna', 'Mina (Cameroon)', NULL, 4422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mina (Cameroon)', [Definition] = NULL, [SortOrder] = 440.80 WHERE [Code] = 'hna' END +SET [Description] = 'Mina (Cameroon)', [Definition] = NULL, [SortOrder] = 4422.00 WHERE [Code] = 'hna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'inm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('inm', 'Minaean', NULL, 440.90) END +VALUES ('inm', 'Minaean', NULL, 4423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minaean', [Definition] = NULL, [SortOrder] = 440.90 WHERE [Code] = 'inm' END +SET [Description] = 'Minaean', [Definition] = NULL, [SortOrder] = 4423.00 WHERE [Code] = 'inm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrg', 'Minang', NULL, 441.00) END +VALUES ('xrg', 'Minang', NULL, 4424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minang', [Definition] = NULL, [SortOrder] = 441.00 WHERE [Code] = 'xrg' END +SET [Description] = 'Minang', [Definition] = NULL, [SortOrder] = 4424.00 WHERE [Code] = 'xrg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'min') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('min', 'Minangkabau', NULL, 441.10) END +VALUES ('min', 'Minangkabau', NULL, 4425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minangkabau', [Definition] = NULL, [SortOrder] = 441.10 WHERE [Code] = 'min' END +SET [Description] = 'Minangkabau', [Definition] = NULL, [SortOrder] = 4425.00 WHERE [Code] = 'min' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcv', 'Minanibai', NULL, 441.20) END +VALUES ('mcv', 'Minanibai', NULL, 4426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minanibai', [Definition] = NULL, [SortOrder] = 441.20 WHERE [Code] = 'mcv' END +SET [Description] = 'Minanibai', [Definition] = NULL, [SortOrder] = 4426.00 WHERE [Code] = 'mcv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvn', 'Minaveha', NULL, 441.30) END +VALUES ('mvn', 'Minaveha', NULL, 4427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minaveha', [Definition] = NULL, [SortOrder] = 441.30 WHERE [Code] = 'mvn' END +SET [Description] = 'Minaveha', [Definition] = NULL, [SortOrder] = 4427.00 WHERE [Code] = 'mvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drc', 'Minderico', NULL, 441.40) END +VALUES ('drc', 'Minderico', NULL, 4428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minderico', [Definition] = NULL, [SortOrder] = 441.40 WHERE [Code] = 'drc' END +SET [Description] = 'Minderico', [Definition] = NULL, [SortOrder] = 4428.00 WHERE [Code] = 'drc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpn', 'Mindiri', NULL, 441.50) END +VALUES ('mpn', 'Mindiri', NULL, 4429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mindiri', [Definition] = NULL, [SortOrder] = 441.50 WHERE [Code] = 'mpn' END +SET [Description] = 'Mindiri', [Definition] = NULL, [SortOrder] = 4429.00 WHERE [Code] = 'mpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mko', 'Mingang Doso', NULL, 441.60) END +VALUES ('mko', 'Mingang Doso', NULL, 4430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mingang Doso', [Definition] = NULL, [SortOrder] = 441.60 WHERE [Code] = 'mko' END +SET [Description] = 'Mingang Doso', [Definition] = NULL, [SortOrder] = 4430.00 WHERE [Code] = 'mko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmf', 'Mingrelian', NULL, 441.70) END +VALUES ('xmf', 'Mingrelian', NULL, 4431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mingrelian', [Definition] = NULL, [SortOrder] = 441.70 WHERE [Code] = 'xmf' END +SET [Description] = 'Mingrelian', [Definition] = NULL, [SortOrder] = 4431.00 WHERE [Code] = 'xmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hto', 'Minica Huitoto', NULL, 441.80) END +VALUES ('hto', 'Minica Huitoto', NULL, 4432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minica Huitoto', [Definition] = NULL, [SortOrder] = 441.80 WHERE [Code] = 'hto' END +SET [Description] = 'Minica Huitoto', [Definition] = NULL, [SortOrder] = 4432.00 WHERE [Code] = 'hto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wii', 'Minidien', NULL, 441.90) END +VALUES ('wii', 'Minidien', NULL, 4433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minidien', [Definition] = NULL, [SortOrder] = 441.90 WHERE [Code] = 'wii' END +SET [Description] = 'Minidien', [Definition] = NULL, [SortOrder] = 4433.00 WHERE [Code] = 'wii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xjb', 'Minjungbal', NULL, 442.00) END +VALUES ('xjb', 'Minjungbal', NULL, 4434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minjungbal', [Definition] = NULL, [SortOrder] = 442.00 WHERE [Code] = 'xjb' END +SET [Description] = 'Minjungbal', [Definition] = NULL, [SortOrder] = 4434.00 WHERE [Code] = 'xjb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxm', 'Minkin', NULL, 442.10) END +VALUES ('xxm', 'Minkin', NULL, 4435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minkin', [Definition] = NULL, [SortOrder] = 442.10 WHERE [Code] = 'xxm' END +SET [Description] = 'Minkin', [Definition] = NULL, [SortOrder] = 4435.00 WHERE [Code] = 'xxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omn', 'Minoan', NULL, 442.20) END +VALUES ('omn', 'Minoan', NULL, 4436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minoan', [Definition] = NULL, [SortOrder] = 442.20 WHERE [Code] = 'omn' END +SET [Description] = 'Minoan', [Definition] = NULL, [SortOrder] = 4436.00 WHERE [Code] = 'omn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqq', 'Minokok', NULL, 442.30) END +VALUES ('mqq', 'Minokok', NULL, 4437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minokok', [Definition] = NULL, [SortOrder] = 442.30 WHERE [Code] = 'mqq' END +SET [Description] = 'Minokok', [Definition] = NULL, [SortOrder] = 4437.00 WHERE [Code] = 'mqq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnq', 'Minriq', NULL, 442.40) END +VALUES ('mnq', 'Minriq', NULL, 4438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minriq', [Definition] = NULL, [SortOrder] = 442.40 WHERE [Code] = 'mnq' END +SET [Description] = 'Minriq', [Definition] = NULL, [SortOrder] = 4438.00 WHERE [Code] = 'mnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzt', 'Mintil', NULL, 442.50) END +VALUES ('mzt', 'Mintil', NULL, 4439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mintil', [Definition] = NULL, [SortOrder] = 442.50 WHERE [Code] = 'mzt' END +SET [Description] = 'Mintil', [Definition] = NULL, [SortOrder] = 4439.00 WHERE [Code] = 'mzt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgm', 'Minz Zhuang', NULL, 442.60) END +VALUES ('zgm', 'Minz Zhuang', NULL, 4440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Minz Zhuang', [Definition] = NULL, [SortOrder] = 442.60 WHERE [Code] = 'zgm' END +SET [Description] = 'Minz Zhuang', [Definition] = NULL, [SortOrder] = 4440.00 WHERE [Code] = 'zgm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yiq', 'Miqie', NULL, 442.70) END +VALUES ('yiq', 'Miqie', NULL, 4441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miqie', [Definition] = NULL, [SortOrder] = 442.70 WHERE [Code] = 'yiq' END +SET [Description] = 'Miqie', [Definition] = NULL, [SortOrder] = 4441.00 WHERE [Code] = 'yiq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwl', 'Mirandese', NULL, 442.80) END +VALUES ('mwl', 'Mirandese', NULL, 4442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mirandese', [Definition] = NULL, [SortOrder] = 442.80 WHERE [Code] = 'mwl' END +SET [Description] = 'Mirandese', [Definition] = NULL, [SortOrder] = 4442.00 WHERE [Code] = 'mwl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rbl', 'Miraya Bikol', NULL, 442.90) END +VALUES ('rbl', 'Miraya Bikol', NULL, 4443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miraya Bikol', [Definition] = NULL, [SortOrder] = 442.90 WHERE [Code] = 'rbl' END +SET [Description] = 'Miraya Bikol', [Definition] = NULL, [SortOrder] = 4443.00 WHERE [Code] = 'rbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zrg', 'Mirgan', NULL, 443.00) END +VALUES ('zrg', 'Mirgan', NULL, 4444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mirgan', [Definition] = NULL, [SortOrder] = 443.00 WHERE [Code] = 'zrg' END +SET [Description] = 'Mirgan', [Definition] = NULL, [SortOrder] = 4444.00 WHERE [Code] = 'zrg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmv', 'Miriti', NULL, 443.10) END +VALUES ('mmv', 'Miriti', NULL, 4445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miriti', [Definition] = NULL, [SortOrder] = 443.10 WHERE [Code] = 'mmv' END +SET [Description] = 'Miriti', [Definition] = NULL, [SortOrder] = 4445.00 WHERE [Code] = 'mmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mep', 'Miriwoong', NULL, 443.20) END +VALUES ('mep', 'Miriwoong', NULL, 4446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miriwoong', [Definition] = NULL, [SortOrder] = 443.20 WHERE [Code] = 'mep' END +SET [Description] = 'Miriwoong', [Definition] = NULL, [SortOrder] = 4446.00 WHERE [Code] = 'mep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsm', 'Miriwoong Sign Language', NULL, 443.30) END +VALUES ('rsm', 'Miriwoong Sign Language', NULL, 4447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miriwoong Sign Language', [Definition] = NULL, [SortOrder] = 443.30 WHERE [Code] = 'rsm' END +SET [Description] = 'Miriwoong Sign Language', [Definition] = NULL, [SortOrder] = 4447.00 WHERE [Code] = 'rsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmr', 'Mirning', NULL, 443.40) END +VALUES ('gmr', 'Mirning', NULL, 4448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mirning', [Definition] = NULL, [SortOrder] = 443.40 WHERE [Code] = 'gmr' END +SET [Description] = 'Mirning', [Definition] = NULL, [SortOrder] = 4448.00 WHERE [Code] = 'gmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjs', 'Miship', NULL, 443.50) END +VALUES ('mjs', 'Miship', NULL, 4449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miship', [Definition] = NULL, [SortOrder] = 443.50 WHERE [Code] = 'mjs' END +SET [Description] = 'Miship', [Definition] = NULL, [SortOrder] = 4449.00 WHERE [Code] = 'mjs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpx', 'Misima-Panaeati', NULL, 443.60) END +VALUES ('mpx', 'Misima-Panaeati', NULL, 4450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Misima-Panaeati', [Definition] = NULL, [SortOrder] = 443.60 WHERE [Code] = 'mpx' END +SET [Description] = 'Misima-Panaeati', [Definition] = NULL, [SortOrder] = 4450.00 WHERE [Code] = 'mpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrg', 'Mising', NULL, 443.70) END +VALUES ('mrg', 'Mising', NULL, 4451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mising', [Definition] = NULL, [SortOrder] = 443.70 WHERE [Code] = 'mrg' END +SET [Description] = 'Mising', [Definition] = NULL, [SortOrder] = 4451.00 WHERE [Code] = 'mrg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'miq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('miq', 'Mískito', NULL, 443.80) END +VALUES ('miq', 'Mískito', NULL, 4452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mískito', [Definition] = NULL, [SortOrder] = 443.80 WHERE [Code] = 'miq' END +SET [Description] = 'Mískito', [Definition] = NULL, [SortOrder] = 4452.00 WHERE [Code] = 'miq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaw', 'Mitla Zapotec', NULL, 443.90) END +VALUES ('zaw', 'Mitla Zapotec', NULL, 4453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mitla Zapotec', [Definition] = NULL, [SortOrder] = 443.90 WHERE [Code] = 'zaw' END +SET [Description] = 'Mitla Zapotec', [Definition] = NULL, [SortOrder] = 4453.00 WHERE [Code] = 'zaw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmm', 'Mitlatongo Mixtec', NULL, 444.00) END +VALUES ('vmm', 'Mitlatongo Mixtec', NULL, 4454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mitlatongo Mixtec', [Definition] = NULL, [SortOrder] = 444.00 WHERE [Code] = 'vmm' END +SET [Description] = 'Mitlatongo Mixtec', [Definition] = NULL, [SortOrder] = 4454.00 WHERE [Code] = 'vmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwu', 'Mittu', NULL, 444.10) END +VALUES ('mwu', 'Mittu', NULL, 4455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mittu', [Definition] = NULL, [SortOrder] = 444.10 WHERE [Code] = 'mwu' END +SET [Description] = 'Mittu', [Definition] = NULL, [SortOrder] = 4455.00 WHERE [Code] = 'mwu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmq', 'Mituku', NULL, 444.20) END +VALUES ('zmq', 'Mituku', NULL, 4456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mituku', [Definition] = NULL, [SortOrder] = 444.20 WHERE [Code] = 'zmq' END +SET [Description] = 'Mituku', [Definition] = NULL, [SortOrder] = 4456.00 WHERE [Code] = 'zmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpo', 'Miu', NULL, 444.30) END +VALUES ('mpo', 'Miu', NULL, 4457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miu', [Definition] = NULL, [SortOrder] = 444.30 WHERE [Code] = 'mpo' END +SET [Description] = 'Miu', [Definition] = NULL, [SortOrder] = 4457.00 WHERE [Code] = 'mpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmi', 'Miwa', NULL, 444.40) END +VALUES ('vmi', 'Miwa', NULL, 4458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miwa', [Definition] = NULL, [SortOrder] = 444.40 WHERE [Code] = 'vmi' END +SET [Description] = 'Miwa', [Definition] = NULL, [SortOrder] = 4458.00 WHERE [Code] = 'vmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gac', 'Mixed Great Andamanese', NULL, 444.50) END +VALUES ('gac', 'Mixed Great Andamanese', NULL, 4459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mixed Great Andamanese', [Definition] = NULL, [SortOrder] = 444.50 WHERE [Code] = 'gac' END +SET [Description] = 'Mixed Great Andamanese', [Definition] = NULL, [SortOrder] = 4459.00 WHERE [Code] = 'gac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mix', 'Mixtepec Mixtec', NULL, 444.60) END +VALUES ('mix', 'Mixtepec Mixtec', NULL, 4460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mixtepec Mixtec', [Definition] = NULL, [SortOrder] = 444.60 WHERE [Code] = 'mix' END +SET [Description] = 'Mixtepec Mixtec', [Definition] = NULL, [SortOrder] = 4460.00 WHERE [Code] = 'mix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpm', 'Mixtepec Zapotec', NULL, 444.70) END +VALUES ('zpm', 'Mixtepec Zapotec', NULL, 4461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 444.70 WHERE [Code] = 'zpm' END +SET [Description] = 'Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 4461.00 WHERE [Code] = 'zpm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkf', 'Miya', NULL, 444.80) END +VALUES ('mkf', 'Miya', NULL, 4462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miya', [Definition] = NULL, [SortOrder] = 444.80 WHERE [Code] = 'mkf' END +SET [Description] = 'Miya', [Definition] = NULL, [SortOrder] = 4462.00 WHERE [Code] = 'mkf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvi', 'Miyako', NULL, 444.90) END +VALUES ('mvi', 'Miyako', NULL, 4463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miyako', [Definition] = NULL, [SortOrder] = 444.90 WHERE [Code] = 'mvi' END +SET [Description] = 'Miyako', [Definition] = NULL, [SortOrder] = 4463.00 WHERE [Code] = 'mvi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ehs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ehs', 'Miyakubo Sign Language', NULL, 445.00) END +VALUES ('ehs', 'Miyakubo Sign Language', NULL, 4464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miyakubo Sign Language', [Definition] = NULL, [SortOrder] = 445.00 WHERE [Code] = 'ehs' END +SET [Description] = 'Miyakubo Sign Language', [Definition] = NULL, [SortOrder] = 4464.00 WHERE [Code] = 'ehs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soy', 'Miyobe', NULL, 445.10) END +VALUES ('soy', 'Miyobe', NULL, 4465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Miyobe', [Definition] = NULL, [SortOrder] = 445.10 WHERE [Code] = 'soy' END +SET [Description] = 'Miyobe', [Definition] = NULL, [SortOrder] = 4465.00 WHERE [Code] = 'soy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mra', 'Mlabri', NULL, 445.20) END +VALUES ('mra', 'Mlabri', NULL, 4466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mlabri', [Definition] = NULL, [SortOrder] = 445.20 WHERE [Code] = 'mra' END +SET [Description] = 'Mlabri', [Definition] = NULL, [SortOrder] = 4466.00 WHERE [Code] = 'mra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lhs', 'Mlahsö', NULL, 445.30) END +VALUES ('lhs', 'Mlahsö', NULL, 4467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mlahsö', [Definition] = NULL, [SortOrder] = 445.30 WHERE [Code] = 'lhs' END +SET [Description] = 'Mlahsö', [Definition] = NULL, [SortOrder] = 4467.00 WHERE [Code] = 'lhs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kja', 'Mlap', NULL, 445.40) END +VALUES ('kja', 'Mlap', NULL, 4468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mlap', [Definition] = NULL, [SortOrder] = 445.40 WHERE [Code] = 'kja' END +SET [Description] = 'Mlap', [Definition] = NULL, [SortOrder] = 4468.00 WHERE [Code] = 'kja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlo', 'Mlomp', NULL, 445.50) END +VALUES ('mlo', 'Mlomp', NULL, 4469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mlomp', [Definition] = NULL, [SortOrder] = 445.50 WHERE [Code] = 'mlo' END +SET [Description] = 'Mlomp', [Definition] = NULL, [SortOrder] = 4469.00 WHERE [Code] = 'mlo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmu', 'Mmaala', NULL, 445.60) END +VALUES ('mmu', 'Mmaala', NULL, 4470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mmaala', [Definition] = NULL, [SortOrder] = 445.60 WHERE [Code] = 'mmu' END +SET [Description] = 'Mmaala', [Definition] = NULL, [SortOrder] = 4470.00 WHERE [Code] = 'mmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfm', 'Mmen', NULL, 445.70) END +VALUES ('bfm', 'Mmen', NULL, 4471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mmen', [Definition] = NULL, [SortOrder] = 445.70 WHERE [Code] = 'bfm' END +SET [Description] = 'Mmen', [Definition] = NULL, [SortOrder] = 4471.00 WHERE [Code] = 'bfm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbn', 'Mo''da', NULL, 445.80) END +VALUES ('gbn', 'Mo''da', NULL, 4472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mo''da', [Definition] = NULL, [SortOrder] = 445.80 WHERE [Code] = 'gbn' END +SET [Description] = 'Mo''da', [Definition] = NULL, [SortOrder] = 4472.00 WHERE [Code] = 'gbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obm', 'Moabite', NULL, 445.90) END +VALUES ('obm', 'Moabite', NULL, 4473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moabite', [Definition] = NULL, [SortOrder] = 445.90 WHERE [Code] = 'obm' END +SET [Description] = 'Moabite', [Definition] = NULL, [SortOrder] = 4473.00 WHERE [Code] = 'obm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfq', 'Moba', NULL, 446.00) END +VALUES ('mfq', 'Moba', NULL, 4474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moba', [Definition] = NULL, [SortOrder] = 446.00 WHERE [Code] = 'mfq' END +SET [Description] = 'Moba', [Definition] = NULL, [SortOrder] = 4474.00 WHERE [Code] = 'mfq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mod', 'Mobilian', NULL, 446.10) END +VALUES ('mod', 'Mobilian', NULL, 4475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mobilian', [Definition] = NULL, [SortOrder] = 446.10 WHERE [Code] = 'mod' END +SET [Description] = 'Mobilian', [Definition] = NULL, [SortOrder] = 4475.00 WHERE [Code] = 'mod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahm', 'Mobumrin Aizi', NULL, 446.20) END +VALUES ('ahm', 'Mobumrin Aizi', NULL, 4476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mobumrin Aizi', [Definition] = NULL, [SortOrder] = 446.20 WHERE [Code] = 'ahm' END +SET [Description] = 'Mobumrin Aizi', [Definition] = NULL, [SortOrder] = 4476.00 WHERE [Code] = 'ahm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jkm', 'Mobwa Karen', NULL, 446.30) END +VALUES ('jkm', 'Mobwa Karen', NULL, 4477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mobwa Karen', [Definition] = NULL, [SortOrder] = 446.30 WHERE [Code] = 'jkm' END +SET [Description] = 'Mobwa Karen', [Definition] = NULL, [SortOrder] = 4477.00 WHERE [Code] = 'jkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhn', 'Mócheno', NULL, 446.40) END +VALUES ('mhn', 'Mócheno', NULL, 4478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mócheno', [Definition] = NULL, [SortOrder] = 446.40 WHERE [Code] = 'mhn' END +SET [Description] = 'Mócheno', [Definition] = NULL, [SortOrder] = 4478.00 WHERE [Code] = 'mhn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'old') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('old', 'Mochi', NULL, 446.50) END +VALUES ('old', 'Mochi', NULL, 4479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mochi', [Definition] = NULL, [SortOrder] = 446.50 WHERE [Code] = 'old' END +SET [Description] = 'Mochi', [Definition] = NULL, [SortOrder] = 4479.00 WHERE [Code] = 'old' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omc', 'Mochica', NULL, 446.60) END +VALUES ('omc', 'Mochica', NULL, 4480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mochica', [Definition] = NULL, [SortOrder] = 446.60 WHERE [Code] = 'omc' END +SET [Description] = 'Mochica', [Definition] = NULL, [SortOrder] = 4480.00 WHERE [Code] = 'omc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhc', 'Mocho', NULL, 446.70) END +VALUES ('mhc', 'Mocho', NULL, 4481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mocho', [Definition] = NULL, [SortOrder] = 446.70 WHERE [Code] = 'mhc' END +SET [Description] = 'Mocho', [Definition] = NULL, [SortOrder] = 4481.00 WHERE [Code] = 'mhc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moc', 'Mocoví', NULL, 446.80) END +VALUES ('moc', 'Mocoví', NULL, 4482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mocoví', [Definition] = NULL, [SortOrder] = 446.80 WHERE [Code] = 'moc' END +SET [Description] = 'Mocoví', [Definition] = NULL, [SortOrder] = 4482.00 WHERE [Code] = 'moc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxd', 'Modang', NULL, 446.90) END +VALUES ('mxd', 'Modang', NULL, 4483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Modang', [Definition] = NULL, [SortOrder] = 446.90 WHERE [Code] = 'mxd' END +SET [Description] = 'Modang', [Definition] = NULL, [SortOrder] = 4483.00 WHERE [Code] = 'mxd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ell') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ell', 'Modern Greek (1453-)', NULL, 447.00) END +VALUES ('ell', 'Modern Greek (1453-)', NULL, 4484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Modern Greek (1453-)', [Definition] = NULL, [SortOrder] = 447.00 WHERE [Code] = 'ell' END +SET [Description] = 'Modern Greek (1453-)', [Definition] = NULL, [SortOrder] = 4484.00 WHERE [Code] = 'ell' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqo', 'Modole', NULL, 447.10) END +VALUES ('mqo', 'Modole', NULL, 4485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Modole', [Definition] = NULL, [SortOrder] = 447.10 WHERE [Code] = 'mqo' END +SET [Description] = 'Modole', [Definition] = NULL, [SortOrder] = 4485.00 WHERE [Code] = 'mqo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvq', 'Moere', NULL, 447.20) END +VALUES ('mvq', 'Moere', NULL, 4486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moere', [Definition] = NULL, [SortOrder] = 447.20 WHERE [Code] = 'mvq' END +SET [Description] = 'Moere', [Definition] = NULL, [SortOrder] = 4486.00 WHERE [Code] = 'mvq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mif', 'Mofu-Gudur', NULL, 447.30) END +VALUES ('mif', 'Mofu-Gudur', NULL, 4487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mofu-Gudur', [Definition] = NULL, [SortOrder] = 447.30 WHERE [Code] = 'mif' END +SET [Description] = 'Mofu-Gudur', [Definition] = NULL, [SortOrder] = 4487.00 WHERE [Code] = 'mif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhj', 'Mogholi', NULL, 447.40) END +VALUES ('mhj', 'Mogholi', NULL, 4488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mogholi', [Definition] = NULL, [SortOrder] = 447.40 WHERE [Code] = 'mhj' END +SET [Description] = 'Mogholi', [Definition] = NULL, [SortOrder] = 4488.00 WHERE [Code] = 'mhj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfg', 'Mogofin', NULL, 447.50) END +VALUES ('mfg', 'Mogofin', NULL, 4489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mogofin', [Definition] = NULL, [SortOrder] = 447.50 WHERE [Code] = 'mfg' END +SET [Description] = 'Mogofin', [Definition] = NULL, [SortOrder] = 4489.00 WHERE [Code] = 'mfg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mou', 'Mogum', NULL, 447.60) END +VALUES ('mou', 'Mogum', NULL, 4490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mogum', [Definition] = NULL, [SortOrder] = 447.60 WHERE [Code] = 'mou' END +SET [Description] = 'Mogum', [Definition] = NULL, [SortOrder] = 4490.00 WHERE [Code] = 'mou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mov', 'Mohave', NULL, 447.70) END +VALUES ('mov', 'Mohave', NULL, 4491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mohave', [Definition] = NULL, [SortOrder] = 447.70 WHERE [Code] = 'mov' END +SET [Description] = 'Mohave', [Definition] = NULL, [SortOrder] = 4491.00 WHERE [Code] = 'mov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moh', 'Mohawk', NULL, 447.80) END +VALUES ('moh', 'Mohawk', NULL, 4492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mohawk', [Definition] = NULL, [SortOrder] = 447.80 WHERE [Code] = 'moh' END +SET [Description] = 'Mohawk', [Definition] = NULL, [SortOrder] = 4492.00 WHERE [Code] = 'moh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpq', 'Mohegan-Pequot', NULL, 447.90) END +VALUES ('xpq', 'Mohegan-Pequot', NULL, 4493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mohegan-Pequot', [Definition] = NULL, [SortOrder] = 447.90 WHERE [Code] = 'xpq' END +SET [Description] = 'Mohegan-Pequot', [Definition] = NULL, [SortOrder] = 4493.00 WHERE [Code] = 'xpq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mow', 'Moi (Congo)', NULL, 448.00) END +VALUES ('mow', 'Moi (Congo)', NULL, 4494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moi (Congo)', [Definition] = NULL, [SortOrder] = 448.00 WHERE [Code] = 'mow' END +SET [Description] = 'Moi (Congo)', [Definition] = NULL, [SortOrder] = 4494.00 WHERE [Code] = 'mow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxn', 'Moi (Indonesia)', NULL, 448.10) END +VALUES ('mxn', 'Moi (Indonesia)', NULL, 4495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moi (Indonesia)', [Definition] = NULL, [SortOrder] = 448.10 WHERE [Code] = 'mxn' END +SET [Description] = 'Moi (Indonesia)', [Definition] = NULL, [SortOrder] = 4495.00 WHERE [Code] = 'mxn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkp', 'Moikodi', NULL, 448.20) END +VALUES ('mkp', 'Moikodi', NULL, 4496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moikodi', [Definition] = NULL, [SortOrder] = 448.20 WHERE [Code] = 'mkp' END +SET [Description] = 'Moikodi', [Definition] = NULL, [SortOrder] = 4496.00 WHERE [Code] = 'mkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwz', 'Moingi', NULL, 448.30) END +VALUES ('mwz', 'Moingi', NULL, 4497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moingi', [Definition] = NULL, [SortOrder] = 448.30 WHERE [Code] = 'mwz' END +SET [Description] = 'Moingi', [Definition] = NULL, [SortOrder] = 4497.00 WHERE [Code] = 'mwz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymi', 'Moji', NULL, 448.40) END +VALUES ('ymi', 'Moji', NULL, 4498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moji', [Definition] = NULL, [SortOrder] = 448.40 WHERE [Code] = 'ymi' END +SET [Description] = 'Moji', [Definition] = NULL, [SortOrder] = 4498.00 WHERE [Code] = 'ymi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqt', 'Mok', NULL, 448.50) END +VALUES ('mqt', 'Mok', NULL, 4499.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Mok', [Definition] = NULL, [SortOrder] = 4499.00 WHERE [Code] = 'mqt' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('wnb', 'Mokati', NULL, 4500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mok', [Definition] = NULL, [SortOrder] = 448.50 WHERE [Code] = 'mqt' END +SET [Description] = 'Mokati', [Definition] = NULL, [SortOrder] = 4500.00 WHERE [Code] = 'wnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwt', 'Moken', NULL, 448.60) END +VALUES ('mwt', 'Moken', NULL, 4501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moken', [Definition] = NULL, [SortOrder] = 448.60 WHERE [Code] = 'mwt' END +SET [Description] = 'Moken', [Definition] = NULL, [SortOrder] = 4501.00 WHERE [Code] = 'mwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mft', 'Mokerang', NULL, 448.70) END +VALUES ('mft', 'Mokerang', NULL, 4502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mokerang', [Definition] = NULL, [SortOrder] = 448.70 WHERE [Code] = 'mft' END +SET [Description] = 'Mokerang', [Definition] = NULL, [SortOrder] = 4502.00 WHERE [Code] = 'mft' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkj', 'Mokilese', NULL, 448.80) END +VALUES ('mkj', 'Mokilese', NULL, 4503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mokilese', [Definition] = NULL, [SortOrder] = 448.80 WHERE [Code] = 'mkj' END +SET [Description] = 'Mokilese', [Definition] = NULL, [SortOrder] = 4503.00 WHERE [Code] = 'mkj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkm', 'Moklen', NULL, 448.90) END +VALUES ('mkm', 'Moklen', NULL, 4504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moklen', [Definition] = NULL, [SortOrder] = 448.90 WHERE [Code] = 'mkm' END +SET [Description] = 'Moklen', [Definition] = NULL, [SortOrder] = 4504.00 WHERE [Code] = 'mkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkl', 'Mokole', NULL, 449.00) END +VALUES ('mkl', 'Mokole', NULL, 4505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mokole', [Definition] = NULL, [SortOrder] = 449.00 WHERE [Code] = 'mkl' END +SET [Description] = 'Mokole', [Definition] = NULL, [SortOrder] = 4505.00 WHERE [Code] = 'mkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bri', 'Mokpwe', NULL, 449.10) END +VALUES ('bri', 'Mokpwe', NULL, 4506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mokpwe', [Definition] = NULL, [SortOrder] = 449.10 WHERE [Code] = 'bri' END +SET [Description] = 'Mokpwe', [Definition] = NULL, [SortOrder] = 4506.00 WHERE [Code] = 'bri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vms', 'Moksela', NULL, 449.20) END +VALUES ('vms', 'Moksela', NULL, 4507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moksela', [Definition] = NULL, [SortOrder] = 449.20 WHERE [Code] = 'vms' END +SET [Description] = 'Moksela', [Definition] = NULL, [SortOrder] = 4507.00 WHERE [Code] = 'vms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdf', 'Moksha', NULL, 449.30) END +VALUES ('mdf', 'Moksha', NULL, 4508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moksha', [Definition] = NULL, [SortOrder] = 449.30 WHERE [Code] = 'mdf' END +SET [Description] = 'Moksha', [Definition] = NULL, [SortOrder] = 4508.00 WHERE [Code] = 'mdf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbe', 'Molale', NULL, 449.40) END +VALUES ('mbe', 'Molale', NULL, 4509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molale', [Definition] = NULL, [SortOrder] = 449.40 WHERE [Code] = 'mbe' END +SET [Description] = 'Molale', [Definition] = NULL, [SortOrder] = 4509.00 WHERE [Code] = 'mbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwm', 'Molbog', NULL, 449.50) END +VALUES ('pwm', 'Molbog', NULL, 4510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molbog', [Definition] = NULL, [SortOrder] = 449.50 WHERE [Code] = 'pwm' END +SET [Description] = 'Molbog', [Definition] = NULL, [SortOrder] = 4510.00 WHERE [Code] = 'pwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vsi', 'Moldova Sign Language', NULL, 449.60) END +VALUES ('vsi', 'Moldova Sign Language', NULL, 4511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moldova Sign Language', [Definition] = NULL, [SortOrder] = 449.60 WHERE [Code] = 'vsi' END +SET [Description] = 'Moldova Sign Language', [Definition] = NULL, [SortOrder] = 4511.00 WHERE [Code] = 'vsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxc', 'Molengue', NULL, 449.70) END +VALUES ('bxc', 'Molengue', NULL, 4512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molengue', [Definition] = NULL, [SortOrder] = 449.70 WHERE [Code] = 'bxc' END +SET [Description] = 'Molengue', [Definition] = NULL, [SortOrder] = 4512.00 WHERE [Code] = 'bxc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mox', 'Molima', NULL, 449.80) END +VALUES ('mox', 'Molima', NULL, 4513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molima', [Definition] = NULL, [SortOrder] = 449.80 WHERE [Code] = 'mox' END +SET [Description] = 'Molima', [Definition] = NULL, [SortOrder] = 4513.00 WHERE [Code] = 'mox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aun', 'Molmo One', NULL, 449.90) END +VALUES ('aun', 'Molmo One', NULL, 4514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molmo One', [Definition] = NULL, [SortOrder] = 449.90 WHERE [Code] = 'aun' END +SET [Description] = 'Molmo One', [Definition] = NULL, [SortOrder] = 4514.00 WHERE [Code] = 'aun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmo', 'Molo', NULL, 450.00) END +VALUES ('zmo', 'Molo', NULL, 4515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molo', [Definition] = NULL, [SortOrder] = 450.00 WHERE [Code] = 'zmo' END +SET [Description] = 'Molo', [Definition] = NULL, [SortOrder] = 4515.00 WHERE [Code] = 'zmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msl', 'Molof', NULL, 450.10) END +VALUES ('msl', 'Molof', NULL, 4516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Molof', [Definition] = NULL, [SortOrder] = 450.10 WHERE [Code] = 'msl' END +SET [Description] = 'Molof', [Definition] = NULL, [SortOrder] = 4516.00 WHERE [Code] = 'msl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlw', 'Moloko', NULL, 450.20) END +VALUES ('mlw', 'Moloko', NULL, 4517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moloko', [Definition] = NULL, [SortOrder] = 450.20 WHERE [Code] = 'mlw' END +SET [Description] = 'Moloko', [Definition] = NULL, [SortOrder] = 4517.00 WHERE [Code] = 'mlw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ver') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ver', 'Mom Jango', NULL, 450.30) END +VALUES ('ver', 'Mom Jango', NULL, 4518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mom Jango', [Definition] = NULL, [SortOrder] = 450.30 WHERE [Code] = 'ver' END +SET [Description] = 'Mom Jango', [Definition] = NULL, [SortOrder] = 4518.00 WHERE [Code] = 'ver' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myl', 'Moma', NULL, 450.40) END +VALUES ('myl', 'Moma', NULL, 4519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moma', [Definition] = NULL, [SortOrder] = 450.40 WHERE [Code] = 'myl' END +SET [Description] = 'Moma', [Definition] = NULL, [SortOrder] = 4519.00 WHERE [Code] = 'myl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msz', 'Momare', NULL, 450.50) END +VALUES ('msz', 'Momare', NULL, 4520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Momare', [Definition] = NULL, [SortOrder] = 450.50 WHERE [Code] = 'msz' END +SET [Description] = 'Momare', [Definition] = NULL, [SortOrder] = 4520.00 WHERE [Code] = 'msz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmb', 'Mombo Dogon', NULL, 450.60) END +VALUES ('dmb', 'Mombo Dogon', NULL, 4521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mombo Dogon', [Definition] = NULL, [SortOrder] = 450.60 WHERE [Code] = 'dmb' END +SET [Description] = 'Mombo Dogon', [Definition] = NULL, [SortOrder] = 4521.00 WHERE [Code] = 'dmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mso', 'Mombum', NULL, 450.70) END +VALUES ('mso', 'Mombum', NULL, 4522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mombum', [Definition] = NULL, [SortOrder] = 450.70 WHERE [Code] = 'mso' END +SET [Description] = 'Mombum', [Definition] = NULL, [SortOrder] = 4522.00 WHERE [Code] = 'mso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmb', 'Momina', NULL, 450.80) END +VALUES ('mmb', 'Momina', NULL, 4523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Momina', [Definition] = NULL, [SortOrder] = 450.80 WHERE [Code] = 'mmb' END +SET [Description] = 'Momina', [Definition] = NULL, [SortOrder] = 4523.00 WHERE [Code] = 'mmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqf', 'Momuna', NULL, 450.90) END +VALUES ('mqf', 'Momuna', NULL, 4524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Momuna', [Definition] = NULL, [SortOrder] = 450.90 WHERE [Code] = 'mqf' END +SET [Description] = 'Momuna', [Definition] = NULL, [SortOrder] = 4524.00 WHERE [Code] = 'mqf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnw', 'Mon', NULL, 451.00) END +VALUES ('mnw', 'Mon', NULL, 4525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mon', [Definition] = NULL, [SortOrder] = 451.00 WHERE [Code] = 'mnw' END +SET [Description] = 'Mon', [Definition] = NULL, [SortOrder] = 4525.00 WHERE [Code] = 'mnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzg', 'Monastic Sign Language', NULL, 451.10) END +VALUES ('mzg', 'Monastic Sign Language', NULL, 4526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monastic Sign Language', [Definition] = NULL, [SortOrder] = 451.10 WHERE [Code] = 'mzg' END +SET [Description] = 'Monastic Sign Language', [Definition] = NULL, [SortOrder] = 4526.00 WHERE [Code] = 'mzg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnd', 'Mondé', NULL, 451.20) END +VALUES ('mnd', 'Mondé', NULL, 4527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mondé', [Definition] = NULL, [SortOrder] = 451.20 WHERE [Code] = 'mnd' END +SET [Description] = 'Mondé', [Definition] = NULL, [SortOrder] = 4527.00 WHERE [Code] = 'mnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npn', 'Mondropolon', NULL, 451.30) END +VALUES ('npn', 'Mondropolon', NULL, 4528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mondropolon', [Definition] = NULL, [SortOrder] = 451.30 WHERE [Code] = 'npn' END +SET [Description] = 'Mondropolon', [Definition] = NULL, [SortOrder] = 4528.00 WHERE [Code] = 'npn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lol', 'Mongo', NULL, 451.40) END +VALUES ('lol', 'Mongo', NULL, 4529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongo', [Definition] = NULL, [SortOrder] = 451.40 WHERE [Code] = 'lol' END +SET [Description] = 'Mongo', [Definition] = NULL, [SortOrder] = 4529.00 WHERE [Code] = 'lol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgt', 'Mongol', NULL, 451.50) END +VALUES ('mgt', 'Mongol', NULL, 4530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongol', [Definition] = NULL, [SortOrder] = 451.50 WHERE [Code] = 'mgt' END +SET [Description] = 'Mongol', [Definition] = NULL, [SortOrder] = 4530.00 WHERE [Code] = 'mgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxm', 'Mongolia Buriat', NULL, 451.60) END +VALUES ('bxm', 'Mongolia Buriat', NULL, 4531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongolia Buriat', [Definition] = NULL, [SortOrder] = 451.60 WHERE [Code] = 'bxm' END +SET [Description] = 'Mongolia Buriat', [Definition] = NULL, [SortOrder] = 4531.00 WHERE [Code] = 'bxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mon', 'Mongolian', NULL, 451.70) END +VALUES ('mon', 'Mongolian', NULL, 4532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongolian', [Definition] = NULL, [SortOrder] = 451.70 WHERE [Code] = 'mon' END +SET [Description] = 'Mongolian', [Definition] = NULL, [SortOrder] = 4532.00 WHERE [Code] = 'mon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msr', 'Mongolian Sign Language', NULL, 451.80) END +VALUES ('msr', 'Mongolian Sign Language', NULL, 4533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongolian Sign Language', [Definition] = NULL, [SortOrder] = 451.80 WHERE [Code] = 'msr' END +SET [Description] = 'Mongolian Sign Language', [Definition] = NULL, [SortOrder] = 4533.00 WHERE [Code] = 'msr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mog', 'Mongondow', NULL, 451.90) END +VALUES ('mog', 'Mongondow', NULL, 4534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mongondow', [Definition] = NULL, [SortOrder] = 451.90 WHERE [Code] = 'mog' END +SET [Description] = 'Mongondow', [Definition] = NULL, [SortOrder] = 4534.00 WHERE [Code] = 'mog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnz', 'Moni', NULL, 452.00) END +VALUES ('mnz', 'Moni', NULL, 4535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moni', [Definition] = NULL, [SortOrder] = 452.00 WHERE [Code] = 'mnz' END +SET [Description] = 'Moni', [Definition] = NULL, [SortOrder] = 4535.00 WHERE [Code] = 'mnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mru', 'Mono (Cameroon)', NULL, 452.10) END +VALUES ('mru', 'Mono (Cameroon)', NULL, 4536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mono (Cameroon)', [Definition] = NULL, [SortOrder] = 452.10 WHERE [Code] = 'mru' END +SET [Description] = 'Mono (Cameroon)', [Definition] = NULL, [SortOrder] = 4536.00 WHERE [Code] = 'mru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnh', 'Mono (Democratic Republic of Congo)', NULL, 452.20) END +VALUES ('mnh', 'Mono (Democratic Republic of Congo)', NULL, 4537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mono (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 452.20 WHERE [Code] = 'mnh' END +SET [Description] = 'Mono (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 4537.00 WHERE [Code] = 'mnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mte', 'Mono (Solomon Islands)', NULL, 452.30) END +VALUES ('mte', 'Mono (Solomon Islands)', NULL, 4538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mono (Solomon Islands)', [Definition] = NULL, [SortOrder] = 452.30 WHERE [Code] = 'mte' END +SET [Description] = 'Mono (Solomon Islands)', [Definition] = NULL, [SortOrder] = 4538.00 WHERE [Code] = 'mte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnr', 'Mono (USA)', NULL, 452.40) END +VALUES ('mnr', 'Mono (USA)', NULL, 4539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mono (USA)', [Definition] = NULL, [SortOrder] = 452.40 WHERE [Code] = 'mnr' END +SET [Description] = 'Mono (USA)', [Definition] = NULL, [SortOrder] = 4539.00 WHERE [Code] = 'mnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moo', 'Monom', NULL, 452.50) END +VALUES ('moo', 'Monom', NULL, 4540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monom', [Definition] = NULL, [SortOrder] = 452.50 WHERE [Code] = 'moo' END +SET [Description] = 'Monom', [Definition] = NULL, [SortOrder] = 4540.00 WHERE [Code] = 'moo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmh', 'Monsang Naga', NULL, 452.60) END +VALUES ('nmh', 'Monsang Naga', NULL, 4541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monsang Naga', [Definition] = NULL, [SortOrder] = 452.60 WHERE [Code] = 'nmh' END +SET [Description] = 'Monsang Naga', [Definition] = NULL, [SortOrder] = 4541.00 WHERE [Code] = 'nmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnr', 'Montenegrin', NULL, 452.70) END +VALUES ('cnr', 'Montenegrin', NULL, 4542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Montenegrin', [Definition] = NULL, [SortOrder] = 452.70 WHERE [Code] = 'cnr' END +SET [Description] = 'Montenegrin', [Definition] = NULL, [SortOrder] = 4542.00 WHERE [Code] = 'cnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtl', 'Montol', NULL, 452.80) END +VALUES ('mtl', 'Montol', NULL, 4543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Montol', [Definition] = NULL, [SortOrder] = 452.80 WHERE [Code] = 'mtl' END +SET [Description] = 'Montol', [Definition] = NULL, [SortOrder] = 4543.00 WHERE [Code] = 'mtl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxk', 'Monumbo', NULL, 452.90) END +VALUES ('mxk', 'Monumbo', NULL, 4544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monumbo', [Definition] = NULL, [SortOrder] = 452.90 WHERE [Code] = 'mxk' END +SET [Description] = 'Monumbo', [Definition] = NULL, [SortOrder] = 4544.00 WHERE [Code] = 'mxk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moj', 'Monzombo', NULL, 453.00) END +VALUES ('moj', 'Monzombo', NULL, 4545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Monzombo', [Definition] = NULL, [SortOrder] = 453.00 WHERE [Code] = 'moj' END +SET [Description] = 'Monzombo', [Definition] = NULL, [SortOrder] = 4545.00 WHERE [Code] = 'moj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gwg', 'Moo', NULL, 453.10) END +VALUES ('gwg', 'Moo', NULL, 4546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moo', [Definition] = NULL, [SortOrder] = 453.10 WHERE [Code] = 'gwg' END +SET [Description] = 'Moo', [Definition] = NULL, [SortOrder] = 4546.00 WHERE [Code] = 'gwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crm', 'Moose Cree', NULL, 453.20) END +VALUES ('crm', 'Moose Cree', NULL, 4547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moose Cree', [Definition] = NULL, [SortOrder] = 453.20 WHERE [Code] = 'crm' END +SET [Description] = 'Moose Cree', [Definition] = NULL, [SortOrder] = 4547.00 WHERE [Code] = 'crm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mop', 'Mopán Maya', NULL, 453.30) END +VALUES ('mop', 'Mopán Maya', NULL, 4548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mopán Maya', [Definition] = NULL, [SortOrder] = 453.30 WHERE [Code] = 'mop' END +SET [Description] = 'Mopán Maya', [Definition] = NULL, [SortOrder] = 4548.00 WHERE [Code] = 'mop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moq', 'Mor (Bomberai Peninsula)', NULL, 453.40) END +VALUES ('moq', 'Mor (Bomberai Peninsula)', NULL, 4549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mor (Bomberai Peninsula)', [Definition] = NULL, [SortOrder] = 453.40 WHERE [Code] = 'moq' END +SET [Description] = 'Mor (Bomberai Peninsula)', [Definition] = NULL, [SortOrder] = 4549.00 WHERE [Code] = 'moq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhz', 'Mor (Mor Islands)', NULL, 453.50) END +VALUES ('mhz', 'Mor (Mor Islands)', NULL, 4550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mor (Mor Islands)', [Definition] = NULL, [SortOrder] = 453.50 WHERE [Code] = 'mhz' END +SET [Description] = 'Mor (Mor Islands)', [Definition] = NULL, [SortOrder] = 4550.00 WHERE [Code] = 'mhz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msg', 'Moraid', NULL, 453.60) END +VALUES ('msg', 'Moraid', NULL, 4551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moraid', [Definition] = NULL, [SortOrder] = 453.60 WHERE [Code] = 'msg' END +SET [Description] = 'Moraid', [Definition] = NULL, [SortOrder] = 4551.00 WHERE [Code] = 'msg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mze', 'Morawa', NULL, 453.70) END +VALUES ('mze', 'Morawa', NULL, 4552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morawa', [Definition] = NULL, [SortOrder] = 453.70 WHERE [Code] = 'mze' END +SET [Description] = 'Morawa', [Definition] = NULL, [SortOrder] = 4552.00 WHERE [Code] = 'mze' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhm', 'Morelos Nahuatl', NULL, 453.80) END +VALUES ('nhm', 'Morelos Nahuatl', NULL, 4553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morelos Nahuatl', [Definition] = NULL, [SortOrder] = 453.80 WHERE [Code] = 'nhm' END +SET [Description] = 'Morelos Nahuatl', [Definition] = NULL, [SortOrder] = 4553.00 WHERE [Code] = 'nhm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmo', 'Morerebi', NULL, 453.90) END +VALUES ('xmo', 'Morerebi', NULL, 4554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morerebi', [Definition] = NULL, [SortOrder] = 453.90 WHERE [Code] = 'xmo' END +SET [Description] = 'Morerebi', [Definition] = NULL, [SortOrder] = 4554.00 WHERE [Code] = 'xmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msx', 'Moresada', NULL, 454.00) END +VALUES ('msx', 'Moresada', NULL, 4555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moresada', [Definition] = NULL, [SortOrder] = 454.00 WHERE [Code] = 'msx' END +SET [Description] = 'Moresada', [Definition] = NULL, [SortOrder] = 4555.00 WHERE [Code] = 'msx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzq', 'Mori Atas', NULL, 454.10) END +VALUES ('mzq', 'Mori Atas', NULL, 4556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mori Atas', [Definition] = NULL, [SortOrder] = 454.10 WHERE [Code] = 'mzq' END +SET [Description] = 'Mori Atas', [Definition] = NULL, [SortOrder] = 4556.00 WHERE [Code] = 'mzq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmz', 'Mori Bawah', NULL, 454.20) END +VALUES ('xmz', 'Mori Bawah', NULL, 4557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mori Bawah', [Definition] = NULL, [SortOrder] = 454.20 WHERE [Code] = 'xmz' END +SET [Description] = 'Mori Bawah', [Definition] = NULL, [SortOrder] = 4557.00 WHERE [Code] = 'xmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdb', 'Morigi', NULL, 454.30) END +VALUES ('mdb', 'Morigi', NULL, 4558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morigi', [Definition] = NULL, [SortOrder] = 454.30 WHERE [Code] = 'mdb' END +SET [Description] = 'Morigi', [Definition] = NULL, [SortOrder] = 4558.00 WHERE [Code] = 'mdb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfe', 'Morisyen', NULL, 454.40) END +VALUES ('mfe', 'Morisyen', NULL, 4559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morisyen', [Definition] = NULL, [SortOrder] = 454.40 WHERE [Code] = 'mfe' END +SET [Description] = 'Morisyen', [Definition] = NULL, [SortOrder] = 4559.00 WHERE [Code] = 'mfe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mor', 'Moro', NULL, 454.50) END +VALUES ('mor', 'Moro', NULL, 4560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moro', [Definition] = NULL, [SortOrder] = 454.50 WHERE [Code] = 'mor' END +SET [Description] = 'Moro', [Definition] = NULL, [SortOrder] = 4560.00 WHERE [Code] = 'mor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ary') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ary', 'Moroccan Arabic', NULL, 454.60) END +VALUES ('ary', 'Moroccan Arabic', NULL, 4561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moroccan Arabic', [Definition] = NULL, [SortOrder] = 454.60 WHERE [Code] = 'ary' END +SET [Description] = 'Moroccan Arabic', [Definition] = NULL, [SortOrder] = 4561.00 WHERE [Code] = 'ary' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xms', 'Moroccan Sign Language', NULL, 454.70) END +VALUES ('xms', 'Moroccan Sign Language', NULL, 4562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moroccan Sign Language', [Definition] = NULL, [SortOrder] = 454.70 WHERE [Code] = 'xms' END +SET [Description] = 'Moroccan Sign Language', [Definition] = NULL, [SortOrder] = 4562.00 WHERE [Code] = 'xms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgc', 'Morokodo', NULL, 454.80) END +VALUES ('mgc', 'Morokodo', NULL, 4563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morokodo', [Definition] = NULL, [SortOrder] = 454.80 WHERE [Code] = 'mgc' END +SET [Description] = 'Morokodo', [Definition] = NULL, [SortOrder] = 4563.00 WHERE [Code] = 'mgc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdo', 'Morom', NULL, 454.90) END +VALUES ('bdo', 'Morom', NULL, 4564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morom', [Definition] = NULL, [SortOrder] = 454.90 WHERE [Code] = 'bdo' END +SET [Description] = 'Morom', [Definition] = NULL, [SortOrder] = 4564.00 WHERE [Code] = 'bdo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqn', 'Moronene', NULL, 455.00) END +VALUES ('mqn', 'Moronene', NULL, 4565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moronene', [Definition] = NULL, [SortOrder] = 455.00 WHERE [Code] = 'mqn' END +SET [Description] = 'Moronene', [Definition] = NULL, [SortOrder] = 4565.00 WHERE [Code] = 'mqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mok', 'Morori', NULL, 455.10) END +VALUES ('mok', 'Morori', NULL, 4566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morori', [Definition] = NULL, [SortOrder] = 455.10 WHERE [Code] = 'mok' END +SET [Description] = 'Morori', [Definition] = NULL, [SortOrder] = 4566.00 WHERE [Code] = 'mok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrp', 'Morouas', NULL, 455.20) END +VALUES ('mrp', 'Morouas', NULL, 4567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morouas', [Definition] = NULL, [SortOrder] = 455.20 WHERE [Code] = 'mrp' END +SET [Description] = 'Morouas', [Definition] = NULL, [SortOrder] = 4567.00 WHERE [Code] = 'mrp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umg', 'Morrobalama', NULL, 455.30) END +VALUES ('umg', 'Morrobalama', NULL, 4568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Morrobalama', [Definition] = NULL, [SortOrder] = 455.30 WHERE [Code] = 'umg' END +SET [Description] = 'Morrobalama', [Definition] = NULL, [SortOrder] = 4568.00 WHERE [Code] = 'umg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrl', 'Mortlockese', NULL, 455.40) END +VALUES ('mrl', 'Mortlockese', NULL, 4569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mortlockese', [Definition] = NULL, [SortOrder] = 455.40 WHERE [Code] = 'mrl' END +SET [Description] = 'Mortlockese', [Definition] = NULL, [SortOrder] = 4569.00 WHERE [Code] = 'mrl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgd', 'Moru', NULL, 455.50) END +VALUES ('mgd', 'Moru', NULL, 4570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moru', [Definition] = NULL, [SortOrder] = 455.50 WHERE [Code] = 'mgd' END +SET [Description] = 'Moru', [Definition] = NULL, [SortOrder] = 4570.00 WHERE [Code] = 'mgd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqv', 'Mosimo', NULL, 455.60) END +VALUES ('mqv', 'Mosimo', NULL, 4571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mosimo', [Definition] = NULL, [SortOrder] = 455.60 WHERE [Code] = 'mqv' END +SET [Description] = 'Mosimo', [Definition] = NULL, [SortOrder] = 4571.00 WHERE [Code] = 'mqv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtj', 'Moskona', NULL, 455.70) END +VALUES ('mtj', 'Moskona', NULL, 4572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moskona', [Definition] = NULL, [SortOrder] = 455.70 WHERE [Code] = 'mtj' END +SET [Description] = 'Moskona', [Definition] = NULL, [SortOrder] = 4572.00 WHERE [Code] = 'mtj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mos', 'Mossi', NULL, 455.80) END +VALUES ('mos', 'Mossi', NULL, 4573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mossi', [Definition] = NULL, [SortOrder] = 455.80 WHERE [Code] = 'mos' END +SET [Description] = 'Mossi', [Definition] = NULL, [SortOrder] = 4573.00 WHERE [Code] = 'mos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtt', 'Mota', NULL, 455.90) END +VALUES ('mtt', 'Mota', NULL, 4574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mota', [Definition] = NULL, [SortOrder] = 455.90 WHERE [Code] = 'mtt' END +SET [Description] = 'Mota', [Definition] = NULL, [SortOrder] = 4574.00 WHERE [Code] = 'mtt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlv', 'Motlav', NULL, 456.00) END +VALUES ('mlv', 'Motlav', NULL, 4575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Motlav', [Definition] = NULL, [SortOrder] = 456.00 WHERE [Code] = 'mlv' END +SET [Description] = 'Motlav', [Definition] = NULL, [SortOrder] = 4575.00 WHERE [Code] = 'mlv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meu', 'Motu', NULL, 456.10) END +VALUES ('meu', 'Motu', NULL, 4576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Motu', [Definition] = NULL, [SortOrder] = 456.10 WHERE [Code] = 'meu' END +SET [Description] = 'Motu', [Definition] = NULL, [SortOrder] = 4576.00 WHERE [Code] = 'meu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwh', 'Mouk-Aria', NULL, 456.20) END +VALUES ('mwh', 'Mouk-Aria', NULL, 4577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mouk-Aria', [Definition] = NULL, [SortOrder] = 456.20 WHERE [Code] = 'mwh' END +SET [Description] = 'Mouk-Aria', [Definition] = NULL, [SortOrder] = 4577.00 WHERE [Code] = 'mwh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cty', 'Moundadan Chetty', NULL, 456.30) END +VALUES ('cty', 'Moundadan Chetty', NULL, 4578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moundadan Chetty', [Definition] = NULL, [SortOrder] = 456.30 WHERE [Code] = 'cty' END +SET [Description] = 'Moundadan Chetty', [Definition] = NULL, [SortOrder] = 4578.00 WHERE [Code] = 'cty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpx', 'Mountain Koiali', NULL, 456.40) END +VALUES ('kpx', 'Mountain Koiali', NULL, 4579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mountain Koiali', [Definition] = NULL, [SortOrder] = 456.40 WHERE [Code] = 'kpx' END +SET [Description] = 'Mountain Koiali', [Definition] = NULL, [SortOrder] = 4579.00 WHERE [Code] = 'kpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmw', 'Mouwase', NULL, 456.50) END +VALUES ('jmw', 'Mouwase', NULL, 4580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mouwase', [Definition] = NULL, [SortOrder] = 456.50 WHERE [Code] = 'jmw' END +SET [Description] = 'Mouwase', [Definition] = NULL, [SortOrder] = 4580.00 WHERE [Code] = 'jmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzp', 'Movima', NULL, 456.60) END +VALUES ('mzp', 'Movima', NULL, 4581.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Movima', [Definition] = NULL, [SortOrder] = 456.60 WHERE [Code] = 'mzp' END +SET [Description] = 'Movima', [Definition] = NULL, [SortOrder] = 4581.00 WHERE [Code] = 'mzp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ity') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ity', 'Moyadan Itneg', NULL, 456.70) END +VALUES ('ity', 'Moyadan Itneg', NULL, 4582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moyadan Itneg', [Definition] = NULL, [SortOrder] = 456.70 WHERE [Code] = 'ity' END +SET [Description] = 'Moyadan Itneg', [Definition] = NULL, [SortOrder] = 4582.00 WHERE [Code] = 'ity' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmo', 'Moyon Naga', NULL, 456.80) END +VALUES ('nmo', 'Moyon Naga', NULL, 4583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Moyon Naga', [Definition] = NULL, [SortOrder] = 456.80 WHERE [Code] = 'nmo' END +SET [Description] = 'Moyon Naga', [Definition] = NULL, [SortOrder] = 4583.00 WHERE [Code] = 'nmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzy', 'Mozambican Sign Language', NULL, 456.90) END +VALUES ('mzy', 'Mozambican Sign Language', NULL, 4584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mozambican Sign Language', [Definition] = NULL, [SortOrder] = 456.90 WHERE [Code] = 'mzy' END +SET [Description] = 'Mozambican Sign Language', [Definition] = NULL, [SortOrder] = 4584.00 WHERE [Code] = 'mzy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxi', 'Mozarabic', NULL, 457.00) END +VALUES ('mxi', 'Mozarabic', NULL, 4585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mozarabic', [Definition] = NULL, [SortOrder] = 457.00 WHERE [Code] = 'mxi' END +SET [Description] = 'Mozarabic', [Definition] = NULL, [SortOrder] = 4585.00 WHERE [Code] = 'mxi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpi', 'Mpade', NULL, 457.10) END +VALUES ('mpi', 'Mpade', NULL, 4586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpade', [Definition] = NULL, [SortOrder] = 457.10 WHERE [Code] = 'mpi' END +SET [Description] = 'Mpade', [Definition] = NULL, [SortOrder] = 4586.00 WHERE [Code] = 'mpi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpj', 'Mpalitjanh', NULL, 457.20) END +VALUES ('xpj', 'Mpalitjanh', NULL, 4587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpalitjanh', [Definition] = NULL, [SortOrder] = 457.20 WHERE [Code] = 'xpj' END +SET [Description] = 'Mpalitjanh', [Definition] = NULL, [SortOrder] = 4587.00 WHERE [Code] = 'xpj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpz', 'Mpi', NULL, 457.30) END +VALUES ('mpz', 'Mpi', NULL, 4588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpi', [Definition] = NULL, [SortOrder] = 457.30 WHERE [Code] = 'mpz' END +SET [Description] = 'Mpi', [Definition] = NULL, [SortOrder] = 4588.00 WHERE [Code] = 'mpz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcx', 'Mpiemo', NULL, 457.40) END +VALUES ('mcx', 'Mpiemo', NULL, 4589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpiemo', [Definition] = NULL, [SortOrder] = 457.40 WHERE [Code] = 'mcx' END +SET [Description] = 'Mpiemo', [Definition] = NULL, [SortOrder] = 4589.00 WHERE [Code] = 'mcx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnd', 'Mpinda', NULL, 457.50) END +VALUES ('pnd', 'Mpinda', NULL, 4590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpinda', [Definition] = NULL, [SortOrder] = 457.50 WHERE [Code] = 'pnd' END +SET [Description] = 'Mpinda', [Definition] = NULL, [SortOrder] = 4590.00 WHERE [Code] = 'pnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpa', 'Mpoto', NULL, 457.60) END +VALUES ('mpa', 'Mpoto', NULL, 4591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpoto', [Definition] = NULL, [SortOrder] = 457.60 WHERE [Code] = 'mpa' END +SET [Description] = 'Mpoto', [Definition] = NULL, [SortOrder] = 4591.00 WHERE [Code] = 'mpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvt', 'Mpotovoro', NULL, 457.70) END +VALUES ('mvt', 'Mpotovoro', NULL, 4592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpotovoro', [Definition] = NULL, [SortOrder] = 457.70 WHERE [Code] = 'mvt' END +SET [Description] = 'Mpotovoro', [Definition] = NULL, [SortOrder] = 4592.00 WHERE [Code] = 'mvt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mgg', 'Mpumpong', NULL, 457.80) END +VALUES ('mgg', 'Mpumpong', NULL, 4593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpumpong', [Definition] = NULL, [SortOrder] = 457.80 WHERE [Code] = 'mgg' END +SET [Description] = 'Mpumpong', [Definition] = NULL, [SortOrder] = 4593.00 WHERE [Code] = 'mgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmp', 'Mpuono', NULL, 457.90) END +VALUES ('zmp', 'Mpuono', NULL, 4594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpuono', [Definition] = NULL, [SortOrder] = 457.90 WHERE [Code] = 'zmp' END +SET [Description] = 'Mpuono', [Definition] = NULL, [SortOrder] = 4594.00 WHERE [Code] = 'zmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akc', 'Mpur', NULL, 458.00) END +VALUES ('akc', 'Mpur', NULL, 4595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mpur', [Definition] = NULL, [SortOrder] = 458.00 WHERE [Code] = 'akc' END +SET [Description] = 'Mpur', [Definition] = NULL, [SortOrder] = 4595.00 WHERE [Code] = 'akc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cmr', 'Mro-Khimi Chin', NULL, 458.10) END +VALUES ('cmr', 'Mro-Khimi Chin', NULL, 4596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mro-Khimi Chin', [Definition] = NULL, [SortOrder] = 458.10 WHERE [Code] = 'cmr' END +SET [Description] = 'Mro-Khimi Chin', [Definition] = NULL, [SortOrder] = 4596.00 WHERE [Code] = 'cmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mro', 'Mru', NULL, 458.20) END +VALUES ('mro', 'Mru', NULL, 4597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mru', [Definition] = NULL, [SortOrder] = 458.20 WHERE [Code] = 'mro' END +SET [Description] = 'Mru', [Definition] = NULL, [SortOrder] = 4597.00 WHERE [Code] = 'mro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqx', 'Mser', NULL, 458.30) END +VALUES ('kqx', 'Mser', NULL, 4598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mser', [Definition] = NULL, [SortOrder] = 458.30 WHERE [Code] = 'kqx' END +SET [Description] = 'Mser', [Definition] = NULL, [SortOrder] = 4598.00 WHERE [Code] = 'kqx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atl', 'Mt. Iraya Agta', NULL, 458.40) END +VALUES ('atl', 'Mt. Iraya Agta', NULL, 4599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mt. Iraya Agta', [Definition] = NULL, [SortOrder] = 458.40 WHERE [Code] = 'atl' END +SET [Description] = 'Mt. Iraya Agta', [Definition] = NULL, [SortOrder] = 4599.00 WHERE [Code] = 'atl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agz', 'Mt. Iriga Agta', NULL, 458.50) END +VALUES ('agz', 'Mt. Iriga Agta', NULL, 4600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mt. Iriga Agta', [Definition] = NULL, [SortOrder] = 458.50 WHERE [Code] = 'agz' END +SET [Description] = 'Mt. Iriga Agta', [Definition] = NULL, [SortOrder] = 4600.00 WHERE [Code] = 'agz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukk', 'Muak Sa-aak', NULL, 458.60) END +VALUES ('ukk', 'Muak Sa-aak', NULL, 4601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muak Sa-aak', [Definition] = NULL, [SortOrder] = 458.60 WHERE [Code] = 'ukk' END +SET [Description] = 'Muak Sa-aak', [Definition] = NULL, [SortOrder] = 4601.00 WHERE [Code] = 'ukk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtd', 'Mualang', NULL, 458.70) END +VALUES ('mtd', 'Mualang', NULL, 4602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mualang', [Definition] = NULL, [SortOrder] = 458.70 WHERE [Code] = 'mtd' END +SET [Description] = 'Mualang', [Definition] = NULL, [SortOrder] = 4602.00 WHERE [Code] = 'mtd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsx', 'Mubami', NULL, 458.80) END +VALUES ('tsx', 'Mubami', NULL, 4603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mubami', [Definition] = NULL, [SortOrder] = 458.80 WHERE [Code] = 'tsx' END +SET [Description] = 'Mubami', [Definition] = NULL, [SortOrder] = 4603.00 WHERE [Code] = 'tsx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mub', 'Mubi', NULL, 458.90) END +VALUES ('mub', 'Mubi', NULL, 4604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mubi', [Definition] = NULL, [SortOrder] = 458.90 WHERE [Code] = 'mub' END +SET [Description] = 'Mubi', [Definition] = NULL, [SortOrder] = 4604.00 WHERE [Code] = 'mub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymd', 'Muda', NULL, 459.00) END +VALUES ('ymd', 'Muda', NULL, 4605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muda', [Definition] = NULL, [SortOrder] = 459.00 WHERE [Code] = 'ymd' END +SET [Description] = 'Muda', [Definition] = NULL, [SortOrder] = 4605.00 WHERE [Code] = 'ymd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmw', 'Mudburra', NULL, 459.10) END +VALUES ('dmw', 'Mudburra', NULL, 4606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mudburra', [Definition] = NULL, [SortOrder] = 459.10 WHERE [Code] = 'dmw' END +SET [Description] = 'Mudburra', [Definition] = NULL, [SortOrder] = 4606.00 WHERE [Code] = 'dmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gau', 'Mudhili Gadaba', NULL, 459.20) END +VALUES ('gau', 'Mudhili Gadaba', NULL, 4607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mudhili Gadaba', [Definition] = NULL, [SortOrder] = 459.20 WHERE [Code] = 'gau' END +SET [Description] = 'Mudhili Gadaba', [Definition] = NULL, [SortOrder] = 4607.00 WHERE [Code] = 'gau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmd', 'Mudu Koraga', NULL, 459.30) END +VALUES ('vmd', 'Mudu Koraga', NULL, 4608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mudu Koraga', [Definition] = NULL, [SortOrder] = 459.30 WHERE [Code] = 'vmd' END +SET [Description] = 'Mudu Koraga', [Definition] = NULL, [SortOrder] = 4608.00 WHERE [Code] = 'vmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udg', 'Muduga', NULL, 459.40) END +VALUES ('udg', 'Muduga', NULL, 4609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muduga', [Definition] = NULL, [SortOrder] = 459.40 WHERE [Code] = 'udg' END +SET [Description] = 'Muduga', [Definition] = NULL, [SortOrder] = 4609.00 WHERE [Code] = 'udg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoj', 'Mufian', NULL, 459.50) END +VALUES ('aoj', 'Mufian', NULL, 4610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mufian', [Definition] = NULL, [SortOrder] = 459.50 WHERE [Code] = 'aoj' END +SET [Description] = 'Mufian', [Definition] = NULL, [SortOrder] = 4610.00 WHERE [Code] = 'aoj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muk', 'Mugom', NULL, 459.60) END +VALUES ('muk', 'Mugom', NULL, 4611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mugom', [Definition] = NULL, [SortOrder] = 459.60 WHERE [Code] = 'muk' END +SET [Description] = 'Mugom', [Definition] = NULL, [SortOrder] = 4611.00 WHERE [Code] = 'muk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmr', 'Muinane', NULL, 459.70) END +VALUES ('bmr', 'Muinane', NULL, 4612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muinane', [Definition] = NULL, [SortOrder] = 459.70 WHERE [Code] = 'bmr' END +SET [Description] = 'Muinane', [Definition] = NULL, [SortOrder] = 4612.00 WHERE [Code] = 'bmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmk', 'Mukha-Dora', NULL, 459.80) END +VALUES ('mmk', 'Mukha-Dora', NULL, 4613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mukha-Dora', [Definition] = NULL, [SortOrder] = 459.80 WHERE [Code] = 'mmk' END +SET [Description] = 'Mukha-Dora', [Definition] = NULL, [SortOrder] = 4613.00 WHERE [Code] = 'mmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moz', 'Mukulu', NULL, 459.90) END +VALUES ('moz', 'Mukulu', NULL, 4614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mukulu', [Definition] = NULL, [SortOrder] = 459.90 WHERE [Code] = 'moz' END +SET [Description] = 'Mukulu', [Definition] = NULL, [SortOrder] = 4614.00 WHERE [Code] = 'moz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfw', 'Mulaha', NULL, 460.00) END +VALUES ('mfw', 'Mulaha', NULL, 4615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mulaha', [Definition] = NULL, [SortOrder] = 460.00 WHERE [Code] = 'mfw' END +SET [Description] = 'Mulaha', [Definition] = NULL, [SortOrder] = 4615.00 WHERE [Code] = 'mfw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlm', 'Mulam', NULL, 460.10) END +VALUES ('mlm', 'Mulam', NULL, 4616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mulam', [Definition] = NULL, [SortOrder] = 460.10 WHERE [Code] = 'mlm' END +SET [Description] = 'Mulam', [Definition] = NULL, [SortOrder] = 4616.00 WHERE [Code] = 'mlm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giu', 'Mulao', NULL, 460.20) END +VALUES ('giu', 'Mulao', NULL, 4617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mulao', [Definition] = NULL, [SortOrder] = 460.20 WHERE [Code] = 'giu' END +SET [Description] = 'Mulao', [Definition] = NULL, [SortOrder] = 4617.00 WHERE [Code] = 'giu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvh', 'Mulgi', NULL, 460.30) END +VALUES ('mvh', 'Mulgi', NULL, 4618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mulgi', [Definition] = NULL, [SortOrder] = 460.30 WHERE [Code] = 'mvh' END +SET [Description] = 'Mulgi', [Definition] = NULL, [SortOrder] = 4618.00 WHERE [Code] = 'mvh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kpb', 'Mullu Kurumba', NULL, 460.40) END +VALUES ('kpb', 'Mullu Kurumba', NULL, 4619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mullu Kurumba', [Definition] = NULL, [SortOrder] = 460.40 WHERE [Code] = 'kpb' END +SET [Description] = 'Mullu Kurumba', [Definition] = NULL, [SortOrder] = 4619.00 WHERE [Code] = 'kpb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mul', 'Multiple languages', NULL, 460.50) END +VALUES ('mul', 'Multiple languages', NULL, 4620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Multiple languages', [Definition] = NULL, [SortOrder] = 460.50 WHERE [Code] = 'mul' END +SET [Description] = 'Multiple languages', [Definition] = NULL, [SortOrder] = 4620.00 WHERE [Code] = 'mul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmu', 'Muluridyi', NULL, 460.60) END +VALUES ('vmu', 'Muluridyi', NULL, 4621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muluridyi', [Definition] = NULL, [SortOrder] = 460.60 WHERE [Code] = 'vmu' END +SET [Description] = 'Muluridyi', [Definition] = NULL, [SortOrder] = 4621.00 WHERE [Code] = 'vmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqa', 'Mum', NULL, 460.70) END +VALUES ('kqa', 'Mum', NULL, 4622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mum', [Definition] = NULL, [SortOrder] = 460.70 WHERE [Code] = 'kqa' END +SET [Description] = 'Mum', [Definition] = NULL, [SortOrder] = 4622.00 WHERE [Code] = 'kqa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzm', 'Mumuye', NULL, 460.80) END +VALUES ('mzm', 'Mumuye', NULL, 4623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mumuye', [Definition] = NULL, [SortOrder] = 460.80 WHERE [Code] = 'mzm' END +SET [Description] = 'Mumuye', [Definition] = NULL, [SortOrder] = 4623.00 WHERE [Code] = 'mzm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwq', 'Mün Chin', NULL, 460.90) END +VALUES ('mwq', 'Mün Chin', NULL, 4624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mün Chin', [Definition] = NULL, [SortOrder] = 460.90 WHERE [Code] = 'mwq' END +SET [Description] = 'Mün Chin', [Definition] = NULL, [SortOrder] = 4624.00 WHERE [Code] = 'mwq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnb', 'Muna', NULL, 461.00) END +VALUES ('mnb', 'Muna', NULL, 4625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muna', [Definition] = NULL, [SortOrder] = 461.00 WHERE [Code] = 'mnb' END +SET [Description] = 'Muna', [Definition] = NULL, [SortOrder] = 4625.00 WHERE [Code] = 'mnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unx', 'Munda', NULL, 461.10) END +VALUES ('unx', 'Munda', NULL, 4626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munda', [Definition] = NULL, [SortOrder] = 461.10 WHERE [Code] = 'unx' END +SET [Description] = 'Munda', [Definition] = NULL, [SortOrder] = 4626.00 WHERE [Code] = 'unx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boe', 'Mundabli', NULL, 461.20) END +VALUES ('boe', 'Mundabli', NULL, 4627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundabli', [Definition] = NULL, [SortOrder] = 461.20 WHERE [Code] = 'boe' END +SET [Description] = 'Mundabli', [Definition] = NULL, [SortOrder] = 4627.00 WHERE [Code] = 'boe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mua', 'Mundang', NULL, 461.30) END +VALUES ('mua', 'Mundang', NULL, 4628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundang', [Definition] = NULL, [SortOrder] = 461.30 WHERE [Code] = 'mua' END +SET [Description] = 'Mundang', [Definition] = NULL, [SortOrder] = 4628.00 WHERE [Code] = 'mua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnf', 'Mundani', NULL, 461.40) END +VALUES ('mnf', 'Mundani', NULL, 4629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundani', [Definition] = NULL, [SortOrder] = 461.40 WHERE [Code] = 'mnf' END +SET [Description] = 'Mundani', [Definition] = NULL, [SortOrder] = 4629.00 WHERE [Code] = 'mnf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unr', 'Mundari', NULL, 461.50) END +VALUES ('unr', 'Mundari', NULL, 4630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundari', [Definition] = NULL, [SortOrder] = 461.50 WHERE [Code] = 'unr' END +SET [Description] = 'Mundari', [Definition] = NULL, [SortOrder] = 4630.00 WHERE [Code] = 'unr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmf', 'Mundat', NULL, 461.60) END +VALUES ('mmf', 'Mundat', NULL, 4631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundat', [Definition] = NULL, [SortOrder] = 461.60 WHERE [Code] = 'mmf' END +SET [Description] = 'Mundat', [Definition] = NULL, [SortOrder] = 4631.00 WHERE [Code] = 'mmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muh', 'Mündü', NULL, 461.70) END +VALUES ('muh', 'Mündü', NULL, 4632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mündü', [Definition] = NULL, [SortOrder] = 461.70 WHERE [Code] = 'muh' END +SET [Description] = 'Mündü', [Definition] = NULL, [SortOrder] = 4632.00 WHERE [Code] = 'muh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myu', 'Mundurukú', NULL, 461.80) END +VALUES ('myu', 'Mundurukú', NULL, 4633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mundurukú', [Definition] = NULL, [SortOrder] = 461.80 WHERE [Code] = 'myu' END +SET [Description] = 'Mundurukú', [Definition] = NULL, [SortOrder] = 4633.00 WHERE [Code] = 'myu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mhk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mhk', 'Mungaka', NULL, 461.90) END +VALUES ('mhk', 'Mungaka', NULL, 4634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mungaka', [Definition] = NULL, [SortOrder] = 461.90 WHERE [Code] = 'mhk' END +SET [Description] = 'Mungaka', [Definition] = NULL, [SortOrder] = 4634.00 WHERE [Code] = 'mhk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mth', 'Munggui', NULL, 462.00) END +VALUES ('mth', 'Munggui', NULL, 4635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munggui', [Definition] = NULL, [SortOrder] = 462.00 WHERE [Code] = 'mth' END +SET [Description] = 'Munggui', [Definition] = NULL, [SortOrder] = 4635.00 WHERE [Code] = 'mth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpv', 'Mungkip', NULL, 462.10) END +VALUES ('mpv', 'Mungkip', NULL, 4636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mungkip', [Definition] = NULL, [SortOrder] = 462.10 WHERE [Code] = 'mpv' END +SET [Description] = 'Mungkip', [Definition] = NULL, [SortOrder] = 4636.00 WHERE [Code] = 'mpv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myr', 'Muniche', NULL, 462.20) END +VALUES ('myr', 'Muniche', NULL, 4637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muniche', [Definition] = NULL, [SortOrder] = 462.20 WHERE [Code] = 'myr' END +SET [Description] = 'Muniche', [Definition] = NULL, [SortOrder] = 4637.00 WHERE [Code] = 'myr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtc', 'Munit', NULL, 462.30) END +VALUES ('mtc', 'Munit', NULL, 4638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munit', [Definition] = NULL, [SortOrder] = 462.30 WHERE [Code] = 'mtc' END +SET [Description] = 'Munit', [Definition] = NULL, [SortOrder] = 4638.00 WHERE [Code] = 'mtc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnj', 'Munji', NULL, 462.40) END +VALUES ('mnj', 'Munji', NULL, 4639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munji', [Definition] = NULL, [SortOrder] = 462.40 WHERE [Code] = 'mnj' END +SET [Description] = 'Munji', [Definition] = NULL, [SortOrder] = 4639.00 WHERE [Code] = 'mnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umu', 'Munsee', NULL, 462.50) END +VALUES ('umu', 'Munsee', NULL, 4640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Munsee', [Definition] = NULL, [SortOrder] = 462.50 WHERE [Code] = 'umu' END +SET [Description] = 'Munsee', [Definition] = NULL, [SortOrder] = 4640.00 WHERE [Code] = 'umu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtq', 'Muong', NULL, 462.60) END +VALUES ('mtq', 'Muong', NULL, 4641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muong', [Definition] = NULL, [SortOrder] = 462.60 WHERE [Code] = 'mtq' END +SET [Description] = 'Muong', [Definition] = NULL, [SortOrder] = 4641.00 WHERE [Code] = 'mtq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkv', 'Mur Pano', NULL, 462.70) END +VALUES ('tkv', 'Mur Pano', NULL, 4642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mur Pano', [Definition] = NULL, [SortOrder] = 462.70 WHERE [Code] = 'tkv' END +SET [Description] = 'Mur Pano', [Definition] = NULL, [SortOrder] = 4642.00 WHERE [Code] = 'tkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asx', 'Muratayak', NULL, 462.80) END +VALUES ('asx', 'Muratayak', NULL, 4643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muratayak', [Definition] = NULL, [SortOrder] = 462.80 WHERE [Code] = 'asx' END +SET [Description] = 'Muratayak', [Definition] = NULL, [SortOrder] = 4643.00 WHERE [Code] = 'asx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxr', 'Murik (Malaysia)', NULL, 462.90) END +VALUES ('mxr', 'Murik (Malaysia)', NULL, 4644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murik (Malaysia)', [Definition] = NULL, [SortOrder] = 462.90 WHERE [Code] = 'mxr' END +SET [Description] = 'Murik (Malaysia)', [Definition] = NULL, [SortOrder] = 4644.00 WHERE [Code] = 'mxr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtf', 'Murik (Papua New Guinea)', NULL, 463.00) END +VALUES ('mtf', 'Murik (Papua New Guinea)', NULL, 4645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murik (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 463.00 WHERE [Code] = 'mtf' END +SET [Description] = 'Murik (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 4645.00 WHERE [Code] = 'mtf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmh', 'Murkim', NULL, 463.10) END +VALUES ('rmh', 'Murkim', NULL, 4646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murkim', [Definition] = NULL, [SortOrder] = 463.10 WHERE [Code] = 'rmh' END +SET [Description] = 'Murkim', [Definition] = NULL, [SortOrder] = 4646.00 WHERE [Code] = 'rmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mur', 'Murle', NULL, 463.20) END +VALUES ('mur', 'Murle', NULL, 4647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murle', [Definition] = NULL, [SortOrder] = 463.20 WHERE [Code] = 'mur' END +SET [Description] = 'Murle', [Definition] = NULL, [SortOrder] = 4647.00 WHERE [Code] = 'mur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwf', 'Murrinh-Patha', NULL, 463.30) END +VALUES ('mwf', 'Murrinh-Patha', NULL, 4648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murrinh-Patha', [Definition] = NULL, [SortOrder] = 463.30 WHERE [Code] = 'mwf' END +SET [Description] = 'Murrinh-Patha', [Definition] = NULL, [SortOrder] = 4648.00 WHERE [Code] = 'mwf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muz', 'Mursi', NULL, 463.40) END +VALUES ('muz', 'Mursi', NULL, 4649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mursi', [Definition] = NULL, [SortOrder] = 463.40 WHERE [Code] = 'muz' END +SET [Description] = 'Mursi', [Definition] = NULL, [SortOrder] = 4649.00 WHERE [Code] = 'muz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huu', 'Murui Huitoto', NULL, 463.50) END +VALUES ('huu', 'Murui Huitoto', NULL, 4650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murui Huitoto', [Definition] = NULL, [SortOrder] = 463.50 WHERE [Code] = 'huu' END +SET [Description] = 'Murui Huitoto', [Definition] = NULL, [SortOrder] = 4650.00 WHERE [Code] = 'huu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqw', 'Murupi', NULL, 463.60) END +VALUES ('mqw', 'Murupi', NULL, 4651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Murupi', [Definition] = NULL, [SortOrder] = 463.60 WHERE [Code] = 'mqw' END +SET [Description] = 'Murupi', [Definition] = NULL, [SortOrder] = 4651.00 WHERE [Code] = 'mqw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmu', 'Muruwari', NULL, 463.70) END +VALUES ('zmu', 'Muruwari', NULL, 4652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muruwari', [Definition] = NULL, [SortOrder] = 463.70 WHERE [Code] = 'zmu' END +SET [Description] = 'Muruwari', [Definition] = NULL, [SortOrder] = 4652.00 WHERE [Code] = 'zmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmq', 'Musak', NULL, 463.80) END +VALUES ('mmq', 'Musak', NULL, 4653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musak', [Definition] = NULL, [SortOrder] = 463.80 WHERE [Code] = 'mmq' END +SET [Description] = 'Musak', [Definition] = NULL, [SortOrder] = 4653.00 WHERE [Code] = 'mmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmi', 'Musar', NULL, 463.90) END +VALUES ('mmi', 'Musar', NULL, 4654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musar', [Definition] = NULL, [SortOrder] = 463.90 WHERE [Code] = 'mmi' END +SET [Description] = 'Musar', [Definition] = NULL, [SortOrder] = 4654.00 WHERE [Code] = 'mmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smm', 'Musasa', NULL, 464.00) END +VALUES ('smm', 'Musasa', NULL, 4655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musasa', [Definition] = NULL, [SortOrder] = 464.00 WHERE [Code] = 'smm' END +SET [Description] = 'Musasa', [Definition] = NULL, [SortOrder] = 4655.00 WHERE [Code] = 'smm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mse', 'Musey', NULL, 464.10) END +VALUES ('mse', 'Musey', NULL, 4656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musey', [Definition] = NULL, [SortOrder] = 464.10 WHERE [Code] = 'mse' END +SET [Description] = 'Musey', [Definition] = NULL, [SortOrder] = 4656.00 WHERE [Code] = 'mse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mug', 'Musgu', NULL, 464.20) END +VALUES ('mug', 'Musgu', NULL, 4657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musgu', [Definition] = NULL, [SortOrder] = 464.20 WHERE [Code] = 'mug' END +SET [Description] = 'Musgu', [Definition] = NULL, [SortOrder] = 4657.00 WHERE [Code] = 'mug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xma', 'Mushungulu', NULL, 464.30) END +VALUES ('xma', 'Mushungulu', NULL, 4658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mushungulu', [Definition] = NULL, [SortOrder] = 464.30 WHERE [Code] = 'xma' END +SET [Description] = 'Mushungulu', [Definition] = NULL, [SortOrder] = 4658.00 WHERE [Code] = 'xma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mui', 'Musi', NULL, 464.40) END +VALUES ('mui', 'Musi', NULL, 4659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musi', [Definition] = NULL, [SortOrder] = 464.40 WHERE [Code] = 'mui' END +SET [Description] = 'Musi', [Definition] = NULL, [SortOrder] = 4659.00 WHERE [Code] = 'mui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mje', 'Muskum', NULL, 464.50) END +VALUES ('mje', 'Muskum', NULL, 4660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muskum', [Definition] = NULL, [SortOrder] = 464.50 WHERE [Code] = 'mje' END +SET [Description] = 'Muskum', [Definition] = NULL, [SortOrder] = 4660.00 WHERE [Code] = 'mje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttt', 'Muslim Tat', NULL, 464.60) END +VALUES ('ttt', 'Muslim Tat', NULL, 4661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muslim Tat', [Definition] = NULL, [SortOrder] = 464.60 WHERE [Code] = 'ttt' END +SET [Description] = 'Muslim Tat', [Definition] = NULL, [SortOrder] = 4661.00 WHERE [Code] = 'ttt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msu', 'Musom', NULL, 464.70) END +VALUES ('msu', 'Musom', NULL, 4662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Musom', [Definition] = NULL, [SortOrder] = 464.70 WHERE [Code] = 'msu' END +SET [Description] = 'Musom', [Definition] = NULL, [SortOrder] = 4662.00 WHERE [Code] = 'msu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emi', 'Mussau-Emira', NULL, 464.80) END +VALUES ('emi', 'Mussau-Emira', NULL, 4663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mussau-Emira', [Definition] = NULL, [SortOrder] = 464.80 WHERE [Code] = 'emi' END +SET [Description] = 'Mussau-Emira', [Definition] = NULL, [SortOrder] = 4663.00 WHERE [Code] = 'emi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muv', 'Muthuvan', NULL, 464.90) END +VALUES ('muv', 'Muthuvan', NULL, 4664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muthuvan', [Definition] = NULL, [SortOrder] = 464.90 WHERE [Code] = 'muv' END +SET [Description] = 'Muthuvan', [Definition] = NULL, [SortOrder] = 4664.00 WHERE [Code] = 'muv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuc', 'Mutu', NULL, 465.00) END +VALUES ('tuc', 'Mutu', NULL, 4665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mutu', [Definition] = NULL, [SortOrder] = 465.00 WHERE [Code] = 'tuc' END +SET [Description] = 'Mutu', [Definition] = NULL, [SortOrder] = 4665.00 WHERE [Code] = 'tuc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muy', 'Muyang', NULL, 465.10) END +VALUES ('muy', 'Muyang', NULL, 4666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muyang', [Definition] = NULL, [SortOrder] = 465.10 WHERE [Code] = 'muy' END +SET [Description] = 'Muyang', [Definition] = NULL, [SortOrder] = 4666.00 WHERE [Code] = 'muy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myw', 'Muyuw', NULL, 465.20) END +VALUES ('myw', 'Muyuw', NULL, 4667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muyuw', [Definition] = NULL, [SortOrder] = 465.20 WHERE [Code] = 'myw' END +SET [Description] = 'Muyuw', [Definition] = NULL, [SortOrder] = 4667.00 WHERE [Code] = 'myw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymz', 'Muzi', NULL, 465.30) END +VALUES ('ymz', 'Muzi', NULL, 4668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Muzi', [Definition] = NULL, [SortOrder] = 465.30 WHERE [Code] = 'ymz' END +SET [Description] = 'Muzi', [Definition] = NULL, [SortOrder] = 4668.00 WHERE [Code] = 'ymz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcj', 'Mvanip', NULL, 465.40) END +VALUES ('mcj', 'Mvanip', NULL, 4669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mvanip', [Definition] = NULL, [SortOrder] = 465.40 WHERE [Code] = 'mcj' END +SET [Description] = 'Mvanip', [Definition] = NULL, [SortOrder] = 4669.00 WHERE [Code] = 'mcj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxh', 'Mvuba', NULL, 465.50) END +VALUES ('mxh', 'Mvuba', NULL, 4670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mvuba', [Definition] = NULL, [SortOrder] = 465.50 WHERE [Code] = 'mxh' END +SET [Description] = 'Mvuba', [Definition] = NULL, [SortOrder] = 4670.00 WHERE [Code] = 'mxh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sur', 'Mwaghavul', NULL, 465.60) END +VALUES ('sur', 'Mwaghavul', NULL, 4671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwaghavul', [Definition] = NULL, [SortOrder] = 465.60 WHERE [Code] = 'sur' END +SET [Description] = 'Mwaghavul', [Definition] = NULL, [SortOrder] = 4671.00 WHERE [Code] = 'sur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlc', 'Mwali Comorian', NULL, 465.70) END +VALUES ('wlc', 'Mwali Comorian', NULL, 4672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwali Comorian', [Definition] = NULL, [SortOrder] = 465.70 WHERE [Code] = 'wlc' END +SET [Description] = 'Mwali Comorian', [Definition] = NULL, [SortOrder] = 4672.00 WHERE [Code] = 'wlc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moa', 'Mwan', NULL, 465.80) END +VALUES ('moa', 'Mwan', NULL, 4673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwan', [Definition] = NULL, [SortOrder] = 465.80 WHERE [Code] = 'moa' END +SET [Description] = 'Mwan', [Definition] = NULL, [SortOrder] = 4673.00 WHERE [Code] = 'moa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmw', 'Mwani', NULL, 465.90) END +VALUES ('wmw', 'Mwani', NULL, 4674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwani', [Definition] = NULL, [SortOrder] = 465.90 WHERE [Code] = 'wmw' END +SET [Description] = 'Mwani', [Definition] = NULL, [SortOrder] = 4674.00 WHERE [Code] = 'wmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwa', 'Mwatebu', NULL, 466.00) END +VALUES ('mwa', 'Mwatebu', NULL, 4675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwatebu', [Definition] = NULL, [SortOrder] = 466.00 WHERE [Code] = 'mwa' END +SET [Description] = 'Mwatebu', [Definition] = NULL, [SortOrder] = 4675.00 WHERE [Code] = 'mwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwe', 'Mwera (Chimwera)', NULL, 466.10) END +VALUES ('mwe', 'Mwera (Chimwera)', NULL, 4676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwera (Chimwera)', [Definition] = NULL, [SortOrder] = 466.10 WHERE [Code] = 'mwe' END +SET [Description] = 'Mwera (Chimwera)', [Definition] = NULL, [SortOrder] = 4676.00 WHERE [Code] = 'mwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjh', 'Mwera (Nyasa)', NULL, 466.20) END +VALUES ('mjh', 'Mwera (Nyasa)', NULL, 4677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwera (Nyasa)', [Definition] = NULL, [SortOrder] = 466.20 WHERE [Code] = 'mjh' END +SET [Description] = 'Mwera (Nyasa)', [Definition] = NULL, [SortOrder] = 4677.00 WHERE [Code] = 'mjh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mws', 'Mwimbi-Muthambi', NULL, 466.30) END +VALUES ('mws', 'Mwimbi-Muthambi', NULL, 4678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mwimbi-Muthambi', [Definition] = NULL, [SortOrder] = 466.30 WHERE [Code] = 'mws' END +SET [Description] = 'Mwimbi-Muthambi', [Definition] = NULL, [SortOrder] = 4678.00 WHERE [Code] = 'mws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysm', 'Myanmar Sign Language', NULL, 466.40) END +VALUES ('ysm', 'Myanmar Sign Language', NULL, 4679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Myanmar Sign Language', [Definition] = NULL, [SortOrder] = 466.40 WHERE [Code] = 'ysm' END +SET [Description] = 'Myanmar Sign Language', [Definition] = NULL, [SortOrder] = 4679.00 WHERE [Code] = 'ysm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gmy', 'Mycenaean Greek', NULL, 466.50) END +VALUES ('gmy', 'Mycenaean Greek', NULL, 4680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mycenaean Greek', [Definition] = NULL, [SortOrder] = 466.50 WHERE [Code] = 'gmy' END +SET [Description] = 'Mycenaean Greek', [Definition] = NULL, [SortOrder] = 4680.00 WHERE [Code] = 'gmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mye', 'Myene', NULL, 466.60) END +VALUES ('mye', 'Myene', NULL, 4681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Myene', [Definition] = NULL, [SortOrder] = 466.60 WHERE [Code] = 'mye' END +SET [Description] = 'Myene', [Definition] = NULL, [SortOrder] = 4681.00 WHERE [Code] = 'mye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yms', 'Mysian', NULL, 466.70) END +VALUES ('yms', 'Mysian', NULL, 4682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mysian', [Definition] = NULL, [SortOrder] = 466.70 WHERE [Code] = 'yms' END +SET [Description] = 'Mysian', [Definition] = NULL, [SortOrder] = 4682.00 WHERE [Code] = 'yms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nme', 'Mzieme Naga', NULL, 466.80) END +VALUES ('nme', 'Mzieme Naga', NULL, 4683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Mzieme Naga', [Definition] = NULL, [SortOrder] = 466.80 WHERE [Code] = 'nme' END +SET [Description] = 'Mzieme Naga', [Definition] = NULL, [SortOrder] = 4683.00 WHERE [Code] = 'nme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqo', 'N''Ko', NULL, 466.90) END +VALUES ('nqo', 'N''Ko', NULL, 4684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'N''Ko', [Definition] = NULL, [SortOrder] = 466.90 WHERE [Code] = 'nqo' END +SET [Description] = 'N''Ko', [Definition] = NULL, [SortOrder] = 4684.00 WHERE [Code] = 'nqo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngh', 'N?ng', NULL, 467.00) END +VALUES ('ngh', 'N?ng', NULL, 4685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'N?ng', [Definition] = NULL, [SortOrder] = 467.00 WHERE [Code] = 'ngh' END +SET [Description] = 'N?ng', [Definition] = NULL, [SortOrder] = 4685.00 WHERE [Code] = 'ngh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbt', 'Na', NULL, 467.10) END +VALUES ('nbt', 'Na', NULL, 4686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Na', [Definition] = NULL, [SortOrder] = 467.10 WHERE [Code] = 'nbt' END +SET [Description] = 'Na', [Definition] = NULL, [SortOrder] = 4686.00 WHERE [Code] = 'nbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nck', 'Na-kara', NULL, 467.20) END +VALUES ('nck', 'Na-kara', NULL, 4687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Na-kara', [Definition] = NULL, [SortOrder] = 467.20 WHERE [Code] = 'nck' END +SET [Description] = 'Na-kara', [Definition] = NULL, [SortOrder] = 4687.00 WHERE [Code] = 'nck' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neo', 'Ná-Meo', NULL, 467.30) END +VALUES ('neo', 'Ná-Meo', NULL, 4688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ná-Meo', [Definition] = NULL, [SortOrder] = 467.30 WHERE [Code] = 'neo' END +SET [Description] = 'Ná-Meo', [Definition] = NULL, [SortOrder] = 4688.00 WHERE [Code] = 'neo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nao', 'Naaba', NULL, 467.40) END +VALUES ('nao', 'Naaba', NULL, 4689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naaba', [Definition] = NULL, [SortOrder] = 467.40 WHERE [Code] = 'nao' END +SET [Description] = 'Naaba', [Definition] = NULL, [SortOrder] = 4689.00 WHERE [Code] = 'nao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzv', 'Naami', NULL, 467.50) END +VALUES ('bzv', 'Naami', NULL, 4690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naami', [Definition] = NULL, [SortOrder] = 467.50 WHERE [Code] = 'bzv' END +SET [Description] = 'Naami', [Definition] = NULL, [SortOrder] = 4690.00 WHERE [Code] = 'bzv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nas', 'Naasioi', NULL, 467.60) END +VALUES ('nas', 'Naasioi', NULL, 4691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naasioi', [Definition] = NULL, [SortOrder] = 467.60 WHERE [Code] = 'nas' END +SET [Description] = 'Naasioi', [Definition] = NULL, [SortOrder] = 4691.00 WHERE [Code] = 'nas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mne', 'Naba', NULL, 467.70) END +VALUES ('mne', 'Naba', NULL, 4692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naba', [Definition] = NULL, [SortOrder] = 467.70 WHERE [Code] = 'mne' END +SET [Description] = 'Naba', [Definition] = NULL, [SortOrder] = 4692.00 WHERE [Code] = 'mne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naf', 'Nabak', NULL, 467.80) END +VALUES ('naf', 'Nabak', NULL, 4693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nabak', [Definition] = NULL, [SortOrder] = 467.80 WHERE [Code] = 'naf' END +SET [Description] = 'Nabak', [Definition] = NULL, [SortOrder] = 4693.00 WHERE [Code] = 'naf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mty', 'Nabi', NULL, 467.90) END +VALUES ('mty', 'Nabi', NULL, 4694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nabi', [Definition] = NULL, [SortOrder] = 467.90 WHERE [Code] = 'mty' END +SET [Description] = 'Nabi', [Definition] = NULL, [SortOrder] = 4694.00 WHERE [Code] = 'mty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncd', 'Nachering', NULL, 468.00) END +VALUES ('ncd', 'Nachering', NULL, 4695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nachering', [Definition] = NULL, [SortOrder] = 468.00 WHERE [Code] = 'ncd' END +SET [Description] = 'Nachering', [Definition] = NULL, [SortOrder] = 4695.00 WHERE [Code] = 'ncd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbj', 'Nadëb', NULL, 468.10) END +VALUES ('mbj', 'Nadëb', NULL, 4696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nadëb', [Definition] = NULL, [SortOrder] = 468.10 WHERE [Code] = 'mbj' END +SET [Description] = 'Nadëb', [Definition] = NULL, [SortOrder] = 4696.00 WHERE [Code] = 'mbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndf', 'Nadruvian', NULL, 468.20) END +VALUES ('ndf', 'Nadruvian', NULL, 4697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nadruvian', [Definition] = NULL, [SortOrder] = 468.20 WHERE [Code] = 'ndf' END +SET [Description] = 'Nadruvian', [Definition] = NULL, [SortOrder] = 4697.00 WHERE [Code] = 'ndf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nfr', 'Nafaanra', NULL, 468.30) END +VALUES ('nfr', 'Nafaanra', NULL, 4698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nafaanra', [Definition] = NULL, [SortOrder] = 468.30 WHERE [Code] = 'nfr' END +SET [Description] = 'Nafaanra', [Definition] = NULL, [SortOrder] = 4698.00 WHERE [Code] = 'nfr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srf', 'Nafi', NULL, 468.40) END +VALUES ('srf', 'Nafi', NULL, 4699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nafi', [Definition] = NULL, [SortOrder] = 468.40 WHERE [Code] = 'srf' END +SET [Description] = 'Nafi', [Definition] = NULL, [SortOrder] = 4699.00 WHERE [Code] = 'srf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxx', 'Nafri', NULL, 468.50) END +VALUES ('nxx', 'Nafri', NULL, 4700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nafri', [Definition] = NULL, [SortOrder] = 468.50 WHERE [Code] = 'nxx' END +SET [Description] = 'Nafri', [Definition] = NULL, [SortOrder] = 4700.00 WHERE [Code] = 'nxx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbn', 'Nafusi', NULL, 468.60) END +VALUES ('jbn', 'Nafusi', NULL, 4701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nafusi', [Definition] = NULL, [SortOrder] = 468.60 WHERE [Code] = 'jbn' END +SET [Description] = 'Nafusi', [Definition] = NULL, [SortOrder] = 4701.00 WHERE [Code] = 'jbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nag', 'Naga Pidgin', NULL, 468.70) END +VALUES ('nag', 'Naga Pidgin', NULL, 4702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naga Pidgin', [Definition] = NULL, [SortOrder] = 468.70 WHERE [Code] = 'nag' END +SET [Description] = 'Naga Pidgin', [Definition] = NULL, [SortOrder] = 4702.00 WHERE [Code] = 'nag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbg', 'Nagarchal', NULL, 468.80) END +VALUES ('nbg', 'Nagarchal', NULL, 4703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nagarchal', [Definition] = NULL, [SortOrder] = 468.80 WHERE [Code] = 'nbg' END +SET [Description] = 'Nagarchal', [Definition] = NULL, [SortOrder] = 4703.00 WHERE [Code] = 'nbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxe', 'Nage', NULL, 468.90) END +VALUES ('nxe', 'Nage', NULL, 4704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nage', [Definition] = NULL, [SortOrder] = 468.90 WHERE [Code] = 'nxe' END +SET [Description] = 'Nage', [Definition] = NULL, [SortOrder] = 4704.00 WHERE [Code] = 'nxe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngv', 'Nagumi', NULL, 469.00) END +VALUES ('ngv', 'Nagumi', NULL, 4705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nagumi', [Definition] = NULL, [SortOrder] = 469.00 WHERE [Code] = 'ngv' END +SET [Description] = 'Nagumi', [Definition] = NULL, [SortOrder] = 4705.00 WHERE [Code] = 'ngv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlx', 'Nahali', NULL, 469.10) END +VALUES ('nlx', 'Nahali', NULL, 4706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nahali', [Definition] = NULL, [SortOrder] = 469.10 WHERE [Code] = 'nlx' END +SET [Description] = 'Nahali', [Definition] = NULL, [SortOrder] = 4706.00 WHERE [Code] = 'nlx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhh', 'Nahari', NULL, 469.20) END +VALUES ('nhh', 'Nahari', NULL, 4707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nahari', [Definition] = NULL, [SortOrder] = 469.20 WHERE [Code] = 'nhh' END +SET [Description] = 'Nahari', [Definition] = NULL, [SortOrder] = 4707.00 WHERE [Code] = 'nhh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bio', 'Nai', NULL, 469.30) END +VALUES ('bio', 'Nai', NULL, 4708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nai', [Definition] = NULL, [SortOrder] = 469.30 WHERE [Code] = 'bio' END +SET [Description] = 'Nai', [Definition] = NULL, [SortOrder] = 4708.00 WHERE [Code] = 'bio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ars') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ars', 'Najdi Arabic', NULL, 469.40) END +VALUES ('ars', 'Najdi Arabic', NULL, 4709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Najdi Arabic', [Definition] = NULL, [SortOrder] = 469.40 WHERE [Code] = 'ars' END +SET [Description] = 'Najdi Arabic', [Definition] = NULL, [SortOrder] = 4709.00 WHERE [Code] = 'ars' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nae', 'Naka''ela', NULL, 469.50) END +VALUES ('nae', 'Naka''ela', NULL, 4710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naka''ela', [Definition] = NULL, [SortOrder] = 469.50 WHERE [Code] = 'nae' END +SET [Description] = 'Naka''ela', [Definition] = NULL, [SortOrder] = 4710.00 WHERE [Code] = 'nae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkj', 'Nakai', NULL, 469.60) END +VALUES ('nkj', 'Nakai', NULL, 4711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nakai', [Definition] = NULL, [SortOrder] = 469.60 WHERE [Code] = 'nkj' END +SET [Description] = 'Nakai', [Definition] = NULL, [SortOrder] = 4711.00 WHERE [Code] = 'nkj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nib', 'Nakame', NULL, 469.70) END +VALUES ('nib', 'Nakame', NULL, 4712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nakame', [Definition] = NULL, [SortOrder] = 469.70 WHERE [Code] = 'nib' END +SET [Description] = 'Nakame', [Definition] = NULL, [SortOrder] = 4712.00 WHERE [Code] = 'nib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nak', 'Nakanai', NULL, 469.80) END +VALUES ('nak', 'Nakanai', NULL, 4713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nakanai', [Definition] = NULL, [SortOrder] = 469.80 WHERE [Code] = 'nak' END +SET [Description] = 'Nakanai', [Definition] = NULL, [SortOrder] = 4713.00 WHERE [Code] = 'nak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbk', 'Nake', NULL, 469.90) END +VALUES ('nbk', 'Nake', NULL, 4714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nake', [Definition] = NULL, [SortOrder] = 469.90 WHERE [Code] = 'nbk' END +SET [Description] = 'Nake', [Definition] = NULL, [SortOrder] = 4714.00 WHERE [Code] = 'nbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mff') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mff', 'Naki', NULL, 470.00) END +VALUES ('mff', 'Naki', NULL, 4715.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naki', [Definition] = NULL, [SortOrder] = 470.00 WHERE [Code] = 'mff' END +SET [Description] = 'Naki', [Definition] = NULL, [SortOrder] = 4715.00 WHERE [Code] = 'mff' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nax', 'Nakwi', NULL, 470.10) END +VALUES ('nax', 'Nakwi', NULL, 4716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nakwi', [Definition] = NULL, [SortOrder] = 470.10 WHERE [Code] = 'nax' END +SET [Description] = 'Nakwi', [Definition] = NULL, [SortOrder] = 4716.00 WHERE [Code] = 'nax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlc', 'Nalca', NULL, 470.20) END +VALUES ('nlc', 'Nalca', NULL, 4717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nalca', [Definition] = NULL, [SortOrder] = 470.20 WHERE [Code] = 'nlc' END +SET [Description] = 'Nalca', [Definition] = NULL, [SortOrder] = 4717.00 WHERE [Code] = 'nlc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nss', 'Nali', NULL, 470.30) END +VALUES ('nss', 'Nali', NULL, 4718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nali', [Definition] = NULL, [SortOrder] = 470.30 WHERE [Code] = 'nss' END +SET [Description] = 'Nali', [Definition] = NULL, [SortOrder] = 4718.00 WHERE [Code] = 'nss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nal', 'Nalik', NULL, 470.40) END +VALUES ('nal', 'Nalik', NULL, 4719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nalik', [Definition] = NULL, [SortOrder] = 470.40 WHERE [Code] = 'nal' END +SET [Description] = 'Nalik', [Definition] = NULL, [SortOrder] = 4719.00 WHERE [Code] = 'nal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlz', 'Nalögo', NULL, 470.50) END +VALUES ('nlz', 'Nalögo', NULL, 4720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nalögo', [Definition] = NULL, [SortOrder] = 470.50 WHERE [Code] = 'nlz' END +SET [Description] = 'Nalögo', [Definition] = NULL, [SortOrder] = 4720.00 WHERE [Code] = 'nlz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naj', 'Nalu', NULL, 470.60) END +VALUES ('naj', 'Nalu', NULL, 4721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nalu', [Definition] = NULL, [SortOrder] = 470.60 WHERE [Code] = 'naj' END +SET [Description] = 'Nalu', [Definition] = NULL, [SortOrder] = 4721.00 WHERE [Code] = 'naj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylo', 'Naluo Yi', NULL, 470.70) END +VALUES ('ylo', 'Naluo Yi', NULL, 4722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naluo Yi', [Definition] = NULL, [SortOrder] = 470.70 WHERE [Code] = 'ylo' END +SET [Description] = 'Naluo Yi', [Definition] = NULL, [SortOrder] = 4722.00 WHERE [Code] = 'ylo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmx', 'Nama (Papua New Guinea)', NULL, 470.80) END +VALUES ('nmx', 'Nama (Papua New Guinea)', NULL, 4723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nama (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 470.80 WHERE [Code] = 'nmx' END +SET [Description] = 'Nama (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 4723.00 WHERE [Code] = 'nmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmk', 'Namakura', NULL, 470.90) END +VALUES ('nmk', 'Namakura', NULL, 4724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namakura', [Definition] = NULL, [SortOrder] = 470.90 WHERE [Code] = 'nmk' END +SET [Description] = 'Namakura', [Definition] = NULL, [SortOrder] = 4724.00 WHERE [Code] = 'nmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkm', 'Namat', NULL, 471.00) END +VALUES ('nkm', 'Namat', NULL, 4725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namat', [Definition] = NULL, [SortOrder] = 471.00 WHERE [Code] = 'nkm' END +SET [Description] = 'Namat', [Definition] = NULL, [SortOrder] = 4725.00 WHERE [Code] = 'nkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncm', 'Nambo', NULL, 471.10) END +VALUES ('ncm', 'Nambo', NULL, 4726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nambo', [Definition] = NULL, [SortOrder] = 471.10 WHERE [Code] = 'ncm' END +SET [Description] = 'Nambo', [Definition] = NULL, [SortOrder] = 4726.00 WHERE [Code] = 'ncm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmq', 'Nambya', NULL, 471.20) END +VALUES ('nmq', 'Nambya', NULL, 4727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nambya', [Definition] = NULL, [SortOrder] = 471.20 WHERE [Code] = 'nmq' END +SET [Description] = 'Nambya', [Definition] = NULL, [SortOrder] = 4727.00 WHERE [Code] = 'nmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnm', 'Namia', NULL, 471.30) END +VALUES ('nnm', 'Namia', NULL, 4728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namia', [Definition] = NULL, [SortOrder] = 471.30 WHERE [Code] = 'nnm' END +SET [Description] = 'Namia', [Definition] = NULL, [SortOrder] = 4728.00 WHERE [Code] = 'nnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nvm', 'Namiae', NULL, 471.40) END +VALUES ('nvm', 'Namiae', NULL, 4729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namiae', [Definition] = NULL, [SortOrder] = 471.40 WHERE [Code] = 'nvm' END +SET [Description] = 'Namiae', [Definition] = NULL, [SortOrder] = 4729.00 WHERE [Code] = 'nvm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbs', 'Namibian Sign Language', NULL, 471.50) END +VALUES ('nbs', 'Namibian Sign Language', NULL, 4730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namibian Sign Language', [Definition] = NULL, [SortOrder] = 471.50 WHERE [Code] = 'nbs' END +SET [Description] = 'Namibian Sign Language', [Definition] = NULL, [SortOrder] = 4730.00 WHERE [Code] = 'nbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naa', 'Namla', NULL, 471.60) END +VALUES ('naa', 'Namla', NULL, 4731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namla', [Definition] = NULL, [SortOrder] = 471.60 WHERE [Code] = 'naa' END +SET [Description] = 'Namla', [Definition] = NULL, [SortOrder] = 4731.00 WHERE [Code] = 'naa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxw', 'Namo', NULL, 471.70) END +VALUES ('mxw', 'Namo', NULL, 4732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namo', [Definition] = NULL, [SortOrder] = 471.70 WHERE [Code] = 'mxw' END +SET [Description] = 'Namo', [Definition] = NULL, [SortOrder] = 4732.00 WHERE [Code] = 'mxw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmt', 'Namonuito', NULL, 471.80) END +VALUES ('nmt', 'Namonuito', NULL, 4733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namonuito', [Definition] = NULL, [SortOrder] = 471.80 WHERE [Code] = 'nmt' END +SET [Description] = 'Namonuito', [Definition] = NULL, [SortOrder] = 4733.00 WHERE [Code] = 'nmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwb', 'Namosi-Naitasiri-Serua', NULL, 471.90) END +VALUES ('bwb', 'Namosi-Naitasiri-Serua', NULL, 4734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namosi-Naitasiri-Serua', [Definition] = NULL, [SortOrder] = 471.90 WHERE [Code] = 'bwb' END +SET [Description] = 'Namosi-Naitasiri-Serua', [Definition] = NULL, [SortOrder] = 4734.00 WHERE [Code] = 'bwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmy', 'Namuyi', NULL, 472.00) END +VALUES ('nmy', 'Namuyi', NULL, 4735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Namuyi', [Definition] = NULL, [SortOrder] = 472.00 WHERE [Code] = 'nmy' END +SET [Description] = 'Namuyi', [Definition] = NULL, [SortOrder] = 4735.00 WHERE [Code] = 'nmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gld', 'Nanai', NULL, 472.10) END +VALUES ('gld', 'Nanai', NULL, 4736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanai', [Definition] = NULL, [SortOrder] = 472.10 WHERE [Code] = 'gld' END +SET [Description] = 'Nanai', [Definition] = NULL, [SortOrder] = 4736.00 WHERE [Code] = 'gld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnc', 'Nancere', NULL, 472.20) END +VALUES ('nnc', 'Nancere', NULL, 4737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nancere', [Definition] = NULL, [SortOrder] = 472.20 WHERE [Code] = 'nnc' END +SET [Description] = 'Nancere', [Definition] = NULL, [SortOrder] = 4737.00 WHERE [Code] = 'nnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnb', 'Nande', NULL, 472.30) END +VALUES ('nnb', 'Nande', NULL, 4738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nande', [Definition] = NULL, [SortOrder] = 472.30 WHERE [Code] = 'nnb' END +SET [Description] = 'Nande', [Definition] = NULL, [SortOrder] = 4738.00 WHERE [Code] = 'nnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niq', 'Nandi', NULL, 472.40) END +VALUES ('niq', 'Nandi', NULL, 4739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nandi', [Definition] = NULL, [SortOrder] = 472.40 WHERE [Code] = 'niq' END +SET [Description] = 'Nandi', [Definition] = NULL, [SortOrder] = 4739.00 WHERE [Code] = 'niq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sen', 'Nanerigé Sénoufo', NULL, 472.50) END +VALUES ('sen', 'Nanerigé Sénoufo', NULL, 4740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanerigé Sénoufo', [Definition] = NULL, [SortOrder] = 472.50 WHERE [Code] = 'sen' END +SET [Description] = 'Nanerigé Sénoufo', [Definition] = NULL, [SortOrder] = 4740.00 WHERE [Code] = 'sen' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzz', 'Nanga Dama Dogon', NULL, 472.60) END +VALUES ('nzz', 'Nanga Dama Dogon', NULL, 4741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanga Dama Dogon', [Definition] = NULL, [SortOrder] = 472.60 WHERE [Code] = 'nzz' END +SET [Description] = 'Nanga Dama Dogon', [Definition] = NULL, [SortOrder] = 4741.00 WHERE [Code] = 'nzz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnk', 'Nankina', NULL, 472.70) END +VALUES ('nnk', 'Nankina', NULL, 4742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nankina', [Definition] = NULL, [SortOrder] = 472.70 WHERE [Code] = 'nnk' END +SET [Description] = 'Nankina', [Definition] = NULL, [SortOrder] = 4742.00 WHERE [Code] = 'nnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cox', 'Nanti', NULL, 472.80) END +VALUES ('cox', 'Nanti', NULL, 4743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanti', [Definition] = NULL, [SortOrder] = 472.80 WHERE [Code] = 'cox' END +SET [Description] = 'Nanti', [Definition] = NULL, [SortOrder] = 4743.00 WHERE [Code] = 'cox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnt', 'Nanticoke', NULL, 472.90) END +VALUES ('nnt', 'Nanticoke', NULL, 4744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanticoke', [Definition] = NULL, [SortOrder] = 472.90 WHERE [Code] = 'nnt' END +SET [Description] = 'Nanticoke', [Definition] = NULL, [SortOrder] = 4744.00 WHERE [Code] = 'nnt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afk', 'Nanubae', NULL, 473.00) END +VALUES ('afk', 'Nanubae', NULL, 4745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nanubae', [Definition] = NULL, [SortOrder] = 473.00 WHERE [Code] = 'afk' END +SET [Description] = 'Nanubae', [Definition] = NULL, [SortOrder] = 4745.00 WHERE [Code] = 'afk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvo', 'Napo Lowland Quechua', NULL, 473.10) END +VALUES ('qvo', 'Napo Lowland Quechua', NULL, 4746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Napo Lowland Quechua', [Definition] = NULL, [SortOrder] = 473.10 WHERE [Code] = 'qvo' END +SET [Description] = 'Napo Lowland Quechua', [Definition] = NULL, [SortOrder] = 4746.00 WHERE [Code] = 'qvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npy', 'Napu', NULL, 473.20) END +VALUES ('npy', 'Napu', NULL, 4747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Napu', [Definition] = NULL, [SortOrder] = 473.20 WHERE [Code] = 'npy' END +SET [Description] = 'Napu', [Definition] = NULL, [SortOrder] = 4747.00 WHERE [Code] = 'npy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npa', 'Nar Phu', NULL, 473.30) END +VALUES ('npa', 'Nar Phu', NULL, 4748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nar Phu', [Definition] = NULL, [SortOrder] = 473.30 WHERE [Code] = 'npa' END +SET [Description] = 'Nar Phu', [Definition] = NULL, [SortOrder] = 4748.00 WHERE [Code] = 'npa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrb', 'Nara', NULL, 473.40) END +VALUES ('nrb', 'Nara', NULL, 4749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nara', [Definition] = NULL, [SortOrder] = 473.40 WHERE [Code] = 'nrb' END +SET [Description] = 'Nara', [Definition] = NULL, [SortOrder] = 4749.00 WHERE [Code] = 'nrb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nac', 'Narak', NULL, 473.50) END +VALUES ('nac', 'Narak', NULL, 4750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narak', [Definition] = NULL, [SortOrder] = 473.50 WHERE [Code] = 'nac' END +SET [Description] = 'Narak', [Definition] = NULL, [SortOrder] = 4750.00 WHERE [Code] = 'nac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrg', 'Narango', NULL, 473.60) END +VALUES ('nrg', 'Narango', NULL, 4751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narango', [Definition] = NULL, [SortOrder] = 473.60 WHERE [Code] = 'nrg' END +SET [Description] = 'Narango', [Definition] = NULL, [SortOrder] = 4751.00 WHERE [Code] = 'nrg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnr', 'Nari Nari', NULL, 473.70) END +VALUES ('rnr', 'Nari Nari', NULL, 4752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nari Nari', [Definition] = NULL, [SortOrder] = 473.70 WHERE [Code] = 'rnr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loh', 'Narim', NULL, 473.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narim', [Definition] = NULL, [SortOrder] = 473.80 WHERE [Code] = 'loh' END +SET [Description] = 'Nari Nari', [Definition] = NULL, [SortOrder] = 4752.00 WHERE [Code] = 'rnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhr', 'Naro', NULL, 473.90) END +VALUES ('nhr', 'Naro', NULL, 4753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naro', [Definition] = NULL, [SortOrder] = 473.90 WHERE [Code] = 'nhr' END +SET [Description] = 'Naro', [Definition] = NULL, [SortOrder] = 4753.00 WHERE [Code] = 'nhr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrm', 'Narom', NULL, 474.00) END +VALUES ('nrm', 'Narom', NULL, 4754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narom', [Definition] = NULL, [SortOrder] = 474.00 WHERE [Code] = 'nrm' END +SET [Description] = 'Narom', [Definition] = NULL, [SortOrder] = 4754.00 WHERE [Code] = 'nrm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnt', 'Narragansett', NULL, 474.10) END +VALUES ('xnt', 'Narragansett', NULL, 4755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narragansett', [Definition] = NULL, [SortOrder] = 474.10 WHERE [Code] = 'xnt' END +SET [Description] = 'Narragansett', [Definition] = NULL, [SortOrder] = 4755.00 WHERE [Code] = 'xnt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nru', 'Narua', NULL, 474.20) END +VALUES ('nru', 'Narua', NULL, 4756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narua', [Definition] = NULL, [SortOrder] = 474.20 WHERE [Code] = 'nru' END +SET [Description] = 'Narua', [Definition] = NULL, [SortOrder] = 4756.00 WHERE [Code] = 'nru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnr', 'Narungga', NULL, 474.30) END +VALUES ('nnr', 'Narungga', NULL, 4757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Narungga', [Definition] = NULL, [SortOrder] = 474.30 WHERE [Code] = 'nnr' END +SET [Description] = 'Narungga', [Definition] = NULL, [SortOrder] = 4757.00 WHERE [Code] = 'nnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsy', 'Nasal', NULL, 474.40) END +VALUES ('nsy', 'Nasal', NULL, 4758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nasal', [Definition] = NULL, [SortOrder] = 474.40 WHERE [Code] = 'nsy' END +SET [Description] = 'Nasal', [Definition] = NULL, [SortOrder] = 4758.00 WHERE [Code] = 'nsy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nvh', 'Nasarian', NULL, 474.50) END +VALUES ('nvh', 'Nasarian', NULL, 4759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nasarian', [Definition] = NULL, [SortOrder] = 474.50 WHERE [Code] = 'nvh' END +SET [Description] = 'Nasarian', [Definition] = NULL, [SortOrder] = 4759.00 WHERE [Code] = 'nvh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsk', 'Naskapi', NULL, 474.60) END +VALUES ('nsk', 'Naskapi', NULL, 4760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naskapi', [Definition] = NULL, [SortOrder] = 474.60 WHERE [Code] = 'nsk' END +SET [Description] = 'Naskapi', [Definition] = NULL, [SortOrder] = 4760.00 WHERE [Code] = 'nsk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntz', 'Natanzi', NULL, 474.70) END +VALUES ('ntz', 'Natanzi', NULL, 4761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Natanzi', [Definition] = NULL, [SortOrder] = 474.70 WHERE [Code] = 'ntz' END +SET [Description] = 'Natanzi', [Definition] = NULL, [SortOrder] = 4761.00 WHERE [Code] = 'ntz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncz', 'Natchez', NULL, 474.80) END +VALUES ('ncz', 'Natchez', NULL, 4762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Natchez', [Definition] = NULL, [SortOrder] = 474.80 WHERE [Code] = 'ncz' END +SET [Description] = 'Natchez', [Definition] = NULL, [SortOrder] = 4762.00 WHERE [Code] = 'ncz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntm', 'Nateni', NULL, 474.90) END +VALUES ('ntm', 'Nateni', NULL, 4763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nateni', [Definition] = NULL, [SortOrder] = 474.90 WHERE [Code] = 'ntm' END +SET [Description] = 'Nateni', [Definition] = NULL, [SortOrder] = 4763.00 WHERE [Code] = 'ntm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nte', 'Nathembo', NULL, 475.00) END +VALUES ('nte', 'Nathembo', NULL, 4764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nathembo', [Definition] = NULL, [SortOrder] = 475.00 WHERE [Code] = 'nte' END +SET [Description] = 'Nathembo', [Definition] = NULL, [SortOrder] = 4764.00 WHERE [Code] = 'nte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nti', 'Natioro', NULL, 475.10) END +VALUES ('nti', 'Natioro', NULL, 4765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Natioro', [Definition] = NULL, [SortOrder] = 475.10 WHERE [Code] = 'nti' END +SET [Description] = 'Natioro', [Definition] = NULL, [SortOrder] = 4765.00 WHERE [Code] = 'nti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntu', 'Natügu', NULL, 475.20) END +VALUES ('ntu', 'Natügu', NULL, 4766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Natügu', [Definition] = NULL, [SortOrder] = 475.20 WHERE [Code] = 'ntu' END +SET [Description] = 'Natügu', [Definition] = NULL, [SortOrder] = 4766.00 WHERE [Code] = 'ntu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxa', 'Nauete', NULL, 475.30) END +VALUES ('nxa', 'Nauete', NULL, 4767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nauete', [Definition] = NULL, [SortOrder] = 475.30 WHERE [Code] = 'nxa' END +SET [Description] = 'Nauete', [Definition] = NULL, [SortOrder] = 4767.00 WHERE [Code] = 'nxa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynk', 'Naukan Yupik', NULL, 475.40) END +VALUES ('ynk', 'Naukan Yupik', NULL, 4768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naukan Yupik', [Definition] = NULL, [SortOrder] = 475.40 WHERE [Code] = 'ynk' END +SET [Description] = 'Naukan Yupik', [Definition] = NULL, [SortOrder] = 4768.00 WHERE [Code] = 'ynk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncn', 'Nauna', NULL, 475.50) END +VALUES ('ncn', 'Nauna', NULL, 4769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nauna', [Definition] = NULL, [SortOrder] = 475.50 WHERE [Code] = 'ncn' END +SET [Description] = 'Nauna', [Definition] = NULL, [SortOrder] = 4769.00 WHERE [Code] = 'ncn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwo', 'Nauo', NULL, 475.60) END +VALUES ('nwo', 'Nauo', NULL, 4770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nauo', [Definition] = NULL, [SortOrder] = 475.60 WHERE [Code] = 'nwo' END +SET [Description] = 'Nauo', [Definition] = NULL, [SortOrder] = 4770.00 WHERE [Code] = 'nwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nau', 'Nauru', NULL, 475.70) END +VALUES ('nau', 'Nauru', NULL, 4771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nauru', [Definition] = NULL, [SortOrder] = 475.70 WHERE [Code] = 'nau' END +SET [Description] = 'Nauru', [Definition] = NULL, [SortOrder] = 4771.00 WHERE [Code] = 'nau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nav', 'Navajo', NULL, 475.80) END +VALUES ('nav', 'Navajo', NULL, 4772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Navajo', [Definition] = NULL, [SortOrder] = 475.80 WHERE [Code] = 'nav' END +SET [Description] = 'Navajo', [Definition] = NULL, [SortOrder] = 4772.00 WHERE [Code] = 'nav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsw', 'Navut', NULL, 475.90) END +VALUES ('nsw', 'Navut', NULL, 4773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Navut', [Definition] = NULL, [SortOrder] = 475.90 WHERE [Code] = 'nsw' END +SET [Description] = 'Navut', [Definition] = NULL, [SortOrder] = 4773.00 WHERE [Code] = 'nsw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwr', 'Nawaru', NULL, 476.00) END +VALUES ('nwr', 'Nawaru', NULL, 4774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nawaru', [Definition] = NULL, [SortOrder] = 476.00 WHERE [Code] = 'nwr' END +SET [Description] = 'Nawaru', [Definition] = NULL, [SortOrder] = 4774.00 WHERE [Code] = 'nwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwa', 'Nawathinehena', NULL, 476.10) END +VALUES ('nwa', 'Nawathinehena', NULL, 4775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nawathinehena', [Definition] = NULL, [SortOrder] = 476.10 WHERE [Code] = 'nwa' END +SET [Description] = 'Nawathinehena', [Definition] = NULL, [SortOrder] = 4775.00 WHERE [Code] = 'nwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmz', 'Nawdm', NULL, 476.20) END +VALUES ('nmz', 'Nawdm', NULL, 4776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nawdm', [Definition] = NULL, [SortOrder] = 476.20 WHERE [Code] = 'nmz' END +SET [Description] = 'Nawdm', [Definition] = NULL, [SortOrder] = 4776.00 WHERE [Code] = 'nmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'naw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('naw', 'Nawuri', NULL, 476.30) END +VALUES ('naw', 'Nawuri', NULL, 4777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nawuri', [Definition] = NULL, [SortOrder] = 476.30 WHERE [Code] = 'naw' END +SET [Description] = 'Nawuri', [Definition] = NULL, [SortOrder] = 4777.00 WHERE [Code] = 'naw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxq', 'Naxi', NULL, 476.40) END +VALUES ('nxq', 'Naxi', NULL, 4778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Naxi', [Definition] = NULL, [SortOrder] = 476.40 WHERE [Code] = 'nxq' END +SET [Description] = 'Naxi', [Definition] = NULL, [SortOrder] = 4778.00 WHERE [Code] = 'nxq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noz', 'Nayi', NULL, 476.50) END +VALUES ('noz', 'Nayi', NULL, 4779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nayi', [Definition] = NULL, [SortOrder] = 476.50 WHERE [Code] = 'noz' END +SET [Description] = 'Nayi', [Definition] = NULL, [SortOrder] = 4779.00 WHERE [Code] = 'noz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyq', 'Nayini', NULL, 476.60) END +VALUES ('nyq', 'Nayini', NULL, 4780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nayini', [Definition] = NULL, [SortOrder] = 476.60 WHERE [Code] = 'nyq' END +SET [Description] = 'Nayini', [Definition] = NULL, [SortOrder] = 4780.00 WHERE [Code] = 'nyq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncr', 'Ncane', NULL, 476.70) END +VALUES ('ncr', 'Ncane', NULL, 4781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ncane', [Definition] = NULL, [SortOrder] = 476.70 WHERE [Code] = 'ncr' END +SET [Description] = 'Ncane', [Definition] = NULL, [SortOrder] = 4781.00 WHERE [Code] = 'ncr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlu', 'Nchumbulu', NULL, 476.80) END +VALUES ('nlu', 'Nchumbulu', NULL, 4782.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nchumbulu', [Definition] = NULL, [SortOrder] = 476.80 WHERE [Code] = 'nlu' END +SET [Description] = 'Nchumbulu', [Definition] = NULL, [SortOrder] = 4782.00 WHERE [Code] = 'nlu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnz', 'Nda''nda''', NULL, 476.90) END +VALUES ('nnz', 'Nda''nda''', NULL, 4783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nda''nda''', [Definition] = NULL, [SortOrder] = 476.90 WHERE [Code] = 'nnz' END +SET [Description] = 'Nda''nda''', [Definition] = NULL, [SortOrder] = 4783.00 WHERE [Code] = 'nnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gke', 'Ndai', NULL, 477.00) END +VALUES ('gke', 'Ndai', NULL, 4784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndai', [Definition] = NULL, [SortOrder] = 477.00 WHERE [Code] = 'gke' END +SET [Description] = 'Ndai', [Definition] = NULL, [SortOrder] = 4784.00 WHERE [Code] = 'gke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndk', 'Ndaka', NULL, 477.10) END +VALUES ('ndk', 'Ndaka', NULL, 4785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndaka', [Definition] = NULL, [SortOrder] = 477.10 WHERE [Code] = 'ndk' END +SET [Description] = 'Ndaka', [Definition] = NULL, [SortOrder] = 4785.00 WHERE [Code] = 'ndk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndh', 'Ndali', NULL, 477.20) END +VALUES ('ndh', 'Ndali', NULL, 4786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndali', [Definition] = NULL, [SortOrder] = 477.20 WHERE [Code] = 'ndh' END +SET [Description] = 'Ndali', [Definition] = NULL, [SortOrder] = 4786.00 WHERE [Code] = 'ndh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndm', 'Ndam', NULL, 477.30) END +VALUES ('ndm', 'Ndam', NULL, 4787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndam', [Definition] = NULL, [SortOrder] = 477.30 WHERE [Code] = 'ndm' END +SET [Description] = 'Ndam', [Definition] = NULL, [SortOrder] = 4787.00 WHERE [Code] = 'ndm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndj', 'Ndamba', NULL, 477.40) END +VALUES ('ndj', 'Ndamba', NULL, 4788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndamba', [Definition] = NULL, [SortOrder] = 477.40 WHERE [Code] = 'ndj' END +SET [Description] = 'Ndamba', [Definition] = NULL, [SortOrder] = 4788.00 WHERE [Code] = 'ndj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxo', 'Ndambomo', NULL, 477.50) END +VALUES ('nxo', 'Ndambomo', NULL, 4789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndambomo', [Definition] = NULL, [SortOrder] = 477.50 WHERE [Code] = 'nxo' END +SET [Description] = 'Ndambomo', [Definition] = NULL, [SortOrder] = 4789.00 WHERE [Code] = 'nxo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nda', 'Ndasa', NULL, 477.60) END +VALUES ('nda', 'Ndasa', NULL, 4790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndasa', [Definition] = NULL, [SortOrder] = 477.60 WHERE [Code] = 'nda' END +SET [Description] = 'Ndasa', [Definition] = NULL, [SortOrder] = 4790.00 WHERE [Code] = 'nda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndc', 'Ndau', NULL, 477.70) END +VALUES ('ndc', 'Ndau', NULL, 4791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndau', [Definition] = NULL, [SortOrder] = 477.70 WHERE [Code] = 'ndc' END +SET [Description] = 'Ndau', [Definition] = NULL, [SortOrder] = 4791.00 WHERE [Code] = 'ndc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ned') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ned', 'Nde-Gbite', NULL, 477.80) END +VALUES ('ned', 'Nde-Gbite', NULL, 4792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nde-Gbite', [Definition] = NULL, [SortOrder] = 477.80 WHERE [Code] = 'ned' END +SET [Description] = 'Nde-Gbite', [Definition] = NULL, [SortOrder] = 4792.00 WHERE [Code] = 'ned' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndd', 'Nde-Nsele-Nta', NULL, 477.90) END +VALUES ('ndd', 'Nde-Nsele-Nta', NULL, 4793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nde-Nsele-Nta', [Definition] = NULL, [SortOrder] = 477.90 WHERE [Code] = 'ndd' END +SET [Description] = 'Nde-Nsele-Nta', [Definition] = NULL, [SortOrder] = 4793.00 WHERE [Code] = 'ndd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nml', 'Ndemli', NULL, 478.00) END +VALUES ('nml', 'Ndemli', NULL, 4794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndemli', [Definition] = NULL, [SortOrder] = 478.00 WHERE [Code] = 'nml' END +SET [Description] = 'Ndemli', [Definition] = NULL, [SortOrder] = 4794.00 WHERE [Code] = 'nml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dne', 'Ndendeule', NULL, 478.10) END +VALUES ('dne', 'Ndendeule', NULL, 4795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndendeule', [Definition] = NULL, [SortOrder] = 478.10 WHERE [Code] = 'dne' END +SET [Description] = 'Ndendeule', [Definition] = NULL, [SortOrder] = 4795.00 WHERE [Code] = 'dne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndg', 'Ndengereko', NULL, 478.20) END +VALUES ('ndg', 'Ndengereko', NULL, 4796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndengereko', [Definition] = NULL, [SortOrder] = 478.20 WHERE [Code] = 'ndg' END +SET [Description] = 'Ndengereko', [Definition] = NULL, [SortOrder] = 4796.00 WHERE [Code] = 'ndg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eli', 'Nding', NULL, 478.30) END +VALUES ('eli', 'Nding', NULL, 4797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nding', [Definition] = NULL, [SortOrder] = 478.30 WHERE [Code] = 'eli' END +SET [Description] = 'Nding', [Definition] = NULL, [SortOrder] = 4797.00 WHERE [Code] = 'eli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndp', 'Ndo', NULL, 478.40) END +VALUES ('ndp', 'Ndo', NULL, 4798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndo', [Definition] = NULL, [SortOrder] = 478.40 WHERE [Code] = 'ndp' END +SET [Description] = 'Ndo', [Definition] = NULL, [SortOrder] = 4798.00 WHERE [Code] = 'ndp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndw', 'Ndobo', NULL, 478.50) END +VALUES ('ndw', 'Ndobo', NULL, 4799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndobo', [Definition] = NULL, [SortOrder] = 478.50 WHERE [Code] = 'ndw' END +SET [Description] = 'Ndobo', [Definition] = NULL, [SortOrder] = 4799.00 WHERE [Code] = 'ndw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbb', 'Ndoe', NULL, 478.60) END +VALUES ('nbb', 'Ndoe', NULL, 4800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndoe', [Definition] = NULL, [SortOrder] = 478.60 WHERE [Code] = 'nbb' END +SET [Description] = 'Ndoe', [Definition] = NULL, [SortOrder] = 4800.00 WHERE [Code] = 'nbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndz', 'Ndogo', NULL, 478.70) END +VALUES ('ndz', 'Ndogo', NULL, 4801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndogo', [Definition] = NULL, [SortOrder] = 478.70 WHERE [Code] = 'ndz' END +SET [Description] = 'Ndogo', [Definition] = NULL, [SortOrder] = 4801.00 WHERE [Code] = 'ndz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndl', 'Ndolo', NULL, 478.80) END +VALUES ('ndl', 'Ndolo', NULL, 4802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndolo', [Definition] = NULL, [SortOrder] = 478.80 WHERE [Code] = 'ndl' END +SET [Description] = 'Ndolo', [Definition] = NULL, [SortOrder] = 4802.00 WHERE [Code] = 'ndl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqm', 'Ndom', NULL, 478.90) END +VALUES ('nqm', 'Ndom', NULL, 4803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndom', [Definition] = NULL, [SortOrder] = 478.90 WHERE [Code] = 'nqm' END +SET [Description] = 'Ndom', [Definition] = NULL, [SortOrder] = 4803.00 WHERE [Code] = 'nqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndq', 'Ndombe', NULL, 479.00) END +VALUES ('ndq', 'Ndombe', NULL, 4804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndombe', [Definition] = NULL, [SortOrder] = 479.00 WHERE [Code] = 'ndq' END +SET [Description] = 'Ndombe', [Definition] = NULL, [SortOrder] = 4804.00 WHERE [Code] = 'ndq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njd', 'Ndonde Hamba', NULL, 479.10) END +VALUES ('njd', 'Ndonde Hamba', NULL, 4805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndonde Hamba', [Definition] = NULL, [SortOrder] = 479.10 WHERE [Code] = 'njd' END +SET [Description] = 'Ndonde Hamba', [Definition] = NULL, [SortOrder] = 4805.00 WHERE [Code] = 'njd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndo', 'Ndonga', NULL, 479.20) END +VALUES ('ndo', 'Ndonga', NULL, 4806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndonga', [Definition] = NULL, [SortOrder] = 479.20 WHERE [Code] = 'ndo' END +SET [Description] = 'Ndonga', [Definition] = NULL, [SortOrder] = 4806.00 WHERE [Code] = 'ndo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndr', 'Ndoola', NULL, 479.30) END +VALUES ('ndr', 'Ndoola', NULL, 4807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndoola', [Definition] = NULL, [SortOrder] = 479.30 WHERE [Code] = 'ndr' END +SET [Description] = 'Ndoola', [Definition] = NULL, [SortOrder] = 4807.00 WHERE [Code] = 'ndr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgt', 'Ndra''ngith', NULL, 479.40) END +VALUES ('dgt', 'Ndra''ngith', NULL, 4808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndra''ngith', [Definition] = NULL, [SortOrder] = 479.40 WHERE [Code] = 'dgt' END +SET [Description] = 'Ndra''ngith', [Definition] = NULL, [SortOrder] = 4808.00 WHERE [Code] = 'dgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dno', 'Ndrulo', NULL, 479.50) END +VALUES ('dno', 'Ndrulo', NULL, 4809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndrulo', [Definition] = NULL, [SortOrder] = 479.50 WHERE [Code] = 'dno' END +SET [Description] = 'Ndrulo', [Definition] = NULL, [SortOrder] = 4809.00 WHERE [Code] = 'dno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndx', 'Nduga', NULL, 479.60) END +VALUES ('ndx', 'Nduga', NULL, 4810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nduga', [Definition] = NULL, [SortOrder] = 479.60 WHERE [Code] = 'ndx' END +SET [Description] = 'Nduga', [Definition] = NULL, [SortOrder] = 4810.00 WHERE [Code] = 'ndx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmd', 'Ndumu', NULL, 479.70) END +VALUES ('nmd', 'Ndumu', NULL, 4811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndumu', [Definition] = NULL, [SortOrder] = 479.70 WHERE [Code] = 'nmd' END +SET [Description] = 'Ndumu', [Definition] = NULL, [SortOrder] = 4811.00 WHERE [Code] = 'nmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuh', 'Ndunda', NULL, 479.80) END +VALUES ('nuh', 'Ndunda', NULL, 4812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndunda', [Definition] = NULL, [SortOrder] = 479.80 WHERE [Code] = 'nuh' END +SET [Description] = 'Ndunda', [Definition] = NULL, [SortOrder] = 4812.00 WHERE [Code] = 'nuh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndt', 'Ndunga', NULL, 479.90) END +VALUES ('ndt', 'Ndunga', NULL, 4813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndunga', [Definition] = NULL, [SortOrder] = 479.90 WHERE [Code] = 'ndt' END +SET [Description] = 'Ndunga', [Definition] = NULL, [SortOrder] = 4813.00 WHERE [Code] = 'ndt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndv', 'Ndut', NULL, 480.00) END +VALUES ('ndv', 'Ndut', NULL, 4814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndut', [Definition] = NULL, [SortOrder] = 480.00 WHERE [Code] = 'ndv' END +SET [Description] = 'Ndut', [Definition] = NULL, [SortOrder] = 4814.00 WHERE [Code] = 'ndv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nww', 'Ndwewe', NULL, 480.10) END +VALUES ('nww', 'Ndwewe', NULL, 4815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndwewe', [Definition] = NULL, [SortOrder] = 480.10 WHERE [Code] = 'nww' END +SET [Description] = 'Ndwewe', [Definition] = NULL, [SortOrder] = 4815.00 WHERE [Code] = 'nww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njt', 'Ndyuka-Trio Pidgin', NULL, 480.20) END +VALUES ('njt', 'Ndyuka-Trio Pidgin', NULL, 4816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndyuka-Trio Pidgin', [Definition] = NULL, [SortOrder] = 480.20 WHERE [Code] = 'njt' END +SET [Description] = 'Ndyuka-Trio Pidgin', [Definition] = NULL, [SortOrder] = 4816.00 WHERE [Code] = 'njt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wni', 'Ndzwani Comorian', NULL, 480.30) END +VALUES ('wni', 'Ndzwani Comorian', NULL, 4817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ndzwani Comorian', [Definition] = NULL, [SortOrder] = 480.30 WHERE [Code] = 'wni' END +SET [Description] = 'Ndzwani Comorian', [Definition] = NULL, [SortOrder] = 4817.00 WHERE [Code] = 'wni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nap', 'Neapolitan', NULL, 480.40) END +VALUES ('nap', 'Neapolitan', NULL, 4818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neapolitan', [Definition] = NULL, [SortOrder] = 480.40 WHERE [Code] = 'nap' END +SET [Description] = 'Neapolitan', [Definition] = NULL, [SortOrder] = 4818.00 WHERE [Code] = 'nap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nec', 'Nedebang', NULL, 480.50) END +VALUES ('nec', 'Nedebang', NULL, 4819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nedebang', [Definition] = NULL, [SortOrder] = 480.50 WHERE [Code] = 'nec' END +SET [Description] = 'Nedebang', [Definition] = NULL, [SortOrder] = 4819.00 WHERE [Code] = 'nec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nef', 'Nefamese', NULL, 480.60) END +VALUES ('nef', 'Nefamese', NULL, 4820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nefamese', [Definition] = NULL, [SortOrder] = 480.60 WHERE [Code] = 'nef' END +SET [Description] = 'Nefamese', [Definition] = NULL, [SortOrder] = 4820.00 WHERE [Code] = 'nef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dcr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dcr', 'Negerhollands', NULL, 480.70) END +VALUES ('dcr', 'Negerhollands', NULL, 4821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Negerhollands', [Definition] = NULL, [SortOrder] = 480.70 WHERE [Code] = 'dcr' END +SET [Description] = 'Negerhollands', [Definition] = NULL, [SortOrder] = 4821.00 WHERE [Code] = 'dcr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmi', 'Negeri Sembilan Malay', NULL, 480.80) END +VALUES ('zmi', 'Negeri Sembilan Malay', NULL, 4822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Negeri Sembilan Malay', [Definition] = NULL, [SortOrder] = 480.80 WHERE [Code] = 'zmi' END +SET [Description] = 'Negeri Sembilan Malay', [Definition] = NULL, [SortOrder] = 4822.00 WHERE [Code] = 'zmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neg', 'Negidal', NULL, 480.90) END +VALUES ('neg', 'Negidal', NULL, 4823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Negidal', [Definition] = NULL, [SortOrder] = 480.90 WHERE [Code] = 'neg' END +SET [Description] = 'Negidal', [Definition] = NULL, [SortOrder] = 4823.00 WHERE [Code] = 'neg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsn', 'Nehan', NULL, 481.00) END +VALUES ('nsn', 'Nehan', NULL, 4824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nehan', [Definition] = NULL, [SortOrder] = 481.00 WHERE [Code] = 'nsn' END +SET [Description] = 'Nehan', [Definition] = NULL, [SortOrder] = 4824.00 WHERE [Code] = 'nsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nif', 'Nek', NULL, 481.10) END +VALUES ('nif', 'Nek', NULL, 4825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nek', [Definition] = NULL, [SortOrder] = 481.10 WHERE [Code] = 'nif' END +SET [Description] = 'Nek', [Definition] = NULL, [SortOrder] = 4825.00 WHERE [Code] = 'nif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkg', 'Nekgini', NULL, 481.20) END +VALUES ('nkg', 'Nekgini', NULL, 4826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nekgini', [Definition] = NULL, [SortOrder] = 481.20 WHERE [Code] = 'nkg' END +SET [Description] = 'Nekgini', [Definition] = NULL, [SortOrder] = 4826.00 WHERE [Code] = 'nkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nej', 'Neko', NULL, 481.30) END +VALUES ('nej', 'Neko', NULL, 4827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neko', [Definition] = NULL, [SortOrder] = 481.30 WHERE [Code] = 'nej' END +SET [Description] = 'Neko', [Definition] = NULL, [SortOrder] = 4827.00 WHERE [Code] = 'nej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nek', 'Neku', NULL, 481.40) END +VALUES ('nek', 'Neku', NULL, 4828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neku', [Definition] = NULL, [SortOrder] = 481.40 WHERE [Code] = 'nek' END +SET [Description] = 'Neku', [Definition] = NULL, [SortOrder] = 4828.00 WHERE [Code] = 'nek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nee', 'Nêlêmwa-Nixumwak', NULL, 481.50) END +VALUES ('nee', 'Nêlêmwa-Nixumwak', NULL, 4829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nêlêmwa-Nixumwak', [Definition] = NULL, [SortOrder] = 481.50 WHERE [Code] = 'nee' END +SET [Description] = 'Nêlêmwa-Nixumwak', [Definition] = NULL, [SortOrder] = 4829.00 WHERE [Code] = 'nee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsn', 'Nema', NULL, 481.60) END +VALUES ('gsn', 'Nema', NULL, 4830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nema', [Definition] = NULL, [SortOrder] = 481.60 WHERE [Code] = 'gsn' END +SET [Description] = 'Nema', [Definition] = NULL, [SortOrder] = 4830.00 WHERE [Code] = 'gsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nex', 'Neme', NULL, 481.70) END +VALUES ('nex', 'Neme', NULL, 4831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neme', [Definition] = NULL, [SortOrder] = 481.70 WHERE [Code] = 'nex' END +SET [Description] = 'Neme', [Definition] = NULL, [SortOrder] = 4831.00 WHERE [Code] = 'nex' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nem', 'Nemi', NULL, 481.80) END +VALUES ('nem', 'Nemi', NULL, 4832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nemi', [Definition] = NULL, [SortOrder] = 481.80 WHERE [Code] = 'nem' END +SET [Description] = 'Nemi', [Definition] = NULL, [SortOrder] = 4832.00 WHERE [Code] = 'nem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqn', 'Nen', NULL, 481.90) END +VALUES ('nqn', 'Nen', NULL, 4833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nen', [Definition] = NULL, [SortOrder] = 481.90 WHERE [Code] = 'nqn' END +SET [Description] = 'Nen', [Definition] = NULL, [SortOrder] = 4833.00 WHERE [Code] = 'nqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anh', 'Nend', NULL, 482.00) END +VALUES ('anh', 'Nend', NULL, 4834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nend', [Definition] = NULL, [SortOrder] = 482.00 WHERE [Code] = 'anh' END +SET [Description] = 'Nend', [Definition] = NULL, [SortOrder] = 4834.00 WHERE [Code] = 'anh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrk', 'Nenets', NULL, 482.10) END +VALUES ('yrk', 'Nenets', NULL, 4835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nenets', [Definition] = NULL, [SortOrder] = 482.10 WHERE [Code] = 'yrk' END +SET [Description] = 'Nenets', [Definition] = NULL, [SortOrder] = 4835.00 WHERE [Code] = 'yrk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nen', 'Nengone', NULL, 482.20) END +VALUES ('nen', 'Nengone', NULL, 4836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nengone', [Definition] = NULL, [SortOrder] = 482.20 WHERE [Code] = 'nen' END +SET [Description] = 'Nengone', [Definition] = NULL, [SortOrder] = 4836.00 WHERE [Code] = 'nen' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neu', 'Neo', NULL, 482.30) END +VALUES ('neu', 'Neo', NULL, 4837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neo', [Definition] = NULL, [SortOrder] = 482.30 WHERE [Code] = 'neu' END +SET [Description] = 'Neo', [Definition] = NULL, [SortOrder] = 4837.00 WHERE [Code] = 'neu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nei', 'Neo-Hittite', NULL, 482.40) END +VALUES ('nei', 'Neo-Hittite', NULL, 4838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neo-Hittite', [Definition] = NULL, [SortOrder] = 482.40 WHERE [Code] = 'nei' END +SET [Description] = 'Neo-Hittite', [Definition] = NULL, [SortOrder] = 4838.00 WHERE [Code] = 'nei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsp', 'Nepalese Sign Language', NULL, 482.50) END +VALUES ('nsp', 'Nepalese Sign Language', NULL, 4839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nepalese Sign Language', [Definition] = NULL, [SortOrder] = 482.50 WHERE [Code] = 'nsp' END +SET [Description] = 'Nepalese Sign Language', [Definition] = NULL, [SortOrder] = 4839.00 WHERE [Code] = 'nsp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npi', 'Nepali (individual language)', NULL, 482.60) END +VALUES ('npi', 'Nepali (individual language)', NULL, 4840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nepali (individual language)', [Definition] = NULL, [SortOrder] = 482.60 WHERE [Code] = 'npi' END +SET [Description] = 'Nepali (individual language)', [Definition] = NULL, [SortOrder] = 4840.00 WHERE [Code] = 'npi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nep', 'Nepali (macrolanguage)', NULL, 482.70) END +VALUES ('nep', 'Nepali (macrolanguage)', NULL, 4841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nepali (macrolanguage)', [Definition] = NULL, [SortOrder] = 482.70 WHERE [Code] = 'nep' END +SET [Description] = 'Nepali (macrolanguage)', [Definition] = NULL, [SortOrder] = 4841.00 WHERE [Code] = 'nep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'net') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('net', 'Nete', NULL, 482.80) END +VALUES ('net', 'Nete', NULL, 4842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nete', [Definition] = NULL, [SortOrder] = 482.80 WHERE [Code] = 'net' END +SET [Description] = 'Nete', [Definition] = NULL, [SortOrder] = 4842.00 WHERE [Code] = 'net' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jas', 'New Caledonian Javanese', NULL, 482.90) END +VALUES ('jas', 'New Caledonian Javanese', NULL, 4843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'New Caledonian Javanese', [Definition] = NULL, [SortOrder] = 482.90 WHERE [Code] = 'jas' END +SET [Description] = 'New Caledonian Javanese', [Definition] = NULL, [SortOrder] = 4843.00 WHERE [Code] = 'jas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzs', 'New Zealand Sign Language', NULL, 483.00) END +VALUES ('nzs', 'New Zealand Sign Language', NULL, 4844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'New Zealand Sign Language', [Definition] = NULL, [SortOrder] = 483.00 WHERE [Code] = 'nzs' END +SET [Description] = 'New Zealand Sign Language', [Definition] = NULL, [SortOrder] = 4844.00 WHERE [Code] = 'nzs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'new') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('new', 'Newari', NULL, 483.10) END +VALUES ('new', 'Newari', NULL, 4845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Newari', [Definition] = NULL, [SortOrder] = 483.10 WHERE [Code] = 'new' END +SET [Description] = 'Newari', [Definition] = NULL, [SortOrder] = 4845.00 WHERE [Code] = 'new' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ney') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ney', 'Neyo', NULL, 483.20) END +VALUES ('ney', 'Neyo', NULL, 4846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Neyo', [Definition] = NULL, [SortOrder] = 483.20 WHERE [Code] = 'ney' END +SET [Description] = 'Neyo', [Definition] = NULL, [SortOrder] = 4846.00 WHERE [Code] = 'ney' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nez', 'Nez Perce', NULL, 483.30) END +VALUES ('nez', 'Nez Perce', NULL, 4847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nez Perce', [Definition] = NULL, [SortOrder] = 483.30 WHERE [Code] = 'nez' END +SET [Description] = 'Nez Perce', [Definition] = NULL, [SortOrder] = 4847.00 WHERE [Code] = 'nez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntj', 'Ngaanyatjarra', NULL, 483.40) END +VALUES ('ntj', 'Ngaanyatjarra', NULL, 4848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngaanyatjarra', [Definition] = NULL, [SortOrder] = 483.40 WHERE [Code] = 'ntj' END +SET [Description] = 'Ngaanyatjarra', [Definition] = NULL, [SortOrder] = 4848.00 WHERE [Code] = 'ntj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gym', 'Ngäbere', NULL, 483.50) END +VALUES ('gym', 'Ngäbere', NULL, 4849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngäbere', [Definition] = NULL, [SortOrder] = 483.50 WHERE [Code] = 'gym' END +SET [Description] = 'Ngäbere', [Definition] = NULL, [SortOrder] = 4849.00 WHERE [Code] = 'gym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxg', 'Ngad''a', NULL, 483.60) END +VALUES ('nxg', 'Ngad''a', NULL, 4850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngad''a', [Definition] = NULL, [SortOrder] = 483.60 WHERE [Code] = 'nxg' END +SET [Description] = 'Ngad''a', [Definition] = NULL, [SortOrder] = 4850.00 WHERE [Code] = 'nxg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nju', 'Ngadjunmaya', NULL, 483.70) END +VALUES ('nju', 'Ngadjunmaya', NULL, 4851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngadjunmaya', [Definition] = NULL, [SortOrder] = 483.70 WHERE [Code] = 'nju' END +SET [Description] = 'Ngadjunmaya', [Definition] = NULL, [SortOrder] = 4851.00 WHERE [Code] = 'nju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jui', 'Ngadjuri', NULL, 483.80) END +VALUES ('jui', 'Ngadjuri', NULL, 4852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngadjuri', [Definition] = NULL, [SortOrder] = 483.80 WHERE [Code] = 'jui' END +SET [Description] = 'Ngadjuri', [Definition] = NULL, [SortOrder] = 4852.00 WHERE [Code] = 'jui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnf', 'Ngaing', NULL, 483.90) END +VALUES ('nnf', 'Ngaing', NULL, 4853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngaing', [Definition] = NULL, [SortOrder] = 483.90 WHERE [Code] = 'nnf' END +SET [Description] = 'Ngaing', [Definition] = NULL, [SortOrder] = 4853.00 WHERE [Code] = 'nnf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nij', 'Ngaju', NULL, 484.00) END +VALUES ('nij', 'Ngaju', NULL, 4854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngaju', [Definition] = NULL, [SortOrder] = 484.00 WHERE [Code] = 'nij' END +SET [Description] = 'Ngaju', [Definition] = NULL, [SortOrder] = 4854.00 WHERE [Code] = 'nij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nud', 'Ngala', NULL, 484.10) END +VALUES ('nud', 'Ngala', NULL, 4855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngala', [Definition] = NULL, [SortOrder] = 484.10 WHERE [Code] = 'nud' END +SET [Description] = 'Ngala', [Definition] = NULL, [SortOrder] = 4855.00 WHERE [Code] = 'nud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nig', 'Ngalakgan', NULL, 484.20) END +VALUES ('nig', 'Ngalakgan', NULL, 4856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngalakgan', [Definition] = NULL, [SortOrder] = 484.20 WHERE [Code] = 'nig' END +SET [Description] = 'Ngalakgan', [Definition] = NULL, [SortOrder] = 4856.00 WHERE [Code] = 'nig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szb', 'Ngalum', NULL, 484.30) END +VALUES ('szb', 'Ngalum', NULL, 4857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngalum', [Definition] = NULL, [SortOrder] = 484.30 WHERE [Code] = 'szb' END +SET [Description] = 'Ngalum', [Definition] = NULL, [SortOrder] = 4857.00 WHERE [Code] = 'szb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmc', 'Ngam', NULL, 484.40) END +VALUES ('nmc', 'Ngam', NULL, 4858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngam', [Definition] = NULL, [SortOrder] = 484.40 WHERE [Code] = 'nmc' END +SET [Description] = 'Ngam', [Definition] = NULL, [SortOrder] = 4858.00 WHERE [Code] = 'nmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbv', 'Ngamambo', NULL, 484.50) END +VALUES ('nbv', 'Ngamambo', NULL, 4859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngamambo', [Definition] = NULL, [SortOrder] = 484.50 WHERE [Code] = 'nbv' END +SET [Description] = 'Ngamambo', [Definition] = NULL, [SortOrder] = 4859.00 WHERE [Code] = 'nbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sba', 'Ngambay', NULL, 484.60) END +VALUES ('sba', 'Ngambay', NULL, 4860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngambay', [Definition] = NULL, [SortOrder] = 484.60 WHERE [Code] = 'sba' END +SET [Description] = 'Ngambay', [Definition] = NULL, [SortOrder] = 4860.00 WHERE [Code] = 'sba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmv', 'Ngamini', NULL, 484.70) END +VALUES ('nmv', 'Ngamini', NULL, 4861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngamini', [Definition] = NULL, [SortOrder] = 484.70 WHERE [Code] = 'nmv' END +SET [Description] = 'Ngamini', [Definition] = NULL, [SortOrder] = 4861.00 WHERE [Code] = 'nmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbh', 'Ngamo', NULL, 484.80) END +VALUES ('nbh', 'Ngamo', NULL, 4862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngamo', [Definition] = NULL, [SortOrder] = 484.80 WHERE [Code] = 'nbh' END +SET [Description] = 'Ngamo', [Definition] = NULL, [SortOrder] = 4862.00 WHERE [Code] = 'nbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nam', 'Ngan''gityemerri', NULL, 484.90) END +VALUES ('nam', 'Ngan''gityemerri', NULL, 4863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngan''gityemerri', [Definition] = NULL, [SortOrder] = 484.90 WHERE [Code] = 'nam' END +SET [Description] = 'Ngan''gityemerri', [Definition] = NULL, [SortOrder] = 4863.00 WHERE [Code] = 'nam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnk', 'Nganakarti', NULL, 485.00) END +VALUES ('xnk', 'Nganakarti', NULL, 4864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nganakarti', [Definition] = NULL, [SortOrder] = 485.00 WHERE [Code] = 'xnk' END +SET [Description] = 'Nganakarti', [Definition] = NULL, [SortOrder] = 4864.00 WHERE [Code] = 'xnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nio', 'Nganasan', NULL, 485.10) END +VALUES ('nio', 'Nganasan', NULL, 4865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nganasan', [Definition] = NULL, [SortOrder] = 485.10 WHERE [Code] = 'nio' END +SET [Description] = 'Nganasan', [Definition] = NULL, [SortOrder] = 4865.00 WHERE [Code] = 'nio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nid', 'Ngandi', NULL, 485.20) END +VALUES ('nid', 'Ngandi', NULL, 4866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngandi', [Definition] = NULL, [SortOrder] = 485.20 WHERE [Code] = 'nid' END +SET [Description] = 'Ngandi', [Definition] = NULL, [SortOrder] = 4866.00 WHERE [Code] = 'nid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngd', 'Ngando (Central African Republic)', NULL, 485.30) END +VALUES ('ngd', 'Ngando (Central African Republic)', NULL, 4867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngando (Central African Republic)', [Definition] = NULL, [SortOrder] = 485.30 WHERE [Code] = 'ngd' END +SET [Description] = 'Ngando (Central African Republic)', [Definition] = NULL, [SortOrder] = 4867.00 WHERE [Code] = 'ngd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxd', 'Ngando (Democratic Republic of Congo)', NULL, 485.40) END +VALUES ('nxd', 'Ngando (Democratic Republic of Congo)', NULL, 4868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngando (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 485.40 WHERE [Code] = 'nxd' END +SET [Description] = 'Ngando (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 4868.00 WHERE [Code] = 'nxd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nne', 'Ngandyera', NULL, 485.50) END +VALUES ('nne', 'Ngandyera', NULL, 4869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngandyera', [Definition] = NULL, [SortOrder] = 485.50 WHERE [Code] = 'nne' END +SET [Description] = 'Ngandyera', [Definition] = NULL, [SortOrder] = 4869.00 WHERE [Code] = 'nne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gng', 'Ngangam', NULL, 485.60) END +VALUES ('gng', 'Ngangam', NULL, 4870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngangam', [Definition] = NULL, [SortOrder] = 485.60 WHERE [Code] = 'gng' END +SET [Description] = 'Ngangam', [Definition] = NULL, [SortOrder] = 4870.00 WHERE [Code] = 'gng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntg', 'Ngantangarra', NULL, 485.70) END +VALUES ('ntg', 'Ngantangarra', NULL, 4871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngantangarra', [Definition] = NULL, [SortOrder] = 485.70 WHERE [Code] = 'ntg' END +SET [Description] = 'Ngantangarra', [Definition] = NULL, [SortOrder] = 4871.00 WHERE [Code] = 'ntg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyx', 'Nganyaywana', NULL, 485.80) END +VALUES ('nyx', 'Nganyaywana', NULL, 4872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nganyaywana', [Definition] = NULL, [SortOrder] = 485.80 WHERE [Code] = 'nyx' END +SET [Description] = 'Nganyaywana', [Definition] = NULL, [SortOrder] = 4872.00 WHERE [Code] = 'nyx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rxd', 'Ngardi', NULL, 485.90) END +VALUES ('rxd', 'Ngardi', NULL, 4873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngardi', [Definition] = NULL, [SortOrder] = 485.90 WHERE [Code] = 'rxd' END +SET [Description] = 'Ngardi', [Definition] = NULL, [SortOrder] = 4873.00 WHERE [Code] = 'rxd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xni', 'Ngarigu', NULL, 486.00) END +VALUES ('xni', 'Ngarigu', NULL, 4874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarigu', [Definition] = NULL, [SortOrder] = 486.00 WHERE [Code] = 'xni' END +SET [Description] = 'Ngarigu', [Definition] = NULL, [SortOrder] = 4874.00 WHERE [Code] = 'xni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ung') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ung', 'Ngarinyin', NULL, 486.10) END +VALUES ('ung', 'Ngarinyin', NULL, 4875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarinyin', [Definition] = NULL, [SortOrder] = 486.10 WHERE [Code] = 'ung' END +SET [Description] = 'Ngarinyin', [Definition] = NULL, [SortOrder] = 4875.00 WHERE [Code] = 'ung' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbj', 'Ngarinyman', NULL, 486.20) END +VALUES ('nbj', 'Ngarinyman', NULL, 4876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarinyman', [Definition] = NULL, [SortOrder] = 486.20 WHERE [Code] = 'nbj' END +SET [Description] = 'Ngarinyman', [Definition] = NULL, [SortOrder] = 4876.00 WHERE [Code] = 'nbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrk', 'Ngarla', NULL, 486.30) END +VALUES ('nrk', 'Ngarla', NULL, 4877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarla', [Definition] = NULL, [SortOrder] = 486.30 WHERE [Code] = 'nrk' END +SET [Description] = 'Ngarla', [Definition] = NULL, [SortOrder] = 4877.00 WHERE [Code] = 'nrk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrl', 'Ngarluma', NULL, 486.40) END +VALUES ('nrl', 'Ngarluma', NULL, 4878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarluma', [Definition] = NULL, [SortOrder] = 486.40 WHERE [Code] = 'nrl' END +SET [Description] = 'Ngarluma', [Definition] = NULL, [SortOrder] = 4878.00 WHERE [Code] = 'nrl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nay', 'Ngarrindjeri', NULL, 486.50) END +VALUES ('nay', 'Ngarrindjeri', NULL, 4879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngarrindjeri', [Definition] = NULL, [SortOrder] = 486.50 WHERE [Code] = 'nay' END +SET [Description] = 'Ngarrindjeri', [Definition] = NULL, [SortOrder] = 4879.00 WHERE [Code] = 'nay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'anc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('anc', 'Ngas', NULL, 486.60) END +VALUES ('anc', 'Ngas', NULL, 4880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngas', [Definition] = NULL, [SortOrder] = 486.60 WHERE [Code] = 'anc' END +SET [Description] = 'Ngas', [Definition] = NULL, [SortOrder] = 4880.00 WHERE [Code] = 'anc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsg', 'Ngasa', NULL, 486.70) END +VALUES ('nsg', 'Ngasa', NULL, 4881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngasa', [Definition] = NULL, [SortOrder] = 486.70 WHERE [Code] = 'nsg' END +SET [Description] = 'Ngasa', [Definition] = NULL, [SortOrder] = 4881.00 WHERE [Code] = 'nsg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngm', 'Ngatik Men''s Creole', NULL, 486.80) END +VALUES ('ngm', 'Ngatik Men''s Creole', NULL, 4882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngatik Men''s Creole', [Definition] = NULL, [SortOrder] = 486.80 WHERE [Code] = 'ngm' END +SET [Description] = 'Ngatik Men''s Creole', [Definition] = NULL, [SortOrder] = 4882.00 WHERE [Code] = 'ngm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnw', 'Ngawn Chin', NULL, 486.90) END +VALUES ('cnw', 'Ngawn Chin', NULL, 4883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngawn Chin', [Definition] = NULL, [SortOrder] = 486.90 WHERE [Code] = 'cnw' END +SET [Description] = 'Ngawn Chin', [Definition] = NULL, [SortOrder] = 4883.00 WHERE [Code] = 'cnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxn', 'Ngawun', NULL, 487.00) END +VALUES ('nxn', 'Ngawun', NULL, 4884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngawun', [Definition] = NULL, [SortOrder] = 487.00 WHERE [Code] = 'nxn' END +SET [Description] = 'Ngawun', [Definition] = NULL, [SortOrder] = 4884.00 WHERE [Code] = 'nxn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwg', 'Ngayawung', NULL, 487.10) END +VALUES ('nwg', 'Ngayawung', NULL, 4885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngayawung', [Definition] = NULL, [SortOrder] = 487.10 WHERE [Code] = 'nwg' END +SET [Description] = 'Ngayawung', [Definition] = NULL, [SortOrder] = 4885.00 WHERE [Code] = 'nwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zdj', 'Ngazidja Comorian', NULL, 487.20) END +VALUES ('zdj', 'Ngazidja Comorian', NULL, 4886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngazidja Comorian', [Definition] = NULL, [SortOrder] = 487.20 WHERE [Code] = 'zdj' END +SET [Description] = 'Ngazidja Comorian', [Definition] = NULL, [SortOrder] = 4886.00 WHERE [Code] = 'zdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nga', 'Ngbaka', NULL, 487.30) END +VALUES ('nga', 'Ngbaka', NULL, 4887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbaka', [Definition] = NULL, [SortOrder] = 487.30 WHERE [Code] = 'nga' END +SET [Description] = 'Ngbaka', [Definition] = NULL, [SortOrder] = 4887.00 WHERE [Code] = 'nga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbm', 'Ngbaka Ma''bo', NULL, 487.40) END +VALUES ('nbm', 'Ngbaka Ma''bo', NULL, 4888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbaka Ma''bo', [Definition] = NULL, [SortOrder] = 487.40 WHERE [Code] = 'nbm' END +SET [Description] = 'Ngbaka Ma''bo', [Definition] = NULL, [SortOrder] = 4888.00 WHERE [Code] = 'nbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngg', 'Ngbaka Manza', NULL, 487.50) END +VALUES ('ngg', 'Ngbaka Manza', NULL, 4889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbaka Manza', [Definition] = NULL, [SortOrder] = 487.50 WHERE [Code] = 'ngg' END +SET [Description] = 'Ngbaka Manza', [Definition] = NULL, [SortOrder] = 4889.00 WHERE [Code] = 'ngg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jgb', 'Ngbee', NULL, 487.60) END +VALUES ('jgb', 'Ngbee', NULL, 4890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbee', [Definition] = NULL, [SortOrder] = 487.60 WHERE [Code] = 'jgb' END +SET [Description] = 'Ngbee', [Definition] = NULL, [SortOrder] = 4890.00 WHERE [Code] = 'jgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbd', 'Ngbinda', NULL, 487.70) END +VALUES ('nbd', 'Ngbinda', NULL, 4891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbinda', [Definition] = NULL, [SortOrder] = 487.70 WHERE [Code] = 'nbd' END +SET [Description] = 'Ngbinda', [Definition] = NULL, [SortOrder] = 4891.00 WHERE [Code] = 'nbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuu', 'Ngbundu', NULL, 487.80) END +VALUES ('nuu', 'Ngbundu', NULL, 4892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngbundu', [Definition] = NULL, [SortOrder] = 487.80 WHERE [Code] = 'nuu' END +SET [Description] = 'Ngbundu', [Definition] = NULL, [SortOrder] = 4892.00 WHERE [Code] = 'nuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agh', 'Ngelima', NULL, 487.90) END +VALUES ('agh', 'Ngelima', NULL, 4893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngelima', [Definition] = NULL, [SortOrder] = 487.90 WHERE [Code] = 'agh' END +SET [Description] = 'Ngelima', [Definition] = NULL, [SortOrder] = 4893.00 WHERE [Code] = 'agh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nge', 'Ngemba', NULL, 488.00) END +VALUES ('nge', 'Ngemba', NULL, 4894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngemba', [Definition] = NULL, [SortOrder] = 488.00 WHERE [Code] = 'nge' END +SET [Description] = 'Ngemba', [Definition] = NULL, [SortOrder] = 4894.00 WHERE [Code] = 'nge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnj', 'Ngen', NULL, 488.10) END +VALUES ('gnj', 'Ngen', NULL, 4895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngen', [Definition] = NULL, [SortOrder] = 488.10 WHERE [Code] = 'gnj' END +SET [Description] = 'Ngen', [Definition] = NULL, [SortOrder] = 4895.00 WHERE [Code] = 'gnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nql') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nql', 'Ngendelengo', NULL, 488.20) END +VALUES ('nql', 'Ngendelengo', NULL, 4896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngendelengo', [Definition] = NULL, [SortOrder] = 488.20 WHERE [Code] = 'nql' END +SET [Description] = 'Ngendelengo', [Definition] = NULL, [SortOrder] = 4896.00 WHERE [Code] = 'nql' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnn', 'Ngete', NULL, 488.30) END +VALUES ('nnn', 'Ngete', NULL, 4897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngete', [Definition] = NULL, [SortOrder] = 488.30 WHERE [Code] = 'nnn' END +SET [Description] = 'Ngete', [Definition] = NULL, [SortOrder] = 4897.00 WHERE [Code] = 'nnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbq', 'Nggem', NULL, 488.40) END +VALUES ('nbq', 'Nggem', NULL, 4898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nggem', [Definition] = NULL, [SortOrder] = 488.40 WHERE [Code] = 'nbq' END +SET [Description] = 'Nggem', [Definition] = NULL, [SortOrder] = 4898.00 WHERE [Code] = 'nbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngx', 'Nggwahyi', NULL, 488.50) END +VALUES ('ngx', 'Nggwahyi', NULL, 4899.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nggwahyi', [Definition] = NULL, [SortOrder] = 488.50 WHERE [Code] = 'ngx' END +SET [Description] = 'Nggwahyi', [Definition] = NULL, [SortOrder] = 4899.00 WHERE [Code] = 'ngx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngj', 'Ngie', NULL, 488.60) END +VALUES ('ngj', 'Ngie', NULL, 4900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngie', [Definition] = NULL, [SortOrder] = 488.60 WHERE [Code] = 'ngj' END +SET [Description] = 'Ngie', [Definition] = NULL, [SortOrder] = 4900.00 WHERE [Code] = 'ngj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnh', 'Ngiemboon', NULL, 488.70) END +VALUES ('nnh', 'Ngiemboon', NULL, 4901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngiemboon', [Definition] = NULL, [SortOrder] = 488.70 WHERE [Code] = 'nnh' END +SET [Description] = 'Ngiemboon', [Definition] = NULL, [SortOrder] = 4901.00 WHERE [Code] = 'nnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jle', 'Ngile', NULL, 488.80) END +VALUES ('jle', 'Ngile', NULL, 4902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngile', [Definition] = NULL, [SortOrder] = 488.80 WHERE [Code] = 'jle' END +SET [Description] = 'Ngile', [Definition] = NULL, [SortOrder] = 4902.00 WHERE [Code] = 'jle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnq', 'Ngindo', NULL, 488.90) END +VALUES ('nnq', 'Ngindo', NULL, 4903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngindo', [Definition] = NULL, [SortOrder] = 488.90 WHERE [Code] = 'nnq' END +SET [Description] = 'Ngindo', [Definition] = NULL, [SortOrder] = 4903.00 WHERE [Code] = 'nnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niy', 'Ngiti', NULL, 489.00) END +VALUES ('niy', 'Ngiti', NULL, 4904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngiti', [Definition] = NULL, [SortOrder] = 489.00 WHERE [Code] = 'niy' END +SET [Description] = 'Ngiti', [Definition] = NULL, [SortOrder] = 4904.00 WHERE [Code] = 'niy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngi', 'Ngizim', NULL, 489.10) END +VALUES ('ngi', 'Ngizim', NULL, 4905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngizim', [Definition] = NULL, [SortOrder] = 489.10 WHERE [Code] = 'ngi' END +SET [Description] = 'Ngizim', [Definition] = NULL, [SortOrder] = 4905.00 WHERE [Code] = 'ngi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcd', 'Ngkâlmpw Kanum', NULL, 489.20) END +VALUES ('kcd', 'Ngkâlmpw Kanum', NULL, 4906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngkâlmpw Kanum', [Definition] = NULL, [SortOrder] = 489.20 WHERE [Code] = 'kcd' END +SET [Description] = 'Ngkâlmpw Kanum', [Definition] = NULL, [SortOrder] = 4906.00 WHERE [Code] = 'kcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nra', 'Ngom', NULL, 489.30) END +VALUES ('nra', 'Ngom', NULL, 4907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngom', [Definition] = NULL, [SortOrder] = 489.30 WHERE [Code] = 'nra' END +SET [Description] = 'Ngom', [Definition] = NULL, [SortOrder] = 4907.00 WHERE [Code] = 'nra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jgo', 'Ngomba', NULL, 489.40) END +VALUES ('jgo', 'Ngomba', NULL, 4908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngomba', [Definition] = NULL, [SortOrder] = 489.40 WHERE [Code] = 'jgo' END +SET [Description] = 'Ngomba', [Definition] = NULL, [SortOrder] = 4908.00 WHERE [Code] = 'jgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nla', 'Ngombale', NULL, 489.50) END +VALUES ('nla', 'Ngombale', NULL, 4909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngombale', [Definition] = NULL, [SortOrder] = 489.50 WHERE [Code] = 'nla' END +SET [Description] = 'Ngombale', [Definition] = NULL, [SortOrder] = 4909.00 WHERE [Code] = 'nla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmj', 'Ngombe (Central African Republic)', NULL, 489.60) END +VALUES ('nmj', 'Ngombe (Central African Republic)', NULL, 4910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngombe (Central African Republic)', [Definition] = NULL, [SortOrder] = 489.60 WHERE [Code] = 'nmj' END +SET [Description] = 'Ngombe (Central African Republic)', [Definition] = NULL, [SortOrder] = 4910.00 WHERE [Code] = 'nmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngc', 'Ngombe (Democratic Republic of Congo)', NULL, 489.70) END +VALUES ('ngc', 'Ngombe (Democratic Republic of Congo)', NULL, 4911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngombe (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 489.70 WHERE [Code] = 'ngc' END +SET [Description] = 'Ngombe (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 4911.00 WHERE [Code] = 'ngc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noq', 'Ngongo', NULL, 489.80) END +VALUES ('noq', 'Ngongo', NULL, 4912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngongo', [Definition] = NULL, [SortOrder] = 489.80 WHERE [Code] = 'noq' END +SET [Description] = 'Ngongo', [Definition] = NULL, [SortOrder] = 4912.00 WHERE [Code] = 'noq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnq', 'Ngoni (Mozambique)', NULL, 489.90) END +VALUES ('xnq', 'Ngoni (Mozambique)', NULL, 4913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngoni (Mozambique)', [Definition] = NULL, [SortOrder] = 489.90 WHERE [Code] = 'xnq' END +SET [Description] = 'Ngoni (Mozambique)', [Definition] = NULL, [SortOrder] = 4913.00 WHERE [Code] = 'xnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnj', 'Ngoni (Tanzania)', NULL, 490.00) END +VALUES ('xnj', 'Ngoni (Tanzania)', NULL, 4914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngoni (Tanzania)', [Definition] = NULL, [SortOrder] = 490.00 WHERE [Code] = 'xnj' END +SET [Description] = 'Ngoni (Tanzania)', [Definition] = NULL, [SortOrder] = 4914.00 WHERE [Code] = 'xnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsh', 'Ngoshie', NULL, 490.10) END +VALUES ('nsh', 'Ngoshie', NULL, 4915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngoshie', [Definition] = NULL, [SortOrder] = 490.10 WHERE [Code] = 'nsh' END +SET [Description] = 'Ngoshie', [Definition] = NULL, [SortOrder] = 4915.00 WHERE [Code] = 'nsh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlo', 'Ngul', NULL, 490.20) END +VALUES ('nlo', 'Ngul', NULL, 4916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngul', [Definition] = NULL, [SortOrder] = 490.20 WHERE [Code] = 'nlo' END +SET [Description] = 'Ngul', [Definition] = NULL, [SortOrder] = 4916.00 WHERE [Code] = 'nlo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngp', 'Ngulu', NULL, 490.30) END +VALUES ('ngp', 'Ngulu', NULL, 4917.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngulu', [Definition] = NULL, [SortOrder] = 490.30 WHERE [Code] = 'ngp' END +SET [Description] = 'Ngulu', [Definition] = NULL, [SortOrder] = 4917.00 WHERE [Code] = 'ngp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuw', 'Nguluwan', NULL, 490.40) END +VALUES ('nuw', 'Nguluwan', NULL, 4918.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nguluwan', [Definition] = NULL, [SortOrder] = 490.40 WHERE [Code] = 'nuw' END +SET [Description] = 'Nguluwan', [Definition] = NULL, [SortOrder] = 4918.00 WHERE [Code] = 'nuw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnm', 'Ngumbarl', NULL, 490.50) END +VALUES ('xnm', 'Ngumbarl', NULL, 4919.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngumbarl', [Definition] = NULL, [SortOrder] = 490.50 WHERE [Code] = 'xnm' END +SET [Description] = 'Ngumbarl', [Definition] = NULL, [SortOrder] = 4919.00 WHERE [Code] = 'xnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nui', 'Ngumbi', NULL, 490.60) END +VALUES ('nui', 'Ngumbi', NULL, 4920.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngumbi', [Definition] = NULL, [SortOrder] = 490.60 WHERE [Code] = 'nui' END +SET [Description] = 'Ngumbi', [Definition] = NULL, [SortOrder] = 4920.00 WHERE [Code] = 'nui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xul', 'Ngunawal', NULL, 490.70) END +VALUES ('xul', 'Ngunawal', NULL, 4921.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngunawal', [Definition] = NULL, [SortOrder] = 490.70 WHERE [Code] = 'xul' END +SET [Description] = 'Ngunawal', [Definition] = NULL, [SortOrder] = 4921.00 WHERE [Code] = 'xul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndn', 'Ngundi', NULL, 490.80) END +VALUES ('ndn', 'Ngundi', NULL, 4922.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngundi', [Definition] = NULL, [SortOrder] = 490.80 WHERE [Code] = 'ndn' END +SET [Description] = 'Ngundi', [Definition] = NULL, [SortOrder] = 4922.00 WHERE [Code] = 'ndn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nue', 'Ngundu', NULL, 490.90) END +VALUES ('nue', 'Ngundu', NULL, 4923.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngundu', [Definition] = NULL, [SortOrder] = 490.90 WHERE [Code] = 'nue' END +SET [Description] = 'Ngundu', [Definition] = NULL, [SortOrder] = 4923.00 WHERE [Code] = 'nue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngz', 'Ngungwel', NULL, 491.00) END +VALUES ('ngz', 'Ngungwel', NULL, 4924.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngungwel', [Definition] = NULL, [SortOrder] = 491.00 WHERE [Code] = 'ngz' END +SET [Description] = 'Ngungwel', [Definition] = NULL, [SortOrder] = 4924.00 WHERE [Code] = 'ngz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuo', 'Nguôn', NULL, 491.10) END +VALUES ('nuo', 'Nguôn', NULL, 4925.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nguôn', [Definition] = NULL, [SortOrder] = 491.10 WHERE [Code] = 'nuo' END +SET [Description] = 'Nguôn', [Definition] = NULL, [SortOrder] = 4925.00 WHERE [Code] = 'nuo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngq', 'Ngurimi', NULL, 491.20) END +VALUES ('ngq', 'Ngurimi', NULL, 4926.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngurimi', [Definition] = NULL, [SortOrder] = 491.20 WHERE [Code] = 'ngq' END +SET [Description] = 'Ngurimi', [Definition] = NULL, [SortOrder] = 4926.00 WHERE [Code] = 'ngq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrx', 'Ngurmbur', NULL, 491.30) END +VALUES ('nrx', 'Ngurmbur', NULL, 4927.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngurmbur', [Definition] = NULL, [SortOrder] = 491.30 WHERE [Code] = 'nrx' END +SET [Description] = 'Ngurmbur', [Definition] = NULL, [SortOrder] = 4927.00 WHERE [Code] = 'nrx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngw', 'Ngwaba', NULL, 491.40) END +VALUES ('ngw', 'Ngwaba', NULL, 4928.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngwaba', [Definition] = NULL, [SortOrder] = 491.40 WHERE [Code] = 'ngw' END +SET [Description] = 'Ngwaba', [Definition] = NULL, [SortOrder] = 4928.00 WHERE [Code] = 'ngw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwe', 'Ngwe', NULL, 491.50) END +VALUES ('nwe', 'Ngwe', NULL, 4929.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngwe', [Definition] = NULL, [SortOrder] = 491.50 WHERE [Code] = 'nwe' END +SET [Description] = 'Ngwe', [Definition] = NULL, [SortOrder] = 4929.00 WHERE [Code] = 'nwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngn', 'Ngwo', NULL, 491.60) END +VALUES ('ngn', 'Ngwo', NULL, 4930.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ngwo', [Definition] = NULL, [SortOrder] = 491.60 WHERE [Code] = 'ngn' END +SET [Description] = 'Ngwo', [Definition] = NULL, [SortOrder] = 4930.00 WHERE [Code] = 'ngn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nha', 'Nhanda', NULL, 491.70) END +VALUES ('nha', 'Nhanda', NULL, 4931.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nhanda', [Definition] = NULL, [SortOrder] = 491.70 WHERE [Code] = 'nha' END +SET [Description] = 'Nhanda', [Definition] = NULL, [SortOrder] = 4931.00 WHERE [Code] = 'nha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrl', 'Nhengatu', NULL, 491.80) END +VALUES ('yrl', 'Nhengatu', NULL, 4932.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nhengatu', [Definition] = NULL, [SortOrder] = 491.80 WHERE [Code] = 'yrl' END +SET [Description] = 'Nhengatu', [Definition] = NULL, [SortOrder] = 4932.00 WHERE [Code] = 'yrl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrp', 'Nhirrpi', NULL, 491.90) END +VALUES ('hrp', 'Nhirrpi', NULL, 4933.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nhirrpi', [Definition] = NULL, [SortOrder] = 491.90 WHERE [Code] = 'hrp' END +SET [Description] = 'Nhirrpi', [Definition] = NULL, [SortOrder] = 4933.00 WHERE [Code] = 'hrp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhf', 'Nhuwala', NULL, 492.00) END +VALUES ('nhf', 'Nhuwala', NULL, 4934.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nhuwala', [Definition] = NULL, [SortOrder] = 492.00 WHERE [Code] = 'nhf' END +SET [Description] = 'Nhuwala', [Definition] = NULL, [SortOrder] = 4934.00 WHERE [Code] = 'nhf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nia', 'Nias', NULL, 492.10) END +VALUES ('nia', 'Nias', NULL, 4935.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nias', [Definition] = NULL, [SortOrder] = 492.10 WHERE [Code] = 'nia' END +SET [Description] = 'Nias', [Definition] = NULL, [SortOrder] = 4935.00 WHERE [Code] = 'nia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzk', 'Nicaragua Creole English', NULL, 492.20) END +VALUES ('bzk', 'Nicaragua Creole English', NULL, 4936.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nicaragua Creole English', [Definition] = NULL, [SortOrder] = 492.20 WHERE [Code] = 'bzk' END +SET [Description] = 'Nicaragua Creole English', [Definition] = NULL, [SortOrder] = 4936.00 WHERE [Code] = 'bzk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncs', 'Nicaraguan Sign Language', NULL, 492.30) END +VALUES ('ncs', 'Nicaraguan Sign Language', NULL, 4937.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nicaraguan Sign Language', [Definition] = NULL, [SortOrder] = 492.30 WHERE [Code] = 'ncs' END +SET [Description] = 'Nicaraguan Sign Language', [Definition] = NULL, [SortOrder] = 4937.00 WHERE [Code] = 'ncs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nie', 'Niellim', NULL, 492.40) END +VALUES ('nie', 'Niellim', NULL, 4938.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niellim', [Definition] = NULL, [SortOrder] = 492.40 WHERE [Code] = 'nie' END +SET [Description] = 'Niellim', [Definition] = NULL, [SortOrder] = 4938.00 WHERE [Code] = 'nie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzk', 'Nigeria Mambila', NULL, 492.50) END +VALUES ('mzk', 'Nigeria Mambila', NULL, 4939.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nigeria Mambila', [Definition] = NULL, [SortOrder] = 492.50 WHERE [Code] = 'mzk' END +SET [Description] = 'Nigeria Mambila', [Definition] = NULL, [SortOrder] = 4939.00 WHERE [Code] = 'mzk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuv', 'Nigerian Fulfulde', NULL, 492.60) END +VALUES ('fuv', 'Nigerian Fulfulde', NULL, 4940.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nigerian Fulfulde', [Definition] = NULL, [SortOrder] = 492.60 WHERE [Code] = 'fuv' END +SET [Description] = 'Nigerian Fulfulde', [Definition] = NULL, [SortOrder] = 4940.00 WHERE [Code] = 'fuv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcm', 'Nigerian Pidgin', NULL, 492.70) END +VALUES ('pcm', 'Nigerian Pidgin', NULL, 4941.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nigerian Pidgin', [Definition] = NULL, [SortOrder] = 492.70 WHERE [Code] = 'pcm' END +SET [Description] = 'Nigerian Pidgin', [Definition] = NULL, [SortOrder] = 4941.00 WHERE [Code] = 'pcm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsi', 'Nigerian Sign Language', NULL, 492.80) END +VALUES ('nsi', 'Nigerian Sign Language', NULL, 4942.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nigerian Sign Language', [Definition] = NULL, [SortOrder] = 492.80 WHERE [Code] = 'nsi' END +SET [Description] = 'Nigerian Sign Language', [Definition] = NULL, [SortOrder] = 4942.00 WHERE [Code] = 'nsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nll', 'Nihali', NULL, 492.90) END +VALUES ('nll', 'Nihali', NULL, 4943.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nihali', [Definition] = NULL, [SortOrder] = 492.90 WHERE [Code] = 'nll' END +SET [Description] = 'Nihali', [Definition] = NULL, [SortOrder] = 4943.00 WHERE [Code] = 'nll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nii', 'Nii', NULL, 493.00) END +VALUES ('nii', 'Nii', NULL, 4944.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nii', [Definition] = NULL, [SortOrder] = 493.00 WHERE [Code] = 'nii' END +SET [Description] = 'Nii', [Definition] = NULL, [SortOrder] = 4944.00 WHERE [Code] = 'nii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbe', 'Niksek', NULL, 493.10) END +VALUES ('gbe', 'Niksek', NULL, 4945.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niksek', [Definition] = NULL, [SortOrder] = 493.10 WHERE [Code] = 'gbe' END +SET [Description] = 'Niksek', [Definition] = NULL, [SortOrder] = 4945.00 WHERE [Code] = 'gbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nil', 'Nila', NULL, 493.20) END +VALUES ('nil', 'Nila', NULL, 4946.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nila', [Definition] = NULL, [SortOrder] = 493.20 WHERE [Code] = 'nil' END +SET [Description] = 'Nila', [Definition] = NULL, [SortOrder] = 4946.00 WHERE [Code] = 'nil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nim', 'Nilamba', NULL, 493.30) END +VALUES ('nim', 'Nilamba', NULL, 4947.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nilamba', [Definition] = NULL, [SortOrder] = 493.30 WHERE [Code] = 'nim' END +SET [Description] = 'Nilamba', [Definition] = NULL, [SortOrder] = 4947.00 WHERE [Code] = 'nim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noe', 'Nimadi', NULL, 493.40) END +VALUES ('noe', 'Nimadi', NULL, 4948.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimadi', [Definition] = NULL, [SortOrder] = 493.40 WHERE [Code] = 'noe' END +SET [Description] = 'Nimadi', [Definition] = NULL, [SortOrder] = 4948.00 WHERE [Code] = 'noe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmp', 'Nimanbur', NULL, 493.50) END +VALUES ('nmp', 'Nimanbur', NULL, 4949.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimanbur', [Definition] = NULL, [SortOrder] = 493.50 WHERE [Code] = 'nmp' END +SET [Description] = 'Nimanbur', [Definition] = NULL, [SortOrder] = 4949.00 WHERE [Code] = 'nmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmr', 'Nimbari', NULL, 493.60) END +VALUES ('nmr', 'Nimbari', NULL, 4950.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimbari', [Definition] = NULL, [SortOrder] = 493.60 WHERE [Code] = 'nmr' END +SET [Description] = 'Nimbari', [Definition] = NULL, [SortOrder] = 4950.00 WHERE [Code] = 'nmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nir', 'Nimboran', NULL, 493.70) END +VALUES ('nir', 'Nimboran', NULL, 4951.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimboran', [Definition] = NULL, [SortOrder] = 493.70 WHERE [Code] = 'nir' END +SET [Description] = 'Nimboran', [Definition] = NULL, [SortOrder] = 4951.00 WHERE [Code] = 'nir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nis', 'Nimi', NULL, 493.80) END +VALUES ('nis', 'Nimi', NULL, 4952.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimi', [Definition] = NULL, [SortOrder] = 493.80 WHERE [Code] = 'nis' END +SET [Description] = 'Nimi', [Definition] = NULL, [SortOrder] = 4952.00 WHERE [Code] = 'nis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niw', 'Nimo', NULL, 493.90) END +VALUES ('niw', 'Nimo', NULL, 4953.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimo', [Definition] = NULL, [SortOrder] = 493.90 WHERE [Code] = 'niw' END +SET [Description] = 'Nimo', [Definition] = NULL, [SortOrder] = 4953.00 WHERE [Code] = 'niw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmw', 'Nimoa', NULL, 494.00) END +VALUES ('nmw', 'Nimoa', NULL, 4954.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nimoa', [Definition] = NULL, [SortOrder] = 494.00 WHERE [Code] = 'nmw' END +SET [Description] = 'Nimoa', [Definition] = NULL, [SortOrder] = 4954.00 WHERE [Code] = 'nmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shb', 'Ninam', NULL, 494.10) END +VALUES ('shb', 'Ninam', NULL, 4955.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ninam', [Definition] = NULL, [SortOrder] = 494.10 WHERE [Code] = 'shb' END +SET [Description] = 'Ninam', [Definition] = NULL, [SortOrder] = 4955.00 WHERE [Code] = 'shb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxi', 'Nindi', NULL, 494.20) END +VALUES ('nxi', 'Nindi', NULL, 4956.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nindi', [Definition] = NULL, [SortOrder] = 494.20 WHERE [Code] = 'nxi' END +SET [Description] = 'Nindi', [Definition] = NULL, [SortOrder] = 4956.00 WHERE [Code] = 'nxi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nby', 'Ningera', NULL, 494.30) END +VALUES ('nby', 'Ningera', NULL, 4957.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ningera', [Definition] = NULL, [SortOrder] = 494.30 WHERE [Code] = 'nby' END +SET [Description] = 'Ningera', [Definition] = NULL, [SortOrder] = 4957.00 WHERE [Code] = 'nby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxr', 'Ninggerum', NULL, 494.40) END +VALUES ('nxr', 'Ninggerum', NULL, 4958.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ninggerum', [Definition] = NULL, [SortOrder] = 494.40 WHERE [Code] = 'nxr' END +SET [Description] = 'Ninggerum', [Definition] = NULL, [SortOrder] = 4958.00 WHERE [Code] = 'nxr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niz', 'Ningil', NULL, 494.50) END +VALUES ('niz', 'Ningil', NULL, 4959.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ningil', [Definition] = NULL, [SortOrder] = 494.50 WHERE [Code] = 'niz' END +SET [Description] = 'Ningil', [Definition] = NULL, [SortOrder] = 4959.00 WHERE [Code] = 'niz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlk', 'Ninia Yali', NULL, 494.60) END +VALUES ('nlk', 'Ninia Yali', NULL, 4960.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ninia Yali', [Definition] = NULL, [SortOrder] = 494.60 WHERE [Code] = 'nlk' END +SET [Description] = 'Ninia Yali', [Definition] = NULL, [SortOrder] = 4960.00 WHERE [Code] = 'nlk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nin', 'Ninzo', NULL, 494.70) END +VALUES ('nin', 'Ninzo', NULL, 4961.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ninzo', [Definition] = NULL, [SortOrder] = 494.70 WHERE [Code] = 'nin' END +SET [Description] = 'Ninzo', [Definition] = NULL, [SortOrder] = 4961.00 WHERE [Code] = 'nin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nps', 'Nipsan', NULL, 494.80) END +VALUES ('nps', 'Nipsan', NULL, 4962.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nipsan', [Definition] = NULL, [SortOrder] = 494.80 WHERE [Code] = 'nps' END +SET [Description] = 'Nipsan', [Definition] = NULL, [SortOrder] = 4962.00 WHERE [Code] = 'nps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njs', 'Nisa', NULL, 494.90) END +VALUES ('njs', 'Nisa', NULL, 4963.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nisa', [Definition] = NULL, [SortOrder] = 494.90 WHERE [Code] = 'njs' END +SET [Description] = 'Nisa', [Definition] = NULL, [SortOrder] = 4963.00 WHERE [Code] = 'njs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsz', 'Nisenan', NULL, 495.00) END +VALUES ('nsz', 'Nisenan', NULL, 4964.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nisenan', [Definition] = NULL, [SortOrder] = 495.00 WHERE [Code] = 'nsz' END +SET [Description] = 'Nisenan', [Definition] = NULL, [SortOrder] = 4964.00 WHERE [Code] = 'nsz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncg', 'Nisga''a', NULL, 495.10) END +VALUES ('ncg', 'Nisga''a', NULL, 4965.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nisga''a', [Definition] = NULL, [SortOrder] = 495.10 WHERE [Code] = 'ncg' END +SET [Description] = 'Nisga''a', [Definition] = NULL, [SortOrder] = 4965.00 WHERE [Code] = 'ncg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yso', 'Nisi (China)', NULL, 495.20) END +VALUES ('yso', 'Nisi (China)', NULL, 4966.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nisi (China)', [Definition] = NULL, [SortOrder] = 495.20 WHERE [Code] = 'yso' END +SET [Description] = 'Nisi (China)', [Definition] = NULL, [SortOrder] = 4966.00 WHERE [Code] = 'yso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'num') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('num', 'Niuafo''ou', NULL, 495.30) END +VALUES ('num', 'Niuafo''ou', NULL, 4967.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niuafo''ou', [Definition] = NULL, [SortOrder] = 495.30 WHERE [Code] = 'num' END +SET [Description] = 'Niuafo''ou', [Definition] = NULL, [SortOrder] = 4967.00 WHERE [Code] = 'num' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkp', 'Niuatoputapu', NULL, 495.40) END +VALUES ('nkp', 'Niuatoputapu', NULL, 4968.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niuatoputapu', [Definition] = NULL, [SortOrder] = 495.40 WHERE [Code] = 'nkp' END +SET [Description] = 'Niuatoputapu', [Definition] = NULL, [SortOrder] = 4968.00 WHERE [Code] = 'nkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'niu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('niu', 'Niuean', NULL, 495.50) END +VALUES ('niu', 'Niuean', NULL, 4969.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niuean', [Definition] = NULL, [SortOrder] = 495.50 WHERE [Code] = 'niu' END +SET [Description] = 'Niuean', [Definition] = NULL, [SortOrder] = 4969.00 WHERE [Code] = 'niu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cag', 'Nivaclé', NULL, 495.60) END +VALUES ('cag', 'Nivaclé', NULL, 4970.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nivaclé', [Definition] = NULL, [SortOrder] = 495.60 WHERE [Code] = 'cag' END +SET [Description] = 'Nivaclé', [Definition] = NULL, [SortOrder] = 4970.00 WHERE [Code] = 'cag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrc', 'Niwer Mil', NULL, 495.70) END +VALUES ('hrc', 'Niwer Mil', NULL, 4971.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Niwer Mil', [Definition] = NULL, [SortOrder] = 495.70 WHERE [Code] = 'hrc' END +SET [Description] = 'Niwer Mil', [Definition] = NULL, [SortOrder] = 4971.00 WHERE [Code] = 'hrc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njl', 'Njalgulgule', NULL, 495.80) END +VALUES ('njl', 'Njalgulgule', NULL, 4972.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njalgulgule', [Definition] = NULL, [SortOrder] = 495.80 WHERE [Code] = 'njl' END +SET [Description] = 'Njalgulgule', [Definition] = NULL, [SortOrder] = 4972.00 WHERE [Code] = 'njl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzb', 'Njebi', NULL, 495.90) END +VALUES ('nzb', 'Njebi', NULL, 4973.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njebi', [Definition] = NULL, [SortOrder] = 495.90 WHERE [Code] = 'nzb' END +SET [Description] = 'Njebi', [Definition] = NULL, [SortOrder] = 4973.00 WHERE [Code] = 'nzb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njj', 'Njen', NULL, 496.00) END +VALUES ('njj', 'Njen', NULL, 4974.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njen', [Definition] = NULL, [SortOrder] = 496.00 WHERE [Code] = 'njj' END +SET [Description] = 'Njen', [Definition] = NULL, [SortOrder] = 4974.00 WHERE [Code] = 'njj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njr', 'Njerep', NULL, 496.10) END +VALUES ('njr', 'Njerep', NULL, 4975.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njerep', [Definition] = NULL, [SortOrder] = 496.10 WHERE [Code] = 'njr' END +SET [Description] = 'Njerep', [Definition] = NULL, [SortOrder] = 4975.00 WHERE [Code] = 'njr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njy', 'Njyem', NULL, 496.20) END +VALUES ('njy', 'Njyem', NULL, 4976.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Njyem', [Definition] = NULL, [SortOrder] = 496.20 WHERE [Code] = 'njy' END +SET [Description] = 'Njyem', [Definition] = NULL, [SortOrder] = 4976.00 WHERE [Code] = 'njy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkq', 'Nkami', NULL, 496.30) END +VALUES ('nkq', 'Nkami', NULL, 4977.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkami', [Definition] = NULL, [SortOrder] = 496.30 WHERE [Code] = 'nkq' END +SET [Description] = 'Nkami', [Definition] = NULL, [SortOrder] = 4977.00 WHERE [Code] = 'nkq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkn', 'Nkangala', NULL, 496.40) END +VALUES ('nkn', 'Nkangala', NULL, 4978.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkangala', [Definition] = NULL, [SortOrder] = 496.40 WHERE [Code] = 'nkn' END +SET [Description] = 'Nkangala', [Definition] = NULL, [SortOrder] = 4978.00 WHERE [Code] = 'nkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkz', 'Nkari', NULL, 496.50) END +VALUES ('nkz', 'Nkari', NULL, 4979.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkari', [Definition] = NULL, [SortOrder] = 496.50 WHERE [Code] = 'nkz' END +SET [Description] = 'Nkari', [Definition] = NULL, [SortOrder] = 4979.00 WHERE [Code] = 'nkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'isi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('isi', 'Nkem-Nkum', NULL, 496.60) END +VALUES ('isi', 'Nkem-Nkum', NULL, 4980.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkem-Nkum', [Definition] = NULL, [SortOrder] = 496.60 WHERE [Code] = 'isi' END +SET [Description] = 'Nkem-Nkum', [Definition] = NULL, [SortOrder] = 4980.00 WHERE [Code] = 'isi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khu', 'Nkhumbi', NULL, 496.70) END +VALUES ('khu', 'Nkhumbi', NULL, 4981.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkhumbi', [Definition] = NULL, [SortOrder] = 496.70 WHERE [Code] = 'khu' END +SET [Description] = 'Nkhumbi', [Definition] = NULL, [SortOrder] = 4981.00 WHERE [Code] = 'khu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkc', 'Nkongho', NULL, 496.80) END +VALUES ('nkc', 'Nkongho', NULL, 4982.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkongho', [Definition] = NULL, [SortOrder] = 496.80 WHERE [Code] = 'nkc' END +SET [Description] = 'Nkongho', [Definition] = NULL, [SortOrder] = 4982.00 WHERE [Code] = 'nkc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nko', 'Nkonya', NULL, 496.90) END +VALUES ('nko', 'Nkonya', NULL, 4983.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkonya', [Definition] = NULL, [SortOrder] = 496.90 WHERE [Code] = 'nko' END +SET [Description] = 'Nkonya', [Definition] = NULL, [SortOrder] = 4983.00 WHERE [Code] = 'nko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkx', 'Nkoroo', NULL, 497.00) END +VALUES ('nkx', 'Nkoroo', NULL, 4984.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkoroo', [Definition] = NULL, [SortOrder] = 497.00 WHERE [Code] = 'nkx' END +SET [Description] = 'Nkoroo', [Definition] = NULL, [SortOrder] = 4984.00 WHERE [Code] = 'nkx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nka', 'Nkoya', NULL, 497.10) END +VALUES ('nka', 'Nkoya', NULL, 4985.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkoya', [Definition] = NULL, [SortOrder] = 497.10 WHERE [Code] = 'nka' END +SET [Description] = 'Nkoya', [Definition] = NULL, [SortOrder] = 4985.00 WHERE [Code] = 'nka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbo', 'Nkukoli', NULL, 497.20) END +VALUES ('nbo', 'Nkukoli', NULL, 4986.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkukoli', [Definition] = NULL, [SortOrder] = 497.20 WHERE [Code] = 'nbo' END +SET [Description] = 'Nkukoli', [Definition] = NULL, [SortOrder] = 4986.00 WHERE [Code] = 'nbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkw', 'Nkutu', NULL, 497.30) END +VALUES ('nkw', 'Nkutu', NULL, 4987.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nkutu', [Definition] = NULL, [SortOrder] = 497.30 WHERE [Code] = 'nkw' END +SET [Description] = 'Nkutu', [Definition] = NULL, [SortOrder] = 4987.00 WHERE [Code] = 'nkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbp', 'Nnam', NULL, 497.40) END +VALUES ('nbp', 'Nnam', NULL, 4988.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nnam', [Definition] = NULL, [SortOrder] = 497.40 WHERE [Code] = 'nbp' END +SET [Description] = 'Nnam', [Definition] = NULL, [SortOrder] = 4988.00 WHERE [Code] = 'nbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zxx', 'No linguistic content', NULL, 497.50) END +VALUES ('zxx', 'No linguistic content', NULL, 4989.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'No linguistic content', [Definition] = NULL, [SortOrder] = 497.50 WHERE [Code] = 'zxx' END +SET [Description] = 'No linguistic content', [Definition] = NULL, [SortOrder] = 4989.00 WHERE [Code] = 'zxx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fia', 'Nobiin', NULL, 497.60) END +VALUES ('fia', 'Nobiin', NULL, 4990.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nobiin', [Definition] = NULL, [SortOrder] = 497.60 WHERE [Code] = 'fia' END +SET [Description] = 'Nobiin', [Definition] = NULL, [SortOrder] = 4990.00 WHERE [Code] = 'fia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaw', 'Nobonob', NULL, 497.70) END +VALUES ('gaw', 'Nobonob', NULL, 4991.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nobonob', [Definition] = NULL, [SortOrder] = 497.70 WHERE [Code] = 'gaw' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nom', 'Nocamán', NULL, 497.80) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nocamán', [Definition] = NULL, [SortOrder] = 497.80 WHERE [Code] = 'nom' END +SET [Description] = 'Nobonob', [Definition] = NULL, [SortOrder] = 4991.00 WHERE [Code] = 'gaw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njb', 'Nocte Naga', NULL, 497.90) END +VALUES ('njb', 'Nocte Naga', NULL, 4992.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nocte Naga', [Definition] = NULL, [SortOrder] = 497.90 WHERE [Code] = 'njb' END +SET [Description] = 'Nocte Naga', [Definition] = NULL, [SortOrder] = 4992.00 WHERE [Code] = 'njb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nog', 'Nogai', NULL, 498.00) END +VALUES ('nog', 'Nogai', NULL, 4993.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nogai', [Definition] = NULL, [SortOrder] = 498.00 WHERE [Code] = 'nog' END +SET [Description] = 'Nogai', [Definition] = NULL, [SortOrder] = 4993.00 WHERE [Code] = 'nog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npx', 'Noipx', NULL, 498.10) END +VALUES ('npx', 'Noipx', NULL, 4994.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noipx', [Definition] = NULL, [SortOrder] = 498.10 WHERE [Code] = 'npx' END +SET [Description] = 'Noipx', [Definition] = NULL, [SortOrder] = 4994.00 WHERE [Code] = 'npx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noi', 'Noiri', NULL, 498.20) END +VALUES ('noi', 'Noiri', NULL, 4995.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noiri', [Definition] = NULL, [SortOrder] = 498.20 WHERE [Code] = 'noi' END +SET [Description] = 'Noiri', [Definition] = NULL, [SortOrder] = 4995.00 WHERE [Code] = 'noi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkk', 'Nokuku', NULL, 498.30) END +VALUES ('nkk', 'Nokuku', NULL, 4996.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nokuku', [Definition] = NULL, [SortOrder] = 498.30 WHERE [Code] = 'nkk' END +SET [Description] = 'Nokuku', [Definition] = NULL, [SortOrder] = 4996.00 WHERE [Code] = 'nkk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lem', 'Nomaande', NULL, 498.40) END +VALUES ('lem', 'Nomaande', NULL, 4997.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomaande', [Definition] = NULL, [SortOrder] = 498.40 WHERE [Code] = 'lem' END +SET [Description] = 'Nomaande', [Definition] = NULL, [SortOrder] = 4997.00 WHERE [Code] = 'lem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nof', 'Nomane', NULL, 498.50) END +VALUES ('nof', 'Nomane', NULL, 4998.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomane', [Definition] = NULL, [SortOrder] = 498.50 WHERE [Code] = 'nof' END +SET [Description] = 'Nomane', [Definition] = NULL, [SortOrder] = 4998.00 WHERE [Code] = 'nof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'not') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('not', 'Nomatsiguenga', NULL, 498.60) END +VALUES ('not', 'Nomatsiguenga', NULL, 4999.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomatsiguenga', [Definition] = NULL, [SortOrder] = 498.60 WHERE [Code] = 'not' END +SET [Description] = 'Nomatsiguenga', [Definition] = NULL, [SortOrder] = 4999.00 WHERE [Code] = 'not' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nol', 'Nomlaki', NULL, 498.70) END +VALUES ('nol', 'Nomlaki', NULL, 5000.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomlaki', [Definition] = NULL, [SortOrder] = 498.70 WHERE [Code] = 'nol' END +SET [Description] = 'Nomlaki', [Definition] = NULL, [SortOrder] = 5000.00 WHERE [Code] = 'nol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noh', 'Nomu', NULL, 498.80) END +VALUES ('noh', 'Nomu', NULL, 5001.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nomu', [Definition] = NULL, [SortOrder] = 498.80 WHERE [Code] = 'noh' END +SET [Description] = 'Nomu', [Definition] = NULL, [SortOrder] = 5001.00 WHERE [Code] = 'noh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhn', 'Nong Zhuang', NULL, 498.90) END +VALUES ('zhn', 'Nong Zhuang', NULL, 5002.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nong Zhuang', [Definition] = NULL, [SortOrder] = 498.90 WHERE [Code] = 'zhn' END +SET [Description] = 'Nong Zhuang', [Definition] = NULL, [SortOrder] = 5002.00 WHERE [Code] = 'zhn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noj', 'Nonuya', NULL, 499.00) END +VALUES ('noj', 'Nonuya', NULL, 5003.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nonuya', [Definition] = NULL, [SortOrder] = 499.00 WHERE [Code] = 'noj' END +SET [Description] = 'Nonuya', [Definition] = NULL, [SortOrder] = 5003.00 WHERE [Code] = 'noj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nok', 'Nooksack', NULL, 499.10) END +VALUES ('nok', 'Nooksack', NULL, 5004.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nooksack', [Definition] = NULL, [SortOrder] = 499.10 WHERE [Code] = 'nok' END +SET [Description] = 'Nooksack', [Definition] = NULL, [SortOrder] = 5004.00 WHERE [Code] = 'nok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snf', 'Noon', NULL, 499.20) END +VALUES ('snf', 'Noon', NULL, 5005.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noon', [Definition] = NULL, [SortOrder] = 499.20 WHERE [Code] = 'snf' END +SET [Description] = 'Noon', [Definition] = NULL, [SortOrder] = 5005.00 WHERE [Code] = 'snf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhu', 'Noone', NULL, 499.30) END +VALUES ('nhu', 'Noone', NULL, 5006.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noone', [Definition] = NULL, [SortOrder] = 499.30 WHERE [Code] = 'nhu' END +SET [Description] = 'Noone', [Definition] = NULL, [SortOrder] = 5006.00 WHERE [Code] = 'nhu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cya', 'Nopala Chatino', NULL, 499.40) END +VALUES ('cya', 'Nopala Chatino', NULL, 5007.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nopala Chatino', [Definition] = NULL, [SortOrder] = 499.40 WHERE [Code] = 'cya' END +SET [Description] = 'Nopala Chatino', [Definition] = NULL, [SortOrder] = 5007.00 WHERE [Code] = 'cya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrc', 'Noric', NULL, 499.50) END +VALUES ('nrc', 'Noric', NULL, 5008.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noric', [Definition] = NULL, [SortOrder] = 499.50 WHERE [Code] = 'nrc' END +SET [Description] = 'Noric', [Definition] = NULL, [SortOrder] = 5008.00 WHERE [Code] = 'nrc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrn', 'Norn', NULL, 499.60) END +VALUES ('nrn', 'Norn', NULL, 5009.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norn', [Definition] = NULL, [SortOrder] = 499.60 WHERE [Code] = 'nrn' END +SET [Description] = 'Norn', [Definition] = NULL, [SortOrder] = 5009.00 WHERE [Code] = 'nrn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrr', 'Norra', NULL, 499.70) END +VALUES ('nrr', 'Norra', NULL, 5010.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norra', [Definition] = NULL, [SortOrder] = 499.70 WHERE [Code] = 'nrr' END +SET [Description] = 'Norra', [Definition] = NULL, [SortOrder] = 5010.00 WHERE [Code] = 'nrr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esi', 'North Alaskan Inupiatun', NULL, 499.80) END +VALUES ('esi', 'North Alaskan Inupiatun', NULL, 5011.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Alaskan Inupiatun', [Definition] = NULL, [SortOrder] = 499.80 WHERE [Code] = 'esi' END +SET [Description] = 'North Alaskan Inupiatun', [Definition] = NULL, [SortOrder] = 5011.00 WHERE [Code] = 'esi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmg', 'North Ambrym', NULL, 499.90) END +VALUES ('mmg', 'North Ambrym', NULL, 5012.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Ambrym', [Definition] = NULL, [SortOrder] = 499.90 WHERE [Code] = 'mmg' END +SET [Description] = 'North Ambrym', [Definition] = NULL, [SortOrder] = 5012.00 WHERE [Code] = 'mmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nks', 'North Asmat', NULL, 500.00) END +VALUES ('nks', 'North Asmat', NULL, 5013.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Asmat', [Definition] = NULL, [SortOrder] = 500.00 WHERE [Code] = 'nks' END +SET [Description] = 'North Asmat', [Definition] = NULL, [SortOrder] = 5013.00 WHERE [Code] = 'nks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yir', 'North Awyu', NULL, 500.10) END +VALUES ('yir', 'North Awyu', NULL, 5014.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Awyu', [Definition] = NULL, [SortOrder] = 500.10 WHERE [Code] = 'yir' END +SET [Description] = 'North Awyu', [Definition] = NULL, [SortOrder] = 5014.00 WHERE [Code] = 'yir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azj', 'North Azerbaijani', NULL, 500.20) END +VALUES ('azj', 'North Azerbaijani', NULL, 5015.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Azerbaijani', [Definition] = NULL, [SortOrder] = 500.20 WHERE [Code] = 'azj' END +SET [Description] = 'North Azerbaijani', [Definition] = NULL, [SortOrder] = 5015.00 WHERE [Code] = 'azj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcd', 'North Babar', NULL, 500.30) END +VALUES ('bcd', 'North Babar', NULL, 5016.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Babar', [Definition] = NULL, [SortOrder] = 500.30 WHERE [Code] = 'bcd' END +SET [Description] = 'North Babar', [Definition] = NULL, [SortOrder] = 5016.00 WHERE [Code] = 'bcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qul', 'North Bolivian Quechua', NULL, 500.40) END +VALUES ('qul', 'North Bolivian Quechua', NULL, 5017.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Bolivian Quechua', [Definition] = NULL, [SortOrder] = 500.40 WHERE [Code] = 'qul' END +SET [Description] = 'North Bolivian Quechua', [Definition] = NULL, [SortOrder] = 5017.00 WHERE [Code] = 'qul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neq', 'North Central Mixe', NULL, 500.50) END +VALUES ('neq', 'North Central Mixe', NULL, 5018.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Central Mixe', [Definition] = NULL, [SortOrder] = 500.50 WHERE [Code] = 'neq' END +SET [Description] = 'North Central Mixe', [Definition] = NULL, [SortOrder] = 5018.00 WHERE [Code] = 'neq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'llp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('llp', 'North Efate', NULL, 500.60) END +VALUES ('llp', 'North Efate', NULL, 5019.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Efate', [Definition] = NULL, [SortOrder] = 500.60 WHERE [Code] = 'llp' END +SET [Description] = 'North Efate', [Definition] = NULL, [SortOrder] = 5019.00 WHERE [Code] = 'llp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fll', 'North Fali', NULL, 500.70) END +VALUES ('fll', 'North Fali', NULL, 5020.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Fali', [Definition] = NULL, [SortOrder] = 500.70 WHERE [Code] = 'fll' END +SET [Description] = 'North Fali', [Definition] = NULL, [SortOrder] = 5020.00 WHERE [Code] = 'fll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gis', 'North Giziga', NULL, 500.80) END +VALUES ('gis', 'North Giziga', NULL, 5021.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Giziga', [Definition] = NULL, [SortOrder] = 500.80 WHERE [Code] = 'gis' END +SET [Description] = 'North Giziga', [Definition] = NULL, [SortOrder] = 5021.00 WHERE [Code] = 'gis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvn', 'North Junín Quechua', NULL, 500.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Junín Quechua', [Definition] = NULL, [SortOrder] = 500.90 WHERE [Code] = 'qvn' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apc', 'North Levantine Arabic', NULL, 501.00) END +VALUES ('qvn', 'North Junín Quechua', NULL, 5022.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Levantine Arabic', [Definition] = NULL, [SortOrder] = 501.00 WHERE [Code] = 'apc' END +SET [Description] = 'North Junín Quechua', [Definition] = NULL, [SortOrder] = 5022.00 WHERE [Code] = 'qvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrq', 'North Marquesan', NULL, 501.10) END +VALUES ('mrq', 'North Marquesan', NULL, 5023.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Marquesan', [Definition] = NULL, [SortOrder] = 501.10 WHERE [Code] = 'mrq' END +SET [Description] = 'North Marquesan', [Definition] = NULL, [SortOrder] = 5023.00 WHERE [Code] = 'mrq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayp', 'North Mesopotamian Arabic', NULL, 501.20) END +VALUES ('ayp', 'North Mesopotamian Arabic', NULL, 5024.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Mesopotamian Arabic', [Definition] = NULL, [SortOrder] = 501.20 WHERE [Code] = 'ayp' END +SET [Description] = 'North Mesopotamian Arabic', [Definition] = NULL, [SortOrder] = 5024.00 WHERE [Code] = 'ayp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xph', 'North Midlands Tasmanian', NULL, 501.30) END +VALUES ('xph', 'North Midlands Tasmanian', NULL, 5025.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Midlands Tasmanian', [Definition] = NULL, [SortOrder] = 501.30 WHERE [Code] = 'xph' END +SET [Description] = 'North Midlands Tasmanian', [Definition] = NULL, [SortOrder] = 5025.00 WHERE [Code] = 'xph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfk', 'North Mofu', NULL, 501.40) END +VALUES ('mfk', 'North Mofu', NULL, 5026.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Mofu', [Definition] = NULL, [SortOrder] = 501.40 WHERE [Code] = 'mfk' END +SET [Description] = 'North Mofu', [Definition] = NULL, [SortOrder] = 5026.00 WHERE [Code] = 'mfk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'max') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('max', 'North Moluccan Malay', NULL, 501.50) END +VALUES ('max', 'North Moluccan Malay', NULL, 5027.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Moluccan Malay', [Definition] = NULL, [SortOrder] = 501.50 WHERE [Code] = 'max' END +SET [Description] = 'North Moluccan Malay', [Definition] = NULL, [SortOrder] = 5027.00 WHERE [Code] = 'max' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kti', 'North Muyu', NULL, 501.60) END +VALUES ('kti', 'North Muyu', NULL, 5028.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Muyu', [Definition] = NULL, [SortOrder] = 501.60 WHERE [Code] = 'kti' END +SET [Description] = 'North Muyu', [Definition] = NULL, [SortOrder] = 5028.00 WHERE [Code] = 'kti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nde', 'North Ndebele', NULL, 501.70) END +VALUES ('nde', 'North Ndebele', NULL, 5029.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Ndebele', [Definition] = NULL, [SortOrder] = 501.70 WHERE [Code] = 'nde' END +SET [Description] = 'North Ndebele', [Definition] = NULL, [SortOrder] = 5029.00 WHERE [Code] = 'nde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nni', 'North Nuaulu', NULL, 501.80) END +VALUES ('nni', 'North Nuaulu', NULL, 5030.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Nuaulu', [Definition] = NULL, [SortOrder] = 501.80 WHERE [Code] = 'nni' END +SET [Description] = 'North Nuaulu', [Definition] = NULL, [SortOrder] = 5030.00 WHERE [Code] = 'nni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrp', 'North Picene', NULL, 501.90) END +VALUES ('nrp', 'North Picene', NULL, 5031.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Picene', [Definition] = NULL, [SortOrder] = 501.90 WHERE [Code] = 'nrp' END +SET [Description] = 'North Picene', [Definition] = NULL, [SortOrder] = 5031.00 WHERE [Code] = 'nrp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scs', 'North Slavey', NULL, 502.00) END +VALUES ('scs', 'North Slavey', NULL, 5032.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Slavey', [Definition] = NULL, [SortOrder] = 502.00 WHERE [Code] = 'scs' END +SET [Description] = 'North Slavey', [Definition] = NULL, [SortOrder] = 5032.00 WHERE [Code] = 'scs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbg', 'North Tairora', NULL, 502.10) END +VALUES ('tbg', 'North Tairora', NULL, 5033.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Tairora', [Definition] = NULL, [SortOrder] = 502.10 WHERE [Code] = 'tbg' END +SET [Description] = 'North Tairora', [Definition] = NULL, [SortOrder] = 5033.00 WHERE [Code] = 'tbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnn', 'North Tanna', NULL, 502.20) END +VALUES ('tnn', 'North Tanna', NULL, 5034.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Tanna', [Definition] = NULL, [SortOrder] = 502.20 WHERE [Code] = 'tnn' END +SET [Description] = 'North Tanna', [Definition] = NULL, [SortOrder] = 5034.00 WHERE [Code] = 'tnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'whg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('whg', 'North Wahgi', NULL, 502.30) END +VALUES ('whg', 'North Wahgi', NULL, 5035.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Wahgi', [Definition] = NULL, [SortOrder] = 502.30 WHERE [Code] = 'whg' END +SET [Description] = 'North Wahgi', [Definition] = NULL, [SortOrder] = 5035.00 WHERE [Code] = 'whg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'una') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('una', 'North Watut', NULL, 502.40) END +VALUES ('una', 'North Watut', NULL, 5036.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'North Watut', [Definition] = NULL, [SortOrder] = 502.40 WHERE [Code] = 'una' END +SET [Description] = 'North Watut', [Definition] = NULL, [SortOrder] = 5036.00 WHERE [Code] = 'una' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kiw', 'Northeast Kiwai', NULL, 502.50) END +VALUES ('kiw', 'Northeast Kiwai', NULL, 5037.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeast Kiwai', [Definition] = NULL, [SortOrder] = 502.50 WHERE [Code] = 'kiw' END +SET [Description] = 'Northeast Kiwai', [Definition] = NULL, [SortOrder] = 5037.00 WHERE [Code] = 'kiw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmu', 'Northeast Maidu', NULL, 502.60) END +VALUES ('nmu', 'Northeast Maidu', NULL, 5038.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeast Maidu', [Definition] = NULL, [SortOrder] = 502.60 WHERE [Code] = 'nmu' END +SET [Description] = 'Northeast Maidu', [Definition] = NULL, [SortOrder] = 5038.00 WHERE [Code] = 'nmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aee', 'Northeast Pashai', NULL, 502.70) END +VALUES ('aee', 'Northeast Pashai', NULL, 5039.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeast Pashai', [Definition] = NULL, [SortOrder] = 502.70 WHERE [Code] = 'aee' END +SET [Description] = 'Northeast Pashai', [Definition] = NULL, [SortOrder] = 5039.00 WHERE [Code] = 'aee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dip', 'Northeastern Dinka', NULL, 502.80) END +VALUES ('dip', 'Northeastern Dinka', NULL, 5040.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeastern Dinka', [Definition] = NULL, [SortOrder] = 502.80 WHERE [Code] = 'dip' END +SET [Description] = 'Northeastern Dinka', [Definition] = NULL, [SortOrder] = 5040.00 WHERE [Code] = 'dip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pef', 'Northeastern Pomo', NULL, 502.90) END +VALUES ('pef', 'Northeastern Pomo', NULL, 5041.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeastern Pomo', [Definition] = NULL, [SortOrder] = 502.90 WHERE [Code] = 'pef' END +SET [Description] = 'Northeastern Pomo', [Definition] = NULL, [SortOrder] = 5041.00 WHERE [Code] = 'pef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpb', 'Northeastern Tasmanian', NULL, 503.00) END +VALUES ('xpb', 'Northeastern Tasmanian', NULL, 5042.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeastern Tasmanian', [Definition] = NULL, [SortOrder] = 503.00 WHERE [Code] = 'xpb' END +SET [Description] = 'Northeastern Tasmanian', [Definition] = NULL, [SortOrder] = 5042.00 WHERE [Code] = 'xpb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tts', 'Northeastern Thai', NULL, 503.10) END +VALUES ('tts', 'Northeastern Thai', NULL, 5043.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northeastern Thai', [Definition] = NULL, [SortOrder] = 503.10 WHERE [Code] = 'tts' END +SET [Description] = 'Northeastern Thai', [Definition] = NULL, [SortOrder] = 5043.00 WHERE [Code] = 'tts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aqn', 'Northern Alta', NULL, 503.20) END +VALUES ('aqn', 'Northern Alta', NULL, 5044.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Alta', [Definition] = NULL, [SortOrder] = 503.20 WHERE [Code] = 'aqn' END +SET [Description] = 'Northern Alta', [Definition] = NULL, [SortOrder] = 5044.00 WHERE [Code] = 'aqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atv', 'Northern Altai', NULL, 503.30) END +VALUES ('atv', 'Northern Altai', NULL, 5045.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Altai', [Definition] = NULL, [SortOrder] = 503.30 WHERE [Code] = 'atv' END +SET [Description] = 'Northern Altai', [Definition] = NULL, [SortOrder] = 5045.00 WHERE [Code] = 'atv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ryn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ryn', 'Northern Amami-Oshima', NULL, 503.40) END +VALUES ('ryn', 'Northern Amami-Oshima', NULL, 5046.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Amami-Oshima', [Definition] = NULL, [SortOrder] = 503.40 WHERE [Code] = 'ryn' END +SET [Description] = 'Northern Amami-Oshima', [Definition] = NULL, [SortOrder] = 5046.00 WHERE [Code] = 'ryn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmm', 'Northern Betsimisaraka Malagasy', NULL, 503.50) END +VALUES ('bmm', 'Northern Betsimisaraka Malagasy', NULL, 5047.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Betsimisaraka Malagasy', [Definition] = NULL, [SortOrder] = 503.50 WHERE [Code] = 'bmm' END +SET [Description] = 'Northern Betsimisaraka Malagasy', [Definition] = NULL, [SortOrder] = 5047.00 WHERE [Code] = 'bmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyn', 'Northern Binukidnon', NULL, 503.60) END +VALUES ('kyn', 'Northern Binukidnon', NULL, 5048.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Binukidnon', [Definition] = NULL, [SortOrder] = 503.60 WHERE [Code] = 'kyn' END +SET [Description] = 'Northern Binukidnon', [Definition] = NULL, [SortOrder] = 5048.00 WHERE [Code] = 'kyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbo', 'Northern Bobo Madaré', NULL, 503.70) END +VALUES ('bbo', 'Northern Bobo Madaré', NULL, 5049.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Bobo Madaré', [Definition] = NULL, [SortOrder] = 503.70 WHERE [Code] = 'bbo' END +SET [Description] = 'Northern Bobo Madaré', [Definition] = NULL, [SortOrder] = 5049.00 WHERE [Code] = 'bbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rbk', 'Northern Bontok', NULL, 503.80) END +VALUES ('rbk', 'Northern Bontok', NULL, 5050.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Bontok', [Definition] = NULL, [SortOrder] = 503.80 WHERE [Code] = 'rbk' END +SET [Description] = 'Northern Bontok', [Definition] = NULL, [SortOrder] = 5050.00 WHERE [Code] = 'rbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cts', 'Northern Catanduanes Bikol', NULL, 503.90) END +VALUES ('cts', 'Northern Catanduanes Bikol', NULL, 5051.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Catanduanes Bikol', [Definition] = NULL, [SortOrder] = 503.90 WHERE [Code] = 'cts' END +SET [Description] = 'Northern Catanduanes Bikol', [Definition] = NULL, [SortOrder] = 5051.00 WHERE [Code] = 'cts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxn', 'Northern Conchucos Ancash Quechua', NULL, 504.00) END +VALUES ('qxn', 'Northern Conchucos Ancash Quechua', NULL, 5052.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Conchucos Ancash Quechua', [Definition] = NULL, [SortOrder] = 504.00 WHERE [Code] = 'qxn' END +SET [Description] = 'Northern Conchucos Ancash Quechua', [Definition] = NULL, [SortOrder] = 5052.00 WHERE [Code] = 'qxn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dgi', 'Northern Dagara', NULL, 504.10) END +VALUES ('dgi', 'Northern Dagara', NULL, 5053.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Dagara', [Definition] = NULL, [SortOrder] = 504.10 WHERE [Code] = 'dgi' END +SET [Description] = 'Northern Dagara', [Definition] = NULL, [SortOrder] = 5053.00 WHERE [Code] = 'dgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'doc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('doc', 'Northern Dong', NULL, 504.20) END +VALUES ('doc', 'Northern Dong', NULL, 5054.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Dong', [Definition] = NULL, [SortOrder] = 504.20 WHERE [Code] = 'doc' END +SET [Description] = 'Northern Dong', [Definition] = NULL, [SortOrder] = 5054.00 WHERE [Code] = 'doc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crl', 'Northern East Cree', NULL, 504.30) END +VALUES ('crl', 'Northern East Cree', NULL, 5055.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern East Cree', [Definition] = NULL, [SortOrder] = 504.30 WHERE [Code] = 'crl' END +SET [Description] = 'Northern East Cree', [Definition] = NULL, [SortOrder] = 5055.00 WHERE [Code] = 'crl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'emp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('emp', 'Northern Emberá', NULL, 504.40) END +VALUES ('emp', 'Northern Emberá', NULL, 5056.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Emberá', [Definition] = NULL, [SortOrder] = 504.40 WHERE [Code] = 'emp' END +SET [Description] = 'Northern Emberá', [Definition] = NULL, [SortOrder] = 5056.00 WHERE [Code] = 'emp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'frr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('frr', 'Northern Frisian', NULL, 504.50) END +VALUES ('frr', 'Northern Frisian', NULL, 5057.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Frisian', [Definition] = NULL, [SortOrder] = 504.50 WHERE [Code] = 'frr' END +SET [Description] = 'Northern Frisian', [Definition] = NULL, [SortOrder] = 5057.00 WHERE [Code] = 'frr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghh', 'Northern Ghale', NULL, 504.60) END +VALUES ('ghh', 'Northern Ghale', NULL, 5058.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Ghale', [Definition] = NULL, [SortOrder] = 504.60 WHERE [Code] = 'ghh' END +SET [Description] = 'Northern Ghale', [Definition] = NULL, [SortOrder] = 5058.00 WHERE [Code] = 'ghh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gno', 'Northern Gondi', NULL, 504.70) END +VALUES ('gno', 'Northern Gondi', NULL, 5059.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Gondi', [Definition] = NULL, [SortOrder] = 504.70 WHERE [Code] = 'gno' END +SET [Description] = 'Northern Gondi', [Definition] = NULL, [SortOrder] = 5059.00 WHERE [Code] = 'gno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbo', 'Northern Grebo', NULL, 504.80) END +VALUES ('gbo', 'Northern Grebo', NULL, 5060.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Grebo', [Definition] = NULL, [SortOrder] = 504.80 WHERE [Code] = 'gbo' END +SET [Description] = 'Northern Grebo', [Definition] = NULL, [SortOrder] = 5060.00 WHERE [Code] = 'gbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huj', 'Northern Guiyang Hmong', NULL, 504.90) END +VALUES ('huj', 'Northern Guiyang Hmong', NULL, 5061.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 504.90 WHERE [Code] = 'huj' END +SET [Description] = 'Northern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 5061.00 WHERE [Code] = 'huj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hdn', 'Northern Haida', NULL, 505.00) END +VALUES ('hdn', 'Northern Haida', NULL, 5062.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Haida', [Definition] = NULL, [SortOrder] = 505.00 WHERE [Code] = 'hdn' END +SET [Description] = 'Northern Haida', [Definition] = NULL, [SortOrder] = 5062.00 WHERE [Code] = 'hdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hno', 'Northern Hindko', NULL, 505.10) END +VALUES ('hno', 'Northern Hindko', NULL, 5063.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Hindko', [Definition] = NULL, [SortOrder] = 505.10 WHERE [Code] = 'hno' END +SET [Description] = 'Northern Hindko', [Definition] = NULL, [SortOrder] = 5063.00 WHERE [Code] = 'hno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmi', 'Northern Huishui Hmong', NULL, 505.20) END +VALUES ('hmi', 'Northern Huishui Hmong', NULL, 5064.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Huishui Hmong', [Definition] = NULL, [SortOrder] = 505.20 WHERE [Code] = 'hmi' END +SET [Description] = 'Northern Huishui Hmong', [Definition] = NULL, [SortOrder] = 5064.00 WHERE [Code] = 'hmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nrt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nrt', 'Northern Kalapuya', NULL, 505.30) END +VALUES ('nrt', 'Northern Kalapuya', NULL, 5065.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Kalapuya', [Definition] = NULL, [SortOrder] = 505.30 WHERE [Code] = 'nrt' END +SET [Description] = 'Northern Kalapuya', [Definition] = NULL, [SortOrder] = 5065.00 WHERE [Code] = 'nrt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnn', 'Northern Kankanay', NULL, 505.40) END +VALUES ('xnn', 'Northern Kankanay', NULL, 5066.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Kankanay', [Definition] = NULL, [SortOrder] = 505.40 WHERE [Code] = 'xnn' END +SET [Description] = 'Northern Kankanay', [Definition] = NULL, [SortOrder] = 5066.00 WHERE [Code] = 'xnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncq', 'Northern Katang', NULL, 505.50) END +VALUES ('ncq', 'Northern Katang', NULL, 5067.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Katang', [Definition] = NULL, [SortOrder] = 505.50 WHERE [Code] = 'ncq' END +SET [Description] = 'Northern Katang', [Definition] = NULL, [SortOrder] = 5067.00 WHERE [Code] = 'ncq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxm', 'Northern Khmer', NULL, 505.60) END +VALUES ('kxm', 'Northern Khmer', NULL, 5068.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Khmer', [Definition] = NULL, [SortOrder] = 505.60 WHERE [Code] = 'kxm' END +SET [Description] = 'Northern Khmer', [Definition] = NULL, [SortOrder] = 5068.00 WHERE [Code] = 'kxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqs', 'Northern Kissi', NULL, 505.70) END +VALUES ('kqs', 'Northern Kissi', NULL, 5069.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Kissi', [Definition] = NULL, [SortOrder] = 505.70 WHERE [Code] = 'kqs' END +SET [Description] = 'Northern Kissi', [Definition] = NULL, [SortOrder] = 5069.00 WHERE [Code] = 'kqs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmr', 'Northern Kurdish', NULL, 505.80) END +VALUES ('kmr', 'Northern Kurdish', NULL, 5070.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Kurdish', [Definition] = NULL, [SortOrder] = 505.80 WHERE [Code] = 'kmr' END +SET [Description] = 'Northern Kurdish', [Definition] = NULL, [SortOrder] = 5070.00 WHERE [Code] = 'kmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrc', 'Northern Luri', NULL, 505.90) END +VALUES ('lrc', 'Northern Luri', NULL, 5071.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Luri', [Definition] = NULL, [SortOrder] = 505.90 WHERE [Code] = 'lrc' END +SET [Description] = 'Northern Luri', [Definition] = NULL, [SortOrder] = 5071.00 WHERE [Code] = 'lrc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmp', 'Northern Mashan Hmong', NULL, 506.00) END +VALUES ('hmp', 'Northern Mashan Hmong', NULL, 5072.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Mashan Hmong', [Definition] = NULL, [SortOrder] = 506.00 WHERE [Code] = 'hmp' END +SET [Description] = 'Northern Mashan Hmong', [Definition] = NULL, [SortOrder] = 5072.00 WHERE [Code] = 'hmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymx', 'Northern Muji', NULL, 506.10) END +VALUES ('ymx', 'Northern Muji', NULL, 5073.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Muji', [Definition] = NULL, [SortOrder] = 506.10 WHERE [Code] = 'ymx' END +SET [Description] = 'Northern Muji', [Definition] = NULL, [SortOrder] = 5073.00 WHERE [Code] = 'ymx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkb', 'Northern Nago', NULL, 506.20) END +VALUES ('xkb', 'Northern Nago', NULL, 5074.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Nago', [Definition] = NULL, [SortOrder] = 506.20 WHERE [Code] = 'xkb' END +SET [Description] = 'Northern Nago', [Definition] = NULL, [SortOrder] = 5074.00 WHERE [Code] = 'xkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngb', 'Northern Ngbandi', NULL, 506.30) END +VALUES ('ngb', 'Northern Ngbandi', NULL, 5075.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Ngbandi', [Definition] = NULL, [SortOrder] = 506.30 WHERE [Code] = 'ngb' END +SET [Description] = 'Northern Ngbandi', [Definition] = NULL, [SortOrder] = 5075.00 WHERE [Code] = 'ngb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yiv', 'Northern Nisu', NULL, 506.40) END +VALUES ('yiv', 'Northern Nisu', NULL, 5076.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Nisu', [Definition] = NULL, [SortOrder] = 506.40 WHERE [Code] = 'yiv' END +SET [Description] = 'Northern Nisu', [Definition] = NULL, [SortOrder] = 5076.00 WHERE [Code] = 'yiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuv', 'Northern Nuni', NULL, 506.50) END +VALUES ('nuv', 'Northern Nuni', NULL, 5077.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Nuni', [Definition] = NULL, [SortOrder] = 506.50 WHERE [Code] = 'nuv' END +SET [Description] = 'Northern Nuni', [Definition] = NULL, [SortOrder] = 5077.00 WHERE [Code] = 'nuv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhy', 'Northern Oaxaca Nahuatl', NULL, 506.60) END +VALUES ('nhy', 'Northern Oaxaca Nahuatl', NULL, 5078.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Oaxaca Nahuatl', [Definition] = NULL, [SortOrder] = 506.60 WHERE [Code] = 'nhy' END +SET [Description] = 'Northern Oaxaca Nahuatl', [Definition] = NULL, [SortOrder] = 5078.00 WHERE [Code] = 'nhy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cst', 'Northern Ohlone', NULL, 506.70) END +VALUES ('cst', 'Northern Ohlone', NULL, 5079.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Ohlone', [Definition] = NULL, [SortOrder] = 506.70 WHERE [Code] = 'cst' END +SET [Description] = 'Northern Ohlone', [Definition] = NULL, [SortOrder] = 5079.00 WHERE [Code] = 'cst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onr', 'Northern One', NULL, 506.80) END +VALUES ('onr', 'Northern One', NULL, 5080.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern One', [Definition] = NULL, [SortOrder] = 506.80 WHERE [Code] = 'onr' END +SET [Description] = 'Northern One', [Definition] = NULL, [SortOrder] = 5080.00 WHERE [Code] = 'onr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pao', 'Northern Paiute', NULL, 506.90) END +VALUES ('pao', 'Northern Paiute', NULL, 5081.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Paiute', [Definition] = NULL, [SortOrder] = 506.90 WHERE [Code] = 'pao' END +SET [Description] = 'Northern Paiute', [Definition] = NULL, [SortOrder] = 5081.00 WHERE [Code] = 'pao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmq', 'Northern Pame', NULL, 507.00) END +VALUES ('pmq', 'Northern Pame', NULL, 5082.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pame', [Definition] = NULL, [SortOrder] = 507.00 WHERE [Code] = 'pmq' END +SET [Description] = 'Northern Pame', [Definition] = NULL, [SortOrder] = 5082.00 WHERE [Code] = 'pmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbu', 'Northern Pashto', NULL, 507.10) END +VALUES ('pbu', 'Northern Pashto', NULL, 5083.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pashto', [Definition] = NULL, [SortOrder] = 507.10 WHERE [Code] = 'pbu' END +SET [Description] = 'Northern Pashto', [Definition] = NULL, [SortOrder] = 5083.00 WHERE [Code] = 'pbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvz', 'Northern Pastaza Quichua', NULL, 507.20) END +VALUES ('qvz', 'Northern Pastaza Quichua', NULL, 5084.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pastaza Quichua', [Definition] = NULL, [SortOrder] = 507.20 WHERE [Code] = 'qvz' END +SET [Description] = 'Northern Pastaza Quichua', [Definition] = NULL, [SortOrder] = 5084.00 WHERE [Code] = 'qvz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnp', 'Northern Ping Chinese', NULL, 507.30) END +VALUES ('cnp', 'Northern Ping Chinese', NULL, 5085.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Ping Chinese', [Definition] = NULL, [SortOrder] = 507.30 WHERE [Code] = 'cnp' END +SET [Description] = 'Northern Ping Chinese', [Definition] = NULL, [SortOrder] = 5085.00 WHERE [Code] = 'cnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pej', 'Northern Pomo', NULL, 507.40) END +VALUES ('pej', 'Northern Pomo', NULL, 5086.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pomo', [Definition] = NULL, [SortOrder] = 507.40 WHERE [Code] = 'pej' END +SET [Description] = 'Northern Pomo', [Definition] = NULL, [SortOrder] = 5086.00 WHERE [Code] = 'pej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncj', 'Northern Puebla Nahuatl', NULL, 507.50) END +VALUES ('ncj', 'Northern Puebla Nahuatl', NULL, 5087.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 507.50 WHERE [Code] = 'ncj' END +SET [Description] = 'Northern Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 5087.00 WHERE [Code] = 'ncj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmi', 'Northern Pumi', NULL, 507.60) END +VALUES ('pmi', 'Northern Pumi', NULL, 5088.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Pumi', [Definition] = NULL, [SortOrder] = 507.60 WHERE [Code] = 'pmi' END +SET [Description] = 'Northern Pumi', [Definition] = NULL, [SortOrder] = 5088.00 WHERE [Code] = 'pmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hea', 'Northern Qiandong Miao', NULL, 507.70) END +VALUES ('hea', 'Northern Qiandong Miao', NULL, 5089.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Qiandong Miao', [Definition] = NULL, [SortOrder] = 507.70 WHERE [Code] = 'hea' END +SET [Description] = 'Northern Qiandong Miao', [Definition] = NULL, [SortOrder] = 5089.00 WHERE [Code] = 'hea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cng', 'Northern Qiang', NULL, 507.80) END +VALUES ('cng', 'Northern Qiang', NULL, 5090.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Qiang', [Definition] = NULL, [SortOrder] = 507.80 WHERE [Code] = 'cng' END +SET [Description] = 'Northern Qiang', [Definition] = NULL, [SortOrder] = 5090.00 WHERE [Code] = 'cng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnl', 'Northern Rengma Naga', NULL, 507.90) END +VALUES ('nnl', 'Northern Rengma Naga', NULL, 5091.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Rengma Naga', [Definition] = NULL, [SortOrder] = 507.90 WHERE [Code] = 'nnl' END +SET [Description] = 'Northern Rengma Naga', [Definition] = NULL, [SortOrder] = 5091.00 WHERE [Code] = 'nnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rog', 'Northern Roglai', NULL, 508.00) END +VALUES ('rog', 'Northern Roglai', NULL, 5092.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Roglai', [Definition] = NULL, [SortOrder] = 508.00 WHERE [Code] = 'rog' END +SET [Description] = 'Northern Roglai', [Definition] = NULL, [SortOrder] = 5092.00 WHERE [Code] = 'rog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sme', 'Northern Sami', NULL, 508.10) END +VALUES ('sme', 'Northern Sami', NULL, 5093.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Sami', [Definition] = NULL, [SortOrder] = 508.10 WHERE [Code] = 'sme' END +SET [Description] = 'Northern Sami', [Definition] = NULL, [SortOrder] = 5093.00 WHERE [Code] = 'sme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsq', 'Northern Sierra Miwok', NULL, 508.20) END +VALUES ('nsq', 'Northern Sierra Miwok', NULL, 5094.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Sierra Miwok', [Definition] = NULL, [SortOrder] = 508.20 WHERE [Code] = 'nsq' END +SET [Description] = 'Northern Sierra Miwok', [Definition] = NULL, [SortOrder] = 5094.00 WHERE [Code] = 'nsq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bks', 'Northern Sorsoganon', NULL, 508.30) END +VALUES ('bks', 'Northern Sorsoganon', NULL, 5095.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Sorsoganon', [Definition] = NULL, [SortOrder] = 508.30 WHERE [Code] = 'bks' END +SET [Description] = 'Northern Sorsoganon', [Definition] = NULL, [SortOrder] = 5095.00 WHERE [Code] = 'bks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stb', 'Northern Subanen', NULL, 508.40) END +VALUES ('stb', 'Northern Subanen', NULL, 5096.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Subanen', [Definition] = NULL, [SortOrder] = 508.40 WHERE [Code] = 'stb' END +SET [Description] = 'Northern Subanen', [Definition] = NULL, [SortOrder] = 5096.00 WHERE [Code] = 'stb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thh', 'Northern Tarahumara', NULL, 508.50) END +VALUES ('thh', 'Northern Tarahumara', NULL, 5097.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tarahumara', [Definition] = NULL, [SortOrder] = 508.50 WHERE [Code] = 'thh' END +SET [Description] = 'Northern Tarahumara', [Definition] = NULL, [SortOrder] = 5097.00 WHERE [Code] = 'thh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpv', 'Northern Tasmanian', NULL, 508.60) END +VALUES ('xpv', 'Northern Tasmanian', NULL, 5098.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tasmanian', [Definition] = NULL, [SortOrder] = 508.60 WHERE [Code] = 'xpv' END +SET [Description] = 'Northern Tasmanian', [Definition] = NULL, [SortOrder] = 5098.00 WHERE [Code] = 'xpv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntp', 'Northern Tepehuan', NULL, 508.70) END +VALUES ('ntp', 'Northern Tepehuan', NULL, 5099.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tepehuan', [Definition] = NULL, [SortOrder] = 508.70 WHERE [Code] = 'ntp' END +SET [Description] = 'Northern Tepehuan', [Definition] = NULL, [SortOrder] = 5099.00 WHERE [Code] = 'ntp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nod', 'Northern Thai', NULL, 508.80) END +VALUES ('nod', 'Northern Thai', NULL, 5100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Thai', [Definition] = NULL, [SortOrder] = 508.80 WHERE [Code] = 'nod' END +SET [Description] = 'Northern Thai', [Definition] = NULL, [SortOrder] = 5100.00 WHERE [Code] = 'nod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntd', 'Northern Tidung', NULL, 508.90) END +VALUES ('ntd', 'Northern Tidung', NULL, 5101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tidung', [Definition] = NULL, [SortOrder] = 508.90 WHERE [Code] = 'ntd' END +SET [Description] = 'Northern Tidung', [Definition] = NULL, [SortOrder] = 5101.00 WHERE [Code] = 'ntd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twf', 'Northern Tiwa', NULL, 509.00) END +VALUES ('twf', 'Northern Tiwa', NULL, 5102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tiwa', [Definition] = NULL, [SortOrder] = 509.00 WHERE [Code] = 'twf' END +SET [Description] = 'Northern Tiwa', [Definition] = NULL, [SortOrder] = 5102.00 WHERE [Code] = 'twf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtn', 'Northern Tlaxiaco Mixtec', NULL, 509.10) END +VALUES ('xtn', 'Northern Tlaxiaco Mixtec', NULL, 5103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tlaxiaco Mixtec', [Definition] = NULL, [SortOrder] = 509.10 WHERE [Code] = 'xtn' END +SET [Description] = 'Northern Tlaxiaco Mixtec', [Definition] = NULL, [SortOrder] = 5103.00 WHERE [Code] = 'xtn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsp', 'Northern Toussian', NULL, 509.20) END +VALUES ('tsp', 'Northern Toussian', NULL, 5104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Toussian', [Definition] = NULL, [SortOrder] = 509.20 WHERE [Code] = 'tsp' END +SET [Description] = 'Northern Toussian', [Definition] = NULL, [SortOrder] = 5104.00 WHERE [Code] = 'tsp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tji', 'Northern Tujia', NULL, 509.30) END +VALUES ('tji', 'Northern Tujia', NULL, 5105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tujia', [Definition] = NULL, [SortOrder] = 509.30 WHERE [Code] = 'tji' END +SET [Description] = 'Northern Tujia', [Definition] = NULL, [SortOrder] = 5105.00 WHERE [Code] = 'tji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttm', 'Northern Tutchone', NULL, 509.40) END +VALUES ('ttm', 'Northern Tutchone', NULL, 5106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Tutchone', [Definition] = NULL, [SortOrder] = 509.40 WHERE [Code] = 'ttm' END +SET [Description] = 'Northern Tutchone', [Definition] = NULL, [SortOrder] = 5106.00 WHERE [Code] = 'ttm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uzn', 'Northern Uzbek', NULL, 509.50) END +VALUES ('uzn', 'Northern Uzbek', NULL, 5107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Uzbek', [Definition] = NULL, [SortOrder] = 509.50 WHERE [Code] = 'uzn' END +SET [Description] = 'Northern Uzbek', [Definition] = NULL, [SortOrder] = 5107.00 WHERE [Code] = 'uzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykg', 'Northern Yukaghir', NULL, 509.60) END +VALUES ('ykg', 'Northern Yukaghir', NULL, 5108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northern Yukaghir', [Definition] = NULL, [SortOrder] = 509.60 WHERE [Code] = 'ykg' END +SET [Description] = 'Northern Yukaghir', [Definition] = NULL, [SortOrder] = 5108.00 WHERE [Code] = 'ykg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esk', 'Northwest Alaska Inupiatun', NULL, 509.70) END +VALUES ('esk', 'Northwest Alaska Inupiatun', NULL, 5109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Alaska Inupiatun', [Definition] = NULL, [SortOrder] = 509.70 WHERE [Code] = 'esk' END +SET [Description] = 'Northwest Alaska Inupiatun', [Definition] = NULL, [SortOrder] = 5109.00 WHERE [Code] = 'esk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gya', 'Northwest Gbaya', NULL, 509.80) END +VALUES ('gya', 'Northwest Gbaya', NULL, 5110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Gbaya', [Definition] = NULL, [SortOrder] = 509.80 WHERE [Code] = 'gya' END +SET [Description] = 'Northwest Gbaya', [Definition] = NULL, [SortOrder] = 5110.00 WHERE [Code] = 'gya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjd', 'Northwest Maidu', NULL, 509.90) END +VALUES ('mjd', 'Northwest Maidu', NULL, 5111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Maidu', [Definition] = NULL, [SortOrder] = 509.90 WHERE [Code] = 'mjd' END +SET [Description] = 'Northwest Maidu', [Definition] = NULL, [SortOrder] = 5111.00 WHERE [Code] = 'mjd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxa', 'Northwest Oaxaca Mixtec', NULL, 510.00) END +VALUES ('mxa', 'Northwest Oaxaca Mixtec', NULL, 5112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Oaxaca Mixtec', [Definition] = NULL, [SortOrder] = 510.00 WHERE [Code] = 'mxa' END +SET [Description] = 'Northwest Oaxaca Mixtec', [Definition] = NULL, [SortOrder] = 5112.00 WHERE [Code] = 'mxa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'glh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('glh', 'Northwest Pashai', NULL, 510.10) END +VALUES ('glh', 'Northwest Pashai', NULL, 5113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwest Pashai', [Definition] = NULL, [SortOrder] = 510.10 WHERE [Code] = 'glh' END +SET [Description] = 'Northwest Pashai', [Definition] = NULL, [SortOrder] = 5113.00 WHERE [Code] = 'glh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'diw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('diw', 'Northwestern Dinka', NULL, 510.20) END +VALUES ('diw', 'Northwestern Dinka', NULL, 5114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Dinka', [Definition] = NULL, [SortOrder] = 510.20 WHERE [Code] = 'diw' END +SET [Description] = 'Northwestern Dinka', [Definition] = NULL, [SortOrder] = 5114.00 WHERE [Code] = 'diw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'faz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('faz', 'Northwestern Fars', NULL, 510.30) END +VALUES ('faz', 'Northwestern Fars', NULL, 5115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Fars', [Definition] = NULL, [SortOrder] = 510.30 WHERE [Code] = 'faz' END +SET [Description] = 'Northwestern Fars', [Definition] = NULL, [SortOrder] = 5115.00 WHERE [Code] = 'faz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kfb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kfb', 'Northwestern Kolami', NULL, 510.40) END +VALUES ('kfb', 'Northwestern Kolami', NULL, 5116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Kolami', [Definition] = NULL, [SortOrder] = 510.40 WHERE [Code] = 'kfb' END +SET [Description] = 'Northwestern Kolami', [Definition] = NULL, [SortOrder] = 5116.00 WHERE [Code] = 'kfb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsf', 'Northwestern Nisu', NULL, 510.50) END +VALUES ('nsf', 'Northwestern Nisu', NULL, 5117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Nisu', [Definition] = NULL, [SortOrder] = 510.50 WHERE [Code] = 'nsf' END +SET [Description] = 'Northwestern Nisu', [Definition] = NULL, [SortOrder] = 5117.00 WHERE [Code] = 'nsf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojb', 'Northwestern Ojibwa', NULL, 510.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Ojibwa', [Definition] = NULL, [SortOrder] = 510.60 WHERE [Code] = 'ojb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmk', 'Northwestern Tamang', NULL, 510.70) END +VALUES ('ojb', 'Northwestern Ojibwa', NULL, 5118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Tamang', [Definition] = NULL, [SortOrder] = 510.70 WHERE [Code] = 'tmk' END +SET [Description] = 'Northwestern Ojibwa', [Definition] = NULL, [SortOrder] = 5118.00 WHERE [Code] = 'ojb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpw', 'Northwestern Tasmanian', NULL, 510.80) END +VALUES ('xpw', 'Northwestern Tasmanian', NULL, 5119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Northwestern Tasmanian', [Definition] = NULL, [SortOrder] = 510.80 WHERE [Code] = 'xpw' END +SET [Description] = 'Northwestern Tasmanian', [Definition] = NULL, [SortOrder] = 5119.00 WHERE [Code] = 'xpw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nor', 'Norwegian', NULL, 510.90) END +VALUES ('nor', 'Norwegian', NULL, 5120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norwegian', [Definition] = NULL, [SortOrder] = 510.90 WHERE [Code] = 'nor' END +SET [Description] = 'Norwegian', [Definition] = NULL, [SortOrder] = 5120.00 WHERE [Code] = 'nor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nob', 'Norwegian Bokmål', NULL, 511.00) END +VALUES ('nob', 'Norwegian Bokmål', NULL, 5121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norwegian Bokmål', [Definition] = NULL, [SortOrder] = 511.00 WHERE [Code] = 'nob' END +SET [Description] = 'Norwegian Bokmål', [Definition] = NULL, [SortOrder] = 5121.00 WHERE [Code] = 'nob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nno', 'Norwegian Nynorsk', NULL, 511.10) END +VALUES ('nno', 'Norwegian Nynorsk', NULL, 5122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norwegian Nynorsk', [Definition] = NULL, [SortOrder] = 511.10 WHERE [Code] = 'nno' END +SET [Description] = 'Norwegian Nynorsk', [Definition] = NULL, [SortOrder] = 5122.00 WHERE [Code] = 'nno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsl', 'Norwegian Sign Language', NULL, 511.20) END +VALUES ('nsl', 'Norwegian Sign Language', NULL, 5123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Norwegian Sign Language', [Definition] = NULL, [SortOrder] = 511.20 WHERE [Code] = 'nsl' END +SET [Description] = 'Norwegian Sign Language', [Definition] = NULL, [SortOrder] = 5123.00 WHERE [Code] = 'nsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bly', 'Notre', NULL, 511.30) END +VALUES ('bly', 'Notre', NULL, 5124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Notre', [Definition] = NULL, [SortOrder] = 511.30 WHERE [Code] = 'bly' END +SET [Description] = 'Notre', [Definition] = NULL, [SortOrder] = 5124.00 WHERE [Code] = 'bly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncf', 'Notsi', NULL, 511.40) END +VALUES ('ncf', 'Notsi', NULL, 5125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Notsi', [Definition] = NULL, [SortOrder] = 511.40 WHERE [Code] = 'ncf' END +SET [Description] = 'Notsi', [Definition] = NULL, [SortOrder] = 5125.00 WHERE [Code] = 'ncf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntw', 'Nottoway', NULL, 511.50) END +VALUES ('ntw', 'Nottoway', NULL, 5126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nottoway', [Definition] = NULL, [SortOrder] = 511.50 WHERE [Code] = 'ntw' END +SET [Description] = 'Nottoway', [Definition] = NULL, [SortOrder] = 5126.00 WHERE [Code] = 'ntw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwy', 'Nottoway-Meherrin', NULL, 511.60) END +VALUES ('nwy', 'Nottoway-Meherrin', NULL, 5127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nottoway-Meherrin', [Definition] = NULL, [SortOrder] = 511.60 WHERE [Code] = 'nwy' END +SET [Description] = 'Nottoway-Meherrin', [Definition] = NULL, [SortOrder] = 5127.00 WHERE [Code] = 'nwy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nov', 'Novial', NULL, 511.70) END +VALUES ('nov', 'Novial', NULL, 5128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Novial', [Definition] = NULL, [SortOrder] = 511.70 WHERE [Code] = 'nov' END +SET [Description] = 'Novial', [Definition] = NULL, [SortOrder] = 5128.00 WHERE [Code] = 'nov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noy', 'Noy', NULL, 511.80) END +VALUES ('noy', 'Noy', NULL, 5129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Noy', [Definition] = NULL, [SortOrder] = 511.80 WHERE [Code] = 'noy' END +SET [Description] = 'Noy', [Definition] = NULL, [SortOrder] = 5129.00 WHERE [Code] = 'noy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nse', 'Nsenga', NULL, 511.90) END +VALUES ('nse', 'Nsenga', NULL, 5130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nsenga', [Definition] = NULL, [SortOrder] = 511.90 WHERE [Code] = 'nse' END +SET [Description] = 'Nsenga', [Definition] = NULL, [SortOrder] = 5130.00 WHERE [Code] = 'nse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsc', 'Nshi', NULL, 512.00) END +VALUES ('nsc', 'Nshi', NULL, 5131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nshi', [Definition] = NULL, [SortOrder] = 512.00 WHERE [Code] = 'nsc' END +SET [Description] = 'Nshi', [Definition] = NULL, [SortOrder] = 5131.00 WHERE [Code] = 'nsc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsx', 'Nsongo', NULL, 512.10) END +VALUES ('nsx', 'Nsongo', NULL, 5132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nsongo', [Definition] = NULL, [SortOrder] = 512.10 WHERE [Code] = 'nsx' END +SET [Description] = 'Nsongo', [Definition] = NULL, [SortOrder] = 5132.00 WHERE [Code] = 'nsx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bud', 'Ntcham', NULL, 512.20) END +VALUES ('bud', 'Ntcham', NULL, 5133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ntcham', [Definition] = NULL, [SortOrder] = 512.20 WHERE [Code] = 'bud' END +SET [Description] = 'Ntcham', [Definition] = NULL, [SortOrder] = 5133.00 WHERE [Code] = 'bud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqt', 'Nteng', NULL, 512.30) END +VALUES ('nqt', 'Nteng', NULL, 5134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nteng', [Definition] = NULL, [SortOrder] = 512.30 WHERE [Code] = 'nqt' END +SET [Description] = 'Nteng', [Definition] = NULL, [SortOrder] = 5134.00 WHERE [Code] = 'nqt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nto', 'Ntomba', NULL, 512.40) END +VALUES ('nto', 'Ntomba', NULL, 5135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ntomba', [Definition] = NULL, [SortOrder] = 512.40 WHERE [Code] = 'nto' END +SET [Description] = 'Ntomba', [Definition] = NULL, [SortOrder] = 5135.00 WHERE [Code] = 'nto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'baf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('baf', 'Nubaca', NULL, 512.50) END +VALUES ('baf', 'Nubaca', NULL, 5136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nubaca', [Definition] = NULL, [SortOrder] = 512.50 WHERE [Code] = 'baf' END +SET [Description] = 'Nubaca', [Definition] = NULL, [SortOrder] = 5136.00 WHERE [Code] = 'baf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcn', 'Nubi', NULL, 512.60) END +VALUES ('kcn', 'Nubi', NULL, 5137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nubi', [Definition] = NULL, [SortOrder] = 512.60 WHERE [Code] = 'kcn' END +SET [Description] = 'Nubi', [Definition] = NULL, [SortOrder] = 5137.00 WHERE [Code] = 'kcn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kte', 'Nubri', NULL, 512.70) END +VALUES ('kte', 'Nubri', NULL, 5138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nubri', [Definition] = NULL, [SortOrder] = 512.70 WHERE [Code] = 'kte' END +SET [Description] = 'Nubri', [Definition] = NULL, [SortOrder] = 5138.00 WHERE [Code] = 'kte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nus', 'Nuer', NULL, 512.80) END +VALUES ('nus', 'Nuer', NULL, 5139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nuer', [Definition] = NULL, [SortOrder] = 512.80 WHERE [Code] = 'nus' END +SET [Description] = 'Nuer', [Definition] = NULL, [SortOrder] = 5139.00 WHERE [Code] = 'nus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnv', 'Nugunu (Australia)', NULL, 512.90) END +VALUES ('nnv', 'Nugunu (Australia)', NULL, 5140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nugunu (Australia)', [Definition] = NULL, [SortOrder] = 512.90 WHERE [Code] = 'nnv' END +SET [Description] = 'Nugunu (Australia)', [Definition] = NULL, [SortOrder] = 5140.00 WHERE [Code] = 'nnv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yas', 'Nugunu (Cameroon)', NULL, 513.00) END +VALUES ('yas', 'Nugunu (Cameroon)', NULL, 5141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nugunu (Cameroon)', [Definition] = NULL, [SortOrder] = 513.00 WHERE [Code] = 'yas' END +SET [Description] = 'Nugunu (Cameroon)', [Definition] = NULL, [SortOrder] = 5141.00 WHERE [Code] = 'yas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noc', 'Nuk', NULL, 513.10) END +VALUES ('noc', 'Nuk', NULL, 5142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nuk', [Definition] = NULL, [SortOrder] = 513.10 WHERE [Code] = 'noc' END +SET [Description] = 'Nuk', [Definition] = NULL, [SortOrder] = 5142.00 WHERE [Code] = 'noc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbr', 'Nukak Makú', NULL, 513.20) END +VALUES ('mbr', 'Nukak Makú', NULL, 5143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukak Makú', [Definition] = NULL, [SortOrder] = 513.20 WHERE [Code] = 'mbr' END +SET [Description] = 'Nukak Makú', [Definition] = NULL, [SortOrder] = 5143.00 WHERE [Code] = 'mbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klt', 'Nukna', NULL, 513.30) END +VALUES ('klt', 'Nukna', NULL, 5144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukna', [Definition] = NULL, [SortOrder] = 513.30 WHERE [Code] = 'klt' END +SET [Description] = 'Nukna', [Definition] = NULL, [SortOrder] = 5144.00 WHERE [Code] = 'klt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuc', 'Nukuini', NULL, 513.40) END +VALUES ('nuc', 'Nukuini', NULL, 5145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukuini', [Definition] = NULL, [SortOrder] = 513.40 WHERE [Code] = 'nuc' END +SET [Description] = 'Nukuini', [Definition] = NULL, [SortOrder] = 5145.00 WHERE [Code] = 'nuc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuq', 'Nukumanu', NULL, 513.50) END +VALUES ('nuq', 'Nukumanu', NULL, 5146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukumanu', [Definition] = NULL, [SortOrder] = 513.50 WHERE [Code] = 'nuq' END +SET [Description] = 'Nukumanu', [Definition] = NULL, [SortOrder] = 5146.00 WHERE [Code] = 'nuq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xnu', 'Nukunul', NULL, 513.60) END +VALUES ('xnu', 'Nukunul', NULL, 5147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukunul', [Definition] = NULL, [SortOrder] = 513.60 WHERE [Code] = 'xnu' END +SET [Description] = 'Nukunul', [Definition] = NULL, [SortOrder] = 5147.00 WHERE [Code] = 'xnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkr', 'Nukuoro', NULL, 513.70) END +VALUES ('nkr', 'Nukuoro', NULL, 5148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukuoro', [Definition] = NULL, [SortOrder] = 513.70 WHERE [Code] = 'nkr' END +SET [Description] = 'Nukuoro', [Definition] = NULL, [SortOrder] = 5148.00 WHERE [Code] = 'nkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nur', 'Nukuria', NULL, 513.80) END +VALUES ('nur', 'Nukuria', NULL, 5149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nukuria', [Definition] = NULL, [SortOrder] = 513.80 WHERE [Code] = 'nur' END +SET [Description] = 'Nukuria', [Definition] = NULL, [SortOrder] = 5149.00 WHERE [Code] = 'nur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbr', 'Numana', NULL, 513.90) END +VALUES ('nbr', 'Numana', NULL, 5150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numana', [Definition] = NULL, [SortOrder] = 513.90 WHERE [Code] = 'nbr' END +SET [Description] = 'Numana', [Definition] = NULL, [SortOrder] = 5150.00 WHERE [Code] = 'nbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nop', 'Numanggang', NULL, 514.00) END +VALUES ('nop', 'Numanggang', NULL, 5151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numanggang', [Definition] = NULL, [SortOrder] = 514.00 WHERE [Code] = 'nop' END +SET [Description] = 'Numanggang', [Definition] = NULL, [SortOrder] = 5151.00 WHERE [Code] = 'nop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sij', 'Numbami', NULL, 514.10) END +VALUES ('sij', 'Numbami', NULL, 5152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numbami', [Definition] = NULL, [SortOrder] = 514.10 WHERE [Code] = 'sij' END +SET [Description] = 'Numbami', [Definition] = NULL, [SortOrder] = 5152.00 WHERE [Code] = 'sij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgs', 'Nume', NULL, 514.20) END +VALUES ('tgs', 'Nume', NULL, 5153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nume', [Definition] = NULL, [SortOrder] = 514.20 WHERE [Code] = 'tgs' END +SET [Description] = 'Nume', [Definition] = NULL, [SortOrder] = 5153.00 WHERE [Code] = 'tgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdk', 'Numèè', NULL, 514.30) END +VALUES ('kdk', 'Numèè', NULL, 5154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numèè', [Definition] = NULL, [SortOrder] = 514.30 WHERE [Code] = 'kdk' END +SET [Description] = 'Numèè', [Definition] = NULL, [SortOrder] = 5154.00 WHERE [Code] = 'kdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxm', 'Numidian', NULL, 514.40) END +VALUES ('nxm', 'Numidian', NULL, 5155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Numidian', [Definition] = NULL, [SortOrder] = 514.40 WHERE [Code] = 'nxm' END +SET [Description] = 'Numidian', [Definition] = NULL, [SortOrder] = 5155.00 WHERE [Code] = 'nxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nut', 'Nung (Viet Nam)', NULL, 514.50) END +VALUES ('nut', 'Nung (Viet Nam)', NULL, 5156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nung (Viet Nam)', [Definition] = NULL, [SortOrder] = 514.50 WHERE [Code] = 'nut' END +SET [Description] = 'Nung (Viet Nam)', [Definition] = NULL, [SortOrder] = 5156.00 WHERE [Code] = 'nut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nug', 'Nungali', NULL, 514.60) END +VALUES ('nug', 'Nungali', NULL, 5157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nungali', [Definition] = NULL, [SortOrder] = 514.60 WHERE [Code] = 'nug' END +SET [Description] = 'Nungali', [Definition] = NULL, [SortOrder] = 5157.00 WHERE [Code] = 'nug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuy', 'Nunggubuyu', NULL, 514.70) END +VALUES ('nuy', 'Nunggubuyu', NULL, 5158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nunggubuyu', [Definition] = NULL, [SortOrder] = 514.70 WHERE [Code] = 'nuy' END +SET [Description] = 'Nunggubuyu', [Definition] = NULL, [SortOrder] = 5158.00 WHERE [Code] = 'nuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rin', 'Nungu', NULL, 514.80) END +VALUES ('rin', 'Nungu', NULL, 5159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nungu', [Definition] = NULL, [SortOrder] = 514.80 WHERE [Code] = 'rin' END +SET [Description] = 'Nungu', [Definition] = NULL, [SortOrder] = 5159.00 WHERE [Code] = 'rin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npb', 'Nupbikha', NULL, 514.90) END +VALUES ('npb', 'Nupbikha', NULL, 5160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nupbikha', [Definition] = NULL, [SortOrder] = 514.90 WHERE [Code] = 'npb' END +SET [Description] = 'Nupbikha', [Definition] = NULL, [SortOrder] = 5160.00 WHERE [Code] = 'npb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nup', 'Nupe-Nupe-Tako', NULL, 515.00) END +VALUES ('nup', 'Nupe-Nupe-Tako', NULL, 5161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nupe-Nupe-Tako', [Definition] = NULL, [SortOrder] = 515.00 WHERE [Code] = 'nup' END +SET [Description] = 'Nupe-Nupe-Tako', [Definition] = NULL, [SortOrder] = 5161.00 WHERE [Code] = 'nup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hux', 'Nüpode Huitoto', NULL, 515.10) END +VALUES ('hux', 'Nüpode Huitoto', NULL, 5162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nüpode Huitoto', [Definition] = NULL, [SortOrder] = 515.10 WHERE [Code] = 'hux' END +SET [Description] = 'Nüpode Huitoto', [Definition] = NULL, [SortOrder] = 5162.00 WHERE [Code] = 'hux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nul', 'Nusa Laut', NULL, 515.20) END +VALUES ('nul', 'Nusa Laut', NULL, 5163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nusa Laut', [Definition] = NULL, [SortOrder] = 515.20 WHERE [Code] = 'nul' END +SET [Description] = 'Nusa Laut', [Definition] = NULL, [SortOrder] = 5163.00 WHERE [Code] = 'nul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuf', 'Nusu', NULL, 515.30) END +VALUES ('nuf', 'Nusu', NULL, 5164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nusu', [Definition] = NULL, [SortOrder] = 515.30 WHERE [Code] = 'nuf' END +SET [Description] = 'Nusu', [Definition] = NULL, [SortOrder] = 5164.00 WHERE [Code] = 'nuf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuk', 'Nuu-chah-nulth', NULL, 515.40) END +VALUES ('nuk', 'Nuu-chah-nulth', NULL, 5165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nuu-chah-nulth', [Definition] = NULL, [SortOrder] = 515.40 WHERE [Code] = 'nuk' END +SET [Description] = 'Nuu-chah-nulth', [Definition] = NULL, [SortOrder] = 5165.00 WHERE [Code] = 'nuk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwb', 'Nyabwa', NULL, 515.50) END +VALUES ('nwb', 'Nyabwa', NULL, 5166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyabwa', [Definition] = NULL, [SortOrder] = 515.50 WHERE [Code] = 'nwb' END +SET [Description] = 'Nyabwa', [Definition] = NULL, [SortOrder] = 5166.00 WHERE [Code] = 'nwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nev', 'Nyaheun', NULL, 515.60) END +VALUES ('nev', 'Nyaheun', NULL, 5167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyaheun', [Definition] = NULL, [SortOrder] = 515.60 WHERE [Code] = 'nev' END +SET [Description] = 'Nyaheun', [Definition] = NULL, [SortOrder] = 5167.00 WHERE [Code] = 'nev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbn', 'Nyahkur', NULL, 515.70) END +VALUES ('cbn', 'Nyahkur', NULL, 5168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyahkur', [Definition] = NULL, [SortOrder] = 515.70 WHERE [Code] = 'cbn' END +SET [Description] = 'Nyahkur', [Definition] = NULL, [SortOrder] = 5168.00 WHERE [Code] = 'cbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyy', 'Nyakyusa-Ngonde', NULL, 515.80) END +VALUES ('nyy', 'Nyakyusa-Ngonde', NULL, 5169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyakyusa-Ngonde', [Definition] = NULL, [SortOrder] = 515.80 WHERE [Code] = 'nyy' END +SET [Description] = 'Nyakyusa-Ngonde', [Definition] = NULL, [SortOrder] = 5169.00 WHERE [Code] = 'nyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yly', 'Nyâlayu', NULL, 515.90) END +VALUES ('yly', 'Nyâlayu', NULL, 5170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyâlayu', [Definition] = NULL, [SortOrder] = 515.90 WHERE [Code] = 'yly' END +SET [Description] = 'Nyâlayu', [Definition] = NULL, [SortOrder] = 5170.00 WHERE [Code] = 'yly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlj', 'Nyali', NULL, 516.00) END +VALUES ('nlj', 'Nyali', NULL, 5171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyali', [Definition] = NULL, [SortOrder] = 516.00 WHERE [Code] = 'nlj' END +SET [Description] = 'Nyali', [Definition] = NULL, [SortOrder] = 5171.00 WHERE [Code] = 'nlj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmi', 'Nyam', NULL, 516.10) END +VALUES ('nmi', 'Nyam', NULL, 5172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyam', [Definition] = NULL, [SortOrder] = 516.10 WHERE [Code] = 'nmi' END +SET [Description] = 'Nyam', [Definition] = NULL, [SortOrder] = 5172.00 WHERE [Code] = 'nmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nly', 'Nyamal', NULL, 516.20) END +VALUES ('nly', 'Nyamal', NULL, 5173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyamal', [Definition] = NULL, [SortOrder] = 516.20 WHERE [Code] = 'nly' END +SET [Description] = 'Nyamal', [Definition] = NULL, [SortOrder] = 5173.00 WHERE [Code] = 'nly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'now') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('now', 'Nyambo', NULL, 516.30) END +VALUES ('now', 'Nyambo', NULL, 5174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyambo', [Definition] = NULL, [SortOrder] = 516.30 WHERE [Code] = 'now' END +SET [Description] = 'Nyambo', [Definition] = NULL, [SortOrder] = 5174.00 WHERE [Code] = 'now' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwm', 'Nyamusa-Molo', NULL, 516.40) END +VALUES ('nwm', 'Nyamusa-Molo', NULL, 5175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyamusa-Molo', [Definition] = NULL, [SortOrder] = 516.40 WHERE [Code] = 'nwm' END +SET [Description] = 'Nyamusa-Molo', [Definition] = NULL, [SortOrder] = 5175.00 WHERE [Code] = 'nwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwn', 'Nyamwanga', NULL, 516.50) END +VALUES ('mwn', 'Nyamwanga', NULL, 5176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyamwanga', [Definition] = NULL, [SortOrder] = 516.50 WHERE [Code] = 'mwn' END +SET [Description] = 'Nyamwanga', [Definition] = NULL, [SortOrder] = 5176.00 WHERE [Code] = 'mwn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nym', 'Nyamwezi', NULL, 516.60) END +VALUES ('nym', 'Nyamwezi', NULL, 5177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyamwezi', [Definition] = NULL, [SortOrder] = 516.60 WHERE [Code] = 'nym' END +SET [Description] = 'Nyamwezi', [Definition] = NULL, [SortOrder] = 5177.00 WHERE [Code] = 'nym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyk', 'Nyaneka', NULL, 516.70) END +VALUES ('nyk', 'Nyaneka', NULL, 5178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyaneka', [Definition] = NULL, [SortOrder] = 516.70 WHERE [Code] = 'nyk' END +SET [Description] = 'Nyaneka', [Definition] = NULL, [SortOrder] = 5178.00 WHERE [Code] = 'nyk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyp', 'Nyang''i', NULL, 516.80) END +VALUES ('nyp', 'Nyang''i', NULL, 5179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyang''i', [Definition] = NULL, [SortOrder] = 516.80 WHERE [Code] = 'nyp' END +SET [Description] = 'Nyang''i', [Definition] = NULL, [SortOrder] = 5179.00 WHERE [Code] = 'nyp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyj', 'Nyanga', NULL, 516.90) END +VALUES ('nyj', 'Nyanga', NULL, 5180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyanga', [Definition] = NULL, [SortOrder] = 516.90 WHERE [Code] = 'nyj' END +SET [Description] = 'Nyanga', [Definition] = NULL, [SortOrder] = 5180.00 WHERE [Code] = 'nyj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyc', 'Nyanga-li', NULL, 517.00) END +VALUES ('nyc', 'Nyanga-li', NULL, 5181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyanga-li', [Definition] = NULL, [SortOrder] = 517.00 WHERE [Code] = 'nyc' END +SET [Description] = 'Nyanga-li', [Definition] = NULL, [SortOrder] = 5181.00 WHERE [Code] = 'nyc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnj', 'Nyangatom', NULL, 517.10) END +VALUES ('nnj', 'Nyangatom', NULL, 5182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyangatom', [Definition] = NULL, [SortOrder] = 517.10 WHERE [Code] = 'nnj' END +SET [Description] = 'Nyangatom', [Definition] = NULL, [SortOrder] = 5182.00 WHERE [Code] = 'nnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyb', 'Nyangbo', NULL, 517.20) END +VALUES ('nyb', 'Nyangbo', NULL, 5183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyangbo', [Definition] = NULL, [SortOrder] = 517.20 WHERE [Code] = 'nyb' END +SET [Description] = 'Nyangbo', [Definition] = NULL, [SortOrder] = 5183.00 WHERE [Code] = 'nyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nny', 'Nyangga', NULL, 517.30) END +VALUES ('nny', 'Nyangga', NULL, 5184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyangga', [Definition] = NULL, [SortOrder] = 517.30 WHERE [Code] = 'nny' END +SET [Description] = 'Nyangga', [Definition] = NULL, [SortOrder] = 5184.00 WHERE [Code] = 'nny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nna', 'Nyangumarta', NULL, 517.40) END +VALUES ('nna', 'Nyangumarta', NULL, 5185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyangumarta', [Definition] = NULL, [SortOrder] = 517.40 WHERE [Code] = 'nna' END +SET [Description] = 'Nyangumarta', [Definition] = NULL, [SortOrder] = 5185.00 WHERE [Code] = 'nna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nya', 'Nyanja', NULL, 517.50) END +VALUES ('nya', 'Nyanja', NULL, 5186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyanja', [Definition] = NULL, [SortOrder] = 517.50 WHERE [Code] = 'nya' END +SET [Description] = 'Nyanja', [Definition] = NULL, [SortOrder] = 5186.00 WHERE [Code] = 'nya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyn', 'Nyankole', NULL, 517.60) END +VALUES ('nyn', 'Nyankole', NULL, 5187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyankole', [Definition] = NULL, [SortOrder] = 517.60 WHERE [Code] = 'nyn' END +SET [Description] = 'Nyankole', [Definition] = NULL, [SortOrder] = 5187.00 WHERE [Code] = 'nyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yes', 'Nyankpa', NULL, 517.70) END +VALUES ('yes', 'Nyankpa', NULL, 5188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyankpa', [Definition] = NULL, [SortOrder] = 517.70 WHERE [Code] = 'yes' END +SET [Description] = 'Nyankpa', [Definition] = NULL, [SortOrder] = 5188.00 WHERE [Code] = 'yes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sev', 'Nyarafolo Senoufo', NULL, 517.80) END +VALUES ('sev', 'Nyarafolo Senoufo', NULL, 5189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyarafolo Senoufo', [Definition] = NULL, [SortOrder] = 517.80 WHERE [Code] = 'sev' END +SET [Description] = 'Nyarafolo Senoufo', [Definition] = NULL, [SortOrder] = 5189.00 WHERE [Code] = 'sev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rim', 'Nyaturu', NULL, 517.90) END +VALUES ('rim', 'Nyaturu', NULL, 5190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyaturu', [Definition] = NULL, [SortOrder] = 517.90 WHERE [Code] = 'rim' END +SET [Description] = 'Nyaturu', [Definition] = NULL, [SortOrder] = 5190.00 WHERE [Code] = 'rim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyw', 'Nyaw', NULL, 518.00) END +VALUES ('nyw', 'Nyaw', NULL, 5191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyaw', [Definition] = NULL, [SortOrder] = 518.00 WHERE [Code] = 'nyw' END +SET [Description] = 'Nyaw', [Definition] = NULL, [SortOrder] = 5191.00 WHERE [Code] = 'nyw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyt', 'Nyawaygi', NULL, 518.10) END +VALUES ('nyt', 'Nyawaygi', NULL, 5192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyawaygi', [Definition] = NULL, [SortOrder] = 518.10 WHERE [Code] = 'nyt' END +SET [Description] = 'Nyawaygi', [Definition] = NULL, [SortOrder] = 5192.00 WHERE [Code] = 'nyt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nba', 'Nyemba', NULL, 518.20) END +VALUES ('nba', 'Nyemba', NULL, 5193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyemba', [Definition] = NULL, [SortOrder] = 518.20 WHERE [Code] = 'nba' END +SET [Description] = 'Nyemba', [Definition] = NULL, [SortOrder] = 5193.00 WHERE [Code] = 'nba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nye', 'Nyengo', NULL, 518.30) END +VALUES ('nye', 'Nyengo', NULL, 5194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyengo', [Definition] = NULL, [SortOrder] = 518.30 WHERE [Code] = 'nye' END +SET [Description] = 'Nyengo', [Definition] = NULL, [SortOrder] = 5194.00 WHERE [Code] = 'nye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neh', 'Nyenkha', NULL, 518.40) END +VALUES ('neh', 'Nyenkha', NULL, 5195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyenkha', [Definition] = NULL, [SortOrder] = 518.40 WHERE [Code] = 'neh' END +SET [Description] = 'Nyenkha', [Definition] = NULL, [SortOrder] = 5195.00 WHERE [Code] = 'neh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyl', 'Nyeu', NULL, 518.50) END +VALUES ('nyl', 'Nyeu', NULL, 5196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyeu', [Definition] = NULL, [SortOrder] = 518.50 WHERE [Code] = 'nyl' END +SET [Description] = 'Nyeu', [Definition] = NULL, [SortOrder] = 5196.00 WHERE [Code] = 'nyl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyr', 'Nyiha (Malawi)', NULL, 518.60) END +VALUES ('nyr', 'Nyiha (Malawi)', NULL, 5197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyiha (Malawi)', [Definition] = NULL, [SortOrder] = 518.60 WHERE [Code] = 'nyr' END +SET [Description] = 'Nyiha (Malawi)', [Definition] = NULL, [SortOrder] = 5197.00 WHERE [Code] = 'nyr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nih', 'Nyiha (Tanzania)', NULL, 518.70) END +VALUES ('nih', 'Nyiha (Tanzania)', NULL, 5198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyiha (Tanzania)', [Definition] = NULL, [SortOrder] = 518.70 WHERE [Code] = 'nih' END +SET [Description] = 'Nyiha (Tanzania)', [Definition] = NULL, [SortOrder] = 5198.00 WHERE [Code] = 'nih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkv', 'Nyika (Malawi and Zambia)', NULL, 518.80) END +VALUES ('nkv', 'Nyika (Malawi and Zambia)', NULL, 5199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyika (Malawi and Zambia)', [Definition] = NULL, [SortOrder] = 518.80 WHERE [Code] = 'nkv' END +SET [Description] = 'Nyika (Malawi and Zambia)', [Definition] = NULL, [SortOrder] = 5199.00 WHERE [Code] = 'nkv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nkt', 'Nyika (Tanzania)', NULL, 518.90) END +VALUES ('nkt', 'Nyika (Tanzania)', NULL, 5200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyika (Tanzania)', [Definition] = NULL, [SortOrder] = 518.90 WHERE [Code] = 'nkt' END +SET [Description] = 'Nyika (Tanzania)', [Definition] = NULL, [SortOrder] = 5200.00 WHERE [Code] = 'nkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyh', 'Nyikina', NULL, 519.00) END +VALUES ('nyh', 'Nyikina', NULL, 5201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyikina', [Definition] = NULL, [SortOrder] = 519.00 WHERE [Code] = 'nyh' END +SET [Description] = 'Nyikina', [Definition] = NULL, [SortOrder] = 5201.00 WHERE [Code] = 'nyh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lid', 'Nyindrou', NULL, 519.10) END +VALUES ('lid', 'Nyindrou', NULL, 5202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyindrou', [Definition] = NULL, [SortOrder] = 519.10 WHERE [Code] = 'lid' END +SET [Description] = 'Nyindrou', [Definition] = NULL, [SortOrder] = 5202.00 WHERE [Code] = 'lid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyg', 'Nyindu', NULL, 519.20) END +VALUES ('nyg', 'Nyindu', NULL, 5203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyindu', [Definition] = NULL, [SortOrder] = 519.20 WHERE [Code] = 'nyg' END +SET [Description] = 'Nyindu', [Definition] = NULL, [SortOrder] = 5203.00 WHERE [Code] = 'nyg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'njz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('njz', 'Nyishi', NULL, 519.30) END +VALUES ('njz', 'Nyishi', NULL, 5204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyishi', [Definition] = NULL, [SortOrder] = 519.30 WHERE [Code] = 'njz' END +SET [Description] = 'Nyishi', [Definition] = NULL, [SortOrder] = 5204.00 WHERE [Code] = 'njz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xny', 'Nyiyaparli', NULL, 519.40) END +VALUES ('xny', 'Nyiyaparli', NULL, 5205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyiyaparli', [Definition] = NULL, [SortOrder] = 519.40 WHERE [Code] = 'xny' END +SET [Description] = 'Nyiyaparli', [Definition] = NULL, [SortOrder] = 5205.00 WHERE [Code] = 'xny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nvo', 'Nyokon', NULL, 519.50) END +VALUES ('nvo', 'Nyokon', NULL, 5206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyokon', [Definition] = NULL, [SortOrder] = 519.50 WHERE [Code] = 'nvo' END +SET [Description] = 'Nyokon', [Definition] = NULL, [SortOrder] = 5206.00 WHERE [Code] = 'nvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuj', 'Nyole', NULL, 519.60) END +VALUES ('nuj', 'Nyole', NULL, 5207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyole', [Definition] = NULL, [SortOrder] = 519.60 WHERE [Code] = 'nuj' END +SET [Description] = 'Nyole', [Definition] = NULL, [SortOrder] = 5207.00 WHERE [Code] = 'nuj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muo', 'Nyong', NULL, 519.70) END +VALUES ('muo', 'Nyong', NULL, 5208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyong', [Definition] = NULL, [SortOrder] = 519.70 WHERE [Code] = 'muo' END +SET [Description] = 'Nyong', [Definition] = NULL, [SortOrder] = 5208.00 WHERE [Code] = 'muo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyd', 'Nyore', NULL, 519.80) END +VALUES ('nyd', 'Nyore', NULL, 5209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyore', [Definition] = NULL, [SortOrder] = 519.80 WHERE [Code] = 'nyd' END +SET [Description] = 'Nyore', [Definition] = NULL, [SortOrder] = 5209.00 WHERE [Code] = 'nyd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyo', 'Nyoro', NULL, 519.90) END +VALUES ('nyo', 'Nyoro', NULL, 5210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyoro', [Definition] = NULL, [SortOrder] = 519.90 WHERE [Code] = 'nyo' END +SET [Description] = 'Nyoro', [Definition] = NULL, [SortOrder] = 5210.00 WHERE [Code] = 'nyo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyv', 'Nyulnyul', NULL, 520.00) END +VALUES ('nyv', 'Nyulnyul', NULL, 5211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyulnyul', [Definition] = NULL, [SortOrder] = 520.00 WHERE [Code] = 'nyv' END +SET [Description] = 'Nyulnyul', [Definition] = NULL, [SortOrder] = 5211.00 WHERE [Code] = 'nyv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nys', 'Nyungar', NULL, 520.10) END +VALUES ('nys', 'Nyungar', NULL, 5212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyungar', [Definition] = NULL, [SortOrder] = 520.10 WHERE [Code] = 'nys' END +SET [Description] = 'Nyungar', [Definition] = NULL, [SortOrder] = 5212.00 WHERE [Code] = 'nys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nyu', 'Nyungwe', NULL, 520.20) END +VALUES ('nyu', 'Nyungwe', NULL, 5213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nyungwe', [Definition] = NULL, [SortOrder] = 520.20 WHERE [Code] = 'nyu' END +SET [Description] = 'Nyungwe', [Definition] = NULL, [SortOrder] = 5213.00 WHERE [Code] = 'nyu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzd', 'Nzadi', NULL, 520.30) END +VALUES ('nzd', 'Nzadi', NULL, 5214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzadi', [Definition] = NULL, [SortOrder] = 520.30 WHERE [Code] = 'nzd' END +SET [Description] = 'Nzadi', [Definition] = NULL, [SortOrder] = 5214.00 WHERE [Code] = 'nzd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzy', 'Nzakambay', NULL, 520.40) END +VALUES ('nzy', 'Nzakambay', NULL, 5215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzakambay', [Definition] = NULL, [SortOrder] = 520.40 WHERE [Code] = 'nzy' END +SET [Description] = 'Nzakambay', [Definition] = NULL, [SortOrder] = 5215.00 WHERE [Code] = 'nzy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzk', 'Nzakara', NULL, 520.50) END +VALUES ('nzk', 'Nzakara', NULL, 5216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzakara', [Definition] = NULL, [SortOrder] = 520.50 WHERE [Code] = 'nzk' END +SET [Description] = 'Nzakara', [Definition] = NULL, [SortOrder] = 5216.00 WHERE [Code] = 'nzk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nja', 'Nzanyi', NULL, 520.60) END +VALUES ('nja', 'Nzanyi', NULL, 5217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzanyi', [Definition] = NULL, [SortOrder] = 520.60 WHERE [Code] = 'nja' END +SET [Description] = 'Nzanyi', [Definition] = NULL, [SortOrder] = 5217.00 WHERE [Code] = 'nja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzi', 'Nzima', NULL, 520.70) END +VALUES ('nzi', 'Nzima', NULL, 5218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Nzima', [Definition] = NULL, [SortOrder] = 520.70 WHERE [Code] = 'nzi' END +SET [Description] = 'Nzima', [Definition] = NULL, [SortOrder] = 5218.00 WHERE [Code] = 'nzi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xoc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xoc', 'O''chi''chi''', NULL, 520.80) END +VALUES ('xoc', 'O''chi''chi''', NULL, 5219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'O''chi''chi''', [Definition] = NULL, [SortOrder] = 520.80 WHERE [Code] = 'xoc' END +SET [Description] = 'O''chi''chi''', [Definition] = NULL, [SortOrder] = 5219.00 WHERE [Code] = 'xoc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyh', 'O''du', NULL, 520.90) END +VALUES ('tyh', 'O''du', NULL, 5220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'O''du', [Definition] = NULL, [SortOrder] = 520.90 WHERE [Code] = 'tyh' END +SET [Description] = 'O''du', [Definition] = NULL, [SortOrder] = 5220.00 WHERE [Code] = 'tyh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzy', 'Obanliku', NULL, 521.00) END +VALUES ('bzy', 'Obanliku', NULL, 5221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obanliku', [Definition] = NULL, [SortOrder] = 521.00 WHERE [Code] = 'bzy' END +SET [Description] = 'Obanliku', [Definition] = NULL, [SortOrder] = 5221.00 WHERE [Code] = 'bzy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obi', 'Obispeño', NULL, 521.10) END +VALUES ('obi', 'Obispeño', NULL, 5222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obispeño', [Definition] = NULL, [SortOrder] = 521.10 WHERE [Code] = 'obi' END +SET [Description] = 'Obispeño', [Definition] = NULL, [SortOrder] = 5222.00 WHERE [Code] = 'obi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obl', 'Oblo', NULL, 521.20) END +VALUES ('obl', 'Oblo', NULL, 5223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oblo', [Definition] = NULL, [SortOrder] = 521.20 WHERE [Code] = 'obl' END +SET [Description] = 'Oblo', [Definition] = NULL, [SortOrder] = 5223.00 WHERE [Code] = 'obl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obo', 'Obo Manobo', NULL, 521.30) END +VALUES ('obo', 'Obo Manobo', NULL, 5224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obo Manobo', [Definition] = NULL, [SortOrder] = 521.30 WHERE [Code] = 'obo' END +SET [Description] = 'Obo Manobo', [Definition] = NULL, [SortOrder] = 5224.00 WHERE [Code] = 'obo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afz', 'Obokuitai', NULL, 521.40) END +VALUES ('afz', 'Obokuitai', NULL, 5225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obokuitai', [Definition] = NULL, [SortOrder] = 521.40 WHERE [Code] = 'afz' END +SET [Description] = 'Obokuitai', [Definition] = NULL, [SortOrder] = 5225.00 WHERE [Code] = 'afz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ann') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ann', 'Obolo', NULL, 521.50) END +VALUES ('ann', 'Obolo', NULL, 5226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obolo', [Definition] = NULL, [SortOrder] = 521.50 WHERE [Code] = 'ann' END +SET [Description] = 'Obolo', [Definition] = NULL, [SortOrder] = 5226.00 WHERE [Code] = 'ann' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obu', 'Obulom', NULL, 521.60) END +VALUES ('obu', 'Obulom', NULL, 5227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Obulom', [Definition] = NULL, [SortOrder] = 521.60 WHERE [Code] = 'obu' END +SET [Description] = 'Obulom', [Definition] = NULL, [SortOrder] = 5227.00 WHERE [Code] = 'obu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oca', 'Ocaina', NULL, 521.70) END +VALUES ('oca', 'Ocaina', NULL, 5228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ocaina', [Definition] = NULL, [SortOrder] = 521.70 WHERE [Code] = 'oca' END +SET [Description] = 'Ocaina', [Definition] = NULL, [SortOrder] = 5228.00 WHERE [Code] = 'oca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oci', 'Occitan (post 1500)', NULL, 521.80) END +VALUES ('oci', 'Occitan (post 1500)', NULL, 5229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Occitan (post 1500)', [Definition] = NULL, [SortOrder] = 521.80 WHERE [Code] = 'oci' END +SET [Description] = 'Occitan (post 1500)', [Definition] = NULL, [SortOrder] = 5229.00 WHERE [Code] = 'oci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mie', 'Ocotepec Mixtec', NULL, 521.90) END +VALUES ('mie', 'Ocotepec Mixtec', NULL, 5230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ocotepec Mixtec', [Definition] = NULL, [SortOrder] = 521.90 WHERE [Code] = 'mie' END +SET [Description] = 'Ocotepec Mixtec', [Definition] = NULL, [SortOrder] = 5230.00 WHERE [Code] = 'mie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zac', 'Ocotlán Zapotec', NULL, 522.00) END +VALUES ('zac', 'Ocotlán Zapotec', NULL, 5231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ocotlán Zapotec', [Definition] = NULL, [SortOrder] = 522.00 WHERE [Code] = 'zac' END +SET [Description] = 'Ocotlán Zapotec', [Definition] = NULL, [SortOrder] = 5231.00 WHERE [Code] = 'zac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'odk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('odk', 'Od', NULL, 522.10) END +VALUES ('odk', 'Od', NULL, 5232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Od', [Definition] = NULL, [SortOrder] = 522.10 WHERE [Code] = 'odk' END +SET [Description] = 'Od', [Definition] = NULL, [SortOrder] = 5232.00 WHERE [Code] = 'odk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ory') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ory', 'Odia', NULL, 522.20) END +VALUES ('ory', 'Odia', NULL, 5233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odia', [Definition] = NULL, [SortOrder] = 522.20 WHERE [Code] = 'ory' END +SET [Description] = 'Odia', [Definition] = NULL, [SortOrder] = 5233.00 WHERE [Code] = 'ory' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhf', 'Odiai', NULL, 522.30) END +VALUES ('bhf', 'Odiai', NULL, 5234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odiai', [Definition] = NULL, [SortOrder] = 522.30 WHERE [Code] = 'bhf' END +SET [Description] = 'Odiai', [Definition] = NULL, [SortOrder] = 5234.00 WHERE [Code] = 'bhf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkc', 'Odoodee', NULL, 522.40) END +VALUES ('kkc', 'Odoodee', NULL, 5235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odoodee', [Definition] = NULL, [SortOrder] = 522.40 WHERE [Code] = 'kkc' END +SET [Description] = 'Odoodee', [Definition] = NULL, [SortOrder] = 5235.00 WHERE [Code] = 'kkc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'odu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('odu', 'Odual', NULL, 522.50) END +VALUES ('odu', 'Odual', NULL, 5236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odual', [Definition] = NULL, [SortOrder] = 522.50 WHERE [Code] = 'odu' END +SET [Description] = 'Odual', [Definition] = NULL, [SortOrder] = 5236.00 WHERE [Code] = 'odu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oda', 'Odut', NULL, 522.60) END +VALUES ('oda', 'Odut', NULL, 5237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Odut', [Definition] = NULL, [SortOrder] = 522.60 WHERE [Code] = 'oda' END +SET [Description] = 'Odut', [Definition] = NULL, [SortOrder] = 5237.00 WHERE [Code] = 'oda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opy', 'Ofayé', NULL, 522.70) END +VALUES ('opy', 'Ofayé', NULL, 5238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ofayé', [Definition] = NULL, [SortOrder] = 522.70 WHERE [Code] = 'opy' END +SET [Description] = 'Ofayé', [Definition] = NULL, [SortOrder] = 5238.00 WHERE [Code] = 'opy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arc', 'Official Aramaic (700-300 BCE)', NULL, 522.80) END +VALUES ('arc', 'Official Aramaic (700-300 BCE)', NULL, 5239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Official Aramaic (700-300 BCE)', [Definition] = NULL, [SortOrder] = 522.80 WHERE [Code] = 'arc' END +SET [Description] = 'Official Aramaic (700-300 BCE)', [Definition] = NULL, [SortOrder] = 5239.00 WHERE [Code] = 'arc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ofo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ofo', 'Ofo', NULL, 522.90) END +VALUES ('ofo', 'Ofo', NULL, 5240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ofo', [Definition] = NULL, [SortOrder] = 522.90 WHERE [Code] = 'ofo' END +SET [Description] = 'Ofo', [Definition] = NULL, [SortOrder] = 5240.00 WHERE [Code] = 'ofo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogc', 'Ogbah', NULL, 523.00) END +VALUES ('ogc', 'Ogbah', NULL, 5241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogbah', [Definition] = NULL, [SortOrder] = 523.00 WHERE [Code] = 'ogc' END +SET [Description] = 'Ogbah', [Definition] = NULL, [SortOrder] = 5241.00 WHERE [Code] = 'ogc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogb', 'Ogbia', NULL, 523.10) END +VALUES ('ogb', 'Ogbia', NULL, 5242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogbia', [Definition] = NULL, [SortOrder] = 523.10 WHERE [Code] = 'ogb' END +SET [Description] = 'Ogbia', [Definition] = NULL, [SortOrder] = 5242.00 WHERE [Code] = 'ogb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogg', 'Ogbogolo', NULL, 523.20) END +VALUES ('ogg', 'Ogbogolo', NULL, 5243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogbogolo', [Definition] = NULL, [SortOrder] = 523.20 WHERE [Code] = 'ogg' END +SET [Description] = 'Ogbogolo', [Definition] = NULL, [SortOrder] = 5243.00 WHERE [Code] = 'ogg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ogu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ogu', 'Ogbronuagum', NULL, 523.30) END +VALUES ('ogu', 'Ogbronuagum', NULL, 5244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogbronuagum', [Definition] = NULL, [SortOrder] = 523.30 WHERE [Code] = 'ogu' END +SET [Description] = 'Ogbronuagum', [Definition] = NULL, [SortOrder] = 5244.00 WHERE [Code] = 'ogu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eri', 'Ogea', NULL, 523.40) END +VALUES ('eri', 'Ogea', NULL, 5245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ogea', [Definition] = NULL, [SortOrder] = 523.40 WHERE [Code] = 'eri' END +SET [Description] = 'Ogea', [Definition] = NULL, [SortOrder] = 5245.00 WHERE [Code] = 'eri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oia', 'Oirata', NULL, 523.50) END +VALUES ('oia', 'Oirata', NULL, 5246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oirata', [Definition] = NULL, [SortOrder] = 523.50 WHERE [Code] = 'oia' END +SET [Description] = 'Oirata', [Definition] = NULL, [SortOrder] = 5246.00 WHERE [Code] = 'oia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oji', 'Ojibwa', NULL, 523.60) END +VALUES ('oji', 'Ojibwa', NULL, 5247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ojibwa', [Definition] = NULL, [SortOrder] = 523.60 WHERE [Code] = 'oji' END +SET [Description] = 'Ojibwa', [Definition] = NULL, [SortOrder] = 5247.00 WHERE [Code] = 'oji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chj', 'Ojitlán Chinantec', NULL, 523.70) END +VALUES ('chj', 'Ojitlán Chinantec', NULL, 5248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ojitlán Chinantec', [Definition] = NULL, [SortOrder] = 523.70 WHERE [Code] = 'chj' END +SET [Description] = 'Ojitlán Chinantec', [Definition] = NULL, [SortOrder] = 5248.00 WHERE [Code] = 'chj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oka', 'Okanagan', NULL, 523.80) END +VALUES ('oka', 'Okanagan', NULL, 5249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okanagan', [Definition] = NULL, [SortOrder] = 523.80 WHERE [Code] = 'oka' END +SET [Description] = 'Okanagan', [Definition] = NULL, [SortOrder] = 5249.00 WHERE [Code] = 'oka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okn', 'Oki-No-Erabu', NULL, 523.90) END +VALUES ('okn', 'Oki-No-Erabu', NULL, 5250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oki-No-Erabu', [Definition] = NULL, [SortOrder] = 523.90 WHERE [Code] = 'okn' END +SET [Description] = 'Oki-No-Erabu', [Definition] = NULL, [SortOrder] = 5250.00 WHERE [Code] = 'okn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oki', 'Okiek', NULL, 524.00) END +VALUES ('oki', 'Okiek', NULL, 5251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okiek', [Definition] = NULL, [SortOrder] = 524.00 WHERE [Code] = 'oki' END +SET [Description] = 'Okiek', [Definition] = NULL, [SortOrder] = 5251.00 WHERE [Code] = 'oki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oks', 'Oko-Eni-Osayen', NULL, 524.10) END +VALUES ('oks', 'Oko-Eni-Osayen', NULL, 5252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oko-Eni-Osayen', [Definition] = NULL, [SortOrder] = 524.10 WHERE [Code] = 'oks' END +SET [Description] = 'Oko-Eni-Osayen', [Definition] = NULL, [SortOrder] = 5252.00 WHERE [Code] = 'oks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okj', 'Oko-Juwoi', NULL, 524.20) END +VALUES ('okj', 'Oko-Juwoi', NULL, 5253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oko-Juwoi', [Definition] = NULL, [SortOrder] = 524.20 WHERE [Code] = 'okj' END +SET [Description] = 'Oko-Juwoi', [Definition] = NULL, [SortOrder] = 5253.00 WHERE [Code] = 'okj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okb', 'Okobo', NULL, 524.30) END +VALUES ('okb', 'Okobo', NULL, 5254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okobo', [Definition] = NULL, [SortOrder] = 524.30 WHERE [Code] = 'okb' END +SET [Description] = 'Okobo', [Definition] = NULL, [SortOrder] = 5254.00 WHERE [Code] = 'okb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okd', 'Okodia', NULL, 524.40) END +VALUES ('okd', 'Okodia', NULL, 5255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okodia', [Definition] = NULL, [SortOrder] = 524.40 WHERE [Code] = 'okd' END +SET [Description] = 'Okodia', [Definition] = NULL, [SortOrder] = 5255.00 WHERE [Code] = 'okd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oie', 'Okolie', NULL, 524.50) END +VALUES ('oie', 'Okolie', NULL, 5256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okolie', [Definition] = NULL, [SortOrder] = 524.50 WHERE [Code] = 'oie' END +SET [Description] = 'Okolie', [Definition] = NULL, [SortOrder] = 5256.00 WHERE [Code] = 'oie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqv', 'Okolod', NULL, 524.60) END +VALUES ('kqv', 'Okolod', NULL, 5257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okolod', [Definition] = NULL, [SortOrder] = 524.60 WHERE [Code] = 'kqv' END +SET [Description] = 'Okolod', [Definition] = NULL, [SortOrder] = 5257.00 WHERE [Code] = 'kqv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opa', 'Okpamheri', NULL, 524.70) END +VALUES ('opa', 'Okpamheri', NULL, 5258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okpamheri', [Definition] = NULL, [SortOrder] = 524.70 WHERE [Code] = 'opa' END +SET [Description] = 'Okpamheri', [Definition] = NULL, [SortOrder] = 5258.00 WHERE [Code] = 'opa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okx', 'Okpe (Northwestern Edo)', NULL, 524.80) END +VALUES ('okx', 'Okpe (Northwestern Edo)', NULL, 5259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okpe (Northwestern Edo)', [Definition] = NULL, [SortOrder] = 524.80 WHERE [Code] = 'okx' END +SET [Description] = 'Okpe (Northwestern Edo)', [Definition] = NULL, [SortOrder] = 5259.00 WHERE [Code] = 'okx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oke', 'Okpe (Southwestern Edo)', NULL, 524.90) END +VALUES ('oke', 'Okpe (Southwestern Edo)', NULL, 5260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Okpe (Southwestern Edo)', [Definition] = NULL, [SortOrder] = 524.90 WHERE [Code] = 'oke' END +SET [Description] = 'Okpe (Southwestern Edo)', [Definition] = NULL, [SortOrder] = 5260.00 WHERE [Code] = 'oke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opm', 'Oksapmin', NULL, 525.00) END +VALUES ('opm', 'Oksapmin', NULL, 5261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oksapmin', [Definition] = NULL, [SortOrder] = 525.00 WHERE [Code] = 'opm' END +SET [Description] = 'Oksapmin', [Definition] = NULL, [SortOrder] = 5261.00 WHERE [Code] = 'opm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oku', 'Oku', NULL, 525.10) END +VALUES ('oku', 'Oku', NULL, 5262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oku', [Definition] = NULL, [SortOrder] = 525.10 WHERE [Code] = 'oku' END +SET [Description] = 'Oku', [Definition] = NULL, [SortOrder] = 5262.00 WHERE [Code] = 'oku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oar', 'Old Aramaic (up to 700 BCE)', NULL, 525.20) END +VALUES ('oar', 'Old Aramaic (up to 700 BCE)', NULL, 5263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Aramaic (up to 700 BCE)', [Definition] = NULL, [SortOrder] = 525.20 WHERE [Code] = 'oar' END +SET [Description] = 'Old Aramaic (up to 700 BCE)', [Definition] = NULL, [SortOrder] = 5263.00 WHERE [Code] = 'oar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oav', 'Old Avar', NULL, 525.30) END +VALUES ('oav', 'Old Avar', NULL, 5264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Avar', [Definition] = NULL, [SortOrder] = 525.30 WHERE [Code] = 'oav' END +SET [Description] = 'Old Avar', [Definition] = NULL, [SortOrder] = 5264.00 WHERE [Code] = 'oav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obt', 'Old Breton', NULL, 525.40) END +VALUES ('obt', 'Old Breton', NULL, 5265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Breton', [Definition] = NULL, [SortOrder] = 525.40 WHERE [Code] = 'obt' END +SET [Description] = 'Old Breton', [Definition] = NULL, [SortOrder] = 5265.00 WHERE [Code] = 'obt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obr', 'Old Burmese', NULL, 525.50) END +VALUES ('obr', 'Old Burmese', NULL, 5266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Burmese', [Definition] = NULL, [SortOrder] = 525.50 WHERE [Code] = 'obr' END +SET [Description] = 'Old Burmese', [Definition] = NULL, [SortOrder] = 5266.00 WHERE [Code] = 'obr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ocm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ocm', 'Old Cham', NULL, 525.60) END +VALUES ('ocm', 'Old Cham', NULL, 5267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Cham', [Definition] = NULL, [SortOrder] = 525.60 WHERE [Code] = 'ocm' END +SET [Description] = 'Old Cham', [Definition] = NULL, [SortOrder] = 5267.00 WHERE [Code] = 'ocm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'och') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('och', 'Old Chinese', NULL, 525.70) END +VALUES ('och', 'Old Chinese', NULL, 5268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Chinese', [Definition] = NULL, [SortOrder] = 525.70 WHERE [Code] = 'och' END +SET [Description] = 'Old Chinese', [Definition] = NULL, [SortOrder] = 5268.00 WHERE [Code] = 'och' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oco', 'Old Cornish', NULL, 525.80) END +VALUES ('oco', 'Old Cornish', NULL, 5269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Cornish', [Definition] = NULL, [SortOrder] = 525.80 WHERE [Code] = 'oco' END +SET [Description] = 'Old Cornish', [Definition] = NULL, [SortOrder] = 5269.00 WHERE [Code] = 'oco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'odt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('odt', 'Old Dutch', NULL, 525.90) END +VALUES ('odt', 'Old Dutch', NULL, 5270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Dutch', [Definition] = NULL, [SortOrder] = 525.90 WHERE [Code] = 'odt' END +SET [Description] = 'Old Dutch', [Definition] = NULL, [SortOrder] = 5270.00 WHERE [Code] = 'odt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ang') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ang', 'Old English (ca. 450-1100)', NULL, 526.00) END +VALUES ('ang', 'Old English (ca. 450-1100)', NULL, 5271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old English (ca. 450-1100)', [Definition] = NULL, [SortOrder] = 526.00 WHERE [Code] = 'ang' END +SET [Description] = 'Old English (ca. 450-1100)', [Definition] = NULL, [SortOrder] = 5271.00 WHERE [Code] = 'ang' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fro', 'Old French (842-ca. 1400)', NULL, 526.10) END +VALUES ('fro', 'Old French (842-ca. 1400)', NULL, 5272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old French (842-ca. 1400)', [Definition] = NULL, [SortOrder] = 526.10 WHERE [Code] = 'fro' END +SET [Description] = 'Old French (842-ca. 1400)', [Definition] = NULL, [SortOrder] = 5272.00 WHERE [Code] = 'fro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ofs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ofs', 'Old Frisian', NULL, 526.20) END +VALUES ('ofs', 'Old Frisian', NULL, 5273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Frisian', [Definition] = NULL, [SortOrder] = 526.20 WHERE [Code] = 'ofs' END +SET [Description] = 'Old Frisian', [Definition] = NULL, [SortOrder] = 5273.00 WHERE [Code] = 'ofs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oge', 'Old Georgian', NULL, 526.30) END +VALUES ('oge', 'Old Georgian', NULL, 5274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Georgian', [Definition] = NULL, [SortOrder] = 526.30 WHERE [Code] = 'oge' END +SET [Description] = 'Old Georgian', [Definition] = NULL, [SortOrder] = 5274.00 WHERE [Code] = 'oge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'goh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('goh', 'Old High German (ca. 750-1050)', NULL, 526.40) END +VALUES ('goh', 'Old High German (ca. 750-1050)', NULL, 5275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old High German (ca. 750-1050)', [Definition] = NULL, [SortOrder] = 526.40 WHERE [Code] = 'goh' END +SET [Description] = 'Old High German (ca. 750-1050)', [Definition] = NULL, [SortOrder] = 5275.00 WHERE [Code] = 'goh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oht', 'Old Hittite', NULL, 526.50) END +VALUES ('oht', 'Old Hittite', NULL, 5276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Hittite', [Definition] = NULL, [SortOrder] = 526.50 WHERE [Code] = 'oht' END +SET [Description] = 'Old Hittite', [Definition] = NULL, [SortOrder] = 5276.00 WHERE [Code] = 'oht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ohu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ohu', 'Old Hungarian', NULL, 526.60) END +VALUES ('ohu', 'Old Hungarian', NULL, 5277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Hungarian', [Definition] = NULL, [SortOrder] = 526.60 WHERE [Code] = 'ohu' END +SET [Description] = 'Old Hungarian', [Definition] = NULL, [SortOrder] = 5277.00 WHERE [Code] = 'ohu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sga', 'Old Irish (to 900)', NULL, 526.70) END +VALUES ('sga', 'Old Irish (to 900)', NULL, 5278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Irish (to 900)', [Definition] = NULL, [SortOrder] = 526.70 WHERE [Code] = 'sga' END +SET [Description] = 'Old Irish (to 900)', [Definition] = NULL, [SortOrder] = 5278.00 WHERE [Code] = 'sga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojp', 'Old Japanese', NULL, 526.80) END +VALUES ('ojp', 'Old Japanese', NULL, 5279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Japanese', [Definition] = NULL, [SortOrder] = 526.80 WHERE [Code] = 'ojp' END +SET [Description] = 'Old Japanese', [Definition] = NULL, [SortOrder] = 5279.00 WHERE [Code] = 'ojp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okl', 'Old Kentish Sign Language', NULL, 526.90) END +VALUES ('okl', 'Old Kentish Sign Language', NULL, 5280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Kentish Sign Language', [Definition] = NULL, [SortOrder] = 526.90 WHERE [Code] = 'okl' END +SET [Description] = 'Old Kentish Sign Language', [Definition] = NULL, [SortOrder] = 5280.00 WHERE [Code] = 'okl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okz', 'Old Khmer', NULL, 527.00) END +VALUES ('okz', 'Old Khmer', NULL, 5281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Khmer', [Definition] = NULL, [SortOrder] = 527.00 WHERE [Code] = 'okz' END +SET [Description] = 'Old Khmer', [Definition] = NULL, [SortOrder] = 5281.00 WHERE [Code] = 'okz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oko', 'Old Korean (3rd-9th cent.)', NULL, 527.10) END +VALUES ('oko', 'Old Korean (3rd-9th cent.)', NULL, 5282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Korean (3rd-9th cent.)', [Definition] = NULL, [SortOrder] = 527.10 WHERE [Code] = 'oko' END +SET [Description] = 'Old Korean (3rd-9th cent.)', [Definition] = NULL, [SortOrder] = 5282.00 WHERE [Code] = 'oko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olt', 'Old Lithuanian', NULL, 527.20) END +VALUES ('olt', 'Old Lithuanian', NULL, 5283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Lithuanian', [Definition] = NULL, [SortOrder] = 527.20 WHERE [Code] = 'olt' END +SET [Description] = 'Old Lithuanian', [Definition] = NULL, [SortOrder] = 5283.00 WHERE [Code] = 'olt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omy', 'Old Malay', NULL, 527.30) END +VALUES ('omy', 'Old Malay', NULL, 5284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Malay', [Definition] = NULL, [SortOrder] = 527.30 WHERE [Code] = 'omy' END +SET [Description] = 'Old Malay', [Definition] = NULL, [SortOrder] = 5284.00 WHERE [Code] = 'omy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omp', 'Old Manipuri', NULL, 527.40) END +VALUES ('omp', 'Old Manipuri', NULL, 5285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Manipuri', [Definition] = NULL, [SortOrder] = 527.40 WHERE [Code] = 'omp' END +SET [Description] = 'Old Manipuri', [Definition] = NULL, [SortOrder] = 5285.00 WHERE [Code] = 'omp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omr', 'Old Marathi', NULL, 527.50) END +VALUES ('omr', 'Old Marathi', NULL, 5286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Marathi', [Definition] = NULL, [SortOrder] = 527.50 WHERE [Code] = 'omr' END +SET [Description] = 'Old Marathi', [Definition] = NULL, [SortOrder] = 5286.00 WHERE [Code] = 'omr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omx', 'Old Mon', NULL, 527.60) END +VALUES ('omx', 'Old Mon', NULL, 5287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Mon', [Definition] = NULL, [SortOrder] = 527.60 WHERE [Code] = 'omx' END +SET [Description] = 'Old Mon', [Definition] = NULL, [SortOrder] = 5287.00 WHERE [Code] = 'omx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'non') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('non', 'Old Norse', NULL, 527.70) END +VALUES ('non', 'Old Norse', NULL, 5288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Norse', [Definition] = NULL, [SortOrder] = 527.70 WHERE [Code] = 'non' END +SET [Description] = 'Old Norse', [Definition] = NULL, [SortOrder] = 5288.00 WHERE [Code] = 'non' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onw', 'Old Nubian', NULL, 527.80) END +VALUES ('onw', 'Old Nubian', NULL, 5289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Nubian', [Definition] = NULL, [SortOrder] = 527.80 WHERE [Code] = 'onw' END +SET [Description] = 'Old Nubian', [Definition] = NULL, [SortOrder] = 5289.00 WHERE [Code] = 'onw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oos', 'Old Ossetic', NULL, 527.90) END +VALUES ('oos', 'Old Ossetic', NULL, 5290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Ossetic', [Definition] = NULL, [SortOrder] = 527.90 WHERE [Code] = 'oos' END +SET [Description] = 'Old Ossetic', [Definition] = NULL, [SortOrder] = 5290.00 WHERE [Code] = 'oos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peo', 'Old Persian (ca. 600-400 B.C.)', NULL, 528.00) END +VALUES ('peo', 'Old Persian (ca. 600-400 B.C.)', NULL, 5291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Persian (ca. 600-400 B.C.)', [Definition] = NULL, [SortOrder] = 528.00 WHERE [Code] = 'peo' END +SET [Description] = 'Old Persian (ca. 600-400 B.C.)', [Definition] = NULL, [SortOrder] = 5291.00 WHERE [Code] = 'peo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pro', 'Old Provençal (to 1500)', NULL, 528.10) END +VALUES ('pro', 'Old Provençal (to 1500)', NULL, 5292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Provençal (to 1500)', [Definition] = NULL, [SortOrder] = 528.10 WHERE [Code] = 'pro' END +SET [Description] = 'Old Provençal (to 1500)', [Definition] = NULL, [SortOrder] = 5292.00 WHERE [Code] = 'pro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orv', 'Old Russian', NULL, 528.20) END +VALUES ('orv', 'Old Russian', NULL, 5293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Russian', [Definition] = NULL, [SortOrder] = 528.20 WHERE [Code] = 'orv' END +SET [Description] = 'Old Russian', [Definition] = NULL, [SortOrder] = 5293.00 WHERE [Code] = 'orv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osx', 'Old Saxon', NULL, 528.30) END +VALUES ('osx', 'Old Saxon', NULL, 5294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Saxon', [Definition] = NULL, [SortOrder] = 528.30 WHERE [Code] = 'osx' END +SET [Description] = 'Old Saxon', [Definition] = NULL, [SortOrder] = 5294.00 WHERE [Code] = 'osx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osp', 'Old Spanish', NULL, 528.40) END +VALUES ('osp', 'Old Spanish', NULL, 5295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Spanish', [Definition] = NULL, [SortOrder] = 528.40 WHERE [Code] = 'osp' END +SET [Description] = 'Old Spanish', [Definition] = NULL, [SortOrder] = 5295.00 WHERE [Code] = 'osp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osn', 'Old Sundanese', NULL, 528.50) END +VALUES ('osn', 'Old Sundanese', NULL, 5296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Sundanese', [Definition] = NULL, [SortOrder] = 528.50 WHERE [Code] = 'osn' END +SET [Description] = 'Old Sundanese', [Definition] = NULL, [SortOrder] = 5296.00 WHERE [Code] = 'osn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oty', 'Old Tamil', NULL, 528.60) END +VALUES ('oty', 'Old Tamil', NULL, 5297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Tamil', [Definition] = NULL, [SortOrder] = 528.60 WHERE [Code] = 'oty' END +SET [Description] = 'Old Tamil', [Definition] = NULL, [SortOrder] = 5297.00 WHERE [Code] = 'oty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otb', 'Old Tibetan', NULL, 528.70) END +VALUES ('otb', 'Old Tibetan', NULL, 5298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Tibetan', [Definition] = NULL, [SortOrder] = 528.70 WHERE [Code] = 'otb' END +SET [Description] = 'Old Tibetan', [Definition] = NULL, [SortOrder] = 5298.00 WHERE [Code] = 'otb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otk', 'Old Turkish', NULL, 528.80) END +VALUES ('otk', 'Old Turkish', NULL, 5299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Turkish', [Definition] = NULL, [SortOrder] = 528.80 WHERE [Code] = 'otk' END +SET [Description] = 'Old Turkish', [Definition] = NULL, [SortOrder] = 5299.00 WHERE [Code] = 'otk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oui', 'Old Uighur', NULL, 528.90) END +VALUES ('oui', 'Old Uighur', NULL, 5300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Uighur', [Definition] = NULL, [SortOrder] = 528.90 WHERE [Code] = 'oui' END +SET [Description] = 'Old Uighur', [Definition] = NULL, [SortOrder] = 5300.00 WHERE [Code] = 'oui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'owl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('owl', 'Old Welsh', NULL, 529.00) END +VALUES ('owl', 'Old Welsh', NULL, 5301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Old Welsh', [Definition] = NULL, [SortOrder] = 529.00 WHERE [Code] = 'owl' END +SET [Description] = 'Old Welsh', [Definition] = NULL, [SortOrder] = 5301.00 WHERE [Code] = 'owl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ole') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ole', 'Olekha', NULL, 529.10) END +VALUES ('ole', 'Olekha', NULL, 5302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olekha', [Definition] = NULL, [SortOrder] = 529.10 WHERE [Code] = 'ole' END +SET [Description] = 'Olekha', [Definition] = NULL, [SortOrder] = 5302.00 WHERE [Code] = 'ole' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olk', 'Olkol', NULL, 529.20) END +VALUES ('olk', 'Olkol', NULL, 5303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olkol', [Definition] = NULL, [SortOrder] = 529.20 WHERE [Code] = 'olk' END +SET [Description] = 'Olkol', [Definition] = NULL, [SortOrder] = 5303.00 WHERE [Code] = 'olk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ong') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ong', 'Olo', NULL, 529.30) END +VALUES ('ong', 'Olo', NULL, 5304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olo', [Definition] = NULL, [SortOrder] = 529.30 WHERE [Code] = 'ong' END +SET [Description] = 'Olo', [Definition] = NULL, [SortOrder] = 5304.00 WHERE [Code] = 'ong' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olm', 'Oloma', NULL, 529.40) END +VALUES ('olm', 'Oloma', NULL, 5305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oloma', [Definition] = NULL, [SortOrder] = 529.40 WHERE [Code] = 'olm' END +SET [Description] = 'Oloma', [Definition] = NULL, [SortOrder] = 5305.00 WHERE [Code] = 'olm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'olr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('olr', 'Olrat', NULL, 529.50) END +VALUES ('olr', 'Olrat', NULL, 5306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olrat', [Definition] = NULL, [SortOrder] = 529.50 WHERE [Code] = 'olr' END +SET [Description] = 'Olrat', [Definition] = NULL, [SortOrder] = 5306.00 WHERE [Code] = 'olr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lul', 'Olu''bo', NULL, 529.60) END +VALUES ('lul', 'Olu''bo', NULL, 5307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olu''bo', [Definition] = NULL, [SortOrder] = 529.60 WHERE [Code] = 'lul' END +SET [Description] = 'Olu''bo', [Definition] = NULL, [SortOrder] = 5307.00 WHERE [Code] = 'lul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iko', 'Olulumo-Ikom', NULL, 529.70) END +VALUES ('iko', 'Olulumo-Ikom', NULL, 5308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Olulumo-Ikom', [Definition] = NULL, [SortOrder] = 529.70 WHERE [Code] = 'iko' END +SET [Description] = 'Olulumo-Ikom', [Definition] = NULL, [SortOrder] = 5308.00 WHERE [Code] = 'iko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plo', 'Oluta Popoluca', NULL, 529.80) END +VALUES ('plo', 'Oluta Popoluca', NULL, 5309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oluta Popoluca', [Definition] = NULL, [SortOrder] = 529.80 WHERE [Code] = 'plo' END +SET [Description] = 'Oluta Popoluca', [Definition] = NULL, [SortOrder] = 5309.00 WHERE [Code] = 'plo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omg', 'Omagua', NULL, 529.90) END +VALUES ('omg', 'Omagua', NULL, 5310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omagua', [Definition] = NULL, [SortOrder] = 529.90 WHERE [Code] = 'omg' END +SET [Description] = 'Omagua', [Definition] = NULL, [SortOrder] = 5310.00 WHERE [Code] = 'omg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oma', 'Omaha-Ponca', NULL, 530.00) END +VALUES ('oma', 'Omaha-Ponca', NULL, 5311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omaha-Ponca', [Definition] = NULL, [SortOrder] = 530.00 WHERE [Code] = 'oma' END +SET [Description] = 'Omaha-Ponca', [Definition] = NULL, [SortOrder] = 5311.00 WHERE [Code] = 'oma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acx', 'Omani Arabic', NULL, 530.10) END +VALUES ('acx', 'Omani Arabic', NULL, 5312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omani Arabic', [Definition] = NULL, [SortOrder] = 530.10 WHERE [Code] = 'acx' END +SET [Description] = 'Omani Arabic', [Definition] = NULL, [SortOrder] = 5312.00 WHERE [Code] = 'acx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbm', 'Ombamba', NULL, 530.20) END +VALUES ('mbm', 'Ombamba', NULL, 5313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ombamba', [Definition] = NULL, [SortOrder] = 530.20 WHERE [Code] = 'mbm' END +SET [Description] = 'Ombamba', [Definition] = NULL, [SortOrder] = 5313.00 WHERE [Code] = 'mbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oml', 'Ombo', NULL, 530.30) END +VALUES ('oml', 'Ombo', NULL, 5314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ombo', [Definition] = NULL, [SortOrder] = 530.30 WHERE [Code] = 'oml' END +SET [Description] = 'Ombo', [Definition] = NULL, [SortOrder] = 5314.00 WHERE [Code] = 'oml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nht', 'Ometepec Nahuatl', NULL, 530.40) END +VALUES ('nht', 'Ometepec Nahuatl', NULL, 5315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ometepec Nahuatl', [Definition] = NULL, [SortOrder] = 530.40 WHERE [Code] = 'nht' END +SET [Description] = 'Ometepec Nahuatl', [Definition] = NULL, [SortOrder] = 5315.00 WHERE [Code] = 'nht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omi', 'Omi', NULL, 530.50) END +VALUES ('omi', 'Omi', NULL, 5316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omi', [Definition] = NULL, [SortOrder] = 530.50 WHERE [Code] = 'omi' END +SET [Description] = 'Omi', [Definition] = NULL, [SortOrder] = 5316.00 WHERE [Code] = 'omi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aom', 'Ömie', NULL, 530.60) END +VALUES ('aom', 'Ömie', NULL, 5317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ömie', [Definition] = NULL, [SortOrder] = 530.60 WHERE [Code] = 'aom' END +SET [Description] = 'Ömie', [Definition] = NULL, [SortOrder] = 5317.00 WHERE [Code] = 'aom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omk', 'Omok', NULL, 530.70) END +VALUES ('omk', 'Omok', NULL, 5318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omok', [Definition] = NULL, [SortOrder] = 530.70 WHERE [Code] = 'omk' END +SET [Description] = 'Omok', [Definition] = NULL, [SortOrder] = 5318.00 WHERE [Code] = 'omk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omt', 'Omotik', NULL, 530.80) END +VALUES ('omt', 'Omotik', NULL, 5319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omotik', [Definition] = NULL, [SortOrder] = 530.80 WHERE [Code] = 'omt' END +SET [Description] = 'Omotik', [Definition] = NULL, [SortOrder] = 5319.00 WHERE [Code] = 'omt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omu', 'Omurano', NULL, 530.90) END +VALUES ('omu', 'Omurano', NULL, 5320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Omurano', [Definition] = NULL, [SortOrder] = 530.90 WHERE [Code] = 'omu' END +SET [Description] = 'Omurano', [Definition] = NULL, [SortOrder] = 5320.00 WHERE [Code] = 'omu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ona') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ona', 'Ona', NULL, 531.00) END +VALUES ('ona', 'Ona', NULL, 5321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ona', [Definition] = NULL, [SortOrder] = 531.00 WHERE [Code] = 'ona' END +SET [Description] = 'Ona', [Definition] = NULL, [SortOrder] = 5321.00 WHERE [Code] = 'ona' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'one') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('one', 'Oneida', NULL, 531.10) END +VALUES ('one', 'Oneida', NULL, 5322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oneida', [Definition] = NULL, [SortOrder] = 531.10 WHERE [Code] = 'one' END +SET [Description] = 'Oneida', [Definition] = NULL, [SortOrder] = 5322.00 WHERE [Code] = 'one' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oog', 'Ong', NULL, 531.20) END +VALUES ('oog', 'Ong', NULL, 5323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ong', [Definition] = NULL, [SortOrder] = 531.20 WHERE [Code] = 'oog' END +SET [Description] = 'Ong', [Definition] = NULL, [SortOrder] = 5323.00 WHERE [Code] = 'oog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oon', 'Önge', NULL, 531.30) END +VALUES ('oon', 'Önge', NULL, 5324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Önge', [Definition] = NULL, [SortOrder] = 531.30 WHERE [Code] = 'oon' END +SET [Description] = 'Önge', [Definition] = NULL, [SortOrder] = 5324.00 WHERE [Code] = 'oon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oni', 'Onin', NULL, 531.40) END +VALUES ('oni', 'Onin', NULL, 5325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onin', [Definition] = NULL, [SortOrder] = 531.40 WHERE [Code] = 'oni' END +SET [Description] = 'Onin', [Definition] = NULL, [SortOrder] = 5325.00 WHERE [Code] = 'oni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onx', 'Onin Based Pidgin', NULL, 531.50) END +VALUES ('onx', 'Onin Based Pidgin', NULL, 5326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onin Based Pidgin', [Definition] = NULL, [SortOrder] = 531.50 WHERE [Code] = 'onx' END +SET [Description] = 'Onin Based Pidgin', [Definition] = NULL, [SortOrder] = 5326.00 WHERE [Code] = 'onx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onj', 'Onjob', NULL, 531.60) END +VALUES ('onj', 'Onjob', NULL, 5327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onjob', [Definition] = NULL, [SortOrder] = 531.60 WHERE [Code] = 'onj' END +SET [Description] = 'Onjob', [Definition] = NULL, [SortOrder] = 5327.00 WHERE [Code] = 'onj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ons') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ons', 'Ono', NULL, 531.70) END +VALUES ('ons', 'Ono', NULL, 5328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ono', [Definition] = NULL, [SortOrder] = 531.70 WHERE [Code] = 'ons' END +SET [Description] = 'Ono', [Definition] = NULL, [SortOrder] = 5328.00 WHERE [Code] = 'ons' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onn', 'Onobasulu', NULL, 531.80) END +VALUES ('onn', 'Onobasulu', NULL, 5329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onobasulu', [Definition] = NULL, [SortOrder] = 531.80 WHERE [Code] = 'onn' END +SET [Description] = 'Onobasulu', [Definition] = NULL, [SortOrder] = 5329.00 WHERE [Code] = 'onn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ono') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ono', 'Onondaga', NULL, 531.90) END +VALUES ('ono', 'Onondaga', NULL, 5330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Onondaga', [Definition] = NULL, [SortOrder] = 531.90 WHERE [Code] = 'ono' END +SET [Description] = 'Onondaga', [Definition] = NULL, [SortOrder] = 5330.00 WHERE [Code] = 'ono' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ont') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ont', 'Ontenu', NULL, 532.00) END +VALUES ('ont', 'Ontenu', NULL, 5331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ontenu', [Definition] = NULL, [SortOrder] = 532.00 WHERE [Code] = 'ont' END +SET [Description] = 'Ontenu', [Definition] = NULL, [SortOrder] = 5331.00 WHERE [Code] = 'ont' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojv', 'Ontong Java', NULL, 532.10) END +VALUES ('ojv', 'Ontong Java', NULL, 5332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ontong Java', [Definition] = NULL, [SortOrder] = 532.10 WHERE [Code] = 'ojv' END +SET [Description] = 'Ontong Java', [Definition] = NULL, [SortOrder] = 5332.00 WHERE [Code] = 'ojv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oor', 'Oorlams', NULL, 532.20) END +VALUES ('oor', 'Oorlams', NULL, 5333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oorlams', [Definition] = NULL, [SortOrder] = 532.20 WHERE [Code] = 'oor' END +SET [Description] = 'Oorlams', [Definition] = NULL, [SortOrder] = 5333.00 WHERE [Code] = 'oor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opo', 'Opao', NULL, 532.30) END +VALUES ('opo', 'Opao', NULL, 5334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Opao', [Definition] = NULL, [SortOrder] = 532.30 WHERE [Code] = 'opo' END +SET [Description] = 'Opao', [Definition] = NULL, [SortOrder] = 5334.00 WHERE [Code] = 'opo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'opt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('opt', 'Opata', NULL, 532.40) END +VALUES ('opt', 'Opata', NULL, 5335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Opata', [Definition] = NULL, [SortOrder] = 532.40 WHERE [Code] = 'opt' END +SET [Description] = 'Opata', [Definition] = NULL, [SortOrder] = 5335.00 WHERE [Code] = 'opt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orn', 'Orang Kanaq', NULL, 532.50) END +VALUES ('orn', 'Orang Kanaq', NULL, 5336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orang Kanaq', [Definition] = NULL, [SortOrder] = 532.50 WHERE [Code] = 'orn' END +SET [Description] = 'Orang Kanaq', [Definition] = NULL, [SortOrder] = 5336.00 WHERE [Code] = 'orn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ors') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ors', 'Orang Seletar', NULL, 532.60) END +VALUES ('ors', 'Orang Seletar', NULL, 5337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orang Seletar', [Definition] = NULL, [SortOrder] = 532.60 WHERE [Code] = 'ors' END +SET [Description] = 'Orang Seletar', [Definition] = NULL, [SortOrder] = 5337.00 WHERE [Code] = 'ors' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdr', 'Oraon Sadri', NULL, 532.70) END +VALUES ('sdr', 'Oraon Sadri', NULL, 5338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oraon Sadri', [Definition] = NULL, [SortOrder] = 532.70 WHERE [Code] = 'sdr' END +SET [Description] = 'Oraon Sadri', [Definition] = NULL, [SortOrder] = 5338.00 WHERE [Code] = 'sdr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ore') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ore', 'Orejón', NULL, 532.80) END +VALUES ('ore', 'Orejón', NULL, 5339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orejón', [Definition] = NULL, [SortOrder] = 532.80 WHERE [Code] = 'ore' END +SET [Description] = 'Orejón', [Definition] = NULL, [SortOrder] = 5339.00 WHERE [Code] = 'ore' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'org') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('org', 'Oring', NULL, 532.90) END +VALUES ('org', 'Oring', NULL, 5340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oring', [Definition] = NULL, [SortOrder] = 532.90 WHERE [Code] = 'org' END +SET [Description] = 'Oring', [Definition] = NULL, [SortOrder] = 5340.00 WHERE [Code] = 'org' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ori') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ori', 'Oriya (macrolanguage)', NULL, 533.00) END +VALUES ('ori', 'Oriya (macrolanguage)', NULL, 5341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oriya (macrolanguage)', [Definition] = NULL, [SortOrder] = 533.00 WHERE [Code] = 'ori' END +SET [Description] = 'Oriya (macrolanguage)', [Definition] = NULL, [SortOrder] = 5341.00 WHERE [Code] = 'ori' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlv', 'Orizaba Nahuatl', NULL, 533.10) END +VALUES ('nlv', 'Orizaba Nahuatl', NULL, 5342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orizaba Nahuatl', [Definition] = NULL, [SortOrder] = 533.10 WHERE [Code] = 'nlv' END +SET [Description] = 'Orizaba Nahuatl', [Definition] = NULL, [SortOrder] = 5342.00 WHERE [Code] = 'nlv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orc', 'Orma', NULL, 533.20) END +VALUES ('orc', 'Orma', NULL, 5343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orma', [Definition] = NULL, [SortOrder] = 533.20 WHERE [Code] = 'orc' END +SET [Description] = 'Orma', [Definition] = NULL, [SortOrder] = 5343.00 WHERE [Code] = 'orc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orz', 'Ormu', NULL, 533.30) END +VALUES ('orz', 'Ormu', NULL, 5344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ormu', [Definition] = NULL, [SortOrder] = 533.30 WHERE [Code] = 'orz' END +SET [Description] = 'Ormu', [Definition] = NULL, [SortOrder] = 5344.00 WHERE [Code] = 'orz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oru', 'Ormuri', NULL, 533.40) END +VALUES ('oru', 'Ormuri', NULL, 5345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ormuri', [Definition] = NULL, [SortOrder] = 533.40 WHERE [Code] = 'oru' END +SET [Description] = 'Ormuri', [Definition] = NULL, [SortOrder] = 5345.00 WHERE [Code] = 'oru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orx', 'Oro', NULL, 533.50) END +VALUES ('orx', 'Oro', NULL, 5346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oro', [Definition] = NULL, [SortOrder] = 533.50 WHERE [Code] = 'orx' END +SET [Description] = 'Oro', [Definition] = NULL, [SortOrder] = 5346.00 WHERE [Code] = 'orx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orw', 'Oro Win', NULL, 533.60) END +VALUES ('orw', 'Oro Win', NULL, 5347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oro Win', [Definition] = NULL, [SortOrder] = 533.60 WHERE [Code] = 'orw' END +SET [Description] = 'Oro Win', [Definition] = NULL, [SortOrder] = 5347.00 WHERE [Code] = 'orw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oac', 'Oroch', NULL, 533.70) END +VALUES ('oac', 'Oroch', NULL, 5348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oroch', [Definition] = NULL, [SortOrder] = 533.70 WHERE [Code] = 'oac' END +SET [Description] = 'Oroch', [Definition] = NULL, [SortOrder] = 5348.00 WHERE [Code] = 'oac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ora') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ora', 'Oroha', NULL, 533.80) END +VALUES ('ora', 'Oroha', NULL, 5349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oroha', [Definition] = NULL, [SortOrder] = 533.80 WHERE [Code] = 'ora' END +SET [Description] = 'Oroha', [Definition] = NULL, [SortOrder] = 5349.00 WHERE [Code] = 'ora' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oaa', 'Orok', NULL, 533.90) END +VALUES ('oaa', 'Orok', NULL, 5350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orok', [Definition] = NULL, [SortOrder] = 533.90 WHERE [Code] = 'oaa' END +SET [Description] = 'Orok', [Definition] = NULL, [SortOrder] = 5350.00 WHERE [Code] = 'oaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'okv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('okv', 'Orokaiva', NULL, 534.00) END +VALUES ('okv', 'Orokaiva', NULL, 5351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orokaiva', [Definition] = NULL, [SortOrder] = 534.00 WHERE [Code] = 'okv' END +SET [Description] = 'Orokaiva', [Definition] = NULL, [SortOrder] = 5351.00 WHERE [Code] = 'okv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdu', 'Oroko', NULL, 534.10) END +VALUES ('bdu', 'Oroko', NULL, 5352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oroko', [Definition] = NULL, [SortOrder] = 534.10 WHERE [Code] = 'bdu' END +SET [Description] = 'Oroko', [Definition] = NULL, [SortOrder] = 5352.00 WHERE [Code] = 'bdu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oro', 'Orokolo', NULL, 534.20) END +VALUES ('oro', 'Orokolo', NULL, 5353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orokolo', [Definition] = NULL, [SortOrder] = 534.20 WHERE [Code] = 'oro' END +SET [Description] = 'Orokolo', [Definition] = NULL, [SortOrder] = 5353.00 WHERE [Code] = 'oro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orm', 'Oromo', NULL, 534.30) END +VALUES ('orm', 'Oromo', NULL, 5354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oromo', [Definition] = NULL, [SortOrder] = 534.30 WHERE [Code] = 'orm' END +SET [Description] = 'Oromo', [Definition] = NULL, [SortOrder] = 5354.00 WHERE [Code] = 'orm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orh', 'Oroqen', NULL, 534.40) END +VALUES ('orh', 'Oroqen', NULL, 5355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oroqen', [Definition] = NULL, [SortOrder] = 534.40 WHERE [Code] = 'orh' END +SET [Description] = 'Oroqen', [Definition] = NULL, [SortOrder] = 5355.00 WHERE [Code] = 'orh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpk', 'Orowe', NULL, 534.50) END +VALUES ('bpk', 'Orowe', NULL, 5356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orowe', [Definition] = NULL, [SortOrder] = 534.50 WHERE [Code] = 'bpk' END +SET [Description] = 'Orowe', [Definition] = NULL, [SortOrder] = 5356.00 WHERE [Code] = 'bpk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'orr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('orr', 'Oruma', NULL, 534.60) END +VALUES ('orr', 'Oruma', NULL, 5357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oruma', [Definition] = NULL, [SortOrder] = 534.60 WHERE [Code] = 'orr' END +SET [Description] = 'Oruma', [Definition] = NULL, [SortOrder] = 5357.00 WHERE [Code] = 'orr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ury') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ury', 'Orya', NULL, 534.70) END +VALUES ('ury', 'Orya', NULL, 5358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Orya', [Definition] = NULL, [SortOrder] = 534.70 WHERE [Code] = 'ury' END +SET [Description] = 'Orya', [Definition] = NULL, [SortOrder] = 5358.00 WHERE [Code] = 'ury' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osa', 'Osage', NULL, 534.80) END +VALUES ('osa', 'Osage', NULL, 5359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Osage', [Definition] = NULL, [SortOrder] = 534.80 WHERE [Code] = 'osa' END +SET [Description] = 'Osage', [Definition] = NULL, [SortOrder] = 5359.00 WHERE [Code] = 'osa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ost') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ost', 'Osatu', NULL, 534.90) END +VALUES ('ost', 'Osatu', NULL, 5360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Osatu', [Definition] = NULL, [SortOrder] = 534.90 WHERE [Code] = 'ost' END +SET [Description] = 'Osatu', [Definition] = NULL, [SortOrder] = 5360.00 WHERE [Code] = 'ost' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osc', 'Oscan', NULL, 535.00) END +VALUES ('osc', 'Oscan', NULL, 5361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oscan', [Definition] = NULL, [SortOrder] = 535.00 WHERE [Code] = 'osc' END +SET [Description] = 'Oscan', [Definition] = NULL, [SortOrder] = 5361.00 WHERE [Code] = 'osc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osi', 'Osing', NULL, 535.10) END +VALUES ('osi', 'Osing', NULL, 5362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Osing', [Definition] = NULL, [SortOrder] = 535.10 WHERE [Code] = 'osi' END +SET [Description] = 'Osing', [Definition] = NULL, [SortOrder] = 5362.00 WHERE [Code] = 'osi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oso', 'Ososo', NULL, 535.20) END +VALUES ('oso', 'Ososo', NULL, 5363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ososo', [Definition] = NULL, [SortOrder] = 535.20 WHERE [Code] = 'oso' END +SET [Description] = 'Ososo', [Definition] = NULL, [SortOrder] = 5363.00 WHERE [Code] = 'oso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oss', 'Ossetian', NULL, 535.30) END +VALUES ('oss', 'Ossetian', NULL, 5364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ossetian', [Definition] = NULL, [SortOrder] = 535.30 WHERE [Code] = 'oss' END +SET [Description] = 'Ossetian', [Definition] = NULL, [SortOrder] = 5364.00 WHERE [Code] = 'oss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otd', 'Ot Danum', NULL, 535.40) END +VALUES ('otd', 'Ot Danum', NULL, 5365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ot Danum', [Definition] = NULL, [SortOrder] = 535.40 WHERE [Code] = 'otd' END +SET [Description] = 'Ot Danum', [Definition] = NULL, [SortOrder] = 5365.00 WHERE [Code] = 'otd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uta', 'Otank', NULL, 535.50) END +VALUES ('uta', 'Otank', NULL, 5366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Otank', [Definition] = NULL, [SortOrder] = 535.50 WHERE [Code] = 'uta' END +SET [Description] = 'Otank', [Definition] = NULL, [SortOrder] = 5366.00 WHERE [Code] = 'uta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oti', 'Oti', NULL, 535.60) END +VALUES ('oti', 'Oti', NULL, 5367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oti', [Definition] = NULL, [SortOrder] = 535.60 WHERE [Code] = 'oti' END +SET [Description] = 'Oti', [Definition] = NULL, [SortOrder] = 5367.00 WHERE [Code] = 'oti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otr', 'Otoro', NULL, 535.70) END +VALUES ('otr', 'Otoro', NULL, 5368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Otoro', [Definition] = NULL, [SortOrder] = 535.70 WHERE [Code] = 'otr' END +SET [Description] = 'Otoro', [Definition] = NULL, [SortOrder] = 5368.00 WHERE [Code] = 'otr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otw', 'Ottawa', NULL, 535.80) END +VALUES ('otw', 'Ottawa', NULL, 5369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ottawa', [Definition] = NULL, [SortOrder] = 535.80 WHERE [Code] = 'otw' END +SET [Description] = 'Ottawa', [Definition] = NULL, [SortOrder] = 5369.00 WHERE [Code] = 'otw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ota') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ota', 'Ottoman Turkish (1500-1928)', NULL, 535.90) END +VALUES ('ota', 'Ottoman Turkish (1500-1928)', NULL, 5370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ottoman Turkish (1500-1928)', [Definition] = NULL, [SortOrder] = 535.90 WHERE [Code] = 'ota' END +SET [Description] = 'Ottoman Turkish (1500-1928)', [Definition] = NULL, [SortOrder] = 5370.00 WHERE [Code] = 'ota' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lot', 'Otuho', NULL, 536.00) END +VALUES ('lot', 'Otuho', NULL, 5371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Otuho', [Definition] = NULL, [SortOrder] = 536.00 WHERE [Code] = 'lot' END +SET [Description] = 'Otuho', [Definition] = NULL, [SortOrder] = 5371.00 WHERE [Code] = 'lot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otu', 'Otuke', NULL, 536.10) END +VALUES ('otu', 'Otuke', NULL, 5372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Otuke', [Definition] = NULL, [SortOrder] = 536.10 WHERE [Code] = 'otu' END +SET [Description] = 'Otuke', [Definition] = NULL, [SortOrder] = 5372.00 WHERE [Code] = 'otu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oum', 'Ouma', NULL, 536.20) END +VALUES ('oum', 'Ouma', NULL, 5373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ouma', [Definition] = NULL, [SortOrder] = 536.20 WHERE [Code] = 'oum' END +SET [Description] = 'Ouma', [Definition] = NULL, [SortOrder] = 5373.00 WHERE [Code] = 'oum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oue', 'Oune', NULL, 536.30) END +VALUES ('oue', 'Oune', NULL, 5374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oune', [Definition] = NULL, [SortOrder] = 536.30 WHERE [Code] = 'oue' END +SET [Description] = 'Oune', [Definition] = NULL, [SortOrder] = 5374.00 WHERE [Code] = 'oue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stn', 'Owa', NULL, 536.40) END +VALUES ('stn', 'Owa', NULL, 5375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Owa', [Definition] = NULL, [SortOrder] = 536.40 WHERE [Code] = 'stn' END +SET [Description] = 'Owa', [Definition] = NULL, [SortOrder] = 5375.00 WHERE [Code] = 'stn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsr', 'Owenia', NULL, 536.50) END +VALUES ('wsr', 'Owenia', NULL, 5376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Owenia', [Definition] = NULL, [SortOrder] = 536.50 WHERE [Code] = 'wsr' END +SET [Description] = 'Owenia', [Definition] = NULL, [SortOrder] = 5376.00 WHERE [Code] = 'wsr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'owi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('owi', 'Owiniga', NULL, 536.60) END +VALUES ('owi', 'Owiniga', NULL, 5377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Owiniga', [Definition] = NULL, [SortOrder] = 536.60 WHERE [Code] = 'owi' END +SET [Description] = 'Owiniga', [Definition] = NULL, [SortOrder] = 5377.00 WHERE [Code] = 'owi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oyb', 'Oy', NULL, 536.70) END +VALUES ('oyb', 'Oy', NULL, 5378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oy', [Definition] = NULL, [SortOrder] = 536.70 WHERE [Code] = 'oyb' END +SET [Description] = 'Oy', [Definition] = NULL, [SortOrder] = 5378.00 WHERE [Code] = 'oyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oyy', 'Oya''oya', NULL, 536.80) END +VALUES ('oyy', 'Oya''oya', NULL, 5379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oya''oya', [Definition] = NULL, [SortOrder] = 536.80 WHERE [Code] = 'oyy' END +SET [Description] = 'Oya''oya', [Definition] = NULL, [SortOrder] = 5379.00 WHERE [Code] = 'oyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oyd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oyd', 'Oyda', NULL, 536.90) END +VALUES ('oyd', 'Oyda', NULL, 5380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oyda', [Definition] = NULL, [SortOrder] = 536.90 WHERE [Code] = 'oyd' END +SET [Description] = 'Oyda', [Definition] = NULL, [SortOrder] = 5380.00 WHERE [Code] = 'oyd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpd', 'Oyster Bay Tasmanian', NULL, 537.00) END +VALUES ('xpd', 'Oyster Bay Tasmanian', NULL, 5381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Oyster Bay Tasmanian', [Definition] = NULL, [SortOrder] = 537.00 WHERE [Code] = 'xpd' END +SET [Description] = 'Oyster Bay Tasmanian', [Definition] = NULL, [SortOrder] = 5381.00 WHERE [Code] = 'xpd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zao', 'Ozolotepec Zapotec', NULL, 537.10) END +VALUES ('zao', 'Ozolotepec Zapotec', NULL, 5382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ozolotepec Zapotec', [Definition] = NULL, [SortOrder] = 537.10 WHERE [Code] = 'zao' END +SET [Description] = 'Ozolotepec Zapotec', [Definition] = NULL, [SortOrder] = 5382.00 WHERE [Code] = 'zao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chz', 'Ozumacín Chinantec', NULL, 537.20) END +VALUES ('chz', 'Ozumacín Chinantec', NULL, 5383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ozumacín Chinantec', [Definition] = NULL, [SortOrder] = 537.20 WHERE [Code] = 'chz' END +SET [Description] = 'Ozumacín Chinantec', [Definition] = NULL, [SortOrder] = 5383.00 WHERE [Code] = 'chz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdi', 'Pa Di', NULL, 537.30) END +VALUES ('pdi', 'Pa Di', NULL, 5384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pa Di', [Definition] = NULL, [SortOrder] = 537.30 WHERE [Code] = 'pdi' END +SET [Description] = 'Pa Di', [Definition] = NULL, [SortOrder] = 5384.00 WHERE [Code] = 'pdi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pqa', 'Pa''a', NULL, 537.40) END +VALUES ('pqa', 'Pa''a', NULL, 5385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pa''a', [Definition] = NULL, [SortOrder] = 537.40 WHERE [Code] = 'pqa' END +SET [Description] = 'Pa''a', [Definition] = NULL, [SortOrder] = 5385.00 WHERE [Code] = 'pqa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blk', 'Pa''o Karen', NULL, 537.50) END +VALUES ('blk', 'Pa''o Karen', NULL, 5386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pa''o Karen', [Definition] = NULL, [SortOrder] = 537.50 WHERE [Code] = 'blk' END +SET [Description] = 'Pa''o Karen', [Definition] = NULL, [SortOrder] = 5386.00 WHERE [Code] = 'blk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pha', 'Pa-Hng', NULL, 537.60) END +VALUES ('pha', 'Pa-Hng', NULL, 5387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pa-Hng', [Definition] = NULL, [SortOrder] = 537.60 WHERE [Code] = 'pha' END +SET [Description] = 'Pa-Hng', [Definition] = NULL, [SortOrder] = 5387.00 WHERE [Code] = 'pha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pfa', 'Pááfang', NULL, 537.70) END +VALUES ('pfa', 'Pááfang', NULL, 5388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pááfang', [Definition] = NULL, [SortOrder] = 537.70 WHERE [Code] = 'pfa' END +SET [Description] = 'Pááfang', [Definition] = NULL, [SortOrder] = 5388.00 WHERE [Code] = 'pfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drl', 'Paakantyi', NULL, 537.80) END +VALUES ('drl', 'Paakantyi', NULL, 5389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paakantyi', [Definition] = NULL, [SortOrder] = 537.80 WHERE [Code] = 'drl' END +SET [Description] = 'Paakantyi', [Definition] = NULL, [SortOrder] = 5389.00 WHERE [Code] = 'drl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pma', 'Paama', NULL, 537.90) END +VALUES ('pma', 'Paama', NULL, 5390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paama', [Definition] = NULL, [SortOrder] = 537.90 WHERE [Code] = 'pma' END +SET [Description] = 'Paama', [Definition] = NULL, [SortOrder] = 5390.00 WHERE [Code] = 'pma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sig', 'Paasaal', NULL, 538.00) END +VALUES ('sig', 'Paasaal', NULL, 5391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paasaal', [Definition] = NULL, [SortOrder] = 538.00 WHERE [Code] = 'sig' END +SET [Description] = 'Paasaal', [Definition] = NULL, [SortOrder] = 5391.00 WHERE [Code] = 'sig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcp', 'Pacahuara', NULL, 538.10) END +VALUES ('pcp', 'Pacahuara', NULL, 5392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pacahuara', [Definition] = NULL, [SortOrder] = 538.10 WHERE [Code] = 'pcp' END +SET [Description] = 'Pacahuara', [Definition] = NULL, [SortOrder] = 5392.00 WHERE [Code] = 'pcp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvp', 'Pacaraos Quechua', NULL, 538.20) END +VALUES ('qvp', 'Pacaraos Quechua', NULL, 5393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pacaraos Quechua', [Definition] = NULL, [SortOrder] = 538.20 WHERE [Code] = 'qvp' END +SET [Description] = 'Pacaraos Quechua', [Definition] = NULL, [SortOrder] = 5393.00 WHERE [Code] = 'qvp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ems') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ems', 'Pacific Gulf Yupik', NULL, 538.30) END +VALUES ('ems', 'Pacific Gulf Yupik', NULL, 5394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pacific Gulf Yupik', [Definition] = NULL, [SortOrder] = 538.30 WHERE [Code] = 'ems' END +SET [Description] = 'Pacific Gulf Yupik', [Definition] = NULL, [SortOrder] = 5394.00 WHERE [Code] = 'ems' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pac', 'Pacoh', NULL, 538.40) END +VALUES ('pac', 'Pacoh', NULL, 5395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pacoh', [Definition] = NULL, [SortOrder] = 538.40 WHERE [Code] = 'pac' END +SET [Description] = 'Pacoh', [Definition] = NULL, [SortOrder] = 5395.00 WHERE [Code] = 'pac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdo', 'Padoe', NULL, 538.50) END +VALUES ('pdo', 'Padoe', NULL, 5396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Padoe', [Definition] = NULL, [SortOrder] = 538.50 WHERE [Code] = 'pdo' END +SET [Description] = 'Padoe', [Definition] = NULL, [SortOrder] = 5396.00 WHERE [Code] = 'pdo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkc', 'Paekche', NULL, 538.60) END +VALUES ('pkc', 'Paekche', NULL, 5397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paekche', [Definition] = NULL, [SortOrder] = 538.60 WHERE [Code] = 'pkc' END +SET [Description] = 'Paekche', [Definition] = NULL, [SortOrder] = 5397.00 WHERE [Code] = 'pkc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgn', 'Paelignian', NULL, 538.70) END +VALUES ('pgn', 'Paelignian', NULL, 5398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paelignian', [Definition] = NULL, [SortOrder] = 538.70 WHERE [Code] = 'pgn' END +SET [Description] = 'Paelignian', [Definition] = NULL, [SortOrder] = 5398.00 WHERE [Code] = 'pgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbb', 'Páez', NULL, 538.80) END +VALUES ('pbb', 'Páez', NULL, 5399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Páez', [Definition] = NULL, [SortOrder] = 538.80 WHERE [Code] = 'pbb' END +SET [Description] = 'Páez', [Definition] = NULL, [SortOrder] = 5399.00 WHERE [Code] = 'pbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgi', 'Pagi', NULL, 538.90) END +VALUES ('pgi', 'Pagi', NULL, 5400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pagi', [Definition] = NULL, [SortOrder] = 538.90 WHERE [Code] = 'pgi' END +SET [Description] = 'Pagi', [Definition] = NULL, [SortOrder] = 5400.00 WHERE [Code] = 'pgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pae', 'Pagibete', NULL, 539.00) END +VALUES ('pae', 'Pagibete', NULL, 5401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pagibete', [Definition] = NULL, [SortOrder] = 539.00 WHERE [Code] = 'pae' END +SET [Description] = 'Pagibete', [Definition] = NULL, [SortOrder] = 5401.00 WHERE [Code] = 'pae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgu', 'Pagu', NULL, 539.10) END +VALUES ('pgu', 'Pagu', NULL, 5402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pagu', [Definition] = NULL, [SortOrder] = 539.10 WHERE [Code] = 'pgu' END +SET [Description] = 'Pagu', [Definition] = NULL, [SortOrder] = 5402.00 WHERE [Code] = 'pgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apf', 'Pahanan Agta', NULL, 539.20) END +VALUES ('apf', 'Pahanan Agta', NULL, 5403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahanan Agta', [Definition] = NULL, [SortOrder] = 539.20 WHERE [Code] = 'apf' END +SET [Description] = 'Pahanan Agta', [Definition] = NULL, [SortOrder] = 5403.00 WHERE [Code] = 'apf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phj', 'Pahari', NULL, 539.30) END +VALUES ('phj', 'Pahari', NULL, 5404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahari', [Definition] = NULL, [SortOrder] = 539.30 WHERE [Code] = 'phj' END +SET [Description] = 'Pahari', [Definition] = NULL, [SortOrder] = 5404.00 WHERE [Code] = 'phj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phr', 'Pahari-Potwari', NULL, 539.40) END +VALUES ('phr', 'Pahari-Potwari', NULL, 5405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahari-Potwari', [Definition] = NULL, [SortOrder] = 539.40 WHERE [Code] = 'phr' END +SET [Description] = 'Pahari-Potwari', [Definition] = NULL, [SortOrder] = 5405.00 WHERE [Code] = 'phr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgt', 'Pahi', NULL, 539.50) END +VALUES ('lgt', 'Pahi', NULL, 5406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahi', [Definition] = NULL, [SortOrder] = 539.50 WHERE [Code] = 'lgt' END +SET [Description] = 'Pahi', [Definition] = NULL, [SortOrder] = 5406.00 WHERE [Code] = 'lgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phv', 'Pahlavani', NULL, 539.60) END +VALUES ('phv', 'Pahlavani', NULL, 5407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahlavani', [Definition] = NULL, [SortOrder] = 539.60 WHERE [Code] = 'phv' END +SET [Description] = 'Pahlavani', [Definition] = NULL, [SortOrder] = 5407.00 WHERE [Code] = 'phv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pal', 'Pahlavi', NULL, 539.70) END +VALUES ('pal', 'Pahlavi', NULL, 5408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pahlavi', [Definition] = NULL, [SortOrder] = 539.70 WHERE [Code] = 'pal' END +SET [Description] = 'Pahlavi', [Definition] = NULL, [SortOrder] = 5408.00 WHERE [Code] = 'pal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pta', 'Pai Tavytera', NULL, 539.80) END +VALUES ('pta', 'Pai Tavytera', NULL, 5409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pai Tavytera', [Definition] = NULL, [SortOrder] = 539.80 WHERE [Code] = 'pta' END +SET [Description] = 'Pai Tavytera', [Definition] = NULL, [SortOrder] = 5409.00 WHERE [Code] = 'pta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pri', 'Paicî', NULL, 539.90) END +VALUES ('pri', 'Paicî', NULL, 5410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paicî', [Definition] = NULL, [SortOrder] = 539.90 WHERE [Code] = 'pri' END +SET [Description] = 'Paicî', [Definition] = NULL, [SortOrder] = 5410.00 WHERE [Code] = 'pri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppi', 'Paipai', NULL, 540.00) END +VALUES ('ppi', 'Paipai', NULL, 5411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paipai', [Definition] = NULL, [SortOrder] = 540.00 WHERE [Code] = 'ppi' END +SET [Description] = 'Paipai', [Definition] = NULL, [SortOrder] = 5411.00 WHERE [Code] = 'ppi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pck', 'Paite Chin', NULL, 540.10) END +VALUES ('pck', 'Paite Chin', NULL, 5412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paite Chin', [Definition] = NULL, [SortOrder] = 540.10 WHERE [Code] = 'pck' END +SET [Description] = 'Paite Chin', [Definition] = NULL, [SortOrder] = 5412.00 WHERE [Code] = 'pck' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwn', 'Paiwan', NULL, 540.20) END +VALUES ('pwn', 'Paiwan', NULL, 5413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paiwan', [Definition] = NULL, [SortOrder] = 540.20 WHERE [Code] = 'pwn' END +SET [Description] = 'Paiwan', [Definition] = NULL, [SortOrder] = 5413.00 WHERE [Code] = 'pwn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkg', 'Pak-Tong', NULL, 540.30) END +VALUES ('pkg', 'Pak-Tong', NULL, 5414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pak-Tong', [Definition] = NULL, [SortOrder] = 540.30 WHERE [Code] = 'pkg' END +SET [Description] = 'Pak-Tong', [Definition] = NULL, [SortOrder] = 5414.00 WHERE [Code] = 'pkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pav', 'Pakaásnovos', NULL, 540.40) END +VALUES ('pav', 'Pakaásnovos', NULL, 5415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pakaásnovos', [Definition] = NULL, [SortOrder] = 540.40 WHERE [Code] = 'pav' END +SET [Description] = 'Pakaásnovos', [Definition] = NULL, [SortOrder] = 5415.00 WHERE [Code] = 'pav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkn', 'Pakanha', NULL, 540.50) END +VALUES ('pkn', 'Pakanha', NULL, 5416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pakanha', [Definition] = NULL, [SortOrder] = 540.50 WHERE [Code] = 'pkn' END +SET [Description] = 'Pakanha', [Definition] = NULL, [SortOrder] = 5416.00 WHERE [Code] = 'pkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pks', 'Pakistan Sign Language', NULL, 540.60) END +VALUES ('pks', 'Pakistan Sign Language', NULL, 5417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pakistan Sign Language', [Definition] = NULL, [SortOrder] = 540.60 WHERE [Code] = 'pks' END +SET [Description] = 'Pakistan Sign Language', [Definition] = NULL, [SortOrder] = 5417.00 WHERE [Code] = 'pks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pku', 'Paku', NULL, 540.70) END +VALUES ('pku', 'Paku', NULL, 5418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paku', [Definition] = NULL, [SortOrder] = 540.70 WHERE [Code] = 'pku' END +SET [Description] = 'Paku', [Definition] = NULL, [SortOrder] = 5418.00 WHERE [Code] = 'pku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jkp', 'Paku Karen', NULL, 540.80) END +VALUES ('jkp', 'Paku Karen', NULL, 5419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paku Karen', [Definition] = NULL, [SortOrder] = 540.80 WHERE [Code] = 'jkp' END +SET [Description] = 'Paku Karen', [Definition] = NULL, [SortOrder] = 5419.00 WHERE [Code] = 'jkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abw', 'Pal', NULL, 540.90) END +VALUES ('abw', 'Pal', NULL, 5420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pal', [Definition] = NULL, [SortOrder] = 540.90 WHERE [Code] = 'abw' END +SET [Description] = 'Pal', [Definition] = NULL, [SortOrder] = 5420.00 WHERE [Code] = 'abw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plq', 'Palaic', NULL, 541.00) END +VALUES ('plq', 'Palaic', NULL, 5421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palaic', [Definition] = NULL, [SortOrder] = 541.00 WHERE [Code] = 'plq' END +SET [Description] = 'Palaic', [Definition] = NULL, [SortOrder] = 5421.00 WHERE [Code] = 'plq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plr', 'Palaka Senoufo', NULL, 541.10) END +VALUES ('plr', 'Palaka Senoufo', NULL, 5422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palaka Senoufo', [Definition] = NULL, [SortOrder] = 541.10 WHERE [Code] = 'plr' END +SET [Description] = 'Palaka Senoufo', [Definition] = NULL, [SortOrder] = 5422.00 WHERE [Code] = 'plr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpa', 'Palantla Chinantec', NULL, 541.20) END +VALUES ('cpa', 'Palantla Chinantec', NULL, 5423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palantla Chinantec', [Definition] = NULL, [SortOrder] = 541.20 WHERE [Code] = 'cpa' END +SET [Description] = 'Palantla Chinantec', [Definition] = NULL, [SortOrder] = 5423.00 WHERE [Code] = 'cpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pau', 'Palauan', NULL, 541.30) END +VALUES ('pau', 'Palauan', NULL, 5424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palauan', [Definition] = NULL, [SortOrder] = 541.30 WHERE [Code] = 'pau' END +SET [Description] = 'Palauan', [Definition] = NULL, [SortOrder] = 5424.00 WHERE [Code] = 'pau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnl', 'Paleni', NULL, 541.40) END +VALUES ('pnl', 'Paleni', NULL, 5425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paleni', [Definition] = NULL, [SortOrder] = 541.40 WHERE [Code] = 'pnl' END +SET [Description] = 'Paleni', [Definition] = NULL, [SortOrder] = 5425.00 WHERE [Code] = 'pnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pln', 'Palenquero', NULL, 541.50) END +VALUES ('pln', 'Palenquero', NULL, 5426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palenquero', [Definition] = NULL, [SortOrder] = 541.50 WHERE [Code] = 'pln' END +SET [Description] = 'Palenquero', [Definition] = NULL, [SortOrder] = 5426.00 WHERE [Code] = 'pln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pli', 'Pali', NULL, 541.60) END +VALUES ('pli', 'Pali', NULL, 5427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pali', [Definition] = NULL, [SortOrder] = 541.60 WHERE [Code] = 'pli' END +SET [Description] = 'Pali', [Definition] = NULL, [SortOrder] = 5427.00 WHERE [Code] = 'pli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plu', 'Palikúr', NULL, 541.70) END +VALUES ('plu', 'Palikúr', NULL, 5428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palikúr', [Definition] = NULL, [SortOrder] = 541.70 WHERE [Code] = 'plu' END +SET [Description] = 'Palikúr', [Definition] = NULL, [SortOrder] = 5428.00 WHERE [Code] = 'plu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcf', 'Paliyan', NULL, 541.80) END +VALUES ('pcf', 'Paliyan', NULL, 5429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paliyan', [Definition] = NULL, [SortOrder] = 541.80 WHERE [Code] = 'pcf' END +SET [Description] = 'Paliyan', [Definition] = NULL, [SortOrder] = 5429.00 WHERE [Code] = 'pcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmd', 'Pallanganmiddang', NULL, 541.90) END +VALUES ('pmd', 'Pallanganmiddang', NULL, 5430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pallanganmiddang', [Definition] = NULL, [SortOrder] = 541.90 WHERE [Code] = 'pmd' END +SET [Description] = 'Pallanganmiddang', [Definition] = NULL, [SortOrder] = 5430.00 WHERE [Code] = 'pmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fap', 'Paloor', NULL, 542.00) END +VALUES ('fap', 'Paloor', NULL, 5431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paloor', [Definition] = NULL, [SortOrder] = 542.00 WHERE [Code] = 'fap' END +SET [Description] = 'Paloor', [Definition] = NULL, [SortOrder] = 5431.00 WHERE [Code] = 'fap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ple') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ple', 'Palu''e', NULL, 542.10) END +VALUES ('ple', 'Palu''e', NULL, 5432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palu''e', [Definition] = NULL, [SortOrder] = 542.10 WHERE [Code] = 'ple' END +SET [Description] = 'Palu''e', [Definition] = NULL, [SortOrder] = 5432.00 WHERE [Code] = 'ple' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plz', 'Paluan', NULL, 542.20) END +VALUES ('plz', 'Paluan', NULL, 5433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paluan', [Definition] = NULL, [SortOrder] = 542.20 WHERE [Code] = 'plz' END +SET [Description] = 'Paluan', [Definition] = NULL, [SortOrder] = 5433.00 WHERE [Code] = 'plz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bpx', 'Palya Bareli', NULL, 542.30) END +VALUES ('bpx', 'Palya Bareli', NULL, 5434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Palya Bareli', [Definition] = NULL, [SortOrder] = 542.30 WHERE [Code] = 'bpx' END +SET [Description] = 'Palya Bareli', [Definition] = NULL, [SortOrder] = 5434.00 WHERE [Code] = 'bpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmn', 'Pam', NULL, 542.40) END +VALUES ('pmn', 'Pam', NULL, 5435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pam', [Definition] = NULL, [SortOrder] = 542.40 WHERE [Code] = 'pmn' END +SET [Description] = 'Pam', [Definition] = NULL, [SortOrder] = 5435.00 WHERE [Code] = 'pmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmb', 'Pambia', NULL, 542.50) END +VALUES ('pmb', 'Pambia', NULL, 5436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pambia', [Definition] = NULL, [SortOrder] = 542.50 WHERE [Code] = 'pmb' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmk', 'Pamlico', NULL, 542.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pamlico', [Definition] = NULL, [SortOrder] = 542.60 WHERE [Code] = 'pmk' END +SET [Description] = 'Pambia', [Definition] = NULL, [SortOrder] = 5436.00 WHERE [Code] = 'pmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmf', 'Pamona', NULL, 542.70) END +VALUES ('pmf', 'Pamona', NULL, 5437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pamona', [Definition] = NULL, [SortOrder] = 542.70 WHERE [Code] = 'pmf' END +SET [Description] = 'Pamona', [Definition] = NULL, [SortOrder] = 5437.00 WHERE [Code] = 'pmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hih', 'Pamosu', NULL, 542.80) END +VALUES ('hih', 'Pamosu', NULL, 5438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pamosu', [Definition] = NULL, [SortOrder] = 542.80 WHERE [Code] = 'hih' END +SET [Description] = 'Pamosu', [Definition] = NULL, [SortOrder] = 5438.00 WHERE [Code] = 'hih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pam', 'Pampanga', NULL, 542.90) END +VALUES ('pam', 'Pampanga', NULL, 5439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pampanga', [Definition] = NULL, [SortOrder] = 542.90 WHERE [Code] = 'pam' END +SET [Description] = 'Pampanga', [Definition] = NULL, [SortOrder] = 5439.00 WHERE [Code] = 'pam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'att') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('att', 'Pamplona Atta', NULL, 543.00) END +VALUES ('att', 'Pamplona Atta', NULL, 5440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pamplona Atta', [Definition] = NULL, [SortOrder] = 543.00 WHERE [Code] = 'att' END +SET [Description] = 'Pamplona Atta', [Definition] = NULL, [SortOrder] = 5440.00 WHERE [Code] = 'att' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnq', 'Pana (Burkina Faso)', NULL, 543.10) END +VALUES ('pnq', 'Pana (Burkina Faso)', NULL, 5441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pana (Burkina Faso)', [Definition] = NULL, [SortOrder] = 543.10 WHERE [Code] = 'pnq' END +SET [Description] = 'Pana (Burkina Faso)', [Definition] = NULL, [SortOrder] = 5441.00 WHERE [Code] = 'pnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnz', 'Pana (Central African Republic)', NULL, 543.20) END +VALUES ('pnz', 'Pana (Central African Republic)', NULL, 5442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pana (Central African Republic)', [Definition] = NULL, [SortOrder] = 543.20 WHERE [Code] = 'pnz' END +SET [Description] = 'Pana (Central African Republic)', [Definition] = NULL, [SortOrder] = 5442.00 WHERE [Code] = 'pnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsp', 'Panamanian Sign Language', NULL, 543.30) END +VALUES ('lsp', 'Panamanian Sign Language', NULL, 5443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panamanian Sign Language', [Definition] = NULL, [SortOrder] = 543.30 WHERE [Code] = 'lsp' END +SET [Description] = 'Panamanian Sign Language', [Definition] = NULL, [SortOrder] = 5443.00 WHERE [Code] = 'lsp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'par') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('par', 'Panamint', NULL, 543.40) END +VALUES ('par', 'Panamint', NULL, 5444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panamint', [Definition] = NULL, [SortOrder] = 543.40 WHERE [Code] = 'par' END +SET [Description] = 'Panamint', [Definition] = NULL, [SortOrder] = 5444.00 WHERE [Code] = 'par' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxh', 'Panao Huánuco Quechua', NULL, 543.50) END +VALUES ('qxh', 'Panao Huánuco Quechua', NULL, 5445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panao Huánuco Quechua', [Definition] = NULL, [SortOrder] = 543.50 WHERE [Code] = 'qxh' END +SET [Description] = 'Panao Huánuco Quechua', [Definition] = NULL, [SortOrder] = 5445.00 WHERE [Code] = 'qxh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kre', 'Panará', NULL, 543.60) END +VALUES ('kre', 'Panará', NULL, 5446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panará', [Definition] = NULL, [SortOrder] = 543.60 WHERE [Code] = 'kre' END +SET [Description] = 'Panará', [Definition] = NULL, [SortOrder] = 5446.00 WHERE [Code] = 'kre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psn', 'Panasuan', NULL, 543.70) END +VALUES ('psn', 'Panasuan', NULL, 5447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panasuan', [Definition] = NULL, [SortOrder] = 543.70 WHERE [Code] = 'psn' END +SET [Description] = 'Panasuan', [Definition] = NULL, [SortOrder] = 5447.00 WHERE [Code] = 'psn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwb', 'Panawa', NULL, 543.80) END +VALUES ('pwb', 'Panawa', NULL, 5448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panawa', [Definition] = NULL, [SortOrder] = 543.80 WHERE [Code] = 'pwb' END +SET [Description] = 'Panawa', [Definition] = NULL, [SortOrder] = 5448.00 WHERE [Code] = 'pwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnp', 'Pancana', NULL, 543.90) END +VALUES ('pnp', 'Pancana', NULL, 5449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pancana', [Definition] = NULL, [SortOrder] = 543.90 WHERE [Code] = 'pnp' END +SET [Description] = 'Pancana', [Definition] = NULL, [SortOrder] = 5449.00 WHERE [Code] = 'pnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdb', 'Panchpargania', NULL, 544.00) END +VALUES ('tdb', 'Panchpargania', NULL, 5450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panchpargania', [Definition] = NULL, [SortOrder] = 544.00 WHERE [Code] = 'tdb' END +SET [Description] = 'Panchpargania', [Definition] = NULL, [SortOrder] = 5450.00 WHERE [Code] = 'tdb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bkj', 'Pande', NULL, 544.10) END +VALUES ('bkj', 'Pande', NULL, 5451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pande', [Definition] = NULL, [SortOrder] = 544.10 WHERE [Code] = 'bkj' END +SET [Description] = 'Pande', [Definition] = NULL, [SortOrder] = 5451.00 WHERE [Code] = 'bkj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pag', 'Pangasinan', NULL, 544.20) END +VALUES ('pag', 'Pangasinan', NULL, 5452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangasinan', [Definition] = NULL, [SortOrder] = 544.20 WHERE [Code] = 'pag' END +SET [Description] = 'Pangasinan', [Definition] = NULL, [SortOrder] = 5452.00 WHERE [Code] = 'pag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgs', 'Pangseng', NULL, 544.30) END +VALUES ('pgs', 'Pangseng', NULL, 5453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangseng', [Definition] = NULL, [SortOrder] = 544.30 WHERE [Code] = 'pgs' END +SET [Description] = 'Pangseng', [Definition] = NULL, [SortOrder] = 5453.00 WHERE [Code] = 'pgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'png') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('png', 'Pangu', NULL, 544.40) END +VALUES ('png', 'Pangu', NULL, 5454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangu', [Definition] = NULL, [SortOrder] = 544.40 WHERE [Code] = 'png' END +SET [Description] = 'Pangu', [Definition] = NULL, [SortOrder] = 5454.00 WHERE [Code] = 'png' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slm', 'Pangutaran Sama', NULL, 544.50) END +VALUES ('slm', 'Pangutaran Sama', NULL, 5455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangutaran Sama', [Definition] = NULL, [SortOrder] = 544.50 WHERE [Code] = 'slm' END +SET [Description] = 'Pangutaran Sama', [Definition] = NULL, [SortOrder] = 5455.00 WHERE [Code] = 'slm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbr', 'Pangwa', NULL, 544.60) END +VALUES ('pbr', 'Pangwa', NULL, 5456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangwa', [Definition] = NULL, [SortOrder] = 544.60 WHERE [Code] = 'pbr' END +SET [Description] = 'Pangwa', [Definition] = NULL, [SortOrder] = 5456.00 WHERE [Code] = 'pbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgg', 'Pangwali', NULL, 544.70) END +VALUES ('pgg', 'Pangwali', NULL, 5457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pangwali', [Definition] = NULL, [SortOrder] = 544.70 WHERE [Code] = 'pgg' END +SET [Description] = 'Pangwali', [Definition] = NULL, [SortOrder] = 5457.00 WHERE [Code] = 'pgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnr', 'Panim', NULL, 544.80) END +VALUES ('pnr', 'Panim', NULL, 5458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panim', [Definition] = NULL, [SortOrder] = 544.80 WHERE [Code] = 'pnr' END +SET [Description] = 'Panim', [Definition] = NULL, [SortOrder] = 5458.00 WHERE [Code] = 'pnr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcg', 'Paniya', NULL, 544.90) END +VALUES ('pcg', 'Paniya', NULL, 5459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paniya', [Definition] = NULL, [SortOrder] = 544.90 WHERE [Code] = 'pcg' END +SET [Description] = 'Paniya', [Definition] = NULL, [SortOrder] = 5459.00 WHERE [Code] = 'pcg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pan', 'Panjabi', NULL, 545.00) END +VALUES ('pan', 'Panjabi', NULL, 5460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panjabi', [Definition] = NULL, [SortOrder] = 545.00 WHERE [Code] = 'pan' END +SET [Description] = 'Panjabi', [Definition] = NULL, [SortOrder] = 5460.00 WHERE [Code] = 'pan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pax', 'Pankararé', NULL, 545.10) END +VALUES ('pax', 'Pankararé', NULL, 5461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pankararé', [Definition] = NULL, [SortOrder] = 545.10 WHERE [Code] = 'pax' END +SET [Description] = 'Pankararé', [Definition] = NULL, [SortOrder] = 5461.00 WHERE [Code] = 'pax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'paz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paz', 'Pankararú', NULL, 545.20) END +VALUES ('paz', 'Pankararú', NULL, 5462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pankararú', [Definition] = NULL, [SortOrder] = 545.20 WHERE [Code] = 'paz' END +SET [Description] = 'Pankararú', [Definition] = NULL, [SortOrder] = 5462.00 WHERE [Code] = 'paz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkh', 'Pankhu', NULL, 545.30) END +VALUES ('pkh', 'Pankhu', NULL, 5463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pankhu', [Definition] = NULL, [SortOrder] = 545.30 WHERE [Code] = 'pkh' END +SET [Description] = 'Pankhu', [Definition] = NULL, [SortOrder] = 5463.00 WHERE [Code] = 'pkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnc', 'Pannei', NULL, 545.40) END +VALUES ('pnc', 'Pannei', NULL, 5464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pannei', [Definition] = NULL, [SortOrder] = 545.40 WHERE [Code] = 'pnc' END +SET [Description] = 'Pannei', [Definition] = NULL, [SortOrder] = 5464.00 WHERE [Code] = 'pnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqz', 'Pano', NULL, 545.50) END +VALUES ('mqz', 'Pano', NULL, 5465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pano', [Definition] = NULL, [SortOrder] = 545.50 WHERE [Code] = 'mqz' END +SET [Description] = 'Pano', [Definition] = NULL, [SortOrder] = 5465.00 WHERE [Code] = 'mqz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knt', 'Panoan Katukína', NULL, 545.60) END +VALUES ('knt', 'Panoan Katukína', NULL, 5466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panoan Katukína', [Definition] = NULL, [SortOrder] = 545.60 WHERE [Code] = 'knt' END +SET [Description] = 'Panoan Katukína', [Definition] = NULL, [SortOrder] = 5466.00 WHERE [Code] = 'knt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pno', 'Panobo', NULL, 545.70) END +VALUES ('pno', 'Panobo', NULL, 5467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panobo', [Definition] = NULL, [SortOrder] = 545.70 WHERE [Code] = 'pno' END +SET [Description] = 'Panobo', [Definition] = NULL, [SortOrder] = 5467.00 WHERE [Code] = 'pno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfc', 'Panyi Bai', NULL, 545.80) END +VALUES ('bfc', 'Panyi Bai', NULL, 5468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Panyi Bai', [Definition] = NULL, [SortOrder] = 545.80 WHERE [Code] = 'bfc' END +SET [Description] = 'Panyi Bai', [Definition] = NULL, [SortOrder] = 5468.00 WHERE [Code] = 'bfc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'top') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('top', 'Papantla Totonac', NULL, 545.90) END +VALUES ('top', 'Papantla Totonac', NULL, 5469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papantla Totonac', [Definition] = NULL, [SortOrder] = 545.90 WHERE [Code] = 'top' END +SET [Description] = 'Papantla Totonac', [Definition] = NULL, [SortOrder] = 5469.00 WHERE [Code] = 'top' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppn', 'Papapana', NULL, 546.00) END +VALUES ('ppn', 'Papapana', NULL, 5470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papapana', [Definition] = NULL, [SortOrder] = 546.00 WHERE [Code] = 'ppn' END +SET [Description] = 'Papapana', [Definition] = NULL, [SortOrder] = 5470.00 WHERE [Code] = 'ppn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dpp', 'Papar', NULL, 546.10) END +VALUES ('dpp', 'Papar', NULL, 5471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papar', [Definition] = NULL, [SortOrder] = 546.10 WHERE [Code] = 'dpp' END +SET [Description] = 'Papar', [Definition] = NULL, [SortOrder] = 5471.00 WHERE [Code] = 'dpp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pas', 'Papasena', NULL, 546.20) END +VALUES ('pas', 'Papasena', NULL, 5472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papasena', [Definition] = NULL, [SortOrder] = 546.20 WHERE [Code] = 'pas' END +SET [Description] = 'Papasena', [Definition] = NULL, [SortOrder] = 5472.00 WHERE [Code] = 'pas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbo', 'Papel', NULL, 546.30) END +VALUES ('pbo', 'Papel', NULL, 5473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papel', [Definition] = NULL, [SortOrder] = 546.30 WHERE [Code] = 'pbo' END +SET [Description] = 'Papel', [Definition] = NULL, [SortOrder] = 5473.00 WHERE [Code] = 'pbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppe', 'Papi', NULL, 546.40) END +VALUES ('ppe', 'Papi', NULL, 5474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papi', [Definition] = NULL, [SortOrder] = 546.40 WHERE [Code] = 'ppe' END +SET [Description] = 'Papi', [Definition] = NULL, [SortOrder] = 5474.00 WHERE [Code] = 'ppe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pap', 'Papiamento', NULL, 546.50) END +VALUES ('pap', 'Papiamento', NULL, 5475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papiamento', [Definition] = NULL, [SortOrder] = 546.50 WHERE [Code] = 'pap' END +SET [Description] = 'Papiamento', [Definition] = NULL, [SortOrder] = 5475.00 WHERE [Code] = 'pap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppu', 'Papora', NULL, 546.60) END +VALUES ('ppu', 'Papora', NULL, 5476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papora', [Definition] = NULL, [SortOrder] = 546.60 WHERE [Code] = 'ppu' END +SET [Description] = 'Papora', [Definition] = NULL, [SortOrder] = 5476.00 WHERE [Code] = 'ppu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgz', 'Papua New Guinean Sign Language', NULL, 546.70) END +VALUES ('pgz', 'Papua New Guinean Sign Language', NULL, 5477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papua New Guinean Sign Language', [Definition] = NULL, [SortOrder] = 546.70 WHERE [Code] = 'pgz' END +SET [Description] = 'Papua New Guinean Sign Language', [Definition] = NULL, [SortOrder] = 5477.00 WHERE [Code] = 'pgz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmy', 'Papuan Malay', NULL, 546.80) END +VALUES ('pmy', 'Papuan Malay', NULL, 5478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papuan Malay', [Definition] = NULL, [SortOrder] = 546.80 WHERE [Code] = 'pmy' END +SET [Description] = 'Papuan Malay', [Definition] = NULL, [SortOrder] = 5478.00 WHERE [Code] = 'pmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppm', 'Papuma', NULL, 546.90) END +VALUES ('ppm', 'Papuma', NULL, 5479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Papuma', [Definition] = NULL, [SortOrder] = 546.90 WHERE [Code] = 'ppm' END +SET [Description] = 'Papuma', [Definition] = NULL, [SortOrder] = 5479.00 WHERE [Code] = 'ppm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aap', 'Pará Arára', NULL, 547.00) END +VALUES ('aap', 'Pará Arára', NULL, 5480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pará Arára', [Definition] = NULL, [SortOrder] = 547.00 WHERE [Code] = 'aap' END +SET [Description] = 'Pará Arára', [Definition] = NULL, [SortOrder] = 5480.00 WHERE [Code] = 'aap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gvp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gvp', 'Pará Gavião', NULL, 547.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pará Gavião', [Definition] = NULL, [SortOrder] = 547.10 WHERE [Code] = 'gvp' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pzn', 'Jejarra Naga', NULL, 547.20) END +VALUES ('gvp', 'Pará Gavião', NULL, 5481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Jejarra Naga', [Definition] = NULL, [SortOrder] = 547.20 WHERE [Code] = 'pzn' END +SET [Description] = 'Pará Gavião', [Definition] = NULL, [SortOrder] = 5481.00 WHERE [Code] = 'gvp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prc', 'Parachi', NULL, 547.30) END +VALUES ('prc', 'Parachi', NULL, 5482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parachi', [Definition] = NULL, [SortOrder] = 547.30 WHERE [Code] = 'prc' END +SET [Description] = 'Parachi', [Definition] = NULL, [SortOrder] = 5482.00 WHERE [Code] = 'prc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gug', 'Paraguayan Guaraní', NULL, 547.40) END +VALUES ('gug', 'Paraguayan Guaraní', NULL, 5483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paraguayan Guaraní', [Definition] = NULL, [SortOrder] = 547.40 WHERE [Code] = 'gug' END +SET [Description] = 'Paraguayan Guaraní', [Definition] = NULL, [SortOrder] = 5483.00 WHERE [Code] = 'gug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pys', 'Paraguayan Sign Language', NULL, 547.50) END +VALUES ('pys', 'Paraguayan Sign Language', NULL, 5484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paraguayan Sign Language', [Definition] = NULL, [SortOrder] = 547.50 WHERE [Code] = 'pys' END +SET [Description] = 'Paraguayan Sign Language', [Definition] = NULL, [SortOrder] = 5484.00 WHERE [Code] = 'pys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pak', 'Parakanã', NULL, 547.60) END +VALUES ('pak', 'Parakanã', NULL, 5485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parakanã', [Definition] = NULL, [SortOrder] = 547.60 WHERE [Code] = 'pak' END +SET [Description] = 'Parakanã', [Definition] = NULL, [SortOrder] = 5485.00 WHERE [Code] = 'pak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prf', 'Paranan', NULL, 547.70) END +VALUES ('prf', 'Paranan', NULL, 5486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paranan', [Definition] = NULL, [SortOrder] = 547.70 WHERE [Code] = 'prf' END +SET [Description] = 'Paranan', [Definition] = NULL, [SortOrder] = 5486.00 WHERE [Code] = 'prf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'paf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paf', 'Paranawát', NULL, 547.80) END +VALUES ('paf', 'Paranawát', NULL, 5487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paranawát', [Definition] = NULL, [SortOrder] = 547.80 WHERE [Code] = 'paf' END +SET [Description] = 'Paranawát', [Definition] = NULL, [SortOrder] = 5487.00 WHERE [Code] = 'paf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbg', 'Paraujano', NULL, 547.90) END +VALUES ('pbg', 'Paraujano', NULL, 5488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paraujano', [Definition] = NULL, [SortOrder] = 547.90 WHERE [Code] = 'pbg' END +SET [Description] = 'Paraujano', [Definition] = NULL, [SortOrder] = 5488.00 WHERE [Code] = 'pbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prk', 'Parauk', NULL, 548.00) END +VALUES ('prk', 'Parauk', NULL, 5489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parauk', [Definition] = NULL, [SortOrder] = 548.00 WHERE [Code] = 'prk' END +SET [Description] = 'Parauk', [Definition] = NULL, [SortOrder] = 5489.00 WHERE [Code] = 'prk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prw', 'Parawen', NULL, 548.10) END +VALUES ('prw', 'Parawen', NULL, 5490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parawen', [Definition] = NULL, [SortOrder] = 548.10 WHERE [Code] = 'prw' END +SET [Description] = 'Parawen', [Definition] = NULL, [SortOrder] = 5490.00 WHERE [Code] = 'prw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pch', 'Pardhan', NULL, 548.20) END +VALUES ('pch', 'Pardhan', NULL, 5491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pardhan', [Definition] = NULL, [SortOrder] = 548.20 WHERE [Code] = 'pch' END +SET [Description] = 'Pardhan', [Definition] = NULL, [SortOrder] = 5491.00 WHERE [Code] = 'pch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcl', 'Pardhi', NULL, 548.30) END +VALUES ('pcl', 'Pardhi', NULL, 5492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pardhi', [Definition] = NULL, [SortOrder] = 548.30 WHERE [Code] = 'pcl' END +SET [Description] = 'Pardhi', [Definition] = NULL, [SortOrder] = 5492.00 WHERE [Code] = 'pcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppt', 'Pare', NULL, 548.40) END +VALUES ('ppt', 'Pare', NULL, 5493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pare', [Definition] = NULL, [SortOrder] = 548.40 WHERE [Code] = 'ppt' END +SET [Description] = 'Pare', [Definition] = NULL, [SortOrder] = 5493.00 WHERE [Code] = 'ppt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pab', 'Parecís', NULL, 548.50) END +VALUES ('pab', 'Parecís', NULL, 5494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parecís', [Definition] = NULL, [SortOrder] = 548.50 WHERE [Code] = 'pab' END +SET [Description] = 'Parecís', [Definition] = NULL, [SortOrder] = 5494.00 WHERE [Code] = 'pab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcj', 'Parenga', NULL, 548.60) END +VALUES ('pcj', 'Parenga', NULL, 5495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parenga', [Definition] = NULL, [SortOrder] = 548.60 WHERE [Code] = 'pcj' END +SET [Description] = 'Parenga', [Definition] = NULL, [SortOrder] = 5495.00 WHERE [Code] = 'pcj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkr', 'Päri', NULL, 548.70) END +VALUES ('lkr', 'Päri', NULL, 5496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Päri', [Definition] = NULL, [SortOrder] = 548.70 WHERE [Code] = 'lkr' END +SET [Description] = 'Päri', [Definition] = NULL, [SortOrder] = 5496.00 WHERE [Code] = 'lkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvx', 'Parkari Koli', NULL, 548.80) END +VALUES ('kvx', 'Parkari Koli', NULL, 5497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parkari Koli', [Definition] = NULL, [SortOrder] = 548.80 WHERE [Code] = 'kvx' END +SET [Description] = 'Parkari Koli', [Definition] = NULL, [SortOrder] = 5497.00 WHERE [Code] = 'kvx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbi', 'Parkwa', NULL, 548.90) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parkwa', [Definition] = NULL, [SortOrder] = 548.90 WHERE [Code] = 'pbi' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prp', 'Parsi', NULL, 549.00) END +VALUES ('pbi', 'Parkwa', NULL, 5498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parsi', [Definition] = NULL, [SortOrder] = 549.00 WHERE [Code] = 'prp' END +SET [Description] = 'Parkwa', [Definition] = NULL, [SortOrder] = 5498.00 WHERE [Code] = 'pbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prd', 'Parsi-Dari', NULL, 549.10) END +VALUES ('prd', 'Parsi-Dari', NULL, 5499.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parsi-Dari', [Definition] = NULL, [SortOrder] = 549.10 WHERE [Code] = 'prd' END +SET [Description] = 'Parsi-Dari', [Definition] = NULL, [SortOrder] = 5499.00 WHERE [Code] = 'prd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpr', 'Parthian', NULL, 549.20) END +VALUES ('xpr', 'Parthian', NULL, 5500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parthian', [Definition] = NULL, [SortOrder] = 549.20 WHERE [Code] = 'xpr' END +SET [Description] = 'Parthian', [Definition] = NULL, [SortOrder] = 5500.00 WHERE [Code] = 'xpr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'paq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paq', 'Parya', NULL, 549.30) END +VALUES ('paq', 'Parya', NULL, 5501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Parya', [Definition] = NULL, [SortOrder] = 549.30 WHERE [Code] = 'paq' END +SET [Description] = 'Parya', [Definition] = NULL, [SortOrder] = 5501.00 WHERE [Code] = 'paq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psq', 'Pasi', NULL, 549.40) END +VALUES ('psq', 'Pasi', NULL, 5502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pasi', [Definition] = NULL, [SortOrder] = 549.40 WHERE [Code] = 'psq' END +SET [Description] = 'Pasi', [Definition] = NULL, [SortOrder] = 5502.00 WHERE [Code] = 'psq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yac', 'Pass Valley Yali', NULL, 549.50) END +VALUES ('yac', 'Pass Valley Yali', NULL, 5503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pass Valley Yali', [Definition] = NULL, [SortOrder] = 549.50 WHERE [Code] = 'yac' END +SET [Description] = 'Pass Valley Yali', [Definition] = NULL, [SortOrder] = 5503.00 WHERE [Code] = 'yac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbc', 'Patamona', NULL, 549.60) END +VALUES ('pbc', 'Patamona', NULL, 5504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patamona', [Definition] = NULL, [SortOrder] = 549.60 WHERE [Code] = 'pbc' END +SET [Description] = 'Patamona', [Definition] = NULL, [SortOrder] = 5504.00 WHERE [Code] = 'pbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptn', 'Patani', NULL, 549.70) END +VALUES ('ptn', 'Patani', NULL, 5505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patani', [Definition] = NULL, [SortOrder] = 549.70 WHERE [Code] = 'ptn' END +SET [Description] = 'Patani', [Definition] = NULL, [SortOrder] = 5505.00 WHERE [Code] = 'ptn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pth', 'Pataxó Hã-Ha-Hãe', NULL, 549.80) END +VALUES ('pth', 'Pataxó Hã-Ha-Hãe', NULL, 5506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pataxó Hã-Ha-Hãe', [Definition] = NULL, [SortOrder] = 549.80 WHERE [Code] = 'pth' END +SET [Description] = 'Pataxó Hã-Ha-Hãe', [Definition] = NULL, [SortOrder] = 5506.00 WHERE [Code] = 'pth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptp', 'Patep', NULL, 549.90) END +VALUES ('ptp', 'Patep', NULL, 5507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patep', [Definition] = NULL, [SortOrder] = 549.90 WHERE [Code] = 'ptp' END +SET [Description] = 'Patep', [Definition] = NULL, [SortOrder] = 5507.00 WHERE [Code] = 'ptp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pty', 'Pathiya', NULL, 550.00) END +VALUES ('pty', 'Pathiya', NULL, 5508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pathiya', [Definition] = NULL, [SortOrder] = 550.00 WHERE [Code] = 'pty' END +SET [Description] = 'Pathiya', [Definition] = NULL, [SortOrder] = 5508.00 WHERE [Code] = 'pty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gfk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gfk', 'Patpatar', NULL, 550.10) END +VALUES ('gfk', 'Patpatar', NULL, 5509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patpatar', [Definition] = NULL, [SortOrder] = 550.10 WHERE [Code] = 'gfk' END +SET [Description] = 'Patpatar', [Definition] = NULL, [SortOrder] = 5509.00 WHERE [Code] = 'gfk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lae', 'Pattani', NULL, 550.20) END +VALUES ('lae', 'Pattani', NULL, 5510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pattani', [Definition] = NULL, [SortOrder] = 550.20 WHERE [Code] = 'lae' END +SET [Description] = 'Pattani', [Definition] = NULL, [SortOrder] = 5510.00 WHERE [Code] = 'lae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfa', 'Pattani Malay', NULL, 550.30) END +VALUES ('mfa', 'Pattani Malay', NULL, 5511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pattani Malay', [Definition] = NULL, [SortOrder] = 550.30 WHERE [Code] = 'mfa' END +SET [Description] = 'Pattani Malay', [Definition] = NULL, [SortOrder] = 5511.00 WHERE [Code] = 'mfa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptq', 'Pattapu', NULL, 550.40) END +VALUES ('ptq', 'Pattapu', NULL, 5512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pattapu', [Definition] = NULL, [SortOrder] = 550.40 WHERE [Code] = 'ptq' END +SET [Description] = 'Pattapu', [Definition] = NULL, [SortOrder] = 5512.00 WHERE [Code] = 'ptq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwi', 'Patwin', NULL, 550.50) END +VALUES ('pwi', 'Patwin', NULL, 5513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Patwin', [Definition] = NULL, [SortOrder] = 550.50 WHERE [Code] = 'pwi' END +SET [Description] = 'Patwin', [Definition] = NULL, [SortOrder] = 5513.00 WHERE [Code] = 'pwi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plh', 'Paulohi', NULL, 550.60) END +VALUES ('plh', 'Paulohi', NULL, 5514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paulohi', [Definition] = NULL, [SortOrder] = 550.60 WHERE [Code] = 'plh' END +SET [Description] = 'Paulohi', [Definition] = NULL, [SortOrder] = 5514.00 WHERE [Code] = 'plh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pad', 'Paumarí', NULL, 550.70) END +VALUES ('pad', 'Paumarí', NULL, 5515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paumarí', [Definition] = NULL, [SortOrder] = 550.70 WHERE [Code] = 'pad' END +SET [Description] = 'Paumarí', [Definition] = NULL, [SortOrder] = 5515.00 WHERE [Code] = 'pad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnk', 'Paunaka', NULL, 550.80) END +VALUES ('pnk', 'Paunaka', NULL, 5516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paunaka', [Definition] = NULL, [SortOrder] = 550.80 WHERE [Code] = 'pnk' END +SET [Description] = 'Paunaka', [Definition] = NULL, [SortOrder] = 5516.00 WHERE [Code] = 'pnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfb', 'Pauri Bareli', NULL, 550.90) END +VALUES ('bfb', 'Pauri Bareli', NULL, 5517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pauri Bareli', [Definition] = NULL, [SortOrder] = 550.90 WHERE [Code] = 'bfb' END +SET [Description] = 'Pauri Bareli', [Definition] = NULL, [SortOrder] = 5517.00 WHERE [Code] = 'bfb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psm', 'Pauserna', NULL, 551.00) END +VALUES ('psm', 'Pauserna', NULL, 5518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pauserna', [Definition] = NULL, [SortOrder] = 551.00 WHERE [Code] = 'psm' END +SET [Description] = 'Pauserna', [Definition] = NULL, [SortOrder] = 5518.00 WHERE [Code] = 'psm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwa', 'Pawaia', NULL, 551.10) END +VALUES ('pwa', 'Pawaia', NULL, 5519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pawaia', [Definition] = NULL, [SortOrder] = 551.10 WHERE [Code] = 'pwa' END +SET [Description] = 'Pawaia', [Definition] = NULL, [SortOrder] = 5519.00 WHERE [Code] = 'pwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'paw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('paw', 'Pawnee', NULL, 551.20) END +VALUES ('paw', 'Pawnee', NULL, 5520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pawnee', [Definition] = NULL, [SortOrder] = 551.20 WHERE [Code] = 'paw' END +SET [Description] = 'Pawnee', [Definition] = NULL, [SortOrder] = 5520.00 WHERE [Code] = 'paw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmr', 'Paynamar', NULL, 551.30) END +VALUES ('pmr', 'Paynamar', NULL, 5521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Paynamar', [Definition] = NULL, [SortOrder] = 551.30 WHERE [Code] = 'pmr' END +SET [Description] = 'Paynamar', [Definition] = NULL, [SortOrder] = 5521.00 WHERE [Code] = 'pmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pzh', 'Pazeh', NULL, 551.40) END +VALUES ('pzh', 'Pazeh', NULL, 5522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pazeh', [Definition] = NULL, [SortOrder] = 551.40 WHERE [Code] = 'pzh' END +SET [Description] = 'Pazeh', [Definition] = NULL, [SortOrder] = 5522.00 WHERE [Code] = 'pzh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pai', 'Pe', NULL, 551.50) END +VALUES ('pai', 'Pe', NULL, 5523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pe', [Definition] = NULL, [SortOrder] = 551.50 WHERE [Code] = 'pai' END +SET [Description] = 'Pe', [Definition] = NULL, [SortOrder] = 5523.00 WHERE [Code] = 'pai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcb', 'Pear', NULL, 551.60) END +VALUES ('pcb', 'Pear', NULL, 5524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pear', [Definition] = NULL, [SortOrder] = 551.60 WHERE [Code] = 'pcb' END +SET [Description] = 'Pear', [Definition] = NULL, [SortOrder] = 5524.00 WHERE [Code] = 'pcb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pay', 'Pech', NULL, 551.70) END +VALUES ('pay', 'Pech', NULL, 5525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pech', [Definition] = NULL, [SortOrder] = 551.70 WHERE [Code] = 'pay' END +SET [Description] = 'Pech', [Definition] = NULL, [SortOrder] = 5525.00 WHERE [Code] = 'pay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpc', 'Pecheneg', NULL, 551.80) END +VALUES ('xpc', 'Pecheneg', NULL, 5526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pecheneg', [Definition] = NULL, [SortOrder] = 551.80 WHERE [Code] = 'xpc' END +SET [Description] = 'Pecheneg', [Definition] = NULL, [SortOrder] = 5526.00 WHERE [Code] = 'xpc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nso', 'Pedi', NULL, 551.90) END +VALUES ('nso', 'Pedi', NULL, 5527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pedi', [Definition] = NULL, [SortOrder] = 551.90 WHERE [Code] = 'nso' END +SET [Description] = 'Pedi', [Definition] = NULL, [SortOrder] = 5527.00 WHERE [Code] = 'nso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppq', 'Pei', NULL, 552.00) END +VALUES ('ppq', 'Pei', NULL, 5528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pei', [Definition] = NULL, [SortOrder] = 552.00 WHERE [Code] = 'ppq' END +SET [Description] = 'Pei', [Definition] = NULL, [SortOrder] = 5528.00 WHERE [Code] = 'ppq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pel', 'Pekal', NULL, 552.10) END +VALUES ('pel', 'Pekal', NULL, 5529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pekal', [Definition] = NULL, [SortOrder] = 552.10 WHERE [Code] = 'pel' END +SET [Description] = 'Pekal', [Definition] = NULL, [SortOrder] = 5529.00 WHERE [Code] = 'pel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxd', 'Pela', NULL, 552.20) END +VALUES ('bxd', 'Pela', NULL, 5530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pela', [Definition] = NULL, [SortOrder] = 552.20 WHERE [Code] = 'bxd' END +SET [Description] = 'Pela', [Definition] = NULL, [SortOrder] = 5530.00 WHERE [Code] = 'bxd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ata') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ata', 'Pele-Ata', NULL, 552.30) END +VALUES ('ata', 'Pele-Ata', NULL, 5531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pele-Ata', [Definition] = NULL, [SortOrder] = 552.30 WHERE [Code] = 'ata' END +SET [Description] = 'Pele-Ata', [Definition] = NULL, [SortOrder] = 5531.00 WHERE [Code] = 'ata' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppp', 'Pelende', NULL, 552.40) END +VALUES ('ppp', 'Pelende', NULL, 5532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pelende', [Definition] = NULL, [SortOrder] = 552.40 WHERE [Code] = 'ppp' END +SET [Description] = 'Pelende', [Definition] = NULL, [SortOrder] = 5532.00 WHERE [Code] = 'ppp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoc', 'Pemon', NULL, 552.50) END +VALUES ('aoc', 'Pemon', NULL, 5533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pemon', [Definition] = NULL, [SortOrder] = 552.50 WHERE [Code] = 'aoc' END +SET [Description] = 'Pemon', [Definition] = NULL, [SortOrder] = 5533.00 WHERE [Code] = 'aoc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pev', 'Pémono', NULL, 552.60) END +VALUES ('pev', 'Pémono', NULL, 5534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pémono', [Definition] = NULL, [SortOrder] = 552.60 WHERE [Code] = 'pev' END +SET [Description] = 'Pémono', [Definition] = NULL, [SortOrder] = 5534.00 WHERE [Code] = 'pev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psg', 'Penang Sign Language', NULL, 552.70) END +VALUES ('psg', 'Penang Sign Language', NULL, 5535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Penang Sign Language', [Definition] = NULL, [SortOrder] = 552.70 WHERE [Code] = 'psg' END +SET [Description] = 'Penang Sign Language', [Definition] = NULL, [SortOrder] = 5535.00 WHERE [Code] = 'psg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pek', 'Penchal', NULL, 552.80) END +VALUES ('pek', 'Penchal', NULL, 5536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Penchal', [Definition] = NULL, [SortOrder] = 552.80 WHERE [Code] = 'pek' END +SET [Description] = 'Penchal', [Definition] = NULL, [SortOrder] = 5536.00 WHERE [Code] = 'pek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ums') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ums', 'Pendau', NULL, 552.90) END +VALUES ('ums', 'Pendau', NULL, 5537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pendau', [Definition] = NULL, [SortOrder] = 552.90 WHERE [Code] = 'ums' END +SET [Description] = 'Pendau', [Definition] = NULL, [SortOrder] = 5537.00 WHERE [Code] = 'ums' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peg', 'Pengo', NULL, 553.00) END +VALUES ('peg', 'Pengo', NULL, 5538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pengo', [Definition] = NULL, [SortOrder] = 553.00 WHERE [Code] = 'peg' END +SET [Description] = 'Pengo', [Definition] = NULL, [SortOrder] = 5538.00 WHERE [Code] = 'peg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdc', 'Pennsylvania German', NULL, 553.10) END +VALUES ('pdc', 'Pennsylvania German', NULL, 5539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pennsylvania German', [Definition] = NULL, [SortOrder] = 553.10 WHERE [Code] = 'pdc' END +SET [Description] = 'Pennsylvania German', [Definition] = NULL, [SortOrder] = 5539.00 WHERE [Code] = 'pdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mil', 'Peñoles Mixtec', NULL, 553.20) END +VALUES ('mil', 'Peñoles Mixtec', NULL, 5540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Peñoles Mixtec', [Definition] = NULL, [SortOrder] = 553.20 WHERE [Code] = 'mil' END +SET [Description] = 'Peñoles Mixtec', [Definition] = NULL, [SortOrder] = 5540.00 WHERE [Code] = 'mil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnh', 'Penrhyn', NULL, 553.30) END +VALUES ('pnh', 'Penrhyn', NULL, 5541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Penrhyn', [Definition] = NULL, [SortOrder] = 553.30 WHERE [Code] = 'pnh' END +SET [Description] = 'Penrhyn', [Definition] = NULL, [SortOrder] = 5541.00 WHERE [Code] = 'pnh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptw', 'Pentlatch', NULL, 553.40) END +VALUES ('ptw', 'Pentlatch', NULL, 5542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pentlatch', [Definition] = NULL, [SortOrder] = 553.40 WHERE [Code] = 'ptw' END +SET [Description] = 'Pentlatch', [Definition] = NULL, [SortOrder] = 5542.00 WHERE [Code] = 'ptw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wet', 'Perai', NULL, 553.50) END +VALUES ('wet', 'Perai', NULL, 5543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Perai', [Definition] = NULL, [SortOrder] = 553.50 WHERE [Code] = 'wet' END +SET [Description] = 'Perai', [Definition] = NULL, [SortOrder] = 5543.00 WHERE [Code] = 'wet' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pea', 'Peranakan Indonesian', NULL, 553.60) END +VALUES ('pea', 'Peranakan Indonesian', NULL, 5544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Peranakan Indonesian', [Definition] = NULL, [SortOrder] = 553.60 WHERE [Code] = 'pea' END +SET [Description] = 'Peranakan Indonesian', [Definition] = NULL, [SortOrder] = 5544.00 WHERE [Code] = 'pea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pfe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pfe', 'Pere', NULL, 553.70) END +VALUES ('pfe', 'Pere', NULL, 5545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pere', [Definition] = NULL, [SortOrder] = 553.70 WHERE [Code] = 'pfe' END +SET [Description] = 'Pere', [Definition] = NULL, [SortOrder] = 5545.00 WHERE [Code] = 'pfe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvf', 'Peripheral Mongolian', NULL, 553.80) END +VALUES ('mvf', 'Peripheral Mongolian', NULL, 5546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Peripheral Mongolian', [Definition] = NULL, [SortOrder] = 553.80 WHERE [Code] = 'mvf' END +SET [Description] = 'Peripheral Mongolian', [Definition] = NULL, [SortOrder] = 5546.00 WHERE [Code] = 'mvf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pip', 'Pero', NULL, 553.90) END +VALUES ('pip', 'Pero', NULL, 5547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pero', [Definition] = NULL, [SortOrder] = 553.90 WHERE [Code] = 'pip' END +SET [Description] = 'Pero', [Definition] = NULL, [SortOrder] = 5547.00 WHERE [Code] = 'pip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fas', 'Persian', NULL, 554.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Persian', [Definition] = NULL, [SortOrder] = 554.00 WHERE [Code] = 'fas' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psc', 'Iranian Sign Language', NULL, 554.10) END +VALUES ('fas', 'Persian', NULL, 5548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Iranian Sign Language', [Definition] = NULL, [SortOrder] = 554.10 WHERE [Code] = 'psc' END +SET [Description] = 'Persian', [Definition] = NULL, [SortOrder] = 5548.00 WHERE [Code] = 'fas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prl', 'Peruvian Sign Language', NULL, 554.20) END +VALUES ('prl', 'Peruvian Sign Language', NULL, 5549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Peruvian Sign Language', [Definition] = NULL, [SortOrder] = 554.20 WHERE [Code] = 'prl' END +SET [Description] = 'Peruvian Sign Language', [Definition] = NULL, [SortOrder] = 5549.00 WHERE [Code] = 'prl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpe', 'Petapa Zapotec', NULL, 554.30) END +VALUES ('zpe', 'Petapa Zapotec', NULL, 5550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Petapa Zapotec', [Definition] = NULL, [SortOrder] = 554.30 WHERE [Code] = 'zpe' END +SET [Description] = 'Petapa Zapotec', [Definition] = NULL, [SortOrder] = 5550.00 WHERE [Code] = 'zpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pex', 'Petats', NULL, 554.40) END +VALUES ('pex', 'Petats', NULL, 5551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Petats', [Definition] = NULL, [SortOrder] = 554.40 WHERE [Code] = 'pex' END +SET [Description] = 'Petats', [Definition] = NULL, [SortOrder] = 5551.00 WHERE [Code] = 'pex' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pey', 'Petjo', NULL, 554.50) END +VALUES ('pey', 'Petjo', NULL, 5552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Petjo', [Definition] = NULL, [SortOrder] = 554.50 WHERE [Code] = 'pey' END +SET [Description] = 'Petjo', [Definition] = NULL, [SortOrder] = 5552.00 WHERE [Code] = 'pey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lme', 'Pévé', NULL, 554.60) END +VALUES ('lme', 'Pévé', NULL, 5553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pévé', [Definition] = NULL, [SortOrder] = 554.60 WHERE [Code] = 'lme' END +SET [Description] = 'Pévé', [Definition] = NULL, [SortOrder] = 5553.00 WHERE [Code] = 'lme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pfl', 'Pfaelzisch', NULL, 554.70) END +VALUES ('pfl', 'Pfaelzisch', NULL, 5554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pfaelzisch', [Definition] = NULL, [SortOrder] = 554.70 WHERE [Code] = 'pfl' END +SET [Description] = 'Pfaelzisch', [Definition] = NULL, [SortOrder] = 5554.00 WHERE [Code] = 'pfl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prt', 'Phai', NULL, 554.80) END +VALUES ('prt', 'Phai', NULL, 5555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phai', [Definition] = NULL, [SortOrder] = 554.80 WHERE [Code] = 'prt' END +SET [Description] = 'Phai', [Definition] = NULL, [SortOrder] = 5555.00 WHERE [Code] = 'prt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phk', 'Phake', NULL, 554.90) END +VALUES ('phk', 'Phake', NULL, 5556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phake', [Definition] = NULL, [SortOrder] = 554.90 WHERE [Code] = 'phk' END +SET [Description] = 'Phake', [Definition] = NULL, [SortOrder] = 5556.00 WHERE [Code] = 'phk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypa', 'Phala', NULL, 555.00) END +VALUES ('ypa', 'Phala', NULL, 5557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phala', [Definition] = NULL, [SortOrder] = 555.00 WHERE [Code] = 'ypa' END +SET [Description] = 'Phala', [Definition] = NULL, [SortOrder] = 5557.00 WHERE [Code] = 'ypa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phl', 'Phalura', NULL, 555.10) END +VALUES ('phl', 'Phalura', NULL, 5558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phalura', [Definition] = NULL, [SortOrder] = 555.10 WHERE [Code] = 'phl' END +SET [Description] = 'Phalura', [Definition] = NULL, [SortOrder] = 5558.00 WHERE [Code] = 'phl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phq', 'Phana''', NULL, 555.20) END +VALUES ('phq', 'Phana''', NULL, 5559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phana''', [Definition] = NULL, [SortOrder] = 555.20 WHERE [Code] = 'phq' END +SET [Description] = 'Phana''', [Definition] = NULL, [SortOrder] = 5559.00 WHERE [Code] = 'phq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phw', 'Phangduwali', NULL, 555.30) END +VALUES ('phw', 'Phangduwali', NULL, 5560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phangduwali', [Definition] = NULL, [SortOrder] = 555.30 WHERE [Code] = 'phw' END +SET [Description] = 'Phangduwali', [Definition] = NULL, [SortOrder] = 5560.00 WHERE [Code] = 'phw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pem', 'Phende', NULL, 555.40) END +VALUES ('pem', 'Phende', NULL, 5561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phende', [Definition] = NULL, [SortOrder] = 555.40 WHERE [Code] = 'pem' END +SET [Description] = 'Phende', [Definition] = NULL, [SortOrder] = 5561.00 WHERE [Code] = 'pem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psp', 'Philippine Sign Language', NULL, 555.50) END +VALUES ('psp', 'Philippine Sign Language', NULL, 5562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Philippine Sign Language', [Definition] = NULL, [SortOrder] = 555.50 WHERE [Code] = 'psp' END +SET [Description] = 'Philippine Sign Language', [Definition] = NULL, [SortOrder] = 5562.00 WHERE [Code] = 'psp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phm', 'Phimbi', NULL, 555.60) END +VALUES ('phm', 'Phimbi', NULL, 5563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phimbi', [Definition] = NULL, [SortOrder] = 555.60 WHERE [Code] = 'phm' END +SET [Description] = 'Phimbi', [Definition] = NULL, [SortOrder] = 5563.00 WHERE [Code] = 'phm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phn', 'Phoenician', NULL, 555.70) END +VALUES ('phn', 'Phoenician', NULL, 5564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phoenician', [Definition] = NULL, [SortOrder] = 555.70 WHERE [Code] = 'phn' END +SET [Description] = 'Phoenician', [Definition] = NULL, [SortOrder] = 5564.00 WHERE [Code] = 'phn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypg', 'Phola', NULL, 555.80) END +VALUES ('ypg', 'Phola', NULL, 5565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phola', [Definition] = NULL, [SortOrder] = 555.80 WHERE [Code] = 'ypg' END +SET [Description] = 'Phola', [Definition] = NULL, [SortOrder] = 5565.00 WHERE [Code] = 'ypg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yip', 'Pholo', NULL, 555.90) END +VALUES ('yip', 'Pholo', NULL, 5566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pholo', [Definition] = NULL, [SortOrder] = 555.90 WHERE [Code] = 'yip' END +SET [Description] = 'Pholo', [Definition] = NULL, [SortOrder] = 5566.00 WHERE [Code] = 'yip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nph', 'Phom Naga', NULL, 556.00) END +VALUES ('nph', 'Phom Naga', NULL, 5567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phom Naga', [Definition] = NULL, [SortOrder] = 556.00 WHERE [Code] = 'nph' END +SET [Description] = 'Phom Naga', [Definition] = NULL, [SortOrder] = 5567.00 WHERE [Code] = 'nph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnx', 'Phong-Kniang', NULL, 556.10) END +VALUES ('pnx', 'Phong-Kniang', NULL, 5568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phong-Kniang', [Definition] = NULL, [SortOrder] = 556.10 WHERE [Code] = 'pnx' END +SET [Description] = 'Phong-Kniang', [Definition] = NULL, [SortOrder] = 5568.00 WHERE [Code] = 'pnx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjt', 'Phrae Pwo Karen', NULL, 556.20) END +VALUES ('kjt', 'Phrae Pwo Karen', NULL, 5569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phrae Pwo Karen', [Definition] = NULL, [SortOrder] = 556.20 WHERE [Code] = 'kjt' END +SET [Description] = 'Phrae Pwo Karen', [Definition] = NULL, [SortOrder] = 5569.00 WHERE [Code] = 'kjt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpg', 'Phrygian', NULL, 556.30) END +VALUES ('xpg', 'Phrygian', NULL, 5570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phrygian', [Definition] = NULL, [SortOrder] = 556.30 WHERE [Code] = 'xpg' END +SET [Description] = 'Phrygian', [Definition] = NULL, [SortOrder] = 5570.00 WHERE [Code] = 'xpg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pht', 'Phu Thai', NULL, 556.40) END +VALUES ('pht', 'Phu Thai', NULL, 5571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phu Thai', [Definition] = NULL, [SortOrder] = 556.40 WHERE [Code] = 'pht' END +SET [Description] = 'Phu Thai', [Definition] = NULL, [SortOrder] = 5571.00 WHERE [Code] = 'pht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phu', 'Phuan', NULL, 556.50) END +VALUES ('phu', 'Phuan', NULL, 5572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuan', [Definition] = NULL, [SortOrder] = 556.50 WHERE [Code] = 'phu' END +SET [Description] = 'Phuan', [Definition] = NULL, [SortOrder] = 5572.00 WHERE [Code] = 'phu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phd', 'Phudagi', NULL, 556.60) END +VALUES ('phd', 'Phudagi', NULL, 5573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phudagi', [Definition] = NULL, [SortOrder] = 556.60 WHERE [Code] = 'phd' END +SET [Description] = 'Phudagi', [Definition] = NULL, [SortOrder] = 5573.00 WHERE [Code] = 'phd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pug', 'Phuie', NULL, 556.70) END +VALUES ('pug', 'Phuie', NULL, 5574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuie', [Definition] = NULL, [SortOrder] = 556.70 WHERE [Code] = 'pug' END +SET [Description] = 'Phuie', [Definition] = NULL, [SortOrder] = 5574.00 WHERE [Code] = 'pug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phh', 'Phukha', NULL, 556.80) END +VALUES ('phh', 'Phukha', NULL, 5575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phukha', [Definition] = NULL, [SortOrder] = 556.80 WHERE [Code] = 'phh' END +SET [Description] = 'Phukha', [Definition] = NULL, [SortOrder] = 5575.00 WHERE [Code] = 'phh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypm', 'Phuma', NULL, 556.90) END +VALUES ('ypm', 'Phuma', NULL, 5576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuma', [Definition] = NULL, [SortOrder] = 556.90 WHERE [Code] = 'ypm' END +SET [Description] = 'Phuma', [Definition] = NULL, [SortOrder] = 5576.00 WHERE [Code] = 'ypm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pho', 'Phunoi', NULL, 557.00) END +VALUES ('pho', 'Phunoi', NULL, 5577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phunoi', [Definition] = NULL, [SortOrder] = 557.00 WHERE [Code] = 'pho' END +SET [Description] = 'Phunoi', [Definition] = NULL, [SortOrder] = 5577.00 WHERE [Code] = 'pho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'phg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('phg', 'Phuong', NULL, 557.10) END +VALUES ('phg', 'Phuong', NULL, 5578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuong', [Definition] = NULL, [SortOrder] = 557.10 WHERE [Code] = 'phg' END +SET [Description] = 'Phuong', [Definition] = NULL, [SortOrder] = 5578.00 WHERE [Code] = 'phg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypp', 'Phupa', NULL, 557.20) END +VALUES ('ypp', 'Phupa', NULL, 5579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phupa', [Definition] = NULL, [SortOrder] = 557.20 WHERE [Code] = 'ypp' END +SET [Description] = 'Phupa', [Definition] = NULL, [SortOrder] = 5579.00 WHERE [Code] = 'ypp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yph', 'Phupha', NULL, 557.30) END +VALUES ('yph', 'Phupha', NULL, 5580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phupha', [Definition] = NULL, [SortOrder] = 557.30 WHERE [Code] = 'yph' END +SET [Description] = 'Phupha', [Definition] = NULL, [SortOrder] = 5580.00 WHERE [Code] = 'yph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ypz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ypz', 'Phuza', NULL, 557.40) END +VALUES ('ypz', 'Phuza', NULL, 5581.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Phuza', [Definition] = NULL, [SortOrder] = 557.40 WHERE [Code] = 'ypz' END +SET [Description] = 'Phuza', [Definition] = NULL, [SortOrder] = 5581.00 WHERE [Code] = 'ypz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptr', 'Piamatsina', NULL, 557.50) END +VALUES ('ptr', 'Piamatsina', NULL, 5582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piamatsina', [Definition] = NULL, [SortOrder] = 557.50 WHERE [Code] = 'ptr' END +SET [Description] = 'Piamatsina', [Definition] = NULL, [SortOrder] = 5582.00 WHERE [Code] = 'ptr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pin', 'Piame', NULL, 557.60) END +VALUES ('pin', 'Piame', NULL, 5583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piame', [Definition] = NULL, [SortOrder] = 557.60 WHERE [Code] = 'pin' END +SET [Description] = 'Piame', [Definition] = NULL, [SortOrder] = 5583.00 WHERE [Code] = 'pin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pio', 'Piapoco', NULL, 557.70) END +VALUES ('pio', 'Piapoco', NULL, 5584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piapoco', [Definition] = NULL, [SortOrder] = 557.70 WHERE [Code] = 'pio' END +SET [Description] = 'Piapoco', [Definition] = NULL, [SortOrder] = 5584.00 WHERE [Code] = 'pio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pid', 'Piaroa', NULL, 557.80) END +VALUES ('pid', 'Piaroa', NULL, 5585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piaroa', [Definition] = NULL, [SortOrder] = 557.80 WHERE [Code] = 'pid' END +SET [Description] = 'Piaroa', [Definition] = NULL, [SortOrder] = 5585.00 WHERE [Code] = 'pid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcd', 'Picard', NULL, 557.90) END +VALUES ('pcd', 'Picard', NULL, 5586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Picard', [Definition] = NULL, [SortOrder] = 557.90 WHERE [Code] = 'pcd' END +SET [Description] = 'Picard', [Definition] = NULL, [SortOrder] = 5586.00 WHERE [Code] = 'pcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpu', 'Pichis Ashéninka', NULL, 558.00) END +VALUES ('cpu', 'Pichis Ashéninka', NULL, 5587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pichis Ashéninka', [Definition] = NULL, [SortOrder] = 558.00 WHERE [Code] = 'cpu' END +SET [Description] = 'Pichis Ashéninka', [Definition] = NULL, [SortOrder] = 5587.00 WHERE [Code] = 'cpu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpi', 'Pictish', NULL, 558.10) END +VALUES ('xpi', 'Pictish', NULL, 5588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pictish', [Definition] = NULL, [SortOrder] = 558.10 WHERE [Code] = 'xpi' END +SET [Description] = 'Pictish', [Definition] = NULL, [SortOrder] = 5588.00 WHERE [Code] = 'xpi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dep', 'Pidgin Delaware', NULL, 558.20) END +VALUES ('dep', 'Pidgin Delaware', NULL, 5589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pidgin Delaware', [Definition] = NULL, [SortOrder] = 558.20 WHERE [Code] = 'dep' END +SET [Description] = 'Pidgin Delaware', [Definition] = NULL, [SortOrder] = 5589.00 WHERE [Code] = 'dep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pms', 'Piemontese', NULL, 558.30) END +VALUES ('pms', 'Piemontese', NULL, 5590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piemontese', [Definition] = NULL, [SortOrder] = 558.30 WHERE [Code] = 'pms' END +SET [Description] = 'Piemontese', [Definition] = NULL, [SortOrder] = 5590.00 WHERE [Code] = 'pms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pij', 'Pijao', NULL, 558.40) END +VALUES ('pij', 'Pijao', NULL, 5591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pijao', [Definition] = NULL, [SortOrder] = 558.40 WHERE [Code] = 'pij' END +SET [Description] = 'Pijao', [Definition] = NULL, [SortOrder] = 5591.00 WHERE [Code] = 'pij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piz', 'Pije', NULL, 558.50) END +VALUES ('piz', 'Pije', NULL, 5592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pije', [Definition] = NULL, [SortOrder] = 558.50 WHERE [Code] = 'piz' END +SET [Description] = 'Pije', [Definition] = NULL, [SortOrder] = 5592.00 WHERE [Code] = 'piz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pis', 'Pijin', NULL, 558.60) END +VALUES ('pis', 'Pijin', NULL, 5593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pijin', [Definition] = NULL, [SortOrder] = 558.60 WHERE [Code] = 'pis' END +SET [Description] = 'Pijin', [Definition] = NULL, [SortOrder] = 5593.00 WHERE [Code] = 'pis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plg', 'Pilagá', NULL, 558.70) END +VALUES ('plg', 'Pilagá', NULL, 5594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pilagá', [Definition] = NULL, [SortOrder] = 558.70 WHERE [Code] = 'plg' END +SET [Description] = 'Pilagá', [Definition] = NULL, [SortOrder] = 5594.00 WHERE [Code] = 'plg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piv', 'Pileni', NULL, 558.80) END +VALUES ('piv', 'Pileni', NULL, 5595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pileni', [Definition] = NULL, [SortOrder] = 558.80 WHERE [Code] = 'piv' END +SET [Description] = 'Pileni', [Definition] = NULL, [SortOrder] = 5595.00 WHERE [Code] = 'piv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pia', 'Pima Bajo', NULL, 558.90) END +VALUES ('pia', 'Pima Bajo', NULL, 5596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pima Bajo', [Definition] = NULL, [SortOrder] = 558.90 WHERE [Code] = 'pia' END +SET [Description] = 'Pima Bajo', [Definition] = NULL, [SortOrder] = 5596.00 WHERE [Code] = 'pia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piw', 'Pimbwe', NULL, 559.00) END +VALUES ('piw', 'Pimbwe', NULL, 5597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pimbwe', [Definition] = NULL, [SortOrder] = 559.00 WHERE [Code] = 'piw' END +SET [Description] = 'Pimbwe', [Definition] = NULL, [SortOrder] = 5597.00 WHERE [Code] = 'piw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnn', 'Pinai-Hagahai', NULL, 559.10) END +VALUES ('pnn', 'Pinai-Hagahai', NULL, 5598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinai-Hagahai', [Definition] = NULL, [SortOrder] = 559.10 WHERE [Code] = 'pnn' END +SET [Description] = 'Pinai-Hagahai', [Definition] = NULL, [SortOrder] = 5598.00 WHERE [Code] = 'pnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pti', 'Pindiini', NULL, 559.20) END +VALUES ('pti', 'Pindiini', NULL, 5599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pindiini', [Definition] = NULL, [SortOrder] = 559.20 WHERE [Code] = 'pti' END +SET [Description] = 'Pindiini', [Definition] = NULL, [SortOrder] = 5599.00 WHERE [Code] = 'pti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pif', 'Pingelapese', NULL, 559.30) END +VALUES ('pif', 'Pingelapese', NULL, 5600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pingelapese', [Definition] = NULL, [SortOrder] = 559.30 WHERE [Code] = 'pif' END +SET [Description] = 'Pingelapese', [Definition] = NULL, [SortOrder] = 5600.00 WHERE [Code] = 'pif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnv', 'Pinigura', NULL, 559.40) END +VALUES ('pnv', 'Pinigura', NULL, 5601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinigura', [Definition] = NULL, [SortOrder] = 559.40 WHERE [Code] = 'pnv' END +SET [Description] = 'Pinigura', [Definition] = NULL, [SortOrder] = 5601.00 WHERE [Code] = 'pnv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnj', 'Pinjarup', NULL, 559.50) END +VALUES ('pnj', 'Pinjarup', NULL, 5602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinjarup', [Definition] = NULL, [SortOrder] = 559.50 WHERE [Code] = 'pnj' END +SET [Description] = 'Pinjarup', [Definition] = NULL, [SortOrder] = 5602.00 WHERE [Code] = 'pnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pic', 'Pinji', NULL, 559.60) END +VALUES ('pic', 'Pinji', NULL, 5603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinji', [Definition] = NULL, [SortOrder] = 559.60 WHERE [Code] = 'pic' END +SET [Description] = 'Pinji', [Definition] = NULL, [SortOrder] = 5603.00 WHERE [Code] = 'pic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mio', 'Pinotepa Nacional Mixtec', NULL, 559.70) END +VALUES ('mio', 'Pinotepa Nacional Mixtec', NULL, 5604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinotepa Nacional Mixtec', [Definition] = NULL, [SortOrder] = 559.70 WHERE [Code] = 'mio' END +SET [Description] = 'Pinotepa Nacional Mixtec', [Definition] = NULL, [SortOrder] = 5604.00 WHERE [Code] = 'mio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piu', 'Pintupi-Luritja', NULL, 559.80) END +VALUES ('piu', 'Pintupi-Luritja', NULL, 5605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pintupi-Luritja', [Definition] = NULL, [SortOrder] = 559.80 WHERE [Code] = 'piu' END +SET [Description] = 'Pintupi-Luritja', [Definition] = NULL, [SortOrder] = 5605.00 WHERE [Code] = 'piu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pny', 'Pinyin', NULL, 559.90) END +VALUES ('pny', 'Pinyin', NULL, 5606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pinyin', [Definition] = NULL, [SortOrder] = 559.90 WHERE [Code] = 'pny' END +SET [Description] = 'Pinyin', [Definition] = NULL, [SortOrder] = 5606.00 WHERE [Code] = 'pny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppl', 'Pipil', NULL, 560.00) END +VALUES ('ppl', 'Pipil', NULL, 5607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pipil', [Definition] = NULL, [SortOrder] = 560.00 WHERE [Code] = 'ppl' END +SET [Description] = 'Pipil', [Definition] = NULL, [SortOrder] = 5607.00 WHERE [Code] = 'ppl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'myp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('myp', 'Pirahã', NULL, 560.10) END +VALUES ('myp', 'Pirahã', NULL, 5608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pirahã', [Definition] = NULL, [SortOrder] = 560.10 WHERE [Code] = 'myp' END +SET [Description] = 'Pirahã', [Definition] = NULL, [SortOrder] = 5608.00 WHERE [Code] = 'myp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pir', 'Piratapuyo', NULL, 560.20) END +VALUES ('pir', 'Piratapuyo', NULL, 5609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piratapuyo', [Definition] = NULL, [SortOrder] = 560.20 WHERE [Code] = 'pir' END +SET [Description] = 'Piratapuyo', [Definition] = NULL, [SortOrder] = 5609.00 WHERE [Code] = 'pir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxi', 'Pirlatapa', NULL, 560.30) END +VALUES ('bxi', 'Pirlatapa', NULL, 5610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pirlatapa', [Definition] = NULL, [SortOrder] = 560.30 WHERE [Code] = 'bxi' END +SET [Description] = 'Pirlatapa', [Definition] = NULL, [SortOrder] = 5610.00 WHERE [Code] = 'bxi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pie', 'Piro', NULL, 560.40) END +VALUES ('pie', 'Piro', NULL, 5611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piro', [Definition] = NULL, [SortOrder] = 560.40 WHERE [Code] = 'pie' END +SET [Description] = 'Piro', [Definition] = NULL, [SortOrder] = 5611.00 WHERE [Code] = 'pie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpa', 'Pirriya', NULL, 560.50) END +VALUES ('xpa', 'Pirriya', NULL, 5612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pirriya', [Definition] = NULL, [SortOrder] = 560.50 WHERE [Code] = 'xpa' END +SET [Description] = 'Pirriya', [Definition] = NULL, [SortOrder] = 5612.00 WHERE [Code] = 'xpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pig', 'Pisabo', NULL, 560.60) END +VALUES ('pig', 'Pisabo', NULL, 5613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pisabo', [Definition] = NULL, [SortOrder] = 560.60 WHERE [Code] = 'pig' END +SET [Description] = 'Pisabo', [Definition] = NULL, [SortOrder] = 5613.00 WHERE [Code] = 'pig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpp', 'Pisaflores Tepehua', NULL, 560.70) END +VALUES ('tpp', 'Pisaflores Tepehua', NULL, 5614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pisaflores Tepehua', [Definition] = NULL, [SortOrder] = 560.70 WHERE [Code] = 'tpp' END +SET [Description] = 'Pisaflores Tepehua', [Definition] = NULL, [SortOrder] = 5614.00 WHERE [Code] = 'tpp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psy', 'Piscataway', NULL, 560.80) END +VALUES ('psy', 'Piscataway', NULL, 5615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piscataway', [Definition] = NULL, [SortOrder] = 560.80 WHERE [Code] = 'psy' END +SET [Description] = 'Piscataway', [Definition] = NULL, [SortOrder] = 5615.00 WHERE [Code] = 'psy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xps', 'Pisidian', NULL, 560.90) END +VALUES ('xps', 'Pisidian', NULL, 5616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pisidian', [Definition] = NULL, [SortOrder] = 560.90 WHERE [Code] = 'xps' END +SET [Description] = 'Pisidian', [Definition] = NULL, [SortOrder] = 5616.00 WHERE [Code] = 'xps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pih', 'Pitcairn-Norfolk', NULL, 561.00) END +VALUES ('pih', 'Pitcairn-Norfolk', NULL, 5617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pitcairn-Norfolk', [Definition] = NULL, [SortOrder] = 561.00 WHERE [Code] = 'pih' END +SET [Description] = 'Pitcairn-Norfolk', [Definition] = NULL, [SortOrder] = 5617.00 WHERE [Code] = 'pih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sje', 'Pite Sami', NULL, 561.10) END +VALUES ('sje', 'Pite Sami', NULL, 5618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pite Sami', [Definition] = NULL, [SortOrder] = 561.10 WHERE [Code] = 'sje' END +SET [Description] = 'Pite Sami', [Definition] = NULL, [SortOrder] = 5618.00 WHERE [Code] = 'sje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcn', 'Piti', NULL, 561.20) END +VALUES ('pcn', 'Piti', NULL, 5619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piti', [Definition] = NULL, [SortOrder] = 561.20 WHERE [Code] = 'pcn' END +SET [Description] = 'Piti', [Definition] = NULL, [SortOrder] = 5619.00 WHERE [Code] = 'pcn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pjt', 'Pitjantjatjara', NULL, 561.30) END +VALUES ('pjt', 'Pitjantjatjara', NULL, 5620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pitjantjatjara', [Definition] = NULL, [SortOrder] = 561.30 WHERE [Code] = 'pjt' END +SET [Description] = 'Pitjantjatjara', [Definition] = NULL, [SortOrder] = 5620.00 WHERE [Code] = 'pjt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pit', 'Pitta Pitta', NULL, 561.40) END +VALUES ('pit', 'Pitta Pitta', NULL, 5621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pitta Pitta', [Definition] = NULL, [SortOrder] = 561.40 WHERE [Code] = 'pit' END +SET [Description] = 'Pitta Pitta', [Definition] = NULL, [SortOrder] = 5621.00 WHERE [Code] = 'pit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pix', 'Piu', NULL, 561.50) END +VALUES ('pix', 'Piu', NULL, 5622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piu', [Definition] = NULL, [SortOrder] = 561.50 WHERE [Code] = 'pix' END +SET [Description] = 'Piu', [Definition] = NULL, [SortOrder] = 5622.00 WHERE [Code] = 'pix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'piy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('piy', 'Piya-Kwonci', NULL, 561.60) END +VALUES ('piy', 'Piya-Kwonci', NULL, 5623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Piya-Kwonci', [Definition] = NULL, [SortOrder] = 561.60 WHERE [Code] = 'piy' END +SET [Description] = 'Piya-Kwonci', [Definition] = NULL, [SortOrder] = 5623.00 WHERE [Code] = 'piy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crk', 'Plains Cree', NULL, 561.70) END +VALUES ('crk', 'Plains Cree', NULL, 5624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plains Cree', [Definition] = NULL, [SortOrder] = 561.70 WHERE [Code] = 'crk' END +SET [Description] = 'Plains Cree', [Definition] = NULL, [SortOrder] = 5624.00 WHERE [Code] = 'crk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psd', 'Plains Indian Sign Language', NULL, 561.80) END +VALUES ('psd', 'Plains Indian Sign Language', NULL, 5625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plains Indian Sign Language', [Definition] = NULL, [SortOrder] = 561.80 WHERE [Code] = 'psd' END +SET [Description] = 'Plains Indian Sign Language', [Definition] = NULL, [SortOrder] = 5625.00 WHERE [Code] = 'psd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmw', 'Plains Miwok', NULL, 561.90) END +VALUES ('pmw', 'Plains Miwok', NULL, 5626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plains Miwok', [Definition] = NULL, [SortOrder] = 561.90 WHERE [Code] = 'pmw' END +SET [Description] = 'Plains Miwok', [Definition] = NULL, [SortOrder] = 5626.00 WHERE [Code] = 'pmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ktj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ktj', 'Plapo Krumen', NULL, 562.00) END +VALUES ('ktj', 'Plapo Krumen', NULL, 5627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plapo Krumen', [Definition] = NULL, [SortOrder] = 562.00 WHERE [Code] = 'ktj' END +SET [Description] = 'Plapo Krumen', [Definition] = NULL, [SortOrder] = 5627.00 WHERE [Code] = 'ktj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plt', 'Plateau Malagasy', NULL, 562.10) END +VALUES ('plt', 'Plateau Malagasy', NULL, 5628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plateau Malagasy', [Definition] = NULL, [SortOrder] = 562.10 WHERE [Code] = 'plt' END +SET [Description] = 'Plateau Malagasy', [Definition] = NULL, [SortOrder] = 5628.00 WHERE [Code] = 'plt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdt', 'Plautdietsch', NULL, 562.20) END +VALUES ('pdt', 'Plautdietsch', NULL, 5629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Plautdietsch', [Definition] = NULL, [SortOrder] = 562.20 WHERE [Code] = 'pdt' END +SET [Description] = 'Plautdietsch', [Definition] = NULL, [SortOrder] = 5629.00 WHERE [Code] = 'pdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gob', 'Playero', NULL, 562.30) END +VALUES ('gob', 'Playero', NULL, 5630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Playero', [Definition] = NULL, [SortOrder] = 562.30 WHERE [Code] = 'gob' END +SET [Description] = 'Playero', [Definition] = NULL, [SortOrder] = 5630.00 WHERE [Code] = 'gob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbv', 'Pnar', NULL, 562.40) END +VALUES ('pbv', 'Pnar', NULL, 5631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pnar', [Definition] = NULL, [SortOrder] = 562.40 WHERE [Code] = 'pbv' END +SET [Description] = 'Pnar', [Definition] = NULL, [SortOrder] = 5631.00 WHERE [Code] = 'pbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npo', 'Pochuri Naga', NULL, 562.50) END +VALUES ('npo', 'Pochuri Naga', NULL, 5632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pochuri Naga', [Definition] = NULL, [SortOrder] = 562.50 WHERE [Code] = 'npo' END +SET [Description] = 'Pochuri Naga', [Definition] = NULL, [SortOrder] = 5632.00 WHERE [Code] = 'npo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpo', 'Pochutec', NULL, 562.60) END +VALUES ('xpo', 'Pochutec', NULL, 5633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pochutec', [Definition] = NULL, [SortOrder] = 562.60 WHERE [Code] = 'xpo' END +SET [Description] = 'Pochutec', [Definition] = NULL, [SortOrder] = 5633.00 WHERE [Code] = 'xpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pdn', 'Podena', NULL, 562.70) END +VALUES ('pdn', 'Podena', NULL, 5634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Podena', [Definition] = NULL, [SortOrder] = 562.70 WHERE [Code] = 'pdn' END +SET [Description] = 'Podena', [Definition] = NULL, [SortOrder] = 5634.00 WHERE [Code] = 'pdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poy', 'Pogolo', NULL, 562.80) END +VALUES ('poy', 'Pogolo', NULL, 5635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pogolo', [Definition] = NULL, [SortOrder] = 562.80 WHERE [Code] = 'poy' END +SET [Description] = 'Pogolo', [Definition] = NULL, [SortOrder] = 5635.00 WHERE [Code] = 'poy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pon', 'Pohnpeian', NULL, 562.90) END +VALUES ('pon', 'Pohnpeian', NULL, 5636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pohnpeian', [Definition] = NULL, [SortOrder] = 562.90 WHERE [Code] = 'pon' END +SET [Description] = 'Pohnpeian', [Definition] = NULL, [SortOrder] = 5636.00 WHERE [Code] = 'pon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pok', 'Pokangá', NULL, 563.00) END +VALUES ('pok', 'Pokangá', NULL, 5637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pokangá', [Definition] = NULL, [SortOrder] = 563.00 WHERE [Code] = 'pok' END +SET [Description] = 'Pokangá', [Definition] = NULL, [SortOrder] = 5637.00 WHERE [Code] = 'pok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pof', 'Poke', NULL, 563.10) END +VALUES ('pof', 'Poke', NULL, 5638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poke', [Definition] = NULL, [SortOrder] = 563.10 WHERE [Code] = 'pof' END +SET [Description] = 'Poke', [Definition] = NULL, [SortOrder] = 5638.00 WHERE [Code] = 'pof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkb', 'Pokomo', NULL, 563.20) END +VALUES ('pkb', 'Pokomo', NULL, 5639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pokomo', [Definition] = NULL, [SortOrder] = 563.20 WHERE [Code] = 'pkb' END +SET [Description] = 'Pokomo', [Definition] = NULL, [SortOrder] = 5639.00 WHERE [Code] = 'pkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pko', 'Pökoot', NULL, 563.30) END +VALUES ('pko', 'Pökoot', NULL, 5640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pökoot', [Definition] = NULL, [SortOrder] = 563.30 WHERE [Code] = 'pko' END +SET [Description] = 'Pökoot', [Definition] = NULL, [SortOrder] = 5640.00 WHERE [Code] = 'pko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pox', 'Polabian', NULL, 563.40) END +VALUES ('pox', 'Polabian', NULL, 5641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polabian', [Definition] = NULL, [SortOrder] = 563.40 WHERE [Code] = 'pox' END +SET [Description] = 'Polabian', [Definition] = NULL, [SortOrder] = 5641.00 WHERE [Code] = 'pox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pld', 'Polari', NULL, 563.50) END +VALUES ('pld', 'Polari', NULL, 5642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polari', [Definition] = NULL, [SortOrder] = 563.50 WHERE [Code] = 'pld' END +SET [Description] = 'Polari', [Definition] = NULL, [SortOrder] = 5642.00 WHERE [Code] = 'pld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plj', 'Polci', NULL, 563.60) END +VALUES ('plj', 'Polci', NULL, 5643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polci', [Definition] = NULL, [SortOrder] = 563.60 WHERE [Code] = 'plj' END +SET [Description] = 'Polci', [Definition] = NULL, [SortOrder] = 5643.00 WHERE [Code] = 'plj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pol', 'Polish', NULL, 563.70) END +VALUES ('pol', 'Polish', NULL, 5644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polish', [Definition] = NULL, [SortOrder] = 563.70 WHERE [Code] = 'pol' END +SET [Description] = 'Polish', [Definition] = NULL, [SortOrder] = 5644.00 WHERE [Code] = 'pol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pso', 'Polish Sign Language', NULL, 563.80) END +VALUES ('pso', 'Polish Sign Language', NULL, 5645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polish Sign Language', [Definition] = NULL, [SortOrder] = 563.80 WHERE [Code] = 'pso' END +SET [Description] = 'Polish Sign Language', [Definition] = NULL, [SortOrder] = 5645.00 WHERE [Code] = 'pso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plb', 'Polonombauk', NULL, 563.90) END +VALUES ('plb', 'Polonombauk', NULL, 5646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Polonombauk', [Definition] = NULL, [SortOrder] = 563.90 WHERE [Code] = 'plb' END +SET [Description] = 'Polonombauk', [Definition] = NULL, [SortOrder] = 5646.00 WHERE [Code] = 'plb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmo', 'Pom', NULL, 564.00) END +VALUES ('pmo', 'Pom', NULL, 5647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pom', [Definition] = NULL, [SortOrder] = 564.00 WHERE [Code] = 'pmo' END +SET [Description] = 'Pom', [Definition] = NULL, [SortOrder] = 5647.00 WHERE [Code] = 'pmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmm', 'Pomo', NULL, 564.10) END +VALUES ('pmm', 'Pomo', NULL, 5648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pomo', [Definition] = NULL, [SortOrder] = 564.10 WHERE [Code] = 'pmm' END +SET [Description] = 'Pomo', [Definition] = NULL, [SortOrder] = 5648.00 WHERE [Code] = 'pmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ncc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ncc', 'Ponam', NULL, 564.20) END +VALUES ('ncc', 'Ponam', NULL, 5649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ponam', [Definition] = NULL, [SortOrder] = 564.20 WHERE [Code] = 'ncc' END +SET [Description] = 'Ponam', [Definition] = NULL, [SortOrder] = 5649.00 WHERE [Code] = 'ncc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pns', 'Ponosakan', NULL, 564.30) END +VALUES ('pns', 'Ponosakan', NULL, 5650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ponosakan', [Definition] = NULL, [SortOrder] = 564.30 WHERE [Code] = 'pns' END +SET [Description] = 'Ponosakan', [Definition] = NULL, [SortOrder] = 5650.00 WHERE [Code] = 'pns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnt', 'Pontic', NULL, 564.40) END +VALUES ('pnt', 'Pontic', NULL, 5651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pontic', [Definition] = NULL, [SortOrder] = 564.40 WHERE [Code] = 'pnt' END +SET [Description] = 'Pontic', [Definition] = NULL, [SortOrder] = 5651.00 WHERE [Code] = 'pnt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npg', 'Ponyo-Gongwang Naga', NULL, 564.50) END +VALUES ('npg', 'Ponyo-Gongwang Naga', NULL, 5652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ponyo-Gongwang Naga', [Definition] = NULL, [SortOrder] = 564.50 WHERE [Code] = 'npg' END +SET [Description] = 'Ponyo-Gongwang Naga', [Definition] = NULL, [SortOrder] = 5652.00 WHERE [Code] = 'npg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jac', 'Popti''', NULL, 564.60) END +VALUES ('jac', 'Popti''', NULL, 5653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Popti''', [Definition] = NULL, [SortOrder] = 564.60 WHERE [Code] = 'jac' END +SET [Description] = 'Popti''', [Definition] = NULL, [SortOrder] = 5653.00 WHERE [Code] = 'jac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poc', 'Poqomam', NULL, 564.70) END +VALUES ('poc', 'Poqomam', NULL, 5654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poqomam', [Definition] = NULL, [SortOrder] = 564.70 WHERE [Code] = 'poc' END +SET [Description] = 'Poqomam', [Definition] = NULL, [SortOrder] = 5654.00 WHERE [Code] = 'poc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poh', 'Poqomchi''', NULL, 564.80) END +VALUES ('poh', 'Poqomchi''', NULL, 5655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poqomchi''', [Definition] = NULL, [SortOrder] = 564.80 WHERE [Code] = 'poh' END +SET [Description] = 'Poqomchi''', [Definition] = NULL, [SortOrder] = 5655.00 WHERE [Code] = 'poh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prh', 'Porohanon', NULL, 564.90) END +VALUES ('prh', 'Porohanon', NULL, 5656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Porohanon', [Definition] = NULL, [SortOrder] = 564.90 WHERE [Code] = 'prh' END +SET [Description] = 'Porohanon', [Definition] = NULL, [SortOrder] = 5656.00 WHERE [Code] = 'prh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psw', 'Port Sandwich', NULL, 565.00) END +VALUES ('psw', 'Port Sandwich', NULL, 5657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Port Sandwich', [Definition] = NULL, [SortOrder] = 565.00 WHERE [Code] = 'psw' END +SET [Description] = 'Port Sandwich', [Definition] = NULL, [SortOrder] = 5657.00 WHERE [Code] = 'psw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpl', 'Port Sorell Tasmanian', NULL, 565.10) END +VALUES ('xpl', 'Port Sorell Tasmanian', NULL, 5658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Port Sorell Tasmanian', [Definition] = NULL, [SortOrder] = 565.10 WHERE [Code] = 'xpl' END +SET [Description] = 'Port Sorell Tasmanian', [Definition] = NULL, [SortOrder] = 5658.00 WHERE [Code] = 'xpl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ptv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ptv', 'Port Vato', NULL, 565.20) END +VALUES ('ptv', 'Port Vato', NULL, 5659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Port Vato', [Definition] = NULL, [SortOrder] = 565.20 WHERE [Code] = 'ptv' END +SET [Description] = 'Port Vato', [Definition] = NULL, [SortOrder] = 5659.00 WHERE [Code] = 'ptv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'por') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('por', 'Portuguese', NULL, 565.30) END +VALUES ('por', 'Portuguese', NULL, 5660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Portuguese', [Definition] = NULL, [SortOrder] = 565.30 WHERE [Code] = 'por' END +SET [Description] = 'Portuguese', [Definition] = NULL, [SortOrder] = 5660.00 WHERE [Code] = 'por' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psr', 'Portuguese Sign Language', NULL, 565.40) END +VALUES ('psr', 'Portuguese Sign Language', NULL, 5661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Portuguese Sign Language', [Definition] = NULL, [SortOrder] = 565.40 WHERE [Code] = 'psr' END +SET [Description] = 'Portuguese Sign Language', [Definition] = NULL, [SortOrder] = 5661.00 WHERE [Code] = 'psr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pot', 'Potawatomi', NULL, 565.50) END +VALUES ('pot', 'Potawatomi', NULL, 5662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Potawatomi', [Definition] = NULL, [SortOrder] = 565.50 WHERE [Code] = 'pot' END +SET [Description] = 'Potawatomi', [Definition] = NULL, [SortOrder] = 5662.00 WHERE [Code] = 'pot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pog', 'Potiguára', NULL, 565.60) END +VALUES ('pog', 'Potiguára', NULL, 5663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Potiguára', [Definition] = NULL, [SortOrder] = 565.60 WHERE [Code] = 'pog' END +SET [Description] = 'Potiguára', [Definition] = NULL, [SortOrder] = 5663.00 WHERE [Code] = 'pog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdb', 'Pottangi Ollar Gadaba', NULL, 565.70) END +VALUES ('gdb', 'Pottangi Ollar Gadaba', NULL, 5664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pottangi Ollar Gadaba', [Definition] = NULL, [SortOrder] = 565.70 WHERE [Code] = 'gdb' END +SET [Description] = 'Pottangi Ollar Gadaba', [Definition] = NULL, [SortOrder] = 5664.00 WHERE [Code] = 'gdb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmx', 'Poumei Naga', NULL, 565.80) END +VALUES ('pmx', 'Poumei Naga', NULL, 5665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poumei Naga', [Definition] = NULL, [SortOrder] = 565.80 WHERE [Code] = 'pmx' END +SET [Description] = 'Poumei Naga', [Definition] = NULL, [SortOrder] = 5665.00 WHERE [Code] = 'pmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bye', 'Pouye', NULL, 565.90) END +VALUES ('bye', 'Pouye', NULL, 5666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pouye', [Definition] = NULL, [SortOrder] = 565.90 WHERE [Code] = 'bye' END +SET [Description] = 'Pouye', [Definition] = NULL, [SortOrder] = 5666.00 WHERE [Code] = 'bye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwr', 'Powari', NULL, 566.00) END +VALUES ('pwr', 'Powari', NULL, 5667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Powari', [Definition] = NULL, [SortOrder] = 566.00 WHERE [Code] = 'pwr' END +SET [Description] = 'Powari', [Definition] = NULL, [SortOrder] = 5667.00 WHERE [Code] = 'pwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pim', 'Powhatan', NULL, 566.10) END +VALUES ('pim', 'Powhatan', NULL, 5668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Powhatan', [Definition] = NULL, [SortOrder] = 566.10 WHERE [Code] = 'pim' END +SET [Description] = 'Powhatan', [Definition] = NULL, [SortOrder] = 5668.00 WHERE [Code] = 'pim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pyn', 'Poyanáwa', NULL, 566.20) END +VALUES ('pyn', 'Poyanáwa', NULL, 5669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Poyanáwa', [Definition] = NULL, [SortOrder] = 566.20 WHERE [Code] = 'pyn' END +SET [Description] = 'Poyanáwa', [Definition] = NULL, [SortOrder] = 5669.00 WHERE [Code] = 'pyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prn', 'Prasuni', NULL, 566.30) END +VALUES ('prn', 'Prasuni', NULL, 5670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Prasuni', [Definition] = NULL, [SortOrder] = 566.30 WHERE [Code] = 'prn' END +SET [Description] = 'Prasuni', [Definition] = NULL, [SortOrder] = 5670.00 WHERE [Code] = 'prn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgl', 'Primitive Irish', NULL, 566.40) END +VALUES ('pgl', 'Primitive Irish', NULL, 5671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Primitive Irish', [Definition] = NULL, [SortOrder] = 566.40 WHERE [Code] = 'pgl' END +SET [Description] = 'Primitive Irish', [Definition] = NULL, [SortOrder] = 5671.00 WHERE [Code] = 'pgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pre', 'Principense', NULL, 566.50) END +VALUES ('pre', 'Principense', NULL, 5672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Principense', [Definition] = NULL, [SortOrder] = 566.50 WHERE [Code] = 'pre' END +SET [Description] = 'Principense', [Definition] = NULL, [SortOrder] = 5672.00 WHERE [Code] = 'pre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prz', 'Providencia Sign Language', NULL, 566.60) END +VALUES ('prz', 'Providencia Sign Language', NULL, 5673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Providencia Sign Language', [Definition] = NULL, [SortOrder] = 566.60 WHERE [Code] = 'prz' END +SET [Description] = 'Providencia Sign Language', [Definition] = NULL, [SortOrder] = 5673.00 WHERE [Code] = 'prz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prg', 'Prussian', NULL, 566.70) END +VALUES ('prg', 'Prussian', NULL, 5674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Prussian', [Definition] = NULL, [SortOrder] = 566.70 WHERE [Code] = 'prg' END +SET [Description] = 'Prussian', [Definition] = NULL, [SortOrder] = 5674.00 WHERE [Code] = 'prg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvj', 'Psikye', NULL, 566.80) END +VALUES ('kvj', 'Psikye', NULL, 5675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Psikye', [Definition] = NULL, [SortOrder] = 566.80 WHERE [Code] = 'kvj' END +SET [Description] = 'Psikye', [Definition] = NULL, [SortOrder] = 5675.00 WHERE [Code] = 'kvj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpx', 'Pu-Xian Chinese', NULL, 566.90) END +VALUES ('cpx', 'Pu-Xian Chinese', NULL, 5676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pu-Xian Chinese', [Definition] = NULL, [SortOrder] = 566.90 WHERE [Code] = 'cpx' END +SET [Description] = 'Pu-Xian Chinese', [Definition] = NULL, [SortOrder] = 5676.00 WHERE [Code] = 'cpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pux', 'Puare', NULL, 567.00) END +VALUES ('pux', 'Puare', NULL, 5677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puare', [Definition] = NULL, [SortOrder] = 567.00 WHERE [Code] = 'pux' END +SET [Description] = 'Puare', [Definition] = NULL, [SortOrder] = 5677.00 WHERE [Code] = 'pux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atp', 'Pudtol Atta', NULL, 567.10) END +VALUES ('atp', 'Pudtol Atta', NULL, 5678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pudtol Atta', [Definition] = NULL, [SortOrder] = 567.10 WHERE [Code] = 'atp' END +SET [Description] = 'Pudtol Atta', [Definition] = NULL, [SortOrder] = 5678.00 WHERE [Code] = 'atp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbm', 'Puebla Mazatec', NULL, 567.20) END +VALUES ('pbm', 'Puebla Mazatec', NULL, 5679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puebla Mazatec', [Definition] = NULL, [SortOrder] = 567.20 WHERE [Code] = 'pbm' END +SET [Description] = 'Puebla Mazatec', [Definition] = NULL, [SortOrder] = 5679.00 WHERE [Code] = 'pbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pue', 'Puelche', NULL, 567.30) END +VALUES ('pue', 'Puelche', NULL, 5680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puelche', [Definition] = NULL, [SortOrder] = 567.30 WHERE [Code] = 'pue' END +SET [Description] = 'Puelche', [Definition] = NULL, [SortOrder] = 5680.00 WHERE [Code] = 'pue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psl', 'Puerto Rican Sign Language', NULL, 567.40) END +VALUES ('psl', 'Puerto Rican Sign Language', NULL, 5681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puerto Rican Sign Language', [Definition] = NULL, [SortOrder] = 567.40 WHERE [Code] = 'psl' END +SET [Description] = 'Puerto Rican Sign Language', [Definition] = NULL, [SortOrder] = 5681.00 WHERE [Code] = 'psl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npu', 'Puimei Naga', NULL, 567.50) END +VALUES ('npu', 'Puimei Naga', NULL, 5682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puimei Naga', [Definition] = NULL, [SortOrder] = 567.50 WHERE [Code] = 'npu' END +SET [Description] = 'Puimei Naga', [Definition] = NULL, [SortOrder] = 5682.00 WHERE [Code] = 'npu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pui', 'Puinave', NULL, 567.60) END +VALUES ('pui', 'Puinave', NULL, 5683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puinave', [Definition] = NULL, [SortOrder] = 567.60 WHERE [Code] = 'pui' END +SET [Description] = 'Puinave', [Definition] = NULL, [SortOrder] = 5683.00 WHERE [Code] = 'pui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pkp', 'Pukapuka', NULL, 567.70) END +VALUES ('pkp', 'Pukapuka', NULL, 5684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pukapuka', [Definition] = NULL, [SortOrder] = 567.70 WHERE [Code] = 'pkp' END +SET [Description] = 'Pukapuka', [Definition] = NULL, [SortOrder] = 5684.00 WHERE [Code] = 'pkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuc', 'Pulaar', NULL, 567.80) END +VALUES ('fuc', 'Pulaar', NULL, 5685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pulaar', [Definition] = NULL, [SortOrder] = 567.80 WHERE [Code] = 'fuc' END +SET [Description] = 'Pulaar', [Definition] = NULL, [SortOrder] = 5685.00 WHERE [Code] = 'fuc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pup', 'Pulabu', NULL, 567.90) END +VALUES ('pup', 'Pulabu', NULL, 5686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pulabu', [Definition] = NULL, [SortOrder] = 567.90 WHERE [Code] = 'pup' END +SET [Description] = 'Pulabu', [Definition] = NULL, [SortOrder] = 5686.00 WHERE [Code] = 'pup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuf', 'Pular', NULL, 568.00) END +VALUES ('fuf', 'Pular', NULL, 5687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pular', [Definition] = NULL, [SortOrder] = 568.00 WHERE [Code] = 'fuf' END +SET [Description] = 'Pular', [Definition] = NULL, [SortOrder] = 5687.00 WHERE [Code] = 'fuf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puw', 'Puluwatese', NULL, 568.10) END +VALUES ('puw', 'Puluwatese', NULL, 5688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puluwatese', [Definition] = NULL, [SortOrder] = 568.10 WHERE [Code] = 'puw' END +SET [Description] = 'Puluwatese', [Definition] = NULL, [SortOrder] = 5688.00 WHERE [Code] = 'puw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pum', 'Puma', NULL, 568.20) END +VALUES ('pum', 'Puma', NULL, 5689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puma', [Definition] = NULL, [SortOrder] = 568.20 WHERE [Code] = 'pum' END +SET [Description] = 'Puma', [Definition] = NULL, [SortOrder] = 5689.00 WHERE [Code] = 'pum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yae', 'Pumé', NULL, 568.30) END +VALUES ('yae', 'Pumé', NULL, 5690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pumé', [Definition] = NULL, [SortOrder] = 568.30 WHERE [Code] = 'yae' END +SET [Description] = 'Pumé', [Definition] = NULL, [SortOrder] = 5690.00 WHERE [Code] = 'yae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpm', 'Pumpokol', NULL, 568.40) END +VALUES ('xpm', 'Pumpokol', NULL, 5691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pumpokol', [Definition] = NULL, [SortOrder] = 568.40 WHERE [Code] = 'xpm' END +SET [Description] = 'Pumpokol', [Definition] = NULL, [SortOrder] = 5691.00 WHERE [Code] = 'xpm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pud', 'Punan Aput', NULL, 568.50) END +VALUES ('pud', 'Punan Aput', NULL, 5692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Aput', [Definition] = NULL, [SortOrder] = 568.50 WHERE [Code] = 'pud' END +SET [Description] = 'Punan Aput', [Definition] = NULL, [SortOrder] = 5692.00 WHERE [Code] = 'pud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pna', 'Punan Bah-Biau', NULL, 568.60) END +VALUES ('pna', 'Punan Bah-Biau', NULL, 5693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Bah-Biau', [Definition] = NULL, [SortOrder] = 568.60 WHERE [Code] = 'pna' END +SET [Description] = 'Punan Bah-Biau', [Definition] = NULL, [SortOrder] = 5693.00 WHERE [Code] = 'pna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnm', 'Punan Batu 1', NULL, 568.70) END +VALUES ('pnm', 'Punan Batu 1', NULL, 5694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Batu 1', [Definition] = NULL, [SortOrder] = 568.70 WHERE [Code] = 'pnm' END +SET [Description] = 'Punan Batu 1', [Definition] = NULL, [SortOrder] = 5694.00 WHERE [Code] = 'pnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puf', 'Punan Merah', NULL, 568.80) END +VALUES ('puf', 'Punan Merah', NULL, 5695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Merah', [Definition] = NULL, [SortOrder] = 568.80 WHERE [Code] = 'puf' END +SET [Description] = 'Punan Merah', [Definition] = NULL, [SortOrder] = 5695.00 WHERE [Code] = 'puf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puc', 'Punan Merap', NULL, 568.90) END +VALUES ('puc', 'Punan Merap', NULL, 5696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Merap', [Definition] = NULL, [SortOrder] = 568.90 WHERE [Code] = 'puc' END +SET [Description] = 'Punan Merap', [Definition] = NULL, [SortOrder] = 5696.00 WHERE [Code] = 'puc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puj', 'Punan Tubu', NULL, 569.00) END +VALUES ('puj', 'Punan Tubu', NULL, 5697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punan Tubu', [Definition] = NULL, [SortOrder] = 569.00 WHERE [Code] = 'puj' END +SET [Description] = 'Punan Tubu', [Definition] = NULL, [SortOrder] = 5697.00 WHERE [Code] = 'puj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpu', 'Punic', NULL, 569.10) END +VALUES ('xpu', 'Punic', NULL, 5698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punic', [Definition] = NULL, [SortOrder] = 569.10 WHERE [Code] = 'xpu' END +SET [Description] = 'Punic', [Definition] = NULL, [SortOrder] = 5698.00 WHERE [Code] = 'xpu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxp', 'Puno Quechua', NULL, 569.20) END +VALUES ('qxp', 'Puno Quechua', NULL, 5699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puno Quechua', [Definition] = NULL, [SortOrder] = 569.20 WHERE [Code] = 'qxp' END +SET [Description] = 'Puno Quechua', [Definition] = NULL, [SortOrder] = 5699.00 WHERE [Code] = 'qxp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpt', 'Punthamara', NULL, 569.30) END +VALUES ('xpt', 'Punthamara', NULL, 5700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punthamara', [Definition] = NULL, [SortOrder] = 569.30 WHERE [Code] = 'xpt' END +SET [Description] = 'Punthamara', [Definition] = NULL, [SortOrder] = 5700.00 WHERE [Code] = 'xpt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puu', 'Punu', NULL, 569.40) END +VALUES ('puu', 'Punu', NULL, 5701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Punu', [Definition] = NULL, [SortOrder] = 569.40 WHERE [Code] = 'puu' END +SET [Description] = 'Punu', [Definition] = NULL, [SortOrder] = 5701.00 WHERE [Code] = 'puu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puo', 'Puoc', NULL, 569.50) END +VALUES ('puo', 'Puoc', NULL, 5702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puoc', [Definition] = NULL, [SortOrder] = 569.50 WHERE [Code] = 'puo' END +SET [Description] = 'Puoc', [Definition] = NULL, [SortOrder] = 5702.00 WHERE [Code] = 'puo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puq', 'Puquina', NULL, 569.60) END +VALUES ('puq', 'Puquina', NULL, 5703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puquina', [Definition] = NULL, [SortOrder] = 569.60 WHERE [Code] = 'puq' END +SET [Description] = 'Puquina', [Definition] = NULL, [SortOrder] = 5703.00 WHERE [Code] = 'puq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pru', 'Puragi', NULL, 569.70) END +VALUES ('pru', 'Puragi', NULL, 5704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puragi', [Definition] = NULL, [SortOrder] = 569.70 WHERE [Code] = 'pru' END +SET [Description] = 'Puragi', [Definition] = NULL, [SortOrder] = 5704.00 WHERE [Code] = 'pru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iar', 'Purari', NULL, 569.80) END +VALUES ('iar', 'Purari', NULL, 5705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purari', [Definition] = NULL, [SortOrder] = 569.80 WHERE [Code] = 'iar' END +SET [Description] = 'Purari', [Definition] = NULL, [SortOrder] = 5705.00 WHERE [Code] = 'iar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsz', 'Purepecha', NULL, 569.90) END +VALUES ('tsz', 'Purepecha', NULL, 5706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purepecha', [Definition] = NULL, [SortOrder] = 569.90 WHERE [Code] = 'tsz' END +SET [Description] = 'Purepecha', [Definition] = NULL, [SortOrder] = 5706.00 WHERE [Code] = 'tsz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prr', 'Puri', NULL, 570.00) END +VALUES ('prr', 'Puri', NULL, 5707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puri', [Definition] = NULL, [SortOrder] = 570.00 WHERE [Code] = 'prr' END +SET [Description] = 'Puri', [Definition] = NULL, [SortOrder] = 5707.00 WHERE [Code] = 'prr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'prx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('prx', 'Purik', NULL, 570.10) END +VALUES ('prx', 'Purik', NULL, 5708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purik', [Definition] = NULL, [SortOrder] = 570.10 WHERE [Code] = 'prx' END +SET [Description] = 'Purik', [Definition] = NULL, [SortOrder] = 5708.00 WHERE [Code] = 'prx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'puy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('puy', 'Purisimeño', NULL, 570.20) END +VALUES ('puy', 'Purisimeño', NULL, 5709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purisimeño', [Definition] = NULL, [SortOrder] = 570.20 WHERE [Code] = 'puy' END +SET [Description] = 'Purisimeño', [Definition] = NULL, [SortOrder] = 5709.00 WHERE [Code] = 'puy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suv', 'Puroik', NULL, 570.30) END +VALUES ('suv', 'Puroik', NULL, 5710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puroik', [Definition] = NULL, [SortOrder] = 570.30 WHERE [Code] = 'suv' END +SET [Description] = 'Puroik', [Definition] = NULL, [SortOrder] = 5710.00 WHERE [Code] = 'suv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pur', 'Puruborá', NULL, 570.40) END +VALUES ('pur', 'Puruborá', NULL, 5711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puruborá', [Definition] = NULL, [SortOrder] = 570.40 WHERE [Code] = 'pur' END +SET [Description] = 'Puruborá', [Definition] = NULL, [SortOrder] = 5711.00 WHERE [Code] = 'pur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pub', 'Purum', NULL, 570.50) END +VALUES ('pub', 'Purum', NULL, 5712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Purum', [Definition] = NULL, [SortOrder] = 570.50 WHERE [Code] = 'pub' END +SET [Description] = 'Purum', [Definition] = NULL, [SortOrder] = 5712.00 WHERE [Code] = 'pub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pus', 'Pushto', NULL, 570.60) END +VALUES ('pus', 'Pushto', NULL, 5713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pushto', [Definition] = NULL, [SortOrder] = 570.60 WHERE [Code] = 'pus' END +SET [Description] = 'Pushto', [Definition] = NULL, [SortOrder] = 5713.00 WHERE [Code] = 'pus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfl', 'Putai', NULL, 570.70) END +VALUES ('mfl', 'Putai', NULL, 5714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Putai', [Definition] = NULL, [SortOrder] = 570.70 WHERE [Code] = 'mfl' END +SET [Description] = 'Putai', [Definition] = NULL, [SortOrder] = 5714.00 WHERE [Code] = 'mfl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'put') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('put', 'Putoh', NULL, 570.80) END +VALUES ('put', 'Putoh', NULL, 5715.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Putoh', [Definition] = NULL, [SortOrder] = 570.80 WHERE [Code] = 'put' END +SET [Description] = 'Putoh', [Definition] = NULL, [SortOrder] = 5715.00 WHERE [Code] = 'put' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afe', 'Putukwam', NULL, 570.90) END +VALUES ('afe', 'Putukwam', NULL, 5716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Putukwam', [Definition] = NULL, [SortOrder] = 570.90 WHERE [Code] = 'afe' END +SET [Description] = 'Putukwam', [Definition] = NULL, [SortOrder] = 5716.00 WHERE [Code] = 'afe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpy', 'Puyo', NULL, 571.00) END +VALUES ('xpy', 'Puyo', NULL, 5717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puyo', [Definition] = NULL, [SortOrder] = 571.00 WHERE [Code] = 'xpy' END +SET [Description] = 'Puyo', [Definition] = NULL, [SortOrder] = 5717.00 WHERE [Code] = 'xpy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpp', 'Puyo-Paekche', NULL, 571.10) END +VALUES ('xpp', 'Puyo-Paekche', NULL, 5718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puyo-Paekche', [Definition] = NULL, [SortOrder] = 571.10 WHERE [Code] = 'xpp' END +SET [Description] = 'Puyo-Paekche', [Definition] = NULL, [SortOrder] = 5718.00 WHERE [Code] = 'xpp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pyu', 'Puyuma', NULL, 571.20) END +VALUES ('pyu', 'Puyuma', NULL, 5719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Puyuma', [Definition] = NULL, [SortOrder] = 571.20 WHERE [Code] = 'pyu' END +SET [Description] = 'Puyuma', [Definition] = NULL, [SortOrder] = 5719.00 WHERE [Code] = 'pyu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pme', 'Pwaamei', NULL, 571.30) END +VALUES ('pme', 'Pwaamei', NULL, 5720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwaamei', [Definition] = NULL, [SortOrder] = 571.30 WHERE [Code] = 'pme' END +SET [Description] = 'Pwaamei', [Definition] = NULL, [SortOrder] = 5720.00 WHERE [Code] = 'pme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pop', 'Pwapwâ', NULL, 571.40) END +VALUES ('pop', 'Pwapwâ', NULL, 5721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwapwâ', [Definition] = NULL, [SortOrder] = 571.40 WHERE [Code] = 'pop' END +SET [Description] = 'Pwapwâ', [Definition] = NULL, [SortOrder] = 5721.00 WHERE [Code] = 'pop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjp', 'Pwo Eastern Karen', NULL, 571.50) END +VALUES ('kjp', 'Pwo Eastern Karen', NULL, 5722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwo Eastern Karen', [Definition] = NULL, [SortOrder] = 571.50 WHERE [Code] = 'kjp' END +SET [Description] = 'Pwo Eastern Karen', [Definition] = NULL, [SortOrder] = 5722.00 WHERE [Code] = 'kjp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pww', 'Pwo Northern Karen', NULL, 571.60) END +VALUES ('pww', 'Pwo Northern Karen', NULL, 5723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwo Northern Karen', [Definition] = NULL, [SortOrder] = 571.60 WHERE [Code] = 'pww' END +SET [Description] = 'Pwo Northern Karen', [Definition] = NULL, [SortOrder] = 5723.00 WHERE [Code] = 'pww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pwo', 'Pwo Western Karen', NULL, 571.70) END +VALUES ('pwo', 'Pwo Western Karen', NULL, 5724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pwo Western Karen', [Definition] = NULL, [SortOrder] = 571.70 WHERE [Code] = 'pwo' END +SET [Description] = 'Pwo Western Karen', [Definition] = NULL, [SortOrder] = 5724.00 WHERE [Code] = 'pwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pcw', 'Pyapun', NULL, 571.80) END +VALUES ('pcw', 'Pyapun', NULL, 5725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pyapun', [Definition] = NULL, [SortOrder] = 571.80 WHERE [Code] = 'pcw' END +SET [Description] = 'Pyapun', [Definition] = NULL, [SortOrder] = 5725.00 WHERE [Code] = 'pcw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pye') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pye', 'Pye Krumen', NULL, 571.90) END +VALUES ('pye', 'Pye Krumen', NULL, 5726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pye Krumen', [Definition] = NULL, [SortOrder] = 571.90 WHERE [Code] = 'pye' END +SET [Description] = 'Pye Krumen', [Definition] = NULL, [SortOrder] = 5726.00 WHERE [Code] = 'pye' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pyy', 'Pyen', NULL, 572.00) END +VALUES ('pyy', 'Pyen', NULL, 5727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pyen', [Definition] = NULL, [SortOrder] = 572.00 WHERE [Code] = 'pyy' END +SET [Description] = 'Pyen', [Definition] = NULL, [SortOrder] = 5727.00 WHERE [Code] = 'pyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pyx', 'Pyu (Myanmar)', NULL, 572.10) END +VALUES ('pyx', 'Pyu (Myanmar)', NULL, 5728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pyu (Myanmar)', [Definition] = NULL, [SortOrder] = 572.10 WHERE [Code] = 'pyx' END +SET [Description] = 'Pyu (Myanmar)', [Definition] = NULL, [SortOrder] = 5728.00 WHERE [Code] = 'pyx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pby', 'Pyu (Papua New Guinea)', NULL, 572.20) END +VALUES ('pby', 'Pyu (Papua New Guinea)', NULL, 5729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Pyu (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 572.20 WHERE [Code] = 'pby' END +SET [Description] = 'Pyu (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 5729.00 WHERE [Code] = 'pby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjb', 'Q''anjob''al', NULL, 572.30) END +VALUES ('kjb', 'Q''anjob''al', NULL, 5730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Q''anjob''al', [Definition] = NULL, [SortOrder] = 572.30 WHERE [Code] = 'kjb' END +SET [Description] = 'Q''anjob''al', [Definition] = NULL, [SortOrder] = 5730.00 WHERE [Code] = 'kjb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laq', 'Qabiao', NULL, 572.40) END +VALUES ('laq', 'Qabiao', NULL, 5731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qabiao', [Definition] = NULL, [SortOrder] = 572.40 WHERE [Code] = 'laq' END +SET [Description] = 'Qabiao', [Definition] = NULL, [SortOrder] = 5731.00 WHERE [Code] = 'laq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byx', 'Qaqet', NULL, 572.50) END +VALUES ('byx', 'Qaqet', NULL, 5732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qaqet', [Definition] = NULL, [SortOrder] = 572.50 WHERE [Code] = 'byx' END +SET [Description] = 'Qaqet', [Definition] = NULL, [SortOrder] = 5732.00 WHERE [Code] = 'byx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxq', 'Qashqa''i', NULL, 572.60) END +VALUES ('qxq', 'Qashqa''i', NULL, 5733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qashqa''i', [Definition] = NULL, [SortOrder] = 572.60 WHERE [Code] = 'qxq' END +SET [Description] = 'Qashqa''i', [Definition] = NULL, [SortOrder] = 5733.00 WHERE [Code] = 'qxq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xqt', 'Qatabanian', NULL, 572.70) END +VALUES ('xqt', 'Qatabanian', NULL, 5734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qatabanian', [Definition] = NULL, [SortOrder] = 572.70 WHERE [Code] = 'xqt' END +SET [Description] = 'Qatabanian', [Definition] = NULL, [SortOrder] = 5734.00 WHERE [Code] = 'xqt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gqu', 'Qau', NULL, 572.80) END +VALUES ('gqu', 'Qau', NULL, 5735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qau', [Definition] = NULL, [SortOrder] = 572.80 WHERE [Code] = 'gqu' END +SET [Description] = 'Qau', [Definition] = NULL, [SortOrder] = 5735.00 WHERE [Code] = 'gqu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alc', 'Qawasqar', NULL, 572.90) END +VALUES ('alc', 'Qawasqar', NULL, 5736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qawasqar', [Definition] = NULL, [SortOrder] = 572.90 WHERE [Code] = 'alc' END +SET [Description] = 'Qawasqar', [Definition] = NULL, [SortOrder] = 5736.00 WHERE [Code] = 'alc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymq', 'Qila Muji', NULL, 573.00) END +VALUES ('ymq', 'Qila Muji', NULL, 5737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qila Muji', [Definition] = NULL, [SortOrder] = 573.00 WHERE [Code] = 'ymq' END +SET [Description] = 'Qila Muji', [Definition] = NULL, [SortOrder] = 5737.00 WHERE [Code] = 'ymq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahg', 'Qimant', NULL, 573.10) END +VALUES ('ahg', 'Qimant', NULL, 5738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qimant', [Definition] = NULL, [SortOrder] = 573.10 WHERE [Code] = 'ahg' END +SET [Description] = 'Qimant', [Definition] = NULL, [SortOrder] = 5738.00 WHERE [Code] = 'ahg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zqe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zqe', 'Qiubei Zhuang', NULL, 573.20) END +VALUES ('zqe', 'Qiubei Zhuang', NULL, 5739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Qiubei Zhuang', [Definition] = NULL, [SortOrder] = 573.20 WHERE [Code] = 'zqe' END +SET [Description] = 'Qiubei Zhuang', [Definition] = NULL, [SortOrder] = 5739.00 WHERE [Code] = 'zqe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qua', 'Quapaw', NULL, 573.30) END +VALUES ('qua', 'Quapaw', NULL, 5740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quapaw', [Definition] = NULL, [SortOrder] = 573.30 WHERE [Code] = 'qua' END +SET [Description] = 'Quapaw', [Definition] = NULL, [SortOrder] = 5740.00 WHERE [Code] = 'qua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fcs', 'Quebec Sign Language', NULL, 573.40) END +VALUES ('fcs', 'Quebec Sign Language', NULL, 5741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quebec Sign Language', [Definition] = NULL, [SortOrder] = 573.40 WHERE [Code] = 'fcs' END +SET [Description] = 'Quebec Sign Language', [Definition] = NULL, [SortOrder] = 5741.00 WHERE [Code] = 'fcs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yum', 'Quechan', NULL, 573.50) END +VALUES ('yum', 'Quechan', NULL, 5742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quechan', [Definition] = NULL, [SortOrder] = 573.50 WHERE [Code] = 'yum' END +SET [Description] = 'Quechan', [Definition] = NULL, [SortOrder] = 5742.00 WHERE [Code] = 'yum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'que') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('que', 'Quechua', NULL, 573.60) END +VALUES ('que', 'Quechua', NULL, 5743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quechua', [Definition] = NULL, [SortOrder] = 573.60 WHERE [Code] = 'que' END +SET [Description] = 'Quechua', [Definition] = NULL, [SortOrder] = 5743.00 WHERE [Code] = 'que' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qya', 'Quenya', NULL, 573.70) END +VALUES ('qya', 'Quenya', NULL, 5744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quenya', [Definition] = NULL, [SortOrder] = 573.70 WHERE [Code] = 'qya' END +SET [Description] = 'Quenya', [Definition] = NULL, [SortOrder] = 5744.00 WHERE [Code] = 'qya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otq', 'Querétaro Otomi', NULL, 573.80) END +VALUES ('otq', 'Querétaro Otomi', NULL, 5745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Querétaro Otomi', [Definition] = NULL, [SortOrder] = 573.80 WHERE [Code] = 'otq' END +SET [Description] = 'Querétaro Otomi', [Definition] = NULL, [SortOrder] = 5745.00 WHERE [Code] = 'otq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pxm', 'Quetzaltepec Mixe', NULL, 573.90) END +VALUES ('pxm', 'Quetzaltepec Mixe', NULL, 5746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quetzaltepec Mixe', [Definition] = NULL, [SortOrder] = 573.90 WHERE [Code] = 'pxm' END +SET [Description] = 'Quetzaltepec Mixe', [Definition] = NULL, [SortOrder] = 5746.00 WHERE [Code] = 'pxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvy', 'Queyu', NULL, 574.00) END +VALUES ('qvy', 'Queyu', NULL, 5747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Queyu', [Definition] = NULL, [SortOrder] = 574.00 WHERE [Code] = 'qvy' END +SET [Description] = 'Queyu', [Definition] = NULL, [SortOrder] = 5747.00 WHERE [Code] = 'qvy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpj', 'Quiavicuzas Zapotec', NULL, 574.10) END +VALUES ('zpj', 'Quiavicuzas Zapotec', NULL, 5748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quiavicuzas Zapotec', [Definition] = NULL, [SortOrder] = 574.10 WHERE [Code] = 'zpj' END +SET [Description] = 'Quiavicuzas Zapotec', [Definition] = NULL, [SortOrder] = 5748.00 WHERE [Code] = 'zpj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qui', 'Quileute', NULL, 574.20) END +VALUES ('qui', 'Quileute', NULL, 5749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quileute', [Definition] = NULL, [SortOrder] = 574.20 WHERE [Code] = 'qui' END +SET [Description] = 'Quileute', [Definition] = NULL, [SortOrder] = 5749.00 WHERE [Code] = 'qui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qun', 'Quinault', NULL, 574.30) END +VALUES ('qun', 'Quinault', NULL, 5750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quinault', [Definition] = NULL, [SortOrder] = 574.30 WHERE [Code] = 'qun' END +SET [Description] = 'Quinault', [Definition] = NULL, [SortOrder] = 5750.00 WHERE [Code] = 'qun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quq', 'Quinqui', NULL, 574.40) END +VALUES ('quq', 'Quinqui', NULL, 5751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quinqui', [Definition] = NULL, [SortOrder] = 574.40 WHERE [Code] = 'quq' END +SET [Description] = 'Quinqui', [Definition] = NULL, [SortOrder] = 5751.00 WHERE [Code] = 'quq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztq', 'Quioquitani-Quierí Zapotec', NULL, 574.50) END +VALUES ('ztq', 'Quioquitani-Quierí Zapotec', NULL, 5752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quioquitani-Quierí Zapotec', [Definition] = NULL, [SortOrder] = 574.50 WHERE [Code] = 'ztq' END +SET [Description] = 'Quioquitani-Quierí Zapotec', [Definition] = NULL, [SortOrder] = 5752.00 WHERE [Code] = 'ztq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chq', 'Quiotepec Chinantec', NULL, 574.60) END +VALUES ('chq', 'Quiotepec Chinantec', NULL, 5753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quiotepec Chinantec', [Definition] = NULL, [SortOrder] = 574.60 WHERE [Code] = 'chq' END +SET [Description] = 'Quiotepec Chinantec', [Definition] = NULL, [SortOrder] = 5753.00 WHERE [Code] = 'chq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qyp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qyp', 'Quiripi', NULL, 574.70) END +VALUES ('qyp', 'Quiripi', NULL, 5754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Quiripi', [Definition] = NULL, [SortOrder] = 574.70 WHERE [Code] = 'qyp' END +SET [Description] = 'Quiripi', [Definition] = NULL, [SortOrder] = 5754.00 WHERE [Code] = 'qyp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rah', 'Rabha', NULL, 574.80) END +VALUES ('rah', 'Rabha', NULL, 5755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rabha', [Definition] = NULL, [SortOrder] = 574.80 WHERE [Code] = 'rah' END +SET [Description] = 'Rabha', [Definition] = NULL, [SortOrder] = 5755.00 WHERE [Code] = 'rah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rad', 'Rade', NULL, 574.90) END +VALUES ('rad', 'Rade', NULL, 5756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rade', [Definition] = NULL, [SortOrder] = 574.90 WHERE [Code] = 'rad' END +SET [Description] = 'Rade', [Definition] = NULL, [SortOrder] = 5756.00 WHERE [Code] = 'rad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xrr', 'Raetic', NULL, 575.00) END +VALUES ('xrr', 'Raetic', NULL, 5757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Raetic', [Definition] = NULL, [SortOrder] = 575.00 WHERE [Code] = 'xrr' END +SET [Description] = 'Raetic', [Definition] = NULL, [SortOrder] = 5757.00 WHERE [Code] = 'xrr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raz', 'Rahambuu', NULL, 575.10) END +VALUES ('raz', 'Rahambuu', NULL, 5758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rahambuu', [Definition] = NULL, [SortOrder] = 575.10 WHERE [Code] = 'raz' END +SET [Description] = 'Rahambuu', [Definition] = NULL, [SortOrder] = 5758.00 WHERE [Code] = 'raz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqk', 'Rajah Kabunsuwan Manobo', NULL, 575.20) END +VALUES ('mqk', 'Rajah Kabunsuwan Manobo', NULL, 5759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajah Kabunsuwan Manobo', [Definition] = NULL, [SortOrder] = 575.20 WHERE [Code] = 'mqk' END +SET [Description] = 'Rajah Kabunsuwan Manobo', [Definition] = NULL, [SortOrder] = 5759.00 WHERE [Code] = 'mqk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raj', 'Rajasthani', NULL, 575.30) END +VALUES ('raj', 'Rajasthani', NULL, 5760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajasthani', [Definition] = NULL, [SortOrder] = 575.30 WHERE [Code] = 'raj' END +SET [Description] = 'Rajasthani', [Definition] = NULL, [SortOrder] = 5760.00 WHERE [Code] = 'raj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rjs', 'Rajbanshi', NULL, 575.40) END +VALUES ('rjs', 'Rajbanshi', NULL, 5761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajbanshi', [Definition] = NULL, [SortOrder] = 575.40 WHERE [Code] = 'rjs' END +SET [Description] = 'Rajbanshi', [Definition] = NULL, [SortOrder] = 5761.00 WHERE [Code] = 'rjs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rji', 'Raji', NULL, 575.50) END +VALUES ('rji', 'Raji', NULL, 5762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Raji', [Definition] = NULL, [SortOrder] = 575.50 WHERE [Code] = 'rji' END +SET [Description] = 'Raji', [Definition] = NULL, [SortOrder] = 5762.00 WHERE [Code] = 'rji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rjg', 'Rajong', NULL, 575.60) END +VALUES ('rjg', 'Rajong', NULL, 5763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajong', [Definition] = NULL, [SortOrder] = 575.60 WHERE [Code] = 'rjg' END +SET [Description] = 'Rajong', [Definition] = NULL, [SortOrder] = 5763.00 WHERE [Code] = 'rjg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gra', 'Rajput Garasia', NULL, 575.70) END +VALUES ('gra', 'Rajput Garasia', NULL, 5764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rajput Garasia', [Definition] = NULL, [SortOrder] = 575.70 WHERE [Code] = 'gra' END +SET [Description] = 'Rajput Garasia', [Definition] = NULL, [SortOrder] = 5764.00 WHERE [Code] = 'gra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkh', 'Rakahanga-Manihiki', NULL, 575.80) END +VALUES ('rkh', 'Rakahanga-Manihiki', NULL, 5765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rakahanga-Manihiki', [Definition] = NULL, [SortOrder] = 575.80 WHERE [Code] = 'rkh' END +SET [Description] = 'Rakahanga-Manihiki', [Definition] = NULL, [SortOrder] = 5765.00 WHERE [Code] = 'rkh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rki', 'Rakhine', NULL, 575.90) END +VALUES ('rki', 'Rakhine', NULL, 5766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rakhine', [Definition] = NULL, [SortOrder] = 575.90 WHERE [Code] = 'rki' END +SET [Description] = 'Rakhine', [Definition] = NULL, [SortOrder] = 5766.00 WHERE [Code] = 'rki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ral') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ral', 'Ralte', NULL, 576.00) END +VALUES ('ral', 'Ralte', NULL, 5767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ralte', [Definition] = NULL, [SortOrder] = 576.00 WHERE [Code] = 'ral' END +SET [Description] = 'Ralte', [Definition] = NULL, [SortOrder] = 5767.00 WHERE [Code] = 'ral' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rma', 'Rama', NULL, 576.10) END +VALUES ('rma', 'Rama', NULL, 5768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rama', [Definition] = NULL, [SortOrder] = 576.10 WHERE [Code] = 'rma' END +SET [Description] = 'Rama', [Definition] = NULL, [SortOrder] = 5768.00 WHERE [Code] = 'rma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rai', 'Ramoaaina', NULL, 576.20) END +VALUES ('rai', 'Ramoaaina', NULL, 5769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ramoaaina', [Definition] = NULL, [SortOrder] = 576.20 WHERE [Code] = 'rai' END +SET [Description] = 'Ramoaaina', [Definition] = NULL, [SortOrder] = 5769.00 WHERE [Code] = 'rai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjx', 'Ramopa', NULL, 576.30) END +VALUES ('kjx', 'Ramopa', NULL, 5770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ramopa', [Definition] = NULL, [SortOrder] = 576.30 WHERE [Code] = 'kjx' END +SET [Description] = 'Ramopa', [Definition] = NULL, [SortOrder] = 5770.00 WHERE [Code] = 'kjx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lje', 'Rampi', NULL, 576.40) END +VALUES ('lje', 'Rampi', NULL, 5771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rampi', [Definition] = NULL, [SortOrder] = 576.40 WHERE [Code] = 'lje' END +SET [Description] = 'Rampi', [Definition] = NULL, [SortOrder] = 5771.00 WHERE [Code] = 'lje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thr', 'Rana Tharu', NULL, 576.50) END +VALUES ('thr', 'Rana Tharu', NULL, 5772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rana Tharu', [Definition] = NULL, [SortOrder] = 576.50 WHERE [Code] = 'thr' END +SET [Description] = 'Rana Tharu', [Definition] = NULL, [SortOrder] = 5772.00 WHERE [Code] = 'thr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rax', 'Rang', NULL, 576.60) END +VALUES ('rax', 'Rang', NULL, 5773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rang', [Definition] = NULL, [SortOrder] = 576.60 WHERE [Code] = 'rax' END +SET [Description] = 'Rang', [Definition] = NULL, [SortOrder] = 5773.00 WHERE [Code] = 'rax' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('lag', 'Rangi', NULL, 5774.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Rangi', [Definition] = NULL, [SortOrder] = 5774.00 WHERE [Code] = 'lag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgk', 'Rangkas', NULL, 576.70) END +VALUES ('rgk', 'Rangkas', NULL, 5775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rangkas', [Definition] = NULL, [SortOrder] = 576.70 WHERE [Code] = 'rgk' END +SET [Description] = 'Rangkas', [Definition] = NULL, [SortOrder] = 5775.00 WHERE [Code] = 'rgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnl', 'Ranglong', NULL, 576.80) END +VALUES ('rnl', 'Ranglong', NULL, 5776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ranglong', [Definition] = NULL, [SortOrder] = 576.80 WHERE [Code] = 'rnl' END +SET [Description] = 'Ranglong', [Definition] = NULL, [SortOrder] = 5776.00 WHERE [Code] = 'rnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkt', 'Rangpuri', NULL, 576.90) END +VALUES ('rkt', 'Rangpuri', NULL, 5777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rangpuri', [Definition] = NULL, [SortOrder] = 576.90 WHERE [Code] = 'rkt' END +SET [Description] = 'Rangpuri', [Definition] = NULL, [SortOrder] = 5777.00 WHERE [Code] = 'rkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rao', 'Rao', NULL, 577.00) END +VALUES ('rao', 'Rao', NULL, 5778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rao', [Definition] = NULL, [SortOrder] = 577.00 WHERE [Code] = 'rao' END +SET [Description] = 'Rao', [Definition] = NULL, [SortOrder] = 5778.00 WHERE [Code] = 'rao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ray') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ray', 'Rapa', NULL, 577.10) END +VALUES ('ray', 'Rapa', NULL, 5779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rapa', [Definition] = NULL, [SortOrder] = 577.10 WHERE [Code] = 'ray' END +SET [Description] = 'Rapa', [Definition] = NULL, [SortOrder] = 5779.00 WHERE [Code] = 'ray' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rap', 'Rapanui', NULL, 577.20) END +VALUES ('rap', 'Rapanui', NULL, 5780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rapanui', [Definition] = NULL, [SortOrder] = 577.20 WHERE [Code] = 'rap' END +SET [Description] = 'Rapanui', [Definition] = NULL, [SortOrder] = 5780.00 WHERE [Code] = 'rap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyx', 'Rapoisi', NULL, 577.30) END +VALUES ('kyx', 'Rapoisi', NULL, 5781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rapoisi', [Definition] = NULL, [SortOrder] = 577.30 WHERE [Code] = 'kyx' END +SET [Description] = 'Rapoisi', [Definition] = NULL, [SortOrder] = 5781.00 WHERE [Code] = 'kyx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rpt', 'Rapting', NULL, 577.40) END +VALUES ('rpt', 'Rapting', NULL, 5782.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rapting', [Definition] = NULL, [SortOrder] = 577.40 WHERE [Code] = 'rpt' END +SET [Description] = 'Rapting', [Definition] = NULL, [SortOrder] = 5782.00 WHERE [Code] = 'rpt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lra', 'Rara Bakati''', NULL, 577.50) END +VALUES ('lra', 'Rara Bakati''', NULL, 5783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rara Bakati''', [Definition] = NULL, [SortOrder] = 577.50 WHERE [Code] = 'lra' END +SET [Description] = 'Rara Bakati''', [Definition] = NULL, [SortOrder] = 5783.00 WHERE [Code] = 'lra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rar', 'Rarotongan', NULL, 577.60) END +VALUES ('rar', 'Rarotongan', NULL, 5784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rarotongan', [Definition] = NULL, [SortOrder] = 577.60 WHERE [Code] = 'rar' END +SET [Description] = 'Rarotongan', [Definition] = NULL, [SortOrder] = 5784.00 WHERE [Code] = 'rar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rac', 'Rasawa', NULL, 577.70) END +VALUES ('rac', 'Rasawa', NULL, 5785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rasawa', [Definition] = NULL, [SortOrder] = 577.70 WHERE [Code] = 'rac' END +SET [Description] = 'Rasawa', [Definition] = NULL, [SortOrder] = 5785.00 WHERE [Code] = 'rac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'btn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('btn', 'Ratagnon', NULL, 577.80) END +VALUES ('btn', 'Ratagnon', NULL, 5786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ratagnon', [Definition] = NULL, [SortOrder] = 577.80 WHERE [Code] = 'btn' END +SET [Description] = 'Ratagnon', [Definition] = NULL, [SortOrder] = 5786.00 WHERE [Code] = 'btn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rth', 'Ratahan', NULL, 577.90) END +VALUES ('rth', 'Ratahan', NULL, 5787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ratahan', [Definition] = NULL, [SortOrder] = 577.90 WHERE [Code] = 'rth' END +SET [Description] = 'Ratahan', [Definition] = NULL, [SortOrder] = 5787.00 WHERE [Code] = 'rth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rtw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rtw', 'Rathawi', NULL, 578.00) END +VALUES ('rtw', 'Rathawi', NULL, 5788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rathawi', [Definition] = NULL, [SortOrder] = 578.00 WHERE [Code] = 'rtw' END +SET [Description] = 'Rathawi', [Definition] = NULL, [SortOrder] = 5788.00 WHERE [Code] = 'rtw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgd', 'Rathwi Bareli', NULL, 578.10) END +VALUES ('bgd', 'Rathwi Bareli', NULL, 5789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rathwi Bareli', [Definition] = NULL, [SortOrder] = 578.10 WHERE [Code] = 'bgd' END +SET [Description] = 'Rathwi Bareli', [Definition] = NULL, [SortOrder] = 5789.00 WHERE [Code] = 'bgd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rau', 'Raute', NULL, 578.20) END +VALUES ('rau', 'Raute', NULL, 5790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Raute', [Definition] = NULL, [SortOrder] = 578.20 WHERE [Code] = 'rau' END +SET [Description] = 'Raute', [Definition] = NULL, [SortOrder] = 5790.00 WHERE [Code] = 'rau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yea', 'Ravula', NULL, 578.30) END +VALUES ('yea', 'Ravula', NULL, 5791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ravula', [Definition] = NULL, [SortOrder] = 578.30 WHERE [Code] = 'yea' END +SET [Description] = 'Ravula', [Definition] = NULL, [SortOrder] = 5791.00 WHERE [Code] = 'yea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwo', 'Rawa', NULL, 578.40) END +VALUES ('rwo', 'Rawa', NULL, 5792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawa', [Definition] = NULL, [SortOrder] = 578.40 WHERE [Code] = 'rwo' END +SET [Description] = 'Rawa', [Definition] = NULL, [SortOrder] = 5792.00 WHERE [Code] = 'rwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raw', 'Rawang', NULL, 578.50) END +VALUES ('raw', 'Rawang', NULL, 5793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawang', [Definition] = NULL, [SortOrder] = 578.50 WHERE [Code] = 'raw' END +SET [Description] = 'Rawang', [Definition] = NULL, [SortOrder] = 5793.00 WHERE [Code] = 'raw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jnl', 'Rawat', NULL, 578.60) END +VALUES ('jnl', 'Rawat', NULL, 5794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawat', [Definition] = NULL, [SortOrder] = 578.60 WHERE [Code] = 'jnl' END +SET [Description] = 'Rawat', [Definition] = NULL, [SortOrder] = 5794.00 WHERE [Code] = 'jnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'weu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('weu', 'Rawngtu Chin', NULL, 578.70) END +VALUES ('weu', 'Rawngtu Chin', NULL, 5795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawngtu Chin', [Definition] = NULL, [SortOrder] = 578.70 WHERE [Code] = 'weu' END +SET [Description] = 'Rawngtu Chin', [Definition] = NULL, [SortOrder] = 5795.00 WHERE [Code] = 'weu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwa', 'Rawo', NULL, 578.80) END +VALUES ('rwa', 'Rawo', NULL, 5796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rawo', [Definition] = NULL, [SortOrder] = 578.80 WHERE [Code] = 'rwa' END +SET [Description] = 'Rawo', [Definition] = NULL, [SortOrder] = 5796.00 WHERE [Code] = 'rwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zor', 'Rayón Zoque', NULL, 578.90) END +VALUES ('zor', 'Rayón Zoque', NULL, 5797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rayón Zoque', [Definition] = NULL, [SortOrder] = 578.90 WHERE [Code] = 'zor' END +SET [Description] = 'Rayón Zoque', [Definition] = NULL, [SortOrder] = 5797.00 WHERE [Code] = 'zor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rat', 'Razajerdi', NULL, 579.00) END +VALUES ('rat', 'Razajerdi', NULL, 5798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Razajerdi', [Definition] = NULL, [SortOrder] = 579.00 WHERE [Code] = 'rat' END +SET [Description] = 'Razajerdi', [Definition] = NULL, [SortOrder] = 5798.00 WHERE [Code] = 'rat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rzh', 'Razihi', NULL, 579.10) END +VALUES ('rzh', 'Razihi', NULL, 5799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Razihi', [Definition] = NULL, [SortOrder] = 579.10 WHERE [Code] = 'rzh' END +SET [Description] = 'Razihi', [Definition] = NULL, [SortOrder] = 5799.00 WHERE [Code] = 'rzh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gir', 'Red Gelao', NULL, 579.20) END +VALUES ('gir', 'Red Gelao', NULL, 5800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Red Gelao', [Definition] = NULL, [SortOrder] = 579.20 WHERE [Code] = 'gir' END +SET [Description] = 'Red Gelao', [Definition] = NULL, [SortOrder] = 5800.00 WHERE [Code] = 'gir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atu', 'Reel', NULL, 579.30) END +VALUES ('atu', 'Reel', NULL, 5801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Reel', [Definition] = NULL, [SortOrder] = 579.30 WHERE [Code] = 'atu' END +SET [Description] = 'Reel', [Definition] = NULL, [SortOrder] = 5801.00 WHERE [Code] = 'atu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rej', 'Rejang', NULL, 579.40) END +VALUES ('rej', 'Rejang', NULL, 5802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rejang', [Definition] = NULL, [SortOrder] = 579.40 WHERE [Code] = 'rej' END +SET [Description] = 'Rejang', [Definition] = NULL, [SortOrder] = 5802.00 WHERE [Code] = 'rej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ree') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ree', 'Rejang Kayan', NULL, 579.50) END +VALUES ('ree', 'Rejang Kayan', NULL, 5803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rejang Kayan', [Definition] = NULL, [SortOrder] = 579.50 WHERE [Code] = 'ree' END +SET [Description] = 'Rejang Kayan', [Definition] = NULL, [SortOrder] = 5803.00 WHERE [Code] = 'ree' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rei', 'Reli', NULL, 579.60) END +VALUES ('rei', 'Reli', NULL, 5804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Reli', [Definition] = NULL, [SortOrder] = 579.60 WHERE [Code] = 'rei' END +SET [Description] = 'Reli', [Definition] = NULL, [SortOrder] = 5804.00 WHERE [Code] = 'rei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bow', 'Rema', NULL, 579.70) END +VALUES ('bow', 'Rema', NULL, 5805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rema', [Definition] = NULL, [SortOrder] = 579.70 WHERE [Code] = 'bow' END +SET [Description] = 'Rema', [Definition] = NULL, [SortOrder] = 5805.00 WHERE [Code] = 'bow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmb', 'Rembarrnga', NULL, 579.80) END +VALUES ('rmb', 'Rembarrnga', NULL, 5806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rembarrnga', [Definition] = NULL, [SortOrder] = 579.80 WHERE [Code] = 'rmb' END +SET [Description] = 'Rembarrnga', [Definition] = NULL, [SortOrder] = 5806.00 WHERE [Code] = 'rmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'reb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('reb', 'Rembong', NULL, 579.90) END +VALUES ('reb', 'Rembong', NULL, 5807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rembong', [Definition] = NULL, [SortOrder] = 579.90 WHERE [Code] = 'reb' END +SET [Description] = 'Rembong', [Definition] = NULL, [SortOrder] = 5807.00 WHERE [Code] = 'reb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rem', 'Remo', NULL, 580.00) END +VALUES ('rem', 'Remo', NULL, 5808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Remo', [Definition] = NULL, [SortOrder] = 580.00 WHERE [Code] = 'rem' END +SET [Description] = 'Remo', [Definition] = NULL, [SortOrder] = 5808.00 WHERE [Code] = 'rem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agv', 'Remontado Dumagat', NULL, 580.10) END +VALUES ('agv', 'Remontado Dumagat', NULL, 5809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Remontado Dumagat', [Definition] = NULL, [SortOrder] = 580.10 WHERE [Code] = 'agv' END +SET [Description] = 'Remontado Dumagat', [Definition] = NULL, [SortOrder] = 5809.00 WHERE [Code] = 'agv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmp', 'Rempi', NULL, 580.20) END +VALUES ('rmp', 'Rempi', NULL, 5810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rempi', [Definition] = NULL, [SortOrder] = 580.20 WHERE [Code] = 'rmp' END +SET [Description] = 'Rempi', [Definition] = NULL, [SortOrder] = 5810.00 WHERE [Code] = 'rmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lkj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lkj', 'Remun', NULL, 580.30) END +VALUES ('lkj', 'Remun', NULL, 5811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Remun', [Definition] = NULL, [SortOrder] = 580.30 WHERE [Code] = 'lkj' END +SET [Description] = 'Remun', [Definition] = NULL, [SortOrder] = 5811.00 WHERE [Code] = 'lkj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rel', 'Rendille', NULL, 580.40) END +VALUES ('rel', 'Rendille', NULL, 5812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rendille', [Definition] = NULL, [SortOrder] = 580.40 WHERE [Code] = 'rel' END +SET [Description] = 'Rendille', [Definition] = NULL, [SortOrder] = 5812.00 WHERE [Code] = 'rel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ren') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ren', 'Rengao', NULL, 580.50) END +VALUES ('ren', 'Rengao', NULL, 5813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rengao', [Definition] = NULL, [SortOrder] = 580.50 WHERE [Code] = 'ren' END +SET [Description] = 'Rengao', [Definition] = NULL, [SortOrder] = 5813.00 WHERE [Code] = 'ren' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnv', 'Rennell-Bellona', NULL, 580.60) END +VALUES ('mnv', 'Rennell-Bellona', NULL, 5814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rennell-Bellona', [Definition] = NULL, [SortOrder] = 580.60 WHERE [Code] = 'mnv' END +SET [Description] = 'Rennell-Bellona', [Definition] = NULL, [SortOrder] = 5814.00 WHERE [Code] = 'mnv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rpn', 'Repanbitip', NULL, 580.70) END +VALUES ('rpn', 'Repanbitip', NULL, 5815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Repanbitip', [Definition] = NULL, [SortOrder] = 580.70 WHERE [Code] = 'rpn' END +SET [Description] = 'Repanbitip', [Definition] = NULL, [SortOrder] = 5815.00 WHERE [Code] = 'rpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rer', 'Rer Bare', NULL, 580.80) END +VALUES ('rer', 'Rer Bare', NULL, 5816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rer Bare', [Definition] = NULL, [SortOrder] = 580.80 WHERE [Code] = 'rer' END +SET [Description] = 'Rer Bare', [Definition] = NULL, [SortOrder] = 5816.00 WHERE [Code] = 'rer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rea', 'Rerau', NULL, 580.90) END +VALUES ('rea', 'Rerau', NULL, 5817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rerau', [Definition] = NULL, [SortOrder] = 580.90 WHERE [Code] = 'rea' END +SET [Description] = 'Rerau', [Definition] = NULL, [SortOrder] = 5817.00 WHERE [Code] = 'rea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pgk', 'Rerep', NULL, 581.00) END +VALUES ('pgk', 'Rerep', NULL, 5818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rerep', [Definition] = NULL, [SortOrder] = 581.00 WHERE [Code] = 'pgk' END +SET [Description] = 'Rerep', [Definition] = NULL, [SortOrder] = 5818.00 WHERE [Code] = 'pgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'res') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('res', 'Reshe', NULL, 581.10) END +VALUES ('res', 'Reshe', NULL, 5819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Reshe', [Definition] = NULL, [SortOrder] = 581.10 WHERE [Code] = 'res' END +SET [Description] = 'Reshe', [Definition] = NULL, [SortOrder] = 5819.00 WHERE [Code] = 'res' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgr', 'Resígaro', NULL, 581.20) END +VALUES ('rgr', 'Resígaro', NULL, 5820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Resígaro', [Definition] = NULL, [SortOrder] = 581.20 WHERE [Code] = 'rgr' END +SET [Description] = 'Resígaro', [Definition] = NULL, [SortOrder] = 5820.00 WHERE [Code] = 'rgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ret') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ret', 'Retta', NULL, 581.30) END +VALUES ('ret', 'Retta', NULL, 5821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Retta', [Definition] = NULL, [SortOrder] = 581.30 WHERE [Code] = 'ret' END +SET [Description] = 'Retta', [Definition] = NULL, [SortOrder] = 5821.00 WHERE [Code] = 'ret' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rcf', 'Réunion Creole French', NULL, 581.40) END +VALUES ('rcf', 'Réunion Creole French', NULL, 5822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Réunion Creole French', [Definition] = NULL, [SortOrder] = 581.40 WHERE [Code] = 'rcf' END +SET [Description] = 'Réunion Creole French', [Definition] = NULL, [SortOrder] = 5822.00 WHERE [Code] = 'rcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rey', 'Reyesano', NULL, 581.50) END +VALUES ('rey', 'Reyesano', NULL, 5823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Reyesano', [Definition] = NULL, [SortOrder] = 581.50 WHERE [Code] = 'rey' END +SET [Description] = 'Reyesano', [Definition] = NULL, [SortOrder] = 5823.00 WHERE [Code] = 'rey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ria') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ria', 'Riang (India)', NULL, 581.60) END +VALUES ('ria', 'Riang (India)', NULL, 5824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riang (India)', [Definition] = NULL, [SortOrder] = 581.60 WHERE [Code] = 'ria' END +SET [Description] = 'Riang (India)', [Definition] = NULL, [SortOrder] = 5824.00 WHERE [Code] = 'ria' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yin', 'Riang Lai', NULL, 581.70) END +VALUES ('yin', 'Riang Lai', NULL, 5825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riang Lai', [Definition] = NULL, [SortOrder] = 581.70 WHERE [Code] = 'yin' END +SET [Description] = 'Riang Lai', [Definition] = NULL, [SortOrder] = 5825.00 WHERE [Code] = 'yin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ril') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ril', 'Riang Lang', NULL, 581.80) END +VALUES ('ril', 'Riang Lang', NULL, 5826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riang Lang', [Definition] = NULL, [SortOrder] = 581.80 WHERE [Code] = 'ril' END +SET [Description] = 'Riang Lang', [Definition] = NULL, [SortOrder] = 5826.00 WHERE [Code] = 'ril' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ran') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ran', 'Riantana', NULL, 581.90) END +VALUES ('ran', 'Riantana', NULL, 5827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riantana', [Definition] = NULL, [SortOrder] = 581.90 WHERE [Code] = 'ran' END +SET [Description] = 'Riantana', [Definition] = NULL, [SortOrder] = 5827.00 WHERE [Code] = 'ran' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rir', 'Ribun', NULL, 582.00) END +VALUES ('rir', 'Ribun', NULL, 5828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ribun', [Definition] = NULL, [SortOrder] = 582.00 WHERE [Code] = 'rir' END +SET [Description] = 'Ribun', [Definition] = NULL, [SortOrder] = 5828.00 WHERE [Code] = 'rir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iri', 'Rigwe', NULL, 582.10) END +VALUES ('iri', 'Rigwe', NULL, 5829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rigwe', [Definition] = NULL, [SortOrder] = 582.10 WHERE [Code] = 'iri' END +SET [Description] = 'Rigwe', [Definition] = NULL, [SortOrder] = 5829.00 WHERE [Code] = 'iri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rkb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rkb', 'Rikbaktsa', NULL, 582.20) END +VALUES ('rkb', 'Rikbaktsa', NULL, 5830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rikbaktsa', [Definition] = NULL, [SortOrder] = 582.20 WHERE [Code] = 'rkb' END +SET [Description] = 'Rikbaktsa', [Definition] = NULL, [SortOrder] = 5830.00 WHERE [Code] = 'rkb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zar', 'Rincón Zapotec', NULL, 582.30) END +VALUES ('zar', 'Rincón Zapotec', NULL, 5831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rincón Zapotec', [Definition] = NULL, [SortOrder] = 582.30 WHERE [Code] = 'zar' END +SET [Description] = 'Rincón Zapotec', [Definition] = NULL, [SortOrder] = 5831.00 WHERE [Code] = 'zar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bto', 'Rinconada Bikol', NULL, 582.40) END +VALUES ('bto', 'Rinconada Bikol', NULL, 5832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rinconada Bikol', [Definition] = NULL, [SortOrder] = 582.40 WHERE [Code] = 'bto' END +SET [Description] = 'Rinconada Bikol', [Definition] = NULL, [SortOrder] = 5832.00 WHERE [Code] = 'bto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgu', 'Ringgou', NULL, 582.50) END +VALUES ('rgu', 'Ringgou', NULL, 5833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ringgou', [Definition] = NULL, [SortOrder] = 582.50 WHERE [Code] = 'rgu' END +SET [Description] = 'Ringgou', [Definition] = NULL, [SortOrder] = 5833.00 WHERE [Code] = 'rgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rri', 'Ririo', NULL, 582.60) END +VALUES ('rri', 'Ririo', NULL, 5834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ririo', [Definition] = NULL, [SortOrder] = 582.60 WHERE [Code] = 'rri' END +SET [Description] = 'Ririo', [Definition] = NULL, [SortOrder] = 5834.00 WHERE [Code] = 'rri' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('rsw', 'Rishiwa', NULL, 5835.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Rishiwa', [Definition] = NULL, [SortOrder] = 5835.00 WHERE [Code] = 'rsw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rit', 'Ritharrngu', NULL, 582.70) END +VALUES ('rit', 'Ritharrngu', NULL, 5836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ritharrngu', [Definition] = NULL, [SortOrder] = 582.70 WHERE [Code] = 'rit' END +SET [Description] = 'Ritharrngu', [Definition] = NULL, [SortOrder] = 5836.00 WHERE [Code] = 'rit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'riu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('riu', 'Riung', NULL, 582.80) END +VALUES ('riu', 'Riung', NULL, 5837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riung', [Definition] = NULL, [SortOrder] = 582.80 WHERE [Code] = 'riu' END +SET [Description] = 'Riung', [Definition] = NULL, [SortOrder] = 5837.00 WHERE [Code] = 'riu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snj', 'Riverain Sango', NULL, 582.90) END +VALUES ('snj', 'Riverain Sango', NULL, 5838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Riverain Sango', [Definition] = NULL, [SortOrder] = 582.90 WHERE [Code] = 'snj' END +SET [Description] = 'Riverain Sango', [Definition] = NULL, [SortOrder] = 5838.00 WHERE [Code] = 'snj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbn', 'Rmeet', NULL, 583.00) END +VALUES ('lbn', 'Rmeet', NULL, 5839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rmeet', [Definition] = NULL, [SortOrder] = 583.00 WHERE [Code] = 'lbn' END +SET [Description] = 'Rmeet', [Definition] = NULL, [SortOrder] = 5839.00 WHERE [Code] = 'lbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rod', 'Rogo', NULL, 583.10) END +VALUES ('rod', 'Rogo', NULL, 5840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rogo', [Definition] = NULL, [SortOrder] = 583.10 WHERE [Code] = 'rod' END +SET [Description] = 'Rogo', [Definition] = NULL, [SortOrder] = 5840.00 WHERE [Code] = 'rod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rhg', 'Rohingya', NULL, 583.20) END +VALUES ('rhg', 'Rohingya', NULL, 5841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rohingya', [Definition] = NULL, [SortOrder] = 583.20 WHERE [Code] = 'rhg' END +SET [Description] = 'Rohingya', [Definition] = NULL, [SortOrder] = 5841.00 WHERE [Code] = 'rhg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmm', 'Roma', NULL, 583.30) END +VALUES ('rmm', 'Roma', NULL, 5842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Roma', [Definition] = NULL, [SortOrder] = 583.30 WHERE [Code] = 'rmm' END +SET [Description] = 'Roma', [Definition] = NULL, [SortOrder] = 5842.00 WHERE [Code] = 'rmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgn', 'Romagnol', NULL, 583.40) END +VALUES ('rgn', 'Romagnol', NULL, 5843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romagnol', [Definition] = NULL, [SortOrder] = 583.40 WHERE [Code] = 'rgn' END +SET [Description] = 'Romagnol', [Definition] = NULL, [SortOrder] = 5843.00 WHERE [Code] = 'rgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmx', 'Romam', NULL, 583.50) END +VALUES ('rmx', 'Romam', NULL, 5844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romam', [Definition] = NULL, [SortOrder] = 583.50 WHERE [Code] = 'rmx' END +SET [Description] = 'Romam', [Definition] = NULL, [SortOrder] = 5844.00 WHERE [Code] = 'rmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ron') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ron', 'Romanian', NULL, 583.60) END +VALUES ('ron', 'Romanian', NULL, 5845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romanian', [Definition] = NULL, [SortOrder] = 583.60 WHERE [Code] = 'ron' END +SET [Description] = 'Romanian', [Definition] = NULL, [SortOrder] = 5845.00 WHERE [Code] = 'ron' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rms', 'Romanian Sign Language', NULL, 583.70) END +VALUES ('rms', 'Romanian Sign Language', NULL, 5846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romanian Sign Language', [Definition] = NULL, [SortOrder] = 583.70 WHERE [Code] = 'rms' END +SET [Description] = 'Romanian Sign Language', [Definition] = NULL, [SortOrder] = 5846.00 WHERE [Code] = 'rms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rge', 'Romano-Greek', NULL, 583.80) END +VALUES ('rge', 'Romano-Greek', NULL, 5847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romano-Greek', [Definition] = NULL, [SortOrder] = 583.80 WHERE [Code] = 'rge' END +SET [Description] = 'Romano-Greek', [Definition] = NULL, [SortOrder] = 5847.00 WHERE [Code] = 'rge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsb', 'Romano-Serbian', NULL, 583.90) END +VALUES ('rsb', 'Romano-Serbian', NULL, 5848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romano-Serbian', [Definition] = NULL, [SortOrder] = 583.90 WHERE [Code] = 'rsb' END +SET [Description] = 'Romano-Serbian', [Definition] = NULL, [SortOrder] = 5848.00 WHERE [Code] = 'rsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmv', 'Romanova', NULL, 584.00) END +VALUES ('rmv', 'Romanova', NULL, 5849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romanova', [Definition] = NULL, [SortOrder] = 584.00 WHERE [Code] = 'rmv' END +SET [Description] = 'Romanova', [Definition] = NULL, [SortOrder] = 5849.00 WHERE [Code] = 'rmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'roh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roh', 'Romansh', NULL, 584.10) END +VALUES ('roh', 'Romansh', NULL, 5850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romansh', [Definition] = NULL, [SortOrder] = 584.10 WHERE [Code] = 'roh' END +SET [Description] = 'Romansh', [Definition] = NULL, [SortOrder] = 5850.00 WHERE [Code] = 'roh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rom', 'Romany', NULL, 584.20) END +VALUES ('rom', 'Romany', NULL, 5851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romany', [Definition] = NULL, [SortOrder] = 584.20 WHERE [Code] = 'rom' END +SET [Description] = 'Romany', [Definition] = NULL, [SortOrder] = 5851.00 WHERE [Code] = 'rom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rol', 'Romblomanon', NULL, 584.30) END +VALUES ('rol', 'Romblomanon', NULL, 5852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romblomanon', [Definition] = NULL, [SortOrder] = 584.30 WHERE [Code] = 'rol' END +SET [Description] = 'Romblomanon', [Definition] = NULL, [SortOrder] = 5852.00 WHERE [Code] = 'rol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rof') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rof', 'Rombo', NULL, 584.40) END +VALUES ('rof', 'Rombo', NULL, 5853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rombo', [Definition] = NULL, [SortOrder] = 584.40 WHERE [Code] = 'rof' END +SET [Description] = 'Rombo', [Definition] = NULL, [SortOrder] = 5853.00 WHERE [Code] = 'rof' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmk', 'Romkun', NULL, 584.50) END +VALUES ('rmk', 'Romkun', NULL, 5854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Romkun', [Definition] = NULL, [SortOrder] = 584.50 WHERE [Code] = 'rmk' END +SET [Description] = 'Romkun', [Definition] = NULL, [SortOrder] = 5854.00 WHERE [Code] = 'rmk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cla', 'Ron', NULL, 584.60) END +VALUES ('cla', 'Ron', NULL, 5855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ron', [Definition] = NULL, [SortOrder] = 584.60 WHERE [Code] = 'cla' END +SET [Description] = 'Ron', [Definition] = NULL, [SortOrder] = 5855.00 WHERE [Code] = 'cla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rng', 'Ronga', NULL, 584.70) END +VALUES ('rng', 'Ronga', NULL, 5856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ronga', [Definition] = NULL, [SortOrder] = 584.70 WHERE [Code] = 'rng' END +SET [Description] = 'Ronga', [Definition] = NULL, [SortOrder] = 5856.00 WHERE [Code] = 'rng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ror') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ror', 'Rongga', NULL, 584.80) END +VALUES ('ror', 'Rongga', NULL, 5857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rongga', [Definition] = NULL, [SortOrder] = 584.80 WHERE [Code] = 'ror' END +SET [Description] = 'Rongga', [Definition] = NULL, [SortOrder] = 5857.00 WHERE [Code] = 'ror' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbu', 'Rongmei Naga', NULL, 584.90) END +VALUES ('nbu', 'Rongmei Naga', NULL, 5858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rongmei Naga', [Definition] = NULL, [SortOrder] = 584.90 WHERE [Code] = 'nbu' END +SET [Description] = 'Rongmei Naga', [Definition] = NULL, [SortOrder] = 5858.00 WHERE [Code] = 'nbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnp', 'Rongpo', NULL, 585.00) END +VALUES ('rnp', 'Rongpo', NULL, 5859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rongpo', [Definition] = NULL, [SortOrder] = 585.00 WHERE [Code] = 'rnp' END +SET [Description] = 'Rongpo', [Definition] = NULL, [SortOrder] = 5859.00 WHERE [Code] = 'rnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'roe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roe', 'Ronji', NULL, 585.10) END +VALUES ('roe', 'Ronji', NULL, 5860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ronji', [Definition] = NULL, [SortOrder] = 585.10 WHERE [Code] = 'roe' END +SET [Description] = 'Ronji', [Definition] = NULL, [SortOrder] = 5860.00 WHERE [Code] = 'roe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnn', 'Roon', NULL, 585.20) END +VALUES ('rnn', 'Roon', NULL, 5861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Roon', [Definition] = NULL, [SortOrder] = 585.20 WHERE [Code] = 'rnn' END +SET [Description] = 'Roon', [Definition] = NULL, [SortOrder] = 5861.00 WHERE [Code] = 'rnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rga', 'Roria', NULL, 585.30) END +VALUES ('rga', 'Roria', NULL, 5862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Roria', [Definition] = NULL, [SortOrder] = 585.30 WHERE [Code] = 'rga' END +SET [Description] = 'Roria', [Definition] = NULL, [SortOrder] = 5862.00 WHERE [Code] = 'rga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'roo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('roo', 'Rotokas', NULL, 585.40) END +VALUES ('roo', 'Rotokas', NULL, 5863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rotokas', [Definition] = NULL, [SortOrder] = 585.40 WHERE [Code] = 'roo' END +SET [Description] = 'Rotokas', [Definition] = NULL, [SortOrder] = 5863.00 WHERE [Code] = 'roo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rtm', 'Rotuman', NULL, 585.50) END +VALUES ('rtm', 'Rotuman', NULL, 5864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rotuman', [Definition] = NULL, [SortOrder] = 585.50 WHERE [Code] = 'rtm' END +SET [Description] = 'Rotuman', [Definition] = NULL, [SortOrder] = 5864.00 WHERE [Code] = 'rtm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rug', 'Roviana', NULL, 585.60) END +VALUES ('rug', 'Roviana', NULL, 5865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Roviana', [Definition] = NULL, [SortOrder] = 585.60 WHERE [Code] = 'rug' END +SET [Description] = 'Roviana', [Definition] = NULL, [SortOrder] = 5865.00 WHERE [Code] = 'rug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pce', 'Ruching Palaung', NULL, 585.70) END +VALUES ('pce', 'Ruching Palaung', NULL, 5866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruching Palaung', [Definition] = NULL, [SortOrder] = 585.70 WHERE [Code] = 'pce' END +SET [Description] = 'Ruching Palaung', [Definition] = NULL, [SortOrder] = 5866.00 WHERE [Code] = 'pce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rdb', 'Rudbari', NULL, 585.80) END +VALUES ('rdb', 'Rudbari', NULL, 5867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rudbari', [Definition] = NULL, [SortOrder] = 585.80 WHERE [Code] = 'rdb' END +SET [Description] = 'Rudbari', [Definition] = NULL, [SortOrder] = 5867.00 WHERE [Code] = 'rdb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rui', 'Rufiji', NULL, 585.90) END +VALUES ('rui', 'Rufiji', NULL, 5868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rufiji', [Definition] = NULL, [SortOrder] = 585.90 WHERE [Code] = 'rui' END +SET [Description] = 'Rufiji', [Definition] = NULL, [SortOrder] = 5868.00 WHERE [Code] = 'rui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruh', 'Ruga', NULL, 586.00) END +VALUES ('ruh', 'Ruga', NULL, 5869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruga', [Definition] = NULL, [SortOrder] = 586.00 WHERE [Code] = 'ruh' END +SET [Description] = 'Ruga', [Definition] = NULL, [SortOrder] = 5869.00 WHERE [Code] = 'ruh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dru', 'Rukai', NULL, 586.10) END +VALUES ('dru', 'Rukai', NULL, 5870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rukai', [Definition] = NULL, [SortOrder] = 586.10 WHERE [Code] = 'dru' END +SET [Description] = 'Rukai', [Definition] = NULL, [SortOrder] = 5870.00 WHERE [Code] = 'dru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruz', 'Ruma', NULL, 586.20) END +VALUES ('ruz', 'Ruma', NULL, 5871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruma', [Definition] = NULL, [SortOrder] = 586.20 WHERE [Code] = 'ruz' END +SET [Description] = 'Ruma', [Definition] = NULL, [SortOrder] = 5871.00 WHERE [Code] = 'ruz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rbb', 'Rumai Palaung', NULL, 586.30) END +VALUES ('rbb', 'Rumai Palaung', NULL, 5872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rumai Palaung', [Definition] = NULL, [SortOrder] = 586.30 WHERE [Code] = 'rbb' END +SET [Description] = 'Rumai Palaung', [Definition] = NULL, [SortOrder] = 5872.00 WHERE [Code] = 'rbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klq', 'Rumu', NULL, 586.40) END +VALUES ('klq', 'Rumu', NULL, 5873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rumu', [Definition] = NULL, [SortOrder] = 586.40 WHERE [Code] = 'klq' END +SET [Description] = 'Rumu', [Definition] = NULL, [SortOrder] = 5873.00 WHERE [Code] = 'klq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'run') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('run', 'Rundi', NULL, 586.50) END +VALUES ('run', 'Rundi', NULL, 5874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rundi', [Definition] = NULL, [SortOrder] = 586.50 WHERE [Code] = 'run' END +SET [Description] = 'Rundi', [Definition] = NULL, [SortOrder] = 5874.00 WHERE [Code] = 'run' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rou', 'Runga', NULL, 586.60) END +VALUES ('rou', 'Runga', NULL, 5875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Runga', [Definition] = NULL, [SortOrder] = 586.60 WHERE [Code] = 'rou' END +SET [Description] = 'Runga', [Definition] = NULL, [SortOrder] = 5875.00 WHERE [Code] = 'rou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rtc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rtc', 'Rungtu Chin', NULL, 586.70) END +VALUES ('rtc', 'Rungtu Chin', NULL, 5876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rungtu Chin', [Definition] = NULL, [SortOrder] = 586.70 WHERE [Code] = 'rtc' END +SET [Description] = 'Rungtu Chin', [Definition] = NULL, [SortOrder] = 5876.00 WHERE [Code] = 'rtc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drg', 'Rungus', NULL, 586.80) END +VALUES ('drg', 'Rungus', NULL, 5877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rungus', [Definition] = NULL, [SortOrder] = 586.80 WHERE [Code] = 'drg' END +SET [Description] = 'Rungus', [Definition] = NULL, [SortOrder] = 5877.00 WHERE [Code] = 'drg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnw', 'Rungwa', NULL, 586.90) END +VALUES ('rnw', 'Rungwa', NULL, 5878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rungwa', [Definition] = NULL, [SortOrder] = 586.90 WHERE [Code] = 'rnw' END +SET [Description] = 'Rungwa', [Definition] = NULL, [SortOrder] = 5878.00 WHERE [Code] = 'rnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxr', 'Russia Buriat', NULL, 587.00) END +VALUES ('bxr', 'Russia Buriat', NULL, 5879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Russia Buriat', [Definition] = NULL, [SortOrder] = 587.00 WHERE [Code] = 'bxr' END +SET [Description] = 'Russia Buriat', [Definition] = NULL, [SortOrder] = 5879.00 WHERE [Code] = 'bxr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rus', 'Russian', NULL, 587.10) END +VALUES ('rus', 'Russian', NULL, 5880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Russian', [Definition] = NULL, [SortOrder] = 587.10 WHERE [Code] = 'rus' END +SET [Description] = 'Russian', [Definition] = NULL, [SortOrder] = 5880.00 WHERE [Code] = 'rus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsl', 'Russian Sign Language', NULL, 587.20) END +VALUES ('rsl', 'Russian Sign Language', NULL, 5881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Russian Sign Language', [Definition] = NULL, [SortOrder] = 587.20 WHERE [Code] = 'rsl' END +SET [Description] = 'Russian Sign Language', [Definition] = NULL, [SortOrder] = 5881.00 WHERE [Code] = 'rsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rue', 'Rusyn', NULL, 587.30) END +VALUES ('rue', 'Rusyn', NULL, 5882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rusyn', [Definition] = NULL, [SortOrder] = 587.30 WHERE [Code] = 'rue' END +SET [Description] = 'Rusyn', [Definition] = NULL, [SortOrder] = 5882.00 WHERE [Code] = 'rue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsk', 'Ruthenian', NULL, 587.40) END +VALUES ('rsk', 'Ruthenian', NULL, 5883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruthenian', [Definition] = NULL, [SortOrder] = 587.40 WHERE [Code] = 'rsk' END +SET [Description] = 'Ruthenian', [Definition] = NULL, [SortOrder] = 5883.00 WHERE [Code] = 'rsk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rut', 'Rutul', NULL, 587.50) END +VALUES ('rut', 'Rutul', NULL, 5884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rutul', [Definition] = NULL, [SortOrder] = 587.50 WHERE [Code] = 'rut' END +SET [Description] = 'Rutul', [Definition] = NULL, [SortOrder] = 5884.00 WHERE [Code] = 'rut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ruc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ruc', 'Ruuli', NULL, 587.60) END +VALUES ('ruc', 'Ruuli', NULL, 5885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruuli', [Definition] = NULL, [SortOrder] = 587.60 WHERE [Code] = 'ruc' END +SET [Description] = 'Ruuli', [Definition] = NULL, [SortOrder] = 5885.00 WHERE [Code] = 'ruc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rnd', 'Ruund', NULL, 587.70) END +VALUES ('rnd', 'Ruund', NULL, 5886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruund', [Definition] = NULL, [SortOrder] = 587.70 WHERE [Code] = 'rnd' END +SET [Description] = 'Ruund', [Definition] = NULL, [SortOrder] = 5886.00 WHERE [Code] = 'rnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwl', 'Ruwila', NULL, 587.80) END +VALUES ('rwl', 'Ruwila', NULL, 5887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ruwila', [Definition] = NULL, [SortOrder] = 587.80 WHERE [Code] = 'rwl' END +SET [Description] = 'Ruwila', [Definition] = NULL, [SortOrder] = 5887.00 WHERE [Code] = 'rwl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rwk', 'Rwa', NULL, 587.90) END +VALUES ('rwk', 'Rwa', NULL, 5888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rwa', [Definition] = NULL, [SortOrder] = 587.90 WHERE [Code] = 'rwk' END +SET [Description] = 'Rwa', [Definition] = NULL, [SortOrder] = 5888.00 WHERE [Code] = 'rwk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rsn', 'Rwandan Sign Language', NULL, 588.00) END +VALUES ('rsn', 'Rwandan Sign Language', NULL, 5889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Rwandan Sign Language', [Definition] = NULL, [SortOrder] = 588.00 WHERE [Code] = 'rsn' END +SET [Description] = 'Rwandan Sign Language', [Definition] = NULL, [SortOrder] = 5889.00 WHERE [Code] = 'rsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksw', 'S''gaw Karen', NULL, 588.10) END +VALUES ('ksw', 'S''gaw Karen', NULL, 5890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'S''gaw Karen', [Definition] = NULL, [SortOrder] = 588.10 WHERE [Code] = 'ksw' END +SET [Description] = 'S''gaw Karen', [Definition] = NULL, [SortOrder] = 5890.00 WHERE [Code] = 'ksw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sax', 'Sa', NULL, 588.20) END +VALUES ('sax', 'Sa', NULL, 5891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sa', [Definition] = NULL, [SortOrder] = 588.20 WHERE [Code] = 'sax' END +SET [Description] = 'Sa', [Definition] = NULL, [SortOrder] = 5891.00 WHERE [Code] = 'sax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apb', 'Sa''a', NULL, 588.30) END +VALUES ('apb', 'Sa''a', NULL, 5892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sa''a', [Definition] = NULL, [SortOrder] = 588.30 WHERE [Code] = 'apb' END +SET [Description] = 'Sa''a', [Definition] = NULL, [SortOrder] = 5892.00 WHERE [Code] = 'apb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snv', 'Sa''ban', NULL, 588.40) END +VALUES ('snv', 'Sa''ban', NULL, 5893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sa''ban', [Definition] = NULL, [SortOrder] = 588.40 WHERE [Code] = 'snv' END +SET [Description] = 'Sa''ban', [Definition] = NULL, [SortOrder] = 5893.00 WHERE [Code] = 'snv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scq', 'Sa''och', NULL, 588.50) END +VALUES ('scq', 'Sa''och', NULL, 5894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sa''och', [Definition] = NULL, [SortOrder] = 588.50 WHERE [Code] = 'scq' END +SET [Description] = 'Sa''och', [Definition] = NULL, [SortOrder] = 5894.00 WHERE [Code] = 'scq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sav', 'Saafi-Saafi', NULL, 588.60) END +VALUES ('sav', 'Saafi-Saafi', NULL, 5895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saafi-Saafi', [Definition] = NULL, [SortOrder] = 588.60 WHERE [Code] = 'sav' END +SET [Description] = 'Saafi-Saafi', [Definition] = NULL, [SortOrder] = 5895.00 WHERE [Code] = 'sav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raq', 'Saam', NULL, 588.70) END +VALUES ('raq', 'Saam', NULL, 5896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saam', [Definition] = NULL, [SortOrder] = 588.70 WHERE [Code] = 'raq' END +SET [Description] = 'Saam', [Definition] = NULL, [SortOrder] = 5896.00 WHERE [Code] = 'raq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsm', 'Saamia', NULL, 588.80) END +VALUES ('lsm', 'Saamia', NULL, 5897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saamia', [Definition] = NULL, [SortOrder] = 588.80 WHERE [Code] = 'lsm' END +SET [Description] = 'Saamia', [Definition] = NULL, [SortOrder] = 5897.00 WHERE [Code] = 'lsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxr', 'Saaroa', NULL, 588.90) END +VALUES ('sxr', 'Saaroa', NULL, 5898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saaroa', [Definition] = NULL, [SortOrder] = 588.90 WHERE [Code] = 'sxr' END +SET [Description] = 'Saaroa', [Definition] = NULL, [SortOrder] = 5898.00 WHERE [Code] = 'sxr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saa', 'Saba', NULL, 589.00) END +VALUES ('saa', 'Saba', NULL, 5899.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saba', [Definition] = NULL, [SortOrder] = 589.00 WHERE [Code] = 'saa' END +SET [Description] = 'Saba', [Definition] = NULL, [SortOrder] = 5899.00 WHERE [Code] = 'saa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsa', 'Sabaean', NULL, 589.10) END +VALUES ('xsa', 'Sabaean', NULL, 5900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabaean', [Definition] = NULL, [SortOrder] = 589.10 WHERE [Code] = 'xsa' END +SET [Description] = 'Sabaean', [Definition] = NULL, [SortOrder] = 5900.00 WHERE [Code] = 'xsa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsy', 'Sabah Bisaya', NULL, 589.20) END +VALUES ('bsy', 'Sabah Bisaya', NULL, 5901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabah Bisaya', [Definition] = NULL, [SortOrder] = 589.20 WHERE [Code] = 'bsy' END +SET [Description] = 'Sabah Bisaya', [Definition] = NULL, [SortOrder] = 5901.00 WHERE [Code] = 'bsy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msi', 'Sabah Malay', NULL, 589.30) END +VALUES ('msi', 'Sabah Malay', NULL, 5902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabah Malay', [Definition] = NULL, [SortOrder] = 589.30 WHERE [Code] = 'msi' END +SET [Description] = 'Sabah Malay', [Definition] = NULL, [SortOrder] = 5902.00 WHERE [Code] = 'msi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sae', 'Sabanê', NULL, 589.40) END +VALUES ('sae', 'Sabanê', NULL, 5903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabanê', [Definition] = NULL, [SortOrder] = 589.40 WHERE [Code] = 'sae' END +SET [Description] = 'Sabanê', [Definition] = NULL, [SortOrder] = 5903.00 WHERE [Code] = 'sae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spy', 'Sabaot', NULL, 589.50) END +VALUES ('spy', 'Sabaot', NULL, 5904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabaot', [Definition] = NULL, [SortOrder] = 589.50 WHERE [Code] = 'spy' END +SET [Description] = 'Sabaot', [Definition] = NULL, [SortOrder] = 5904.00 WHERE [Code] = 'spy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbv', 'Sabine', NULL, 589.60) END +VALUES ('sbv', 'Sabine', NULL, 5905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabine', [Definition] = NULL, [SortOrder] = 589.60 WHERE [Code] = 'sbv' END +SET [Description] = 'Sabine', [Definition] = NULL, [SortOrder] = 5905.00 WHERE [Code] = 'sbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hvn', 'Sabu', NULL, 589.70) END +VALUES ('hvn', 'Sabu', NULL, 5906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabu', [Definition] = NULL, [SortOrder] = 589.70 WHERE [Code] = 'hvn' END +SET [Description] = 'Sabu', [Definition] = NULL, [SortOrder] = 5906.00 WHERE [Code] = 'hvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbo', 'Sabüm', NULL, 589.80) END +VALUES ('sbo', 'Sabüm', NULL, 5907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sabüm', [Definition] = NULL, [SortOrder] = 589.80 WHERE [Code] = 'sbo' END +SET [Description] = 'Sabüm', [Definition] = NULL, [SortOrder] = 5907.00 WHERE [Code] = 'sbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quv', 'Sacapulteco', NULL, 589.90) END +VALUES ('quv', 'Sacapulteco', NULL, 5908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sacapulteco', [Definition] = NULL, [SortOrder] = 589.90 WHERE [Code] = 'quv' END +SET [Description] = 'Sacapulteco', [Definition] = NULL, [SortOrder] = 5908.00 WHERE [Code] = 'quv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sck', 'Sadri', NULL, 590.00) END +VALUES ('sck', 'Sadri', NULL, 5909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sadri', [Definition] = NULL, [SortOrder] = 590.00 WHERE [Code] = 'sck' END +SET [Description] = 'Sadri', [Definition] = NULL, [SortOrder] = 5909.00 WHERE [Code] = 'sck' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skb', 'Saek', NULL, 590.10) END +VALUES ('skb', 'Saek', NULL, 5910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saek', [Definition] = NULL, [SortOrder] = 590.10 WHERE [Code] = 'skb' END +SET [Description] = 'Saek', [Definition] = NULL, [SortOrder] = 5910.00 WHERE [Code] = 'skb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spd', 'Saep', NULL, 590.20) END +VALUES ('spd', 'Saep', NULL, 5911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saep', [Definition] = NULL, [SortOrder] = 590.20 WHERE [Code] = 'spd' END +SET [Description] = 'Saep', [Definition] = NULL, [SortOrder] = 5911.00 WHERE [Code] = 'spd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saf', 'Safaliba', NULL, 590.30) END +VALUES ('saf', 'Safaliba', NULL, 5912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Safaliba', [Definition] = NULL, [SortOrder] = 590.30 WHERE [Code] = 'saf' END +SET [Description] = 'Safaliba', [Definition] = NULL, [SortOrder] = 5912.00 WHERE [Code] = 'saf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apz', 'Safeyoka', NULL, 590.40) END +VALUES ('apz', 'Safeyoka', NULL, 5913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Safeyoka', [Definition] = NULL, [SortOrder] = 590.40 WHERE [Code] = 'apz' END +SET [Description] = 'Safeyoka', [Definition] = NULL, [SortOrder] = 5913.00 WHERE [Code] = 'apz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbk', 'Safwa', NULL, 590.50) END +VALUES ('sbk', 'Safwa', NULL, 5914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Safwa', [Definition] = NULL, [SortOrder] = 590.50 WHERE [Code] = 'sbk' END +SET [Description] = 'Safwa', [Definition] = NULL, [SortOrder] = 5914.00 WHERE [Code] = 'sbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbm', 'Sagala', NULL, 590.60) END +VALUES ('sbm', 'Sagala', NULL, 5915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sagala', [Definition] = NULL, [SortOrder] = 590.60 WHERE [Code] = 'sbm' END +SET [Description] = 'Sagala', [Definition] = NULL, [SortOrder] = 5915.00 WHERE [Code] = 'sbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tga', 'Sagalla', NULL, 590.70) END +VALUES ('tga', 'Sagalla', NULL, 5916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sagalla', [Definition] = NULL, [SortOrder] = 590.70 WHERE [Code] = 'tga' END +SET [Description] = 'Sagalla', [Definition] = NULL, [SortOrder] = 5916.00 WHERE [Code] = 'tga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssy', 'Saho', NULL, 590.80) END +VALUES ('ssy', 'Saho', NULL, 5917.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saho', [Definition] = NULL, [SortOrder] = 590.80 WHERE [Code] = 'ssy' END +SET [Description] = 'Saho', [Definition] = NULL, [SortOrder] = 5917.00 WHERE [Code] = 'ssy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saj', 'Sahu', NULL, 590.90) END +VALUES ('saj', 'Sahu', NULL, 5918.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sahu', [Definition] = NULL, [SortOrder] = 590.90 WHERE [Code] = 'saj' END +SET [Description] = 'Sahu', [Definition] = NULL, [SortOrder] = 5918.00 WHERE [Code] = 'saj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aec', 'Saidi Arabic', NULL, 591.00) END +VALUES ('aec', 'Saidi Arabic', NULL, 5919.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saidi Arabic', [Definition] = NULL, [SortOrder] = 591.00 WHERE [Code] = 'aec' END +SET [Description] = 'Saidi Arabic', [Definition] = NULL, [SortOrder] = 5919.00 WHERE [Code] = 'aec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acf', 'Saint Lucian Creole French', NULL, 591.10) END +VALUES ('acf', 'Saint Lucian Creole French', NULL, 5920.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saint Lucian Creole French', [Definition] = NULL, [SortOrder] = 591.10 WHERE [Code] = 'acf' END +SET [Description] = 'Saint Lucian Creole French', [Definition] = NULL, [SortOrder] = 5920.00 WHERE [Code] = 'acf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsy', 'Saisiyat', NULL, 591.20) END +VALUES ('xsy', 'Saisiyat', NULL, 5921.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saisiyat', [Definition] = NULL, [SortOrder] = 591.20 WHERE [Code] = 'xsy' END +SET [Description] = 'Saisiyat', [Definition] = NULL, [SortOrder] = 5921.00 WHERE [Code] = 'xsy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjl', 'Sajalong', NULL, 591.30) END +VALUES ('sjl', 'Sajalong', NULL, 5922.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sajalong', [Definition] = NULL, [SortOrder] = 591.30 WHERE [Code] = 'sjl' END +SET [Description] = 'Sajalong', [Definition] = NULL, [SortOrder] = 5922.00 WHERE [Code] = 'sjl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjb', 'Sajau Basap', NULL, 591.40) END +VALUES ('sjb', 'Sajau Basap', NULL, 5923.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sajau Basap', [Definition] = NULL, [SortOrder] = 591.40 WHERE [Code] = 'sjb' END +SET [Description] = 'Sajau Basap', [Definition] = NULL, [SortOrder] = 5923.00 WHERE [Code] = 'sjb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sch', 'Sakachep', NULL, 591.50) END +VALUES ('sch', 'Sakachep', NULL, 5924.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakachep', [Definition] = NULL, [SortOrder] = 591.50 WHERE [Code] = 'sch' END +SET [Description] = 'Sakachep', [Definition] = NULL, [SortOrder] = 5924.00 WHERE [Code] = 'sch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skg', 'Sakalava Malagasy', NULL, 591.60) END +VALUES ('skg', 'Sakalava Malagasy', NULL, 5925.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakalava Malagasy', [Definition] = NULL, [SortOrder] = 591.60 WHERE [Code] = 'skg' END +SET [Description] = 'Sakalava Malagasy', [Definition] = NULL, [SortOrder] = 5925.00 WHERE [Code] = 'skg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sku', 'Sakao', NULL, 591.70) END +VALUES ('sku', 'Sakao', NULL, 5926.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakao', [Definition] = NULL, [SortOrder] = 591.70 WHERE [Code] = 'sku' END +SET [Description] = 'Sakao', [Definition] = NULL, [SortOrder] = 5926.00 WHERE [Code] = 'sku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skt', 'Sakata', NULL, 591.80) END +VALUES ('skt', 'Sakata', NULL, 5927.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakata', [Definition] = NULL, [SortOrder] = 591.80 WHERE [Code] = 'skt' END +SET [Description] = 'Sakata', [Definition] = NULL, [SortOrder] = 5927.00 WHERE [Code] = 'skt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sak', 'Sake', NULL, 591.90) END +VALUES ('sak', 'Sake', NULL, 5928.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sake', [Definition] = NULL, [SortOrder] = 591.90 WHERE [Code] = 'sak' END +SET [Description] = 'Sake', [Definition] = NULL, [SortOrder] = 5928.00 WHERE [Code] = 'sak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skf', 'Sakirabiá', NULL, 592.00) END +VALUES ('skf', 'Sakirabiá', NULL, 5929.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakirabiá', [Definition] = NULL, [SortOrder] = 592.00 WHERE [Code] = 'skf' END +SET [Description] = 'Sakirabiá', [Definition] = NULL, [SortOrder] = 5929.00 WHERE [Code] = 'skf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szy', 'Sakizaya', NULL, 592.10) END +VALUES ('szy', 'Sakizaya', NULL, 5930.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sakizaya', [Definition] = NULL, [SortOrder] = 592.10 WHERE [Code] = 'szy' END +SET [Description] = 'Sakizaya', [Definition] = NULL, [SortOrder] = 5930.00 WHERE [Code] = 'szy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shq', 'Sala', NULL, 592.20) END +VALUES ('shq', 'Sala', NULL, 5931.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sala', [Definition] = NULL, [SortOrder] = 592.20 WHERE [Code] = 'shq' END +SET [Description] = 'Sala', [Definition] = NULL, [SortOrder] = 5931.00 WHERE [Code] = 'shq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slx', 'Salampasu', NULL, 592.30) END +VALUES ('slx', 'Salampasu', NULL, 5932.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salampasu', [Definition] = NULL, [SortOrder] = 592.30 WHERE [Code] = 'slx' END +SET [Description] = 'Salampasu', [Definition] = NULL, [SortOrder] = 5932.00 WHERE [Code] = 'slx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slr', 'Salar', NULL, 592.40) END +VALUES ('slr', 'Salar', NULL, 5933.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salar', [Definition] = NULL, [SortOrder] = 592.40 WHERE [Code] = 'slr' END +SET [Description] = 'Salar', [Definition] = NULL, [SortOrder] = 5933.00 WHERE [Code] = 'slr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgu', 'Salas', NULL, 592.50) END +VALUES ('sgu', 'Salas', NULL, 5934.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salas', [Definition] = NULL, [SortOrder] = 592.50 WHERE [Code] = 'sgu' END +SET [Description] = 'Salas', [Definition] = NULL, [SortOrder] = 5934.00 WHERE [Code] = 'sgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxl', 'Salasaca Highland Quichua', NULL, 592.60) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salasaca Highland Quichua', [Definition] = NULL, [SortOrder] = 592.60 WHERE [Code] = 'qxl' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slq', 'Salchuq', NULL, 592.70) END +VALUES ('qxl', 'Salasaca Highland Quichua', NULL, 5935.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salchuq', [Definition] = NULL, [SortOrder] = 592.70 WHERE [Code] = 'slq' END +SET [Description] = 'Salasaca Highland Quichua', [Definition] = NULL, [SortOrder] = 5935.00 WHERE [Code] = 'qxl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sau', 'Saleman', NULL, 592.80) END +VALUES ('sau', 'Saleman', NULL, 5936.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saleman', [Definition] = NULL, [SortOrder] = 592.80 WHERE [Code] = 'sau' END +SET [Description] = 'Saleman', [Definition] = NULL, [SortOrder] = 5936.00 WHERE [Code] = 'sau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbe', 'Saliba', NULL, 592.90) END +VALUES ('sbe', 'Saliba', NULL, 5937.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saliba', [Definition] = NULL, [SortOrder] = 592.90 WHERE [Code] = 'sbe' END +SET [Description] = 'Saliba', [Definition] = NULL, [SortOrder] = 5937.00 WHERE [Code] = 'sbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slc', 'Sáliba', NULL, 593.00) END +VALUES ('slc', 'Sáliba', NULL, 5938.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sáliba', [Definition] = NULL, [SortOrder] = 593.00 WHERE [Code] = 'slc' END +SET [Description] = 'Sáliba', [Definition] = NULL, [SortOrder] = 5938.00 WHERE [Code] = 'slc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sln', 'Salinan', NULL, 593.10) END +VALUES ('sln', 'Salinan', NULL, 5939.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salinan', [Definition] = NULL, [SortOrder] = 593.10 WHERE [Code] = 'sln' END +SET [Description] = 'Salinan', [Definition] = NULL, [SortOrder] = 5939.00 WHERE [Code] = 'sln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdz', 'Sallands', NULL, 593.20) END +VALUES ('sdz', 'Sallands', NULL, 5940.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sallands', [Definition] = NULL, [SortOrder] = 593.20 WHERE [Code] = 'sdz' END +SET [Description] = 'Sallands', [Definition] = NULL, [SortOrder] = 5940.00 WHERE [Code] = 'sdz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sll', 'Salt-Yui', NULL, 593.30) END +VALUES ('sll', 'Salt-Yui', NULL, 5941.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salt-Yui', [Definition] = NULL, [SortOrder] = 593.30 WHERE [Code] = 'sll' END +SET [Description] = 'Salt-Yui', [Definition] = NULL, [SortOrder] = 5941.00 WHERE [Code] = 'sll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'loe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('loe', 'Saluan', NULL, 593.40) END +VALUES ('loe', 'Saluan', NULL, 5942.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saluan', [Definition] = NULL, [SortOrder] = 593.40 WHERE [Code] = 'loe' END +SET [Description] = 'Saluan', [Definition] = NULL, [SortOrder] = 5942.00 WHERE [Code] = 'loe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slj', 'Salumá', NULL, 593.50) END +VALUES ('slj', 'Salumá', NULL, 5943.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salumá', [Definition] = NULL, [SortOrder] = 593.50 WHERE [Code] = 'slj' END +SET [Description] = 'Salumá', [Definition] = NULL, [SortOrder] = 5943.00 WHERE [Code] = 'slj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'esn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('esn', 'Salvadoran Sign Language', NULL, 593.60) END +VALUES ('esn', 'Salvadoran Sign Language', NULL, 5944.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Salvadoran Sign Language', [Definition] = NULL, [SortOrder] = 593.60 WHERE [Code] = 'esn' END +SET [Description] = 'Salvadoran Sign Language', [Definition] = NULL, [SortOrder] = 5944.00 WHERE [Code] = 'esn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snx', 'Sam', NULL, 593.70) END +VALUES ('snx', 'Sam', NULL, 5945.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sam', [Definition] = NULL, [SortOrder] = 593.70 WHERE [Code] = 'snx' END +SET [Description] = 'Sam', [Definition] = NULL, [SortOrder] = 5945.00 WHERE [Code] = 'snx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smp', 'Samaritan', NULL, 593.80) END +VALUES ('smp', 'Samaritan', NULL, 5946.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samaritan', [Definition] = NULL, [SortOrder] = 593.80 WHERE [Code] = 'smp' END +SET [Description] = 'Samaritan', [Definition] = NULL, [SortOrder] = 5946.00 WHERE [Code] = 'smp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sam', 'Samaritan Aramaic', NULL, 593.90) END +VALUES ('sam', 'Samaritan Aramaic', NULL, 5947.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samaritan Aramaic', [Definition] = NULL, [SortOrder] = 593.90 WHERE [Code] = 'sam' END +SET [Description] = 'Samaritan Aramaic', [Definition] = NULL, [SortOrder] = 5947.00 WHERE [Code] = 'sam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmj', 'Samarokena', NULL, 594.00) END +VALUES ('tmj', 'Samarokena', NULL, 5948.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samarokena', [Definition] = NULL, [SortOrder] = 594.00 WHERE [Code] = 'tmj' END +SET [Description] = 'Samarokena', [Definition] = NULL, [SortOrder] = 5948.00 WHERE [Code] = 'tmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysd', 'Samatao', NULL, 594.10) END +VALUES ('ysd', 'Samatao', NULL, 5949.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samatao', [Definition] = NULL, [SortOrder] = 594.10 WHERE [Code] = 'ysd' END +SET [Description] = 'Samatao', [Definition] = NULL, [SortOrder] = 5949.00 WHERE [Code] = 'ysd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syx', 'Samay', NULL, 594.20) END +VALUES ('syx', 'Samay', NULL, 5950.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samay', [Definition] = NULL, [SortOrder] = 594.20 WHERE [Code] = 'syx' END +SET [Description] = 'Samay', [Definition] = NULL, [SortOrder] = 5950.00 WHERE [Code] = 'syx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smx', 'Samba', NULL, 594.30) END +VALUES ('smx', 'Samba', NULL, 5951.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samba', [Definition] = NULL, [SortOrder] = 594.30 WHERE [Code] = 'smx' END +SET [Description] = 'Samba', [Definition] = NULL, [SortOrder] = 5951.00 WHERE [Code] = 'smx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ccg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ccg', 'Samba Daka', NULL, 594.40) END +VALUES ('ccg', 'Samba Daka', NULL, 5952.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samba Daka', [Definition] = NULL, [SortOrder] = 594.40 WHERE [Code] = 'ccg' END +SET [Description] = 'Samba Daka', [Definition] = NULL, [SortOrder] = 5952.00 WHERE [Code] = 'ccg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ndi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ndi', 'Samba Leko', NULL, 594.50) END +VALUES ('ndi', 'Samba Leko', NULL, 5953.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samba Leko', [Definition] = NULL, [SortOrder] = 594.50 WHERE [Code] = 'ndi' END +SET [Description] = 'Samba Leko', [Definition] = NULL, [SortOrder] = 5953.00 WHERE [Code] = 'ndi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsb', 'Sambal', NULL, 594.60) END +VALUES ('xsb', 'Sambal', NULL, 5954.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sambal', [Definition] = NULL, [SortOrder] = 594.60 WHERE [Code] = 'xsb' END +SET [Description] = 'Sambal', [Definition] = NULL, [SortOrder] = 5954.00 WHERE [Code] = 'xsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spv', 'Sambalpuri', NULL, 594.70) END +VALUES ('spv', 'Sambalpuri', NULL, 5955.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sambalpuri', [Definition] = NULL, [SortOrder] = 594.70 WHERE [Code] = 'spv' END +SET [Description] = 'Sambalpuri', [Definition] = NULL, [SortOrder] = 5955.00 WHERE [Code] = 'spv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xab', 'Sambe', NULL, 594.80) END +VALUES ('xab', 'Sambe', NULL, 5956.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sambe', [Definition] = NULL, [SortOrder] = 594.80 WHERE [Code] = 'xab' END +SET [Description] = 'Sambe', [Definition] = NULL, [SortOrder] = 5956.00 WHERE [Code] = 'xab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssx', 'Samberigi', NULL, 594.90) END +VALUES ('ssx', 'Samberigi', NULL, 5957.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samberigi', [Definition] = NULL, [SortOrder] = 594.90 WHERE [Code] = 'ssx' END +SET [Description] = 'Samberigi', [Definition] = NULL, [SortOrder] = 5957.00 WHERE [Code] = 'ssx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saq', 'Samburu', NULL, 595.00) END +VALUES ('saq', 'Samburu', NULL, 5958.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samburu', [Definition] = NULL, [SortOrder] = 595.00 WHERE [Code] = 'saq' END +SET [Description] = 'Samburu', [Definition] = NULL, [SortOrder] = 5958.00 WHERE [Code] = 'saq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smh', 'Samei', NULL, 595.10) END +VALUES ('smh', 'Samei', NULL, 5959.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samei', [Definition] = NULL, [SortOrder] = 595.10 WHERE [Code] = 'smh' END +SET [Description] = 'Samei', [Definition] = NULL, [SortOrder] = 5959.00 WHERE [Code] = 'smh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smq', 'Samo', NULL, 595.20) END +VALUES ('smq', 'Samo', NULL, 5960.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samo', [Definition] = NULL, [SortOrder] = 595.20 WHERE [Code] = 'smq' END +SET [Description] = 'Samo', [Definition] = NULL, [SortOrder] = 5960.00 WHERE [Code] = 'smq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smo', 'Samoan', NULL, 595.30) END +VALUES ('smo', 'Samoan', NULL, 5961.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samoan', [Definition] = NULL, [SortOrder] = 595.30 WHERE [Code] = 'smo' END +SET [Description] = 'Samoan', [Definition] = NULL, [SortOrder] = 5961.00 WHERE [Code] = 'smo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgs', 'Samogitian', NULL, 595.40) END +VALUES ('sgs', 'Samogitian', NULL, 5962.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samogitian', [Definition] = NULL, [SortOrder] = 595.40 WHERE [Code] = 'sgs' END +SET [Description] = 'Samogitian', [Definition] = NULL, [SortOrder] = 5962.00 WHERE [Code] = 'sgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swm', 'Samosa', NULL, 595.50) END +VALUES ('swm', 'Samosa', NULL, 5963.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samosa', [Definition] = NULL, [SortOrder] = 595.50 WHERE [Code] = 'swm' END +SET [Description] = 'Samosa', [Definition] = NULL, [SortOrder] = 5963.00 WHERE [Code] = 'swm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rav', 'Sampang', NULL, 595.60) END +VALUES ('rav', 'Sampang', NULL, 5964.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sampang', [Definition] = NULL, [SortOrder] = 595.60 WHERE [Code] = 'rav' END +SET [Description] = 'Sampang', [Definition] = NULL, [SortOrder] = 5964.00 WHERE [Code] = 'rav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxm', 'Samre', NULL, 595.70) END +VALUES ('sxm', 'Samre', NULL, 5965.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samre', [Definition] = NULL, [SortOrder] = 595.70 WHERE [Code] = 'sxm' END +SET [Description] = 'Samre', [Definition] = NULL, [SortOrder] = 5965.00 WHERE [Code] = 'sxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stu', 'Samtao', NULL, 595.80) END +VALUES ('stu', 'Samtao', NULL, 5966.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samtao', [Definition] = NULL, [SortOrder] = 595.80 WHERE [Code] = 'stu' END +SET [Description] = 'Samtao', [Definition] = NULL, [SortOrder] = 5966.00 WHERE [Code] = 'stu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smv', 'Samvedi', NULL, 595.90) END +VALUES ('smv', 'Samvedi', NULL, 5967.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Samvedi', [Definition] = NULL, [SortOrder] = 595.90 WHERE [Code] = 'smv' END +SET [Description] = 'Samvedi', [Definition] = NULL, [SortOrder] = 5967.00 WHERE [Code] = 'smv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztm', 'San Agustín Mixtepec Zapotec', NULL, 596.00) END +VALUES ('ztm', 'San Agustín Mixtepec Zapotec', NULL, 5968.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Agustín Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 596.00 WHERE [Code] = 'ztm' END +SET [Description] = 'San Agustín Mixtepec Zapotec', [Definition] = NULL, [SortOrder] = 5968.00 WHERE [Code] = 'ztm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpx', 'San Baltazar Loxicha Zapotec', NULL, 596.10) END +VALUES ('zpx', 'San Baltazar Loxicha Zapotec', NULL, 5969.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Baltazar Loxicha Zapotec', [Definition] = NULL, [SortOrder] = 596.10 WHERE [Code] = 'zpx' END +SET [Description] = 'San Baltazar Loxicha Zapotec', [Definition] = NULL, [SortOrder] = 5969.00 WHERE [Code] = 'zpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuk', 'San Blas Kuna', NULL, 596.20) END +VALUES ('cuk', 'San Blas Kuna', NULL, 5970.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Blas Kuna', [Definition] = NULL, [SortOrder] = 596.20 WHERE [Code] = 'cuk' END +SET [Description] = 'San Blas Kuna', [Definition] = NULL, [SortOrder] = 5970.00 WHERE [Code] = 'cuk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hve', 'San Dionisio Del Mar Huave', NULL, 596.30) END +VALUES ('hve', 'San Dionisio Del Mar Huave', NULL, 5971.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Dionisio Del Mar Huave', [Definition] = NULL, [SortOrder] = 596.30 WHERE [Code] = 'hve' END +SET [Description] = 'San Dionisio Del Mar Huave', [Definition] = NULL, [SortOrder] = 5971.00 WHERE [Code] = 'hve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pow', 'San Felipe Otlaltepec Popoloca', NULL, 596.40) END +VALUES ('pow', 'San Felipe Otlaltepec Popoloca', NULL, 5972.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Felipe Otlaltepec Popoloca', [Definition] = NULL, [SortOrder] = 596.40 WHERE [Code] = 'pow' END +SET [Description] = 'San Felipe Otlaltepec Popoloca', [Definition] = NULL, [SortOrder] = 5972.00 WHERE [Code] = 'pow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hue', 'San Francisco Del Mar Huave', NULL, 596.50) END +VALUES ('hue', 'San Francisco Del Mar Huave', NULL, 5973.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Francisco Del Mar Huave', [Definition] = NULL, [SortOrder] = 596.50 WHERE [Code] = 'hue' END +SET [Description] = 'San Francisco Del Mar Huave', [Definition] = NULL, [SortOrder] = 5973.00 WHERE [Code] = 'hue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mat', 'San Francisco Matlatzinca', NULL, 596.60) END +VALUES ('mat', 'San Francisco Matlatzinca', NULL, 5974.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Francisco Matlatzinca', [Definition] = NULL, [SortOrder] = 596.60 WHERE [Code] = 'mat' END +SET [Description] = 'San Francisco Matlatzinca', [Definition] = NULL, [SortOrder] = 5974.00 WHERE [Code] = 'mat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'maa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('maa', 'San Jerónimo Tecóatl Mazatec', NULL, 596.70) END +VALUES ('maa', 'San Jerónimo Tecóatl Mazatec', NULL, 5975.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Jerónimo Tecóatl Mazatec', [Definition] = NULL, [SortOrder] = 596.70 WHERE [Code] = 'maa' END +SET [Description] = 'San Jerónimo Tecóatl Mazatec', [Definition] = NULL, [SortOrder] = 5975.00 WHERE [Code] = 'maa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poe', 'San Juan Atzingo Popoloca', NULL, 596.80) END +VALUES ('poe', 'San Juan Atzingo Popoloca', NULL, 5976.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Juan Atzingo Popoloca', [Definition] = NULL, [SortOrder] = 596.80 WHERE [Code] = 'poe' END +SET [Description] = 'San Juan Atzingo Popoloca', [Definition] = NULL, [SortOrder] = 5976.00 WHERE [Code] = 'poe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjc', 'San Juan Colorado Mixtec', NULL, 596.90) END +VALUES ('mjc', 'San Juan Colorado Mixtec', NULL, 5977.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Juan Colorado Mixtec', [Definition] = NULL, [SortOrder] = 596.90 WHERE [Code] = 'mjc' END +SET [Description] = 'San Juan Colorado Mixtec', [Definition] = NULL, [SortOrder] = 5977.00 WHERE [Code] = 'mjc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtj', 'San Juan Teita Mixtec', NULL, 597.00) END +VALUES ('xtj', 'San Juan Teita Mixtec', NULL, 5978.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Juan Teita Mixtec', [Definition] = NULL, [SortOrder] = 597.00 WHERE [Code] = 'xtj' END +SET [Description] = 'San Juan Teita Mixtec', [Definition] = NULL, [SortOrder] = 5978.00 WHERE [Code] = 'xtj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pps', 'San Luís Temalacayuca Popoloca', NULL, 597.10) END +VALUES ('pps', 'San Luís Temalacayuca Popoloca', NULL, 5979.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Luís Temalacayuca Popoloca', [Definition] = NULL, [SortOrder] = 597.10 WHERE [Code] = 'pps' END +SET [Description] = 'San Luís Temalacayuca Popoloca', [Definition] = NULL, [SortOrder] = 5979.00 WHERE [Code] = 'pps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pls', 'San Marcos Tlacoyalco Popoloca', NULL, 597.20) END +VALUES ('pls', 'San Marcos Tlacoyalco Popoloca', NULL, 5980.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Marcos Tlacoyalco Popoloca', [Definition] = NULL, [SortOrder] = 597.20 WHERE [Code] = 'pls' END +SET [Description] = 'San Marcos Tlacoyalco Popoloca', [Definition] = NULL, [SortOrder] = 5980.00 WHERE [Code] = 'pls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trq', 'San Martín Itunyoso Triqui', NULL, 597.30) END +VALUES ('trq', 'San Martín Itunyoso Triqui', NULL, 5981.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Martín Itunyoso Triqui', [Definition] = NULL, [SortOrder] = 597.30 WHERE [Code] = 'trq' END +SET [Description] = 'San Martín Itunyoso Triqui', [Definition] = NULL, [SortOrder] = 5981.00 WHERE [Code] = 'trq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qvs', 'San Martín Quechua', NULL, 597.40) END +VALUES ('qvs', 'San Martín Quechua', NULL, 5982.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Martín Quechua', [Definition] = NULL, [SortOrder] = 597.40 WHERE [Code] = 'qvs' END +SET [Description] = 'San Martín Quechua', [Definition] = NULL, [SortOrder] = 5982.00 WHERE [Code] = 'qvs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huv', 'San Mateo Del Mar Huave', NULL, 597.50) END +VALUES ('huv', 'San Mateo Del Mar Huave', NULL, 5983.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Mateo Del Mar Huave', [Definition] = NULL, [SortOrder] = 597.50 WHERE [Code] = 'huv' END +SET [Description] = 'San Mateo Del Mar Huave', [Definition] = NULL, [SortOrder] = 5983.00 WHERE [Code] = 'huv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scf', 'San Miguel Creole French', NULL, 597.60) END +VALUES ('scf', 'San Miguel Creole French', NULL, 5984.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Miguel Creole French', [Definition] = NULL, [SortOrder] = 597.60 WHERE [Code] = 'scf' END +SET [Description] = 'San Miguel Creole French', [Definition] = NULL, [SortOrder] = 5984.00 WHERE [Code] = 'scf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mig', 'San Miguel El Grande Mixtec', NULL, 597.70) END +VALUES ('mig', 'San Miguel El Grande Mixtec', NULL, 5985.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Miguel El Grande Mixtec', [Definition] = NULL, [SortOrder] = 597.70 WHERE [Code] = 'mig' END +SET [Description] = 'San Miguel El Grande Mixtec', [Definition] = NULL, [SortOrder] = 5985.00 WHERE [Code] = 'mig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtp', 'San Miguel Piedras Mixtec', NULL, 597.80) END +VALUES ('xtp', 'San Miguel Piedras Mixtec', NULL, 5986.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Miguel Piedras Mixtec', [Definition] = NULL, [SortOrder] = 597.80 WHERE [Code] = 'xtp' END +SET [Description] = 'San Miguel Piedras Mixtec', [Definition] = NULL, [SortOrder] = 5986.00 WHERE [Code] = 'xtp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azg', 'San Pedro Amuzgos Amuzgo', NULL, 597.90) END +VALUES ('azg', 'San Pedro Amuzgos Amuzgo', NULL, 5987.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Pedro Amuzgos Amuzgo', [Definition] = NULL, [SortOrder] = 597.90 WHERE [Code] = 'azg' END +SET [Description] = 'San Pedro Amuzgos Amuzgo', [Definition] = NULL, [SortOrder] = 5987.00 WHERE [Code] = 'azg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpf', 'San Pedro Quiatoni Zapotec', NULL, 598.00) END +VALUES ('zpf', 'San Pedro Quiatoni Zapotec', NULL, 5988.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Pedro Quiatoni Zapotec', [Definition] = NULL, [SortOrder] = 598.00 WHERE [Code] = 'zpf' END +SET [Description] = 'San Pedro Quiatoni Zapotec', [Definition] = NULL, [SortOrder] = 5988.00 WHERE [Code] = 'zpf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwy', 'San Salvador Kongo', NULL, 598.10) END +VALUES ('kwy', 'San Salvador Kongo', NULL, 5989.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Salvador Kongo', [Definition] = NULL, [SortOrder] = 598.10 WHERE [Code] = 'kwy' END +SET [Description] = 'San Salvador Kongo', [Definition] = NULL, [SortOrder] = 5989.00 WHERE [Code] = 'kwy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpt', 'San Vicente Coatlán Zapotec', NULL, 598.20) END +VALUES ('zpt', 'San Vicente Coatlán Zapotec', NULL, 5990.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'San Vicente Coatlán Zapotec', [Definition] = NULL, [SortOrder] = 598.20 WHERE [Code] = 'zpt' END +SET [Description] = 'San Vicente Coatlán Zapotec', [Definition] = NULL, [SortOrder] = 5990.00 WHERE [Code] = 'zpt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayn', 'Sanaani Arabic', NULL, 598.30) END +VALUES ('ayn', 'Sanaani Arabic', NULL, 5991.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanaani Arabic', [Definition] = NULL, [SortOrder] = 598.30 WHERE [Code] = 'ayn' END +SET [Description] = 'Sanaani Arabic', [Definition] = NULL, [SortOrder] = 5991.00 WHERE [Code] = 'ayn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spn', 'Sanapaná', NULL, 598.40) END +VALUES ('spn', 'Sanapaná', NULL, 5992.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanapaná', [Definition] = NULL, [SortOrder] = 598.40 WHERE [Code] = 'spn' END +SET [Description] = 'Sanapaná', [Definition] = NULL, [SortOrder] = 5992.00 WHERE [Code] = 'spn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sad', 'Sandawe', NULL, 598.50) END +VALUES ('sad', 'Sandawe', NULL, 5993.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sandawe', [Definition] = NULL, [SortOrder] = 598.50 WHERE [Code] = 'sad' END +SET [Description] = 'Sandawe', [Definition] = NULL, [SortOrder] = 5993.00 WHERE [Code] = 'sad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sng', 'Sanga (Democratic Republic of Congo)', NULL, 598.60) END +VALUES ('sng', 'Sanga (Democratic Republic of Congo)', NULL, 5994.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanga (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 598.60 WHERE [Code] = 'sng' END +SET [Description] = 'Sanga (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 5994.00 WHERE [Code] = 'sng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsn', 'Sanga (Nigeria)', NULL, 598.70) END +VALUES ('xsn', 'Sanga (Nigeria)', NULL, 5995.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanga (Nigeria)', [Definition] = NULL, [SortOrder] = 598.70 WHERE [Code] = 'xsn' END +SET [Description] = 'Sanga (Nigeria)', [Definition] = NULL, [SortOrder] = 5995.00 WHERE [Code] = 'xsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scg', 'Sanggau', NULL, 598.80) END +VALUES ('scg', 'Sanggau', NULL, 5996.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanggau', [Definition] = NULL, [SortOrder] = 598.80 WHERE [Code] = 'scg' END +SET [Description] = 'Sanggau', [Definition] = NULL, [SortOrder] = 5996.00 WHERE [Code] = 'scg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snl', 'Sangil', NULL, 598.90) END +VALUES ('snl', 'Sangil', NULL, 5997.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangil', [Definition] = NULL, [SortOrder] = 598.90 WHERE [Code] = 'snl' END +SET [Description] = 'Sangil', [Definition] = NULL, [SortOrder] = 5997.00 WHERE [Code] = 'snl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxn', 'Sangir', NULL, 599.00) END +VALUES ('sxn', 'Sangir', NULL, 5998.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangir', [Definition] = NULL, [SortOrder] = 599.00 WHERE [Code] = 'sxn' END +SET [Description] = 'Sangir', [Definition] = NULL, [SortOrder] = 5998.00 WHERE [Code] = 'sxn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgr', 'Sangisari', NULL, 599.10) END +VALUES ('sgr', 'Sangisari', NULL, 5999.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangisari', [Definition] = NULL, [SortOrder] = 599.10 WHERE [Code] = 'sgr' END +SET [Description] = 'Sangisari', [Definition] = NULL, [SortOrder] = 5999.00 WHERE [Code] = 'sgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgk', 'Sangkong', NULL, 599.20) END +VALUES ('sgk', 'Sangkong', NULL, 6000.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangkong', [Definition] = NULL, [SortOrder] = 599.20 WHERE [Code] = 'sgk' END +SET [Description] = 'Sangkong', [Definition] = NULL, [SortOrder] = 6000.00 WHERE [Code] = 'sgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgy', 'Sanglechi', NULL, 599.30) END +VALUES ('sgy', 'Sanglechi', NULL, 6001.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanglechi', [Definition] = NULL, [SortOrder] = 599.30 WHERE [Code] = 'sgy' END +SET [Description] = 'Sanglechi', [Definition] = NULL, [SortOrder] = 6001.00 WHERE [Code] = 'sgy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sag', 'Sango', NULL, 599.40) END +VALUES ('sag', 'Sango', NULL, 6002.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sango', [Definition] = NULL, [SortOrder] = 599.40 WHERE [Code] = 'sag' END +SET [Description] = 'Sango', [Definition] = NULL, [SortOrder] = 6002.00 WHERE [Code] = 'sag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsa', 'Sangtam Naga', NULL, 599.50) END +VALUES ('nsa', 'Sangtam Naga', NULL, 6003.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangtam Naga', [Definition] = NULL, [SortOrder] = 599.50 WHERE [Code] = 'nsa' END +SET [Description] = 'Sangtam Naga', [Definition] = NULL, [SortOrder] = 6003.00 WHERE [Code] = 'nsa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snq', 'Sangu (Gabon)', NULL, 599.60) END +VALUES ('snq', 'Sangu (Gabon)', NULL, 6004.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangu (Gabon)', [Definition] = NULL, [SortOrder] = 599.60 WHERE [Code] = 'snq' END +SET [Description] = 'Sangu (Gabon)', [Definition] = NULL, [SortOrder] = 6004.00 WHERE [Code] = 'snq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbp', 'Sangu (Tanzania)', NULL, 599.70) END +VALUES ('sbp', 'Sangu (Tanzania)', NULL, 6005.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sangu (Tanzania)', [Definition] = NULL, [SortOrder] = 599.70 WHERE [Code] = 'sbp' END +SET [Description] = 'Sangu (Tanzania)', [Definition] = NULL, [SortOrder] = 6005.00 WHERE [Code] = 'sbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysn', 'Sani', NULL, 599.80) END +VALUES ('ysn', 'Sani', NULL, 6006.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sani', [Definition] = NULL, [SortOrder] = 599.80 WHERE [Code] = 'ysn' END +SET [Description] = 'Sani', [Definition] = NULL, [SortOrder] = 6006.00 WHERE [Code] = 'ysn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysy', 'Sanie', NULL, 599.90) END +VALUES ('ysy', 'Sanie', NULL, 6007.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanie', [Definition] = NULL, [SortOrder] = 599.90 WHERE [Code] = 'ysy' END +SET [Description] = 'Sanie', [Definition] = NULL, [SortOrder] = 6007.00 WHERE [Code] = 'ysy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sny', 'Saniyo-Hiyewe', NULL, 600.00) END +VALUES ('sny', 'Saniyo-Hiyewe', NULL, 6008.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saniyo-Hiyewe', [Definition] = NULL, [SortOrder] = 600.00 WHERE [Code] = 'sny' END +SET [Description] = 'Saniyo-Hiyewe', [Definition] = NULL, [SortOrder] = 6008.00 WHERE [Code] = 'sny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msc', 'Sankaran Maninka', NULL, 600.10) END +VALUES ('msc', 'Sankaran Maninka', NULL, 6009.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sankaran Maninka', [Definition] = NULL, [SortOrder] = 600.10 WHERE [Code] = 'msc' END +SET [Description] = 'Sankaran Maninka', [Definition] = NULL, [SortOrder] = 6009.00 WHERE [Code] = 'msc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssi', 'Sansi', NULL, 600.20) END +VALUES ('ssi', 'Sansi', NULL, 6010.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sansi', [Definition] = NULL, [SortOrder] = 600.20 WHERE [Code] = 'ssi' END +SET [Description] = 'Sansi', [Definition] = NULL, [SortOrder] = 6010.00 WHERE [Code] = 'ssi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'san') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('san', 'Sanskrit', NULL, 600.30) END +VALUES ('san', 'Sanskrit', NULL, 6011.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanskrit', [Definition] = NULL, [SortOrder] = 600.30 WHERE [Code] = 'san' END +SET [Description] = 'Sanskrit', [Definition] = NULL, [SortOrder] = 6011.00 WHERE [Code] = 'san' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxt', 'Santa Ana de Tusi Pasco Quechua', NULL, 600.40) END +VALUES ('qxt', 'Santa Ana de Tusi Pasco Quechua', NULL, 6012.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Ana de Tusi Pasco Quechua', [Definition] = NULL, [SortOrder] = 600.40 WHERE [Code] = 'qxt' END +SET [Description] = 'Santa Ana de Tusi Pasco Quechua', [Definition] = NULL, [SortOrder] = 6012.00 WHERE [Code] = 'qxt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztn', 'Santa Catarina Albarradas Zapotec', NULL, 600.50) END +VALUES ('ztn', 'Santa Catarina Albarradas Zapotec', NULL, 6013.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Catarina Albarradas Zapotec', [Definition] = NULL, [SortOrder] = 600.50 WHERE [Code] = 'ztn' END +SET [Description] = 'Santa Catarina Albarradas Zapotec', [Definition] = NULL, [SortOrder] = 6013.00 WHERE [Code] = 'ztn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pca', 'Santa Inés Ahuatempan Popoloca', NULL, 600.60) END +VALUES ('pca', 'Santa Inés Ahuatempan Popoloca', NULL, 6014.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Inés Ahuatempan Popoloca', [Definition] = NULL, [SortOrder] = 600.60 WHERE [Code] = 'pca' END +SET [Description] = 'Santa Inés Ahuatempan Popoloca', [Definition] = NULL, [SortOrder] = 6014.00 WHERE [Code] = 'pca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpn', 'Santa Inés Yatzechi Zapotec', NULL, 600.70) END +VALUES ('zpn', 'Santa Inés Yatzechi Zapotec', NULL, 6015.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Inés Yatzechi Zapotec', [Definition] = NULL, [SortOrder] = 600.70 WHERE [Code] = 'zpn' END +SET [Description] = 'Santa Inés Yatzechi Zapotec', [Definition] = NULL, [SortOrder] = 6015.00 WHERE [Code] = 'zpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdv', 'Santa Lucía Monteverde Mixtec', NULL, 600.80) END +VALUES ('mdv', 'Santa Lucía Monteverde Mixtec', NULL, 6016.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Lucía Monteverde Mixtec', [Definition] = NULL, [SortOrder] = 600.80 WHERE [Code] = 'mdv' END +SET [Description] = 'Santa Lucía Monteverde Mixtec', [Definition] = NULL, [SortOrder] = 6016.00 WHERE [Code] = 'mdv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hvv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hvv', 'Santa María Del Mar Huave', NULL, 600.90) END +VALUES ('hvv', 'Santa María Del Mar Huave', NULL, 6017.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa María Del Mar Huave', [Definition] = NULL, [SortOrder] = 600.90 WHERE [Code] = 'hvv' END +SET [Description] = 'Santa María Del Mar Huave', [Definition] = NULL, [SortOrder] = 6017.00 WHERE [Code] = 'hvv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhz', 'Santa María La Alta Nahuatl', NULL, 601.00) END +VALUES ('nhz', 'Santa María La Alta Nahuatl', NULL, 6018.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa María La Alta Nahuatl', [Definition] = NULL, [SortOrder] = 601.00 WHERE [Code] = 'nhz' END +SET [Description] = 'Santa María La Alta Nahuatl', [Definition] = NULL, [SortOrder] = 6018.00 WHERE [Code] = 'nhz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpi', 'Santa María Quiegolani Zapotec', NULL, 601.10) END +VALUES ('zpi', 'Santa María Quiegolani Zapotec', NULL, 6019.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa María Quiegolani Zapotec', [Definition] = NULL, [SortOrder] = 601.10 WHERE [Code] = 'zpi' END +SET [Description] = 'Santa María Quiegolani Zapotec', [Definition] = NULL, [SortOrder] = 6019.00 WHERE [Code] = 'zpi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mza', 'Santa María Zacatepec Mixtec', NULL, 601.20) END +VALUES ('mza', 'Santa María Zacatepec Mixtec', NULL, 6020.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa María Zacatepec Mixtec', [Definition] = NULL, [SortOrder] = 601.20 WHERE [Code] = 'mza' END +SET [Description] = 'Santa María Zacatepec Mixtec', [Definition] = NULL, [SortOrder] = 6020.00 WHERE [Code] = 'mza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cok', 'Santa Teresa Cora', NULL, 601.30) END +VALUES ('cok', 'Santa Teresa Cora', NULL, 6021.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santa Teresa Cora', [Definition] = NULL, [SortOrder] = 601.30 WHERE [Code] = 'cok' END +SET [Description] = 'Santa Teresa Cora', [Definition] = NULL, [SortOrder] = 6021.00 WHERE [Code] = 'cok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sat', 'Santali', NULL, 601.40) END +VALUES ('sat', 'Santali', NULL, 6022.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santali', [Definition] = NULL, [SortOrder] = 601.40 WHERE [Code] = 'sat' END +SET [Description] = 'Santali', [Definition] = NULL, [SortOrder] = 6022.00 WHERE [Code] = 'sat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qus', 'Santiago del Estero Quichua', NULL, 601.50) END +VALUES ('qus', 'Santiago del Estero Quichua', NULL, 6023.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santiago del Estero Quichua', [Definition] = NULL, [SortOrder] = 601.50 WHERE [Code] = 'qus' END +SET [Description] = 'Santiago del Estero Quichua', [Definition] = NULL, [SortOrder] = 6023.00 WHERE [Code] = 'qus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpr', 'Santiago Xanica Zapotec', NULL, 601.60) END +VALUES ('zpr', 'Santiago Xanica Zapotec', NULL, 6024.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santiago Xanica Zapotec', [Definition] = NULL, [SortOrder] = 601.60 WHERE [Code] = 'zpr' END +SET [Description] = 'Santiago Xanica Zapotec', [Definition] = NULL, [SortOrder] = 6024.00 WHERE [Code] = 'zpr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zas', 'Santo Domingo Albarradas Zapotec', NULL, 601.70) END +VALUES ('zas', 'Santo Domingo Albarradas Zapotec', NULL, 6025.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Santo Domingo Albarradas Zapotec', [Definition] = NULL, [SortOrder] = 601.70 WHERE [Code] = 'zas' END +SET [Description] = 'Santo Domingo Albarradas Zapotec', [Definition] = NULL, [SortOrder] = 6025.00 WHERE [Code] = 'zas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsu', 'Sanumá', NULL, 601.80) END +VALUES ('xsu', 'Sanumá', NULL, 6026.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sanumá', [Definition] = NULL, [SortOrder] = 601.80 WHERE [Code] = 'xsu' END +SET [Description] = 'Sanumá', [Definition] = NULL, [SortOrder] = 6026.00 WHERE [Code] = 'xsu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkp', 'São Paulo Kaingáng', NULL, 601.90) END +VALUES ('zkp', 'São Paulo Kaingáng', NULL, 6027.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'São Paulo Kaingáng', [Definition] = NULL, [SortOrder] = 601.90 WHERE [Code] = 'zkp' END +SET [Description] = 'São Paulo Kaingáng', [Definition] = NULL, [SortOrder] = 6027.00 WHERE [Code] = 'zkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cri', 'Sãotomense', NULL, 602.00) END +VALUES ('cri', 'Sãotomense', NULL, 6028.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sãotomense', [Definition] = NULL, [SortOrder] = 602.00 WHERE [Code] = 'cri' END +SET [Description] = 'Sãotomense', [Definition] = NULL, [SortOrder] = 6028.00 WHERE [Code] = 'cri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spr', 'Saparua', NULL, 602.10) END +VALUES ('spr', 'Saparua', NULL, 6029.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saparua', [Definition] = NULL, [SortOrder] = 602.10 WHERE [Code] = 'spr' END +SET [Description] = 'Saparua', [Definition] = NULL, [SortOrder] = 6029.00 WHERE [Code] = 'spr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spc', 'Sapé', NULL, 602.20) END +VALUES ('spc', 'Sapé', NULL, 6030.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sapé', [Definition] = NULL, [SortOrder] = 602.20 WHERE [Code] = 'spc' END +SET [Description] = 'Sapé', [Definition] = NULL, [SortOrder] = 6030.00 WHERE [Code] = 'spc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krn', 'Sapo', NULL, 602.30) END +VALUES ('krn', 'Sapo', NULL, 6031.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sapo', [Definition] = NULL, [SortOrder] = 602.30 WHERE [Code] = 'krn' END +SET [Description] = 'Sapo', [Definition] = NULL, [SortOrder] = 6031.00 WHERE [Code] = 'krn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spi', 'Saponi', NULL, 602.40) END +VALUES ('spi', 'Saponi', NULL, 6032.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saponi', [Definition] = NULL, [SortOrder] = 602.40 WHERE [Code] = 'spi' END +SET [Description] = 'Saponi', [Definition] = NULL, [SortOrder] = 6032.00 WHERE [Code] = 'spi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sps', 'Saposa', NULL, 602.50) END +VALUES ('sps', 'Saposa', NULL, 6033.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saposa', [Definition] = NULL, [SortOrder] = 602.50 WHERE [Code] = 'sps' END +SET [Description] = 'Saposa', [Definition] = NULL, [SortOrder] = 6033.00 WHERE [Code] = 'sps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spu', 'Sapuan', NULL, 602.60) END +VALUES ('spu', 'Sapuan', NULL, 6034.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sapuan', [Definition] = NULL, [SortOrder] = 602.60 WHERE [Code] = 'spu' END +SET [Description] = 'Sapuan', [Definition] = NULL, [SortOrder] = 6034.00 WHERE [Code] = 'spu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mwm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mwm', 'Sar', NULL, 602.70) END +VALUES ('mwm', 'Sar', NULL, 6035.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sar', [Definition] = NULL, [SortOrder] = 602.70 WHERE [Code] = 'mwm' END +SET [Description] = 'Sar', [Definition] = NULL, [SortOrder] = 6035.00 WHERE [Code] = 'mwm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sre', 'Sara', NULL, 602.80) END +VALUES ('sre', 'Sara', NULL, 6036.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sara', [Definition] = NULL, [SortOrder] = 602.80 WHERE [Code] = 'sre' END +SET [Description] = 'Sara', [Definition] = NULL, [SortOrder] = 6036.00 WHERE [Code] = 'sre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbz', 'Sara Kaba', NULL, 602.90) END +VALUES ('sbz', 'Sara Kaba', NULL, 6037.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sara Kaba', [Definition] = NULL, [SortOrder] = 602.90 WHERE [Code] = 'sbz' END +SET [Description] = 'Sara Kaba', [Definition] = NULL, [SortOrder] = 6037.00 WHERE [Code] = 'sbz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwg', 'Sara Kaba Deme', NULL, 603.00) END +VALUES ('kwg', 'Sara Kaba Deme', NULL, 6038.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sara Kaba Deme', [Definition] = NULL, [SortOrder] = 603.00 WHERE [Code] = 'kwg' END +SET [Description] = 'Sara Kaba Deme', [Definition] = NULL, [SortOrder] = 6038.00 WHERE [Code] = 'kwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kwv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kwv', 'Sara Kaba Náà', NULL, 603.10) END +VALUES ('kwv', 'Sara Kaba Náà', NULL, 6039.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sara Kaba Náà', [Definition] = NULL, [SortOrder] = 603.10 WHERE [Code] = 'kwv' END +SET [Description] = 'Sara Kaba Náà', [Definition] = NULL, [SortOrder] = 6039.00 WHERE [Code] = 'kwv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skr', 'Saraiki', NULL, 603.20) END +VALUES ('skr', 'Saraiki', NULL, 6040.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saraiki', [Definition] = NULL, [SortOrder] = 603.20 WHERE [Code] = 'skr' END +SET [Description] = 'Saraiki', [Definition] = NULL, [SortOrder] = 6040.00 WHERE [Code] = 'skr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srm', 'Saramaccan', NULL, 603.30) END +VALUES ('srm', 'Saramaccan', NULL, 6041.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saramaccan', [Definition] = NULL, [SortOrder] = 603.30 WHERE [Code] = 'srm' END +SET [Description] = 'Saramaccan', [Definition] = NULL, [SortOrder] = 6041.00 WHERE [Code] = 'srm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bps', 'Sarangani Blaan', NULL, 603.40) END +VALUES ('bps', 'Sarangani Blaan', NULL, 6042.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarangani Blaan', [Definition] = NULL, [SortOrder] = 603.40 WHERE [Code] = 'bps' END +SET [Description] = 'Sarangani Blaan', [Definition] = NULL, [SortOrder] = 6042.00 WHERE [Code] = 'bps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbs', 'Sarangani Manobo', NULL, 603.50) END +VALUES ('mbs', 'Sarangani Manobo', NULL, 6043.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarangani Manobo', [Definition] = NULL, [SortOrder] = 603.50 WHERE [Code] = 'mbs' END +SET [Description] = 'Sarangani Manobo', [Definition] = NULL, [SortOrder] = 6043.00 WHERE [Code] = 'mbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsa', 'Sarasira', NULL, 603.60) END +VALUES ('zsa', 'Sarasira', NULL, 6044.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarasira', [Definition] = NULL, [SortOrder] = 603.60 WHERE [Code] = 'zsa' END +SET [Description] = 'Sarasira', [Definition] = NULL, [SortOrder] = 6044.00 WHERE [Code] = 'zsa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sar', 'Saraveca', NULL, 603.70) END +VALUES ('sar', 'Saraveca', NULL, 6045.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saraveca', [Definition] = NULL, [SortOrder] = 603.70 WHERE [Code] = 'sar' END +SET [Description] = 'Saraveca', [Definition] = NULL, [SortOrder] = 6045.00 WHERE [Code] = 'sar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srd', 'Sardinian', NULL, 603.80) END +VALUES ('srd', 'Sardinian', NULL, 6046.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sardinian', [Definition] = NULL, [SortOrder] = 603.80 WHERE [Code] = 'srd' END +SET [Description] = 'Sardinian', [Definition] = NULL, [SortOrder] = 6046.00 WHERE [Code] = 'srd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asj', 'Sari', NULL, 603.90) END +VALUES ('asj', 'Sari', NULL, 6047.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sari', [Definition] = NULL, [SortOrder] = 603.90 WHERE [Code] = 'asj' END +SET [Description] = 'Sari', [Definition] = NULL, [SortOrder] = 6047.00 WHERE [Code] = 'asj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srh', 'Sarikoli', NULL, 604.00) END +VALUES ('srh', 'Sarikoli', NULL, 6048.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarikoli', [Definition] = NULL, [SortOrder] = 604.00 WHERE [Code] = 'srh' END +SET [Description] = 'Sarikoli', [Definition] = NULL, [SortOrder] = 6048.00 WHERE [Code] = 'srh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdf', 'Sarli', NULL, 604.10) END +VALUES ('sdf', 'Sarli', NULL, 6049.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarli', [Definition] = NULL, [SortOrder] = 604.10 WHERE [Code] = 'sdf' END +SET [Description] = 'Sarli', [Definition] = NULL, [SortOrder] = 6049.00 WHERE [Code] = 'sdf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srs', 'Sarsi', NULL, 604.20) END +VALUES ('srs', 'Sarsi', NULL, 6050.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarsi', [Definition] = NULL, [SortOrder] = 604.20 WHERE [Code] = 'srs' END +SET [Description] = 'Sarsi', [Definition] = NULL, [SortOrder] = 6050.00 WHERE [Code] = 'srs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onp', 'Sartang', NULL, 604.30) END +VALUES ('onp', 'Sartang', NULL, 6051.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sartang', [Definition] = NULL, [SortOrder] = 604.30 WHERE [Code] = 'onp' END +SET [Description] = 'Sartang', [Definition] = NULL, [SortOrder] = 6051.00 WHERE [Code] = 'onp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swy', 'Sarua', NULL, 604.40) END +VALUES ('swy', 'Sarua', NULL, 6052.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarua', [Definition] = NULL, [SortOrder] = 604.40 WHERE [Code] = 'swy' END +SET [Description] = 'Sarua', [Definition] = NULL, [SortOrder] = 6052.00 WHERE [Code] = 'swy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdu', 'Sarudu', NULL, 604.50) END +VALUES ('sdu', 'Sarudu', NULL, 6053.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sarudu', [Definition] = NULL, [SortOrder] = 604.50 WHERE [Code] = 'sdu' END +SET [Description] = 'Sarudu', [Definition] = NULL, [SortOrder] = 6053.00 WHERE [Code] = 'sdu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sra', 'Saruga', NULL, 604.60) END +VALUES ('sra', 'Saruga', NULL, 6054.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saruga', [Definition] = NULL, [SortOrder] = 604.60 WHERE [Code] = 'sra' END +SET [Description] = 'Saruga', [Definition] = NULL, [SortOrder] = 6054.00 WHERE [Code] = 'sra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sas', 'Sasak', NULL, 604.70) END +VALUES ('sas', 'Sasak', NULL, 6055.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sasak', [Definition] = NULL, [SortOrder] = 604.70 WHERE [Code] = 'sas' END +SET [Description] = 'Sasak', [Definition] = NULL, [SortOrder] = 6055.00 WHERE [Code] = 'sas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxs', 'Sasaru', NULL, 604.80) END +VALUES ('sxs', 'Sasaru', NULL, 6056.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sasaru', [Definition] = NULL, [SortOrder] = 604.80 WHERE [Code] = 'sxs' END +SET [Description] = 'Sasaru', [Definition] = NULL, [SortOrder] = 6056.00 WHERE [Code] = 'sxs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdc', 'Sassarese Sardinian', NULL, 604.90) END +VALUES ('sdc', 'Sassarese Sardinian', NULL, 6057.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sassarese Sardinian', [Definition] = NULL, [SortOrder] = 604.90 WHERE [Code] = 'sdc' END +SET [Description] = 'Sassarese Sardinian', [Definition] = NULL, [SortOrder] = 6057.00 WHERE [Code] = 'sdc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stw', 'Satawalese', NULL, 605.00) END +VALUES ('stw', 'Satawalese', NULL, 6058.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Satawalese', [Definition] = NULL, [SortOrder] = 605.00 WHERE [Code] = 'stw' END +SET [Description] = 'Satawalese', [Definition] = NULL, [SortOrder] = 6058.00 WHERE [Code] = 'stw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mav', 'Sateré-Mawé', NULL, 605.10) END +VALUES ('mav', 'Sateré-Mawé', NULL, 6059.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sateré-Mawé', [Definition] = NULL, [SortOrder] = 605.10 WHERE [Code] = 'mav' END +SET [Description] = 'Sateré-Mawé', [Definition] = NULL, [SortOrder] = 6059.00 WHERE [Code] = 'mav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stq', 'Saterfriesisch', NULL, 605.20) END +VALUES ('stq', 'Saterfriesisch', NULL, 6060.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saterfriesisch', [Definition] = NULL, [SortOrder] = 605.20 WHERE [Code] = 'stq' END +SET [Description] = 'Saterfriesisch', [Definition] = NULL, [SortOrder] = 6060.00 WHERE [Code] = 'stq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdl', 'Saudi Arabian Sign Language', NULL, 605.30) END +VALUES ('sdl', 'Saudi Arabian Sign Language', NULL, 6061.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saudi Arabian Sign Language', [Definition] = NULL, [SortOrder] = 605.30 WHERE [Code] = 'sdl' END +SET [Description] = 'Saudi Arabian Sign Language', [Definition] = NULL, [SortOrder] = 6061.00 WHERE [Code] = 'sdl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psu', 'Sauraseni Prakrit', NULL, 605.40) END +VALUES ('psu', 'Sauraseni Prakrit', NULL, 6062.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sauraseni Prakrit', [Definition] = NULL, [SortOrder] = 605.40 WHERE [Code] = 'psu' END +SET [Description] = 'Sauraseni Prakrit', [Definition] = NULL, [SortOrder] = 6062.00 WHERE [Code] = 'psu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saz', 'Saurashtra', NULL, 605.50) END +VALUES ('saz', 'Saurashtra', NULL, 6063.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saurashtra', [Definition] = NULL, [SortOrder] = 605.50 WHERE [Code] = 'saz' END +SET [Description] = 'Saurashtra', [Definition] = NULL, [SortOrder] = 6063.00 WHERE [Code] = 'saz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srt', 'Sauri', NULL, 605.60) END +VALUES ('srt', 'Sauri', NULL, 6064.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sauri', [Definition] = NULL, [SortOrder] = 605.60 WHERE [Code] = 'srt' END +SET [Description] = 'Sauri', [Definition] = NULL, [SortOrder] = 6064.00 WHERE [Code] = 'srt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjt', 'Sauria Paharia', NULL, 605.70) END +VALUES ('mjt', 'Sauria Paharia', NULL, 6065.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sauria Paharia', [Definition] = NULL, [SortOrder] = 605.70 WHERE [Code] = 'mjt' END +SET [Description] = 'Sauria Paharia', [Definition] = NULL, [SortOrder] = 6065.00 WHERE [Code] = 'mjt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sao', 'Sause', NULL, 605.80) END +VALUES ('sao', 'Sause', NULL, 6066.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sause', [Definition] = NULL, [SortOrder] = 605.80 WHERE [Code] = 'sao' END +SET [Description] = 'Sause', [Definition] = NULL, [SortOrder] = 6066.00 WHERE [Code] = 'sao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssj', 'Sausi', NULL, 605.90) END +VALUES ('ssj', 'Sausi', NULL, 6067.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sausi', [Definition] = NULL, [SortOrder] = 605.90 WHERE [Code] = 'ssj' END +SET [Description] = 'Sausi', [Definition] = NULL, [SortOrder] = 6067.00 WHERE [Code] = 'ssj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdg', 'Savi', NULL, 606.00) END +VALUES ('sdg', 'Savi', NULL, 6068.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Savi', [Definition] = NULL, [SortOrder] = 606.00 WHERE [Code] = 'sdg' END +SET [Description] = 'Savi', [Definition] = NULL, [SortOrder] = 6068.00 WHERE [Code] = 'sdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svs', 'Savosavo', NULL, 606.10) END +VALUES ('svs', 'Savosavo', NULL, 6069.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Savosavo', [Definition] = NULL, [SortOrder] = 606.10 WHERE [Code] = 'svs' END +SET [Description] = 'Savosavo', [Definition] = NULL, [SortOrder] = 6069.00 WHERE [Code] = 'svs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szw', 'Sawai', NULL, 606.20) END +VALUES ('szw', 'Sawai', NULL, 6070.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sawai', [Definition] = NULL, [SortOrder] = 606.20 WHERE [Code] = 'szw' END +SET [Description] = 'Sawai', [Definition] = NULL, [SortOrder] = 6070.00 WHERE [Code] = 'szw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swr', 'Saweru', NULL, 606.30) END +VALUES ('swr', 'Saweru', NULL, 6071.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saweru', [Definition] = NULL, [SortOrder] = 606.30 WHERE [Code] = 'swr' END +SET [Description] = 'Saweru', [Definition] = NULL, [SortOrder] = 6071.00 WHERE [Code] = 'swr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'saw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('saw', 'Sawi', NULL, 606.40) END +VALUES ('saw', 'Sawi', NULL, 6072.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sawi', [Definition] = NULL, [SortOrder] = 606.40 WHERE [Code] = 'saw' END +SET [Description] = 'Sawi', [Definition] = NULL, [SortOrder] = 6072.00 WHERE [Code] = 'saw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swt', 'Sawila', NULL, 606.50) END +VALUES ('swt', 'Sawila', NULL, 6073.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sawila', [Definition] = NULL, [SortOrder] = 606.50 WHERE [Code] = 'swt' END +SET [Description] = 'Sawila', [Definition] = NULL, [SortOrder] = 6073.00 WHERE [Code] = 'swt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swn', 'Sawknah', NULL, 606.60) END +VALUES ('swn', 'Sawknah', NULL, 6074.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sawknah', [Definition] = NULL, [SortOrder] = 606.60 WHERE [Code] = 'swn' END +SET [Description] = 'Sawknah', [Definition] = NULL, [SortOrder] = 6074.00 WHERE [Code] = 'swn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxw', 'Saxwe Gbe', NULL, 606.70) END +VALUES ('sxw', 'Saxwe Gbe', NULL, 6075.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saxwe Gbe', [Definition] = NULL, [SortOrder] = 606.70 WHERE [Code] = 'sxw' END +SET [Description] = 'Saxwe Gbe', [Definition] = NULL, [SortOrder] = 6075.00 WHERE [Code] = 'sxw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'say') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('say', 'Saya', NULL, 606.80) END +VALUES ('say', 'Saya', NULL, 6076.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Saya', [Definition] = NULL, [SortOrder] = 606.80 WHERE [Code] = 'say' END +SET [Description] = 'Saya', [Definition] = NULL, [SortOrder] = 6076.00 WHERE [Code] = 'say' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pos', 'Sayula Popoluca', NULL, 606.90) END +VALUES ('pos', 'Sayula Popoluca', NULL, 6077.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sayula Popoluca', [Definition] = NULL, [SortOrder] = 606.90 WHERE [Code] = 'pos' END +SET [Description] = 'Sayula Popoluca', [Definition] = NULL, [SortOrder] = 6077.00 WHERE [Code] = 'pos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sco', 'Scots', NULL, 607.00) END +VALUES ('sco', 'Scots', NULL, 6078.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Scots', [Definition] = NULL, [SortOrder] = 607.00 WHERE [Code] = 'sco' END +SET [Description] = 'Scots', [Definition] = NULL, [SortOrder] = 6078.00 WHERE [Code] = 'sco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gla', 'Scottish Gaelic', NULL, 607.10) END +VALUES ('gla', 'Scottish Gaelic', NULL, 6079.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Scottish Gaelic', [Definition] = NULL, [SortOrder] = 607.10 WHERE [Code] = 'gla' END +SET [Description] = 'Scottish Gaelic', [Definition] = NULL, [SortOrder] = 6079.00 WHERE [Code] = 'gla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsc', 'Scythian', NULL, 607.20) END +VALUES ('xsc', 'Scythian', NULL, 6080.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Scythian', [Definition] = NULL, [SortOrder] = 607.20 WHERE [Code] = 'xsc' END +SET [Description] = 'Scythian', [Definition] = NULL, [SortOrder] = 6080.00 WHERE [Code] = 'xsc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gul', 'Sea Island Creole English', NULL, 607.30) END +VALUES ('gul', 'Sea Island Creole English', NULL, 6081.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sea Island Creole English', [Definition] = NULL, [SortOrder] = 607.30 WHERE [Code] = 'gul' END +SET [Description] = 'Sea Island Creole English', [Definition] = NULL, [SortOrder] = 6081.00 WHERE [Code] = 'gul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdg', 'Seba', NULL, 607.40) END +VALUES ('kdg', 'Seba', NULL, 6082.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seba', [Definition] = NULL, [SortOrder] = 607.40 WHERE [Code] = 'kdg' END +SET [Description] = 'Seba', [Definition] = NULL, [SortOrder] = 6082.00 WHERE [Code] = 'kdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgw', 'Sebat Bet Gurage', NULL, 607.50) END +VALUES ('sgw', 'Sebat Bet Gurage', NULL, 6083.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sebat Bet Gurage', [Definition] = NULL, [SortOrder] = 607.50 WHERE [Code] = 'sgw' END +SET [Description] = 'Sebat Bet Gurage', [Definition] = NULL, [SortOrder] = 6083.00 WHERE [Code] = 'sgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbx', 'Seberuang', NULL, 607.60) END +VALUES ('sbx', 'Seberuang', NULL, 6084.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seberuang', [Definition] = NULL, [SortOrder] = 607.60 WHERE [Code] = 'sbx' END +SET [Description] = 'Seberuang', [Definition] = NULL, [SortOrder] = 6084.00 WHERE [Code] = 'sbx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sib', 'Sebop', NULL, 607.70) END +VALUES ('sib', 'Sebop', NULL, 6085.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sebop', [Definition] = NULL, [SortOrder] = 607.70 WHERE [Code] = 'sib' END +SET [Description] = 'Sebop', [Definition] = NULL, [SortOrder] = 6085.00 WHERE [Code] = 'sib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sec', 'Sechelt', NULL, 607.80) END +VALUES ('sec', 'Sechelt', NULL, 6086.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sechelt', [Definition] = NULL, [SortOrder] = 607.80 WHERE [Code] = 'sec' END +SET [Description] = 'Sechelt', [Definition] = NULL, [SortOrder] = 6086.00 WHERE [Code] = 'sec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sey', 'Secoya', NULL, 607.90) END +VALUES ('sey', 'Secoya', NULL, 6087.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Secoya', [Definition] = NULL, [SortOrder] = 607.90 WHERE [Code] = 'sey' END +SET [Description] = 'Secoya', [Definition] = NULL, [SortOrder] = 6087.00 WHERE [Code] = 'sey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sed', 'Sedang', NULL, 608.00) END +VALUES ('sed', 'Sedang', NULL, 6088.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sedang', [Definition] = NULL, [SortOrder] = 608.00 WHERE [Code] = 'sed' END +SET [Description] = 'Sedang', [Definition] = NULL, [SortOrder] = 6088.00 WHERE [Code] = 'sed' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('trv', 'Sediq', NULL, 6089.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Sediq', [Definition] = NULL, [SortOrder] = 6089.00 WHERE [Code] = 'trv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvw', 'Sedoa', NULL, 608.10) END +VALUES ('tvw', 'Sedoa', NULL, 6090.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sedoa', [Definition] = NULL, [SortOrder] = 608.10 WHERE [Code] = 'tvw' END +SET [Description] = 'Sedoa', [Definition] = NULL, [SortOrder] = 6090.00 WHERE [Code] = 'tvw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sos', 'Seeku', NULL, 608.20) END +VALUES ('sos', 'Seeku', NULL, 6091.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seeku', [Definition] = NULL, [SortOrder] = 608.20 WHERE [Code] = 'sos' END +SET [Description] = 'Seeku', [Definition] = NULL, [SortOrder] = 6091.00 WHERE [Code] = 'sos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sge', 'Segai', NULL, 608.30) END +VALUES ('sge', 'Segai', NULL, 6092.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Segai', [Definition] = NULL, [SortOrder] = 608.30 WHERE [Code] = 'sge' END +SET [Description] = 'Segai', [Definition] = NULL, [SortOrder] = 6092.00 WHERE [Code] = 'sge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seg', 'Segeju', NULL, 608.40) END +VALUES ('seg', 'Segeju', NULL, 6093.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Segeju', [Definition] = NULL, [SortOrder] = 608.40 WHERE [Code] = 'seg' END +SET [Description] = 'Segeju', [Definition] = NULL, [SortOrder] = 6093.00 WHERE [Code] = 'seg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbg', 'Seget', NULL, 608.50) END +VALUES ('sbg', 'Seget', NULL, 6094.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seget', [Definition] = NULL, [SortOrder] = 608.50 WHERE [Code] = 'sbg' END +SET [Description] = 'Seget', [Definition] = NULL, [SortOrder] = 6094.00 WHERE [Code] = 'sbg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfw', 'Sehwi', NULL, 608.60) END +VALUES ('sfw', 'Sehwi', NULL, 6095.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sehwi', [Definition] = NULL, [SortOrder] = 608.60 WHERE [Code] = 'sfw' END +SET [Description] = 'Sehwi', [Definition] = NULL, [SortOrder] = 6095.00 WHERE [Code] = 'sfw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssg', 'Seimat', NULL, 608.70) END +VALUES ('ssg', 'Seimat', NULL, 6096.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seimat', [Definition] = NULL, [SortOrder] = 608.70 WHERE [Code] = 'ssg' END +SET [Description] = 'Seimat', [Definition] = NULL, [SortOrder] = 6096.00 WHERE [Code] = 'ssg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hik', 'Seit-Kaitetu', NULL, 608.80) END +VALUES ('hik', 'Seit-Kaitetu', NULL, 6097.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seit-Kaitetu', [Definition] = NULL, [SortOrder] = 608.80 WHERE [Code] = 'hik' END +SET [Description] = 'Seit-Kaitetu', [Definition] = NULL, [SortOrder] = 6097.00 WHERE [Code] = 'hik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sek', 'Sekani', NULL, 608.90) END +VALUES ('sek', 'Sekani', NULL, 6098.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekani', [Definition] = NULL, [SortOrder] = 608.90 WHERE [Code] = 'sek' END +SET [Description] = 'Sekani', [Definition] = NULL, [SortOrder] = 6098.00 WHERE [Code] = 'sek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skp', 'Sekapan', NULL, 609.00) END +VALUES ('skp', 'Sekapan', NULL, 6099.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekapan', [Definition] = NULL, [SortOrder] = 609.00 WHERE [Code] = 'skp' END +SET [Description] = 'Sekapan', [Definition] = NULL, [SortOrder] = 6099.00 WHERE [Code] = 'skp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skz', 'Sekar', NULL, 609.10) END +VALUES ('skz', 'Sekar', NULL, 6100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekar', [Definition] = NULL, [SortOrder] = 609.10 WHERE [Code] = 'skz' END +SET [Description] = 'Sekar', [Definition] = NULL, [SortOrder] = 6100.00 WHERE [Code] = 'skz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skj', 'Seke (Nepal)', NULL, 609.20) END +VALUES ('skj', 'Seke (Nepal)', NULL, 6101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seke (Nepal)', [Definition] = NULL, [SortOrder] = 609.20 WHERE [Code] = 'skj' END +SET [Description] = 'Seke (Nepal)', [Definition] = NULL, [SortOrder] = 6101.00 WHERE [Code] = 'skj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ske') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ske', 'Seke (Vanuatu)', NULL, 609.30) END +VALUES ('ske', 'Seke (Vanuatu)', NULL, 6102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seke (Vanuatu)', [Definition] = NULL, [SortOrder] = 609.30 WHERE [Code] = 'ske' END +SET [Description] = 'Seke (Vanuatu)', [Definition] = NULL, [SortOrder] = 6102.00 WHERE [Code] = 'ske' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vaj', 'Sekele', NULL, 609.40) END +VALUES ('vaj', 'Sekele', NULL, 6103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekele', [Definition] = NULL, [SortOrder] = 609.40 WHERE [Code] = 'vaj' END +SET [Description] = 'Sekele', [Definition] = NULL, [SortOrder] = 6103.00 WHERE [Code] = 'vaj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syi', 'Seki', NULL, 609.50) END +VALUES ('syi', 'Seki', NULL, 6104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seki', [Definition] = NULL, [SortOrder] = 609.50 WHERE [Code] = 'syi' END +SET [Description] = 'Seki', [Definition] = NULL, [SortOrder] = 6104.00 WHERE [Code] = 'syi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skx', 'Seko Padang', NULL, 609.60) END +VALUES ('skx', 'Seko Padang', NULL, 6105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seko Padang', [Definition] = NULL, [SortOrder] = 609.60 WHERE [Code] = 'skx' END +SET [Description] = 'Seko Padang', [Definition] = NULL, [SortOrder] = 6105.00 WHERE [Code] = 'skx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sko', 'Seko Tengah', NULL, 609.70) END +VALUES ('sko', 'Seko Tengah', NULL, 6106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seko Tengah', [Definition] = NULL, [SortOrder] = 609.70 WHERE [Code] = 'sko' END +SET [Description] = 'Seko Tengah', [Definition] = NULL, [SortOrder] = 6106.00 WHERE [Code] = 'sko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lip', 'Sekpele', NULL, 609.80) END +VALUES ('lip', 'Sekpele', NULL, 6107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sekpele', [Definition] = NULL, [SortOrder] = 609.80 WHERE [Code] = 'lip' END +SET [Description] = 'Sekpele', [Definition] = NULL, [SortOrder] = 6107.00 WHERE [Code] = 'lip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgi', 'Selangor Sign Language', NULL, 609.90) END +VALUES ('kgi', 'Selangor Sign Language', NULL, 6108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selangor Sign Language', [Definition] = NULL, [SortOrder] = 609.90 WHERE [Code] = 'kgi' END +SET [Description] = 'Selangor Sign Language', [Definition] = NULL, [SortOrder] = 6108.00 WHERE [Code] = 'kgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slu', 'Selaru', NULL, 610.00) END +VALUES ('slu', 'Selaru', NULL, 6109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selaru', [Definition] = NULL, [SortOrder] = 610.00 WHERE [Code] = 'slu' END +SET [Description] = 'Selaru', [Definition] = NULL, [SortOrder] = 6109.00 WHERE [Code] = 'slu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sly', 'Selayar', NULL, 610.10) END +VALUES ('sly', 'Selayar', NULL, 6110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selayar', [Definition] = NULL, [SortOrder] = 610.10 WHERE [Code] = 'sly' END +SET [Description] = 'Selayar', [Definition] = NULL, [SortOrder] = 6110.00 WHERE [Code] = 'sly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snw', 'Selee', NULL, 610.20) END +VALUES ('snw', 'Selee', NULL, 6111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selee', [Definition] = NULL, [SortOrder] = 610.20 WHERE [Code] = 'snw' END +SET [Description] = 'Selee', [Definition] = NULL, [SortOrder] = 6111.00 WHERE [Code] = 'snw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spl', 'Selepet', NULL, 610.30) END +VALUES ('spl', 'Selepet', NULL, 6112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selepet', [Definition] = NULL, [SortOrder] = 610.30 WHERE [Code] = 'spl' END +SET [Description] = 'Selepet', [Definition] = NULL, [SortOrder] = 6112.00 WHERE [Code] = 'spl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxl', 'Selian', NULL, 610.40) END +VALUES ('sxl', 'Selian', NULL, 6113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selian', [Definition] = NULL, [SortOrder] = 610.40 WHERE [Code] = 'sxl' END +SET [Description] = 'Selian', [Definition] = NULL, [SortOrder] = 6113.00 WHERE [Code] = 'sxl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sel', 'Selkup', NULL, 610.50) END +VALUES ('sel', 'Selkup', NULL, 6114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selkup', [Definition] = NULL, [SortOrder] = 610.50 WHERE [Code] = 'sel' END +SET [Description] = 'Selkup', [Definition] = NULL, [SortOrder] = 6114.00 WHERE [Code] = 'sel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slg', 'Selungai Murut', NULL, 610.60) END +VALUES ('slg', 'Selungai Murut', NULL, 6115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Selungai Murut', [Definition] = NULL, [SortOrder] = 610.60 WHERE [Code] = 'slg' END +SET [Description] = 'Selungai Murut', [Definition] = NULL, [SortOrder] = 6115.00 WHERE [Code] = 'slg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sws', 'Seluwasan', NULL, 610.70) END +VALUES ('sws', 'Seluwasan', NULL, 6116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seluwasan', [Definition] = NULL, [SortOrder] = 610.70 WHERE [Code] = 'sws' END +SET [Description] = 'Seluwasan', [Definition] = NULL, [SortOrder] = 6116.00 WHERE [Code] = 'sws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sea', 'Semai', NULL, 610.80) END +VALUES ('sea', 'Semai', NULL, 6117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semai', [Definition] = NULL, [SortOrder] = 610.80 WHERE [Code] = 'sea' END +SET [Description] = 'Semai', [Definition] = NULL, [SortOrder] = 6117.00 WHERE [Code] = 'sea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdq', 'Semandang', NULL, 610.90) END +VALUES ('sdq', 'Semandang', NULL, 6118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semandang', [Definition] = NULL, [SortOrder] = 610.90 WHERE [Code] = 'sdq' END +SET [Description] = 'Semandang', [Definition] = NULL, [SortOrder] = 6118.00 WHERE [Code] = 'sdq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szc', 'Semaq Beri', NULL, 611.00) END +VALUES ('szc', 'Semaq Beri', NULL, 6119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semaq Beri', [Definition] = NULL, [SortOrder] = 611.00 WHERE [Code] = 'szc' END +SET [Description] = 'Semaq Beri', [Definition] = NULL, [SortOrder] = 6119.00 WHERE [Code] = 'szc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbr', 'Sembakung Murut', NULL, 611.10) END +VALUES ('sbr', 'Sembakung Murut', NULL, 6120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sembakung Murut', [Definition] = NULL, [SortOrder] = 611.10 WHERE [Code] = 'sbr' END +SET [Description] = 'Sembakung Murut', [Definition] = NULL, [SortOrder] = 6120.00 WHERE [Code] = 'sbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sza', 'Semelai', NULL, 611.20) END +VALUES ('sza', 'Semelai', NULL, 6121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semelai', [Definition] = NULL, [SortOrder] = 611.20 WHERE [Code] = 'sza' END +SET [Description] = 'Semelai', [Definition] = NULL, [SortOrder] = 6121.00 WHERE [Code] = 'sza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'etz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('etz', 'Semimi', NULL, 611.30) END +VALUES ('etz', 'Semimi', NULL, 6122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semimi', [Definition] = NULL, [SortOrder] = 611.30 WHERE [Code] = 'etz' END +SET [Description] = 'Semimi', [Definition] = NULL, [SortOrder] = 6122.00 WHERE [Code] = 'etz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssm', 'Semnam', NULL, 611.40) END +VALUES ('ssm', 'Semnam', NULL, 6123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semnam', [Definition] = NULL, [SortOrder] = 611.40 WHERE [Code] = 'ssm' END +SET [Description] = 'Semnam', [Definition] = NULL, [SortOrder] = 6123.00 WHERE [Code] = 'ssm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smy', 'Semnani', NULL, 611.50) END +VALUES ('smy', 'Semnani', NULL, 6124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Semnani', [Definition] = NULL, [SortOrder] = 611.50 WHERE [Code] = 'smy' END +SET [Description] = 'Semnani', [Definition] = NULL, [SortOrder] = 6124.00 WHERE [Code] = 'smy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xse', 'Sempan', NULL, 611.60) END +VALUES ('xse', 'Sempan', NULL, 6125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sempan', [Definition] = NULL, [SortOrder] = 611.60 WHERE [Code] = 'xse' END +SET [Description] = 'Sempan', [Definition] = NULL, [SortOrder] = 6125.00 WHERE [Code] = 'xse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seh', 'Sena', NULL, 611.70) END +VALUES ('seh', 'Sena', NULL, 6126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sena', [Definition] = NULL, [SortOrder] = 611.70 WHERE [Code] = 'seh' END +SET [Description] = 'Sena', [Definition] = NULL, [SortOrder] = 6126.00 WHERE [Code] = 'seh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seq', 'Senara Sénoufo', NULL, 611.80) END +VALUES ('seq', 'Senara Sénoufo', NULL, 6127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senara Sénoufo', [Definition] = NULL, [SortOrder] = 611.80 WHERE [Code] = 'seq' END +SET [Description] = 'Senara Sénoufo', [Definition] = NULL, [SortOrder] = 6127.00 WHERE [Code] = 'seq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syn', 'Senaya', NULL, 611.90) END +VALUES ('syn', 'Senaya', NULL, 6128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senaya', [Definition] = NULL, [SortOrder] = 611.90 WHERE [Code] = 'syn' END +SET [Description] = 'Senaya', [Definition] = NULL, [SortOrder] = 6128.00 WHERE [Code] = 'syn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sej', 'Sene', NULL, 612.00) END +VALUES ('sej', 'Sene', NULL, 6129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sene', [Definition] = NULL, [SortOrder] = 612.00 WHERE [Code] = 'sej' END +SET [Description] = 'Sene', [Definition] = NULL, [SortOrder] = 6129.00 WHERE [Code] = 'sej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'see') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('see', 'Seneca', NULL, 612.10) END +VALUES ('see', 'Seneca', NULL, 6130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seneca', [Definition] = NULL, [SortOrder] = 612.10 WHERE [Code] = 'see' END +SET [Description] = 'Seneca', [Definition] = NULL, [SortOrder] = 6130.00 WHERE [Code] = 'see' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sds') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sds', 'Sened', NULL, 612.20) END +VALUES ('sds', 'Sened', NULL, 6131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sened', [Definition] = NULL, [SortOrder] = 612.20 WHERE [Code] = 'sds' END +SET [Description] = 'Sened', [Definition] = NULL, [SortOrder] = 6131.00 WHERE [Code] = 'sds' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szg', 'Sengele', NULL, 612.30) END +VALUES ('szg', 'Sengele', NULL, 6132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sengele', [Definition] = NULL, [SortOrder] = 612.30 WHERE [Code] = 'szg' END +SET [Description] = 'Sengele', [Definition] = NULL, [SortOrder] = 6132.00 WHERE [Code] = 'szg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snu', 'Senggi', NULL, 612.40) END +VALUES ('snu', 'Senggi', NULL, 6133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senggi', [Definition] = NULL, [SortOrder] = 612.40 WHERE [Code] = 'snu' END +SET [Description] = 'Senggi', [Definition] = NULL, [SortOrder] = 6133.00 WHERE [Code] = 'snu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spk', 'Sengo', NULL, 612.50) END +VALUES ('spk', 'Sengo', NULL, 6134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sengo', [Definition] = NULL, [SortOrder] = 612.50 WHERE [Code] = 'spk' END +SET [Description] = 'Sengo', [Definition] = NULL, [SortOrder] = 6134.00 WHERE [Code] = 'spk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssz', 'Sengseng', NULL, 612.60) END +VALUES ('ssz', 'Sengseng', NULL, 6135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sengseng', [Definition] = NULL, [SortOrder] = 612.60 WHERE [Code] = 'ssz' END +SET [Description] = 'Sengseng', [Definition] = NULL, [SortOrder] = 6135.00 WHERE [Code] = 'ssz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjs', 'Senhaja De Srair', NULL, 612.70) END +VALUES ('sjs', 'Senhaja De Srair', NULL, 6136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senhaja De Srair', [Definition] = NULL, [SortOrder] = 612.70 WHERE [Code] = 'sjs' END +SET [Description] = 'Senhaja De Srair', [Definition] = NULL, [SortOrder] = 6136.00 WHERE [Code] = 'sjs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sni', 'Sensi', NULL, 612.80) END +VALUES ('sni', 'Sensi', NULL, 6137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sensi', [Definition] = NULL, [SortOrder] = 612.80 WHERE [Code] = 'sni' END +SET [Description] = 'Sensi', [Definition] = NULL, [SortOrder] = 6137.00 WHERE [Code] = 'sni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'set') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('set', 'Sentani', NULL, 612.90) END +VALUES ('set', 'Sentani', NULL, 6138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sentani', [Definition] = NULL, [SortOrder] = 612.90 WHERE [Code] = 'set' END +SET [Description] = 'Sentani', [Definition] = NULL, [SortOrder] = 6138.00 WHERE [Code] = 'set' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sez', 'Senthang Chin', NULL, 613.00) END +VALUES ('sez', 'Senthang Chin', NULL, 6139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Senthang Chin', [Definition] = NULL, [SortOrder] = 613.00 WHERE [Code] = 'sez' END +SET [Description] = 'Senthang Chin', [Definition] = NULL, [SortOrder] = 6139.00 WHERE [Code] = 'sez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'std') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('std', 'Sentinel', NULL, 613.10) END +VALUES ('std', 'Sentinel', NULL, 6140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sentinel', [Definition] = NULL, [SortOrder] = 613.10 WHERE [Code] = 'std' END +SET [Description] = 'Sentinel', [Definition] = NULL, [SortOrder] = 6140.00 WHERE [Code] = 'std' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spb', 'Sepa (Indonesia)', NULL, 613.20) END +VALUES ('spb', 'Sepa (Indonesia)', NULL, 6141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sepa (Indonesia)', [Definition] = NULL, [SortOrder] = 613.20 WHERE [Code] = 'spb' END +SET [Description] = 'Sepa (Indonesia)', [Definition] = NULL, [SortOrder] = 6141.00 WHERE [Code] = 'spb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spe', 'Sepa (Papua New Guinea)', NULL, 613.30) END +VALUES ('spe', 'Sepa (Papua New Guinea)', NULL, 6142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sepa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 613.30 WHERE [Code] = 'spe' END +SET [Description] = 'Sepa (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 6142.00 WHERE [Code] = 'spe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iws', 'Sepik Iwam', NULL, 613.40) END +VALUES ('iws', 'Sepik Iwam', NULL, 6143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sepik Iwam', [Definition] = NULL, [SortOrder] = 613.40 WHERE [Code] = 'iws' END +SET [Description] = 'Sepik Iwam', [Definition] = NULL, [SortOrder] = 6143.00 WHERE [Code] = 'iws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sry', 'Sera', NULL, 613.50) END +VALUES ('sry', 'Sera', NULL, 6144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sera', [Definition] = NULL, [SortOrder] = 613.50 WHERE [Code] = 'sry' END +SET [Description] = 'Sera', [Definition] = NULL, [SortOrder] = 6144.00 WHERE [Code] = 'sry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srp', 'Serbian', NULL, 613.60) END +VALUES ('srp', 'Serbian', NULL, 6145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serbian', [Definition] = NULL, [SortOrder] = 613.60 WHERE [Code] = 'srp' END +SET [Description] = 'Serbian', [Definition] = NULL, [SortOrder] = 6145.00 WHERE [Code] = 'srp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hbs', 'Serbo-Croatian', NULL, 613.70) END +VALUES ('hbs', 'Serbo-Croatian', NULL, 6146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serbo-Croatian', [Definition] = NULL, [SortOrder] = 613.70 WHERE [Code] = 'hbs' END +SET [Description] = 'Serbo-Croatian', [Definition] = NULL, [SortOrder] = 6146.00 WHERE [Code] = 'hbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swf', 'Sere', NULL, 613.80) END +VALUES ('swf', 'Sere', NULL, 6147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sere', [Definition] = NULL, [SortOrder] = 613.80 WHERE [Code] = 'swf' END +SET [Description] = 'Sere', [Definition] = NULL, [SortOrder] = 6147.00 WHERE [Code] = 'swf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srr', 'Serer', NULL, 613.90) END +VALUES ('srr', 'Serer', NULL, 6148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serer', [Definition] = NULL, [SortOrder] = 613.90 WHERE [Code] = 'srr' END +SET [Description] = 'Serer', [Definition] = NULL, [SortOrder] = 6148.00 WHERE [Code] = 'srr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sei', 'Seri', NULL, 614.00) END +VALUES ('sei', 'Seri', NULL, 6149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seri', [Definition] = NULL, [SortOrder] = 614.00 WHERE [Code] = 'sei' END +SET [Description] = 'Seri', [Definition] = NULL, [SortOrder] = 6149.00 WHERE [Code] = 'sei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sve', 'Serili', NULL, 614.10) END +VALUES ('sve', 'Serili', NULL, 6150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serili', [Definition] = NULL, [SortOrder] = 614.10 WHERE [Code] = 'sve' END +SET [Description] = 'Serili', [Definition] = NULL, [SortOrder] = 6150.00 WHERE [Code] = 'sve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kqu', 'Seroa', NULL, 614.20) END +VALUES ('kqu', 'Seroa', NULL, 6151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seroa', [Definition] = NULL, [SortOrder] = 614.20 WHERE [Code] = 'kqu' END +SET [Description] = 'Seroa', [Definition] = NULL, [SortOrder] = 6151.00 WHERE [Code] = 'kqu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ser') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ser', 'Serrano', NULL, 614.30) END +VALUES ('ser', 'Serrano', NULL, 6152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serrano', [Definition] = NULL, [SortOrder] = 614.30 WHERE [Code] = 'ser' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szd', 'Seru', NULL, 614.40) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seru', [Definition] = NULL, [SortOrder] = 614.40 WHERE [Code] = 'szd' END +SET [Description] = 'Serrano', [Definition] = NULL, [SortOrder] = 6152.00 WHERE [Code] = 'ser' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srw', 'Serua', NULL, 614.50) END +VALUES ('srw', 'Serua', NULL, 6153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serua', [Definition] = NULL, [SortOrder] = 614.50 WHERE [Code] = 'srw' END +SET [Description] = 'Serua', [Definition] = NULL, [SortOrder] = 6153.00 WHERE [Code] = 'srw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srk', 'Serudung Murut', NULL, 614.60) END +VALUES ('srk', 'Serudung Murut', NULL, 6154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serudung Murut', [Definition] = NULL, [SortOrder] = 614.60 WHERE [Code] = 'srk' END +SET [Description] = 'Serudung Murut', [Definition] = NULL, [SortOrder] = 6154.00 WHERE [Code] = 'srk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seu', 'Serui-Laut', NULL, 614.70) END +VALUES ('seu', 'Serui-Laut', NULL, 6155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Serui-Laut', [Definition] = NULL, [SortOrder] = 614.70 WHERE [Code] = 'seu' END +SET [Description] = 'Serui-Laut', [Definition] = NULL, [SortOrder] = 6155.00 WHERE [Code] = 'seu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crs', 'Seselwa Creole French', NULL, 614.80) END +VALUES ('crs', 'Seselwa Creole French', NULL, 6156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seselwa Creole French', [Definition] = NULL, [SortOrder] = 614.80 WHERE [Code] = 'crs' END +SET [Description] = 'Seselwa Creole French', [Definition] = NULL, [SortOrder] = 6156.00 WHERE [Code] = 'crs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stf', 'Seta', NULL, 614.90) END +VALUES ('stf', 'Seta', NULL, 6157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seta', [Definition] = NULL, [SortOrder] = 614.90 WHERE [Code] = 'stf' END +SET [Description] = 'Seta', [Definition] = NULL, [SortOrder] = 6157.00 WHERE [Code] = 'stf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stm', 'Setaman', NULL, 615.00) END +VALUES ('stm', 'Setaman', NULL, 6158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Setaman', [Definition] = NULL, [SortOrder] = 615.00 WHERE [Code] = 'stm' END +SET [Description] = 'Setaman', [Definition] = NULL, [SortOrder] = 6158.00 WHERE [Code] = 'stm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbi', 'Seti', NULL, 615.10) END +VALUES ('sbi', 'Seti', NULL, 6159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seti', [Definition] = NULL, [SortOrder] = 615.10 WHERE [Code] = 'sbi' END +SET [Description] = 'Seti', [Definition] = NULL, [SortOrder] = 6159.00 WHERE [Code] = 'sbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sta', 'Settla', NULL, 615.20) END +VALUES ('sta', 'Settla', NULL, 6160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Settla', [Definition] = NULL, [SortOrder] = 615.20 WHERE [Code] = 'sta' END +SET [Description] = 'Settla', [Definition] = NULL, [SortOrder] = 6160.00 WHERE [Code] = 'sta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojs', 'Severn Ojibwa', NULL, 615.30) END +VALUES ('ojs', 'Severn Ojibwa', NULL, 6161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Severn Ojibwa', [Definition] = NULL, [SortOrder] = 615.30 WHERE [Code] = 'ojs' END +SET [Description] = 'Severn Ojibwa', [Definition] = NULL, [SortOrder] = 6161.00 WHERE [Code] = 'ojs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sew', 'Sewa Bay', NULL, 615.40) END +VALUES ('sew', 'Sewa Bay', NULL, 6162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sewa Bay', [Definition] = NULL, [SortOrder] = 615.40 WHERE [Code] = 'sew' END +SET [Description] = 'Sewa Bay', [Definition] = NULL, [SortOrder] = 6162.00 WHERE [Code] = 'sew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsw', 'Seychelles Sign Language', NULL, 615.50) END +VALUES ('lsw', 'Seychelles Sign Language', NULL, 6163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seychelles Sign Language', [Definition] = NULL, [SortOrder] = 615.50 WHERE [Code] = 'lsw' END +SET [Description] = 'Seychelles Sign Language', [Definition] = NULL, [SortOrder] = 6163.00 WHERE [Code] = 'lsw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sze', 'Seze', NULL, 615.60) END +VALUES ('sze', 'Seze', NULL, 6164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Seze', [Definition] = NULL, [SortOrder] = 615.60 WHERE [Code] = 'sze' END +SET [Description] = 'Seze', [Definition] = NULL, [SortOrder] = 6164.00 WHERE [Code] = 'sze' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scw', 'Sha', NULL, 615.70) END +VALUES ('scw', 'Sha', NULL, 6165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sha', [Definition] = NULL, [SortOrder] = 615.70 WHERE [Code] = 'scw' END +SET [Description] = 'Sha', [Definition] = NULL, [SortOrder] = 6165.00 WHERE [Code] = 'scw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdb', 'Shabak', NULL, 615.80) END +VALUES ('sdb', 'Shabak', NULL, 6166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shabak', [Definition] = NULL, [SortOrder] = 615.80 WHERE [Code] = 'sdb' END +SET [Description] = 'Shabak', [Definition] = NULL, [SortOrder] = 6166.00 WHERE [Code] = 'sdb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srz', 'Shahmirzadi', NULL, 615.90) END +VALUES ('srz', 'Shahmirzadi', NULL, 6167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shahmirzadi', [Definition] = NULL, [SortOrder] = 615.90 WHERE [Code] = 'srz' END +SET [Description] = 'Shahmirzadi', [Definition] = NULL, [SortOrder] = 6167.00 WHERE [Code] = 'srz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shm', 'Shahrudi', NULL, 616.00) END +VALUES ('shm', 'Shahrudi', NULL, 6168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shahrudi', [Definition] = NULL, [SortOrder] = 616.00 WHERE [Code] = 'shm' END +SET [Description] = 'Shahrudi', [Definition] = NULL, [SortOrder] = 6168.00 WHERE [Code] = 'shm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sha', 'Shall-Zwall', NULL, 616.10) END +VALUES ('sha', 'Shall-Zwall', NULL, 6169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shall-Zwall', [Definition] = NULL, [SortOrder] = 616.10 WHERE [Code] = 'sha' END +SET [Description] = 'Shall-Zwall', [Definition] = NULL, [SortOrder] = 6169.00 WHERE [Code] = 'sha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqa', 'Shama-Sambuga', NULL, 616.20) END +VALUES ('sqa', 'Shama-Sambuga', NULL, 6170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shama-Sambuga', [Definition] = NULL, [SortOrder] = 616.20 WHERE [Code] = 'sqa' END +SET [Description] = 'Shama-Sambuga', [Definition] = NULL, [SortOrder] = 6170.00 WHERE [Code] = 'sqa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsh', 'Shamang', NULL, 616.30) END +VALUES ('xsh', 'Shamang', NULL, 6171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shamang', [Definition] = NULL, [SortOrder] = 616.30 WHERE [Code] = 'xsh' END +SET [Description] = 'Shamang', [Definition] = NULL, [SortOrder] = 6171.00 WHERE [Code] = 'xsh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksb', 'Shambala', NULL, 616.40) END +VALUES ('ksb', 'Shambala', NULL, 6172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shambala', [Definition] = NULL, [SortOrder] = 616.40 WHERE [Code] = 'ksb' END +SET [Description] = 'Shambala', [Definition] = NULL, [SortOrder] = 6172.00 WHERE [Code] = 'ksb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shn', 'Shan', NULL, 616.50) END +VALUES ('shn', 'Shan', NULL, 6173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shan', [Definition] = NULL, [SortOrder] = 616.50 WHERE [Code] = 'shn' END +SET [Description] = 'Shan', [Definition] = NULL, [SortOrder] = 6173.00 WHERE [Code] = 'shn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swo', 'Shanenawa', NULL, 616.60) END +VALUES ('swo', 'Shanenawa', NULL, 6174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shanenawa', [Definition] = NULL, [SortOrder] = 616.60 WHERE [Code] = 'swo' END +SET [Description] = 'Shanenawa', [Definition] = NULL, [SortOrder] = 6174.00 WHERE [Code] = 'swo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sho', 'Shanga', NULL, 616.70) END +VALUES ('sho', 'Shanga', NULL, 6175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shanga', [Definition] = NULL, [SortOrder] = 616.70 WHERE [Code] = 'sho' END +SET [Description] = 'Shanga', [Definition] = NULL, [SortOrder] = 6175.00 WHERE [Code] = 'sho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcd', 'Sharanahua', NULL, 616.80) END +VALUES ('mcd', 'Sharanahua', NULL, 6176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sharanahua', [Definition] = NULL, [SortOrder] = 616.80 WHERE [Code] = 'mcd' END +SET [Description] = 'Sharanahua', [Definition] = NULL, [SortOrder] = 6176.00 WHERE [Code] = 'mcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssv', 'Shark Bay', NULL, 616.90) END +VALUES ('ssv', 'Shark Bay', NULL, 6177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shark Bay', [Definition] = NULL, [SortOrder] = 616.90 WHERE [Code] = 'ssv' END +SET [Description] = 'Shark Bay', [Definition] = NULL, [SortOrder] = 6177.00 WHERE [Code] = 'ssv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swq', 'Sharwa', NULL, 617.00) END +VALUES ('swq', 'Sharwa', NULL, 6178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sharwa', [Definition] = NULL, [SortOrder] = 617.00 WHERE [Code] = 'swq' END +SET [Description] = 'Sharwa', [Definition] = NULL, [SortOrder] = 6178.00 WHERE [Code] = 'swq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sht', 'Shasta', NULL, 617.10) END +VALUES ('sht', 'Shasta', NULL, 6179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shasta', [Definition] = NULL, [SortOrder] = 617.10 WHERE [Code] = 'sht' END +SET [Description] = 'Shasta', [Definition] = NULL, [SortOrder] = 6179.00 WHERE [Code] = 'sht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shj', 'Shatt', NULL, 617.20) END +VALUES ('shj', 'Shatt', NULL, 6180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shatt', [Definition] = NULL, [SortOrder] = 617.20 WHERE [Code] = 'shj' END +SET [Description] = 'Shatt', [Definition] = NULL, [SortOrder] = 6180.00 WHERE [Code] = 'shj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqh', 'Shau', NULL, 617.30) END +VALUES ('sqh', 'Shau', NULL, 6181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shau', [Definition] = NULL, [SortOrder] = 617.30 WHERE [Code] = 'sqh' END +SET [Description] = 'Shau', [Definition] = NULL, [SortOrder] = 6181.00 WHERE [Code] = 'sqh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjw', 'Shawnee', NULL, 617.40) END +VALUES ('sjw', 'Shawnee', NULL, 6182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shawnee', [Definition] = NULL, [SortOrder] = 617.40 WHERE [Code] = 'sjw' END +SET [Description] = 'Shawnee', [Definition] = NULL, [SortOrder] = 6182.00 WHERE [Code] = 'sjw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shx', 'She', NULL, 617.50) END +VALUES ('shx', 'She', NULL, 6183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'She', [Definition] = NULL, [SortOrder] = 617.50 WHERE [Code] = 'shx' END +SET [Description] = 'She', [Definition] = NULL, [SortOrder] = 6183.00 WHERE [Code] = 'shx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shv', 'Shehri', NULL, 617.60) END +VALUES ('shv', 'Shehri', NULL, 6184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shehri', [Definition] = NULL, [SortOrder] = 617.60 WHERE [Code] = 'shv' END +SET [Description] = 'Shehri', [Definition] = NULL, [SortOrder] = 6184.00 WHERE [Code] = 'shv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swv', 'Shekhawati', NULL, 617.70) END +VALUES ('swv', 'Shekhawati', NULL, 6185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shekhawati', [Definition] = NULL, [SortOrder] = 617.70 WHERE [Code] = 'swv' END +SET [Description] = 'Shekhawati', [Definition] = NULL, [SortOrder] = 6185.00 WHERE [Code] = 'swv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'moy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('moy', 'Shekkacho', NULL, 617.80) END +VALUES ('moy', 'Shekkacho', NULL, 6186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shekkacho', [Definition] = NULL, [SortOrder] = 617.80 WHERE [Code] = 'moy' END +SET [Description] = 'Shekkacho', [Definition] = NULL, [SortOrder] = 6186.00 WHERE [Code] = 'moy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'she') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('she', 'Sheko', NULL, 617.90) END +VALUES ('she', 'Sheko', NULL, 6187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sheko', [Definition] = NULL, [SortOrder] = 617.90 WHERE [Code] = 'she' END +SET [Description] = 'Sheko', [Definition] = NULL, [SortOrder] = 6187.00 WHERE [Code] = 'she' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sth', 'Shelta', NULL, 618.00) END +VALUES ('sth', 'Shelta', NULL, 6188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shelta', [Definition] = NULL, [SortOrder] = 618.00 WHERE [Code] = 'sth' END +SET [Description] = 'Shelta', [Definition] = NULL, [SortOrder] = 6188.00 WHERE [Code] = 'sth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seb', 'Shempire Senoufo', NULL, 618.10) END +VALUES ('seb', 'Shempire Senoufo', NULL, 6189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shempire Senoufo', [Definition] = NULL, [SortOrder] = 618.10 WHERE [Code] = 'seb' END +SET [Description] = 'Shempire Senoufo', [Definition] = NULL, [SortOrder] = 6189.00 WHERE [Code] = 'seb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shl', 'Shendu', NULL, 618.20) END +VALUES ('shl', 'Shendu', NULL, 6190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shendu', [Definition] = NULL, [SortOrder] = 618.20 WHERE [Code] = 'shl' END +SET [Description] = 'Shendu', [Definition] = NULL, [SortOrder] = 6190.00 WHERE [Code] = 'shl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scv', 'Sheni', NULL, 618.30) END +VALUES ('scv', 'Sheni', NULL, 6191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sheni', [Definition] = NULL, [SortOrder] = 618.30 WHERE [Code] = 'scv' END +SET [Description] = 'Sheni', [Definition] = NULL, [SortOrder] = 6191.00 WHERE [Code] = 'scv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bun', 'Sherbro', NULL, 618.40) END +VALUES ('bun', 'Sherbro', NULL, 6192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sherbro', [Definition] = NULL, [SortOrder] = 618.40 WHERE [Code] = 'bun' END +SET [Description] = 'Sherbro', [Definition] = NULL, [SortOrder] = 6192.00 WHERE [Code] = 'bun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdp', 'Sherdukpen', NULL, 618.50) END +VALUES ('sdp', 'Sherdukpen', NULL, 6193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sherdukpen', [Definition] = NULL, [SortOrder] = 618.50 WHERE [Code] = 'sdp' END +SET [Description] = 'Sherdukpen', [Definition] = NULL, [SortOrder] = 6193.00 WHERE [Code] = 'sdp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsr', 'Sherpa', NULL, 618.60) END +VALUES ('xsr', 'Sherpa', NULL, 6194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sherpa', [Definition] = NULL, [SortOrder] = 618.60 WHERE [Code] = 'xsr' END +SET [Description] = 'Sherpa', [Definition] = NULL, [SortOrder] = 6194.00 WHERE [Code] = 'xsr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kip', 'Sheshi Kham', NULL, 618.70) END +VALUES ('kip', 'Sheshi Kham', NULL, 6195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sheshi Kham', [Definition] = NULL, [SortOrder] = 618.70 WHERE [Code] = 'kip' END +SET [Description] = 'Sheshi Kham', [Definition] = NULL, [SortOrder] = 6195.00 WHERE [Code] = 'kip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shr', 'Shi', NULL, 618.80) END +VALUES ('shr', 'Shi', NULL, 6196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shi', [Definition] = NULL, [SortOrder] = 618.80 WHERE [Code] = 'shr' END +SET [Description] = 'Shi', [Definition] = NULL, [SortOrder] = 6196.00 WHERE [Code] = 'shr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssh', 'Shihhi Arabic', NULL, 618.90) END +VALUES ('ssh', 'Shihhi Arabic', NULL, 6197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shihhi Arabic', [Definition] = NULL, [SortOrder] = 618.90 WHERE [Code] = 'ssh' END +SET [Description] = 'Shihhi Arabic', [Definition] = NULL, [SortOrder] = 6197.00 WHERE [Code] = 'ssh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gua', 'Shiki', NULL, 619.00) END +VALUES ('gua', 'Shiki', NULL, 6198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shiki', [Definition] = NULL, [SortOrder] = 619.00 WHERE [Code] = 'gua' END +SET [Description] = 'Shiki', [Definition] = NULL, [SortOrder] = 6198.00 WHERE [Code] = 'gua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shk', 'Shilluk', NULL, 619.10) END +VALUES ('shk', 'Shilluk', NULL, 6199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shilluk', [Definition] = NULL, [SortOrder] = 619.10 WHERE [Code] = 'shk' END +SET [Description] = 'Shilluk', [Definition] = NULL, [SortOrder] = 6199.00 WHERE [Code] = 'shk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scl', 'Shina', NULL, 619.20) END +VALUES ('scl', 'Shina', NULL, 6200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shina', [Definition] = NULL, [SortOrder] = 619.20 WHERE [Code] = 'scl' END +SET [Description] = 'Shina', [Definition] = NULL, [SortOrder] = 6200.00 WHERE [Code] = 'scl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shp', 'Shipibo-Conibo', NULL, 619.30) END +VALUES ('shp', 'Shipibo-Conibo', NULL, 6201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shipibo-Conibo', [Definition] = NULL, [SortOrder] = 619.30 WHERE [Code] = 'shp' END +SET [Description] = 'Shipibo-Conibo', [Definition] = NULL, [SortOrder] = 6201.00 WHERE [Code] = 'shp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sle', 'Sholaga', NULL, 619.40) END +VALUES ('sle', 'Sholaga', NULL, 6202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sholaga', [Definition] = NULL, [SortOrder] = 619.40 WHERE [Code] = 'sle' END +SET [Description] = 'Sholaga', [Definition] = NULL, [SortOrder] = 6202.00 WHERE [Code] = 'sle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sii', 'Shom Peng', NULL, 619.50) END +VALUES ('sii', 'Shom Peng', NULL, 6203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shom Peng', [Definition] = NULL, [SortOrder] = 619.50 WHERE [Code] = 'sii' END +SET [Description] = 'Shom Peng', [Definition] = NULL, [SortOrder] = 6203.00 WHERE [Code] = 'sii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sna', 'Shona', NULL, 619.60) END +VALUES ('sna', 'Shona', NULL, 6204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shona', [Definition] = NULL, [SortOrder] = 619.60 WHERE [Code] = 'sna' END +SET [Description] = 'Shona', [Definition] = NULL, [SortOrder] = 6204.00 WHERE [Code] = 'sna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcv', 'Shoo-Minda-Nye', NULL, 619.70) END +VALUES ('bcv', 'Shoo-Minda-Nye', NULL, 6205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shoo-Minda-Nye', [Definition] = NULL, [SortOrder] = 619.70 WHERE [Code] = 'bcv' END +SET [Description] = 'Shoo-Minda-Nye', [Definition] = NULL, [SortOrder] = 6205.00 WHERE [Code] = 'bcv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjs', 'Shor', NULL, 619.80) END +VALUES ('cjs', 'Shor', NULL, 6206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shor', [Definition] = NULL, [SortOrder] = 619.80 WHERE [Code] = 'cjs' END +SET [Description] = 'Shor', [Definition] = NULL, [SortOrder] = 6206.00 WHERE [Code] = 'cjs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shh', 'Shoshoni', NULL, 619.90) END +VALUES ('shh', 'Shoshoni', NULL, 6207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shoshoni', [Definition] = NULL, [SortOrder] = 619.90 WHERE [Code] = 'shh' END +SET [Description] = 'Shoshoni', [Definition] = NULL, [SortOrder] = 6207.00 WHERE [Code] = 'shh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shg', 'Shua', NULL, 620.00) END +VALUES ('shg', 'Shua', NULL, 6208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shua', [Definition] = NULL, [SortOrder] = 620.00 WHERE [Code] = 'shg' END +SET [Description] = 'Shua', [Definition] = NULL, [SortOrder] = 6208.00 WHERE [Code] = 'shg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdt', 'Shuadit', NULL, 620.10) END +VALUES ('sdt', 'Shuadit', NULL, 6209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuadit', [Definition] = NULL, [SortOrder] = 620.10 WHERE [Code] = 'sdt' END +SET [Description] = 'Shuadit', [Definition] = NULL, [SortOrder] = 6209.00 WHERE [Code] = 'sdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jiv', 'Shuar', NULL, 620.20) END +VALUES ('jiv', 'Shuar', NULL, 6210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuar', [Definition] = NULL, [SortOrder] = 620.20 WHERE [Code] = 'jiv' END +SET [Description] = 'Shuar', [Definition] = NULL, [SortOrder] = 6210.00 WHERE [Code] = 'jiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suj', 'Shubi', NULL, 620.30) END +VALUES ('suj', 'Shubi', NULL, 6211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shubi', [Definition] = NULL, [SortOrder] = 620.30 WHERE [Code] = 'suj' END +SET [Description] = 'Shubi', [Definition] = NULL, [SortOrder] = 6211.00 WHERE [Code] = 'suj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgh', 'Shughni', NULL, 620.40) END +VALUES ('sgh', 'Shughni', NULL, 6212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shughni', [Definition] = NULL, [SortOrder] = 620.40 WHERE [Code] = 'sgh' END +SET [Description] = 'Shughni', [Definition] = NULL, [SortOrder] = 6212.00 WHERE [Code] = 'sgh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxg', 'Shuhi', NULL, 620.50) END +VALUES ('sxg', 'Shuhi', NULL, 6213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuhi', [Definition] = NULL, [SortOrder] = 620.50 WHERE [Code] = 'sxg' END +SET [Description] = 'Shuhi', [Definition] = NULL, [SortOrder] = 6213.00 WHERE [Code] = 'sxg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sts', 'Shumashti', NULL, 620.60) END +VALUES ('sts', 'Shumashti', NULL, 6214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shumashti', [Definition] = NULL, [SortOrder] = 620.60 WHERE [Code] = 'sts' END +SET [Description] = 'Shumashti', [Definition] = NULL, [SortOrder] = 6214.00 WHERE [Code] = 'sts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scu', 'Shumcho', NULL, 620.70) END +VALUES ('scu', 'Shumcho', NULL, 6215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shumcho', [Definition] = NULL, [SortOrder] = 620.70 WHERE [Code] = 'scu' END +SET [Description] = 'Shumcho', [Definition] = NULL, [SortOrder] = 6215.00 WHERE [Code] = 'scu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shs', 'Shuswap', NULL, 620.80) END +VALUES ('shs', 'Shuswap', NULL, 6216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuswap', [Definition] = NULL, [SortOrder] = 620.80 WHERE [Code] = 'shs' END +SET [Description] = 'Shuswap', [Definition] = NULL, [SortOrder] = 6216.00 WHERE [Code] = 'shs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksa', 'Shuwa-Zamani', NULL, 620.90) END +VALUES ('ksa', 'Shuwa-Zamani', NULL, 6217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shuwa-Zamani', [Definition] = NULL, [SortOrder] = 620.90 WHERE [Code] = 'ksa' END +SET [Description] = 'Shuwa-Zamani', [Definition] = NULL, [SortOrder] = 6217.00 WHERE [Code] = 'ksa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shw', 'Shwai', NULL, 621.00) END +VALUES ('shw', 'Shwai', NULL, 6218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shwai', [Definition] = NULL, [SortOrder] = 621.00 WHERE [Code] = 'shw' END +SET [Description] = 'Shwai', [Definition] = NULL, [SortOrder] = 6218.00 WHERE [Code] = 'shw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pll', 'Shwe Palaung', NULL, 621.10) END +VALUES ('pll', 'Shwe Palaung', NULL, 6219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Shwe Palaung', [Definition] = NULL, [SortOrder] = 621.10 WHERE [Code] = 'pll' END +SET [Description] = 'Shwe Palaung', [Definition] = NULL, [SortOrder] = 6219.00 WHERE [Code] = 'pll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slw', 'Sialum', NULL, 621.20) END +VALUES ('slw', 'Sialum', NULL, 6220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sialum', [Definition] = NULL, [SortOrder] = 621.20 WHERE [Code] = 'slw' END +SET [Description] = 'Sialum', [Definition] = NULL, [SortOrder] = 6220.00 WHERE [Code] = 'slw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sif', 'Siamou', NULL, 621.30) END +VALUES ('sif', 'Siamou', NULL, 6221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siamou', [Definition] = NULL, [SortOrder] = 621.30 WHERE [Code] = 'sif' END +SET [Description] = 'Siamou', [Definition] = NULL, [SortOrder] = 6221.00 WHERE [Code] = 'sif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spg', 'Sian', NULL, 621.40) END +VALUES ('spg', 'Sian', NULL, 6222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sian', [Definition] = NULL, [SortOrder] = 621.40 WHERE [Code] = 'spg' END +SET [Description] = 'Sian', [Definition] = NULL, [SortOrder] = 6222.00 WHERE [Code] = 'spg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snp', 'Siane', NULL, 621.50) END +VALUES ('snp', 'Siane', NULL, 6223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siane', [Definition] = NULL, [SortOrder] = 621.50 WHERE [Code] = 'snp' END +SET [Description] = 'Siane', [Definition] = NULL, [SortOrder] = 6223.00 WHERE [Code] = 'snp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sya', 'Siang', NULL, 621.60) END +VALUES ('sya', 'Siang', NULL, 6224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siang', [Definition] = NULL, [SortOrder] = 621.60 WHERE [Code] = 'sya' END +SET [Description] = 'Siang', [Definition] = NULL, [SortOrder] = 6224.00 WHERE [Code] = 'sya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjr', 'Siar-Lak', NULL, 621.70) END +VALUES ('sjr', 'Siar-Lak', NULL, 6225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siar-Lak', [Definition] = NULL, [SortOrder] = 621.70 WHERE [Code] = 'sjr' END +SET [Description] = 'Siar-Lak', [Definition] = NULL, [SortOrder] = 6225.00 WHERE [Code] = 'sjr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmp', 'Siawi', NULL, 621.80) END +VALUES ('mmp', 'Siawi', NULL, 6226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siawi', [Definition] = NULL, [SortOrder] = 621.80 WHERE [Code] = 'mmp' END +SET [Description] = 'Siawi', [Definition] = NULL, [SortOrder] = 6226.00 WHERE [Code] = 'mmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nco', 'Sibe', NULL, 621.90) END +VALUES ('nco', 'Sibe', NULL, 6227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sibe', [Definition] = NULL, [SortOrder] = 621.90 WHERE [Code] = 'nco' END +SET [Description] = 'Sibe', [Definition] = NULL, [SortOrder] = 6227.00 WHERE [Code] = 'nco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sty', 'Siberian Tatar', NULL, 622.00) END +VALUES ('sty', 'Siberian Tatar', NULL, 6228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siberian Tatar', [Definition] = NULL, [SortOrder] = 622.00 WHERE [Code] = 'sty' END +SET [Description] = 'Siberian Tatar', [Definition] = NULL, [SortOrder] = 6228.00 WHERE [Code] = 'sty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdx', 'Sibu Melanau', NULL, 622.10) END +VALUES ('sdx', 'Sibu Melanau', NULL, 6229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sibu Melanau', [Definition] = NULL, [SortOrder] = 622.10 WHERE [Code] = 'sdx' END +SET [Description] = 'Sibu Melanau', [Definition] = NULL, [SortOrder] = 6229.00 WHERE [Code] = 'sdx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxc', 'Sicanian', NULL, 622.20) END +VALUES ('sxc', 'Sicanian', NULL, 6230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sicanian', [Definition] = NULL, [SortOrder] = 622.20 WHERE [Code] = 'sxc' END +SET [Description] = 'Sicanian', [Definition] = NULL, [SortOrder] = 6230.00 WHERE [Code] = 'sxc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scx', 'Sicel', NULL, 622.30) END +VALUES ('scx', 'Sicel', NULL, 6231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sicel', [Definition] = NULL, [SortOrder] = 622.30 WHERE [Code] = 'scx' END +SET [Description] = 'Sicel', [Definition] = NULL, [SortOrder] = 6231.00 WHERE [Code] = 'scx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iii', 'Sichuan Yi', NULL, 622.40) END +VALUES ('iii', 'Sichuan Yi', NULL, 6232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sichuan Yi', [Definition] = NULL, [SortOrder] = 622.40 WHERE [Code] = 'iii' END +SET [Description] = 'Sichuan Yi', [Definition] = NULL, [SortOrder] = 6232.00 WHERE [Code] = 'iii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'scn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('scn', 'Sicilian', NULL, 622.50) END +VALUES ('scn', 'Sicilian', NULL, 6233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sicilian', [Definition] = NULL, [SortOrder] = 622.50 WHERE [Code] = 'scn' END +SET [Description] = 'Sicilian', [Definition] = NULL, [SortOrder] = 6233.00 WHERE [Code] = 'scn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sep', 'Sìcìté Sénoufo', NULL, 622.60) END +VALUES ('sep', 'Sìcìté Sénoufo', NULL, 6234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sìcìté Sénoufo', [Definition] = NULL, [SortOrder] = 622.60 WHERE [Code] = 'sep' END +SET [Description] = 'Sìcìté Sénoufo', [Definition] = NULL, [SortOrder] = 6234.00 WHERE [Code] = 'sep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqr', 'Siculo Arabic', NULL, 622.70) END +VALUES ('sqr', 'Siculo Arabic', NULL, 6235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siculo Arabic', [Definition] = NULL, [SortOrder] = 622.70 WHERE [Code] = 'sqr' END +SET [Description] = 'Siculo Arabic', [Definition] = NULL, [SortOrder] = 6235.00 WHERE [Code] = 'sqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sid', 'Sidamo', NULL, 622.80) END +VALUES ('sid', 'Sidamo', NULL, 6236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sidamo', [Definition] = NULL, [SortOrder] = 622.80 WHERE [Code] = 'sid' END +SET [Description] = 'Sidamo', [Definition] = NULL, [SortOrder] = 6236.00 WHERE [Code] = 'sid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsd', 'Sidetic', NULL, 622.90) END +VALUES ('xsd', 'Sidetic', NULL, 6237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sidetic', [Definition] = NULL, [SortOrder] = 622.90 WHERE [Code] = 'xsd' END +SET [Description] = 'Sidetic', [Definition] = NULL, [SortOrder] = 6237.00 WHERE [Code] = 'xsd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'erg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('erg', 'Sie', NULL, 623.00) END +VALUES ('erg', 'Sie', NULL, 6238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sie', [Definition] = NULL, [SortOrder] = 623.00 WHERE [Code] = 'erg' END +SET [Description] = 'Sie', [Definition] = NULL, [SortOrder] = 6238.00 WHERE [Code] = 'erg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaa', 'Sierra de Juárez Zapotec', NULL, 623.10) END +VALUES ('zaa', 'Sierra de Juárez Zapotec', NULL, 6239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sierra de Juárez Zapotec', [Definition] = NULL, [SortOrder] = 623.10 WHERE [Code] = 'zaa' END +SET [Description] = 'Sierra de Juárez Zapotec', [Definition] = NULL, [SortOrder] = 6239.00 WHERE [Code] = 'zaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgx', 'Sierra Leone Sign Language', NULL, 623.20) END +VALUES ('sgx', 'Sierra Leone Sign Language', NULL, 6240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sierra Leone Sign Language', [Definition] = NULL, [SortOrder] = 623.20 WHERE [Code] = 'sgx' END +SET [Description] = 'Sierra Leone Sign Language', [Definition] = NULL, [SortOrder] = 6240.00 WHERE [Code] = 'sgx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsu', 'Sierra Negra Nahuatl', NULL, 623.30) END +VALUES ('nsu', 'Sierra Negra Nahuatl', NULL, 6241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sierra Negra Nahuatl', [Definition] = NULL, [SortOrder] = 623.30 WHERE [Code] = 'nsu' END +SET [Description] = 'Sierra Negra Nahuatl', [Definition] = NULL, [SortOrder] = 6241.00 WHERE [Code] = 'nsu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxe', 'Sighu', NULL, 623.40) END +VALUES ('sxe', 'Sighu', NULL, 6242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sighu', [Definition] = NULL, [SortOrder] = 623.40 WHERE [Code] = 'sxe' END +SET [Description] = 'Sighu', [Definition] = NULL, [SortOrder] = 6242.00 WHERE [Code] = 'sxe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snr', 'Sihan', NULL, 623.50) END +VALUES ('snr', 'Sihan', NULL, 6243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sihan', [Definition] = NULL, [SortOrder] = 623.50 WHERE [Code] = 'snr' END +SET [Description] = 'Sihan', [Definition] = NULL, [SortOrder] = 6243.00 WHERE [Code] = 'snr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qws', 'Sihuas Ancash Quechua', NULL, 623.60) END +VALUES ('qws', 'Sihuas Ancash Quechua', NULL, 6244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sihuas Ancash Quechua', [Definition] = NULL, [SortOrder] = 623.60 WHERE [Code] = 'qws' END +SET [Description] = 'Sihuas Ancash Quechua', [Definition] = NULL, [SortOrder] = 6244.00 WHERE [Code] = 'qws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ski') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ski', 'Sika', NULL, 623.70) END +VALUES ('ski', 'Sika', NULL, 6245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sika', [Definition] = NULL, [SortOrder] = 623.70 WHERE [Code] = 'ski' END +SET [Description] = 'Sika', [Definition] = NULL, [SortOrder] = 6245.00 WHERE [Code] = 'ski' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sky', 'Sikaiana', NULL, 623.80) END +VALUES ('sky', 'Sikaiana', NULL, 6246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikaiana', [Definition] = NULL, [SortOrder] = 623.80 WHERE [Code] = 'sky' END +SET [Description] = 'Sikaiana', [Definition] = NULL, [SortOrder] = 6246.00 WHERE [Code] = 'sky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tty', 'Sikaritai', NULL, 623.90) END +VALUES ('tty', 'Sikaritai', NULL, 6247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikaritai', [Definition] = NULL, [SortOrder] = 623.90 WHERE [Code] = 'tty' END +SET [Description] = 'Sikaritai', [Definition] = NULL, [SortOrder] = 6247.00 WHERE [Code] = 'tty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sik', 'Sikiana', NULL, 624.00) END +VALUES ('sik', 'Sikiana', NULL, 6248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikiana', [Definition] = NULL, [SortOrder] = 624.00 WHERE [Code] = 'sik' END +SET [Description] = 'Sikiana', [Definition] = NULL, [SortOrder] = 6248.00 WHERE [Code] = 'sik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sip', 'Sikkimese', NULL, 624.10) END +VALUES ('sip', 'Sikkimese', NULL, 6249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikkimese', [Definition] = NULL, [SortOrder] = 624.10 WHERE [Code] = 'sip' END +SET [Description] = 'Sikkimese', [Definition] = NULL, [SortOrder] = 6249.00 WHERE [Code] = 'sip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bla', 'Siksika', NULL, 624.20) END +VALUES ('bla', 'Siksika', NULL, 6250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siksika', [Definition] = NULL, [SortOrder] = 624.20 WHERE [Code] = 'bla' END +SET [Description] = 'Siksika', [Definition] = NULL, [SortOrder] = 6250.00 WHERE [Code] = 'bla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skh', 'Sikule', NULL, 624.30) END +VALUES ('skh', 'Sikule', NULL, 6251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sikule', [Definition] = NULL, [SortOrder] = 624.30 WHERE [Code] = 'skh' END +SET [Description] = 'Sikule', [Definition] = NULL, [SortOrder] = 6251.00 WHERE [Code] = 'skh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slt', 'Sila', NULL, 624.40) END +VALUES ('slt', 'Sila', NULL, 6252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sila', [Definition] = NULL, [SortOrder] = 624.40 WHERE [Code] = 'slt' END +SET [Description] = 'Sila', [Definition] = NULL, [SortOrder] = 6252.00 WHERE [Code] = 'slt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mks', 'Silacayoapan Mixtec', NULL, 624.50) END +VALUES ('mks', 'Silacayoapan Mixtec', NULL, 6253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silacayoapan Mixtec', [Definition] = NULL, [SortOrder] = 624.50 WHERE [Code] = 'mks' END +SET [Description] = 'Silacayoapan Mixtec', [Definition] = NULL, [SortOrder] = 6253.00 WHERE [Code] = 'mks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbq', 'Sileibi', NULL, 624.60) END +VALUES ('sbq', 'Sileibi', NULL, 6254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sileibi', [Definition] = NULL, [SortOrder] = 624.60 WHERE [Code] = 'sbq' END +SET [Description] = 'Sileibi', [Definition] = NULL, [SortOrder] = 6254.00 WHERE [Code] = 'sbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szl', 'Silesian', NULL, 624.70) END +VALUES ('szl', 'Silesian', NULL, 6255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silesian', [Definition] = NULL, [SortOrder] = 624.70 WHERE [Code] = 'szl' END +SET [Description] = 'Silesian', [Definition] = NULL, [SortOrder] = 6255.00 WHERE [Code] = 'szl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wul', 'Silimo', NULL, 624.80) END +VALUES ('wul', 'Silimo', NULL, 6256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silimo', [Definition] = NULL, [SortOrder] = 624.80 WHERE [Code] = 'wul' END +SET [Description] = 'Silimo', [Definition] = NULL, [SortOrder] = 6256.00 WHERE [Code] = 'wul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkc', 'Siliput', NULL, 624.90) END +VALUES ('mkc', 'Siliput', NULL, 6257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siliput', [Definition] = NULL, [SortOrder] = 624.90 WHERE [Code] = 'mkc' END +SET [Description] = 'Siliput', [Definition] = NULL, [SortOrder] = 6257.00 WHERE [Code] = 'mkc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsp', 'Silopi', NULL, 625.00) END +VALUES ('xsp', 'Silopi', NULL, 6258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silopi', [Definition] = NULL, [SortOrder] = 625.00 WHERE [Code] = 'xsp' END +SET [Description] = 'Silopi', [Definition] = NULL, [SortOrder] = 6258.00 WHERE [Code] = 'xsp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stv', 'Silt''e', NULL, 625.10) END +VALUES ('stv', 'Silt''e', NULL, 6259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Silt''e', [Definition] = NULL, [SortOrder] = 625.10 WHERE [Code] = 'stv' END +SET [Description] = 'Silt''e', [Definition] = NULL, [SortOrder] = 6259.00 WHERE [Code] = 'stv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sie', 'Simaa', NULL, 625.20) END +VALUES ('sie', 'Simaa', NULL, 6260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simaa', [Definition] = NULL, [SortOrder] = 625.20 WHERE [Code] = 'sie' END +SET [Description] = 'Simaa', [Definition] = NULL, [SortOrder] = 6260.00 WHERE [Code] = 'sie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbw', 'Simba', NULL, 625.30) END +VALUES ('sbw', 'Simba', NULL, 6261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simba', [Definition] = NULL, [SortOrder] = 625.30 WHERE [Code] = 'sbw' END +SET [Description] = 'Simba', [Definition] = NULL, [SortOrder] = 6261.00 WHERE [Code] = 'sbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smg', 'Simbali', NULL, 625.40) END +VALUES ('smg', 'Simbali', NULL, 6262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simbali', [Definition] = NULL, [SortOrder] = 625.40 WHERE [Code] = 'smg' END +SET [Description] = 'Simbali', [Definition] = NULL, [SortOrder] = 6262.00 WHERE [Code] = 'smg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smb', 'Simbari', NULL, 625.50) END +VALUES ('smb', 'Simbari', NULL, 6263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simbari', [Definition] = NULL, [SortOrder] = 625.50 WHERE [Code] = 'smb' END +SET [Description] = 'Simbari', [Definition] = NULL, [SortOrder] = 6263.00 WHERE [Code] = 'smb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbb', 'Simbo', NULL, 625.60) END +VALUES ('sbb', 'Simbo', NULL, 6264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simbo', [Definition] = NULL, [SortOrder] = 625.60 WHERE [Code] = 'sbb' END +SET [Description] = 'Simbo', [Definition] = NULL, [SortOrder] = 6264.00 WHERE [Code] = 'sbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smz', 'Simeku', NULL, 625.70) END +VALUES ('smz', 'Simeku', NULL, 6265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simeku', [Definition] = NULL, [SortOrder] = 625.70 WHERE [Code] = 'smz' END +SET [Description] = 'Simeku', [Definition] = NULL, [SortOrder] = 6265.00 WHERE [Code] = 'smz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smr', 'Simeulue', NULL, 625.80) END +VALUES ('smr', 'Simeulue', NULL, 6266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simeulue', [Definition] = NULL, [SortOrder] = 625.80 WHERE [Code] = 'smr' END +SET [Description] = 'Simeulue', [Definition] = NULL, [SortOrder] = 6266.00 WHERE [Code] = 'smr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smt', 'Simte', NULL, 625.90) END +VALUES ('smt', 'Simte', NULL, 6267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Simte', [Definition] = NULL, [SortOrder] = 625.90 WHERE [Code] = 'smt' END +SET [Description] = 'Simte', [Definition] = NULL, [SortOrder] = 6267.00 WHERE [Code] = 'smt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siu', 'Sinagen', NULL, 626.00) END +VALUES ('siu', 'Sinagen', NULL, 6268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinagen', [Definition] = NULL, [SortOrder] = 626.00 WHERE [Code] = 'siu' END +SET [Description] = 'Sinagen', [Definition] = NULL, [SortOrder] = 6268.00 WHERE [Code] = 'siu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sst', 'Sinasina', NULL, 626.10) END +VALUES ('sst', 'Sinasina', NULL, 6269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinasina', [Definition] = NULL, [SortOrder] = 626.10 WHERE [Code] = 'sst' END +SET [Description] = 'Sinasina', [Definition] = NULL, [SortOrder] = 6269.00 WHERE [Code] = 'sst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snc', 'Sinaugoro', NULL, 626.20) END +VALUES ('snc', 'Sinaugoro', NULL, 6270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinaugoro', [Definition] = NULL, [SortOrder] = 626.20 WHERE [Code] = 'snc' END +SET [Description] = 'Sinaugoro', [Definition] = NULL, [SortOrder] = 6270.00 WHERE [Code] = 'snc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjn', 'Sindarin', NULL, 626.30) END +VALUES ('sjn', 'Sindarin', NULL, 6271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sindarin', [Definition] = NULL, [SortOrder] = 626.30 WHERE [Code] = 'sjn' END +SET [Description] = 'Sindarin', [Definition] = NULL, [SortOrder] = 6271.00 WHERE [Code] = 'sjn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snd', 'Sindhi', NULL, 626.40) END +VALUES ('snd', 'Sindhi', NULL, 6272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sindhi', [Definition] = NULL, [SortOrder] = 626.40 WHERE [Code] = 'snd' END +SET [Description] = 'Sindhi', [Definition] = NULL, [SortOrder] = 6272.00 WHERE [Code] = 'snd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbn', 'Sindhi Bhil', NULL, 626.50) END +VALUES ('sbn', 'Sindhi Bhil', NULL, 6273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sindhi Bhil', [Definition] = NULL, [SortOrder] = 626.50 WHERE [Code] = 'sbn' END +SET [Description] = 'Sindhi Bhil', [Definition] = NULL, [SortOrder] = 6273.00 WHERE [Code] = 'sbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xts', 'Sindihui Mixtec', NULL, 626.60) END +VALUES ('xts', 'Sindihui Mixtec', NULL, 6274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sindihui Mixtec', [Definition] = NULL, [SortOrder] = 626.60 WHERE [Code] = 'xts' END +SET [Description] = 'Sindihui Mixtec', [Definition] = NULL, [SortOrder] = 6274.00 WHERE [Code] = 'xts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgm', 'Singa', NULL, 626.70) END +VALUES ('sgm', 'Singa', NULL, 6275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Singa', [Definition] = NULL, [SortOrder] = 626.70 WHERE [Code] = 'sgm' END +SET [Description] = 'Singa', [Definition] = NULL, [SortOrder] = 6275.00 WHERE [Code] = 'sgm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sls', 'Singapore Sign Language', NULL, 626.80) END +VALUES ('sls', 'Singapore Sign Language', NULL, 6276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Singapore Sign Language', [Definition] = NULL, [SortOrder] = 626.80 WHERE [Code] = 'sls' END +SET [Description] = 'Singapore Sign Language', [Definition] = NULL, [SortOrder] = 6276.00 WHERE [Code] = 'sls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgp', 'Singpho', NULL, 626.90) END +VALUES ('sgp', 'Singpho', NULL, 6277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Singpho', [Definition] = NULL, [SortOrder] = 626.90 WHERE [Code] = 'sgp' END +SET [Description] = 'Singpho', [Definition] = NULL, [SortOrder] = 6277.00 WHERE [Code] = 'sgp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sin', 'Sinhala', NULL, 627.00) END +VALUES ('sin', 'Sinhala', NULL, 6278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinhala', [Definition] = NULL, [SortOrder] = 627.00 WHERE [Code] = 'sin' END +SET [Description] = 'Sinhala', [Definition] = NULL, [SortOrder] = 6278.00 WHERE [Code] = 'sin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xti', 'Sinicahua Mixtec', NULL, 627.10) END +VALUES ('xti', 'Sinicahua Mixtec', NULL, 6279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinicahua Mixtec', [Definition] = NULL, [SortOrder] = 627.10 WHERE [Code] = 'xti' END +SET [Description] = 'Sinicahua Mixtec', [Definition] = NULL, [SortOrder] = 6279.00 WHERE [Code] = 'xti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skq', 'Sininkere', NULL, 627.20) END +VALUES ('skq', 'Sininkere', NULL, 6280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sininkere', [Definition] = NULL, [SortOrder] = 627.20 WHERE [Code] = 'skq' END +SET [Description] = 'Sininkere', [Definition] = NULL, [SortOrder] = 6280.00 WHERE [Code] = 'skq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmo', 'Sinte Romani', NULL, 627.30) END +VALUES ('rmo', 'Sinte Romani', NULL, 6281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinte Romani', [Definition] = NULL, [SortOrder] = 627.30 WHERE [Code] = 'rmo' END +SET [Description] = 'Sinte Romani', [Definition] = NULL, [SortOrder] = 6281.00 WHERE [Code] = 'rmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sys', 'Sinyar', NULL, 627.40) END +VALUES ('sys', 'Sinyar', NULL, 6282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sinyar', [Definition] = NULL, [SortOrder] = 627.40 WHERE [Code] = 'sys' END +SET [Description] = 'Sinyar', [Definition] = NULL, [SortOrder] = 6282.00 WHERE [Code] = 'sys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsi', 'Sio', NULL, 627.50) END +VALUES ('xsi', 'Sio', NULL, 6283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sio', [Definition] = NULL, [SortOrder] = 627.50 WHERE [Code] = 'xsi' END +SET [Description] = 'Sio', [Definition] = NULL, [SortOrder] = 6283.00 WHERE [Code] = 'xsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snn', 'Siona', NULL, 627.60) END +VALUES ('snn', 'Siona', NULL, 6284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siona', [Definition] = NULL, [SortOrder] = 627.60 WHERE [Code] = 'snn' END +SET [Description] = 'Siona', [Definition] = NULL, [SortOrder] = 6284.00 WHERE [Code] = 'snn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qum', 'Sipacapense', NULL, 627.70) END +VALUES ('qum', 'Sipacapense', NULL, 6285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sipacapense', [Definition] = NULL, [SortOrder] = 627.70 WHERE [Code] = 'qum' END +SET [Description] = 'Sipacapense', [Definition] = NULL, [SortOrder] = 6285.00 WHERE [Code] = 'qum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swj', 'Sira', NULL, 627.80) END +VALUES ('swj', 'Sira', NULL, 6286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sira', [Definition] = NULL, [SortOrder] = 627.80 WHERE [Code] = 'swj' END +SET [Description] = 'Sira', [Definition] = NULL, [SortOrder] = 6286.00 WHERE [Code] = 'swj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fos', 'Siraya', NULL, 627.90) END +VALUES ('fos', 'Siraya', NULL, 6287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siraya', [Definition] = NULL, [SortOrder] = 627.90 WHERE [Code] = 'fos' END +SET [Description] = 'Siraya', [Definition] = NULL, [SortOrder] = 6287.00 WHERE [Code] = 'fos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysr', 'Sirenik Yupik', NULL, 628.00) END +VALUES ('ysr', 'Sirenik Yupik', NULL, 6288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sirenik Yupik', [Definition] = NULL, [SortOrder] = 628.00 WHERE [Code] = 'ysr' END +SET [Description] = 'Sirenik Yupik', [Definition] = NULL, [SortOrder] = 6288.00 WHERE [Code] = 'ysr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sir', 'Siri', NULL, 628.10) END +VALUES ('sir', 'Siri', NULL, 6289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siri', [Definition] = NULL, [SortOrder] = 628.10 WHERE [Code] = 'sir' END +SET [Description] = 'Siri', [Definition] = NULL, [SortOrder] = 6289.00 WHERE [Code] = 'sir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sri', 'Siriano', NULL, 628.20) END +VALUES ('sri', 'Siriano', NULL, 6290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siriano', [Definition] = NULL, [SortOrder] = 628.20 WHERE [Code] = 'sri' END +SET [Description] = 'Siriano', [Definition] = NULL, [SortOrder] = 6290.00 WHERE [Code] = 'sri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srq', 'Sirionó', NULL, 628.30) END +VALUES ('srq', 'Sirionó', NULL, 6291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sirionó', [Definition] = NULL, [SortOrder] = 628.30 WHERE [Code] = 'srq' END +SET [Description] = 'Sirionó', [Definition] = NULL, [SortOrder] = 6291.00 WHERE [Code] = 'srq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srx', 'Sirmauri', NULL, 628.40) END +VALUES ('srx', 'Sirmauri', NULL, 6292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sirmauri', [Definition] = NULL, [SortOrder] = 628.40 WHERE [Code] = 'srx' END +SET [Description] = 'Sirmauri', [Definition] = NULL, [SortOrder] = 6292.00 WHERE [Code] = 'srx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssd', 'Siroi', NULL, 628.50) END +VALUES ('ssd', 'Siroi', NULL, 6293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siroi', [Definition] = NULL, [SortOrder] = 628.50 WHERE [Code] = 'ssd' END +SET [Description] = 'Siroi', [Definition] = NULL, [SortOrder] = 6293.00 WHERE [Code] = 'ssd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sld', 'Sissala', NULL, 628.60) END +VALUES ('sld', 'Sissala', NULL, 6294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sissala', [Definition] = NULL, [SortOrder] = 628.60 WHERE [Code] = 'sld' END +SET [Description] = 'Sissala', [Definition] = NULL, [SortOrder] = 6294.00 WHERE [Code] = 'sld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sso', 'Sissano', NULL, 628.70) END +VALUES ('sso', 'Sissano', NULL, 6295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sissano', [Definition] = NULL, [SortOrder] = 628.70 WHERE [Code] = 'sso' END +SET [Description] = 'Sissano', [Definition] = NULL, [SortOrder] = 6295.00 WHERE [Code] = 'sso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sis', 'Siuslaw', NULL, 628.80) END +VALUES ('sis', 'Siuslaw', NULL, 6296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siuslaw', [Definition] = NULL, [SortOrder] = 628.80 WHERE [Code] = 'sis' END +SET [Description] = 'Siuslaw', [Definition] = NULL, [SortOrder] = 6296.00 WHERE [Code] = 'sis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siy', 'Sivandi', NULL, 628.90) END +VALUES ('siy', 'Sivandi', NULL, 6297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sivandi', [Definition] = NULL, [SortOrder] = 628.90 WHERE [Code] = 'siy' END +SET [Description] = 'Sivandi', [Definition] = NULL, [SortOrder] = 6297.00 WHERE [Code] = 'siy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsv', 'Sivia Sign Language', NULL, 629.00) END +VALUES ('lsv', 'Sivia Sign Language', NULL, 6298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sivia Sign Language', [Definition] = NULL, [SortOrder] = 629.00 WHERE [Code] = 'lsv' END +SET [Description] = 'Sivia Sign Language', [Definition] = NULL, [SortOrder] = 6298.00 WHERE [Code] = 'lsv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siw', 'Siwai', NULL, 629.10) END +VALUES ('siw', 'Siwai', NULL, 6299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siwai', [Definition] = NULL, [SortOrder] = 629.10 WHERE [Code] = 'siw' END +SET [Description] = 'Siwai', [Definition] = NULL, [SortOrder] = 6299.00 WHERE [Code] = 'siw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siz', 'Siwi', NULL, 629.20) END +VALUES ('siz', 'Siwi', NULL, 6300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siwi', [Definition] = NULL, [SortOrder] = 629.20 WHERE [Code] = 'siz' END +SET [Description] = 'Siwi', [Definition] = NULL, [SortOrder] = 6300.00 WHERE [Code] = 'siz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akp', 'Siwu', NULL, 629.30) END +VALUES ('akp', 'Siwu', NULL, 6301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siwu', [Definition] = NULL, [SortOrder] = 629.30 WHERE [Code] = 'akp' END +SET [Description] = 'Siwu', [Definition] = NULL, [SortOrder] = 6301.00 WHERE [Code] = 'akp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csy', 'Siyin Chin', NULL, 629.40) END +VALUES ('csy', 'Siyin Chin', NULL, 6302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Siyin Chin', [Definition] = NULL, [SortOrder] = 629.40 WHERE [Code] = 'csy' END +SET [Description] = 'Siyin Chin', [Definition] = NULL, [SortOrder] = 6302.00 WHERE [Code] = 'csy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ska') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ska', 'Skagit', NULL, 629.50) END +VALUES ('ska', 'Skagit', NULL, 6303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skagit', [Definition] = NULL, [SortOrder] = 629.50 WHERE [Code] = 'ska' END +SET [Description] = 'Skagit', [Definition] = NULL, [SortOrder] = 6303.00 WHERE [Code] = 'ska' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svx', 'Skalvian', NULL, 629.60) END +VALUES ('svx', 'Skalvian', NULL, 6304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skalvian', [Definition] = NULL, [SortOrder] = 629.60 WHERE [Code] = 'svx' END +SET [Description] = 'Skalvian', [Definition] = NULL, [SortOrder] = 6304.00 WHERE [Code] = 'svx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skw', 'Skepi Creole Dutch', NULL, 629.70) END +VALUES ('skw', 'Skepi Creole Dutch', NULL, 6305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skepi Creole Dutch', [Definition] = NULL, [SortOrder] = 629.70 WHERE [Code] = 'skw' END +SET [Description] = 'Skepi Creole Dutch', [Definition] = NULL, [SortOrder] = 6305.00 WHERE [Code] = 'skw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sms', 'Skolt Sami', NULL, 629.80) END +VALUES ('sms', 'Skolt Sami', NULL, 6306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skolt Sami', [Definition] = NULL, [SortOrder] = 629.80 WHERE [Code] = 'sms' END +SET [Description] = 'Skolt Sami', [Definition] = NULL, [SortOrder] = 6306.00 WHERE [Code] = 'sms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skv', 'Skou', NULL, 629.90) END +VALUES ('skv', 'Skou', NULL, 6307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Skou', [Definition] = NULL, [SortOrder] = 629.90 WHERE [Code] = 'skv' END +SET [Description] = 'Skou', [Definition] = NULL, [SortOrder] = 6307.00 WHERE [Code] = 'skv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'den') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('den', 'Slave (Athapascan)', NULL, 630.00) END +VALUES ('den', 'Slave (Athapascan)', NULL, 6308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slave (Athapascan)', [Definition] = NULL, [SortOrder] = 630.00 WHERE [Code] = 'den' END +SET [Description] = 'Slave (Athapascan)', [Definition] = NULL, [SortOrder] = 6308.00 WHERE [Code] = 'den' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svm', 'Slavomolisano', NULL, 630.10) END +VALUES ('svm', 'Slavomolisano', NULL, 6309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slavomolisano', [Definition] = NULL, [SortOrder] = 630.10 WHERE [Code] = 'svm' END +SET [Description] = 'Slavomolisano', [Definition] = NULL, [SortOrder] = 6309.00 WHERE [Code] = 'svm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slk', 'Slovak', NULL, 630.20) END +VALUES ('slk', 'Slovak', NULL, 6310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slovak', [Definition] = NULL, [SortOrder] = 630.20 WHERE [Code] = 'slk' END +SET [Description] = 'Slovak', [Definition] = NULL, [SortOrder] = 6310.00 WHERE [Code] = 'slk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svk', 'Slovakian Sign Language', NULL, 630.30) END +VALUES ('svk', 'Slovakian Sign Language', NULL, 6311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slovakian Sign Language', [Definition] = NULL, [SortOrder] = 630.30 WHERE [Code] = 'svk' END +SET [Description] = 'Slovakian Sign Language', [Definition] = NULL, [SortOrder] = 6311.00 WHERE [Code] = 'svk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slv', 'Slovenian', NULL, 630.40) END +VALUES ('slv', 'Slovenian', NULL, 6312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Slovenian', [Definition] = NULL, [SortOrder] = 630.40 WHERE [Code] = 'slv' END +SET [Description] = 'Slovenian', [Definition] = NULL, [SortOrder] = 6312.00 WHERE [Code] = 'slv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfm', 'Small Flowery Miao', NULL, 630.50) END +VALUES ('sfm', 'Small Flowery Miao', NULL, 6313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Small Flowery Miao', [Definition] = NULL, [SortOrder] = 630.50 WHERE [Code] = 'sfm' END +SET [Description] = 'Small Flowery Miao', [Definition] = NULL, [SortOrder] = 6313.00 WHERE [Code] = 'sfm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxq', 'Smärky Kanum', NULL, 630.60) END +VALUES ('kxq', 'Smärky Kanum', NULL, 6314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Smärky Kanum', [Definition] = NULL, [SortOrder] = 630.60 WHERE [Code] = 'kxq' END +SET [Description] = 'Smärky Kanum', [Definition] = NULL, [SortOrder] = 6314.00 WHERE [Code] = 'kxq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sno', 'Snohomish', NULL, 630.70) END +VALUES ('sno', 'Snohomish', NULL, 6315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Snohomish', [Definition] = NULL, [SortOrder] = 630.70 WHERE [Code] = 'sno' END +SET [Description] = 'Snohomish', [Definition] = NULL, [SortOrder] = 6315.00 WHERE [Code] = 'sno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sss', 'Sô', NULL, 630.80) END +VALUES ('sss', 'Sô', NULL, 6316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sô', [Definition] = NULL, [SortOrder] = 630.80 WHERE [Code] = 'sss' END +SET [Description] = 'Sô', [Definition] = NULL, [SortOrder] = 6316.00 WHERE [Code] = 'sss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soc', 'So (Democratic Republic of Congo)', NULL, 630.90) END +VALUES ('soc', 'So (Democratic Republic of Congo)', NULL, 6317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'So (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 630.90 WHERE [Code] = 'soc' END +SET [Description] = 'So (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 6317.00 WHERE [Code] = 'soc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssq', 'So''a', NULL, 631.00) END +VALUES ('ssq', 'So''a', NULL, 6318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'So''a', [Definition] = NULL, [SortOrder] = 631.00 WHERE [Code] = 'ssq' END +SET [Description] = 'So''a', [Definition] = NULL, [SortOrder] = 6318.00 WHERE [Code] = 'ssq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sob', 'Sobei', NULL, 631.10) END +VALUES ('sob', 'Sobei', NULL, 6319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sobei', [Definition] = NULL, [SortOrder] = 631.10 WHERE [Code] = 'sob' END +SET [Description] = 'Sobei', [Definition] = NULL, [SortOrder] = 6319.00 WHERE [Code] = 'sob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cso', 'Sochiapam Chinantec', NULL, 631.20) END +VALUES ('cso', 'Sochiapam Chinantec', NULL, 6320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sochiapam Chinantec', [Definition] = NULL, [SortOrder] = 631.20 WHERE [Code] = 'cso' END +SET [Description] = 'Sochiapam Chinantec', [Definition] = NULL, [SortOrder] = 6320.00 WHERE [Code] = 'cso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xog', 'Soga', NULL, 631.30) END +VALUES ('xog', 'Soga', NULL, 6321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soga', [Definition] = NULL, [SortOrder] = 631.30 WHERE [Code] = 'xog' END +SET [Description] = 'Soga', [Definition] = NULL, [SortOrder] = 6321.00 WHERE [Code] = 'xog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sog', 'Sogdian', NULL, 631.40) END +VALUES ('sog', 'Sogdian', NULL, 6322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sogdian', [Definition] = NULL, [SortOrder] = 631.40 WHERE [Code] = 'sog' END +SET [Description] = 'Sogdian', [Definition] = NULL, [SortOrder] = 6322.00 WHERE [Code] = 'sog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soj', 'Soi', NULL, 631.50) END +VALUES ('soj', 'Soi', NULL, 6323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soi', [Definition] = NULL, [SortOrder] = 631.50 WHERE [Code] = 'soj' END +SET [Description] = 'Soi', [Definition] = NULL, [SortOrder] = 6323.00 WHERE [Code] = 'soj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sok', 'Sokoro', NULL, 631.60) END +VALUES ('sok', 'Sokoro', NULL, 6324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sokoro', [Definition] = NULL, [SortOrder] = 631.60 WHERE [Code] = 'sok' END +SET [Description] = 'Sokoro', [Definition] = NULL, [SortOrder] = 6324.00 WHERE [Code] = 'sok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xso', 'Solano', NULL, 631.70) END +VALUES ('xso', 'Solano', NULL, 6325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Solano', [Definition] = NULL, [SortOrder] = 631.70 WHERE [Code] = 'xso' END +SET [Description] = 'Solano', [Definition] = NULL, [SortOrder] = 6325.00 WHERE [Code] = 'xso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sby', 'Soli', NULL, 631.80) END +VALUES ('sby', 'Soli', NULL, 6326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soli', [Definition] = NULL, [SortOrder] = 631.80 WHERE [Code] = 'sby' END +SET [Description] = 'Soli', [Definition] = NULL, [SortOrder] = 6326.00 WHERE [Code] = 'sby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szs', 'Solomon Islands Sign Language', NULL, 631.90) END +VALUES ('szs', 'Solomon Islands Sign Language', NULL, 6327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Solomon Islands Sign Language', [Definition] = NULL, [SortOrder] = 631.90 WHERE [Code] = 'szs' END +SET [Description] = 'Solomon Islands Sign Language', [Definition] = NULL, [SortOrder] = 6327.00 WHERE [Code] = 'szs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aaw', 'Solong', NULL, 632.00) END +VALUES ('aaw', 'Solong', NULL, 6328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Solong', [Definition] = NULL, [SortOrder] = 632.00 WHERE [Code] = 'aaw' END +SET [Description] = 'Solong', [Definition] = NULL, [SortOrder] = 6328.00 WHERE [Code] = 'aaw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sol', 'Solos', NULL, 632.10) END +VALUES ('sol', 'Solos', NULL, 6329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Solos', [Definition] = NULL, [SortOrder] = 632.10 WHERE [Code] = 'sol' END +SET [Description] = 'Solos', [Definition] = NULL, [SortOrder] = 6329.00 WHERE [Code] = 'sol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smc', 'Som', NULL, 632.20) END +VALUES ('smc', 'Som', NULL, 6330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Som', [Definition] = NULL, [SortOrder] = 632.20 WHERE [Code] = 'smc' END +SET [Description] = 'Som', [Definition] = NULL, [SortOrder] = 6330.00 WHERE [Code] = 'smc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'som') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('som', 'Somali', NULL, 632.30) END +VALUES ('som', 'Somali', NULL, 6331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somali', [Definition] = NULL, [SortOrder] = 632.30 WHERE [Code] = 'som' END +SET [Description] = 'Somali', [Definition] = NULL, [SortOrder] = 6331.00 WHERE [Code] = 'som' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bmu', 'Somba-Siawari', NULL, 632.40) END +VALUES ('bmu', 'Somba-Siawari', NULL, 6332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somba-Siawari', [Definition] = NULL, [SortOrder] = 632.40 WHERE [Code] = 'bmu' END +SET [Description] = 'Somba-Siawari', [Definition] = NULL, [SortOrder] = 6332.00 WHERE [Code] = 'bmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sor', 'Somrai', NULL, 632.50) END +VALUES ('sor', 'Somrai', NULL, 6333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somrai', [Definition] = NULL, [SortOrder] = 632.50 WHERE [Code] = 'sor' END +SET [Description] = 'Somrai', [Definition] = NULL, [SortOrder] = 6333.00 WHERE [Code] = 'sor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smu', 'Somray', NULL, 632.60) END +VALUES ('smu', 'Somray', NULL, 6334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somray', [Definition] = NULL, [SortOrder] = 632.60 WHERE [Code] = 'smu' END +SET [Description] = 'Somray', [Definition] = NULL, [SortOrder] = 6334.00 WHERE [Code] = 'smu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kgt', 'Somyev', NULL, 632.70) END +VALUES ('kgt', 'Somyev', NULL, 6335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Somyev', [Definition] = NULL, [SortOrder] = 632.70 WHERE [Code] = 'kgt' END +SET [Description] = 'Somyev', [Definition] = NULL, [SortOrder] = 6335.00 WHERE [Code] = 'kgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysg', 'Sonaga', NULL, 632.80) END +VALUES ('ysg', 'Sonaga', NULL, 6336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonaga', [Definition] = NULL, [SortOrder] = 632.80 WHERE [Code] = 'ysg' END +SET [Description] = 'Sonaga', [Definition] = NULL, [SortOrder] = 6336.00 WHERE [Code] = 'ysg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shc', 'Sonde', NULL, 632.90) END +VALUES ('shc', 'Sonde', NULL, 6337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonde', [Definition] = NULL, [SortOrder] = 632.90 WHERE [Code] = 'shc' END +SET [Description] = 'Sonde', [Definition] = NULL, [SortOrder] = 6337.00 WHERE [Code] = 'shc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sop', 'Songe', NULL, 633.00) END +VALUES ('sop', 'Songe', NULL, 6338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songe', [Definition] = NULL, [SortOrder] = 633.00 WHERE [Code] = 'sop' END +SET [Description] = 'Songe', [Definition] = NULL, [SortOrder] = 6338.00 WHERE [Code] = 'sop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csj', 'Songlai Chin', NULL, 633.10) END +VALUES ('csj', 'Songlai Chin', NULL, 6339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songlai Chin', [Definition] = NULL, [SortOrder] = 633.10 WHERE [Code] = 'csj' END +SET [Description] = 'Songlai Chin', [Definition] = NULL, [SortOrder] = 6339.00 WHERE [Code] = 'csj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soo', 'Songo', NULL, 633.20) END +VALUES ('soo', 'Songo', NULL, 6340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songo', [Definition] = NULL, [SortOrder] = 633.20 WHERE [Code] = 'soo' END +SET [Description] = 'Songo', [Definition] = NULL, [SortOrder] = 6340.00 WHERE [Code] = 'soo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soe', 'Songomeno', NULL, 633.30) END +VALUES ('soe', 'Songomeno', NULL, 6341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songomeno', [Definition] = NULL, [SortOrder] = 633.30 WHERE [Code] = 'soe' END +SET [Description] = 'Songomeno', [Definition] = NULL, [SortOrder] = 6341.00 WHERE [Code] = 'soe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sod', 'Songoora', NULL, 633.40) END +VALUES ('sod', 'Songoora', NULL, 6342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Songoora', [Definition] = NULL, [SortOrder] = 633.40 WHERE [Code] = 'sod' END +SET [Description] = 'Songoora', [Definition] = NULL, [SortOrder] = 6342.00 WHERE [Code] = 'sod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soi', 'Sonha', NULL, 633.50) END +VALUES ('soi', 'Sonha', NULL, 6343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonha', [Definition] = NULL, [SortOrder] = 633.50 WHERE [Code] = 'soi' END +SET [Description] = 'Sonha', [Definition] = NULL, [SortOrder] = 6343.00 WHERE [Code] = 'soi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siq', 'Sonia', NULL, 633.60) END +VALUES ('siq', 'Sonia', NULL, 6344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonia', [Definition] = NULL, [SortOrder] = 633.60 WHERE [Code] = 'siq' END +SET [Description] = 'Sonia', [Definition] = NULL, [SortOrder] = 6344.00 WHERE [Code] = 'siq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snk', 'Soninke', NULL, 633.70) END +VALUES ('snk', 'Soninke', NULL, 6345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soninke', [Definition] = NULL, [SortOrder] = 633.70 WHERE [Code] = 'snk' END +SET [Description] = 'Soninke', [Definition] = NULL, [SortOrder] = 6345.00 WHERE [Code] = 'snk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sov', 'Sonsorol', NULL, 633.80) END +VALUES ('sov', 'Sonsorol', NULL, 6346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sonsorol', [Definition] = NULL, [SortOrder] = 633.80 WHERE [Code] = 'sov' END +SET [Description] = 'Sonsorol', [Definition] = NULL, [SortOrder] = 6346.00 WHERE [Code] = 'sov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teu', 'Soo', NULL, 633.90) END +VALUES ('teu', 'Soo', NULL, 6347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soo', [Definition] = NULL, [SortOrder] = 633.90 WHERE [Code] = 'teu' END +SET [Description] = 'Soo', [Definition] = NULL, [SortOrder] = 6347.00 WHERE [Code] = 'teu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urw', 'Sop', NULL, 634.00) END +VALUES ('urw', 'Sop', NULL, 6348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sop', [Definition] = NULL, [SortOrder] = 634.00 WHERE [Code] = 'urw' END +SET [Description] = 'Sop', [Definition] = NULL, [SortOrder] = 6348.00 WHERE [Code] = 'urw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqt', 'Soqotri', NULL, 634.10) END +VALUES ('sqt', 'Soqotri', NULL, 6349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soqotri', [Definition] = NULL, [SortOrder] = 634.10 WHERE [Code] = 'sqt' END +SET [Description] = 'Soqotri', [Definition] = NULL, [SortOrder] = 6349.00 WHERE [Code] = 'sqt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srb', 'Sora', NULL, 634.20) END +VALUES ('srb', 'Sora', NULL, 6350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sora', [Definition] = NULL, [SortOrder] = 634.20 WHERE [Code] = 'srb' END +SET [Description] = 'Sora', [Definition] = NULL, [SortOrder] = 6350.00 WHERE [Code] = 'srb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbh', 'Sori-Harengan', NULL, 634.30) END +VALUES ('sbh', 'Sori-Harengan', NULL, 6351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sori-Harengan', [Definition] = NULL, [SortOrder] = 634.30 WHERE [Code] = 'sbh' END +SET [Description] = 'Sori-Harengan', [Definition] = NULL, [SortOrder] = 6351.00 WHERE [Code] = 'sbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqo', 'Sorkhei', NULL, 634.40) END +VALUES ('sqo', 'Sorkhei', NULL, 6352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sorkhei', [Definition] = NULL, [SortOrder] = 634.40 WHERE [Code] = 'sqo' END +SET [Description] = 'Sorkhei', [Definition] = NULL, [SortOrder] = 6352.00 WHERE [Code] = 'sqo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxo', 'Sorothaptic', NULL, 634.50) END +VALUES ('sxo', 'Sorothaptic', NULL, 6353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sorothaptic', [Definition] = NULL, [SortOrder] = 634.50 WHERE [Code] = 'sxo' END +SET [Description] = 'Sorothaptic', [Definition] = NULL, [SortOrder] = 6353.00 WHERE [Code] = 'sxo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ays') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ays', 'Sorsogon Ayta', NULL, 634.60) END +VALUES ('ays', 'Sorsogon Ayta', NULL, 6354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sorsogon Ayta', [Definition] = NULL, [SortOrder] = 634.60 WHERE [Code] = 'ays' END +SET [Description] = 'Sorsogon Ayta', [Definition] = NULL, [SortOrder] = 6354.00 WHERE [Code] = 'ays' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdk', 'Sos Kundi', NULL, 634.70) END +VALUES ('sdk', 'Sos Kundi', NULL, 6355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sos Kundi', [Definition] = NULL, [SortOrder] = 634.70 WHERE [Code] = 'sdk' END +SET [Description] = 'Sos Kundi', [Definition] = NULL, [SortOrder] = 6355.00 WHERE [Code] = 'sdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krz', 'Sota Kanum', NULL, 634.80) END +VALUES ('krz', 'Sota Kanum', NULL, 6356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sota Kanum', [Definition] = NULL, [SortOrder] = 634.80 WHERE [Code] = 'krz' END +SET [Description] = 'Sota Kanum', [Definition] = NULL, [SortOrder] = 6356.00 WHERE [Code] = 'krz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqq', 'Sou', NULL, 634.90) END +VALUES ('sqq', 'Sou', NULL, 6357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sou', [Definition] = NULL, [SortOrder] = 634.90 WHERE [Code] = 'sqq' END +SET [Description] = 'Sou', [Definition] = NULL, [SortOrder] = 6357.00 WHERE [Code] = 'sqq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlt', 'Sou Nama', NULL, 635.00) END +VALUES ('tlt', 'Sou Nama', NULL, 6358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sou Nama', [Definition] = NULL, [SortOrder] = 635.00 WHERE [Code] = 'tlt' END +SET [Description] = 'Sou Nama', [Definition] = NULL, [SortOrder] = 6358.00 WHERE [Code] = 'tlt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wha', 'Sou Upaa', NULL, 635.10) END +VALUES ('wha', 'Sou Upaa', NULL, 6359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sou Upaa', [Definition] = NULL, [SortOrder] = 635.10 WHERE [Code] = 'wha' END +SET [Description] = 'Sou Upaa', [Definition] = NULL, [SortOrder] = 6359.00 WHERE [Code] = 'wha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sfs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sfs', 'South African Sign Language', NULL, 635.20) END +VALUES ('sfs', 'South African Sign Language', NULL, 6360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South African Sign Language', [Definition] = NULL, [SortOrder] = 635.20 WHERE [Code] = 'sfs' END +SET [Description] = 'South African Sign Language', [Definition] = NULL, [SortOrder] = 6360.00 WHERE [Code] = 'sfs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aws') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aws', 'South Awyu', NULL, 635.30) END +VALUES ('aws', 'South Awyu', NULL, 6361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Awyu', [Definition] = NULL, [SortOrder] = 635.30 WHERE [Code] = 'aws' END +SET [Description] = 'South Awyu', [Definition] = NULL, [SortOrder] = 6361.00 WHERE [Code] = 'aws' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azb', 'South Azerbaijani', NULL, 635.40) END +VALUES ('azb', 'South Azerbaijani', NULL, 6362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Azerbaijani', [Definition] = NULL, [SortOrder] = 635.40 WHERE [Code] = 'azb' END +SET [Description] = 'South Azerbaijani', [Definition] = NULL, [SortOrder] = 6362.00 WHERE [Code] = 'azb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quh', 'South Bolivian Quechua', NULL, 635.50) END +VALUES ('quh', 'South Bolivian Quechua', NULL, 6363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Bolivian Quechua', [Definition] = NULL, [SortOrder] = 635.50 WHERE [Code] = 'quh' END +SET [Description] = 'South Bolivian Quechua', [Definition] = NULL, [SortOrder] = 6363.00 WHERE [Code] = 'quh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lnl', 'South Central Banda', NULL, 635.60) END +VALUES ('lnl', 'South Central Banda', NULL, 6364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Central Banda', [Definition] = NULL, [SortOrder] = 635.60 WHERE [Code] = 'lnl' END +SET [Description] = 'South Central Banda', [Definition] = NULL, [SortOrder] = 6364.00 WHERE [Code] = 'lnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dib', 'South Central Dinka', NULL, 635.70) END +VALUES ('dib', 'South Central Dinka', NULL, 6365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Central Dinka', [Definition] = NULL, [SortOrder] = 635.70 WHERE [Code] = 'dib' END +SET [Description] = 'South Central Dinka', [Definition] = NULL, [SortOrder] = 6365.00 WHERE [Code] = 'dib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'erk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('erk', 'South Efate', NULL, 635.80) END +VALUES ('erk', 'South Efate', NULL, 6366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Efate', [Definition] = NULL, [SortOrder] = 635.80 WHERE [Code] = 'erk' END +SET [Description] = 'South Efate', [Definition] = NULL, [SortOrder] = 6366.00 WHERE [Code] = 'erk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fal', 'South Fali', NULL, 635.90) END +VALUES ('fal', 'South Fali', NULL, 6367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Fali', [Definition] = NULL, [SortOrder] = 635.90 WHERE [Code] = 'fal' END +SET [Description] = 'South Fali', [Definition] = NULL, [SortOrder] = 6367.00 WHERE [Code] = 'fal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giz', 'South Giziga', NULL, 636.00) END +VALUES ('giz', 'South Giziga', NULL, 6368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Giziga', [Definition] = NULL, [SortOrder] = 636.00 WHERE [Code] = 'giz' END +SET [Description] = 'South Giziga', [Definition] = NULL, [SortOrder] = 6368.00 WHERE [Code] = 'giz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmf', 'South Lembata', NULL, 636.10) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Lembata', [Definition] = NULL, [SortOrder] = 636.10 WHERE [Code] = 'lmf' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ajp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ajp', 'South Levantine Arabic', NULL, 636.20) END +VALUES ('lmf', 'South Lembata', NULL, 6369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Levantine Arabic', [Definition] = NULL, [SortOrder] = 636.20 WHERE [Code] = 'ajp' END +SET [Description] = 'South Lembata', [Definition] = NULL, [SortOrder] = 6369.00 WHERE [Code] = 'lmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqm', 'South Marquesan', NULL, 636.30) END +VALUES ('mqm', 'South Marquesan', NULL, 6370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Marquesan', [Definition] = NULL, [SortOrder] = 636.30 WHERE [Code] = 'mqm' END +SET [Description] = 'South Marquesan', [Definition] = NULL, [SortOrder] = 6370.00 WHERE [Code] = 'mqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kts', 'South Muyu', NULL, 636.40) END +VALUES ('kts', 'South Muyu', NULL, 6371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Muyu', [Definition] = NULL, [SortOrder] = 636.40 WHERE [Code] = 'kts' END +SET [Description] = 'South Muyu', [Definition] = NULL, [SortOrder] = 6371.00 WHERE [Code] = 'kts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbl', 'South Ndebele', NULL, 636.50) END +VALUES ('nbl', 'South Ndebele', NULL, 6372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Ndebele', [Definition] = NULL, [SortOrder] = 636.50 WHERE [Code] = 'nbl' END +SET [Description] = 'South Ndebele', [Definition] = NULL, [SortOrder] = 6372.00 WHERE [Code] = 'nbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nxl', 'South Nuaulu', NULL, 636.60) END +VALUES ('nxl', 'South Nuaulu', NULL, 6373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Nuaulu', [Definition] = NULL, [SortOrder] = 636.60 WHERE [Code] = 'nxl' END +SET [Description] = 'South Nuaulu', [Definition] = NULL, [SortOrder] = 6373.00 WHERE [Code] = 'nxl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spx', 'South Picene', NULL, 636.70) END +VALUES ('spx', 'South Picene', NULL, 6374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Picene', [Definition] = NULL, [SortOrder] = 636.70 WHERE [Code] = 'spx' END +SET [Description] = 'South Picene', [Definition] = NULL, [SortOrder] = 6374.00 WHERE [Code] = 'spx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsl', 'South Slavey', NULL, 636.80) END +VALUES ('xsl', 'South Slavey', NULL, 6375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Slavey', [Definition] = NULL, [SortOrder] = 636.80 WHERE [Code] = 'xsl' END +SET [Description] = 'South Slavey', [Definition] = NULL, [SortOrder] = 6375.00 WHERE [Code] = 'xsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omw', 'South Tairora', NULL, 636.90) END +VALUES ('omw', 'South Tairora', NULL, 6376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Tairora', [Definition] = NULL, [SortOrder] = 636.90 WHERE [Code] = 'omw' END +SET [Description] = 'South Tairora', [Definition] = NULL, [SortOrder] = 6376.00 WHERE [Code] = 'omw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpy', 'South Ucayali Ashéninka', NULL, 637.00) END +VALUES ('cpy', 'South Ucayali Ashéninka', NULL, 6377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Ucayali Ashéninka', [Definition] = NULL, [SortOrder] = 637.00 WHERE [Code] = 'cpy' END +SET [Description] = 'South Ucayali Ashéninka', [Definition] = NULL, [SortOrder] = 6377.00 WHERE [Code] = 'cpy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mcy', 'South Watut', NULL, 637.10) END +VALUES ('mcy', 'South Watut', NULL, 6378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South Watut', [Definition] = NULL, [SortOrder] = 637.10 WHERE [Code] = 'mcy' END +SET [Description] = 'South Watut', [Definition] = NULL, [SortOrder] = 6378.00 WHERE [Code] = 'mcy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sns', 'South West Bay', NULL, 637.20) END +VALUES ('sns', 'South West Bay', NULL, 6379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'South West Bay', [Definition] = NULL, [SortOrder] = 637.20 WHERE [Code] = 'sns' END +SET [Description] = 'South West Bay', [Definition] = NULL, [SortOrder] = 6379.00 WHERE [Code] = 'sns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvk', 'Southeast Ambrym', NULL, 637.30) END +VALUES ('tvk', 'Southeast Ambrym', NULL, 6380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Ambrym', [Definition] = NULL, [SortOrder] = 637.30 WHERE [Code] = 'tvk' END +SET [Description] = 'Southeast Ambrym', [Definition] = NULL, [SortOrder] = 6380.00 WHERE [Code] = 'tvk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vbb', 'Southeast Babar', NULL, 637.40) END +VALUES ('vbb', 'Southeast Babar', NULL, 6381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Babar', [Definition] = NULL, [SortOrder] = 637.40 WHERE [Code] = 'vbb' END +SET [Description] = 'Southeast Babar', [Definition] = NULL, [SortOrder] = 6381.00 WHERE [Code] = 'vbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ijs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ijs', 'Southeast Ijo', NULL, 637.50) END +VALUES ('ijs', 'Southeast Ijo', NULL, 6382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Ijo', [Definition] = NULL, [SortOrder] = 637.50 WHERE [Code] = 'ijs' END +SET [Description] = 'Southeast Ijo', [Definition] = NULL, [SortOrder] = 6382.00 WHERE [Code] = 'ijs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psi', 'Southeast Pashai', NULL, 637.60) END +VALUES ('psi', 'Southeast Pashai', NULL, 6383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Pashai', [Definition] = NULL, [SortOrder] = 637.60 WHERE [Code] = 'psi' END +SET [Description] = 'Southeast Pashai', [Definition] = NULL, [SortOrder] = 6383.00 WHERE [Code] = 'psi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpf', 'Southeast Tasmanian', NULL, 637.70) END +VALUES ('xpf', 'Southeast Tasmanian', NULL, 6384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeast Tasmanian', [Definition] = NULL, [SortOrder] = 637.70 WHERE [Code] = 'xpf' END +SET [Description] = 'Southeast Tasmanian', [Definition] = NULL, [SortOrder] = 6384.00 WHERE [Code] = 'xpf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dks', 'Southeastern Dinka', NULL, 637.80) END +VALUES ('dks', 'Southeastern Dinka', NULL, 6385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Dinka', [Definition] = NULL, [SortOrder] = 637.80 WHERE [Code] = 'dks' END +SET [Description] = 'Southeastern Dinka', [Definition] = NULL, [SortOrder] = 6385.00 WHERE [Code] = 'dks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpd', 'Southeastern Ixtlán Zapotec', NULL, 637.90) END +VALUES ('zpd', 'Southeastern Ixtlán Zapotec', NULL, 6386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Ixtlán Zapotec', [Definition] = NULL, [SortOrder] = 637.90 WHERE [Code] = 'zpd' END +SET [Description] = 'Southeastern Ixtlán Zapotec', [Definition] = NULL, [SortOrder] = 6386.00 WHERE [Code] = 'zpd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nit', 'Southeastern Kolami', NULL, 638.00) END +VALUES ('nit', 'Southeastern Kolami', NULL, 6387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Kolami', [Definition] = NULL, [SortOrder] = 638.00 WHERE [Code] = 'nit' END +SET [Description] = 'Southeastern Kolami', [Definition] = NULL, [SortOrder] = 6387.00 WHERE [Code] = 'nit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxy', 'Southeastern Nochixtlán Mixtec', NULL, 638.10) END +VALUES ('mxy', 'Southeastern Nochixtlán Mixtec', NULL, 6388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Nochixtlán Mixtec', [Definition] = NULL, [SortOrder] = 638.10 WHERE [Code] = 'mxy' END +SET [Description] = 'Southeastern Nochixtlán Mixtec', [Definition] = NULL, [SortOrder] = 6388.00 WHERE [Code] = 'mxy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pom', 'Southeastern Pomo', NULL, 638.20) END +VALUES ('pom', 'Southeastern Pomo', NULL, 6389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Pomo', [Definition] = NULL, [SortOrder] = 638.20 WHERE [Code] = 'pom' END +SET [Description] = 'Southeastern Pomo', [Definition] = NULL, [SortOrder] = 6389.00 WHERE [Code] = 'pom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'npl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('npl', 'Southeastern Puebla Nahuatl', NULL, 638.30) END +VALUES ('npl', 'Southeastern Puebla Nahuatl', NULL, 6390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 638.30 WHERE [Code] = 'npl' END +SET [Description] = 'Southeastern Puebla Nahuatl', [Definition] = NULL, [SortOrder] = 6390.00 WHERE [Code] = 'npl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcu', 'Southeastern Tarahumara', NULL, 638.40) END +VALUES ('tcu', 'Southeastern Tarahumara', NULL, 6391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Tarahumara', [Definition] = NULL, [SortOrder] = 638.40 WHERE [Code] = 'tcu' END +SET [Description] = 'Southeastern Tarahumara', [Definition] = NULL, [SortOrder] = 6391.00 WHERE [Code] = 'tcu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stp', 'Southeastern Tepehuan', NULL, 638.50) END +VALUES ('stp', 'Southeastern Tepehuan', NULL, 6392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southeastern Tepehuan', [Definition] = NULL, [SortOrder] = 638.50 WHERE [Code] = 'stp' END +SET [Description] = 'Southeastern Tepehuan', [Definition] = NULL, [SortOrder] = 6392.00 WHERE [Code] = 'stp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'agy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('agy', 'Southern Alta', NULL, 638.60) END +VALUES ('agy', 'Southern Alta', NULL, 6393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Alta', [Definition] = NULL, [SortOrder] = 638.60 WHERE [Code] = 'agy' END +SET [Description] = 'Southern Alta', [Definition] = NULL, [SortOrder] = 6393.00 WHERE [Code] = 'agy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'alt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('alt', 'Southern Altai', NULL, 638.70) END +VALUES ('alt', 'Southern Altai', NULL, 6394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Altai', [Definition] = NULL, [SortOrder] = 638.70 WHERE [Code] = 'alt' END +SET [Description] = 'Southern Altai', [Definition] = NULL, [SortOrder] = 6394.00 WHERE [Code] = 'alt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ams') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ams', 'Southern Amami-Oshima', NULL, 638.80) END +VALUES ('ams', 'Southern Amami-Oshima', NULL, 6395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Amami-Oshima', [Definition] = NULL, [SortOrder] = 638.80 WHERE [Code] = 'ams' END +SET [Description] = 'Southern Amami-Oshima', [Definition] = NULL, [SortOrder] = 6395.00 WHERE [Code] = 'ams' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ayc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ayc', 'Southern Aymara', NULL, 638.90) END +VALUES ('ayc', 'Southern Aymara', NULL, 6396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Aymara', [Definition] = NULL, [SortOrder] = 638.90 WHERE [Code] = 'ayc' END +SET [Description] = 'Southern Aymara', [Definition] = NULL, [SortOrder] = 6396.00 WHERE [Code] = 'ayc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bfs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bfs', 'Southern Bai', NULL, 639.00) END +VALUES ('bfs', 'Southern Bai', NULL, 6397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Bai', [Definition] = NULL, [SortOrder] = 639.00 WHERE [Code] = 'bfs' END +SET [Description] = 'Southern Bai', [Definition] = NULL, [SortOrder] = 6397.00 WHERE [Code] = 'bfs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bcc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bcc', 'Southern Balochi', NULL, 639.10) END +VALUES ('bcc', 'Southern Balochi', NULL, 6398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Balochi', [Definition] = NULL, [SortOrder] = 639.10 WHERE [Code] = 'bcc' END +SET [Description] = 'Southern Balochi', [Definition] = NULL, [SortOrder] = 6398.00 WHERE [Code] = 'bcc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bzc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bzc', 'Southern Betsimisaraka Malagasy', NULL, 639.20) END +VALUES ('bzc', 'Southern Betsimisaraka Malagasy', NULL, 6399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Betsimisaraka Malagasy', [Definition] = NULL, [SortOrder] = 639.20 WHERE [Code] = 'bzc' END +SET [Description] = 'Southern Betsimisaraka Malagasy', [Definition] = NULL, [SortOrder] = 6399.00 WHERE [Code] = 'bzc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtw', 'Southern Binukidnon', NULL, 639.30) END +VALUES ('mtw', 'Southern Binukidnon', NULL, 6400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Binukidnon', [Definition] = NULL, [SortOrder] = 639.30 WHERE [Code] = 'mtw' END +SET [Description] = 'Southern Binukidnon', [Definition] = NULL, [SortOrder] = 6400.00 WHERE [Code] = 'mtw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'biv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('biv', 'Southern Birifor', NULL, 639.40) END +VALUES ('biv', 'Southern Birifor', NULL, 6401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Birifor', [Definition] = NULL, [SortOrder] = 639.40 WHERE [Code] = 'biv' END +SET [Description] = 'Southern Birifor', [Definition] = NULL, [SortOrder] = 6401.00 WHERE [Code] = 'biv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwq', 'Southern Bobo Madaré', NULL, 639.50) END +VALUES ('bwq', 'Southern Bobo Madaré', NULL, 6402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Bobo Madaré', [Definition] = NULL, [SortOrder] = 639.50 WHERE [Code] = 'bwq' END +SET [Description] = 'Southern Bobo Madaré', [Definition] = NULL, [SortOrder] = 6402.00 WHERE [Code] = 'bwq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'obk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('obk', 'Southern Bontok', NULL, 639.60) END +VALUES ('obk', 'Southern Bontok', NULL, 6403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Bontok', [Definition] = NULL, [SortOrder] = 639.60 WHERE [Code] = 'obk' END +SET [Description] = 'Southern Bontok', [Definition] = NULL, [SortOrder] = 6403.00 WHERE [Code] = 'obk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'caf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('caf', 'Southern Carrier', NULL, 639.70) END +VALUES ('caf', 'Southern Carrier', NULL, 6404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Carrier', [Definition] = NULL, [SortOrder] = 639.70 WHERE [Code] = 'caf' END +SET [Description] = 'Southern Carrier', [Definition] = NULL, [SortOrder] = 6404.00 WHERE [Code] = 'caf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bln', 'Southern Catanduanes Bikol', NULL, 639.80) END +VALUES ('bln', 'Southern Catanduanes Bikol', NULL, 6405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Catanduanes Bikol', [Definition] = NULL, [SortOrder] = 639.80 WHERE [Code] = 'bln' END +SET [Description] = 'Southern Catanduanes Bikol', [Definition] = NULL, [SortOrder] = 6405.00 WHERE [Code] = 'bln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxo', 'Southern Conchucos Ancash Quechua', NULL, 639.90) END +VALUES ('qxo', 'Southern Conchucos Ancash Quechua', NULL, 6406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Conchucos Ancash Quechua', [Definition] = NULL, [SortOrder] = 639.90 WHERE [Code] = 'qxo' END +SET [Description] = 'Southern Conchucos Ancash Quechua', [Definition] = NULL, [SortOrder] = 6406.00 WHERE [Code] = 'qxo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dga', 'Southern Dagaare', NULL, 640.00) END +VALUES ('dga', 'Southern Dagaare', NULL, 6407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Dagaare', [Definition] = NULL, [SortOrder] = 640.00 WHERE [Code] = 'dga' END +SET [Description] = 'Southern Dagaare', [Definition] = NULL, [SortOrder] = 6407.00 WHERE [Code] = 'dga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmc', 'Southern Dong', NULL, 640.10) END +VALUES ('kmc', 'Southern Dong', NULL, 6408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Dong', [Definition] = NULL, [SortOrder] = 640.10 WHERE [Code] = 'kmc' END +SET [Description] = 'Southern Dong', [Definition] = NULL, [SortOrder] = 6408.00 WHERE [Code] = 'kmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'crj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('crj', 'Southern East Cree', NULL, 640.20) END +VALUES ('crj', 'Southern East Cree', NULL, 6409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern East Cree', [Definition] = NULL, [SortOrder] = 640.20 WHERE [Code] = 'crj' END +SET [Description] = 'Southern East Cree', [Definition] = NULL, [SortOrder] = 6409.00 WHERE [Code] = 'crj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ghe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ghe', 'Southern Ghale', NULL, 640.30) END +VALUES ('ghe', 'Southern Ghale', NULL, 6410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ghale', [Definition] = NULL, [SortOrder] = 640.30 WHERE [Code] = 'ghe' END +SET [Description] = 'Southern Ghale', [Definition] = NULL, [SortOrder] = 6410.00 WHERE [Code] = 'ghe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grj', 'Southern Grebo', NULL, 640.40) END +VALUES ('grj', 'Southern Grebo', NULL, 6411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Grebo', [Definition] = NULL, [SortOrder] = 640.40 WHERE [Code] = 'grj' END +SET [Description] = 'Southern Grebo', [Definition] = NULL, [SortOrder] = 6411.00 WHERE [Code] = 'grj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmy', 'Southern Guiyang Hmong', NULL, 640.50) END +VALUES ('hmy', 'Southern Guiyang Hmong', NULL, 6412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 640.50 WHERE [Code] = 'hmy' END +SET [Description] = 'Southern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 6412.00 WHERE [Code] = 'hmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hax', 'Southern Haida', NULL, 640.60) END +VALUES ('hax', 'Southern Haida', NULL, 6413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Haida', [Definition] = NULL, [SortOrder] = 640.60 WHERE [Code] = 'hax' END +SET [Description] = 'Southern Haida', [Definition] = NULL, [SortOrder] = 6413.00 WHERE [Code] = 'hax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hnd', 'Southern Hindko', NULL, 640.70) END +VALUES ('hnd', 'Southern Hindko', NULL, 6414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Hindko', [Definition] = NULL, [SortOrder] = 640.70 WHERE [Code] = 'hnd' END +SET [Description] = 'Southern Hindko', [Definition] = NULL, [SortOrder] = 6414.00 WHERE [Code] = 'hnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxk', 'Southern Kalapuya', NULL, 640.80) END +VALUES ('sxk', 'Southern Kalapuya', NULL, 6415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kalapuya', [Definition] = NULL, [SortOrder] = 640.80 WHERE [Code] = 'sxk' END +SET [Description] = 'Southern Kalapuya', [Definition] = NULL, [SortOrder] = 6415.00 WHERE [Code] = 'sxk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksc', 'Southern Kalinga', NULL, 640.90) END +VALUES ('ksc', 'Southern Kalinga', NULL, 6416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kalinga', [Definition] = NULL, [SortOrder] = 640.90 WHERE [Code] = 'ksc' END +SET [Description] = 'Southern Kalinga', [Definition] = NULL, [SortOrder] = 6416.00 WHERE [Code] = 'ksc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sct', 'Southern Katang', NULL, 641.00) END +VALUES ('sct', 'Southern Katang', NULL, 6417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Katang', [Definition] = NULL, [SortOrder] = 641.00 WHERE [Code] = 'sct' END +SET [Description] = 'Southern Katang', [Definition] = NULL, [SortOrder] = 6417.00 WHERE [Code] = 'sct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kss', 'Southern Kisi', NULL, 641.10) END +VALUES ('kss', 'Southern Kisi', NULL, 6418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kisi', [Definition] = NULL, [SortOrder] = 641.10 WHERE [Code] = 'kss' END +SET [Description] = 'Southern Kisi', [Definition] = NULL, [SortOrder] = 6418.00 WHERE [Code] = 'kss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjd', 'Southern Kiwai', NULL, 641.20) END +VALUES ('kjd', 'Southern Kiwai', NULL, 6419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kiwai', [Definition] = NULL, [SortOrder] = 641.20 WHERE [Code] = 'kjd' END +SET [Description] = 'Southern Kiwai', [Definition] = NULL, [SortOrder] = 6419.00 WHERE [Code] = 'kjd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdh', 'Southern Kurdish', NULL, 641.30) END +VALUES ('sdh', 'Southern Kurdish', NULL, 6420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Kurdish', [Definition] = NULL, [SortOrder] = 641.30 WHERE [Code] = 'sdh' END +SET [Description] = 'Southern Kurdish', [Definition] = NULL, [SortOrder] = 6420.00 WHERE [Code] = 'sdh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysp', 'Southern Lolopo', NULL, 641.40) END +VALUES ('ysp', 'Southern Lolopo', NULL, 6421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Lolopo', [Definition] = NULL, [SortOrder] = 641.40 WHERE [Code] = 'ysp' END +SET [Description] = 'Southern Lolopo', [Definition] = NULL, [SortOrder] = 6421.00 WHERE [Code] = 'ysp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'luz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('luz', 'Southern Luri', NULL, 641.50) END +VALUES ('luz', 'Southern Luri', NULL, 6422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Luri', [Definition] = NULL, [SortOrder] = 641.50 WHERE [Code] = 'luz' END +SET [Description] = 'Southern Luri', [Definition] = NULL, [SortOrder] = 6422.00 WHERE [Code] = 'luz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'snm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('snm', 'Southern Ma''di', NULL, 641.60) END +VALUES ('snm', 'Southern Ma''di', NULL, 6423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ma''di', [Definition] = NULL, [SortOrder] = 641.60 WHERE [Code] = 'snm' END +SET [Description] = 'Southern Ma''di', [Definition] = NULL, [SortOrder] = 6423.00 WHERE [Code] = 'snm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hma', 'Southern Mashan Hmong', NULL, 641.70) END +VALUES ('hma', 'Southern Mashan Hmong', NULL, 6424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Mashan Hmong', [Definition] = NULL, [SortOrder] = 641.70 WHERE [Code] = 'hma' END +SET [Description] = 'Southern Mashan Hmong', [Definition] = NULL, [SortOrder] = 6424.00 WHERE [Code] = 'hma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnn', 'Southern Mnong', NULL, 641.80) END +VALUES ('mnn', 'Southern Mnong', NULL, 6425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Mnong', [Definition] = NULL, [SortOrder] = 641.80 WHERE [Code] = 'mnn' END +SET [Description] = 'Southern Mnong', [Definition] = NULL, [SortOrder] = 6425.00 WHERE [Code] = 'mnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymc', 'Southern Muji', NULL, 641.90) END +VALUES ('ymc', 'Southern Muji', NULL, 6426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Muji', [Definition] = NULL, [SortOrder] = 641.90 WHERE [Code] = 'ymc' END +SET [Description] = 'Southern Muji', [Definition] = NULL, [SortOrder] = 6426.00 WHERE [Code] = 'ymc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nqg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nqg', 'Southern Nago', NULL, 642.00) END +VALUES ('nqg', 'Southern Nago', NULL, 6427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nago', [Definition] = NULL, [SortOrder] = 642.00 WHERE [Code] = 'nqg' END +SET [Description] = 'Southern Nago', [Definition] = NULL, [SortOrder] = 6427.00 WHERE [Code] = 'nqg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nab', 'Southern Nambikuára', NULL, 642.10) END +VALUES ('nab', 'Southern Nambikuára', NULL, 6428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nambikuára', [Definition] = NULL, [SortOrder] = 642.10 WHERE [Code] = 'nab' END +SET [Description] = 'Southern Nambikuára', [Definition] = NULL, [SortOrder] = 6428.00 WHERE [Code] = 'nab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nbw', 'Southern Ngbandi', NULL, 642.20) END +VALUES ('nbw', 'Southern Ngbandi', NULL, 6429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ngbandi', [Definition] = NULL, [SortOrder] = 642.20 WHERE [Code] = 'nbw' END +SET [Description] = 'Southern Ngbandi', [Definition] = NULL, [SortOrder] = 6429.00 WHERE [Code] = 'nbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nik', 'Southern Nicobarese', NULL, 642.30) END +VALUES ('nik', 'Southern Nicobarese', NULL, 6430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nicobarese', [Definition] = NULL, [SortOrder] = 642.30 WHERE [Code] = 'nik' END +SET [Description] = 'Southern Nicobarese', [Definition] = NULL, [SortOrder] = 6430.00 WHERE [Code] = 'nik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsd', 'Southern Nisu', NULL, 642.40) END +VALUES ('nsd', 'Southern Nisu', NULL, 6431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nisu', [Definition] = NULL, [SortOrder] = 642.40 WHERE [Code] = 'nsd' END +SET [Description] = 'Southern Nisu', [Definition] = NULL, [SortOrder] = 6431.00 WHERE [Code] = 'nsd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnw', 'Southern Nuni', NULL, 642.50) END +VALUES ('nnw', 'Southern Nuni', NULL, 6432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Nuni', [Definition] = NULL, [SortOrder] = 642.50 WHERE [Code] = 'nnw' END +SET [Description] = 'Southern Nuni', [Definition] = NULL, [SortOrder] = 6432.00 WHERE [Code] = 'nnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'css') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('css', 'Southern Ohlone', NULL, 642.60) END +VALUES ('css', 'Southern Ohlone', NULL, 6433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ohlone', [Definition] = NULL, [SortOrder] = 642.60 WHERE [Code] = 'css' END +SET [Description] = 'Southern Ohlone', [Definition] = NULL, [SortOrder] = 6433.00 WHERE [Code] = 'css' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'osu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('osu', 'Southern One', NULL, 642.70) END +VALUES ('osu', 'Southern One', NULL, 6434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern One', [Definition] = NULL, [SortOrder] = 642.70 WHERE [Code] = 'osu' END +SET [Description] = 'Southern One', [Definition] = NULL, [SortOrder] = 6434.00 WHERE [Code] = 'osu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmz', 'Southern Pame', NULL, 642.80) END +VALUES ('pmz', 'Southern Pame', NULL, 6435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pame', [Definition] = NULL, [SortOrder] = 642.80 WHERE [Code] = 'pmz' END +SET [Description] = 'Southern Pame', [Definition] = NULL, [SortOrder] = 6435.00 WHERE [Code] = 'pmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pbt', 'Southern Pashto', NULL, 642.90) END +VALUES ('pbt', 'Southern Pashto', NULL, 6436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pashto', [Definition] = NULL, [SortOrder] = 642.90 WHERE [Code] = 'pbt' END +SET [Description] = 'Southern Pashto', [Definition] = NULL, [SortOrder] = 6436.00 WHERE [Code] = 'pbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qup', 'Southern Pastaza Quechua', NULL, 643.00) END +VALUES ('qup', 'Southern Pastaza Quechua', NULL, 6437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pastaza Quechua', [Definition] = NULL, [SortOrder] = 643.00 WHERE [Code] = 'qup' END +SET [Description] = 'Southern Pastaza Quechua', [Definition] = NULL, [SortOrder] = 6437.00 WHERE [Code] = 'qup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csp', 'Southern Ping Chinese', NULL, 643.10) END +VALUES ('csp', 'Southern Ping Chinese', NULL, 6438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Ping Chinese', [Definition] = NULL, [SortOrder] = 643.10 WHERE [Code] = 'csp' END +SET [Description] = 'Southern Ping Chinese', [Definition] = NULL, [SortOrder] = 6438.00 WHERE [Code] = 'csp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'peq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('peq', 'Southern Pomo', NULL, 643.20) END +VALUES ('peq', 'Southern Pomo', NULL, 6439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pomo', [Definition] = NULL, [SortOrder] = 643.20 WHERE [Code] = 'peq' END +SET [Description] = 'Southern Pomo', [Definition] = NULL, [SortOrder] = 6439.00 WHERE [Code] = 'peq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mit', 'Southern Puebla Mixtec', NULL, 643.30) END +VALUES ('mit', 'Southern Puebla Mixtec', NULL, 6440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Puebla Mixtec', [Definition] = NULL, [SortOrder] = 643.30 WHERE [Code] = 'mit' END +SET [Description] = 'Southern Puebla Mixtec', [Definition] = NULL, [SortOrder] = 6440.00 WHERE [Code] = 'mit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slh', 'Southern Puget Sound Salish', NULL, 643.40) END +VALUES ('slh', 'Southern Puget Sound Salish', NULL, 6441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Puget Sound Salish', [Definition] = NULL, [SortOrder] = 643.40 WHERE [Code] = 'slh' END +SET [Description] = 'Southern Puget Sound Salish', [Definition] = NULL, [SortOrder] = 6441.00 WHERE [Code] = 'slh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmj', 'Southern Pumi', NULL, 643.50) END +VALUES ('pmj', 'Southern Pumi', NULL, 6442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Pumi', [Definition] = NULL, [SortOrder] = 643.50 WHERE [Code] = 'pmj' END +SET [Description] = 'Southern Pumi', [Definition] = NULL, [SortOrder] = 6442.00 WHERE [Code] = 'pmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hms', 'Southern Qiandong Miao', NULL, 643.60) END +VALUES ('hms', 'Southern Qiandong Miao', NULL, 6443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Qiandong Miao', [Definition] = NULL, [SortOrder] = 643.60 WHERE [Code] = 'hms' END +SET [Description] = 'Southern Qiandong Miao', [Definition] = NULL, [SortOrder] = 6443.00 WHERE [Code] = 'hms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qxs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qxs', 'Southern Qiang', NULL, 643.70) END +VALUES ('qxs', 'Southern Qiang', NULL, 6444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Qiang', [Definition] = NULL, [SortOrder] = 643.70 WHERE [Code] = 'qxs' END +SET [Description] = 'Southern Qiang', [Definition] = NULL, [SortOrder] = 6444.00 WHERE [Code] = 'qxs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nre', 'Southern Rengma Naga', NULL, 643.80) END +VALUES ('nre', 'Southern Rengma Naga', NULL, 6445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Rengma Naga', [Definition] = NULL, [SortOrder] = 643.80 WHERE [Code] = 'nre' END +SET [Description] = 'Southern Rengma Naga', [Definition] = NULL, [SortOrder] = 6445.00 WHERE [Code] = 'nre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsr', 'Southern Rincon Zapotec', NULL, 643.90) END +VALUES ('zsr', 'Southern Rincon Zapotec', NULL, 6446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Rincon Zapotec', [Definition] = NULL, [SortOrder] = 643.90 WHERE [Code] = 'zsr' END +SET [Description] = 'Southern Rincon Zapotec', [Definition] = NULL, [SortOrder] = 6446.00 WHERE [Code] = 'zsr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rgs', 'Southern Roglai', NULL, 644.00) END +VALUES ('rgs', 'Southern Roglai', NULL, 6447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Roglai', [Definition] = NULL, [SortOrder] = 644.00 WHERE [Code] = 'rgs' END +SET [Description] = 'Southern Roglai', [Definition] = NULL, [SortOrder] = 6447.00 WHERE [Code] = 'rgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssb', 'Southern Sama', NULL, 644.10) END +VALUES ('ssb', 'Southern Sama', NULL, 6448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sama', [Definition] = NULL, [SortOrder] = 644.10 WHERE [Code] = 'ssb' END +SET [Description] = 'Southern Sama', [Definition] = NULL, [SortOrder] = 6448.00 WHERE [Code] = 'ssb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sma', 'Southern Sami', NULL, 644.20) END +VALUES ('sma', 'Southern Sami', NULL, 6449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sami', [Definition] = NULL, [SortOrder] = 644.20 WHERE [Code] = 'sma' END +SET [Description] = 'Southern Sami', [Definition] = NULL, [SortOrder] = 6449.00 WHERE [Code] = 'sma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbd', 'Southern Samo', NULL, 644.30) END +VALUES ('sbd', 'Southern Samo', NULL, 6450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Samo', [Definition] = NULL, [SortOrder] = 644.30 WHERE [Code] = 'sbd' END +SET [Description] = 'Southern Samo', [Definition] = NULL, [SortOrder] = 6450.00 WHERE [Code] = 'sbd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'skd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('skd', 'Southern Sierra Miwok', NULL, 644.40) END +VALUES ('skd', 'Southern Sierra Miwok', NULL, 6451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sierra Miwok', [Definition] = NULL, [SortOrder] = 644.40 WHERE [Code] = 'skd' END +SET [Description] = 'Southern Sierra Miwok', [Definition] = NULL, [SortOrder] = 6451.00 WHERE [Code] = 'skd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srv', 'Southern Sorsoganon', NULL, 644.50) END +VALUES ('srv', 'Southern Sorsoganon', NULL, 6452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sorsoganon', [Definition] = NULL, [SortOrder] = 644.50 WHERE [Code] = 'srv' END +SET [Description] = 'Southern Sorsoganon', [Definition] = NULL, [SortOrder] = 6452.00 WHERE [Code] = 'srv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sot', 'Southern Sotho', NULL, 644.60) END +VALUES ('sot', 'Southern Sotho', NULL, 6453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Sotho', [Definition] = NULL, [SortOrder] = 644.60 WHERE [Code] = 'sot' END +SET [Description] = 'Southern Sotho', [Definition] = NULL, [SortOrder] = 6453.00 WHERE [Code] = 'sot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'laa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('laa', 'Southern Subanen', NULL, 644.70) END +VALUES ('laa', 'Southern Subanen', NULL, 6454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Subanen', [Definition] = NULL, [SortOrder] = 644.70 WHERE [Code] = 'laa' END +SET [Description] = 'Southern Subanen', [Definition] = NULL, [SortOrder] = 6454.00 WHERE [Code] = 'laa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sou', 'Southern Thai', NULL, 644.80) END +VALUES ('sou', 'Southern Thai', NULL, 6455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Thai', [Definition] = NULL, [SortOrder] = 644.80 WHERE [Code] = 'sou' END +SET [Description] = 'Southern Thai', [Definition] = NULL, [SortOrder] = 6455.00 WHERE [Code] = 'sou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'itd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('itd', 'Southern Tidung', NULL, 644.90) END +VALUES ('itd', 'Southern Tidung', NULL, 6456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Tidung', [Definition] = NULL, [SortOrder] = 644.90 WHERE [Code] = 'itd' END +SET [Description] = 'Southern Tidung', [Definition] = NULL, [SortOrder] = 6456.00 WHERE [Code] = 'itd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tix') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tix', 'Southern Tiwa', NULL, 645.00) END +VALUES ('tix', 'Southern Tiwa', NULL, 6457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Tiwa', [Definition] = NULL, [SortOrder] = 645.00 WHERE [Code] = 'tix' END +SET [Description] = 'Southern Tiwa', [Definition] = NULL, [SortOrder] = 6457.00 WHERE [Code] = 'tix' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wib', 'Southern Toussian', NULL, 645.10) END +VALUES ('wib', 'Southern Toussian', NULL, 6458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Toussian', [Definition] = NULL, [SortOrder] = 645.10 WHERE [Code] = 'wib' END +SET [Description] = 'Southern Toussian', [Definition] = NULL, [SortOrder] = 6458.00 WHERE [Code] = 'wib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjs', 'Southern Tujia', NULL, 645.20) END +VALUES ('tjs', 'Southern Tujia', NULL, 6459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Tujia', [Definition] = NULL, [SortOrder] = 645.20 WHERE [Code] = 'tjs' END +SET [Description] = 'Southern Tujia', [Definition] = NULL, [SortOrder] = 6459.00 WHERE [Code] = 'tjs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tce', 'Southern Tutchone', NULL, 645.30) END +VALUES ('tce', 'Southern Tutchone', NULL, 6460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Tutchone', [Definition] = NULL, [SortOrder] = 645.30 WHERE [Code] = 'tce' END +SET [Description] = 'Southern Tutchone', [Definition] = NULL, [SortOrder] = 6460.00 WHERE [Code] = 'tce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uzs', 'Southern Uzbek', NULL, 645.40) END +VALUES ('uzs', 'Southern Uzbek', NULL, 6461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Uzbek', [Definition] = NULL, [SortOrder] = 645.40 WHERE [Code] = 'uzs' END +SET [Description] = 'Southern Uzbek', [Definition] = NULL, [SortOrder] = 6461.00 WHERE [Code] = 'uzs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lrr', 'Southern Yamphu', NULL, 645.50) END +VALUES ('lrr', 'Southern Yamphu', NULL, 6462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Yamphu', [Definition] = NULL, [SortOrder] = 645.50 WHERE [Code] = 'lrr' END +SET [Description] = 'Southern Yamphu', [Definition] = NULL, [SortOrder] = 6462.00 WHERE [Code] = 'lrr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yux', 'Southern Yukaghir', NULL, 645.60) END +VALUES ('yux', 'Southern Yukaghir', NULL, 6463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southern Yukaghir', [Definition] = NULL, [SortOrder] = 645.60 WHERE [Code] = 'yux' END +SET [Description] = 'Southern Yukaghir', [Definition] = NULL, [SortOrder] = 6463.00 WHERE [Code] = 'yux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gso', 'Southwest Gbaya', NULL, 645.70) END +VALUES ('gso', 'Southwest Gbaya', NULL, 6464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwest Gbaya', [Definition] = NULL, [SortOrder] = 645.70 WHERE [Code] = 'gso' END +SET [Description] = 'Southwest Gbaya', [Definition] = NULL, [SortOrder] = 6464.00 WHERE [Code] = 'gso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'plv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('plv', 'Southwest Palawano', NULL, 645.80) END +VALUES ('plv', 'Southwest Palawano', NULL, 6465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwest Palawano', [Definition] = NULL, [SortOrder] = 645.80 WHERE [Code] = 'plv' END +SET [Description] = 'Southwest Palawano', [Definition] = NULL, [SortOrder] = 6465.00 WHERE [Code] = 'plv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'psh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('psh', 'Southwest Pashai', NULL, 645.90) END +VALUES ('psh', 'Southwest Pashai', NULL, 6466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwest Pashai', [Definition] = NULL, [SortOrder] = 645.90 WHERE [Code] = 'psh' END +SET [Description] = 'Southwest Pashai', [Definition] = NULL, [SortOrder] = 6466.00 WHERE [Code] = 'psh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nwi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nwi', 'Southwest Tanna', NULL, 646.00) END +VALUES ('nwi', 'Southwest Tanna', NULL, 6467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwest Tanna', [Definition] = NULL, [SortOrder] = 646.00 WHERE [Code] = 'nwi' END +SET [Description] = 'Southwest Tanna', [Definition] = NULL, [SortOrder] = 6467.00 WHERE [Code] = 'nwi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vbk', 'Southwestern Bontok', NULL, 646.10) END +VALUES ('vbk', 'Southwestern Bontok', NULL, 6468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Bontok', [Definition] = NULL, [SortOrder] = 646.10 WHERE [Code] = 'vbk' END +SET [Description] = 'Southwestern Bontok', [Definition] = NULL, [SortOrder] = 6468.00 WHERE [Code] = 'vbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dik', 'Southwestern Dinka', NULL, 646.20) END +VALUES ('dik', 'Southwestern Dinka', NULL, 6469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Dinka', [Definition] = NULL, [SortOrder] = 646.20 WHERE [Code] = 'dik' END +SET [Description] = 'Southwestern Dinka', [Definition] = NULL, [SortOrder] = 6469.00 WHERE [Code] = 'dik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fay', 'Southwestern Fars', NULL, 646.30) END +VALUES ('fay', 'Southwestern Fars', NULL, 6470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Fars', [Definition] = NULL, [SortOrder] = 646.30 WHERE [Code] = 'fay' END +SET [Description] = 'Southwestern Fars', [Definition] = NULL, [SortOrder] = 6470.00 WHERE [Code] = 'fay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmg', 'Southwestern Guiyang Hmong', NULL, 646.40) END +VALUES ('hmg', 'Southwestern Guiyang Hmong', NULL, 6471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 646.40 WHERE [Code] = 'hmg' END +SET [Description] = 'Southwestern Guiyang Hmong', [Definition] = NULL, [SortOrder] = 6471.00 WHERE [Code] = 'hmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmh', 'Southwestern Huishui Hmong', NULL, 646.50) END +VALUES ('hmh', 'Southwestern Huishui Hmong', NULL, 6472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Huishui Hmong', [Definition] = NULL, [SortOrder] = 646.50 WHERE [Code] = 'hmh' END +SET [Description] = 'Southwestern Huishui Hmong', [Definition] = NULL, [SortOrder] = 6472.00 WHERE [Code] = 'hmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsv', 'Southwestern Nisu', NULL, 646.60) END +VALUES ('nsv', 'Southwestern Nisu', NULL, 6473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Nisu', [Definition] = NULL, [SortOrder] = 646.60 WHERE [Code] = 'nsv' END +SET [Description] = 'Southwestern Nisu', [Definition] = NULL, [SortOrder] = 6473.00 WHERE [Code] = 'nsv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twr', 'Southwestern Tarahumara', NULL, 646.70) END +VALUES ('twr', 'Southwestern Tarahumara', NULL, 6474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Tarahumara', [Definition] = NULL, [SortOrder] = 646.70 WHERE [Code] = 'twr' END +SET [Description] = 'Southwestern Tarahumara', [Definition] = NULL, [SortOrder] = 6474.00 WHERE [Code] = 'twr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xpx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xpx', 'Southwestern Tasmanian', NULL, 646.80) END +VALUES ('xpx', 'Southwestern Tasmanian', NULL, 6475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Tasmanian', [Definition] = NULL, [SortOrder] = 646.80 WHERE [Code] = 'xpx' END +SET [Description] = 'Southwestern Tasmanian', [Definition] = NULL, [SortOrder] = 6475.00 WHERE [Code] = 'xpx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tla', 'Southwestern Tepehuan', NULL, 646.90) END +VALUES ('tla', 'Southwestern Tepehuan', NULL, 6476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Tepehuan', [Definition] = NULL, [SortOrder] = 646.90 WHERE [Code] = 'tla' END +SET [Description] = 'Southwestern Tepehuan', [Definition] = NULL, [SortOrder] = 6476.00 WHERE [Code] = 'tla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'meh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('meh', 'Southwestern Tlaxiaco Mixtec', NULL, 647.00) END +VALUES ('meh', 'Southwestern Tlaxiaco Mixtec', NULL, 6477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Southwestern Tlaxiaco Mixtec', [Definition] = NULL, [SortOrder] = 647.00 WHERE [Code] = 'meh' END +SET [Description] = 'Southwestern Tlaxiaco Mixtec', [Definition] = NULL, [SortOrder] = 6477.00 WHERE [Code] = 'meh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sww', 'Sowa', NULL, 647.10) END +VALUES ('sww', 'Sowa', NULL, 6478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sowa', [Definition] = NULL, [SortOrder] = 647.10 WHERE [Code] = 'sww' END +SET [Description] = 'Sowa', [Definition] = NULL, [SortOrder] = 6478.00 WHERE [Code] = 'sww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sow', 'Sowanda', NULL, 647.20) END +VALUES ('sow', 'Sowanda', NULL, 6479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sowanda', [Definition] = NULL, [SortOrder] = 647.20 WHERE [Code] = 'sow' END +SET [Description] = 'Sowanda', [Definition] = NULL, [SortOrder] = 6479.00 WHERE [Code] = 'sow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmp', 'Soyaltepec Mazatec', NULL, 647.30) END +VALUES ('vmp', 'Soyaltepec Mazatec', NULL, 6480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soyaltepec Mazatec', [Definition] = NULL, [SortOrder] = 647.30 WHERE [Code] = 'vmp' END +SET [Description] = 'Soyaltepec Mazatec', [Definition] = NULL, [SortOrder] = 6480.00 WHERE [Code] = 'vmp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmq', 'Soyaltepec Mixtec', NULL, 647.40) END +VALUES ('vmq', 'Soyaltepec Mixtec', NULL, 6481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Soyaltepec Mixtec', [Definition] = NULL, [SortOrder] = 647.40 WHERE [Code] = 'vmq' END +SET [Description] = 'Soyaltepec Mixtec', [Definition] = NULL, [SortOrder] = 6481.00 WHERE [Code] = 'vmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spa', 'Spanish', NULL, 647.50) END +VALUES ('spa', 'Spanish', NULL, 6482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Spanish', [Definition] = NULL, [SortOrder] = 647.50 WHERE [Code] = 'spa' END +SET [Description] = 'Spanish', [Definition] = NULL, [SortOrder] = 6482.00 WHERE [Code] = 'spa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssp', 'Spanish Sign Language', NULL, 647.60) END +VALUES ('ssp', 'Spanish Sign Language', NULL, 6483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Spanish Sign Language', [Definition] = NULL, [SortOrder] = 647.60 WHERE [Code] = 'ssp' END +SET [Description] = 'Spanish Sign Language', [Definition] = NULL, [SortOrder] = 6483.00 WHERE [Code] = 'ssp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spt', 'Spiti Bhoti', NULL, 647.70) END +VALUES ('spt', 'Spiti Bhoti', NULL, 6484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Spiti Bhoti', [Definition] = NULL, [SortOrder] = 647.70 WHERE [Code] = 'spt' END +SET [Description] = 'Spiti Bhoti', [Definition] = NULL, [SortOrder] = 6484.00 WHERE [Code] = 'spt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spo', 'Spokane', NULL, 647.80) END +VALUES ('spo', 'Spokane', NULL, 6485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Spokane', [Definition] = NULL, [SortOrder] = 647.80 WHERE [Code] = 'spo' END +SET [Description] = 'Spokane', [Definition] = NULL, [SortOrder] = 6485.00 WHERE [Code] = 'spo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'squ') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('squ', 'Squamish', NULL, 647.90) END +VALUES ('squ', 'Squamish', NULL, 6486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Squamish', [Definition] = NULL, [SortOrder] = 647.90 WHERE [Code] = 'squ' END +SET [Description] = 'Squamish', [Definition] = NULL, [SortOrder] = 6486.00 WHERE [Code] = 'squ' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srn', 'Sranan Tongo', NULL, 648.00) END +VALUES ('srn', 'Sranan Tongo', NULL, 6487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sranan Tongo', [Definition] = NULL, [SortOrder] = 648.00 WHERE [Code] = 'srn' END +SET [Description] = 'Sranan Tongo', [Definition] = NULL, [SortOrder] = 6487.00 WHERE [Code] = 'srn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sci', 'Sri Lankan Creole Malay', NULL, 648.10) END +VALUES ('sci', 'Sri Lankan Creole Malay', NULL, 6488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sri Lankan Creole Malay', [Definition] = NULL, [SortOrder] = 648.10 WHERE [Code] = 'sci' END +SET [Description] = 'Sri Lankan Creole Malay', [Definition] = NULL, [SortOrder] = 6488.00 WHERE [Code] = 'sci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqs', 'Sri Lankan Sign Language', NULL, 648.20) END +VALUES ('sqs', 'Sri Lankan Sign Language', NULL, 6489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sri Lankan Sign Language', [Definition] = NULL, [SortOrder] = 648.20 WHERE [Code] = 'sqs' END +SET [Description] = 'Sri Lankan Sign Language', [Definition] = NULL, [SortOrder] = 6489.00 WHERE [Code] = 'sqs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'arb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('arb', 'Standard Arabic', NULL, 648.30) END +VALUES ('arb', 'Standard Arabic', NULL, 6490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Arabic', [Definition] = NULL, [SortOrder] = 648.30 WHERE [Code] = 'arb' END +SET [Description] = 'Standard Arabic', [Definition] = NULL, [SortOrder] = 6490.00 WHERE [Code] = 'arb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekk', 'Standard Estonian', NULL, 648.40) END +VALUES ('ekk', 'Standard Estonian', NULL, 6491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Estonian', [Definition] = NULL, [SortOrder] = 648.40 WHERE [Code] = 'ekk' END +SET [Description] = 'Standard Estonian', [Definition] = NULL, [SortOrder] = 6491.00 WHERE [Code] = 'ekk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lvs', 'Standard Latvian', NULL, 648.50) END +VALUES ('lvs', 'Standard Latvian', NULL, 6492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Latvian', [Definition] = NULL, [SortOrder] = 648.50 WHERE [Code] = 'lvs' END +SET [Description] = 'Standard Latvian', [Definition] = NULL, [SortOrder] = 6492.00 WHERE [Code] = 'lvs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsm', 'Standard Malay', NULL, 648.60) END +VALUES ('zsm', 'Standard Malay', NULL, 6493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Malay', [Definition] = NULL, [SortOrder] = 648.60 WHERE [Code] = 'zsm' END +SET [Description] = 'Standard Malay', [Definition] = NULL, [SortOrder] = 6493.00 WHERE [Code] = 'zsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zgh', 'Standard Moroccan Tamazight', NULL, 648.70) END +VALUES ('zgh', 'Standard Moroccan Tamazight', NULL, 6494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Standard Moroccan Tamazight', [Definition] = NULL, [SortOrder] = 648.70 WHERE [Code] = 'zgh' END +SET [Description] = 'Standard Moroccan Tamazight', [Definition] = NULL, [SortOrder] = 6494.00 WHERE [Code] = 'zgh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stl', 'Stellingwerfs', NULL, 648.80) END +VALUES ('stl', 'Stellingwerfs', NULL, 6495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Stellingwerfs', [Definition] = NULL, [SortOrder] = 648.80 WHERE [Code] = 'stl' END +SET [Description] = 'Stellingwerfs', [Definition] = NULL, [SortOrder] = 6495.00 WHERE [Code] = 'stl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbu', 'Stod Bhoti', NULL, 648.90) END +VALUES ('sbu', 'Stod Bhoti', NULL, 6496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Stod Bhoti', [Definition] = NULL, [SortOrder] = 648.90 WHERE [Code] = 'sbu' END +SET [Description] = 'Stod Bhoti', [Definition] = NULL, [SortOrder] = 6496.00 WHERE [Code] = 'sbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jih', 'sTodsde', NULL, 649.00) END +VALUES ('jih', 'sTodsde', NULL, 6497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'sTodsde', [Definition] = NULL, [SortOrder] = 649.00 WHERE [Code] = 'jih' END +SET [Description] = 'sTodsde', [Definition] = NULL, [SortOrder] = 6497.00 WHERE [Code] = 'jih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sto', 'Stoney', NULL, 649.10) END +VALUES ('sto', 'Stoney', NULL, 6498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Stoney', [Definition] = NULL, [SortOrder] = 649.10 WHERE [Code] = 'sto' END +SET [Description] = 'Stoney', [Definition] = NULL, [SortOrder] = 6498.00 WHERE [Code] = 'sto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'str') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('str', 'Straits Salish', NULL, 649.20) END +VALUES ('str', 'Straits Salish', NULL, 6499.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Straits Salish', [Definition] = NULL, [SortOrder] = 649.20 WHERE [Code] = 'str' END +SET [Description] = 'Straits Salish', [Definition] = NULL, [SortOrder] = 6499.00 WHERE [Code] = 'str' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szp', 'Suabo', NULL, 649.30) END +VALUES ('szp', 'Suabo', NULL, 6500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suabo', [Definition] = NULL, [SortOrder] = 649.30 WHERE [Code] = 'szp' END +SET [Description] = 'Suabo', [Definition] = NULL, [SortOrder] = 6500.00 WHERE [Code] = 'szp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'seo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('seo', 'Suarmin', NULL, 649.40) END +VALUES ('seo', 'Suarmin', NULL, 6501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suarmin', [Definition] = NULL, [SortOrder] = 649.40 WHERE [Code] = 'seo' END +SET [Description] = 'Suarmin', [Definition] = NULL, [SortOrder] = 6501.00 WHERE [Code] = 'seo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swp', 'Suau', NULL, 649.50) END +VALUES ('swp', 'Suau', NULL, 6502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suau', [Definition] = NULL, [SortOrder] = 649.50 WHERE [Code] = 'swp' END +SET [Description] = 'Suau', [Definition] = NULL, [SortOrder] = 6502.00 WHERE [Code] = 'swp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxb', 'Suba', NULL, 649.60) END +VALUES ('sxb', 'Suba', NULL, 6503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suba', [Definition] = NULL, [SortOrder] = 649.60 WHERE [Code] = 'sxb' END +SET [Description] = 'Suba', [Definition] = NULL, [SortOrder] = 6503.00 WHERE [Code] = 'sxb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssc', 'Suba-Simbiti', NULL, 649.70) END +VALUES ('ssc', 'Suba-Simbiti', NULL, 6504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suba-Simbiti', [Definition] = NULL, [SortOrder] = 649.70 WHERE [Code] = 'ssc' END +SET [Description] = 'Suba-Simbiti', [Definition] = NULL, [SortOrder] = 6504.00 WHERE [Code] = 'ssc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsj', 'Subi', NULL, 649.80) END +VALUES ('xsj', 'Subi', NULL, 6505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Subi', [Definition] = NULL, [SortOrder] = 649.80 WHERE [Code] = 'xsj' END +SET [Description] = 'Subi', [Definition] = NULL, [SortOrder] = 6505.00 WHERE [Code] = 'xsj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbs', 'Subiya', NULL, 649.90) END +VALUES ('sbs', 'Subiya', NULL, 6506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Subiya', [Definition] = NULL, [SortOrder] = 649.90 WHERE [Code] = 'sbs' END +SET [Description] = 'Subiya', [Definition] = NULL, [SortOrder] = 6506.00 WHERE [Code] = 'sbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sut', 'Subtiaba', NULL, 650.00) END +VALUES ('sut', 'Subtiaba', NULL, 6507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Subtiaba', [Definition] = NULL, [SortOrder] = 650.00 WHERE [Code] = 'sut' END +SET [Description] = 'Subtiaba', [Definition] = NULL, [SortOrder] = 6507.00 WHERE [Code] = 'sut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apd', 'Sudanese Arabic', NULL, 650.10) END +VALUES ('apd', 'Sudanese Arabic', NULL, 6508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sudanese Arabic', [Definition] = NULL, [SortOrder] = 650.10 WHERE [Code] = 'apd' END +SET [Description] = 'Sudanese Arabic', [Definition] = NULL, [SortOrder] = 6508.00 WHERE [Code] = 'apd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pga', 'Sudanese Creole Arabic', NULL, 650.20) END +VALUES ('pga', 'Sudanese Creole Arabic', NULL, 6509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sudanese Creole Arabic', [Definition] = NULL, [SortOrder] = 650.20 WHERE [Code] = 'pga' END +SET [Description] = 'Sudanese Creole Arabic', [Definition] = NULL, [SortOrder] = 6509.00 WHERE [Code] = 'pga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgo', 'Sudest', NULL, 650.30) END +VALUES ('tgo', 'Sudest', NULL, 6510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sudest', [Definition] = NULL, [SortOrder] = 650.30 WHERE [Code] = 'tgo' END +SET [Description] = 'Sudest', [Definition] = NULL, [SortOrder] = 6510.00 WHERE [Code] = 'tgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xsv', 'Sudovian', NULL, 650.40) END +VALUES ('xsv', 'Sudovian', NULL, 6511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sudovian', [Definition] = NULL, [SortOrder] = 650.40 WHERE [Code] = 'xsv' END +SET [Description] = 'Sudovian', [Definition] = NULL, [SortOrder] = 6511.00 WHERE [Code] = 'xsv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sue', 'Suena', NULL, 650.50) END +VALUES ('sue', 'Suena', NULL, 6512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suena', [Definition] = NULL, [SortOrder] = 650.50 WHERE [Code] = 'sue' END +SET [Description] = 'Suena', [Definition] = NULL, [SortOrder] = 6512.00 WHERE [Code] = 'sue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgi', 'Suga', NULL, 650.60) END +VALUES ('sgi', 'Suga', NULL, 6513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suga', [Definition] = NULL, [SortOrder] = 650.60 WHERE [Code] = 'sgi' END +SET [Description] = 'Suga', [Definition] = NULL, [SortOrder] = 6513.00 WHERE [Code] = 'sgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sug', 'Suganga', NULL, 650.70) END +VALUES ('sug', 'Suganga', NULL, 6514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suganga', [Definition] = NULL, [SortOrder] = 650.70 WHERE [Code] = 'sug' END +SET [Description] = 'Suganga', [Definition] = NULL, [SortOrder] = 6514.00 WHERE [Code] = 'sug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kzs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kzs', 'Sugut Dusun', NULL, 650.80) END +VALUES ('kzs', 'Sugut Dusun', NULL, 6515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sugut Dusun', [Definition] = NULL, [SortOrder] = 650.80 WHERE [Code] = 'kzs' END +SET [Description] = 'Sugut Dusun', [Definition] = NULL, [SortOrder] = 6515.00 WHERE [Code] = 'kzs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swi', 'Sui', NULL, 650.90) END +VALUES ('swi', 'Sui', NULL, 6516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sui', [Definition] = NULL, [SortOrder] = 650.90 WHERE [Code] = 'swi' END +SET [Description] = 'Sui', [Definition] = NULL, [SortOrder] = 6516.00 WHERE [Code] = 'swi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sui', 'Suki', NULL, 651.00) END +VALUES ('sui', 'Suki', NULL, 6517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suki', [Definition] = NULL, [SortOrder] = 651.00 WHERE [Code] = 'sui' END +SET [Description] = 'Suki', [Definition] = NULL, [SortOrder] = 6517.00 WHERE [Code] = 'sui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sub', 'Suku', NULL, 651.10) END +VALUES ('sub', 'Suku', NULL, 6518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suku', [Definition] = NULL, [SortOrder] = 651.10 WHERE [Code] = 'sub' END +SET [Description] = 'Suku', [Definition] = NULL, [SortOrder] = 6518.00 WHERE [Code] = 'sub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suk', 'Sukuma', NULL, 651.20) END +VALUES ('suk', 'Sukuma', NULL, 6519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sukuma', [Definition] = NULL, [SortOrder] = 651.20 WHERE [Code] = 'suk' END +SET [Description] = 'Sukuma', [Definition] = NULL, [SortOrder] = 6519.00 WHERE [Code] = 'suk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syk', 'Sukur', NULL, 651.30) END +VALUES ('syk', 'Sukur', NULL, 6520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sukur', [Definition] = NULL, [SortOrder] = 651.30 WHERE [Code] = 'syk' END +SET [Description] = 'Sukur', [Definition] = NULL, [SortOrder] = 6520.00 WHERE [Code] = 'syk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsu', 'Sukurum', NULL, 651.40) END +VALUES ('zsu', 'Sukurum', NULL, 6521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sukurum', [Definition] = NULL, [SortOrder] = 651.40 WHERE [Code] = 'zsu' END +SET [Description] = 'Sukurum', [Definition] = NULL, [SortOrder] = 6521.00 WHERE [Code] = 'zsu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'szn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('szn', 'Sula', NULL, 651.50) END +VALUES ('szn', 'Sula', NULL, 6522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sula', [Definition] = NULL, [SortOrder] = 651.50 WHERE [Code] = 'szn' END +SET [Description] = 'Sula', [Definition] = NULL, [SortOrder] = 6522.00 WHERE [Code] = 'szn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sua', 'Sulka', NULL, 651.60) END +VALUES ('sua', 'Sulka', NULL, 6523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sulka', [Definition] = NULL, [SortOrder] = 651.60 WHERE [Code] = 'sua' END +SET [Description] = 'Sulka', [Definition] = NULL, [SortOrder] = 6523.00 WHERE [Code] = 'sua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'srg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('srg', 'Sulod', NULL, 651.70) END +VALUES ('srg', 'Sulod', NULL, 6524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sulod', [Definition] = NULL, [SortOrder] = 651.70 WHERE [Code] = 'srg' END +SET [Description] = 'Sulod', [Definition] = NULL, [SortOrder] = 6524.00 WHERE [Code] = 'srg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqm', 'Suma', NULL, 651.80) END +VALUES ('sqm', 'Suma', NULL, 6525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suma', [Definition] = NULL, [SortOrder] = 651.80 WHERE [Code] = 'sqm' END +SET [Description] = 'Suma', [Definition] = NULL, [SortOrder] = 6525.00 WHERE [Code] = 'sqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'siv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('siv', 'Sumariup', NULL, 651.90) END +VALUES ('siv', 'Sumariup', NULL, 6526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumariup', [Definition] = NULL, [SortOrder] = 651.90 WHERE [Code] = 'siv' END +SET [Description] = 'Sumariup', [Definition] = NULL, [SortOrder] = 6526.00 WHERE [Code] = 'siv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'six') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('six', 'Sumau', NULL, 652.00) END +VALUES ('six', 'Sumau', NULL, 6527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumau', [Definition] = NULL, [SortOrder] = 652.00 WHERE [Code] = 'six' END +SET [Description] = 'Sumau', [Definition] = NULL, [SortOrder] = 6527.00 WHERE [Code] = 'six' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'smw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('smw', 'Sumbawa', NULL, 652.10) END +VALUES ('smw', 'Sumbawa', NULL, 6528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumbawa', [Definition] = NULL, [SortOrder] = 652.10 WHERE [Code] = 'smw' END +SET [Description] = 'Sumbawa', [Definition] = NULL, [SortOrder] = 6528.00 WHERE [Code] = 'smw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suw', 'Sumbwa', NULL, 652.20) END +VALUES ('suw', 'Sumbwa', NULL, 6529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumbwa', [Definition] = NULL, [SortOrder] = 652.20 WHERE [Code] = 'suw' END +SET [Description] = 'Sumbwa', [Definition] = NULL, [SortOrder] = 6529.00 WHERE [Code] = 'suw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sux', 'Sumerian', NULL, 652.30) END +VALUES ('sux', 'Sumerian', NULL, 6530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumerian', [Definition] = NULL, [SortOrder] = 652.30 WHERE [Code] = 'sux' END +SET [Description] = 'Sumerian', [Definition] = NULL, [SortOrder] = 6530.00 WHERE [Code] = 'sux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nsm', 'Sumi Naga', NULL, 652.40) END +VALUES ('nsm', 'Sumi Naga', NULL, 6531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumi Naga', [Definition] = NULL, [SortOrder] = 652.40 WHERE [Code] = 'nsm' END +SET [Description] = 'Sumi Naga', [Definition] = NULL, [SortOrder] = 6531.00 WHERE [Code] = 'nsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csv', 'Sumtu Chin', NULL, 652.50) END +VALUES ('csv', 'Sumtu Chin', NULL, 6532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sumtu Chin', [Definition] = NULL, [SortOrder] = 652.50 WHERE [Code] = 'csv' END +SET [Description] = 'Sumtu Chin', [Definition] = NULL, [SortOrder] = 6532.00 WHERE [Code] = 'csv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssk', 'Sunam', NULL, 652.60) END +VALUES ('ssk', 'Sunam', NULL, 6533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sunam', [Definition] = NULL, [SortOrder] = 652.60 WHERE [Code] = 'ssk' END +SET [Description] = 'Sunam', [Definition] = NULL, [SortOrder] = 6533.00 WHERE [Code] = 'ssk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sun', 'Sundanese', NULL, 652.70) END +VALUES ('sun', 'Sundanese', NULL, 6534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sundanese', [Definition] = NULL, [SortOrder] = 652.70 WHERE [Code] = 'sun' END +SET [Description] = 'Sundanese', [Definition] = NULL, [SortOrder] = 6534.00 WHERE [Code] = 'sun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suz', 'Sunwar', NULL, 652.80) END +VALUES ('suz', 'Sunwar', NULL, 6535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sunwar', [Definition] = NULL, [SortOrder] = 652.80 WHERE [Code] = 'suz' END +SET [Description] = 'Sunwar', [Definition] = NULL, [SortOrder] = 6535.00 WHERE [Code] = 'suz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syo', 'Suoy', NULL, 652.90) END +VALUES ('syo', 'Suoy', NULL, 6536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suoy', [Definition] = NULL, [SortOrder] = 652.90 WHERE [Code] = 'syo' END +SET [Description] = 'Suoy', [Definition] = NULL, [SortOrder] = 6536.00 WHERE [Code] = 'syo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'spp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('spp', 'Supyire Senoufo', NULL, 653.00) END +VALUES ('spp', 'Supyire Senoufo', NULL, 6537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Supyire Senoufo', [Definition] = NULL, [SortOrder] = 653.00 WHERE [Code] = 'spp' END +SET [Description] = 'Supyire Senoufo', [Definition] = NULL, [SortOrder] = 6537.00 WHERE [Code] = 'spp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdl', 'Sur', NULL, 653.10) END +VALUES ('tdl', 'Sur', NULL, 6538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sur', [Definition] = NULL, [SortOrder] = 653.10 WHERE [Code] = 'tdl' END +SET [Description] = 'Sur', [Definition] = NULL, [SortOrder] = 6538.00 WHERE [Code] = 'tdl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sbj', 'Surbakhal', NULL, 653.20) END +VALUES ('sbj', 'Surbakhal', NULL, 6539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surbakhal', [Definition] = NULL, [SortOrder] = 653.20 WHERE [Code] = 'sbj' END +SET [Description] = 'Surbakhal', [Definition] = NULL, [SortOrder] = 6539.00 WHERE [Code] = 'sbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgj', 'Surgujia', NULL, 653.30) END +VALUES ('sgj', 'Surgujia', NULL, 6540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surgujia', [Definition] = NULL, [SortOrder] = 653.30 WHERE [Code] = 'sgj' END +SET [Description] = 'Surgujia', [Definition] = NULL, [SortOrder] = 6540.00 WHERE [Code] = 'sgj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgd', 'Surigaonon', NULL, 653.40) END +VALUES ('sgd', 'Surigaonon', NULL, 6541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surigaonon', [Definition] = NULL, [SortOrder] = 653.40 WHERE [Code] = 'sgd' END +SET [Description] = 'Surigaonon', [Definition] = NULL, [SortOrder] = 6541.00 WHERE [Code] = 'sgd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjp', 'Surjapuri', NULL, 653.50) END +VALUES ('sjp', 'Surjapuri', NULL, 6542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surjapuri', [Definition] = NULL, [SortOrder] = 653.50 WHERE [Code] = 'sjp' END +SET [Description] = 'Surjapuri', [Definition] = NULL, [SortOrder] = 6542.00 WHERE [Code] = 'sjp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgz', 'Sursurunga', NULL, 653.60) END +VALUES ('sgz', 'Sursurunga', NULL, 6543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sursurunga', [Definition] = NULL, [SortOrder] = 653.60 WHERE [Code] = 'sgz' END +SET [Description] = 'Sursurunga', [Definition] = NULL, [SortOrder] = 6543.00 WHERE [Code] = 'sgz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swx', 'Suruahá', NULL, 653.70) END +VALUES ('swx', 'Suruahá', NULL, 6544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suruahá', [Definition] = NULL, [SortOrder] = 653.70 WHERE [Code] = 'swx' END +SET [Description] = 'Suruahá', [Definition] = NULL, [SortOrder] = 6544.00 WHERE [Code] = 'swx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sde', 'Surubu', NULL, 653.80) END +VALUES ('sde', 'Surubu', NULL, 6545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Surubu', [Definition] = NULL, [SortOrder] = 653.80 WHERE [Code] = 'sde' END +SET [Description] = 'Surubu', [Definition] = NULL, [SortOrder] = 6545.00 WHERE [Code] = 'sde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sru', 'Suruí', NULL, 653.90) END +VALUES ('sru', 'Suruí', NULL, 6546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suruí', [Definition] = NULL, [SortOrder] = 653.90 WHERE [Code] = 'sru' END +SET [Description] = 'Suruí', [Definition] = NULL, [SortOrder] = 6546.00 WHERE [Code] = 'sru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mdz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mdz', 'Suruí Do Pará', NULL, 654.00) END +VALUES ('mdz', 'Suruí Do Pará', NULL, 6547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suruí Do Pará', [Definition] = NULL, [SortOrder] = 654.00 WHERE [Code] = 'mdz' END +SET [Description] = 'Suruí Do Pará', [Definition] = NULL, [SortOrder] = 6547.00 WHERE [Code] = 'mdz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sqn', 'Susquehannock', NULL, 654.10) END +VALUES ('sqn', 'Susquehannock', NULL, 6548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Susquehannock', [Definition] = NULL, [SortOrder] = 654.10 WHERE [Code] = 'sqn' END +SET [Description] = 'Susquehannock', [Definition] = NULL, [SortOrder] = 6548.00 WHERE [Code] = 'sqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sus', 'Susu', NULL, 654.20) END +VALUES ('sus', 'Susu', NULL, 6549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Susu', [Definition] = NULL, [SortOrder] = 654.20 WHERE [Code] = 'sus' END +SET [Description] = 'Susu', [Definition] = NULL, [SortOrder] = 6549.00 WHERE [Code] = 'sus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssu', 'Susuami', NULL, 654.30) END +VALUES ('ssu', 'Susuami', NULL, 6550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Susuami', [Definition] = NULL, [SortOrder] = 654.30 WHERE [Code] = 'ssu' END +SET [Description] = 'Susuami', [Definition] = NULL, [SortOrder] = 6550.00 WHERE [Code] = 'ssu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sdj', 'Suundi', NULL, 654.40) END +VALUES ('sdj', 'Suundi', NULL, 6551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suundi', [Definition] = NULL, [SortOrder] = 654.40 WHERE [Code] = 'sdj' END +SET [Description] = 'Suundi', [Definition] = NULL, [SortOrder] = 6551.00 WHERE [Code] = 'sdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swu', 'Suwawa', NULL, 654.50) END +VALUES ('swu', 'Suwawa', NULL, 6552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suwawa', [Definition] = NULL, [SortOrder] = 654.50 WHERE [Code] = 'swu' END +SET [Description] = 'Suwawa', [Definition] = NULL, [SortOrder] = 6552.00 WHERE [Code] = 'swu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suy', 'Suyá', NULL, 654.60) END +VALUES ('suy', 'Suyá', NULL, 6553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Suyá', [Definition] = NULL, [SortOrder] = 654.60 WHERE [Code] = 'suy' END +SET [Description] = 'Suyá', [Definition] = NULL, [SortOrder] = 6553.00 WHERE [Code] = 'suy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sva', 'Svan', NULL, 654.70) END +VALUES ('sva', 'Svan', NULL, 6554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Svan', [Definition] = NULL, [SortOrder] = 654.70 WHERE [Code] = 'sva' END +SET [Description] = 'Svan', [Definition] = NULL, [SortOrder] = 6554.00 WHERE [Code] = 'sva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swg', 'Swabian', NULL, 654.80) END +VALUES ('swg', 'Swabian', NULL, 6555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swabian', [Definition] = NULL, [SortOrder] = 654.80 WHERE [Code] = 'swg' END +SET [Description] = 'Swabian', [Definition] = NULL, [SortOrder] = 6555.00 WHERE [Code] = 'swg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swh', 'Swahili (individual language)', NULL, 654.90) END +VALUES ('swh', 'Swahili (individual language)', NULL, 6556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swahili (individual language)', [Definition] = NULL, [SortOrder] = 654.90 WHERE [Code] = 'swh' END +SET [Description] = 'Swahili (individual language)', [Definition] = NULL, [SortOrder] = 6556.00 WHERE [Code] = 'swh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swa', 'Swahili (macrolanguage)', NULL, 655.00) END +VALUES ('swa', 'Swahili (macrolanguage)', NULL, 6557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swahili (macrolanguage)', [Definition] = NULL, [SortOrder] = 655.00 WHERE [Code] = 'swa' END +SET [Description] = 'Swahili (macrolanguage)', [Definition] = NULL, [SortOrder] = 6557.00 WHERE [Code] = 'swa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'csw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('csw', 'Swampy Cree', NULL, 655.10) END +VALUES ('csw', 'Swampy Cree', NULL, 6558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swampy Cree', [Definition] = NULL, [SortOrder] = 655.10 WHERE [Code] = 'csw' END +SET [Description] = 'Swampy Cree', [Definition] = NULL, [SortOrder] = 6558.00 WHERE [Code] = 'csw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssw', 'Swati', NULL, 655.20) END +VALUES ('ssw', 'Swati', NULL, 6559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swati', [Definition] = NULL, [SortOrder] = 655.20 WHERE [Code] = 'ssw' END +SET [Description] = 'Swati', [Definition] = NULL, [SortOrder] = 6559.00 WHERE [Code] = 'ssw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swe', 'Swedish', NULL, 655.30) END +VALUES ('swe', 'Swedish', NULL, 6560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swedish', [Definition] = NULL, [SortOrder] = 655.30 WHERE [Code] = 'swe' END +SET [Description] = 'Swedish', [Definition] = NULL, [SortOrder] = 6560.00 WHERE [Code] = 'swe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'swl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('swl', 'Swedish Sign Language', NULL, 655.40) END +VALUES ('swl', 'Swedish Sign Language', NULL, 6561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swedish Sign Language', [Definition] = NULL, [SortOrder] = 655.40 WHERE [Code] = 'swl' END +SET [Description] = 'Swedish Sign Language', [Definition] = NULL, [SortOrder] = 6561.00 WHERE [Code] = 'swl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsw', 'Swiss German', NULL, 655.50) END +VALUES ('gsw', 'Swiss German', NULL, 6562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swiss German', [Definition] = NULL, [SortOrder] = 655.50 WHERE [Code] = 'gsw' END +SET [Description] = 'Swiss German', [Definition] = NULL, [SortOrder] = 6562.00 WHERE [Code] = 'gsw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssr', 'Swiss-French Sign Language', NULL, 655.60) END +VALUES ('ssr', 'Swiss-French Sign Language', NULL, 6563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swiss-French Sign Language', [Definition] = NULL, [SortOrder] = 655.60 WHERE [Code] = 'ssr' END +SET [Description] = 'Swiss-French Sign Language', [Definition] = NULL, [SortOrder] = 6563.00 WHERE [Code] = 'ssr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sgg', 'Swiss-German Sign Language', NULL, 655.70) END +VALUES ('sgg', 'Swiss-German Sign Language', NULL, 6564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swiss-German Sign Language', [Definition] = NULL, [SortOrder] = 655.70 WHERE [Code] = 'sgg' END +SET [Description] = 'Swiss-German Sign Language', [Definition] = NULL, [SortOrder] = 6564.00 WHERE [Code] = 'sgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'slf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('slf', 'Swiss-Italian Sign Language', NULL, 655.80) END +VALUES ('slf', 'Swiss-Italian Sign Language', NULL, 6565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swiss-Italian Sign Language', [Definition] = NULL, [SortOrder] = 655.80 WHERE [Code] = 'slf' END +SET [Description] = 'Swiss-Italian Sign Language', [Definition] = NULL, [SortOrder] = 6565.00 WHERE [Code] = 'slf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sox', 'Swo', NULL, 655.90) END +VALUES ('sox', 'Swo', NULL, 6566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Swo', [Definition] = NULL, [SortOrder] = 655.90 WHERE [Code] = 'sox' END +SET [Description] = 'Swo', [Definition] = NULL, [SortOrder] = 6566.00 WHERE [Code] = 'sox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shz', 'Syenara Senoufo', NULL, 656.00) END +VALUES ('shz', 'Syenara Senoufo', NULL, 6567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Syenara Senoufo', [Definition] = NULL, [SortOrder] = 656.00 WHERE [Code] = 'shz' END +SET [Description] = 'Syenara Senoufo', [Definition] = NULL, [SortOrder] = 6567.00 WHERE [Code] = 'shz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syl', 'Sylheti', NULL, 656.10) END +VALUES ('syl', 'Sylheti', NULL, 6568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sylheti', [Definition] = NULL, [SortOrder] = 656.10 WHERE [Code] = 'syl' END +SET [Description] = 'Sylheti', [Definition] = NULL, [SortOrder] = 6568.00 WHERE [Code] = 'syl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'syr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('syr', 'Syriac', NULL, 656.20) END +VALUES ('syr', 'Syriac', NULL, 6569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Syriac', [Definition] = NULL, [SortOrder] = 656.20 WHERE [Code] = 'syr' END +SET [Description] = 'Syriac', [Definition] = NULL, [SortOrder] = 6569.00 WHERE [Code] = 'syr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgn', 'T''apo', NULL, 656.30) END +VALUES ('lgn', 'T''apo', NULL, 6570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'T''apo', [Definition] = NULL, [SortOrder] = 656.30 WHERE [Code] = 'lgn' END +SET [Description] = 'T''apo', [Definition] = NULL, [SortOrder] = 6570.00 WHERE [Code] = 'lgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tct') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tct', 'T''en', NULL, 656.40) END +VALUES ('tct', 'T''en', NULL, 6571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'T''en', [Definition] = NULL, [SortOrder] = 656.40 WHERE [Code] = 'tct' END +SET [Description] = 'T''en', [Definition] = NULL, [SortOrder] = 6571.00 WHERE [Code] = 'tct' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'acq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('acq', 'Ta''izzi-Adeni Arabic', NULL, 656.50) END +VALUES ('acq', 'Ta''izzi-Adeni Arabic', NULL, 6572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ta''izzi-Adeni Arabic', [Definition] = NULL, [SortOrder] = 656.50 WHERE [Code] = 'acq' END +SET [Description] = 'Ta''izzi-Adeni Arabic', [Definition] = NULL, [SortOrder] = 6572.00 WHERE [Code] = 'acq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tap', 'Taabwa', NULL, 656.60) END +VALUES ('tap', 'Taabwa', NULL, 6573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taabwa', [Definition] = NULL, [SortOrder] = 656.60 WHERE [Code] = 'tap' END +SET [Description] = 'Taabwa', [Definition] = NULL, [SortOrder] = 6573.00 WHERE [Code] = 'tap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zat', 'Tabaa Zapotec', NULL, 656.70) END +VALUES ('zat', 'Tabaa Zapotec', NULL, 6574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabaa Zapotec', [Definition] = NULL, [SortOrder] = 656.70 WHERE [Code] = 'zat' END +SET [Description] = 'Tabaa Zapotec', [Definition] = NULL, [SortOrder] = 6574.00 WHERE [Code] = 'zat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tby', 'Tabaru', NULL, 656.80) END +VALUES ('tby', 'Tabaru', NULL, 6575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabaru', [Definition] = NULL, [SortOrder] = 656.80 WHERE [Code] = 'tby' END +SET [Description] = 'Tabaru', [Definition] = NULL, [SortOrder] = 6575.00 WHERE [Code] = 'tby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'chf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('chf', 'Tabasco Chontal', NULL, 656.90) END +VALUES ('chf', 'Tabasco Chontal', NULL, 6576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabasco Chontal', [Definition] = NULL, [SortOrder] = 656.90 WHERE [Code] = 'chf' END +SET [Description] = 'Tabasco Chontal', [Definition] = NULL, [SortOrder] = 6576.00 WHERE [Code] = 'chf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhc', 'Tabasco Nahuatl', NULL, 657.00) END +VALUES ('nhc', 'Tabasco Nahuatl', NULL, 6577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabasco Nahuatl', [Definition] = NULL, [SortOrder] = 657.00 WHERE [Code] = 'nhc' END +SET [Description] = 'Tabasco Nahuatl', [Definition] = NULL, [SortOrder] = 6577.00 WHERE [Code] = 'nhc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zoq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zoq', 'Tabasco Zoque', NULL, 657.10) END +VALUES ('zoq', 'Tabasco Zoque', NULL, 6578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabasco Zoque', [Definition] = NULL, [SortOrder] = 657.10 WHERE [Code] = 'zoq' END +SET [Description] = 'Tabasco Zoque', [Definition] = NULL, [SortOrder] = 6578.00 WHERE [Code] = 'zoq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tab', 'Tabassaran', NULL, 657.20) END +VALUES ('tab', 'Tabassaran', NULL, 6579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabassaran', [Definition] = NULL, [SortOrder] = 657.20 WHERE [Code] = 'tab' END +SET [Description] = 'Tabassaran', [Definition] = NULL, [SortOrder] = 6579.00 WHERE [Code] = 'tab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnm', 'Tabla', NULL, 657.30) END +VALUES ('tnm', 'Tabla', NULL, 6580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabla', [Definition] = NULL, [SortOrder] = 657.30 WHERE [Code] = 'tnm' END +SET [Description] = 'Tabla', [Definition] = NULL, [SortOrder] = 6580.00 WHERE [Code] = 'tnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knv', 'Tabo', NULL, 657.40) END +VALUES ('knv', 'Tabo', NULL, 6581.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabo', [Definition] = NULL, [SortOrder] = 657.40 WHERE [Code] = 'knv' END +SET [Description] = 'Tabo', [Definition] = NULL, [SortOrder] = 6581.00 WHERE [Code] = 'knv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzx', 'Tabriak', NULL, 657.50) END +VALUES ('tzx', 'Tabriak', NULL, 6582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tabriak', [Definition] = NULL, [SortOrder] = 657.50 WHERE [Code] = 'tzx' END +SET [Description] = 'Tabriak', [Definition] = NULL, [SortOrder] = 6582.00 WHERE [Code] = 'tzx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtt', 'Tacahua Mixtec', NULL, 657.60) END +VALUES ('xtt', 'Tacahua Mixtec', NULL, 6583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tacahua Mixtec', [Definition] = NULL, [SortOrder] = 657.60 WHERE [Code] = 'xtt' END +SET [Description] = 'Tacahua Mixtec', [Definition] = NULL, [SortOrder] = 6583.00 WHERE [Code] = 'xtt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tna', 'Tacana', NULL, 657.70) END +VALUES ('tna', 'Tacana', NULL, 6584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tacana', [Definition] = NULL, [SortOrder] = 657.70 WHERE [Code] = 'tna' END +SET [Description] = 'Tacana', [Definition] = NULL, [SortOrder] = 6584.00 WHERE [Code] = 'tna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shy', 'Tachawit', NULL, 657.80) END +VALUES ('shy', 'Tachawit', NULL, 6585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tachawit', [Definition] = NULL, [SortOrder] = 657.80 WHERE [Code] = 'shy' END +SET [Description] = 'Tachawit', [Definition] = NULL, [SortOrder] = 6585.00 WHERE [Code] = 'shy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'shi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('shi', 'Tachelhit', NULL, 657.90) END +VALUES ('shi', 'Tachelhit', NULL, 6586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tachelhit', [Definition] = NULL, [SortOrder] = 657.90 WHERE [Code] = 'shi' END +SET [Description] = 'Tachelhit', [Definition] = NULL, [SortOrder] = 6586.00 WHERE [Code] = 'shi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lts', 'Tachoni', NULL, 658.00) END +VALUES ('lts', 'Tachoni', NULL, 6587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tachoni', [Definition] = NULL, [SortOrder] = 658.00 WHERE [Code] = 'lts' END +SET [Description] = 'Tachoni', [Definition] = NULL, [SortOrder] = 6587.00 WHERE [Code] = 'lts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dsq', 'Tadaksahak', NULL, 658.10) END +VALUES ('dsq', 'Tadaksahak', NULL, 6588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tadaksahak', [Definition] = NULL, [SortOrder] = 658.10 WHERE [Code] = 'dsq' END +SET [Description] = 'Tadaksahak', [Definition] = NULL, [SortOrder] = 6588.00 WHERE [Code] = 'dsq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klw', 'Tado', NULL, 658.20) END +VALUES ('klw', 'Tado', NULL, 6589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tado', [Definition] = NULL, [SortOrder] = 658.20 WHERE [Code] = 'klw' END +SET [Description] = 'Tado', [Definition] = NULL, [SortOrder] = 6589.00 WHERE [Code] = 'klw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdy', 'Tadyawan', NULL, 658.30) END +VALUES ('tdy', 'Tadyawan', NULL, 6590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tadyawan', [Definition] = NULL, [SortOrder] = 658.30 WHERE [Code] = 'tdy' END +SET [Description] = 'Tadyawan', [Definition] = NULL, [SortOrder] = 6590.00 WHERE [Code] = 'tdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rob', 'Tae''', NULL, 658.40) END +VALUES ('rob', 'Tae''', NULL, 6591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tae''', [Definition] = NULL, [SortOrder] = 658.40 WHERE [Code] = 'rob' END +SET [Description] = 'Tae''', [Definition] = NULL, [SortOrder] = 6591.00 WHERE [Code] = 'rob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcd', 'Tafi', NULL, 658.50) END +VALUES ('tcd', 'Tafi', NULL, 6592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tafi', [Definition] = NULL, [SortOrder] = 658.50 WHERE [Code] = 'tcd' END +SET [Description] = 'Tafi', [Definition] = NULL, [SortOrder] = 6592.00 WHERE [Code] = 'tcd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgs', 'Tagabawa', NULL, 658.60) END +VALUES ('bgs', 'Tagabawa', NULL, 6593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagabawa', [Definition] = NULL, [SortOrder] = 658.60 WHERE [Code] = 'bgs' END +SET [Description] = 'Tagabawa', [Definition] = NULL, [SortOrder] = 6593.00 WHERE [Code] = 'bgs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klg', 'Tagakaulo', NULL, 658.70) END +VALUES ('klg', 'Tagakaulo', NULL, 6594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagakaulo', [Definition] = NULL, [SortOrder] = 658.70 WHERE [Code] = 'klg' END +SET [Description] = 'Tagakaulo', [Definition] = NULL, [SortOrder] = 6594.00 WHERE [Code] = 'klg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvv', 'Tagal Murut', NULL, 658.80) END +VALUES ('mvv', 'Tagal Murut', NULL, 6595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagal Murut', [Definition] = NULL, [SortOrder] = 658.80 WHERE [Code] = 'mvv' END +SET [Description] = 'Tagal Murut', [Definition] = NULL, [SortOrder] = 6595.00 WHERE [Code] = 'mvv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgz', 'Tagalaka', NULL, 658.90) END +VALUES ('tgz', 'Tagalaka', NULL, 6596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagalaka', [Definition] = NULL, [SortOrder] = 658.90 WHERE [Code] = 'tgz' END +SET [Description] = 'Tagalaka', [Definition] = NULL, [SortOrder] = 6596.00 WHERE [Code] = 'tgz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgl', 'Tagalog', NULL, 659.00) END +VALUES ('tgl', 'Tagalog', NULL, 6597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagalog', [Definition] = NULL, [SortOrder] = 659.00 WHERE [Code] = 'tgl' END +SET [Description] = 'Tagalog', [Definition] = NULL, [SortOrder] = 6597.00 WHERE [Code] = 'tgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oua', 'Tagargrent', NULL, 659.10) END +VALUES ('oua', 'Tagargrent', NULL, 6598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagargrent', [Definition] = NULL, [SortOrder] = 659.10 WHERE [Code] = 'oua' END +SET [Description] = 'Tagargrent', [Definition] = NULL, [SortOrder] = 6598.00 WHERE [Code] = 'oua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbw', 'Tagbanwa', NULL, 659.20) END +VALUES ('tbw', 'Tagbanwa', NULL, 6599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagbanwa', [Definition] = NULL, [SortOrder] = 659.20 WHERE [Code] = 'tbw' END +SET [Description] = 'Tagbanwa', [Definition] = NULL, [SortOrder] = 6599.00 WHERE [Code] = 'tbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbm', 'Tagbu', NULL, 659.30) END +VALUES ('tbm', 'Tagbu', NULL, 6600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagbu', [Definition] = NULL, [SortOrder] = 659.30 WHERE [Code] = 'tbm' END +SET [Description] = 'Tagbu', [Definition] = NULL, [SortOrder] = 6600.00 WHERE [Code] = 'tbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tda', 'Tagdal', NULL, 659.40) END +VALUES ('tda', 'Tagdal', NULL, 6601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagdal', [Definition] = NULL, [SortOrder] = 659.40 WHERE [Code] = 'tda' END +SET [Description] = 'Tagdal', [Definition] = NULL, [SortOrder] = 6601.00 WHERE [Code] = 'tda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgj', 'Tagin', NULL, 659.50) END +VALUES ('tgj', 'Tagin', NULL, 6602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagin', [Definition] = NULL, [SortOrder] = 659.50 WHERE [Code] = 'tgj' END +SET [Description] = 'Tagin', [Definition] = NULL, [SortOrder] = 6602.00 WHERE [Code] = 'tgj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgx', 'Tagish', NULL, 659.60) END +VALUES ('tgx', 'Tagish', NULL, 6603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagish', [Definition] = NULL, [SortOrder] = 659.60 WHERE [Code] = 'tgx' END +SET [Description] = 'Tagish', [Definition] = NULL, [SortOrder] = 6603.00 WHERE [Code] = 'tgx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tag', 'Tagoi', NULL, 659.70) END +VALUES ('tag', 'Tagoi', NULL, 6604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagoi', [Definition] = NULL, [SortOrder] = 659.70 WHERE [Code] = 'tag' END +SET [Description] = 'Tagoi', [Definition] = NULL, [SortOrder] = 6604.00 WHERE [Code] = 'tag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgw', 'Tagwana Senoufo', NULL, 659.80) END +VALUES ('tgw', 'Tagwana Senoufo', NULL, 6605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tagwana Senoufo', [Definition] = NULL, [SortOrder] = 659.80 WHERE [Code] = 'tgw' END +SET [Description] = 'Tagwana Senoufo', [Definition] = NULL, [SortOrder] = 6605.00 WHERE [Code] = 'tgw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thv', 'Tahaggart Tamahaq', NULL, 659.90) END +VALUES ('thv', 'Tahaggart Tamahaq', NULL, 6606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tahaggart Tamahaq', [Definition] = NULL, [SortOrder] = 659.90 WHERE [Code] = 'thv' END +SET [Description] = 'Tahaggart Tamahaq', [Definition] = NULL, [SortOrder] = 6606.00 WHERE [Code] = 'thv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tah', 'Tahitian', NULL, 660.00) END +VALUES ('tah', 'Tahitian', NULL, 6607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tahitian', [Definition] = NULL, [SortOrder] = 660.00 WHERE [Code] = 'tah' END +SET [Description] = 'Tahitian', [Definition] = NULL, [SortOrder] = 6607.00 WHERE [Code] = 'tah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tht') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tht', 'Tahltan', NULL, 660.10) END +VALUES ('tht', 'Tahltan', NULL, 6608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tahltan', [Definition] = NULL, [SortOrder] = 660.10 WHERE [Code] = 'tht' END +SET [Description] = 'Tahltan', [Definition] = NULL, [SortOrder] = 6608.00 WHERE [Code] = 'tht' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taw', 'Tai', NULL, 660.20) END +VALUES ('taw', 'Tai', NULL, 6609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai', [Definition] = NULL, [SortOrder] = 660.20 WHERE [Code] = 'taw' END +SET [Description] = 'Tai', [Definition] = NULL, [SortOrder] = 6609.00 WHERE [Code] = 'taw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyr', 'Tai Daeng', NULL, 660.30) END +VALUES ('tyr', 'Tai Daeng', NULL, 6610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Daeng', [Definition] = NULL, [SortOrder] = 660.30 WHERE [Code] = 'tyr' END +SET [Description] = 'Tai Daeng', [Definition] = NULL, [SortOrder] = 6610.00 WHERE [Code] = 'tyr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'blt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('blt', 'Tai Dam', NULL, 660.40) END +VALUES ('blt', 'Tai Dam', NULL, 6611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Dam', [Definition] = NULL, [SortOrder] = 660.40 WHERE [Code] = 'blt' END +SET [Description] = 'Tai Dam', [Definition] = NULL, [SortOrder] = 6611.00 WHERE [Code] = 'blt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyj', 'Tai Do', NULL, 660.50) END +VALUES ('tyj', 'Tai Do', NULL, 6612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Do', [Definition] = NULL, [SortOrder] = 660.50 WHERE [Code] = 'tyj' END +SET [Description] = 'Tai Do', [Definition] = NULL, [SortOrder] = 6612.00 WHERE [Code] = 'tyj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twh', 'Tai Dón', NULL, 660.60) END +VALUES ('twh', 'Tai Dón', NULL, 6613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Dón', [Definition] = NULL, [SortOrder] = 660.60 WHERE [Code] = 'twh' END +SET [Description] = 'Tai Dón', [Definition] = NULL, [SortOrder] = 6613.00 WHERE [Code] = 'twh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiz', 'Tai Hongjin', NULL, 660.70) END +VALUES ('tiz', 'Tai Hongjin', NULL, 6614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Hongjin', [Definition] = NULL, [SortOrder] = 660.70 WHERE [Code] = 'tiz' END +SET [Description] = 'Tai Hongjin', [Definition] = NULL, [SortOrder] = 6614.00 WHERE [Code] = 'tiz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjl', 'Tai Laing', NULL, 660.80) END +VALUES ('tjl', 'Tai Laing', NULL, 6615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Laing', [Definition] = NULL, [SortOrder] = 660.80 WHERE [Code] = 'tjl' END +SET [Description] = 'Tai Laing', [Definition] = NULL, [SortOrder] = 6615.00 WHERE [Code] = 'tjl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlq', 'Tai Loi', NULL, 660.90) END +VALUES ('tlq', 'Tai Loi', NULL, 6616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Loi', [Definition] = NULL, [SortOrder] = 660.90 WHERE [Code] = 'tlq' END +SET [Description] = 'Tai Loi', [Definition] = NULL, [SortOrder] = 6616.00 WHERE [Code] = 'tlq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thi', 'Tai Long', NULL, 661.00) END +VALUES ('thi', 'Tai Long', NULL, 6617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Long', [Definition] = NULL, [SortOrder] = 661.00 WHERE [Code] = 'thi' END +SET [Description] = 'Tai Long', [Definition] = NULL, [SortOrder] = 6617.00 WHERE [Code] = 'thi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdd', 'Tai Nüa', NULL, 661.10) END +VALUES ('tdd', 'Tai Nüa', NULL, 6618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Nüa', [Definition] = NULL, [SortOrder] = 661.10 WHERE [Code] = 'tdd' END +SET [Description] = 'Tai Nüa', [Definition] = NULL, [SortOrder] = 6618.00 WHERE [Code] = 'tdd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpo', 'Tai Pao', NULL, 661.20) END +VALUES ('tpo', 'Tai Pao', NULL, 6619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Pao', [Definition] = NULL, [SortOrder] = 661.20 WHERE [Code] = 'tpo' END +SET [Description] = 'Tai Pao', [Definition] = NULL, [SortOrder] = 6619.00 WHERE [Code] = 'tpo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmm', 'Tai Thanh', NULL, 661.30) END +VALUES ('tmm', 'Tai Thanh', NULL, 6620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Thanh', [Definition] = NULL, [SortOrder] = 661.30 WHERE [Code] = 'tmm' END +SET [Description] = 'Tai Thanh', [Definition] = NULL, [SortOrder] = 6620.00 WHERE [Code] = 'tmm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuu', 'Tai Ya', NULL, 661.40) END +VALUES ('cuu', 'Tai Ya', NULL, 6621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tai Ya', [Definition] = NULL, [SortOrder] = 661.40 WHERE [Code] = 'cuu' END +SET [Description] = 'Tai Ya', [Definition] = NULL, [SortOrder] = 6621.00 WHERE [Code] = 'cuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gpn', 'Taiap', NULL, 661.50) END +VALUES ('gpn', 'Taiap', NULL, 6622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taiap', [Definition] = NULL, [SortOrder] = 661.50 WHERE [Code] = 'gpn' END +SET [Description] = 'Taiap', [Definition] = NULL, [SortOrder] = 6622.00 WHERE [Code] = 'gpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aos') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aos', 'Taikat', NULL, 661.60) END +VALUES ('aos', 'Taikat', NULL, 6623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taikat', [Definition] = NULL, [SortOrder] = 661.60 WHERE [Code] = 'aos' END +SET [Description] = 'Taikat', [Definition] = NULL, [SortOrder] = 6623.00 WHERE [Code] = 'aos' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ago') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ago', 'Tainae', NULL, 661.70) END +VALUES ('ago', 'Tainae', NULL, 6624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tainae', [Definition] = NULL, [SortOrder] = 661.70 WHERE [Code] = 'ago' END +SET [Description] = 'Tainae', [Definition] = NULL, [SortOrder] = 6624.00 WHERE [Code] = 'ago' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnq', 'Taino', NULL, 661.80) END +VALUES ('tnq', 'Taino', NULL, 6625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taino', [Definition] = NULL, [SortOrder] = 661.80 WHERE [Code] = 'tnq' END +SET [Description] = 'Taino', [Definition] = NULL, [SortOrder] = 6625.00 WHERE [Code] = 'tnq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bxa', 'Tairaha', NULL, 661.90) END +VALUES ('bxa', 'Tairaha', NULL, 6626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tairaha', [Definition] = NULL, [SortOrder] = 661.90 WHERE [Code] = 'bxa' END +SET [Description] = 'Tairaha', [Definition] = NULL, [SortOrder] = 6626.00 WHERE [Code] = 'bxa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uar', 'Tairuma', NULL, 662.00) END +VALUES ('uar', 'Tairuma', NULL, 6627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tairuma', [Definition] = NULL, [SortOrder] = 662.00 WHERE [Code] = 'uar' END +SET [Description] = 'Tairuma', [Definition] = NULL, [SortOrder] = 6627.00 WHERE [Code] = 'uar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dav', 'Taita', NULL, 662.10) END +VALUES ('dav', 'Taita', NULL, 6628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taita', [Definition] = NULL, [SortOrder] = 662.10 WHERE [Code] = 'dav' END +SET [Description] = 'Taita', [Definition] = NULL, [SortOrder] = 6628.00 WHERE [Code] = 'dav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvx', 'Taivoan', NULL, 662.20) END +VALUES ('tvx', 'Taivoan', NULL, 6629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taivoan', [Definition] = NULL, [SortOrder] = 662.20 WHERE [Code] = 'tvx' END +SET [Description] = 'Taivoan', [Definition] = NULL, [SortOrder] = 6629.00 WHERE [Code] = 'tvx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tss', 'Taiwan Sign Language', NULL, 662.30) END +VALUES ('tss', 'Taiwan Sign Language', NULL, 6630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taiwan Sign Language', [Definition] = NULL, [SortOrder] = 662.30 WHERE [Code] = 'tss' END +SET [Description] = 'Taiwan Sign Language', [Definition] = NULL, [SortOrder] = 6630.00 WHERE [Code] = 'tss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pee', 'Taje', NULL, 662.40) END +VALUES ('pee', 'Taje', NULL, 6631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taje', [Definition] = NULL, [SortOrder] = 662.40 WHERE [Code] = 'pee' END +SET [Description] = 'Taje', [Definition] = NULL, [SortOrder] = 6631.00 WHERE [Code] = 'pee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgk', 'Tajik', NULL, 662.50) END +VALUES ('tgk', 'Tajik', NULL, 6632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tajik', [Definition] = NULL, [SortOrder] = 662.50 WHERE [Code] = 'tgk' END +SET [Description] = 'Tajik', [Definition] = NULL, [SortOrder] = 6632.00 WHERE [Code] = 'tgk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abh', 'Tajiki Arabic', NULL, 662.60) END +VALUES ('abh', 'Tajiki Arabic', NULL, 6633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tajiki Arabic', [Definition] = NULL, [SortOrder] = 662.60 WHERE [Code] = 'abh' END +SET [Description] = 'Tajiki Arabic', [Definition] = NULL, [SortOrder] = 6633.00 WHERE [Code] = 'abh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdj', 'Tajio', NULL, 662.70) END +VALUES ('tdj', 'Tajio', NULL, 6634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tajio', [Definition] = NULL, [SortOrder] = 662.70 WHERE [Code] = 'tdj' END +SET [Description] = 'Tajio', [Definition] = NULL, [SortOrder] = 6634.00 WHERE [Code] = 'tdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tja', 'Tajuasohn', NULL, 662.80) END +VALUES ('tja', 'Tajuasohn', NULL, 6635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tajuasohn', [Definition] = NULL, [SortOrder] = 662.80 WHERE [Code] = 'tja' END +SET [Description] = 'Tajuasohn', [Definition] = NULL, [SortOrder] = 6635.00 WHERE [Code] = 'tja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkm', 'Takelma', NULL, 662.90) END +VALUES ('tkm', 'Takelma', NULL, 6636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takelma', [Definition] = NULL, [SortOrder] = 662.90 WHERE [Code] = 'tkm' END +SET [Description] = 'Takelma', [Definition] = NULL, [SortOrder] = 6636.00 WHERE [Code] = 'tkm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tks', 'Takestani', NULL, 663.00) END +VALUES ('tks', 'Takestani', NULL, 6637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takestani', [Definition] = NULL, [SortOrder] = 663.00 WHERE [Code] = 'tks' END +SET [Description] = 'Takestani', [Definition] = NULL, [SortOrder] = 6637.00 WHERE [Code] = 'tks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbc', 'Takia', NULL, 663.10) END +VALUES ('tbc', 'Takia', NULL, 6638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takia', [Definition] = NULL, [SortOrder] = 663.10 WHERE [Code] = 'tbc' END +SET [Description] = 'Takia', [Definition] = NULL, [SortOrder] = 6638.00 WHERE [Code] = 'tbc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkz', 'Takua', NULL, 663.20) END +VALUES ('tkz', 'Takua', NULL, 6639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takua', [Definition] = NULL, [SortOrder] = 663.20 WHERE [Code] = 'tkz' END +SET [Description] = 'Takua', [Definition] = NULL, [SortOrder] = 6639.00 WHERE [Code] = 'tkz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nho', 'Takuu', NULL, 663.30) END +VALUES ('nho', 'Takuu', NULL, 6640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takuu', [Definition] = NULL, [SortOrder] = 663.30 WHERE [Code] = 'nho' END +SET [Description] = 'Takuu', [Definition] = NULL, [SortOrder] = 6640.00 WHERE [Code] = 'nho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tke') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tke', 'Takwane', NULL, 663.40) END +VALUES ('tke', 'Takwane', NULL, 6641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Takwane', [Definition] = NULL, [SortOrder] = 663.40 WHERE [Code] = 'tke' END +SET [Description] = 'Takwane', [Definition] = NULL, [SortOrder] = 6641.00 WHERE [Code] = 'tke' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tal', 'Tal', NULL, 663.50) END +VALUES ('tal', 'Tal', NULL, 6642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tal', [Definition] = NULL, [SortOrder] = 663.50 WHERE [Code] = 'tal' END +SET [Description] = 'Tal', [Definition] = NULL, [SortOrder] = 6642.00 WHERE [Code] = 'tal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tak', 'Tala', NULL, 663.60) END +VALUES ('tak', 'Tala', NULL, 6643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tala', [Definition] = NULL, [SortOrder] = 663.60 WHERE [Code] = 'tak' END +SET [Description] = 'Tala', [Definition] = NULL, [SortOrder] = 6643.00 WHERE [Code] = 'tak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tld') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tld', 'Talaud', NULL, 663.70) END +VALUES ('tld', 'Talaud', NULL, 6644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talaud', [Definition] = NULL, [SortOrder] = 663.70 WHERE [Code] = 'tld' END +SET [Description] = 'Talaud', [Definition] = NULL, [SortOrder] = 6644.00 WHERE [Code] = 'tld' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlv', 'Taliabu', NULL, 663.80) END +VALUES ('tlv', 'Taliabu', NULL, 6645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taliabu', [Definition] = NULL, [SortOrder] = 663.80 WHERE [Code] = 'tlv' END +SET [Description] = 'Taliabu', [Definition] = NULL, [SortOrder] = 6645.00 WHERE [Code] = 'tlv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdf', 'Talieng', NULL, 663.90) END +VALUES ('tdf', 'Talieng', NULL, 6646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talieng', [Definition] = NULL, [SortOrder] = 663.90 WHERE [Code] = 'tdf' END +SET [Description] = 'Talieng', [Definition] = NULL, [SortOrder] = 6646.00 WHERE [Code] = 'tdf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlj', 'Talinga-Bwisi', NULL, 664.00) END +VALUES ('tlj', 'Talinga-Bwisi', NULL, 6647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talinga-Bwisi', [Definition] = NULL, [SortOrder] = 664.00 WHERE [Code] = 'tlj' END +SET [Description] = 'Talinga-Bwisi', [Definition] = NULL, [SortOrder] = 6647.00 WHERE [Code] = 'tlj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlr', 'Talise', NULL, 664.10) END +VALUES ('tlr', 'Talise', NULL, 6648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talise', [Definition] = NULL, [SortOrder] = 664.10 WHERE [Code] = 'tlr' END +SET [Description] = 'Talise', [Definition] = NULL, [SortOrder] = 6648.00 WHERE [Code] = 'tlr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlo', 'Talodi', NULL, 664.20) END +VALUES ('tlo', 'Talodi', NULL, 6649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talodi', [Definition] = NULL, [SortOrder] = 664.20 WHERE [Code] = 'tlo' END +SET [Description] = 'Talodi', [Definition] = NULL, [SortOrder] = 6649.00 WHERE [Code] = 'tlo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlk', 'Taloki', NULL, 664.30) END +VALUES ('tlk', 'Taloki', NULL, 6650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taloki', [Definition] = NULL, [SortOrder] = 664.30 WHERE [Code] = 'tlk' END +SET [Description] = 'Taloki', [Definition] = NULL, [SortOrder] = 6650.00 WHERE [Code] = 'tlk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tln', 'Talondo''', NULL, 664.40) END +VALUES ('tln', 'Talondo''', NULL, 6651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talondo''', [Definition] = NULL, [SortOrder] = 664.40 WHERE [Code] = 'tln' END +SET [Description] = 'Talondo''', [Definition] = NULL, [SortOrder] = 6651.00 WHERE [Code] = 'tln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzl', 'Talossan', NULL, 664.50) END +VALUES ('tzl', 'Talossan', NULL, 6652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talossan', [Definition] = NULL, [SortOrder] = 664.50 WHERE [Code] = 'tzl' END +SET [Description] = 'Talossan', [Definition] = NULL, [SortOrder] = 6652.00 WHERE [Code] = 'tzl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yta', 'Talu', NULL, 664.60) END +VALUES ('yta', 'Talu', NULL, 6653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talu', [Definition] = NULL, [SortOrder] = 664.60 WHERE [Code] = 'yta' END +SET [Description] = 'Talu', [Definition] = NULL, [SortOrder] = 6653.00 WHERE [Code] = 'yta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tly', 'Talysh', NULL, 664.70) END +VALUES ('tly', 'Talysh', NULL, 6654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Talysh', [Definition] = NULL, [SortOrder] = 664.70 WHERE [Code] = 'tly' END +SET [Description] = 'Talysh', [Definition] = NULL, [SortOrder] = 6654.00 WHERE [Code] = 'tly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tma', 'Tama (Chad)', NULL, 664.80) END +VALUES ('tma', 'Tama (Chad)', NULL, 6655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tama (Chad)', [Definition] = NULL, [SortOrder] = 664.80 WHERE [Code] = 'tma' END +SET [Description] = 'Tama (Chad)', [Definition] = NULL, [SortOrder] = 6655.00 WHERE [Code] = 'tma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ten') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ten', 'Tama (Colombia)', NULL, 664.90) END +VALUES ('ten', 'Tama (Colombia)', NULL, 6656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tama (Colombia)', [Definition] = NULL, [SortOrder] = 664.90 WHERE [Code] = 'ten' END +SET [Description] = 'Tama (Colombia)', [Definition] = NULL, [SortOrder] = 6656.00 WHERE [Code] = 'ten' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcg', 'Tamagario', NULL, 665.00) END +VALUES ('tcg', 'Tamagario', NULL, 6657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamagario', [Definition] = NULL, [SortOrder] = 665.00 WHERE [Code] = 'tcg' END +SET [Description] = 'Tamagario', [Definition] = NULL, [SortOrder] = 6657.00 WHERE [Code] = 'tcg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmn', 'Taman (Indonesia)', NULL, 665.10) END +VALUES ('tmn', 'Taman (Indonesia)', NULL, 6658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taman (Indonesia)', [Definition] = NULL, [SortOrder] = 665.10 WHERE [Code] = 'tmn' END +SET [Description] = 'Taman (Indonesia)', [Definition] = NULL, [SortOrder] = 6658.00 WHERE [Code] = 'tmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcl', 'Taman (Myanmar)', NULL, 665.20) END +VALUES ('tcl', 'Taman (Myanmar)', NULL, 6659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taman (Myanmar)', [Definition] = NULL, [SortOrder] = 665.20 WHERE [Code] = 'tcl' END +SET [Description] = 'Taman (Myanmar)', [Definition] = NULL, [SortOrder] = 6659.00 WHERE [Code] = 'tcl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmz', 'Tamanaku', NULL, 665.30) END +VALUES ('tmz', 'Tamanaku', NULL, 6660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamanaku', [Definition] = NULL, [SortOrder] = 665.30 WHERE [Code] = 'tmz' END +SET [Description] = 'Tamanaku', [Definition] = NULL, [SortOrder] = 6660.00 WHERE [Code] = 'tmz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmh', 'Tamashek', NULL, 665.40) END +VALUES ('tmh', 'Tamashek', NULL, 6661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamashek', [Definition] = NULL, [SortOrder] = 665.40 WHERE [Code] = 'tmh' END +SET [Description] = 'Tamashek', [Definition] = NULL, [SortOrder] = 6661.00 WHERE [Code] = 'tmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taq', 'Tamasheq', NULL, 665.50) END +VALUES ('taq', 'Tamasheq', NULL, 6662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamasheq', [Definition] = NULL, [SortOrder] = 665.50 WHERE [Code] = 'taq' END +SET [Description] = 'Tamasheq', [Definition] = NULL, [SortOrder] = 6662.00 WHERE [Code] = 'taq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmx', 'Tamazola Mixtec', NULL, 665.60) END +VALUES ('vmx', 'Tamazola Mixtec', NULL, 6663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamazola Mixtec', [Definition] = NULL, [SortOrder] = 665.60 WHERE [Code] = 'vmx' END +SET [Description] = 'Tamazola Mixtec', [Definition] = NULL, [SortOrder] = 6663.00 WHERE [Code] = 'vmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdk', 'Tambas', NULL, 665.70) END +VALUES ('tdk', 'Tambas', NULL, 6664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tambas', [Definition] = NULL, [SortOrder] = 665.70 WHERE [Code] = 'tdk' END +SET [Description] = 'Tambas', [Definition] = NULL, [SortOrder] = 6664.00 WHERE [Code] = 'tdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xxt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xxt', 'Tambora', NULL, 665.80) END +VALUES ('xxt', 'Tambora', NULL, 6665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tambora', [Definition] = NULL, [SortOrder] = 665.80 WHERE [Code] = 'xxt' END +SET [Description] = 'Tambora', [Definition] = NULL, [SortOrder] = 6665.00 WHERE [Code] = 'xxt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tls', 'Tambotalo', NULL, 665.90) END +VALUES ('tls', 'Tambotalo', NULL, 6666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tambotalo', [Definition] = NULL, [SortOrder] = 665.90 WHERE [Code] = 'tls' END +SET [Description] = 'Tambotalo', [Definition] = NULL, [SortOrder] = 6666.00 WHERE [Code] = 'tls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmy', 'Tami', NULL, 666.00) END +VALUES ('tmy', 'Tami', NULL, 6667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tami', [Definition] = NULL, [SortOrder] = 666.00 WHERE [Code] = 'tmy' END +SET [Description] = 'Tami', [Definition] = NULL, [SortOrder] = 6667.00 WHERE [Code] = 'tmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tam', 'Tamil', NULL, 666.10) END +VALUES ('tam', 'Tamil', NULL, 6668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamil', [Definition] = NULL, [SortOrder] = 666.10 WHERE [Code] = 'tam' END +SET [Description] = 'Tamil', [Definition] = NULL, [SortOrder] = 6668.00 WHERE [Code] = 'tam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tax', 'Tamki', NULL, 666.20) END +VALUES ('tax', 'Tamki', NULL, 6669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamki', [Definition] = NULL, [SortOrder] = 666.20 WHERE [Code] = 'tax' END +SET [Description] = 'Tamki', [Definition] = NULL, [SortOrder] = 6669.00 WHERE [Code] = 'tax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tml', 'Tamnim Citak', NULL, 666.30) END +VALUES ('tml', 'Tamnim Citak', NULL, 6670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tamnim Citak', [Definition] = NULL, [SortOrder] = 666.30 WHERE [Code] = 'tml' END +SET [Description] = 'Tamnim Citak', [Definition] = NULL, [SortOrder] = 6670.00 WHERE [Code] = 'tml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'low') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('low', 'Tampias Lobu', NULL, 666.40) END +VALUES ('low', 'Tampias Lobu', NULL, 6671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tampias Lobu', [Definition] = NULL, [SortOrder] = 666.40 WHERE [Code] = 'low' END +SET [Description] = 'Tampias Lobu', [Definition] = NULL, [SortOrder] = 6671.00 WHERE [Code] = 'low' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpu', 'Tampuan', NULL, 666.50) END +VALUES ('tpu', 'Tampuan', NULL, 6672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tampuan', [Definition] = NULL, [SortOrder] = 666.50 WHERE [Code] = 'tpu' END +SET [Description] = 'Tampuan', [Definition] = NULL, [SortOrder] = 6672.00 WHERE [Code] = 'tpu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpm', 'Tampulma', NULL, 666.60) END +VALUES ('tpm', 'Tampulma', NULL, 6673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tampulma', [Definition] = NULL, [SortOrder] = 666.60 WHERE [Code] = 'tpm' END +SET [Description] = 'Tampulma', [Definition] = NULL, [SortOrder] = 6673.00 WHERE [Code] = 'tpm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcb', 'Tanacross', NULL, 666.70) END +VALUES ('tcb', 'Tanacross', NULL, 6674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanacross', [Definition] = NULL, [SortOrder] = 666.70 WHERE [Code] = 'tcb' END +SET [Description] = 'Tanacross', [Definition] = NULL, [SortOrder] = 6674.00 WHERE [Code] = 'tcb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcm', 'Tanahmerah', NULL, 666.80) END +VALUES ('tcm', 'Tanahmerah', NULL, 6675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanahmerah', [Definition] = NULL, [SortOrder] = 666.80 WHERE [Code] = 'tcm' END +SET [Description] = 'Tanahmerah', [Definition] = NULL, [SortOrder] = 6675.00 WHERE [Code] = 'tcm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tfn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tfn', 'Tanaina', NULL, 666.90) END +VALUES ('tfn', 'Tanaina', NULL, 6676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanaina', [Definition] = NULL, [SortOrder] = 666.90 WHERE [Code] = 'tfn' END +SET [Description] = 'Tanaina', [Definition] = NULL, [SortOrder] = 6676.00 WHERE [Code] = 'tfn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpv', 'Tanapag', NULL, 667.00) END +VALUES ('tpv', 'Tanapag', NULL, 6677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanapag', [Definition] = NULL, [SortOrder] = 667.00 WHERE [Code] = 'tpv' END +SET [Description] = 'Tanapag', [Definition] = NULL, [SortOrder] = 6677.00 WHERE [Code] = 'tpv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgn', 'Tandaganon', NULL, 667.10) END +VALUES ('tgn', 'Tandaganon', NULL, 6678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tandaganon', [Definition] = NULL, [SortOrder] = 667.10 WHERE [Code] = 'tgn' END +SET [Description] = 'Tandaganon', [Definition] = NULL, [SortOrder] = 6678.00 WHERE [Code] = 'tgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tni', 'Tandia', NULL, 667.20) END +VALUES ('tni', 'Tandia', NULL, 6679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tandia', [Definition] = NULL, [SortOrder] = 667.20 WHERE [Code] = 'tni' END +SET [Description] = 'Tandia', [Definition] = NULL, [SortOrder] = 6679.00 WHERE [Code] = 'tni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdx', 'Tandroy-Mahafaly Malagasy', NULL, 667.30) END +VALUES ('tdx', 'Tandroy-Mahafaly Malagasy', NULL, 6680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tandroy-Mahafaly Malagasy', [Definition] = NULL, [SortOrder] = 667.30 WHERE [Code] = 'tdx' END +SET [Description] = 'Tandroy-Mahafaly Malagasy', [Definition] = NULL, [SortOrder] = 6680.00 WHERE [Code] = 'tdx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnx', 'Tanema', NULL, 667.40) END +VALUES ('tnx', 'Tanema', NULL, 6681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanema', [Definition] = NULL, [SortOrder] = 667.40 WHERE [Code] = 'tnx' END +SET [Description] = 'Tanema', [Definition] = NULL, [SortOrder] = 6681.00 WHERE [Code] = 'tnx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tan', 'Tangale', NULL, 667.50) END +VALUES ('tan', 'Tangale', NULL, 6682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangale', [Definition] = NULL, [SortOrder] = 667.50 WHERE [Code] = 'tan' END +SET [Description] = 'Tangale', [Definition] = NULL, [SortOrder] = 6682.00 WHERE [Code] = 'tan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnv', 'Tangchangya', NULL, 667.60) END +VALUES ('tnv', 'Tangchangya', NULL, 6683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangchangya', [Definition] = NULL, [SortOrder] = 667.60 WHERE [Code] = 'tnv' END +SET [Description] = 'Tangchangya', [Definition] = NULL, [SortOrder] = 6683.00 WHERE [Code] = 'tnv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgu', 'Tanggu', NULL, 667.70) END +VALUES ('tgu', 'Tanggu', NULL, 6684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanggu', [Definition] = NULL, [SortOrder] = 667.70 WHERE [Code] = 'tgu' END +SET [Description] = 'Tanggu', [Definition] = NULL, [SortOrder] = 6684.00 WHERE [Code] = 'tgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nmf', 'Tangkhul Naga (India)', NULL, 667.80) END +VALUES ('nmf', 'Tangkhul Naga (India)', NULL, 6685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangkhul Naga (India)', [Definition] = NULL, [SortOrder] = 667.80 WHERE [Code] = 'nmf' END +SET [Description] = 'Tangkhul Naga (India)', [Definition] = NULL, [SortOrder] = 6685.00 WHERE [Code] = 'nmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ntx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ntx', 'Tangkhul Naga (Myanmar)', NULL, 667.90) END +VALUES ('ntx', 'Tangkhul Naga (Myanmar)', NULL, 6686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangkhul Naga (Myanmar)', [Definition] = NULL, [SortOrder] = 667.90 WHERE [Code] = 'ntx' END +SET [Description] = 'Tangkhul Naga (Myanmar)', [Definition] = NULL, [SortOrder] = 6686.00 WHERE [Code] = 'ntx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkx', 'Tangko', NULL, 668.00) END +VALUES ('tkx', 'Tangko', NULL, 6687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangko', [Definition] = NULL, [SortOrder] = 668.00 WHERE [Code] = 'tkx' END +SET [Description] = 'Tangko', [Definition] = NULL, [SortOrder] = 6687.00 WHERE [Code] = 'tkx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ytl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ytl', 'Tanglang', NULL, 668.10) END +VALUES ('ytl', 'Tanglang', NULL, 6688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanglang', [Definition] = NULL, [SortOrder] = 668.10 WHERE [Code] = 'ytl' END +SET [Description] = 'Tanglang', [Definition] = NULL, [SortOrder] = 6688.00 WHERE [Code] = 'ytl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgp', 'Tangoa', NULL, 668.20) END +VALUES ('tgp', 'Tangoa', NULL, 6689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangoa', [Definition] = NULL, [SortOrder] = 668.20 WHERE [Code] = 'tgp' END +SET [Description] = 'Tangoa', [Definition] = NULL, [SortOrder] = 6689.00 WHERE [Code] = 'tgp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbs', 'Tanguat', NULL, 668.30) END +VALUES ('tbs', 'Tanguat', NULL, 6690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanguat', [Definition] = NULL, [SortOrder] = 668.30 WHERE [Code] = 'tbs' END +SET [Description] = 'Tanguat', [Definition] = NULL, [SortOrder] = 6690.00 WHERE [Code] = 'tbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txg', 'Tangut', NULL, 668.40) END +VALUES ('txg', 'Tangut', NULL, 6691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tangut', [Definition] = NULL, [SortOrder] = 668.40 WHERE [Code] = 'txg' END +SET [Description] = 'Tangut', [Definition] = NULL, [SortOrder] = 6691.00 WHERE [Code] = 'txg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbe', 'Tanimbili', NULL, 668.50) END +VALUES ('tbe', 'Tanimbili', NULL, 6692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanimbili', [Definition] = NULL, [SortOrder] = 668.50 WHERE [Code] = 'tbe' END +SET [Description] = 'Tanimbili', [Definition] = NULL, [SortOrder] = 6692.00 WHERE [Code] = 'tbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnc', 'Tanimuca-Retuarã', NULL, 668.60) END +VALUES ('tnc', 'Tanimuca-Retuarã', NULL, 6693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanimuca-Retuarã', [Definition] = NULL, [SortOrder] = 668.60 WHERE [Code] = 'tnc' END +SET [Description] = 'Tanimuca-Retuarã', [Definition] = NULL, [SortOrder] = 6693.00 WHERE [Code] = 'tnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uji', 'Tanjijili', NULL, 668.70) END +VALUES ('uji', 'Tanjijili', NULL, 6694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanjijili', [Definition] = NULL, [SortOrder] = 668.70 WHERE [Code] = 'uji' END +SET [Description] = 'Tanjijili', [Definition] = NULL, [SortOrder] = 6694.00 WHERE [Code] = 'uji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txy', 'Tanosy Malagasy', NULL, 668.80) END +VALUES ('txy', 'Tanosy Malagasy', NULL, 6695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanosy Malagasy', [Definition] = NULL, [SortOrder] = 668.80 WHERE [Code] = 'txy' END +SET [Description] = 'Tanosy Malagasy', [Definition] = NULL, [SortOrder] = 6695.00 WHERE [Code] = 'txy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kml', 'Tanudan Kalinga', NULL, 668.90) END +VALUES ('kml', 'Tanudan Kalinga', NULL, 6696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanudan Kalinga', [Definition] = NULL, [SortOrder] = 668.90 WHERE [Code] = 'kml' END +SET [Description] = 'Tanudan Kalinga', [Definition] = NULL, [SortOrder] = 6696.00 WHERE [Code] = 'kml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tza', 'Tanzanian Sign Language', NULL, 669.00) END +VALUES ('tza', 'Tanzanian Sign Language', NULL, 6697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tanzanian Sign Language', [Definition] = NULL, [SortOrder] = 669.00 WHERE [Code] = 'tza' END +SET [Description] = 'Tanzanian Sign Language', [Definition] = NULL, [SortOrder] = 6697.00 WHERE [Code] = 'tza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'afp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('afp', 'Tapei', NULL, 669.10) END +VALUES ('afp', 'Tapei', NULL, 6698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tapei', [Definition] = NULL, [SortOrder] = 669.10 WHERE [Code] = 'afp' END +SET [Description] = 'Tapei', [Definition] = NULL, [SortOrder] = 6698.00 WHERE [Code] = 'afp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpj', 'Tapieté', NULL, 669.20) END +VALUES ('tpj', 'Tapieté', NULL, 6699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tapieté', [Definition] = NULL, [SortOrder] = 669.20 WHERE [Code] = 'tpj' END +SET [Description] = 'Tapieté', [Definition] = NULL, [SortOrder] = 6699.00 WHERE [Code] = 'tpj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taf', 'Tapirapé', NULL, 669.30) END +VALUES ('taf', 'Tapirapé', NULL, 6700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tapirapé', [Definition] = NULL, [SortOrder] = 669.30 WHERE [Code] = 'taf' END +SET [Description] = 'Tapirapé', [Definition] = NULL, [SortOrder] = 6700.00 WHERE [Code] = 'taf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tro', 'Tarao Naga', NULL, 669.40) END +VALUES ('tro', 'Tarao Naga', NULL, 6701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarao Naga', [Definition] = NULL, [SortOrder] = 669.40 WHERE [Code] = 'tro' END +SET [Description] = 'Tarao Naga', [Definition] = NULL, [SortOrder] = 6701.00 WHERE [Code] = 'tro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgr', 'Tareng', NULL, 669.50) END +VALUES ('tgr', 'Tareng', NULL, 6702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tareng', [Definition] = NULL, [SortOrder] = 669.50 WHERE [Code] = 'tgr' END +SET [Description] = 'Tareng', [Definition] = NULL, [SortOrder] = 6702.00 WHERE [Code] = 'tgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tae', 'Tariana', NULL, 669.60) END +VALUES ('tae', 'Tariana', NULL, 6703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tariana', [Definition] = NULL, [SortOrder] = 669.60 WHERE [Code] = 'tae' END +SET [Description] = 'Tariana', [Definition] = NULL, [SortOrder] = 6703.00 WHERE [Code] = 'tae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rif', 'Tarifit', NULL, 669.70) END +VALUES ('rif', 'Tarifit', NULL, 6704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarifit', [Definition] = NULL, [SortOrder] = 669.70 WHERE [Code] = 'rif' END +SET [Description] = 'Tarifit', [Definition] = NULL, [SortOrder] = 6704.00 WHERE [Code] = 'rif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txj', 'Tarjumo', NULL, 669.80) END +VALUES ('txj', 'Tarjumo', NULL, 6705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarjumo', [Definition] = NULL, [SortOrder] = 669.80 WHERE [Code] = 'txj' END +SET [Description] = 'Tarjumo', [Definition] = NULL, [SortOrder] = 6705.00 WHERE [Code] = 'txj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yer', 'Tarok', NULL, 669.90) END +VALUES ('yer', 'Tarok', NULL, 6706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarok', [Definition] = NULL, [SortOrder] = 669.90 WHERE [Code] = 'yer' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trv', 'Sediq', NULL, 670.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Sediq', [Definition] = NULL, [SortOrder] = 670.00 WHERE [Code] = 'trv' END +SET [Description] = 'Tarok', [Definition] = NULL, [SortOrder] = 6706.00 WHERE [Code] = 'yer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpf', 'Tarpia', NULL, 670.10) END +VALUES ('tpf', 'Tarpia', NULL, 6707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tarpia', [Definition] = NULL, [SortOrder] = 670.10 WHERE [Code] = 'tpf' END +SET [Description] = 'Tarpia', [Definition] = NULL, [SortOrder] = 6707.00 WHERE [Code] = 'tpf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txr', 'Tartessian', NULL, 670.20) END +VALUES ('txr', 'Tartessian', NULL, 6708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tartessian', [Definition] = NULL, [SortOrder] = 670.20 WHERE [Code] = 'txr' END +SET [Description] = 'Tartessian', [Definition] = NULL, [SortOrder] = 6708.00 WHERE [Code] = 'txr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdm', 'Taruma', NULL, 670.30) END +VALUES ('tdm', 'Taruma', NULL, 6709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taruma', [Definition] = NULL, [SortOrder] = 670.30 WHERE [Code] = 'tdm' END +SET [Description] = 'Taruma', [Definition] = NULL, [SortOrder] = 6709.00 WHERE [Code] = 'tdm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twq', 'Tasawaq', NULL, 670.40) END +VALUES ('twq', 'Tasawaq', NULL, 6710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tasawaq', [Definition] = NULL, [SortOrder] = 670.40 WHERE [Code] = 'twq' END +SET [Description] = 'Tasawaq', [Definition] = NULL, [SortOrder] = 6710.00 WHERE [Code] = 'twq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nst', 'Tase Naga', NULL, 670.50) END +VALUES ('nst', 'Tase Naga', NULL, 6711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tase Naga', [Definition] = NULL, [SortOrder] = 670.50 WHERE [Code] = 'nst' END +SET [Description] = 'Tase Naga', [Definition] = NULL, [SortOrder] = 6711.00 WHERE [Code] = 'nst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmt', 'Tasmate', NULL, 670.60) END +VALUES ('tmt', 'Tasmate', NULL, 6712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tasmate', [Definition] = NULL, [SortOrder] = 670.60 WHERE [Code] = 'tmt' END +SET [Description] = 'Tasmate', [Definition] = NULL, [SortOrder] = 6712.00 WHERE [Code] = 'tmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cta', 'Tataltepec Chatino', NULL, 670.70) END +VALUES ('cta', 'Tataltepec Chatino', NULL, 6713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tataltepec Chatino', [Definition] = NULL, [SortOrder] = 670.70 WHERE [Code] = 'cta' END +SET [Description] = 'Tataltepec Chatino', [Definition] = NULL, [SortOrder] = 6713.00 WHERE [Code] = 'cta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txx', 'Tatana', NULL, 670.80) END +VALUES ('txx', 'Tatana', NULL, 6714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tatana', [Definition] = NULL, [SortOrder] = 670.80 WHERE [Code] = 'txx' END +SET [Description] = 'Tatana', [Definition] = NULL, [SortOrder] = 6714.00 WHERE [Code] = 'txx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tat', 'Tatar', NULL, 670.90) END +VALUES ('tat', 'Tatar', NULL, 6715.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tatar', [Definition] = NULL, [SortOrder] = 670.90 WHERE [Code] = 'tat' END +SET [Description] = 'Tatar', [Definition] = NULL, [SortOrder] = 6715.00 WHERE [Code] = 'tat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tav', 'Tatuyo', NULL, 671.00) END +VALUES ('tav', 'Tatuyo', NULL, 6716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tatuyo', [Definition] = NULL, [SortOrder] = 671.00 WHERE [Code] = 'tav' END +SET [Description] = 'Tatuyo', [Definition] = NULL, [SortOrder] = 6716.00 WHERE [Code] = 'tav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttd', 'Tauade', NULL, 671.10) END +VALUES ('ttd', 'Tauade', NULL, 6717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tauade', [Definition] = NULL, [SortOrder] = 671.10 WHERE [Code] = 'ttd' END +SET [Description] = 'Tauade', [Definition] = NULL, [SortOrder] = 6717.00 WHERE [Code] = 'ttd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuh', 'Taulil', NULL, 671.20) END +VALUES ('tuh', 'Taulil', NULL, 6718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taulil', [Definition] = NULL, [SortOrder] = 671.20 WHERE [Code] = 'tuh' END +SET [Description] = 'Taulil', [Definition] = NULL, [SortOrder] = 6718.00 WHERE [Code] = 'tuh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tco') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tco', 'Taungyo', NULL, 671.30) END +VALUES ('tco', 'Taungyo', NULL, 6719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taungyo', [Definition] = NULL, [SortOrder] = 671.30 WHERE [Code] = 'tco' END +SET [Description] = 'Taungyo', [Definition] = NULL, [SortOrder] = 6719.00 WHERE [Code] = 'tco' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpa', 'Taupota', NULL, 671.40) END +VALUES ('tpa', 'Taupota', NULL, 6720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taupota', [Definition] = NULL, [SortOrder] = 671.40 WHERE [Code] = 'tpa' END +SET [Description] = 'Taupota', [Definition] = NULL, [SortOrder] = 6720.00 WHERE [Code] = 'tpa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tad', 'Tause', NULL, 671.50) END +VALUES ('tad', 'Tause', NULL, 6721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tause', [Definition] = NULL, [SortOrder] = 671.50 WHERE [Code] = 'tad' END +SET [Description] = 'Tause', [Definition] = NULL, [SortOrder] = 6721.00 WHERE [Code] = 'tad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trr', 'Taushiro', NULL, 671.60) END +VALUES ('trr', 'Taushiro', NULL, 6722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taushiro', [Definition] = NULL, [SortOrder] = 671.60 WHERE [Code] = 'trr' END +SET [Description] = 'Taushiro', [Definition] = NULL, [SortOrder] = 6722.00 WHERE [Code] = 'trr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsg', 'Tausug', NULL, 671.70) END +VALUES ('tsg', 'Tausug', NULL, 6723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tausug', [Definition] = NULL, [SortOrder] = 671.70 WHERE [Code] = 'tsg' END +SET [Description] = 'Tausug', [Definition] = NULL, [SortOrder] = 6723.00 WHERE [Code] = 'tsg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tya', 'Tauya', NULL, 671.80) END +VALUES ('tya', 'Tauya', NULL, 6724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tauya', [Definition] = NULL, [SortOrder] = 671.80 WHERE [Code] = 'tya' END +SET [Description] = 'Tauya', [Definition] = NULL, [SortOrder] = 6724.00 WHERE [Code] = 'tya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvs', 'Taveta', NULL, 671.90) END +VALUES ('tvs', 'Taveta', NULL, 6725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taveta', [Definition] = NULL, [SortOrder] = 671.90 WHERE [Code] = 'tvs' END +SET [Description] = 'Taveta', [Definition] = NULL, [SortOrder] = 6725.00 WHERE [Code] = 'tvs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvn', 'Tavoyan', NULL, 672.00) END +VALUES ('tvn', 'Tavoyan', NULL, 6726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tavoyan', [Definition] = NULL, [SortOrder] = 672.00 WHERE [Code] = 'tvn' END +SET [Description] = 'Tavoyan', [Definition] = NULL, [SortOrder] = 6726.00 WHERE [Code] = 'tvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmu', 'Tavringer Romani', NULL, 672.10) END +VALUES ('rmu', 'Tavringer Romani', NULL, 6727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tavringer Romani', [Definition] = NULL, [SortOrder] = 672.10 WHERE [Code] = 'rmu' END +SET [Description] = 'Tavringer Romani', [Definition] = NULL, [SortOrder] = 6727.00 WHERE [Code] = 'rmu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbo', 'Tawala', NULL, 672.20) END +VALUES ('tbo', 'Tawala', NULL, 6728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawala', [Definition] = NULL, [SortOrder] = 672.20 WHERE [Code] = 'tbo' END +SET [Description] = 'Tawala', [Definition] = NULL, [SortOrder] = 6728.00 WHERE [Code] = 'tbo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttq', 'Tawallammat Tamajaq', NULL, 672.30) END +VALUES ('ttq', 'Tawallammat Tamajaq', NULL, 6729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawallammat Tamajaq', [Definition] = NULL, [SortOrder] = 672.30 WHERE [Code] = 'ttq' END +SET [Description] = 'Tawallammat Tamajaq', [Definition] = NULL, [SortOrder] = 6729.00 WHERE [Code] = 'ttq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtw', 'Tawandê', NULL, 672.40) END +VALUES ('xtw', 'Tawandê', NULL, 6730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawandê', [Definition] = NULL, [SortOrder] = 672.40 WHERE [Code] = 'xtw' END +SET [Description] = 'Tawandê', [Definition] = NULL, [SortOrder] = 6730.00 WHERE [Code] = 'xtw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twm', 'Tawang Monpa', NULL, 672.50) END +VALUES ('twm', 'Tawang Monpa', NULL, 6731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawang Monpa', [Definition] = NULL, [SortOrder] = 672.50 WHERE [Code] = 'twm' END +SET [Description] = 'Tawang Monpa', [Definition] = NULL, [SortOrder] = 6731.00 WHERE [Code] = 'twm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twl', 'Tawara', NULL, 672.60) END +VALUES ('twl', 'Tawara', NULL, 6732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawara', [Definition] = NULL, [SortOrder] = 672.60 WHERE [Code] = 'twl' END +SET [Description] = 'Tawara', [Definition] = NULL, [SortOrder] = 6732.00 WHERE [Code] = 'twl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbp', 'Taworta', NULL, 672.70) END +VALUES ('tbp', 'Taworta', NULL, 6733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taworta', [Definition] = NULL, [SortOrder] = 672.70 WHERE [Code] = 'tbp' END +SET [Description] = 'Taworta', [Definition] = NULL, [SortOrder] = 6733.00 WHERE [Code] = 'tbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twy', 'Tawoyan', NULL, 672.80) END +VALUES ('twy', 'Tawoyan', NULL, 6734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawoyan', [Definition] = NULL, [SortOrder] = 672.80 WHERE [Code] = 'twy' END +SET [Description] = 'Tawoyan', [Definition] = NULL, [SortOrder] = 6734.00 WHERE [Code] = 'twy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcp', 'Tawr Chin', NULL, 672.90) END +VALUES ('tcp', 'Tawr Chin', NULL, 6735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tawr Chin', [Definition] = NULL, [SortOrder] = 672.90 WHERE [Code] = 'tcp' END +SET [Description] = 'Tawr Chin', [Definition] = NULL, [SortOrder] = 6735.00 WHERE [Code] = 'tcp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyz', 'Tày', NULL, 673.00) END +VALUES ('tyz', 'Tày', NULL, 6736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tày', [Definition] = NULL, [SortOrder] = 673.00 WHERE [Code] = 'tyz' END +SET [Description] = 'Tày', [Definition] = NULL, [SortOrder] = 6736.00 WHERE [Code] = 'tyz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tas', 'Tay Boi', NULL, 673.10) END +VALUES ('tas', 'Tay Boi', NULL, 6737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tay Boi', [Definition] = NULL, [SortOrder] = 673.10 WHERE [Code] = 'tas' END +SET [Description] = 'Tay Boi', [Definition] = NULL, [SortOrder] = 6737.00 WHERE [Code] = 'tas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnu', 'Tay Khang', NULL, 673.20) END +VALUES ('tnu', 'Tay Khang', NULL, 6738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tay Khang', [Definition] = NULL, [SortOrder] = 673.20 WHERE [Code] = 'tnu' END +SET [Description] = 'Tay Khang', [Definition] = NULL, [SortOrder] = 6738.00 WHERE [Code] = 'tnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tys', 'Tày Sa Pa', NULL, 673.30) END +VALUES ('tys', 'Tày Sa Pa', NULL, 6739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tày Sa Pa', [Definition] = NULL, [SortOrder] = 673.30 WHERE [Code] = 'tys' END +SET [Description] = 'Tày Sa Pa', [Definition] = NULL, [SortOrder] = 6739.00 WHERE [Code] = 'tys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyt', 'Tày Tac', NULL, 673.40) END +VALUES ('tyt', 'Tày Tac', NULL, 6740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tày Tac', [Definition] = NULL, [SortOrder] = 673.40 WHERE [Code] = 'tyt' END +SET [Description] = 'Tày Tac', [Definition] = NULL, [SortOrder] = 6740.00 WHERE [Code] = 'tyt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thz', 'Tayart Tamajeq', NULL, 673.50) END +VALUES ('thz', 'Tayart Tamajeq', NULL, 6741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tayart Tamajeq', [Definition] = NULL, [SortOrder] = 673.50 WHERE [Code] = 'thz' END +SET [Description] = 'Tayart Tamajeq', [Definition] = NULL, [SortOrder] = 6741.00 WHERE [Code] = 'thz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cks', 'Tayo', NULL, 673.60) END +VALUES ('cks', 'Tayo', NULL, 6742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tayo', [Definition] = NULL, [SortOrder] = 673.60 WHERE [Code] = 'cks' END +SET [Description] = 'Tayo', [Definition] = NULL, [SortOrder] = 6742.00 WHERE [Code] = 'cks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'grr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('grr', 'Taznatit', NULL, 673.70) END +VALUES ('grr', 'Taznatit', NULL, 6743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Taznatit', [Definition] = NULL, [SortOrder] = 673.70 WHERE [Code] = 'grr' END +SET [Description] = 'Taznatit', [Definition] = NULL, [SortOrder] = 6743.00 WHERE [Code] = 'grr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbl', 'Tboli', NULL, 673.80) END +VALUES ('tbl', 'Tboli', NULL, 6744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tboli', [Definition] = NULL, [SortOrder] = 673.80 WHERE [Code] = 'tbl' END +SET [Description] = 'Tboli', [Definition] = NULL, [SortOrder] = 6744.00 WHERE [Code] = 'tbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tck') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tck', 'Tchitchege', NULL, 673.90) END +VALUES ('tck', 'Tchitchege', NULL, 6745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tchitchege', [Definition] = NULL, [SortOrder] = 673.90 WHERE [Code] = 'tck' END +SET [Description] = 'Tchitchege', [Definition] = NULL, [SortOrder] = 6745.00 WHERE [Code] = 'tck' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqa', 'Tchumbuli', NULL, 674.00) END +VALUES ('bqa', 'Tchumbuli', NULL, 6746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tchumbuli', [Definition] = NULL, [SortOrder] = 674.00 WHERE [Code] = 'bqa' END +SET [Description] = 'Tchumbuli', [Definition] = NULL, [SortOrder] = 6746.00 WHERE [Code] = 'bqa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tve', 'Te''un', NULL, 674.10) END +VALUES ('tve', 'Te''un', NULL, 6747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Te''un', [Definition] = NULL, [SortOrder] = 674.10 WHERE [Code] = 'tve' END +SET [Description] = 'Te''un', [Definition] = NULL, [SortOrder] = 6747.00 WHERE [Code] = 'tve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkw', 'Teanu', NULL, 674.20) END +VALUES ('tkw', 'Teanu', NULL, 6748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teanu', [Definition] = NULL, [SortOrder] = 674.20 WHERE [Code] = 'tkw' END +SET [Description] = 'Teanu', [Definition] = NULL, [SortOrder] = 6748.00 WHERE [Code] = 'tkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsy', 'Tebul Sign Language', NULL, 674.30) END +VALUES ('tsy', 'Tebul Sign Language', NULL, 6749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tebul Sign Language', [Definition] = NULL, [SortOrder] = 674.30 WHERE [Code] = 'tsy' END +SET [Description] = 'Tebul Sign Language', [Definition] = NULL, [SortOrder] = 6749.00 WHERE [Code] = 'tsy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtu', 'Tebul Ure Dogon', NULL, 674.40) END +VALUES ('dtu', 'Tebul Ure Dogon', NULL, 6750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tebul Ure Dogon', [Definition] = NULL, [SortOrder] = 674.40 WHERE [Code] = 'dtu' END +SET [Description] = 'Tebul Ure Dogon', [Definition] = NULL, [SortOrder] = 6750.00 WHERE [Code] = 'dtu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcw', 'Tecpatlán Totonac', NULL, 674.50) END +VALUES ('tcw', 'Tecpatlán Totonac', NULL, 6751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tecpatlán Totonac', [Definition] = NULL, [SortOrder] = 674.50 WHERE [Code] = 'tcw' END +SET [Description] = 'Tecpatlán Totonac', [Definition] = NULL, [SortOrder] = 6751.00 WHERE [Code] = 'tcw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuq', 'Tedaga', NULL, 674.60) END +VALUES ('tuq', 'Tedaga', NULL, 6752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tedaga', [Definition] = NULL, [SortOrder] = 674.60 WHERE [Code] = 'tuq' END +SET [Description] = 'Tedaga', [Definition] = NULL, [SortOrder] = 6752.00 WHERE [Code] = 'tuq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctd', 'Tedim Chin', NULL, 674.70) END +VALUES ('ctd', 'Tedim Chin', NULL, 6753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tedim Chin', [Definition] = NULL, [SortOrder] = 674.70 WHERE [Code] = 'ctd' END +SET [Description] = 'Tedim Chin', [Definition] = NULL, [SortOrder] = 6753.00 WHERE [Code] = 'ctd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkq', 'Tee', NULL, 674.80) END +VALUES ('tkq', 'Tee', NULL, 6754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tee', [Definition] = NULL, [SortOrder] = 674.80 WHERE [Code] = 'tkq' END +SET [Description] = 'Tee', [Definition] = NULL, [SortOrder] = 6754.00 WHERE [Code] = 'tkq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lor', 'Téén', NULL, 674.90) END +VALUES ('lor', 'Téén', NULL, 6755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Téén', [Definition] = NULL, [SortOrder] = 674.90 WHERE [Code] = 'lor' END +SET [Description] = 'Téén', [Definition] = NULL, [SortOrder] = 6755.00 WHERE [Code] = 'lor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tfo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tfo', 'Tefaro', NULL, 675.00) END +VALUES ('tfo', 'Tefaro', NULL, 6756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tefaro', [Definition] = NULL, [SortOrder] = 675.00 WHERE [Code] = 'tfo' END +SET [Description] = 'Tefaro', [Definition] = NULL, [SortOrder] = 6756.00 WHERE [Code] = 'tfo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ras') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ras', 'Tegali', NULL, 675.10) END +VALUES ('ras', 'Tegali', NULL, 6757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tegali', [Definition] = NULL, [SortOrder] = 675.10 WHERE [Code] = 'ras' END +SET [Description] = 'Tegali', [Definition] = NULL, [SortOrder] = 6757.00 WHERE [Code] = 'ras' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kps') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kps', 'Tehit', NULL, 675.20) END +VALUES ('kps', 'Tehit', NULL, 6758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tehit', [Definition] = NULL, [SortOrder] = 675.20 WHERE [Code] = 'kps' END +SET [Description] = 'Tehit', [Definition] = NULL, [SortOrder] = 6758.00 WHERE [Code] = 'kps' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teh', 'Tehuelche', NULL, 675.30) END +VALUES ('teh', 'Tehuelche', NULL, 6759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tehuelche', [Definition] = NULL, [SortOrder] = 675.30 WHERE [Code] = 'teh' END +SET [Description] = 'Tehuelche', [Definition] = NULL, [SortOrder] = 6759.00 WHERE [Code] = 'teh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztt', 'Tejalapan Zapotec', NULL, 675.40) END +VALUES ('ztt', 'Tejalapan Zapotec', NULL, 6760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tejalapan Zapotec', [Definition] = NULL, [SortOrder] = 675.40 WHERE [Code] = 'ztt' END +SET [Description] = 'Tejalapan Zapotec', [Definition] = NULL, [SortOrder] = 6760.00 WHERE [Code] = 'ztt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ebo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ebo', 'Teke-Ebo', NULL, 675.50) END +VALUES ('ebo', 'Teke-Ebo', NULL, 6761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Ebo', [Definition] = NULL, [SortOrder] = 675.50 WHERE [Code] = 'ebo' END +SET [Description] = 'Teke-Ebo', [Definition] = NULL, [SortOrder] = 6761.00 WHERE [Code] = 'ebo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifm', 'Teke-Fuumu', NULL, 675.60) END +VALUES ('ifm', 'Teke-Fuumu', NULL, 6762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Fuumu', [Definition] = NULL, [SortOrder] = 675.60 WHERE [Code] = 'ifm' END +SET [Description] = 'Teke-Fuumu', [Definition] = NULL, [SortOrder] = 6762.00 WHERE [Code] = 'ifm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kkw', 'Teke-Kukuya', NULL, 675.70) END +VALUES ('kkw', 'Teke-Kukuya', NULL, 6763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Kukuya', [Definition] = NULL, [SortOrder] = 675.70 WHERE [Code] = 'kkw' END +SET [Description] = 'Teke-Kukuya', [Definition] = NULL, [SortOrder] = 6763.00 WHERE [Code] = 'kkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lli', 'Teke-Laali', NULL, 675.80) END +VALUES ('lli', 'Teke-Laali', NULL, 6764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Laali', [Definition] = NULL, [SortOrder] = 675.80 WHERE [Code] = 'lli' END +SET [Description] = 'Teke-Laali', [Definition] = NULL, [SortOrder] = 6764.00 WHERE [Code] = 'lli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzu', 'Teke-Nzikou', NULL, 675.90) END +VALUES ('nzu', 'Teke-Nzikou', NULL, 6765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Nzikou', [Definition] = NULL, [SortOrder] = 675.90 WHERE [Code] = 'nzu' END +SET [Description] = 'Teke-Nzikou', [Definition] = NULL, [SortOrder] = 6765.00 WHERE [Code] = 'nzu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teg', 'Teke-Tege', NULL, 676.00) END +VALUES ('teg', 'Teke-Tege', NULL, 6766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Tege', [Definition] = NULL, [SortOrder] = 676.00 WHERE [Code] = 'teg' END +SET [Description] = 'Teke-Tege', [Definition] = NULL, [SortOrder] = 6766.00 WHERE [Code] = 'teg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyi', 'Teke-Tsaayi', NULL, 676.10) END +VALUES ('tyi', 'Teke-Tsaayi', NULL, 6767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Tsaayi', [Definition] = NULL, [SortOrder] = 676.10 WHERE [Code] = 'tyi' END +SET [Description] = 'Teke-Tsaayi', [Definition] = NULL, [SortOrder] = 6767.00 WHERE [Code] = 'tyi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyx', 'Teke-Tyee', NULL, 676.20) END +VALUES ('tyx', 'Teke-Tyee', NULL, 6768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teke-Tyee', [Definition] = NULL, [SortOrder] = 676.20 WHERE [Code] = 'tyx' END +SET [Description] = 'Teke-Tyee', [Definition] = NULL, [SortOrder] = 6768.00 WHERE [Code] = 'tyx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttc', 'Tektiteko', NULL, 676.30) END +VALUES ('ttc', 'Tektiteko', NULL, 6769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tektiteko', [Definition] = NULL, [SortOrder] = 676.30 WHERE [Code] = 'ttc' END +SET [Description] = 'Tektiteko', [Definition] = NULL, [SortOrder] = 6769.00 WHERE [Code] = 'ttc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvm', 'Tela-Masbuar', NULL, 676.40) END +VALUES ('tvm', 'Tela-Masbuar', NULL, 6770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tela-Masbuar', [Definition] = NULL, [SortOrder] = 676.40 WHERE [Code] = 'tvm' END +SET [Description] = 'Tela-Masbuar', [Definition] = NULL, [SortOrder] = 6770.00 WHERE [Code] = 'tvm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlf', 'Telefol', NULL, 676.50) END +VALUES ('tlf', 'Telefol', NULL, 6771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Telefol', [Definition] = NULL, [SortOrder] = 676.50 WHERE [Code] = 'tlf' END +SET [Description] = 'Telefol', [Definition] = NULL, [SortOrder] = 6771.00 WHERE [Code] = 'tlf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tel', 'Telugu', NULL, 676.60) END +VALUES ('tel', 'Telugu', NULL, 6772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Telugu', [Definition] = NULL, [SortOrder] = 676.60 WHERE [Code] = 'tel' END +SET [Description] = 'Telugu', [Definition] = NULL, [SortOrder] = 6772.00 WHERE [Code] = 'tel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdh', 'Tem', NULL, 676.70) END +VALUES ('kdh', 'Tem', NULL, 6773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tem', [Definition] = NULL, [SortOrder] = 676.70 WHERE [Code] = 'kdh' END +SET [Description] = 'Tem', [Definition] = NULL, [SortOrder] = 6773.00 WHERE [Code] = 'kdh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjo', 'Temacine Tamazight', NULL, 676.80) END +VALUES ('tjo', 'Temacine Tamazight', NULL, 6774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temacine Tamazight', [Definition] = NULL, [SortOrder] = 676.80 WHERE [Code] = 'tjo' END +SET [Description] = 'Temacine Tamazight', [Definition] = NULL, [SortOrder] = 6774.00 WHERE [Code] = 'tjo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhv', 'Temascaltepec Nahuatl', NULL, 676.90) END +VALUES ('nhv', 'Temascaltepec Nahuatl', NULL, 6775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temascaltepec Nahuatl', [Definition] = NULL, [SortOrder] = 676.90 WHERE [Code] = 'nhv' END +SET [Description] = 'Temascaltepec Nahuatl', [Definition] = NULL, [SortOrder] = 6775.00 WHERE [Code] = 'nhv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqb', 'Tembé', NULL, 677.00) END +VALUES ('tqb', 'Tembé', NULL, 6776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tembé', [Definition] = NULL, [SortOrder] = 677.00 WHERE [Code] = 'tqb' END +SET [Description] = 'Tembé', [Definition] = NULL, [SortOrder] = 6776.00 WHERE [Code] = 'tqb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbt', 'Tembo (Kitembo)', NULL, 677.10) END +VALUES ('tbt', 'Tembo (Kitembo)', NULL, 6777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tembo (Kitembo)', [Definition] = NULL, [SortOrder] = 677.10 WHERE [Code] = 'tbt' END +SET [Description] = 'Tembo (Kitembo)', [Definition] = NULL, [SortOrder] = 6777.00 WHERE [Code] = 'tbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmv', 'Tembo (Motembo)', NULL, 677.20) END +VALUES ('tmv', 'Tembo (Motembo)', NULL, 6778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tembo (Motembo)', [Definition] = NULL, [SortOrder] = 677.20 WHERE [Code] = 'tmv' END +SET [Description] = 'Tembo (Motembo)', [Definition] = NULL, [SortOrder] = 6778.00 WHERE [Code] = 'tmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdo', 'Teme', NULL, 677.30) END +VALUES ('tdo', 'Teme', NULL, 6779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teme', [Definition] = NULL, [SortOrder] = 677.30 WHERE [Code] = 'tdo' END +SET [Description] = 'Teme', [Definition] = NULL, [SortOrder] = 6779.00 WHERE [Code] = 'tdo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teq', 'Temein', NULL, 677.40) END +VALUES ('teq', 'Temein', NULL, 6780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temein', [Definition] = NULL, [SortOrder] = 677.40 WHERE [Code] = 'teq' END +SET [Description] = 'Temein', [Definition] = NULL, [SortOrder] = 6780.00 WHERE [Code] = 'teq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soz', 'Temi', NULL, 677.50) END +VALUES ('soz', 'Temi', NULL, 6781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temi', [Definition] = NULL, [SortOrder] = 677.50 WHERE [Code] = 'soz' END +SET [Description] = 'Temi', [Definition] = NULL, [SortOrder] = 6781.00 WHERE [Code] = 'soz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tea', 'Temiar', NULL, 677.60) END +VALUES ('tea', 'Temiar', NULL, 6782.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temiar', [Definition] = NULL, [SortOrder] = 677.60 WHERE [Code] = 'tea' END +SET [Description] = 'Temiar', [Definition] = NULL, [SortOrder] = 6782.00 WHERE [Code] = 'tea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ott') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ott', 'Temoaya Otomi', NULL, 677.70) END +VALUES ('ott', 'Temoaya Otomi', NULL, 6783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temoaya Otomi', [Definition] = NULL, [SortOrder] = 677.70 WHERE [Code] = 'ott' END +SET [Description] = 'Temoaya Otomi', [Definition] = NULL, [SortOrder] = 6783.00 WHERE [Code] = 'ott' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmo', 'Temoq', NULL, 677.80) END +VALUES ('tmo', 'Temoq', NULL, 6784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temoq', [Definition] = NULL, [SortOrder] = 677.80 WHERE [Code] = 'tmo' END +SET [Description] = 'Temoq', [Definition] = NULL, [SortOrder] = 6784.00 WHERE [Code] = 'tmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmw', 'Temuan', NULL, 677.90) END +VALUES ('tmw', 'Temuan', NULL, 6785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Temuan', [Definition] = NULL, [SortOrder] = 677.90 WHERE [Code] = 'tmw' END +SET [Description] = 'Temuan', [Definition] = NULL, [SortOrder] = 6785.00 WHERE [Code] = 'tmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnz', 'Ten''edn', NULL, 678.00) END +VALUES ('tnz', 'Ten''edn', NULL, 6786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ten''edn', [Definition] = NULL, [SortOrder] = 678.00 WHERE [Code] = 'tnz' END +SET [Description] = 'Ten''edn', [Definition] = NULL, [SortOrder] = 6786.00 WHERE [Code] = 'tnz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'quw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('quw', 'Tena Lowland Quichua', NULL, 678.10) END +VALUES ('quw', 'Tena Lowland Quichua', NULL, 6787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tena Lowland Quichua', [Definition] = NULL, [SortOrder] = 678.10 WHERE [Code] = 'quw' END +SET [Description] = 'Tena Lowland Quichua', [Definition] = NULL, [SortOrder] = 6787.00 WHERE [Code] = 'quw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otn', 'Tenango Otomi', NULL, 678.20) END +VALUES ('otn', 'Tenango Otomi', NULL, 6788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenango Otomi', [Definition] = NULL, [SortOrder] = 678.20 WHERE [Code] = 'otn' END +SET [Description] = 'Tenango Otomi', [Definition] = NULL, [SortOrder] = 6788.00 WHERE [Code] = 'otn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtk', 'Tene Kan Dogon', NULL, 678.30) END +VALUES ('dtk', 'Tene Kan Dogon', NULL, 6789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tene Kan Dogon', [Definition] = NULL, [SortOrder] = 678.30 WHERE [Code] = 'dtk' END +SET [Description] = 'Tene Kan Dogon', [Definition] = NULL, [SortOrder] = 6789.00 WHERE [Code] = 'dtk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vkt', 'Tenggarong Kutai Malay', NULL, 678.40) END +VALUES ('vkt', 'Tenggarong Kutai Malay', NULL, 6790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenggarong Kutai Malay', [Definition] = NULL, [SortOrder] = 678.40 WHERE [Code] = 'vkt' END +SET [Description] = 'Tenggarong Kutai Malay', [Definition] = NULL, [SortOrder] = 6790.00 WHERE [Code] = 'vkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tes') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tes', 'Tengger', NULL, 678.50) END +VALUES ('tes', 'Tengger', NULL, 6791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tengger', [Definition] = NULL, [SortOrder] = 678.50 WHERE [Code] = 'tes' END +SET [Description] = 'Tengger', [Definition] = NULL, [SortOrder] = 6791.00 WHERE [Code] = 'tes' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pah', 'Tenharim', NULL, 678.60) END +VALUES ('pah', 'Tenharim', NULL, 6792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenharim', [Definition] = NULL, [SortOrder] = 678.60 WHERE [Code] = 'pah' END +SET [Description] = 'Tenharim', [Definition] = NULL, [SortOrder] = 6792.00 WHERE [Code] = 'pah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqn', 'Tenino', NULL, 678.70) END +VALUES ('tqn', 'Tenino', NULL, 6793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenino', [Definition] = NULL, [SortOrder] = 678.70 WHERE [Code] = 'tqn' END +SET [Description] = 'Tenino', [Definition] = NULL, [SortOrder] = 6793.00 WHERE [Code] = 'tqn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tns', 'Tenis', NULL, 678.80) END +VALUES ('tns', 'Tenis', NULL, 6794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tenis', [Definition] = NULL, [SortOrder] = 678.80 WHERE [Code] = 'tns' END +SET [Description] = 'Tenis', [Definition] = NULL, [SortOrder] = 6794.00 WHERE [Code] = 'tns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tex') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tex', 'Tennet', NULL, 678.90) END +VALUES ('tex', 'Tennet', NULL, 6795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tennet', [Definition] = NULL, [SortOrder] = 678.90 WHERE [Code] = 'tex' END +SET [Description] = 'Tennet', [Definition] = NULL, [SortOrder] = 6795.00 WHERE [Code] = 'tex' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tio', 'Teop', NULL, 679.00) END +VALUES ('tio', 'Teop', NULL, 6796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teop', [Definition] = NULL, [SortOrder] = 679.00 WHERE [Code] = 'tio' END +SET [Description] = 'Teop', [Definition] = NULL, [SortOrder] = 6796.00 WHERE [Code] = 'tio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tev', 'Teor', NULL, 679.10) END +VALUES ('tev', 'Teor', NULL, 6797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teor', [Definition] = NULL, [SortOrder] = 679.10 WHERE [Code] = 'tev' END +SET [Description] = 'Teor', [Definition] = NULL, [SortOrder] = 6797.00 WHERE [Code] = 'tev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tep', 'Tepecano', NULL, 679.20) END +VALUES ('tep', 'Tepecano', NULL, 6798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepecano', [Definition] = NULL, [SortOrder] = 679.20 WHERE [Code] = 'tep' END +SET [Description] = 'Tepecano', [Definition] = NULL, [SortOrder] = 6798.00 WHERE [Code] = 'tep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cnt', 'Tepetotutla Chinantec', NULL, 679.30) END +VALUES ('cnt', 'Tepetotutla Chinantec', NULL, 6799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepetotutla Chinantec', [Definition] = NULL, [SortOrder] = 679.30 WHERE [Code] = 'cnt' END +SET [Description] = 'Tepetotutla Chinantec', [Definition] = NULL, [SortOrder] = 6799.00 WHERE [Code] = 'cnt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cux', 'Tepeuxila Cuicatec', NULL, 679.40) END +VALUES ('cux', 'Tepeuxila Cuicatec', NULL, 6800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepeuxila Cuicatec', [Definition] = NULL, [SortOrder] = 679.40 WHERE [Code] = 'cux' END +SET [Description] = 'Tepeuxila Cuicatec', [Definition] = NULL, [SortOrder] = 6800.00 WHERE [Code] = 'cux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cte') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cte', 'Tepinapa Chinantec', NULL, 679.50) END +VALUES ('cte', 'Tepinapa Chinantec', NULL, 6801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepinapa Chinantec', [Definition] = NULL, [SortOrder] = 679.50 WHERE [Code] = 'cte' END +SET [Description] = 'Tepinapa Chinantec', [Definition] = NULL, [SortOrder] = 6801.00 WHERE [Code] = 'cte' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ted') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ted', 'Tepo Krumen', NULL, 679.60) END +VALUES ('ted', 'Tepo Krumen', NULL, 6802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tepo Krumen', [Definition] = NULL, [SortOrder] = 679.60 WHERE [Code] = 'ted' END +SET [Description] = 'Tepo Krumen', [Definition] = NULL, [SortOrder] = 6802.00 WHERE [Code] = 'ted' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjt', 'Ter Sami', NULL, 679.70) END +VALUES ('sjt', 'Ter Sami', NULL, 6803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ter Sami', [Definition] = NULL, [SortOrder] = 679.70 WHERE [Code] = 'sjt' END +SET [Description] = 'Ter Sami', [Definition] = NULL, [SortOrder] = 6803.00 WHERE [Code] = 'sjt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttr', 'Tera', NULL, 679.80) END +VALUES ('ttr', 'Tera', NULL, 6804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tera', [Definition] = NULL, [SortOrder] = 679.80 WHERE [Code] = 'ttr' END +SET [Description] = 'Tera', [Definition] = NULL, [SortOrder] = 6804.00 WHERE [Code] = 'ttr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trb', 'Terebu', NULL, 679.90) END +VALUES ('trb', 'Terebu', NULL, 6805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Terebu', [Definition] = NULL, [SortOrder] = 679.90 WHERE [Code] = 'trb' END +SET [Description] = 'Terebu', [Definition] = NULL, [SortOrder] = 6805.00 WHERE [Code] = 'trb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buo', 'Terei', NULL, 680.00) END +VALUES ('buo', 'Terei', NULL, 6806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Terei', [Definition] = NULL, [SortOrder] = 680.00 WHERE [Code] = 'buo' END +SET [Description] = 'Terei', [Definition] = NULL, [SortOrder] = 6806.00 WHERE [Code] = 'buo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ter') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ter', 'Tereno', NULL, 680.10) END +VALUES ('ter', 'Tereno', NULL, 6807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tereno', [Definition] = NULL, [SortOrder] = 680.10 WHERE [Code] = 'ter' END +SET [Description] = 'Tereno', [Definition] = NULL, [SortOrder] = 6807.00 WHERE [Code] = 'ter' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tef') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tef', 'Teressa', NULL, 680.20) END +VALUES ('tef', 'Teressa', NULL, 6808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teressa', [Definition] = NULL, [SortOrder] = 680.20 WHERE [Code] = 'tef' END +SET [Description] = 'Teressa', [Definition] = NULL, [SortOrder] = 6808.00 WHERE [Code] = 'tef' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twg', 'Tereweng', NULL, 680.30) END +VALUES ('twg', 'Tereweng', NULL, 6809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tereweng', [Definition] = NULL, [SortOrder] = 680.30 WHERE [Code] = 'twg' END +SET [Description] = 'Tereweng', [Definition] = NULL, [SortOrder] = 6809.00 WHERE [Code] = 'twg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tfr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tfr', 'Teribe', NULL, 680.40) END +VALUES ('tfr', 'Teribe', NULL, 6810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teribe', [Definition] = NULL, [SortOrder] = 680.40 WHERE [Code] = 'tfr' END +SET [Description] = 'Teribe', [Definition] = NULL, [SortOrder] = 6810.00 WHERE [Code] = 'tfr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tec', 'Terik', NULL, 680.50) END +VALUES ('tec', 'Terik', NULL, 6811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Terik', [Definition] = NULL, [SortOrder] = 680.50 WHERE [Code] = 'tec' END +SET [Description] = 'Terik', [Definition] = NULL, [SortOrder] = 6811.00 WHERE [Code] = 'tec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twu', 'Termanu', NULL, 680.60) END +VALUES ('twu', 'Termanu', NULL, 6812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Termanu', [Definition] = NULL, [SortOrder] = 680.60 WHERE [Code] = 'twu' END +SET [Description] = 'Termanu', [Definition] = NULL, [SortOrder] = 6812.00 WHERE [Code] = 'twu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tft') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tft', 'Ternate', NULL, 680.70) END +VALUES ('tft', 'Ternate', NULL, 6813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ternate', [Definition] = NULL, [SortOrder] = 680.70 WHERE [Code] = 'tft' END +SET [Description] = 'Ternate', [Definition] = NULL, [SortOrder] = 6813.00 WHERE [Code] = 'tft' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmg', 'Ternateño', NULL, 680.80) END +VALUES ('tmg', 'Ternateño', NULL, 6814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ternateño', [Definition] = NULL, [SortOrder] = 680.80 WHERE [Code] = 'tmg' END +SET [Description] = 'Ternateño', [Definition] = NULL, [SortOrder] = 6814.00 WHERE [Code] = 'tmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkg', 'Tesaka Malagasy', NULL, 680.90) END +VALUES ('tkg', 'Tesaka Malagasy', NULL, 6815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tesaka Malagasy', [Definition] = NULL, [SortOrder] = 680.90 WHERE [Code] = 'tkg' END +SET [Description] = 'Tesaka Malagasy', [Definition] = NULL, [SortOrder] = 6815.00 WHERE [Code] = 'tkg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'keg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('keg', 'Tese', NULL, 681.00) END +VALUES ('keg', 'Tese', NULL, 6816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tese', [Definition] = NULL, [SortOrder] = 681.00 WHERE [Code] = 'keg' END +SET [Description] = 'Tese', [Definition] = NULL, [SortOrder] = 6816.00 WHERE [Code] = 'keg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twc', 'Teshenawa', NULL, 681.10) END +VALUES ('twc', 'Teshenawa', NULL, 6817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teshenawa', [Definition] = NULL, [SortOrder] = 681.10 WHERE [Code] = 'twc' END +SET [Description] = 'Teshenawa', [Definition] = NULL, [SortOrder] = 6817.00 WHERE [Code] = 'twc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teo', 'Teso', NULL, 681.20) END +VALUES ('teo', 'Teso', NULL, 6818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teso', [Definition] = NULL, [SortOrder] = 681.20 WHERE [Code] = 'teo' END +SET [Description] = 'Teso', [Definition] = NULL, [SortOrder] = 6818.00 WHERE [Code] = 'teo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tll', 'Tetela', NULL, 681.30) END +VALUES ('tll', 'Tetela', NULL, 6819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetela', [Definition] = NULL, [SortOrder] = 681.30 WHERE [Code] = 'tll' END +SET [Description] = 'Tetela', [Definition] = NULL, [SortOrder] = 6819.00 WHERE [Code] = 'tll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhg', 'Tetelcingo Nahuatl', NULL, 681.40) END +VALUES ('nhg', 'Tetelcingo Nahuatl', NULL, 6820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetelcingo Nahuatl', [Definition] = NULL, [SortOrder] = 681.40 WHERE [Code] = 'nhg' END +SET [Description] = 'Tetelcingo Nahuatl', [Definition] = NULL, [SortOrder] = 6820.00 WHERE [Code] = 'nhg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'teb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('teb', 'Tetete', NULL, 681.50) END +VALUES ('teb', 'Tetete', NULL, 6821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetete', [Definition] = NULL, [SortOrder] = 681.50 WHERE [Code] = 'teb' END +SET [Description] = 'Tetete', [Definition] = NULL, [SortOrder] = 6821.00 WHERE [Code] = 'teb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tez') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tez', 'Tetserret', NULL, 681.60) END +VALUES ('tez', 'Tetserret', NULL, 6822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetserret', [Definition] = NULL, [SortOrder] = 681.60 WHERE [Code] = 'tez' END +SET [Description] = 'Tetserret', [Definition] = NULL, [SortOrder] = 6822.00 WHERE [Code] = 'tez' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tet', 'Tetum', NULL, 681.70) END +VALUES ('tet', 'Tetum', NULL, 6823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetum', [Definition] = NULL, [SortOrder] = 681.70 WHERE [Code] = 'tet' END +SET [Description] = 'Tetum', [Definition] = NULL, [SortOrder] = 6823.00 WHERE [Code] = 'tet' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdt', 'Tetun Dili', NULL, 681.80) END +VALUES ('tdt', 'Tetun Dili', NULL, 6824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tetun Dili', [Definition] = NULL, [SortOrder] = 681.80 WHERE [Code] = 'tdt' END +SET [Description] = 'Tetun Dili', [Definition] = NULL, [SortOrder] = 6824.00 WHERE [Code] = 'tdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cut', 'Teutila Cuicatec', NULL, 681.90) END +VALUES ('cut', 'Teutila Cuicatec', NULL, 6825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Teutila Cuicatec', [Definition] = NULL, [SortOrder] = 681.90 WHERE [Code] = 'cut' END +SET [Description] = 'Teutila Cuicatec', [Definition] = NULL, [SortOrder] = 6825.00 WHERE [Code] = 'cut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twe', 'Tewa (Indonesia)', NULL, 682.00) END +VALUES ('twe', 'Tewa (Indonesia)', NULL, 6826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tewa (Indonesia)', [Definition] = NULL, [SortOrder] = 682.00 WHERE [Code] = 'twe' END +SET [Description] = 'Tewa (Indonesia)', [Definition] = NULL, [SortOrder] = 6826.00 WHERE [Code] = 'twe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tew', 'Tewa (USA)', NULL, 682.10) END +VALUES ('tew', 'Tewa (USA)', NULL, 6827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tewa (USA)', [Definition] = NULL, [SortOrder] = 682.10 WHERE [Code] = 'tew' END +SET [Description] = 'Tewa (USA)', [Definition] = NULL, [SortOrder] = 6827.00 WHERE [Code] = 'tew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twx', 'Tewe', NULL, 682.20) END +VALUES ('twx', 'Tewe', NULL, 6828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tewe', [Definition] = NULL, [SortOrder] = 682.20 WHERE [Code] = 'twx' END +SET [Description] = 'Tewe', [Definition] = NULL, [SortOrder] = 6828.00 WHERE [Code] = 'twx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otx', 'Texcatepec Otomi', NULL, 682.30) END +VALUES ('otx', 'Texcatepec Otomi', NULL, 6829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Texcatepec Otomi', [Definition] = NULL, [SortOrder] = 682.30 WHERE [Code] = 'otx' END +SET [Description] = 'Texcatepec Otomi', [Definition] = NULL, [SortOrder] = 6829.00 WHERE [Code] = 'otx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'poq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('poq', 'Texistepec Popoluca', NULL, 682.40) END +VALUES ('poq', 'Texistepec Popoluca', NULL, 6830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Texistepec Popoluca', [Definition] = NULL, [SortOrder] = 682.40 WHERE [Code] = 'poq' END +SET [Description] = 'Texistepec Popoluca', [Definition] = NULL, [SortOrder] = 6830.00 WHERE [Code] = 'poq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpz', 'Texmelucan Zapotec', NULL, 682.50) END +VALUES ('zpz', 'Texmelucan Zapotec', NULL, 6831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Texmelucan Zapotec', [Definition] = NULL, [SortOrder] = 682.50 WHERE [Code] = 'zpz' END +SET [Description] = 'Texmelucan Zapotec', [Definition] = NULL, [SortOrder] = 6831.00 WHERE [Code] = 'zpz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxb', 'Tezoatlán Mixtec', NULL, 682.60) END +VALUES ('mxb', 'Tezoatlán Mixtec', NULL, 6832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tezoatlán Mixtec', [Definition] = NULL, [SortOrder] = 682.60 WHERE [Code] = 'mxb' END +SET [Description] = 'Tezoatlán Mixtec', [Definition] = NULL, [SortOrder] = 6832.00 WHERE [Code] = 'mxb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thy', 'Tha', NULL, 682.70) END +VALUES ('thy', 'Tha', NULL, 6833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tha', [Definition] = NULL, [SortOrder] = 682.70 WHERE [Code] = 'thy' END +SET [Description] = 'Tha', [Definition] = NULL, [SortOrder] = 6833.00 WHERE [Code] = 'thy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thn', 'Thachanadan', NULL, 682.80) END +VALUES ('thn', 'Thachanadan', NULL, 6834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thachanadan', [Definition] = NULL, [SortOrder] = 682.80 WHERE [Code] = 'thn' END +SET [Description] = 'Thachanadan', [Definition] = NULL, [SortOrder] = 6834.00 WHERE [Code] = 'thn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcz', 'Thado Chin', NULL, 682.90) END +VALUES ('tcz', 'Thado Chin', NULL, 6835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thado Chin', [Definition] = NULL, [SortOrder] = 682.90 WHERE [Code] = 'tcz' END +SET [Description] = 'Thado Chin', [Definition] = NULL, [SortOrder] = 6835.00 WHERE [Code] = 'tcz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tha', 'Thai', NULL, 683.00) END +VALUES ('tha', 'Thai', NULL, 6836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thai', [Definition] = NULL, [SortOrder] = 683.00 WHERE [Code] = 'tha' END +SET [Description] = 'Thai', [Definition] = NULL, [SortOrder] = 6836.00 WHERE [Code] = 'tha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsq', 'Thai Sign Language', NULL, 683.10) END +VALUES ('tsq', 'Thai Sign Language', NULL, 6837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thai Sign Language', [Definition] = NULL, [SortOrder] = 683.10 WHERE [Code] = 'tsq' END +SET [Description] = 'Thai Sign Language', [Definition] = NULL, [SortOrder] = 6837.00 WHERE [Code] = 'tsq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'soa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('soa', 'Thai Song', NULL, 683.20) END +VALUES ('soa', 'Thai Song', NULL, 6838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thai Song', [Definition] = NULL, [SortOrder] = 683.20 WHERE [Code] = 'soa' END +SET [Description] = 'Thai Song', [Definition] = NULL, [SortOrder] = 6838.00 WHERE [Code] = 'soa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cth', 'Thaiphum Chin', NULL, 683.30) END +VALUES ('cth', 'Thaiphum Chin', NULL, 6839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thaiphum Chin', [Definition] = NULL, [SortOrder] = 683.30 WHERE [Code] = 'cth' END +SET [Description] = 'Thaiphum Chin', [Definition] = NULL, [SortOrder] = 6839.00 WHERE [Code] = 'cth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ths') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ths', 'Thakali', NULL, 683.40) END +VALUES ('ths', 'Thakali', NULL, 6840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thakali', [Definition] = NULL, [SortOrder] = 683.40 WHERE [Code] = 'ths' END +SET [Description] = 'Thakali', [Definition] = NULL, [SortOrder] = 6840.00 WHERE [Code] = 'ths' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nki', 'Thangal Naga', NULL, 683.50) END +VALUES ('nki', 'Thangal Naga', NULL, 6841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thangal Naga', [Definition] = NULL, [SortOrder] = 683.50 WHERE [Code] = 'nki' END +SET [Description] = 'Thangal Naga', [Definition] = NULL, [SortOrder] = 6841.00 WHERE [Code] = 'nki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thf', 'Thangmi', NULL, 683.60) END +VALUES ('thf', 'Thangmi', NULL, 6842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thangmi', [Definition] = NULL, [SortOrder] = 683.60 WHERE [Code] = 'thf' END +SET [Description] = 'Thangmi', [Definition] = NULL, [SortOrder] = 6842.00 WHERE [Code] = 'thf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssf', 'Thao', NULL, 683.70) END +VALUES ('ssf', 'Thao', NULL, 6843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thao', [Definition] = NULL, [SortOrder] = 683.70 WHERE [Code] = 'ssf' END +SET [Description] = 'Thao', [Definition] = NULL, [SortOrder] = 6843.00 WHERE [Code] = 'ssf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thk', 'Tharaka', NULL, 683.80) END +VALUES ('thk', 'Tharaka', NULL, 6844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tharaka', [Definition] = NULL, [SortOrder] = 683.80 WHERE [Code] = 'thk' END +SET [Description] = 'Tharaka', [Definition] = NULL, [SortOrder] = 6844.00 WHERE [Code] = 'thk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtv', 'Thawa', NULL, 683.90) END +VALUES ('xtv', 'Thawa', NULL, 6845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thawa', [Definition] = NULL, [SortOrder] = 683.90 WHERE [Code] = 'xtv' END +SET [Description] = 'Thawa', [Definition] = NULL, [SortOrder] = 6845.00 WHERE [Code] = 'xtv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'typ') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('typ', 'Thaypan', NULL, 684.00) END +VALUES ('typ', 'Thaypan', NULL, 6846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thaypan', [Definition] = NULL, [SortOrder] = 684.00 WHERE [Code] = 'typ' END +SET [Description] = 'Thaypan', [Definition] = NULL, [SortOrder] = 6846.00 WHERE [Code] = 'typ' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iin', 'Thiin', NULL, 684.10) END +VALUES ('iin', 'Thiin', NULL, 6847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thiin', [Definition] = NULL, [SortOrder] = 684.10 WHERE [Code] = 'iin' END +SET [Description] = 'Thiin', [Definition] = NULL, [SortOrder] = 6847.00 WHERE [Code] = 'iin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tou', 'Tho', NULL, 684.20) END +VALUES ('tou', 'Tho', NULL, 6848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tho', [Definition] = NULL, [SortOrder] = 684.20 WHERE [Code] = 'tou' END +SET [Description] = 'Tho', [Definition] = NULL, [SortOrder] = 6848.00 WHERE [Code] = 'tou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thp', 'Thompson', NULL, 684.30) END +VALUES ('thp', 'Thompson', NULL, 6849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thompson', [Definition] = NULL, [SortOrder] = 684.30 WHERE [Code] = 'thp' END +SET [Description] = 'Thompson', [Definition] = NULL, [SortOrder] = 6849.00 WHERE [Code] = 'thp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ytp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ytp', 'Thopho', NULL, 684.40) END +VALUES ('ytp', 'Thopho', NULL, 6850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thopho', [Definition] = NULL, [SortOrder] = 684.40 WHERE [Code] = 'ytp' END +SET [Description] = 'Thopho', [Definition] = NULL, [SortOrder] = 6850.00 WHERE [Code] = 'ytp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txh', 'Thracian', NULL, 684.50) END +VALUES ('txh', 'Thracian', NULL, 6851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thracian', [Definition] = NULL, [SortOrder] = 684.50 WHERE [Code] = 'txh' END +SET [Description] = 'Thracian', [Definition] = NULL, [SortOrder] = 6851.00 WHERE [Code] = 'txh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyl', 'Thu Lao', NULL, 684.60) END +VALUES ('tyl', 'Thu Lao', NULL, 6852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thu Lao', [Definition] = NULL, [SortOrder] = 684.60 WHERE [Code] = 'tyl' END +SET [Description] = 'Thu Lao', [Definition] = NULL, [SortOrder] = 6852.00 WHERE [Code] = 'tyl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdh', 'Thulung', NULL, 684.70) END +VALUES ('tdh', 'Thulung', NULL, 6853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thulung', [Definition] = NULL, [SortOrder] = 684.70 WHERE [Code] = 'tdh' END +SET [Description] = 'Thulung', [Definition] = NULL, [SortOrder] = 6853.00 WHERE [Code] = 'tdh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lth', 'Thur', NULL, 684.80) END +VALUES ('lth', 'Thur', NULL, 6854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thur', [Definition] = NULL, [SortOrder] = 684.80 WHERE [Code] = 'lth' END +SET [Description] = 'Thur', [Definition] = NULL, [SortOrder] = 6854.00 WHERE [Code] = 'lth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'thu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('thu', 'Thuri', NULL, 684.90) END +VALUES ('thu', 'Thuri', NULL, 6855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Thuri', [Definition] = NULL, [SortOrder] = 684.90 WHERE [Code] = 'thu' END +SET [Description] = 'Thuri', [Definition] = NULL, [SortOrder] = 6855.00 WHERE [Code] = 'thu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ahi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ahi', 'Tiagbamrin Aizi', NULL, 685.00) END +VALUES ('ahi', 'Tiagbamrin Aizi', NULL, 6856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiagbamrin Aizi', [Definition] = NULL, [SortOrder] = 685.00 WHERE [Code] = 'ahi' END +SET [Description] = 'Tiagbamrin Aizi', [Definition] = NULL, [SortOrder] = 6856.00 WHERE [Code] = 'ahi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mnl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mnl', 'Tiale', NULL, 685.10) END +VALUES ('mnl', 'Tiale', NULL, 6857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiale', [Definition] = NULL, [SortOrder] = 685.10 WHERE [Code] = 'mnl' END +SET [Description] = 'Tiale', [Definition] = NULL, [SortOrder] = 6857.00 WHERE [Code] = 'mnl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbj', 'Tiang', NULL, 685.20) END +VALUES ('tbj', 'Tiang', NULL, 6858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiang', [Definition] = NULL, [SortOrder] = 685.20 WHERE [Code] = 'tbj' END +SET [Description] = 'Tiang', [Definition] = NULL, [SortOrder] = 6858.00 WHERE [Code] = 'tbj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ngy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ngy', 'Tibea', NULL, 685.30) END +VALUES ('ngy', 'Tibea', NULL, 6859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tibea', [Definition] = NULL, [SortOrder] = 685.30 WHERE [Code] = 'ngy' END +SET [Description] = 'Tibea', [Definition] = NULL, [SortOrder] = 6859.00 WHERE [Code] = 'ngy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bod', 'Tibetan', NULL, 685.40) END +VALUES ('bod', 'Tibetan', NULL, 6860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tibetan', [Definition] = NULL, [SortOrder] = 685.40 WHERE [Code] = 'bod' END +SET [Description] = 'Tibetan', [Definition] = NULL, [SortOrder] = 6860.00 WHERE [Code] = 'bod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lsn', 'Tibetan Sign Language', NULL, 685.50) END +VALUES ('lsn', 'Tibetan Sign Language', NULL, 6861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tibetan Sign Language', [Definition] = NULL, [SortOrder] = 685.50 WHERE [Code] = 'lsn' END +SET [Description] = 'Tibetan Sign Language', [Definition] = NULL, [SortOrder] = 6861.00 WHERE [Code] = 'lsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcn', 'Tichurong', NULL, 685.60) END +VALUES ('tcn', 'Tichurong', NULL, 6862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tichurong', [Definition] = NULL, [SortOrder] = 685.60 WHERE [Code] = 'tcn' END +SET [Description] = 'Tichurong', [Definition] = NULL, [SortOrder] = 6862.00 WHERE [Code] = 'tcn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tca', 'Ticuna', NULL, 685.70) END +VALUES ('tca', 'Ticuna', NULL, 6863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ticuna', [Definition] = NULL, [SortOrder] = 685.70 WHERE [Code] = 'tca' END +SET [Description] = 'Ticuna', [Definition] = NULL, [SortOrder] = 6863.00 WHERE [Code] = 'tca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtx', 'Tidaá Mixtec', NULL, 685.80) END +VALUES ('mtx', 'Tidaá Mixtec', NULL, 6864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tidaá Mixtec', [Definition] = NULL, [SortOrder] = 685.80 WHERE [Code] = 'mtx' END +SET [Description] = 'Tidaá Mixtec', [Definition] = NULL, [SortOrder] = 6864.00 WHERE [Code] = 'mtx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tia', 'Tidikelt Tamazight', NULL, 685.90) END +VALUES ('tia', 'Tidikelt Tamazight', NULL, 6865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tidikelt Tamazight', [Definition] = NULL, [SortOrder] = 685.90 WHERE [Code] = 'tia' END +SET [Description] = 'Tidikelt Tamazight', [Definition] = NULL, [SortOrder] = 6865.00 WHERE [Code] = 'tia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvo', 'Tidore', NULL, 686.00) END +VALUES ('tvo', 'Tidore', NULL, 6866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tidore', [Definition] = NULL, [SortOrder] = 686.00 WHERE [Code] = 'tvo' END +SET [Description] = 'Tidore', [Definition] = NULL, [SortOrder] = 6866.00 WHERE [Code] = 'tvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiq', 'Tiéfo', NULL, 686.10) END +VALUES ('tiq', 'Tiéfo', NULL, 6867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiéfo', [Definition] = NULL, [SortOrder] = 686.10 WHERE [Code] = 'tiq' END +SET [Description] = 'Tiéfo', [Definition] = NULL, [SortOrder] = 6867.00 WHERE [Code] = 'tiq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boo', 'Tiemacèwè Bozo', NULL, 686.20) END +VALUES ('boo', 'Tiemacèwè Bozo', NULL, 6868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiemacèwè Bozo', [Definition] = NULL, [SortOrder] = 686.20 WHERE [Code] = 'boo' END +SET [Description] = 'Tiemacèwè Bozo', [Definition] = NULL, [SortOrder] = 6868.00 WHERE [Code] = 'boo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tii', 'Tiene', NULL, 686.30) END +VALUES ('tii', 'Tiene', NULL, 6869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiene', [Definition] = NULL, [SortOrder] = 686.30 WHERE [Code] = 'tii' END +SET [Description] = 'Tiene', [Definition] = NULL, [SortOrder] = 6869.00 WHERE [Code] = 'tii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'boz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('boz', 'Tiéyaxo Bozo', NULL, 686.40) END +VALUES ('boz', 'Tiéyaxo Bozo', NULL, 6870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiéyaxo Bozo', [Definition] = NULL, [SortOrder] = 686.40 WHERE [Code] = 'boz' END +SET [Description] = 'Tiéyaxo Bozo', [Definition] = NULL, [SortOrder] = 6870.00 WHERE [Code] = 'boz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tif', 'Tifal', NULL, 686.50) END +VALUES ('tif', 'Tifal', NULL, 6871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tifal', [Definition] = NULL, [SortOrder] = 686.50 WHERE [Code] = 'tif' END +SET [Description] = 'Tifal', [Definition] = NULL, [SortOrder] = 6871.00 WHERE [Code] = 'tif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgc', 'Tigak', NULL, 686.60) END +VALUES ('tgc', 'Tigak', NULL, 6872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tigak', [Definition] = NULL, [SortOrder] = 686.60 WHERE [Code] = 'tgc' END +SET [Description] = 'Tigak', [Definition] = NULL, [SortOrder] = 6872.00 WHERE [Code] = 'tgc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nza', 'Tigon Mbembe', NULL, 686.70) END +VALUES ('nza', 'Tigon Mbembe', NULL, 6873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tigon Mbembe', [Definition] = NULL, [SortOrder] = 686.70 WHERE [Code] = 'nza' END +SET [Description] = 'Tigon Mbembe', [Definition] = NULL, [SortOrder] = 6873.00 WHERE [Code] = 'nza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tig', 'Tigre', NULL, 686.80) END +VALUES ('tig', 'Tigre', NULL, 6874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tigre', [Definition] = NULL, [SortOrder] = 686.80 WHERE [Code] = 'tig' END +SET [Description] = 'Tigre', [Definition] = NULL, [SortOrder] = 6874.00 WHERE [Code] = 'tig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tir', 'Tigrinya', NULL, 686.90) END +VALUES ('tir', 'Tigrinya', NULL, 6875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tigrinya', [Definition] = NULL, [SortOrder] = 686.90 WHERE [Code] = 'tir' END +SET [Description] = 'Tigrinya', [Definition] = NULL, [SortOrder] = 6875.00 WHERE [Code] = 'tir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txq', 'Tii', NULL, 687.00) END +VALUES ('txq', 'Tii', NULL, 6876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tii', [Definition] = NULL, [SortOrder] = 687.00 WHERE [Code] = 'txq' END +SET [Description] = 'Tii', [Definition] = NULL, [SortOrder] = 6876.00 WHERE [Code] = 'txq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtl', 'Tijaltepec Mixtec', NULL, 687.10) END +VALUES ('xtl', 'Tijaltepec Mixtec', NULL, 6877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tijaltepec Mixtec', [Definition] = NULL, [SortOrder] = 687.10 WHERE [Code] = 'xtl' END +SET [Description] = 'Tijaltepec Mixtec', [Definition] = NULL, [SortOrder] = 6877.00 WHERE [Code] = 'xtl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tik', 'Tikar', NULL, 687.20) END +VALUES ('tik', 'Tikar', NULL, 6878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tikar', [Definition] = NULL, [SortOrder] = 687.20 WHERE [Code] = 'tik' END +SET [Description] = 'Tikar', [Definition] = NULL, [SortOrder] = 6878.00 WHERE [Code] = 'tik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkp', 'Tikopia', NULL, 687.30) END +VALUES ('tkp', 'Tikopia', NULL, 6879.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tikopia', [Definition] = NULL, [SortOrder] = 687.30 WHERE [Code] = 'tkp' END +SET [Description] = 'Tikopia', [Definition] = NULL, [SortOrder] = 6879.00 WHERE [Code] = 'tkp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'otl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('otl', 'Tilapa Otomi', NULL, 687.40) END +VALUES ('otl', 'Tilapa Otomi', NULL, 6880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tilapa Otomi', [Definition] = NULL, [SortOrder] = 687.40 WHERE [Code] = 'otl' END +SET [Description] = 'Tilapa Otomi', [Definition] = NULL, [SortOrder] = 6880.00 WHERE [Code] = 'otl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'til') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('til', 'Tillamook', NULL, 687.50) END +VALUES ('til', 'Tillamook', NULL, 6881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tillamook', [Definition] = NULL, [SortOrder] = 687.50 WHERE [Code] = 'til' END +SET [Description] = 'Tillamook', [Definition] = NULL, [SortOrder] = 6881.00 WHERE [Code] = 'til' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zts', 'Tilquiapan Zapotec', NULL, 687.60) END +VALUES ('zts', 'Tilquiapan Zapotec', NULL, 6882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tilquiapan Zapotec', [Definition] = NULL, [SortOrder] = 687.60 WHERE [Code] = 'zts' END +SET [Description] = 'Tilquiapan Zapotec', [Definition] = NULL, [SortOrder] = 6882.00 WHERE [Code] = 'zts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tij', 'Tilung', NULL, 687.70) END +VALUES ('tij', 'Tilung', NULL, 6883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tilung', [Definition] = NULL, [SortOrder] = 687.70 WHERE [Code] = 'tij' END +SET [Description] = 'Tilung', [Definition] = NULL, [SortOrder] = 6883.00 WHERE [Code] = 'tij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tms', 'Tima', NULL, 687.80) END +VALUES ('tms', 'Tima', NULL, 6884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tima', [Definition] = NULL, [SortOrder] = 687.80 WHERE [Code] = 'tms' END +SET [Description] = 'Tima', [Definition] = NULL, [SortOrder] = 6884.00 WHERE [Code] = 'tms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tim', 'Timbe', NULL, 687.90) END +VALUES ('tim', 'Timbe', NULL, 6885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timbe', [Definition] = NULL, [SortOrder] = 687.90 WHERE [Code] = 'tim' END +SET [Description] = 'Timbe', [Definition] = NULL, [SortOrder] = 6885.00 WHERE [Code] = 'tim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tem', 'Timne', NULL, 688.00) END +VALUES ('tem', 'Timne', NULL, 6886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timne', [Definition] = NULL, [SortOrder] = 688.00 WHERE [Code] = 'tem' END +SET [Description] = 'Timne', [Definition] = NULL, [SortOrder] = 6886.00 WHERE [Code] = 'tem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvy', 'Timor Pidgin', NULL, 688.10) END +VALUES ('tvy', 'Timor Pidgin', NULL, 6887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timor Pidgin', [Definition] = NULL, [SortOrder] = 688.10 WHERE [Code] = 'tvy' END +SET [Description] = 'Timor Pidgin', [Definition] = NULL, [SortOrder] = 6887.00 WHERE [Code] = 'tvy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjm', 'Timucua', NULL, 688.20) END +VALUES ('tjm', 'Timucua', NULL, 6888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timucua', [Definition] = NULL, [SortOrder] = 688.20 WHERE [Code] = 'tjm' END +SET [Description] = 'Timucua', [Definition] = NULL, [SortOrder] = 6888.00 WHERE [Code] = 'tjm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tih', 'Timugon Murut', NULL, 688.30) END +VALUES ('tih', 'Timugon Murut', NULL, 6889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Timugon Murut', [Definition] = NULL, [SortOrder] = 688.30 WHERE [Code] = 'tih' END +SET [Description] = 'Timugon Murut', [Definition] = NULL, [SortOrder] = 6889.00 WHERE [Code] = 'tih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbf', 'Tinani', NULL, 688.40) END +VALUES ('lbf', 'Tinani', NULL, 6890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tinani', [Definition] = NULL, [SortOrder] = 688.40 WHERE [Code] = 'lbf' END +SET [Description] = 'Tinani', [Definition] = NULL, [SortOrder] = 6890.00 WHERE [Code] = 'lbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tin', 'Tindi', NULL, 688.50) END +VALUES ('tin', 'Tindi', NULL, 6891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tindi', [Definition] = NULL, [SortOrder] = 688.50 WHERE [Code] = 'tin' END +SET [Description] = 'Tindi', [Definition] = NULL, [SortOrder] = 6891.00 WHERE [Code] = 'tin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgv', 'Tingui-Boto', NULL, 688.60) END +VALUES ('tgv', 'Tingui-Boto', NULL, 6892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tingui-Boto', [Definition] = NULL, [SortOrder] = 688.60 WHERE [Code] = 'tgv' END +SET [Description] = 'Tingui-Boto', [Definition] = NULL, [SortOrder] = 6892.00 WHERE [Code] = 'tgv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tit', 'Tinigua', NULL, 688.70) END +VALUES ('tit', 'Tinigua', NULL, 6893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tinigua', [Definition] = NULL, [SortOrder] = 688.70 WHERE [Code] = 'tit' END +SET [Description] = 'Tinigua', [Definition] = NULL, [SortOrder] = 6893.00 WHERE [Code] = 'tit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpz', 'Tinputz', NULL, 688.80) END +VALUES ('tpz', 'Tinputz', NULL, 6894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tinputz', [Definition] = NULL, [SortOrder] = 688.80 WHERE [Code] = 'tpz' END +SET [Description] = 'Tinputz', [Definition] = NULL, [SortOrder] = 6894.00 WHERE [Code] = 'tpz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpe', 'Tippera', NULL, 688.90) END +VALUES ('tpe', 'Tippera', NULL, 6895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tippera', [Definition] = NULL, [SortOrder] = 688.90 WHERE [Code] = 'tpe' END +SET [Description] = 'Tippera', [Definition] = NULL, [SortOrder] = 6895.00 WHERE [Code] = 'tpe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tic', 'Tira', NULL, 689.00) END +VALUES ('tic', 'Tira', NULL, 6896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tira', [Definition] = NULL, [SortOrder] = 689.00 WHERE [Code] = 'tic' END +SET [Description] = 'Tira', [Definition] = NULL, [SortOrder] = 6896.00 WHERE [Code] = 'tic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tra', 'Tirahi', NULL, 689.10) END +VALUES ('tra', 'Tirahi', NULL, 6897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tirahi', [Definition] = NULL, [SortOrder] = 689.10 WHERE [Code] = 'tra' END +SET [Description] = 'Tirahi', [Definition] = NULL, [SortOrder] = 6897.00 WHERE [Code] = 'tra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tde', 'Tiranige Diga Dogon', NULL, 689.20) END +VALUES ('tde', 'Tiranige Diga Dogon', NULL, 6898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiranige Diga Dogon', [Definition] = NULL, [SortOrder] = 689.20 WHERE [Code] = 'tde' END +SET [Description] = 'Tiranige Diga Dogon', [Definition] = NULL, [SortOrder] = 6898.00 WHERE [Code] = 'tde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cir', 'Tiri', NULL, 689.30) END +VALUES ('cir', 'Tiri', NULL, 6899.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiri', [Definition] = NULL, [SortOrder] = 689.30 WHERE [Code] = 'cir' END +SET [Description] = 'Tiri', [Definition] = NULL, [SortOrder] = 6899.00 WHERE [Code] = 'cir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suq', 'Tirmaga-Chai Suri', NULL, 689.40) END +VALUES ('suq', 'Tirmaga-Chai Suri', NULL, 6900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tirmaga-Chai Suri', [Definition] = NULL, [SortOrder] = 689.40 WHERE [Code] = 'suq' END +SET [Description] = 'Tirmaga-Chai Suri', [Definition] = NULL, [SortOrder] = 6900.00 WHERE [Code] = 'suq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiy', 'Tiruray', NULL, 689.50) END +VALUES ('tiy', 'Tiruray', NULL, 6901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiruray', [Definition] = NULL, [SortOrder] = 689.50 WHERE [Code] = 'tiy' END +SET [Description] = 'Tiruray', [Definition] = NULL, [SortOrder] = 6901.00 WHERE [Code] = 'tiy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdq', 'Tita', NULL, 689.60) END +VALUES ('tdq', 'Tita', NULL, 6902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tita', [Definition] = NULL, [SortOrder] = 689.60 WHERE [Code] = 'tdq' END +SET [Description] = 'Tita', [Definition] = NULL, [SortOrder] = 6902.00 WHERE [Code] = 'tdq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttv', 'Titan', NULL, 689.70) END +VALUES ('ttv', 'Titan', NULL, 6903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Titan', [Definition] = NULL, [SortOrder] = 689.70 WHERE [Code] = 'ttv' END +SET [Description] = 'Titan', [Definition] = NULL, [SortOrder] = 6903.00 WHERE [Code] = 'ttv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiv', 'Tiv', NULL, 689.80) END +VALUES ('tiv', 'Tiv', NULL, 6904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiv', [Definition] = NULL, [SortOrder] = 689.80 WHERE [Code] = 'tiv' END +SET [Description] = 'Tiv', [Definition] = NULL, [SortOrder] = 6904.00 WHERE [Code] = 'tiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lax', 'Tiwa', NULL, 689.90) END +VALUES ('lax', 'Tiwa', NULL, 6905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiwa', [Definition] = NULL, [SortOrder] = 689.90 WHERE [Code] = 'lax' END +SET [Description] = 'Tiwa', [Definition] = NULL, [SortOrder] = 6905.00 WHERE [Code] = 'lax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tiw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tiw', 'Tiwi', NULL, 690.00) END +VALUES ('tiw', 'Tiwi', NULL, 6906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiwi', [Definition] = NULL, [SortOrder] = 690.00 WHERE [Code] = 'tiw' END +SET [Description] = 'Tiwi', [Definition] = NULL, [SortOrder] = 6906.00 WHERE [Code] = 'tiw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyy', 'Tiyaa', NULL, 690.10) END +VALUES ('tyy', 'Tiyaa', NULL, 6907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tiyaa', [Definition] = NULL, [SortOrder] = 690.10 WHERE [Code] = 'tyy' END +SET [Description] = 'Tiyaa', [Definition] = NULL, [SortOrder] = 6907.00 WHERE [Code] = 'tyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjj', 'Tjungundji', NULL, 690.20) END +VALUES ('tjj', 'Tjungundji', NULL, 6908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tjungundji', [Definition] = NULL, [SortOrder] = 690.20 WHERE [Code] = 'tjj' END +SET [Description] = 'Tjungundji', [Definition] = NULL, [SortOrder] = 6908.00 WHERE [Code] = 'tjj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjp', 'Tjupany', NULL, 690.30) END +VALUES ('tjp', 'Tjupany', NULL, 6909.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tjupany', [Definition] = NULL, [SortOrder] = 690.30 WHERE [Code] = 'tjp' END +SET [Description] = 'Tjupany', [Definition] = NULL, [SortOrder] = 6909.00 WHERE [Code] = 'tjp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tju', 'Tjurruru', NULL, 690.40) END +VALUES ('tju', 'Tjurruru', NULL, 6910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tjurruru', [Definition] = NULL, [SortOrder] = 690.40 WHERE [Code] = 'tju' END +SET [Description] = 'Tjurruru', [Definition] = NULL, [SortOrder] = 6910.00 WHERE [Code] = 'tju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpt', 'Tlachichilco Tepehua', NULL, 690.50) END +VALUES ('tpt', 'Tlachichilco Tepehua', NULL, 6911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlachichilco Tepehua', [Definition] = NULL, [SortOrder] = 690.50 WHERE [Code] = 'tpt' END +SET [Description] = 'Tlachichilco Tepehua', [Definition] = NULL, [SortOrder] = 6911.00 WHERE [Code] = 'tpt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpl', 'Tlacoapa Me''phaa', NULL, 690.60) END +VALUES ('tpl', 'Tlacoapa Me''phaa', NULL, 6912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlacoapa Me''phaa', [Definition] = NULL, [SortOrder] = 690.60 WHERE [Code] = 'tpl' END +SET [Description] = 'Tlacoapa Me''phaa', [Definition] = NULL, [SortOrder] = 6912.00 WHERE [Code] = 'tpl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctl', 'Tlacoatzintepec Chinantec', NULL, 690.70) END +VALUES ('ctl', 'Tlacoatzintepec Chinantec', NULL, 6913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlacoatzintepec Chinantec', [Definition] = NULL, [SortOrder] = 690.70 WHERE [Code] = 'ctl' END +SET [Description] = 'Tlacoatzintepec Chinantec', [Definition] = NULL, [SortOrder] = 6913.00 WHERE [Code] = 'ctl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpk', 'Tlacolulita Zapotec', NULL, 690.80) END +VALUES ('zpk', 'Tlacolulita Zapotec', NULL, 6914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlacolulita Zapotec', [Definition] = NULL, [SortOrder] = 690.80 WHERE [Code] = 'zpk' END +SET [Description] = 'Tlacolulita Zapotec', [Definition] = NULL, [SortOrder] = 6914.00 WHERE [Code] = 'zpk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mxp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mxp', 'Tlahuitoltepec Mixe', NULL, 690.90) END +VALUES ('mxp', 'Tlahuitoltepec Mixe', NULL, 6915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlahuitoltepec Mixe', [Definition] = NULL, [SortOrder] = 690.90 WHERE [Code] = 'mxp' END +SET [Description] = 'Tlahuitoltepec Mixe', [Definition] = NULL, [SortOrder] = 6915.00 WHERE [Code] = 'mxp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nuz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nuz', 'Tlamacazapa Nahuatl', NULL, 691.00) END +VALUES ('nuz', 'Tlamacazapa Nahuatl', NULL, 6916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlamacazapa Nahuatl', [Definition] = NULL, [SortOrder] = 691.00 WHERE [Code] = 'nuz' END +SET [Description] = 'Tlamacazapa Nahuatl', [Definition] = NULL, [SortOrder] = 6916.00 WHERE [Code] = 'nuz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqh', 'Tlazoyaltepec Mixtec', NULL, 691.10) END +VALUES ('mqh', 'Tlazoyaltepec Mixtec', NULL, 6917.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlazoyaltepec Mixtec', [Definition] = NULL, [SortOrder] = 691.10 WHERE [Code] = 'mqh' END +SET [Description] = 'Tlazoyaltepec Mixtec', [Definition] = NULL, [SortOrder] = 6917.00 WHERE [Code] = 'mqh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tli', 'Tlingit', NULL, 691.20) END +VALUES ('tli', 'Tlingit', NULL, 6918.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tlingit', [Definition] = NULL, [SortOrder] = 691.20 WHERE [Code] = 'tli' END +SET [Description] = 'Tlingit', [Definition] = NULL, [SortOrder] = 6918.00 WHERE [Code] = 'tli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toz', 'To', NULL, 691.30) END +VALUES ('toz', 'To', NULL, 6919.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'To', [Definition] = NULL, [SortOrder] = 691.30 WHERE [Code] = 'toz' END +SET [Description] = 'To', [Definition] = NULL, [SortOrder] = 6919.00 WHERE [Code] = 'toz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlu', 'To''abaita', NULL, 691.40) END +VALUES ('mlu', 'To''abaita', NULL, 6920.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'To''abaita', [Definition] = NULL, [SortOrder] = 691.40 WHERE [Code] = 'mlu' END +SET [Description] = 'To''abaita', [Definition] = NULL, [SortOrder] = 6920.00 WHERE [Code] = 'mlu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqo', 'Toaripi', NULL, 691.50) END +VALUES ('tqo', 'Toaripi', NULL, 6921.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toaripi', [Definition] = NULL, [SortOrder] = 691.50 WHERE [Code] = 'tqo' END +SET [Description] = 'Toaripi', [Definition] = NULL, [SortOrder] = 6921.00 WHERE [Code] = 'tqo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tob', 'Toba', NULL, 691.60) END +VALUES ('tob', 'Toba', NULL, 6922.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toba', [Definition] = NULL, [SortOrder] = 691.60 WHERE [Code] = 'tob' END +SET [Description] = 'Toba', [Definition] = NULL, [SortOrder] = 6922.00 WHERE [Code] = 'tob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmf', 'Toba-Maskoy', NULL, 691.70) END +VALUES ('tmf', 'Toba-Maskoy', NULL, 6923.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toba-Maskoy', [Definition] = NULL, [SortOrder] = 691.70 WHERE [Code] = 'tmf' END +SET [Description] = 'Toba-Maskoy', [Definition] = NULL, [SortOrder] = 6923.00 WHERE [Code] = 'tmf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgh', 'Tobagonian Creole English', NULL, 691.80) END +VALUES ('tgh', 'Tobagonian Creole English', NULL, 6924.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobagonian Creole English', [Definition] = NULL, [SortOrder] = 691.80 WHERE [Code] = 'tgh' END +SET [Description] = 'Tobagonian Creole English', [Definition] = NULL, [SortOrder] = 6924.00 WHERE [Code] = 'tgh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tng', 'Tobanga', NULL, 691.90) END +VALUES ('tng', 'Tobanga', NULL, 6925.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobanga', [Definition] = NULL, [SortOrder] = 691.90 WHERE [Code] = 'tng' END +SET [Description] = 'Tobanga', [Definition] = NULL, [SortOrder] = 6925.00 WHERE [Code] = 'tng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tti') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tti', 'Tobati', NULL, 692.00) END +VALUES ('tti', 'Tobati', NULL, 6926.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobati', [Definition] = NULL, [SortOrder] = 692.00 WHERE [Code] = 'tti' END +SET [Description] = 'Tobati', [Definition] = NULL, [SortOrder] = 6926.00 WHERE [Code] = 'tti' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlb', 'Tobelo', NULL, 692.10) END +VALUES ('tlb', 'Tobelo', NULL, 6927.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobelo', [Definition] = NULL, [SortOrder] = 692.10 WHERE [Code] = 'tlb' END +SET [Description] = 'Tobelo', [Definition] = NULL, [SortOrder] = 6927.00 WHERE [Code] = 'tlb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tox', 'Tobian', NULL, 692.20) END +VALUES ('tox', 'Tobian', NULL, 6928.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobian', [Definition] = NULL, [SortOrder] = 692.20 WHERE [Code] = 'tox' END +SET [Description] = 'Tobian', [Definition] = NULL, [SortOrder] = 6928.00 WHERE [Code] = 'tox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgb', 'Tobilung', NULL, 692.30) END +VALUES ('tgb', 'Tobilung', NULL, 6929.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobilung', [Definition] = NULL, [SortOrder] = 692.30 WHERE [Code] = 'tgb' END +SET [Description] = 'Tobilung', [Definition] = NULL, [SortOrder] = 6929.00 WHERE [Code] = 'tgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbv', 'Tobo', NULL, 692.40) END +VALUES ('tbv', 'Tobo', NULL, 6930.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tobo', [Definition] = NULL, [SortOrder] = 692.40 WHERE [Code] = 'tbv' END +SET [Description] = 'Tobo', [Definition] = NULL, [SortOrder] = 6930.00 WHERE [Code] = 'tbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asu', 'Tocantins Asurini', NULL, 692.50) END +VALUES ('asu', 'Tocantins Asurini', NULL, 6931.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tocantins Asurini', [Definition] = NULL, [SortOrder] = 692.50 WHERE [Code] = 'asu' END +SET [Description] = 'Tocantins Asurini', [Definition] = NULL, [SortOrder] = 6931.00 WHERE [Code] = 'asu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'taz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('taz', 'Tocho', NULL, 692.60) END +VALUES ('taz', 'Tocho', NULL, 6932.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tocho', [Definition] = NULL, [SortOrder] = 692.60 WHERE [Code] = 'taz' END +SET [Description] = 'Tocho', [Definition] = NULL, [SortOrder] = 6932.00 WHERE [Code] = 'taz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcx', 'Toda', NULL, 692.70) END +VALUES ('tcx', 'Toda', NULL, 6933.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toda', [Definition] = NULL, [SortOrder] = 692.70 WHERE [Code] = 'tcx' END +SET [Description] = 'Toda', [Definition] = NULL, [SortOrder] = 6933.00 WHERE [Code] = 'tcx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdr', 'Todrah', NULL, 692.80) END +VALUES ('tdr', 'Todrah', NULL, 6934.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Todrah', [Definition] = NULL, [SortOrder] = 692.80 WHERE [Code] = 'tdr' END +SET [Description] = 'Todrah', [Definition] = NULL, [SortOrder] = 6934.00 WHERE [Code] = 'tdr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlg', 'Tofanma', NULL, 692.90) END +VALUES ('tlg', 'Tofanma', NULL, 6935.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tofanma', [Definition] = NULL, [SortOrder] = 692.90 WHERE [Code] = 'tlg' END +SET [Description] = 'Tofanma', [Definition] = NULL, [SortOrder] = 6935.00 WHERE [Code] = 'tlg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tfi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tfi', 'Tofin Gbe', NULL, 693.00) END +VALUES ('tfi', 'Tofin Gbe', NULL, 6936.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tofin Gbe', [Definition] = NULL, [SortOrder] = 693.00 WHERE [Code] = 'tfi' END +SET [Description] = 'Tofin Gbe', [Definition] = NULL, [SortOrder] = 6936.00 WHERE [Code] = 'tfi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tor', 'Togbo-Vara Banda', NULL, 693.10) END +VALUES ('tor', 'Togbo-Vara Banda', NULL, 6937.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Togbo-Vara Banda', [Definition] = NULL, [SortOrder] = 693.10 WHERE [Code] = 'tor' END +SET [Description] = 'Togbo-Vara Banda', [Definition] = NULL, [SortOrder] = 6937.00 WHERE [Code] = 'tor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgy', 'Togoyo', NULL, 693.20) END +VALUES ('tgy', 'Togoyo', NULL, 6938.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Togoyo', [Definition] = NULL, [SortOrder] = 693.20 WHERE [Code] = 'tgy' END +SET [Description] = 'Togoyo', [Definition] = NULL, [SortOrder] = 6938.00 WHERE [Code] = 'tgy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ood') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ood', 'Tohono O''odham', NULL, 693.30) END +VALUES ('ood', 'Tohono O''odham', NULL, 6939.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tohono O''odham', [Definition] = NULL, [SortOrder] = 693.30 WHERE [Code] = 'ood' END +SET [Description] = 'Tohono O''odham', [Definition] = NULL, [SortOrder] = 6939.00 WHERE [Code] = 'ood' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toj', 'Tojolabal', NULL, 693.40) END +VALUES ('toj', 'Tojolabal', NULL, 6940.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tojolabal', [Definition] = NULL, [SortOrder] = 693.40 WHERE [Code] = 'toj' END +SET [Description] = 'Tojolabal', [Definition] = NULL, [SortOrder] = 6940.00 WHERE [Code] = 'toj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpi', 'Tok Pisin', NULL, 693.50) END +VALUES ('tpi', 'Tok Pisin', NULL, 6941.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tok Pisin', [Definition] = NULL, [SortOrder] = 693.50 WHERE [Code] = 'tpi' END +SET [Description] = 'Tok Pisin', [Definition] = NULL, [SortOrder] = 6941.00 WHERE [Code] = 'tpi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zuh', 'Tokano', NULL, 693.60) END +VALUES ('zuh', 'Tokano', NULL, 6942.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tokano', [Definition] = NULL, [SortOrder] = 693.60 WHERE [Code] = 'zuh' END +SET [Description] = 'Tokano', [Definition] = NULL, [SortOrder] = 6942.00 WHERE [Code] = 'zuh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkl', 'Tokelau', NULL, 693.70) END +VALUES ('tkl', 'Tokelau', NULL, 6943.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tokelau', [Definition] = NULL, [SortOrder] = 693.70 WHERE [Code] = 'tkl' END +SET [Description] = 'Tokelau', [Definition] = NULL, [SortOrder] = 6943.00 WHERE [Code] = 'tkl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xto', 'Tokharian A', NULL, 693.80) END +VALUES ('xto', 'Tokharian A', NULL, 6944.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tokharian A', [Definition] = NULL, [SortOrder] = 693.80 WHERE [Code] = 'xto' END +SET [Description] = 'Tokharian A', [Definition] = NULL, [SortOrder] = 6944.00 WHERE [Code] = 'xto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txb', 'Tokharian B', NULL, 693.90) END +VALUES ('txb', 'Tokharian B', NULL, 6945.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tokharian B', [Definition] = NULL, [SortOrder] = 693.90 WHERE [Code] = 'txb' END +SET [Description] = 'Tokharian B', [Definition] = NULL, [SortOrder] = 6945.00 WHERE [Code] = 'txb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tok', 'Toki Pona', NULL, 694.00) END +VALUES ('tok', 'Toki Pona', NULL, 6946.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toki Pona', [Definition] = NULL, [SortOrder] = 694.00 WHERE [Code] = 'tok' END +SET [Description] = 'Toki Pona', [Definition] = NULL, [SortOrder] = 6946.00 WHERE [Code] = 'tok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkn', 'Toku-No-Shima', NULL, 694.10) END +VALUES ('tkn', 'Toku-No-Shima', NULL, 6947.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toku-No-Shima', [Definition] = NULL, [SortOrder] = 694.10 WHERE [Code] = 'tkn' END +SET [Description] = 'Toku-No-Shima', [Definition] = NULL, [SortOrder] = 6947.00 WHERE [Code] = 'tkn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jic', 'Tol', NULL, 694.20) END +VALUES ('jic', 'Tol', NULL, 6948.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tol', [Definition] = NULL, [SortOrder] = 694.20 WHERE [Code] = 'jic' END +SET [Description] = 'Tol', [Definition] = NULL, [SortOrder] = 6948.00 WHERE [Code] = 'jic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbw', 'Tolaki', NULL, 694.30) END +VALUES ('lbw', 'Tolaki', NULL, 6949.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tolaki', [Definition] = NULL, [SortOrder] = 694.30 WHERE [Code] = 'lbw' END +SET [Description] = 'Tolaki', [Definition] = NULL, [SortOrder] = 6949.00 WHERE [Code] = 'lbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlm', 'Tolomako', NULL, 694.40) END +VALUES ('tlm', 'Tolomako', NULL, 6950.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tolomako', [Definition] = NULL, [SortOrder] = 694.40 WHERE [Code] = 'tlm' END +SET [Description] = 'Tolomako', [Definition] = NULL, [SortOrder] = 6950.00 WHERE [Code] = 'tlm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tol', 'Tolowa', NULL, 694.50) END +VALUES ('tol', 'Tolowa', NULL, 6951.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tolowa', [Definition] = NULL, [SortOrder] = 694.50 WHERE [Code] = 'tol' END +SET [Description] = 'Tolowa', [Definition] = NULL, [SortOrder] = 6951.00 WHERE [Code] = 'tol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tod', 'Toma', NULL, 694.60) END +VALUES ('tod', 'Toma', NULL, 6952.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toma', [Definition] = NULL, [SortOrder] = 694.60 WHERE [Code] = 'tod' END +SET [Description] = 'Toma', [Definition] = NULL, [SortOrder] = 6952.00 WHERE [Code] = 'tod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdi', 'Tomadino', NULL, 694.70) END +VALUES ('tdi', 'Tomadino', NULL, 6953.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tomadino', [Definition] = NULL, [SortOrder] = 694.70 WHERE [Code] = 'tdi' END +SET [Description] = 'Tomadino', [Definition] = NULL, [SortOrder] = 6953.00 WHERE [Code] = 'tdi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttp', 'Tombelala', NULL, 694.80) END +VALUES ('ttp', 'Tombelala', NULL, 6954.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tombelala', [Definition] = NULL, [SortOrder] = 694.80 WHERE [Code] = 'ttp' END +SET [Description] = 'Tombelala', [Definition] = NULL, [SortOrder] = 6954.00 WHERE [Code] = 'ttp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txa', 'Tombonuo', NULL, 694.90) END +VALUES ('txa', 'Tombonuo', NULL, 6955.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tombonuo', [Definition] = NULL, [SortOrder] = 694.90 WHERE [Code] = 'txa' END +SET [Description] = 'Tombonuo', [Definition] = NULL, [SortOrder] = 6955.00 WHERE [Code] = 'txa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tom', 'Tombulu', NULL, 695.00) END +VALUES ('tom', 'Tombulu', NULL, 6956.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tombulu', [Definition] = NULL, [SortOrder] = 695.00 WHERE [Code] = 'tom' END +SET [Description] = 'Tombulu', [Definition] = NULL, [SortOrder] = 6956.00 WHERE [Code] = 'tom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txm', 'Tomini', NULL, 695.10) END +VALUES ('txm', 'Tomini', NULL, 6957.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tomini', [Definition] = NULL, [SortOrder] = 695.10 WHERE [Code] = 'txm' END +SET [Description] = 'Tomini', [Definition] = NULL, [SortOrder] = 6957.00 WHERE [Code] = 'txm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dto', 'Tommo So Dogon', NULL, 695.20) END +VALUES ('dto', 'Tommo So Dogon', NULL, 6958.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tommo So Dogon', [Definition] = NULL, [SortOrder] = 695.20 WHERE [Code] = 'dto' END +SET [Description] = 'Tommo So Dogon', [Definition] = NULL, [SortOrder] = 6958.00 WHERE [Code] = 'dto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtm', 'Tomo Kan Dogon', NULL, 695.30) END +VALUES ('dtm', 'Tomo Kan Dogon', NULL, 6959.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tomo Kan Dogon', [Definition] = NULL, [SortOrder] = 695.30 WHERE [Code] = 'dtm' END +SET [Description] = 'Tomo Kan Dogon', [Definition] = NULL, [SortOrder] = 6959.00 WHERE [Code] = 'dtm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqp', 'Tomoip', NULL, 695.40) END +VALUES ('tqp', 'Tomoip', NULL, 6960.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tomoip', [Definition] = NULL, [SortOrder] = 695.40 WHERE [Code] = 'tqp' END +SET [Description] = 'Tomoip', [Definition] = NULL, [SortOrder] = 6960.00 WHERE [Code] = 'tqp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdn', 'Tondano', NULL, 695.50) END +VALUES ('tdn', 'Tondano', NULL, 6961.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tondano', [Definition] = NULL, [SortOrder] = 695.50 WHERE [Code] = 'tdn' END +SET [Description] = 'Tondano', [Definition] = NULL, [SortOrder] = 6961.00 WHERE [Code] = 'tdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tst', 'Tondi Songway Kiini', NULL, 695.60) END +VALUES ('tst', 'Tondi Songway Kiini', NULL, 6962.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tondi Songway Kiini', [Definition] = NULL, [SortOrder] = 695.60 WHERE [Code] = 'tst' END +SET [Description] = 'Tondi Songway Kiini', [Definition] = NULL, [SortOrder] = 6962.00 WHERE [Code] = 'tst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tog', 'Tonga (Nyasa)', NULL, 695.70) END +VALUES ('tog', 'Tonga (Nyasa)', NULL, 6963.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonga (Nyasa)', [Definition] = NULL, [SortOrder] = 695.70 WHERE [Code] = 'tog' END +SET [Description] = 'Tonga (Nyasa)', [Definition] = NULL, [SortOrder] = 6963.00 WHERE [Code] = 'tog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ton') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ton', 'Tonga (Tonga Islands)', NULL, 695.80) END +VALUES ('ton', 'Tonga (Tonga Islands)', NULL, 6964.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonga (Tonga Islands)', [Definition] = NULL, [SortOrder] = 695.80 WHERE [Code] = 'ton' END +SET [Description] = 'Tonga (Tonga Islands)', [Definition] = NULL, [SortOrder] = 6964.00 WHERE [Code] = 'ton' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toi', 'Tonga (Zambia)', NULL, 695.90) END +VALUES ('toi', 'Tonga (Zambia)', NULL, 6965.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonga (Zambia)', [Definition] = NULL, [SortOrder] = 695.90 WHERE [Code] = 'toi' END +SET [Description] = 'Tonga (Zambia)', [Definition] = NULL, [SortOrder] = 6965.00 WHERE [Code] = 'toi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tny', 'Tongwe', NULL, 696.00) END +VALUES ('tny', 'Tongwe', NULL, 6966.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tongwe', [Definition] = NULL, [SortOrder] = 696.00 WHERE [Code] = 'tny' END +SET [Description] = 'Tongwe', [Definition] = NULL, [SortOrder] = 6966.00 WHERE [Code] = 'tny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjn', 'Tonjon', NULL, 696.10) END +VALUES ('tjn', 'Tonjon', NULL, 6967.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonjon', [Definition] = NULL, [SortOrder] = 696.10 WHERE [Code] = 'tjn' END +SET [Description] = 'Tonjon', [Definition] = NULL, [SortOrder] = 6967.00 WHERE [Code] = 'tjn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqw', 'Tonkawa', NULL, 696.20) END +VALUES ('tqw', 'Tonkawa', NULL, 6968.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonkawa', [Definition] = NULL, [SortOrder] = 696.20 WHERE [Code] = 'tqw' END +SET [Description] = 'Tonkawa', [Definition] = NULL, [SortOrder] = 6968.00 WHERE [Code] = 'tqw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnw', 'Tonsawang', NULL, 696.30) END +VALUES ('tnw', 'Tonsawang', NULL, 6969.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonsawang', [Definition] = NULL, [SortOrder] = 696.30 WHERE [Code] = 'tnw' END +SET [Description] = 'Tonsawang', [Definition] = NULL, [SortOrder] = 6969.00 WHERE [Code] = 'tnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txs', 'Tonsea', NULL, 696.40) END +VALUES ('txs', 'Tonsea', NULL, 6970.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tonsea', [Definition] = NULL, [SortOrder] = 696.40 WHERE [Code] = 'txs' END +SET [Description] = 'Tonsea', [Definition] = NULL, [SortOrder] = 6970.00 WHERE [Code] = 'txs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnt', 'Tontemboan', NULL, 696.50) END +VALUES ('tnt', 'Tontemboan', NULL, 6971.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tontemboan', [Definition] = NULL, [SortOrder] = 696.50 WHERE [Code] = 'tnt' END +SET [Description] = 'Tontemboan', [Definition] = NULL, [SortOrder] = 6971.00 WHERE [Code] = 'tnt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttj', 'Tooro', NULL, 696.60) END +VALUES ('ttj', 'Tooro', NULL, 6972.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tooro', [Definition] = NULL, [SortOrder] = 696.60 WHERE [Code] = 'ttj' END +SET [Description] = 'Tooro', [Definition] = NULL, [SortOrder] = 6972.00 WHERE [Code] = 'ttj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toy', 'Topoiyo', NULL, 696.70) END +VALUES ('toy', 'Topoiyo', NULL, 6973.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Topoiyo', [Definition] = NULL, [SortOrder] = 696.70 WHERE [Code] = 'toy' END +SET [Description] = 'Topoiyo', [Definition] = NULL, [SortOrder] = 6973.00 WHERE [Code] = 'toy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'toq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('toq', 'Toposa', NULL, 696.80) END +VALUES ('toq', 'Toposa', NULL, 6974.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toposa', [Definition] = NULL, [SortOrder] = 696.80 WHERE [Code] = 'toq' END +SET [Description] = 'Toposa', [Definition] = NULL, [SortOrder] = 6974.00 WHERE [Code] = 'toq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trz', 'Torá', NULL, 696.90) END +VALUES ('trz', 'Torá', NULL, 6975.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torá', [Definition] = NULL, [SortOrder] = 696.90 WHERE [Code] = 'trz' END +SET [Description] = 'Torá', [Definition] = NULL, [SortOrder] = 6975.00 WHERE [Code] = 'trz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sda', 'Toraja-Sa''dan', NULL, 697.00) END +VALUES ('sda', 'Toraja-Sa''dan', NULL, 6976.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toraja-Sa''dan', [Definition] = NULL, [SortOrder] = 697.00 WHERE [Code] = 'sda' END +SET [Description] = 'Toraja-Sa''dan', [Definition] = NULL, [SortOrder] = 6976.00 WHERE [Code] = 'sda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trj', 'Toram', NULL, 697.10) END +VALUES ('trj', 'Toram', NULL, 6977.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toram', [Definition] = NULL, [SortOrder] = 697.10 WHERE [Code] = 'trj' END +SET [Description] = 'Toram', [Definition] = NULL, [SortOrder] = 6977.00 WHERE [Code] = 'trj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttu', 'Torau', NULL, 697.20) END +VALUES ('ttu', 'Torau', NULL, 6978.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torau', [Definition] = NULL, [SortOrder] = 697.20 WHERE [Code] = 'ttu' END +SET [Description] = 'Torau', [Definition] = NULL, [SortOrder] = 6978.00 WHERE [Code] = 'ttu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdv', 'Toro', NULL, 697.30) END +VALUES ('tdv', 'Toro', NULL, 6979.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toro', [Definition] = NULL, [SortOrder] = 697.30 WHERE [Code] = 'tdv' END +SET [Description] = 'Toro', [Definition] = NULL, [SortOrder] = 6979.00 WHERE [Code] = 'tdv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dts', 'Toro So Dogon', NULL, 697.40) END +VALUES ('dts', 'Toro So Dogon', NULL, 6980.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toro So Dogon', [Definition] = NULL, [SortOrder] = 697.40 WHERE [Code] = 'dts' END +SET [Description] = 'Toro So Dogon', [Definition] = NULL, [SortOrder] = 6980.00 WHERE [Code] = 'dts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dtt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dtt', 'Toro Tegu Dogon', NULL, 697.50) END +VALUES ('dtt', 'Toro Tegu Dogon', NULL, 6981.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toro Tegu Dogon', [Definition] = NULL, [SortOrder] = 697.50 WHERE [Code] = 'dtt' END +SET [Description] = 'Toro Tegu Dogon', [Definition] = NULL, [SortOrder] = 6981.00 WHERE [Code] = 'dtt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tno', 'Toromono', NULL, 697.60) END +VALUES ('tno', 'Toromono', NULL, 6982.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toromono', [Definition] = NULL, [SortOrder] = 697.60 WHERE [Code] = 'tno' END +SET [Description] = 'Toromono', [Definition] = NULL, [SortOrder] = 6982.00 WHERE [Code] = 'tno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqr', 'Torona', NULL, 697.70) END +VALUES ('tqr', 'Torona', NULL, 6983.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torona', [Definition] = NULL, [SortOrder] = 697.70 WHERE [Code] = 'tqr' END +SET [Description] = 'Torona', [Definition] = NULL, [SortOrder] = 6983.00 WHERE [Code] = 'tqr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcs', 'Torres Strait Creole', NULL, 697.80) END +VALUES ('tcs', 'Torres Strait Creole', NULL, 6984.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torres Strait Creole', [Definition] = NULL, [SortOrder] = 697.80 WHERE [Code] = 'tcs' END +SET [Description] = 'Torres Strait Creole', [Definition] = NULL, [SortOrder] = 6984.00 WHERE [Code] = 'tcs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tei', 'Torricelli', NULL, 697.90) END +VALUES ('tei', 'Torricelli', NULL, 6985.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torricelli', [Definition] = NULL, [SortOrder] = 697.90 WHERE [Code] = 'tei' END +SET [Description] = 'Torricelli', [Definition] = NULL, [SortOrder] = 6985.00 WHERE [Code] = 'tei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trw', 'Torwali', NULL, 698.00) END +VALUES ('trw', 'Torwali', NULL, 6986.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Torwali', [Definition] = NULL, [SortOrder] = 698.00 WHERE [Code] = 'trw' END +SET [Description] = 'Torwali', [Definition] = NULL, [SortOrder] = 6986.00 WHERE [Code] = 'trw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'als') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('als', 'Tosk Albanian', NULL, 698.10) END +VALUES ('als', 'Tosk Albanian', NULL, 6987.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tosk Albanian', [Definition] = NULL, [SortOrder] = 698.10 WHERE [Code] = 'als' END +SET [Description] = 'Tosk Albanian', [Definition] = NULL, [SortOrder] = 6987.00 WHERE [Code] = 'als' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttl', 'Totela', NULL, 698.20) END +VALUES ('ttl', 'Totela', NULL, 6988.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totela', [Definition] = NULL, [SortOrder] = 698.20 WHERE [Code] = 'ttl' END +SET [Description] = 'Totela', [Definition] = NULL, [SortOrder] = 6988.00 WHERE [Code] = 'ttl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txo', 'Toto', NULL, 698.30) END +VALUES ('txo', 'Toto', NULL, 6989.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toto', [Definition] = NULL, [SortOrder] = 698.30 WHERE [Code] = 'txo' END +SET [Description] = 'Toto', [Definition] = NULL, [SortOrder] = 6989.00 WHERE [Code] = 'txo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txe', 'Totoli', NULL, 698.40) END +VALUES ('txe', 'Totoli', NULL, 6990.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totoli', [Definition] = NULL, [SortOrder] = 698.40 WHERE [Code] = 'txe' END +SET [Description] = 'Totoli', [Definition] = NULL, [SortOrder] = 6990.00 WHERE [Code] = 'txe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zph') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zph', 'Totomachapan Zapotec', NULL, 698.50) END +VALUES ('zph', 'Totomachapan Zapotec', NULL, 6991.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totomachapan Zapotec', [Definition] = NULL, [SortOrder] = 698.50 WHERE [Code] = 'zph' END +SET [Description] = 'Totomachapan Zapotec', [Definition] = NULL, [SortOrder] = 6991.00 WHERE [Code] = 'zph' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mto', 'Totontepec Mixe', NULL, 698.60) END +VALUES ('mto', 'Totontepec Mixe', NULL, 6992.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totontepec Mixe', [Definition] = NULL, [SortOrder] = 698.60 WHERE [Code] = 'mto' END +SET [Description] = 'Totontepec Mixe', [Definition] = NULL, [SortOrder] = 6992.00 WHERE [Code] = 'mto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttk', 'Totoro', NULL, 698.70) END +VALUES ('ttk', 'Totoro', NULL, 6993.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Totoro', [Definition] = NULL, [SortOrder] = 698.70 WHERE [Code] = 'ttk' END +SET [Description] = 'Totoro', [Definition] = NULL, [SortOrder] = 6993.00 WHERE [Code] = 'ttk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqu', 'Touo', NULL, 698.80) END +VALUES ('tqu', 'Touo', NULL, 6994.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Touo', [Definition] = NULL, [SortOrder] = 698.80 WHERE [Code] = 'tqu' END +SET [Description] = 'Touo', [Definition] = NULL, [SortOrder] = 6994.00 WHERE [Code] = 'tqu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'neb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('neb', 'Toura (Côte d''Ivoire)', NULL, 698.90) END +VALUES ('neb', 'Toura (Côte d''Ivoire)', NULL, 6995.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toura (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 698.90 WHERE [Code] = 'neb' END +SET [Description] = 'Toura (Côte d''Ivoire)', [Definition] = NULL, [SortOrder] = 6995.00 WHERE [Code] = 'neb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'don') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('don', 'Toura (Papua New Guinea)', NULL, 699.00) END +VALUES ('don', 'Toura (Papua New Guinea)', NULL, 6996.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Toura (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 699.00 WHERE [Code] = 'don' END +SET [Description] = 'Toura (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 6996.00 WHERE [Code] = 'don' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttn', 'Towei', NULL, 699.10) END +VALUES ('ttn', 'Towei', NULL, 6997.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Towei', [Definition] = NULL, [SortOrder] = 699.10 WHERE [Code] = 'ttn' END +SET [Description] = 'Towei', [Definition] = NULL, [SortOrder] = 6997.00 WHERE [Code] = 'ttn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtg', 'Transalpine Gaulish', NULL, 699.20) END +VALUES ('xtg', 'Transalpine Gaulish', NULL, 6998.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Transalpine Gaulish', [Definition] = NULL, [SortOrder] = 699.20 WHERE [Code] = 'xtg' END +SET [Description] = 'Transalpine Gaulish', [Definition] = NULL, [SortOrder] = 6998.00 WHERE [Code] = 'xtg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmd', 'Traveller Danish', NULL, 699.30) END +VALUES ('rmd', 'Traveller Danish', NULL, 6999.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Traveller Danish', [Definition] = NULL, [SortOrder] = 699.30 WHERE [Code] = 'rmd' END +SET [Description] = 'Traveller Danish', [Definition] = NULL, [SortOrder] = 6999.00 WHERE [Code] = 'rmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmg', 'Traveller Norwegian', NULL, 699.40) END +VALUES ('rmg', 'Traveller Norwegian', NULL, 7000.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Traveller Norwegian', [Definition] = NULL, [SortOrder] = 699.40 WHERE [Code] = 'rmg' END +SET [Description] = 'Traveller Norwegian', [Definition] = NULL, [SortOrder] = 7000.00 WHERE [Code] = 'rmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trl', 'Traveller Scottish', NULL, 699.50) END +VALUES ('trl', 'Traveller Scottish', NULL, 7001.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Traveller Scottish', [Definition] = NULL, [SortOrder] = 699.50 WHERE [Code] = 'trl' END +SET [Description] = 'Traveller Scottish', [Definition] = NULL, [SortOrder] = 7001.00 WHERE [Code] = 'trl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trm', 'Tregami', NULL, 699.60) END +VALUES ('trm', 'Tregami', NULL, 7002.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tregami', [Definition] = NULL, [SortOrder] = 699.60 WHERE [Code] = 'trm' END +SET [Description] = 'Tregami', [Definition] = NULL, [SortOrder] = 7002.00 WHERE [Code] = 'trm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tme', 'Tremembé', NULL, 699.70) END +VALUES ('tme', 'Tremembé', NULL, 7003.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tremembé', [Definition] = NULL, [SortOrder] = 699.70 WHERE [Code] = 'tme' END +SET [Description] = 'Tremembé', [Definition] = NULL, [SortOrder] = 7003.00 WHERE [Code] = 'tme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'stg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('stg', 'Trieng', NULL, 699.80) END +VALUES ('stg', 'Trieng', NULL, 7004.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trieng', [Definition] = NULL, [SortOrder] = 699.80 WHERE [Code] = 'stg' END +SET [Description] = 'Trieng', [Definition] = NULL, [SortOrder] = 7004.00 WHERE [Code] = 'stg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tip') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tip', 'Trimuris', NULL, 699.90) END +VALUES ('tip', 'Trimuris', NULL, 7005.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trimuris', [Definition] = NULL, [SortOrder] = 699.90 WHERE [Code] = 'tip' END +SET [Description] = 'Trimuris', [Definition] = NULL, [SortOrder] = 7005.00 WHERE [Code] = 'tip' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tgq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tgq', 'Tring', NULL, 700.00) END +VALUES ('tgq', 'Tring', NULL, 7006.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tring', [Definition] = NULL, [SortOrder] = 700.00 WHERE [Code] = 'tgq' END +SET [Description] = 'Tring', [Definition] = NULL, [SortOrder] = 7006.00 WHERE [Code] = 'tgq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trx', 'Tringgus-Sembaan Bidayuh', NULL, 700.10) END +VALUES ('trx', 'Tringgus-Sembaan Bidayuh', NULL, 7007.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tringgus-Sembaan Bidayuh', [Definition] = NULL, [SortOrder] = 700.10 WHERE [Code] = 'trx' END +SET [Description] = 'Tringgus-Sembaan Bidayuh', [Definition] = NULL, [SortOrder] = 7007.00 WHERE [Code] = 'trx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lst', 'Trinidad and Tobago Sign Language', NULL, 700.20) END +VALUES ('lst', 'Trinidad and Tobago Sign Language', NULL, 7008.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trinidad and Tobago Sign Language', [Definition] = NULL, [SortOrder] = 700.20 WHERE [Code] = 'lst' END +SET [Description] = 'Trinidad and Tobago Sign Language', [Definition] = NULL, [SortOrder] = 7008.00 WHERE [Code] = 'lst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trf', 'Trinidadian Creole English', NULL, 700.30) END +VALUES ('trf', 'Trinidadian Creole English', NULL, 7009.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trinidadian Creole English', [Definition] = NULL, [SortOrder] = 700.30 WHERE [Code] = 'trf' END +SET [Description] = 'Trinidadian Creole English', [Definition] = NULL, [SortOrder] = 7009.00 WHERE [Code] = 'trf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trn', 'Trinitario', NULL, 700.40) END +VALUES ('trn', 'Trinitario', NULL, 7010.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trinitario', [Definition] = NULL, [SortOrder] = 700.40 WHERE [Code] = 'trn' END +SET [Description] = 'Trinitario', [Definition] = NULL, [SortOrder] = 7010.00 WHERE [Code] = 'trn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tri', 'Trió', NULL, 700.50) END +VALUES ('tri', 'Trió', NULL, 7011.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trió', [Definition] = NULL, [SortOrder] = 700.50 WHERE [Code] = 'tri' END +SET [Description] = 'Trió', [Definition] = NULL, [SortOrder] = 7011.00 WHERE [Code] = 'tri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tka', 'Truká', NULL, 700.60) END +VALUES ('tka', 'Truká', NULL, 7012.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Truká', [Definition] = NULL, [SortOrder] = 700.60 WHERE [Code] = 'tka' END +SET [Description] = 'Truká', [Definition] = NULL, [SortOrder] = 7012.00 WHERE [Code] = 'tka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpy', 'Trumai', NULL, 700.70) END +VALUES ('tpy', 'Trumai', NULL, 7013.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Trumai', [Definition] = NULL, [SortOrder] = 700.70 WHERE [Code] = 'tpy' END +SET [Description] = 'Trumai', [Definition] = NULL, [SortOrder] = 7013.00 WHERE [Code] = 'tpy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsl', 'Ts''ün-Lao', NULL, 700.80) END +VALUES ('tsl', 'Ts''ün-Lao', NULL, 7014.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ts''ün-Lao', [Definition] = NULL, [SortOrder] = 700.80 WHERE [Code] = 'tsl' END +SET [Description] = 'Ts''ün-Lao', [Definition] = NULL, [SortOrder] = 7014.00 WHERE [Code] = 'tsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsa', 'Tsaangi', NULL, 700.90) END +VALUES ('tsa', 'Tsaangi', NULL, 7015.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsaangi', [Definition] = NULL, [SortOrder] = 700.90 WHERE [Code] = 'tsa' END +SET [Description] = 'Tsaangi', [Definition] = NULL, [SortOrder] = 7015.00 WHERE [Code] = 'tsa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkr', 'Tsakhur', NULL, 701.00) END +VALUES ('tkr', 'Tsakhur', NULL, 7016.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsakhur', [Definition] = NULL, [SortOrder] = 701.00 WHERE [Code] = 'tkr' END +SET [Description] = 'Tsakhur', [Definition] = NULL, [SortOrder] = 7016.00 WHERE [Code] = 'tkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsd', 'Tsakonian', NULL, 701.10) END +VALUES ('tsd', 'Tsakonian', NULL, 7017.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsakonian', [Definition] = NULL, [SortOrder] = 701.10 WHERE [Code] = 'tsd' END +SET [Description] = 'Tsakonian', [Definition] = NULL, [SortOrder] = 7017.00 WHERE [Code] = 'tsd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvz', 'Tsakwambo', NULL, 701.20) END +VALUES ('kvz', 'Tsakwambo', NULL, 7018.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsakwambo', [Definition] = NULL, [SortOrder] = 701.20 WHERE [Code] = 'kvz' END +SET [Description] = 'Tsakwambo', [Definition] = NULL, [SortOrder] = 7018.00 WHERE [Code] = 'kvz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsb', 'Tsamai', NULL, 701.30) END +VALUES ('tsb', 'Tsamai', NULL, 7019.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsamai', [Definition] = NULL, [SortOrder] = 701.30 WHERE [Code] = 'tsb' END +SET [Description] = 'Tsamai', [Definition] = NULL, [SortOrder] = 7019.00 WHERE [Code] = 'tsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'huq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('huq', 'Tsat', NULL, 701.40) END +VALUES ('huq', 'Tsat', NULL, 7020.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsat', [Definition] = NULL, [SortOrder] = 701.40 WHERE [Code] = 'huq' END +SET [Description] = 'Tsat', [Definition] = NULL, [SortOrder] = 7020.00 WHERE [Code] = 'huq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsk', 'Tseku', NULL, 701.50) END +VALUES ('tsk', 'Tseku', NULL, 7021.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tseku', [Definition] = NULL, [SortOrder] = 701.50 WHERE [Code] = 'tsk' END +SET [Description] = 'Tseku', [Definition] = NULL, [SortOrder] = 7021.00 WHERE [Code] = 'tsk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txc', 'Tsetsaut', NULL, 701.60) END +VALUES ('txc', 'Tsetsaut', NULL, 7022.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsetsaut', [Definition] = NULL, [SortOrder] = 701.60 WHERE [Code] = 'txc' END +SET [Description] = 'Tsetsaut', [Definition] = NULL, [SortOrder] = 7022.00 WHERE [Code] = 'txc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsj', 'Tshangla', NULL, 701.70) END +VALUES ('tsj', 'Tshangla', NULL, 7023.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tshangla', [Definition] = NULL, [SortOrder] = 701.70 WHERE [Code] = 'tsj' END +SET [Description] = 'Tshangla', [Definition] = NULL, [SortOrder] = 7023.00 WHERE [Code] = 'tsj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdl', 'Tsikimba', NULL, 701.80) END +VALUES ('kdl', 'Tsikimba', NULL, 7024.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsikimba', [Definition] = NULL, [SortOrder] = 701.80 WHERE [Code] = 'kdl' END +SET [Description] = 'Tsikimba', [Definition] = NULL, [SortOrder] = 7024.00 WHERE [Code] = 'kdl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cas', 'Tsimané', NULL, 701.90) END +VALUES ('cas', 'Tsimané', NULL, 7025.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsimané', [Definition] = NULL, [SortOrder] = 701.90 WHERE [Code] = 'cas' END +SET [Description] = 'Tsimané', [Definition] = NULL, [SortOrder] = 7025.00 WHERE [Code] = 'cas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xmw', 'Tsimihety Malagasy', NULL, 702.00) END +VALUES ('xmw', 'Tsimihety Malagasy', NULL, 7026.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsimihety Malagasy', [Definition] = NULL, [SortOrder] = 702.00 WHERE [Code] = 'xmw' END +SET [Description] = 'Tsimihety Malagasy', [Definition] = NULL, [SortOrder] = 7026.00 WHERE [Code] = 'xmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsi', 'Tsimshian', NULL, 702.10) END +VALUES ('tsi', 'Tsimshian', NULL, 7027.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsimshian', [Definition] = NULL, [SortOrder] = 702.10 WHERE [Code] = 'tsi' END +SET [Description] = 'Tsimshian', [Definition] = NULL, [SortOrder] = 7027.00 WHERE [Code] = 'tsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsw', 'Tsishingini', NULL, 702.20) END +VALUES ('tsw', 'Tsishingini', NULL, 7028.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsishingini', [Definition] = NULL, [SortOrder] = 702.20 WHERE [Code] = 'tsw' END +SET [Description] = 'Tsishingini', [Definition] = NULL, [SortOrder] = 7028.00 WHERE [Code] = 'tsw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ldp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ldp', 'Tso', NULL, 702.30) END +VALUES ('ldp', 'Tso', NULL, 7029.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tso', [Definition] = NULL, [SortOrder] = 702.30 WHERE [Code] = 'ldp' END +SET [Description] = 'Tso', [Definition] = NULL, [SortOrder] = 7029.00 WHERE [Code] = 'ldp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hio') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hio', 'Tsoa', NULL, 702.40) END +VALUES ('hio', 'Tsoa', NULL, 7030.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsoa', [Definition] = NULL, [SortOrder] = 702.40 WHERE [Code] = 'hio' END +SET [Description] = 'Tsoa', [Definition] = NULL, [SortOrder] = 7030.00 WHERE [Code] = 'hio' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsv', 'Tsogo', NULL, 702.50) END +VALUES ('tsv', 'Tsogo', NULL, 7031.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsogo', [Definition] = NULL, [SortOrder] = 702.50 WHERE [Code] = 'tsv' END +SET [Description] = 'Tsogo', [Definition] = NULL, [SortOrder] = 7031.00 WHERE [Code] = 'tsv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tso') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tso', 'Tsonga', NULL, 702.60) END +VALUES ('tso', 'Tsonga', NULL, 7032.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsonga', [Definition] = NULL, [SortOrder] = 702.60 WHERE [Code] = 'tso' END +SET [Description] = 'Tsonga', [Definition] = NULL, [SortOrder] = 7032.00 WHERE [Code] = 'tso' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lto', 'Tsotso', NULL, 702.70) END +VALUES ('lto', 'Tsotso', NULL, 7033.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsotso', [Definition] = NULL, [SortOrder] = 702.70 WHERE [Code] = 'lto' END +SET [Description] = 'Tsotso', [Definition] = NULL, [SortOrder] = 7033.00 WHERE [Code] = 'lto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsu', 'Tsou', NULL, 702.80) END +VALUES ('tsu', 'Tsou', NULL, 7034.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsou', [Definition] = NULL, [SortOrder] = 702.80 WHERE [Code] = 'tsu' END +SET [Description] = 'Tsou', [Definition] = NULL, [SortOrder] = 7034.00 WHERE [Code] = 'tsu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cbq', 'Tsucuba', NULL, 702.90) END +VALUES ('cbq', 'Tsucuba', NULL, 7035.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsucuba', [Definition] = NULL, [SortOrder] = 702.90 WHERE [Code] = 'cbq' END +SET [Description] = 'Tsucuba', [Definition] = NULL, [SortOrder] = 7035.00 WHERE [Code] = 'cbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttz', 'Tsum', NULL, 703.00) END +VALUES ('ttz', 'Tsum', NULL, 7036.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsum', [Definition] = NULL, [SortOrder] = 703.00 WHERE [Code] = 'ttz' END +SET [Description] = 'Tsum', [Definition] = NULL, [SortOrder] = 7036.00 WHERE [Code] = 'ttz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvd', 'Tsuvadi', NULL, 703.10) END +VALUES ('tvd', 'Tsuvadi', NULL, 7037.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsuvadi', [Definition] = NULL, [SortOrder] = 703.10 WHERE [Code] = 'tvd' END +SET [Description] = 'Tsuvadi', [Definition] = NULL, [SortOrder] = 7037.00 WHERE [Code] = 'tvd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsh', 'Tsuvan', NULL, 703.20) END +VALUES ('tsh', 'Tsuvan', NULL, 7038.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tsuvan', [Definition] = NULL, [SortOrder] = 703.20 WHERE [Code] = 'tsh' END +SET [Description] = 'Tsuvan', [Definition] = NULL, [SortOrder] = 7038.00 WHERE [Code] = 'tsh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsc', 'Tswa', NULL, 703.30) END +VALUES ('tsc', 'Tswa', NULL, 7039.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tswa', [Definition] = NULL, [SortOrder] = 703.30 WHERE [Code] = 'tsc' END +SET [Description] = 'Tswa', [Definition] = NULL, [SortOrder] = 7039.00 WHERE [Code] = 'tsc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsn', 'Tswana', NULL, 703.40) END +VALUES ('tsn', 'Tswana', NULL, 7040.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tswana', [Definition] = NULL, [SortOrder] = 703.40 WHERE [Code] = 'tsn' END +SET [Description] = 'Tswana', [Definition] = NULL, [SortOrder] = 7040.00 WHERE [Code] = 'tsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'two') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('two', 'Tswapong', NULL, 703.50) END +VALUES ('two', 'Tswapong', NULL, 7041.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tswapong', [Definition] = NULL, [SortOrder] = 703.50 WHERE [Code] = 'two' END +SET [Description] = 'Tswapong', [Definition] = NULL, [SortOrder] = 7041.00 WHERE [Code] = 'two' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mjg', 'Tu', NULL, 703.60) END +VALUES ('mjg', 'Tu', NULL, 7042.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tu', [Definition] = NULL, [SortOrder] = 703.60 WHERE [Code] = 'mjg' END +SET [Description] = 'Tu', [Definition] = NULL, [SortOrder] = 7042.00 WHERE [Code] = 'mjg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pmt', 'Tuamotuan', NULL, 703.70) END +VALUES ('pmt', 'Tuamotuan', NULL, 7043.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuamotuan', [Definition] = NULL, [SortOrder] = 703.70 WHERE [Code] = 'pmt' END +SET [Description] = 'Tuamotuan', [Definition] = NULL, [SortOrder] = 7043.00 WHERE [Code] = 'pmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbu', 'Tubar', NULL, 703.80) END +VALUES ('tbu', 'Tubar', NULL, 7044.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tubar', [Definition] = NULL, [SortOrder] = 703.80 WHERE [Code] = 'tbu' END +SET [Description] = 'Tubar', [Definition] = NULL, [SortOrder] = 7044.00 WHERE [Code] = 'tbu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tub', 'Tübatulabal', NULL, 703.90) END +VALUES ('tub', 'Tübatulabal', NULL, 7045.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tübatulabal', [Definition] = NULL, [SortOrder] = 703.90 WHERE [Code] = 'tub' END +SET [Description] = 'Tübatulabal', [Definition] = NULL, [SortOrder] = 7045.00 WHERE [Code] = 'tub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuo', 'Tucano', NULL, 704.00) END +VALUES ('tuo', 'Tucano', NULL, 7046.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tucano', [Definition] = NULL, [SortOrder] = 704.00 WHERE [Code] = 'tuo' END +SET [Description] = 'Tucano', [Definition] = NULL, [SortOrder] = 7046.00 WHERE [Code] = 'tuo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuy', 'Tugen', NULL, 704.10) END +VALUES ('tuy', 'Tugen', NULL, 7047.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tugen', [Definition] = NULL, [SortOrder] = 704.10 WHERE [Code] = 'tuy' END +SET [Description] = 'Tugen', [Definition] = NULL, [SortOrder] = 7047.00 WHERE [Code] = 'tuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzn', 'Tugun', NULL, 704.20) END +VALUES ('tzn', 'Tugun', NULL, 7048.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tugun', [Definition] = NULL, [SortOrder] = 704.20 WHERE [Code] = 'tzn' END +SET [Description] = 'Tugun', [Definition] = NULL, [SortOrder] = 7048.00 WHERE [Code] = 'tzn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuj', 'Tugutil', NULL, 704.30) END +VALUES ('tuj', 'Tugutil', NULL, 7049.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tugutil', [Definition] = NULL, [SortOrder] = 704.30 WHERE [Code] = 'tuj' END +SET [Description] = 'Tugutil', [Definition] = NULL, [SortOrder] = 7049.00 WHERE [Code] = 'tuj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'khc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('khc', 'Tukang Besi North', NULL, 704.40) END +VALUES ('khc', 'Tukang Besi North', NULL, 7050.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukang Besi North', [Definition] = NULL, [SortOrder] = 704.40 WHERE [Code] = 'khc' END +SET [Description] = 'Tukang Besi North', [Definition] = NULL, [SortOrder] = 7050.00 WHERE [Code] = 'khc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bhq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bhq', 'Tukang Besi South', NULL, 704.50) END +VALUES ('bhq', 'Tukang Besi South', NULL, 7051.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukang Besi South', [Definition] = NULL, [SortOrder] = 704.50 WHERE [Code] = 'bhq' END +SET [Description] = 'Tukang Besi South', [Definition] = NULL, [SortOrder] = 7051.00 WHERE [Code] = 'bhq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bag', 'Tuki', NULL, 704.60) END +VALUES ('bag', 'Tuki', NULL, 7052.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuki', [Definition] = NULL, [SortOrder] = 704.60 WHERE [Code] = 'bag' END +SET [Description] = 'Tuki', [Definition] = NULL, [SortOrder] = 7052.00 WHERE [Code] = 'bag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpq', 'Tukpa', NULL, 704.70) END +VALUES ('tpq', 'Tukpa', NULL, 7053.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukpa', [Definition] = NULL, [SortOrder] = 704.70 WHERE [Code] = 'tpq' END +SET [Description] = 'Tukpa', [Definition] = NULL, [SortOrder] = 7053.00 WHERE [Code] = 'tpq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkd', 'Tukudede', NULL, 704.80) END +VALUES ('tkd', 'Tukudede', NULL, 7054.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukudede', [Definition] = NULL, [SortOrder] = 704.80 WHERE [Code] = 'tkd' END +SET [Description] = 'Tukudede', [Definition] = NULL, [SortOrder] = 7054.00 WHERE [Code] = 'tkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tkf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tkf', 'Tukumanféd', NULL, 704.90) END +VALUES ('tkf', 'Tukumanféd', NULL, 7055.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tukumanféd', [Definition] = NULL, [SortOrder] = 704.90 WHERE [Code] = 'tkf' END +SET [Description] = 'Tukumanféd', [Definition] = NULL, [SortOrder] = 7055.00 WHERE [Code] = 'tkf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tul', 'Tula', NULL, 705.00) END +VALUES ('tul', 'Tula', NULL, 7056.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tula', [Definition] = NULL, [SortOrder] = 705.00 WHERE [Code] = 'tul' END +SET [Description] = 'Tula', [Definition] = NULL, [SortOrder] = 7056.00 WHERE [Code] = 'tul' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('tvi', 'Tulai', NULL, 7057.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Tulai', [Definition] = NULL, [SortOrder] = 7057.00 WHERE [Code] = 'tvi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlu', 'Tulehu', NULL, 705.10) END +VALUES ('tlu', 'Tulehu', NULL, 7058.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tulehu', [Definition] = NULL, [SortOrder] = 705.10 WHERE [Code] = 'tlu' END +SET [Description] = 'Tulehu', [Definition] = NULL, [SortOrder] = 7058.00 WHERE [Code] = 'tlu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tey', 'Tulishi', NULL, 705.20) END +VALUES ('tey', 'Tulishi', NULL, 7059.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tulishi', [Definition] = NULL, [SortOrder] = 705.20 WHERE [Code] = 'tey' END +SET [Description] = 'Tulishi', [Definition] = NULL, [SortOrder] = 7059.00 WHERE [Code] = 'tey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tcy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tcy', 'Tulu', NULL, 705.30) END +VALUES ('tcy', 'Tulu', NULL, 7060.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tulu', [Definition] = NULL, [SortOrder] = 705.30 WHERE [Code] = 'tcy' END +SET [Description] = 'Tulu', [Definition] = NULL, [SortOrder] = 7060.00 WHERE [Code] = 'tcy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rak', 'Tulu-Bohuai', NULL, 705.40) END +VALUES ('rak', 'Tulu-Bohuai', NULL, 7061.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tulu-Bohuai', [Definition] = NULL, [SortOrder] = 705.40 WHERE [Code] = 'rak' END +SET [Description] = 'Tulu-Bohuai', [Definition] = NULL, [SortOrder] = 7061.00 WHERE [Code] = 'rak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iou', 'Tuma-Irumu', NULL, 705.50) END +VALUES ('iou', 'Tuma-Irumu', NULL, 7062.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuma-Irumu', [Definition] = NULL, [SortOrder] = 705.50 WHERE [Code] = 'iou' END +SET [Description] = 'Tuma-Irumu', [Definition] = NULL, [SortOrder] = 7062.00 WHERE [Code] = 'iou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmc', 'Tumak', NULL, 705.60) END +VALUES ('tmc', 'Tumak', NULL, 7063.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumak', [Definition] = NULL, [SortOrder] = 705.60 WHERE [Code] = 'tmc' END +SET [Description] = 'Tumak', [Definition] = NULL, [SortOrder] = 7063.00 WHERE [Code] = 'tmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krt', 'Tumari Kanuri', NULL, 705.70) END +VALUES ('krt', 'Tumari Kanuri', NULL, 7064.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumari Kanuri', [Definition] = NULL, [SortOrder] = 705.70 WHERE [Code] = 'krt' END +SET [Description] = 'Tumari Kanuri', [Definition] = NULL, [SortOrder] = 7064.00 WHERE [Code] = 'krt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tum', 'Tumbuka', NULL, 705.80) END +VALUES ('tum', 'Tumbuka', NULL, 7065.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumbuka', [Definition] = NULL, [SortOrder] = 705.80 WHERE [Code] = 'tum' END +SET [Description] = 'Tumbuka', [Definition] = NULL, [SortOrder] = 7065.00 WHERE [Code] = 'tum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kku', 'Tumi', NULL, 705.90) END +VALUES ('kku', 'Tumi', NULL, 7066.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumi', [Definition] = NULL, [SortOrder] = 705.90 WHERE [Code] = 'kku' END +SET [Description] = 'Tumi', [Definition] = NULL, [SortOrder] = 7066.00 WHERE [Code] = 'kku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmq', 'Tumleo', NULL, 706.00) END +VALUES ('tmq', 'Tumleo', NULL, 7067.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumleo', [Definition] = NULL, [SortOrder] = 706.00 WHERE [Code] = 'tmq' END +SET [Description] = 'Tumleo', [Definition] = NULL, [SortOrder] = 7067.00 WHERE [Code] = 'tmq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xtq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xtq', 'Tumshuqese', NULL, 706.10) END +VALUES ('xtq', 'Tumshuqese', NULL, 7068.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumshuqese', [Definition] = NULL, [SortOrder] = 706.10 WHERE [Code] = 'xtq' END +SET [Description] = 'Tumshuqese', [Definition] = NULL, [SortOrder] = 7068.00 WHERE [Code] = 'xtq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tbr', 'Tumtum', NULL, 706.20) END +VALUES ('tbr', 'Tumtum', NULL, 7069.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumtum', [Definition] = NULL, [SortOrder] = 706.20 WHERE [Code] = 'tbr' END +SET [Description] = 'Tumtum', [Definition] = NULL, [SortOrder] = 7069.00 WHERE [Code] = 'tbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sil', 'Tumulung Sisaala', NULL, 706.30) END +VALUES ('sil', 'Tumulung Sisaala', NULL, 7070.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumulung Sisaala', [Definition] = NULL, [SortOrder] = 706.30 WHERE [Code] = 'sil' END +SET [Description] = 'Tumulung Sisaala', [Definition] = NULL, [SortOrder] = 7070.00 WHERE [Code] = 'sil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzb', 'Tumzabt', NULL, 706.40) END +VALUES ('mzb', 'Tumzabt', NULL, 7071.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tumzabt', [Definition] = NULL, [SortOrder] = 706.40 WHERE [Code] = 'mzb' END +SET [Description] = 'Tumzabt', [Definition] = NULL, [SortOrder] = 7071.00 WHERE [Code] = 'mzb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'enh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('enh', 'Tundra Enets', NULL, 706.50) END +VALUES ('enh', 'Tundra Enets', NULL, 7072.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tundra Enets', [Definition] = NULL, [SortOrder] = 706.50 WHERE [Code] = 'enh' END +SET [Description] = 'Tundra Enets', [Definition] = NULL, [SortOrder] = 7072.00 WHERE [Code] = 'enh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvu', 'Tunen', NULL, 706.60) END +VALUES ('tvu', 'Tunen', NULL, 7073.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunen', [Definition] = NULL, [SortOrder] = 706.60 WHERE [Code] = 'tvu' END +SET [Description] = 'Tunen', [Definition] = NULL, [SortOrder] = 7073.00 WHERE [Code] = 'tvu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcm', 'Tungag', NULL, 706.70) END +VALUES ('lcm', 'Tungag', NULL, 7074.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tungag', [Definition] = NULL, [SortOrder] = 706.70 WHERE [Code] = 'lcm' END +SET [Description] = 'Tungag', [Definition] = NULL, [SortOrder] = 7074.00 WHERE [Code] = 'lcm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trt', 'Tunggare', NULL, 706.80) END +VALUES ('trt', 'Tunggare', NULL, 7075.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunggare', [Definition] = NULL, [SortOrder] = 706.80 WHERE [Code] = 'trt' END +SET [Description] = 'Tunggare', [Definition] = NULL, [SortOrder] = 7075.00 WHERE [Code] = 'trt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tug', 'Tunia', NULL, 706.90) END +VALUES ('tug', 'Tunia', NULL, 7076.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunia', [Definition] = NULL, [SortOrder] = 706.90 WHERE [Code] = 'tug' END +SET [Description] = 'Tunia', [Definition] = NULL, [SortOrder] = 7076.00 WHERE [Code] = 'tug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tun', 'Tunica', NULL, 707.00) END +VALUES ('tun', 'Tunica', NULL, 7077.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunica', [Definition] = NULL, [SortOrder] = 707.00 WHERE [Code] = 'tun' END +SET [Description] = 'Tunica', [Definition] = NULL, [SortOrder] = 7077.00 WHERE [Code] = 'tun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aeb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aeb', 'Tunisian Arabic', NULL, 707.10) END +VALUES ('aeb', 'Tunisian Arabic', NULL, 7078.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunisian Arabic', [Definition] = NULL, [SortOrder] = 707.10 WHERE [Code] = 'aeb' END +SET [Description] = 'Tunisian Arabic', [Definition] = NULL, [SortOrder] = 7078.00 WHERE [Code] = 'aeb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tse', 'Tunisian Sign Language', NULL, 707.20) END +VALUES ('tse', 'Tunisian Sign Language', NULL, 7079.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunisian Sign Language', [Definition] = NULL, [SortOrder] = 707.20 WHERE [Code] = 'tse' END +SET [Description] = 'Tunisian Sign Language', [Definition] = NULL, [SortOrder] = 7079.00 WHERE [Code] = 'tse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tjg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tjg', 'Tunjung', NULL, 707.30) END +VALUES ('tjg', 'Tunjung', NULL, 7080.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunjung', [Definition] = NULL, [SortOrder] = 707.30 WHERE [Code] = 'tjg' END +SET [Description] = 'Tunjung', [Definition] = NULL, [SortOrder] = 7080.00 WHERE [Code] = 'tjg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqq', 'Tunni', NULL, 707.40) END +VALUES ('tqq', 'Tunni', NULL, 7081.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunni', [Definition] = NULL, [SortOrder] = 707.40 WHERE [Code] = 'tqq' END +SET [Description] = 'Tunni', [Definition] = NULL, [SortOrder] = 7081.00 WHERE [Code] = 'tqq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dza', 'Tunzu', NULL, 707.50) END +VALUES ('dza', 'Tunzu', NULL, 7082.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tunzu', [Definition] = NULL, [SortOrder] = 707.50 WHERE [Code] = 'dza' END +SET [Description] = 'Tunzu', [Definition] = NULL, [SortOrder] = 7082.00 WHERE [Code] = 'dza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttf', 'Tuotomb', NULL, 707.60) END +VALUES ('ttf', 'Tuotomb', NULL, 7083.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuotomb', [Definition] = NULL, [SortOrder] = 707.60 WHERE [Code] = 'ttf' END +SET [Description] = 'Tuotomb', [Definition] = NULL, [SortOrder] = 7083.00 WHERE [Code] = 'ttf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpr', 'Tuparí', NULL, 707.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuparí', [Definition] = NULL, [SortOrder] = 707.70 WHERE [Code] = 'tpr' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpw', 'Tupí', NULL, 707.80) END +VALUES ('tpr', 'Tuparí', NULL, 7084.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tupí', [Definition] = NULL, [SortOrder] = 707.80 WHERE [Code] = 'tpw' END +SET [Description] = 'Tuparí', [Definition] = NULL, [SortOrder] = 7084.00 WHERE [Code] = 'tpr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpn', 'Tupinambá', NULL, 707.90) END +VALUES ('tpn', 'Tupinambá', NULL, 7085.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tupinambá', [Definition] = NULL, [SortOrder] = 707.90 WHERE [Code] = 'tpn' END +SET [Description] = 'Tupinambá', [Definition] = NULL, [SortOrder] = 7085.00 WHERE [Code] = 'tpn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tpk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tpk', 'Tupinikin', NULL, 708.00) END +VALUES ('tpk', 'Tupinikin', NULL, 7086.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tupinikin', [Definition] = NULL, [SortOrder] = 708.00 WHERE [Code] = 'tpk' END +SET [Description] = 'Tupinikin', [Definition] = NULL, [SortOrder] = 7086.00 WHERE [Code] = 'tpk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tui', 'Tupuri', NULL, 708.10) END +VALUES ('tui', 'Tupuri', NULL, 7087.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tupuri', [Definition] = NULL, [SortOrder] = 708.10 WHERE [Code] = 'tui' END +SET [Description] = 'Tupuri', [Definition] = NULL, [SortOrder] = 7087.00 WHERE [Code] = 'tui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trh', 'Turaka', NULL, 708.20) END +VALUES ('trh', 'Turaka', NULL, 7088.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turaka', [Definition] = NULL, [SortOrder] = 708.20 WHERE [Code] = 'trh' END +SET [Description] = 'Turaka', [Definition] = NULL, [SortOrder] = 7088.00 WHERE [Code] = 'trh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'trd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('trd', 'Turi', NULL, 708.30) END +VALUES ('trd', 'Turi', NULL, 7089.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turi', [Definition] = NULL, [SortOrder] = 708.30 WHERE [Code] = 'trd' END +SET [Description] = 'Turi', [Definition] = NULL, [SortOrder] = 7089.00 WHERE [Code] = 'trd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twt', 'Turiwára', NULL, 708.40) END +VALUES ('twt', 'Turiwára', NULL, 7090.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turiwára', [Definition] = NULL, [SortOrder] = 708.40 WHERE [Code] = 'twt' END +SET [Description] = 'Turiwára', [Definition] = NULL, [SortOrder] = 7090.00 WHERE [Code] = 'twt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuz', 'Turka', NULL, 708.50) END +VALUES ('tuz', 'Turka', NULL, 7091.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turka', [Definition] = NULL, [SortOrder] = 708.50 WHERE [Code] = 'tuz' END +SET [Description] = 'Turka', [Definition] = NULL, [SortOrder] = 7091.00 WHERE [Code] = 'tuz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuv', 'Turkana', NULL, 708.60) END +VALUES ('tuv', 'Turkana', NULL, 7092.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turkana', [Definition] = NULL, [SortOrder] = 708.60 WHERE [Code] = 'tuv' END +SET [Description] = 'Turkana', [Definition] = NULL, [SortOrder] = 7092.00 WHERE [Code] = 'tuv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tur', 'Turkish', NULL, 708.70) END +VALUES ('tur', 'Turkish', NULL, 7093.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turkish', [Definition] = NULL, [SortOrder] = 708.70 WHERE [Code] = 'tur' END +SET [Description] = 'Turkish', [Definition] = NULL, [SortOrder] = 7093.00 WHERE [Code] = 'tur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tsm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tsm', 'Turkish Sign Language', NULL, 708.80) END +VALUES ('tsm', 'Turkish Sign Language', NULL, 7094.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turkish Sign Language', [Definition] = NULL, [SortOrder] = 708.80 WHERE [Code] = 'tsm' END +SET [Description] = 'Turkish Sign Language', [Definition] = NULL, [SortOrder] = 7094.00 WHERE [Code] = 'tsm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuk', 'Turkmen', NULL, 708.90) END +VALUES ('tuk', 'Turkmen', NULL, 7095.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turkmen', [Definition] = NULL, [SortOrder] = 708.90 WHERE [Code] = 'tuk' END +SET [Description] = 'Turkmen', [Definition] = NULL, [SortOrder] = 7095.00 WHERE [Code] = 'tuk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tch', 'Turks And Caicos Creole English', NULL, 709.00) END +VALUES ('tch', 'Turks And Caicos Creole English', NULL, 7096.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turks And Caicos Creole English', [Definition] = NULL, [SortOrder] = 709.00 WHERE [Code] = 'tch' END +SET [Description] = 'Turks And Caicos Creole English', [Definition] = NULL, [SortOrder] = 7096.00 WHERE [Code] = 'tch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tru', 'Turoyo', NULL, 709.10) END +VALUES ('tru', 'Turoyo', NULL, 7097.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turoyo', [Definition] = NULL, [SortOrder] = 709.10 WHERE [Code] = 'tru' END +SET [Description] = 'Turoyo', [Definition] = NULL, [SortOrder] = 7097.00 WHERE [Code] = 'tru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqm', 'Turumsa', NULL, 709.20) END +VALUES ('tqm', 'Turumsa', NULL, 7098.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turumsa', [Definition] = NULL, [SortOrder] = 709.20 WHERE [Code] = 'tqm' END +SET [Description] = 'Turumsa', [Definition] = NULL, [SortOrder] = 7098.00 WHERE [Code] = 'tqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'try') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('try', 'Turung', NULL, 709.30) END +VALUES ('try', 'Turung', NULL, 7099.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Turung', [Definition] = NULL, [SortOrder] = 709.30 WHERE [Code] = 'try' END +SET [Description] = 'Turung', [Definition] = NULL, [SortOrder] = 7099.00 WHERE [Code] = 'try' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tus') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tus', 'Tuscarora', NULL, 709.40) END +VALUES ('tus', 'Tuscarora', NULL, 7100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuscarora', [Definition] = NULL, [SortOrder] = 709.40 WHERE [Code] = 'tus' END +SET [Description] = 'Tuscarora', [Definition] = NULL, [SortOrder] = 7100.00 WHERE [Code] = 'tus' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tta') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tta', 'Tutelo', NULL, 709.50) END +VALUES ('tta', 'Tutelo', NULL, 7101.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tutelo', [Definition] = NULL, [SortOrder] = 709.50 WHERE [Code] = 'tta' END +SET [Description] = 'Tutelo', [Definition] = NULL, [SortOrder] = 7101.00 WHERE [Code] = 'tta' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ttg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ttg', 'Tutong', NULL, 709.60) END +VALUES ('ttg', 'Tutong', NULL, 7102.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tutong', [Definition] = NULL, [SortOrder] = 709.60 WHERE [Code] = 'ttg' END +SET [Description] = 'Tutong', [Definition] = NULL, [SortOrder] = 7102.00 WHERE [Code] = 'ttg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvt', 'Tutsa Naga', NULL, 709.70) END +VALUES ('tvt', 'Tutsa Naga', NULL, 7103.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tutsa Naga', [Definition] = NULL, [SortOrder] = 709.70 WHERE [Code] = 'tvt' END +SET [Description] = 'Tutsa Naga', [Definition] = NULL, [SortOrder] = 7103.00 WHERE [Code] = 'tvt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tmi', 'Tutuba', NULL, 709.80) END +VALUES ('tmi', 'Tutuba', NULL, 7104.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tutuba', [Definition] = NULL, [SortOrder] = 709.80 WHERE [Code] = 'tmi' END +SET [Description] = 'Tutuba', [Definition] = NULL, [SortOrder] = 7104.00 WHERE [Code] = 'tmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtu', 'Tututepec Mixtec', NULL, 709.90) END +VALUES ('mtu', 'Tututepec Mixtec', NULL, 7105.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tututepec Mixtec', [Definition] = NULL, [SortOrder] = 709.90 WHERE [Code] = 'mtu' END +SET [Description] = 'Tututepec Mixtec', [Definition] = NULL, [SortOrder] = 7105.00 WHERE [Code] = 'mtu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tuu', 'Tututni', NULL, 710.00) END +VALUES ('tuu', 'Tututni', NULL, 7106.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tututni', [Definition] = NULL, [SortOrder] = 710.00 WHERE [Code] = 'tuu' END +SET [Description] = 'Tututni', [Definition] = NULL, [SortOrder] = 7106.00 WHERE [Code] = 'tuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tvl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tvl', 'Tuvalu', NULL, 710.10) END +VALUES ('tvl', 'Tuvalu', NULL, 7107.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuvalu', [Definition] = NULL, [SortOrder] = 710.10 WHERE [Code] = 'tvl' END +SET [Description] = 'Tuvalu', [Definition] = NULL, [SortOrder] = 7107.00 WHERE [Code] = 'tvl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tyv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tyv', 'Tuvinian', NULL, 710.20) END +VALUES ('tyv', 'Tuvinian', NULL, 7108.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuvinian', [Definition] = NULL, [SortOrder] = 710.20 WHERE [Code] = 'tyv' END +SET [Description] = 'Tuvinian', [Definition] = NULL, [SortOrder] = 7108.00 WHERE [Code] = 'tyv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ifk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ifk', 'Tuwali Ifugao', NULL, 710.30) END +VALUES ('ifk', 'Tuwali Ifugao', NULL, 7109.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuwali Ifugao', [Definition] = NULL, [SortOrder] = 710.30 WHERE [Code] = 'ifk' END +SET [Description] = 'Tuwali Ifugao', [Definition] = NULL, [SortOrder] = 7109.00 WHERE [Code] = 'ifk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tww', 'Tuwari', NULL, 710.40) END +VALUES ('tww', 'Tuwari', NULL, 7110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuwari', [Definition] = NULL, [SortOrder] = 710.40 WHERE [Code] = 'tww' END +SET [Description] = 'Tuwari', [Definition] = NULL, [SortOrder] = 7110.00 WHERE [Code] = 'tww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bov', 'Tuwuli', NULL, 710.50) END +VALUES ('bov', 'Tuwuli', NULL, 7111.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuwuli', [Definition] = NULL, [SortOrder] = 710.50 WHERE [Code] = 'bov' END +SET [Description] = 'Tuwuli', [Definition] = NULL, [SortOrder] = 7111.00 WHERE [Code] = 'bov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tud', 'Tuxá', NULL, 710.60) END +VALUES ('tud', 'Tuxá', NULL, 7112.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuxá', [Definition] = NULL, [SortOrder] = 710.60 WHERE [Code] = 'tud' END +SET [Description] = 'Tuxá', [Definition] = NULL, [SortOrder] = 7112.00 WHERE [Code] = 'tud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tux', 'Tuxináwa', NULL, 710.70) END +VALUES ('tux', 'Tuxináwa', NULL, 7113.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuxináwa', [Definition] = NULL, [SortOrder] = 710.70 WHERE [Code] = 'tux' END +SET [Description] = 'Tuxináwa', [Definition] = NULL, [SortOrder] = 7113.00 WHERE [Code] = 'tux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tue', 'Tuyuca', NULL, 710.80) END +VALUES ('tue', 'Tuyuca', NULL, 7114.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tuyuca', [Definition] = NULL, [SortOrder] = 710.80 WHERE [Code] = 'tue' END +SET [Description] = 'Tuyuca', [Definition] = NULL, [SortOrder] = 7114.00 WHERE [Code] = 'tue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twa', 'Twana', NULL, 710.90) END +VALUES ('twa', 'Twana', NULL, 7115.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Twana', [Definition] = NULL, [SortOrder] = 710.90 WHERE [Code] = 'twa' END +SET [Description] = 'Twana', [Definition] = NULL, [SortOrder] = 7115.00 WHERE [Code] = 'twa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twn', 'Twendi', NULL, 711.00) END +VALUES ('twn', 'Twendi', NULL, 7116.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Twendi', [Definition] = NULL, [SortOrder] = 711.00 WHERE [Code] = 'twn' END +SET [Description] = 'Twendi', [Definition] = NULL, [SortOrder] = 7116.00 WHERE [Code] = 'twn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twd', 'Twents', NULL, 711.10) END +VALUES ('twd', 'Twents', NULL, 7117.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Twents', [Definition] = NULL, [SortOrder] = 711.10 WHERE [Code] = 'twd' END +SET [Description] = 'Twents', [Definition] = NULL, [SortOrder] = 7117.00 WHERE [Code] = 'twd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twi', 'Twi', NULL, 711.20) END +VALUES ('twi', 'Twi', NULL, 7118.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Twi', [Definition] = NULL, [SortOrder] = 711.20 WHERE [Code] = 'twi' END +SET [Description] = 'Twi', [Definition] = NULL, [SortOrder] = 7118.00 WHERE [Code] = 'twi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcg', 'Tyap', NULL, 711.30) END +VALUES ('kcg', 'Tyap', NULL, 7119.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tyap', [Definition] = NULL, [SortOrder] = 711.30 WHERE [Code] = 'kcg' END +SET [Description] = 'Tyap', [Definition] = NULL, [SortOrder] = 7119.00 WHERE [Code] = 'kcg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzj', 'Tz''utujil', NULL, 711.40) END +VALUES ('tzj', 'Tz''utujil', NULL, 7120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tz''utujil', [Definition] = NULL, [SortOrder] = 711.40 WHERE [Code] = 'tzj' END +SET [Description] = 'Tz''utujil', [Definition] = NULL, [SortOrder] = 7120.00 WHERE [Code] = 'tzj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzh', 'Tzeltal', NULL, 711.50) END +VALUES ('tzh', 'Tzeltal', NULL, 7121.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tzeltal', [Definition] = NULL, [SortOrder] = 711.50 WHERE [Code] = 'tzh' END +SET [Description] = 'Tzeltal', [Definition] = NULL, [SortOrder] = 7121.00 WHERE [Code] = 'tzh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tzo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tzo', 'Tzotzil', NULL, 711.60) END +VALUES ('tzo', 'Tzotzil', NULL, 7122.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Tzotzil', [Definition] = NULL, [SortOrder] = 711.60 WHERE [Code] = 'tzo' END +SET [Description] = 'Tzotzil', [Definition] = NULL, [SortOrder] = 7122.00 WHERE [Code] = 'tzo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uuu', 'U', NULL, 711.70) END +VALUES ('uuu', 'U', NULL, 7123.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'U', [Definition] = NULL, [SortOrder] = 711.70 WHERE [Code] = 'uuu' END +SET [Description] = 'U', [Definition] = NULL, [SortOrder] = 7123.00 WHERE [Code] = 'uuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aoz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aoz', 'Uab Meto', NULL, 711.80) END +VALUES ('aoz', 'Uab Meto', NULL, 7124.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uab Meto', [Definition] = NULL, [SortOrder] = 711.80 WHERE [Code] = 'aoz' END +SET [Description] = 'Uab Meto', [Definition] = NULL, [SortOrder] = 7124.00 WHERE [Code] = 'aoz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uam', 'Uamué', NULL, 711.90) END +VALUES ('uam', 'Uamué', NULL, 7125.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uamué', [Definition] = NULL, [SortOrder] = 711.90 WHERE [Code] = 'uam' END +SET [Description] = 'Uamué', [Definition] = NULL, [SortOrder] = 7125.00 WHERE [Code] = 'uam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ksj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ksj', 'Uare', NULL, 712.00) END +VALUES ('ksj', 'Uare', NULL, 7126.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uare', [Definition] = NULL, [SortOrder] = 712.00 WHERE [Code] = 'ksj' END +SET [Description] = 'Uare', [Definition] = NULL, [SortOrder] = 7126.00 WHERE [Code] = 'ksj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'byc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('byc', 'Ubaghara', NULL, 712.10) END +VALUES ('byc', 'Ubaghara', NULL, 7127.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubaghara', [Definition] = NULL, [SortOrder] = 712.10 WHERE [Code] = 'byc' END +SET [Description] = 'Ubaghara', [Definition] = NULL, [SortOrder] = 7127.00 WHERE [Code] = 'byc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uba', 'Ubang', NULL, 712.20) END +VALUES ('uba', 'Ubang', NULL, 7128.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubang', [Definition] = NULL, [SortOrder] = 712.20 WHERE [Code] = 'uba' END +SET [Description] = 'Ubang', [Definition] = NULL, [SortOrder] = 7128.00 WHERE [Code] = 'uba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ubi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ubi', 'Ubi', NULL, 712.30) END +VALUES ('ubi', 'Ubi', NULL, 7129.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubi', [Definition] = NULL, [SortOrder] = 712.30 WHERE [Code] = 'ubi' END +SET [Description] = 'Ubi', [Definition] = NULL, [SortOrder] = 7129.00 WHERE [Code] = 'ubi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ubr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ubr', 'Ubir', NULL, 712.40) END +VALUES ('ubr', 'Ubir', NULL, 7130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubir', [Definition] = NULL, [SortOrder] = 712.40 WHERE [Code] = 'ubr' END +SET [Description] = 'Ubir', [Definition] = NULL, [SortOrder] = 7130.00 WHERE [Code] = 'ubr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uby', 'Ubykh', NULL, 712.50) END +VALUES ('uby', 'Ubykh', NULL, 7131.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ubykh', [Definition] = NULL, [SortOrder] = 712.50 WHERE [Code] = 'uby' END +SET [Description] = 'Ubykh', [Definition] = NULL, [SortOrder] = 7131.00 WHERE [Code] = 'uby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cpb', 'Ucayali-Yurúa Ashéninka', NULL, 712.60) END +VALUES ('cpb', 'Ucayali-Yurúa Ashéninka', NULL, 7132.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ucayali-Yurúa Ashéninka', [Definition] = NULL, [SortOrder] = 712.60 WHERE [Code] = 'cpb' END +SET [Description] = 'Ucayali-Yurúa Ashéninka', [Definition] = NULL, [SortOrder] = 7132.00 WHERE [Code] = 'cpb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uda', 'Uda', NULL, 712.70) END +VALUES ('uda', 'Uda', NULL, 7133.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uda', [Definition] = NULL, [SortOrder] = 712.70 WHERE [Code] = 'uda' END +SET [Description] = 'Uda', [Definition] = NULL, [SortOrder] = 7133.00 WHERE [Code] = 'uda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udi', 'Udi', NULL, 712.80) END +VALUES ('udi', 'Udi', NULL, 7134.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Udi', [Definition] = NULL, [SortOrder] = 712.80 WHERE [Code] = 'udi' END +SET [Description] = 'Udi', [Definition] = NULL, [SortOrder] = 7134.00 WHERE [Code] = 'udi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ude') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ude', 'Udihe', NULL, 712.90) END +VALUES ('ude', 'Udihe', NULL, 7135.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Udihe', [Definition] = NULL, [SortOrder] = 712.90 WHERE [Code] = 'ude' END +SET [Description] = 'Udihe', [Definition] = NULL, [SortOrder] = 7135.00 WHERE [Code] = 'ude' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udm', 'Udmurt', NULL, 713.00) END +VALUES ('udm', 'Udmurt', NULL, 7136.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Udmurt', [Definition] = NULL, [SortOrder] = 713.00 WHERE [Code] = 'udm' END +SET [Description] = 'Udmurt', [Definition] = NULL, [SortOrder] = 7136.00 WHERE [Code] = 'udm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udu', 'Uduk', NULL, 713.10) END +VALUES ('udu', 'Uduk', NULL, 7137.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uduk', [Definition] = NULL, [SortOrder] = 713.10 WHERE [Code] = 'udu' END +SET [Description] = 'Uduk', [Definition] = NULL, [SortOrder] = 7137.00 WHERE [Code] = 'udu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ufi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ufi', 'Ufim', NULL, 713.20) END +VALUES ('ufi', 'Ufim', NULL, 7138.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ufim', [Definition] = NULL, [SortOrder] = 713.20 WHERE [Code] = 'ufi' END +SET [Description] = 'Ufim', [Definition] = NULL, [SortOrder] = 7138.00 WHERE [Code] = 'ufi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugn', 'Ugandan Sign Language', NULL, 713.30) END +VALUES ('ugn', 'Ugandan Sign Language', NULL, 7139.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ugandan Sign Language', [Definition] = NULL, [SortOrder] = 713.30 WHERE [Code] = 'ugn' END +SET [Description] = 'Ugandan Sign Language', [Definition] = NULL, [SortOrder] = 7139.00 WHERE [Code] = 'ugn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uga', 'Ugaritic', NULL, 713.40) END +VALUES ('uga', 'Ugaritic', NULL, 7140.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ugaritic', [Definition] = NULL, [SortOrder] = 713.40 WHERE [Code] = 'uga' END +SET [Description] = 'Ugaritic', [Definition] = NULL, [SortOrder] = 7140.00 WHERE [Code] = 'uga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uge') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uge', 'Ughele', NULL, 713.50) END +VALUES ('uge', 'Ughele', NULL, 7141.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ughele', [Definition] = NULL, [SortOrder] = 713.50 WHERE [Code] = 'uge' END +SET [Description] = 'Ughele', [Definition] = NULL, [SortOrder] = 7141.00 WHERE [Code] = 'uge' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugo', 'Ugong', NULL, 713.60) END +VALUES ('ugo', 'Ugong', NULL, 7142.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ugong', [Definition] = NULL, [SortOrder] = 713.60 WHERE [Code] = 'ugo' END +SET [Description] = 'Ugong', [Definition] = NULL, [SortOrder] = 7142.00 WHERE [Code] = 'ugo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uha', 'Uhami', NULL, 713.70) END +VALUES ('uha', 'Uhami', NULL, 7143.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uhami', [Definition] = NULL, [SortOrder] = 713.70 WHERE [Code] = 'uha' END +SET [Description] = 'Uhami', [Definition] = NULL, [SortOrder] = 7143.00 WHERE [Code] = 'uha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uig', 'Uighur', NULL, 713.80) END +VALUES ('uig', 'Uighur', NULL, 7144.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uighur', [Definition] = NULL, [SortOrder] = 713.80 WHERE [Code] = 'uig' END +SET [Description] = 'Uighur', [Definition] = NULL, [SortOrder] = 7144.00 WHERE [Code] = 'uig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uis', 'Uisai', NULL, 713.90) END +VALUES ('uis', 'Uisai', NULL, 7145.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uisai', [Definition] = NULL, [SortOrder] = 713.90 WHERE [Code] = 'uis' END +SET [Description] = 'Uisai', [Definition] = NULL, [SortOrder] = 7145.00 WHERE [Code] = 'uis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udj', 'Ujir', NULL, 714.00) END +VALUES ('udj', 'Ujir', NULL, 7146.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ujir', [Definition] = NULL, [SortOrder] = 714.00 WHERE [Code] = 'udj' END +SET [Description] = 'Ujir', [Definition] = NULL, [SortOrder] = 7146.00 WHERE [Code] = 'udj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kcf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kcf', 'Ukaan', NULL, 714.10) END +VALUES ('kcf', 'Ukaan', NULL, 7147.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukaan', [Definition] = NULL, [SortOrder] = 714.10 WHERE [Code] = 'kcf' END +SET [Description] = 'Ukaan', [Definition] = NULL, [SortOrder] = 7147.00 WHERE [Code] = 'kcf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukh', 'Ukhwejo', NULL, 714.20) END +VALUES ('ukh', 'Ukhwejo', NULL, 7148.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukhwejo', [Definition] = NULL, [SortOrder] = 714.20 WHERE [Code] = 'ukh' END +SET [Description] = 'Ukhwejo', [Definition] = NULL, [SortOrder] = 7148.00 WHERE [Code] = 'ukh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umi', 'Ukit', NULL, 714.30) END +VALUES ('umi', 'Ukit', NULL, 7149.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukit', [Definition] = NULL, [SortOrder] = 714.30 WHERE [Code] = 'umi' END +SET [Description] = 'Ukit', [Definition] = NULL, [SortOrder] = 7149.00 WHERE [Code] = 'umi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukp', 'Ukpe-Bayobiri', NULL, 714.40) END +VALUES ('ukp', 'Ukpe-Bayobiri', NULL, 7150.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukpe-Bayobiri', [Definition] = NULL, [SortOrder] = 714.40 WHERE [Code] = 'ukp' END +SET [Description] = 'Ukpe-Bayobiri', [Definition] = NULL, [SortOrder] = 7150.00 WHERE [Code] = 'ukp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'akd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('akd', 'Ukpet-Ehom', NULL, 714.50) END +VALUES ('akd', 'Ukpet-Ehom', NULL, 7151.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukpet-Ehom', [Definition] = NULL, [SortOrder] = 714.50 WHERE [Code] = 'akd' END +SET [Description] = 'Ukpet-Ehom', [Definition] = NULL, [SortOrder] = 7151.00 WHERE [Code] = 'akd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukr', 'Ukrainian', NULL, 714.60) END +VALUES ('ukr', 'Ukrainian', NULL, 7152.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukrainian', [Definition] = NULL, [SortOrder] = 714.60 WHERE [Code] = 'ukr' END +SET [Description] = 'Ukrainian', [Definition] = NULL, [SortOrder] = 7152.00 WHERE [Code] = 'ukr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukl', 'Ukrainian Sign Language', NULL, 714.70) END +VALUES ('ukl', 'Ukrainian Sign Language', NULL, 7153.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukrainian Sign Language', [Definition] = NULL, [SortOrder] = 714.70 WHERE [Code] = 'ukl' END +SET [Description] = 'Ukrainian Sign Language', [Definition] = NULL, [SortOrder] = 7153.00 WHERE [Code] = 'ukl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uku', 'Ukue', NULL, 714.80) END +VALUES ('uku', 'Ukue', NULL, 7154.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukue', [Definition] = NULL, [SortOrder] = 714.80 WHERE [Code] = 'uku' END +SET [Description] = 'Ukue', [Definition] = NULL, [SortOrder] = 7154.00 WHERE [Code] = 'uku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukg', 'Ukuriguma', NULL, 714.90) END +VALUES ('ukg', 'Ukuriguma', NULL, 7155.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukuriguma', [Definition] = NULL, [SortOrder] = 714.90 WHERE [Code] = 'ukg' END +SET [Description] = 'Ukuriguma', [Definition] = NULL, [SortOrder] = 7155.00 WHERE [Code] = 'ukg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukq', 'Ukwa', NULL, 715.00) END +VALUES ('ukq', 'Ukwa', NULL, 7156.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukwa', [Definition] = NULL, [SortOrder] = 715.00 WHERE [Code] = 'ukq' END +SET [Description] = 'Ukwa', [Definition] = NULL, [SortOrder] = 7156.00 WHERE [Code] = 'ukq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ukw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ukw', 'Ukwuani-Aboh-Ndoni', NULL, 715.10) END +VALUES ('ukw', 'Ukwuani-Aboh-Ndoni', NULL, 7157.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ukwuani-Aboh-Ndoni', [Definition] = NULL, [SortOrder] = 715.10 WHERE [Code] = 'ukw' END +SET [Description] = 'Ukwuani-Aboh-Ndoni', [Definition] = NULL, [SortOrder] = 7157.00 WHERE [Code] = 'ukw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svb', 'Ulau-Suain', NULL, 715.20) END +VALUES ('svb', 'Ulau-Suain', NULL, 7158.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulau-Suain', [Definition] = NULL, [SortOrder] = 715.20 WHERE [Code] = 'svb' END +SET [Description] = 'Ulau-Suain', [Definition] = NULL, [SortOrder] = 7158.00 WHERE [Code] = 'svb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulc', 'Ulch', NULL, 715.30) END +VALUES ('ulc', 'Ulch', NULL, 7159.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulch', [Definition] = NULL, [SortOrder] = 715.30 WHERE [Code] = 'ulc' END +SET [Description] = 'Ulch', [Definition] = NULL, [SortOrder] = 7159.00 WHERE [Code] = 'ulc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uli', 'Ulithian', NULL, 715.40) END +VALUES ('uli', 'Ulithian', NULL, 7160.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulithian', [Definition] = NULL, [SortOrder] = 715.40 WHERE [Code] = 'uli' END +SET [Description] = 'Ulithian', [Definition] = NULL, [SortOrder] = 7160.00 WHERE [Code] = 'uli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ull') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ull', 'Ullatan', NULL, 715.50) END +VALUES ('ull', 'Ullatan', NULL, 7161.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ullatan', [Definition] = NULL, [SortOrder] = 715.50 WHERE [Code] = 'ull' END +SET [Description] = 'Ullatan', [Definition] = NULL, [SortOrder] = 7161.00 WHERE [Code] = 'ull' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulb', 'Ulukwumi', NULL, 715.60) END +VALUES ('ulb', 'Ulukwumi', NULL, 7162.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulukwumi', [Definition] = NULL, [SortOrder] = 715.60 WHERE [Code] = 'ulb' END +SET [Description] = 'Ulukwumi', [Definition] = NULL, [SortOrder] = 7162.00 WHERE [Code] = 'ulb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulm', 'Ulumanda''', NULL, 715.70) END +VALUES ('ulm', 'Ulumanda''', NULL, 7163.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulumanda''', [Definition] = NULL, [SortOrder] = 715.70 WHERE [Code] = 'ulm' END +SET [Description] = 'Ulumanda''', [Definition] = NULL, [SortOrder] = 7163.00 WHERE [Code] = 'ulm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulw', 'Ulwa', NULL, 715.80) END +VALUES ('ulw', 'Ulwa', NULL, 7164.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ulwa', [Definition] = NULL, [SortOrder] = 715.80 WHERE [Code] = 'ulw' END +SET [Description] = 'Ulwa', [Definition] = NULL, [SortOrder] = 7164.00 WHERE [Code] = 'ulw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ppk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ppk', 'Uma', NULL, 715.90) END +VALUES ('ppk', 'Uma', NULL, 7165.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uma', [Definition] = NULL, [SortOrder] = 715.90 WHERE [Code] = 'ppk' END +SET [Description] = 'Uma', [Definition] = NULL, [SortOrder] = 7165.00 WHERE [Code] = 'ppk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xky', 'Uma'' Lasan', NULL, 716.00) END +VALUES ('xky', 'Uma'' Lasan', NULL, 7166.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uma'' Lasan', [Definition] = NULL, [SortOrder] = 716.00 WHERE [Code] = 'xky' END +SET [Description] = 'Uma'' Lasan', [Definition] = NULL, [SortOrder] = 7166.00 WHERE [Code] = 'xky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulu', 'Uma'' Lung', NULL, 716.10) END +VALUES ('ulu', 'Uma'' Lung', NULL, 7167.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uma'' Lung', [Definition] = NULL, [SortOrder] = 716.10 WHERE [Code] = 'ulu' END +SET [Description] = 'Uma'' Lung', [Definition] = NULL, [SortOrder] = 7167.00 WHERE [Code] = 'ulu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdn', 'Umanakaina', NULL, 716.20) END +VALUES ('gdn', 'Umanakaina', NULL, 7168.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umanakaina', [Definition] = NULL, [SortOrder] = 716.20 WHERE [Code] = 'gdn' END +SET [Description] = 'Umanakaina', [Definition] = NULL, [SortOrder] = 7168.00 WHERE [Code] = 'gdn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uma') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uma', 'Umatilla', NULL, 716.30) END +VALUES ('uma', 'Umatilla', NULL, 7169.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umatilla', [Definition] = NULL, [SortOrder] = 716.30 WHERE [Code] = 'uma' END +SET [Description] = 'Umatilla', [Definition] = NULL, [SortOrder] = 7169.00 WHERE [Code] = 'uma' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umd', 'Umbindhamu', NULL, 716.40) END +VALUES ('umd', 'Umbindhamu', NULL, 7170.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbindhamu', [Definition] = NULL, [SortOrder] = 716.40 WHERE [Code] = 'umd' END +SET [Description] = 'Umbindhamu', [Definition] = NULL, [SortOrder] = 7170.00 WHERE [Code] = 'umd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xum', 'Umbrian', NULL, 716.50) END +VALUES ('xum', 'Umbrian', NULL, 7171.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbrian', [Definition] = NULL, [SortOrder] = 716.50 WHERE [Code] = 'xum' END +SET [Description] = 'Umbrian', [Definition] = NULL, [SortOrder] = 7171.00 WHERE [Code] = 'xum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ubu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ubu', 'Umbu-Ungu', NULL, 716.60) END +VALUES ('ubu', 'Umbu-Ungu', NULL, 7172.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbu-Ungu', [Definition] = NULL, [SortOrder] = 716.60 WHERE [Code] = 'ubu' END +SET [Description] = 'Umbu-Ungu', [Definition] = NULL, [SortOrder] = 7172.00 WHERE [Code] = 'ubu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umr', 'Umbugarla', NULL, 716.70) END +VALUES ('umr', 'Umbugarla', NULL, 7173.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbugarla', [Definition] = NULL, [SortOrder] = 716.70 WHERE [Code] = 'umr' END +SET [Description] = 'Umbugarla', [Definition] = NULL, [SortOrder] = 7173.00 WHERE [Code] = 'umr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umb', 'Umbundu', NULL, 716.80) END +VALUES ('umb', 'Umbundu', NULL, 7174.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umbundu', [Definition] = NULL, [SortOrder] = 716.80 WHERE [Code] = 'umb' END +SET [Description] = 'Umbundu', [Definition] = NULL, [SortOrder] = 7174.00 WHERE [Code] = 'umb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sju') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sju', 'Ume Sami', NULL, 716.90) END +VALUES ('sju', 'Ume Sami', NULL, 7175.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ume Sami', [Definition] = NULL, [SortOrder] = 716.90 WHERE [Code] = 'sju' END +SET [Description] = 'Ume Sami', [Definition] = NULL, [SortOrder] = 7175.00 WHERE [Code] = 'sju' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'upi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('upi', 'Umeda', NULL, 717.00) END +VALUES ('upi', 'Umeda', NULL, 7176.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umeda', [Definition] = NULL, [SortOrder] = 717.00 WHERE [Code] = 'upi' END +SET [Description] = 'Umeda', [Definition] = NULL, [SortOrder] = 7176.00 WHERE [Code] = 'upi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xud', 'Umiida', NULL, 717.10) END +VALUES ('xud', 'Umiida', NULL, 7177.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umiida', [Definition] = NULL, [SortOrder] = 717.10 WHERE [Code] = 'xud' END +SET [Description] = 'Umiida', [Definition] = NULL, [SortOrder] = 7177.00 WHERE [Code] = 'xud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'due') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('due', 'Umiray Dumaget Agta', NULL, 717.20) END +VALUES ('due', 'Umiray Dumaget Agta', NULL, 7178.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umiray Dumaget Agta', [Definition] = NULL, [SortOrder] = 717.20 WHERE [Code] = 'due' END +SET [Description] = 'Umiray Dumaget Agta', [Definition] = NULL, [SortOrder] = 7178.00 WHERE [Code] = 'due' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umm', 'Umon', NULL, 717.30) END +VALUES ('umm', 'Umon', NULL, 7179.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umon', [Definition] = NULL, [SortOrder] = 717.30 WHERE [Code] = 'umm' END +SET [Description] = 'Umon', [Definition] = NULL, [SortOrder] = 7179.00 WHERE [Code] = 'umm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'umo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('umo', 'Umotína', NULL, 717.40) END +VALUES ('umo', 'Umotína', NULL, 7180.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umotína', [Definition] = NULL, [SortOrder] = 717.40 WHERE [Code] = 'umo' END +SET [Description] = 'Umotína', [Definition] = NULL, [SortOrder] = 7180.00 WHERE [Code] = 'umo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ump') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ump', 'Umpila', NULL, 717.50) END +VALUES ('ump', 'Umpila', NULL, 7181.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Umpila', [Definition] = NULL, [SortOrder] = 717.50 WHERE [Code] = 'ump' END +SET [Description] = 'Umpila', [Definition] = NULL, [SortOrder] = 7181.00 WHERE [Code] = 'ump' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtg', 'Una', NULL, 717.60) END +VALUES ('mtg', 'Una', NULL, 7182.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Una', [Definition] = NULL, [SortOrder] = 717.60 WHERE [Code] = 'mtg' END +SET [Description] = 'Una', [Definition] = NULL, [SortOrder] = 7182.00 WHERE [Code] = 'mtg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unm', 'Unami', NULL, 717.70) END +VALUES ('unm', 'Unami', NULL, 7183.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unami', [Definition] = NULL, [SortOrder] = 717.70 WHERE [Code] = 'unm' END +SET [Description] = 'Unami', [Definition] = NULL, [SortOrder] = 7183.00 WHERE [Code] = 'unm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mis', 'Uncoded languages', NULL, 717.80) END +VALUES ('mis', 'Uncoded languages', NULL, 7184.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uncoded languages', [Definition] = NULL, [SortOrder] = 717.80 WHERE [Code] = 'mis' END +SET [Description] = 'Uncoded languages', [Definition] = NULL, [SortOrder] = 7184.00 WHERE [Code] = 'mis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unz', 'Unde Kaili', NULL, 717.90) END +VALUES ('unz', 'Unde Kaili', NULL, 7185.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unde Kaili', [Definition] = NULL, [SortOrder] = 717.90 WHERE [Code] = 'unz' END +SET [Description] = 'Unde Kaili', [Definition] = NULL, [SortOrder] = 7185.00 WHERE [Code] = 'unz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'und') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('und', 'Undetermined', NULL, 718.00) END +VALUES ('und', 'Undetermined', NULL, 7186.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Undetermined', [Definition] = NULL, [SortOrder] = 718.00 WHERE [Code] = 'und' END +SET [Description] = 'Undetermined', [Definition] = NULL, [SortOrder] = 7186.00 WHERE [Code] = 'und' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbn', 'Uneapa', NULL, 718.10) END +VALUES ('bbn', 'Uneapa', NULL, 7187.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uneapa', [Definition] = NULL, [SortOrder] = 718.10 WHERE [Code] = 'bbn' END +SET [Description] = 'Uneapa', [Definition] = NULL, [SortOrder] = 7187.00 WHERE [Code] = 'bbn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'une') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('une', 'Uneme', NULL, 718.20) END +VALUES ('une', 'Uneme', NULL, 7188.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uneme', [Definition] = NULL, [SortOrder] = 718.20 WHERE [Code] = 'une' END +SET [Description] = 'Uneme', [Definition] = NULL, [SortOrder] = 7188.00 WHERE [Code] = 'une' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xun', 'Unggaranggu', NULL, 718.30) END +VALUES ('xun', 'Unggaranggu', NULL, 7189.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unggaranggu', [Definition] = NULL, [SortOrder] = 718.30 WHERE [Code] = 'xun' END +SET [Description] = 'Unggaranggu', [Definition] = NULL, [SortOrder] = 7189.00 WHERE [Code] = 'xun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xgu', 'Unggumi', NULL, 718.40) END +VALUES ('xgu', 'Unggumi', NULL, 7190.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unggumi', [Definition] = NULL, [SortOrder] = 718.40 WHERE [Code] = 'xgu' END +SET [Description] = 'Unggumi', [Definition] = NULL, [SortOrder] = 7190.00 WHERE [Code] = 'xgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gku', 'Ungkue', NULL, 718.50) END +VALUES ('gku', 'Ungkue', NULL, 7191.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ungkue', [Definition] = NULL, [SortOrder] = 718.50 WHERE [Code] = 'gku' END +SET [Description] = 'Ungkue', [Definition] = NULL, [SortOrder] = 7191.00 WHERE [Code] = 'gku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uni') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uni', 'Uni', NULL, 718.60) END +VALUES ('uni', 'Uni', NULL, 7192.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uni', [Definition] = NULL, [SortOrder] = 718.60 WHERE [Code] = 'uni' END +SET [Description] = 'Uni', [Definition] = NULL, [SortOrder] = 7192.00 WHERE [Code] = 'uni' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uln', 'Unserdeutsch', NULL, 718.70) END +VALUES ('uln', 'Unserdeutsch', NULL, 7193.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unserdeutsch', [Definition] = NULL, [SortOrder] = 718.70 WHERE [Code] = 'uln' END +SET [Description] = 'Unserdeutsch', [Definition] = NULL, [SortOrder] = 7193.00 WHERE [Code] = 'uln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'onu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('onu', 'Unua', NULL, 718.80) END +VALUES ('onu', 'Unua', NULL, 7194.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unua', [Definition] = NULL, [SortOrder] = 718.80 WHERE [Code] = 'onu' END +SET [Description] = 'Unua', [Definition] = NULL, [SortOrder] = 7194.00 WHERE [Code] = 'onu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'unu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('unu', 'Unubahe', NULL, 718.90) END +VALUES ('unu', 'Unubahe', NULL, 7195.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Unubahe', [Definition] = NULL, [SortOrder] = 718.90 WHERE [Code] = 'unu' END +SET [Description] = 'Unubahe', [Definition] = NULL, [SortOrder] = 7195.00 WHERE [Code] = 'unu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cjh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cjh', 'Upper Chehalis', NULL, 719.00) END +VALUES ('cjh', 'Upper Chehalis', NULL, 7196.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Chehalis', [Definition] = NULL, [SortOrder] = 719.00 WHERE [Code] = 'cjh' END +SET [Description] = 'Upper Chehalis', [Definition] = NULL, [SortOrder] = 7196.00 WHERE [Code] = 'cjh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dna', 'Upper Grand Valley Dani', NULL, 719.10) END +VALUES ('dna', 'Upper Grand Valley Dani', NULL, 7197.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Grand Valley Dani', [Definition] = NULL, [SortOrder] = 719.10 WHERE [Code] = 'dna' END +SET [Description] = 'Upper Grand Valley Dani', [Definition] = NULL, [SortOrder] = 7197.00 WHERE [Code] = 'dna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pov', 'Upper Guinea Crioulo', NULL, 719.20) END +VALUES ('pov', 'Upper Guinea Crioulo', NULL, 7198.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Guinea Crioulo', [Definition] = NULL, [SortOrder] = 719.20 WHERE [Code] = 'pov' END +SET [Description] = 'Upper Guinea Crioulo', [Definition] = NULL, [SortOrder] = 7198.00 WHERE [Code] = 'pov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dmg', 'Upper Kinabatangan', NULL, 719.30) END +VALUES ('dmg', 'Upper Kinabatangan', NULL, 7199.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Kinabatangan', [Definition] = NULL, [SortOrder] = 719.30 WHERE [Code] = 'dmg' END +SET [Description] = 'Upper Kinabatangan', [Definition] = NULL, [SortOrder] = 7199.00 WHERE [Code] = 'dmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuu', 'Upper Kuskokwim', NULL, 719.40) END +VALUES ('kuu', 'Upper Kuskokwim', NULL, 7200.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Kuskokwim', [Definition] = NULL, [SortOrder] = 719.40 WHERE [Code] = 'kuu' END +SET [Description] = 'Upper Kuskokwim', [Definition] = NULL, [SortOrder] = 7200.00 WHERE [Code] = 'kuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tku') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tku', 'Upper Necaxa Totonac', NULL, 719.50) END +VALUES ('tku', 'Upper Necaxa Totonac', NULL, 7201.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Necaxa Totonac', [Definition] = NULL, [SortOrder] = 719.50 WHERE [Code] = 'tku' END +SET [Description] = 'Upper Necaxa Totonac', [Definition] = NULL, [SortOrder] = 7201.00 WHERE [Code] = 'tku' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sxu', 'Upper Saxon', NULL, 719.60) END +VALUES ('sxu', 'Upper Saxon', NULL, 7202.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Saxon', [Definition] = NULL, [SortOrder] = 719.60 WHERE [Code] = 'sxu' END +SET [Description] = 'Upper Saxon', [Definition] = NULL, [SortOrder] = 7202.00 WHERE [Code] = 'sxu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hsb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsb', 'Upper Sorbian', NULL, 719.70) END +VALUES ('hsb', 'Upper Sorbian', NULL, 7203.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Sorbian', [Definition] = NULL, [SortOrder] = 719.70 WHERE [Code] = 'hsb' END +SET [Description] = 'Upper Sorbian', [Definition] = NULL, [SortOrder] = 7203.00 WHERE [Code] = 'hsb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tth', 'Upper Ta''oih', NULL, 719.80) END +VALUES ('tth', 'Upper Ta''oih', NULL, 7204.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Ta''oih', [Definition] = NULL, [SortOrder] = 719.80 WHERE [Code] = 'tth' END +SET [Description] = 'Upper Ta''oih', [Definition] = NULL, [SortOrder] = 7204.00 WHERE [Code] = 'tth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tau', 'Upper Tanana', NULL, 719.90) END +VALUES ('tau', 'Upper Tanana', NULL, 7205.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Tanana', [Definition] = NULL, [SortOrder] = 719.90 WHERE [Code] = 'tau' END +SET [Description] = 'Upper Tanana', [Definition] = NULL, [SortOrder] = 7205.00 WHERE [Code] = 'tau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tov') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tov', 'Upper Taromi', NULL, 720.00) END +VALUES ('tov', 'Upper Taromi', NULL, 7206.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Taromi', [Definition] = NULL, [SortOrder] = 720.00 WHERE [Code] = 'tov' END +SET [Description] = 'Upper Taromi', [Definition] = NULL, [SortOrder] = 7206.00 WHERE [Code] = 'tov' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xup', 'Upper Umpqua', NULL, 720.10) END +VALUES ('xup', 'Upper Umpqua', NULL, 7207.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Upper Umpqua', [Definition] = NULL, [SortOrder] = 720.10 WHERE [Code] = 'xup' END +SET [Description] = 'Upper Umpqua', [Definition] = NULL, [SortOrder] = 7207.00 WHERE [Code] = 'xup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uro', 'Ura (Papua New Guinea)', NULL, 720.20) END +VALUES ('uro', 'Ura (Papua New Guinea)', NULL, 7208.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ura (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 720.20 WHERE [Code] = 'uro' END +SET [Description] = 'Ura (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 7208.00 WHERE [Code] = 'uro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uur', 'Ura (Vanuatu)', NULL, 720.30) END +VALUES ('uur', 'Ura (Vanuatu)', NULL, 7209.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ura (Vanuatu)', [Definition] = NULL, [SortOrder] = 720.30 WHERE [Code] = 'uur' END +SET [Description] = 'Ura (Vanuatu)', [Definition] = NULL, [SortOrder] = 7209.00 WHERE [Code] = 'uur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urf', 'Uradhi', NULL, 720.40) END +VALUES ('urf', 'Uradhi', NULL, 7210.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uradhi', [Definition] = NULL, [SortOrder] = 720.40 WHERE [Code] = 'urf' END +SET [Description] = 'Uradhi', [Definition] = NULL, [SortOrder] = 7210.00 WHERE [Code] = 'urf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urk', 'Urak Lawoi''', NULL, 720.50) END +VALUES ('urk', 'Urak Lawoi''', NULL, 7211.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urak Lawoi''', [Definition] = NULL, [SortOrder] = 720.50 WHERE [Code] = 'urk' END +SET [Description] = 'Urak Lawoi''', [Definition] = NULL, [SortOrder] = 7211.00 WHERE [Code] = 'urk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'url') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('url', 'Urali', NULL, 720.60) END +VALUES ('url', 'Urali', NULL, 7212.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urali', [Definition] = NULL, [SortOrder] = 720.60 WHERE [Code] = 'url' END +SET [Description] = 'Urali', [Definition] = NULL, [SortOrder] = 7212.00 WHERE [Code] = 'url' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urm', 'Urapmin', NULL, 720.70) END +VALUES ('urm', 'Urapmin', NULL, 7213.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urapmin', [Definition] = NULL, [SortOrder] = 720.70 WHERE [Code] = 'urm' END +SET [Description] = 'Urapmin', [Definition] = NULL, [SortOrder] = 7213.00 WHERE [Code] = 'urm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ura') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ura', 'Urarina', NULL, 720.80) END +VALUES ('ura', 'Urarina', NULL, 7214.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urarina', [Definition] = NULL, [SortOrder] = 720.80 WHERE [Code] = 'ura' END +SET [Description] = 'Urarina', [Definition] = NULL, [SortOrder] = 7214.00 WHERE [Code] = 'ura' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xur', 'Urartian', NULL, 720.90) END +VALUES ('xur', 'Urartian', NULL, 7215.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urartian', [Definition] = NULL, [SortOrder] = 720.90 WHERE [Code] = 'xur' END +SET [Description] = 'Urartian', [Definition] = NULL, [SortOrder] = 7215.00 WHERE [Code] = 'xur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urt', 'Urat', NULL, 721.00) END +VALUES ('urt', 'Urat', NULL, 7216.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urat', [Definition] = NULL, [SortOrder] = 721.00 WHERE [Code] = 'urt' END +SET [Description] = 'Urat', [Definition] = NULL, [SortOrder] = 7216.00 WHERE [Code] = 'urt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urd', 'Urdu', NULL, 721.10) END +VALUES ('urd', 'Urdu', NULL, 7217.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urdu', [Definition] = NULL, [SortOrder] = 721.10 WHERE [Code] = 'urd' END +SET [Description] = 'Urdu', [Definition] = NULL, [SortOrder] = 7217.00 WHERE [Code] = 'urd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urh', 'Urhobo', NULL, 721.20) END +VALUES ('urh', 'Urhobo', NULL, 7218.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urhobo', [Definition] = NULL, [SortOrder] = 721.20 WHERE [Code] = 'urh' END +SET [Description] = 'Urhobo', [Definition] = NULL, [SortOrder] = 7218.00 WHERE [Code] = 'urh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uvh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uvh', 'Uri', NULL, 721.30) END +VALUES ('uvh', 'Uri', NULL, 7219.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uri', [Definition] = NULL, [SortOrder] = 721.30 WHERE [Code] = 'uvh' END +SET [Description] = 'Uri', [Definition] = NULL, [SortOrder] = 7219.00 WHERE [Code] = 'uvh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urg', 'Urigina', NULL, 721.40) END +VALUES ('urg', 'Urigina', NULL, 7220.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urigina', [Definition] = NULL, [SortOrder] = 721.40 WHERE [Code] = 'urg' END +SET [Description] = 'Urigina', [Definition] = NULL, [SortOrder] = 7220.00 WHERE [Code] = 'urg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uri', 'Urim', NULL, 721.50) END +VALUES ('uri', 'Urim', NULL, 7221.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urim', [Definition] = NULL, [SortOrder] = 721.50 WHERE [Code] = 'uri' END +SET [Description] = 'Urim', [Definition] = NULL, [SortOrder] = 7221.00 WHERE [Code] = 'uri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urx', 'Urimo', NULL, 721.60) END +VALUES ('urx', 'Urimo', NULL, 7222.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urimo', [Definition] = NULL, [SortOrder] = 721.60 WHERE [Code] = 'urx' END +SET [Description] = 'Urimo', [Definition] = NULL, [SortOrder] = 7222.00 WHERE [Code] = 'urx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'upv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('upv', 'Uripiv-Wala-Rano-Atchin', NULL, 721.70) END +VALUES ('upv', 'Uripiv-Wala-Rano-Atchin', NULL, 7223.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uripiv-Wala-Rano-Atchin', [Definition] = NULL, [SortOrder] = 721.70 WHERE [Code] = 'upv' END +SET [Description] = 'Uripiv-Wala-Rano-Atchin', [Definition] = NULL, [SortOrder] = 7223.00 WHERE [Code] = 'upv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urc', 'Urningangg', NULL, 721.80) END +VALUES ('urc', 'Urningangg', NULL, 7224.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urningangg', [Definition] = NULL, [SortOrder] = 721.80 WHERE [Code] = 'urc' END +SET [Description] = 'Urningangg', [Definition] = NULL, [SortOrder] = 7224.00 WHERE [Code] = 'urc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ure') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ure', 'Uru', NULL, 721.90) END +VALUES ('ure', 'Uru', NULL, 7225.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uru', [Definition] = NULL, [SortOrder] = 721.90 WHERE [Code] = 'ure' END +SET [Description] = 'Uru', [Definition] = NULL, [SortOrder] = 7225.00 WHERE [Code] = 'ure' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urz', 'Uru-Eu-Wau-Wau', NULL, 722.00) END +VALUES ('urz', 'Uru-Eu-Wau-Wau', NULL, 7226.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uru-Eu-Wau-Wau', [Definition] = NULL, [SortOrder] = 722.00 WHERE [Code] = 'urz' END +SET [Description] = 'Uru-Eu-Wau-Wau', [Definition] = NULL, [SortOrder] = 7226.00 WHERE [Code] = 'urz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urp', 'Uru-Pa-In', NULL, 722.10) END +VALUES ('urp', 'Uru-Pa-In', NULL, 7227.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uru-Pa-In', [Definition] = NULL, [SortOrder] = 722.10 WHERE [Code] = 'urp' END +SET [Description] = 'Uru-Pa-In', [Definition] = NULL, [SortOrder] = 7227.00 WHERE [Code] = 'urp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urn', 'Uruangnirin', NULL, 722.20) END +VALUES ('urn', 'Uruangnirin', NULL, 7228.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uruangnirin', [Definition] = NULL, [SortOrder] = 722.20 WHERE [Code] = 'urn' END +SET [Description] = 'Uruangnirin', [Definition] = NULL, [SortOrder] = 7228.00 WHERE [Code] = 'urn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urv', 'Uruava', NULL, 722.30) END +VALUES ('urv', 'Uruava', NULL, 7229.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uruava', [Definition] = NULL, [SortOrder] = 722.30 WHERE [Code] = 'urv' END +SET [Description] = 'Uruava', [Definition] = NULL, [SortOrder] = 7229.00 WHERE [Code] = 'urv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'urb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('urb', 'Urubú-Kaapor', NULL, 722.40) END +VALUES ('urb', 'Urubú-Kaapor', NULL, 7230.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urubú-Kaapor', [Definition] = NULL, [SortOrder] = 722.40 WHERE [Code] = 'urb' END +SET [Description] = 'Urubú-Kaapor', [Definition] = NULL, [SortOrder] = 7230.00 WHERE [Code] = 'urb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uks') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uks', 'Urubú-Kaapor Sign Language', NULL, 722.50) END +VALUES ('uks', 'Urubú-Kaapor Sign Language', NULL, 7231.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urubú-Kaapor Sign Language', [Definition] = NULL, [SortOrder] = 722.50 WHERE [Code] = 'uks' END +SET [Description] = 'Urubú-Kaapor Sign Language', [Definition] = NULL, [SortOrder] = 7231.00 WHERE [Code] = 'uks' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ugy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ugy', 'Uruguayan Sign Language', NULL, 722.60) END +VALUES ('ugy', 'Uruguayan Sign Language', NULL, 7232.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uruguayan Sign Language', [Definition] = NULL, [SortOrder] = 722.60 WHERE [Code] = 'ugy' END +SET [Description] = 'Uruguayan Sign Language', [Definition] = NULL, [SortOrder] = 7232.00 WHERE [Code] = 'ugy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uum', 'Urum', NULL, 722.70) END +VALUES ('uum', 'Urum', NULL, 7233.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urum', [Definition] = NULL, [SortOrder] = 722.70 WHERE [Code] = 'uum' END +SET [Description] = 'Urum', [Definition] = NULL, [SortOrder] = 7233.00 WHERE [Code] = 'uum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uru', 'Urumi', NULL, 722.80) END +VALUES ('uru', 'Urumi', NULL, 7234.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Urumi', [Definition] = NULL, [SortOrder] = 722.80 WHERE [Code] = 'uru' END +SET [Description] = 'Urumi', [Definition] = NULL, [SortOrder] = 7234.00 WHERE [Code] = 'uru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uss', 'us-Saare', NULL, 722.90) END +VALUES ('uss', 'us-Saare', NULL, 7235.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'us-Saare', [Definition] = NULL, [SortOrder] = 722.90 WHERE [Code] = 'uss' END +SET [Description] = 'us-Saare', [Definition] = NULL, [SortOrder] = 7235.00 WHERE [Code] = 'uss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usk', 'Usaghade', NULL, 723.00) END +VALUES ('usk', 'Usaghade', NULL, 7236.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usaghade', [Definition] = NULL, [SortOrder] = 723.00 WHERE [Code] = 'usk' END +SET [Description] = 'Usaghade', [Definition] = NULL, [SortOrder] = 7236.00 WHERE [Code] = 'usk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnu', 'Usan', NULL, 723.10) END +VALUES ('wnu', 'Usan', NULL, 7237.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usan', [Definition] = NULL, [SortOrder] = 723.10 WHERE [Code] = 'wnu' END +SET [Description] = 'Usan', [Definition] = NULL, [SortOrder] = 7237.00 WHERE [Code] = 'wnu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usa', 'Usarufa', NULL, 723.20) END +VALUES ('usa', 'Usarufa', NULL, 7238.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usarufa', [Definition] = NULL, [SortOrder] = 723.20 WHERE [Code] = 'usa' END +SET [Description] = 'Usarufa', [Definition] = NULL, [SortOrder] = 7238.00 WHERE [Code] = 'usa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ush') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ush', 'Ushojo', NULL, 723.30) END +VALUES ('ush', 'Ushojo', NULL, 7239.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ushojo', [Definition] = NULL, [SortOrder] = 723.30 WHERE [Code] = 'ush' END +SET [Description] = 'Ushojo', [Definition] = NULL, [SortOrder] = 7239.00 WHERE [Code] = 'ush' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cuc', 'Usila Chinantec', NULL, 723.40) END +VALUES ('cuc', 'Usila Chinantec', NULL, 7240.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usila Chinantec', [Definition] = NULL, [SortOrder] = 723.40 WHERE [Code] = 'cuc' END +SET [Description] = 'Usila Chinantec', [Definition] = NULL, [SortOrder] = 7240.00 WHERE [Code] = 'cuc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ulf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ulf', 'Usku', NULL, 723.50) END +VALUES ('ulf', 'Usku', NULL, 7241.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usku', [Definition] = NULL, [SortOrder] = 723.50 WHERE [Code] = 'ulf' END +SET [Description] = 'Usku', [Definition] = NULL, [SortOrder] = 7241.00 WHERE [Code] = 'ulf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usp', 'Uspanteco', NULL, 723.60) END +VALUES ('usp', 'Uspanteco', NULL, 7242.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uspanteco', [Definition] = NULL, [SortOrder] = 723.60 WHERE [Code] = 'usp' END +SET [Description] = 'Uspanteco', [Definition] = NULL, [SortOrder] = 7242.00 WHERE [Code] = 'usp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usi', 'Usui', NULL, 723.70) END +VALUES ('usi', 'Usui', NULL, 7243.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Usui', [Definition] = NULL, [SortOrder] = 723.70 WHERE [Code] = 'usi' END +SET [Description] = 'Usui', [Definition] = NULL, [SortOrder] = 7243.00 WHERE [Code] = 'usi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uth', 'ut-Hun', NULL, 723.80) END +VALUES ('uth', 'ut-Hun', NULL, 7244.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'ut-Hun', [Definition] = NULL, [SortOrder] = 723.80 WHERE [Code] = 'uth' END +SET [Description] = 'ut-Hun', [Definition] = NULL, [SortOrder] = 7244.00 WHERE [Code] = 'uth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gel', 'ut-Ma''in', NULL, 723.90) END +VALUES ('gel', 'ut-Ma''in', NULL, 7245.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'ut-Ma''in', [Definition] = NULL, [SortOrder] = 723.90 WHERE [Code] = 'gel' END +SET [Description] = 'ut-Ma''in', [Definition] = NULL, [SortOrder] = 7245.00 WHERE [Code] = 'gel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'omo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('omo', 'Utarmbung', NULL, 724.00) END +VALUES ('omo', 'Utarmbung', NULL, 7246.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Utarmbung', [Definition] = NULL, [SortOrder] = 724.00 WHERE [Code] = 'omo' END +SET [Description] = 'Utarmbung', [Definition] = NULL, [SortOrder] = 7246.00 WHERE [Code] = 'omo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ute') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ute', 'Ute-Southern Paiute', NULL, 724.10) END +VALUES ('ute', 'Ute-Southern Paiute', NULL, 7247.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ute-Southern Paiute', [Definition] = NULL, [SortOrder] = 724.10 WHERE [Code] = 'ute' END +SET [Description] = 'Ute-Southern Paiute', [Definition] = NULL, [SortOrder] = 7247.00 WHERE [Code] = 'ute' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'utu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('utu', 'Utu', NULL, 724.20) END +VALUES ('utu', 'Utu', NULL, 7248.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Utu', [Definition] = NULL, [SortOrder] = 724.20 WHERE [Code] = 'utu' END +SET [Description] = 'Utu', [Definition] = NULL, [SortOrder] = 7248.00 WHERE [Code] = 'utu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'evh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('evh', 'Uvbie', NULL, 724.30) END +VALUES ('evh', 'Uvbie', NULL, 7249.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uvbie', [Definition] = NULL, [SortOrder] = 724.30 WHERE [Code] = 'evh' END +SET [Description] = 'Uvbie', [Definition] = NULL, [SortOrder] = 7249.00 WHERE [Code] = 'evh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'usu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('usu', 'Uya', NULL, 724.40) END +VALUES ('usu', 'Uya', NULL, 7250.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uya', [Definition] = NULL, [SortOrder] = 724.40 WHERE [Code] = 'usu' END +SET [Description] = 'Uya', [Definition] = NULL, [SortOrder] = 7250.00 WHERE [Code] = 'usu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'duk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('duk', 'Uyajitaya', NULL, 724.50) END +VALUES ('duk', 'Uyajitaya', NULL, 7251.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uyajitaya', [Definition] = NULL, [SortOrder] = 724.50 WHERE [Code] = 'duk' END +SET [Description] = 'Uyajitaya', [Definition] = NULL, [SortOrder] = 7251.00 WHERE [Code] = 'duk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uzb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uzb', 'Uzbek', NULL, 724.60) END +VALUES ('uzb', 'Uzbek', NULL, 7252.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uzbek', [Definition] = NULL, [SortOrder] = 724.60 WHERE [Code] = 'uzb' END +SET [Description] = 'Uzbek', [Definition] = NULL, [SortOrder] = 7252.00 WHERE [Code] = 'uzb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auz', 'Uzbeki Arabic', NULL, 724.70) END +VALUES ('auz', 'Uzbeki Arabic', NULL, 7253.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uzbeki Arabic', [Definition] = NULL, [SortOrder] = 724.70 WHERE [Code] = 'auz' END +SET [Description] = 'Uzbeki Arabic', [Definition] = NULL, [SortOrder] = 7253.00 WHERE [Code] = 'auz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'eze') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('eze', 'Uzekwe', NULL, 724.80) END +VALUES ('eze', 'Uzekwe', NULL, 7254.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Uzekwe', [Definition] = NULL, [SortOrder] = 724.80 WHERE [Code] = 'eze' END +SET [Description] = 'Uzekwe', [Definition] = NULL, [SortOrder] = 7254.00 WHERE [Code] = 'eze' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vaa', 'Vaagri Booli', NULL, 724.90) END +VALUES ('vaa', 'Vaagri Booli', NULL, 7255.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vaagri Booli', [Definition] = NULL, [SortOrder] = 724.90 WHERE [Code] = 'vaa' END +SET [Description] = 'Vaagri Booli', [Definition] = NULL, [SortOrder] = 7255.00 WHERE [Code] = 'vaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vaf', 'Vafsi', NULL, 725.00) END +VALUES ('vaf', 'Vafsi', NULL, 7256.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vafsi', [Definition] = NULL, [SortOrder] = 725.00 WHERE [Code] = 'vaf' END +SET [Description] = 'Vafsi', [Definition] = NULL, [SortOrder] = 7256.00 WHERE [Code] = 'vaf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vgr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vgr', 'Vaghri', NULL, 725.10) END +VALUES ('vgr', 'Vaghri', NULL, 7257.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vaghri', [Definition] = NULL, [SortOrder] = 725.10 WHERE [Code] = 'vgr' END +SET [Description] = 'Vaghri', [Definition] = NULL, [SortOrder] = 7257.00 WHERE [Code] = 'vgr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tva', 'Vaghua', NULL, 725.20) END +VALUES ('tva', 'Vaghua', NULL, 7258.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vaghua', [Definition] = NULL, [SortOrder] = 725.20 WHERE [Code] = 'tva' END +SET [Description] = 'Vaghua', [Definition] = NULL, [SortOrder] = 7258.00 WHERE [Code] = 'tva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vag', 'Vagla', NULL, 725.30) END +VALUES ('vag', 'Vagla', NULL, 7259.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vagla', [Definition] = NULL, [SortOrder] = 725.30 WHERE [Code] = 'vag' END +SET [Description] = 'Vagla', [Definition] = NULL, [SortOrder] = 7259.00 WHERE [Code] = 'vag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vai', 'Vai', NULL, 725.40) END +VALUES ('vai', 'Vai', NULL, 7260.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vai', [Definition] = NULL, [SortOrder] = 725.40 WHERE [Code] = 'vai' END +SET [Description] = 'Vai', [Definition] = NULL, [SortOrder] = 7260.00 WHERE [Code] = 'vai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vap', 'Vaiphei', NULL, 725.50) END +VALUES ('vap', 'Vaiphei', NULL, 7261.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vaiphei', [Definition] = NULL, [SortOrder] = 725.50 WHERE [Code] = 'vap' END +SET [Description] = 'Vaiphei', [Definition] = NULL, [SortOrder] = 7261.00 WHERE [Code] = 'vap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vae', 'Vale', NULL, 725.60) END +VALUES ('vae', 'Vale', NULL, 7262.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vale', [Definition] = NULL, [SortOrder] = 725.60 WHERE [Code] = 'vae' END +SET [Description] = 'Vale', [Definition] = NULL, [SortOrder] = 7262.00 WHERE [Code] = 'vae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vsv', 'Valencian Sign Language', NULL, 725.70) END +VALUES ('vsv', 'Valencian Sign Language', NULL, 7263.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valencian Sign Language', [Definition] = NULL, [SortOrder] = 725.70 WHERE [Code] = 'vsv' END +SET [Description] = 'Valencian Sign Language', [Definition] = NULL, [SortOrder] = 7263.00 WHERE [Code] = 'vsv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cvn', 'Valle Nacional Chinantec', NULL, 725.80) END +VALUES ('cvn', 'Valle Nacional Chinantec', NULL, 7264.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valle Nacional Chinantec', [Definition] = NULL, [SortOrder] = 725.80 WHERE [Code] = 'cvn' END +SET [Description] = 'Valle Nacional Chinantec', [Definition] = NULL, [SortOrder] = 7264.00 WHERE [Code] = 'cvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vmv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vmv', 'Valley Maidu', NULL, 725.90) END +VALUES ('vmv', 'Valley Maidu', NULL, 7265.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valley Maidu', [Definition] = NULL, [SortOrder] = 725.90 WHERE [Code] = 'vmv' END +SET [Description] = 'Valley Maidu', [Definition] = NULL, [SortOrder] = 7265.00 WHERE [Code] = 'vmv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'van') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('van', 'Valman', NULL, 726.00) END +VALUES ('van', 'Valman', NULL, 7266.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valman', [Definition] = NULL, [SortOrder] = 726.00 WHERE [Code] = 'van' END +SET [Description] = 'Valman', [Definition] = NULL, [SortOrder] = 7266.00 WHERE [Code] = 'van' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vlp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vlp', 'Valpei', NULL, 726.10) END +VALUES ('vlp', 'Valpei', NULL, 7267.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Valpei', [Definition] = NULL, [SortOrder] = 726.10 WHERE [Code] = 'vlp' END +SET [Description] = 'Valpei', [Definition] = NULL, [SortOrder] = 7267.00 WHERE [Code] = 'vlp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mkt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mkt', 'Vamale', NULL, 726.20) END +VALUES ('mkt', 'Vamale', NULL, 7268.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vamale', [Definition] = NULL, [SortOrder] = 726.20 WHERE [Code] = 'mkt' END +SET [Description] = 'Vamale', [Definition] = NULL, [SortOrder] = 7268.00 WHERE [Code] = 'mkt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlr', 'Vame', NULL, 726.30) END +VALUES ('mlr', 'Vame', NULL, 7269.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vame', [Definition] = NULL, [SortOrder] = 726.30 WHERE [Code] = 'mlr' END +SET [Description] = 'Vame', [Definition] = NULL, [SortOrder] = 7269.00 WHERE [Code] = 'mlr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xvn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xvn', 'Vandalic', NULL, 726.40) END +VALUES ('xvn', 'Vandalic', NULL, 7270.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vandalic', [Definition] = NULL, [SortOrder] = 726.40 WHERE [Code] = 'xvn' END +SET [Description] = 'Vandalic', [Definition] = NULL, [SortOrder] = 7270.00 WHERE [Code] = 'xvn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpr', 'Vangunu', NULL, 726.50) END +VALUES ('mpr', 'Vangunu', NULL, 7271.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vangunu', [Definition] = NULL, [SortOrder] = 726.50 WHERE [Code] = 'mpr' END +SET [Description] = 'Vangunu', [Definition] = NULL, [SortOrder] = 7271.00 WHERE [Code] = 'mpr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vam', 'Vanimo', NULL, 726.60) END +VALUES ('vam', 'Vanimo', NULL, 7272.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vanimo', [Definition] = NULL, [SortOrder] = 726.60 WHERE [Code] = 'vam' END +SET [Description] = 'Vanimo', [Definition] = NULL, [SortOrder] = 7272.00 WHERE [Code] = 'vam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vnk', 'Vano', NULL, 726.70) END +VALUES ('vnk', 'Vano', NULL, 7273.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vano', [Definition] = NULL, [SortOrder] = 726.70 WHERE [Code] = 'vnk' END +SET [Description] = 'Vano', [Definition] = NULL, [SortOrder] = 7273.00 WHERE [Code] = 'vnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vau', 'Vanuma', NULL, 726.80) END +VALUES ('vau', 'Vanuma', NULL, 7274.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vanuma', [Definition] = NULL, [SortOrder] = 726.80 WHERE [Code] = 'vau' END +SET [Description] = 'Vanuma', [Definition] = NULL, [SortOrder] = 7274.00 WHERE [Code] = 'vau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vao', 'Vao', NULL, 726.90) END +VALUES ('vao', 'Vao', NULL, 7275.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vao', [Definition] = NULL, [SortOrder] = 726.90 WHERE [Code] = 'vao' END +SET [Description] = 'Vao', [Definition] = NULL, [SortOrder] = 7275.00 WHERE [Code] = 'vao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vah', 'Varhadi-Nagpuri', NULL, 727.00) END +VALUES ('vah', 'Varhadi-Nagpuri', NULL, 7276.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Varhadi-Nagpuri', [Definition] = NULL, [SortOrder] = 727.00 WHERE [Code] = 'vah' END +SET [Description] = 'Varhadi-Nagpuri', [Definition] = NULL, [SortOrder] = 7276.00 WHERE [Code] = 'vah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vrs', 'Varisi', NULL, 727.10) END +VALUES ('vrs', 'Varisi', NULL, 7277.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Varisi', [Definition] = NULL, [SortOrder] = 727.10 WHERE [Code] = 'vrs' END +SET [Description] = 'Varisi', [Definition] = NULL, [SortOrder] = 7277.00 WHERE [Code] = 'vrs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vav', 'Varli', NULL, 727.20) END +VALUES ('vav', 'Varli', NULL, 7278.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Varli', [Definition] = NULL, [SortOrder] = 727.20 WHERE [Code] = 'vav' END +SET [Description] = 'Varli', [Definition] = NULL, [SortOrder] = 7278.00 WHERE [Code] = 'vav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vas') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vas', 'Vasavi', NULL, 727.30) END +VALUES ('vas', 'Vasavi', NULL, 7279.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vasavi', [Definition] = NULL, [SortOrder] = 727.30 WHERE [Code] = 'vas' END +SET [Description] = 'Vasavi', [Definition] = NULL, [SortOrder] = 7279.00 WHERE [Code] = 'vas' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ved') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ved', 'Veddah', NULL, 727.40) END +VALUES ('ved', 'Veddah', NULL, 7280.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Veddah', [Definition] = NULL, [SortOrder] = 727.40 WHERE [Code] = 'ved' END +SET [Description] = 'Veddah', [Definition] = NULL, [SortOrder] = 7280.00 WHERE [Code] = 'ved' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'val') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('val', 'Vehes', NULL, 727.50) END +VALUES ('val', 'Vehes', NULL, 7281.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vehes', [Definition] = NULL, [SortOrder] = 727.50 WHERE [Code] = 'val' END +SET [Description] = 'Vehes', [Definition] = NULL, [SortOrder] = 7281.00 WHERE [Code] = 'val' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vel', 'Veluws', NULL, 727.60) END +VALUES ('vel', 'Veluws', NULL, 7282.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Veluws', [Definition] = NULL, [SortOrder] = 727.60 WHERE [Code] = 'vel' END +SET [Description] = 'Veluws', [Definition] = NULL, [SortOrder] = 7282.00 WHERE [Code] = 'vel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vem', 'Vemgo-Mabas', NULL, 727.70) END +VALUES ('vem', 'Vemgo-Mabas', NULL, 7283.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vemgo-Mabas', [Definition] = NULL, [SortOrder] = 727.70 WHERE [Code] = 'vem' END +SET [Description] = 'Vemgo-Mabas', [Definition] = NULL, [SortOrder] = 7283.00 WHERE [Code] = 'vem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ven') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ven', 'Venda', NULL, 727.80) END +VALUES ('ven', 'Venda', NULL, 7284.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Venda', [Definition] = NULL, [SortOrder] = 727.80 WHERE [Code] = 'ven' END +SET [Description] = 'Venda', [Definition] = NULL, [SortOrder] = 7284.00 WHERE [Code] = 'ven' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vec', 'Venetian', NULL, 727.90) END +VALUES ('vec', 'Venetian', NULL, 7285.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Venetian', [Definition] = NULL, [SortOrder] = 727.90 WHERE [Code] = 'vec' END +SET [Description] = 'Venetian', [Definition] = NULL, [SortOrder] = 7285.00 WHERE [Code] = 'vec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xve', 'Venetic', NULL, 728.00) END +VALUES ('xve', 'Venetic', NULL, 7286.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Venetic', [Definition] = NULL, [SortOrder] = 728.00 WHERE [Code] = 'xve' END +SET [Description] = 'Venetic', [Definition] = NULL, [SortOrder] = 7286.00 WHERE [Code] = 'xve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vsl', 'Venezuelan Sign Language', NULL, 728.10) END +VALUES ('vsl', 'Venezuelan Sign Language', NULL, 7287.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Venezuelan Sign Language', [Definition] = NULL, [SortOrder] = 728.10 WHERE [Code] = 'vsl' END +SET [Description] = 'Venezuelan Sign Language', [Definition] = NULL, [SortOrder] = 7287.00 WHERE [Code] = 'vsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bav', 'Vengo', NULL, 728.20) END +VALUES ('bav', 'Vengo', NULL, 7288.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vengo', [Definition] = NULL, [SortOrder] = 728.20 WHERE [Code] = 'bav' END +SET [Description] = 'Vengo', [Definition] = NULL, [SortOrder] = 7288.00 WHERE [Code] = 'bav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'veo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('veo', 'Ventureño', NULL, 728.30) END +VALUES ('veo', 'Ventureño', NULL, 7289.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ventureño', [Definition] = NULL, [SortOrder] = 728.30 WHERE [Code] = 'veo' END +SET [Description] = 'Ventureño', [Definition] = NULL, [SortOrder] = 7289.00 WHERE [Code] = 'veo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vep', 'Veps', NULL, 728.40) END +VALUES ('vep', 'Veps', NULL, 7290.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Veps', [Definition] = NULL, [SortOrder] = 728.40 WHERE [Code] = 'vep' END +SET [Description] = 'Veps', [Definition] = NULL, [SortOrder] = 7290.00 WHERE [Code] = 'vep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vra', 'Vera''a', NULL, 728.50) END +VALUES ('vra', 'Vera''a', NULL, 7291.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vera''a', [Definition] = NULL, [SortOrder] = 728.50 WHERE [Code] = 'vra' END +SET [Description] = 'Vera''a', [Definition] = NULL, [SortOrder] = 7291.00 WHERE [Code] = 'vra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xvs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xvs', 'Vestinian', NULL, 728.60) END +VALUES ('xvs', 'Vestinian', NULL, 7292.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vestinian', [Definition] = NULL, [SortOrder] = 728.60 WHERE [Code] = 'xvs' END +SET [Description] = 'Vestinian', [Definition] = NULL, [SortOrder] = 7292.00 WHERE [Code] = 'xvs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vid', 'Vidunda', NULL, 728.70) END +VALUES ('vid', 'Vidunda', NULL, 7293.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vidunda', [Definition] = NULL, [SortOrder] = 728.70 WHERE [Code] = 'vid' END +SET [Description] = 'Vidunda', [Definition] = NULL, [SortOrder] = 7293.00 WHERE [Code] = 'vid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vig', 'Viemo', NULL, 728.80) END +VALUES ('vig', 'Viemo', NULL, 7294.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Viemo', [Definition] = NULL, [SortOrder] = 728.80 WHERE [Code] = 'vig' END +SET [Description] = 'Viemo', [Definition] = NULL, [SortOrder] = 7294.00 WHERE [Code] = 'vig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vie', 'Vietnamese', NULL, 728.90) END +VALUES ('vie', 'Vietnamese', NULL, 7295.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vietnamese', [Definition] = NULL, [SortOrder] = 728.90 WHERE [Code] = 'vie' END +SET [Description] = 'Vietnamese', [Definition] = NULL, [SortOrder] = 7295.00 WHERE [Code] = 'vie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vil', 'Vilela', NULL, 729.00) END +VALUES ('vil', 'Vilela', NULL, 7296.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vilela', [Definition] = NULL, [SortOrder] = 729.00 WHERE [Code] = 'vil' END +SET [Description] = 'Vilela', [Definition] = NULL, [SortOrder] = 7296.00 WHERE [Code] = 'vil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vif', 'Vili', NULL, 729.10) END +VALUES ('vif', 'Vili', NULL, 7297.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vili', [Definition] = NULL, [SortOrder] = 729.10 WHERE [Code] = 'vif' END +SET [Description] = 'Vili', [Definition] = NULL, [SortOrder] = 7297.00 WHERE [Code] = 'vif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dyg', 'Villa Viciosa Agta', NULL, 729.20) END +VALUES ('dyg', 'Villa Viciosa Agta', NULL, 7298.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Villa Viciosa Agta', [Definition] = NULL, [SortOrder] = 729.20 WHERE [Code] = 'dyg' END +SET [Description] = 'Villa Viciosa Agta', [Definition] = NULL, [SortOrder] = 7298.00 WHERE [Code] = 'dyg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'svc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('svc', 'Vincentian Creole English', NULL, 729.30) END +VALUES ('svc', 'Vincentian Creole English', NULL, 7299.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vincentian Creole English', [Definition] = NULL, [SortOrder] = 729.30 WHERE [Code] = 'svc' END +SET [Description] = 'Vincentian Creole English', [Definition] = NULL, [SortOrder] = 7299.00 WHERE [Code] = 'svc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vnm', 'Vinmavis', NULL, 729.40) END +VALUES ('vnm', 'Vinmavis', NULL, 7300.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vinmavis', [Definition] = NULL, [SortOrder] = 729.40 WHERE [Code] = 'vnm' END +SET [Description] = 'Vinmavis', [Definition] = NULL, [SortOrder] = 7300.00 WHERE [Code] = 'vnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vin', 'Vinza', NULL, 729.50) END +VALUES ('vin', 'Vinza', NULL, 7301.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vinza', [Definition] = NULL, [SortOrder] = 729.50 WHERE [Code] = 'vin' END +SET [Description] = 'Vinza', [Definition] = NULL, [SortOrder] = 7301.00 WHERE [Code] = 'vin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vic', 'Virgin Islands Creole English', NULL, 729.60) END +VALUES ('vic', 'Virgin Islands Creole English', NULL, 7302.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Virgin Islands Creole English', [Definition] = NULL, [SortOrder] = 729.60 WHERE [Code] = 'vic' END +SET [Description] = 'Virgin Islands Creole English', [Definition] = NULL, [SortOrder] = 7302.00 WHERE [Code] = 'vic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vis', 'Vishavan', NULL, 729.70) END +VALUES ('vis', 'Vishavan', NULL, 7303.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vishavan', [Definition] = NULL, [SortOrder] = 729.70 WHERE [Code] = 'vis' END +SET [Description] = 'Vishavan', [Definition] = NULL, [SortOrder] = 7303.00 WHERE [Code] = 'vis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vit') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vit', 'Viti', NULL, 729.80) END +VALUES ('vit', 'Viti', NULL, 7304.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Viti', [Definition] = NULL, [SortOrder] = 729.80 WHERE [Code] = 'vit' END +SET [Description] = 'Viti', [Definition] = NULL, [SortOrder] = 7304.00 WHERE [Code] = 'vit' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vto', 'Vitou', NULL, 729.90) END +VALUES ('vto', 'Vitou', NULL, 7305.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vitou', [Definition] = NULL, [SortOrder] = 729.90 WHERE [Code] = 'vto' END +SET [Description] = 'Vitou', [Definition] = NULL, [SortOrder] = 7305.00 WHERE [Code] = 'vto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wiv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wiv', 'Vitu', NULL, 730.00) END +VALUES ('wiv', 'Vitu', NULL, 7306.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vitu', [Definition] = NULL, [SortOrder] = 730.00 WHERE [Code] = 'wiv' END +SET [Description] = 'Vitu', [Definition] = NULL, [SortOrder] = 7306.00 WHERE [Code] = 'wiv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vls', 'Vlaams', NULL, 730.10) END +VALUES ('vls', 'Vlaams', NULL, 7307.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vlaams', [Definition] = NULL, [SortOrder] = 730.10 WHERE [Code] = 'vls' END +SET [Description] = 'Vlaams', [Definition] = NULL, [SortOrder] = 7307.00 WHERE [Code] = 'vls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vgt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vgt', 'Vlaamse Gebarentaal', NULL, 730.20) END +VALUES ('vgt', 'Vlaamse Gebarentaal', NULL, 7308.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vlaamse Gebarentaal', [Definition] = NULL, [SortOrder] = 730.20 WHERE [Code] = 'vgt' END +SET [Description] = 'Vlaamse Gebarentaal', [Definition] = NULL, [SortOrder] = 7308.00 WHERE [Code] = 'vgt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmy', 'Vlax Romani', NULL, 730.30) END +VALUES ('rmy', 'Vlax Romani', NULL, 7309.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vlax Romani', [Definition] = NULL, [SortOrder] = 730.30 WHERE [Code] = 'rmy' END +SET [Description] = 'Vlax Romani', [Definition] = NULL, [SortOrder] = 7309.00 WHERE [Code] = 'rmy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vol', 'Volapük', NULL, 730.40) END +VALUES ('vol', 'Volapük', NULL, 7310.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Volapük', [Definition] = NULL, [SortOrder] = 730.40 WHERE [Code] = 'vol' END +SET [Description] = 'Volapük', [Definition] = NULL, [SortOrder] = 7310.00 WHERE [Code] = 'vol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xvo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xvo', 'Volscian', NULL, 730.50) END +VALUES ('xvo', 'Volscian', NULL, 7311.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Volscian', [Definition] = NULL, [SortOrder] = 730.50 WHERE [Code] = 'xvo' END +SET [Description] = 'Volscian', [Definition] = NULL, [SortOrder] = 7311.00 WHERE [Code] = 'xvo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kch') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kch', 'Vono', NULL, 730.60) END +VALUES ('kch', 'Vono', NULL, 7312.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vono', [Definition] = NULL, [SortOrder] = 730.60 WHERE [Code] = 'kch' END +SET [Description] = 'Vono', [Definition] = NULL, [SortOrder] = 7312.00 WHERE [Code] = 'kch' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vor', 'Voro', NULL, 730.70) END +VALUES ('vor', 'Voro', NULL, 7313.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Voro', [Definition] = NULL, [SortOrder] = 730.70 WHERE [Code] = 'vor' END +SET [Description] = 'Voro', [Definition] = NULL, [SortOrder] = 7313.00 WHERE [Code] = 'vor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vro', 'Võro', NULL, 730.80) END +VALUES ('vro', 'Võro', NULL, 7314.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Võro', [Definition] = NULL, [SortOrder] = 730.80 WHERE [Code] = 'vro' END +SET [Description] = 'Võro', [Definition] = NULL, [SortOrder] = 7314.00 WHERE [Code] = 'vro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vot', 'Votic', NULL, 730.90) END +VALUES ('vot', 'Votic', NULL, 7315.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Votic', [Definition] = NULL, [SortOrder] = 730.90 WHERE [Code] = 'vot' END +SET [Description] = 'Votic', [Definition] = NULL, [SortOrder] = 7315.00 WHERE [Code] = 'vot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vum', 'Vumbu', NULL, 731.00) END +VALUES ('vum', 'Vumbu', NULL, 7316.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vumbu', [Definition] = NULL, [SortOrder] = 731.00 WHERE [Code] = 'vum' END +SET [Description] = 'Vumbu', [Definition] = NULL, [SortOrder] = 7316.00 WHERE [Code] = 'vum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vnp', 'Vunapu', NULL, 731.10) END +VALUES ('vnp', 'Vunapu', NULL, 7317.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vunapu', [Definition] = NULL, [SortOrder] = 731.10 WHERE [Code] = 'vnp' END +SET [Description] = 'Vunapu', [Definition] = NULL, [SortOrder] = 7317.00 WHERE [Code] = 'vnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vun', 'Vunjo', NULL, 731.20) END +VALUES ('vun', 'Vunjo', NULL, 7318.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vunjo', [Definition] = NULL, [SortOrder] = 731.20 WHERE [Code] = 'vun' END +SET [Description] = 'Vunjo', [Definition] = NULL, [SortOrder] = 7318.00 WHERE [Code] = 'vun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msn', 'Vurës', NULL, 731.30) END +VALUES ('msn', 'Vurës', NULL, 7319.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vurës', [Definition] = NULL, [SortOrder] = 731.30 WHERE [Code] = 'msn' END +SET [Description] = 'Vurës', [Definition] = NULL, [SortOrder] = 7319.00 WHERE [Code] = 'msn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vut', 'Vute', NULL, 731.40) END +VALUES ('vut', 'Vute', NULL, 7320.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vute', [Definition] = NULL, [SortOrder] = 731.40 WHERE [Code] = 'vut' END +SET [Description] = 'Vute', [Definition] = NULL, [SortOrder] = 7320.00 WHERE [Code] = 'vut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbi', 'Vwanji', NULL, 731.50) END +VALUES ('wbi', 'Vwanji', NULL, 7321.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Vwanji', [Definition] = NULL, [SortOrder] = 731.50 WHERE [Code] = 'wbi' END +SET [Description] = 'Vwanji', [Definition] = NULL, [SortOrder] = 7321.00 WHERE [Code] = 'wbi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbm', 'Wa', NULL, 731.60) END +VALUES ('wbm', 'Wa', NULL, 7322.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wa', [Definition] = NULL, [SortOrder] = 731.60 WHERE [Code] = 'wbm' END +SET [Description] = 'Wa', [Definition] = NULL, [SortOrder] = 7322.00 WHERE [Code] = 'wbm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wag', 'Wa''ema', NULL, 731.70) END +VALUES ('wag', 'Wa''ema', NULL, 7323.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wa''ema', [Definition] = NULL, [SortOrder] = 731.70 WHERE [Code] = 'wag' END +SET [Description] = 'Wa''ema', [Definition] = NULL, [SortOrder] = 7323.00 WHERE [Code] = 'wag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wwa', 'Waama', NULL, 731.80) END +VALUES ('wwa', 'Waama', NULL, 7324.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waama', [Definition] = NULL, [SortOrder] = 731.80 WHERE [Code] = 'wwa' END +SET [Description] = 'Waama', [Definition] = NULL, [SortOrder] = 7324.00 WHERE [Code] = 'wwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmn', 'Waamwang', NULL, 731.90) END +VALUES ('wmn', 'Waamwang', NULL, 7325.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waamwang', [Definition] = NULL, [SortOrder] = 731.90 WHERE [Code] = 'wmn' END +SET [Description] = 'Waamwang', [Definition] = NULL, [SortOrder] = 7325.00 WHERE [Code] = 'wmn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssn', 'Waata', NULL, 732.00) END +VALUES ('ssn', 'Waata', NULL, 7326.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waata', [Definition] = NULL, [SortOrder] = 732.00 WHERE [Code] = 'ssn' END +SET [Description] = 'Waata', [Definition] = NULL, [SortOrder] = 7326.00 WHERE [Code] = 'ssn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wab', 'Wab', NULL, 732.10) END +VALUES ('wab', 'Wab', NULL, 7327.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wab', [Definition] = NULL, [SortOrder] = 732.10 WHERE [Code] = 'wab' END +SET [Description] = 'Wab', [Definition] = NULL, [SortOrder] = 7327.00 WHERE [Code] = 'wab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbb', 'Wabo', NULL, 732.20) END +VALUES ('wbb', 'Wabo', NULL, 7328.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wabo', [Definition] = NULL, [SortOrder] = 732.20 WHERE [Code] = 'wbb' END +SET [Description] = 'Wabo', [Definition] = NULL, [SortOrder] = 7328.00 WHERE [Code] = 'wbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kmx', 'Waboda', NULL, 732.30) END +VALUES ('kmx', 'Waboda', NULL, 7329.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waboda', [Definition] = NULL, [SortOrder] = 732.30 WHERE [Code] = 'kmx' END +SET [Description] = 'Waboda', [Definition] = NULL, [SortOrder] = 7329.00 WHERE [Code] = 'kmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wci', 'Waci Gbe', NULL, 732.40) END +VALUES ('wci', 'Waci Gbe', NULL, 7330.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waci Gbe', [Definition] = NULL, [SortOrder] = 732.40 WHERE [Code] = 'wci' END +SET [Description] = 'Waci Gbe', [Definition] = NULL, [SortOrder] = 7330.00 WHERE [Code] = 'wci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdg', 'Wadaginam', NULL, 732.50) END +VALUES ('wdg', 'Wadaginam', NULL, 7331.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadaginam', [Definition] = NULL, [SortOrder] = 732.50 WHERE [Code] = 'wdg' END +SET [Description] = 'Wadaginam', [Definition] = NULL, [SortOrder] = 7331.00 WHERE [Code] = 'wdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbq', 'Waddar', NULL, 732.60) END +VALUES ('wbq', 'Waddar', NULL, 7332.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waddar', [Definition] = NULL, [SortOrder] = 732.60 WHERE [Code] = 'wbq' END +SET [Description] = 'Waddar', [Definition] = NULL, [SortOrder] = 7332.00 WHERE [Code] = 'wbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwd', 'Wadi Wadi', NULL, 732.70) END +VALUES ('xwd', 'Wadi Wadi', NULL, 7333.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadi Wadi', [Definition] = NULL, [SortOrder] = 732.70 WHERE [Code] = 'xwd' END +SET [Description] = 'Wadi Wadi', [Definition] = NULL, [SortOrder] = 7333.00 WHERE [Code] = 'xwd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdk', 'Wadikali', NULL, 732.80) END +VALUES ('wdk', 'Wadikali', NULL, 7334.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadikali', [Definition] = NULL, [SortOrder] = 732.80 WHERE [Code] = 'wdk' END +SET [Description] = 'Wadikali', [Definition] = NULL, [SortOrder] = 7334.00 WHERE [Code] = 'wdk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxp', 'Wadiyara Koli', NULL, 732.90) END +VALUES ('kxp', 'Wadiyara Koli', NULL, 7335.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadiyara Koli', [Definition] = NULL, [SortOrder] = 732.90 WHERE [Code] = 'kxp' END +SET [Description] = 'Wadiyara Koli', [Definition] = NULL, [SortOrder] = 7335.00 WHERE [Code] = 'kxp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdy', 'Wadjabangayi', NULL, 733.00) END +VALUES ('wdy', 'Wadjabangayi', NULL, 7336.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadjabangayi', [Definition] = NULL, [SortOrder] = 733.00 WHERE [Code] = 'wdy' END +SET [Description] = 'Wadjabangayi', [Definition] = NULL, [SortOrder] = 7336.00 WHERE [Code] = 'wdy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdj', 'Wadjiginy', NULL, 733.10) END +VALUES ('wdj', 'Wadjiginy', NULL, 7337.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadjiginy', [Definition] = NULL, [SortOrder] = 733.10 WHERE [Code] = 'wdj' END +SET [Description] = 'Wadjiginy', [Definition] = NULL, [SortOrder] = 7337.00 WHERE [Code] = 'wdj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdu', 'Wadjigu', NULL, 733.20) END +VALUES ('wdu', 'Wadjigu', NULL, 7338.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wadjigu', [Definition] = NULL, [SortOrder] = 733.20 WHERE [Code] = 'wdu' END +SET [Description] = 'Wadjigu', [Definition] = NULL, [SortOrder] = 7338.00 WHERE [Code] = 'wdu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrx', 'Wae Rana', NULL, 733.30) END +VALUES ('wrx', 'Wae Rana', NULL, 7339.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wae Rana', [Definition] = NULL, [SortOrder] = 733.30 WHERE [Code] = 'wrx' END +SET [Description] = 'Wae Rana', [Definition] = NULL, [SortOrder] = 7339.00 WHERE [Code] = 'wrx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waj', 'Waffa', NULL, 733.40) END +VALUES ('waj', 'Waffa', NULL, 7340.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waffa', [Definition] = NULL, [SortOrder] = 733.40 WHERE [Code] = 'waj' END +SET [Description] = 'Waffa', [Definition] = NULL, [SortOrder] = 7340.00 WHERE [Code] = 'waj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgb', 'Wagawaga', NULL, 733.50) END +VALUES ('wgb', 'Wagawaga', NULL, 7341.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagawaga', [Definition] = NULL, [SortOrder] = 733.50 WHERE [Code] = 'wgb' END +SET [Description] = 'Wagawaga', [Definition] = NULL, [SortOrder] = 7341.00 WHERE [Code] = 'wgb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wga') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wga', 'Wagaya', NULL, 733.60) END +VALUES ('wga', 'Wagaya', NULL, 7342.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagaya', [Definition] = NULL, [SortOrder] = 733.60 WHERE [Code] = 'wga' END +SET [Description] = 'Wagaya', [Definition] = NULL, [SortOrder] = 7342.00 WHERE [Code] = 'wga' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbr', 'Wagdi', NULL, 733.70) END +VALUES ('wbr', 'Wagdi', NULL, 7343.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagdi', [Definition] = NULL, [SortOrder] = 733.70 WHERE [Code] = 'wbr' END +SET [Description] = 'Wagdi', [Definition] = NULL, [SortOrder] = 7343.00 WHERE [Code] = 'wbr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fad', 'Wagi', NULL, 733.80) END +VALUES ('fad', 'Wagi', NULL, 7344.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagi', [Definition] = NULL, [SortOrder] = 733.80 WHERE [Code] = 'fad' END +SET [Description] = 'Wagi', [Definition] = NULL, [SortOrder] = 7344.00 WHERE [Code] = 'fad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waq', 'Wagiman', NULL, 733.90) END +VALUES ('waq', 'Wagiman', NULL, 7345.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wagiman', [Definition] = NULL, [SortOrder] = 733.90 WHERE [Code] = 'waq' END +SET [Description] = 'Wagiman', [Definition] = NULL, [SortOrder] = 7345.00 WHERE [Code] = 'waq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'whu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('whu', 'Wahau Kayan', NULL, 734.00) END +VALUES ('whu', 'Wahau Kayan', NULL, 7346.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wahau Kayan', [Definition] = NULL, [SortOrder] = 734.00 WHERE [Code] = 'whu' END +SET [Description] = 'Wahau Kayan', [Definition] = NULL, [SortOrder] = 7346.00 WHERE [Code] = 'whu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'whk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('whk', 'Wahau Kenyah', NULL, 734.10) END +VALUES ('whk', 'Wahau Kenyah', NULL, 7347.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wahau Kenyah', [Definition] = NULL, [SortOrder] = 734.10 WHERE [Code] = 'whk' END +SET [Description] = 'Wahau Kenyah', [Definition] = NULL, [SortOrder] = 7347.00 WHERE [Code] = 'whk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgi', 'Wahgi', NULL, 734.20) END +VALUES ('wgi', 'Wahgi', NULL, 7348.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wahgi', [Definition] = NULL, [SortOrder] = 734.20 WHERE [Code] = 'wgi' END +SET [Description] = 'Wahgi', [Definition] = NULL, [SortOrder] = 7348.00 WHERE [Code] = 'wgi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbk', 'Waigali', NULL, 734.30) END +VALUES ('wbk', 'Waigali', NULL, 7349.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waigali', [Definition] = NULL, [SortOrder] = 734.30 WHERE [Code] = 'wbk' END +SET [Description] = 'Waigali', [Definition] = NULL, [SortOrder] = 7349.00 WHERE [Code] = 'wbk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgo', 'Waigeo', NULL, 734.40) END +VALUES ('wgo', 'Waigeo', NULL, 7350.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waigeo', [Definition] = NULL, [SortOrder] = 734.40 WHERE [Code] = 'wgo' END +SET [Description] = 'Waigeo', [Definition] = NULL, [SortOrder] = 7350.00 WHERE [Code] = 'wgo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlk', 'Wailaki', NULL, 734.50) END +VALUES ('wlk', 'Wailaki', NULL, 7351.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wailaki', [Definition] = NULL, [SortOrder] = 734.50 WHERE [Code] = 'wlk' END +SET [Description] = 'Wailaki', [Definition] = NULL, [SortOrder] = 7351.00 WHERE [Code] = 'wlk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlr', 'Wailapa', NULL, 734.60) END +VALUES ('wlr', 'Wailapa', NULL, 7352.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wailapa', [Definition] = NULL, [SortOrder] = 734.60 WHERE [Code] = 'wlr' END +SET [Description] = 'Wailapa', [Definition] = NULL, [SortOrder] = 7352.00 WHERE [Code] = 'wlr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rro', 'Waima', NULL, 734.70) END +VALUES ('rro', 'Waima', NULL, 7353.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waima', [Definition] = NULL, [SortOrder] = 734.70 WHERE [Code] = 'rro' END +SET [Description] = 'Waima', [Definition] = NULL, [SortOrder] = 7353.00 WHERE [Code] = 'rro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmh', 'Waima''a', NULL, 734.80) END +VALUES ('wmh', 'Waima''a', NULL, 7354.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waima''a', [Definition] = NULL, [SortOrder] = 734.80 WHERE [Code] = 'wmh' END +SET [Description] = 'Waima''a', [Definition] = NULL, [SortOrder] = 7354.00 WHERE [Code] = 'wmh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bao', 'Waimaha', NULL, 734.90) END +VALUES ('bao', 'Waimaha', NULL, 7355.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waimaha', [Definition] = NULL, [SortOrder] = 734.90 WHERE [Code] = 'bao' END +SET [Description] = 'Waimaha', [Definition] = NULL, [SortOrder] = 7355.00 WHERE [Code] = 'bao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atr', 'Waimiri-Atroari', NULL, 735.00) END +VALUES ('atr', 'Waimiri-Atroari', NULL, 7356.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waimiri-Atroari', [Definition] = NULL, [SortOrder] = 735.00 WHERE [Code] = 'atr' END +SET [Description] = 'Waimiri-Atroari', [Definition] = NULL, [SortOrder] = 7356.00 WHERE [Code] = 'atr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wli') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wli', 'Waioli', NULL, 735.10) END +VALUES ('wli', 'Waioli', NULL, 7357.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waioli', [Definition] = NULL, [SortOrder] = 735.10 WHERE [Code] = 'wli' END +SET [Description] = 'Waioli', [Definition] = NULL, [SortOrder] = 7357.00 WHERE [Code] = 'wli' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waw', 'Waiwai', NULL, 735.20) END +VALUES ('waw', 'Waiwai', NULL, 7358.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waiwai', [Definition] = NULL, [SortOrder] = 735.20 WHERE [Code] = 'waw' END +SET [Description] = 'Waiwai', [Definition] = NULL, [SortOrder] = 7358.00 WHERE [Code] = 'waw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wja', 'Waja', NULL, 735.30) END +VALUES ('wja', 'Waja', NULL, 7359.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waja', [Definition] = NULL, [SortOrder] = 735.30 WHERE [Code] = 'wja' END +SET [Description] = 'Waja', [Definition] = NULL, [SortOrder] = 7359.00 WHERE [Code] = 'wja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbv', 'Wajarri', NULL, 735.40) END +VALUES ('wbv', 'Wajarri', NULL, 7360.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wajarri', [Definition] = NULL, [SortOrder] = 735.40 WHERE [Code] = 'wbv' END +SET [Description] = 'Wajarri', [Definition] = NULL, [SortOrder] = 7360.00 WHERE [Code] = 'wbv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwj', 'Wajuk', NULL, 735.50) END +VALUES ('xwj', 'Wajuk', NULL, 7361.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wajuk', [Definition] = NULL, [SortOrder] = 735.50 WHERE [Code] = 'xwj' END +SET [Description] = 'Wajuk', [Definition] = NULL, [SortOrder] = 7361.00 WHERE [Code] = 'xwj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wav', 'Waka', NULL, 735.60) END +VALUES ('wav', 'Waka', NULL, 7362.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waka', [Definition] = NULL, [SortOrder] = 735.60 WHERE [Code] = 'wav' END +SET [Description] = 'Waka', [Definition] = NULL, [SortOrder] = 7362.00 WHERE [Code] = 'wav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wwb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wwb', 'Wakabunga', NULL, 735.70) END +VALUES ('wwb', 'Wakabunga', NULL, 7363.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakabunga', [Definition] = NULL, [SortOrder] = 735.70 WHERE [Code] = 'wwb' END +SET [Description] = 'Wakabunga', [Definition] = NULL, [SortOrder] = 7363.00 WHERE [Code] = 'wwb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkw', 'Wakawaka', NULL, 735.80) END +VALUES ('wkw', 'Wakawaka', NULL, 7364.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakawaka', [Definition] = NULL, [SortOrder] = 735.80 WHERE [Code] = 'wkw' END +SET [Description] = 'Wakawaka', [Definition] = NULL, [SortOrder] = 7364.00 WHERE [Code] = 'wkw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wkd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wkd', 'Wakde', NULL, 735.90) END +VALUES ('wkd', 'Wakde', NULL, 7365.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakde', [Definition] = NULL, [SortOrder] = 735.90 WHERE [Code] = 'wkd' END +SET [Description] = 'Wakde', [Definition] = NULL, [SortOrder] = 7365.00 WHERE [Code] = 'wkd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbl', 'Wakhi', NULL, 736.00) END +VALUES ('wbl', 'Wakhi', NULL, 7366.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakhi', [Definition] = NULL, [SortOrder] = 736.00 WHERE [Code] = 'wbl' END +SET [Description] = 'Wakhi', [Definition] = NULL, [SortOrder] = 7366.00 WHERE [Code] = 'wbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waf', 'Wakoná', NULL, 736.10) END +VALUES ('waf', 'Wakoná', NULL, 7367.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wakoná', [Definition] = NULL, [SortOrder] = 736.10 WHERE [Code] = 'waf' END +SET [Description] = 'Wakoná', [Definition] = NULL, [SortOrder] = 7367.00 WHERE [Code] = 'waf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lgl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lgl', 'Wala', NULL, 736.20) END +VALUES ('lgl', 'Wala', NULL, 7368.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wala', [Definition] = NULL, [SortOrder] = 736.20 WHERE [Code] = 'lgl' END +SET [Description] = 'Wala', [Definition] = NULL, [SortOrder] = 7368.00 WHERE [Code] = 'lgl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlw', 'Walak', NULL, 736.30) END +VALUES ('wlw', 'Walak', NULL, 7369.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walak', [Definition] = NULL, [SortOrder] = 736.30 WHERE [Code] = 'wlw' END +SET [Description] = 'Walak', [Definition] = NULL, [SortOrder] = 7369.00 WHERE [Code] = 'wlw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nlw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nlw', 'Walangama', NULL, 736.40) END +VALUES ('nlw', 'Walangama', NULL, 7370.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walangama', [Definition] = NULL, [SortOrder] = 736.40 WHERE [Code] = 'nlw' END +SET [Description] = 'Walangama', [Definition] = NULL, [SortOrder] = 7370.00 WHERE [Code] = 'nlw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlx', 'Wali (Ghana)', NULL, 736.50) END +VALUES ('wlx', 'Wali (Ghana)', NULL, 7371.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wali (Ghana)', [Definition] = NULL, [SortOrder] = 736.50 WHERE [Code] = 'wlx' END +SET [Description] = 'Wali (Ghana)', [Definition] = NULL, [SortOrder] = 7371.00 WHERE [Code] = 'wlx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wll', 'Wali (Sudan)', NULL, 736.60) END +VALUES ('wll', 'Wali (Sudan)', NULL, 7372.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wali (Sudan)', [Definition] = NULL, [SortOrder] = 736.60 WHERE [Code] = 'wll' END +SET [Description] = 'Wali (Sudan)', [Definition] = NULL, [SortOrder] = 7372.00 WHERE [Code] = 'wll' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wly') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wly', 'Waling', NULL, 736.70) END +VALUES ('wly', 'Waling', NULL, 7373.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waling', [Definition] = NULL, [SortOrder] = 736.70 WHERE [Code] = 'wly' END +SET [Description] = 'Waling', [Definition] = NULL, [SortOrder] = 7373.00 WHERE [Code] = 'wly' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wla', 'Walio', NULL, 736.80) END +VALUES ('wla', 'Walio', NULL, 7374.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walio', [Definition] = NULL, [SortOrder] = 736.80 WHERE [Code] = 'wla' END +SET [Description] = 'Walio', [Definition] = NULL, [SortOrder] = 7374.00 WHERE [Code] = 'wla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waa', 'Walla Walla', NULL, 736.90) END +VALUES ('waa', 'Walla Walla', NULL, 7375.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walla Walla', [Definition] = NULL, [SortOrder] = 736.90 WHERE [Code] = 'waa' END +SET [Description] = 'Walla Walla', [Definition] = NULL, [SortOrder] = 7375.00 WHERE [Code] = 'waa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wls') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wls', 'Wallisian', NULL, 737.00) END +VALUES ('wls', 'Wallisian', NULL, 7376.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wallisian', [Definition] = NULL, [SortOrder] = 737.00 WHERE [Code] = 'wls' END +SET [Description] = 'Wallisian', [Definition] = NULL, [SortOrder] = 7376.00 WHERE [Code] = 'wls' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wln') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wln', 'Walloon', NULL, 737.10) END +VALUES ('wln', 'Walloon', NULL, 7377.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walloon', [Definition] = NULL, [SortOrder] = 737.10 WHERE [Code] = 'wln' END +SET [Description] = 'Walloon', [Definition] = NULL, [SortOrder] = 7377.00 WHERE [Code] = 'wln' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmt', 'Walmajarri', NULL, 737.20) END +VALUES ('wmt', 'Walmajarri', NULL, 7378.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walmajarri', [Definition] = NULL, [SortOrder] = 737.20 WHERE [Code] = 'wmt' END +SET [Description] = 'Walmajarri', [Definition] = NULL, [SortOrder] = 7378.00 WHERE [Code] = 'wmt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wae', 'Walser', NULL, 737.30) END +VALUES ('wae', 'Walser', NULL, 7379.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walser', [Definition] = NULL, [SortOrder] = 737.30 WHERE [Code] = 'wae' END +SET [Description] = 'Walser', [Definition] = NULL, [SortOrder] = 7379.00 WHERE [Code] = 'wae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ola') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ola', 'Walungge', NULL, 737.40) END +VALUES ('ola', 'Walungge', NULL, 7380.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Walungge', [Definition] = NULL, [SortOrder] = 737.40 WHERE [Code] = 'ola' END +SET [Description] = 'Walungge', [Definition] = NULL, [SortOrder] = 7380.00 WHERE [Code] = 'ola' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrb', 'Waluwarra', NULL, 737.50) END +VALUES ('wrb', 'Waluwarra', NULL, 7381.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waluwarra', [Definition] = NULL, [SortOrder] = 737.50 WHERE [Code] = 'wrb' END +SET [Description] = 'Waluwarra', [Definition] = NULL, [SortOrder] = 7381.00 WHERE [Code] = 'wrb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmc', 'Wamas', NULL, 737.60) END +VALUES ('wmc', 'Wamas', NULL, 7382.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wamas', [Definition] = NULL, [SortOrder] = 737.60 WHERE [Code] = 'wmc' END +SET [Description] = 'Wamas', [Definition] = NULL, [SortOrder] = 7382.00 WHERE [Code] = 'wmc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmb', 'Wambaya', NULL, 737.70) END +VALUES ('wmb', 'Wambaya', NULL, 7383.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wambaya', [Definition] = NULL, [SortOrder] = 737.70 WHERE [Code] = 'wmb' END +SET [Description] = 'Wambaya', [Definition] = NULL, [SortOrder] = 7383.00 WHERE [Code] = 'wmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wms') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wms', 'Wambon', NULL, 737.80) END +VALUES ('wms', 'Wambon', NULL, 7384.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wambon', [Definition] = NULL, [SortOrder] = 737.80 WHERE [Code] = 'wms' END +SET [Description] = 'Wambon', [Definition] = NULL, [SortOrder] = 7384.00 WHERE [Code] = 'wms' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wme', 'Wambule', NULL, 737.90) END +VALUES ('wme', 'Wambule', NULL, 7385.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wambule', [Definition] = NULL, [SortOrder] = 737.90 WHERE [Code] = 'wme' END +SET [Description] = 'Wambule', [Definition] = NULL, [SortOrder] = 7385.00 WHERE [Code] = 'wme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wad', 'Wamesa', NULL, 738.00) END +VALUES ('wad', 'Wamesa', NULL, 7386.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wamesa', [Definition] = NULL, [SortOrder] = 738.00 WHERE [Code] = 'wad' END +SET [Description] = 'Wamesa', [Definition] = NULL, [SortOrder] = 7386.00 WHERE [Code] = 'wad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cou') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cou', 'Wamey', NULL, 738.10) END +VALUES ('cou', 'Wamey', NULL, 7387.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wamey', [Definition] = NULL, [SortOrder] = 738.10 WHERE [Code] = 'cou' END +SET [Description] = 'Wamey', [Definition] = NULL, [SortOrder] = 7387.00 WHERE [Code] = 'cou' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmi', 'Wamin', NULL, 738.20) END +VALUES ('wmi', 'Wamin', NULL, 7388.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wamin', [Definition] = NULL, [SortOrder] = 738.20 WHERE [Code] = 'wmi' END +SET [Description] = 'Wamin', [Definition] = NULL, [SortOrder] = 7388.00 WHERE [Code] = 'wmi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wam', 'Wampanoag', NULL, 738.30) END +VALUES ('wam', 'Wampanoag', NULL, 7389.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wampanoag', [Definition] = NULL, [SortOrder] = 738.30 WHERE [Code] = 'wam' END +SET [Description] = 'Wampanoag', [Definition] = NULL, [SortOrder] = 7389.00 WHERE [Code] = 'wam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lbq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lbq', 'Wampar', NULL, 738.40) END +VALUES ('lbq', 'Wampar', NULL, 7390.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wampar', [Definition] = NULL, [SortOrder] = 738.40 WHERE [Code] = 'lbq' END +SET [Description] = 'Wampar', [Definition] = NULL, [SortOrder] = 7390.00 WHERE [Code] = 'lbq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'waz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('waz', 'Wampur', NULL, 738.50) END +VALUES ('waz', 'Wampur', NULL, 7391.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wampur', [Definition] = NULL, [SortOrder] = 738.50 WHERE [Code] = 'waz' END +SET [Description] = 'Wampur', [Definition] = NULL, [SortOrder] = 7391.00 WHERE [Code] = 'waz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wan', 'Wan', NULL, 738.60) END +VALUES ('wan', 'Wan', NULL, 7392.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wan', [Definition] = NULL, [SortOrder] = 738.60 WHERE [Code] = 'wan' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnb', 'Wanambre', NULL, 738.70) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanambre', [Definition] = NULL, [SortOrder] = 738.70 WHERE [Code] = 'wnb' END +SET [Description] = 'Wan', [Definition] = NULL, [SortOrder] = 7392.00 WHERE [Code] = 'wan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnp', 'Wanap', NULL, 738.80) END +VALUES ('wnp', 'Wanap', NULL, 7393.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanap', [Definition] = NULL, [SortOrder] = 738.80 WHERE [Code] = 'wnp' END +SET [Description] = 'Wanap', [Definition] = NULL, [SortOrder] = 7393.00 WHERE [Code] = 'wnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnp', 'Wancho Naga', NULL, 738.90) END +VALUES ('nnp', 'Wancho Naga', NULL, 7394.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wancho Naga', [Definition] = NULL, [SortOrder] = 738.90 WHERE [Code] = 'nnp' END +SET [Description] = 'Wancho Naga', [Definition] = NULL, [SortOrder] = 7394.00 WHERE [Code] = 'nnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbh', 'Wanda', NULL, 739.00) END +VALUES ('wbh', 'Wanda', NULL, 7395.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanda', [Definition] = NULL, [SortOrder] = 739.00 WHERE [Code] = 'wbh' END +SET [Description] = 'Wanda', [Definition] = NULL, [SortOrder] = 7395.00 WHERE [Code] = 'wbh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mfi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mfi', 'Wandala', NULL, 739.10) END +VALUES ('mfi', 'Wandala', NULL, 7396.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wandala', [Definition] = NULL, [SortOrder] = 739.10 WHERE [Code] = 'mfi' END +SET [Description] = 'Wandala', [Definition] = NULL, [SortOrder] = 7396.00 WHERE [Code] = 'mfi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnd', 'Wandarang', NULL, 739.20) END +VALUES ('wnd', 'Wandarang', NULL, 7397.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wandarang', [Definition] = NULL, [SortOrder] = 739.20 WHERE [Code] = 'wnd' END +SET [Description] = 'Wandarang', [Definition] = NULL, [SortOrder] = 7397.00 WHERE [Code] = 'wnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdd', 'Wandji', NULL, 739.30) END +VALUES ('wdd', 'Wandji', NULL, 7398.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wandji', [Definition] = NULL, [SortOrder] = 739.30 WHERE [Code] = 'wdd' END +SET [Description] = 'Wandji', [Definition] = NULL, [SortOrder] = 7398.00 WHERE [Code] = 'wdd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hwa', 'Wané', NULL, 739.40) END +VALUES ('hwa', 'Wané', NULL, 7399.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wané', [Definition] = NULL, [SortOrder] = 739.40 WHERE [Code] = 'hwa' END +SET [Description] = 'Wané', [Definition] = NULL, [SortOrder] = 7399.00 WHERE [Code] = 'hwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wne', 'Waneci', NULL, 739.50) END +VALUES ('wne', 'Waneci', NULL, 7400.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waneci', [Definition] = NULL, [SortOrder] = 739.50 WHERE [Code] = 'wne' END +SET [Description] = 'Waneci', [Definition] = NULL, [SortOrder] = 7400.00 WHERE [Code] = 'wne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwg', 'Wanga', NULL, 739.60) END +VALUES ('lwg', 'Wanga', NULL, 7401.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanga', [Definition] = NULL, [SortOrder] = 739.60 WHERE [Code] = 'lwg' END +SET [Description] = 'Wanga', [Definition] = NULL, [SortOrder] = 7401.00 WHERE [Code] = 'lwg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyb', 'Wangaaybuwan-Ngiyambaa', NULL, 739.70) END +VALUES ('wyb', 'Wangaaybuwan-Ngiyambaa', NULL, 7402.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wangaaybuwan-Ngiyambaa', [Definition] = NULL, [SortOrder] = 739.70 WHERE [Code] = 'wyb' END +SET [Description] = 'Wangaaybuwan-Ngiyambaa', [Definition] = NULL, [SortOrder] = 7402.00 WHERE [Code] = 'wyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnm', 'Wanggamala', NULL, 739.80) END +VALUES ('wnm', 'Wanggamala', NULL, 7403.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanggamala', [Definition] = NULL, [SortOrder] = 739.80 WHERE [Code] = 'wnm' END +SET [Description] = 'Wanggamala', [Definition] = NULL, [SortOrder] = 7403.00 WHERE [Code] = 'wnm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wng', 'Wanggom', NULL, 739.90) END +VALUES ('wng', 'Wanggom', NULL, 7404.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanggom', [Definition] = NULL, [SortOrder] = 739.90 WHERE [Code] = 'wng' END +SET [Description] = 'Wanggom', [Definition] = NULL, [SortOrder] = 7404.00 WHERE [Code] = 'wng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgg', 'Wangkangurru', NULL, 740.00) END +VALUES ('wgg', 'Wangkangurru', NULL, 7405.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wangkangurru', [Definition] = NULL, [SortOrder] = 740.00 WHERE [Code] = 'wgg' END +SET [Description] = 'Wangkangurru', [Definition] = NULL, [SortOrder] = 7405.00 WHERE [Code] = 'wgg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wky', 'Wangkayutyuru', NULL, 740.10) END +VALUES ('wky', 'Wangkayutyuru', NULL, 7406.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wangkayutyuru', [Definition] = NULL, [SortOrder] = 740.10 WHERE [Code] = 'wky' END +SET [Description] = 'Wangkayutyuru', [Definition] = NULL, [SortOrder] = 7406.00 WHERE [Code] = 'wky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwk', 'Wangkumara', NULL, 740.20) END +VALUES ('xwk', 'Wangkumara', NULL, 7407.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wangkumara', [Definition] = NULL, [SortOrder] = 740.20 WHERE [Code] = 'xwk' END +SET [Description] = 'Wangkumara', [Definition] = NULL, [SortOrder] = 7407.00 WHERE [Code] = 'xwk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jub', 'Wannu', NULL, 740.30) END +VALUES ('jub', 'Wannu', NULL, 7408.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wannu', [Definition] = NULL, [SortOrder] = 740.30 WHERE [Code] = 'jub' END +SET [Description] = 'Wannu', [Definition] = NULL, [SortOrder] = 7408.00 WHERE [Code] = 'jub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wno', 'Wano', NULL, 740.40) END +VALUES ('wno', 'Wano', NULL, 7409.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wano', [Definition] = NULL, [SortOrder] = 740.40 WHERE [Code] = 'wno' END +SET [Description] = 'Wano', [Definition] = NULL, [SortOrder] = 7409.00 WHERE [Code] = 'wno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnc', 'Wantoat', NULL, 740.50) END +VALUES ('wnc', 'Wantoat', NULL, 7410.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wantoat', [Definition] = NULL, [SortOrder] = 740.50 WHERE [Code] = 'wnc' END +SET [Description] = 'Wantoat', [Definition] = NULL, [SortOrder] = 7410.00 WHERE [Code] = 'wnc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnk', 'Wanukaka', NULL, 740.60) END +VALUES ('wnk', 'Wanukaka', NULL, 7411.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanukaka', [Definition] = NULL, [SortOrder] = 740.60 WHERE [Code] = 'wnk' END +SET [Description] = 'Wanukaka', [Definition] = NULL, [SortOrder] = 7411.00 WHERE [Code] = 'wnk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wny') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wny', 'Wanyi', NULL, 740.70) END +VALUES ('wny', 'Wanyi', NULL, 7412.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wanyi', [Definition] = NULL, [SortOrder] = 740.70 WHERE [Code] = 'wny' END +SET [Description] = 'Wanyi', [Definition] = NULL, [SortOrder] = 7412.00 WHERE [Code] = 'wny' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'auc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('auc', 'Waorani', NULL, 740.80) END +VALUES ('auc', 'Waorani', NULL, 7413.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waorani', [Definition] = NULL, [SortOrder] = 740.80 WHERE [Code] = 'auc' END +SET [Description] = 'Waorani', [Definition] = NULL, [SortOrder] = 7413.00 WHERE [Code] = 'auc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juk', 'Wapan', NULL, 740.90) END +VALUES ('juk', 'Wapan', NULL, 7414.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wapan', [Definition] = NULL, [SortOrder] = 740.90 WHERE [Code] = 'juk' END +SET [Description] = 'Wapan', [Definition] = NULL, [SortOrder] = 7414.00 WHERE [Code] = 'juk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'juw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('juw', 'Wãpha', NULL, 741.00) END +VALUES ('juw', 'Wãpha', NULL, 7415.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wãpha', [Definition] = NULL, [SortOrder] = 741.00 WHERE [Code] = 'juw' END +SET [Description] = 'Wãpha', [Definition] = NULL, [SortOrder] = 7415.00 WHERE [Code] = 'juw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wap', 'Wapishana', NULL, 741.10) END +VALUES ('wap', 'Wapishana', NULL, 7416.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wapishana', [Definition] = NULL, [SortOrder] = 741.10 WHERE [Code] = 'wap' END +SET [Description] = 'Wapishana', [Definition] = NULL, [SortOrder] = 7416.00 WHERE [Code] = 'wap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wao', 'Wappo', NULL, 741.20) END +VALUES ('wao', 'Wappo', NULL, 7417.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wappo', [Definition] = NULL, [SortOrder] = 741.20 WHERE [Code] = 'wao' END +SET [Description] = 'Wappo', [Definition] = NULL, [SortOrder] = 7417.00 WHERE [Code] = 'wao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'aml') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('aml', 'War-Jaintia', NULL, 741.30) END +VALUES ('aml', 'War-Jaintia', NULL, 7418.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'War-Jaintia', [Definition] = NULL, [SortOrder] = 741.30 WHERE [Code] = 'aml' END +SET [Description] = 'War-Jaintia', [Definition] = NULL, [SortOrder] = 7418.00 WHERE [Code] = 'aml' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbf', 'Wara', NULL, 741.40) END +VALUES ('wbf', 'Wara', NULL, 7419.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wara', [Definition] = NULL, [SortOrder] = 741.40 WHERE [Code] = 'wbf' END +SET [Description] = 'Wara', [Definition] = NULL, [SortOrder] = 7419.00 WHERE [Code] = 'wbf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tci') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tci', 'Wára', NULL, 741.50) END +VALUES ('tci', 'Wára', NULL, 7420.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wára', [Definition] = NULL, [SortOrder] = 741.50 WHERE [Code] = 'tci' END +SET [Description] = 'Wára', [Definition] = NULL, [SortOrder] = 7420.00 WHERE [Code] = 'tci' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wba', 'Warao', NULL, 741.60) END +VALUES ('wba', 'Warao', NULL, 7421.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warao', [Definition] = NULL, [SortOrder] = 741.60 WHERE [Code] = 'wba' END +SET [Description] = 'Warao', [Definition] = NULL, [SortOrder] = 7421.00 WHERE [Code] = 'wba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrz', 'Waray (Australia)', NULL, 741.70) END +VALUES ('wrz', 'Waray (Australia)', NULL, 7422.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waray (Australia)', [Definition] = NULL, [SortOrder] = 741.70 WHERE [Code] = 'wrz' END +SET [Description] = 'Waray (Australia)', [Definition] = NULL, [SortOrder] = 7422.00 WHERE [Code] = 'wrz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'war') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('war', 'Waray (Philippines)', NULL, 741.80) END +VALUES ('war', 'Waray (Philippines)', NULL, 7423.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waray (Philippines)', [Definition] = NULL, [SortOrder] = 741.80 WHERE [Code] = 'war' END +SET [Description] = 'Waray (Philippines)', [Definition] = NULL, [SortOrder] = 7423.00 WHERE [Code] = 'war' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrr', 'Wardaman', NULL, 741.90) END +VALUES ('wrr', 'Wardaman', NULL, 7424.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wardaman', [Definition] = NULL, [SortOrder] = 741.90 WHERE [Code] = 'wrr' END +SET [Description] = 'Wardaman', [Definition] = NULL, [SortOrder] = 7424.00 WHERE [Code] = 'wrr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wxw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wxw', 'Wardandi', NULL, 742.00) END +VALUES ('wxw', 'Wardandi', NULL, 7425.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wardandi', [Definition] = NULL, [SortOrder] = 742.00 WHERE [Code] = 'wxw' END +SET [Description] = 'Wardandi', [Definition] = NULL, [SortOrder] = 7425.00 WHERE [Code] = 'wxw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsa', 'Warembori', NULL, 742.10) END +VALUES ('wsa', 'Warembori', NULL, 7426.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warembori', [Definition] = NULL, [SortOrder] = 742.10 WHERE [Code] = 'wsa' END +SET [Description] = 'Warembori', [Definition] = NULL, [SortOrder] = 7426.00 WHERE [Code] = 'wsa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wai', 'Wares', NULL, 742.20) END +VALUES ('wai', 'Wares', NULL, 7427.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wares', [Definition] = NULL, [SortOrder] = 742.20 WHERE [Code] = 'wai' END +SET [Description] = 'Wares', [Definition] = NULL, [SortOrder] = 7427.00 WHERE [Code] = 'wai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrs', 'Waris', NULL, 742.30) END +VALUES ('wrs', 'Waris', NULL, 7428.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waris', [Definition] = NULL, [SortOrder] = 742.30 WHERE [Code] = 'wrs' END +SET [Description] = 'Waris', [Definition] = NULL, [SortOrder] = 7428.00 WHERE [Code] = 'wrs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbe', 'Waritai', NULL, 742.40) END +VALUES ('wbe', 'Waritai', NULL, 7429.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waritai', [Definition] = NULL, [SortOrder] = 742.40 WHERE [Code] = 'wbe' END +SET [Description] = 'Waritai', [Definition] = NULL, [SortOrder] = 7429.00 WHERE [Code] = 'wbe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wri') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wri', 'Wariyangga', NULL, 742.50) END +VALUES ('wri', 'Wariyangga', NULL, 7430.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wariyangga', [Definition] = NULL, [SortOrder] = 742.50 WHERE [Code] = 'wri' END +SET [Description] = 'Wariyangga', [Definition] = NULL, [SortOrder] = 7430.00 WHERE [Code] = 'wri' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wji', 'Warji', NULL, 742.60) END +VALUES ('wji', 'Warji', NULL, 7431.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warji', [Definition] = NULL, [SortOrder] = 742.60 WHERE [Code] = 'wji' END +SET [Description] = 'Warji', [Definition] = NULL, [SortOrder] = 7431.00 WHERE [Code] = 'wji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgv', 'Warkay-Bipim', NULL, 742.70) END +VALUES ('bgv', 'Warkay-Bipim', NULL, 7432.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warkay-Bipim', [Definition] = NULL, [SortOrder] = 742.70 WHERE [Code] = 'bgv' END +SET [Description] = 'Warkay-Bipim', [Definition] = NULL, [SortOrder] = 7432.00 WHERE [Code] = 'bgv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrl', 'Warlmanpa', NULL, 742.80) END +VALUES ('wrl', 'Warlmanpa', NULL, 7433.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warlmanpa', [Definition] = NULL, [SortOrder] = 742.80 WHERE [Code] = 'wrl' END +SET [Description] = 'Warlmanpa', [Definition] = NULL, [SortOrder] = 7433.00 WHERE [Code] = 'wrl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbp', 'Warlpiri', NULL, 742.90) END +VALUES ('wbp', 'Warlpiri', NULL, 7434.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warlpiri', [Definition] = NULL, [SortOrder] = 742.90 WHERE [Code] = 'wbp' END +SET [Description] = 'Warlpiri', [Definition] = NULL, [SortOrder] = 7434.00 WHERE [Code] = 'wbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrn', 'Warnang', NULL, 743.00) END +VALUES ('wrn', 'Warnang', NULL, 7435.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warnang', [Definition] = NULL, [SortOrder] = 743.00 WHERE [Code] = 'wrn' END +SET [Description] = 'Warnang', [Definition] = NULL, [SortOrder] = 7435.00 WHERE [Code] = 'wrn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbt', 'Warnman', NULL, 743.10) END +VALUES ('wbt', 'Warnman', NULL, 7436.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warnman', [Definition] = NULL, [SortOrder] = 743.10 WHERE [Code] = 'wbt' END +SET [Description] = 'Warnman', [Definition] = NULL, [SortOrder] = 7436.00 WHERE [Code] = 'wbt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrp', 'Waropen', NULL, 743.20) END +VALUES ('wrp', 'Waropen', NULL, 7437.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waropen', [Definition] = NULL, [SortOrder] = 743.20 WHERE [Code] = 'wrp' END +SET [Description] = 'Waropen', [Definition] = NULL, [SortOrder] = 7437.00 WHERE [Code] = 'wrp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgy', 'Warrgamay', NULL, 743.30) END +VALUES ('wgy', 'Warrgamay', NULL, 7438.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warrgamay', [Definition] = NULL, [SortOrder] = 743.30 WHERE [Code] = 'wgy' END +SET [Description] = 'Warrgamay', [Definition] = NULL, [SortOrder] = 7438.00 WHERE [Code] = 'wgy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wwr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wwr', 'Warrwa', NULL, 743.40) END +VALUES ('wwr', 'Warrwa', NULL, 7439.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warrwa', [Definition] = NULL, [SortOrder] = 743.40 WHERE [Code] = 'wwr' END +SET [Description] = 'Warrwa', [Definition] = NULL, [SortOrder] = 7439.00 WHERE [Code] = 'wwr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wru') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wru', 'Waru', NULL, 743.50) END +VALUES ('wru', 'Waru', NULL, 7440.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waru', [Definition] = NULL, [SortOrder] = 743.50 WHERE [Code] = 'wru' END +SET [Description] = 'Waru', [Definition] = NULL, [SortOrder] = 7440.00 WHERE [Code] = 'wru' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrm', 'Warumungu', NULL, 743.60) END +VALUES ('wrm', 'Warumungu', NULL, 7441.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warumungu', [Definition] = NULL, [SortOrder] = 743.60 WHERE [Code] = 'wrm' END +SET [Description] = 'Warumungu', [Definition] = NULL, [SortOrder] = 7441.00 WHERE [Code] = 'wrm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrv', 'Waruna', NULL, 743.70) END +VALUES ('wrv', 'Waruna', NULL, 7442.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waruna', [Definition] = NULL, [SortOrder] = 743.70 WHERE [Code] = 'wrv' END +SET [Description] = 'Waruna', [Definition] = NULL, [SortOrder] = 7442.00 WHERE [Code] = 'wrv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrg', 'Warungu', NULL, 743.80) END +VALUES ('wrg', 'Warungu', NULL, 7443.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warungu', [Definition] = NULL, [SortOrder] = 743.80 WHERE [Code] = 'wrg' END +SET [Description] = 'Warungu', [Definition] = NULL, [SortOrder] = 7443.00 WHERE [Code] = 'wrg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hrw', 'Warwar Feni', NULL, 743.90) END +VALUES ('hrw', 'Warwar Feni', NULL, 7444.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Warwar Feni', [Definition] = NULL, [SortOrder] = 743.90 WHERE [Code] = 'hrw' END +SET [Description] = 'Warwar Feni', [Definition] = NULL, [SortOrder] = 7444.00 WHERE [Code] = 'hrw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wss', 'Wasa', NULL, 744.00) END +VALUES ('wss', 'Wasa', NULL, 7445.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wasa', [Definition] = NULL, [SortOrder] = 744.00 WHERE [Code] = 'wss' END +SET [Description] = 'Wasa', [Definition] = NULL, [SortOrder] = 7445.00 WHERE [Code] = 'wss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wac') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wac', 'Wasco-Wishram', NULL, 744.10) END +VALUES ('wac', 'Wasco-Wishram', NULL, 7446.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wasco-Wishram', [Definition] = NULL, [SortOrder] = 744.10 WHERE [Code] = 'wac' END +SET [Description] = 'Wasco-Wishram', [Definition] = NULL, [SortOrder] = 7446.00 WHERE [Code] = 'wac' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gsp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gsp', 'Wasembo', NULL, 744.20) END +VALUES ('gsp', 'Wasembo', NULL, 7447.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wasembo', [Definition] = NULL, [SortOrder] = 744.20 WHERE [Code] = 'gsp' END +SET [Description] = 'Wasembo', [Definition] = NULL, [SortOrder] = 7447.00 WHERE [Code] = 'gsp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'was') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('was', 'Washo', NULL, 744.30) END +VALUES ('was', 'Washo', NULL, 7448.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Washo', [Definition] = NULL, [SortOrder] = 744.30 WHERE [Code] = 'was' END +SET [Description] = 'Washo', [Definition] = NULL, [SortOrder] = 7448.00 WHERE [Code] = 'was' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsk', 'Waskia', NULL, 744.40) END +VALUES ('wsk', 'Waskia', NULL, 7449.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waskia', [Definition] = NULL, [SortOrder] = 744.40 WHERE [Code] = 'wsk' END +SET [Description] = 'Waskia', [Definition] = NULL, [SortOrder] = 7449.00 WHERE [Code] = 'wsk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsu', 'Wasu', NULL, 744.50) END +VALUES ('wsu', 'Wasu', NULL, 7450.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wasu', [Definition] = NULL, [SortOrder] = 744.50 WHERE [Code] = 'wsu' END +SET [Description] = 'Wasu', [Definition] = NULL, [SortOrder] = 7450.00 WHERE [Code] = 'wsu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wtk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wtk', 'Watakataui', NULL, 744.60) END +VALUES ('wtk', 'Watakataui', NULL, 7451.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Watakataui', [Definition] = NULL, [SortOrder] = 744.60 WHERE [Code] = 'wtk' END +SET [Description] = 'Watakataui', [Definition] = NULL, [SortOrder] = 7451.00 WHERE [Code] = 'wtk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wax', 'Watam', NULL, 744.70) END +VALUES ('wax', 'Watam', NULL, 7452.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Watam', [Definition] = NULL, [SortOrder] = 744.70 WHERE [Code] = 'wax' END +SET [Description] = 'Watam', [Definition] = NULL, [SortOrder] = 7452.00 WHERE [Code] = 'wax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wth', 'Wathawurrung', NULL, 744.80) END +VALUES ('wth', 'Wathawurrung', NULL, 7453.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wathawurrung', [Definition] = NULL, [SortOrder] = 744.80 WHERE [Code] = 'wth' END +SET [Description] = 'Wathawurrung', [Definition] = NULL, [SortOrder] = 7453.00 WHERE [Code] = 'wth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wtf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wtf', 'Watiwa', NULL, 744.90) END +VALUES ('wtf', 'Watiwa', NULL, 7454.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Watiwa', [Definition] = NULL, [SortOrder] = 744.90 WHERE [Code] = 'wtf' END +SET [Description] = 'Watiwa', [Definition] = NULL, [SortOrder] = 7454.00 WHERE [Code] = 'wtf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wah', 'Watubela', NULL, 745.00) END +VALUES ('wah', 'Watubela', NULL, 7455.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Watubela', [Definition] = NULL, [SortOrder] = 745.00 WHERE [Code] = 'wah' END +SET [Description] = 'Watubela', [Definition] = NULL, [SortOrder] = 7455.00 WHERE [Code] = 'wah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kop', 'Waube', NULL, 745.10) END +VALUES ('kop', 'Waube', NULL, 7456.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waube', [Definition] = NULL, [SortOrder] = 745.10 WHERE [Code] = 'kop' END +SET [Description] = 'Waube', [Definition] = NULL, [SortOrder] = 7456.00 WHERE [Code] = 'kop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wau', 'Waurá', NULL, 745.20) END +VALUES ('wau', 'Waurá', NULL, 7457.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waurá', [Definition] = NULL, [SortOrder] = 745.20 WHERE [Code] = 'wau' END +SET [Description] = 'Waurá', [Definition] = NULL, [SortOrder] = 7457.00 WHERE [Code] = 'wau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wuy', 'Wauyai', NULL, 745.30) END +VALUES ('wuy', 'Wauyai', NULL, 7458.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wauyai', [Definition] = NULL, [SortOrder] = 745.30 WHERE [Code] = 'wuy' END +SET [Description] = 'Wauyai', [Definition] = NULL, [SortOrder] = 7458.00 WHERE [Code] = 'wuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'www') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('www', 'Wawa', NULL, 745.40) END +VALUES ('www', 'Wawa', NULL, 7459.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wawa', [Definition] = NULL, [SortOrder] = 745.40 WHERE [Code] = 'www' END +SET [Description] = 'Wawa', [Definition] = NULL, [SortOrder] = 7459.00 WHERE [Code] = 'www' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wow') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wow', 'Wawonii', NULL, 745.50) END +VALUES ('wow', 'Wawonii', NULL, 7460.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wawonii', [Definition] = NULL, [SortOrder] = 745.50 WHERE [Code] = 'wow' END +SET [Description] = 'Wawonii', [Definition] = NULL, [SortOrder] = 7460.00 WHERE [Code] = 'wow' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wxa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wxa', 'Waxianghua', NULL, 745.60) END +VALUES ('wxa', 'Waxianghua', NULL, 7461.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Waxianghua', [Definition] = NULL, [SortOrder] = 745.60 WHERE [Code] = 'wxa' END +SET [Description] = 'Waxianghua', [Definition] = NULL, [SortOrder] = 7461.00 WHERE [Code] = 'wxa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'oym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('oym', 'Wayampi', NULL, 745.70) END +VALUES ('oym', 'Wayampi', NULL, 7462.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayampi', [Definition] = NULL, [SortOrder] = 745.70 WHERE [Code] = 'oym' END +SET [Description] = 'Wayampi', [Definition] = NULL, [SortOrder] = 7462.00 WHERE [Code] = 'oym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'way') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('way', 'Wayana', NULL, 745.80) END +VALUES ('way', 'Wayana', NULL, 7463.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayana', [Definition] = NULL, [SortOrder] = 745.80 WHERE [Code] = 'way' END +SET [Description] = 'Wayana', [Definition] = NULL, [SortOrder] = 7463.00 WHERE [Code] = 'way' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctt', 'Wayanad Chetti', NULL, 745.90) END +VALUES ('ctt', 'Wayanad Chetti', NULL, 7464.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayanad Chetti', [Definition] = NULL, [SortOrder] = 745.90 WHERE [Code] = 'ctt' END +SET [Description] = 'Wayanad Chetti', [Definition] = NULL, [SortOrder] = 7464.00 WHERE [Code] = 'ctt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyr', 'Wayoró', NULL, 746.00) END +VALUES ('wyr', 'Wayoró', NULL, 7465.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayoró', [Definition] = NULL, [SortOrder] = 746.00 WHERE [Code] = 'wyr' END +SET [Description] = 'Wayoró', [Definition] = NULL, [SortOrder] = 7465.00 WHERE [Code] = 'wyr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'vay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('vay', 'Wayu', NULL, 746.10) END +VALUES ('vay', 'Wayu', NULL, 7466.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayu', [Definition] = NULL, [SortOrder] = 746.10 WHERE [Code] = 'vay' END +SET [Description] = 'Wayu', [Definition] = NULL, [SortOrder] = 7466.00 WHERE [Code] = 'vay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guc', 'Wayuu', NULL, 746.20) END +VALUES ('guc', 'Wayuu', NULL, 7467.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wayuu', [Definition] = NULL, [SortOrder] = 746.20 WHERE [Code] = 'guc' END +SET [Description] = 'Wayuu', [Definition] = NULL, [SortOrder] = 7467.00 WHERE [Code] = 'guc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wob', 'Wè Northern', NULL, 746.30) END +VALUES ('wob', 'Wè Northern', NULL, 7468.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wè Northern', [Definition] = NULL, [SortOrder] = 746.30 WHERE [Code] = 'wob' END +SET [Description] = 'Wè Northern', [Definition] = NULL, [SortOrder] = 7468.00 WHERE [Code] = 'wob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gxx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gxx', 'Wè Southern', NULL, 746.40) END +VALUES ('gxx', 'Wè Southern', NULL, 7469.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wè Southern', [Definition] = NULL, [SortOrder] = 746.40 WHERE [Code] = 'gxx' END +SET [Description] = 'Wè Southern', [Definition] = NULL, [SortOrder] = 7469.00 WHERE [Code] = 'gxx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wec', 'Wè Western', NULL, 746.50) END +VALUES ('wec', 'Wè Western', NULL, 7470.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wè Western', [Definition] = NULL, [SortOrder] = 746.50 WHERE [Code] = 'wec' END +SET [Description] = 'Wè Western', [Definition] = NULL, [SortOrder] = 7470.00 WHERE [Code] = 'wec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wed') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wed', 'Wedau', NULL, 746.60) END +VALUES ('wed', 'Wedau', NULL, 7471.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wedau', [Definition] = NULL, [SortOrder] = 746.60 WHERE [Code] = 'wed' END +SET [Description] = 'Wedau', [Definition] = NULL, [SortOrder] = 7471.00 WHERE [Code] = 'wed' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'weh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('weh', 'Weh', NULL, 746.70) END +VALUES ('weh', 'Weh', NULL, 7472.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weh', [Definition] = NULL, [SortOrder] = 746.70 WHERE [Code] = 'weh' END +SET [Description] = 'Weh', [Definition] = NULL, [SortOrder] = 7472.00 WHERE [Code] = 'weh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wew', 'Wejewa', NULL, 746.80) END +VALUES ('wew', 'Wejewa', NULL, 7473.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wejewa', [Definition] = NULL, [SortOrder] = 746.80 WHERE [Code] = 'wew' END +SET [Description] = 'Wejewa', [Definition] = NULL, [SortOrder] = 7473.00 WHERE [Code] = 'wew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlh', 'Welaun', NULL, 746.90) END +VALUES ('wlh', 'Welaun', NULL, 7474.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Welaun', [Definition] = NULL, [SortOrder] = 746.90 WHERE [Code] = 'wlh' END +SET [Description] = 'Welaun', [Definition] = NULL, [SortOrder] = 7474.00 WHERE [Code] = 'wlh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'klh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('klh', 'Weliki', NULL, 747.00) END +VALUES ('klh', 'Weliki', NULL, 7475.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weliki', [Definition] = NULL, [SortOrder] = 747.00 WHERE [Code] = 'klh' END +SET [Description] = 'Weliki', [Definition] = NULL, [SortOrder] = 7475.00 WHERE [Code] = 'klh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cym', 'Welsh', NULL, 747.10) END +VALUES ('cym', 'Welsh', NULL, 7476.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Welsh', [Definition] = NULL, [SortOrder] = 747.10 WHERE [Code] = 'cym' END +SET [Description] = 'Welsh', [Definition] = NULL, [SortOrder] = 7476.00 WHERE [Code] = 'cym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rmw', 'Welsh Romani', NULL, 747.20) END +VALUES ('rmw', 'Welsh Romani', NULL, 7477.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Welsh Romani', [Definition] = NULL, [SortOrder] = 747.20 WHERE [Code] = 'rmw' END +SET [Description] = 'Welsh Romani', [Definition] = NULL, [SortOrder] = 7477.00 WHERE [Code] = 'rmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'weo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('weo', 'Wemale', NULL, 747.30) END +VALUES ('weo', 'Wemale', NULL, 7478.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wemale', [Definition] = NULL, [SortOrder] = 747.30 WHERE [Code] = 'weo' END +SET [Description] = 'Wemale', [Definition] = NULL, [SortOrder] = 7478.00 WHERE [Code] = 'weo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xww', 'Wemba Wemba', NULL, 747.40) END +VALUES ('xww', 'Wemba Wemba', NULL, 7479.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wemba Wemba', [Definition] = NULL, [SortOrder] = 747.40 WHERE [Code] = 'xww' END +SET [Description] = 'Wemba Wemba', [Definition] = NULL, [SortOrder] = 7479.00 WHERE [Code] = 'xww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wem', 'Weme Gbe', NULL, 747.50) END +VALUES ('wem', 'Weme Gbe', NULL, 7480.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weme Gbe', [Definition] = NULL, [SortOrder] = 747.50 WHERE [Code] = 'wem' END +SET [Description] = 'Weme Gbe', [Definition] = NULL, [SortOrder] = 7480.00 WHERE [Code] = 'wem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wdt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wdt', 'Wendat', NULL, 747.60) END +VALUES ('wdt', 'Wendat', NULL, 7481.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wendat', [Definition] = NULL, [SortOrder] = 747.60 WHERE [Code] = 'wdt' END +SET [Description] = 'Wendat', [Definition] = NULL, [SortOrder] = 7481.00 WHERE [Code] = 'wdt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'weg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('weg', 'Wergaia', NULL, 747.70) END +VALUES ('weg', 'Wergaia', NULL, 7482.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wergaia', [Definition] = NULL, [SortOrder] = 747.70 WHERE [Code] = 'weg' END +SET [Description] = 'Wergaia', [Definition] = NULL, [SortOrder] = 7482.00 WHERE [Code] = 'weg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wer', 'Weri', NULL, 747.80) END +VALUES ('wer', 'Weri', NULL, 7483.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weri', [Definition] = NULL, [SortOrder] = 747.80 WHERE [Code] = 'wer' END +SET [Description] = 'Weri', [Definition] = NULL, [SortOrder] = 7483.00 WHERE [Code] = 'wer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvw', 'Wersing', NULL, 747.90) END +VALUES ('kvw', 'Wersing', NULL, 7484.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wersing', [Definition] = NULL, [SortOrder] = 747.90 WHERE [Code] = 'kvw' END +SET [Description] = 'Wersing', [Definition] = NULL, [SortOrder] = 7484.00 WHERE [Code] = 'kvw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fbl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fbl', 'West Albay Bikol', NULL, 748.00) END +VALUES ('fbl', 'West Albay Bikol', NULL, 7485.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Albay Bikol', [Definition] = NULL, [SortOrder] = 748.00 WHERE [Code] = 'fbl' END +SET [Description] = 'West Albay Bikol', [Definition] = NULL, [SortOrder] = 7485.00 WHERE [Code] = 'fbl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nnd', 'West Ambae', NULL, 748.10) END +VALUES ('nnd', 'West Ambae', NULL, 7486.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Ambae', [Definition] = NULL, [SortOrder] = 748.10 WHERE [Code] = 'nnd' END +SET [Description] = 'West Ambae', [Definition] = NULL, [SortOrder] = 7486.00 WHERE [Code] = 'nnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbs', 'West Bengal Sign Language', NULL, 748.20) END +VALUES ('wbs', 'West Bengal Sign Language', NULL, 7487.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Bengal Sign Language', [Definition] = NULL, [SortOrder] = 748.20 WHERE [Code] = 'wbs' END +SET [Description] = 'West Bengal Sign Language', [Definition] = NULL, [SortOrder] = 7487.00 WHERE [Code] = 'wbs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zbw', 'West Berawan', NULL, 748.30) END +VALUES ('zbw', 'West Berawan', NULL, 7488.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Berawan', [Definition] = NULL, [SortOrder] = 748.30 WHERE [Code] = 'zbw' END +SET [Description] = 'West Berawan', [Definition] = NULL, [SortOrder] = 7488.00 WHERE [Code] = 'zbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bbp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bbp', 'West Central Banda', NULL, 748.40) END +VALUES ('bbp', 'West Central Banda', NULL, 7489.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Central Banda', [Definition] = NULL, [SortOrder] = 748.40 WHERE [Code] = 'bbp' END +SET [Description] = 'West Central Banda', [Definition] = NULL, [SortOrder] = 7489.00 WHERE [Code] = 'bbp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gaz', 'West Central Oromo', NULL, 748.50) END +VALUES ('gaz', 'West Central Oromo', NULL, 7490.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Central Oromo', [Definition] = NULL, [SortOrder] = 748.50 WHERE [Code] = 'gaz' END +SET [Description] = 'West Central Oromo', [Definition] = NULL, [SortOrder] = 7490.00 WHERE [Code] = 'gaz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bdr', 'West Coast Bajau', NULL, 748.60) END +VALUES ('bdr', 'West Coast Bajau', NULL, 7491.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Coast Bajau', [Definition] = NULL, [SortOrder] = 748.60 WHERE [Code] = 'bdr' END +SET [Description] = 'West Coast Bajau', [Definition] = NULL, [SortOrder] = 7491.00 WHERE [Code] = 'bdr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'drn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('drn', 'West Damar', NULL, 748.70) END +VALUES ('drn', 'West Damar', NULL, 7492.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Damar', [Definition] = NULL, [SortOrder] = 748.70 WHERE [Code] = 'drn' END +SET [Description] = 'West Damar', [Definition] = NULL, [SortOrder] = 7492.00 WHERE [Code] = 'drn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ddi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ddi', 'West Goodenough', NULL, 748.80) END +VALUES ('ddi', 'West Goodenough', NULL, 7493.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Goodenough', [Definition] = NULL, [SortOrder] = 748.80 WHERE [Code] = 'ddi' END +SET [Description] = 'West Goodenough', [Definition] = NULL, [SortOrder] = 7493.00 WHERE [Code] = 'ddi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kew') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kew', 'West Kewa', NULL, 748.90) END +VALUES ('kew', 'West Kewa', NULL, 7494.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Kewa', [Definition] = NULL, [SortOrder] = 748.90 WHERE [Code] = 'kew' END +SET [Description] = 'West Kewa', [Definition] = NULL, [SortOrder] = 7494.00 WHERE [Code] = 'kew' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lmj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lmj', 'West Lembata', NULL, 749.00) END +VALUES ('lmj', 'West Lembata', NULL, 7495.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Lembata', [Definition] = NULL, [SortOrder] = 749.00 WHERE [Code] = 'lmj' END +SET [Description] = 'West Lembata', [Definition] = NULL, [SortOrder] = 7495.00 WHERE [Code] = 'lmj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mqs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mqs', 'West Makian', NULL, 749.10) END +VALUES ('mqs', 'West Makian', NULL, 7496.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Makian', [Definition] = NULL, [SortOrder] = 749.10 WHERE [Code] = 'mqs' END +SET [Description] = 'West Makian', [Definition] = NULL, [SortOrder] = 7496.00 WHERE [Code] = 'mqs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mss', 'West Masela', NULL, 749.20) END +VALUES ('mss', 'West Masela', NULL, 7497.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Masela', [Definition] = NULL, [SortOrder] = 749.20 WHERE [Code] = 'mss' END +SET [Description] = 'West Masela', [Definition] = NULL, [SortOrder] = 7497.00 WHERE [Code] = 'mss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'txn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('txn', 'West Tarangan', NULL, 749.30) END +VALUES ('txn', 'West Tarangan', NULL, 7498.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Tarangan', [Definition] = NULL, [SortOrder] = 749.30 WHERE [Code] = 'txn' END +SET [Description] = 'West Tarangan', [Definition] = NULL, [SortOrder] = 7498.00 WHERE [Code] = 'txn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'uve') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('uve', 'West Uvean', NULL, 749.40) END +VALUES ('uve', 'West Uvean', NULL, 7499.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Uvean', [Definition] = NULL, [SortOrder] = 749.40 WHERE [Code] = 'uve' END +SET [Description] = 'West Uvean', [Definition] = NULL, [SortOrder] = 7499.00 WHERE [Code] = 'uve' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybe', 'West Yugur', NULL, 749.50) END +VALUES ('ybe', 'West Yugur', NULL, 7500.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West Yugur', [Definition] = NULL, [SortOrder] = 749.50 WHERE [Code] = 'ybe' END +SET [Description] = 'West Yugur', [Definition] = NULL, [SortOrder] = 7500.00 WHERE [Code] = 'ybe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lia', 'West-Central Limba', NULL, 749.60) END +VALUES ('lia', 'West-Central Limba', NULL, 7501.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'West-Central Limba', [Definition] = NULL, [SortOrder] = 749.60 WHERE [Code] = 'lia' END +SET [Description] = 'West-Central Limba', [Definition] = NULL, [SortOrder] = 7501.00 WHERE [Code] = 'lia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'abe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('abe', 'Western Abnaki', NULL, 749.70) END +VALUES ('abe', 'Western Abnaki', NULL, 7502.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Abnaki', [Definition] = NULL, [SortOrder] = 749.70 WHERE [Code] = 'abe' END +SET [Description] = 'Western Abnaki', [Definition] = NULL, [SortOrder] = 7502.00 WHERE [Code] = 'abe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'apw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('apw', 'Western Apache', NULL, 749.80) END +VALUES ('apw', 'Western Apache', NULL, 7503.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Apache', [Definition] = NULL, [SortOrder] = 749.80 WHERE [Code] = 'apw' END +SET [Description] = 'Western Apache', [Definition] = NULL, [SortOrder] = 7503.00 WHERE [Code] = 'apw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hyw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hyw', 'Western Armenian', NULL, 749.90) END +VALUES ('hyw', 'Western Armenian', NULL, 7504.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Armenian', [Definition] = NULL, [SortOrder] = 749.90 WHERE [Code] = 'hyw' END +SET [Description] = 'Western Armenian', [Definition] = NULL, [SortOrder] = 7504.00 WHERE [Code] = 'hyw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'are') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('are', 'Western Arrarnta', NULL, 750.00) END +VALUES ('are', 'Western Arrarnta', NULL, 7505.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Arrarnta', [Definition] = NULL, [SortOrder] = 750.00 WHERE [Code] = 'are' END +SET [Description] = 'Western Arrarnta', [Definition] = NULL, [SortOrder] = 7505.00 WHERE [Code] = 'are' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bgn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bgn', 'Western Balochi', NULL, 750.10) END +VALUES ('bgn', 'Western Balochi', NULL, 7506.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Balochi', [Definition] = NULL, [SortOrder] = 750.10 WHERE [Code] = 'bgn' END +SET [Description] = 'Western Balochi', [Definition] = NULL, [SortOrder] = 7506.00 WHERE [Code] = 'bgn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnw', 'Western Bolivian Guaraní', NULL, 750.20) END +VALUES ('gnw', 'Western Bolivian Guaraní', NULL, 7507.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Bolivian Guaraní', [Definition] = NULL, [SortOrder] = 750.20 WHERE [Code] = 'gnw' END +SET [Description] = 'Western Bolivian Guaraní', [Definition] = NULL, [SortOrder] = 7507.00 WHERE [Code] = 'gnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'brv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('brv', 'Western Bru', NULL, 750.30) END +VALUES ('brv', 'Western Bru', NULL, 7508.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Bru', [Definition] = NULL, [SortOrder] = 750.30 WHERE [Code] = 'brv' END +SET [Description] = 'Western Bru', [Definition] = NULL, [SortOrder] = 7508.00 WHERE [Code] = 'brv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mbb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mbb', 'Western Bukidnon Manobo', NULL, 750.40) END +VALUES ('mbb', 'Western Bukidnon Manobo', NULL, 7509.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Bukidnon Manobo', [Definition] = NULL, [SortOrder] = 750.40 WHERE [Code] = 'mbb' END +SET [Description] = 'Western Bukidnon Manobo', [Definition] = NULL, [SortOrder] = 7509.00 WHERE [Code] = 'mbb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cja') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cja', 'Western Cham', NULL, 750.50) END +VALUES ('cja', 'Western Cham', NULL, 7510.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Cham', [Definition] = NULL, [SortOrder] = 750.50 WHERE [Code] = 'cja' END +SET [Description] = 'Western Cham', [Definition] = NULL, [SortOrder] = 7510.00 WHERE [Code] = 'cja' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dnw', 'Western Dani', NULL, 750.60) END +VALUES ('dnw', 'Western Dani', NULL, 7511.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Dani', [Definition] = NULL, [SortOrder] = 750.60 WHERE [Code] = 'dnw' END +SET [Description] = 'Western Dani', [Definition] = NULL, [SortOrder] = 7511.00 WHERE [Code] = 'dnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'azn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('azn', 'Western Durango Nahuatl', NULL, 750.70) END +VALUES ('azn', 'Western Durango Nahuatl', NULL, 7512.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Durango Nahuatl', [Definition] = NULL, [SortOrder] = 750.70 WHERE [Code] = 'azn' END +SET [Description] = 'Western Durango Nahuatl', [Definition] = NULL, [SortOrder] = 7512.00 WHERE [Code] = 'azn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyy', 'Western Fijian', NULL, 750.80) END +VALUES ('wyy', 'Western Fijian', NULL, 7513.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Fijian', [Definition] = NULL, [SortOrder] = 750.80 WHERE [Code] = 'wyy' END +SET [Description] = 'Western Fijian', [Definition] = NULL, [SortOrder] = 7513.00 WHERE [Code] = 'wyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fry', 'Western Frisian', NULL, 750.90) END +VALUES ('fry', 'Western Frisian', NULL, 7514.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Frisian', [Definition] = NULL, [SortOrder] = 750.90 WHERE [Code] = 'fry' END +SET [Description] = 'Western Frisian', [Definition] = NULL, [SortOrder] = 7514.00 WHERE [Code] = 'fry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctp', 'Western Highland Chatino', NULL, 751.00) END +VALUES ('ctp', 'Western Highland Chatino', NULL, 7515.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Highland Chatino', [Definition] = NULL, [SortOrder] = 751.00 WHERE [Code] = 'ctp' END +SET [Description] = 'Western Highland Chatino', [Definition] = NULL, [SortOrder] = 7515.00 WHERE [Code] = 'ctp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pua', 'Western Highland Purepecha', NULL, 751.10) END +VALUES ('pua', 'Western Highland Purepecha', NULL, 7516.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Highland Purepecha', [Definition] = NULL, [SortOrder] = 751.10 WHERE [Code] = 'pua' END +SET [Description] = 'Western Highland Purepecha', [Definition] = NULL, [SortOrder] = 7516.00 WHERE [Code] = 'pua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhw', 'Western Huasteca Nahuatl', NULL, 751.20) END +VALUES ('nhw', 'Western Huasteca Nahuatl', NULL, 7517.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 751.20 WHERE [Code] = 'nhw' END +SET [Description] = 'Western Huasteca Nahuatl', [Definition] = NULL, [SortOrder] = 7517.00 WHERE [Code] = 'nhw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmx', 'Western Juxtlahuaca Mixtec', NULL, 751.30) END +VALUES ('jmx', 'Western Juxtlahuaca Mixtec', NULL, 7518.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Juxtlahuaca Mixtec', [Definition] = NULL, [SortOrder] = 751.30 WHERE [Code] = 'jmx' END +SET [Description] = 'Western Juxtlahuaca Mixtec', [Definition] = NULL, [SortOrder] = 7518.00 WHERE [Code] = 'jmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'knj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('knj', 'Western Kanjobal', NULL, 751.40) END +VALUES ('knj', 'Western Kanjobal', NULL, 7519.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Kanjobal', [Definition] = NULL, [SortOrder] = 751.40 WHERE [Code] = 'knj' END +SET [Description] = 'Western Kanjobal', [Definition] = NULL, [SortOrder] = 7519.00 WHERE [Code] = 'knj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kza', 'Western Karaboro', NULL, 751.50) END +VALUES ('kza', 'Western Karaboro', NULL, 7520.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Karaboro', [Definition] = NULL, [SortOrder] = 751.50 WHERE [Code] = 'kza' END +SET [Description] = 'Western Karaboro', [Definition] = NULL, [SortOrder] = 7520.00 WHERE [Code] = 'kza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kuf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kuf', 'Western Katu', NULL, 751.60) END +VALUES ('kuf', 'Western Katu', NULL, 7521.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Katu', [Definition] = NULL, [SortOrder] = 751.60 WHERE [Code] = 'kuf' END +SET [Description] = 'Western Katu', [Definition] = NULL, [SortOrder] = 7521.00 WHERE [Code] = 'kuf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kyu', 'Western Kayah', NULL, 751.70) END +VALUES ('kyu', 'Western Kayah', NULL, 7522.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Kayah', [Definition] = NULL, [SortOrder] = 751.70 WHERE [Code] = 'kyu' END +SET [Description] = 'Western Kayah', [Definition] = NULL, [SortOrder] = 7522.00 WHERE [Code] = 'kyu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjq', 'Western Keres', NULL, 751.80) END +VALUES ('kjq', 'Western Keres', NULL, 7523.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Keres', [Definition] = NULL, [SortOrder] = 751.80 WHERE [Code] = 'kjq' END +SET [Description] = 'Western Keres', [Definition] = NULL, [SortOrder] = 7523.00 WHERE [Code] = 'kjq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'krw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('krw', 'Western Krahn', NULL, 751.90) END +VALUES ('krw', 'Western Krahn', NULL, 7524.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Krahn', [Definition] = NULL, [SortOrder] = 751.90 WHERE [Code] = 'krw' END +SET [Description] = 'Western Krahn', [Definition] = NULL, [SortOrder] = 7524.00 WHERE [Code] = 'krw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywl', 'Western Lalu', NULL, 752.00) END +VALUES ('ywl', 'Western Lalu', NULL, 7525.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Lalu', [Definition] = NULL, [SortOrder] = 752.00 WHERE [Code] = 'ywl' END +SET [Description] = 'Western Lalu', [Definition] = NULL, [SortOrder] = 7525.00 WHERE [Code] = 'ywl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lcp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lcp', 'Western Lawa', NULL, 752.10) END +VALUES ('lcp', 'Western Lawa', NULL, 7526.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Lawa', [Definition] = NULL, [SortOrder] = 752.10 WHERE [Code] = 'lcp' END +SET [Description] = 'Western Lawa', [Definition] = NULL, [SortOrder] = 7526.00 WHERE [Code] = 'lcp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrd', 'Western Magar', NULL, 752.20) END +VALUES ('mrd', 'Western Magar', NULL, 7527.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Magar', [Definition] = NULL, [SortOrder] = 752.20 WHERE [Code] = 'mrd' END +SET [Description] = 'Western Magar', [Definition] = NULL, [SortOrder] = 7527.00 WHERE [Code] = 'mrd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mlq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mlq', 'Western Maninkakan', NULL, 752.30) END +VALUES ('mlq', 'Western Maninkakan', NULL, 7528.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Maninkakan', [Definition] = NULL, [SortOrder] = 752.30 WHERE [Code] = 'mlq' END +SET [Description] = 'Western Maninkakan', [Definition] = NULL, [SortOrder] = 7528.00 WHERE [Code] = 'mlq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mrj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mrj', 'Western Mari', NULL, 752.40) END +VALUES ('mrj', 'Western Mari', NULL, 7529.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Mari', [Definition] = NULL, [SortOrder] = 752.40 WHERE [Code] = 'mrj' END +SET [Description] = 'Western Mari', [Definition] = NULL, [SortOrder] = 7529.00 WHERE [Code] = 'mrj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hmw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hmw', 'Western Mashan Hmong', NULL, 752.50) END +VALUES ('hmw', 'Western Mashan Hmong', NULL, 7530.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Mashan Hmong', [Definition] = NULL, [SortOrder] = 752.50 WHERE [Code] = 'hmw' END +SET [Description] = 'Western Mashan Hmong', [Definition] = NULL, [SortOrder] = 7530.00 WHERE [Code] = 'hmw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'raf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('raf', 'Western Meohang', NULL, 752.60) END +VALUES ('raf', 'Western Meohang', NULL, 7531.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Meohang', [Definition] = NULL, [SortOrder] = 752.60 WHERE [Code] = 'raf' END +SET [Description] = 'Western Meohang', [Definition] = NULL, [SortOrder] = 7531.00 WHERE [Code] = 'raf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmg', 'Western Minyag', NULL, 752.70) END +VALUES ('wmg', 'Western Minyag', NULL, 7532.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Minyag', [Definition] = NULL, [SortOrder] = 752.70 WHERE [Code] = 'wmg' END +SET [Description] = 'Western Minyag', [Definition] = NULL, [SortOrder] = 7532.00 WHERE [Code] = 'wmg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mut', 'Western Muria', NULL, 752.80) END +VALUES ('mut', 'Western Muria', NULL, 7533.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Muria', [Definition] = NULL, [SortOrder] = 752.80 WHERE [Code] = 'mut' END +SET [Description] = 'Western Muria', [Definition] = NULL, [SortOrder] = 7533.00 WHERE [Code] = 'mut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'amw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('amw', 'Western Neo-Aramaic', NULL, 752.90) END +VALUES ('amw', 'Western Neo-Aramaic', NULL, 7534.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Neo-Aramaic', [Definition] = NULL, [SortOrder] = 752.90 WHERE [Code] = 'amw' END +SET [Description] = 'Western Neo-Aramaic', [Definition] = NULL, [SortOrder] = 7534.00 WHERE [Code] = 'amw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'fuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('fuh', 'Western Niger Fulfulde', NULL, 753.00) END +VALUES ('fuh', 'Western Niger Fulfulde', NULL, 7535.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Niger Fulfulde', [Definition] = NULL, [SortOrder] = 753.00 WHERE [Code] = 'fuh' END +SET [Description] = 'Western Niger Fulfulde', [Definition] = NULL, [SortOrder] = 7535.00 WHERE [Code] = 'fuh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ojw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ojw', 'Western Ojibwa', NULL, 753.10) END +VALUES ('ojw', 'Western Ojibwa', NULL, 7536.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Ojibwa', [Definition] = NULL, [SortOrder] = 753.10 WHERE [Code] = 'ojw' END +SET [Description] = 'Western Ojibwa', [Definition] = NULL, [SortOrder] = 7536.00 WHERE [Code] = 'ojw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pnb', 'Western Panjabi', NULL, 753.20) END +VALUES ('pnb', 'Western Panjabi', NULL, 7537.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Panjabi', [Definition] = NULL, [SortOrder] = 753.20 WHERE [Code] = 'pnb' END +SET [Description] = 'Western Panjabi', [Definition] = NULL, [SortOrder] = 7537.00 WHERE [Code] = 'pnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kjl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kjl', 'Western Parbate Kham', NULL, 753.30) END +VALUES ('kjl', 'Western Parbate Kham', NULL, 7538.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Parbate Kham', [Definition] = NULL, [SortOrder] = 753.30 WHERE [Code] = 'kjl' END +SET [Description] = 'Western Parbate Kham', [Definition] = NULL, [SortOrder] = 7538.00 WHERE [Code] = 'kjl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pne', 'Western Penan', NULL, 753.40) END +VALUES ('pne', 'Western Penan', NULL, 7539.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Penan', [Definition] = NULL, [SortOrder] = 753.40 WHERE [Code] = 'pne' END +SET [Description] = 'Western Penan', [Definition] = NULL, [SortOrder] = 7539.00 WHERE [Code] = 'pne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ssl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ssl', 'Western Sisaala', NULL, 753.50) END +VALUES ('ssl', 'Western Sisaala', NULL, 7540.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Sisaala', [Definition] = NULL, [SortOrder] = 753.50 WHERE [Code] = 'ssl' END +SET [Description] = 'Western Sisaala', [Definition] = NULL, [SortOrder] = 7540.00 WHERE [Code] = 'ssl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'suc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('suc', 'Western Subanon', NULL, 753.60) END +VALUES ('suc', 'Western Subanon', NULL, 7541.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Subanon', [Definition] = NULL, [SortOrder] = 753.60 WHERE [Code] = 'suc' END +SET [Description] = 'Western Subanon', [Definition] = NULL, [SortOrder] = 7541.00 WHERE [Code] = 'suc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tdg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tdg', 'Western Tamang', NULL, 753.70) END +VALUES ('tdg', 'Western Tamang', NULL, 7542.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Tamang', [Definition] = NULL, [SortOrder] = 753.70 WHERE [Code] = 'tdg' END +SET [Description] = 'Western Tamang', [Definition] = NULL, [SortOrder] = 7542.00 WHERE [Code] = 'tdg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'twb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('twb', 'Western Tawbuid', NULL, 753.80) END +VALUES ('twb', 'Western Tawbuid', NULL, 7543.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Tawbuid', [Definition] = NULL, [SortOrder] = 753.80 WHERE [Code] = 'twb' END +SET [Description] = 'Western Tawbuid', [Definition] = NULL, [SortOrder] = 7543.00 WHERE [Code] = 'twb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zab', 'Western Tlacolula Valley Zapotec', NULL, 753.90) END +VALUES ('zab', 'Western Tlacolula Valley Zapotec', NULL, 7544.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Tlacolula Valley Zapotec', [Definition] = NULL, [SortOrder] = 753.90 WHERE [Code] = 'zab' END +SET [Description] = 'Western Tlacolula Valley Zapotec', [Definition] = NULL, [SortOrder] = 7544.00 WHERE [Code] = 'zab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tqt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tqt', 'Western Totonac', NULL, 754.00) END +VALUES ('tqt', 'Western Totonac', NULL, 7545.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Totonac', [Definition] = NULL, [SortOrder] = 754.00 WHERE [Code] = 'tqt' END +SET [Description] = 'Western Totonac', [Definition] = NULL, [SortOrder] = 7545.00 WHERE [Code] = 'tqt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnb', 'Western Tunebo', NULL, 754.10) END +VALUES ('tnb', 'Western Tunebo', NULL, 7546.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Tunebo', [Definition] = NULL, [SortOrder] = 754.10 WHERE [Code] = 'tnb' END +SET [Description] = 'Western Tunebo', [Definition] = NULL, [SortOrder] = 7546.00 WHERE [Code] = 'tnb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mmr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mmr', 'Western Xiangxi Miao', NULL, 754.20) END +VALUES ('mmr', 'Western Xiangxi Miao', NULL, 7547.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Xiangxi Miao', [Definition] = NULL, [SortOrder] = 754.20 WHERE [Code] = 'mmr' END +SET [Description] = 'Western Xiangxi Miao', [Definition] = NULL, [SortOrder] = 7547.00 WHERE [Code] = 'mmr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwl', 'Western Xwla Gbe', NULL, 754.30) END +VALUES ('xwl', 'Western Xwla Gbe', NULL, 7548.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Xwla Gbe', [Definition] = NULL, [SortOrder] = 754.30 WHERE [Code] = 'xwl' END +SET [Description] = 'Western Xwla Gbe', [Definition] = NULL, [SortOrder] = 7548.00 WHERE [Code] = 'xwl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yih', 'Western Yiddish', NULL, 754.40) END +VALUES ('yih', 'Western Yiddish', NULL, 7549.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Western Yiddish', [Definition] = NULL, [SortOrder] = 754.40 WHERE [Code] = 'yih' END +SET [Description] = 'Western Yiddish', [Definition] = NULL, [SortOrder] = 7549.00 WHERE [Code] = 'yih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wep') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wep', 'Westphalien', NULL, 754.50) END +VALUES ('wep', 'Westphalien', NULL, 7550.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Westphalien', [Definition] = NULL, [SortOrder] = 754.50 WHERE [Code] = 'wep' END +SET [Description] = 'Westphalien', [Definition] = NULL, [SortOrder] = 7550.00 WHERE [Code] = 'wep' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wwo', 'Wetamut', NULL, 754.60) END +VALUES ('wwo', 'Wetamut', NULL, 7551.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wetamut', [Definition] = NULL, [SortOrder] = 754.60 WHERE [Code] = 'wwo' END +SET [Description] = 'Wetamut', [Definition] = NULL, [SortOrder] = 7551.00 WHERE [Code] = 'wwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wea', 'Wewaw', NULL, 754.70) END +VALUES ('wea', 'Wewaw', NULL, 7552.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wewaw', [Definition] = NULL, [SortOrder] = 754.70 WHERE [Code] = 'wea' END +SET [Description] = 'Wewaw', [Definition] = NULL, [SortOrder] = 7552.00 WHERE [Code] = 'wea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woy', 'Weyto', NULL, 754.80) END +VALUES ('woy', 'Weyto', NULL, 7553.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Weyto', [Definition] = NULL, [SortOrder] = 754.80 WHERE [Code] = 'woy' END +SET [Description] = 'Weyto', [Definition] = NULL, [SortOrder] = 7553.00 WHERE [Code] = 'woy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'giw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('giw', 'White Gelao', NULL, 754.90) END +VALUES ('giw', 'White Gelao', NULL, 7554.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'White Gelao', [Definition] = NULL, [SortOrder] = 754.90 WHERE [Code] = 'giw' END +SET [Description] = 'White Gelao', [Definition] = NULL, [SortOrder] = 7554.00 WHERE [Code] = 'giw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'lwh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('lwh', 'White Lachi', NULL, 755.00) END +VALUES ('lwh', 'White Lachi', NULL, 7555.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'White Lachi', [Definition] = NULL, [SortOrder] = 755.00 WHERE [Code] = 'lwh' END +SET [Description] = 'White Lachi', [Definition] = NULL, [SortOrder] = 7555.00 WHERE [Code] = 'lwh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tnp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tnp', 'Whitesands', NULL, 755.10) END +VALUES ('tnp', 'Whitesands', NULL, 7556.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Whitesands', [Definition] = NULL, [SortOrder] = 755.10 WHERE [Code] = 'tnp' END +SET [Description] = 'Whitesands', [Definition] = NULL, [SortOrder] = 7556.00 WHERE [Code] = 'tnp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tua', 'Wiarumus', NULL, 755.20) END +VALUES ('tua', 'Wiarumus', NULL, 7557.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiarumus', [Definition] = NULL, [SortOrder] = 755.20 WHERE [Code] = 'tua' END +SET [Description] = 'Wiarumus', [Definition] = NULL, [SortOrder] = 7557.00 WHERE [Code] = 'tua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mzh', 'Wichí Lhamtés Güisnay', NULL, 755.30) END +VALUES ('mzh', 'Wichí Lhamtés Güisnay', NULL, 7558.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wichí Lhamtés Güisnay', [Definition] = NULL, [SortOrder] = 755.30 WHERE [Code] = 'mzh' END +SET [Description] = 'Wichí Lhamtés Güisnay', [Definition] = NULL, [SortOrder] = 7558.00 WHERE [Code] = 'mzh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mtp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mtp', 'Wichí Lhamtés Nocten', NULL, 755.40) END +VALUES ('mtp', 'Wichí Lhamtés Nocten', NULL, 7559.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wichí Lhamtés Nocten', [Definition] = NULL, [SortOrder] = 755.40 WHERE [Code] = 'mtp' END +SET [Description] = 'Wichí Lhamtés Nocten', [Definition] = NULL, [SortOrder] = 7559.00 WHERE [Code] = 'mtp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlv', 'Wichí Lhamtés Vejoz', NULL, 755.50) END +VALUES ('wlv', 'Wichí Lhamtés Vejoz', NULL, 7560.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wichí Lhamtés Vejoz', [Definition] = NULL, [SortOrder] = 755.50 WHERE [Code] = 'wlv' END +SET [Description] = 'Wichí Lhamtés Vejoz', [Definition] = NULL, [SortOrder] = 7560.00 WHERE [Code] = 'wlv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wic') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wic', 'Wichita', NULL, 755.60) END +VALUES ('wic', 'Wichita', NULL, 7561.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wichita', [Definition] = NULL, [SortOrder] = 755.60 WHERE [Code] = 'wic' END +SET [Description] = 'Wichita', [Definition] = NULL, [SortOrder] = 7561.00 WHERE [Code] = 'wic' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wig', 'Wik Ngathan', NULL, 755.70) END +VALUES ('wig', 'Wik Ngathan', NULL, 7562.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik Ngathan', [Definition] = NULL, [SortOrder] = 755.70 WHERE [Code] = 'wig' END +SET [Description] = 'Wik Ngathan', [Definition] = NULL, [SortOrder] = 7562.00 WHERE [Code] = 'wig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wie') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wie', 'Wik-Epa', NULL, 755.80) END +VALUES ('wie', 'Wik-Epa', NULL, 7563.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Epa', [Definition] = NULL, [SortOrder] = 755.80 WHERE [Code] = 'wie' END +SET [Description] = 'Wik-Epa', [Definition] = NULL, [SortOrder] = 7563.00 WHERE [Code] = 'wie' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wij', 'Wik-Iiyanh', NULL, 755.90) END +VALUES ('wij', 'Wik-Iiyanh', NULL, 7564.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Iiyanh', [Definition] = NULL, [SortOrder] = 755.90 WHERE [Code] = 'wij' END +SET [Description] = 'Wik-Iiyanh', [Definition] = NULL, [SortOrder] = 7564.00 WHERE [Code] = 'wij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wif') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wif', 'Wik-Keyangan', NULL, 756.00) END +VALUES ('wif', 'Wik-Keyangan', NULL, 7565.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Keyangan', [Definition] = NULL, [SortOrder] = 756.00 WHERE [Code] = 'wif' END +SET [Description] = 'Wik-Keyangan', [Definition] = NULL, [SortOrder] = 7565.00 WHERE [Code] = 'wif' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wih', 'Wik-Me''anha', NULL, 756.10) END +VALUES ('wih', 'Wik-Me''anha', NULL, 7566.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Me''anha', [Definition] = NULL, [SortOrder] = 756.10 WHERE [Code] = 'wih' END +SET [Description] = 'Wik-Me''anha', [Definition] = NULL, [SortOrder] = 7566.00 WHERE [Code] = 'wih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wim', 'Wik-Mungkan', NULL, 756.20) END +VALUES ('wim', 'Wik-Mungkan', NULL, 7567.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wik-Mungkan', [Definition] = NULL, [SortOrder] = 756.20 WHERE [Code] = 'wim' END +SET [Description] = 'Wik-Mungkan', [Definition] = NULL, [SortOrder] = 7567.00 WHERE [Code] = 'wim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wik', 'Wikalkan', NULL, 756.30) END +VALUES ('wik', 'Wikalkan', NULL, 7568.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wikalkan', [Definition] = NULL, [SortOrder] = 756.30 WHERE [Code] = 'wik' END +SET [Description] = 'Wikalkan', [Definition] = NULL, [SortOrder] = 7568.00 WHERE [Code] = 'wik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wua', 'Wikngenchera', NULL, 756.40) END +VALUES ('wua', 'Wikngenchera', NULL, 7569.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wikngenchera', [Definition] = NULL, [SortOrder] = 756.40 WHERE [Code] = 'wua' END +SET [Description] = 'Wikngenchera', [Definition] = NULL, [SortOrder] = 7569.00 WHERE [Code] = 'wua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wil', 'Wilawila', NULL, 756.50) END +VALUES ('wil', 'Wilawila', NULL, 7570.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wilawila', [Definition] = NULL, [SortOrder] = 756.50 WHERE [Code] = 'wil' END +SET [Description] = 'Wilawila', [Definition] = NULL, [SortOrder] = 7570.00 WHERE [Code] = 'wil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnw', 'Wintu', NULL, 756.60) END +VALUES ('wnw', 'Wintu', NULL, 7571.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wintu', [Definition] = NULL, [SortOrder] = 756.60 WHERE [Code] = 'wnw' END +SET [Description] = 'Wintu', [Definition] = NULL, [SortOrder] = 7571.00 WHERE [Code] = 'wnw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kst') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kst', 'Winyé', NULL, 756.70) END +VALUES ('kst', 'Winyé', NULL, 7572.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Winyé', [Definition] = NULL, [SortOrder] = 756.70 WHERE [Code] = 'kst' END +SET [Description] = 'Winyé', [Definition] = NULL, [SortOrder] = 7572.00 WHERE [Code] = 'kst' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gdr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gdr', 'Wipi', NULL, 756.80) END +VALUES ('gdr', 'Wipi', NULL, 7573.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wipi', [Definition] = NULL, [SortOrder] = 756.80 WHERE [Code] = 'gdr' END +SET [Description] = 'Wipi', [Definition] = NULL, [SortOrder] = 7573.00 WHERE [Code] = 'gdr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wrh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wrh', 'Wiradjuri', NULL, 756.90) END +VALUES ('wrh', 'Wiradjuri', NULL, 7574.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiradjuri', [Definition] = NULL, [SortOrder] = 756.90 WHERE [Code] = 'wrh' END +SET [Description] = 'Wiradjuri', [Definition] = NULL, [SortOrder] = 7574.00 WHERE [Code] = 'wrh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wir', 'Wiraféd', NULL, 757.00) END +VALUES ('wir', 'Wiraféd', NULL, 7575.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiraféd', [Definition] = NULL, [SortOrder] = 757.00 WHERE [Code] = 'wir' END +SET [Description] = 'Wiraféd', [Definition] = NULL, [SortOrder] = 7575.00 WHERE [Code] = 'wir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wgu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wgu', 'Wirangu', NULL, 757.10) END +VALUES ('wgu', 'Wirangu', NULL, 7576.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wirangu', [Definition] = NULL, [SortOrder] = 757.10 WHERE [Code] = 'wgu' END +SET [Description] = 'Wirangu', [Definition] = NULL, [SortOrder] = 7576.00 WHERE [Code] = 'wgu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wiu', 'Wiru', NULL, 757.20) END +VALUES ('wiu', 'Wiru', NULL, 7577.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiru', [Definition] = NULL, [SortOrder] = 757.20 WHERE [Code] = 'wiu' END +SET [Description] = 'Wiru', [Definition] = NULL, [SortOrder] = 7577.00 WHERE [Code] = 'wiu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wiy', 'Wiyot', NULL, 757.30) END +VALUES ('wiy', 'Wiyot', NULL, 7578.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wiyot', [Definition] = NULL, [SortOrder] = 757.30 WHERE [Code] = 'wiy' END +SET [Description] = 'Wiyot', [Definition] = NULL, [SortOrder] = 7578.00 WHERE [Code] = 'wiy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwc', 'Woccon', NULL, 757.40) END +VALUES ('xwc', 'Woccon', NULL, 7579.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woccon', [Definition] = NULL, [SortOrder] = 757.40 WHERE [Code] = 'xwc' END +SET [Description] = 'Woccon', [Definition] = NULL, [SortOrder] = 7579.00 WHERE [Code] = 'xwc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wog', 'Wogamusin', NULL, 757.50) END +VALUES ('wog', 'Wogamusin', NULL, 7580.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wogamusin', [Definition] = NULL, [SortOrder] = 757.50 WHERE [Code] = 'wog' END +SET [Description] = 'Wogamusin', [Definition] = NULL, [SortOrder] = 7580.00 WHERE [Code] = 'wog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woc', 'Wogeo', NULL, 757.60) END +VALUES ('woc', 'Wogeo', NULL, 7581.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wogeo', [Definition] = NULL, [SortOrder] = 757.60 WHERE [Code] = 'woc' END +SET [Description] = 'Wogeo', [Definition] = NULL, [SortOrder] = 7581.00 WHERE [Code] = 'woc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wbw', 'Woi', NULL, 757.70) END +VALUES ('wbw', 'Woi', NULL, 7582.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woi', [Definition] = NULL, [SortOrder] = 757.70 WHERE [Code] = 'wbw' END +SET [Description] = 'Woi', [Definition] = NULL, [SortOrder] = 7582.00 WHERE [Code] = 'wbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyi', 'Woiwurrung', NULL, 757.80) END +VALUES ('wyi', 'Woiwurrung', NULL, 7583.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woiwurrung', [Definition] = NULL, [SortOrder] = 757.80 WHERE [Code] = 'wyi' END +SET [Description] = 'Woiwurrung', [Definition] = NULL, [SortOrder] = 7583.00 WHERE [Code] = 'wyi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jod', 'Wojenaka', NULL, 757.90) END +VALUES ('jod', 'Wojenaka', NULL, 7584.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wojenaka', [Definition] = NULL, [SortOrder] = 757.90 WHERE [Code] = 'jod' END +SET [Description] = 'Wojenaka', [Definition] = NULL, [SortOrder] = 7584.00 WHERE [Code] = 'jod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wle', 'Wolane', NULL, 758.00) END +VALUES ('wle', 'Wolane', NULL, 7585.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolane', [Definition] = NULL, [SortOrder] = 758.00 WHERE [Code] = 'wle' END +SET [Description] = 'Wolane', [Definition] = NULL, [SortOrder] = 7585.00 WHERE [Code] = 'wle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wod') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wod', 'Wolani', NULL, 758.10) END +VALUES ('wod', 'Wolani', NULL, 7586.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolani', [Definition] = NULL, [SortOrder] = 758.10 WHERE [Code] = 'wod' END +SET [Description] = 'Wolani', [Definition] = NULL, [SortOrder] = 7586.00 WHERE [Code] = 'wod' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wal', 'Wolaytta', NULL, 758.20) END +VALUES ('wal', 'Wolaytta', NULL, 7587.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolaytta', [Definition] = NULL, [SortOrder] = 758.20 WHERE [Code] = 'wal' END +SET [Description] = 'Wolaytta', [Definition] = NULL, [SortOrder] = 7587.00 WHERE [Code] = 'wal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'woe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('woe', 'Woleaian', NULL, 758.30) END +VALUES ('woe', 'Woleaian', NULL, 7588.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woleaian', [Definition] = NULL, [SortOrder] = 758.30 WHERE [Code] = 'woe' END +SET [Description] = 'Woleaian', [Definition] = NULL, [SortOrder] = 7588.00 WHERE [Code] = 'woe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlo', 'Wolio', NULL, 758.40) END +VALUES ('wlo', 'Wolio', NULL, 7589.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolio', [Definition] = NULL, [SortOrder] = 758.40 WHERE [Code] = 'wlo' END +SET [Description] = 'Wolio', [Definition] = NULL, [SortOrder] = 7589.00 WHERE [Code] = 'wlo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wol', 'Wolof', NULL, 758.50) END +VALUES ('wol', 'Wolof', NULL, 7590.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wolof', [Definition] = NULL, [SortOrder] = 758.50 WHERE [Code] = 'wol' END +SET [Description] = 'Wolof', [Definition] = NULL, [SortOrder] = 7590.00 WHERE [Code] = 'wol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wom', 'Wom (Nigeria)', NULL, 758.60) END +VALUES ('wom', 'Wom (Nigeria)', NULL, 7591.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wom (Nigeria)', [Definition] = NULL, [SortOrder] = 758.60 WHERE [Code] = 'wom' END +SET [Description] = 'Wom (Nigeria)', [Definition] = NULL, [SortOrder] = 7591.00 WHERE [Code] = 'wom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmo', 'Wom (Papua New Guinea)', NULL, 758.70) END +VALUES ('wmo', 'Wom (Papua New Guinea)', NULL, 7592.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wom (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 758.70 WHERE [Code] = 'wmo' END +SET [Description] = 'Wom (Papua New Guinea)', [Definition] = NULL, [SortOrder] = 7592.00 WHERE [Code] = 'wmo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wmx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wmx', 'Womo', NULL, 758.80) END +VALUES ('wmx', 'Womo', NULL, 7593.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Womo', [Definition] = NULL, [SortOrder] = 758.80 WHERE [Code] = 'wmx' END +SET [Description] = 'Womo', [Definition] = NULL, [SortOrder] = 7593.00 WHERE [Code] = 'wmx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'won') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('won', 'Wongo', NULL, 758.90) END +VALUES ('won', 'Wongo', NULL, 7594.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wongo', [Definition] = NULL, [SortOrder] = 758.90 WHERE [Code] = 'won' END +SET [Description] = 'Wongo', [Definition] = NULL, [SortOrder] = 7594.00 WHERE [Code] = 'won' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'cwd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('cwd', 'Woods Cree', NULL, 759.00) END +VALUES ('cwd', 'Woods Cree', NULL, 7595.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woods Cree', [Definition] = NULL, [SortOrder] = 759.00 WHERE [Code] = 'cwd' END +SET [Description] = 'Woods Cree', [Definition] = NULL, [SortOrder] = 7595.00 WHERE [Code] = 'cwd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wor', 'Woria', NULL, 759.10) END +VALUES ('wor', 'Woria', NULL, 7596.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woria', [Definition] = NULL, [SortOrder] = 759.10 WHERE [Code] = 'wor' END +SET [Description] = 'Woria', [Definition] = NULL, [SortOrder] = 7596.00 WHERE [Code] = 'wor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kda', 'Worimi', NULL, 759.20) END +VALUES ('kda', 'Worimi', NULL, 7597.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Worimi', [Definition] = NULL, [SortOrder] = 759.20 WHERE [Code] = 'kda' END +SET [Description] = 'Worimi', [Definition] = NULL, [SortOrder] = 7597.00 WHERE [Code] = 'kda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jud', 'Worodougou', NULL, 759.30) END +VALUES ('jud', 'Worodougou', NULL, 7598.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Worodougou', [Definition] = NULL, [SortOrder] = 759.30 WHERE [Code] = 'jud' END +SET [Description] = 'Worodougou', [Definition] = NULL, [SortOrder] = 7598.00 WHERE [Code] = 'jud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wro', 'Worrorra', NULL, 759.40) END +VALUES ('wro', 'Worrorra', NULL, 7599.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Worrorra', [Definition] = NULL, [SortOrder] = 759.40 WHERE [Code] = 'wro' END +SET [Description] = 'Worrorra', [Definition] = NULL, [SortOrder] = 7599.00 WHERE [Code] = 'wro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsv', 'Wotapuri-Katarqalai', NULL, 759.50) END +VALUES ('wsv', 'Wotapuri-Katarqalai', NULL, 7600.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wotapuri-Katarqalai', [Definition] = NULL, [SortOrder] = 759.50 WHERE [Code] = 'wsv' END +SET [Description] = 'Wotapuri-Katarqalai', [Definition] = NULL, [SortOrder] = 7600.00 WHERE [Code] = 'wsv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwt', 'Wotjobaluk', NULL, 759.60) END +VALUES ('xwt', 'Wotjobaluk', NULL, 7601.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wotjobaluk', [Definition] = NULL, [SortOrder] = 759.60 WHERE [Code] = 'xwt' END +SET [Description] = 'Wotjobaluk', [Definition] = NULL, [SortOrder] = 7601.00 WHERE [Code] = 'xwt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wtw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wtw', 'Wotu', NULL, 759.70) END +VALUES ('wtw', 'Wotu', NULL, 7602.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wotu', [Definition] = NULL, [SortOrder] = 759.70 WHERE [Code] = 'wtw' END +SET [Description] = 'Wotu', [Definition] = NULL, [SortOrder] = 7602.00 WHERE [Code] = 'wtw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'noa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('noa', 'Woun Meu', NULL, 759.80) END +VALUES ('noa', 'Woun Meu', NULL, 7603.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Woun Meu', [Definition] = NULL, [SortOrder] = 759.80 WHERE [Code] = 'noa' END +SET [Description] = 'Woun Meu', [Definition] = NULL, [SortOrder] = 7603.00 WHERE [Code] = 'noa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwo', 'Written Oirat', NULL, 759.90) END +VALUES ('xwo', 'Written Oirat', NULL, 7604.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Written Oirat', [Definition] = NULL, [SortOrder] = 759.90 WHERE [Code] = 'xwo' END +SET [Description] = 'Written Oirat', [Definition] = NULL, [SortOrder] = 7604.00 WHERE [Code] = 'xwo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wuu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wuu', 'Wu Chinese', NULL, 760.00) END +VALUES ('wuu', 'Wu Chinese', NULL, 7605.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wu Chinese', [Definition] = NULL, [SortOrder] = 760.00 WHERE [Code] = 'wuu' END +SET [Description] = 'Wu Chinese', [Definition] = NULL, [SortOrder] = 7605.00 WHERE [Code] = 'wuu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywq', 'Wuding-Luquan Yi', NULL, 760.10) END +VALUES ('ywq', 'Wuding-Luquan Yi', NULL, 7606.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wuding-Luquan Yi', [Definition] = NULL, [SortOrder] = 760.10 WHERE [Code] = 'ywq' END +SET [Description] = 'Wuding-Luquan Yi', [Definition] = NULL, [SortOrder] = 7606.00 WHERE [Code] = 'ywq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wud', 'Wudu', NULL, 760.20) END +VALUES ('wud', 'Wudu', NULL, 7607.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wudu', [Definition] = NULL, [SortOrder] = 760.20 WHERE [Code] = 'wud' END +SET [Description] = 'Wudu', [Definition] = NULL, [SortOrder] = 7607.00 WHERE [Code] = 'wud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wlu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wlu', 'Wuliwuli', NULL, 760.30) END +VALUES ('wlu', 'Wuliwuli', NULL, 7608.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wuliwuli', [Definition] = NULL, [SortOrder] = 760.30 WHERE [Code] = 'wlu' END +SET [Description] = 'Wuliwuli', [Definition] = NULL, [SortOrder] = 7608.00 WHERE [Code] = 'wlu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wux', 'Wulna', NULL, 760.40) END +VALUES ('wux', 'Wulna', NULL, 7609.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wulna', [Definition] = NULL, [SortOrder] = 760.40 WHERE [Code] = 'wux' END +SET [Description] = 'Wulna', [Definition] = NULL, [SortOrder] = 7609.00 WHERE [Code] = 'wux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bqm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bqm', 'Wumboko', NULL, 760.50) END +VALUES ('bqm', 'Wumboko', NULL, 7610.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wumboko', [Definition] = NULL, [SortOrder] = 760.50 WHERE [Code] = 'bqm' END +SET [Description] = 'Wumboko', [Definition] = NULL, [SortOrder] = 7610.00 WHERE [Code] = 'bqm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wum') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wum', 'Wumbvu', NULL, 760.60) END +VALUES ('wum', 'Wumbvu', NULL, 7611.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wumbvu', [Definition] = NULL, [SortOrder] = 760.60 WHERE [Code] = 'wum' END +SET [Description] = 'Wumbvu', [Definition] = NULL, [SortOrder] = 7611.00 WHERE [Code] = 'wum' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywu', 'Wumeng Nasu', NULL, 760.70) END +VALUES ('ywu', 'Wumeng Nasu', NULL, 7612.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wumeng Nasu', [Definition] = NULL, [SortOrder] = 760.70 WHERE [Code] = 'ywu' END +SET [Description] = 'Wumeng Nasu', [Definition] = NULL, [SortOrder] = 7612.00 WHERE [Code] = 'ywu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bwn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bwn', 'Wunai Bunu', NULL, 760.80) END +VALUES ('bwn', 'Wunai Bunu', NULL, 7613.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wunai Bunu', [Definition] = NULL, [SortOrder] = 760.80 WHERE [Code] = 'bwn' END +SET [Description] = 'Wunai Bunu', [Definition] = NULL, [SortOrder] = 7613.00 WHERE [Code] = 'bwn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wub', 'Wunambal', NULL, 760.90) END +VALUES ('wub', 'Wunambal', NULL, 7614.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wunambal', [Definition] = NULL, [SortOrder] = 760.90 WHERE [Code] = 'wub' END +SET [Description] = 'Wunambal', [Definition] = NULL, [SortOrder] = 7614.00 WHERE [Code] = 'wub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wnn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wnn', 'Wunumara', NULL, 761.00) END +VALUES ('wnn', 'Wunumara', NULL, 7615.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wunumara', [Definition] = NULL, [SortOrder] = 761.00 WHERE [Code] = 'wnn' END +SET [Description] = 'Wunumara', [Definition] = NULL, [SortOrder] = 7615.00 WHERE [Code] = 'wnn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wur', 'Wurrugu', NULL, 761.10) END +VALUES ('wur', 'Wurrugu', NULL, 7616.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wurrugu', [Definition] = NULL, [SortOrder] = 761.10 WHERE [Code] = 'wur' END +SET [Description] = 'Wurrugu', [Definition] = NULL, [SortOrder] = 7616.00 WHERE [Code] = 'wur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yig') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yig', 'Wusa Nasu', NULL, 761.20) END +VALUES ('yig', 'Wusa Nasu', NULL, 7617.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wusa Nasu', [Definition] = NULL, [SortOrder] = 761.20 WHERE [Code] = 'yig' END +SET [Description] = 'Wusa Nasu', [Definition] = NULL, [SortOrder] = 7617.00 WHERE [Code] = 'yig' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bse') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bse', 'Wushi', NULL, 761.30) END +VALUES ('bse', 'Wushi', NULL, 7618.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wushi', [Definition] = NULL, [SortOrder] = 761.30 WHERE [Code] = 'bse' END +SET [Description] = 'Wushi', [Definition] = NULL, [SortOrder] = 7618.00 WHERE [Code] = 'bse' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wsi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wsi', 'Wusi', NULL, 761.40) END +VALUES ('wsi', 'Wusi', NULL, 7619.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wusi', [Definition] = NULL, [SortOrder] = 761.40 WHERE [Code] = 'wsi' END +SET [Description] = 'Wusi', [Definition] = NULL, [SortOrder] = 7619.00 WHERE [Code] = 'wsi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wut', 'Wutung', NULL, 761.50) END +VALUES ('wut', 'Wutung', NULL, 7620.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wutung', [Definition] = NULL, [SortOrder] = 761.50 WHERE [Code] = 'wut' END +SET [Description] = 'Wutung', [Definition] = NULL, [SortOrder] = 7620.00 WHERE [Code] = 'wut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wuh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wuh', 'Wutunhua', NULL, 761.60) END +VALUES ('wuh', 'Wutunhua', NULL, 7621.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wutunhua', [Definition] = NULL, [SortOrder] = 761.60 WHERE [Code] = 'wuh' END +SET [Description] = 'Wutunhua', [Definition] = NULL, [SortOrder] = 7621.00 WHERE [Code] = 'wuh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wuv') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wuv', 'Wuvulu-Aua', NULL, 761.70) END +VALUES ('wuv', 'Wuvulu-Aua', NULL, 7622.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wuvulu-Aua', [Definition] = NULL, [SortOrder] = 761.70 WHERE [Code] = 'wuv' END +SET [Description] = 'Wuvulu-Aua', [Definition] = NULL, [SortOrder] = 7622.00 WHERE [Code] = 'wuv' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'udl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('udl', 'Wuzlam', NULL, 761.80) END +VALUES ('udl', 'Wuzlam', NULL, 7623.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wuzlam', [Definition] = NULL, [SortOrder] = 761.80 WHERE [Code] = 'udl' END +SET [Description] = 'Wuzlam', [Definition] = NULL, [SortOrder] = 7623.00 WHERE [Code] = 'udl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wyn', 'Wyandot', NULL, 761.90) END +VALUES ('wyn', 'Wyandot', NULL, 7624.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wyandot', [Definition] = NULL, [SortOrder] = 761.90 WHERE [Code] = 'wyn' END +SET [Description] = 'Wyandot', [Definition] = NULL, [SortOrder] = 7624.00 WHERE [Code] = 'wyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wym', 'Wymysorys', NULL, 762.00) END +VALUES ('wym', 'Wymysorys', NULL, 7625.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Wymysorys', [Definition] = NULL, [SortOrder] = 762.00 WHERE [Code] = 'wym' END +SET [Description] = 'Wymysorys', [Definition] = NULL, [SortOrder] = 7625.00 WHERE [Code] = 'wym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kao', 'Xaasongaxango', NULL, 762.10) END +VALUES ('kao', 'Xaasongaxango', NULL, 7626.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xaasongaxango', [Definition] = NULL, [SortOrder] = 762.10 WHERE [Code] = 'kao' END +SET [Description] = 'Xaasongaxango', [Definition] = NULL, [SortOrder] = 7626.00 WHERE [Code] = 'kao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zax', 'Xadani Zapotec', NULL, 762.20) END +VALUES ('zax', 'Xadani Zapotec', NULL, 7627.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xadani Zapotec', [Definition] = NULL, [SortOrder] = 762.20 WHERE [Code] = 'zax' END +SET [Description] = 'Xadani Zapotec', [Definition] = NULL, [SortOrder] = 7627.00 WHERE [Code] = 'zax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xkr', 'Xakriabá', NULL, 762.30) END +VALUES ('xkr', 'Xakriabá', NULL, 7628.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xakriabá', [Definition] = NULL, [SortOrder] = 762.30 WHERE [Code] = 'xkr' END +SET [Description] = 'Xakriabá', [Definition] = NULL, [SortOrder] = 7628.00 WHERE [Code] = 'xkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xan') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xan', 'Xamtanga', NULL, 762.40) END +VALUES ('xan', 'Xamtanga', NULL, 7629.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xamtanga', [Definition] = NULL, [SortOrder] = 762.40 WHERE [Code] = 'xan' END +SET [Description] = 'Xamtanga', [Definition] = NULL, [SortOrder] = 7629.00 WHERE [Code] = 'xan' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztg', 'Xanaguía Zapotec', NULL, 762.50) END +VALUES ('ztg', 'Xanaguía Zapotec', NULL, 7630.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xanaguía Zapotec', [Definition] = NULL, [SortOrder] = 762.50 WHERE [Code] = 'ztg' END +SET [Description] = 'Xanaguía Zapotec', [Definition] = NULL, [SortOrder] = 7630.00 WHERE [Code] = 'ztg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ane') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ane', 'Xârâcùù', NULL, 762.60) END +VALUES ('ane', 'Xârâcùù', NULL, 7631.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xârâcùù', [Definition] = NULL, [SortOrder] = 762.60 WHERE [Code] = 'ane' END +SET [Description] = 'Xârâcùù', [Definition] = NULL, [SortOrder] = 7631.00 WHERE [Code] = 'ane' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axx', 'Xârâgurè', NULL, 762.70) END +VALUES ('axx', 'Xârâgurè', NULL, 7632.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xârâgurè', [Definition] = NULL, [SortOrder] = 762.70 WHERE [Code] = 'axx' END +SET [Description] = 'Xârâgurè', [Definition] = NULL, [SortOrder] = 7632.00 WHERE [Code] = 'axx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xav', 'Xavánte', NULL, 762.80) END +VALUES ('xav', 'Xavánte', NULL, 7633.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xavánte', [Definition] = NULL, [SortOrder] = 762.80 WHERE [Code] = 'xav' END +SET [Description] = 'Xavánte', [Definition] = NULL, [SortOrder] = 7633.00 WHERE [Code] = 'xav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xer') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xer', 'Xerénte', NULL, 762.90) END +VALUES ('xer', 'Xerénte', NULL, 7634.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xerénte', [Definition] = NULL, [SortOrder] = 762.90 WHERE [Code] = 'xer' END +SET [Description] = 'Xerénte', [Definition] = NULL, [SortOrder] = 7634.00 WHERE [Code] = 'xer' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xet', 'Xetá', NULL, 763.00) END +VALUES ('xet', 'Xetá', NULL, 7635.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xetá', [Definition] = NULL, [SortOrder] = 763.00 WHERE [Code] = 'xet' END +SET [Description] = 'Xetá', [Definition] = NULL, [SortOrder] = 7635.00 WHERE [Code] = 'xet' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xho') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xho', 'Xhosa', NULL, 763.10) END +VALUES ('xho', 'Xhosa', NULL, 7636.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xhosa', [Definition] = NULL, [SortOrder] = 763.10 WHERE [Code] = 'xho' END +SET [Description] = 'Xhosa', [Definition] = NULL, [SortOrder] = 7636.00 WHERE [Code] = 'xho' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'hsn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('hsn', 'Xiang Chinese', NULL, 763.20) END +VALUES ('hsn', 'Xiang Chinese', NULL, 7637.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xiang Chinese', [Definition] = NULL, [SortOrder] = 763.20 WHERE [Code] = 'hsn' END +SET [Description] = 'Xiang Chinese', [Definition] = NULL, [SortOrder] = 7637.00 WHERE [Code] = 'hsn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sjo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sjo', 'Xibe', NULL, 763.30) END +VALUES ('sjo', 'Xibe', NULL, 7638.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xibe', [Definition] = NULL, [SortOrder] = 763.30 WHERE [Code] = 'sjo' END +SET [Description] = 'Xibe', [Definition] = NULL, [SortOrder] = 7638.00 WHERE [Code] = 'sjo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'too') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('too', 'Xicotepec De Juárez Totonac', NULL, 763.40) END +VALUES ('too', 'Xicotepec De Juárez Totonac', NULL, 7639.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xicotepec De Juárez Totonac', [Definition] = NULL, [SortOrder] = 763.40 WHERE [Code] = 'too' END +SET [Description] = 'Xicotepec De Juárez Totonac', [Definition] = NULL, [SortOrder] = 7639.00 WHERE [Code] = 'too' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xin', 'Xinca', NULL, 763.50) END +VALUES ('xin', 'Xinca', NULL, 7640.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xinca', [Definition] = NULL, [SortOrder] = 763.50 WHERE [Code] = 'xin' END +SET [Description] = 'Xinca', [Definition] = NULL, [SortOrder] = 7640.00 WHERE [Code] = 'xin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asn', 'Xingú Asuriní', NULL, 763.60) END +VALUES ('asn', 'Xingú Asuriní', NULL, 7641.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xingú Asuriní', [Definition] = NULL, [SortOrder] = 763.60 WHERE [Code] = 'asn' END +SET [Description] = 'Xingú Asuriní', [Definition] = NULL, [SortOrder] = 7641.00 WHERE [Code] = 'asn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xiy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xiy', 'Xipaya', NULL, 763.70) END +VALUES ('xiy', 'Xipaya', NULL, 7642.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xipaya', [Definition] = NULL, [SortOrder] = 763.70 WHERE [Code] = 'xiy' END +SET [Description] = 'Xipaya', [Definition] = NULL, [SortOrder] = 7642.00 WHERE [Code] = 'xiy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xii', 'Xiri', NULL, 763.80) END +VALUES ('xii', 'Xiri', NULL, 7643.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xiri', [Definition] = NULL, [SortOrder] = 763.80 WHERE [Code] = 'xii' END +SET [Description] = 'Xiri', [Definition] = NULL, [SortOrder] = 7643.00 WHERE [Code] = 'xii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xir') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xir', 'Xiriâna', NULL, 763.90) END +VALUES ('xir', 'Xiriâna', NULL, 7644.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xiriâna', [Definition] = NULL, [SortOrder] = 763.90 WHERE [Code] = 'xir' END +SET [Description] = 'Xiriâna', [Definition] = NULL, [SortOrder] = 7644.00 WHERE [Code] = 'xir' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywt', 'Xishanba Lalo', NULL, 764.00) END +VALUES ('ywt', 'Xishanba Lalo', NULL, 7645.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xishanba Lalo', [Definition] = NULL, [SortOrder] = 764.00 WHERE [Code] = 'ywt' END +SET [Description] = 'Xishanba Lalo', [Definition] = NULL, [SortOrder] = 7645.00 WHERE [Code] = 'ywt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xok', 'Xokleng', NULL, 764.10) END +VALUES ('xok', 'Xokleng', NULL, 7646.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xokleng', [Definition] = NULL, [SortOrder] = 764.10 WHERE [Code] = 'xok' END +SET [Description] = 'Xokleng', [Definition] = NULL, [SortOrder] = 7646.00 WHERE [Code] = 'xok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xoo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xoo', 'Xukurú', NULL, 764.20) END +VALUES ('xoo', 'Xukurú', NULL, 7647.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xukurú', [Definition] = NULL, [SortOrder] = 764.20 WHERE [Code] = 'xoo' END +SET [Description] = 'Xukurú', [Definition] = NULL, [SortOrder] = 7647.00 WHERE [Code] = 'xoo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xwe') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xwe', 'Xwela Gbe', NULL, 764.30) END +VALUES ('xwe', 'Xwela Gbe', NULL, 7648.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Xwela Gbe', [Definition] = NULL, [SortOrder] = 764.30 WHERE [Code] = 'xwe' END +SET [Description] = 'Xwela Gbe', [Definition] = NULL, [SortOrder] = 7648.00 WHERE [Code] = 'xwe' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'muu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('muu', 'Yaaku', NULL, 764.40) END +VALUES ('muu', 'Yaaku', NULL, 7649.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaaku', [Definition] = NULL, [SortOrder] = 764.40 WHERE [Code] = 'muu' END +SET [Description] = 'Yaaku', [Definition] = NULL, [SortOrder] = 7649.00 WHERE [Code] = 'muu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybn', 'Yabaâna', NULL, 764.50) END +VALUES ('ybn', 'Yabaâna', NULL, 7650.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabaâna', [Definition] = NULL, [SortOrder] = 764.50 WHERE [Code] = 'ybn' END +SET [Description] = 'Yabaâna', [Definition] = NULL, [SortOrder] = 7650.00 WHERE [Code] = 'ybn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yar') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yar', 'Yabarana', NULL, 764.60) END +VALUES ('yar', 'Yabarana', NULL, 7651.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabarana', [Definition] = NULL, [SortOrder] = 764.60 WHERE [Code] = 'yar' END +SET [Description] = 'Yabarana', [Definition] = NULL, [SortOrder] = 7651.00 WHERE [Code] = 'yar' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jae', 'Yabem', NULL, 764.70) END +VALUES ('jae', 'Yabem', NULL, 7652.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabem', [Definition] = NULL, [SortOrder] = 764.70 WHERE [Code] = 'jae' END +SET [Description] = 'Yabem', [Definition] = NULL, [SortOrder] = 7652.00 WHERE [Code] = 'jae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybm', 'Yaben', NULL, 764.80) END +VALUES ('ybm', 'Yaben', NULL, 7653.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaben', [Definition] = NULL, [SortOrder] = 764.80 WHERE [Code] = 'ybm' END +SET [Description] = 'Yaben', [Definition] = NULL, [SortOrder] = 7653.00 WHERE [Code] = 'ybm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybo', 'Yabong', NULL, 764.90) END +VALUES ('ybo', 'Yabong', NULL, 7654.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabong', [Definition] = NULL, [SortOrder] = 764.90 WHERE [Code] = 'ybo' END +SET [Description] = 'Yabong', [Definition] = NULL, [SortOrder] = 7654.00 WHERE [Code] = 'ybo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxy', 'Yabula Yabula', NULL, 765.00) END +VALUES ('yxy', 'Yabula Yabula', NULL, 7655.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yabula Yabula', [Definition] = NULL, [SortOrder] = 765.00 WHERE [Code] = 'yxy' END +SET [Description] = 'Yabula Yabula', [Definition] = NULL, [SortOrder] = 7655.00 WHERE [Code] = 'yxy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ekr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ekr', 'Yace', NULL, 765.10) END +VALUES ('ekr', 'Yace', NULL, 7656.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yace', [Definition] = NULL, [SortOrder] = 765.10 WHERE [Code] = 'ekr' END +SET [Description] = 'Yace', [Definition] = NULL, [SortOrder] = 7656.00 WHERE [Code] = 'ekr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rys') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rys', 'Yaeyama', NULL, 765.20) END +VALUES ('rys', 'Yaeyama', NULL, 7657.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaeyama', [Definition] = NULL, [SortOrder] = 765.20 WHERE [Code] = 'rys' END +SET [Description] = 'Yaeyama', [Definition] = NULL, [SortOrder] = 7657.00 WHERE [Code] = 'rys' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wfg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wfg', 'Yafi', NULL, 765.30) END +VALUES ('wfg', 'Yafi', NULL, 7658.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yafi', [Definition] = NULL, [SortOrder] = 765.30 WHERE [Code] = 'wfg' END +SET [Description] = 'Yafi', [Definition] = NULL, [SortOrder] = 7658.00 WHERE [Code] = 'wfg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxg', 'Yagara', NULL, 765.40) END +VALUES ('yxg', 'Yagara', NULL, 7659.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagara', [Definition] = NULL, [SortOrder] = 765.40 WHERE [Code] = 'yxg' END +SET [Description] = 'Yagara', [Definition] = NULL, [SortOrder] = 7659.00 WHERE [Code] = 'yxg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygr', 'Yagaria', NULL, 765.50) END +VALUES ('ygr', 'Yagaria', NULL, 7660.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagaria', [Definition] = NULL, [SortOrder] = 765.50 WHERE [Code] = 'ygr' END +SET [Description] = 'Yagaria', [Definition] = NULL, [SortOrder] = 7660.00 WHERE [Code] = 'ygr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yai') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yai', 'Yagnobi', NULL, 765.60) END +VALUES ('yai', 'Yagnobi', NULL, 7661.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagnobi', [Definition] = NULL, [SortOrder] = 765.60 WHERE [Code] = 'yai' END +SET [Description] = 'Yagnobi', [Definition] = NULL, [SortOrder] = 7661.00 WHERE [Code] = 'yai' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygm', 'Yagomi', NULL, 765.70) END +VALUES ('ygm', 'Yagomi', NULL, 7662.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagomi', [Definition] = NULL, [SortOrder] = 765.70 WHERE [Code] = 'ygm' END +SET [Description] = 'Yagomi', [Definition] = NULL, [SortOrder] = 7662.00 WHERE [Code] = 'ygm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yad') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yad', 'Yagua', NULL, 765.80) END +VALUES ('yad', 'Yagua', NULL, 7663.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagua', [Definition] = NULL, [SortOrder] = 765.80 WHERE [Code] = 'yad' END +SET [Description] = 'Yagua', [Definition] = NULL, [SortOrder] = 7663.00 WHERE [Code] = 'yad' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygw', 'Yagwoia', NULL, 765.90) END +VALUES ('ygw', 'Yagwoia', NULL, 7664.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yagwoia', [Definition] = NULL, [SortOrder] = 765.90 WHERE [Code] = 'ygw' END +SET [Description] = 'Yagwoia', [Definition] = NULL, [SortOrder] = 7664.00 WHERE [Code] = 'ygw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ner') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ner', 'Yahadian', NULL, 766.00) END +VALUES ('ner', 'Yahadian', NULL, 7665.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yahadian', [Definition] = NULL, [SortOrder] = 766.00 WHERE [Code] = 'ner' END +SET [Description] = 'Yahadian', [Definition] = NULL, [SortOrder] = 7665.00 WHERE [Code] = 'ner' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rhp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rhp', 'Yahang', NULL, 766.10) END +VALUES ('rhp', 'Yahang', NULL, 7666.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yahang', [Definition] = NULL, [SortOrder] = 766.10 WHERE [Code] = 'rhp' END +SET [Description] = 'Yahang', [Definition] = NULL, [SortOrder] = 7666.00 WHERE [Code] = 'rhp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynu', 'Yahuna', NULL, 766.20) END +VALUES ('ynu', 'Yahuna', NULL, 7667.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yahuna', [Definition] = NULL, [SortOrder] = 766.20 WHERE [Code] = 'ynu' END +SET [Description] = 'Yahuna', [Definition] = NULL, [SortOrder] = 7667.00 WHERE [Code] = 'ynu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'axk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('axk', 'Yaka (Central African Republic)', NULL, 766.30) END +VALUES ('axk', 'Yaka (Central African Republic)', NULL, 7668.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaka (Central African Republic)', [Definition] = NULL, [SortOrder] = 766.30 WHERE [Code] = 'axk' END +SET [Description] = 'Yaka (Central African Republic)', [Definition] = NULL, [SortOrder] = 7668.00 WHERE [Code] = 'axk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'iyx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('iyx', 'Yaka (Congo)', NULL, 766.40) END +VALUES ('iyx', 'Yaka (Congo)', NULL, 7669.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaka (Congo)', [Definition] = NULL, [SortOrder] = 766.40 WHERE [Code] = 'iyx' END +SET [Description] = 'Yaka (Congo)', [Definition] = NULL, [SortOrder] = 7669.00 WHERE [Code] = 'iyx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaf') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaf', 'Yaka (Democratic Republic of Congo)', NULL, 766.50) END +VALUES ('yaf', 'Yaka (Democratic Republic of Congo)', NULL, 7670.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaka (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 766.50 WHERE [Code] = 'yaf' END +SET [Description] = 'Yaka (Democratic Republic of Congo)', [Definition] = NULL, [SortOrder] = 7670.00 WHERE [Code] = 'yaf' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykk', 'Yakaikeke', NULL, 766.60) END +VALUES ('ykk', 'Yakaikeke', NULL, 7671.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakaikeke', [Definition] = NULL, [SortOrder] = 766.60 WHERE [Code] = 'ykk' END +SET [Description] = 'Yakaikeke', [Definition] = NULL, [SortOrder] = 7671.00 WHERE [Code] = 'ykk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yak', 'Yakama', NULL, 766.70) END +VALUES ('yak', 'Yakama', NULL, 7672.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakama', [Definition] = NULL, [SortOrder] = 766.70 WHERE [Code] = 'yak' END +SET [Description] = 'Yakama', [Definition] = NULL, [SortOrder] = 7672.00 WHERE [Code] = 'yak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yka') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yka', 'Yakan', NULL, 766.80) END +VALUES ('yka', 'Yakan', NULL, 7673.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakan', [Definition] = NULL, [SortOrder] = 766.80 WHERE [Code] = 'yka' END +SET [Description] = 'Yakan', [Definition] = NULL, [SortOrder] = 7673.00 WHERE [Code] = 'yka' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybh', 'Yakha', NULL, 766.90) END +VALUES ('ybh', 'Yakha', NULL, 7674.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakha', [Definition] = NULL, [SortOrder] = 766.90 WHERE [Code] = 'ybh' END +SET [Description] = 'Yakha', [Definition] = NULL, [SortOrder] = 7674.00 WHERE [Code] = 'ybh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yky') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yky', 'Yakoma', NULL, 767.00) END +VALUES ('yky', 'Yakoma', NULL, 7675.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakoma', [Definition] = NULL, [SortOrder] = 767.00 WHERE [Code] = 'yky' END +SET [Description] = 'Yakoma', [Definition] = NULL, [SortOrder] = 7675.00 WHERE [Code] = 'yky' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sah', 'Yakut', NULL, 767.10) END +VALUES ('sah', 'Yakut', NULL, 7676.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yakut', [Definition] = NULL, [SortOrder] = 767.10 WHERE [Code] = 'sah' END +SET [Description] = 'Yakut', [Definition] = NULL, [SortOrder] = 7676.00 WHERE [Code] = 'sah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yba') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yba', 'Yala', NULL, 767.20) END +VALUES ('yba', 'Yala', NULL, 7677.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yala', [Definition] = NULL, [SortOrder] = 767.20 WHERE [Code] = 'yba' END +SET [Description] = 'Yala', [Definition] = NULL, [SortOrder] = 7677.00 WHERE [Code] = 'yba' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jal', 'Yalahatan', NULL, 767.30) END +VALUES ('jal', 'Yalahatan', NULL, 7678.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalahatan', [Definition] = NULL, [SortOrder] = 767.30 WHERE [Code] = 'jal' END +SET [Description] = 'Yalahatan', [Definition] = NULL, [SortOrder] = 7678.00 WHERE [Code] = 'jal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyl', 'Yalakalore', NULL, 767.40) END +VALUES ('xyl', 'Yalakalore', NULL, 7679.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalakalore', [Definition] = NULL, [SortOrder] = 767.40 WHERE [Code] = 'xyl' END +SET [Description] = 'Yalakalore', [Definition] = NULL, [SortOrder] = 7679.00 WHERE [Code] = 'xyl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpu', 'Yalálag Zapotec', NULL, 767.50) END +VALUES ('zpu', 'Yalálag Zapotec', NULL, 7680.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalálag Zapotec', [Definition] = NULL, [SortOrder] = 767.50 WHERE [Code] = 'zpu' END +SET [Description] = 'Yalálag Zapotec', [Definition] = NULL, [SortOrder] = 7680.00 WHERE [Code] = 'zpu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylr', 'Yalarnnga', NULL, 767.60) END +VALUES ('ylr', 'Yalarnnga', NULL, 7681.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalarnnga', [Definition] = NULL, [SortOrder] = 767.60 WHERE [Code] = 'ylr' END +SET [Description] = 'Yalarnnga', [Definition] = NULL, [SortOrder] = 7681.00 WHERE [Code] = 'ylr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nce') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nce', 'Yale', NULL, 767.70) END +VALUES ('nce', 'Yale', NULL, 7682.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yale', [Definition] = NULL, [SortOrder] = 767.70 WHERE [Code] = 'nce' END +SET [Description] = 'Yale', [Definition] = NULL, [SortOrder] = 7682.00 WHERE [Code] = 'nce' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylb', 'Yaleba', NULL, 767.80) END +VALUES ('ylb', 'Yaleba', NULL, 7683.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaleba', [Definition] = NULL, [SortOrder] = 767.80 WHERE [Code] = 'ylb' END +SET [Description] = 'Yaleba', [Definition] = NULL, [SortOrder] = 7683.00 WHERE [Code] = 'ylb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yal', 'Yalunka', NULL, 767.90) END +VALUES ('yal', 'Yalunka', NULL, 7684.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yalunka', [Definition] = NULL, [SortOrder] = 767.90 WHERE [Code] = 'yal' END +SET [Description] = 'Yalunka', [Definition] = NULL, [SortOrder] = 7684.00 WHERE [Code] = 'yal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yag', 'Yámana', NULL, 768.00) END +VALUES ('yag', 'Yámana', NULL, 7685.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yámana', [Definition] = NULL, [SortOrder] = 768.00 WHERE [Code] = 'yag' END +SET [Description] = 'Yámana', [Definition] = NULL, [SortOrder] = 7685.00 WHERE [Code] = 'yag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymp', 'Yamap', NULL, 768.10) END +VALUES ('ymp', 'Yamap', NULL, 7686.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamap', [Definition] = NULL, [SortOrder] = 768.10 WHERE [Code] = 'ymp' END +SET [Description] = 'Yamap', [Definition] = NULL, [SortOrder] = 7686.00 WHERE [Code] = 'ymp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yam') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yam', 'Yamba', NULL, 768.20) END +VALUES ('yam', 'Yamba', NULL, 7687.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamba', [Definition] = NULL, [SortOrder] = 768.20 WHERE [Code] = 'yam' END +SET [Description] = 'Yamba', [Definition] = NULL, [SortOrder] = 7687.00 WHERE [Code] = 'yam' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymb', 'Yambes', NULL, 768.30) END +VALUES ('ymb', 'Yambes', NULL, 7688.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yambes', [Definition] = NULL, [SortOrder] = 768.30 WHERE [Code] = 'ymb' END +SET [Description] = 'Yambes', [Definition] = NULL, [SortOrder] = 7688.00 WHERE [Code] = 'ymb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yat') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yat', 'Yambeta', NULL, 768.40) END +VALUES ('yat', 'Yambeta', NULL, 7689.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yambeta', [Definition] = NULL, [SortOrder] = 768.40 WHERE [Code] = 'yat' END +SET [Description] = 'Yambeta', [Definition] = NULL, [SortOrder] = 7689.00 WHERE [Code] = 'yat' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmd', 'Yamdena', NULL, 768.50) END +VALUES ('jmd', 'Yamdena', NULL, 7690.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamdena', [Definition] = NULL, [SortOrder] = 768.50 WHERE [Code] = 'jmd' END +SET [Description] = 'Yamdena', [Definition] = NULL, [SortOrder] = 7690.00 WHERE [Code] = 'jmd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yme') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yme', 'Yameo', NULL, 768.60) END +VALUES ('yme', 'Yameo', NULL, 7691.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yameo', [Definition] = NULL, [SortOrder] = 768.60 WHERE [Code] = 'yme' END +SET [Description] = 'Yameo', [Definition] = NULL, [SortOrder] = 7691.00 WHERE [Code] = 'yme' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tao', 'Yami', NULL, 768.70) END +VALUES ('tao', 'Yami', NULL, 7692.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yami', [Definition] = NULL, [SortOrder] = 768.70 WHERE [Code] = 'tao' END +SET [Description] = 'Yami', [Definition] = NULL, [SortOrder] = 7692.00 WHERE [Code] = 'tao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaa', 'Yaminahua', NULL, 768.80) END +VALUES ('yaa', 'Yaminahua', NULL, 7693.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaminahua', [Definition] = NULL, [SortOrder] = 768.80 WHERE [Code] = 'yaa' END +SET [Description] = 'Yaminahua', [Definition] = NULL, [SortOrder] = 7693.00 WHERE [Code] = 'yaa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymn', 'Yamna', NULL, 768.90) END +VALUES ('ymn', 'Yamna', NULL, 7694.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamna', [Definition] = NULL, [SortOrder] = 768.90 WHERE [Code] = 'ymn' END +SET [Description] = 'Yamna', [Definition] = NULL, [SortOrder] = 7694.00 WHERE [Code] = 'ymn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymg', 'Yamongeri', NULL, 769.00) END +VALUES ('ymg', 'Yamongeri', NULL, 7695.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamongeri', [Definition] = NULL, [SortOrder] = 769.00 WHERE [Code] = 'ymg' END +SET [Description] = 'Yamongeri', [Definition] = NULL, [SortOrder] = 7695.00 WHERE [Code] = 'ymg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybi', 'Yamphu', NULL, 769.10) END +VALUES ('ybi', 'Yamphu', NULL, 7696.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yamphu', [Definition] = NULL, [SortOrder] = 769.10 WHERE [Code] = 'ybi' END +SET [Description] = 'Yamphu', [Definition] = NULL, [SortOrder] = 7696.00 WHERE [Code] = 'ybi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jay', 'Yan-nhangu', NULL, 769.20) END +VALUES ('jay', 'Yan-nhangu', NULL, 7697.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yan-nhangu', [Definition] = NULL, [SortOrder] = 769.20 WHERE [Code] = 'jay' END +SET [Description] = 'Yan-nhangu', [Definition] = NULL, [SortOrder] = 7697.00 WHERE [Code] = 'jay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yhs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yhs', 'Yan-nhangu Sign Language', NULL, 769.30) END +VALUES ('yhs', 'Yan-nhangu Sign Language', NULL, 7698.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yan-nhangu Sign Language', [Definition] = NULL, [SortOrder] = 769.30 WHERE [Code] = 'yhs' END +SET [Description] = 'Yan-nhangu Sign Language', [Definition] = NULL, [SortOrder] = 7698.00 WHERE [Code] = 'yhs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynn', 'Yana', NULL, 769.40) END +VALUES ('ynn', 'Yana', NULL, 7699.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yana', [Definition] = NULL, [SortOrder] = 769.40 WHERE [Code] = 'ynn' END +SET [Description] = 'Yana', [Definition] = NULL, [SortOrder] = 7699.00 WHERE [Code] = 'ynn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qur', 'Yanahuanca Pasco Quechua', NULL, 769.50) END +VALUES ('qur', 'Yanahuanca Pasco Quechua', NULL, 7700.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanahuanca Pasco Quechua', [Definition] = NULL, [SortOrder] = 769.50 WHERE [Code] = 'qur' END +SET [Description] = 'Yanahuanca Pasco Quechua', [Definition] = NULL, [SortOrder] = 7700.00 WHERE [Code] = 'qur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yda') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yda', 'Yanda', NULL, 769.60) END +VALUES ('yda', 'Yanda', NULL, 7701.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanda', [Definition] = NULL, [SortOrder] = 769.60 WHERE [Code] = 'yda' END +SET [Description] = 'Yanda', [Definition] = NULL, [SortOrder] = 7701.00 WHERE [Code] = 'yda' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dym') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dym', 'Yanda Dom Dogon', NULL, 769.70) END +VALUES ('dym', 'Yanda Dom Dogon', NULL, 7702.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanda Dom Dogon', [Definition] = NULL, [SortOrder] = 769.70 WHERE [Code] = 'dym' END +SET [Description] = 'Yanda Dom Dogon', [Definition] = NULL, [SortOrder] = 7702.00 WHERE [Code] = 'dym' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyb', 'Yandjibara', NULL, 769.80) END +VALUES ('xyb', 'Yandjibara', NULL, 7703.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yandjibara', [Definition] = NULL, [SortOrder] = 769.80 WHERE [Code] = 'xyb' END +SET [Description] = 'Yandjibara', [Definition] = NULL, [SortOrder] = 7703.00 WHERE [Code] = 'xyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynd', 'Yandruwandha', NULL, 769.90) END +VALUES ('ynd', 'Yandruwandha', NULL, 7704.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yandruwandha', [Definition] = NULL, [SortOrder] = 769.90 WHERE [Code] = 'ynd' END +SET [Description] = 'Yandruwandha', [Definition] = NULL, [SortOrder] = 7704.00 WHERE [Code] = 'ynd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ame') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ame', 'Yanesha''', NULL, 770.00) END +VALUES ('ame', 'Yanesha''', NULL, 7705.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanesha''', [Definition] = NULL, [SortOrder] = 770.00 WHERE [Code] = 'ame' END +SET [Description] = 'Yanesha''', [Definition] = NULL, [SortOrder] = 7705.00 WHERE [Code] = 'ame' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyg', 'Yang Zhuang', NULL, 770.10) END +VALUES ('zyg', 'Yang Zhuang', NULL, 7706.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yang Zhuang', [Definition] = NULL, [SortOrder] = 770.10 WHERE [Code] = 'zyg' END +SET [Description] = 'Yang Zhuang', [Definition] = NULL, [SortOrder] = 7706.00 WHERE [Code] = 'zyg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yav', 'Yangben', NULL, 770.20) END +VALUES ('yav', 'Yangben', NULL, 7707.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangben', [Definition] = NULL, [SortOrder] = 770.20 WHERE [Code] = 'yav' END +SET [Description] = 'Yangben', [Definition] = NULL, [SortOrder] = 7707.00 WHERE [Code] = 'yav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'bsx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('bsx', 'Yangkam', NULL, 770.30) END +VALUES ('bsx', 'Yangkam', NULL, 7708.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangkam', [Definition] = NULL, [SortOrder] = 770.30 WHERE [Code] = 'bsx' END +SET [Description] = 'Yangkam', [Definition] = NULL, [SortOrder] = 7708.00 WHERE [Code] = 'bsx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jng', 'Yangman', NULL, 770.40) END +VALUES ('jng', 'Yangman', NULL, 7709.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangman', [Definition] = NULL, [SortOrder] = 770.40 WHERE [Code] = 'jng' END +SET [Description] = 'Yangman', [Definition] = NULL, [SortOrder] = 7709.00 WHERE [Code] = 'jng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yng') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yng', 'Yango', NULL, 770.50) END +VALUES ('yng', 'Yango', NULL, 7710.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yango', [Definition] = NULL, [SortOrder] = 770.50 WHERE [Code] = 'yng' END +SET [Description] = 'Yango', [Definition] = NULL, [SortOrder] = 7710.00 WHERE [Code] = 'yng' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynl', 'Yangulam', NULL, 770.60) END +VALUES ('ynl', 'Yangulam', NULL, 7711.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangulam', [Definition] = NULL, [SortOrder] = 770.60 WHERE [Code] = 'ynl' END +SET [Description] = 'Yangulam', [Definition] = NULL, [SortOrder] = 7711.00 WHERE [Code] = 'ynl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yde') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yde', 'Yangum Dey', NULL, 770.70) END +VALUES ('yde', 'Yangum Dey', NULL, 7712.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangum Dey', [Definition] = NULL, [SortOrder] = 770.70 WHERE [Code] = 'yde' END +SET [Description] = 'Yangum Dey', [Definition] = NULL, [SortOrder] = 7712.00 WHERE [Code] = 'yde' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygl', 'Yangum Gel', NULL, 770.80) END +VALUES ('ygl', 'Yangum Gel', NULL, 7713.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangum Gel', [Definition] = NULL, [SortOrder] = 770.80 WHERE [Code] = 'ygl' END +SET [Description] = 'Yangum Gel', [Definition] = NULL, [SortOrder] = 7713.00 WHERE [Code] = 'ygl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ymo') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ymo', 'Yangum Mon', NULL, 770.90) END +VALUES ('ymo', 'Yangum Mon', NULL, 7714.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yangum Mon', [Definition] = NULL, [SortOrder] = 770.90 WHERE [Code] = 'ymo' END +SET [Description] = 'Yangum Mon', [Definition] = NULL, [SortOrder] = 7714.00 WHERE [Code] = 'ymo' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kdd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kdd', 'Yankunytjatjara', NULL, 771.00) END +VALUES ('kdd', 'Yankunytjatjara', NULL, 7715.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yankunytjatjara', [Definition] = NULL, [SortOrder] = 771.00 WHERE [Code] = 'kdd' END +SET [Description] = 'Yankunytjatjara', [Definition] = NULL, [SortOrder] = 7715.00 WHERE [Code] = 'kdd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'wca') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('wca', 'Yanomámi', NULL, 771.10) END +VALUES ('wca', 'Yanomámi', NULL, 7716.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanomámi', [Definition] = NULL, [SortOrder] = 771.10 WHERE [Code] = 'wca' END +SET [Description] = 'Yanomámi', [Definition] = NULL, [SortOrder] = 7716.00 WHERE [Code] = 'wca' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'guu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('guu', 'Yanomamö', NULL, 771.20) END +VALUES ('guu', 'Yanomamö', NULL, 7717.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanomamö', [Definition] = NULL, [SortOrder] = 771.20 WHERE [Code] = 'guu' END +SET [Description] = 'Yanomamö', [Definition] = NULL, [SortOrder] = 7717.00 WHERE [Code] = 'guu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yns') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yns', 'Yansi', NULL, 771.30) END +VALUES ('yns', 'Yansi', NULL, 7718.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yansi', [Definition] = NULL, [SortOrder] = 771.30 WHERE [Code] = 'yns' END +SET [Description] = 'Yansi', [Definition] = NULL, [SortOrder] = 7718.00 WHERE [Code] = 'yns' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jao', 'Yanyuwa', NULL, 771.40) END +VALUES ('jao', 'Yanyuwa', NULL, 7719.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yanyuwa', [Definition] = NULL, [SortOrder] = 771.40 WHERE [Code] = 'jao' END +SET [Description] = 'Yanyuwa', [Definition] = NULL, [SortOrder] = 7719.00 WHERE [Code] = 'jao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yao') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yao', 'Yao', NULL, 771.50) END +VALUES ('yao', 'Yao', NULL, 7720.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yao', [Definition] = NULL, [SortOrder] = 771.50 WHERE [Code] = 'yao' END +SET [Description] = 'Yao', [Definition] = NULL, [SortOrder] = 7720.00 WHERE [Code] = 'yao' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'asy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('asy', 'Yaosakor Asmat', NULL, 771.60) END +VALUES ('asy', 'Yaosakor Asmat', NULL, 7721.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaosakor Asmat', [Definition] = NULL, [SortOrder] = 771.60 WHERE [Code] = 'asy' END +SET [Description] = 'Yaosakor Asmat', [Definition] = NULL, [SortOrder] = 7721.00 WHERE [Code] = 'asy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yre') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yre', 'Yaouré', NULL, 771.70) END +VALUES ('yre', 'Yaouré', NULL, 7722.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaouré', [Definition] = NULL, [SortOrder] = 771.70 WHERE [Code] = 'yre' END +SET [Description] = 'Yaouré', [Definition] = NULL, [SortOrder] = 7722.00 WHERE [Code] = 'yre' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yap', 'Yapese', NULL, 771.80) END +VALUES ('yap', 'Yapese', NULL, 7723.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yapese', [Definition] = NULL, [SortOrder] = 771.80 WHERE [Code] = 'yap' END +SET [Description] = 'Yapese', [Definition] = NULL, [SortOrder] = 7723.00 WHERE [Code] = 'yap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yev') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yev', 'Yapunda', NULL, 771.90) END +VALUES ('yev', 'Yapunda', NULL, 7724.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yapunda', [Definition] = NULL, [SortOrder] = 771.90 WHERE [Code] = 'yev' END +SET [Description] = 'Yapunda', [Definition] = NULL, [SortOrder] = 7724.00 WHERE [Code] = 'yev' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaq', 'Yaqay', NULL, 772.00) END +VALUES ('jaq', 'Yaqay', NULL, 7725.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaqay', [Definition] = NULL, [SortOrder] = 772.00 WHERE [Code] = 'jaq' END +SET [Description] = 'Yaqay', [Definition] = NULL, [SortOrder] = 7725.00 WHERE [Code] = 'jaq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaq', 'Yaqui', NULL, 772.10) END +VALUES ('yaq', 'Yaqui', NULL, 7726.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaqui', [Definition] = NULL, [SortOrder] = 772.10 WHERE [Code] = 'yaq' END +SET [Description] = 'Yaqui', [Definition] = NULL, [SortOrder] = 7726.00 WHERE [Code] = 'yaq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrw', 'Yarawata', NULL, 772.20) END +VALUES ('yrw', 'Yarawata', NULL, 7727.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yarawata', [Definition] = NULL, [SortOrder] = 772.20 WHERE [Code] = 'yrw' END +SET [Description] = 'Yarawata', [Definition] = NULL, [SortOrder] = 7727.00 WHERE [Code] = 'yrw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxl', 'Yardliyawarra', NULL, 772.30) END +VALUES ('yxl', 'Yardliyawarra', NULL, 7728.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yardliyawarra', [Definition] = NULL, [SortOrder] = 772.30 WHERE [Code] = 'yxl' END +SET [Description] = 'Yardliyawarra', [Definition] = NULL, [SortOrder] = 7728.00 WHERE [Code] = 'yxl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrb', 'Yareba', NULL, 772.40) END +VALUES ('yrb', 'Yareba', NULL, 7729.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yareba', [Definition] = NULL, [SortOrder] = 772.40 WHERE [Code] = 'yrb' END +SET [Description] = 'Yareba', [Definition] = NULL, [SortOrder] = 7729.00 WHERE [Code] = 'yrb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zae') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zae', 'Yareni Zapotec', NULL, 772.50) END +VALUES ('zae', 'Yareni Zapotec', NULL, 7730.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yareni Zapotec', [Definition] = NULL, [SortOrder] = 772.50 WHERE [Code] = 'zae' END +SET [Description] = 'Yareni Zapotec', [Definition] = NULL, [SortOrder] = 7730.00 WHERE [Code] = 'zae' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yry') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yry', 'Yarluyandi', NULL, 772.60) END +VALUES ('yry', 'Yarluyandi', NULL, 7731.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yarluyandi', [Definition] = NULL, [SortOrder] = 772.60 WHERE [Code] = 'yry' END +SET [Description] = 'Yarluyandi', [Definition] = NULL, [SortOrder] = 7731.00 WHERE [Code] = 'yry' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yro', 'Yaroame', NULL, 772.70) END +VALUES ('yro', 'Yaroame', NULL, 7732.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaroame', [Definition] = NULL, [SortOrder] = 772.70 WHERE [Code] = 'yro' END +SET [Description] = 'Yaroame', [Definition] = NULL, [SortOrder] = 7732.00 WHERE [Code] = 'yro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrs', 'Yarsun', NULL, 772.80) END +VALUES ('yrs', 'Yarsun', NULL, 7733.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yarsun', [Definition] = NULL, [SortOrder] = 772.80 WHERE [Code] = 'yrs' END +SET [Description] = 'Yarsun', [Definition] = NULL, [SortOrder] = 7733.00 WHERE [Code] = 'yrs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yko') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yko', 'Yasa', NULL, 772.90) END +VALUES ('yko', 'Yasa', NULL, 7734.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yasa', [Definition] = NULL, [SortOrder] = 772.90 WHERE [Code] = 'yko' END +SET [Description] = 'Yasa', [Definition] = NULL, [SortOrder] = 7734.00 WHERE [Code] = 'yko' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysc', 'Yassic', NULL, 773.00) END +VALUES ('ysc', 'Yassic', NULL, 7735.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yassic', [Definition] = NULL, [SortOrder] = 773.00 WHERE [Code] = 'ysc' END +SET [Description] = 'Yassic', [Definition] = NULL, [SortOrder] = 7735.00 WHERE [Code] = 'ysc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yty', 'Yatay', NULL, 773.10) END +VALUES ('yty', 'Yatay', NULL, 7736.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yatay', [Definition] = NULL, [SortOrder] = 773.10 WHERE [Code] = 'yty' END +SET [Description] = 'Yatay', [Definition] = NULL, [SortOrder] = 7736.00 WHERE [Code] = 'yty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zty', 'Yatee Zapotec', NULL, 773.20) END +VALUES ('zty', 'Yatee Zapotec', NULL, 7737.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yatee Zapotec', [Definition] = NULL, [SortOrder] = 773.20 WHERE [Code] = 'zty' END +SET [Description] = 'Yatee Zapotec', [Definition] = NULL, [SortOrder] = 7737.00 WHERE [Code] = 'zty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zav') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zav', 'Yatzachi Zapotec', NULL, 773.30) END +VALUES ('zav', 'Yatzachi Zapotec', NULL, 7738.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yatzachi Zapotec', [Definition] = NULL, [SortOrder] = 773.30 WHERE [Code] = 'zav' END +SET [Description] = 'Yatzachi Zapotec', [Definition] = NULL, [SortOrder] = 7738.00 WHERE [Code] = 'zav' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuw', 'Yau (Morobe Province)', NULL, 773.40) END +VALUES ('yuw', 'Yau (Morobe Province)', NULL, 7739.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yau (Morobe Province)', [Definition] = NULL, [SortOrder] = 773.40 WHERE [Code] = 'yuw' END +SET [Description] = 'Yau (Morobe Province)', [Definition] = NULL, [SortOrder] = 7739.00 WHERE [Code] = 'yuw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yyu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yyu', 'Yau (Sandaun Province)', NULL, 773.50) END +VALUES ('yyu', 'Yau (Sandaun Province)', NULL, 7740.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yau (Sandaun Province)', [Definition] = NULL, [SortOrder] = 773.50 WHERE [Code] = 'yyu' END +SET [Description] = 'Yau (Sandaun Province)', [Definition] = NULL, [SortOrder] = 7740.00 WHERE [Code] = 'yyu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yla', 'Yaul', NULL, 773.60) END +VALUES ('yla', 'Yaul', NULL, 7741.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaul', [Definition] = NULL, [SortOrder] = 773.60 WHERE [Code] = 'yla' END +SET [Description] = 'Yaul', [Definition] = NULL, [SortOrder] = 7741.00 WHERE [Code] = 'yla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yax') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yax', 'Yauma', NULL, 773.70) END +VALUES ('yax', 'Yauma', NULL, 7742.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yauma', [Definition] = NULL, [SortOrder] = 773.70 WHERE [Code] = 'yax' END +SET [Description] = 'Yauma', [Definition] = NULL, [SortOrder] = 7742.00 WHERE [Code] = 'yax' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jau', 'Yaur', NULL, 773.80) END +VALUES ('jau', 'Yaur', NULL, 7743.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaur', [Definition] = NULL, [SortOrder] = 773.80 WHERE [Code] = 'jau' END +SET [Description] = 'Yaur', [Definition] = NULL, [SortOrder] = 7743.00 WHERE [Code] = 'jau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpb', 'Yautepec Zapotec', NULL, 773.90) END +VALUES ('zpb', 'Yautepec Zapotec', NULL, 7744.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yautepec Zapotec', [Definition] = NULL, [SortOrder] = 773.90 WHERE [Code] = 'zpb' END +SET [Description] = 'Yautepec Zapotec', [Definition] = NULL, [SortOrder] = 7744.00 WHERE [Code] = 'zpb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'qux') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('qux', 'Yauyos Quechua', NULL, 774.00) END +VALUES ('qux', 'Yauyos Quechua', NULL, 7745.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yauyos Quechua', [Definition] = NULL, [SortOrder] = 774.00 WHERE [Code] = 'qux' END +SET [Description] = 'Yauyos Quechua', [Definition] = NULL, [SortOrder] = 7745.00 WHERE [Code] = 'qux' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yvt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yvt', 'Yavitero', NULL, 774.10) END +VALUES ('yvt', 'Yavitero', NULL, 7746.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yavitero', [Definition] = NULL, [SortOrder] = 774.10 WHERE [Code] = 'yvt' END +SET [Description] = 'Yavitero', [Definition] = NULL, [SortOrder] = 7746.00 WHERE [Code] = 'yvt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yva') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yva', 'Yawa', NULL, 774.20) END +VALUES ('yva', 'Yawa', NULL, 7747.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawa', [Definition] = NULL, [SortOrder] = 774.20 WHERE [Code] = 'yva' END +SET [Description] = 'Yawa', [Definition] = NULL, [SortOrder] = 7747.00 WHERE [Code] = 'yva' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yaw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yaw', 'Yawalapití', NULL, 774.30) END +VALUES ('yaw', 'Yawalapití', NULL, 7748.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawalapití', [Definition] = NULL, [SortOrder] = 774.30 WHERE [Code] = 'yaw' END +SET [Description] = 'Yawalapití', [Definition] = NULL, [SortOrder] = 7748.00 WHERE [Code] = 'yaw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywn', 'Yawanawa', NULL, 774.40) END +VALUES ('ywn', 'Yawanawa', NULL, 7749.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawanawa', [Definition] = NULL, [SortOrder] = 774.40 WHERE [Code] = 'ywn' END +SET [Description] = 'Yawanawa', [Definition] = NULL, [SortOrder] = 7749.00 WHERE [Code] = 'ywn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yww') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yww', 'Yawarawarga', NULL, 774.50) END +VALUES ('yww', 'Yawarawarga', NULL, 7750.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawarawarga', [Definition] = NULL, [SortOrder] = 774.50 WHERE [Code] = 'yww' END +SET [Description] = 'Yawarawarga', [Definition] = NULL, [SortOrder] = 7750.00 WHERE [Code] = 'yww' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yby') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yby', 'Yaweyuha', NULL, 774.60) END +VALUES ('yby', 'Yaweyuha', NULL, 7751.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaweyuha', [Definition] = NULL, [SortOrder] = 774.60 WHERE [Code] = 'yby' END +SET [Description] = 'Yaweyuha', [Definition] = NULL, [SortOrder] = 7751.00 WHERE [Code] = 'yby' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jbw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jbw', 'Yawijibaya', NULL, 774.70) END +VALUES ('jbw', 'Yawijibaya', NULL, 7752.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawijibaya', [Definition] = NULL, [SortOrder] = 774.70 WHERE [Code] = 'jbw' END +SET [Description] = 'Yawijibaya', [Definition] = NULL, [SortOrder] = 7752.00 WHERE [Code] = 'jbw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybx', 'Yawiyo', NULL, 774.80) END +VALUES ('ybx', 'Yawiyo', NULL, 7753.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawiyo', [Definition] = NULL, [SortOrder] = 774.80 WHERE [Code] = 'ybx' END +SET [Description] = 'Yawiyo', [Definition] = NULL, [SortOrder] = 7753.00 WHERE [Code] = 'ybx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywr', 'Yawuru', NULL, 774.90) END +VALUES ('ywr', 'Yawuru', NULL, 7754.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yawuru', [Definition] = NULL, [SortOrder] = 774.90 WHERE [Code] = 'ywr' END +SET [Description] = 'Yawuru', [Definition] = NULL, [SortOrder] = 7754.00 WHERE [Code] = 'ywr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xya') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xya', 'Yaygir', NULL, 775.00) END +VALUES ('xya', 'Yaygir', NULL, 7755.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yaygir', [Definition] = NULL, [SortOrder] = 775.00 WHERE [Code] = 'xya' END +SET [Description] = 'Yaygir', [Definition] = NULL, [SortOrder] = 7755.00 WHERE [Code] = 'xya' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yah', 'Yazgulyam', NULL, 775.10) END +VALUES ('yah', 'Yazgulyam', NULL, 7756.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yazgulyam', [Definition] = NULL, [SortOrder] = 775.10 WHERE [Code] = 'yah' END +SET [Description] = 'Yazgulyam', [Definition] = NULL, [SortOrder] = 7756.00 WHERE [Code] = 'yah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'tlc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('tlc', 'Yecuatla Totonac', NULL, 775.20) END +VALUES ('tlc', 'Yecuatla Totonac', NULL, 7757.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yecuatla Totonac', [Definition] = NULL, [SortOrder] = 775.20 WHERE [Code] = 'tlc' END +SET [Description] = 'Yecuatla Totonac', [Definition] = NULL, [SortOrder] = 7757.00 WHERE [Code] = 'tlc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jei', 'Yei', NULL, 775.30) END +VALUES ('jei', 'Yei', NULL, 7758.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yei', [Definition] = NULL, [SortOrder] = 775.30 WHERE [Code] = 'jei' END +SET [Description] = 'Yei', [Definition] = NULL, [SortOrder] = 7758.00 WHERE [Code] = 'jei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ets') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ets', 'Yekhee', NULL, 775.40) END +VALUES ('ets', 'Yekhee', NULL, 7759.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yekhee', [Definition] = NULL, [SortOrder] = 775.40 WHERE [Code] = 'ets' END +SET [Description] = 'Yekhee', [Definition] = NULL, [SortOrder] = 7759.00 WHERE [Code] = 'ets' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ykr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ykr', 'Yekora', NULL, 775.50) END +VALUES ('ykr', 'Yekora', NULL, 7760.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yekora', [Definition] = NULL, [SortOrder] = 775.50 WHERE [Code] = 'ykr' END +SET [Description] = 'Yekora', [Definition] = NULL, [SortOrder] = 7760.00 WHERE [Code] = 'ykr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yel', 'Yela', NULL, 775.60) END +VALUES ('yel', 'Yela', NULL, 7761.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yela', [Definition] = NULL, [SortOrder] = 775.60 WHERE [Code] = 'yel' END +SET [Description] = 'Yela', [Definition] = NULL, [SortOrder] = 7761.00 WHERE [Code] = 'yel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yle') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yle', 'Yele', NULL, 775.70) END +VALUES ('yle', 'Yele', NULL, 7762.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yele', [Definition] = NULL, [SortOrder] = 775.70 WHERE [Code] = 'yle' END +SET [Description] = 'Yele', [Definition] = NULL, [SortOrder] = 7762.00 WHERE [Code] = 'yle' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jel') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jel', 'Yelmek', NULL, 775.80) END +VALUES ('jel', 'Yelmek', NULL, 7763.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yelmek', [Definition] = NULL, [SortOrder] = 775.80 WHERE [Code] = 'jel' END +SET [Description] = 'Yelmek', [Definition] = NULL, [SortOrder] = 7763.00 WHERE [Code] = 'jel' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ylg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ylg', 'Yelogu', NULL, 775.90) END +VALUES ('ylg', 'Yelogu', NULL, 7764.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yelogu', [Definition] = NULL, [SortOrder] = 775.90 WHERE [Code] = 'ylg' END +SET [Description] = 'Yelogu', [Definition] = NULL, [SortOrder] = 7764.00 WHERE [Code] = 'ylg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybb', 'Yemba', NULL, 776.00) END +VALUES ('ybb', 'Yemba', NULL, 7765.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yemba', [Definition] = NULL, [SortOrder] = 776.00 WHERE [Code] = 'ybb' END +SET [Description] = 'Yemba', [Definition] = NULL, [SortOrder] = 7765.00 WHERE [Code] = 'ybb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jnj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jnj', 'Yemsa', NULL, 776.10) END +VALUES ('jnj', 'Yemsa', NULL, 7766.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yemsa', [Definition] = NULL, [SortOrder] = 776.10 WHERE [Code] = 'jnj' END +SET [Description] = 'Yemsa', [Definition] = NULL, [SortOrder] = 7766.00 WHERE [Code] = 'jnj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ynq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ynq', 'Yendang', NULL, 776.20) END +VALUES ('ynq', 'Yendang', NULL, 7767.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yendang', [Definition] = NULL, [SortOrder] = 776.20 WHERE [Code] = 'ynq' END +SET [Description] = 'Yendang', [Definition] = NULL, [SortOrder] = 7767.00 WHERE [Code] = 'ynq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yei') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yei', 'Yeni', NULL, 776.30) END +VALUES ('yei', 'Yeni', NULL, 7768.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yeni', [Definition] = NULL, [SortOrder] = 776.30 WHERE [Code] = 'yei' END +SET [Description] = 'Yeni', [Definition] = NULL, [SortOrder] = 7768.00 WHERE [Code] = 'yei' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yec') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yec', 'Yeniche', NULL, 776.40) END +VALUES ('yec', 'Yeniche', NULL, 7769.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yeniche', [Definition] = NULL, [SortOrder] = 776.40 WHERE [Code] = 'yec' END +SET [Description] = 'Yeniche', [Definition] = NULL, [SortOrder] = 7769.00 WHERE [Code] = 'yec' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yra') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yra', 'Yerakai', NULL, 776.50) END +VALUES ('yra', 'Yerakai', NULL, 7770.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yerakai', [Definition] = NULL, [SortOrder] = 776.50 WHERE [Code] = 'yra' END +SET [Description] = 'Yerakai', [Definition] = NULL, [SortOrder] = 7770.00 WHERE [Code] = 'yra' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gop') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gop', 'Yeretuar', NULL, 776.60) END +VALUES ('gop', 'Yeretuar', NULL, 7771.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yeretuar', [Definition] = NULL, [SortOrder] = 776.60 WHERE [Code] = 'gop' END +SET [Description] = 'Yeretuar', [Definition] = NULL, [SortOrder] = 7771.00 WHERE [Code] = 'gop' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrn', 'Yerong', NULL, 776.70) END +VALUES ('yrn', 'Yerong', NULL, 7772.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yerong', [Definition] = NULL, [SortOrder] = 776.70 WHERE [Code] = 'yrn' END +SET [Description] = 'Yerong', [Definition] = NULL, [SortOrder] = 7772.00 WHERE [Code] = 'yrn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yeu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yeu', 'Yerukula', NULL, 776.80) END +VALUES ('yeu', 'Yerukula', NULL, 7773.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yerukula', [Definition] = NULL, [SortOrder] = 776.80 WHERE [Code] = 'yeu' END +SET [Description] = 'Yerukula', [Definition] = NULL, [SortOrder] = 7773.00 WHERE [Code] = 'yeu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yss') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yss', 'Yessan-Mayo', NULL, 776.90) END +VALUES ('yss', 'Yessan-Mayo', NULL, 7774.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yessan-Mayo', [Definition] = NULL, [SortOrder] = 776.90 WHERE [Code] = 'yss' END +SET [Description] = 'Yessan-Mayo', [Definition] = NULL, [SortOrder] = 7774.00 WHERE [Code] = 'yss' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yet') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yet', 'Yetfa', NULL, 777.00) END +VALUES ('yet', 'Yetfa', NULL, 7775.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yetfa', [Definition] = NULL, [SortOrder] = 777.00 WHERE [Code] = 'yet' END +SET [Description] = 'Yetfa', [Definition] = NULL, [SortOrder] = 7775.00 WHERE [Code] = 'yet' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yej') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yej', 'Yevanic', NULL, 777.10) END +VALUES ('yej', 'Yevanic', NULL, 7776.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yevanic', [Definition] = NULL, [SortOrder] = 777.10 WHERE [Code] = 'yej' END +SET [Description] = 'Yevanic', [Definition] = NULL, [SortOrder] = 7776.00 WHERE [Code] = 'yej' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yey') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yey', 'Yeyi', NULL, 777.20) END +VALUES ('yey', 'Yeyi', NULL, 7777.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yeyi', [Definition] = NULL, [SortOrder] = 777.20 WHERE [Code] = 'yey' END +SET [Description] = 'Yeyi', [Definition] = NULL, [SortOrder] = 7777.00 WHERE [Code] = 'yey' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yid') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yid', 'Yiddish', NULL, 777.30) END +VALUES ('yid', 'Yiddish', NULL, 7778.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yiddish', [Definition] = NULL, [SortOrder] = 777.30 WHERE [Code] = 'yid' END +SET [Description] = 'Yiddish', [Definition] = NULL, [SortOrder] = 7778.00 WHERE [Code] = 'yid' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ydg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ydg', 'Yidgha', NULL, 777.40) END +VALUES ('ydg', 'Yidgha', NULL, 7779.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yidgha', [Definition] = NULL, [SortOrder] = 777.40 WHERE [Code] = 'ydg' END +SET [Description] = 'Yidgha', [Definition] = NULL, [SortOrder] = 7779.00 WHERE [Code] = 'ydg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yii') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yii', 'Yidiny', NULL, 777.50) END +VALUES ('yii', 'Yidiny', NULL, 7780.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yidiny', [Definition] = NULL, [SortOrder] = 777.50 WHERE [Code] = 'yii' END +SET [Description] = 'Yidiny', [Definition] = NULL, [SortOrder] = 7780.00 WHERE [Code] = 'yii' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yll') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yll', 'Yil', NULL, 777.60) END +VALUES ('yll', 'Yil', NULL, 7781.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yil', [Definition] = NULL, [SortOrder] = 777.60 WHERE [Code] = 'yll' END +SET [Description] = 'Yil', [Definition] = NULL, [SortOrder] = 7781.00 WHERE [Code] = 'yll' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ycr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('ycr', 'Yilan Creole', NULL, 7782.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Yilan Creole', [Definition] = NULL, [SortOrder] = 7782.00 WHERE [Code] = 'ycr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yee') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yee', 'Yimas', NULL, 777.70) END +VALUES ('yee', 'Yimas', NULL, 7783.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yimas', [Definition] = NULL, [SortOrder] = 777.70 WHERE [Code] = 'yee' END +SET [Description] = 'Yimas', [Definition] = NULL, [SortOrder] = 7783.00 WHERE [Code] = 'yee' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yim') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yim', 'Yimchungru Naga', NULL, 777.80) END +VALUES ('yim', 'Yimchungru Naga', NULL, 7784.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yimchungru Naga', [Definition] = NULL, [SortOrder] = 777.80 WHERE [Code] = 'yim' END +SET [Description] = 'Yimchungru Naga', [Definition] = NULL, [SortOrder] = 7784.00 WHERE [Code] = 'yim' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvu', 'Yinbaw Karen', NULL, 777.90) END +VALUES ('kvu', 'Yinbaw Karen', NULL, 7785.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yinbaw Karen', [Definition] = NULL, [SortOrder] = 777.90 WHERE [Code] = 'kvu' END +SET [Description] = 'Yinbaw Karen', [Definition] = NULL, [SortOrder] = 7785.00 WHERE [Code] = 'kvu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yij') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yij', 'Yindjibarndi', NULL, 778.00) END +VALUES ('yij', 'Yindjibarndi', NULL, 7786.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yindjibarndi', [Definition] = NULL, [SortOrder] = 778.00 WHERE [Code] = 'yij' END +SET [Description] = 'Yindjibarndi', [Definition] = NULL, [SortOrder] = 7786.00 WHERE [Code] = 'yij' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yil', 'Yindjilandji', NULL, 778.10) END +VALUES ('yil', 'Yindjilandji', NULL, 7787.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yindjilandji', [Definition] = NULL, [SortOrder] = 778.10 WHERE [Code] = 'yil' END +SET [Description] = 'Yindjilandji', [Definition] = NULL, [SortOrder] = 7787.00 WHERE [Code] = 'yil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pib', 'Yine', NULL, 778.20) END +VALUES ('pib', 'Yine', NULL, 7788.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yine', [Definition] = NULL, [SortOrder] = 778.20 WHERE [Code] = 'pib' END +SET [Description] = 'Yine', [Definition] = NULL, [SortOrder] = 7788.00 WHERE [Code] = 'pib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yia', 'Yinggarda', NULL, 778.30) END +VALUES ('yia', 'Yinggarda', NULL, 7789.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yinggarda', [Definition] = NULL, [SortOrder] = 778.30 WHERE [Code] = 'yia' END +SET [Description] = 'Yinggarda', [Definition] = NULL, [SortOrder] = 7789.00 WHERE [Code] = 'yia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ywg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ywg', 'Yinhawangka', NULL, 778.40) END +VALUES ('ywg', 'Yinhawangka', NULL, 7790.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yinhawangka', [Definition] = NULL, [SortOrder] = 778.40 WHERE [Code] = 'ywg' END +SET [Description] = 'Yinhawangka', [Definition] = NULL, [SortOrder] = 7790.00 WHERE [Code] = 'ywg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygi', 'Yiningayi', NULL, 778.50) END +VALUES ('ygi', 'Yiningayi', NULL, 7791.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yiningayi', [Definition] = NULL, [SortOrder] = 778.50 WHERE [Code] = 'ygi' END +SET [Description] = 'Yiningayi', [Definition] = NULL, [SortOrder] = 7791.00 WHERE [Code] = 'ygi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kvy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kvy', 'Yintale Karen', NULL, 778.60) END +VALUES ('kvy', 'Yintale Karen', NULL, 7792.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yintale Karen', [Definition] = NULL, [SortOrder] = 778.60 WHERE [Code] = 'kvy' END +SET [Description] = 'Yintale Karen', [Definition] = NULL, [SortOrder] = 7792.00 WHERE [Code] = 'kvy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxm', 'Yinwum', NULL, 778.70) END +VALUES ('yxm', 'Yinwum', NULL, 7793.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yinwum', [Definition] = NULL, [SortOrder] = 778.70 WHERE [Code] = 'yxm' END +SET [Description] = 'Yinwum', [Definition] = NULL, [SortOrder] = 7793.00 WHERE [Code] = 'yxm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yyr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yyr', 'Yir Yoront', NULL, 778.80) END +VALUES ('yyr', 'Yir Yoront', NULL, 7794.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yir Yoront', [Definition] = NULL, [SortOrder] = 778.80 WHERE [Code] = 'yyr' END +SET [Description] = 'Yir Yoront', [Definition] = NULL, [SortOrder] = 7794.00 WHERE [Code] = 'yyr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ljw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ljw', 'Yirandali', NULL, 778.90) END +VALUES ('ljw', 'Yirandali', NULL, 7795.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yirandali', [Definition] = NULL, [SortOrder] = 778.90 WHERE [Code] = 'ljw' END +SET [Description] = 'Yirandali', [Definition] = NULL, [SortOrder] = 7795.00 WHERE [Code] = 'ljw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yrm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yrm', 'Yirrk-Mel', NULL, 779.00) END +VALUES ('yrm', 'Yirrk-Mel', NULL, 7796.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yirrk-Mel', [Definition] = NULL, [SortOrder] = 779.00 WHERE [Code] = 'yrm' END +SET [Description] = 'Yirrk-Mel', [Definition] = NULL, [SortOrder] = 7796.00 WHERE [Code] = 'yrm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yis') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yis', 'Yis', NULL, 779.10) END +VALUES ('yis', 'Yis', NULL, 7797.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yis', [Definition] = NULL, [SortOrder] = 779.10 WHERE [Code] = 'yis' END +SET [Description] = 'Yis', [Definition] = NULL, [SortOrder] = 7797.00 WHERE [Code] = 'yis' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xth') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xth', 'Yitha Yitha', NULL, 779.20) END +VALUES ('xth', 'Yitha Yitha', NULL, 7798.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yitha Yitha', [Definition] = NULL, [SortOrder] = 779.20 WHERE [Code] = 'xth' END +SET [Description] = 'Yitha Yitha', [Definition] = NULL, [SortOrder] = 7798.00 WHERE [Code] = 'xth' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yob') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yob', 'Yoba', NULL, 779.30) END +VALUES ('yob', 'Yoba', NULL, 7799.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoba', [Definition] = NULL, [SortOrder] = 779.30 WHERE [Code] = 'yob' END +SET [Description] = 'Yoba', [Definition] = NULL, [SortOrder] = 7799.00 WHERE [Code] = 'yob' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gud') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gud', 'Yocoboué Dida', NULL, 779.40) END +VALUES ('gud', 'Yocoboué Dida', NULL, 7800.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yocoboué Dida', [Definition] = NULL, [SortOrder] = 779.40 WHERE [Code] = 'gud' END +SET [Description] = 'Yocoboué Dida', [Definition] = NULL, [SortOrder] = 7800.00 WHERE [Code] = 'gud' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yog') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yog', 'Yogad', NULL, 779.50) END +VALUES ('yog', 'Yogad', NULL, 7801.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yogad', [Definition] = NULL, [SortOrder] = 779.50 WHERE [Code] = 'yog' END +SET [Description] = 'Yogad', [Definition] = NULL, [SortOrder] = 7801.00 WHERE [Code] = 'yog' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ydk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ydk', 'Yoidik', NULL, 779.60) END +VALUES ('ydk', 'Yoidik', NULL, 7802.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoidik', [Definition] = NULL, [SortOrder] = 779.60 WHERE [Code] = 'ydk' END +SET [Description] = 'Yoidik', [Definition] = NULL, [SortOrder] = 7802.00 WHERE [Code] = 'ydk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yki') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yki', 'Yoke', NULL, 779.70) END +VALUES ('yki', 'Yoke', NULL, 7803.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoke', [Definition] = NULL, [SortOrder] = 779.70 WHERE [Code] = 'yki' END +SET [Description] = 'Yoke', [Definition] = NULL, [SortOrder] = 7803.00 WHERE [Code] = 'yki' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yok') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yok', 'Yokuts', NULL, 779.80) END +VALUES ('yok', 'Yokuts', NULL, 7804.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yokuts', [Definition] = NULL, [SortOrder] = 779.80 WHERE [Code] = 'yok' END +SET [Description] = 'Yokuts', [Definition] = NULL, [SortOrder] = 7804.00 WHERE [Code] = 'yok' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygs') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygs', 'Yol?u Sign Language', NULL, 779.90) END +VALUES ('ygs', 'Yol?u Sign Language', NULL, 7805.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yol?u Sign Language', [Definition] = NULL, [SortOrder] = 779.90 WHERE [Code] = 'ygs' END +SET [Description] = 'Yol?u Sign Language', [Definition] = NULL, [SortOrder] = 7805.00 WHERE [Code] = 'ygs' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yol') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yol', 'Yola', NULL, 780.00) END +VALUES ('yol', 'Yola', NULL, 7806.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yola', [Definition] = NULL, [SortOrder] = 780.00 WHERE [Code] = 'yol' END +SET [Description] = 'Yola', [Definition] = NULL, [SortOrder] = 7806.00 WHERE [Code] = 'yol' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xty') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xty', 'Yoloxochitl Mixtec', NULL, 780.10) END +VALUES ('xty', 'Yoloxochitl Mixtec', NULL, 7807.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoloxochitl Mixtec', [Definition] = NULL, [SortOrder] = 780.10 WHERE [Code] = 'xty' END +SET [Description] = 'Yoloxochitl Mixtec', [Definition] = NULL, [SortOrder] = 7807.00 WHERE [Code] = 'xty' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pil', 'Yom', NULL, 780.20) END +VALUES ('pil', 'Yom', NULL, 7808.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yom', [Definition] = NULL, [SortOrder] = 780.20 WHERE [Code] = 'pil' END +SET [Description] = 'Yom', [Definition] = NULL, [SortOrder] = 7808.00 WHERE [Code] = 'pil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yom', 'Yombe', NULL, 780.30) END +VALUES ('yom', 'Yombe', NULL, 7809.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yombe', [Definition] = NULL, [SortOrder] = 780.30 WHERE [Code] = 'yom' END +SET [Description] = 'Yombe', [Definition] = NULL, [SortOrder] = 7809.00 WHERE [Code] = 'yom' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yoi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yoi', 'Yonaguni', NULL, 780.40) END +VALUES ('yoi', 'Yonaguni', NULL, 7810.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yonaguni', [Definition] = NULL, [SortOrder] = 780.40 WHERE [Code] = 'yoi' END +SET [Description] = 'Yonaguni', [Definition] = NULL, [SortOrder] = 7810.00 WHERE [Code] = 'yoi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yno') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yno', 'Yong', NULL, 780.50) END +VALUES ('yno', 'Yong', NULL, 7811.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yong', [Definition] = NULL, [SortOrder] = 780.50 WHERE [Code] = 'yno' END +SET [Description] = 'Yong', [Definition] = NULL, [SortOrder] = 7811.00 WHERE [Code] = 'yno' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyb', 'Yongbei Zhuang', NULL, 780.60) END +VALUES ('zyb', 'Yongbei Zhuang', NULL, 7812.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yongbei Zhuang', [Definition] = NULL, [SortOrder] = 780.60 WHERE [Code] = 'zyb' END +SET [Description] = 'Yongbei Zhuang', [Definition] = NULL, [SortOrder] = 7812.00 WHERE [Code] = 'zyb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yon') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yon', 'Yongkom', NULL, 780.70) END +VALUES ('yon', 'Yongkom', NULL, 7813.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yongkom', [Definition] = NULL, [SortOrder] = 780.70 WHERE [Code] = 'yon' END +SET [Description] = 'Yongkom', [Definition] = NULL, [SortOrder] = 7813.00 WHERE [Code] = 'yon' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyn', 'Yongnan Zhuang', NULL, 780.80) END +VALUES ('zyn', 'Yongnan Zhuang', NULL, 7814.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yongnan Zhuang', [Definition] = NULL, [SortOrder] = 780.80 WHERE [Code] = 'zyn' END +SET [Description] = 'Yongnan Zhuang', [Definition] = NULL, [SortOrder] = 7814.00 WHERE [Code] = 'zyn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yut') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yut', 'Yopno', NULL, 780.90) END +VALUES ('yut', 'Yopno', NULL, 7815.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yopno', [Definition] = NULL, [SortOrder] = 780.90 WHERE [Code] = 'yut' END +SET [Description] = 'Yopno', [Definition] = NULL, [SortOrder] = 7815.00 WHERE [Code] = 'yut' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mts', 'Yora', NULL, 781.00) END +VALUES ('mts', 'Yora', NULL, 7816.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yora', [Definition] = NULL, [SortOrder] = 781.00 WHERE [Code] = 'mts' END +SET [Description] = 'Yora', [Definition] = NULL, [SortOrder] = 7816.00 WHERE [Code] = 'mts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yox') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yox', 'Yoron', NULL, 781.10) END +VALUES ('yox', 'Yoron', NULL, 7817.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoron', [Definition] = NULL, [SortOrder] = 781.10 WHERE [Code] = 'yox' END +SET [Description] = 'Yoron', [Definition] = NULL, [SortOrder] = 7817.00 WHERE [Code] = 'yox' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xyy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xyy', 'Yorta Yorta', NULL, 781.20) END +VALUES ('xyy', 'Yorta Yorta', NULL, 7818.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yorta Yorta', [Definition] = NULL, [SortOrder] = 781.20 WHERE [Code] = 'xyy' END +SET [Description] = 'Yorta Yorta', [Definition] = NULL, [SortOrder] = 7818.00 WHERE [Code] = 'xyy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yor') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yor', 'Yoruba', NULL, 781.30) END +VALUES ('yor', 'Yoruba', NULL, 7819.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoruba', [Definition] = NULL, [SortOrder] = 781.30 WHERE [Code] = 'yor' END +SET [Description] = 'Yoruba', [Definition] = NULL, [SortOrder] = 7819.00 WHERE [Code] = 'yor' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mpm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mpm', 'Yosondúa Mixtec', NULL, 781.40) END +VALUES ('mpm', 'Yosondúa Mixtec', NULL, 7820.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yosondúa Mixtec', [Definition] = NULL, [SortOrder] = 781.40 WHERE [Code] = 'mpm' END +SET [Description] = 'Yosondúa Mixtec', [Definition] = NULL, [SortOrder] = 7820.00 WHERE [Code] = 'mpm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yot') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yot', 'Yotti', NULL, 781.50) END +VALUES ('yot', 'Yotti', NULL, 7821.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yotti', [Definition] = NULL, [SortOrder] = 781.50 WHERE [Code] = 'yot' END +SET [Description] = 'Yotti', [Definition] = NULL, [SortOrder] = 7821.00 WHERE [Code] = 'yot' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyj', 'Youjiang Zhuang', NULL, 781.60) END +VALUES ('zyj', 'Youjiang Zhuang', NULL, 7822.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Youjiang Zhuang', [Definition] = NULL, [SortOrder] = 781.60 WHERE [Code] = 'zyj' END +SET [Description] = 'Youjiang Zhuang', [Definition] = NULL, [SortOrder] = 7822.00 WHERE [Code] = 'zyj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jiu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jiu', 'Youle Jinuo', NULL, 781.70) END +VALUES ('jiu', 'Youle Jinuo', NULL, 7823.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Youle Jinuo', [Definition] = NULL, [SortOrder] = 781.70 WHERE [Code] = 'jiu' END +SET [Description] = 'Youle Jinuo', [Definition] = NULL, [SortOrder] = 7823.00 WHERE [Code] = 'jiu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'buh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('buh', 'Younuo Bunu', NULL, 781.80) END +VALUES ('buh', 'Younuo Bunu', NULL, 7824.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Younuo Bunu', [Definition] = NULL, [SortOrder] = 781.80 WHERE [Code] = 'buh' END +SET [Description] = 'Younuo Bunu', [Definition] = NULL, [SortOrder] = 7824.00 WHERE [Code] = 'buh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ytw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ytw', 'Yout Wam', NULL, 781.90) END +VALUES ('ytw', 'Yout Wam', NULL, 7825.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yout Wam', [Definition] = NULL, [SortOrder] = 781.90 WHERE [Code] = 'ytw' END +SET [Description] = 'Yout Wam', [Definition] = NULL, [SortOrder] = 7825.00 WHERE [Code] = 'ytw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yoy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yoy', 'Yoy', NULL, 782.00) END +VALUES ('yoy', 'Yoy', NULL, 7826.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yoy', [Definition] = NULL, [SortOrder] = 782.00 WHERE [Code] = 'yoy' END +SET [Description] = 'Yoy', [Definition] = NULL, [SortOrder] = 7826.00 WHERE [Code] = 'yoy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nua', 'Yuanga', NULL, 782.10) END +VALUES ('nua', 'Yuanga', NULL, 7827.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuanga', [Definition] = NULL, [SortOrder] = 782.10 WHERE [Code] = 'nua' END +SET [Description] = 'Yuanga', [Definition] = NULL, [SortOrder] = 7827.00 WHERE [Code] = 'nua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'msd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('msd', 'Yucatec Maya Sign Language', NULL, 782.20) END +VALUES ('msd', 'Yucatec Maya Sign Language', NULL, 7828.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yucatec Maya Sign Language', [Definition] = NULL, [SortOrder] = 782.20 WHERE [Code] = 'msd' END +SET [Description] = 'Yucatec Maya Sign Language', [Definition] = NULL, [SortOrder] = 7828.00 WHERE [Code] = 'msd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yua', 'Yucateco', NULL, 782.30) END +VALUES ('yua', 'Yucateco', NULL, 7829.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yucateco', [Definition] = NULL, [SortOrder] = 782.30 WHERE [Code] = 'yua' END +SET [Description] = 'Yucateco', [Definition] = NULL, [SortOrder] = 7829.00 WHERE [Code] = 'yua' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuc') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuc', 'Yuchi', NULL, 782.40) END +VALUES ('yuc', 'Yuchi', NULL, 7830.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuchi', [Definition] = NULL, [SortOrder] = 782.40 WHERE [Code] = 'yuc' END +SET [Description] = 'Yuchi', [Definition] = NULL, [SortOrder] = 7830.00 WHERE [Code] = 'yuc' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mvg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mvg', 'Yucuañe Mixtec', NULL, 782.50) END +VALUES ('mvg', 'Yucuañe Mixtec', NULL, 7831.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yucuañe Mixtec', [Definition] = NULL, [SortOrder] = 782.50 WHERE [Code] = 'mvg' END +SET [Description] = 'Yucuañe Mixtec', [Definition] = NULL, [SortOrder] = 7831.00 WHERE [Code] = 'mvg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ycn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ycn', 'Yucuna', NULL, 782.60) END +VALUES ('ycn', 'Yucuna', NULL, 7832.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yucuna', [Definition] = NULL, [SortOrder] = 782.60 WHERE [Code] = 'ycn' END +SET [Description] = 'Yucuna', [Definition] = NULL, [SortOrder] = 7832.00 WHERE [Code] = 'ycn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yue') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yue', 'Yue Chinese', NULL, 782.70) END +VALUES ('yue', 'Yue Chinese', NULL, 7833.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yue Chinese', [Definition] = NULL, [SortOrder] = 782.70 WHERE [Code] = 'yue' END +SET [Description] = 'Yue Chinese', [Definition] = NULL, [SortOrder] = 7833.00 WHERE [Code] = 'yue' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yug') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yug', 'Yug', NULL, 782.80) END +VALUES ('yug', 'Yug', NULL, 7834.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yug', [Definition] = NULL, [SortOrder] = 782.80 WHERE [Code] = 'yug' END +SET [Description] = 'Yug', [Definition] = NULL, [SortOrder] = 7834.00 WHERE [Code] = 'yug' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yub') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yub', 'Yugambal', NULL, 782.90) END +VALUES ('yub', 'Yugambal', NULL, 7835.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yugambal', [Definition] = NULL, [SortOrder] = 782.90 WHERE [Code] = 'yub' END +SET [Description] = 'Yugambal', [Definition] = NULL, [SortOrder] = 7835.00 WHERE [Code] = 'yub' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ysl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ysl', 'Yugoslavian Sign Language', NULL, 783.00) END +VALUES ('ysl', 'Yugoslavian Sign Language', NULL, 7836.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yugoslavian Sign Language', [Definition] = NULL, [SortOrder] = 783.00 WHERE [Code] = 'ysl' END +SET [Description] = 'Yugoslavian Sign Language', [Definition] = NULL, [SortOrder] = 7836.00 WHERE [Code] = 'ysl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ygu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ygu', 'Yugul', NULL, 783.10) END +VALUES ('ygu', 'Yugul', NULL, 7837.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yugul', [Definition] = NULL, [SortOrder] = 783.10 WHERE [Code] = 'ygu' END +SET [Description] = 'Yugul', [Definition] = NULL, [SortOrder] = 7837.00 WHERE [Code] = 'ygu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yab', 'Yuhup', NULL, 783.20) END +VALUES ('yab', 'Yuhup', NULL, 7838.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuhup', [Definition] = NULL, [SortOrder] = 783.20 WHERE [Code] = 'yab' END +SET [Description] = 'Yuhup', [Definition] = NULL, [SortOrder] = 7838.00 WHERE [Code] = 'yab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuk', 'Yuki', NULL, 783.30) END +VALUES ('yuk', 'Yuki', NULL, 7839.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuki', [Definition] = NULL, [SortOrder] = 783.30 WHERE [Code] = 'yuk' END +SET [Description] = 'Yuki', [Definition] = NULL, [SortOrder] = 7839.00 WHERE [Code] = 'yuk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yup') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yup', 'Yukpa', NULL, 783.40) END +VALUES ('yup', 'Yukpa', NULL, 7840.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yukpa', [Definition] = NULL, [SortOrder] = 783.40 WHERE [Code] = 'yup' END +SET [Description] = 'Yukpa', [Definition] = NULL, [SortOrder] = 7840.00 WHERE [Code] = 'yup' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ybl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ybl', 'Yukuben', NULL, 783.50) END +VALUES ('ybl', 'Yukuben', NULL, 7841.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yukuben', [Definition] = NULL, [SortOrder] = 783.50 WHERE [Code] = 'ybl' END +SET [Description] = 'Yukuben', [Definition] = NULL, [SortOrder] = 7841.00 WHERE [Code] = 'ybl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yul', 'Yulu', NULL, 783.60) END +VALUES ('yul', 'Yulu', NULL, 7842.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yulu', [Definition] = NULL, [SortOrder] = 783.60 WHERE [Code] = 'yul' END +SET [Description] = 'Yulu', [Definition] = NULL, [SortOrder] = 7842.00 WHERE [Code] = 'yul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuq', 'Yuqui', NULL, 783.70) END +VALUES ('yuq', 'Yuqui', NULL, 7843.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuqui', [Definition] = NULL, [SortOrder] = 783.70 WHERE [Code] = 'yuq' END +SET [Description] = 'Yuqui', [Definition] = NULL, [SortOrder] = 7843.00 WHERE [Code] = 'yuq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yuz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yuz', 'Yuracare', NULL, 783.80) END +VALUES ('yuz', 'Yuracare', NULL, 7844.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuracare', [Definition] = NULL, [SortOrder] = 783.80 WHERE [Code] = 'yuz' END +SET [Description] = 'Yuracare', [Definition] = NULL, [SortOrder] = 7844.00 WHERE [Code] = 'yuz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'rts') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('rts', 'Yurats', NULL, 783.90) END +VALUES ('rts', 'Yurats', NULL, 7845.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yurats', [Definition] = NULL, [SortOrder] = 783.90 WHERE [Code] = 'rts' END +SET [Description] = 'Yurats', [Definition] = NULL, [SortOrder] = 7845.00 WHERE [Code] = 'rts' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yur') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yur', 'Yurok', NULL, 784.00) END +VALUES ('yur', 'Yurok', NULL, 7846.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yurok', [Definition] = NULL, [SortOrder] = 784.00 WHERE [Code] = 'yur' END +SET [Description] = 'Yurok', [Definition] = NULL, [SortOrder] = 7846.00 WHERE [Code] = 'yur' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ljx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ljx', 'Yuru', NULL, 784.10) END +VALUES ('ljx', 'Yuru', NULL, 7847.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuru', [Definition] = NULL, [SortOrder] = 784.10 WHERE [Code] = 'ljx' END +SET [Description] = 'Yuru', [Definition] = NULL, [SortOrder] = 7847.00 WHERE [Code] = 'ljx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yui') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yui', 'Yurutí', NULL, 784.20) END +VALUES ('yui', 'Yurutí', NULL, 7848.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yurutí', [Definition] = NULL, [SortOrder] = 784.20 WHERE [Code] = 'yui' END +SET [Description] = 'Yurutí', [Definition] = NULL, [SortOrder] = 7848.00 WHERE [Code] = 'yui' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'mab') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('mab', 'Yutanduchi Mixtec', NULL, 784.30) END +VALUES ('mab', 'Yutanduchi Mixtec', NULL, 7849.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yutanduchi Mixtec', [Definition] = NULL, [SortOrder] = 784.30 WHERE [Code] = 'mab' END +SET [Description] = 'Yutanduchi Mixtec', [Definition] = NULL, [SortOrder] = 7849.00 WHERE [Code] = 'mab' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yau', 'Yuwana', NULL, 784.40) END +VALUES ('yau', 'Yuwana', NULL, 7850.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuwana', [Definition] = NULL, [SortOrder] = 784.40 WHERE [Code] = 'yau' END +SET [Description] = 'Yuwana', [Definition] = NULL, [SortOrder] = 7850.00 WHERE [Code] = 'yau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yxu') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yxu', 'Yuyu', NULL, 784.50) END +VALUES ('yxu', 'Yuyu', NULL, 7851.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Yuyu', [Definition] = NULL, [SortOrder] = 784.50 WHERE [Code] = 'yxu' END +SET [Description] = 'Yuyu', [Definition] = NULL, [SortOrder] = 7851.00 WHERE [Code] = 'yxu' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gek') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gek', 'Ywom', NULL, 784.60) END +VALUES ('gek', 'Ywom', NULL, 7852.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Ywom', [Definition] = NULL, [SortOrder] = 784.60 WHERE [Code] = 'gek' END +SET [Description] = 'Ywom', [Definition] = NULL, [SortOrder] = 7852.00 WHERE [Code] = 'gek' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ztx') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ztx', 'Zaachila Zapotec', NULL, 784.70) END +VALUES ('ztx', 'Zaachila Zapotec', NULL, 7853.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaachila Zapotec', [Definition] = NULL, [SortOrder] = 784.70 WHERE [Code] = 'ztx' END +SET [Description] = 'Zaachila Zapotec', [Definition] = NULL, [SortOrder] = 7853.00 WHERE [Code] = 'ztx' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kji') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kji', 'Zabana', NULL, 784.80) END +VALUES ('kji', 'Zabana', NULL, 7854.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zabana', [Definition] = NULL, [SortOrder] = 784.80 WHERE [Code] = 'kji' END +SET [Description] = 'Zabana', [Definition] = NULL, [SortOrder] = 7854.00 WHERE [Code] = 'kji' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ctz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ctz', 'Zacatepec Chatino', NULL, 784.90) END +VALUES ('ctz', 'Zacatepec Chatino', NULL, 7855.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zacatepec Chatino', [Definition] = NULL, [SortOrder] = 784.90 WHERE [Code] = 'ctz' END +SET [Description] = 'Zacatepec Chatino', [Definition] = NULL, [SortOrder] = 7855.00 WHERE [Code] = 'ctz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nhi', 'Zacatlán-Ahuacatlán-Tepetzintla Nahuatl', NULL, 785.00) END +VALUES ('nhi', 'Zacatlán-Ahuacatlán-Tepetzintla Nahuatl', NULL, 7856.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zacatlán-Ahuacatlán-Tepetzintla Nahuatl', [Definition] = NULL, [SortOrder] = 785.00 WHERE [Code] = 'nhi' END +SET [Description] = 'Zacatlán-Ahuacatlán-Tepetzintla Nahuatl', [Definition] = NULL, [SortOrder] = 7856.00 WHERE [Code] = 'nhi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zag') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zag', 'Zaghawa', NULL, 785.10) END +VALUES ('zag', 'Zaghawa', NULL, 7857.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaghawa', [Definition] = NULL, [SortOrder] = 785.10 WHERE [Code] = 'zag' END +SET [Description] = 'Zaghawa', [Definition] = NULL, [SortOrder] = 7857.00 WHERE [Code] = 'zag' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'atb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('atb', 'Zaiwa', NULL, 785.20) END +VALUES ('atb', 'Zaiwa', NULL, 7858.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaiwa', [Definition] = NULL, [SortOrder] = 785.20 WHERE [Code] = 'atb' END +SET [Description] = 'Zaiwa', [Definition] = NULL, [SortOrder] = 7858.00 WHERE [Code] = 'atb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zkr') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zkr', 'Zakhring', NULL, 785.30) END +VALUES ('zkr', 'Zakhring', NULL, 7859.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zakhring', [Definition] = NULL, [SortOrder] = 785.30 WHERE [Code] = 'zkr' END +SET [Description] = 'Zakhring', [Definition] = NULL, [SortOrder] = 7859.00 WHERE [Code] = 'zkr' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zsl') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zsl', 'Zambian Sign Language', NULL, 785.40) END +VALUES ('zsl', 'Zambian Sign Language', NULL, 7860.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zambian Sign Language', [Definition] = NULL, [SortOrder] = 785.40 WHERE [Code] = 'zsl' END +SET [Description] = 'Zambian Sign Language', [Definition] = NULL, [SortOrder] = 7860.00 WHERE [Code] = 'zsl' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zna') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zna', 'Zan Gula', NULL, 785.50) END +VALUES ('zna', 'Zan Gula', NULL, 7861.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zan Gula', [Definition] = NULL, [SortOrder] = 785.50 WHERE [Code] = 'zna' END +SET [Description] = 'Zan Gula', [Definition] = NULL, [SortOrder] = 7861.00 WHERE [Code] = 'zna' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zak') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zak', 'Zanaki', NULL, 785.60) END +VALUES ('zak', 'Zanaki', NULL, 7862.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zanaki', [Definition] = NULL, [SortOrder] = 785.60 WHERE [Code] = 'zak' END +SET [Description] = 'Zanaki', [Definition] = NULL, [SortOrder] = 7862.00 WHERE [Code] = 'zak' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zne') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zne', 'Zande (individual language)', NULL, 785.70) END +VALUES ('zne', 'Zande (individual language)', NULL, 7863.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zande (individual language)', [Definition] = NULL, [SortOrder] = 785.70 WHERE [Code] = 'zne' END +SET [Description] = 'Zande (individual language)', [Definition] = NULL, [SortOrder] = 7863.00 WHERE [Code] = 'zne' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zau') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zau', 'Zangskari', NULL, 785.80) END +VALUES ('zau', 'Zangskari', NULL, 7864.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zangskari', [Definition] = NULL, [SortOrder] = 785.80 WHERE [Code] = 'zau' END +SET [Description] = 'Zangskari', [Definition] = NULL, [SortOrder] = 7864.00 WHERE [Code] = 'zau' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zah') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zah', 'Zangwal', NULL, 785.90) END +VALUES ('zah', 'Zangwal', NULL, 7865.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zangwal', [Definition] = NULL, [SortOrder] = 785.90 WHERE [Code] = 'zah' END +SET [Description] = 'Zangwal', [Definition] = NULL, [SortOrder] = 7865.00 WHERE [Code] = 'zah' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpw', 'Zaniza Zapotec', NULL, 786.00) END +VALUES ('zpw', 'Zaniza Zapotec', NULL, 7866.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaniza Zapotec', [Definition] = NULL, [SortOrder] = 786.00 WHERE [Code] = 'zpw' END +SET [Description] = 'Zaniza Zapotec', [Definition] = NULL, [SortOrder] = 7866.00 WHERE [Code] = 'zpw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zro') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zro', 'Záparo', NULL, 786.10) END +VALUES ('zro', 'Záparo', NULL, 7867.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Záparo', [Definition] = NULL, [SortOrder] = 786.10 WHERE [Code] = 'zro' END +SET [Description] = 'Záparo', [Definition] = NULL, [SortOrder] = 7867.00 WHERE [Code] = 'zro' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zap') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zap', 'Zapotec', NULL, 786.20) END +VALUES ('zap', 'Zapotec', NULL, 7868.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zapotec', [Definition] = NULL, [SortOrder] = 786.20 WHERE [Code] = 'zap' END +SET [Description] = 'Zapotec', [Definition] = NULL, [SortOrder] = 7868.00 WHERE [Code] = 'zap' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaj', 'Zaramo', NULL, 786.30) END +VALUES ('zaj', 'Zaramo', NULL, 7869.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaramo', [Definition] = NULL, [SortOrder] = 786.30 WHERE [Code] = 'zaj' END +SET [Description] = 'Zaramo', [Definition] = NULL, [SortOrder] = 7869.00 WHERE [Code] = 'zaj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zaz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zaz', 'Zari', NULL, 786.40) END +VALUES ('zaz', 'Zari', NULL, 7870.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zari', [Definition] = NULL, [SortOrder] = 786.40 WHERE [Code] = 'zaz' END +SET [Description] = 'Zari', [Definition] = NULL, [SortOrder] = 7870.00 WHERE [Code] = 'zaz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dje') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dje', 'Zarma', NULL, 786.50) END +VALUES ('dje', 'Zarma', NULL, 7871.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zarma', [Definition] = NULL, [SortOrder] = 786.50 WHERE [Code] = 'dje' END +SET [Description] = 'Zarma', [Definition] = NULL, [SortOrder] = 7871.00 WHERE [Code] = 'dje' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zrp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zrp', 'Zarphatic', NULL, 786.60) END +VALUES ('zrp', 'Zarphatic', NULL, 7872.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zarphatic', [Definition] = NULL, [SortOrder] = 786.60 WHERE [Code] = 'zrp' END +SET [Description] = 'Zarphatic', [Definition] = NULL, [SortOrder] = 7872.00 WHERE [Code] = 'zrp' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zal') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zal', 'Zauzou', NULL, 786.70) END +VALUES ('zal', 'Zauzou', NULL, 7873.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zauzou', [Definition] = NULL, [SortOrder] = 786.70 WHERE [Code] = 'zal' END +SET [Description] = 'Zauzou', [Definition] = NULL, [SortOrder] = 7873.00 WHERE [Code] = 'zal' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zwa') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zwa', 'Zay', NULL, 786.80) END +VALUES ('zwa', 'Zay', NULL, 7874.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zay', [Definition] = NULL, [SortOrder] = 786.80 WHERE [Code] = 'zwa' END +SET [Description] = 'Zay', [Definition] = NULL, [SortOrder] = 7874.00 WHERE [Code] = 'zwa' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'kxk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('kxk', 'Zayein Karen', NULL, 786.90) END +VALUES ('kxk', 'Zayein Karen', NULL, 7875.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zayein Karen', [Definition] = NULL, [SortOrder] = 786.90 WHERE [Code] = 'kxk' END +SET [Description] = 'Zayein Karen', [Definition] = NULL, [SortOrder] = 7875.00 WHERE [Code] = 'kxk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zay') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zay', 'Zayse-Zergulla', NULL, 787.00) END +VALUES ('zay', 'Zayse-Zergulla', NULL, 7876.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zayse-Zergulla', [Definition] = NULL, [SortOrder] = 787.00 WHERE [Code] = 'zay' END +SET [Description] = 'Zayse-Zergulla', [Definition] = NULL, [SortOrder] = 7876.00 WHERE [Code] = 'zay' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zza') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zza', 'Zaza', NULL, 787.10) END +VALUES ('zza', 'Zaza', NULL, 7877.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zaza', [Definition] = NULL, [SortOrder] = 787.10 WHERE [Code] = 'zza' END +SET [Description] = 'Zaza', [Definition] = NULL, [SortOrder] = 7877.00 WHERE [Code] = 'zza' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jaj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jaj', 'Zazao', NULL, 787.20) END +VALUES ('jaj', 'Zazao', NULL, 7878.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zazao', [Definition] = NULL, [SortOrder] = 787.20 WHERE [Code] = 'jaj' END +SET [Description] = 'Zazao', [Definition] = NULL, [SortOrder] = 7878.00 WHERE [Code] = 'jaj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zua') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zua', 'Zeem', NULL, 787.30) END +VALUES ('zua', 'Zeem', NULL, 7879.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Zeem', [Definition] = NULL, [SortOrder] = 7879.00 WHERE [Code] = 'zua' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zem') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('zem', 'Zeem', NULL, 7880.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zeem', [Definition] = NULL, [SortOrder] = 787.30 WHERE [Code] = 'zua' END +SET [Description] = 'Zeem', [Definition] = NULL, [SortOrder] = 7880.00 WHERE [Code] = 'zem' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zea') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zea', 'Zeeuws', NULL, 787.40) END +VALUES ('zea', 'Zeeuws', NULL, 7881.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zeeuws', [Definition] = NULL, [SortOrder] = 787.40 WHERE [Code] = 'zea' END +SET [Description] = 'Zeeuws', [Definition] = NULL, [SortOrder] = 7881.00 WHERE [Code] = 'zea' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'dhm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('dhm', 'Zemba', NULL, 787.50) END +VALUES ('dhm', 'Zemba', NULL, 7882.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zemba', [Definition] = NULL, [SortOrder] = 787.50 WHERE [Code] = 'dhm' END +SET [Description] = 'Zemba', [Definition] = NULL, [SortOrder] = 7882.00 WHERE [Code] = 'dhm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'nzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('nzm', 'Zeme Naga', NULL, 787.60) END +VALUES ('nzm', 'Zeme Naga', NULL, 7883.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zeme Naga', [Definition] = NULL, [SortOrder] = 787.60 WHERE [Code] = 'nzm' END +SET [Description] = 'Zeme Naga', [Definition] = NULL, [SortOrder] = 7883.00 WHERE [Code] = 'nzm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xzm') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xzm', 'Zemgalian', NULL, 787.70) END +VALUES ('xzm', 'Zemgalian', NULL, 7884.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zemgalian', [Definition] = NULL, [SortOrder] = 787.70 WHERE [Code] = 'xzm' END +SET [Description] = 'Zemgalian', [Definition] = NULL, [SortOrder] = 7884.00 WHERE [Code] = 'xzm' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zeg') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zeg', 'Zenag', NULL, 787.80) END +VALUES ('zeg', 'Zenag', NULL, 7885.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zenag', [Definition] = NULL, [SortOrder] = 787.80 WHERE [Code] = 'zeg' END +SET [Description] = 'Zenag', [Definition] = NULL, [SortOrder] = 7885.00 WHERE [Code] = 'zeg' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zen') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zen', 'Zenaga', NULL, 787.90) END +VALUES ('zen', 'Zenaga', NULL, 7886.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zenaga', [Definition] = NULL, [SortOrder] = 787.90 WHERE [Code] = 'zen' END +SET [Description] = 'Zenaga', [Definition] = NULL, [SortOrder] = 7886.00 WHERE [Code] = 'zen' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czn', 'Zenzontepec Chatino', NULL, 788.00) END +VALUES ('czn', 'Zenzontepec Chatino', NULL, 7887.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zenzontepec Chatino', [Definition] = NULL, [SortOrder] = 788.00 WHERE [Code] = 'czn' END +SET [Description] = 'Zenzontepec Chatino', [Definition] = NULL, [SortOrder] = 7887.00 WHERE [Code] = 'czn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zrn') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zrn', 'Zerenkel', NULL, 788.10) END +VALUES ('zrn', 'Zerenkel', NULL, 7888.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zerenkel', [Definition] = NULL, [SortOrder] = 788.10 WHERE [Code] = 'zrn' END +SET [Description] = 'Zerenkel', [Definition] = NULL, [SortOrder] = 7888.00 WHERE [Code] = 'zrn' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhb', 'Zhaba', NULL, 788.20) END +VALUES ('zhb', 'Zhaba', NULL, 7889.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhaba', [Definition] = NULL, [SortOrder] = 788.20 WHERE [Code] = 'zhb' END +SET [Description] = 'Zhaba', [Definition] = NULL, [SortOrder] = 7889.00 WHERE [Code] = 'zhb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'xzh') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('xzh', 'Zhang-Zhung', NULL, 788.30) END +VALUES ('xzh', 'Zhang-Zhung', NULL, 7890.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhang-Zhung', [Definition] = NULL, [SortOrder] = 788.30 WHERE [Code] = 'xzh' END +SET [Description] = 'Zhang-Zhung', [Definition] = NULL, [SortOrder] = 7890.00 WHERE [Code] = 'xzh' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhi') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhi', 'Zhire', NULL, 788.40) END +VALUES ('zhi', 'Zhire', NULL, 7891.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhire', [Definition] = NULL, [SortOrder] = 788.40 WHERE [Code] = 'zhi' END +SET [Description] = 'Zhire', [Definition] = NULL, [SortOrder] = 7891.00 WHERE [Code] = 'zhi' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zhw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zhw', 'Zhoa', NULL, 788.50) END +VALUES ('zhw', 'Zhoa', NULL, 7892.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhoa', [Definition] = NULL, [SortOrder] = 788.50 WHERE [Code] = 'zhw' END +SET [Description] = 'Zhoa', [Definition] = NULL, [SortOrder] = 7892.00 WHERE [Code] = 'zhw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zha') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zha', 'Zhuang', NULL, 788.60) END +VALUES ('zha', 'Zhuang', NULL, 7893.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zhuang', [Definition] = NULL, [SortOrder] = 788.60 WHERE [Code] = 'zha' END +SET [Description] = 'Zhuang', [Definition] = NULL, [SortOrder] = 7893.00 WHERE [Code] = 'zha' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zia') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zia', 'Zia', NULL, 788.70) END +VALUES ('zia', 'Zia', NULL, 7894.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zia', [Definition] = NULL, [SortOrder] = 788.70 WHERE [Code] = 'zia' END +SET [Description] = 'Zia', [Definition] = NULL, [SortOrder] = 7894.00 WHERE [Code] = 'zia' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zil') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zil', 'Zialo', NULL, 788.80) END +VALUES ('zil', 'Zialo', NULL, 7895.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zialo', [Definition] = NULL, [SortOrder] = 788.80 WHERE [Code] = 'zil' END +SET [Description] = 'Zialo', [Definition] = NULL, [SortOrder] = 7895.00 WHERE [Code] = 'zil' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ziw') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ziw', 'Zigula', NULL, 788.90) END +VALUES ('ziw', 'Zigula', NULL, 7896.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zigula', [Definition] = NULL, [SortOrder] = 788.90 WHERE [Code] = 'ziw' END +SET [Description] = 'Zigula', [Definition] = NULL, [SortOrder] = 7896.00 WHERE [Code] = 'ziw' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zik') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zik', 'Zimakani', NULL, 789.00) END +VALUES ('zik', 'Zimakani', NULL, 7897.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zimakani', [Definition] = NULL, [SortOrder] = 789.00 WHERE [Code] = 'zik' END +SET [Description] = 'Zimakani', [Definition] = NULL, [SortOrder] = 7897.00 WHERE [Code] = 'zik' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zmb', 'Zimba', NULL, 789.10) END +VALUES ('zmb', 'Zimba', NULL, 7898.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zimba', [Definition] = NULL, [SortOrder] = 789.10 WHERE [Code] = 'zmb' END +SET [Description] = 'Zimba', [Definition] = NULL, [SortOrder] = 7898.00 WHERE [Code] = 'zmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zib') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zib', 'Zimbabwe Sign Language', NULL, 789.20) END +VALUES ('zib', 'Zimbabwe Sign Language', NULL, 7899.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zimbabwe Sign Language', [Definition] = NULL, [SortOrder] = 789.20 WHERE [Code] = 'zib' END +SET [Description] = 'Zimbabwe Sign Language', [Definition] = NULL, [SortOrder] = 7899.00 WHERE [Code] = 'zib' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zin') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zin', 'Zinza', NULL, 789.30) END +VALUES ('zin', 'Zinza', NULL, 7900.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zinza', [Definition] = NULL, [SortOrder] = 789.30 WHERE [Code] = 'zin' END +SET [Description] = 'Zinza', [Definition] = NULL, [SortOrder] = 7900.00 WHERE [Code] = 'zin' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'sih') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('sih', 'Zire', NULL, 789.40) END +VALUES ('sih', 'Zire', NULL, 7901.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zire', [Definition] = NULL, [SortOrder] = 789.40 WHERE [Code] = 'sih' END +SET [Description] = 'Zire', [Definition] = NULL, [SortOrder] = 7901.00 WHERE [Code] = 'sih' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'ziz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('ziz', 'Zizilivakan', NULL, 789.50) END +VALUES ('ziz', 'Zizilivakan', NULL, 7902.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zizilivakan', [Definition] = NULL, [SortOrder] = 789.50 WHERE [Code] = 'ziz' END +SET [Description] = 'Zizilivakan', [Definition] = NULL, [SortOrder] = 7902.00 WHERE [Code] = 'ziz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'pto') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('pto', 'Zo''é', NULL, 789.60) END +VALUES ('pto', 'Zo''é', NULL, 7903.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zo''é', [Definition] = NULL, [SortOrder] = 789.60 WHERE [Code] = 'pto' END +SET [Description] = 'Zo''é', [Definition] = NULL, [SortOrder] = 7903.00 WHERE [Code] = 'pto' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'yzk') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('yzk', 'Zokhuo', NULL, 789.70) END +VALUES ('yzk', 'Zokhuo', NULL, 7904.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zokhuo', [Definition] = NULL, [SortOrder] = 789.70 WHERE [Code] = 'yzk' END +SET [Description] = 'Zokhuo', [Definition] = NULL, [SortOrder] = 7904.00 WHERE [Code] = 'yzk' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zpq') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zpq', 'Zoogocho Zapotec', NULL, 789.80) END +VALUES ('zpq', 'Zoogocho Zapotec', NULL, 7905.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zoogocho Zapotec', [Definition] = NULL, [SortOrder] = 789.80 WHERE [Code] = 'zpq' END +SET [Description] = 'Zoogocho Zapotec', [Definition] = NULL, [SortOrder] = 7905.00 WHERE [Code] = 'zpq' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gbz') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gbz', 'Zoroastrian Dari', NULL, 789.90) END +VALUES ('gbz', 'Zoroastrian Dari', NULL, 7906.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zoroastrian Dari', [Definition] = NULL, [SortOrder] = 789.90 WHERE [Code] = 'gbz' END +SET [Description] = 'Zoroastrian Dari', [Definition] = NULL, [SortOrder] = 7906.00 WHERE [Code] = 'gbz' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'czt') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('czt', 'Zotung Chin', NULL, 790.00) END +VALUES ('czt', 'Zotung Chin', NULL, 7907.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zotung Chin', [Definition] = NULL, [SortOrder] = 790.00 WHERE [Code] = 'czt' END +SET [Description] = 'Zotung Chin', [Definition] = NULL, [SortOrder] = 7907.00 WHERE [Code] = 'czt' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zom') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zom', 'Zou', NULL, 790.10) END +VALUES ('zom', 'Zou', NULL, 7908.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zou', [Definition] = NULL, [SortOrder] = 790.10 WHERE [Code] = 'zom' END +SET [Description] = 'Zou', [Definition] = NULL, [SortOrder] = 7908.00 WHERE [Code] = 'zom' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) +VALUES ('zul', 'Zul', NULL, 7909.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] +SET [Description] = 'Zul', [Definition] = NULL, [SortOrder] = 7909.00 WHERE [Code] = 'zul' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zla') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zla', 'Zula', NULL, 790.20) END +VALUES ('zla', 'Zula', NULL, 7910.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zula', [Definition] = NULL, [SortOrder] = 790.20 WHERE [Code] = 'zla' END +SET [Description] = 'Zula', [Definition] = NULL, [SortOrder] = 7910.00 WHERE [Code] = 'zla' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'gnd') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('gnd', 'Zulgo-Gemzek', NULL, 790.30) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zulgo-Gemzek', [Definition] = NULL, [SortOrder] = 790.30 WHERE [Code] = 'gnd' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zul') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zul', 'Zulu', NULL, 790.40) END +VALUES ('gnd', 'Zulgo-Gemzek', NULL, 7911.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zulu', [Definition] = NULL, [SortOrder] = 790.40 WHERE [Code] = 'zul' END +SET [Description] = 'Zulgo-Gemzek', [Definition] = NULL, [SortOrder] = 7911.00 WHERE [Code] = 'gnd' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zuy') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zuy', 'Zumaya', NULL, 790.50) END +VALUES ('zuy', 'Zumaya', NULL, 7912.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zumaya', [Definition] = NULL, [SortOrder] = 790.50 WHERE [Code] = 'zuy' END +SET [Description] = 'Zumaya', [Definition] = NULL, [SortOrder] = 7912.00 WHERE [Code] = 'zuy' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'jmb') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('jmb', 'Zumbun', NULL, 790.60) END +VALUES ('jmb', 'Zumbun', NULL, 7913.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zumbun', [Definition] = NULL, [SortOrder] = 790.60 WHERE [Code] = 'jmb' END +SET [Description] = 'Zumbun', [Definition] = NULL, [SortOrder] = 7913.00 WHERE [Code] = 'jmb' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zun') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zun', 'Zuni', NULL, 790.70) END +VALUES ('zun', 'Zuni', NULL, 7914.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zuni', [Definition] = NULL, [SortOrder] = 790.70 WHERE [Code] = 'zun' END +SET [Description] = 'Zuni', [Definition] = NULL, [SortOrder] = 7914.00 WHERE [Code] = 'zun' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zzj') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zzj', 'Zuojiang Zhuang', NULL, 790.80) END +VALUES ('zzj', 'Zuojiang Zhuang', NULL, 7915.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zuojiang Zhuang', [Definition] = NULL, [SortOrder] = 790.80 WHERE [Code] = 'zzj' END +SET [Description] = 'Zuojiang Zhuang', [Definition] = NULL, [SortOrder] = 7915.00 WHERE [Code] = 'zzj' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefISO6393Language] WHERE [Code] = 'zyp') BEGIN INSERT INTO dbo.[RefISO6393Language]([Code], [Description], [Definition], [SortOrder]) -VALUES ('zyp', 'Zyphe Chin', NULL, 790.90) END +VALUES ('zyp', 'Zyphe Chin', NULL, 7916.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefISO6393Language] -SET [Description] = 'Zyphe Chin', [Definition] = NULL, [SortOrder] = 790.90 WHERE [Code] = 'zyp' END +SET [Description] = 'Zyphe Chin', [Definition] = NULL, [SortOrder] = 7916.00 WHERE [Code] = 'zyp' END END PRINT N'Populate RefISO6395LanguageFamily table' @@ -56313,6 +57881,18 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'IEPS VALUES ('IEPServiceProvider', 'Individualized education program service provider', 'The role/relationship type assigned to an organization, institution, or agency responsible for providing services to meet the requirements of the student''s Individualized Education Program (IEP).', 7.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] SET [Description] = 'Individualized education program service provider', [Definition] = 'The role/relationship type assigned to an organization, institution, or agency responsible for providing services to meet the requirements of the student''s Individualized Education Program (IEP).', [SortOrder] = 7.00 WHERE [Code] = 'IEPServiceProvider' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'Assessment') BEGIN INSERT INTO dbo.[RefK12ResponsibilityType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Assessment', 'Assessment', 'The role/relationship type assigned to an organization, institution, or agency responsible for assessing the student.', 8.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] +SET [Description] = 'Assessment', [Definition] = 'The role/relationship type assigned to an organization, institution, or agency responsible for assessing the student.', [SortOrder] = 8.00 WHERE [Code] = 'Assessment' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'Instruction') BEGIN INSERT INTO dbo.[RefK12ResponsibilityType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Instruction', 'Instruction', 'The role/relationship type assigned to an organization, institution, or agency responsible for providing instruction to the student.', 9.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] +SET [Description] = 'Instruction', [Definition] = 'The role/relationship type assigned to an organization, institution, or agency responsible for providing instruction to the student.', [SortOrder] = 9.00 WHERE [Code] = 'Instruction' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefK12ResponsibilityType] WHERE [Code] = 'Resident') BEGIN INSERT INTO dbo.[RefK12ResponsibilityType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Resident', 'Resident', 'The role/relationship type assigned to an organization, institution, or agency in which the student resides.', 10.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefK12ResponsibilityType] +SET [Description] = 'Resident', [Definition] = 'The role/relationship type assigned to an organization, institution, or agency in which the student resides.', [SortOrder] = 10.00 WHERE [Code] = 'Resident' END END PRINT N'Populate RefK12StaffClassification table' @@ -59745,24 +61325,6 @@ ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMethodOfServiceDelivery] SET [Description] = 'Group', [Definition] = 'The services will be provided in a group.', [SortOrder] = 4.00 WHERE [Code] = 'Group' END END -PRINT N'Populate RefMilitaryActiveStudentIndicator table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMilitaryActiveStudentIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryActiveStudentIndicator] WHERE [Code] = 'NotActive') BEGIN INSERT INTO dbo.[RefMilitaryActiveStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotActive', 'Not Active', 'Student is not active in the military.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryActiveStudentIndicator] -SET [Description] = 'Not Active', [Definition] = 'Student is not active in the military.', [SortOrder] = 1.00 WHERE [Code] = 'NotActive' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryActiveStudentIndicator] WHERE [Code] = 'Active') BEGIN INSERT INTO dbo.[RefMilitaryActiveStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Active', 'Active', 'Student is an Active member of the Active Duty Forces, National Guard, or Reserve Forces.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryActiveStudentIndicator] -SET [Description] = 'Active', [Definition] = 'Student is an Active member of the Active Duty Forces, National Guard, or Reserve Forces.', [SortOrder] = 3.00 WHERE [Code] = 'Active' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryActiveStudentIndicator] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefMilitaryActiveStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'It is unknown whether or not the Student is active in the military.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryActiveStudentIndicator] -SET [Description] = 'Unknown', [Definition] = 'It is unknown whether or not the Student is active in the military.', [SortOrder] = 5.00 WHERE [Code] = 'Unknown' END -END - PRINT N'Populate RefMilitaryBranch table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMilitaryBranch]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) @@ -59815,22 +61377,22 @@ ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryConnectedStudentIndicat SET [Description] = 'Unknown', [Definition] = 'It is unknown whether or not the student is military-connected.', [SortOrder] = 7.00 WHERE [Code] = 'Unknown' END END -PRINT N'Populate RefMilitaryVeteranStudentIndicator table' +PRINT N'Populate RefMilitaryVeteranStatusIndicator table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMilitaryVeteranStudentIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) +IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefMilitaryVeteranStatusIndicator]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStudentIndicator] WHERE [Code] = 'NotVeteran') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotVeteran', 'Not a Veteran', 'Student is not a veteran of the military.', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStudentIndicator] -SET [Description] = 'Not a Veteran', [Definition] = 'Student is not a veteran of the military.', [SortOrder] = 1.00 WHERE [Code] = 'NotVeteran' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStudentIndicator] WHERE [Code] = 'Veteran') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Veteran', 'Veteran', 'Student is a Veteran of the Active Duty Forces, National Guard, or Reserve Forces.', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStudentIndicator] -SET [Description] = 'Veteran', [Definition] = 'Student is a Veteran of the Active Duty Forces, National Guard, or Reserve Forces.', [SortOrder] = 3.00 WHERE [Code] = 'Veteran' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStudentIndicator] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStudentIndicator]([Code], [Description], [Definition], [SortOrder]) -VALUES ('Unknown', 'Unknown', 'It is unknown whether or not the Student is a veteran of the military.', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStudentIndicator] -SET [Description] = 'Unknown', [Definition] = 'It is unknown whether or not the Student is a veteran of the military.', [SortOrder] = 5.00 WHERE [Code] = 'Unknown' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStatusIndicator] WHERE [Code] = 'NotVeteran') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStatusIndicator]([Code], [Description], [Definition], [SortOrder]) +VALUES ('NotVeteran', 'Not a Veteran', 'Person is not a veteran of the military.', 1.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStatusIndicator] +SET [Description] = 'Not a Veteran', [Definition] = 'Person is not a veteran of the military.', [SortOrder] = 1.00 WHERE [Code] = 'NotVeteran' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStatusIndicator] WHERE [Code] = 'Veteran') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStatusIndicator]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Veteran', 'Veteran', 'Person is a Veteran of the Active Duty Forces, National Guard, or Reserve Forces.', 3.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStatusIndicator] +SET [Description] = 'Veteran', [Definition] = 'Person is a Veteran of the Active Duty Forces, National Guard, or Reserve Forces.', [SortOrder] = 3.00 WHERE [Code] = 'Veteran' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefMilitaryVeteranStatusIndicator] WHERE [Code] = 'Unknown') BEGIN INSERT INTO dbo.[RefMilitaryVeteranStatusIndicator]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Unknown', 'Unknown', 'It is unknown whether the Person is a veteran of the military.', 5.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefMilitaryVeteranStatusIndicator] +SET [Description] = 'Unknown', [Definition] = 'It is unknown whether the Person is a veteran of the military.', [SortOrder] = 5.00 WHERE [Code] = 'Unknown' END END PRINT N'Populate RefMultipleIntelligenceType table' @@ -59951,36 +61513,6 @@ ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeedDeterminationMethod] SET [Description] = 'Institutional', [Definition] = 'Institutional', [SortOrder] = 2.00 WHERE [Code] = 'Institutional' END END -PRINT N'Populate RefNeglectedProgramType table' - -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefNeglectedProgramType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'NeglectedPrograms') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NeglectedPrograms', 'Neglected programs', 'Neglected programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 1.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Neglected programs', [Definition] = 'Neglected programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 1.00 WHERE [Code] = 'NeglectedPrograms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'JuvenileDetention') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JuvenileDetention', 'Juvenile Detention', 'Juvenile Detention is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 2.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Juvenile Detention', [Definition] = 'Juvenile Detention is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 2.00 WHERE [Code] = 'JuvenileDetention' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'JuvenileCorrection') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('JuvenileCorrection', 'Juvenile Correction', 'Juvenile Correction is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 3.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Juvenile Correction', [Definition] = 'Juvenile Correction is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 3.00 WHERE [Code] = 'JuvenileCorrection' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'AdultCorrection') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AdultCorrection', 'Adult Correction', 'Adult Correction is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 4.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Adult Correction', [Definition] = 'Adult Correction is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 4.00 WHERE [Code] = 'AdultCorrection' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'AtRiskPrograms') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('AtRiskPrograms', 'At-risk programs', 'At-risk programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 5.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'At-risk programs', [Definition] = 'At-risk programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 5.00 WHERE [Code] = 'AtRiskPrograms' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefNeglectedProgramType] WHERE [Code] = 'OtherPrograms') BEGIN INSERT INTO dbo.[RefNeglectedProgramType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherPrograms', 'Other Programs', 'Other Programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', 6.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefNeglectedProgramType] -SET [Description] = 'Other Programs', [Definition] = 'Other Programs is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', [SortOrder] = 6.00 WHERE [Code] = 'OtherPrograms' END -END - PRINT N'Populate RefNonPromotionReason table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefNonPromotionReason]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) @@ -62297,6 +63829,14 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '77000') BEGIN VALUES ('77000', 'Title III LIEP', 'Title III language instruction educational program (LIEP)', 89.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] SET [Description] = 'Title III LIEP', [Definition] = 'Title III language instruction educational program (LIEP)', [SortOrder] = 89.00 WHERE [Code] = '77000' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75019') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75019', 'Neglected or delinquent', 'Neglected or delinquent is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA)', 90.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] +SET [Description] = 'Neglected or delinquent', [Definition] = 'Neglected or delinquent is the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA)', [SortOrder] = 90.00 WHERE [Code] = '75019' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefProgramType] WHERE [Code] = '75020') BEGIN INSERT INTO dbo.[RefProgramType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('75020', 'TANF', 'Temporary Assistance for Needy Families', 91.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefProgramType] +SET [Description] = 'TANF', [Definition] = 'Temporary Assistance for Needy Families', [SortOrder] = 91.00 WHERE [Code] = '75020' END END PRINT N'Populate RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus table' @@ -62973,6 +64513,10 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'ChiefStateSchoolOffic VALUES ('ChiefStateSchoolOfficer', 'Chief State School Officer', 'A public official who heads the department of elementary and secondary education in either a state, the District of Columbia, the Department of Defense Education Activity, the Bureau of Indian Education or one of the U.S. extra-state jurisdictions.', 14.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] SET [Description] = 'Chief State School Officer', [Definition] = 'A public official who heads the department of elementary and secondary education in either a state, the District of Columbia, the Department of Defense Education Activity, the Bureau of Indian Education or one of the U.S. extra-state jurisdictions.', [SortOrder] = 14.00 WHERE [Code] = 'ChiefStateSchoolOfficer' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefRole] WHERE [Code] = 'SchoolBoardMember') BEGIN INSERT INTO dbo.[RefRole]([Code], [Description], [Definition], [SortOrder]) +VALUES ('SchoolBoardMember', 'School Board Member', 'A person who serves as a member of the organization''s school board.', 15.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRole] +SET [Description] = 'School Board Member', [Definition] = 'A person who serves as a member of the organization''s school board.', [SortOrder] = 15.00 WHERE [Code] = 'SchoolBoardMember' END END PRINT N'Populate RefSCEDCourseLevel table' @@ -63883,14 +65427,6 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = VALUES ('PartBEligibleContinuingPartC', 'Part B eligible, continuing in Part C.', 'Part B eligible, continuing in Part C is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 13.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] SET [Description] = 'Part B eligible, continuing in Part C.', [Definition] = 'Part B eligible, continuing in Part C is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 13.00 WHERE [Code] = 'PartBEligibleContinuingPartC' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'NotPartBEligibleExitingPartCWithReferrrals') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotPartBEligibleExitingPartCWithReferrrals', 'Not eligible for Part B, exit with referrals to other programs.', 'Not eligible for Part B, exit with referrals to other programs is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 15.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Not eligible for Part B, exit with referrals to other programs.', [Definition] = 'Not eligible for Part B, exit with referrals to other programs is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 15.00 WHERE [Code] = 'NotPartBEligibleExitingPartCWithReferrrals' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'NotPartBEligibleExitingPartCWithoutReferrrals') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) -VALUES ('NotPartBEligibleExitingPartCWithoutReferrrals', 'Not eligible for Part B, exit with no referrals.', 'Not eligible for Part B, exit with no referrals is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 17.00) END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] -SET [Description] = 'Not eligible for Part B, exit with no referrals.', [Definition] = 'Not eligible for Part B, exit with no referrals is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 17.00 WHERE [Code] = 'NotPartBEligibleExitingPartCWithoutReferrrals' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'PartBEligibilityNotDeterminedExitingPartC') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) VALUES ('PartBEligibilityNotDeterminedExitingPartC', 'Part B eligibility not determined.', 'Part B eligibility not determined is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 19.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] @@ -63911,6 +65447,14 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = VALUES ('GraduatedAlternateDiploma', 'Graduated with an alternate diploma', 'Graduated with an alternate diploma is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 26.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] SET [Description] = 'Graduated with an alternate diploma', [Definition] = 'Graduated with an alternate diploma is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 26.00 WHERE [Code] = 'GraduatedAlternateDiploma' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'NotPartBEligibleExitingPartCWithoutReferrals') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) +VALUES ('NotPartBEligibleExitingPartCWithoutReferrals', 'Not eligible for Part B, exit with no referrals.', 'Not eligible for Part B, exit with no referrals is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 27.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] +SET [Description] = 'Not eligible for Part B, exit with no referrals.', [Definition] = 'Not eligible for Part B, exit with no referrals is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 27.00 WHERE [Code] = 'NotPartBEligibleExitingPartCWithoutReferrals' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefSpecialEducationExitReason] WHERE [Code] = 'NotPartBEligibleExitingPartCWithReferrals') BEGIN INSERT INTO dbo.[RefSpecialEducationExitReason]([Code], [Description], [Definition], [SortOrder]) +VALUES ('NotPartBEligibleExitingPartCWithReferrals', 'Not eligible for Part B, exit with referrals to other programs.', 'Not eligible for Part B, exit with referrals to other programs is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', 28.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefSpecialEducationExitReason] +SET [Description] = 'Not eligible for Part B, exit with referrals to other programs.', [Definition] = 'Not eligible for Part B, exit with referrals to other programs is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period.', [SortOrder] = 28.00 WHERE [Code] = 'NotPartBEligibleExitingPartCWithReferrals' END END PRINT N'Populate RefSpecialEducationStaffCategory table' @@ -65019,6 +66563,10 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = ' VALUES ('73055', 'Work-based Learning', 'Sustained interactions with industry or community professionals in real workplace settings, to the extent practicable, or simulated environments at an educational institution that foster in-depth, firsthand engagement with the tasks required in a given career field, that are aligned to curriculum and instruction.', 77.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] SET [Description] = 'Work-based Learning', [Definition] = 'Sustained interactions with industry or community professionals in real workplace settings, to the extent practicable, or simulated environments at an educational institution that foster in-depth, firsthand engagement with the tasks required in a given career field, that are aligned to curriculum and instruction.', [SortOrder] = 77.00 WHERE [Code] = '73055' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefStudentSupportServiceType] WHERE [Code] = '73070') BEGIN INSERT INTO dbo.[RefStudentSupportServiceType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('73070', 'Extended school year services', 'Special education and related services, provided to a child with a disability, beyond the normal school year of the public agency, in accordance with the child''s Individualized Education Program (IEP), at no cost to the parents of the child, and meet the standards of the state education agency.', 78.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefStudentSupportServiceType] +SET [Description] = 'Extended school year services', [Definition] = 'Special education and related services, provided to a child with a disability, beyond the normal school year of the public agency, in accordance with the child''s Individualized Education Program (IEP), at no cost to the parents of the child, and meet the standards of the state education agency.', [SortOrder] = 78.00 WHERE [Code] = '73070' END END PRINT N'Populate RefSupervisedClinicalExperience table' @@ -68384,9 +69932,9 @@ VALUES ('OtherSharpObject', 'Other sharp object', 'The weapon involved was anoth ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] SET [Description] = 'Other sharp object', [Definition] = 'The weapon involved was another type of sharp object, (e.g., razor blade, ice pick, dirk, Chinese star, other pointed instrument [used as a weapon]).', [SortOrder] = 18.00 WHERE [Code] = 'OtherSharpObject' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'OtherObject') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) -VALUES ('OtherObject', 'Other object', 'The weapon involved was another known object (e.g., chain, nunchakus, brass knuckle, billy club, electrical weapon or device [stun gun], BB or pellet gun).', 20.00) END +VALUES ('OtherObject', 'Other object', 'The weapon involved was another known object.', 20.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] -SET [Description] = 'Other object', [Definition] = 'The weapon involved was another known object (e.g., chain, nunchakus, brass knuckle, billy club, electrical weapon or device [stun gun], BB or pellet gun).', [SortOrder] = 20.00 WHERE [Code] = 'OtherObject' END +SET [Description] = 'Other object', [Definition] = 'The weapon involved was another known object.', [SortOrder] = 20.00 WHERE [Code] = 'OtherObject' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'Substance') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) VALUES ('Substance', 'Substance used as weapon', 'The weapon involved was a substance (e.g., mace, tear gas) that was used as a weapon.', 22.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] @@ -68403,6 +69951,18 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'Unknown') BEGIN VALUES ('Unknown', 'Unknown weapon', 'A weapon was used in the incident, but the type is unknown.', 28.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] SET [Description] = 'Unknown weapon', [Definition] = 'A weapon was used in the incident, but the type is unknown.', [SortOrder] = 28.00 WHERE [Code] = 'Unknown' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'BBGun') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('BBGun', 'BB Gun', 'The weapon involved was a BB gun.', 29.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] +SET [Description] = 'BB Gun', [Definition] = 'The weapon involved was a BB gun.', [SortOrder] = 29.00 WHERE [Code] = 'BBGun' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'DestructiveDevice') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('DestructiveDevice', 'Destructive Device', 'Any explosive, incendiary (e.g., bomb, grenade), or poison gas; any weapon which may expel a projectile by explosive or another propellant with the barrel bore is more than one-half inch in diameter.', 30.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] +SET [Description] = 'Destructive Device', [Definition] = 'Any explosive, incendiary (e.g., bomb, grenade), or poison gas; any weapon which may expel a projectile by explosive or another propellant with the barrel bore is more than one-half inch in diameter.', [SortOrder] = 30.00 WHERE [Code] = 'DestructiveDevice' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWeaponType] WHERE [Code] = 'IEPServiceProvider') BEGIN INSERT INTO dbo.[RefWeaponType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('IEPServiceProvider', 'Individualized education program service provider', 'The role/relationship type assigned to an organization, institution, or agency responsible for providing services to meet the requirements of the student''s Individualized Education Program (IEP).', 31.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWeaponType] +SET [Description] = 'Individualized education program service provider', [Definition] = 'The role/relationship type assigned to an organization, institution, or agency responsible for providing services to meet the requirements of the student''s Individualized Education Program (IEP).', [SortOrder] = 31.00 WHERE [Code] = 'IEPServiceProvider' END END PRINT N'Populate RefWfProgramParticipation table' @@ -68489,6 +70049,10 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '99' VALUES ('99', 'No identified services', 'No identified services are related to the person''s workforce and employment development program participation. ', 28.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] SET [Description] = 'No identified services', [Definition] = 'No identified services are related to the person''s workforce and employment development program participation. ', [SortOrder] = 28.00 WHERE [Code] = '99' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWfProgramParticipation] WHERE [Code] = '20') BEGIN INSERT INTO dbo.[RefWfProgramParticipation]([Code], [Description], [Definition], [SortOrder]) +VALUES ('20', 'Reentry workforce and education program', 'The person''s workforce and employment development program participation is with Juvenile and/or Adult courses/programs/activities delivered to enhance life skills, academic and/or employability success to reduce recidivism. Including persons who may have had a touch point with the criminal justice system or have been a resident of a county (parish), state, federal or private confinement, rehabilitation, and/or correctional facility. This may also include but not be limited to persons on any county (parish), state, or federally mandated supervision.', 29.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWfProgramParticipation] +SET [Description] = 'Reentry workforce and education program', [Definition] = 'The person''s workforce and employment development program participation is with Juvenile and/or Adult courses/programs/activities delivered to enhance life skills, academic and/or employability success to reduce recidivism. Including persons who may have had a touch point with the criminal justice system or have been a resident of a county (parish), state, federal or private confinement, rehabilitation, and/or correctional facility. This may also include but not be limited to persons on any county (parish), state, or federally mandated supervision.', [SortOrder] = 29.00 WHERE [Code] = '20' END END PRINT N'Populate RefWIOABarrierstoEmployment table' @@ -68500,9 +70064,9 @@ VALUES ('805', 'Cultural barriers', 'The participant has a perception of him-or ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] SET [Description] = 'Cultural barriers', [Definition] = 'The participant has a perception of him-or herself as possessing attitudes, beliefs, customs, or practices that influence a way of thinking, acting, or working that may serve as a hindrance to employment.', [SortOrder] = 1.00 WHERE [Code] = '805' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '807') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('807', 'Displaced homemaker', 'The participant has been providing unpaid services to family members in the home and (a) has been dependent on the income of another family member but is no longer supported by that income; (b) is the dependent spouse of a member of the armed forces on active duty whose family income is significantly reduced because of (i) a deployment or a call or order to active duty pursuant to a provision of law, (ii) a permanent change of station, or (iii) the service-connected death or disability of the member; and (c) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', 2.00) END +VALUES ('807', 'Displaced Caregiver', 'The participant has been providing unpaid services to family members in the home and (a) has been dependent on the income of another family member but is no longer supported by that income; (b) is the dependent spouse of a member of the armed forces on active duty whose family income is significantly reduced because of (i) a deployment or a call or order to active duty pursuant to a provision of law, (ii) a permanent change of station, or (iii) the service-connected death or disability of the member; and (c) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', 2.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Displaced homemaker', [Definition] = 'The participant has been providing unpaid services to family members in the home and (a) has been dependent on the income of another family member but is no longer supported by that income; (b) is the dependent spouse of a member of the armed forces on active duty whose family income is significantly reduced because of (i) a deployment or a call or order to active duty pursuant to a provision of law, (ii) a permanent change of station, or (iii) the service-connected death or disability of the member; and (c) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', [SortOrder] = 2.00 WHERE [Code] = '807' END +SET [Description] = 'Displaced Caregiver', [Definition] = 'The participant has been providing unpaid services to family members in the home and (a) has been dependent on the income of another family member but is no longer supported by that income; (b) is the dependent spouse of a member of the armed forces on active duty whose family income is significantly reduced because of (i) a deployment or a call or order to active duty pursuant to a provision of law, (ii) a permanent change of station, or (iii) the service-connected death or disability of the member; and (c) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', [SortOrder] = 2.00 WHERE [Code] = '807' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '803') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) VALUES ('803', 'English language learner', 'The participant has limited ability in speaking, reading, writing, or understanding the English language that may serve as a hindrance to employment.', 3.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] @@ -68543,10 +70107,14 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '8 VALUES ('806', 'Single parent', 'The participant is a single, separated, divorced, or widowed individual who has primary responsibility for one or more dependent children under age 18 (including single pregnant women).', 12.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] SET [Description] = 'Single parent', [Definition] = 'The participant is a single, separated, divorced, or widowed individual who has primary responsibility for one or more dependent children under age 18 (including single pregnant women).', [SortOrder] = 12.00 WHERE [Code] = '806' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '704') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) -VALUES ('704', 'Youth in foster care or who has aged out of system', 'The participant is a person who is currently in foster care or has aged out of the foster care system.', 13.00) END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '798') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) +VALUES ('798', 'Current Foster Care Youth', 'The participant is a person who is currently in foster care.', 14.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] +SET [Description] = 'Current Foster Care Youth', [Definition] = 'The participant is a person who is currently in foster care.', [SortOrder] = 14.00 WHERE [Code] = '798' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWIOABarrierstoEmployment] WHERE [Code] = '799') BEGIN INSERT INTO dbo.[RefWIOABarrierstoEmployment]([Code], [Description], [Definition], [SortOrder]) +VALUES ('799', 'Former Foster Care Youth', 'The participant is a person who has aged out of the foster care system or who has attained 16 years of age and left foster care for kinship, guardianship or adoption, or an individual who were formerly in foster care, but returned to their families before turning 18.', 15.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWIOABarrierstoEmployment] -SET [Description] = 'Youth in foster care or who has aged out of system', [Definition] = 'The participant is a person who is currently in foster care or has aged out of the foster care system.', [SortOrder] = 13.00 WHERE [Code] = '704' END +SET [Description] = 'Former Foster Care Youth', [Definition] = 'The participant is a person who has aged out of the foster care system or who has attained 16 years of age and left foster care for kinship, guardianship or adoption, or an individual who were formerly in foster care, but returned to their families before turning 18.', [SortOrder] = 15.00 WHERE [Code] = '799' END END PRINT N'Populate RefWorkbasedLearningOpportunityType table' @@ -68597,6 +70165,18 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Co VALUES ('UnpaidInternship', 'Unpaid internship', 'Unpaid internship is the type of work-based learning opportunity the student participated in.', 30.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] SET [Description] = 'Unpaid internship', [Definition] = 'Unpaid internship is the type of work-based learning opportunity the student participated in.', [SortOrder] = 30.00 WHERE [Code] = 'UnpaidInternship' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'Entrepreneurship') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('Entrepreneurship', 'Entrepreneurship', 'Entrepreneurship is the type of work-based learning opportunity the student participated in.', 31.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] +SET [Description] = 'Entrepreneurship', [Definition] = 'Entrepreneurship is the type of work-based learning opportunity the student participated in.', [SortOrder] = 31.00 WHERE [Code] = 'Entrepreneurship' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'SchoolBasedEnterprise') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('SchoolBasedEnterprise', 'School-Based Enterprise', 'School-Based Enterprise is the type of work-based learning opportunity the student participated in.', 32.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] +SET [Description] = 'School-Based Enterprise', [Definition] = 'School-Based Enterprise is the type of work-based learning opportunity the student participated in.', [SortOrder] = 32.00 WHERE [Code] = 'SchoolBasedEnterprise' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'SimulatedWorksite') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) +VALUES ('SimulatedWorksite', 'Simulated Worksite', 'Simulated Worksite is the type of work-based learning opportunity the student participated in.', 33.00) END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] +SET [Description] = 'Simulated Worksite', [Definition] = 'Simulated Worksite is the type of work-based learning opportunity the student participated in.', [SortOrder] = 33.00 WHERE [Code] = 'SimulatedWorksite' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefWorkbasedLearningOpportunityType] WHERE [Code] = 'Other') BEGIN INSERT INTO dbo.[RefWorkbasedLearningOpportunityType]([Code], [Description], [Definition], [SortOrder]) VALUES ('Other', 'Other', 'The type of work-based learning opportunity the student participated in is in a category not yet defined in CEDS.', 99.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefWorkbasedLearningOpportunityType] @@ -68604,6 +70184,7 @@ SET [Description] = 'Other', [Definition] = 'The type of work-based learning opp END GO + DECLARE @updateExisting bit = 1 PRINT N'Populate RefOrganizationIdentifierType table' @@ -68739,10 +70320,14 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '001057') BE VALUES ('001057', 'Assessment Registration Grade Level to Be Assessed') END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevelType] SET [Description] = 'Assessment Registration Grade Level to Be Assessed' WHERE [Code] = '001057' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '001210') BEGIN INSERT INTO dbo.[RefGradeLevelType]([Code], [Description]) -VALUES ('001210', 'Exit Grade Level') END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '002082') BEGIN INSERT INTO dbo.[RefGradeLevelType]([Code], [Description]) +VALUES ('002082', 'Low Grade Level') END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevelType] -SET [Description] = 'Exit Grade Level' WHERE [Code] = '001210' END +SET [Description] = 'Low Grade Level' WHERE [Code] = '002082' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevelType] WHERE [Code] = '002083') BEGIN INSERT INTO dbo.[RefGradeLevelType]([Code], [Description]) +VALUES ('002083', 'High Grade Level') END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevelType] +SET [Description] = 'High Grade Level' WHERE [Code] = '002083' END END @@ -69009,68 +70594,64 @@ IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'Diff VALUES ('DifferentialShiftPay', 'Differential Shift Pay') END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] SET [Description] = 'Differential Shift Pay' WHERE [Code] = 'DifferentialShiftPay' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefOrganizationIndicator] WHERE [Code] = 'Interdisciplinary') BEGIN INSERT INTO dbo.[RefOrganizationIndicator]([Code], [Description]) -VALUES ('Interdisciplinary', 'Interdisciplinary') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefOrganizationIndicator] -SET [Description] = 'Interdisciplinary' WHERE [Code] = 'Interdisciplinary' END END PRINT N'Populate RefEntityType table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefEntityType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12000') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12000', 'Early Learning', 10.00) END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13000') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13000', 'Early Learning', 10.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Early Learning', [SortOrder] = 10.00 WHERE [Code] = '12000' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12001') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12001', 'K12', 20.00) END +SET [Description] = 'Early Learning', [SortOrder] = 10.00 WHERE [Code] = '13000' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13001') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13001', 'K12', 20.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'K12', [SortOrder] = 20.00 WHERE [Code] = '12001' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12002') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12002', 'Postsecondary', 30.00) END +SET [Description] = 'K12', [SortOrder] = 20.00 WHERE [Code] = '13001' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13002') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13002', 'Postsecondary', 30.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Postsecondary', [SortOrder] = 30.00 WHERE [Code] = '12002' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12112') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12112', 'Career and Technical', 40.00) END +SET [Description] = 'Postsecondary', [SortOrder] = 30.00 WHERE [Code] = '13002' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13112') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13112', 'Career and Technical', 40.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Career and Technical', [SortOrder] = 40.00 WHERE [Code] = '12112' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12113') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12113', 'Adult Education', 50.00) END +SET [Description] = 'Career and Technical', [SortOrder] = 40.00 WHERE [Code] = '13112' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13113') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13113', 'Adult Education', 50.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Adult Education', [SortOrder] = 50.00 WHERE [Code] = '12113' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12114') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12114', 'Workforce', 60.00) END +SET [Description] = 'Adult Education', [SortOrder] = 50.00 WHERE [Code] = '13113' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13114') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13114', 'Workforce', 60.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Workforce', [SortOrder] = 60.00 WHERE [Code] = '12114' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12089') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12089', 'Assessments', 70.00) END +SET [Description] = 'Workforce', [SortOrder] = 60.00 WHERE [Code] = '13114' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13089') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13089', 'Assessments', 70.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Assessments', [SortOrder] = 70.00 WHERE [Code] = '12089' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12482') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12482', 'Credentials', 80.00) END +SET [Description] = 'Assessments', [SortOrder] = 70.00 WHERE [Code] = '13089' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13482') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13482', 'Credentials', 80.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Credentials', [SortOrder] = 80.00 WHERE [Code] = '12482' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12104') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12104', 'Competencies', 90.00) END +SET [Description] = 'Credentials', [SortOrder] = 80.00 WHERE [Code] = '13482' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13104') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13104', 'Competencies', 90.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Competencies', [SortOrder] = 90.00 WHERE [Code] = '12104' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12123') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12123', 'Learning Resources', 100.00) END +SET [Description] = 'Competencies', [SortOrder] = 90.00 WHERE [Code] = '13104' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13123') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13123', 'Learning Resources', 100.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Learning Resources', [SortOrder] = 100.00 WHERE [Code] = '12123' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12571') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12571', 'Facilities', 110.00) END +SET [Description] = 'Learning Resources', [SortOrder] = 100.00 WHERE [Code] = '13123' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13571') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13571', 'Facilities', 110.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Facilities', [SortOrder] = 110.00 WHERE [Code] = '12571' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12566') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12566', 'Implementation Variables', 120.00) END +SET [Description] = 'Facilities', [SortOrder] = 110.00 WHERE [Code] = '13571' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13566') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13566', 'Implementation Variables', 120.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Implementation Variables', [SortOrder] = 120.00 WHERE [Code] = '12566' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '12440') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) -VALUES ('12440', 'Authentication and Authorization', 130.00) END +SET [Description] = 'Implementation Variables', [SortOrder] = 120.00 WHERE [Code] = '13566' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = '13440') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) +VALUES ('13440', 'Authentication and Authorization', 130.00) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] -SET [Description] = 'Authentication and Authorization', [SortOrder] = 130.00 WHERE [Code] = '12440' END +SET [Description] = 'Authentication and Authorization', [SortOrder] = 130.00 WHERE [Code] = '13440' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefEntityType] WHERE [Code] = 'Course') BEGIN INSERT INTO dbo.[RefEntityType]([Code], [Description], [SortOrder]) VALUES ('Course', 'Course Table', 1) END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEntityType] @@ -69092,7 +70673,6 @@ GO DECLARE @updateExisting bit = 1 - PRINT N'Populate RefOrganizationIdentificationSystem table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefOrganizationIdentificationSystem]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN @@ -69542,6 +71122,13 @@ END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] SET [Definition] = 'The related Child Identifier uses the child''s Program-assigned number.', [SortOrder] = 10.00 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'Program' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'BirthCertificate') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) +SELECT 'BirthCertificate', 'Birth certificate number', 'The related Child Identifier uses the child''s birth certificate number.', 11.00, [RefPersonIdentifierTypeId] +FROM dbo.RefPersonIdentifierType WHERE Description = 'Child Identification System' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] +SET [Definition] = 'The related Child Identifier uses the child''s birth certificate number.', [SortOrder] = 11.00 +FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Child Identification System' AND r.[Code] = 'BirthCertificate' END END PRINT N'Populate RefPersonIdentificationSystem table' @@ -69645,6 +71232,13 @@ END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] SET [Definition] = 'The related Staff Identifier uses the staff member''s Canadian Social Insurance Number.', [SortOrder] = 14.00 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'CanadianSIN' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'BirthCertificate') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) +SELECT 'BirthCertificate', 'Birth certificate number', 'The related Staff Identifier uses the staff''s birth certificate number.', 15.00, [RefPersonIdentifierTypeId] +FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] +SET [Definition] = 'The related Staff Identifier uses the staff''s birth certificate number.', [SortOrder] = 15.00 +FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'BirthCertificate' END IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Staff Member Identification System' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) SELECT 'Other', 'Other', 'The related Staff Identifier is from an identification system not yet defined in CEDS.', 15.00, [RefPersonIdentifierTypeId] FROM dbo.RefPersonIdentifierType WHERE Description = 'Staff Member Identification System' @@ -69720,6 +71314,13 @@ END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] SET [Definition] = 'The related Student Identifier uses the student''s State migrant number.', [SortOrder] = 9.00 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'StateMigrant' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'BirthCertificate') BEGIN INSERT INTO dbo.[RefPersonIdentificationSystem]([Code], [Description], [Definition], [SortOrder], [RefPersonIdentifierTypeId]) +SELECT 'BirthCertificate', 'Birth certificate number', 'The related Student Identifier uses the student''s birth certificate number.', 10.00, [RefPersonIdentifierTypeId] +FROM dbo.RefPersonIdentifierType WHERE Description = 'Student Identification System' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefPersonIdentificationSystem] +SET [Definition] = 'The related Student Identifier uses the student''s birth certificate number.', [SortOrder] = 10.00 +FROM dbo.[RefPersonIdentificationSystem] r INNER JOIN dbo.RefPersonIdentifierType t ON t.RefPersonIdentifierTypeId = r.RefPersonIdentifierTypeId WHERE t.[Description] = 'Student Identification System' AND r.[Code] = 'BirthCertificate' END END @@ -70405,63 +72006,6 @@ END PRINT N'Populate RefGradeLevel table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGradeLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN - -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = 'ABE') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = 'AE', [Definition] = 'Adult Education is a grade offered by the education institution.', [Description] = 'Adult Education' WHERE [Code] = 'ABE' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = 'ASE') BEGIN -UPDATE dbo.[RefGradeLevel] SET [RecordEndDateTime] = '2023-02-28' WHERE [Code] = 'ASE' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = 'AdultESL') BEGIN -UPDATE dbo.[RefGradeLevel] SET [RecordEndDateTime] = '2023-02-28' WHERE [Code] = 'AdultESL' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00788') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = 'PR', [Description] = 'Preschool' WHERE [Code] = '00788' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00805') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = 'KG', [Description] = 'Kindergarten' WHERE [Code] = '00805' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00790') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '01', [Description] = 'First grade' WHERE [Code] = '00790' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00791') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '02', [Description] = 'Second grade' WHERE [Code] = '00791' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00792') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '03', [Description] = 'Third grade' WHERE [Code] = '00792' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00793') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '04', [Description] = 'Fourth grade' WHERE [Code] = '00793' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00794') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '05', [Description] = 'Fifth grade' WHERE [Code] = '00794' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00795') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '06', [Description] = 'Sixth grade' WHERE [Code] = '00795' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00796') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '07', [Description] = 'Seventh grade' WHERE [Code] = '00796' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00798') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '08', [Description] = 'Eighth grade' WHERE [Code] = '00798' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00799') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '09', [Description] = 'Ninth grade' WHERE [Code] = '00799' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00800') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '10', [Description] = 'Tenth grade' WHERE [Code] = '00800' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '00801') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '11', [Description] = 'Eleventh grade' WHERE [Code] = '00801' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '01809') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = '12', [Description] = 'Twelfth grade' WHERE [Code] = '01809' -END -IF EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] WHERE [Code] = '09999') BEGIN -UPDATE dbo.[RefGradeLevel] SET [Code] = 'Other', [Description] = 'Other' WHERE [Code] = '09999' -END - - IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Entry Grade Level' AND r.[Code] = 'IT') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'IT', 'Infant/toddler', NULL, 1.00, [RefGradeLevelTypeId] FROM dbo.RefGradeLevelType WHERE Description = 'Entry Grade Level' @@ -71581,163 +73125,324 @@ SET [Definition] = 'The extent of formal instruction a person has received is in FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Assessment Registration Grade Level to Be Assessed' AND r.[Code] = 'Other' END END + +PRINT N'Populate RefGradeLevel table' +IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGradeLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) +BEGIN +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'IT') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'IT', 'Infant/toddler', NULL, 1.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 1.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'IT' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'PR') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'PR', 'Preschool', NULL, 2.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 2.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'PR' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'PK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'PK', 'Prekindergarten', NULL, 3.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 3.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'PK' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'TK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'TK', 'Transitional Kindergarten', NULL, 4.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 4.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'TK' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'KG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'KG', 'Kindergarten', NULL, 5.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 5.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'KG' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '01', 'First grade', NULL, 6.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 6.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '01' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '02', 'Second grade', NULL, 7.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 7.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '02' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '03', 'Third grade', NULL, 8.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 8.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '03' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '04', 'Fourth grade', NULL, 9.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 9.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '04' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '05', 'Fifth grade', NULL, 10.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 10.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '05' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '06', 'Sixth grade', NULL, 11.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 11.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '06' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '07', 'Seventh grade', NULL, 12.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 12.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '07' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '08', 'Eighth grade', NULL, 13.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 13.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '08' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '09', 'Ninth grade', NULL, 14.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 14.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '09' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '10') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '10', 'Tenth grade', NULL, 15.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 15.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '10' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '11') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '11', 'Eleventh grade', NULL, 16.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 16.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '11' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '12') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '12', 'Twelfth grade', NULL, 17.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 17.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '12' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '13') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT '13', 'Grade 13', NULL, 18.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 18.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = '13' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'PS') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'PS', 'Postsecondary', NULL, 19.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 19.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'PS' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'UG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'UG', 'Ungraded', NULL, 21.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 21.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'UG' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'AE') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'AE', 'Adult Education', NULL, 22.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 22.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'AE' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +SELECT 'Other', 'Other', NULL, 22.00, [RefGradeLevelTypeId] +FROM dbo.RefGradeLevelType WHERE Description = 'Low Grade Level' +END +ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] +SET [Definition] = NULL, [SortOrder] = 22.00 +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Low Grade Level' AND r.[Code] = 'Other' END +END + + PRINT N'Populate RefGradeLevel table' IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefGradeLevel]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) BEGIN -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'IT') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'IT') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'IT', 'Infant/toddler', NULL, 1.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 1.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'IT' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PR') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'IT' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'PR') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'PR', 'Preschool', NULL, 2.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 2.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PR' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'PR' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'PK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'PK', 'Prekindergarten', NULL, 3.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 3.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'TK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'PK' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'TK') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'TK', 'Transitional Kindergarten', NULL, 4.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 4.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'TK' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'KG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'TK' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'KG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'KG', 'Kindergarten', NULL, 5.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 5.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'KG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'KG' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '01') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '01', 'First grade', NULL, 6.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 6.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '01' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '01' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '02') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '02', 'Second grade', NULL, 7.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 7.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '02' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '02' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '03') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '03', 'Third grade', NULL, 8.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 8.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '03' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '03' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '04') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '04', 'Fourth grade', NULL, 9.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 9.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '04' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '04' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '05') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '05', 'Fifth grade', NULL, 10.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 10.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '05' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '05' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '06') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '06', 'Sixth grade', NULL, 11.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 11.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '06' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '06' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '07') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '07', 'Seventh grade', NULL, 12.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 12.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '07' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '07' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '08') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '08', 'Eighth grade', NULL, 13.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 13.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '08' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '08' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '09') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '09', 'Ninth grade', NULL, 14.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 14.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '09' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '10') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '09' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '10') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '10', 'Tenth grade', NULL, 15.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 15.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '10' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '11') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '10' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '11') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '11', 'Eleventh grade', NULL, 16.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 16.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '11' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '12') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '11' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '12') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '12', 'Twelfth grade', NULL, 17.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 17.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '12' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '13') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '12' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '13') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT '13', 'Grade 13', NULL, 18.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 18.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = '13' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PS') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = '13' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'PS') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'PS', 'Postsecondary', NULL, 19.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 19.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'PS' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'UG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'PS' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'UG') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'UG', 'Ungraded', NULL, 21.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 21.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'UG' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'AE') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'UG' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'AE') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'AE', 'Adult Education', NULL, 22.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 22.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'AE' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'AE' END +IF NOT EXISTS (SELECT 1 FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'Other') BEGIN INSERT INTO dbo.[RefGradeLevel]([Code], [Description], [Definition], [SortOrder], [RefGradeLevelTypeId]) SELECT 'Other', 'Other', NULL, 22.00, [RefGradeLevelTypeId] -FROM dbo.RefGradeLevelType WHERE Description = 'Exit Grade Level' +FROM dbo.RefGradeLevelType WHERE Description = 'High Grade Level' END ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefGradeLevel] SET [Definition] = NULL, [SortOrder] = 22.00 -FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'Exit Grade Level' AND r.[Code] = 'Other' END +FROM dbo.[RefGradeLevel] r INNER JOIN dbo.RefGradeLevelType t ON t.RefGradeLevelTypeId = r.RefGradeLevelTypeId WHERE t.[Description] = 'High Grade Level' AND r.[Code] = 'Other' END END @@ -72307,13415 +74012,1553 @@ VALUES ('28', 'Bonus', 'Bonus is offered by a program/facility/employer.', 28.00 ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefEmployeeBenefit] SET [Description] = 'Bonus', [Definition] = 'Bonus is offered by a program/facility/employer.', [SortOrder] = 28.00 WHERE [Code] = '28' END END - -PRINT N'Populate RefRace table' -IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[RefRace]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) -BEGIN -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceAmericanIndianorAlaskaNative') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'AmericanIndianorAlaskaNative', [Definition] = 'A person having origins in any of the original peoples of North and South America (including Central America), and who maintains cultural identification through tribal affiliation or community attachment.', [Description] = 'American Indian or Alaska Native' WHERE [Code] = 'RaceAmericanIndianorAlaskaNative' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'AmericanIndianorAlaskaNative') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('AmericanIndianorAlaskaNative', 'American Indian or Alaska Native', 'A person having origins in any of the original peoples of North and South America (including Central America), and who maintains cultural identification through tribal affiliation or community attachment.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'American Indian or Alaska Native', [Definition] = 'A person having origins in any of the original peoples of North and South America (including Central America), and who maintains cultural identification through tribal affiliation or community attachment.' WHERE [Code] = 'AmericanIndianOrAlaskaNative' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceAsian') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'Asian', [Description] = 'Asian', [Definition] = 'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian Subcontinent. This area includes, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.' WHERE [Code] = 'RaceAsian' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'Asian') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('Asian', 'Asian', 'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian Subcontinent. This area includes, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Asian', [Definition] = 'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian Subcontinent. This area includes, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.' WHERE [Code] = 'Asian' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceBlackorAfricanAmerican') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'BlackOrAfricanAmerican', [Description] = 'Black or African American', [Definition] = 'A person having origins in any of the black racial groups of Africa.' WHERE [Code] = 'RaceBlackorAfricanAmerican' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'BlackOrAfricanAmerican') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('BlackOrAfricanAmerican', 'Black or African American', 'A person having origins in any of the black racial groups of Africa.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Black or African American', [Definition] = 'A person having origins in any of the black racial groups of Africa.' WHERE [Code] = 'BlackOrAfricanAmerican' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceNativeHawaiianorOtherPacificIslander') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'NativeHawaiianOrOtherPacificIslander', [Description] = 'Native Hawaiian or Other Pacific Islander', [Definition] = 'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.' WHERE [Code] = 'RaceNativeHawaiianorOtherPacificIslander' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'NativeHawaiianOrOtherPacificIslander') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('NativeHawaiianOrOtherPacificIslander', 'Native Hawaiian or Other Pacific Islander', 'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Native Hawaiian or Other Pacific Islander', [Definition] = 'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.' WHERE [Code] = 'NativeHawaiianOrOtherPacificIslander' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceDemographicRaceTwoOrMoreRaces') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'DemographicRaceTwoOrMoreRaces', [Description] = 'Demographic Race Two or More Races', [Definition] = 'A person having origins in any of more than one of the racial groups.' WHERE [Code] = 'RaceDemographicRaceTwoOrMoreRaces' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'DemographicRaceTwoOrMoreRaces') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('DemographicRaceTwoOrMoreRaces', 'Demographic Race Two Or More Races', 'A person having origins in any of more than one of the racial groups.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Demographic Race Two Or More Races', [Definition] = 'A person having origins in any of more than one of the racial groups.' WHERE [Code] = 'DemographicRaceTwoOrMoreRaces' END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceAndEthnicityUnknown') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('RaceAndEthnicityUnknown', 'Race And Ethnicity Unknown', 'The category used to report a person whose race and ethnicity are not known.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'Race And Ethnicity Unknown', [Definition] = 'The category used to report a person whose race and ethnicity are not known.' WHERE [Code] = 'RaceAndEthnicityUnknown' END -IF EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'RaceWhite') BEGIN -UPDATE dbo.[RefRace] SET [Code] = 'White', [Description] = 'White', [Definition] = 'A person having origins in any of the original peoples of Europe, Middle East, or North Africa.' WHERE [Code] = 'RaceWhite' -END -IF NOT EXISTS (SELECT 1 FROM dbo.[RefRace] WHERE [Code] = 'White') BEGIN INSERT INTO dbo.[RefRace]([Code], [Description], [Definition]) -VALUES ('White', 'White', 'A person having origins in any of the original peoples of Europe, Middle East, or North Africa.') END -ELSE IF @updateExisting = 1 BEGIN UPDATE dbo.[RefRace] -SET [Description] = 'White', [Definition] = 'A person having origins in any of the original peoples of Europe, Middle East, or North Africa.' WHERE [Code] = 'White' END -END GO ------------------------------------------- +----------------------------------------------------- ----Section 6 Update The Metadata -------- ------------------------------------------- - -IF EXISTS (SELECT '1' - FROM sys.objects o - JOIN sys.columns c - ON o.object_Id = c.object_Id - JOIN sys.extended_properties ep - ON c.object_id = ep.major_id - AND c.column_id = ep.minor_id - WHERE o.type = 'U' - AND o.name = 'PersonDemographicRace' - AND c.name = 'RefRaceId' - AND ep.name = 'MS_Description') - BEGIN - - EXEC sys.sp_dropextendedproperty @name=N'MS_Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' - - END - -IF EXISTS (SELECT '1' - FROM sys.objects o - JOIN sys.columns c - ON o.object_Id = c.object_Id - JOIN sys.extended_properties ep - ON c.object_id = ep.major_id - AND c.column_id = ep.minor_id - WHERE o.type = 'U' - AND o.name = 'PersonDemographicRace' - AND c.name = 'RefRaceId' - AND ep.name = 'CEDS_Def_Desc') - BEGIN - - EXEC sys.sp_dropextendedproperty @name=N'CEDS_Def_Desc', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' - - END - -IF EXISTS (SELECT '1' - FROM sys.objects o - JOIN sys.columns c - ON o.object_Id = c.object_Id - JOIN sys.extended_properties ep - ON c.object_id = ep.major_id - AND c.column_id = ep.minor_id - WHERE o.type = 'U' - AND o.name = 'PersonDemographicRace' - AND c.name = 'RefRaceId' - AND ep.name = 'CEDS_Element') - BEGIN - - EXEC sys.sp_dropextendedproperty @name=N'CEDS_Element', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' - - END - -IF EXISTS (SELECT '1' - FROM sys.objects o - JOIN sys.columns c - ON o.object_Id = c.object_Id - JOIN sys.extended_properties ep - ON c.object_id = ep.major_id - AND c.column_id = ep.minor_id - WHERE o.type = 'U' - AND o.name = 'PersonDemographicRace' - AND c.name = 'RefRaceId' - AND ep.name = 'CEDS_GlobalId') - BEGIN - - EXEC sys.sp_dropextendedproperty @name=N'CEDS_GlobalId', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' - - END - -IF EXISTS (SELECT '1' - FROM sys.objects o - JOIN sys.columns c - ON o.object_Id = c.object_Id - JOIN sys.extended_properties ep - ON c.object_id = ep.major_id - AND c.column_id = ep.minor_id - WHERE o.type = 'U' - AND o.name = 'PersonDemographicRace' - AND c.name = 'RefRaceId' - AND ep.name = 'CEDS_URL') - BEGIN - - EXEC sys.sp_dropextendedproperty @name=N'CEDS_URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' - - END - -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='Code'; -GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='Code'; +----------------------------------------------------- +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'RefLearningResourceStatusId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='Code'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the Learning Resource as of the status start date.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'RefLearningResourceStatusId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='Code'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'RefLearningResourceStatusId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='Code'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002031' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'RefLearningResourceStatusId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='Code'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25041' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'RefLearningResourceStatusId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='Code'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResource', @level2type=N'COLUMN',@level2name=N'RefHighQualityInstructionalMaterialIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='Code'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the related learning resource meets requirements to be considered high quality instructional material as defined by the organization assigning the indicator.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResource', @level2type=N'COLUMN',@level2name=N'RefHighQualityInstructionalMaterialIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='Code'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'High Quality Instructional Material Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResource', @level2type=N'COLUMN',@level2name=N'RefHighQualityInstructionalMaterialIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='Code'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002032' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResource', @level2type=N'COLUMN',@level2name=N'RefHighQualityInstructionalMaterialIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='Code'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25023' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResource', @level2type=N'COLUMN',@level2name=N'RefHighQualityInstructionalMaterialIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='Code'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'LearningResourceStatusQuantity'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='Code'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of a specific related learning resource for each distinct learning resource status.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'LearningResourceStatusQuantity'; GO - -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='Description' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='SortOrder' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='Definition' -exec sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='Description' - -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseCode', @level2type='COLUMN', @level2name='Code' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Status Quantity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'LearningResourceStatusQuantity'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002033' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'LearningResourceStatusQuantity'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25042' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'LearningResourceStatusQuantity'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryServiceNumber'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of a specific related learning resource for each distinct learning resource status.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryServiceNumber'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Status Quantity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryServiceNumber'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002033' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryServiceNumber'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25042' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryServiceNumber'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryOccupationalSpecialties', @level2type=N'COLUMN',@level2name=N'MilitaryOccupationalSpecialties'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A military occupational specialty of a person. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryOccupationalSpecialties', @level2type=N'COLUMN',@level2name=N'MilitaryOccupationalSpecialties'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Occupational Specialties ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryOccupationalSpecialties', @level2type=N'COLUMN',@level2name=N'MilitaryOccupationalSpecialties'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002035' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryOccupationalSpecialties', @level2type=N'COLUMN',@level2name=N'MilitaryOccupationalSpecialties'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25067' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryOccupationalSpecialties', @level2type=N'COLUMN',@level2name=N'MilitaryOccupationalSpecialties'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryExpertise', @level2type=N'COLUMN',@level2name=N'RefMilitaryExpertiseId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A list of expertise that the person developed during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryExpertise', @level2type=N'COLUMN',@level2name=N'RefMilitaryExpertiseId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Expertise' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryExpertise', @level2type=N'COLUMN',@level2name=N'RefMilitaryExpertiseId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002036' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryExpertise', @level2type=N'COLUMN',@level2name=N'RefMilitaryExpertiseId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25062' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryExpertise', @level2type=N'COLUMN',@level2name=N'RefMilitaryExpertiseId'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDuties', @level2type=N'COLUMN',@level2name=N'RefMilitaryDutiesId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the duties encompassed within a period of military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDuties', @level2type=N'COLUMN',@level2name=N'RefMilitaryDutiesId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Duties' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDuties', @level2type=N'COLUMN',@level2name=N'RefMilitaryDutiesId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002037' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDuties', @level2type=N'COLUMN',@level2name=N'RefMilitaryDutiesId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25061' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDuties', @level2type=N'COLUMN',@level2name=N'RefMilitaryDutiesId'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryServiceLocations', @level2type=N'COLUMN',@level2name=N'MilitaryServiceLocations'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the duty stations (locations) encompassed within a period of military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryServiceLocations', @level2type=N'COLUMN',@level2name=N'MilitaryServiceLocations'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Service Locations' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryServiceLocations', @level2type=N'COLUMN',@level2name=N'MilitaryServiceLocations'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002038' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryServiceLocations', @level2type=N'COLUMN',@level2name=N'MilitaryServiceLocations'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25069' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryServiceLocations', @level2type=N'COLUMN',@level2name=N'MilitaryServiceLocations'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date when a person was inducted into active military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Induction Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002039' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25065' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date when a person was released from further military obligations.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Discharge Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002040' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25059' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryReleaseDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date a person was released from active military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryReleaseDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Release Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryReleaseDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002041' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryReleaseDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25068' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryReleaseDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentStartDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date when a person''s military deployment started.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentStartDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment Start Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentStartDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002042' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentStartDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25056' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentStartDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentEndDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date when a person''s military deployment ended.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentEndDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment End Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentEndDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002043' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentEndDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25053' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentEndDate'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryDischargeCategoryId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A kind of discharge a person received from military services.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryDischargeCategoryId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Discharge Category' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryDischargeCategoryId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002044' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryDischargeCategoryId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25058' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefMilitaryDischargeCategoryId'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A rank at the time a person started their military experience.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Induction Rank' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002045' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25066' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryInductionRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A rank at time a person was discharged from military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Discharge Rank' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002046' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25060' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryDischargeRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryHighestRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The highest rank achieved by a person in military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryHighestRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Highest Rank' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryHighestRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002047' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryHighestRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25063' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryHighestRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryCurrentRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The rank a person currently holds as part of active service. Do not use this indicator if the person is no longer holding this rank.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryCurrentRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Current Rank' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryCurrentRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002048' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryCurrentRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25049' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'MilitaryCurrentRank'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryHonors', @level2type=N'COLUMN',@level2name=N'MilitaryHonors'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A military honor that the person received during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryHonors', @level2type=N'COLUMN',@level2name=N'MilitaryHonors'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Honors' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryHonors', @level2type=N'COLUMN',@level2name=N'MilitaryHonors'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002049' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryHonors', @level2type=N'COLUMN',@level2name=N'MilitaryHonors'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25064' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryHonors', @level2type=N'COLUMN',@level2name=N'MilitaryHonors'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryCampaigns', @level2type=N'COLUMN',@level2name=N'RefMilitaryCampaignsId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A military campaign in which the person has been involved during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryCampaigns', @level2type=N'COLUMN',@level2name=N'RefMilitaryCampaignsId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Campaigns' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryCampaigns', @level2type=N'COLUMN',@level2name=N'RefMilitaryCampaignsId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002050' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryCampaigns', @level2type=N'COLUMN',@level2name=N'RefMilitaryCampaignsId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25047' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryCampaigns', @level2type=N'COLUMN',@level2name=N'RefMilitaryCampaignsId'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentActivity', @level2type=N'COLUMN',@level2name=N'RefIncidentActivityId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The activity taking place during the occurrence. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentActivity', @level2type=N'COLUMN',@level2name=N'RefIncidentActivityId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Incident Activity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentActivity', @level2type=N'COLUMN',@level2name=N'RefIncidentActivityId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002110' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentActivity', @level2type=N'COLUMN',@level2name=N'RefIncidentActivityId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25024' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentActivity', @level2type=N'COLUMN',@level2name=N'RefIncidentActivityId'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'RefMilitaryDeploymentStatusCodeId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Deployment status code issued to military personnel by the U.S. military.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'RefMilitaryDeploymentStatusCodeId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment Status Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'RefMilitaryDeploymentStatusCodeId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002051' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'RefMilitaryDeploymentStatusCodeId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25057' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'RefMilitaryDeploymentStatusCodeId'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A textual description of the person''s military deployment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment Description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002052' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25052' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentOrderDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A textual description of the person''s military deployment order.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentOrderDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment Order Description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentOrderDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002053' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentOrderDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25054' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentOrderDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentRequestedBy'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A textual description of an entity that requested the person''s military deployment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentRequestedBy'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment Requested By' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentRequestedBy'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002054' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentRequestedBy'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25055' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentRequestedBy'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityCode'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The codes of any activities performed by the person while deployed in the military.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityCode'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment Activity Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityCode'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002055' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityCode'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25050' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityCode'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityName'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The names of any activities performed by the person while deployed in the military.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityName'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Military Deployment Activity Name' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityName'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002056' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityName'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25051' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment', @level2type=N'COLUMN',@level2name=N'MilitaryDeploymentActivityName'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefNationalGuardIndicatorId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s current membership status in the United States National Guard. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefNationalGuardIndicatorId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'National Guard Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefNationalGuardIndicatorId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002057' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefNationalGuardIndicatorId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25072' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitary', @level2type=N'COLUMN',@level2name=N'RefNationalGuardIndicatorId'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourcePercentage'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The proportion or percentage of financial support or resources contributed by a specific funding or revenue stream in relation to the total funding.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourcePercentage'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Funding Source Percentage' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourcePercentage'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002058' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourcePercentage'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25021' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourcePercentage'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourceAmount'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of financial support contributed by a specific funding or revenue stream.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourceAmount'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Funding Source Amount' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourceAmount'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002059' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourceAmount'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25020' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource', @level2type=N'COLUMN',@level2name=N'StaffCompensationFundingSourceAmount'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfTotalExperience'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of years that a person has held this position or a similar position in one or more organizations.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfTotalExperience'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Years of Total Experience' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfTotalExperience'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002060' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfTotalExperience'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25095' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfTotalExperience'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfPriorProfessionalExperience'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of years that an individual has previously held a similar professional position in one or more education institutions prior to the current school year.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfPriorProfessionalExperience'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Years of Prior Professional Experience' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfPriorProfessionalExperience'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002061' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfPriorProfessionalExperience'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25094' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffExperience', @level2type=N'COLUMN',@level2name=N'YearsOfPriorProfessionalExperience'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonFamily', @level2type=N'COLUMN',@level2name=N'RefTeenParentIndicatorId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The child''s parent or guardian is a teen parent between ages 10 to 19 years.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonFamily', @level2type=N'COLUMN',@level2name=N'RefTeenParentIndicatorId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Teen Parent Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonFamily', @level2type=N'COLUMN',@level2name=N'RefTeenParentIndicatorId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002062' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonFamily', @level2type=N'COLUMN',@level2name=N'RefTeenParentIndicatorId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25089' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonFamily', @level2type=N'COLUMN',@level2name=N'RefTeenParentIndicatorId'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJurisdiction', @level2type=N'COLUMN',@level2name=N'OrganizationJurisdictionSquareMiles'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total area, measured in square miles, over which an organization holds administrative or governing authority, including regions under its regulatory, operational, or legal control. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJurisdiction', @level2type=N'COLUMN',@level2name=N'OrganizationJurisdictionSquareMiles'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Organization Jurisdiction Square Miles' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJurisdiction', @level2type=N'COLUMN',@level2name=N'OrganizationJurisdictionSquareMiles'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002063' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJurisdiction', @level2type=N'COLUMN',@level2name=N'OrganizationJurisdictionSquareMiles'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25074' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJurisdiction', @level2type=N'COLUMN',@level2name=N'OrganizationJurisdictionSquareMiles'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation', @level2type=N'COLUMN',@level2name=N'StaffCompensationAnnualSupplementDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the annual supplement awarded to a staff member.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation', @level2type=N'COLUMN',@level2name=N'StaffCompensationAnnualSupplementDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Annual Supplement Description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation', @level2type=N'COLUMN',@level2name=N'StaffCompensationAnnualSupplementDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002064' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation', @level2type=N'COLUMN',@level2name=N'StaffCompensationAnnualSupplementDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25087' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation', @level2type=N'COLUMN',@level2name=N'StaffCompensationAnnualSupplementDescription'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseFundingSource', @level2type=N'COLUMN',@level2name=N'RefCourseFundingProgramAllowedId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of permission for allocation of a course funding program''s funds for the support of a course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseFundingSource', @level2type=N'COLUMN',@level2name=N'RefCourseFundingProgramAllowedId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Course Funding Program Allowed' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseFundingSource', @level2type=N'COLUMN',@level2name=N'RefCourseFundingProgramAllowedId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002065' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseFundingSource', @level2type=N'COLUMN',@level2name=N'RefCourseFundingProgramAllowedId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25010' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseFundingSource', @level2type=N'COLUMN',@level2name=N'RefCourseFundingProgramAllowedId'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountGASBRevenueClassificationId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of Governmental Accounting Standards Board (GASB) revenues.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountGASBRevenueClassificationId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account GASB Revenue Classification' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountGASBRevenueClassificationId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002066' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountGASBRevenueClassificationId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25018' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountGASBRevenueClassificationId'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalGASBRevenueClassificationId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify Governmental Accounting Standards Board (GASB) revenues.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalGASBRevenueClassificationId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local GASB Revenue Classification' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalGASBRevenueClassificationId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002067' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalGASBRevenueClassificationId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25019' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalGASBRevenueClassificationId'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropoutReason', @level2type=N'COLUMN',@level2name=N'RefDropoutReasonTypeId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason or reasons the student dropped out of school.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropoutReason', @level2type=N'COLUMN',@level2name=N'RefDropoutReasonTypeId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Dropout Reason Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropoutReason', @level2type=N'COLUMN',@level2name=N'RefDropoutReasonTypeId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002113' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropoutReason', @level2type=N'COLUMN',@level2name=N'RefDropoutReasonTypeId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25014' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropoutReason', @level2type=N'COLUMN',@level2name=N'RefDropoutReasonTypeId'; +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropout', @level2type=N'COLUMN',@level2name=N'RefStudentDropoutStatusId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the status of this student as dropout.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropout', @level2type=N'COLUMN',@level2name=N'RefStudentDropoutStatusId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Student Dropout Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropout', @level2type=N'COLUMN',@level2name=N'RefStudentDropoutStatusId'; +GO +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002068' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropout', @level2type=N'COLUMN',@level2name=N'RefStudentDropoutStatusId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseCode', @level2type='COLUMN', @level2name='Definition' +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25088' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropout', @level2type=N'COLUMN',@level2name=N'RefStudentDropoutStatusId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseCode', @level2type='COLUMN', @level2name='SortOrder' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'JobIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='Code' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code used to identify a job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'JobIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='Definition' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Identifier' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'JobIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='Description' +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002069' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'JobIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='SortOrder' +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25027' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'JobIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The origins of a person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Race' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used by an organization for identification and record keeping purposes to refer to a job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001943' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Identification System' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22955' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002070' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDemographicRace', @level2type=N'COLUMN',@level2name=N'RefRaceId' +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25026' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramCodeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'RefFacilityJointUseIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique five-digit number assigned to each federal program as listed in the Assistance Listings. See https://sam.gov/content/assistance-listings' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that an organization shares a facility or space within a facility with another organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'RefFacilityJointUseIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Federal Program Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Facility Joint Use Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'RefFacilityJointUseIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000547' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002111' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'RefFacilityJointUseIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21538' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25017' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'RefFacilityJointUseIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationEnrollmentCapacityId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobCategoryId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationEnrollmentCapacityId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe and classify the job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobCategoryId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationEnrollmentCapacityId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Local Job Category' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobCategoryId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002012' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationEnrollmentCapacityId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002071' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobCategoryId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationEnrollmentCapacityId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25043' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobCategoryId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefExitOrWithdrawalStatusId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobFunctionId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefExitOrWithdrawalStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code indicating the broad business activity supported by the job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobFunctionId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Exit or Withdrawal Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefExitOrWithdrawalStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Local Job Function' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobFunctionId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000108' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefExitOrWithdrawalStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002072' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobFunctionId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21108' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefExitOrWithdrawalStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25044' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefLocalJobFunctionId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramSubgrantCodeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'FacilityJointUseDescription'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An additional code appended to the Federal Program Code used to identify a subgrant of the grant identified by the Federal Program Code.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramSubgrantCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description explaining the details of an organization''s shared facility arrangement.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'FacilityJointUseDescription'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Federal Program Subgrant Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramSubgrantCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Facility Joint Use Description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'FacilityJointUseDescription'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002010' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramSubgrantCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002112' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'FacilityJointUseDescription'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22980' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccount', @level2type=N'COLUMN',@level2name=N'RefFederalProgramSubgrantCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25016' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityJointUse', @level2type=N'COLUMN',@level2name=N'FacilityJointUseDescription'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalBalanceSheetCodeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefCodingSystemOrganizationTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe balance sheet accounts and statement of net position accounts which are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalBalanceSheetCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of organization that created the coding system for this element.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefCodingSystemOrganizationTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Balance Sheet Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalBalanceSheetCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Coding System Organization Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefCodingSystemOrganizationTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002007' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalBalanceSheetCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002073' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefCodingSystemOrganizationTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22982' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalBalanceSheetCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25009' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefCodingSystemOrganizationTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalFundClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefEducationJobTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify a fund which is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalFundClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A broad categorization of the job as it relates to education.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefEducationJobTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Fund Classification' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalFundClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Education Job Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefEducationJobTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002008' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalFundClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002074' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefEducationJobTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22983' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalFundClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25015' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail', @level2type=N'COLUMN',@level2name=N'RefEducationJobTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalProgramCodeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionName'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalProgramCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A name given to a specific criterion used to determine a salary provided or offered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionName'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Program Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalProgramCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Salary Schedule Criterion Name' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionName'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002009' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalProgramCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002106' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionName'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22984' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalProgramCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25082' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionName'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalRevenueCodeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionDescription'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to record revenue and other receivables by source.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalRevenueCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description given to a specific criterion used to determine a salary provided or offered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionDescription'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Revenue Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalRevenueCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Salary Schedule Criterion Description' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionDescription'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002003' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalRevenueCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002107' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionDescription'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22985' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialAccountLocalRevenueCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25081' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionDescription'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalFunctionCodeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'JobPositionIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the activity for which a service or material object is acquired.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalFunctionCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code used to identify a job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'JobPositionIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Function Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalFunctionCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Position Identifier' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'JobPositionIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002004' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalFunctionCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002075' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'JobPositionIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22986' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalFunctionCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25030' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'JobPositionIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobPositionIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify the segregation of expenditures by instructional level.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used by an organization for identification and record keeping purposes to refer to a job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobPositionIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Level of Instruction Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Position Identification System' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobPositionIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002006' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002076' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobPositionIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22987' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25029' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier', @level2type=N'COLUMN',@level2name=N'RefJobPositionIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalObjectCodeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionDetail', @level2type=N'COLUMN',@level2name=N'JobPositionExpectedStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the service or commodity obtained as the result of a specific expenditure.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalObjectCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date, determined by the organization, on which they anticipate the selected individual to commence their role within the organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionDetail', @level2type=N'COLUMN',@level2name=N'JobPositionExpectedStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Object Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalObjectCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Position Expected Start Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionDetail', @level2type=N'COLUMN',@level2name=N'JobPositionExpectedStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002005' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalObjectCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002077' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionDetail', @level2type=N'COLUMN',@level2name=N'JobPositionExpectedStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22988' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RefFinancialExpenditureLocalObjectCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25028' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionDetail', @level2type=N'COLUMN',@level2name=N'JobPositionExpectedStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefFullTimeStatusId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an individual is employed for a standard number of hours (as determined by civil or organizational policies) in a week, month, or other period of time.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefFullTimeStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A value defining the status of the job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Full-time Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefFullTimeStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Position Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000736' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefFullTimeStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002078' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21713' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefFullTimeStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25031' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefInstructionalStaffContractLengthId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'JobPositionStatusDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The contracted teaching period for faculty.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefInstructionalStaffContractLengthId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The effective date of the job position status.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'JobPositionStatusDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Instructional Staff Contract Length' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefInstructionalStaffContractLengthId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Position Status Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'JobPositionStatusDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000735' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefInstructionalStaffContractLengthId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002079' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'JobPositionStatusDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21712' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefInstructionalStaffContractLengthId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25033' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'JobPositionStatusDate'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefInternetAccessId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusCancelledReasonId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of internet access available.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefInternetAccessId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason why the job position was given the job position status of cancelled.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusCancelledReasonId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Internet Access' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefInternetAccessId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Job Position Status Cancelled Reason' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusCancelledReasonId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000587' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefInternetAccessId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002080' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusCancelledReasonId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21580' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefInternetAccessId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25032' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus', @level2type=N'COLUMN',@level2name=N'RefJobPositionStatusCancelledReasonId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefIpedsOccupationalCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardRelationship', @level2type=N'COLUMN',@level2name=N'CredentialAwardRelationshipId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report employees.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefIpedsOccupationalCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of a credential award''s relationship to another credential award.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardRelationship', @level2type=N'COLUMN',@level2name=N'CredentialAwardRelationshipId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Occupational Category' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefIpedsOccupationalCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Credential Award Relationship' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardRelationship', @level2type=N'COLUMN',@level2name=N'CredentialAwardRelationshipId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000731' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefIpedsOccupationalCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002081' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardRelationship', @level2type=N'COLUMN',@level2name=N'CredentialAwardRelationshipId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21708' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefIpedsOccupationalCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25011' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardRelationship', @level2type=N'COLUMN',@level2name=N'CredentialAwardRelationshipId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefLeaTypeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefLowGradeLevelId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N' The classification of education agencies within the geographic boundaries of a state according to the level of administrative and operational control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefLeaTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The lowest grade level when referring to grade levels as a range.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefLowGradeLevelId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefLeaTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Low Grade Level' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefLowGradeLevelId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000537' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefLeaTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002082' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefLowGradeLevelId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21528' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefLeaTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25045' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefLowGradeLevelId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'MepPersonnelIndicator'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefHighGradeLevelId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a staff member''s salary is paid by the Title I, Part C Migrant Education Program (MEP) of ESEA as amended.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'MepPersonnelIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The highest grade level when referring to grade levels as a range.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefHighGradeLevelId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Personnel Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'MepPersonnelIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'High Grade Level' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefHighGradeLevelId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000543' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'MepPersonnelIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002083' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefHighGradeLevelId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21534' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'MepPersonnelIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25022' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel', @level2type=N'COLUMN',@level2name=N'RefHighGradeLevelId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefNationalSchoolLunchProgramStatusId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValue', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionValue'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of participation by a school in the National School Lunch Program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefNationalSchoolLunchProgramStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique value or code assigned to a salary schedule criterion used to differentiate between the achievable levels of the criterion.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValue', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionValue'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'National School Lunch Program Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefNationalSchoolLunchProgramStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Salary Schedule Criterion Value' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValue', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionValue'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001767' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefNationalSchoolLunchProgramStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002108' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValue', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionValue'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22748' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefNationalSchoolLunchProgramStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25083' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValue', @level2type=N'COLUMN',@level2name=N'SalaryScheduleCriterionValue'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefPredominantCalendarSystemId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which an institution structures most of its courses for the academic year.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefPredominantCalendarSystemId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of neglected programs under Title I, Part D, Subpart 1 (State Agency) of ESEA as amended.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Predominant Calendar System' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefPredominantCalendarSystemId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Neglected Program Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000729' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefPredominantCalendarSystemId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002084' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21705' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefPredominantCalendarSystemId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25073' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefNeglectedProgramTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProgramType', @level2type=N'COLUMN',@level2name=N'PrimaryProgramIndicator'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefDelinquentProgramTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the associated program is the primary function of this organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProgramType', @level2type=N'COLUMN',@level2name=N'PrimaryProgramIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of delinquent programs under Title I, Part D, Subpart 1 (State Agency) of ESEA as amended or under Title I, Part D, Subpart 2 (LEA) of ESEA, as amended.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefDelinquentProgramTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Primary Program Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProgramType', @level2type=N'COLUMN',@level2name=N'PrimaryProgramIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Delinquent Program Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefDelinquentProgramTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002013' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProgramType', @level2type=N'COLUMN',@level2name=N'PrimaryProgramIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002085' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefDelinquentProgramTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22990' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProgramType', @level2type=N'COLUMN',@level2name=N'PrimaryProgramIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25012' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN',@level2name=N'RefDelinquentProgramTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'ProjectBasedLearningIndicator'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN',@level2name=N'RefPartBPostsecondaryOutcomesIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that an instructional model is being implemented wherein a student learns through answering complex questions or solving for real-world problems. Also called problem-based learning, inquiry-based learning, or learning-by-doing.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'ProjectBasedLearningIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the status of a person within one year of leaving secondary school and who had an individualized education program in effect at the time they left secondary school.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN',@level2name=N'RefPartBPostsecondaryOutcomesIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Project-Based Learning Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'ProjectBasedLearningIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Part B Postsecondary Outcomes Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN',@level2name=N'RefPartBPostsecondaryOutcomesIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001991' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'ProjectBasedLearningIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002086' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN',@level2name=N'RefPartBPostsecondaryOutcomesIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22991' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'ProjectBasedLearningIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25075' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN',@level2name=N'RefPartBPostsecondaryOutcomesIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RefProjectBasedLearningTypeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationCte', @level2type=N'COLUMN',@level2name=N'RefPerkinsPostProgramPlacementIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of project-based instruction being offered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RefProjectBasedLearningTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the post-program status of a CTE Concentrator in the second quarter after exiting from secondary education.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationCte', @level2type=N'COLUMN',@level2name=N'RefPerkinsPostProgramPlacementIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Project-Based Learning Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RefProjectBasedLearningTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Perkins Post-Program Placement Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationCte', @level2type=N'COLUMN',@level2name=N'RefPerkinsPostProgramPlacementIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001992' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RefProjectBasedLearningTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002087' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationCte', @level2type=N'COLUMN',@level2name=N'RefPerkinsPostProgramPlacementIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22992' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RefProjectBasedLearningTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25076' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationCte', @level2type=N'COLUMN',@level2name=N'RefPerkinsPostProgramPlacementIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'OrganizationProjectBasedLearningId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatIssuedIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of project-based instruction being offered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'OrganizationProjectBasedLearningId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student was issued an accessible format according to their IEP or 504 Plan. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatIssuedIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Project-Based Learning Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'OrganizationProjectBasedLearningId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Accessible Format Issued Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatIssuedIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001992' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'OrganizationProjectBasedLearningId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002088' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatIssuedIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22992' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'OrganizationProjectBasedLearningId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24997' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatIssuedIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefPublicSchoolResidenceId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatRequiredIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the location of a persons legal residence relative to (within or outside) the boundaries of the public school attended and its administrative unit.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefPublicSchoolResidenceId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student requires an accessible format according to their IEP or 504 Plan.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatRequiredIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Public School Residence Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefPublicSchoolResidenceId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Accessible Format Required Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatRequiredIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000532' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefPublicSchoolResidenceId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002092' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatRequiredIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21523' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELEnrollment', @level2type=N'COLUMN',@level2name=N'RefPublicSchoolResidenceId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24998' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatRequiredIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefSchoolLevelId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the level of the education institution.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefSchoolLevelId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An alternative manner or form that gives an eligible person access to the work when the copy or phonorecord in the accessible format is used exclusively by the eligible person to permit him or her to have access as feasibly and comfortably as a person without such disability (20 U.S.C. § 121(d)(1)).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'School Level' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefSchoolLevelId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Accessible Format Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000241' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefSchoolLevelId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002089' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21241' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefSchoolLevelId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24999' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'RefAccessibleFormatTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationTeacherQualificationStatusId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedBeginDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether special education teachers are fully certified in the State..' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationTeacherQualificationStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the student was issued any accessible format(s).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedBeginDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Special Education Teacher Qualification Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationTeacherQualificationStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Accessible Format Issued Begin Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedBeginDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001996' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationTeacherQualificationStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002090' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedBeginDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22993' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationTeacherQualificationStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24995' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedBeginDate'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefStatePovertyDesignationId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation of a school’s poverty quartile for purposes of determining classes taught by highly qualified teachers in high and low poverty schools, according to state’s indicator of poverty.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefStatePovertyDesignationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date for the issuance of accessible format(s) to the student.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'State Poverty Designation' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefStatePovertyDesignationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Accessible Format Issued End Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000585' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefStatePovertyDesignationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002091' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21578' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefStatePovertyDesignationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24996' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat', @level2type=N'COLUMN',@level2name=N'AccessibleFormatIssuedEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN',@level2name=N'RefStudentSupportServiceAvailabilityTypeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIssued', @level2type=N'COLUMN',@level2name=N'LearningResourceIssuedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The group of students to whom related or ancillary service is offered within the formal educational system or by an outside agency which provides non-instructional service to support the general welfare of students.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN',@level2name=N'RefStudentSupportServiceAvailabilityTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the learning resource was issued to the student.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIssued', @level2type=N'COLUMN',@level2name=N'LearningResourceIssuedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Availability Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN',@level2name=N'RefStudentSupportServiceAvailabilityTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Issued Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIssued', @level2type=N'COLUMN',@level2name=N'LearningResourceIssuedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001998' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN',@level2name=N'RefStudentSupportServiceAvailabilityTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002093' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIssued', @level2type=N'COLUMN',@level2name=N'LearningResourceIssuedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22994' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN',@level2name=N'RefStudentSupportServiceAvailabilityTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25038' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIssued', @level2type=N'COLUMN',@level2name=N'LearningResourceIssuedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'TitleITargetedAssistanceStaffFunded'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceReceivedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a staff member is targeted assistance (TAS) program staff funded by Title I, Part A, Section 1115 of ESEA as amended.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'TitleITargetedAssistanceStaffFunded'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the learning resource was received by the organization that placed the order. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceReceivedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Title I Targeted Assistance Staff Funded' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'TitleITargetedAssistanceStaffFunded'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Received Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceReceivedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000552' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'TitleITargetedAssistanceStaffFunded'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002094' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceReceivedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21543' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'TitleITargetedAssistanceStaffFunded'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25040' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceReceivedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefVirtualSchoolStatusId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceOrderedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the extent to which a school offers instruction in which students and teachers are separated by time and/or location, and interaction occurs via computers and/or telecommunications technologies.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefVirtualSchoolStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the learning resource was ordered for the student.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceOrderedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Virtual School Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefVirtualSchoolStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Ordered Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceOrderedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001766' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefVirtualSchoolStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002095' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceOrderedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22747' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefVirtualSchoolStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25039' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder', @level2type=N'COLUMN',@level2name=N'LearningResourceOrderedDate'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefBlendedLearningModelTypeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAAssuranceofComplianceIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefBlendedLearningModelTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates if a Local Education Agency (LEA) has provided an assurance that it is in compliance with the State law requiring that a student who brings a firearm to school, or possesses a firearm at school, be expelled for one year, except that such State law shall allow the chief administering officer of a local educational agency to modify such expulsion requirement for a student on a case-by-case basis if such modification is in writing.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAAssuranceofComplianceIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Blended Learning Model Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefBlendedLearningModelTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'LEA GFSA Assurance of Compliance Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAAssuranceofComplianceIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001287' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefBlendedLearningModelTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002096' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAAssuranceofComplianceIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22253' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefBlendedLearningModelTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25034' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAAssuranceofComplianceIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefClassroomPositionTypeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAPolicyAssuranceIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of position the staff member holds in the specific course section.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefClassroomPositionTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates if a Local Education Agency has provided an assurance that it is in compliance with the requirement in Section 4141(h) that an LEA receiving ESEA funds have in place a policy requiring referral to the criminal justice or juvenile delinquency system of any student who brings a firearm to a school or possesses a firearm at school. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAPolicyAssuranceIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Classroom Position Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefClassroomPositionTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'LEA GFSA Policy Assurance Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAPolicyAssuranceIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000622' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefClassroomPositionTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002097' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAPolicyAssuranceIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21615' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefClassroomPositionTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25035' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy', @level2type=N'COLUMN',@level2name=N'RefLEAGFSAPolicyAssuranceIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ItinerantTeacher'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a teacher provides instruction in more than one instructional site.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ItinerantTeacher'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The duration of the attendance event captured as one whole day or a portion of a day.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Itinerant Teacher' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ItinerantTeacher'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Attendance Event Duration Day' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000528' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ItinerantTeacher'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002098' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21519' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ItinerantTeacher'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25001' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationDay'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefK12StaffClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationMinutes'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The titles of employment, official status, or rank of education staff.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefK12StaffClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The duration of the attendance event in minutes.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationMinutes'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'K12 Staff Classification' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefK12StaffClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Attendance Event Duration Minutes' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationMinutes'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000087' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefK12StaffClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002014' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationMinutes'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21087' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefK12StaffClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25003' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationMinutes'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefProfessionalEducationJobClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationHours'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A general job classification that describes staff that performs duties requiring a high degree of knowledge and skills generally acquired through at least a baccalaureate degree (or its equivalent obtained through special study and/or experience) including skills in the field of education, educational psychology, educational social work, or an education therapy field.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefProfessionalEducationJobClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The duration of the attendance event in hours.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationHours'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Professional Educational Job Classification' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefProfessionalEducationJobClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Attendance Event Duration Hours' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationHours'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000220' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefProfessionalEducationJobClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002015' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationHours'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21220' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefProfessionalEducationJobClassificationId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25002' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN',@level2name=N'AttendanceEventDurationHours'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleSalary', @level2type=N'COLUMN',@level2name=N'SalaryScheduleSalaryValue'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The salary or wage determined by the salary schedule criteria.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleSalary', @level2type=N'COLUMN',@level2name=N'SalaryScheduleSalaryValue'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Salary Schedule Salary Value' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleSalary', @level2type=N'COLUMN',@level2name=N'SalaryScheduleSalaryValue'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002109' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleSalary', @level2type=N'COLUMN',@level2name=N'SalaryScheduleSalaryValue'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25084' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleSalary', @level2type=N'COLUMN',@level2name=N'SalaryScheduleSalaryValue'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, day and optionally time, that a status became applicable.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Status Start Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001917' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001227' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24192' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN',@level2name=N'RefK12ResponsibilityTypeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of services/instruction the school is responsible for providing to the student.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN',@level2name=N'RefK12ResponsibilityTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The last year, month, day, and optionally time when a status applied.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Responsible School Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN',@level2name=N'RefK12ResponsibilityTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Status End Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000595' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN',@level2name=N'RefK12ResponsibilityTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001228' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21588' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN',@level2name=N'RefK12ResponsibilityTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24193' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus', @level2type=N'COLUMN',@level2name=N'StatusEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the board member''s term begins.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Board Member Term Start Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001517' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002102' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25006' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermStartDate'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseLevelId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N' The course''s level of rigor.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseLevelId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the board member''s term ends.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Level' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseLevelId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Board Member Term End Date' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001516' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseLevelId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002103' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22488' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseLevelId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25005' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'BoardMemberTermEndDate'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseSubjectAreaId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMemberPositionTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended major subject area of the education course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseSubjectAreaId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position or role the person performs on the board.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMemberPositionTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Subject Area' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseSubjectAreaId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Board Member Position Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMemberPositionTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001518' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseSubjectAreaId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002104' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMemberPositionTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseSubjectAreaId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25004' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMemberPositionTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationAgeGroupTaughtId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMembershipTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The age range of special education students taught.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationAgeGroupTaughtId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of membership for the board member.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMembershipTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Special Education Age Group Taught' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationAgeGroupTaughtId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Board Membership Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMembershipTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000564' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationAgeGroupTaughtId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002105' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMembershipTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21556' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationAgeGroupTaughtId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25007' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership', @level2type=N'COLUMN',@level2name=N'RefBoardMembershipTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationParaprofessional'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'InstructionalMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a paraprofessional is employed or contracted to work with children with disabilities who are ages 3 through 21.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationParaprofessional'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of instructional minutes in the day in which the school is normally in session.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'InstructionalMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Special Education Paraprofessional' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationParaprofessional'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Instructional Minutes Per Day' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'InstructionalMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000261' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationParaprofessional'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002099' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'InstructionalMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21261' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationParaprofessional'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25025' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'InstructionalMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationRelatedServicesPersonnel'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'LunchMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a related services person is employed or contracted to work with children with disabilities who are ages 3 through 21.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationRelatedServicesPersonnel'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of lunch minutes in the day in which the school is normally in session.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'LunchMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Special Education Related Services Personnel' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationRelatedServicesPersonnel'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Lunch Minutes Per Day' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'LunchMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000262' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationRelatedServicesPersonnel'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002100' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'LunchMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21262' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationRelatedServicesPersonnel'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25046' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'LunchMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationStaffCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'RecessMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationStaffCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of recess minutes in the day in which the school is normally in session.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'RecessMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Special Education Support Services Category' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationStaffCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Recess Minutes Per Day' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'RecessMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000558' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationStaffCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002101' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'RecessMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21549' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefSpecialEducationStaffCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25078' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'RecessMinutesPerDay'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationTeacher'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPolicy', @level2type=N'COLUMN',@level2name=N'RefDEIPolicyIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a teacher is employed or contracted to work with children with disabilities who are ages 3 through 21.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationTeacher'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the program has a written policy addressing diversity, equity and inclusion (DEI).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPolicy', @level2type=N'COLUMN',@level2name=N'RefDEIPolicyIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Special Education Teacher' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationTeacher'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Diversity Equity Inclusion Policy Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPolicy', @level2type=N'COLUMN',@level2name=N'RefDEIPolicyIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000264' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationTeacher'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002016' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPolicy', @level2type=N'COLUMN',@level2name=N'RefDEIPolicyIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21264' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'SpecialEducationTeacher'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25013' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPolicy', @level2type=N'COLUMN',@level2name=N'RefDEIPolicyIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'FullTimeEquivalency'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEnrollment', @level2type=N'COLUMN',@level2name=N'RefAdjustedExitOrWithdrawalTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'FullTimeEquivalency'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An adjustment of the last known circumstances under which the student exited from membership in an educational institution.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEnrollment', @level2type=N'COLUMN',@level2name=N'RefAdjustedExitOrWithdrawalTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Staff Full Time Equivalency' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'FullTimeEquivalency'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Adjusted Exit or Withdrawal Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEnrollment', @level2type=N'COLUMN',@level2name=N'RefAdjustedExitOrWithdrawalTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000118' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'FullTimeEquivalency'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002017' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEnrollment', @level2type=N'COLUMN',@level2name=N'RefAdjustedExitOrWithdrawalTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21118' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'FullTimeEquivalency'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25000' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentEnrollment', @level2type=N'COLUMN',@level2name=N'RefAdjustedExitOrWithdrawalTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ContributionPercentage'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationPublicExpenseEligibilityTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A percentage used to weight the educator''s assigned responsibility for student learning in a Class Section, particularly when more than one educator is assigned to the class section.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ContributionPercentage'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of eligibility for transporting a person at public expense.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationPublicExpenseEligibilityTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Teaching Assignment Contribution Percentage' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ContributionPercentage'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Transportation Public Expense Eligibility Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationPublicExpenseEligibilityTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000649' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ContributionPercentage'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002018' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationPublicExpenseEligibilityTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21651' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'ContributionPercentage'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25091' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationPublicExpenseEligibilityTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTeachingAssignmentRoleId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStatusTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role that the Staff Member has been assigned for a Class Section. (A teacher may have the lead responsibility for one section and serve a supporting role for another section of the same course.)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTeachingAssignmentRoleId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The transportation status of the person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStatusTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Teaching Assignment Role' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTeachingAssignmentRoleId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Transportation Status Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStatusTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000648' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTeachingAssignmentRoleId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002019' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStatusTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21650' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTeachingAssignmentRoleId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25093' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStatusTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTitleIProgramStaffCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStateAidQualificationTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of employment, official status, or rank for staff working in a Title I program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTitleIProgramStaffCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The qualification status for the transportation of a person that entitles an organization to receive state transportation aid.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStateAidQualificationTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Title I Program Staff Category' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTitleIProgramStaffCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Transportation State Aid Qualification Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStateAidQualificationTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000283' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTitleIProgramStaffCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002020' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStateAidQualificationTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21283' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffAssignment', @level2type=N'COLUMN',@level2name=N'RefTitleIProgramStaffCategoryId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25092' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility', @level2type=N'COLUMN',@level2name=N'RefTransportationStateAidQualificationTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CteCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'SessionSequenceNumber'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CteCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position of this session in a sequence of sessions.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'SessionSequenceNumber'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CteCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Session Sequence Number' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'SessionSequenceNumber'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001517' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CteCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002021' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'SessionSequenceNumber'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CteCourse', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25086' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN',@level2name=N'SessionSequenceNumber'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'AdjustedCapacity'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendance', @level2type=N'COLUMN',@level2name=N'RefChronicStudentAbsenteeismIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of participants that can be served in a program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'AdjustedCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether a student was absent 10% or more school days during the school year with an absence being defined as a student not physically on school grounds and was not participating in instruction or instruction-related activities at an approved off-grounds location for at least half the school day.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendance', @level2type=N'COLUMN',@level2name=N'RefChronicStudentAbsenteeismIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Adjusted Capacity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'AdjustedCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Chronic Student Absenteeism Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendance', @level2type=N'COLUMN',@level2name=N'RefChronicStudentAbsenteeismIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001999' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'AdjustedCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002022' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendance', @level2type=N'COLUMN',@level2name=N'RefChronicStudentAbsenteeismIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22972' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'AdjustedCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25008' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RoleAttendance', @level2type=N'COLUMN',@level2name=N'RefChronicStudentAbsenteeismIndicatorId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RefAdjustedCapacityReasonTypeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'SequenceOfCourse'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the reason for adjusted capacity in a program. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RefAdjustedCapacityReasonTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Where a specific course lies when it is part of a consecutive sequence of courses. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'SequenceOfCourse'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Adjusted Capacity Reason Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RefAdjustedCapacityReasonTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Sequence of Course' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'SequenceOfCourse'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002000' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RefAdjustedCapacityReasonTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002023' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'SequenceOfCourse'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22973' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RefAdjustedCapacityReasonTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25085' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'SequenceOfCourse'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationFunds', @level2type=N'COLUMN',@level2name=N'RefAdministrativeFundingControlId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Facility', @level2type=N'COLUMN',@level2name=N'TemperatureControlledBuildingArea'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of education institution as classified by its funding source.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationFunds', @level2type=N'COLUMN',@level2name=N'RefAdministrativeFundingControlId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sum of the Building Area capable of being regulated and maintained within a specific temperature range for a designated purpose, employing heating, cooling, insulation, or climate control systems.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Facility', @level2type=N'COLUMN',@level2name=N'TemperatureControlledBuildingArea'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Administrative Funding Control' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationFunds', @level2type=N'COLUMN',@level2name=N'RefAdministrativeFundingControlId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Temperature Controlled Building Area' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Facility', @level2type=N'COLUMN',@level2name=N'TemperatureControlledBuildingArea'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000012' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationFunds', @level2type=N'COLUMN',@level2name=N'RefAdministrativeFundingControlId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002024' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Facility', @level2type=N'COLUMN',@level2name=N'TemperatureControlledBuildingArea'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21012' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationFunds', @level2type=N'COLUMN',@level2name=N'RefAdministrativeFundingControlId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25090' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Facility', @level2type=N'COLUMN',@level2name=N'TemperatureControlledBuildingArea'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12Course', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PsInstitution', @level2type=N'COLUMN',@level2name=N'RefMostPrevalentLevelOfInstitutionId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12Course', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of a postsecondary institution''s most prevalent level.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PsInstitution', @level2type=N'COLUMN',@level2name=N'RefMostPrevalentLevelOfInstitutionId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12Course', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Most Prevalent Level of Institution' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PsInstitution', @level2type=N'COLUMN',@level2name=N'RefMostPrevalentLevelOfInstitutionId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001517' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12Course', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002025' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PsInstitution', @level2type=N'COLUMN',@level2name=N'RefMostPrevalentLevelOfInstitutionId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12Course', @level2type=N'COLUMN',@level2name=N'RefSCEDCourseCodeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25071' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PsInstitution', @level2type=N'COLUMN',@level2name=N'RefMostPrevalentLevelOfInstitutionId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'AnnualBaseContractualSalary'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN',@level2name=N'RefProjectedHighSchoolDiplomaTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total annual base contractual salary of a person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'AnnualBaseContractualSalary'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of projected diploma/credential a person would be awarded in recognition of his/her completion of the curricular requirements.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN',@level2name=N'RefProjectedHighSchoolDiplomaTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Annual Base Contractual Salary' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'AnnualBaseContractualSalary'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Projected High School Diploma Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN',@level2name=N'RefProjectedHighSchoolDiplomaTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000744' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'AnnualBaseContractualSalary'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002026' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN',@level2name=N'RefProjectedHighSchoolDiplomaTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21722' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'AnnualBaseContractualSalary'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25077' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN',@level2name=N'RefProjectedHighSchoolDiplomaTypeId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Assessment', @level2type=N'COLUMN',@level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'LearningResourceIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of assessments administered to English Learners.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Assessment', @level2type=N'COLUMN',@level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to a learning resource by an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'LearningResourceIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Assessment Type Administered to English Learners' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Assessment', @level2type=N'COLUMN',@level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Identifier' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'LearningResourceIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001995' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Assessment', @level2type=N'COLUMN',@level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002027' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'LearningResourceIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22974' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Assessment', @level2type=N'COLUMN',@level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25037' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'LearningResourceIdentifier'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'ContractDaysOfServicePerYear'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'RefLearningResourceIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days per year that a person is expected to work as outlined specifically in his or her employment agreement.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'ContractDaysOfServicePerYear'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used for identification and record-keeping purposes to refer to a learning resource.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'RefLearningResourceIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Contract Days of Service Per Year' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'ContractDaysOfServicePerYear'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Identification System' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'RefLearningResourceIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000047' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'ContractDaysOfServicePerYear'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002028' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'RefLearningResourceIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21047' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'ContractDaysOfServicePerYear'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25036' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier', @level2type=N'COLUMN',@level2name=N'RefLearningResourceIdentificationSystemId'; GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefEmploymentContractTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A broad categorization of the job as it relates to education.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEducationJobType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of employment contract used by an institution.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefEmploymentContractTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A Bureau of Labor Statistics coding system for classifying occupations by work performed and, in some cases, on the skills, education and training needed to perform the work at a competent level. See https://www.bls.gov/soc/2018/major_groups.htm.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStandardOccupationalClassification' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Contract Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefEmploymentContractTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of a postsecondary institution''s most prevalent level.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMostPrevalentLevelOfInstitution' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000737' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefEmploymentContractTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used by an organization for identification and record keeping purposes to refer to a job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobPositionIdentificationSystem' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21714' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELStaffEmployment', @level2type=N'COLUMN',@level2name=N'RefEmploymentContractTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used by an organization for identification and record keeping purposes to refer to a job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobIdentificationSystem' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefControlOfInstitutionId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used for identification and record-keeping purposes to refer to a learning resource.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLearningResourceIdentificationSystem' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of whether a postsecondary institution is operated by publicly elected or appointed officials (public control) or by privately elected or appointed officials and derives its major source of funds from private sources (private control). ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefControlOfInstitutionId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the duties encompassed within a period of military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryDuties' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Control of Institution' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefControlOfInstitutionId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A historical status of records in the IDS.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RecordStatusHistory' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000048' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefControlOfInstitutionId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A kind of discharge a person received from military services.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryDischargeCategory' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21048' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganization', @level2type=N'COLUMN',@level2name=N'RefControlOfInstitutionId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A list of expertise that the person developed during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryExpertise' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'CourseLevelApprovalIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code indicating the broad business activity supported by the job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLocalJobFunction' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that there are school or program developed requirements for student participation in the course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'CourseLevelApprovalIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify a fund which is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Course Level Approval Indicator' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'CourseLevelApprovalIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify Governmental Accounting Standards Board (GASB) revenues.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalGASBRevenueClassification' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001994' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'CourseLevelApprovalIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify the segregation of expenditures by instructional level.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22975' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'CourseLevelApprovalIndicator'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'RefCourseLevelTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe and classify the job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLocalJobCategory' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'RefCourseLevelTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe balance sheet accounts and statement of net position accounts which are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Course Level Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'RefCourseLevelTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the activity for which a service or material object is acquired.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001312' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'RefCourseLevelTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the service or commodity obtained as the result of a specific expenditure.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Course', @level2type=N'COLUMN',@level2name=N'RefCourseLevelTypeId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to record revenue and other receivables by source.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAge2AndOlderCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A military campaign in which the person has been involved during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryCampaigns' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of children ages two and above that can be served.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAge2AndOlderCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s current membership status in the United States National Guard. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNationalGuardIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Age 2 and Older Capacity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAge2AndOlderCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to a learning resource by an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002001' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAge2AndOlderCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code used to identify a job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22976' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAge2AndOlderCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code used to identify a job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAgeUnder2Capacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A value defining the status of the job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobPositionStatus' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of children under the age of two that can be served.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAgeUnder2Capacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Aggregate information related to persons being served by an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPopulationServed' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Age Under 2 Capacity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAgeUnder2Capacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An additional code appended to the Federal Program Code used to identify a subgrant of the grant identified by the Federal Program Code.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002002' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAgeUnder2Capacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An adjustment of the last known circumstances under which the student exited from membership in an educational institution.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedExitOrWithdrawalType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22977' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EarlyLearningAgeUnder2Capacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An alternative manner or form that gives an eligible person access to the work when the copy or phonorecord in the accessible format is used exclusively by the eligible person to permit him or her to have access as feasibly and comfortably as a person without such disability (20 U.S.C. § 121(d)(1)).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAccessibleFormatType' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefEdFactsCertificationStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An entity that represent any type of job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Job' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an educator holds the certification or licensure required by their assignment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefEdFactsCertificationStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An entity that represents any type of job position. A job position represents an instance of a job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPosition' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Certification Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefEdFactsCertificationStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of permission for allocation of a course funding program''s funds for the support of a course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefCourseFundingProgramAllowed' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001997' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefEdFactsCertificationStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the post-program status of a CTE Concentrator in the second quarter after exiting from secondary education.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefPerkinsPostProgramPlacementIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22978' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StaffAssignment', @level2type=N'COLUMN',@level2name=N'RefEdFactsCertificationStatusId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the status of a person within one year of leaving secondary school and who had an individualized education program in effect at the time they left secondary school.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefPartBPostsecondaryOutcomesIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationCalendarSessionId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the status of this student as dropout.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentDropoutStatus' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationCalendarSessionId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an educator holds the certification or licensure required by their assignment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationCalendarSessionId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether special education teachers are fully certified in the State..' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002012' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationCalendarSessionId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the related learning resource meets requirements to be considered high quality instructional material as defined by the organization assigning the indicator.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefHighQualityInstructionalMaterialIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'OrganizationCalendarSessionId'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that an organization shares a facility or space within a facility with another organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFacilityJointUseIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student requires an accessible format according to their IEP or 504 Plan.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAccessibleFormatRequiredIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student was issued an accessible format according to their IEP or 504 Plan. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAccessibleFormatIssuedIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Criteria defined by an organization used to determine a salary schedule.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002012' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Deployment status code issued to military personnel by the U.S. military.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryDeploymentStatusCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the reason for adjusted capacity in a program. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityUtilization', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates if a Local Education Agency (LEA) has provided an assurance that it is in compliance with the State law requiring that a student who brings a firearm to school, or possesses a firearm at school, be expelled for one year, except that such State law shall allow the chief administering officer of a local educational agency to modify such expulsion requirement for a student on a case-by-case basis if such modification is in writing.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLEAGFSAAssuranceofComplianceIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityUtilization', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates if a Local Education Agency has provided an assurance that it is in compliance with the requirement in Section 4141(h) that an LEA receiving ESEA funds have in place a policy requiring referral to the criminal justice or juvenile delinquency system of any student who brings a firearm to a school or possesses a firearm at school. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLEAGFSAPolicyAssuranceIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityUtilization', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether a student was absent 10% or more school days during the school year with an absence being defined as a student not physically on school grounds and was not participating in instruction or instruction-related activities at an approved off-grounds location for at least half the school day.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefChronicStudentAbsenteeismIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002012' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityUtilization', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the program has a written policy addressing diversity, equity and inclusion (DEI).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefDEIPolicyIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FacilityUtilization', @level2type=N'COLUMN',@level2name=N'EnrollmentCapacity'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about a job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about a specific cohort of workforce program participants.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'WorkforceProgramParticipantCohort' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique five-digit number assigned to each federal program as listed in the Assistance Listings. See https://sam.gov/content/assistance-listings' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about a student who has dropped out or potentially may have dropped out of a K12 school.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropout' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Federal Program Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about accessible formats provided to students as part of an individualized program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'000547' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about the activity or activies taking place during an incident.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentActivity' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21538' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about the capacity for an enrollment in an organization such as school, program, or course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about the job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionDetail' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An additional code appended to the Federal Program Code used to identify a subgrant of the grant identified by the Federal Program Code.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about the reason or reasons related to a student dropping out of a K12 school.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropoutReason' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Federal Program Subgrant Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about the score and sections of a staff evaluation assessment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffEvaluationPart' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002010' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information captured on an English learner home language survey.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentHomeLanguageSurvey' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22980' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information defining the status of a job position.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSCEDCourseCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to a military campaign in which the person has been involved during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryCampaigns' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSCEDCourseCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to a military honor that the person received during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryHonors' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSCEDCourseCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to a military occupational specialty of a person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryOccupationalSpecialties' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001517' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSCEDCourseCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to a person applying for a specifing role in an organization (e.g., applying for college, applying to be enrolled in a program).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPersonRoleApplication' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSCEDCourseCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to an organization ordering or purchasing a learning resource.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to barries to employment for a person who participated in programs through the Workforce Innovation and Opportunity Act (WIOA).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationWIOABarriers' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of organization that created the coding system for the financial account information.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to digitial accessiblity for a person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDigitalAccess' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Coding System Organization Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to duties encompassed within a period of military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDuties' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002011' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to employee benefits.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEmployeeBenefit' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22981' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to expertise that the person developed during the service period.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryExpertise' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to issuing a learning resource to a person for a period of time.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIssued' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe balance sheet accounts and statement of net position accounts which are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to learning devices used by a person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonLearningDevice' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Balance Sheet Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to military deployment for a person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002007' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to outcomes in a program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationAttainment' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22982' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to participation in workforce programs through the Workforce Innovation and Opportunity Act (WIOA).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationWIOA' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to persons as board members within an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify a fund which is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to policies within a K12 location education agency.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Fund Classification' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to project bassed learning offered by an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002008' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the collection of data used to record this information.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DataCollection' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22983' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the compensation of staff members.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the duty stations (locations) encompassed within a period of military service.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryServiceLocations' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the eligibility of a person to be transported using public funds.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Program Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the jurisdiction of an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJurisdiction' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002009' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) based on the address latitude and longitude location.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonAddressNcesSide' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22984' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the speed of digital access for a person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDigitalAccessSpeed' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information related to the type of personal information used (e.g., Birth Certificate) and for what purpose.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonPersonalInformationVerification' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to record revenue and other receivables by source.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Provides a listing of all elements in CEDS for this version along with an indication of the table and columns where data for this element would be stored.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'_CEDStoNDSMapping' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Revenue Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Provides a listing of all elements in CEDS for this version.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'_CEDSElements' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002003' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Summary of financial transations, using a coding system local to the organization, that provides information to external financial statement users.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22985' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The activity taking place during the occurrence. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefIncidentActivity' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The child''s parent or guardian is a teen parent between ages 10 to 19 years.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTeenParentIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the activity for which a service or material object is acquired.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of Governmental Accounting Standards Board (GASB) revenues.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountGASBRevenueClassification' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Function Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of participation by a school in the National School Lunch Program.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNSLPStatus' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002004' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The current status of a learning resource owned or leased by an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22986' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSCEDCourseCode' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The group of students to whom related or ancillary service is offered within the formal educational system or by an outside agency which provides non-instructional service to support the general welfare of students.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify the segregation of expenditures by instructional level.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of a credential award''s relationship to another credential award.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefCredentialAwardRelationship' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Level of Instruction Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The organization of early learning subject matter and related learning experiences provided for the instruction of children on a regular or systematic basis, usually for a predetermined period of time (e.g., a semester or two-week workshop) to an individual or group of children (e.g., a class or group). This further defines course at the domain level.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002006' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The organization responsible for creating the information related to a job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJob' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22987' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position or role the person performs on the board.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefBoardMemberPositionType' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The possible values associated with the criteria.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValue' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the service or commodity obtained as the result of a specific expenditure.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The qualification status for the transportation of a person that entitles an organization to receive state transportation aid.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTransportationStateAidQualificationType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Object Code' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason or reasons the student dropped out of school.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefDropoutReasonType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002005' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason why the job position was given the job position status of cancelled.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobPositionStatusCancelledReason' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22988' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between a credential and an applicable grade level or grade levels.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between a job and credential or credentials required for that job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobCredential' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether special education teachers are fully certified in the State..' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between a job and staff assignment of a K12 staff member.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobK12StaffAssignment' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Special Education Teacher Qualification Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between a job and the competency or competencies required for that job.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobCompetency' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001996' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between an employed staff member and the job position offered by an organization.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffEmploymentJobPosition' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22993' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between course and the financial account that would be used to fund the course.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseFundingSource' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between organization financial and local financial account.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The group of students to whom related or ancillary service is offered within the formal educational system or by an outside agency which provides non-instructional service to support the general welfare of students.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between the salary schedule criteria value and the salary schedule salary value.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValueSalary' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Availability Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between the staff compensation and the financial account used for the compensation.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001998' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between two calendar sessions, generally used with Session Sequence Number to order sessions.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSessionRelationship' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22994' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between two courses, generally used with Sequence of Course to order courses.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseRelationship' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between two credential awards, genrally used to capture extentions to an award (e.g., An endorsement for a teaching license).' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardRelationship' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the reason for adjusted capacity in a program. ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The relationship between two OrganizationPersonRole records.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPersonRoleRelationship' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Adjusted Capacity Reason Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The responsibility of an early learning organization to a student.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationStudentResponsibility' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'002000' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The salary for the salary schedule and if relevant any occupation related classifications.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleSalary' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22973' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific grade or combination of grades approved by an organization to be offered by an education institution.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefGradeLevelsApproved' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of a record in the IDS.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RecordStatus' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of project-based instruction being offered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the Learning Resource as of the status start date.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLearningResourceStatus' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Project-Based Learning Type' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The transportation status of the person.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTransportationStatusType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001992' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of delinquent programs under Title I, Part D, Subpart 1 (State Agency) of ESEA as amended or under Title I, Part D, Subpart 2 (LEA) of ESEA, as amended.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefDelinquentProgramType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22992' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of eligibility for transporting a person at public expense.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTransportationPublicExpenseEligibilityType' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of membership for the board member.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefBoardMembershipType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of assessments administered to English Learners.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of neglected programs under Title I, Part D, Subpart 1 (State Agency) of ESEA as amended.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Assessment Type Administered to English Learners' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of organization that created the coding system for the financial account information.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001995' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of organization that created the coding system for this element.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefCodingSystemOrganizationType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22974' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of project-based instruction being offered.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of projected diploma/credential a person would be awarded in recognition of his/her completion of the curricular requirements.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectedHighSchoolDiplomaType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an educator holds the certification or licensure required by their assignment.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of assessments administered to English Learners.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Certification Status' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique five-digit number assigned to each federal program as listed in the Assistance Listings. See https://sam.gov/content/assistance-listings' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001997' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus'; +EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The version of the IDS.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IDSVersion' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22978' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus'; +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEducationJobType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStandardOccupationalClassification' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMostPrevalentLevelOfInstitution' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001917' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobPositionIdentificationSystem' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20898' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobIdentificationSystem' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLearningResourceIdentificationSystem' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryDuties' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RecordStatusHistory' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001917' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryDischargeCategory' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20898' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryExpertise' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLocalJobFunction' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalFundClassification' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalGASBRevenueClassification' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001917' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20898' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalProgramCode' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordStartDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLocalJobCategory' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalBalanceSheetCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalFunctionCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialExpenditureLocalObjectCode' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountLocalRevenueCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryCampaigns' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNationalGuardIndicator' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIdentifier' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionIdentifier' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobIdentifier' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobPositionStatus' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPopulationServed' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_GlobalId', @value=N'001918' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramSubgrantCode' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=20899' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedExitOrWithdrawalType' GO -EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_GlobalId, CEDS_Element, CEDS_URL, and CEDS_Def_Desc extended properties.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAccessibleFormatType' GO -EXEC sys.sp_addextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN',@level2name=N'RecordEndDateTime' +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Job' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPosition' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefCourseFundingProgramAllowed' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefPerkinsPostProgramPlacementIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefPartBPostsecondaryOutcomesIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentDropoutStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEdFactsCertificationStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSpecialEducationTeacherQualificationStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefHighQualityInstructionalMaterialIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFacilityJointUseIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAccessibleFormatRequiredIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAccessibleFormatIssuedIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteria' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefMilitaryDeploymentStatusCode' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAdjustedCapacityReasonType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLEAGFSAAssuranceofComplianceIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLEAGFSAPolicyAssuranceIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefChronicStudentAbsenteeismIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefDEIPolicyIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobDetail' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'WorkforceProgramParticipantCohort' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropout' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IndividualizedProgramAccessibleFormat' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IncidentActivity' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationEnrollmentCapacity' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionDetail' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentDropoutReason' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffEvaluationPart' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12StudentHomeLanguageSurvey' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobPositionStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryCampaigns' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryHonors' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryOccupationalSpecialties' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPersonRoleApplication' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceOrder' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationWIOABarriers' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDigitalAccess' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDuties' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefEmployeeBenefit' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryExpertise' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceIssued' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonLearningDevice' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryDeployment' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationAttainment' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ProgramParticipationWIOA' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'BoardMembership' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'K12LeaPolicy' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationProjectBasedLearning' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DataCollection' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensation' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonMilitaryServiceLocations' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonTransportationEligibility' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJurisdiction' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonAddressNcesSide' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonDigitalAccessSpeed' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PersonPersonalInformationVerification' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'_CEDStoNDSMapping' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'_CEDSElements' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'FinancialAccountLocal' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefIncidentActivity' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTeenParentIndicator' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountGASBRevenueClassification' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNSLPStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'LearningResourceStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefSCEDCourseCode' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefStudentSupportServiceAvailabilityType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefCredentialAwardRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELCourse' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationJob' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefBoardMemberPositionType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValue' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTransportationStateAidQualificationType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefDropoutReasonType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefJobPositionStatusCancelledReason' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialDefGradeLevel' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobCredential' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobK12StaffAssignment' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JobCompetency' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffEmploymentJobPosition' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseFundingSource' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationFinancialFinancialAccountLocal' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleCriteriaValueSalary' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'StaffCompensationFundingSource' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationCalendarSessionRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CourseRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CredentialAwardRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationPersonRoleRelationship' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ELOrganizationStudentResponsibility' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'OrganizationSalaryScheduleSalary' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefGradeLevelsApproved' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RecordStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefLearningResourceStatus' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTransportationStatusType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefDelinquentProgramType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefTransportationPublicExpenseEligibilityType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefBoardMembershipType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefNeglectedProgramType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFinancialAccountCodingSystemOrganizationType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefCodingSystemOrganizationType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectBasedLearningType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefProjectedHighSchoolDiplomaType' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefAssessmentTypeAdministeredToEnglishLearners' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'RefFederalProgramCode' +GO +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'See the CEDS_Def_Desc extended property.' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'IDSVersion' GO -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Based on URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'BasedOnUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Intended End User Role', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceIntendedEndUserRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Time Required', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TimeRequired' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Typical Age Range Minimum', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Typical Age Range Maximum', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Interactivity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Text Complexity Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Text Complexity System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Short Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Family Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyTitle' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Family Short Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyShortName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RefLearnerActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Prerequisite', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Prerequisite' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Creation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Maximum Time Allowed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumTimeAllowed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Maximum Time Allowed Unit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityMaximumTimeAllowedUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Due Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Due Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Maximum Attempts Allowed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumAttemptsAllowed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Add to Grade Book Flag', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityAddToGradeBookFlagId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Release Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'ReleaseDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Weight', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Possible Points', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'PossiblePoints' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Rubric URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RubricUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Scaffolding Item Flag', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScaffoldingItemFlag' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Hint Count', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintCount' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Hint Included Answer', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintIncludedAnswer' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response First Attempt Duration', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'FirstAttemptDuration' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Start Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Administration Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Administration Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Administration Start Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Administration Finish Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Administration Finish Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Security Issue', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Security Issue', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Date Updated', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateUpdated' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Date Created', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Enrollment Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEnrollmentStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Administration Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Sequence Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Sequence Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section GUID', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment GUID', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accreditation Agency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefAccreditationAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Licensing Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefELFacilityLicensingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Start Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionStartTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session End Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionEndTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed While Enrolled', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed While Enrolled', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed While Enrolled', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed While Enrolled', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed After Exit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed After Exit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed After Exit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed After Exit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quarterly Earnings', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'Earnings' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmploymentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Person Employed in Multiple Jobs Count', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'EmployedInMultipleJobsCount' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Record Reference Period Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Record Reference Period End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Record Administrative Data Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefERAdministrativeDataSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Workforce Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefWfProgramParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Educational Use', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceEducationalUseId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Delivery Device Details', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'DeliveryDeviceDetails' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Assigned Support', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Assigned Support', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Assigned Support', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'AssignedSupport' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Assigned Support', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssignedSupportFlag' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Activate by Default', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Activate by Default', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Activate by Default', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Personal Needs Profile Activate by Default', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Provider', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Provider' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Preliminary Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'PreliminaryIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diagnostic Statement Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatementSource' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Number of Responses', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'NumberOfResponses' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Subtest Item Weight Correct', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightCorrect' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Subtest Item Weight Incorrect', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightIncorrect' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Subtest Item Weight Not Attempted', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightNotAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Identifier Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentSubtestIdentifierTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Days of Instruction', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'DaysOfInstructionPriorToAssessment' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Retest Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RetestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Creation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Scheduled Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Scheduled End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Actual Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Actual Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Actual End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Actual End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Language Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedsProfileContentLanguageLearnerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Hazard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Support Tool Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSupportToolId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Usage Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Usage Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Link Indication Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedLinkIndicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Speech Rate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'SpeechRate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Volume', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Volume' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Invert Color Choice', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'InvertColorChoice' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Magnification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'Magnification' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Braille Grade Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleGradeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Number of Braille Dots Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedNumberOfBrailleDotsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Number of Braille Cells', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'NumberOfBrailleCells' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Braille Mark Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleMarkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Braille Dot Pressure', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'BrailleDotPressure' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Braille Status Cell Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleStatusCellTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Item Translation Display Language Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ItemTranslationDisplayLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Funding Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'FundingSource' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Publish Activity Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'PublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'Capacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session End Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Evaluation Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationMethod' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Evaluation Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Expiration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SessionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Location Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'LocationName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Start Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDSessionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Instructional Delivery Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDInstructionalDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Initiative Maximum Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Initiative Minimum Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Initiative Score Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ScoreLevel' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Initiative Participation Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Initiative Participation End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Initiative Participation Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Revenue Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Level Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Level Feedback', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Feedback' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Level Position', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Level Quality Label', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Quality' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Level Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Score' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Position', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Criterion Weight', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Grade Span', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDGradeSpan' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Referral Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Referral Outcome', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RefReferralOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Referral Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Reason' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Referral Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Source' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Referral Type Received', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralTypeReceived' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Referred To', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferredTo' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Short Name of Organization', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reason for Declined Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ReasonForDeclinedServices' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Sponsoring Agency Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SponsoringAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Approved Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Approved Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Delivery Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Delivery Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Thesis or Dissertation Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'ThesisOrDissertationTitle' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Union Membership Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Weeks Employed Per Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'WeeksEmployedPerYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Work-based Learning Opportunity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Work-based Learning Opportunity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Work-based Learning Opportunity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Work-based Learning Opportunity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Work-based Learning Opportunity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Part C to Part B Notification Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA IEP Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAIEPStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Outcome Time Point', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefOutcomeTimePointId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Outcomes Summary Progress A Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressAIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Outcomes Summary Progress B Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressBIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Outcomes Summary Progress C Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressCIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Outcomes Summary Rating A', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingAId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Outcomes Summary Rating B', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingBId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Outcomes Summary Rating C', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingCId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Method of Service Delivery', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefMethodOfServiceDeliveryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Valid End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Valid Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other Last Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other First Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other Middle Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Subject Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Subject Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Subject Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Subject Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Subject Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Planned Service Frequency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefServiceFrequencyId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Planned Service Duration', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceDuration' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reason for Delay of Transition Conference', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RefReasonDelayTransitionConfId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Previous Version Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'PreviousVersionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Current Version Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CurrentVersionIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accreditation Agency Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accreditation Agency Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Activity Time Involved', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTimeInvolved' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Activity Time Measurement Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RefActivityTimeMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'APIP Interaction Sequence Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'APIPInteractionSequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Activity Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'ActivityDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Administration Period Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentAdministrationPeriodDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Adaptive Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Algorithm Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Algorithm Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmVersion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form GUID', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormGUID' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Item Field Test Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentFormSectionItemFieldTestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Descriptive Feedback Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AssessmentItemResponseDescriptiveFeedbackDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Score Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemResponseScoreStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Database Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionDatabaseName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session GUID', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionGUID' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Completion Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentRegistrationCompletionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Completion Status Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssessmentRegistrationCompletionStatusDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Data Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultDataTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Revision Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentRevisionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Descriptive Feedback Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultDescriptiveFeedbackDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Score Standard Error', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultScoreStandardError' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Score Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Open Enrollment Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolOpenEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Department Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Department Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Insurance Deductible', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'InsuranceDeductible' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Public Education Mill Rate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'PublicEducationMillRate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Total Assessed Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityTotalAssessedValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Campus Facility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Component or Fixture Check Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureCheckDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Component or Fixture Serviced Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Component or Fixture Scheduled Serviced Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureScheduledServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Component or Fixture Useful Life', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureUsefulLife' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Available Utilized Instructional Space', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'AvailableUtilizedInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Capacity Factor Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingCapacityFactorIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Enrollment Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'FacilityEnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Relationship Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RefOrganizationRelationshipId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Ownership Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityOwnershipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Source URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkSourceUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Typical Age Range Minimum', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Typical Age Range Maximum', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Date Effective', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefDateEffective' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Offered Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Offered End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'CTDL Audience Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCTDLAudienceLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Agent Role Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAgentRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Progress Achieving English Language Proficiency Indicator Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Progress Achieving English Language Proficiency State Defined Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ProgressAcheivingEnglishLearnerProficiencyStateDefinedStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApipDescription', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Race', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RefRaceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Paraprofessional Qualification Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefParaprofessionalQualificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Participation Status for Math', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Participation Status for Reading and Language Arts', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusRlaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Persistently Dangerous Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'PersistentlyDangerousStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Personal Title or Prefix', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Prefix' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Position Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'PositionTitle' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Postal Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Postal Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Prekindergarten Eligibility', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Prekindergarten Eligible Ages for Non-IDEA Students', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RefPreKEligibleAgesNonIDEAId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Disability Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'PrimaryDisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Telephone Number Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Telephone Number Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Educational Job Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Educational Job Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proficiency Target Status for Math', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Length Hours', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'ProgramLengthHours' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Length Hours Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefProgramLengthHoursTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RefProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Projected Graduation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ProjectedGraduationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Public School Choice Implementation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolChoiceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reason Not Tested', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotTestedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Recognition for Participation or Performance in an Activity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RefActivityRecognitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reconstituted Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefReconstitutedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Related Competency Definitions', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RelatedCompetencyDefinitions' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Restructuring Action', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefRestructuringActionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Retirement Benefits', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationRetirementBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Salary for Teaching Assignment Only Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'SalaryForTeachingAssignmentOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Improvement Funds Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementFundsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Improvement Grant Intervention Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSigInterventionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Year Minutes', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Score Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Sequence of Course', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SCEDSequenceOfCourse' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Designator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'SessionDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Sex', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefSexId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Single Sex Class Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefSingleSexClassStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Exit Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Paraprofessional', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Paraprofessional', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Related Services Personnel', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Related Services Personnel', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Services Exit Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationServicesExitDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Teacher', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Teacher', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Standardized Admission Test Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'StandardizedAdmissionTestScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Standardized Admission Test Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RefStandardizedAdmissionTestId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Abbreviation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State of Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefStateOfResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Street Number and Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Street Number and Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Attendance Rate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'AttendanceRate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsStudentLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Credential Basis', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Credential Basis', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Credential Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Credential Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefPersonTelephoneNumberTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RefTitleIIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Instructional Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIInstructionalServicesId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Program Staff Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Program Staff Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I School Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefTitleISchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Support Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RefK12LeaTitleISupportServiceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title IV Participant and Recipient', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'TitleIVParticipantAndRecipient' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Total Benefits', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Size of High School Graduating Class', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'TotalNumberInClass' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Size of High School Graduating Class', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolGraduatingClassSize' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Total Salary', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalSalary' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Transfer-ready', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefTransferReadyId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tuition Residency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefTuitionResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'United States Citizenship Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefUSCitizenshipStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Years of Prior Teaching Experience', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Eligibility Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proof of Residency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proof of Residency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Immunization Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'ImmunizationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Required Immunization', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Vision Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefVisionScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hearing Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHearingScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dental Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Weight at Birth', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeightAtBirth' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Weeks of Gestation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeeksOfGestation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Developmental Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Developmental Evaluation Finding', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEvaluationFindingId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Language Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'ISO 639-2 Language Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Services Received', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesReceivedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Services Received', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefServicesId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Application Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Application Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'EnrollmentDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Participation in School Food Service Programs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Participation in School Food Service Programs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RefSchoolFoodServiceProgramId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Custodial Parent or Guardian Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'CustodialRelationshipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of People in Family', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInFamily' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of People in Household', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInHousehold' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Family Income', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIncome' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Source of Family Income', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefFamilyIncomeSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Income Calculation Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefIncomeCalculationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21481', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21482', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefKindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21485', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21486', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21487', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'DaysInSession' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'FirstInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21489', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'LastInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MinutesPerDay' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21492', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21493', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21494', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21495', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21496', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentCost' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21497', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentReporterTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21498', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentReporterId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21500', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21501', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21502', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DurationOfDisciplinaryAction' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21503', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RelatedToZeroTolerancePolicy' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21504', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'FullYearExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21505', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'ShortenedExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21506', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentTimeDescriptionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21508', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21509', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21509', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21510', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassBeginningTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21511', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassEndingTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21512', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassMeetingDays' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21513', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassPeriod' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21514', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'TimeDayIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21515', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RefInstructionLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21516', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'PrimaryAssignment' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21519', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21519', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21520', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstEntryDateIntoUSSchool' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21521', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21522', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefNonPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21523', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21523', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21526', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentSchoolAgeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21527', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIIAccountabilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21529', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodOfCwdId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21530', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21531', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotCompletingId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21532', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21533', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ConsolidatedMepFundsStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21534', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21534', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21536', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21537', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'TechnologySkillsStandardsMet' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21538', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21544', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusRLAId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21546', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodFirearmsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21547', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIDEADisciplineMethodFirearmId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21548', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefFirearmTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21549', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21549', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21549', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21550', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefIDEAEnvironmentELId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21550', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentECId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21553', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21553', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21554', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'PrioritizedForServices' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21555', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ContinuationOfServicesStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefTechnologyLiteracyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21560', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'PublicSchoolChoiceFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21563', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21563', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21564', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentPretestOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21565', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefProficiencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21566', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesSchoolChoice20PercentObligation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21569', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'DisabilityStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21570', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'EducationalServicesAfterRemoval' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21573', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'SingleParentOrSinglePregnantWoman' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21577', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21577', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21578', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21578', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21579', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentActionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21580', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21580', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21581', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefNonTraditionalGenderStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21582', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RefStaffPerformanceLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21585', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteParticipant' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21586', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteNonTraditionalCompletion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefK12ResponsibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21590', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'LocationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21590', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'Location' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21591', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'AlternateDayName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21592', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAbsentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21593', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefPresentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21594', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21595', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22008', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22008', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22009', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Provider' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22010', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'PreliminaryIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22011', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatementSource' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'NumberOfResponses' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22013', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightCorrect' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22014', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightIncorrect' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22015', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightNotAttempted' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22016', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentSubtestIdentifierTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22017', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'DaysOfInstructionPriorToAssessment' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22018', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RetestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22019', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22020', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22022', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22023', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22023', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22024', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22024', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedsProfileContentLanguageLearnerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSupportToolId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22028', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22028', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22029', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedLinkIndicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'SpeechRate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22032', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Volume' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22033', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'InvertColorChoice' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22034', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'Magnification' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleGradeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22036', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedNumberOfBrailleDotsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22037', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'NumberOfBrailleCells' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22038', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleMarkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22040', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'BrailleDotPressure' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleStatusCellTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22042', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ItemTranslationDisplayLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'KeywordTranslationLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefKeywordTranslationsLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSigningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22045', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedAlternativeRepresentationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22046', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSpokenSourcePreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ReadAtStartPreferenceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22049', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUserSpokenPreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22050', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'AssessmentNeedDirectionsOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22051', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedMaskingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22052', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementTextMessagingString' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22053', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementSoundFileUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22055', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'AssessmentNeedTimeMultiplier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22056', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'LineReaderHighlightColor' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'OverlayColor' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22058', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'ForegroundColor' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22059', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'BackgroundColor' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedIncreasedWhitespacingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22061', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22062', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'ScorePublishDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22065', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CardiopulmonaryResuscitationCertification' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22066', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'FirstAidCertification' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22067', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22068', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22069', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22070', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22070', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22070', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22070', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22070', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21644', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RefOrganizationLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21152', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21765', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeInstructionalProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefGoalsForAttendingAdultEducationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21769', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'PostsecondaryTransitionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21771', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21775', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefAeCertificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21787', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalApprovedECCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22031', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Pitch' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepMathComplexityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22075', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22076', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedbackSource' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22077', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22077', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22078', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22166', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepAspectsOfReadingId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22101', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssessmentNeedType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22102', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22103', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingTemplateUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22104', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22105', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22106', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'OutcomeDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22107', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22109', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ModalFeedbackXml' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22110', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ItemBodyXml' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22111', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22111', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22191', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'FinalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22156', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22157', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightHolderName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22158', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22159', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22160', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22161', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22162', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22466', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22467', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22467', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22468', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'ThesisOrDissertationTitle' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22469', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22470', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'WeeksEmployedPerYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22472', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22473', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAIEPStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22475', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefOutcomeTimePointId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22476', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressAIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22477', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressBIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22478', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressCIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22479', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingAId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22480', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingBId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22481', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingCId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22482', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefMethodOfServiceDeliveryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22483', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22484', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22485', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22486', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22487', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22492', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefServiceFrequencyId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22493', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceDuration' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22494', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RefReasonDelayTransitionConfId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22498', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'PreviousVersionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CurrentVersionIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22500', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22500', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22502', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTimeInvolved' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22503', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RefActivityTimeMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22504', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'APIPInteractionSequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22505', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'ActivityDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22506', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentAdministrationPeriodDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22507', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22508', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22509', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmVersion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22510', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormGUID' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22511', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentFormSectionItemFieldTestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22512', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AssessmentItemResponseDescriptiveFeedbackDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22513', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemResponseScoreStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22514', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionDatabaseName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22515', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionGUID' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22516', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentRegistrationCompletionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22517', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssessmentRegistrationCompletionStatusDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultDataTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22519', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentRevisionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22520', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultDescriptiveFeedbackDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22522', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultScoreStandardError' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22523', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22524', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolOpenEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22525', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22525', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22526', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22529', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesOfferedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22530', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'AccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22530', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialAccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22531', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22532', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialExpenditureProjectReportingCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22533', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionActorIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22534', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22535', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22536', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22537', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessRightsUrlId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22540', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAuthorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22541', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22542', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceDateModified' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22544', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorEmail' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22545', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherEmail' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22547', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22548', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkPublicationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22549', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefSequence' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22552', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22552', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22553', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22553', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22554', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22554', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22555', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryConnectedStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryActiveStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22557', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryVeteranStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22560', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'StaffApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22561', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefBillableBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22562', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationExitDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22885', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'FacilityEnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22886', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RefOrganizationRelationshipId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22887', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityOwnershipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22888', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkSourceUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22889', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22890', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22891', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefDateEffective' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22892', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22893', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22894', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCTDLAudienceLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22895', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAgentRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22896', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22897', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ProgressAcheivingEnglishLearnerProficiencyStateDefinedStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApipDescription', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22955', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RefRaceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21110', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21112', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidAwardAmount' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21113', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21115', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21117', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstTimePostsecondaryStudent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21118', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21118', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21118', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21121', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'GenerationCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21123', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21123', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21124', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21124', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21125', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21125', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21126', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelToBeAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21126', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21127', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverage' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21128', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21128', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21128', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21129', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'GradePointAverageGivenSession' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21130', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21131', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21131', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21132', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyCohortYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21133', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21134', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefGunFreeSchoolsActReportingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21135', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'HarassmentOrBullyingPolicy' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21136', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationHealthBenefits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21137', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21137', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21140', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefHighSchoolGraduationRateIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21141', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21141', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21142', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'HighlyQualifiedTeacherIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21143', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'HireDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21144', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'HispanicLatinoEthnicity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21146', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RefHomelessNighttimeResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21149', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'HomelessnessStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21150', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'HonorDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21165', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InitialEnrollmentTerm' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21167', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefInstitutionTelephoneTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21168', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursAttempted' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21169', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefInstructionalActivityHoursId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21170', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefIntegratedTechnologyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21171', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'LastQualifyingMoveDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21172', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21173', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21175', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'SupervisoryUnionIdentificationNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefMagnetSpecialProgramId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21182', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MarkingPeriodName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21183', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MidTermMark' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21184', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21186', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21187', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21188', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefMepStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21190', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'CountyName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21190', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'AddressCountyName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21191', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'NameOfInstitution' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21194', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RefNeglectedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefVisaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21197', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'NormalLengthTimeForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21198', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefTimeForCompletionUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21201', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysAbsent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21202', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21202', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21205', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationOtherBenefits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21206', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'OtherName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21207', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefParaprofessionalQualificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21209', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusRlaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21210', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'PersistentlyDangerousStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21212', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Prefix' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21213', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'PositionTitle' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21214', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21214', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21216', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21217', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RefPreKEligibleAgesNonIDEAId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21218', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'PrimaryDisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21219', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21219', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21220', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21220', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21221', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21222', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21223', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'ProgramLengthHours' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21224', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefProgramLengthHoursTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21225', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RefProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21226', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ProjectedGraduationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21227', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolChoiceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type of academic distinctions earned by or awarded to the student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicHonorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the state, district, or school met the Adequate Yearly Progress (AYP) requirements for the school year, as determined by the state-established criteria.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAypStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of education institution as classified by its funding source.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdministrativeFundingControl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the specific group of students whose needs the alternative school is designed to meet.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAlternativeSchoolFocus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of the academic content or subject area (e.g., arts, mathematics, reading, or a foreign language) being evaluated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicSubject', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a student participated in an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentParticipationIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason for which an assessment is designed or delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method that the instructor of the course uses to report the performance and achievement of all students. It may be a qualitative method such as individualized teacher comments or a quantitative method such as a letter or a numerical grade. In some cases, more than one type of reporting method may be used.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionAssessmentReportingMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category of an assessment based on format and content.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Basic Classification is an update of the traditional classification framework developed by the Carnegie Commission on Higher Education in 1970 to support its research program, and later published in 1973 for use by other researchers.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCarnegieBasicClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether the CIP Code is referencing an enrollment program or an award program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The version of CIP being reported.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipVersion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of whether a postsecondary institution is operated by publicly elected or appointed officials (public control) or by privately elected or appointed officials and derives its major source of funds from private sources (private control). ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefControlOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of corrective actions under ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectiveActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique two character International Organization for Standardization (ISO) code for the country in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCountry', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credit (unit, semester, or quarter) associated with the credit hours earned for the course. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseGpaApplicability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the general nature and difficulty of instruction provided throughout a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelCharacteristic', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that an academic course has been repeated by a student and how that repeat is to be computed in the student''s academic grade average.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseRepeatCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the category of credential a person holds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value awarded for the completion of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditTypeEarned', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of how CTE concentrators are included in the state''s computation of its graduation rate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteGraduationRateInclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of a person''s attendance associated with an Attendance Event Type and Attendance Event Date in an organization-person-role context.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s classification as dependent or independent with regards to eligibility for Title IV Federal Student aid.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDependencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The titles of employment, official status, or rank of education staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12StaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of electronic mail (e-mail) address listed for a person or organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmailType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' An indication of whether the school or district met the Elementary/Middle Additional Indicator requirement in accordance with state definition for the purpose of determining Adequate Yearly Progress (AYP).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefElementaryMiddleAdditional', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of the student''s progress at the end of a given school term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEndOfTermStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether a student''s name was, is, or will be officially registered on the roll of a school or schools.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the enrollment type associated with the enrollment award level of a person at the beginning of a term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the student''s enrollment status for a particular term as defined by the institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The process by which a student enters a school during a given academic session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Those persons who may be removed (deleted) from a cohort (or subcohort). For the Graduation Rates and Fall Enrollment retention rate reporting, persons may be removed from a cohort if they left the institution for one of the following reasons: death or total and permanent disability; service in the armed forces (including those called to active duty); service with a foreign aid service of the federal government, such as the Peace Corps; or service on official church missions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCohortExclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The circumstances under which the student exited from membership in an educational institution. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of financial aid awarded to a person for the academic term/year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the reported Grade Point Average is weighted or unweighted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGpaWeightedIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or local education agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, as defined by Title 18, Section 921.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGunFreeSchoolsActReportingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of diploma/credential that is awarded to a person in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the High School Graduation Rate requirement in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolGraduationRateIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary nighttime residence of the person at the time the person was identified as homeless.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHomelessNighttimeResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of increased learning time provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncreasedLearningTimeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of communication number listed for an organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstitutionTelephoneType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of measure of student instructional activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalActivityHours', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the extent to which the district has effectively and fully integrated technology, as defined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIntegratedTechnologyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the improvement stage for AYP of the local education agency (LEA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of whether a postsecondary institution''s highest level of offering is a program of 4-years or higher (4 year), 2-but-less-than 4-years (2 year), or less than 2-years.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLevelOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A school that has been designed: 1) to attract students of different racial/ethnic backgrounds for the purpose of reducing, preventing, or eliminating racial isolation; and/or 2)to provide an academic or social focus on a particular theme (e.g., science/math, performing arts, gifted/talented, career academy or foreign language).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMagnetSpecialProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of services received by participating migrant students in the migrant education program (MEP).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time of year that a Migrant Education Program operates.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of employment, official status, or rank of staff working in the Migrant Education Program (MEP).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeglectedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of a non-US citizen''s Visa type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of measurement for length of time for completion.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTimeForCompletionUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether paraprofessionals are classified as qualified for their assignment according to state definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParaprofessionalQualification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the 95 percent participation requirement in the mathematics assessment in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParticipationStatusAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The groups of students for whom pre-kindergarten programs are available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrekindergartenEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ages of children not served under IDEA to whom the LEA''s pre-kindergarten services are available. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreKEligibleAgesNonIDEA', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The major or overriding disability condition that best describes a person''s impairment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A general job classification that describes staff that performs duties requiring a high degree of knowledge and skills generally acquired through at least a baccalaureate degree (or its equivalent obtained through special study and/or experience) including skills in the field of education, educational psychology, educational social work, or an education therapy field.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalEducationJobClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the math proficiency target in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyTargetAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The documented or assumed reason a student is no longer being served by a special program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of hours (credit or contact) by which the normal length of a program of study is measured.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramLengthHoursType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The system outlining instructional or non-instructional activities and procedures designed to accomplish a predetermined educational objective or set of objectives or to provide support services to a person and/or the community.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the LEA was able to implement the provisions for public school choice under Title I, Part A, Section 1116 of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolChoiceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason a student is not tested.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotTested', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of recognition given to the student for accomplishments in a co-curricular, or extra-curricular activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityRecognitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the school was restructured, transformed or otherwise changed as a consequence of the state’s accountability system under ESEA or as a result of School Improvement Grants (SIG).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReconstitutedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRestructuringAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school received funds under Section 1003 of ESEA, as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementFunds', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of intervention used by the school under the School Improvement Grant (SIG).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSigInterventionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the improvement stage of the school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the level of the education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of education institution as classified by its primary focus. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A prescribed span of time when an education institution is open, instruction is provided, and students are under the direction and guidance of teachers and/or education institution administration. A session may be interrupted by one or more vacations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The concept describing the biological traits that distinguish the males and females of a species.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSex', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Section in a co-educational school where only male or only female students are permitted to take the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSingleSexClassStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason children who were in special education at the start of the reporting period were not in special education at the end of the reporting period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of test prepared and administered by an agency that is independent of any postsecondary education institution and is typically used for admissions purposes. Tests provide information about prospective students and their academic qualifications relative to a national sample.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStandardizedAdmissionTest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The abbreviation for the state (within the United States) or outlying area in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefState', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Classification of a person enrolling in credit-granting courses at a postsecondary institution since completing high school (or its equivalent) as either an undergraduate or graduate student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsStudentLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of related or ancillary services offered or provided to a person or a group of persons within the formal educational system or by an outside agency which provides non-instructional services to support the general welfare of students. This includes physical and emotional health, the ability to select an appropriate course of study, admission to appropriate educational programs, and the ability to adjust to and remain in school through the completion of programs. In serving a student with an identified disability, related services include developmental, corrective, or supportive services required to ensure that the person benefits from special education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the pre-determined criteria for granting the teaching credential that a person holds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialBasis', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the category of a legal document giving authorization to perform teaching assignment services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of communication number listed for a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of communication number listed for a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An access mode through which the intellectual content of a described learning resource or adaptation is communicated; if adaptations for the resource are known, the access modes of those adaptations are not included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessModeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Specifies the format for a learning resource that is a book. Other options may be considered for inclusion in the option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceBookFormatType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies a single input method that is sufficient to control the described learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceControlFlexibilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The media or file subtype of the digital resource being based on the Media Types and Subtypes, formerly known as MIME types, defined by the Internet Assigned Numbers Authority (IANA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaSubType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The media or file type of the digital resource being based on the media types defined by the Internet Assigned Numbers Authority (AINA) at http://www.iana.org/assignments/media-types.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Accessible content features included with the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceMediaFeatureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of physical media on which the Learning Resource is delivered or available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourcePhysicalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'When the Competency Definition is used as a node in a learning map, this element supports alternative pathways based on a learner''s accessibility profile. The type selected indicates which accessibility profile the node is designed to address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefNodeAccessibilityProfile', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates if the competency described in the Competency Definition Statement can be tested using one or more assessment items.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefTestabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A taxonomy system for coding postsecondary courses in NCES research studies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNCESCollegeCourseMapCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of audience for the professional development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDAudienceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which a session is delivered', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDDeliveryMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The purposes for which an activity is approved.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityApprovedPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credit awarded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the level of a professional development activity on the beginner to advanced continuum.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The indication of the type of professional development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The current status of a professional development session', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDSessionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary setting or medium of professional development delivery.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDInstructionalDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'These codes are for recording revenue and other receivables by source. Major revenue categories have codes ending in 00 and are further subdivided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountRevenueCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The outcome of the referral.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReferralOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A categorization of the audience for which the professional development activity is intended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityTargetAudience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method of delivery of technical assistance received/provided', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceDeliveryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of technical assistance provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work-based learning opportunity a student participated in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWorkbasedLearningOpportunityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of an individualized services plan for a specified reporting period or on a specified date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAIEPStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The point in time for which the result is used for an outcome measure.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutcomeTimePoint', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which the services will be provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMethodOfServiceDelivery', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The course''s level of rigor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended major subject area of the education course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseSubjectArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The frequency that a service is planned to be provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceFrequency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reasons for the delay of a transition conference.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReasonDelayTransitionConf', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of measurement for the amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityTimeMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of scoring a person''s response to an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseScoreStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The completion and scoring status for an instance of a person taking an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentRegistrationCompletionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The data type of the assessment result score value.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultDataType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates the purpose for which this assessment score instance was recorded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This classification permits expenditures to be segregated by instructional level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLevelOfInstructionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A Uniform Resource Locator (URL) that identifies the conditions that govern the user’s ability to access a learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessRightsUrl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of entity, organization or person, that authored the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAuthorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary type of interaction, synchronous or asynchronous, defined for the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student’s parent or guardian is on Active Duty, in the National Guard, or in the Reserve components of the United States military services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryConnectedStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is currently serving on Active Duty, in the National Guard, or in the Reserve components of the United States military services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryActiveStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is a veteran who served on Active Duty, in the National Guard, or in the Reserve components of the United States military services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of consideration given a type of admission criteria used at an institution during the selection process.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of admission consideration used at an institution during the selection process.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The event/action that results in a billable action.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBillableBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of a student''s referral to or placement into developmental education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationReferralStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of developmental education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a individual requested a Family Education Rights and Privacy Act (FERPA) block to withhold the release of the person''s directory information.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDirectoryInformationBlockStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title/role of employment, official status, or rank of education staff', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEducationStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLocalRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of service provided to a child.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' Funds that originate at the State, and not from a federal or local source, that contribute to EL program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELStateRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the core knowledge expertise of a trainer of a professional development experience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELTrainerCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which the formal education is verified.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEducationVerificationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is receiving Veteran''s benefits.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Veteran''s benefits a person is receiving.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level describing the concentration of study for a postsecondary program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSProgramLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The circumstances under which the student exited from enrollment in a postsecondary institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A billable basis which defines payment. This is how state agencies/programs move funding to the local provider/agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReimbursementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The individual well child visit scheduled according to the AAP recommended periodicity schedule.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScheduledWellChildScreening', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether the student has transferred to another institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferOutIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The trimester of pregnancy in which a child''s mother began receiving prenatal health care.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTrimesterWhenPrenatalCareBegan', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason for the termination of the employment relationship.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Non domestic residence in which the early learning setting is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunityBasedType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title/role of employment, official status, or rank of early learning service professionals', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceProfessionalStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The code for the specific language or dialect that a person uses to communicate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6393Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code for a specific language family, which supplements the language groups and families in the ISO 639-2 Language Code.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6395LanguageFamily', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A branch of the U.S. Military applicable for specifying more details when using Military Connected Student Indicator, Military Active Student Indicator, Military Veteran Student Indicator, and Military Enlistment After Exit elements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryBranch', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Lumina Foundation''s Degree Qualifications Profile offers reference points for what students should know and be able to do upon completion of associate, bachelor''s and master''s degrees – in any field of study. The DQP Categories of Learning provide a profile of what degrees mean within which specific proficiencies may be defined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDQPCategoriesOfLearning', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of organization that is a separate legal entity that 1) contracts with one or more charter schools to manage, operate, and oversee the charter schools; or 2) holds a charter, or charters, to operate multiple charter schools.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolManagementOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category under which a person under 3 years of age is eligible for early intervention services under IDEA Part C.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAPartCEligibilityCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTribalAffiliation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Prerequisite conditions for earning an academic award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardPrerequisiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPESCAwardLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS financial position classification used by degree-granting public institutions using GASB Reporting Standards for reporting the assets, liabilities, and net position in a manner consistent with the Statement of Net Position in the General Purpose Financial Statements (GPFS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS financial position classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting the assets, liabilities, and net assets in a manner consistent with the Statement of Financial Position in the General Purpose Financial Statements (GPFS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue classification used by degree-granting public institutions using GASB Reporting Standards for reporting revenues and other additions by source including all operating revenues, nonoperating revenues, and other additions for the reporting period. This includes unrestricted and restricted revenues and additions, whether expendable or nonexpendable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues and investment return by source in a manner consistent with the definitions from the National Association of College and University Business Officers (NACUBO) Financial Accounting and Reporting Manual for Higher Education (FARM).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue restriction classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues by restriction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenueRestriction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A natural expense classification is a method of grouping expenses according to the type of costs that are incurred. The classifications tell what was purchased rather than why an expense was incurred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSNaturalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue category used by degree-granting public institutions using GASB Reporting Standards for the reporting of resources received for supporting student scholarships and fellowships.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue category used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for the reporting of resources received for supporting student grant aid.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the functional expense category where the institution allocates its intercollegiate athletics expenses.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSIntercollegiateAthleticsExpenses', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Method of reporting Pell Grants in IPEDS by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBPellGrantTransactions', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Frequency by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportSchedule', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of evidence appropriate for assessing achievement of a goal or short-term objective.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Legal category for an IEP annual goal or short-term objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPGoalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A method by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000439', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMedicalAlertIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000440', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectBased', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000447', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIILanguageInstructionProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000449', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToEducatingHomeless', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000451', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaFundsTransferType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000463', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000466', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLiteracyAssessment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000486', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRlisProgramUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000487', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIProfessionalDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplinaryActionTaken', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramDayLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000506', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentReporterType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000509', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehavior', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000510', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000515', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentTimeDescriptionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000524', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000530', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000531', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000532', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000535', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentSchoolAge', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000536', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIAccountability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000537', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000538', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodOfCwd', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000539', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemovalReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000540', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotCompleting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000541', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemoval', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000545', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000548', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramFundingAllocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000555', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodFirearms', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisciplineMethodFirearm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000557', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFirearmType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentEC', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEnvironmentEL', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000560', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReapAlternativeFundingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000561', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000564', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationAgeGroupTaught', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000566', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnologyLiteracyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000571', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreAndPostTestIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000572', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPretestOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000573', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000585', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStatePovertyDesignation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000586', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000587', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffPerformanceLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000599', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAbsentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000600', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPresentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000601', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000603', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCalendarEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000605', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContentStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000609', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineLengthDifferenceReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000618', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000620', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000621', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000622', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefClassroomPositionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000624', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaveEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000627', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehaviorSecondary', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000634', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOtherNameType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000648', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingAssignmentRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000652', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000698', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyFrameworkPublicationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000710', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCurriculumFrameworkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaDistinctionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000716', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramSponsorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000727', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicTermDesignator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000728', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDistanceEducationCourseEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000729', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPredominantCalendarSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000731', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIpedsOccupationalCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000735', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffContractLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFullTimeStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000737', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentContractType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000738', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTenureSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000739', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffFacultyTenure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000740', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicRank', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000741', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000743', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateAssistantIpedsCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000746', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000756', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmittedStudent', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000758', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGradePointAverageDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationTestCompany', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000768', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepCompleterStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000769', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAltRouteToCertificationOrLicensure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000770', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCriticalTeacherShortageCandidate', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000771', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSupervisedClinicalExperience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000773', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationCredentialExam', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000774', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationExamScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000779', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtIntake', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtPosttest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000782', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeSpecialProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalTechnicalCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000784', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAePostsecondaryTransitionAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000786', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000798', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageCollectionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000806', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentAssociateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalDevelopmentFinancialSupport', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000813', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHigherEducationInstitutionAccreditationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000819', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELGroupSizeStandardMet', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000828', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramLicenseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000829', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodProgramEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000834', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPopulationServed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000857', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunicationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000862', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERSRuralUrbanContinuumCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000869', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefAssociationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000875', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBloomsTaxonomyDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000876', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMultipleIntelligenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000877', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencySetCompletionCriteria', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000879', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceCompetencyAlignmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000907', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTextComplexitySystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000923', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceIntendedEndUserRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000934', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000942', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000945', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityMaximumTimeAllowedUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000949', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityAddToGradeBookFlag', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000976', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEnrollmentStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000982', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccreditationAgency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000984', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFacilityLicensingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000987', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedAfterExit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000994', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERAdministrativeDataSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000997', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWfProgramParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001000', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentELDevelopmentalDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001002', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceEducationalUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001014', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSubtestIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001018', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Award Level Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Honors Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicHonorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adequate Yearly Progress Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAypStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Administrative Funding Control', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdministrativeFundingControl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Alternative School Focus Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAlternativeSchoolFocus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Academic Subject', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicSubject', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Participation Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentParticipationIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Purpose', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Assessment Reporting Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionAssessmentReportingMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Campus Residency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Carnegie Basic Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCarnegieBasicClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Use', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipVersion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Control of Institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefControlOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Corrective Action Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectiveActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Country Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCountry', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Units', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Grade Point Average Applicability', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseGpaApplicability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Characteristic', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelCharacteristic', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Repeat Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseRepeatCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credit Unit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditTypeEarned', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career and Technical Education Graduation Rate Inclusion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteGraduationRateInclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Attendance Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dependency Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDependencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'K12 Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12StaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Electronic Mail Address Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmailType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Elementary-Middle Additional Indicator Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefElementaryMiddleAdditional', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Eligibility Status for School Food Service Programs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'End of Term Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEndOfTermStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Enrollment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Enrollment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Entry Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cohort Exclusion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCohortExclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit or Withdrawal Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit or Withdrawal Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Award Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Weighted Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGpaWeightedIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Gun Free Schools Act Reporting Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGunFreeSchoolsActReportingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Diploma Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Graduation Rate Indicator Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolGraduationRateIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Homeless Primary Nighttime Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHomelessNighttimeResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Increased Learning Time Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncreasedLearningTimeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Institution Telephone Number Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstitutionTelephoneType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Activity Hours Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalActivityHours', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Integrated Technology Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIntegratedTechnologyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Level of Institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLevelOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Magnet or Special Program Emphasis School', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMagnetSpecialProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Services Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Session Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Staff Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Neglected or Delinquent Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeglectedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Visa Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Normal Length of Time for Completion Units', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTimeForCompletionUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Paraprofessional Qualification Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParaprofessionalQualification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Participation Status for Math', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParticipationStatusAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Prekindergarten Eligibility', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrekindergartenEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Prekindergarten Eligible Ages for Non-IDEA Students', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreKEligibleAgesNonIDEA', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Disability Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Educational Job Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalEducationJobClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proficiency Target Status for Math', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyTargetAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Length Hours Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramLengthHoursType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Public School Choice Implementation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolChoiceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reason Not Tested', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotTested', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Recognition for Participation or Performance in an Activity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityRecognitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reconstituted Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReconstitutedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Restructuring Action', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRestructuringAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Improvement Funds Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementFunds', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Improvement Grant Intervention Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSigInterventionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Sex', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSex', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Single Sex Class Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSingleSexClassStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Exit Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Standardized Admission Test Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStandardizedAdmissionTest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Abbreviation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefState', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsStudentLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Credential Basis', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialBasis', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Credential Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Instructional Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIInstructionalServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Program Staff Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I School Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleISchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Support Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12LeaTitleISupportService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Transfer-ready', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferReady', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tuition Residency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'United States Citizenship Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefUSCitizenshipStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Eligibility Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proof of Residency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProofOfResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Vision Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisionScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hearing Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHearingScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dental Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Developmental Screening Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Developmental Evaluation Finding', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEvaluationFinding', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Language Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLanguageUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'ISO 639-2 Language Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6392Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Services Received', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Services Received', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Participation in School Food Service Programs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Participation in School Food Service Programs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolFoodServiceProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Source of Family Income', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFamilyIncomeSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Income Calculation Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncomeCalculationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Insurance Coverage', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHealthInsuranceCoverage', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dental Insurance Coverage Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalInsuranceCoverageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Level of Specialization in Early Learning', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLevelOfSpecialization', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Degree or Certificate Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDegreeOrCertificateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Credential', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodCredential', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'License Exempt', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLicenseExempt', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Option Variation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceOption', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Setting', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnvironmentSetting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Rating and Improvement System Participation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefQrisParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Type for Learner or Family', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment in Postsecondary Award Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Award Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Mechanical System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Vertical Transportation System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingVerticalTransportationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Administrative Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAdministrativeSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Art Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingArtSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Basic Classroom Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingBasicClassroomDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Career-Technical Education Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCareerTechEducationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Circulation Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCirculationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Environmental or Energy Performance Rating Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnvOrEnergyPerformanceRatingCat', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Furnishings Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFurnishingsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Food Service Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFoodServiceSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Indoor Athletic or Physical Education Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingIndoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Library or Media Center Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingLibMediaCenterSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Operations or Maintenance Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOperationsOrMaintSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Outdoor Athletic or Physical Education Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Outdoor or Non-athletic Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorOrNonathleticSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Performing Arts Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPerformingArtsSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building School Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSchoolDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Science Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingScienceSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Site Outdoor Area Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteOutdoorAreaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Space Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpaceDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Special Education Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpecEdSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Student Support Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingStudentSupportSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Assembly Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAssemblySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Full Service Kitchen Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFullServiceKitchenType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Instructional Space Factor Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingInstructionalSpaceFactorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Joint Use Rationale Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseRationaleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Joint Use Scheduling Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseSchedulingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Joint User Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUserType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Community Use Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommunityUseSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Site Use Restrictions Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSiteUseRestrictionsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Enrollment Access Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentEnrollmentAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Audit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityAuditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Charter School Realty Access Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCharterSchoolRealtyAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Cleaning Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCleaningStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Compliance Agency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceAgencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Energy Conservation Measure Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergyConservationMeasureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Energy Source Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergySourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Management Emergency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMgmtEmergencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Capital Program Management Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityCapitalProgramMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Operations Management Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityOperationsMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Hazardous Materials or Condition Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityHazardousMaterialsOrCondType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Joint Development Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityJointDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Maintenance Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMaintStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Naturally Occurring Hazard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityNaturallyOccurringHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Utility Provider Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityProviderType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Utility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Plan Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Mandate Authority Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMandateAuthorityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Financing Fee Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFinancingFeeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Lease Amount Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseAmountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Lease Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Mortgage Interest Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Mortgage Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Campus Facility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Relationship Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationRelationship', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'CTDL Audience Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLAudienceLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Agent Role Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAgentRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Progress Achieving English Language Proficiency Indicator Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Additional Targeted Support and Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Comprehensive Support and Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefComprehensiveSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Entry Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramEntryReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Targeted Support and Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number Listed Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberListedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Program Exit Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdultEducationProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Barrier to Internet Access In Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToInternetAccessInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDataCollectionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Academic or Career and Technical Outcome Exit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Academic or Career and Technical Outcome Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Teacher Inexperienced Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEDFactsTeacherInexperiencedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Teacher Out of Field Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutOfFieldStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Access Type In Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccessTypeInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Performance In Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetPerformanceInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Dependents Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNumberOfDependentsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Personal Information Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Learning Device Access', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Learning Device Away From School', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAwayFromSchool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Learning Device Provider', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceProvider', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Race', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRace', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Creator Entity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusCreatorEntity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Role', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Source Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffCompensationSourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student School Affiliation State Defined Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSchoolAffiliationStateDefinedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'WIOA Barriers to Employment', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWIOABarrierstoEmployment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22293', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDoctoralExamsRequiredCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22294', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFederalFundingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationMonitoringNotifications', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPurposeOfMonitoringVisit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22302', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOtherFederalFundingSources', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22303', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOutcomeMeasurementLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProfessionalDevelopmentTopicArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22306', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibilityStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22309', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedPriorToEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatusWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22314', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountFundClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22316', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountProgramCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountBalanceSheetCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureFunctionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22322', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureObjectCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22323', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyOfService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22324', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateOrDoctoralExamResultsStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22337', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentMultipleOffenseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22339', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPerpetratorInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22341', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPersonRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22352', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramPlannedServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12EndOfCourseRequirement', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22358', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessAPIType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22359', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22360', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessModeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22363', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceBookFormatType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22364', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceControlFlexibilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22365', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaSubType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22366', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22368', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceMediaFeatureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22370', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourcePhysicalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22377', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefNodeAccessibilityProfile', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22380', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefTestabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22383', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNCESCollegeCourseMapCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22399', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDAudienceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22401', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDDeliveryMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22403', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityApprovedPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22406', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22409', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22412', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22428', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDSessionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22429', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDInstructionalDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22440', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountRevenueCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22454', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReferralOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22464', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityTargetAudience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22466', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceDeliveryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22467', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWorkbasedLearningOpportunityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22473', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAIEPStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22475', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutcomeTimePoint', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22482', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMethodOfServiceDelivery', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseSubjectArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22492', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceFrequency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22494', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReasonDelayTransitionConf', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22503', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityTimeMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22513', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseScoreStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22516', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentRegistrationCompletionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultDataType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22523', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22531', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLevelOfInstructionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22537', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessRightsUrl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22540', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAuthorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22555', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryConnectedStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryActiveStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22557', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22561', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBillableBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22567', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationReferralStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22568', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22569', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDirectoryInformationBlockStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22581', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEducationStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22582', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLocalRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22583', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22584', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELStateRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22585', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELTrainerCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22586', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEducationVerificationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22595', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSProgramLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22601', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReimbursementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScheduledWellChildScreening', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferOutIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTrimesterWhenPrenatalCareBegan', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22613', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22614', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunityBasedType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceProfessionalStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22618', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6393Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22619', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6395LanguageFamily', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22621', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryBranch', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22622', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDQPCategoriesOfLearning', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22631', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolManagementOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22637', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAPartCEligibilityCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22638', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTribalAffiliation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22640', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22647', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardPrerequisiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22649', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPESCAwardLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22651', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22652', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22653', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22654', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22655', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenueRestriction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22656', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22657', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSNaturalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22658', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22659', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22660', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSIntercollegiateAthleticsExpenses', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22661', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBPellGrantTransactions', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A meaningful raw score, derived score, or statistical expression of the performance of a person on an assessment. The type of result is indicated by the Assessment Score Metric Type element. The results can be expressed as a number, percentile, range, level, etc. The score relates to all scored items or a sub test scoring one aspect of performance on the test. This value may or may not correspond to one or more Performance Levels.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Where a specific course lies when it is part of a consecutive sequence of courses. This element should be interpreted as "part ''n'' of ''m'' parts.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SCEDSequenceOfCourse' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic session for which the data are recorded and applicable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Designator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic session for which the data are recorded and applicable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'SessionDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A prescribed span of time when an education institution is open, instruction is provided, and students are under the direction and guidance of teachers and/or education institution administration. A session may be interrupted by one or more vacations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The concept describing the biological traits that distinguish the males and females of a species.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefSexId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Section in a co-educational school where only male or only female students are permitted to take the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefSingleSexClassStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason children who were in special education at the start of the reporting period were not in special education at the end of the reporting period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a paraprofessional is employed or contracted to work with children with disabilities who are ages 3 through 21.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a paraprofessional is employed or contracted to work with children with disabilities who are ages 3 through 21.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a related services person is employed or contracted to work with children with disabilities who are ages 3 through 21.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a related services person is employed or contracted to work with children with disabilities who are ages 3 through 21.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day a child with disabilities (IDEA) ages 14 through 21 exited special education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationServicesExitDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a teacher is employed or contracted to work with children with disabilities who are ages 3 through 21.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a teacher is employed or contracted to work with children with disabilities who are ages 3 through 21.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The quantitative score on a standardized admission test reported to a postsecondary institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'StandardizedAdmissionTestScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of test prepared and administered by an agency that is independent of any postsecondary education institution and is typically used for admissions purposes. Tests provide information about prospective students and their academic qualifications relative to a national sample.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RefStandardizedAdmissionTestId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The abbreviation for the state (within the United States) or outlying area in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An person''s permanent address as determined by such evidence as a driver''s license or voter registration. For entering freshmen, state of residence may be the legal state of residence of a parent or guardian.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefStateOfResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The street number and street name or post office box number of an address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The street number and street name or post office box number of an address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of school days during the regular school year (plus summer, if applicable, if part of implementing the restart, transformation, or turnaround model) the student attended school divided by the maximum number of days the student could have attended school during the regular school year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'AttendanceRate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Classification of a person enrolling in credit-granting courses at a postsecondary institution since completing high school (or its equivalent) as either an undergraduate or graduate student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsStudentLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of related or ancillary services offered or provided to a person or a group of persons within the formal educational system or by an outside agency which provides non-instructional services to support the general welfare of students. This includes physical and emotional health, the ability to select an appropriate course of study, admission to appropriate educational programs, and the ability to adjust to and remain in school through the completion of programs. In serving a student with an identified disability, related services include developmental, corrective, or supportive services required to ensure that the person benefits from special education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of related or ancillary services offered or provided to a person or a group of persons within the formal educational system or by an outside agency which provides non-instructional services to support the general welfare of students. This includes physical and emotional health, the ability to select an appropriate course of study, admission to appropriate educational programs, and the ability to adjust to and remain in school through the completion of programs. In serving a student with an identified disability, related services include developmental, corrective, or supportive services required to ensure that the person benefits from special education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of related or ancillary services offered or provided to a person or a group of persons within the formal educational system or by an outside agency which provides non-instructional services to support the general welfare of students. This includes physical and emotional health, the ability to select an appropriate course of study, admission to appropriate educational programs, and the ability to adjust to and remain in school through the completion of programs. In serving a student with an identified disability, related services include developmental, corrective, or supportive services required to ensure that the person benefits from special education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of the subtest (e.g., vocabulary, measurement, or geometry).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name or title of the subtest.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the pre-determined criteria for granting the teaching credential that a person holds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the pre-determined criteria for granting the teaching credential that a person holds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the category of a legal document giving authorization to perform teaching assignment services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the category of a legal document giving authorization to perform teaching assignment services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The telephone number including the area code, and extension, if applicable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The telephone number including the area code, and extension, if applicable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of communication number listed for a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefPersonTelephoneNumberTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is participating in and served by programs under Title I, Part A of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RefTitleIIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of instructional services provided to students in ESEA Title I programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIInstructionalServicesId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of employment, official status, or rank for staff working in a Title I program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of employment, official status, or rank for staff working in a Title I program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Title I program offered in the school or district.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a school is designated under state and federal regulations as being eligible for participation in programs authorized by Title I of ESEA as amended and whether it has a Title I program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefTitleISchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of support services provided to students in Title I programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RefK12LeaTitleISupportServiceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person who receives Title IV aid. Title IV aid includes grant aid, work study aid, and loan aid such as: Federal Pell Grant, Federal Supplemental Educational Opportunity Grant (FSEOG), Teacher Education Assistance for College and Higher Education (TEACH) Grant, Federal Work-Study, Federal Perkins Loan, Subsidized Direct or FFEL Stafford Loan, and Unsubsidized Direct or FFEL Stafford Loan. Title IV aid specifications are defined by the instructions for the IPEDS Student Financial Aid survey.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'TitleIVParticipantAndRecipient' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Sum of retirement, health, and all other benefits, or total benefits paid by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider’s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of students in the student''s high school graduating class.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'TotalNumberInClass' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of students in the student''s high school graduating class.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolGraduatingClassSize' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Total annualized salary of staff at the specific school/program indicated on the record in the school/program year specified on the record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalSalary' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person who has successfully completed a transfer-preparatory program as defined by the state or by the institution if no official state definition exists.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefTransferReadyId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s residency status for tuition purposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefTuitionResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether or not the person is a US citizen.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefUSCitizenshipStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of years prior to this job that a person has previously held a teaching position in one or more education institutions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Category under which the person is eligible for an early childhood program or service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An accepted form of proof of residency in the district/county/other locality.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An accepted form of proof of residency in the district/county/other locality.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of an immunization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'ImmunizationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that an immunization is specifically required by an organization or governing body.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Status of an examination used to measure a person''s ability to see.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefVisionScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Status of an examination used to measure a person''s ability to perceive sounds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHearingScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The condition of a person''s mouth or oral cavity; more specifically the condition of the hard tissues (i.e., teeth and jaws) and the soft tissues (i.e., gums, tongue, lips, palate, mouth floor, and inner cheeks). Good oral health denotes the absence of clinically manifested disease or abnormalities of the oral cavity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The weight of a child at birth in pounds and ounces.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeightAtBirth' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of weeks during gestational period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeeksOfGestation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Child developmental delay/disability determined by procedure used by appropriate qualified personnel.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEvaluationFindingId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the function and context in which a person uses a language to communicate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The code for the specific language or dialect that a person uses to communicate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type of program developed for a student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of service that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesReceivedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of service that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefServicesId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which an individual application is received by the organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which an individual application is received by the organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a person is considered officially enrolled in the program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'EnrollmentDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student''s participation in free, reduced price, full price breakfast, lunch, snack, supper, and milk programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student''s participation in free, reduced price, full price breakfast, lunch, snack, supper, and milk programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RefSchoolFoodServiceProgramId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a person has legal custody of a child.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'CustodialRelationshipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Total number of persons in immediate family. Family means for the purposes of the regulations in this part all persons: (i) Living in the same household who are: (A) Supported by the income of the parent(s) or guardian(s) of the child enrolling or participating in the program; or (B) Related to the child by blood, marriage, or adoption; or (ii) Related to the child enrolling or participating in the program as parents or siblings, by blood, marriage, or adoption.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInFamily' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Total number of persons residing in the same household.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInHousehold' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student was served by Title I, Part D, Subpart 1 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'AchievementIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student was served by Title I, Part D, Subpart 2 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'OutcomeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Staff member who has a Teacher of Record responsibility for a Class Section based upon the state''s definition of Teacher of Record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'TeacherOfRecord' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role that the Staff Member has been assigned for a Class Section. (A teacher may have the lead responsibility for one section and serve a supporting role for another section of the same course.)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role that the Staff Member has been assigned for a Class Section. (A teacher may have the lead responsibility for one section and serve a supporting role for another section of the same course.)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A percentage used to weight the educator''s assigned responsibility for student learning in a Class Section, particularly when more than one educator is assigned to the class section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A percentage used to weight the educator''s assigned responsibility for student learning in a Class Section, particularly when more than one educator is assigned to the class section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The process by which a student enters a school (Course Section) during a given academic session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEntryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of the first day after the date of a person''s last enrollment in a course section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'ExitWithdrawalDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The circumstances under which the student exited from membership in a course section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of interscholastic sports in which only male students participate. Sports include distinct sports such as football, basketball, soccer but not intramural sports or cheerleading.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of interscholastic sports in which only female students participate. Sports include distinct sports such as football, basketball, soccer but not intramural sports or cheerleading.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of interscholastic teams in which only male students participate. Teams include each competitive level team in each sport, such as freshman team, junior varsity team, and varsity team but not intramural sports or cheerleading.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of interscholastic teams in which only female students participate. Teams include each competitive level team in each sport, such as freshman team, junior varsity team, and varsity team but not intramural sports or cheerleading.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of male students who participated on an interscholastic team. A student should be counted once for each team he was on.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsMale' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of female students who participated on an interscholastic team. A student should be counted once for each team she was on.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsFemale' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The globally unique identifier (GUID) issued by the publisher of the competency framework that uniquely identifies the definition in the hierarchy of competency definitions using a RFC 4122 compliant 32-character hexadecimal string, such as 21EC2020-3AEA-1069-A2DD-08002B30309D.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The text of the statement. The textual content that either describes a specific competency or describes a less granular group of competencies within the taxonomy of the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The class of statement in the structure of statements in the Competency Framework according to a controlled vocabulary, specified as a textual label.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A human-referenceable code designated by the publisher to identify the item in the hierarchy of competency definitions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An unambiguous reference to the competency framework using a network-resolvable URI.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'URI' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the revision of the competency framework as a version number or date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The person or organization chiefly responsible for the intellectual content of the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A textual description of the scope and contents of the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The publication status of the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefCompetencyFrameworkPublicationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A legal, quasi-legal, organizational or institutional domain of the entity mandating the use of the statement--e.g., California.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Jurisdiction' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day the competency framework was adopted by the jurisdiction in which it was intended to apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day the competency framework was deprecated/replaced by the jurisdiction in which it was intended to apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The topic or academic subject of the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Subject' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of a vision screening.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'VisionScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator (URL) for the unique address of a Web page.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'Website' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of a hearing screening.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HearingScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of a dental screening', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'DentalScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of points possible for the assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum number of points possible for the assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A psychometric measure provided for an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category of charter school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the student cohort.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the standard curriculum used for this course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the standard curriculum used for this course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaDistinctionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique identifier of an immediate prerequisite Competency Definition, a competency needed prior to learning this one. (Some items may have no prerequisites while others may have one or more prerequisites. This should only be used to represent the immediate predecessors in a competency-based pathway, i.e. not prerequisites of prerequisites.)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'AssociatedEntityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of organization providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefProgramSponsorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to an assessment performance level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A label representing the performance level appropriate for use on a report.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Label' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the rules to produce a student test/subtest score from for a grouping of student item scores.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Rules' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The score given to a person''s response to an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The education level, grade level or primary instructional level at which a Competency Definition is intended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic year for which the data apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AcademicYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic term for which the data apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic term for which the data apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual''s enrollment in a course or courses in which the instructional content is delivered exclusively via distance education. Distance education is education that uses one or more technologies to deliver instruction to students who are separated from the instructor and to support regular and substantive interaction between the students and the instructor synchronously or asynchronously. Technologies used for instruction may include: Internet; one-way and two-way transmissions through open broadcasts, closed circuit, cable, microwave, broadband lines, fiber optics, satellite or wireless communication devices; audio conferencing; and video cassette, DVDs, and CD-ROMs, if the cassette, DVDs, and CD-ROMs are used in a course in conjunction with the technologies listed above.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDistanceEducationCourseEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which an institution structures most of its courses for the academic year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which an institution structures most of its courses for the academic year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A Bureau of Labor Statistics coding system for classifying occupations by work performed and, in some cases, on the skills, education and training needed to perform the work at a competent level. See https://www.bls.gov/soc/2018/major_groups.htm.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'StandardOccupationalClassification' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report employees.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report employees.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Staff whose primary function/occupational activity is primarily instruction or instruction combined with research and/or public service. Does not include medical school staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'InstructionalStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Staff employed by or employees working in the medical school component of a postsecondary institution or in a free standing medical school. Does not include staff employed by or employees working strictly in a hospital associated with a medical school or those who work in health or allied health schools or departments such as dentistry, veterinary medicine, nursing or dental hygiene.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'MedicalSchoolStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Persons identified by the institution as such and typically those whose initial assignments are made for the purpose of conducting instruction, research or public service as a principal activity (or activities). They may hold academic rank titles of professor, associate professor, assistant professor, instructor, lecturer or the equivalent of any of those academic ranks. Faculty may also include the chancellor/president, provost, vice provosts, deans, directors or the equivalent, as well as associate deans, assistant deans and executive officers of academic departments (chairpersons, heads or the equivalent) if their principal activity is instruction combined with research and/or public service. The designation as "faculty" is separate from the activities to which they may be currently assigned. For example, a newly appointed president of an institution may also be appointed as a faculty member. Graduate, instruction, and research assistants are not included in this category.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'FacultyStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The contracted teaching period for faculty.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The contracted teaching period for faculty.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an individual is employed for a standard number of hours (as determined by civil or organizational policies) in a week, month, or other period of time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an individual is employed for a standard number of hours (as determined by civil or organizational policies) in a week, month, or other period of time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of employment contract used by an institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of employment contract used by an institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether an institution has personnel positions that lead to consideration for tenure.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefTenureSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the type of faculty status a person has if, by institutional definition, a staff member has faculty status.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffFacultyTenureId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic rank of staff whose primary responsibility is instruction, research, and/or public service. Institutions without standard academic ranks should code staff whose primary responsibility is instruction, research, and/or public service as "No Academic Rank."', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefAcademicRankId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type(s) of instruction being delivered by staff whose primary responsibility is instruction. Instruction that is for "credit" can be applied toward the requirements for a postsecondary degree, diploma, certificate or other formal award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Graduate-level students employed on a part-time basis, not limited to, but often employed for the primary purpose of assisting in classroom or laboratory instruction or in the conduct of research. Graduate students having titles such as graduate assistant, teaching assistant, teaching associate, teaching fellow, or research assistant typically hold these positions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'GraduateAssistantStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report graduate assistants.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefGraduateAssistantIpedsCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total annual base contractual salary of a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total annual base contractual salary of a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The published tuition for first time, full-time undergraduate students (lower of in-district or in-state for public institutions). Tuition may be charged per term, per course, per credit or per program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'TuitionPublished' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The component for which tuition is being charged. It might be a time period (term, quarter, year, etc.) or it might be an entity of education (course, credit hour, etc.).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RefTuitionUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Fixed sum charged to persons for items not covered by tuition and required of such a large proportion of all students that the student who does not pay the charge is the exception.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RequiredStudentFees' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Specifies as part of an Assessment Personal Needs Profile the type of masks the user is able to create to cover portions of the question until needed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedMaskingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The text string that is to be displayed to the user as an expression of encouragement when Masking is specified as part of an Assessment Personal Needs Profile. It is left to the system to determine when to display this string.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementTextMessagingString' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The URI of the sound file that is to be played to the user as an expression of encouragement when Masking is specified as part of an Assessment Personal Needs Profile. It is left to the system to determine when to play this audio file.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementSoundFileUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the multiplier to be applied to the time limit to determine the total testing time allowed when Additional Testing Time is specified as part of an Assessment Personal Needs Profile. If the value is ‘unlimited’ then there is no time limit for the test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'AssessmentNeedTimeMultiplier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The color defined as part of an Assessment Personal Needs Profile to be used to highlight the point of line reader activity i.e. the line being read.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'LineReaderHighlightColor' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This is the preferred color for the overlay for screen enhancement defined as part of an Assessment Personal Needs Profile.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'OverlayColor' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This is the preferred Foreground color for screen enhancement defined as part of an Assessment Personal Needs Profile.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'ForegroundColor' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This is the preferred Background color for screen enhancement defined as part of an Assessment Personal Needs Profile.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'BackgroundColor' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the user preferences for white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedIncreasedWhitespacingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates rules about use of results based on Special Events before, during or after the test. The option set values are determined by the testing program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date set by the testing program when the test scores are published. For formative or classroom assessments, this will likely be the date when the scored the individual test. For summative assessments, this date is likely set for a group of assessments when the processing system releases the scores.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'ScorePublishDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the license/credential awarded by a given profession.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date an individual''s cardiopulmonary resuscitation (CPR) training certification expires.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CardiopulmonaryResuscitationCertification' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date an individual''s first aid training certification expires.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'FirstAidCertification' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which an individual begins a course, an education program or a staff development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which an individual completed a course, an education program or a staff development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' A specific response to an assessment item by the person being assessed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of address listed for an organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RefOrganizationLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to an assessment by a school, school system, a state, or other agency or entity. This may be the publisher identifier.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of instructional program in which an adult is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeInstructionalProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s reasons for attending an adult education class or program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefGoalsForAttendingAdultEducationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a person previously enrolled in adult education entered and began to receive instructional services or training at a postsecondary institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'PostsecondaryTransitionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The condition under which a person has agreed to serve as an employee.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the category of the adult education certification a person holds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefAeCertificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Total semester credits earned in early childhood regardless of whether credits are earned as part of an early childhood degree program, other degree program or outside of a degree program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalApprovedECCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the pitch of a speech synthesizer.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Pitch' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Complexity levels defined by the National Assessment of Educational Progress (NAEP 2005a Framework).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepMathComplexityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The language in which the assessment form is designed to be delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The language in which the assessment form is designed to be delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the Subtest was published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the source of the descriptive feedback that was given to a learner based on a scored/evaluated portion of an assessment. May indicate if this is teacher, scorer, or system generated feedback. Values for this attribute would be determined by the assessment program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedbackSource' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Describes special events that occur before during or after the assessment session that may impact use of results according to rules related to the Assessment Registration Testing Indicator.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Describes special events that occur before during or after the assessment session that may impact use of results according to rules related to the Assessment Registration Testing Indicator.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A network-resolvable Uniform Resource Locator (URL) pointing to the authoritative reference for the hierarchal parent of the competency definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Aspects of reading defined by the National Assessment of Educational Progress (NAEP 2005b Framework).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepAspectsOfReadingId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of need identified for a learner as part of an assessment need profile.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssessmentNeedType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Describes an issue related to the security of a testing instrument identified during a specific instance of delivering an assessment to a specific person during a specific time period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'These templates are described using the processing language defined in IMS Global APIP specification and are distributed (in XML form) along with it. Delivery engines that support generalized response processing do not need to implement special mechanisms to support them as a template file can be parsed directly while processing the assessment item that refers to it. This element provides the URL for the template.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingTemplateUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Response processing is the process by which the Delivery Engine assigns outcomes based on the learner''s responses. The outcomes may be used to provide feedback to the learner Feedback is either provided immediately following the end of the learner''s attempt or it is provided at some later time, perhaps as part of a summary report on the item session. The XML from the IMS Global APIP Specification would be included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Response declarations state what the response variables include. The response declaration may assign an optional correct response. The XML from the IMS Global APIP Specification would be included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Outcome variables are declared by outcome declarations. Their value is set either from a default given in the declaration itself or by a responseRule during response processing. The XML from the IMS Global APIP Specification would be included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'OutcomeDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Template declarations declare item variables that are to be used specifically for the purposes of cloning items. They can have their value set only during template processing. They are referred to within the item body in order to individualize the clone and possibly also within the response Processing rules if the cloning process affects the way the item is scored. The XML from the IMS Global APIP Specification would be included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Template processing consists of one or more template rules that are followed by the cloning engine or delivery system in order to assign values to the template variables. Template processing is identical in form to responseProcessing except that the purpose is to assign values to template variables, not outcome variables. The XML from the IMS Global APIP Specification would be included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Modal feedback is shown to the candidate directly following response processing. The value of an outcome variable is used in conjunction with the showHide and identifier attributes to determine whether or not the feedback is shown in a similar way to feedbackElement. The XML from the IMS Global APIP Specification would be included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ModalFeedbackXml' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The item body contains the text, graphics, media objects, and interactions that describe the item''s content and information about how it is structured. The body is presented by combining it with stylesheet information, either explicitly or implicitly using the default style rules of the delivery or authoring system. This element contains the appropriate XML from the IMS Global APIP Specification defining the various item body interactions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ItemBodyXml' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This indicator determines whether an assessment item is an adaptive item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This indicator determines whether an assessment item is an adaptive item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the mark is a final mark the learner has earned for the course section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'FinalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' A short description of the Learning Resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name(s) of the person(s) or organization(s) holding the copyright for the Learning Resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightHolderName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The copyright year for the Learning Resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The significant topicality of the Learning Resource using free-text keywords and phrases.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the scaling system used to specify the Peer Rating.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual score, rating or level assigned to a Learning Resource by a person within the boundaries set by a Peer Rating System that may be aggregated to derive an overall score for the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The maximum value allowed by the Peer Rating System.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum value allowed by the Peer Rating System.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The optimum value allowed by the Peer Rating System. The optimum or best rating may be the maximum value, the minimum value, or something in between.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'OptimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' A list of product tokens (keywords) with optional comments that identifies the client hardware and software with which the assessment was delivered to the student during the assessment session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'PlatformUserAgent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator (URL) for the unique address of a web page describing the competency-based completion criteria for the qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'CriteriaUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum value in the range of text complexity applicable to a language competency definition using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum value in the range of text complexity applicable to a language competency definition using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of the accommodation when ''Accommodation Type'' is set to ''Other''.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'OtherDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a childcare, early education, or early learning program, school, institution, program, or course section focuses primarily on instruction in which children and teachers are separated by time and/or location and interact through the use of computers and/or telecommunications technology.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a childcare, early education, or early learning program, school, institution, program, or course section focuses primarily on instruction in which children and teachers are separated by time and/or location and interact through the use of computers and/or telecommunications technology.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary setting or medium of delivery for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique identifier for the test attempt assigned by the delivery system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestAttemptIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the qualification, achievement, personal or organizational quality, or aspect of an identity was conferred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date, if any, on which the qualification, achievement, personal or organizational quality, or aspect of an identity expires or requires renewal.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the goal becomes active.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the goal expires or has been achieved.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the Peer Rating was entered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of a provider that can authenticate the identity of an person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Identifier (URI) of the Authentication Identity Provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderUri' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The login identifier for the person for the specified Authentication Identity Provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'LoginIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the an associated person may begin to use the specified Authentication Identity Provider to authenticate identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time at which a professional development session ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method used to evaluate a professional development session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationMethod' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The score or rating used to determine if a professional development session was successful.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day on which any certificate awarded as part of a professional development activity expires.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique, non-duplicated, identification number assigned by the registry data system for a session of a particular professional development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SessionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of a location where a professional development session will be held.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'LocationName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day a professional development session begins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time at which a professional development session begins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The current status of a professional development session', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDSessionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary setting or medium of professional development delivery.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDInstructionalDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum score option for the QRIS or other quality initiative.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum score option for the QRIS or other quality initiative.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The score, rating or level received by a program for its Quality Rating and Improvement System (QRIS) or other quality initiative.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ScoreLevel' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Site participates in a quality improvement initiative component other than QRIS.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The quality initiative end date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The quality initiative start date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'These codes are for recording revenue and other receivables by source. Major revenue categories have codes ending in 00 and are further subdivided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A textual label for category by which Rubric Criterion may be grouped.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Text describing a criterion that must be met to demonstrate quality for a product, process, or performance task.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Text describing one or more benchmarks that must be met to achieve a degree of achievement on a product, process, or performance task.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Pre-defined feedback text to be relayed to the person or organization being evaluated. This may include guidance and suggestions for improvement or development.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Feedback' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A numeric value representing the level''s position in the list of levels defined for the Rubric Criterion.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A qualitative description of this degree of achievement used for column headers or row labels in tabular rubrics.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Quality' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The points awarded for achieving this level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Score' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A numeric value representing this criterion''s position in the criteria list for this rubric.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title of the rubric criterion.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A numeric weight assigned to this Rubric Criterion, used for scored rubrics.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Text describing the intended use of the rubric.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The grade span for which the course is appropriate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDGradeSpan' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date of referral.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The outcome of the referral.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RefReferralOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason for the referral.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Reason' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The person, program, or organization making the initial referral.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Source' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of service that a child or family has received a referral for.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralTypeReceived' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program or organization to which the child/family was referred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferredTo' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the organization, which could be abbreviated form of the full legally accepted name.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason given for declining the recommended services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ReasonForDeclinedServices' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the sponsoring agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SponsoringAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the technical assistance was approved.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the technical assistance was approved.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method of delivery of technical assistance received/provided', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method of delivery of technical assistance received/provided', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of technical assistance provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of technical assistance provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title of the thesis or dissertation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'ThesisOrDissertationTitle' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the labor organization of which the person is a member.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of weeks employed by year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'WeeksEmployedPerYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work-based learning opportunity a student participated in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work-based learning opportunity a student participated in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work-based learning opportunity a student participated in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work-based learning opportunity a student participated in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work-based learning opportunity a student participated in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date that notification is provided to the State Education Agency (SEA) and local education agency (LEA) of residence for a child potentially eligible for Part B (619) preschool services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of an individualized services plan for a specified reporting period or on a specified date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAIEPStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The point in time for which the result is used for an outcome measure.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefOutcomeTimePointId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the child demonstrates progress in positive social-emotional skills, including social relationships.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressAIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the child demonstrates progress in acquisition and use of knowledge and skills, including early language/communication.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressBIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the child demonstrates progress in use of appropriate behaviors to meet their needs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressCIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Child''s level of functioning in positive social-emotional skills (including social relationships).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingAId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Child''s level of functioning in the acquisition and use of knowledge and skills (including early language/communication.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingBId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Child''s level of functioning in the use of appropriate behaviors to meet their needs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingCId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which the services will be provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefMethodOfServiceDeliveryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day the competency definition was deprecated/replaced by the jurisdiction in which it was intended to apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day the competency definition was adopted by the jurisdiction in which it was intended to apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A last name given to a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A first name given to a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A middle name given to a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The course''s level of rigor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The course''s level of rigor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The course''s level of rigor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended major subject area of the education course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended major subject area of the education course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended major subject area of the education course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended major subject area of the education course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended major subject area of the education course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The frequency that a service is planned to be provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefServiceFrequencyId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The length, in hours, that delivery of the service is planned.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceDuration' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reasons for the delay of a transition conference.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RefReasonDelayTransitionConfId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique identifier of the previous version of the Competency Definition if the statement was modified.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'PreviousVersionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that this is the most current version of the Competency Definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CurrentVersionIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full name of an agency that accredited a school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full name of an agency that accredited a school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTimeInvolved' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of measurement for the amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RefActivityTimeMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position of this APIP Interaction in a sequence of interactions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'APIPInteractionSequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the events and procedures that take place under the purview of an organized activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'ActivityDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The period or window in which an assessment is supposed to be administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentAdministrationPeriodDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the assessment form was generated using an algorithm rather than a fixed form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An identifier for algorithm used to generate a custom form for an adaptive test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The version of the algorithm used to generate a custom form for an adaptive test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmVersion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityFederalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system that protects the facility against fire.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingFireProtectionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which the heat is distributed and delivered throughout the room(s) or building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHeatingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The building service system that provides for heating, ventilation and air-conditioning.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHVACSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Equipment that is installed for use in support of instructional program such as kilns for art, planetarium equipment for astronomy, fitness equipment for physical education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'BuildingInstitutionalEquipmentDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Mechanical means for moving people and equipment within buildings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalConveyingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The component of an on-site system for supplying, eliminating, and treating water.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingPlumbingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system that protects the facility from intrusion.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSecuritySystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityStateOrLocalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific law, rule, regulation, or standard of a state or local government that pertains to public school facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'FacilityStateOrLocalMandateName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The means through which voice, video, audio, and data information are conveyed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingTechnologyWiringSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The location at which the identified hazardous material is found.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityLocationOfHazardousMaterials' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The major manufactured systems required to operate a building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of any type of environmental hazards within range of the facility that has the potential to seriously affect the health, safety and operation of school facilities and their occupants.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityNearbyEnvHazardDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system that is installed in the building or site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system used to convey persons or freight between floors.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingVerticalTransportationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed primarily for conducting administrative and business functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAdministrativeSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed to support the teaching and learning of 2 dimensional or 3 dimensional visual arts.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingArtSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classroom designed for instruction of a particular age group, but not a specific subject.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingBasicClassroomDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary design or purpose of a building, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCareerTechEducationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A space designed to enable people to move within the building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCirculationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary groupings that rating organizations use to evaluate environmental sustainability and energy use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingEnvOrEnergyPerformanceRatingCatId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Moveable assets that are provided so the building or interior assets can be utilized by occupants for their intended purposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilityFurnishingsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space located, designed, furnished and equipped to support meal programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFoodServiceSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingIndoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingLibMediaCenterSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOperationsOrMaintSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The outdoor space located, designed, furnished, and equipped primarily for recreation, play and outdoor environmental education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorOrNonathleticSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed, located, furnished, and equipped for instruction and support of music and drama curricula and productions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingPerformingArtsSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The physical layout and character of a school facility, as determined by age groups served and educational programs provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingSchoolDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed, located, furnished, and equipped for instruction and experimentation in science.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingScienceSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designated constructed outdoor area on a public school site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteOutdoorAreaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary design or purpose of a space, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpaceDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpecEdSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingStudentSupportSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the architect of record for the building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitectName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the architectural firm responsible for the building design.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitecturalFirmName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An area designed primarily for theater productions, assemblies, and other large gatherings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAssemblySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year that the school, building, site, system, component, equipment, or fixture compliance status was determined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceDeterminationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the inspection or process that indicates conformity to the requirements or standards specified in federal, state, or local standards or codes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the component, system, or finish that needs replacement, repair, or maintenance to perform at an optimal level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComponentDeficiencyDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to a component by a school, school system, state, or other agency or entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The estimated cost to bring systems, components, finishes, fixtures, or equipment to a state of good repair.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityEstimatedCostToEliminateDeferredMaint' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year by which a hazardous condition of a site or building is expected to be remediated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityHazardousCondExpectedRemediationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of kitchen housed in the facility as defined by whether it prepares food to be served onsite and/or at additional locations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFullServiceKitchenTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the seriousness a threat or hazardous material poses.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year that the site or building is tested for a specific hazardous material.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionTestingDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of a meaningful raw score of statistical expression of the performance on an inspection.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionScoreResultDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the standard violation(s) found in the inspection.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionViolationDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year in which the system, component, equipment, or fixture was originally installed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'InstallationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total cost of acquiring, owning, operating, and disposing of a building, facility, or piece of equipment over its useful life.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'LifecycleCost' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the designed and constructed improvements made to a site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingSiteImprovementDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation as to whether the space is considered an instructional space under state or local guidelines.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingInstructionalSpaceFactorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reasons for permitting and participating in joint-use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseRationaleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of designation of non school district users by the amount of time they have access to public school for joint use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseSchedulingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of users sharing school district controlled, owned, or utilized facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUserTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed primarily for community or shared use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingCommunityUseSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of hours that all or part of a building is used for purposes other than general education by the community or other organizations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingHoursOfPublicUsePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area of space directly used for instruction excluding circulation, administration, student services, and building support.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNetAreaOfInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of teaching stations, as defined by how many spaces have, or could have, a teacher assigned to them for classroom instruction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfTeachingStations' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the policy that enables the community or other organizations to use all or part of a building for purposes other than general education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingPublicUsePolicyDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A characterization of a site that would define restrictions or opportunities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefBuildingSiteUseRestrictionsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area in square feet measured between the principal wall that faces at or near floor level, including alcove spaces, and the outer limits of space designed to serve the activity. Structural space is excluded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingSpaceUtilizationArea' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefStudentEnrollmentAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the space in a school, including circulation, administration offices, support spaces, and common areas, is not part of the calculation for capacity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingUnassignedSpaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RefFacilityAuditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of real estate vehicle through which a public charter school has access and control of its building space.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCharterSchoolRealtyAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The standard for cleanliness, and benchmarks for how much space can be assigned to one properly supplied custodian to meet these standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCleaningStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agency that has ultimate responsibility for the compliance determination.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceAgencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of modification to, or replacement of, a piece of equipment or building shell/system that increases energy efficiency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergyConservationMeasureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the company that designs, procures, finances, installs, maintains, and guarantees the performance of energy conservation measures in an owner''s facility or facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'BuildingEnergyServiceCompanyName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The source of energy that directly powers a school district facility or building system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergySourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMgmtEmergencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of management organization for planning, design, and construction of major capital projects.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityCapitalProgramMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of management arrangements whereby a district oversees and manages its facilities operations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityOperationsMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of hazardous materials or conditions tested for at a site or building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityHazardousMaterialsOrCondTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of development where two or more entities partner to plan, site, design, and/or build a new school or renovate an existing school to better support the joint use of the building and/or land.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityJointDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The standard for maintenance of a component, system, or building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityMaintStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of natural hazard that can affect the health, safety and operation of school facilities and their occupants.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityNaturallyOccurringHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of how utilities are supplied to a site or a building by a company or provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityProviderTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of utility used in the operation of a facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day and year in which a certificate of occupancy was granted by the appropriate local authority.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingDateOfCertificateOfOccupancy' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year of the systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'FacilityAuditDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the management and accountability plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'FacilitiesPlanDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the record should not be published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the record should not be published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the record should not be published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the record should not be published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the record should not be published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the record should not be published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual: (A) who is a displaced homemaker, as defined in section 3 of the Workforce Innovation and Opportunity Act (29 U.S.C. 3102); or (B) who (i)(I) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; or (II) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (ii) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual: (A) who is a displaced homemaker, as defined in section 3 of the Workforce Innovation and Opportunity Act (29 U.S.C. 3102); or (B) who (i)(I) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; or (II) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (ii) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of device the student uses most often to complete learning activities away from school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAwayFromSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the primary learning device is shared or not shared with another individual', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAccessId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The provider of the primary learning device.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceProviderId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the student is able to access the internet in their primary place of residence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'InternetAccessInResidence' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the barrier to having internet access in the student''s primary place of residence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefBarrierToInternetAccessInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary type of internet service used in the student''s primary place of residence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetAccessTypeInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the student can complete the full range of learning activities, including video streaming and assignment upload, without interruptions caused by poor internet performance in their primary place of residence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetPerformanceInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The midpoint between the lowest and highest quarterly wage, in U.S. dollars, for the total number of persons included in the cohort for the period of time between the Employment Record Reference Period Start Date and Employment Record Reference Period End Date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'CohortMedianEarnings' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The documented or assumed reason the person is no longer being served by the adult education program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAdultEducationProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A self-identified barrier as defined by the Workforce Innovation and Opportunity Act (WIOA) that is presumed to affect placement of a participant in unsubsidized employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RefWIOABarrierstoEmploymentId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether or not the individual has received services as identified in sec. 134(c)(2) of the Workforce Innovation and Opportunity Act (WIOA) consisting of (a) basic career services, (b) individualized career services, or (c) follow-up services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOACareerServices' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether or not the individual has received services as defined by the Workforce Innovation and Opportunity Act (WIOA), one or more courses or classes, or a structured regimen that provides the services in 20 CFR part 680.200 and leads to: (a) An industry-recognized certificate or certification, a certificate of completion of a registered apprenticeship, a license recognized by the State involved or the Federal Government, an associate or baccalaureate degree, or community college certificate of completion; (b) Consistent with § 680.350, a secondary school diploma or its equivalent; (c) Employment; or (d) Measurable skill gains toward a credential described in paragraph (a) or (b) of this section or employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOATrainingServices' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The origins of a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RefRaceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A parent, guardian, or student declined to report sufficient information for identifying a student''s federal race and/or ethnicity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'FederalRaceAndEthnicityDeclined' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of personal information verified through the Personal Information Verification evidence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the way in which a person relates to an organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RefRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The term First Generation College Student means an individual both of whose parents did not complete a baccalaureate degree or in the case of any individual who regularly resided with and received support from only one parent, an individual whose only such parent did not complete a baccalaureate degree.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'FirstGenerationCollegeStudent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) based on the person''s latitude and longitude location.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideEstimate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The standard error applied to the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideStandardError' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day on which the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) was processed through the BlindSIDE resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideDateProcessed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The begin year for the American Community Survey (ACS) period estimates used to construct the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageBeginYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end year for the American Community Survey (ACS) period estimates used to construct the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageEndYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This degree is the highest degree that can be awarded in this classification of instructional programs field or program area.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefinitionTerminalDegreeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the adult education participant received a secondary school diploma or its recognized equivalent while enrolled in the adult education program or within one year of exiting the adult education program and entered into postsecondary education within one year of exiting the adult education program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the adult education participant received a secondary school diploma or its recognized equivalent while enrolled in the adult education program or within one year of exiting the adult education program and was employed within one year of exiting the adult education program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentEmployedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the adult education participant received a postsecondary credential while enrolled in the adult education program or within one year of exiting the adult education program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSCredentialIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days a person is tardy when school is in session during a given reporting period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysTardy' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The source for the staff compensation a person receives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RefStaffCompensationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The annual sum of payments given to staff in addition to their regular wages.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationAnnualSupplement' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Compensation paid to a staff member based on their years of service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationLongevity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether teachers have been identified as inexperienced as defined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEDFactsTeacherInexperiencedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether teachers have been identified as teaching a subject or field for which they are not certified or licensed as defined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefOutOfFieldStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the nature of a student''s affiliation, as defined by the state, with a public school and used generally, but not exclusively, for the purpose of determining residency, funding, or accountability.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefStudentSchoolAffiliationStateDefinedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The identifier specified by the source system that uniquely identifies the data collection.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemDataCollectionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the source system that provided the data within the collection.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A human readable name used to identify the data within the collection.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of what is included in the data within the context of the data collection based on the source system and collection period as defined by the Data Collection Open Date and Data Collection Close Date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the data collection opens or commences.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionOpenDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the data collection closes or ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionCloseDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year for a reported school session for which the data is applicable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionAcademicSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year for a reported school session in which the data collection occurs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A process indicator of the level of stability, quality, and/or preparedness of the record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A process indicator of the level of stability, quality, and/or preparedness of the record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the record was marked with the Record Status Type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the record was marked with the Record Status Type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of entity that created or indicated the Record Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of entity that created or indicated the Record Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The speed that data or information can be sent from one''s device to another device or server on the internet in megabits per second.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetUploadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The speed that data or information can be downloaded from a server on the internet to one''s device in megabits per second.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetDownloadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date and, optionally, time that the information was gathered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetSpeedTestDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of academic or career and technical outcome attained while enrolled in the program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of academic or career and technical outcome attained up to 90 days after exiting the facility or program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A minor student under the age of 18 who has been granted by legal action to have the power and capacity of an adult.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'EmancipatedMinor' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Number of people, including the student, who will attend at least half-time in the current academic year, a program that leads to a college degree or certificate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfHouseholdCollegeStudents' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The student''s relationship to the dependents who live with the student or receive more than half of the student''s support', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefNumberOfDependentsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Pell-eligible students whose parent or guardian was a member of the U.S. armed forces and died as a result of military service performed in Iraq or Afghanistan after the events of 9/11 or a public safety officer and died as a result of active service in the line of duty. At the time of the parent''s or guardian''s death, the student must be less than 24 years of age or enrolled in college or career school at least part-time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'ChildrenOfFallenHeroesIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the component part that is being evaluated and scored.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'PartName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The actual quantitative or qualitative assessment of a person''s performance on a component part that is being evaluated. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The quantitative or qualitative range of possible scores/rating for a person''s performance on a component part (e.g., 0 - 10; Poor, Fair, Average, Good, Excellent).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the parent or guardian of this student was administered the Home Language Survey - a questionnaire given to parents or guardians that helps schools and local education agencies identify which students are potential English Learners and who will require assessment of their English language proficiency to determine whether they are eligible for language assistance services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day on which the Home Language Survey is known to have been administered to the parent or guardian of this student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A process indicator of the level of stability, quality, and/or preparedness of the collection of data.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'RefDataCollectionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that an instructional model is being implemented wherein a student learns through answering complex questions or solving for real-world problems. Also called problem-based learning, inquiry-based learning, or learning-by-doing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'ProjectBasedLearningIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of project-based instruction being offered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'OrganizationProjectBasedLearningId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of project-based instruction being offered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'RefProjectBasedLearningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that there are school or program developed requirements for student participation in the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CourseLevelApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of assessments administered to English Learners.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether special education teachers are fully certified in the State..', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationTeacherQualificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an educator holds the certification or licensure required by their assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEdFactsCertificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The group of students to whom related or ancillary service is offered within the formal educational system or by an outside agency which provides non-instructional service to support the general welfare of students.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceAvailabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of participants that can be served in a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'AdjustedCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the reason for adjusted capacity in a program. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'RefAdjustedCapacityReasonTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000490', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000491', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefKindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000494', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000495', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000496', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'DaysInSession' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000497', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'FirstInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000498', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'LastInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000500', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MinutesPerDay' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000501', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000502', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000503', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000504', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000505', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentCost' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000506', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentReporterTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000507', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentReporterId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000508', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000509', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000510', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000511', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DurationOfDisciplinaryAction' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000512', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RelatedToZeroTolerancePolicy' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000513', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'FullYearExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000514', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'ShortenedExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000515', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentTimeDescriptionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000517', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000519', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassBeginningTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000520', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassEndingTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000521', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassMeetingDays' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000522', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassPeriod' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000523', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'TimeDayIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000524', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RefInstructionLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000525', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'PrimaryAssignment' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000529', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstEntryDateIntoUSSchool' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000530', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000531', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefNonPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000532', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000532', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000535', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentSchoolAgeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000536', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIIAccountabilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000537', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000537', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000538', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodOfCwdId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000539', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000540', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotCompletingId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000541', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000542', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ConsolidatedMepFundsStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000545', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000546', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'TechnologySkillsStandardsMet' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000547', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000552', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000552', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000553', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusRLAId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000555', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodFirearmsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIDEADisciplineMethodFirearmId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000557', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefFirearmTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefIDEAEnvironmentELId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentECId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000561', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000561', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000562', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'PrioritizedForServices' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000563', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ContinuationOfServicesStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000564', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000564', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000566', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefTechnologyLiteracyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000567', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000568', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'PublicSchoolChoiceFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000571', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000571', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000572', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentPretestOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000573', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefProficiencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000574', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesSchoolChoice20PercentObligation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000577', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'DisabilityStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000578', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'EducationalServicesAfterRemoval' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000580', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'SingleParentOrSinglePregnantWoman' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000584', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000584', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000585', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000585', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000586', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentActionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000587', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000587', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefNonTraditionalGenderStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RefStaffPerformanceLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000592', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteParticipant' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000593', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteNonTraditionalCompletion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000595', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefK12ResponsibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000597', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'LocationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000597', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'Location' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000598', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'AlternateDayName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000599', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAbsentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000600', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefPresentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000601', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000603', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RefCalendarEventType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000605', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefContentStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000606', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000606', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000607', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000607', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000609', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineLengthDifferenceReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000612', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000613', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000614', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000616', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000616', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000618', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000618', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000618', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000620', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000621', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000622', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001093', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001094', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001122', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepAspectsOfReadingId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001127', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssessmentNeedType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001130', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001131', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingTemplateUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001132', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001133', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001134', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'OutcomeDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001135', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001136', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001137', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ModalFeedbackXml' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ItemBodyXml' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001139', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001139', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001142', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'FinalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001143', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001144', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightHolderName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001145', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001146', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001147', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001148', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001149', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001150', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001151', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'OptimumValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001152', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'PlatformUserAgent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001153', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'CriteriaUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001154', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001155', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001157', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'OtherDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001160', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001160', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001161', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001162', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestAttemptIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001163', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001165', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001166', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001167', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001168', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001169', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderUri' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001170', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'LoginIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001171', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001172', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001173', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001174', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Uri' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001175', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'ApplicationRoleName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001176', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001177', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001182', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001182', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001182', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001183', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001184', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001184', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001184', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001185', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AccommodationList' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001186', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001187', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001188', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PlatformsSupported' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001189', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001190', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RefAssessmentFormSectionIdentificationSystemId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001191', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001192', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionTimeLimit' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001193', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionSealed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001194', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionReentry' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001195', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssetTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001197', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001198', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssestIdentifierType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001201', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Owner' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001202', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentXML' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001203', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentMimeType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001204', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001206', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001207', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'SpaceDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefSpaceUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001210', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001211', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefWeaponTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001212', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionStaffRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001214', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Tier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001215', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'ContainerOnly' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001216', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001217', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'CorrectIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001218', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001219', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatement' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001223', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RefFinancialAidApplicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001224', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefNeedDeterminationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001225', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001225', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001226', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'LanguageTranslationPolicy' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001227', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001228', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001229', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefMaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001230', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefPaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001231', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramDateType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001232', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'IndividualizedProgramDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001233', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'NonInclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001234', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001235', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTransitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001236', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001237', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramLocationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001238', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanMeetingParticipants' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001239', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignedBy' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001240', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignatureDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanReevaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001242', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationFTE' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001242', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001244', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefProgramGiftedEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001245', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'CategorySystem' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001246', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001248', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001249', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Notes' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001250', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001251', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterA' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001252', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterB' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001253', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryDifficultyCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterC' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001255', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD1' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001256', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD2' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001257', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD3' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD4' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001259', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD5' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001260', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD6' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001261', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'LinkingItemIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001262', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'PointBiserialCorrelationValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001651', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractIdNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001652', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractApprovalDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001653', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractRenewalDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001654', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'NSLPDirectCertificationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001655', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'MaximumCapacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001656', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAPartCEligibilityCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001657', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefTribalAffiliationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001658', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001659', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001660', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001661', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedReason' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001662', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RevocationListURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001663', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001664', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001665', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RequirementsURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001666', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardPrerequisiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001667', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RepeatabilityMaximumNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001668', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefPESCAwardLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001669', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'EvidenceURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001670', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001671', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001672', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001673', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001674', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueRestrictionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001675', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001676', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSNaturalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001677', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001678', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001679', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSIntercollegiateAthleticsExpensesId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001680', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBPellGrantTransactionsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001681', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportScheduleId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001682', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'TransferOfRightsStatement' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001683', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001684', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'MeetingDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001685', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001686', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Applicability' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001687', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'IEPAlternativeAssessmentRationale' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001688', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'ReasonDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001689', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001690', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'CurrentPerformanceDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001691', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AccuracyPercent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001692', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AttemptsCount' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001693', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'Metric' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001694', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'SuccessCount' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001695', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001696', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Schedule' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001697', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RefGoalMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001698', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RefIEPGoalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001699', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressReportDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001700', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001701', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001701', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001702', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RefGoalStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001703', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'Status' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001704', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'IDEAPlacementRationale' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001705', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'AcademicDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001706', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'FunctionalDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001707', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'GeneralEducationDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001708', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'PreschoolDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001709', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentStrengthsDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001710', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'ParentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001711', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'DeclinedServicesDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RefFrequencyUnitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001714', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'InstancesPerCycle' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001715', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'FrequencyLength' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001716', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'DurationInMinutes' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001717', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ExtendsOutsideSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001718', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'SettingDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001719', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RefIEPAuthorizationDocumentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001720', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RefAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001721', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AcceptanceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001722', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'DecisionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001723', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001724', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001725', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AuthorizationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001726', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001727', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001728', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RefIEPEligibilityEvaluationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001729', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RefIDEAEligibilityEvaluationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001730', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001731', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'EvaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001732', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ParentObservations' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001733', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefIDEADisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001734', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001735', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'AlternateName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001737', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'ApproverName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001738', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAssessMethodTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001739', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RefCredentialIdentifierSystemId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001740', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001741', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'EstimatedDuration' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001742', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialNAICSIndustryType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001743', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001744', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegionException' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001745', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Keywords' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001746', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MaximumDuration' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001747', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumAge' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001748', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumDuration' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001749', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefIntendedPurposeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001750', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RegionGeoJSON' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001751', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001752', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ValidationMethodDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001753', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefVerificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001754', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001755', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001755', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001756', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefONETSOCOccupationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001757', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypeURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001761', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'StateFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001762', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'LEAFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001763', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'SchoolFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001764', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingArea' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001765', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'SignificantCognitiveDisabilityIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001768', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityAcquisitionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001769', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityAdditionYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001770', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityBuildingPermanency' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001771', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001772', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingHistoricStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001773', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteArea' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001774', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityBlockNumberArea' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001775', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001776', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001777', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingPrimaryUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000031', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'AwaitingInitialIDEAEvaluationStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000032', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationBaseSalary' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000033', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Birthdate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCampusResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000036', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteCompleter' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000037', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteConcentrator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000038', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefCarnegieBasicClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000039', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000039', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000040', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000040', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000042', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ClassRankingDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCipUseId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000045', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipVersionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000046', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000047', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000047', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000049', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RefCorrectiveActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000050', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000051', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000053', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'AcademicGrade' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000054', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000058', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CreditValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000059', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000061', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelCharacteristicsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000063', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'CourseOverrideSchool' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'QualityPointsEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000065', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000065', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000066', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SubjectAbbreviation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000070', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'IssuanceDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000071', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000074', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000074', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000074', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000075', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefCteGraduationRateInclusionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000076', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000077', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'DegreeApplicability' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000078', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateSeekingStudent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000079', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefDependencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000080', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'DesegregationOrderOrPlan' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'AwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000082', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000083', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000084', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000084', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000085', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DualCreditDualEnrollmentCredits' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000088', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'ElectronicMailAddress' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000088', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'EmailAddress' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000091', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefElementaryMiddleAdditionalId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000092', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000093', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEndOfTermStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000094', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000095', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000096', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000098', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'EntryDateIntoPostsecondary' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000099', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000100', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000101', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'TimeRequiredForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000102', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Outcome' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000103', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000104', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000105', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'System' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000106', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCohortExclusionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000110', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000112', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidAwardAmount' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000113', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000115', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000117', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstTimePostsecondaryStudent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000118', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000118', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000118', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000121', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'GenerationCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000123', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000123', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000124', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000124', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000125', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000125', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000126', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelToBeAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000126', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000127', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverage' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000128', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000128', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000128', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000129', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'GradePointAverageGivenSession' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000130', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000131', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000131', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000132', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyCohortYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000133', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000134', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefGunFreeSchoolsActReportingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000135', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'HarassmentOrBullyingPolicy' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000136', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationHealthBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day or year and month on which the academic award was conferred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The descriptive title for the academic award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardTitle' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type of academic distinctions earned by or awarded to the student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RefAcademicHonorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title of the accountability report.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AccountabilityReportTitle' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of address listed for a learner or a parent, guardian, family member or related person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the state, district, or school met the Adequate Yearly Progress (AYP) requirements for the school year, as determined by the state-established criteria.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAypStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of education institution as classified by its funding source.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of education institution as classified by its funding source.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of education institution as classified by its funding source.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication whether a course is aligned with the established standards of a curriculum framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication whether a course is aligned with the established standards of a curriculum framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the district or school used an approved alternate approach for calculating Adequate Yearly Progress (AYP).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AlternateAypApproachIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the specific group of students whose needs the alternative school is designed to meet.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefAlternativeSchoolFocusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits awarded a student by the postsecondary institution based on successful completion of advanced placement courses and/or advanced placement tests. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AdvancedPlacementCreditsAwarded' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The apartment, room, or suite number of an address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The apartment, room, or suite number of an address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of the academic content or subject area (e.g., arts, mathematics, reading, or a foreign language) being evaluated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of the academic content or subject area (e.g., arts, mathematics, reading, or a foreign language) being evaluated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of a given assessment form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a student participated in an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentParticipationIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason for which an assessment is designed or delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason for which an assessment is designed or delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason for which an assessment is designed or delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method that the instructor of the course uses to report the performance and achievement of all students. It may be a qualitative method such as individualized teacher comments or a quantitative method such as a letter or a numerical grade. In some cases, more than one type of reporting method may be used.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RefCourseSectionAssessmentReportingMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title or name of the assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category of an assessment based on format and content.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Measured in Carnegie units, the amount of credit available to a student who successfully meets the objectives of the course. A course meeting every day for one period of the school day over the span of a school year offers one Carnegie unit. A Carnegie unit is thus a measure of "seat time" rather than a measure of attainment of the course objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Measured in Carnegie units, the amount of credit available to a student who successfully meets the objectives of the course. A course meeting every day for one period of the school day over the span of a school year offers one Carnegie unit. A Carnegie unit is thus a measure of "seat time" rather than a measure of attainment of the course objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Measured in Carnegie units, the amount of credit available to a student who successfully meets the objectives of the course. A course meeting every day for one period of the school day over the span of a school year offers one Carnegie unit. A Carnegie unit is thus a measure of "seat time" rather than a measure of attainment of the course objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Awaiting initial evaluation for special education programs and related services under the Individuals with Disabilities Education Act (IDEA). ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'AwaitingInitialIDEAEvaluationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The salary or wage a person is paid before deductions (excluding differentials) but including annuities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationBaseSalary' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a person was born.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Birthdate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCampusResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student who reached a state-defined threshold of a career and technical education program/pathway.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteCompleter' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student who has met the state-defined threshold of career and technical education concentrators, as defined in the State''s approved Perkins IV State Plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteConcentrator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Basic Classification is an update of the traditional classification framework developed by the Carnegie Commission on Higher Education in 1970 to support its research program, and later published in 1973 for use by other researchers.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefCarnegieBasicClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a public school provides free public elementary and/or secondary education to eligible students under a specific charter executed, pursuant to a state charter school law, by an authorized chartering agency/authority and that is designated by such authority to be a public charter school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a public school provides free public elementary and/or secondary education to eligible students under a specific charter executed, pursuant to a state charter school law, by an authorized chartering agency/authority and that is designated by such authority to be a public charter school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the city in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the city in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic rank of a student in relation to his or her high school graduating class (e.g., 1, 2, 3) based on high school GPA.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic rank of a student in relation to his or her high school graduating class (e.g., 1, 2, 3) based on high school GPA.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date class ranking was determined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ClassRankingDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether the CIP Code is referencing an enrollment program or an award program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCipUseId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The version of CIP being reported.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipVersionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The school year in which the student entered the baseline group used for computing completion rates (e.g., high school, program).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days per year that a person is expected to work as outlined specifically in his or her employment agreement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days per year that a person is expected to work as outlined specifically in his or her employment agreement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of whether a postsecondary institution is operated by publicly elected or appointed officials (public control) or by privately elected or appointed officials and derives its major source of funds from private sources (private control). ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of whether a postsecondary institution is operated by publicly elected or appointed officials (public control) or by privately elected or appointed officials and derives its major source of funds from private sources (private control). ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of corrective actions under ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RefCorrectiveActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique two character International Organization for Standardization (ISO) code for the country in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique two digit International Organization for Standardization (ISO) code for the country in which a person is born.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The final grade awarded for participation in the course. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'AcademicGrade' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day an instance of a course officially began.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credit (unit, semester, or quarter) associated with the credit hours earned for the course. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credit (unit, semester, or quarter) associated with the credit hours earned for the course. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credit (unit, semester, or quarter) associated with the credit hours earned for the course. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of credit available to the student who successfully meets the objectives of the course or learning opportunity based on the units defined by Credit Unit Type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CreditValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day an instance of a course ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the general nature and difficulty of instruction provided throughout a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelCharacteristicsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The school where the credit was earned if different from the institution reporting. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'CourseOverrideSchool' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The numerical value assigned to a letter grade to provide a basis of quantitative determination of an average. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'QualityPointsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that an academic course has been repeated by a student and how that repeat is to be computed in the student''s academic grade average.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that an academic course has been repeated by a student and how that repeat is to be computed in the student''s academic grade average.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The alphabetic abbreviation of the academic department or discipline offering the course. It is one part of the total course identifier number. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SubjectAbbreviation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which an active credential was issued to a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'IssuanceDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the category of credential a person holds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value awarded for the completion of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value awarded for the completion of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cumulative number of credits a person attempts to earn by taking courses during their enrollment in their current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cumulative number of credits a person attempts to earn by taking courses during their enrollment in their current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cumulative number of credits a person attempts to earn by taking courses during their enrollment in their current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cumulative number of credits a person earns by completing courses or examinations during their enrollment in the current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cumulative number of credits a person earns by completing courses or examinations during their enrollment in the current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cumulative number of credits a person earns by completing courses or examinations during their enrollment in the current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Total income of family from all sources. Income includes money, wages or salary before deductions; net income from non-farm self-employment; net income from farm self-employment; regular payments from Social Security or railroad retirement; payments from unemployment compensation, strike benefits from union funds, workers’ compensation, veterans benefits (with the exception noted below), public assistance (including Temporary Assistance for Needy Families, Supplemental Security Income, Emergency Assistance money payments, and non-Federally funded General Assistance or General Relief money payments); training stipends; alimony, child support, and military family allotments or other regular support from an absent family member or someone not living in the household; private pensions, government employee pensions (including military retirement pay), and regular insurance or annuity payments; college or university scholarships, grants, fellowships, and assistantships; and dividends, interest, net rental income, net royalties, and periodic receipts from estates or trusts; and net gambling or lottery winnings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIncome' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Sources of total family income.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefFamilyIncomeSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The calculation method used by a program to determine total family income.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefIncomeCalculationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of insurance covering an person''s hospitalization and other health or medical care.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHealthInsuranceCoverageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The source of insurance covering an person''s dental care.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalInsuranceCoverageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The extent to which a person concentrates upon a particular subject matter area during his or her period of study at an educational institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELLevelOfSpecializationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the degree or certificate earned by a person. This includes honorary degrees conferred upon an individual.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateTitleOrSubject' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of degree or certificate earned by a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefDegreeOrCertificateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The credential related to early childhood education or development held by a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodCredentialId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The condition under which a person has agreed to serve as an employee.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The condition under which a person has agreed to serve as an employee.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a program or center received its initial license.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicensingDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a program or center received its initial license.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a program or center received its continuing license.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a program or center received its continuing license.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program or center is legally exempt from licensing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program or center is legally exempt from licensing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a program or center began operation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'OperationalStatusEffectiveDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Nature of early childhood program, class or group in which a person is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Nature of early childhood program, class or group in which a person is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Nature of early childhood program, class or group in which a person is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of hours per day the site or classroom is open for children to attend.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of hours per day the site or classroom is open for children to attend.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days per week the site or classroom is open for children to attend.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days per week the site or classroom is open for children to attend.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The site or setting in which early childhood care, education, and/or services are provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The site or setting in which early childhood care, education, and/or services are provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Program site participates in a Quality Rating and Improvement System (QRIS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RefQrisParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The score, rating or level received by a program for its Quality Rating and Improvement System (QRIS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the award level in which the person is currently enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credit hours and/or contact hours successfully completed by a person during a term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credit hours and/or contact hours successfully completed by a person during a term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the financial aid type being reported is aid that has been awarded, accepted or dispersed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to a room by a school, school system, state, or other agency or entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'ClassroomIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to a room by a school, school system, state, or other agency or entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'ClassroomId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'IdentificationSystem' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of a given assessment form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'FormNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to an assessment subtest.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The shortened name identifying the assessment for use in reference and/or reports.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Abbreviation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific method used to report the performance and achievement of the assessment. This is the metric that is being used to derive the scores.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific method used to report the performance and achievement of the assessment. This is the metric that is being used to derive the scores.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This provides the next steps for instruction for the student based upon the assessment results and student characteristics.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'InstructionalRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The language that the assessment is administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This is the objective that the assessment is measuring.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A category of accommodations needed for a given assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAssessmentAccommodationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the assessment is a secure assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the assessment is a secure assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific accommodation necessary for assessment or instruction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific accommodation necessary for assessment or instruction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The platform with which the assessment was delivered to the student during the assessment session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentPlatformTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The version of the subtest that is included for the assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An unusual event occurred during the administration of the assessment. This could include fire alarm, student became ill, etc.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An unusual event occurred during the administration of the assessment. This could include fire alarm, student became ill, etc.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific type of assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The percentage of students who answered the item correctly during trial testing of the item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Difficulty' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of psychometric measure provided for assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemCharacteristicTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The distribution of responses for each choice in the assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'ResponseChoicePattern' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum value possible for the measurement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum value for the measurement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The optimal value for this measurement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'OptimalValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The analysis of the distractors provided for a specific assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'DistractorAnalysis' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The statement of the question or prompt for an Assessment Item to which the student responds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stem' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total amount of time in seconds or milliseconds that a person spent responding to a given assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Duration' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of time allotted for a specific item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the response for a given item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessItemResponseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A tool or aid set used while viewing the item. This can include things like a calculator, reference tools, etc.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AidSetUsed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The overall time a learner actually spent during the assessment session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'TimeAssessed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The duration of time allotted for the assessment session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of assessment administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The metric or scale used for score reporting.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'ScoreMetric' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Lowest possible score for the performance level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'LowerCutScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Highest possible score for the performance level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'UpperCutScore' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title of the rubric.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An identifier assigned to a rubric.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The URL location where the rubric may be found.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'UrlReference' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The American National Standards Institute (ANSI) two-digit code for the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RefStateANSICodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of a person''s relationship to another person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RefPersonRelationshipTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The name of the city in which a person was born.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The abbreviation for the name of the state (within the United States) or extra-state jurisdiction in which a person was born.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The evidence by which a child''s date of birth is confirmed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The evidence by which a child''s date of birth is confirmed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Reason why the student is being served under the continuation of services provision of the MEP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefContinuationOfServicesReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day on which the child is no longer eligible for the Migrant Education Program. This date should initially be a date equal to 36 months from the Qualifying Arrival Date to indicate the end of MEP eligibility or the student reaches 22 years of age, whichever comes first.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MepEligibilityExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the person is a twin, triplet, etc.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'MultipleBirthIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The qualifying arrival date (QAD) is the month, date, and year that the child completed a move with his or her parent to enable the parent to find qualifying employment. In some cases, the child and worker may not always move together, in which case the QAD would be the date that the child joins the worker who has already moved, or the date the worker joins the child who has already moved. The QAD is the date the child''s eligibility for the Migrant Education Program begins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MigrantStudentQualifyingArrivalDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the city in which the child resided prior to the qualifying move.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'QualifyingMoveFromCity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The abbreviation code for a country (other than the US) area in which the child resided prior to the qualifying move.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromCountryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The postal abbreviation code for a state (within the United States) or outlying area in which the child resided prior to the qualifying move.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromStateId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The NCES school identification number that identifies the school or facility from which a student expects to graduate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'DesignatedGraduationSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of school/migrant education project in which instruction and/or support services are provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether the school or MEP program has immunization records on file for the student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ImmunizationRecordFlag' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Alert indicator for a medical/health condition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefMedicalAlertIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates the type of MEP project based on the location where the MEP services are held.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepProjectBasedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an institution has any residence hall or housing facility located on- or off-campus that is owned or controlled by an institution and used by the institution in direct support of or in a manner related to, the institution''s educational purposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'InstitutionallyControlledHousingStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The charges for an academic year for rooming accommodations for a typical student sharing a room with one other student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RoomCharges' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The charges assessed students for an academic year for the maximum meal plan available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BoardCharges' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The average cost for books and supplies for a typical student for an entire academic year (or program). Does not include unusual costs for special groups of students (e.g., engineering or art majors) unless they constitute the majority of students at an institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BooksAndSuppliesCosts' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of money (estimated by the financial aid office) needed by a person to cover expenses such as laundry, transportation, and entertainment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'OtherStudentExpenses' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total amount institutions estimate that undergraduate-level full-time, first-time degree-seeking students will pay to attend before financial aid is considered. This price includes tuition and fees, books and supplies, room and board, and certain other designated expenses such as transportation. These estimates are the average amounts used by the financial aid office to determine a student’s financial aid.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'PriceOfAttendance' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A single fixed amount of money charged by an institution that covers tuition, required fees, room, and board. For some institutions, this amount may also cover books and supplies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'ComprehensiveFee' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who has fulfilled the institution’s requirements to be considered for admission (including payment or waiving of the application fee, if any) and who has been notified of one of the following actions: admission, nonadmission, placement on waiting list, or application withdrawn (by applicant or institution). Include early decision, early action, and students who began studies during summer in this cohort.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'PostsecondaryApplicant' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Applicant who has been granted an official offer to enroll in a postsecondary institution. Admitted applicants should include wait-listed students who were subsequently offered admission.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefAdmittedStudentId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person who meets the admission requirements but will only be offered a place in the class if space becomes available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'WaitListedStudent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The domain to which the Grade Point Average is referencing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGradePointAverageDomainId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The High School Rank divided by the Size of High School Graduating Class expressed as a percentage.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolPercentile' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The student resides in a residence hall or housing facility owned or controlled by an institution within the same reasonably contiguous geographic area and used by the institution in direct support of or in a manner related to, the institution''s educational purposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'HousingOnCampus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student is in membership of a chiefly social organization of men students at a college or university, usually designated by Greek letters.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FraternityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student is in membership in a chiefly social organization of women students at a college or university, usually designated by Greek letters.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'SororityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Any applicant who submits any one of the institutionally required financial aid applications/forms, such as the Free Application for Federal Student Aid (FAFSA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidApplicant' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of financial need as determined by an institution using the federal methodology and/or your institution''s own standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialNeed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the company that provides the examination used in the teacher education program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationTestCompanyId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is pursuing certification as a teacher.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person completed a state-approved teacher preparation program. The fact that a person has or has not been recommended to the state for initial certification or licensure may not be used as a criterion for determining who is a program completer.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepCompleterStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is enrolled in an alternative teacher preparation program as defined by Title II.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefAltRouteToCertificationOrLicensureId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is pursuing licensure/certification in a field designated as a shortage area as defined by Title II.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefCriticalTeacherShortageCandidateId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is enrolled in a supervised clinical experience (including student teaching) as part of a teacher preparation program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefSupervisedClinicalExperienceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the number of clock hours (minimum) a student is required to complete associated with a supervised clinical experience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'ClinicalExperienceClockHours' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of examination used to assess teacher candidate''s knowledge and skills.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationCredentialExamId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the type of credential exam associated with a given exam score.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationExamScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtIntakeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtPosttestId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type, by location or delivery mode, of adult education instruction program in which an adult participates.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeSpecialProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The action taken with respect to postsecondary enrollment by the learner after program exit or when co-enrolled in ABE and postsecondary with respect to enrollment in a postsecondary educational or occupational skills program building on prior services or training received.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAePostsecondaryTransitionActionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The titles of employment, official status, or rank of adult education staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to a family by a school, school system, a state, or other agency or entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of years that a person has previously held a teaching position in one or more adult education programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAeTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of years that a person has previously held a teaching position in one or more adult education programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAETeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Staff has a degree in early childhood regardless of level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'ECDegreeOrCertificateHolder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of instructional hours completed by an adult enrolled in a distance learning program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'ProxyContactHours' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Total number of college credits earned, including all credits within a degree and outside a degree, regardless of whether they all are early childhood credits.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalCollegeCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of hours worked per week in employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HoursWorkedPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Hourly wage associated with the employment position being reported.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HourlyWage' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Method used for the collection of wage data for an employment record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageCollectionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the person is a member of a union.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Number of clock hours of training required for providers to meet requirements of the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RequiredTrainingClockHours' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'State where the professional license/credential was issued.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefIssuingStateId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of Child Development Associate credential as defined by options.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of Child Development Associate credential as defined by options.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefChildDevAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to the Professional Development Activity as assigned by the organization offering the training.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to the Professional Development Activity as assigned by the organization offering the training.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title of an activity designed for the purpose of developing someone professionally.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title of an activity designed for the purpose of developing someone professionally.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTitle' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a scholarship was received for the person to participate in the professional development.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a scholarship was received for the person to participate in the professional development.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of financial assistance received in support of non-credit professional development activities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of financial assistance received in support of non-credit professional development activities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the core knowledge areas addressed by Early Learning professional development.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RefCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of college course credit hours an individual has successfully completed that are related to K-12 education, parks and recreation, and juvenile justice.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of college course credit hours an individual has successfully completed that are related to K-12 education, parks and recreation, and juvenile justice.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the accreditation status of a higher education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the accreditation status of a higher education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the wage information has been verified.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a class or group serves children with special needs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ServesChildrenWithSpecialNeeds' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of curriculum used in an early learning classroom or group.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ELClassGroupCurriculumType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a program meets NAEYC or NAFCC standards for infant group sizes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefELGroupSizeStandardMetId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of operating weeks per year for an early learning program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'ELProgramAnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of operating weeks per year for an early learning program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'AnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The current licensing status for an early learning program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefELProgramLicenseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodProgramEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date Quality Rating and Improvement System score, level or rating was awarded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date Quality Rating and Improvement System score, level or rating expires.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QRISExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the for-profit status of a facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefProfitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Number of child fatalities at the program in the past year, as defined by the State', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfFatalities' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Number of child injuries at the program in the past year, as defined by the State.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfInjuries' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a program''s license was suspended due to violations as determined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseSuspensionStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a program''s license was revoked due to violations as determined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseRevocationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day when an accreditation was awarded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day when an accreditation expires.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Number of quality levels in the Quality Rating and Improvement System (QRIS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'NumberQrisLevels' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of classrooms for a program, facility, location, or other educational environment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'NumberOfClassrooms' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a program uses a health or safety checklist or documentation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ProgramHeathSafetyChecklistUseStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Program provides services to meet the needs of children in special circumstances.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefPopulationServedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date after which the an associated person is no longer allowed to use the specified Authentication Identity Provider to authenticate identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of a data system or application which an authenticated person may access.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Identifier (URI) of a data system or application which an authenticated person may access.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Uri' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The user role for which the person is allowed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'ApplicationRoleName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the an associated person is authorized to start using the application with the specified role.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date after which the an associated person is no longer allowed to use the application with the specified role.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If the assessment is provided with an item bank, then this identifies the item bank: a unique code or number used by the item banking system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If the assessment is provided with an item bank, then this identifies the item bank: a unique code or number used by the item banking system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If the assessment is provided with an item bank, then this identifies the item bank: a unique code or number used by the item banking system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If the assessment is provided with an item bank, then this is the name of the item bank.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If the assessment is provided with an item bank, then this is the name of the item bank.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If the assessment is provided with an item bank, then this is the name of the item bank.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The version number of the Assessment Form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The published date of an educational resource, such as instructional media, an assessment form, or section of an assessment form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The published date of an educational resource, such as instructional media, an assessment form, or section of an assessment form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The published date of an educational resource, such as instructional media, an assessment form, or section of an assessment form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The human readable list of one or more of the specific accommodations available. If no accommodations are provided, then this list will not be present.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AccommodationList' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The beginning date of the time period in which the form is intended to be administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ending date of the time period in which the assessment form is intended to be administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A human readable list of delivery platforms the form will support.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PlatformsSupported' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The version number of the Assessment Form Section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used for identification of an Assessment Form Section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RefAssessmentFormSectionIdentificationSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to the Assessment Form Section using the system specified by Identification System for Assessment Form Section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If this section is timed, then this will identify the maximum amount of time the test taker can spend within this section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionTimeLimit' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates this section is sealed, meaning the test taker cannot enter the section until authorized by the proctor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionSealed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that this section can be re-entered, meaning the test taker can return to this section after they have left the section. A common example of this is a two section test where one section does not allow the use of a calculator and the other does. Typically the test taker cannot return to the non-calculator section after they have used a calculator.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionReentry' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A version number or label defined by the publisher.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Specifies a predominant type of assessment asset represented by the Learning Resource. Assessment assets represent any content used to compose an assessment item, is referenced by an item but not part of the item content itself, or is content that is included as part of a section within an assessment form. Assets can be static content such as art work or dynamic assets such as calculators.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssetTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date that this version of the asset was made available for use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique code identifying the Assessment Asset provided by the authoring system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of identifier that is provided for this asset.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssestIdentifierType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the Assessment Asset.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the ownership rights holder or publisher of the asset.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Owner' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'XML encoded in UTF-8 representing the content of the Assessment Asset.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentXML' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'MIME type to specifically indicate the Assessment Asset content type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentMimeType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator (URL) location of the external Assessment Asset content.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'How a building is principally used, regardless of its original design.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the space, as determined by its physical layout and built-in systems and equipment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'SpaceDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefSpaceUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The grade level or primary instructional level at which a student exits a school, program, or an educational institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the type of weapon used during an incident.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefWeaponTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of role served related to the administration of an assessment session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionStaffRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'In a hierarchy of subtests, this element represents the level of the sub test in the hierarchy. The top tier and default is zero.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Tier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'In a hierarchy of subtests, this indicates that this tier is only used as a level in the hierarchy and does not represent a scoring model.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'ContainerOnly' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the version of the learning resource as defined by the publisher.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the possible response is the correct response.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'CorrectIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A feedback message designed to be reported with the assessment performance level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A statement intended for use by education professionals, using professional terminology, to interpret learner needs based on the scored/evaluated portion of an assessment. This statement may inform Descriptive Feedback given to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatement' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of financial application completed by an individual.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RefFinancialAidApplicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The methodology used to determine an individual''s financial need.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefNeedDeterminationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The oldest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The oldest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the organization or class/group has translation services available .', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'LanguageTranslationPolicy' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day that a status became applicable to an individual.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The last year, month and day when a status applied to an individual.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The highest level of education attained by a person''s mother or maternal guardian', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefMaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The highest level of education attained by a person''s father or paternal guardian', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefPaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the significance of a date to an individualized program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramDateType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the status of an individualized program for a student is significantly altered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'IndividualizedProgramDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of minutes per week that a student with disabilities is served in a special education setting separate from his or her non-disabled peers.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'NonInclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of minutes per week that a student with disabilities is served in a regular classroom with his or her non-disabled peers.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The post-school transition plan for the student recorded on their Individualized Education Program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTransitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the status of the service plan for a child is established or significantly altered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The place in which a child''s service plan meeting is held.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramLocationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position titles of individuals who attend the service plan meeting.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanMeetingParticipants' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position titles of individuals who sign a written service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignedBy' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the service plan document is signed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignatureDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date student will be reevaluated for continued placement in a support program(s).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanReevaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Calculated ratio of time the student is in a special education setting. Values range from 0.00 to 1.00. If the student is in a special education setting 25% of the time, the value is .25; if 100% of the time, the value is 1.00.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationFTE' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Calculated ratio of time the student is in a special education setting. Values range from 0.00 to 1.00. If the student is in a special education setting 25% of the time, the value is .25; if 100% of the time, the value is 1.00.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'State/local code used to determine a student''s eligibility for Gifted/Talented program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefProgramGiftedEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The system that defines the categories of the qualification, achievement, personal or organizational quality, or aspect of an identity used in Credential Category Type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'CategorySystem' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The education level, grade level or primary instructional level at which a Learning Resource is intended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the type of immunization that an individual has satisfactorily received. (Note: The International Classification of Diseases (ICD) is maintained by the World Health Organization. The ICD is revised periodically to incorporate changes in the medical field, the most updated and detailed list of International Statistical Classification of Diseases and Related Health Problems can be found at http://www.who.int/classifications/apps/icd/icd10online).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information about the derivation of a Competency Definition Statement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Notes' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A label assigned by the publisher indicating the version of the competency framework statement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Item Response Theory value representing the discrimination of the item. The a parameter is found by taking the slope of the line tangent to the item characteristic curve at the inflection point, B. The parameter is the steepness of the curve at its steepest point.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterA' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Item Response Theory value representing the difficulty of the item. It is the Theta value for the location of the inflection point of the item characteristic curve.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterB' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A category for the difficulty of the item based on the Item Response Theory value.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryDifficultyCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Item Response Theory value for multiple choice items representing the guessing of the item. The c parameter is a lower asymptote. It is the low point of the curve as it moves to negative infinity on the horizontal axis. You can think of c as the probability that a chicken would get the item right.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterC' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'For polytomous assessment items with more than two possible responses, this is the item response theory value representing the threshold between the first and second item characteristic functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD1' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'For polytomous assessment items with more than two possible responses, this is the item response theory value representing the threshold between the second and third item characteristic functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD2' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'For polytomous assessment items with more than three possible responses, this is the item response theory value representing the threshold between the third and fourth item characteristic functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD3' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'For polytomous assessment items with more than four possible responses, this is the item response theory value representing the threshold between the fourth and fifth item characteristic functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD4' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'For polytomous assessment items with more than five possible responses, this is the item response theory value representing the threshold between the fifth and sixth item characteristic functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD5' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'For polytomous assessment items with more than six possible responses, this is the item response theory value representing the threshold between the sixth and seventh item characteristic functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD6' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the item is intended to be administered in two different grades for the goal of establishing cross grade comparison.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'LinkingItemIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The globally unique identifier of an Assessment Form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormGUID' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the assessment item is being field tested on this form of the test, and is not to be included for scoring.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentFormSectionItemFieldTestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date and time the descriptive feedback was entered in response to the results from a scored/evaluated assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AssessmentItemResponseDescriptiveFeedbackDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of scoring a person''s response to an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemResponseScoreStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the database that was used to administer the test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionDatabaseName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A globally unique identifier for an instance of a person taking an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionGUID' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The completion and scoring status for an instance of a person taking an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentRegistrationCompletionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date and time the completion and scoring status was changed for an instance of a person taking an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssessmentRegistrationCompletionStatusDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The data type of the assessment result score value.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultDataTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year that the conceptual design for the assessment was most recently revised substantially.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentRevisionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date and time the descriptive feedback was entered for a scored/evaluated portion of an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultDescriptiveFeedbackDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The measure of sampling variability and measurement error for the score, the amount of error to be expected in the score.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultScoreStandardError' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates the purpose for which this assessment score instance was recorded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the charter school offers open enrollment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolOpenEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Department with jurisdiction over this course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Department with jurisdiction over this course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the crisis that caused the displacement of students.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the crisis ceased to affect the agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the crisis ceased to affect the agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of service offered by an organization that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesOfferedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A number given to a financial account within a local source accounting system. The number may be a concatenation of a standard prefix for the type of account with digits added that have specific meaning within the local system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'AccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A number given to a financial account within a local source accounting system. The number may be a concatenation of a standard prefix for the type of account with digits added that have specific meaning within the local system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialAccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This classification permits expenditures to be segregated by instructional level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The project/reporting code permits organizations to accumulate expenditures to meet a variety of specialized reporting requirements at the local, state, and federal levels. It is a three-digit code with the format 00X. The first two digits identify the particular funding source, authority, or expenditure purpose for which a special record or report is required. The third digit is available to identify particular projects and the fiscal year of the appropriation within that funding source. Each classification is presented by a code range followed by a description.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialExpenditureProjectReportingCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' A unique identifier for the person performing the learner action. The identifier should be encrypted when integrating learning experience data across systems to secure the privacy of the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionActorIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the object upon which the person has performed the Learner Action.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A globally unique identifier for the object upon which the learning has performed the Learner Action which may be a URL with information about a learning resource or to launch the resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of object upon which a person has performed the Learner Action.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A Uniform Resource Locator (URL) that identifies the conditions that govern the user’s ability to access a learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessRightsUrlId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of entity, organization or person, that authored the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAuthorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A Uniform Resource Locator (URL) attributed to the author of a learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The most recent date that the learning resource was updated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceDateModified' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary type of interaction, synchronous or asynchronous, defined for the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An email address for the author of the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorEmail' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An email address for the publisher of the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherEmail' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A Uniform Resource Locator (URL) attributed to the publisher of a learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which this content was first published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkPublicationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A set of one or more alphanumeric characters and/or symbols denoting the positioning of the statement being described in a sequential listing of statements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefSequence' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The narrative of the student performance in a course section as submitted by the instructor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The narrative of the student performance in a course section as submitted by the instructor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of credits required for a student to graduate from the school of enrollment or complete a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of credits required for a student to graduate from the school of enrollment or complete a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that tuition for person''s participation in a program, service, or course is funded or partially funded by an external grant program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that tuition for person''s participation in a program, service, or course is funded or partially funded by an external grant program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student’s parent or guardian is on Active Duty, in the National Guard, or in the Reserve components of the United States military services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryConnectedStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is currently serving on Active Duty, in the National Guard, or in the Reserve components of the United States military services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryActiveStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is a veteran who served on Active Duty, in the National Guard, or in the Reserve components of the United States military services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryVeteranStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of consideration given a type of admission criteria used at an institution during the selection process.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of admission consideration used at an institution during the selection process.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Individual is approved to Work with Children', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'StaffApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The event/action that results in a billable action.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefBillableBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the person ceased to participate in a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationExitDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the person began to participate in a career pathway program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the organization awarding the individual''s credential or license.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialOrLicenseAwardEntity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of a student''s referral to or placement into developmental education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationReferralStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of developmental education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of developmental education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a individual requested a Family Education Rights and Privacy Act (FERPA) block to withhold the release of the person''s directory information.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDirectoryInformationBlockStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Denotes whether the family member can receive Early Childhood Education and Assistance Program (ECEAP) information for the child in question.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ECEAPEligibility' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date the required document was verified for the enrollment application', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifier for an enrollment application document record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Document name for an enrollment application document record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Document type for an enrollment application document record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifier for the application for enrollment or direct services filled out on behalf of a child', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies a specific document required for enrollment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationRequiredDocument' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the reason for verification of enrollment application information', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationReasonType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title/role of employment, official status, or rank of education staff', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEducationStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELLocalRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of service provided to a child.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefELServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' Funds that originate at the State, and not from a federal or local source, that contribute to EL program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELStateRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the core knowledge expertise of a trainer of a professional development experience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefELTrainerCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which the formal education is verified.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefEducationVerificationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is receiving Veteran''s benefits.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Veteran''s benefits a person is receiving.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The school year for which the student''s financial aid application and award data apply. Generally, this is the 12-month period from July 1 to June 30.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The school year for which the student''s financial aid application and award data apply. Generally, this is the 12-month period from July 1 to June 30.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Denotes whether this family member is counted in the family size as it pertains to the federal poverty level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'IncludedInCountedFamilySize' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic year, generally extending from September to June, in which IPEDS data is collected. Most Institutional Characteristics, Salaries, Fall Staff, Fall Enrollment, and Employees by Assigned Position data are collected for the current year; Completions, 12-Month Enrollment, Student Financial Aid, and Finance data collections cover the prior year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'IPEDSCollectionYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date that a Memorandum of Understanding between the Early Learning Organization and the Service Partner is determined to expire.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The effective date that a Memorandum of Understanding between the Early Learning Organization and the Service Partner Organization is effective.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level describing the concentration of study for a postsecondary program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefPSProgramLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The circumstances under which the student exited from enrollment in a postsecondary institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPSExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Priority points used to determine eligibility and placement order', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'EligibilityPriorityPoints' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a training activity has been approved through a state process.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentActivityStateApprovedStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Professional development plan is approved by the employee''s supervisor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanApprovedBySupervisor' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the professional development plan is completed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A billable basis which defines payment. This is how state agencies/programs move funding to the local provider/agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefReimbursementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The individual well child visit scheduled according to the AAP recommended periodicity schedule.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RefScheduledWellChildScreeningId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of management and accountability plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the district or state requirements or guidelines for the design and construction of school facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The authority that mandates through law, regulation, or standard that pertains to a specific mandate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMandateAuthorityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of fee that one must pay when getting a mortgage.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RefFacilityFinancingFeeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of money the school must pay to rent the facility that it is in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'FacilityLeaseAmount' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category of payment that a school must pay to rent the facility that it is in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseAmountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount the borrower pays the lender to compensate the lender for the use of money to purchase a building or facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityMortgageInterestAmount' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of interest paid on a mortgage to the lender to compensate the lender for the use of money to purchase a building or facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of a mortgage as it relates to priority of payment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of indebtedness allowed by law to be carried by the school district.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'IndebtednessAmountAllowed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The dollar amount a school district must pay before its insurance will compensate it for loss.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'InsuranceDeductible' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The millage rate used to calculate property tax revenue for K-12 public education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'PublicEducationMillRate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total assessed value of property that constitutes the basis for public borrowing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityTotalAssessedValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary purpose for which a campus is designed and/or used.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year that the condition of a system, component, equipment, or fixture was checked.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureCheckDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year a system, component, equipment, or fixture was serviced for repair or routine maintenance.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year a major component, system, equipment, or fixture is scheduled to be serviced for preventive or routine maintenance.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureScheduledServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The anticipated time (in years) from the time of installation or service that a properly maintained system, component, equipment, or fixture is expected to operate effectively and efficiently.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureUsefulLife' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the instruction space in a school is used in the calculation of student capacity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'AvailableUtilizedInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation as to whether the space is included in the calculation of school building capacity under state or local guidelines.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingCapacityFactorIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of age appropriate students who can be enrolled in a facility such that the district''s programmatic, operational, and student/teacher work load requirements are met.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'FacilityEnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of one organization’s relationship to another.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RefOrganizationRelationshipId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates the public or private entity holds legal title to the building and/or site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityOwnershipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A URL that resolves to the original or authoritative competency framework document.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkSourceUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The typical minimum age at which a person learns the defined competency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The typical maximum age at which a person learns the defined competency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Effective date of the content of a credential definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefDateEffective' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The first date a credential was offered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The last date a credential was offered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of level indicating a point in a progression through an educational or training context, for which the credential is intended; select from an existing enumeration of such types.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCTDLAudienceLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role that an organization or person has in relation to this Credential Definition based on terms defined by Credential Engine.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAgentRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category used to report the school''s performance on the progress of achieving the English language proficiency indicator.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The state defined status assigned to the school''s performance on the progress of achieving the English language proficiency indicator.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ProgressAcheivingEnglishLearnerProficiencyStateDefinedStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApipDescription', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of children ages two and above that can be served.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAge2AndOlderCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of children under the age of two that can be served.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAgeUnder2Capacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to record revenue and other receivables by source.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the activity for which a service or material object is acquired.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe the service or commodity obtained as the result of a specific expenditure.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify the segregation of expenditures by instructional level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe balance sheet accounts and statement of net position accounts which are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to classify a fund which is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code used to describe a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An additional code appended to the Federal Program Code used to identify a subgrant of the grant identified by the Federal Program Code.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramSubgrantCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Maximum number of age-appropriate students who can be enrolled. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationEnrollmentCapacityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the associated program is the primary function of this organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'PrimaryProgramIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProjectBasedLearningType', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministeredToEnglishLearners', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalBalanceSheetCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalFundClassification', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalProgramCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramSubgrantCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCodingSystemOrganizationType', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000622', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000624', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefLeaveEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000627', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorSecondaryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000630', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000632', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000633', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000633', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000634', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RefOtherNameTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000635', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'AchievementIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000636', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'OutcomeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000647', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'TeacherOfRecord' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000648', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000648', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000649', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000649', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEntryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000651', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'ExitWithdrawalDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000652', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000653', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000654', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000655', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000656', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000657', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsMale' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000658', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsFemale' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000689', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000690', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000691', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000692', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000693', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'URI' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000694', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000695', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000696', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000697', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000698', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefCompetencyFrameworkPublicationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000699', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Jurisdiction' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000700', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000701', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000702', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Subject' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000703', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'VisionScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000704', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'Website' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000705', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HearingScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000706', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'DentalScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000707', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000708', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000709', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000710', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000711', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaDistinctionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000715', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'AssociatedEntityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000716', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefProgramSponsorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000717', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000718', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Label' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000719', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Rules' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000724', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000725', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000726', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AcademicYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000727', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000727', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000728', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDistanceEducationCourseEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000729', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000729', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000730', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'StandardOccupationalClassification' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000731', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000731', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000732', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'InstructionalStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000733', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'MedicalSchoolStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000734', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'FacultyStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000735', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000735', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000737', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000737', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000738', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefTenureSystemId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000739', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffFacultyTenureId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000740', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefAcademicRankId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000741', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000742', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'GraduateAssistantStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000743', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefGraduateAssistantIpedsCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000744', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000744', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000745', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'TuitionPublished' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000746', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RefTuitionUnitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000747', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RequiredStudentFees' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000748', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'InstitutionallyControlledHousingStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000749', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RoomCharges' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000750', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BoardCharges' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000751', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BooksAndSuppliesCosts' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000752', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'OtherStudentExpenses' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000753', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'PriceOfAttendance' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000754', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'ComprehensiveFee' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000755', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'PostsecondaryApplicant' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000756', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefAdmittedStudentId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000757', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'WaitListedStudent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000758', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGradePointAverageDomainId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000759', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolPercentile' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000760', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'HousingOnCampus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000761', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FraternityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000762', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'SororityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000763', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidApplicant' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000765', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialNeed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationTestCompanyId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000768', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepCompleterStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000769', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefAltRouteToCertificationOrLicensureId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000770', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefCriticalTeacherShortageCandidateId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000771', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefSupervisedClinicalExperienceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000772', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'ClinicalExperienceClockHours' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000773', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationCredentialExamId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000774', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationExamScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000779', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtIntakeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtPosttestId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000782', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeSpecialProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000784', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAePostsecondaryTransitionActionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000786', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000787', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000788', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAeTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000788', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAETeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000789', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'ECDegreeOrCertificateHolder' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000790', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'ProxyContactHours' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001263', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'ReleaseStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001264', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'DIFValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001265', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'KappaValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001266', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryKappaAlgorithmId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001267', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'BodyText' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001268', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stimulus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001269', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'PossibleResponseOption' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001270', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001271', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001272', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MarkingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SchedulingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001274', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'AttendanceTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001275', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EventDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001276', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefAccommodationsNeededTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdvancedPlacementCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001279', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RefPDActivityEducationLevelsAddressedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001281', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'ReactionDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001282', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergySeverityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001284', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ResultXML' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001287', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001287', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001287', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001288', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001288', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001288', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001288', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001288', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001289', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'LastUpdated' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001290', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RefCareerEducationPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001292', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolAuthorizerAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001292', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001293', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolApprovalYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefCorrectionalEducationFacilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001298', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001301', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseApplicableEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001302', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CertificationDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001303', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001306', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FundingProgram' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001307', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseHonorsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001308', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001309', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'CourseInstructionSiteName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionSiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001311', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001313', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'CourseNarrativeExplanationGrade' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001314', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'CourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001316', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CourseTotal' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001317', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefCreditHoursAppliedOtherProgramId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001318', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CTEInstructorIndustryCertification' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001319', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityDeterminationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001322', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'IEPPlacementMeetingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001323', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DistanceEducationProgramEnrollmentInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001324', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyAdmitInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001326', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralExamTakenDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001327', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDoctoralExamsRequiredCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001328', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001328', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001329', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'GroupSize' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001330', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefOrganizationMonitoringNotificationsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001331', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001332', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001333', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefPurposeOfMonitoringVisitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001334', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'TypeOfMonitoring' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001336', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefELOutcomeMeasurementLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001337', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELProfessionalDevelopmentTopicAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001338', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001339', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001340', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'StatusDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001341', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'EmergencyContactInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001342', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmployedPriorToEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001343', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001344', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FamilyConsumerSciencesCourseInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001345', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001346', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001347', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001348', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001349', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001350', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'ActualValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001351', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'BudgetedValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001352', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidIncomeLevel' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001354', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001356', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefFrequencyOfServiceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001357', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefGraduateOrDoctoralExamResultsStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001358', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningEquipmentUsed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001359', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningFollowUpRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001360', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'PartB619PotentialEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001363', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001364', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001365', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001366', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDeclineDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001367', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'DateOfTransitionPlan' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001369', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentMultipleOffenseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001371', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentPerpetratorInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001373', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RefIncidentPersonRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001374', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RegulationViolatedDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001375', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RelatedToDisabilityManifestationInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001376', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'ReportedToLawEnforcementInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001381', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001383', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramPlannedServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001384', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantProvider' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001386', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefK12EndOfCourseRequirementId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001388', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001389', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessAPITypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001390', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001391', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessModeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001392', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'AdaptationURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001393', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AssistiveTechnologiesCompatibleInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001394', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceBookFormatTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001395', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceControlFlexibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001396', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaSubTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001397', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001398', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AdaptedFromURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001778', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001779', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityCensusTract' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001781', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionDateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001782', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionMaterialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityExpectedLife' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001784', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'FacilityReplacementValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001785', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfStories' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001786', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001787', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteImprovementLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001788', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearBuilt' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001789', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearOfLastModernization' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001790', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingAirDistributionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001791', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCommMgmtComponentSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001792', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001793', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilitySystemOrComponentConditionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001794', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCoolingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001795', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingElectricalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001796', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityApplicableFederalMandateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001797', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityFederalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001798', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingFireProtectionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001799', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHeatingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001800', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHVACSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001801', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'BuildingInstitutionalEquipmentDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001802', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalConveyingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001803', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingPlumbingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001804', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSecuritySystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityStateOrLocalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001806', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'FacilityStateOrLocalMandateName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001807', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingTechnologyWiringSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001808', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityLocationOfHazardousMaterials' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001810', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityNearbyEnvHazardDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingVerticalTransportationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001813', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAdministrativeSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001814', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingArtSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001815', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingBasicClassroomDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001816', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001817', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCareerTechEducationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCirculationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001819', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingEnvOrEnergyPerformanceRatingCatId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001820', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilityFurnishingsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001821', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFoodServiceSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001822', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingIndoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001823', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingLibMediaCenterSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOperationsOrMaintSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001825', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001826', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorOrNonathleticSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001827', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingPerformingArtsSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001828', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingSchoolDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001829', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingScienceSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001830', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteOutdoorAreaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001831', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpaceDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001832', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpecEdSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001833', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingStudentSupportSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001834', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitectName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001835', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitecturalFirmName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001836', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAssemblySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001837', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceDeterminationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001838', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001839', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComponentDeficiencyDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001840', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001841', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityEstimatedCostToEliminateDeferredMaint' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001842', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityHazardousCondExpectedRemediationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001843', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFullServiceKitchenTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001844', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001845', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionTestingDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001846', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionScoreResultDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001847', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionViolationDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001848', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'InstallationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001849', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'LifecycleCost' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001850', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingSiteImprovementDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001851', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingInstructionalSpaceFactorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseRationaleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001853', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseSchedulingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001854', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUserTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001855', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingCommunityUseSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001856', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingHoursOfPublicUsePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001857', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNetAreaOfInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001858', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfTeachingStations' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001859', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingPublicUsePolicyDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001860', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefBuildingSiteUseRestrictionsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001861', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingSpaceUtilizationArea' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001862', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefStudentEnrollmentAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001863', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingUnassignedSpaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001864', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RefFacilityAuditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001865', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCharterSchoolRealtyAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001866', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCleaningStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001867', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceAgencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001868', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergyConservationMeasureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001869', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'BuildingEnergyServiceCompanyName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001870', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergySourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001871', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMgmtEmergencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001872', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityCapitalProgramMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001873', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityOperationsMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001874', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityHazardousMaterialsOrCondTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001875', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityJointDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001876', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityMaintStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001877', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityNaturallyOccurringHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001878', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityProviderTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001879', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001880', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingDateOfCertificateOfOccupancy' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001881', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'FacilityAuditDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001882', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'FacilitiesPlanDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001883', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001884', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001885', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMandateAuthorityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001886', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RefFacilityFinancingFeeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001887', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'FacilityLeaseAmount' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001888', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseAmountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001889', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001890', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityMortgageInterestAmount' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001891', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001892', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001893', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'IndebtednessAmountAllowed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001894', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'InsuranceDeductible' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001895', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'PublicEducationMillRate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001896', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityTotalAssessedValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001897', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureCheckDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001900', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureScheduledServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001943', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RefRaceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000137', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000137', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000140', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefHighSchoolGraduationRateIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000141', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000141', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000142', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'HighlyQualifiedTeacherIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000143', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'HireDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000144', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'HispanicLatinoEthnicity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000146', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RefHomelessNighttimeResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000149', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'HomelessnessStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000150', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'HonorDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000165', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InitialEnrollmentTerm' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000167', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefInstitutionTelephoneTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000168', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursAttempted' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000169', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefInstructionalActivityHoursId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000170', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefIntegratedTechnologyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000171', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'LastQualifyingMoveDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000172', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000173', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000175', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'SupervisoryUnionIdentificationNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefMagnetSpecialProgramId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000182', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MarkingPeriodName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000183', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MidTermMark' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000184', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000186', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000187', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000188', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefMepStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000190', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'CountyName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000190', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'AddressCountyName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000191', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'NameOfInstitution' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000194', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RefNeglectedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefVisaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000197', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'NormalLengthTimeForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000198', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefTimeForCompletionUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000201', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysAbsent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000202', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000202', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000205', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationOtherBenefits' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000206', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'OtherName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000207', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefParaprofessionalQualificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000209', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusRlaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000210', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'PersistentlyDangerousStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000212', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Prefix' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000213', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'PositionTitle' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000214', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000214', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000216', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000217', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RefPreKEligibleAgesNonIDEAId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000218', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'PrimaryDisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000219', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000219', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000220', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000220', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000221', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000222', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000223', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'ProgramLengthHours' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000224', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefProgramLengthHoursTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000225', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RefProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000226', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ProjectedGraduationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000227', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolChoiceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000228', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotTestedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000229', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RefActivityRecognitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000230', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefReconstitutedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000231', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RelatedCompetencyDefinitions' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000232', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefRestructuringActionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000233', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationRetirementBenefits' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000234', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'SalaryForTeachingAssignmentOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000238', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementFundsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000239', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSigInterventionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000240', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000242', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000243', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000244', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000245', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000250', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SCEDSequenceOfCourse' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000252', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Designator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000252', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'SessionDesignator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000255', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefSexId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefSingleSexClassStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000260', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000261', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000261', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000262', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000262', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000263', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationServicesExitDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000264', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000264', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000265', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'StandardizedAdmissionTestScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000266', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RefStandardizedAdmissionTestId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000267', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000268', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefStateOfResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000269', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000269', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000271', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'AttendanceRate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000272', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsStudentLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000274', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000275', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000279', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000279', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000280', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefPersonTelephoneNumberTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000281', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RefTitleIIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000282', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIInstructionalServicesId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000284', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Prekindergarten Daily Length', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Kindergarten Daily Length', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefKindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Calendar Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Calendar Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Days in Session', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'DaysInSession' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'First Instruction Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'FirstInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Last Instruction Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'LastInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Minutes', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Minutes Per Day', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MinutesPerDay' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Cost', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentCost' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Reporter Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentReporterTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reporter Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentReporterId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Behavior', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Injury Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Duration of Disciplinary Action', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DurationOfDisciplinaryAction' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Related to Zero Tolerance Policy', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RelatedToZeroTolerancePolicy' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Full Year Expulsion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'FullYearExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Shortened Expulsion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'ShortenedExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Time Description Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentTimeDescriptionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Core Academic Course', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Core Academic Course', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Class Beginning Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassBeginningTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Class Ending Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassEndingTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Class Meeting Days', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassMeetingDays' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Class Period', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassPeriod' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Timetable Day Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'TimeDayIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Receiving Location of Instruction', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RefInstructionLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Assignment Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'PrimaryAssignment' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Itinerant Teacher', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Itinerant Teacher', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'First Entry Date into a US School', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstEntryDateIntoUSSchool' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Promotion Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Nonpromotion Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefNonPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Public School Residence Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Public School Residence Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Educational Environment for School Age', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentSchoolAgeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title III Accountability Progress Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIIAccountabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Method of Children with Disabilities', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodOfCwdId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Interim Removal Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Reason Not Completing', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotCompletingId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Interim Removal', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Consolidated Migrant Education Program Funds Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ConsolidatedMepFundsStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Personnel Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Personnel Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technology Skills Standards Met', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'TechnologySkillsStandardsMet' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Federal Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Targeted Assistance Staff Funded', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title I Targeted Assistance Staff Funded', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proficiency Target Status for Reading and Language Arts', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusRLAId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Method for Firearms Incidents', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodFirearmsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Discipline Method for Firearms Incidents', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIDEADisciplineMethodFirearmId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Firearm Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefFirearmTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Support Services Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Support Services Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Support Services Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Educational Environment for Early Childhood', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefIDEAEnvironmentELId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Educational Environment for Early Childhood', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentECId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Progress Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Progress Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Prioritized for Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'PrioritizedForServices' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Continuation of Services Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ContinuationOfServicesStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Age Group Taught', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Age Group Taught', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technology Literacy Status in 8th Grade', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefTechnologyLiteracyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Supplemental Educational Services Funds Spent', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Public School Choice Funds Spent', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'PublicSchoolChoiceFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Pre and Post Test Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Pre and Post Test Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Pretest Outcome', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentPretestOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proficiency Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefProficiencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Supplemental Education Services Public School Choice Twenty Percent Obligation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesSchoolChoice20PercentObligation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disability Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'DisabilityStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Educational Services After Removal', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'EducationalServicesAfterRemoval' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Single Parent or Single Pregnant Woman Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'SingleParentOrSinglePregnantWoman' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cohort Graduation Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cohort Graduation Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Poverty Designation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Poverty Designation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Enrollment Action', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentActionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Access', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Access', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Technical Education Nontraditional Gender Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefNonTraditionalGenderStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Faculty and Administration Performance Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RefStaffPerformanceLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career and Technical Education Participant', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteParticipant' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career and Technical Education Nontraditional Completion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteNonTraditionalCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Responsible School Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefK12ResponsibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Additional Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Additional Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Additional Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Additional Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'LocationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'Location' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Alternate Day Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'AlternateDayName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Absent Attendance Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAbsentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Present Attendance Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefPresentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Attendance Event Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Site Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Site Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Calendar Event Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RefCalendarEventType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Content Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefContentStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Latitude', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Latitude', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Longitude', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Longitude', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Action Length Difference Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineLengthDifferenceReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Displaced Student Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Displaced Student Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Crisis Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Crisis Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Crisis Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Crisis Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Keyword Translation Language Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'KeywordTranslationLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Keyword Translation Language Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefKeywordTranslationsLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Signing Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSigningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Alternative Representation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedAlternativeRepresentationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Spoken Source Preference Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSpokenSourcePreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Read at Start Preference', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ReadAtStartPreferenceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need User Spoken Preference Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUserSpokenPreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Directions Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'AssessmentNeedDirectionsOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Masking Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedMaskingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Text Messaging String', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementTextMessagingString' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Sound File URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementSoundFileUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Time Multiplier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'AssessmentNeedTimeMultiplier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Line Reader Highlight Color', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'LineReaderHighlightColor' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Overlay Color', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'OverlayColor' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Foreground Color', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'ForegroundColor' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Background Color', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'BackgroundColor' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Increased Whitespacing Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedIncreasedWhitespacingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Testing Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Score Publish Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'ScorePublishDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Name of Professional Credential or License', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cardiopulmonary Resuscitation Certification Expiration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CardiopulmonaryResuscitationCertification' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'First Aid Certification Expiration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'FirstAidCertification' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Professional Development Activity Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Professional Development Activity Completion Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment NAICS Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment NAICS Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment NAICS Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment NAICS Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment NAICS Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Type for Organization', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RefOrganizationLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Instructional Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeInstructionalProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goals for Attending Adult Education', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefGoalsForAttendingAdultEducationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Postsecondary Transition Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'PostsecondaryTransitionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Staff Employment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Certification Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefAeCertificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Total Approved Early Childhood Credits Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalApprovedECCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Pitch', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Pitch' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NAEP Mathematical Complexity Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepMathComplexityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Published Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Descriptive Feedback Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedbackSource' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Special Event Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Special Event Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Parent URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NAEP Aspects of Reading', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepAspectsOfReadingId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssessmentNeedType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Security Issue', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Response Processing Template URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingTemplateUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Response Processing XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Response Declaration XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ResponseDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Outcome Declaration XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'OutcomeDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Template Declaration XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateDeclarationXml' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Template Processing XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'TemplateProcessingXml' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Modal Feedback XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ModalFeedbackXml' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item APIP Item Body XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'ItemBodyXml' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Adaptive Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Adaptive Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'AdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Course Section Mark Final Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'FinalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Copyright Holder Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightHolderName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Copyright Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'CopyrightYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Concept Keyword', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Peer Rating System Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Peer Rating Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Peer Rating System Maximum Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Peer Rating System Minimum Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Peer Rating System Optimum Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'OptimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Platform User Agent', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'PlatformUserAgent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Criteria URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'CriteriaUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Text Complexity Minimum Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Text Complexity Maximum Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accommodation Other Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'OtherDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Virtual Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Virtual Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Instructional Delivery Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Test Attempt Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestAttemptIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Award Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Award End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Peer Rating Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authentication Identity Provider Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authentication Identity Provider URI', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderUri' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authentication Identity Provider Login Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'LoginIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authentication Identity Provider Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authentication Identity Provider End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization Application Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization Application URI', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Uri' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization Application Role Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'ApplicationRoleName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Bank Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Bank Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Bank Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Bank Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Bank Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Bank Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Published Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Published Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Published Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Accommodation List', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AccommodationList' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Intended Administration Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Intended Administration End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Platforms Supported', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PlatformsSupported' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Identification System for Assessment Form Section', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RefAssessmentFormSectionIdentificationSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Time Limit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionTimeLimit' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Sealed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionSealed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Section Reentry', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionReentry' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssetTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Crisis Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Crisis End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Crisis End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Services Offered', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesOfferedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'AccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialAccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Level of Instruction Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Project Reporting Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialExpenditureProjectReportingCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Actor Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionActorIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Object Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Object Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Object Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access Rights URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessRightsUrlId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Author Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAuthorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Author URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Date Modified', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceDateModified' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Interaction Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Author Email', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorEmail' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Publisher Email', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherEmail' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Publisher URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Publication Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkPublicationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Sequence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefSequence' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Course Section Grade Narrative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Course Section Grade Narrative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Required', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Required', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tuition Funded', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tuition Funded', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Connected Student Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryConnectedStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Active Student Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryActiveStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Veteran Student Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryVeteranStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Admission Consideration Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Admission Consideration Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Approval Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'StaffApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Billable Basis Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefBillableBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Pathways Program Participation Exit Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationExitDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Pathways Program Participation Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential or License Award Entity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialOrLicenseAwardEntity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Developmental Education Referral Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationReferralStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Developmental Education Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Developmental Education Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Directory Information Block Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDirectoryInformationBlockStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Education and Assistance Program Eligibility', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ECEAPEligibility' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Enrollment Application Verification Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Enrollment Application Document Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Enrollment Application Document Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Enrollment Application Document Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Application Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Application Required Document', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationRequiredDocument' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Enrollment Application Verification Reason Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationReasonType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Education Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEducationStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Local Revenue Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELLocalRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefELServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning State Revenue Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELStateRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Trainer Core Knowledge Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefELTrainerCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Education Verification Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefEducationVerificationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Veteran’s Benefit Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Veteran’s Benefit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Year Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Year Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Included in Counted Family Size', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'IncludedInCountedFamilySize' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Collection Year Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'IPEDSCollectionYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Memorandum of Understanding End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Memorandum of Understanding Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Program Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefPSProgramLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Exit or Withdrawal Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPSExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Eligibility Priority Points', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'EligibilityPriorityPoints' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity State Approved Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentActivityStateApprovedStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Plan Approved by Supervisor', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanApprovedBySupervisor' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Plan Completion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reimbursement Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefReimbursementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Scheduled Well Child Screening', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RefScheduledWellChildScreeningId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Partner Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Partner Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Site Preference Rank', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'SitePreferenceRank' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Training and Technical Assistance Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'TrainingAndTechnicalAssistanceLevel' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Transfer-out Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefTransferOutIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Trimester When Prenatal Care Began', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RefTrimesterWhenPrenatalCareBeganId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Well Child Screening Received Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'WellChildScreeningReceivedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Employment Separation Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Community-based Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefCommunityBasedTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Inclusive Setting Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Inclusive Setting Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Inclusive Setting Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ServiceDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Service Professional Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELServiceProfessionalStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Fiscal Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Branch', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryBranchId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'DQP Categories of Learning', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefDQPCategoriesOfLearningId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Fiscal Period Begin Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodBeginDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Fiscal Period End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Accounting Period Encumbered Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'EncumberedValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Program Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Program Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'ProgramNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Accounting Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Accounting Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Attendance Event Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Management Organization Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolManagementOrganizationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Contract Id Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractIdNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Contract Approval Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractApprovalDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Contract Renewal Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractRenewalDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'National School Lunch Program Direct Certification Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'NSLPDirectCertificationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Maximum Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'MaximumCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Part C Eligibility Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAPartCEligibilityCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tribal Affiliation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefTribalAffiliationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Functional Expense Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Revoked Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Revoked Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedReason' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Issuer Revocation List URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RevocationListURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Image URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Completion Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Award Requirements URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RequirementsURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Award Prerequisite Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardPrerequisiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Repeatability Maximum Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RepeatabilityMaximumNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12FederalFundAllocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolIndicatorStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaAlternateFundUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Start Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Start Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'End Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'End Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Full Time Equivalency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Entry Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramEntryReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Comprehensive Support and Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefComprehensiveSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Targeted Support and Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Additional Targeted Support and Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAdditionalTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Levels Approved', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Levels Approved', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number Listed Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Telephone Number Listed Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Do Not Publish Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Do Not Publish Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Do Not Publish Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Do Not Publish Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Do Not Publish Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Do Not Publish Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Out of Workforce Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Out of Workforce Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Learning Device Away From School', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAwayFromSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Learning Device Access', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAccessId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Learning Device Provider', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceProviderId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Access In Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'InternetAccessInResidence' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Barrier to Internet Access In Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefBarrierToInternetAccessInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Access Type In Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetAccessTypeInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Performance In Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetPerformanceInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cohort Median Earnings', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'CohortMedianEarnings' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Program Exit Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAdultEducationProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'WIOA Barriers to Employment', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RefWIOABarrierstoEmploymentId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'WIOA Career Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOACareerServices' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'WIOA Training Services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOATrainingServices' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Federal Race and Ethnicity Declined', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'FederalRaceAndEthnicityDeclined' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Personal Information Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Role', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RefRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'First Generation College Student', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'FirstGenerationCollegeStudent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NCES SIDE Estimate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideEstimate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NCES SIDE Standard Error', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideStandardError' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NCES SIDE Date Processed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideDateProcessed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NCES SIDE Vintage Begin Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageBeginYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NCES SIDE Vintage End Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageEndYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Terminal Degree Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefinitionTerminalDegreeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Credential Attainment Postsecondary Enrollment Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Credential Attainment Employed Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentEmployedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Credential Attainment Postsecondary Credential Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSCredentialIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Days Tardy', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysTardy' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Source Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RefStaffCompensationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Annual Supplement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationAnnualSupplement' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Longevity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationLongevity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Teacher Inexperienced Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEDFactsTeacherInexperiencedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Teacher Out of Field Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefOutOfFieldStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student School Affiliation State Defined Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefStudentSchoolAffiliationStateDefinedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Source System Data Collection Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemDataCollectionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Source System Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection Open Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionOpenDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection Close Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionCloseDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection Academic School Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionAcademicSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection School Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Creator Entity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Status Creator Entity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Upload Speed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetUploadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Download Speed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetDownloadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Speed Test Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetSpeedTestDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Academic or Career and Technical Outcome Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Academic or Career and Technical Outcome Exit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Emancipated Minor', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'EmancipatedMinor' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Household College Students', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfHouseholdCollegeStudents' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Dependents Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefNumberOfDependentsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Children of Fallen Heroes Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'ChildrenOfFallenHeroesIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Evaluation Part Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'PartName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Evaluation Part Score or Rating', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Evaluation Part Scale', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Home Language Survey Administration Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Home Language Survey Administration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Data Collection Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'RefDataCollectionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Project-Based Learning Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'ProjectBasedLearningIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Project-Based Learning Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'OrganizationProjectBasedLearningId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Insurance Coverage', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHealthInsuranceCoverageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dental Insurance Coverage Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalInsuranceCoverageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Level of Specialization in Early Learning', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELLevelOfSpecializationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Degree or Certificate Title or Subject', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateTitleOrSubject' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Degree or Certificate Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefDegreeOrCertificateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Credential', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodCredentialId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Initial License Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicensingDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Initial License Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Continuing License Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Continuing License Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'License Exempt', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'License Exempt', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Operation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'OperationalStatusEffectiveDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Option Variation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Option Variation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Option Variation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hours Available Per Day', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hours Available Per Day', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Days Available Per Week', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Days Available Per Week', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Setting', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Setting', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Rating and Improvement System Participation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RefQrisParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Rating and Improvement System Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment in Postsecondary Award Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Activity Hours Completed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Activity Hours Completed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Award Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classroom Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'ClassroomIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classroom Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'ClassroomId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Identification System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'IdentificationSystem' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'FormNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Abbreviation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Abbreviation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Score Metric Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Score Metric Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Recommendation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'InstructionalRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Objective', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Accommodation Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAssessmentAccommodationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Secure Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Secure Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accommodation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accommodation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Platform Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentPlatformTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Special Circumstance Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Special Circumstance Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Difficulty', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Difficulty' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Characteristic Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemCharacteristicTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Choice Pattern', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'ResponseChoicePattern' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Minimum Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Maximum Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Optimal Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'OptimalValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Distractor Analysis', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'DistractorAnalysis' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Stem', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stem' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Duration', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Duration' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Allotted Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessItemResponseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Aid Set Used', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AidSetUsed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Time Assessed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'TimeAssessed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Allotted Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Type Administered', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Performance Level Score Metric', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'ScoreMetric' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Performance Level Lower Cut Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'LowerCutScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Performance Level Upper Cut Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'UpperCutScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rubric URL Reference', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'UrlReference' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State ANSI Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RefStateANSICodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Person Relationship Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RefPersonRelationshipTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'City of Birth', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State of Birth Abbreviation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Birthdate Verification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Birthdate Verification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Continuation of Services Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefContinuationOfServicesReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Eligibility Expiration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MepEligibilityExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Multiple Birth Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'MultipleBirthIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Student Qualifying Arrival Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MigrantStudentQualifyingArrivalDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Qualifying Move From City', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'QualifyingMoveFromCity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Qualifying Move From Country', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromCountryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Qualifying Move From State', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromStateId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Designated Graduation School Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'DesignatedGraduationSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Enrollment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Immunization Record Flag', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ImmunizationRecordFlag' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Medical Alert Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefMedicalAlertIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Project Based', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepProjectBasedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Appealed Adequate Yearly Progress Designation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDesignation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adequate Yearly Progress Appeal Changed Designation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealChangedDesignation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adequate Yearly Progress Appeal Process Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Transferability of Funds', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'StateTransferabilityOfFunds' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title III Language Instruction Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title III Language Instruction Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instruction Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instruction Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Barrier to Educating Homeless', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefBarrierToEducatingHomelessId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Assessment Standards Funding', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessStandardsFunding' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Assessment Administration Funding', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessmentAdminFunding' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Date State Received Title III Allocation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateStateReceivedTitleIIIAllocation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Date Title III Funds Available to Subgrantees', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateTitleIIIFundsAvailableToSubgrantees' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Days for Title III Subgrants', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'NumberOfDaysForTitleIIISubgrants' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Innovative Dollars Spent', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Innovative Dollars Spent on Strategic Priorities', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpentOnStrategicPriorities' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Project Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepProjectTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Innovative Programs Funds Received', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeProgramsFundsReceived' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Literacy Assessment Administered Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RefLiteracyAssessmentId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Literacy Goal Met Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyGoalMetStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Literacy Post Test Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPostTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Literacy Pre Test Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPreTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Indicator Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'IndicatorName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Instrument', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Instrument' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Collection Frequency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'CollectionFrequency' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Year Most Recent Collection', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'MostRecentCollection' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21595', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RefCalendarEventType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21598', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefContentStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21599', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21599', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21600', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21600', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineLengthDifferenceReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21603', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21603', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21604', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21605', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21606', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21607', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21609', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21609', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21613', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21614', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21615', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21615', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefLeaveEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21620', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorSecondaryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21623', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21625', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21626', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21626', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21627', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RefOtherNameTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21636', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'AchievementIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21638', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'OutcomeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21649', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'TeacherOfRecord' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21651', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21651', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21652', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEntryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21653', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'ExitWithdrawalDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21654', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21660', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21661', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21662', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21663', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21664', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsMale' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21665', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsFemale' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21666', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21667', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21668', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21669', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21670', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'URI' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21671', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21672', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21673', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21674', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21675', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefCompetencyFrameworkPublicationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21676', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Jurisdiction' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21677', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21678', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21679', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Subject' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21680', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'VisionScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21300', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'Website' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21681', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HearingScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21682', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'DentalScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21683', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21684', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21685', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21686', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21687', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21688', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21688', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21689', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaDistinctionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21691', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'AssociatedEntityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21692', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefProgramSponsorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21693', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21694', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Label' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21695', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Rules' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21700', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21701', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21702', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AcademicYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21703', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21703', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21704', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDistanceEducationCourseEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21705', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21705', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21707', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'StandardOccupationalClassification' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21708', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21708', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21709', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'InstructionalStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21710', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'MedicalSchoolStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21711', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'FacultyStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21714', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21714', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21715', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefTenureSystemId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21716', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffFacultyTenureId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21717', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefAcademicRankId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21719', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21720', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'GraduateAssistantStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21721', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefGraduateAssistantIpedsCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21722', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21722', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21723', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'TuitionPublished' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21725', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RefTuitionUnitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22163', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'OptimumValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22112', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'PlatformUserAgent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22113', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'CriteriaUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22114', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22115', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexityMaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22116', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'OtherDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22167', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22167', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'VirtualIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22168', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22119', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestAttemptIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22120', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22121', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CredentialAwardEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22169', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22170', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22171', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22122', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22123', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'IdentityProviderUri' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22124', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'LoginIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22125', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22126', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22127', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22128', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'Uri' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22129', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'ApplicationRoleName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22130', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22131', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22132', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22132', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22132', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22133', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22133', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22133', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentItemBankName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22134', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22135', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22135', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22135', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22136', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AccommodationList' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22137', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'IntendedAdministrationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22139', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'PlatformsSupported' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22140', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22141', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RefAssessmentFormSectionIdentificationSystemId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22142', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22143', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionTimeLimit' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22144', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionSealed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22145', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SectionReentry' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22146', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22147', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssetTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22148', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22149', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22150', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssestIdentifierType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22151', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22152', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Owner' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22153', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentXML' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22154', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentMimeType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22155', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22173', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22174', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'SpaceDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22175', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefSpaceUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22177', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefWeaponTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22179', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionStaffRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22180', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Tier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'ContainerOnly' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22182', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22183', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'CorrectIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22184', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22185', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatement' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22186', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RefFinancialAidApplicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22188', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefNeedDeterminationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22189', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22189', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22190', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'LanguageTranslationPolicy' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22192', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22193', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22194', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefMaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22195', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefPaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramDateType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22197', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'IndividualizedProgramDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22198', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'NonInclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTransitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22201', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22202', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramLocationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22203', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanMeetingParticipants' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22204', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignedBy' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22205', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignatureDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22207', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanReevaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationFTE' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22210', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefProgramGiftedEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22211', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'CategorySystem' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22212', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22214', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22215', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Notes' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22216', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22217', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterA' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22218', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterB' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22219', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryDifficultyCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22220', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterC' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22221', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD1' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22222', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD2' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22223', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD3' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22224', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD4' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22225', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD5' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22226', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD6' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22227', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'LinkingItemIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22228', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'PointBiserialCorrelationValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22229', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'ReleaseStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22563', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22566', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialOrLicenseAwardEntity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22567', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationReferralStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22568', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22568', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22569', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDirectoryInformationBlockStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22570', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ECEAPEligibility' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22571', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22572', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22573', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22574', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22576', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22578', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationRequiredDocument' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22579', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationReasonType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22581', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEducationStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22582', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELLocalRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22583', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefELServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22584', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELStateRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22585', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefELTrainerCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22586', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefEducationVerificationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22590', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22590', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22591', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'IncludedInCountedFamilySize' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22592', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'IPEDSCollectionYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22593', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22594', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22595', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefPSProgramLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPSExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22597', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'EligibilityPriorityPoints' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22598', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentActivityStateApprovedStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22599', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanApprovedBySupervisor' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22600', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanCompletion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22601', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefReimbursementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RefScheduledWellChildScreeningId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22603', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22606', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22608', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'SitePreferenceRank' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22609', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'TrainingAndTechnicalAssistanceLevel' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefTransferOutIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RefTrimesterWhenPrenatalCareBeganId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22612', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'WellChildScreeningReceivedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22613', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22614', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefCommunityBasedTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22615', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22615', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22615', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22616', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ServiceDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELServiceProfessionalStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22620', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22621', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryBranchId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22622', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefDQPCategoriesOfLearningId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22623', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodBeginDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22624', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22625', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'EncumberedValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22626', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22627', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'ProgramNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22628', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22629', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22630', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22631', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolManagementOrganizationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22632', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractIdNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22633', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractApprovalDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22634', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractRenewalDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22635', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'NSLPDirectCertificationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22636', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'MaximumCapacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22637', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAPartCEligibilityCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22638', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefTribalAffiliationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22639', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22640', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22641', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22642', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedReason' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22643', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RevocationListURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22644', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22645', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22646', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RequirementsURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22647', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardPrerequisiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22648', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RepeatabilityMaximumNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22649', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefPESCAwardLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'EvidenceURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22651', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22652', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22653', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22654', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22655', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueRestrictionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22656', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22657', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSNaturalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22658', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22659', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22660', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSIntercollegiateAthleticsExpensesId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22661', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBPellGrantTransactionsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22662', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportScheduleId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22663', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'TransferOfRightsStatement' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22664', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22665', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'MeetingDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22666', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22667', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Applicability' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22668', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'IEPAlternativeAssessmentRationale' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22669', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'ReasonDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22670', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22671', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'CurrentPerformanceDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22672', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AccuracyPercent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22673', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AttemptsCount' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22674', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'Metric' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22675', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'SuccessCount' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12FederalFundAllocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22900', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22900', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22901', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22901', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22906', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22909', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramEntryReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22904', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefComprehensiveSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22910', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22902', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAdditionalTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22907', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22907', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22911', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22911', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22908', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21228', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotTestedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21229', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RefActivityRecognitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21230', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefReconstitutedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21231', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RelatedCompetencyDefinitions' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21232', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefRestructuringActionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21233', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationRetirementBenefits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21234', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'SalaryForTeachingAssignmentOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21238', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementFundsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21239', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSigInterventionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21240', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21242', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21243', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21244', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21245', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21250', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SCEDSequenceOfCourse' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21252', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Designator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21252', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'SessionDesignator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21255', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefSexId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefSingleSexClassStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21260', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21261', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21261', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationParaprofessional' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21262', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21262', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationRelatedServicesPersonnel' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21263', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationServicesExitDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21264', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21264', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'SpecialEducationTeacher' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21265', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'StandardizedAdmissionTestScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21266', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RefStandardizedAdmissionTestId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21267', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21268', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefStateOfResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21269', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21269', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'StreetNumberAndName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21271', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'AttendanceRate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21272', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsStudentLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21274', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21275', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialBasisId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefTeachingCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21279', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21279', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'TelephoneNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21280', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefPersonTelephoneNumberTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21281', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RefTitleIIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21282', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIInstructionalServicesId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21284', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefTitleIProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21285', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefTitleISchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21289', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RefK12LeaTitleISupportServiceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21292', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'TitleIVParticipantAndRecipient' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21293', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalBenefits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21294', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'TotalNumberInClass' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21294', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolGraduatingClassSize' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21295', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalSalary' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefTransferReadyId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21297', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefTuitionResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefUSCitizenshipStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21302', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21305', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21305', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21306', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'ImmunizationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21307', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21308', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefVisionScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21309', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHearingScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeightAtBirth' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21313', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeeksOfGestation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21314', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21315', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEvaluationFindingId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21316', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21317', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesReceivedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefServicesId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21323', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21323', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21324', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'EnrollmentDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RefSchoolFoodServiceProgramId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21328', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'CustodialRelationshipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21329', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInFamily' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21330', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInHousehold' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21331', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIncome' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21332', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefFamilyIncomeSourceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21333', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefIncomeCalculationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21334', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHealthInsuranceCoverageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalInsuranceCoverageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21340', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELLevelOfSpecializationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21341', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateTitleOrSubject' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21342', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefDegreeOrCertificateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21344', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodCredentialId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21346', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21346', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21347', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicensingDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21347', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21348', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the student is participating in and served by programs under Title I, Part A of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of instructional services provided to students in ESEA Title I programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIInstructionalServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of employment, official status, or rank for staff working in a Title I program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Title I program offered in the school or district.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a school is designated under state and federal regulations as being eligible for participation in programs authorized by Title I of ESEA as amended and whether it has a Title I program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleISchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of support services provided to students in Title I programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12LeaTitleISupportService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person who has successfully completed a transfer-preparatory program as defined by the state or by the institution if no official state definition exists.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferReady', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s residency status for tuition purposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether or not the person is a US citizen.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefUSCitizenshipStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Category under which the person is eligible for an early childhood program or service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An accepted form of proof of residency in the district/county/other locality.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProofOfResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Status of an examination used to measure a person''s ability to see.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisionScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Status of an examination used to measure a person''s ability to perceive sounds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHearingScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The condition of a person''s mouth or oral cavity; more specifically the condition of the hard tissues (i.e., teeth and jaws) and the soft tissues (i.e., gums, tongue, lips, palate, mouth floor, and inner cheeks). Good oral health denotes the absence of clinically manifested disease or abnormalities of the oral cavity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Child developmental delay/disability determined by procedure used by appropriate qualified personnel.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEvaluationFinding', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the function and context in which a person uses a language to communicate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLanguageUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The code for the specific language or dialect that a person uses to communicate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6392Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type of program developed for a student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of service that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of service that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student''s participation in free, reduced price, full price breakfast, lunch, snack, supper, and milk programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student''s participation in free, reduced price, full price breakfast, lunch, snack, supper, and milk programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolFoodServiceProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Sources of total family income.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFamilyIncomeSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The calculation method used by a program to determine total family income.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncomeCalculationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of insurance covering an person''s hospitalization and other health or medical care.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHealthInsuranceCoverage', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The source of insurance covering an person''s dental care.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalInsuranceCoverageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The extent to which a person concentrates upon a particular subject matter area during his or her period of study at an educational institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLevelOfSpecialization', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of degree or certificate earned by a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDegreeOrCertificateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The credential related to early childhood education or development held by a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodCredential', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The condition under which a person has agreed to serve as an employee.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program or center is legally exempt from licensing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLicenseExempt', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Nature of early childhood program, class or group in which a person is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceOption', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The site or setting in which early childhood care, education, and/or services are provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnvironmentSetting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Program site participates in a Quality Rating and Improvement System (QRIS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefQrisParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of address listed for a learner or a parent, guardian, family member or related person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the award level in which the person is currently enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the financial aid type being reported is aid that has been awarded, accepted or dispersed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific method used to report the performance and achievement of the assessment. This is the metric that is being used to derive the scores.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScoreMetricType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A category of accommodations needed for a given assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAccommodationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific accommodation necessary for assessment or instruction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The platform with which the assessment was delivered to the student during the assessment session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPlatformType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An unusual event occurred during the administration of the assessment. This could include fire alarm, student became ill, etc.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionSpecialCircumstanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific type of assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of psychometric measure provided for assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemCharacteristicType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the response for a given item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of assessment administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministered', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The American National Standards Institute (ANSI) two-digit code for the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStateANSICode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of a person''s relationship to another person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonRelationshipType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Reason why the student is being served under the continuation of services provision of the MEP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContinuationOfServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of school/migrant education project in which instruction and/or support services are provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Alert indicator for a medical/health condition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMedicalAlertIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates the type of MEP project based on the location where the MEP services are held.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectBased', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Title III language instructional education programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIILanguageInstructionProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Barriers to the enrollment and success of homeless children and youths.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToEducatingHomeless', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the type of transfer for an LEAs that transferred funds from an eligible program to another eligible program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaFundsTransferType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of project funded in whole or in part by MEP funds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of literacy test administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLiteracyAssessment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of use of the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRlisProgramUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Title III professional development utilized.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIProfessionalDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the consequences of an incident for the student(s) involved in an incident as perpetrator(s).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplinaryActionTaken', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The portion of a day that a pre-kindergarten program is provided to the students it serves.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramDayLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information on the type of person who reported the incident. When known and/or if useful, use a more specific option code (e.g., "Counselor" rather than "Professional Staff").', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentReporterType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Categories of behavior coded for use in describing an incident.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehavior', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the occurrence of physical injury to participants involved in the incident and, if so, the level of injury sustained.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code for the description of the time of day that an incident took place.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentTimeDescriptionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of location at which instruction or service takes place.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of the student''s promotion or progress at the end of a given school term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason as to why a staff member determined that a student should not be promoted (or be demoted).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the location of a persons legal residence relative to (within or outside) the boundaries of the public school attended and its administrative unit.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The setting in which children ages 6 through 21, receive special education and related services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentSchoolAge', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the progress made by a student toward English proficiency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIAccountability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The classification of education agencies within the geographic boundaries of a state according to the level of administrative and operational control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of suspension or expulsion used for the discipline of children with disabilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodOfCwd', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reasons why children with disabilities were unilaterally removed from their current educational placement to an interim alternative educational setting.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemovalReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason a participant did not complete an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotCompleting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of interim removal from current educational setting experienced by children with disabilities (IDEA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemoval', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason why the student was disciplined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of federal program funding allocation or distribution made.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramFundingAllocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method used to discipline students who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodFirearms', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The methods used to discipline students who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisciplineMethodFirearm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of firearm.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFirearmType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program in which children ages 3 through 5 attend and in which these children receive special education and related services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentEC', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program in which children ages 3 through 5 attend and in which these children receive special education and related services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEnvironmentEL', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the local education agency (LEA) notified the state of the LEA''s intention to use REAP-Flex Alternative Uses of Funding Authority during the school year as specified in the Title VI, Section 6211 of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReapAlternativeFundingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of progress shown in academic subjects.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The age range of special education students taught.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationAgeGroupTaught', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the technology literacy of 8th graders.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnologyLiteracyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether students took both a pre-test and a post-test to measure academic improvement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreAndPostTestIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The results of a pre-test in academic subjects.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPretestOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a student''s scores were proficient.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation of a school’s poverty quartile for purposes of determining classes taught by highly qualified teachers in high and low poverty schools, according to state’s indicator of poverty.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStatePovertyDesignation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The action taken with respect to postsecondary enrollment by the student who graduated from the school, LEA or state in the past two years.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of internet access available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether CTE participants were members of an underrepresented gender group (where one gender comprises less than 25 percent of the persons employed in those occupations or field of work).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether CTE participants were members of an underrepresented gender group (where one gender comprises less than 25 percent of the persons employed in those occupations or field of work).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The levels used in district evaluation systems for assigning teacher or principal performance ratings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffPerformanceLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Status toward achievement of the annual goal or short-term objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of time by which a cycle is defined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of Individualized Education Plan document authorized.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPAuthorizationDocumentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of person who authorized the decision or document.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Purpose within the IEP lifecycle for which the eligibility evaluation is conducted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPEligibilityEvaluationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Category of evaluation used for IDEA eligibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEligibilityEvaluationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A category of disability that describes a person’s impairment defined by the Individuals with Disabilities Education Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method used to conduct the assessment being referenced.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAssessMethodType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used for identification and record-keeping purposes by a credentialing organization to refer to a qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialIdentifierSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the credential offered by a credentialing organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended type of application of the credential by the holder.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefIntendedPurposeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A resource describing the means by which someone can verify whether a credential has been attained by a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefVerificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credentialing organization or entity as defined by the Credential Transparency Description Language.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The O*NET-SOC taxonomy defines the set of occupations across the world of work based on the Standard Occupational Classification.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefONETSOCOccupationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the extent to which a school offers instruction in which students and teachers are separated by time and/or location, and interaction occurs via computers and/or telecommunications technologies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVirtualSchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of participation by a school in the National School Lunch Program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNationalSchoolLunchProgramStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether or not a building is eligible to be or has been declared a landmark or historic building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHistoricStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary use type of the building in which a school is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPrimaryUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The generalized use or control of a campus, independent of program type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Designation of the nature of the construction completion date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary material used for the construction of a building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionMaterialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of location of the designed and constructed improvements made to a site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteImprovementLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary means by which air is circulated, freshened, and exhausted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAirDistributionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system, interface, and management components for carrying voice, video, and data throughout a building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommMgmtComponentSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school, building, site, system, component, equipment, vehicle, or fixture conforms to the requirements or standards specified in federal, state, or local standards or codes or other officially required guidelines or regulations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The rating of the system or component functions under the demands of its regular operation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySystemOrComponentCondition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of mechanical systems and building designs used for cooling.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCoolingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The components and system required to distribute electricity throughout the building or site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingElectricalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The particular federal law, regulation, or standard that pertains to a school facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityApplicableFederalMandateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFederalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system that protects the facility against fire.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFireProtectionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which the heat is distributed and delivered throughout the room(s) or building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHeatingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The building service system that provides for heating, ventilation and air-conditioning.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHVACSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Mechanical means for moving people and equipment within buildings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalConveyingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The component of an on-site system for supplying, eliminating, and treating water.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPlumbingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system that protects the facility from intrusion.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSecuritySystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStateOrLocalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The means through which voice, video, audio, and data information are conveyed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingTechnologyWiringSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The major manufactured systems required to operate a building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system that is installed in the building or site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system used to convey persons or freight between floors.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingVerticalTransportationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed primarily for conducting administrative and business functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAdministrativeSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed to support the teaching and learning of 2 dimensional or 3 dimensional visual arts.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingArtSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classroom designed for instruction of a particular age group, but not a specific subject.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingBasicClassroomDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary design or purpose of a building, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCareerTechEducationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A space designed to enable people to move within the building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCirculationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary groupings that rating organizations use to evaluate environmental sustainability and energy use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnvOrEnergyPerformanceRatingCat', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Moveable assets that are provided so the building or interior assets can be utilized by occupants for their intended purposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFurnishingsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space located, designed, furnished and equipped to support meal programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFoodServiceSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingIndoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingLibMediaCenterSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOperationsOrMaintSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The outdoor space located, designed, furnished, and equipped primarily for recreation, play and outdoor environmental education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorOrNonathleticSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed, located, furnished, and equipped for instruction and support of music and drama curricula and productions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPerformingArtsSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The physical layout and character of a school facility, as determined by age groups served and educational programs provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSchoolDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed, located, furnished, and equipped for instruction and experimentation in science.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingScienceSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designated constructed outdoor area on a public school site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteOutdoorAreaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary design or purpose of a space, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpaceDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpecEdSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingStudentSupportSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An area designed primarily for theater productions, assemblies, and other large gatherings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAssemblySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of kitchen housed in the facility as defined by whether it prepares food to be served onsite and/or at additional locations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFullServiceKitchenType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation as to whether the space is considered an instructional space under state or local guidelines.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingInstructionalSpaceFactorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reasons for permitting and participating in joint-use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseRationaleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of designation of non school district users by the amount of time they have access to public school for joint use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseSchedulingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of users sharing school district controlled, owned, or utilized facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUserType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The space designed primarily for community or shared use.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommunityUseSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A characterization of a site that would define restrictions or opportunities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSiteUseRestrictionsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentEnrollmentAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityAuditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of real estate vehicle through which a public charter school has access and control of its building space.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCharterSchoolRealtyAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The standard for cleanliness, and benchmarks for how much space can be assigned to one properly supplied custodian to meet these standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCleaningStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agency that has ultimate responsibility for the compliance determination.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceAgencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of modification to, or replacement of, a piece of equipment or building shell/system that increases energy efficiency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergyConservationMeasureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The source of energy that directly powers a school district facility or building system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergySourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMgmtEmergencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of management organization for planning, design, and construction of major capital projects.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityCapitalProgramMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of management arrangements whereby a district oversees and manages its facilities operations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityOperationsMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of hazardous materials or conditions tested for at a site or building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityHazardousMaterialsOrCondType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of development where two or more entities partner to plan, site, design, and/or build a new school or renovate an existing school to better support the joint use of the building and/or land.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityJointDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The standard for maintenance of a component, system, or building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMaintStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of natural hazard that can affect the health, safety and operation of school facilities and their occupants.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityNaturallyOccurringHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of how utilities are supplied to a site or a building by a company or provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityProviderType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of utility used in the operation of a facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of management and accountability plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the district or state requirements or guidelines for the design and construction of school facilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The authority that mandates through law, regulation, or standard that pertains to a specific mandate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMandateAuthorityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of fee that one must pay when getting a mortgage.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFinancingFeeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category of payment that a school must pay to rent the facility that it is in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseAmountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of interest paid on a mortgage to the lender to compensate the lender for the use of money to purchase a building or facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of a mortgage as it relates to priority of payment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary purpose for which a campus is designed and/or used.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001023', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLanguageLearnerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001024', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSupportTool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUsageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLinkIndicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001032', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleGradeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001033', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedNumberOfBrailleDots', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleMarkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001037', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleStatusCellType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001040', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSigningType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedAlternativeRepresentationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001042', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSpokenSourcePreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUserSpokenPreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001046', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedMaskingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001054', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedIncreasedWhitespacingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001066', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001077', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeInstructionalProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001078', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001079', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalsForAttendingAdultEducation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001083', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001085', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeCertificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001088', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepMathComplexityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001122', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepAspectsOfReading', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001158', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefApipInteractionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001161', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001190', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentFormSectionIdentificationSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001199', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001206', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpaceUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001209', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCounty', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001211', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWeaponType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001212', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionStaffRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001223', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidApplicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001224', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeedDeterminationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001231', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001235', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramTransitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001237', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001244', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramGiftedEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001248', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefImmunizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001253', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryDifficultyCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001266', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryKappaAlgorithm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationsNeededType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdvancedPlacementCourseCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001279', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityEducationLevelsAddressed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001282', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergySeverity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001287', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBlendedLearningModelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001288', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerCluster', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001290', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerEducationPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001292', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectionalEducationFacilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseAcademicGradeStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001301', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseApplicableEducationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001303', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001307', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseHonorsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001308', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionSiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001311', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001317', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditHoursAppliedOtherProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001319', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityDeterminationSourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001327', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDoctoralExamsRequiredCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001328', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFederalFundingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001330', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationMonitoringNotifications', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001333', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPurposeOfMonitoringVisit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOtherFederalFundingSources', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001336', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOutcomeMeasurementLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001337', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProfessionalDevelopmentTopicArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001339', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibilityStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001342', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedPriorToEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001343', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatusWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001345', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001347', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountFundClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001349', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountProgramCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountBalanceSheetCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001354', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureFunctionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureObjectCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001356', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyOfService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001357', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateOrDoctoralExamResultsStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001369', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentMultipleOffenseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001371', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPerpetratorInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001373', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPersonRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001383', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramPlannedServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001386', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12EndOfCourseRequirement', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001389', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessAPIType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001390', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001391', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessModeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001394', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceBookFormatType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001395', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceControlFlexibilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001396', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaSubType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001397', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001399', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceMediaFeatureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001401', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourcePhysicalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001408', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefNodeAccessibilityProfile', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001411', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefTestabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001414', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNCESCollegeCourseMapCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001430', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDAudienceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001431', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDDeliveryMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001433', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityApprovedPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001436', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001439', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001442', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001457', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDSessionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001458', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDInstructionalDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001468', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountRevenueCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001482', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReferralOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001492', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityTargetAudience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001494', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceDeliveryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001495', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWorkbasedLearningOpportunityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001501', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAIEPStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001503', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutcomeTimePoint', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001510', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMethodOfServiceDelivery', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001516', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseSubjectArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001519', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceFrequency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001521', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReasonDelayTransitionConf', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityTimeMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001538', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseScoreStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001541', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentRegistrationCompletionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultDataType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001547', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001555', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLevelOfInstructionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001561', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessRightsUrl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001562', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAuthorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001565', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001576', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryConnectedStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001577', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryActiveStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001578', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001579', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001580', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001582', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBillableBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationReferralStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Score Metric Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScoreMetricType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Accommodation Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAccommodationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accommodation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Participant Session Platform Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPlatformType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Special Circumstance Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionSpecialCircumstanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Characteristic Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemCharacteristicType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Type Administered', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministered', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State ANSI Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStateANSICode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Person Relationship Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonRelationshipType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Continuation of Services Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContinuationOfServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Enrollment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Medical Alert Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMedicalAlertIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Project Based', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectBased', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title III Language Instruction Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIILanguageInstructionProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Barrier to Educating Homeless', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToEducatingHomeless', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Funds Transfer Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaFundsTransferType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Project Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Literacy Assessment Administered Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLiteracyAssessment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Type of Use of the Rural Low-Income Schools Program', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRlisProgramUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title III Professional Development Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIProfessionalDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disciplinary Action Taken', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplinaryActionTaken', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Prekindergarten Daily Length', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramDayLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Reporter Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentReporterType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Behavior', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehavior', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Injury Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Time Description Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentTimeDescriptionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Receiving Location of Instruction', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Promotion Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Nonpromotion Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Public School Residence Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Educational Environment for School Age', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentSchoolAge', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title III Accountability Progress Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIAccountability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Method of Children with Disabilities', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodOfCwd', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Interim Removal Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemovalReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Reason Not Completing', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotCompleting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Interim Removal', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemoval', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Federal Programs Funding Allocation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramFundingAllocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Method for Firearms Incidents', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodFirearms', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Discipline Method for Firearms Incidents', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisciplineMethodFirearm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Firearm Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFirearmType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Support Services Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Educational Environment for Early Childhood', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentEC', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Educational Environment for Early Childhood', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEnvironmentEL', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Rural Education Achievement Program Alternative Funding Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReapAlternativeFundingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Progress Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Age Group Taught', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationAgeGroupTaught', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technology Literacy Status in 8th Grade', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnologyLiteracyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Pre and Post Test Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreAndPostTestIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Pretest Outcome', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPretestOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proficiency Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Poverty Designation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStatePovertyDesignation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Enrollment Action', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Internet Access', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Technical Education Nontraditional Gender Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Technical Education Nontraditional Gender Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Faculty and Administration Performance Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffPerformanceLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Additional Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Absent Attendance Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAbsentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Present Attendance Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPresentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Attendance Event Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Calendar Event Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCalendarEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Content Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContentStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Discipline Action Length Difference Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineLengthDifferenceReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Personal Information Verification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Separation Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Separation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classroom Position Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefClassroomPositionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Leave Event Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaveEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Secondary Incident Behavior', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehaviorSecondary', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other Name Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOtherNameType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Type for Organization', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Assignment Role', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingAssignmentRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Entry Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Exit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Publication Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyFrameworkPublicationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Curriculum Framework Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCurriculumFrameworkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Diploma Distinction Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaDistinctionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Sponsor Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramSponsorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Term Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicTermDesignator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Distance Education Course Enrollment', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDistanceEducationCourseEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Predominant Calendar System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPredominantCalendarSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Occupational Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIpedsOccupationalCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Staff Contract Length', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffContractLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Full-time Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFullTimeStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Contract Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentContractType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tenure System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTenureSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Staff Faculty Tenure Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffFacultyTenure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Rank', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicRank', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instruction Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Graduate Assistant IPEDS Occupation Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateAssistantIpedsCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tuition Unit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Admitted Student', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmittedStudent', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Domain', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGradePointAverageDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Education Test Company', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationTestCompany', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Preparation Program Enrollment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Preparation Program Completer Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepCompleterStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Alternative Route to Certification or Licensure', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAltRouteToCertificationOrLicensure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Critical Teacher Shortage Area Candidate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCriticalTeacherShortageCandidate', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Supervised Clinical Experience', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSupervisedClinicalExperience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Education Credential Exam Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationCredentialExam', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Education Credential Exam Score Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationExamScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Educational Functioning Level at Intake', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtIntake', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Educational Functioning Level at Posttest', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtPosttest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Instructional Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeInstructionalProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Special Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeSpecialProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goals for Attending Adult Education', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalsForAttendingAdultEducation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Postsecondary Transition Action', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAePostsecondaryTransitionAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Staff Employment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Certification Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeCertificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Provider Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional or Technical Credential Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalTechnicalCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Wage Collection Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageCollectionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Development Associate Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentAssociateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Financial Support Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalDevelopmentFinancialSupport', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Core Knowledge Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Higher Education Institution Accreditation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHigherEducationInstitutionAccreditationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Wage Verification Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Group Size Standards Met', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELGroupSizeStandardMet', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21002', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicHonorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21011', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAypStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdministrativeFundingControl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21015', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAlternativeSchoolFocus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicSubject', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentParticipationIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionAssessmentReportingMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21029', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21038', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCarnegieBasicClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21045', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipVersion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefControlOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21049', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectiveActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21050', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCountry', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseGpaApplicability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21061', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelCharacteristic', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21065', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseRepeatCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21071', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditTypeEarned', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21075', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteGraduationRateInclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21076', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21079', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDependencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12StaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmailType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21091', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefElementaryMiddleAdditional', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21092', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21093', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEndOfTermStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21094', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21095', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21096', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21099', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21106', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCohortExclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21110', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21113', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21123', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGpaWeightedIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21134', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGunFreeSchoolsActReportingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21140', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolGraduationRateIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21146', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHomelessNighttimeResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncreasedLearningTimeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21167', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstitutionTelephoneType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21169', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalActivityHours', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21170', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIntegratedTechnologyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21173', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLevelOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMagnetSpecialProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21186', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21187', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21188', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21194', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeglectedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21198', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTimeForCompletionUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21207', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParaprofessionalQualification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParticipationStatusAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21216', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrekindergartenEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21217', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreKEligibleAgesNonIDEA', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21218', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21220', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalEducationJobClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21221', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyTargetAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21222', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21224', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramLengthHoursType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21225', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21227', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolChoiceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21228', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotTested', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21229', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityRecognitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21230', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReconstitutedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21232', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRestructuringAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21238', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementFunds', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21239', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSigInterventionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21240', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21242', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21255', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSex', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSingleSexClassStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21260', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21266', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStandardizedAdmissionTest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21267', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefState', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21272', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsStudentLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialBasis', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21280', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21280', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21281', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21282', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIInstructionalServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21284', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21285', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleISchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21289', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12LeaTitleISupportService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferReady', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21297', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefUSCitizenshipStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21305', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProofOfResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21308', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisionScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21309', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHearingScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21314', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21315', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEvaluationFinding', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21316', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLanguageUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21317', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6392Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolFoodServiceProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21332', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFamilyIncomeSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21333', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncomeCalculationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21334', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHealthInsuranceCoverage', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalInsuranceCoverageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21340', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLevelOfSpecialization', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22662', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportSchedule', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22678', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22679', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPGoalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22682', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22683', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22694', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22700', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPAuthorizationDocumentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22701', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22709', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPEligibilityEvaluationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22710', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEligibilityEvaluationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22714', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22719', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAssessMethodType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22720', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialIdentifierSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22721', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22730', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefIntendedPurposeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22734', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefVerificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22737', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefONETSOCOccupationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22747', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVirtualSchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22748', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNationalSchoolLunchProgramStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22753', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHistoricStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22758', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPrimaryUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22759', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22762', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22763', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionMaterialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22768', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteImprovementLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22771', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAirDistributionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22772', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommMgmtComponentSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22773', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22774', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySystemOrComponentCondition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22775', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCoolingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22776', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingElectricalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22777', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityApplicableFederalMandateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22778', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFederalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22779', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFireProtectionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHeatingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22781', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHVACSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalConveyingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22784', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPlumbingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22785', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSecuritySystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22786', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStateOrLocalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22788', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingTechnologyWiringSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22790', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22792', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22793', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingVerticalTransportationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22794', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAdministrativeSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22795', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingArtSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22796', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingBasicClassroomDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22797', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22798', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCareerTechEducationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22799', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCirculationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22800', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnvOrEnergyPerformanceRatingCat', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22801', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFurnishingsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22802', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFoodServiceSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22803', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingIndoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22804', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingLibMediaCenterSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOperationsOrMaintSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22806', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22807', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorOrNonathleticSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22808', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPerformingArtsSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSchoolDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22810', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingScienceSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteOutdoorAreaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpaceDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22813', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpecEdSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22814', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingStudentSupportSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22817', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAssemblySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFullServiceKitchenType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22832', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingInstructionalSpaceFactorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22833', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseRationaleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22834', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseSchedulingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22835', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUserType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22836', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommunityUseSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22841', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSiteUseRestrictionsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22843', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentEnrollmentAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22845', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityAuditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22846', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCharterSchoolRealtyAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22847', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCleaningStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22848', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceAgencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22849', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergyConservationMeasureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22851', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergySourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMgmtEmergencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22853', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityCapitalProgramMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22854', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityOperationsMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22855', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityHazardousMaterialsOrCondType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22856', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityJointDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22857', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMaintStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22858', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityNaturallyOccurringHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22859', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityProviderType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22860', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22864', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22865', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22866', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMandateAuthorityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22867', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFinancingFeeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22869', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseAmountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22870', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22872', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22873', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22878', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22886', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationRelationship', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22894', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLAudienceLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22895', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAgentRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22896', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22902', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22904', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefComprehensiveSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22909', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramEntryReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22910', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22911', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberListedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22915', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdultEducationProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22916', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToInternetAccessInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22926', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDataCollectionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of how CTE concentrators are included in the state''s computation of its graduation rate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefCteGraduationRateInclusionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of a person''s attendance associated with an Attendance Event Type and Attendance Event Date in an organization-person-role context.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the course is a part of a degree program. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'DegreeApplicability' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Person is enrolled in courses for credit and recognized by the institution as seeking a degree, certificate, or other formal award. High school students also enrolled in postsecondary courses for credit are not considered degree/certificate-seeking.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateSeekingStudent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s classification as dependent or independent with regards to eligibility for Title IV Federal Student aid.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefDependencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication whether the LEA is covered by a desegregation plan either ordered by a court or entered into with the Office for Civil Rights under Title VI of the Civil Rights Act of 1964.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'DesegregationOrderOrPlan' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'AwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a discipline action ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a discipline action begins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person who ; (A) (i) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; (ii) has been dependent on the income of another family member but is no longer supported by that income; or (iii) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (B) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person who ; (A) (i) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; (ii) has been dependent on the income of another family member but is no longer supported by that income; or (iii) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (B) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits awarded a student by the postsecondary institution based on successful completion of dual credit/dual enrollment courses. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DualCreditDualEnrollmentCredits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The titles of employment, official status, or rank of education staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The titles of employment, official status, or rank of education staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The titles of employment, official status, or rank of education staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the person or organization belongs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'ElectronicMailAddress' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the person or organization belongs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'EmailAddress' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of electronic mail (e-mail) address listed for a person or organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of electronic mail (e-mail) address listed for a person or organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' An indication of whether the school or district met the Elementary/Middle Additional Indicator requirement in accordance with state definition for the purpose of determining Adequate Yearly Progress (AYP).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefElementaryMiddleAdditionalId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of a student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of the student''s progress at the end of a given school term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEndOfTermStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether a student''s name was, is, or will be officially registered on the roll of a school or schools.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the enrollment type associated with the enrollment award level of a person at the beginning of a term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the student''s enrollment status for a particular term as defined by the institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a person entered and began to receive instructional services at a postsecondary institution for the first time after completing high school (or its equivalent). ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'EntryDateIntoPostsecondary' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The process by which a student enters a school during a given academic session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The grade level or primary instructional level at which a student enters and receives services in a school or an educational institution during a given academic session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The actual or estimated number of clock minutes required for course completion. This number is especially important for career and technical education course and may represent (in minutes) the clock hour requirement of the course, the number of minutes (or clock hours) of class time per week, times the number of equivalent weeks the class typically meets.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'TimeRequiredForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The result of an assessment of a person''s performance.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Outcome' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The quantitative or qualitative range of possible scores/rating for a person''s overall performance (e.g., 0 - 10; Poor, Fair, Average, Good, Excellent).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The actual quantitative or qualitative assessment of a person''s overall performance.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The instrument and/or set of procedures with which a person''s performance is assessed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'System' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Those persons who may be removed (deleted) from a cohort (or subcohort). For the Graduation Rates and Fall Enrollment retention rate reporting, persons may be removed from a cohort if they left the institution for one of the following reasons: death or total and permanent disability; service in the armed forces (including those called to active duty); service with a foreign aid service of the federal government, such as the Peace Corps; or service on official church missions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCohortExclusionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The circumstances under which the student exited from membership in an educational institution. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of financial aid awarded to a person for the term/year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidAwardAmount' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of financial aid awarded to a person for the academic term/year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full legal first name given to a person at birth, baptism, or through legal change.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person who has no prior postsecondary experience attending any institution for the first time at the undergraduate level since completing high school (or its equivalent). This includes persons enrolled in academic or occupational programs. It also includes persons enrolled in the fall term who attended college for the first time in the prior summer term, and persons who entered with advanced standing (college credits earned before graduation from high school).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstTimePostsecondaryStudent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An appendage, if any, used to denote a person''s generation in his family (e.g., Jr., Sr., III).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'GenerationCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the reported Grade Point Average is weighted or unweighted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the reported Grade Point Average is weighted or unweighted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A final indicator of student performance in a course section as submitted by the instructor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A final indicator of student performance in a course section as submitted by the instructor.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student''s grade level at time of course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student''s grade level at time of course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The grade or developmental level of a student when assessed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelToBeAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The grade or developmental level of a student when assessed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The value of the total quality points divided by the Credit Hours for Grade Point Average. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverage' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A measure of average performance in all courses taken by a person during his or her school career as determined for record-keeping purposes. This is obtained by dividing the total grade points received by the total number of credits attempted. This usually includes grade points received and credits attempted in his or her current school as well as those transferred from schools in which the person was previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A measure of average performance in all courses taken by a person during his or her school career as determined for record-keeping purposes. This is obtained by dividing the total grade points received by the total number of credits attempted. This usually includes grade points received and credits attempted in his or her current school as well as those transferred from schools in which the person was previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A measure of average performance in all courses taken by a person during his or her school career as determined for record-keeping purposes. This is obtained by dividing the total grade points received by the total number of credits attempted. This usually includes grade points received and credits attempted in his or her current school as well as those transferred from schools in which the person was previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A measure of average performance in all courses taken by a person during a given session. This is obtained by dividing the total grade points received by the number of credits attempted for the same session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'GradePointAverageGivenSession' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cumulative number of grade points a person earns by successfully completing courses or examinations during his or her enrollment in the current school as well as those transferred from schools in which the person had been previously enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific grade or combination of grades offered by an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific grade or combination of grades offered by an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic year in which a student entered as part of the GRS cohort.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyCohortYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether or not the student is in a GRS cohort; meaning the student began as a first-time, full-time, degree seeking student in the fall of a given year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or local education agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, as defined by Title 18, Section 921.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefGunFreeSchoolsActReportingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the education unit has adopted written policy prohibiting harassment and bullying on the basis of a civil rights law.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'HarassmentOrBullyingPolicy' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Contributions made by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider''s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationHealthBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that this course credit is required for a high school diploma.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that this course credit is required for a high school diploma.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of diploma/credential that is awarded to a person in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of diploma/credential that is awarded to a person in recognition of his/her completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the High School Graduation Rate requirement in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefHighSchoolGraduationRateIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a school or district appealed its AYP designation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDesignation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the appeal resulted in a change in a school or district''s AYP designation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealChangedDesignation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The last date that an appeal of an AYP designation was processed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Did the State transfer funds under the State Transferability authority of Section 6123(a)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'StateTransferabilityOfFunds' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Title III language instructional education programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Title III language instructional education programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The language of instruction, other than English, used in the program or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The language of instruction, other than English, used in the program or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Barriers to the enrollment and success of homeless children and youths.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefBarrierToEducatingHomelessId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The percentage of funds used to pay the costs of the development of the State assessments and standards required by section 1111(b).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessStandardsFunding' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The percentage of funds used to administer assessments required by section 1111(b) or to carry out other activities described in section 6111 and other activities related to ensuring that the State’s schools and local educational agencies are held accountable for results.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessmentAdminFunding' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Annual date the State receives the Title III allocation from U.S. Department of Education (ED).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateStateReceivedTitleIIIAllocation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Annual date that Title III funds are available to approved subgrantees.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateTitleIIIFundsAvailableToSubgrantees' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Average number of days for States receiving Title III funds to make subgrants to subgrantees beginning from July 1 of each year, except under conditions where funds are being withheld.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'NumberOfDaysForTitleIIISubgrants' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total Title V, Part A funds expended by LEAs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total amount of Title V, Part A funds expended by LEAs for the four strategic priorities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpentOnStrategicPriorities' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of project funded in whole or in part by MEP funds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepProjectTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total Title V, Part A funds received by LEAs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeProgramsFundsReceived' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of literacy test administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RefLiteracyAssessmentId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The participant showed "significant learning gains" on measures of reading, the definition of which is determined at the State level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyGoalMetStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The participant completed a literacy post-test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPostTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The participant completed a literacy pre-test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPreTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the performance indicator for student behaviors under the Safe and Drug-Free Schools and Communities Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'IndicatorName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The instrument or data source for reported performance indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Instrument' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The frequency of data collection for performance indicator under the Safe and Drug-Free Schools and Communities Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'CollectionFrequency' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic year of the most recent collection of the performance indicator under the Sage and Drug-Free Schools and Communities Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'MostRecentCollection' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The targeted performance for the given indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Target' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Actual performance for the given indicator of student behavior under the Safe and Drug-Free Schools and Communities Act', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Performance' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The baseline of the performance indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Baseline' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic year the baseline was established.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'BaselineYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date the school exited school improvement status.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'SchoolImprovementExitDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a Title III program or activity was terminated due to failure to meet goals.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'TerminatedTitleIIIProgramFailure' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a Neglected or Delinquent student obtained employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'ObtainedEmployment' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An institution/facility/program that serves more than one programming purpose. For example, the same facility may run both a juvenile correction program and a juvenile detention program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'ProgramInMultiplePurposeFacility' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of use of the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RefRlisProgramUseId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of Title III professional development utilized.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RefTitleIIIProfessionalDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the consequences of an incident for the student(s) involved in an incident as perpetrator(s).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplinaryActionTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The portion of a day that a pre-kindergarten program is provided to the students it serves.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The portion of a day that a kindergarten program is provided to the students it serves.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefKindergartenDailyLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number assigned by a school district to a school calendar.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description or identification of the calendar.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of days that the school was or is anticipated to be in session during the school year. Also included are days on which the education institution facility is closed and the student body as a whole is engaged in planned activities off-campus under the guidance and direction of staff members.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'DaysInSession' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of the first day of student instruction for the school year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'FirstInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of the last day of student instruction (including days or times that students are present for purposes of testing and/or evaluation, but not including whole or part-days whose sole purposes is for distribution of report cards).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'LastInstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of instruction minutes in a given session, as determined by time in class, time on task (e.g., engaged in a class), or as estimated by a qualified course designer.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of minutes in the day in which the school is normally in session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MinutesPerDay' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A locally assigned unique identifier (within the school or school district) to identify each specific incident or occurrence. The same identifier should be used to document the entire incident even if it included multiple offenses and multiple offenders.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the incident occurred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the time of day the incident took place.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A locally assigned unique number or alphanumeric code used to capture precise information on locations specific to a school (e.g., building number, class number, hall number, school bus number, computer station number, or internet protocol (IP) address).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The value of any quantifiable monetary loss directly resulting from the incident. Examples include the value of repairs necessitated by vandalism of a school facility, the value of personnel resources used for repairs or consumed by the incident, the value of stolen items, and the value of time consumed by an incident (e.g., instructional time involved in evacuating a school during a false fire alarm). Cost may be reported by specific monetary amount or range.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentCost' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Information on the type of person who reported the incident. When known and/or if useful, use a more specific option code (e.g., "Counselor" rather than "Professional Staff").', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentReporterTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the reporter of the incident using a pre-existing unique student identifier or unique staff identifier, when the reporter is a student or staff member.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentReporterId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description for an incident.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'IncidentDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Categories of behavior coded for use in describing an incident.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the occurrence of physical injury to participants involved in the incident and, if so, the level of injury sustained.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The length, in school days, of the disciplinary action.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DurationOfDisciplinaryAction' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether or not any of the disciplinary actions taken against a student were imposed as a consequence of state or local zero tolerance policies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RelatedToZeroTolerancePolicy' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An expulsion with or without services for a period of one full year (i.e., 365 days).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'FullYearExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An expulsion with or without services that is shortened to a term of less than one year by the superintendent or chief administrator of a school district.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'ShortenedExpulsion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code for the description of the time of day that an incident took place.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentTimeDescriptionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the course content and/or goals. Reference may be made to state or national content standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The course meets the state definition of a core academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The course meets the state definition of a core academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CoreAcademicCourse' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the time of day the class begins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassBeginningTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the time of day the class ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassEndingTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The day(s) of the week (e.g., Monday, Wednesday) that the class meets or an indication that a class meets "out-of-school" or "self-paced".', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassMeetingDays' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the portion of a typical daily session in which students receive instruction in a specified subject (e.g., morning, sixth period, block period, or AB schedules).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'ClassPeriod' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique identifier for the locally defined rotation cycle date code when the class meets (e.g., in a two day schedule, valid values could be "A" and "B", or "1" and "2").', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'TimeDayIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of location at which instruction or service takes place.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RefInstructionLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the assignment is the staff member''s primary assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'PrimaryAssignment' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a teacher provides instruction in more than one instructional site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a teacher provides instruction in more than one instructional site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantTeacher' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of a person''s initial enrollment into a United States school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstEntryDateIntoUSSchool' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of the student''s promotion or progress at the end of a given school term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason as to why a staff member determined that a student should not be promoted (or be demoted).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefNonPromotionReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the location of a persons legal residence relative to (within or outside) the boundaries of the public school attended and its administrative unit.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the location of a persons legal residence relative to (within or outside) the boundaries of the public school attended and its administrative unit.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The setting in which children ages 6 through 21, receive special education and related services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentSchoolAgeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the progress made by a student toward English proficiency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIIAccountabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The classification of education agencies within the geographic boundaries of a state according to the level of administrative and operational control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The classification of education agencies within the geographic boundaries of a state according to the level of administrative and operational control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of suspension or expulsion used for the discipline of children with disabilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodOfCwdId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reasons why children with disabilities were unilaterally removed from their current educational placement to an interim alternative educational setting.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason a participant did not complete an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotCompletingId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of interim removal from current educational setting experienced by children with disabilities (IDEA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIdeaInterimRemovalId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school has a school-wide program, as defined by current law, in which federal Migrant Education Program (MEP) funds are consolidated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ConsolidatedMepFundsStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a staff member''s salary is paid by the Title I, Part C Migrant Education Program (MEP) of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of communication methods with parents.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefCommunicationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Rural-Urban Continuum Codes form a classification scheme that distinguishes metropolitan (metro) counties by the population size of their metro area, and nonmetropolitan (nonmetro) counties by degree of urbanization and adjacency to a metro area or areas. The metro and nonmetro categories have been subdivided into three metro and six nonmetro groupings, resulting in a nine-part county codification. The codes allow researchers working with county data to break such data into finer residential groups beyond a simple metro-nonmetro dichotomy, particularly for the analysis of trends in nonmetro areas that may be related to degree of rurality and metro proximity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RefERSRuralUrbanContinuumCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of children for which a state licensed a facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'StateLicensedFacilityCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The benefits offered by a program/facility/employer for full-time staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'FullTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The benefits offered by a program/facility/employer for part-time staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'PartTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the nature of the association between a Competency Definition and an associated data object such as a Learning Resource, an Assessment Item, or even another Competency Definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefAssociationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A URI that establishes uniqueness of an association between a competency definition and another competency item or other objects such as learning resources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'CompetencyDefAssociationIdentifierURI' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The globally unique identifier (GUID) issued by the publisher of the competency framework that uniquely identifies the parent item in the hierarchy of competency definitions using a RFC 4122 compliant 32-character hexadecimal string, such as 21EC2020-3AEA-1069-A2DD-08002B30309D.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A human-referenceable code designated by the publisher to identify the parent item in the hierarchy of competency definitions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A network-resolvable Uniform Resource Locator (URL) pointing to the authoritative reference for the competency definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Classification of the Competency Definition using Bloom''s Taxonomy Domains. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefBloomsTaxonomyDomainId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Classification of the Competency Definition using intelligences defined for Howard Earl Gardner''s Theory of Multiple Intelligences.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefMultipleIntelligenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The criteria for the set of competencies that represent completion or partial completion of a unit, course, program, degree, certification, or other achievement/award. Specifies whether completion requires achievement of all items in the set or some number of items.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RefCompletionCriteriaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum number of competencies in the set that must be achieved for completion or partial completion of a unit, course, program, degree, certification, or other achievement/award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'CompletionCriteriaThreshold' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The alignment relationship between the resource and a competency definition object.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefLearningResourceCompetencyAlignmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The default language of the text used for the content in the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The default language of the text used for the content in the competency definition statement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A legal document giving official permission to do something with the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full text or URL reference to a legal document giving official permission to do something with the competency definition statement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The entity responsible for making the competency framework available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Publisher' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The information about rights held in and over the resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Rights' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The person or organization owning or managing rights over the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RightsHolder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The significant topicality of the competency definition using free-text keywords and phrases.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The topicality of the competency definition, e.g. "Pythagorean Theorem," "Trigonometric functions," "Forces and energy," "Scientific method," "Oral history," etc.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptTerm' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique identifier of the person who assigned the assessment to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssignedByPersonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The formative descriptive feedback that was given to a learner based on a scored/evaluated portion of an assessment as recorded in the result entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The formative descriptive feedback that was given to a learner in response to the results from a scored/evaluated assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A category for defining the qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title assigned to a qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator (URL) for the unique address of an image representing an award or badge associated with the qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ImageUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The criteria for competency-based completion of the qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'Criteria' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator (URL) from which the qualification, achievement, personal or organizational quality, or aspect of an identity was issued.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'AwardIssuerOriginURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A statement or reference describing the evidence that the learner met the criteria for attainment of the qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'One or more statements that describes the criteria used by teachers and students to check for attainment of a goal.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'SuccessCriteria' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A statement that describes the desired outcomes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A message provided to the person being assessed after giving a response that matches the possible response.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'FeedbackMessage' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position of this response in the list of responses displayed, such as for a multiple choice item type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The complexity of the text using the scaling system defined by Text Complexity System, e.g. Lexile™ for assessment items with a reading passage.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The scaling system used to specify the text complexity of an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefTextComplexitySystemId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of each distracter on an assessment item, explaining why it is there, what misunderstandings it exposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The scaling system used to specify the text complexity of a competency item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator where the resource may be accessed, or a proxy for the resource, such as an information page for a commercially available resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Url' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title of the resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The descriptive name for the subject of the content for the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The code used to identify the organization of subject matter and related learning experiences addressed by the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The system that is used to identify the organization of subject matter and related learning experiences addressed by the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCodeSystem' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the resource was created.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of a person or organization credited with the creation of the resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the organization credited with publishing the resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublisherName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary language of the resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The URL where the owner specifies permissions for using the resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceLicenseURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A resource that was used in the creation of this resource. This term can be repeated for multiple sources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'BasedOnUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The individual or group for which the resource was produced.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceIntendedEndUserRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The approximate or typical time it takes to work with or through this learning resource for the typical intended target audience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TimeRequired' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum for the typical range of ages of the content’s intended end user.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum for the typical range of ages of the content’s intended end user.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The predominate mode of learning supported by the learning resource. Acceptable values are active, expositive, or mixed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The predominate type or kind characterizing the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The complexity of the text using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The scaling system used to specify the text complexity of an Learning Resource', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An abbreviated title for an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full title of the Assessment Family. An Assessment Family is a set of assessments with a common name, jurisdiction, or focus, such as Graduate Record Exam or National Assessment of Educational Progress.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyTitle' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The abbreviated title of the Assessment Family. An Assessment Family is a set of assessments with a common name, jurisdiction, or focus.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyShortName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of action taken by the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RefLearnerActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The value representing input by the learner using an online system, such as a value entered in response to an assessment question, or the URL of a learning resource link clicked.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date and time at which the action was taken.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The default language used for the assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title for work assigned to the learner, which can comprise of learning resources, activities, and assessments.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description and context for the assignment described in a way that the learner can understand.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of the skills or competencies the student must have to engage in assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Prerequisite' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work assigned to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The creation date of the assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time required to complete the assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumTimeAllowed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of time of the Maximum Time Allowed value.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityMaximumTimeAllowedUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date assignment is due.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time the assignment is due.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number attempts a student may make on this assignment. Assumed to be unlimited if zero or omitted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumAttemptsAllowed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the assignment as one that is graded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityAddToGradeBookFlagId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the student was informed about an assignment or that an automated system displays the assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'ReleaseDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The percentage weight of the assignment during the particular course or term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of possible points for an assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'PossiblePoints' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator pointing to a rubric that may be used to evaluate learner performance on the assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RubricUrl' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the response is to a scaffolding problem rather than the main/assigned problem. A scaffolding item is a follow-up formative assessment item used to assess prerequisite or component skills, presented immediately after a learner gives an incorrect answer on the previous item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScaffoldingItemFlag' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of hints presented as the learner responded to a formative assessment item. This may include hints requested by the learner or hints automatically presented such as in an online tutoring system. Presentation of a scaffolding item is a separate response record and not counted as a hint.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintCount' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that one of the hints presented included the correct answer.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintIncludedAnswer' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of time in seconds or milliseconds that a person took to give an initial response, a first attempt to answer a formative assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'FirstAttemptDuration' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time of day that the assessment item was presented to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the assessment item was presented to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The code given to the assessment event by a state or other authority directing overall administration.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The correlation between correct answers on this item and total correct answers on the test during a previous administration. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'PointBiserialCorrelationValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the assessment item has been released to the public.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'ReleaseStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A value representing the Differential Item Functioning, also referred to as measurement bias, for the assessment item. The value represents differences in the functioning of the item across groups which are matched on the attribute being measure by the item. The value is calculated using Mantel-Haenszel approach or a comparable algorithm so that a value of 1.0 represents no bias.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'DIFValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The measure used to represent the degree of agreement among raters.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'KappaValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The algorithm used to derive the Assessment Item Kappa Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryKappaAlgorithmId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The complete text of an assessment item including all applicable parts such as stimulus, stem, and possible response options presented.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'BodyText' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The text, source (e.g., video clip), and/or graphic about which the assessment item is written. The stimulus provides the context of the item/task to which the student must respond.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stimulus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The possible response presented to the participant within a selected-response/multiple-choice assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'PossibleResponseOption' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A local code given to the session, usually for a session that represents a term within the school year such as a marking term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A short description of the Session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the session is a marking term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MarkingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the session is a scheduling term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SchedulingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the session is an attendance term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'AttendanceTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date of the scheduled or unscheduled calendar event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EventDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A name used for the day of the calendar event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of health accommodations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefAccommodationsNeededTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Course areas for advanced placement or credit. For a list of codes see http://apcentral.collegeboard.com/apc/public/courses/teachers_corner/index.html .', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdvancedPlacementCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An age group or education level to which the professional development activity''s content pertains.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RefPDActivityEducationLevelsAddressedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Describes symptoms know to be associated with a person''s reaction to an allergen.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'ReactionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of severity of a person''s reaction to an allergen.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergySeverityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The assessment item result formatted according to the IMS Global QTI Specification.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ResultXML' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which an individual''s professional development career plan was last updated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'LastUpdated' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an individual completed an individualized guidance and counseling plan', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RefCareerEducationPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agency that authorized the establishment or continuation of a charter school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolAuthorizerAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agency that authorized the establishment or continuation of a charter school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The school year in which a charter school was initially approved.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolApprovalYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of facility in which an inmate receives correctional education services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefCorrectionalEducationFacilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The grading scale used by an academic educational institution for an academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Additional information regarding the context of the given grade.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Additional information regarding the context of the given grade.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The education level, grade level or primary instructional level at which a course is intended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseApplicableEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the certification or recognition associated with this course (ex. Networking, CAD, etc.)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CertificationDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of enrollment associated with the credit hours for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of credit associated with the credit hours earned for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A program through which the course is funded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FundingProgram' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the course is or can be counted as an honors course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseHonorsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary method of instruction used for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the location at which the course is taught.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'CourseInstructionSiteName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the type of location at which the course is taught.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionSiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary type of interaction, synchronous or asynchronous, defined for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The narrative of the grade awarded to an individual in an academic course in those cases where a course does not receive a letter or numeric grade included in the grading scale of the Course Academic Grade Qualifier.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'CourseNarrativeExplanationGrade' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The official reference number portion of a course identifier. This number normally designates the level of the course as well as the level of the individual expected to enroll in the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'CourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of courses listed on a transcript. Used as a check digit for integrity purposes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CourseTotal' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefCreditHoursAppliedOtherProgramId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a Career and Technical Education (CTE) instructor holds a current industry-recognized credential related to their teaching field.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CTEInstructorIndustryCertification' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code indicating the disability condition status.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of disability conditions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of disability determination sources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityDeterminationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an offense and/or disciplinary action resulted in a meeting of a student’s Individualized Education Program (IEP) team to determine appropriate placement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'IEPPlacementMeetingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual''s enrollment in a program for which all the required coursework for program completion is able to be completed via distance education courses. Distance education is education that uses one or more technologies to deliver instruction to individuals who are separated from the instructor and to support regular and substantive interaction between the individuals and the instructor synchronously or asynchronously.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DistanceEducationProgramEnrollmentInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The individual''s status in being admitted as a doctoral candidate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyAdmitInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the individual was admitted to doctoral candidate status.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the individual took an exam for advancement in, continuation or completion of a doctoral program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralExamTakenDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A qualifier identifying the types of exams required of doctoral level individuals.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDoctoralExamsRequiredCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Federal source, even if administered by state or local, that contributes to the EL program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Federal source, even if administered by state or local, that contributes to the EL program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of slots/spaces available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'GroupSize' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Whether the organization received notification about monitoring', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefOrganizationMonitoringNotificationsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date that monitoring visit began.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date that monitoring visit ended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The purpose for the monitoring visit.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefPurposeOfMonitoringVisitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of monitoring on the organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'TypeOfMonitoring' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The other contributing funding sources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The other contributing funding sources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Use for outcome measures in early learning.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefELOutcomeMeasurementLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The topical area of competence needed for Staff professional development.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELProfessionalDevelopmentTopicAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day on which the child is no longer eligible for the Program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of eligibility for the child.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date of status of eligibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'StatusDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the person is a designated emergency contact for the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'EmergencyContactInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, before enrolling in secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmployedPriorToEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the individual''s employment status while enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the course is associated with the Family and Consumer Sciences plan of study.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FamilyConsumerSciencesCourseInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A label for a grouping of financial accounts, based on type and purpose.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description for the financial account in an organization''s accounting system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the type of services that the partner organization provides.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of a non-person entity such as an organization, institution, agency or business, that partners with the Early Learning Organization to provide services to enrolled children/families.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The applicant preference that the family has for the program sites.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'SitePreferenceRank' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of expertise an individual training and technical assistance specialist has based on a set of established criteria.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'TrainingAndTechnicalAssistanceLevel' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether the student has transferred to another institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefTransferOutIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The trimester of pregnancy in which a child''s mother began receiving prenatal health care.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RefTrimesterWhenPrenatalCareBeganId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of a well child visit.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'WellChildScreeningReceivedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason for the termination of the employment relationship.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Non domestic residence in which the early learning setting is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefCommunityBasedTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that services are provided to the child in a place where children of all abilities learn together.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that services are provided to the child in a place where children of all abilities learn together.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that services are provided to the child in a place where children of all abilities learn together.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day on which a service was provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ServiceDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The title/role of employment, official status, or rank of early learning service professionals', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELServiceProfessionalStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year an organization uses for budgeting, accounting, and reporting financials.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A branch of the U.S. Military applicable for specifying more details when using Military Connected Student Indicator, Military Active Student Indicator, Military Veteran Student Indicator, and Military Enlistment After Exit elements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryBranchId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Lumina Foundation''s Degree Qualifications Profile offers reference points for what students should know and be able to do upon completion of associate, bachelor''s and master''s degrees – in any field of study. The DQP Categories of Learning provide a profile of what degrees mean within which specific proficiencies may be defined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefDQPCategoriesOfLearningId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which an accounting period begins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodBeginDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which an accounting period ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The planned or obligated expense value of a financial account for the specified accounting period or fiscal year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'EncumberedValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name given to the program area in an organization''s accounting system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A number given to a program area within an organization''s accounting system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'ProgramNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The value of a financial account balance or transaction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date of a financial transaction or when an account balance is reported.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which an attendance event takes place.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of organization that is a separate legal entity that 1) contracts with one or more charter schools to manage, operate, and oversee the charter schools; or 2) holds a charter, or charters, to operate multiple charter schools.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolManagementOrganizationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique number the SEA assigns to the contract (or charter) that authorizes the charter school to operate in the state under the state''s charter school legislation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractIdNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The effective date of the contract (or charter) that an approved charter school authorizer authorized the charter school to operate in the state under the state''s charter school legislation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractApprovalDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date by which the charter school must renew its contract (or charter) with an approved charter school authorizer in order to continue to operate in the state under the state''s charter school legislation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolContractRenewalDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the student''s National School Lunch Program (NSLP) eligibility has been determined through direct certification.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'NSLPDirectCertificationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of students the Course Section can maintain.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'MaximumCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category under which a person under 3 years of age is eligible for early intervention services under IDEA Part C.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAPartCEligibilityCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefTribalAffiliationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A globally unique identifier by which the creator/owner/provider of a credential recognizes the qualification, achievement, personal or organizational quality, or aspect of an identity in transactions with the external environment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the qualification, achievement, personal or organizational quality, or aspect of an identity was revoked.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Published reason for revocation of a credential award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedReason' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The URL to a document that includes a list of credential award assertions an issuer has revoked.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RevocationListURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator (URL) for the unique address of an image representing the Organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the person''s requirements for earning a credential were met or completed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'CompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A URL to a page that describes the requirements for the credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RequirementsURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Prerequisite conditions for earning an academic award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardPrerequisiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum number of times the course may be taken or completed for credit.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RepeatabilityMaximumNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefPESCAwardLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A URL to a page that describes the evidence that the learner met the criteria for attainment of the credential award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'EvidenceURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS financial position classification used by degree-granting public institutions using GASB Reporting Standards for reporting the assets, liabilities, and net position in a manner consistent with the Statement of Net Position in the General Purpose Financial Statements (GPFS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS financial position classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting the assets, liabilities, and net assets in a manner consistent with the Statement of Financial Position in the General Purpose Financial Statements (GPFS).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue classification used by degree-granting public institutions using GASB Reporting Standards for reporting revenues and other additions by source including all operating revenues, nonoperating revenues, and other additions for the reporting period. This includes unrestricted and restricted revenues and additions, whether expendable or nonexpendable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues and investment return by source in a manner consistent with the definitions from the National Association of College and University Business Officers (NACUBO) Financial Accounting and Reporting Manual for Higher Education (FARM).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue restriction classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues by restriction.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueRestrictionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A natural expense classification is a method of grouping expenses according to the type of costs that are incurred. The classifications tell what was purchased rather than why an expense was incurred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSNaturalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue category used by degree-granting public institutions using GASB Reporting Standards for the reporting of resources received for supporting student scholarships and fellowships.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'IPEDS revenue category used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for the reporting of resources received for supporting student grant aid.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the functional expense category where the institution allocates its intercollegiate athletics expenses.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSIntercollegiateAthleticsExpensesId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Method of reporting Pell Grants in IPEDS by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBPellGrantTransactionsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Frequency by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportScheduleId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Beginning not later than one year before the child reaches the age of majority under State law, the IEP must include a statement that the child has been informed of the child''s rights under Part B of the Individuals with Disabilities Education Act, if any, that will transfer to the child on reaching the age of majority under §300.520.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'TransferOfRightsStatement' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the status of the service plan for a child effectively ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which a child''s service plan meeting is held.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'MeetingDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of a specific accommodation or change to standards or practices that will be made.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Circumstances in which the accommodation or change to standards or practices will be applied.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Applicability' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A statement of why— (A) The child cannot participate in the regular assessment; and (B) The particular alternate assessment selected is appropriate for the child.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'IEPAlternativeAssessmentRationale' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of the reason changes were made to the individualized program service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'ReasonDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of the changes made to the individualized program service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Current performance explanation related to the annual goal or short-term objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'CurrentPerformanceDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The percent of correct results that will be considered to represent successful achievement of a goal.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AccuracyPercent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of attempts representing a completed trial for assessing achievement of a goal.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AttemptsCount' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A metric used for evaluating achievement of a goal.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'Metric' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of correct results that will be considered to represent successful achievement of a goal.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'SuccessCount' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The procedures and/or instruments that will be used to measure achievement of a goal or short-term objective.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Frequency of evaluation of progress toward meeting the goal or short-term objective.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Schedule' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of evidence appropriate for assessing achievement of a goal or short-term objective.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RefGoalMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Legal category for an IEP annual goal or short-term objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RefIEPGoalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressReportDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the progress report used to notify parents of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A method by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A method by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Status toward achievement of the annual goal or short-term objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RefGoalStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of status toward achievement of the annual goal or short-term objectives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'Status' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The rationale for the placement decision and if applicable, an explanation of the extent, if any, to which the child will not participate with nondisabled children in the regular class and in the activities described in paragraph (a)(4) of CFR. §300.320.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'IDEAPlacementRationale' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'How the child''s disability affects the child''s academic achievement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'AcademicDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000792', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalCollegeCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000796', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HoursWorkedPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000797', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HourlyWage' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000798', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageCollectionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000799', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000804', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RequiredTrainingClockHours' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefIssuingStateId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000806', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000806', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefChildDevAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000810', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000810', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTitle' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000813', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RefCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000816', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000816', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000819', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000822', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ServesChildrenWithSpecialNeeds' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000823', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ELClassGroupCurriculumType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefELGroupSizeStandardMetId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000825', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'ELProgramAnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000825', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'AnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000828', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefELProgramLicenseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000829', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodProgramEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000830', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000831', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QRISExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000834', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefProfitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000835', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfFatalities' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000836', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfInjuries' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000837', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseSuspensionStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000838', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseRevocationStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000840', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000841', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000843', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'NumberQrisLevels' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000844', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'NumberOfClassrooms' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000851', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ProgramHeathSafetyChecklistUseStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefPopulationServedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000857', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefCommunicationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000862', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RefERSRuralUrbanContinuumCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000865', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'StateLicensedFacilityCapacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000866', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'FullTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000867', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'PartTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000869', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefAssociationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000871', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'CompetencyDefAssociationIdentifierURI' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000872', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000873', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000874', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000875', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefBloomsTaxonomyDomainId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000876', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefMultipleIntelligenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000877', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RefCompletionCriteriaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000878', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'CompletionCriteriaThreshold' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000879', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefLearningResourceCompetencyAlignmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000880', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000881', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000882', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000883', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000884', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Publisher' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000885', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Rights' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000886', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RightsHolder' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000887', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000888', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptTerm' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000889', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssignedByPersonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000890', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000891', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000892', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000893', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000894', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ImageUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000895', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000896', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'Criteria' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000900', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'AwardIssuerOriginURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000901', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000902', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'SuccessCriteria' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000903', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000904', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'FeedbackMessage' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000906', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000907', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefTextComplexitySystemId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000908', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000910', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000911', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Url' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000912', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000913', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000914', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000915', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCodeSystem' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000916', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublisherName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000919', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000921', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceLicenseURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000922', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'BasedOnUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000923', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceIntendedEndUserRoleId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000924', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TimeRequired' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000925', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000926', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000929', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000930', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000931', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000932', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyTitle' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000933', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyShortName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000934', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RefLearnerActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000935', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000937', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000938', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000939', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000940', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000941', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Prerequisite' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000942', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000943', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000944', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumTimeAllowed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000945', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityMaximumTimeAllowedUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000946', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000947', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000948', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumAttemptsAllowed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000949', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityAddToGradeBookFlagId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000950', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'ReleaseDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000951', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000952', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'PossiblePoints' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000953', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RubricUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000954', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScaffoldingItemFlag' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000955', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintCount' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000956', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintIncludedAnswer' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000957', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'FirstAttemptDuration' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001399', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RefLearningResourceMediaFeatureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001400', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PeerRatingSampleSize' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001401', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RefLearningResourcePhysicalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001402', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'ConnectionCitation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001403', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001404', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001405', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001406', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001407', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001408', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefNodeAccessibilityProfileId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001409', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001411', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefTestabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001412', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'MilitaryEnlistmentAfterExit' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001413', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'NCAAEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001414', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefNCESCollegeCourseMapCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001415', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'NumberOfDependents' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001416', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseCompletedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001417', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001419', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'SeekingAccreditationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001420', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OriginalCourseIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001421', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'OtherRaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001422', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OverrideSchoolCourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001423', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactPriorityNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001424', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactRestrictions' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001425', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'LivesWithIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001426', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'PostsecondaryEnteringStudentInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001427', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'EnteringTerm' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001428', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'PrimaryContactIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001429', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'ProfessionalCertificateOrLicenseNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001430', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDAudienceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001431', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDDeliveryMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001432', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ApprovalCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001433', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityApprovedPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001434', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001435', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Cost' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001436', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001437', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Credits' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001438', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001439', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001440', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001442', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001443', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'FundingSource' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001445', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'PublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001446', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'Capacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001447', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001448', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001449', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationMethod' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001450', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001451', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001452', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SessionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001454', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'LocationName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001455', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001456', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001457', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDSessionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001458', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDInstructionalDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001460', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001461', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001462', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ScoreLevel' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001463', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001464', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001465', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001468', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001469', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001470', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001472', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Feedback' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001473', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001474', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Quality' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001475', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Score' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001476', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001477', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001478', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001479', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001480', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDGradeSpan' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001481', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001482', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RefReferralOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001483', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Reason' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001484', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Source' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001485', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralTypeReceived' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001486', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferredTo' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001487', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ReasonForDeclinedServices' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001489', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SponsoringAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001493', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001493', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001494', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001494', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001495', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001495', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001496', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'ThesisOrDissertationTitle' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001497', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001498', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'WeeksEmployedPerYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001499', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefWorkbasedLearningOpportunityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001500', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001501', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIDEAIEPStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001503', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefOutcomeTimePointId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001504', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressAIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001505', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressBIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001506', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSProgressCIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001507', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingAId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001508', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingBId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001509', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'COSRatingCId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001510', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefMethodOfServiceDeliveryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001511', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001512', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001513', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001514', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001515', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001516', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001516', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001516', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001517', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001517', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001517', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001517', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001517', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDCourseCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001518', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefSCEDCourseSubjectAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001519', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefServiceFrequencyId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001520', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceDuration' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001521', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RefReasonDelayTransitionConfId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001901', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureUsefulLife' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001902', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'AvailableUtilizedInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001903', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingCapacityFactorIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001904', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'FacilityEnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RefOrganizationRelationshipId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001906', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityOwnershipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001907', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkSourceUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001908', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001909', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001910', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefDateEffective' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001911', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001912', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'CredentialOfferedEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001913', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCTDLAudienceLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001914', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAgentRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001915', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001916', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'ProgressAcheivingEnglishLearnerProficiencyStateDefinedStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApip', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemApipDescription', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildIndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildOutcomeSummary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001919', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001919', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001920', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001920', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001921', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001922', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramEntryReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001923', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefComprehensiveSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001924', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001925', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAdditionalTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001926', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001926', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000285', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefTitleISchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000289', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RefK12LeaTitleISupportServiceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000292', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'TitleIVParticipantAndRecipient' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000293', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalBenefits' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000294', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'TotalNumberInClass' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000294', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolGraduatingClassSize' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000295', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationTotalSalary' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefTransferReadyId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000297', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefTuitionResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefUSCitizenshipStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000302', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000305', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000305', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefProofOfResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000306', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'ImmunizationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000307', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000308', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefVisionScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000309', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHearingScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeightAtBirth' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000313', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'WeeksOfGestation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000314', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentalScreeningStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000315', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDevelopmentalAssessment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEvaluationFindingId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000316', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000317', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesReceivedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RefServicesId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000323', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000323', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'ApplicationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000324', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'EnrollmentDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RefSchoolFoodServiceProgramId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000329', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'CustodialRelationshipIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000330', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInFamily' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000331', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfPeopleInHousehold' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000332', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIncome' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000333', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefFamilyIncomeSourceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000334', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefIncomeCalculationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefHealthInsuranceCoverageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000336', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefDentalInsuranceCoverageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000341', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELLevelOfSpecializationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000342', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateTitleOrSubject' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000343', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefDegreeOrCertificateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000345', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodCredential', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodCredentialId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000347', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000347', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000348', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicensingDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000348', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'InitialLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000349', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000349', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000350', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000350', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000351', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'OperationalStatusEffectiveDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000354', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000354', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000356', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000356', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000357', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RefQrisParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000358', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000361', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000362', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000362', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000363', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000364', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'ClassroomIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000364', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'ClassroomId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000365', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'IdentificationSystem' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000366', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'FormNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000367', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000368', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Abbreviation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000369', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000369', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000370', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'InstructionalRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000371', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000382', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000383', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAssessmentAccommodationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000384', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000384', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000385', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000385', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000386', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentPlatformTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000388', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000389', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000389', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000390', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000391', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Difficulty' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000392', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemCharacteristicTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000393', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'ResponseChoicePattern' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000395', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000396', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000397', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'OptimalValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000398', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'DistractorAnalysis' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000400', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stem' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000402', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Duration' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000403', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000405', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessItemResponseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000406', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AidSetUsed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000407', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'TimeAssessed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000408', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000415', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000417', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'ScoreMetric' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000418', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'LowerCutScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000419', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'UpperCutScore' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000421', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000422', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000423', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'UrlReference' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000424', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RefStateANSICodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000425', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RefPersonRelationshipTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000426', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000427', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000428', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000428', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000429', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefContinuationOfServicesReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000430', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MepEligibilityExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000431', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'MultipleBirthIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000432', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MigrantStudentQualifyingArrivalDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000433', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'QualifyingMoveFromCity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000434', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromCountryId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000435', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromStateId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000436', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'DesignatedGraduationSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000437', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000438', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ImmunizationRecordFlag' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000439', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefMedicalAlertIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000440', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepProjectBasedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Value Qualifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Value Qualifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Personal Information Verification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Personal Information Verification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Personal Information Verification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Separation Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Separation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classroom Position Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classroom Position Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Leave Event Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefLeaveEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Secondary Incident Behavior', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorSecondaryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Site Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Youngest Age Authorized to Serve', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Youngest Age Authorized to Serve', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other Name Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RefOtherNameTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Neglected or Delinquent Academic Achievement Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'AchievementIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Neglected or Delinquent Academic Outcome Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'OutcomeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher of Record', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'TeacherOfRecord' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Assignment Role', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Assignment Role', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefTeachingAssignmentRoleId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Assignment Contribution Percentage', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teaching Assignment Contribution Percentage', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'ContributionPercentage' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Entry Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEntryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Exit Withdrawal Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'ExitWithdrawalDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Exit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Interscholastic Sports - Male Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Interscholastic Sports - Female Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Interscholastic Teams - Male Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsMaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Interscholastic Teams - Female Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticTeamsFemaleOnly' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Interscholastic Sport Participants - Male Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsMale' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Interscholastic Sport Participants - Female Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'InterscholasticSportParticipantsFemale' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Statement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Identifier URI', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'URI' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Creator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Publication Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefCompetencyFrameworkPublicationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Jurisdiction', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Jurisdiction' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Valid Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Valid End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'ValidEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Subject', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Subject' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Vision Screening Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'VisionScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Web Site Address', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'Website' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hearing Screening Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HearingScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dental Screening Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'DentalScreeningDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Maximum Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Minimum Score', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Characteristic Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cohort Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Curriculum Framework Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Curriculum Framework Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCurriculumFrameworkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Diploma Distinction Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaDistinctionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Prerequisite Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'AssociatedEntityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Sponsor Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefProgramSponsorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Performance Level Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Performance Level Label', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'Label' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Rules', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Rules' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Score Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScoreValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Education Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Year Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AcademicYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Term Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Term Designator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefAcademicTermDesignatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Distance Education Course Enrollment', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDistanceEducationCourseEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Predominant Calendar System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Predominant Calendar System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefPredominantCalendarSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Standard Occupational Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'StandardOccupationalClassification' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Occupational Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Occupational Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefIpedsOccupationalCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Staff Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'InstructionalStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Medical School Staff Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'MedicalSchoolStaffStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Faculty Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'FacultyStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Staff Contract Length', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Staff Contract Length', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffContractLengthId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Full-time Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Full-time Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefFullTimeStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Contract Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Contract Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentContractTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tenure System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefTenureSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Staff Faculty Tenure Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionalStaffFacultyTenureId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Rank', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefAcademicRankId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instruction Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefInstructionCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Graduate Assistant Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'GraduateAssistantStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Graduate Assistant IPEDS Occupation Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefGraduateAssistantIpedsCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Annual Base Contractual Salary', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Annual Base Contractual Salary', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'AnnualBaseContractualSalary' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tuition - Published', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'TuitionPublished' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tuition Unit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RefTuitionUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Required Student Fees', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RequiredStudentFees' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Institutionally Controlled Housing Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'InstitutionallyControlledHousingStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Room Charges', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RoomCharges' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Board Charges', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BoardCharges' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Books and Supplies Costs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BooksAndSuppliesCosts' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other Student Expenses', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'OtherStudentExpenses' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Price of Attendance', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'PriceOfAttendance' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Comprehensive Fee', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'ComprehensiveFee' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Applicant', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'PostsecondaryApplicant' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Admitted Student', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefAdmittedStudentId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Wait Listed Student', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'WaitListedStudent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Domain', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGradePointAverageDomainId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Percentile', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolPercentile' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Student Housing On-Campus', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'HousingOnCampus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Fraternity Participation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FraternityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Sorority Participation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'SororityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Applicant', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidApplicant' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Need', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialNeed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Education Test Company', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationTestCompanyId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Preparation Program Enrollment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Preparation Program Completer Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepCompleterStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Alternative Route to Certification or Licensure', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefAltRouteToCertificationOrLicensureId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Critical Teacher Shortage Area Candidate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefCriticalTeacherShortageCandidateId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Published Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Identifier Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentAssestIdentifierType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Owner', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'Owner' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Content XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentXML' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Content Mime Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentMimeType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Content URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'ContentUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Use Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Space Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'SpaceDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Space Use Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefSpaceUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit Grade Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Weapon Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefWeaponTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Staff Role Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionStaffRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Subtest Tier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Tier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Subtest Container Only', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'ContainerOnly' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Possible Response Correct Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'CorrectIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Performance Level Descriptive Feedback', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Diagnostic Statement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatement' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Application Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RefFinancialAidApplicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Need Determination Methodology', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefNeedDeterminationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Oldest Age Authorized to Serve', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Oldest Age Authorized to Serve', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'OldestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Language Translation Policy', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'LanguageTranslationPolicy' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Status Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Status End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'StatusEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Maternal Guardian Education', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefMaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Paternal Guardian Education', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefPaternalEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Date Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramDateType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'IndividualizedProgramDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program NonInclusion Minutes Per Week', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'NonInclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Inclusion Minutes Per Week', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusionMinutesPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Transition Plan Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramTransitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Meeting Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramLocationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Meeting Participants', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanMeetingParticipants' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Signed By', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignedBy' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Signature Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanSignatureDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Reevaluation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanReevaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Full Time Equivalency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'SpecialEducationFTE' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Full Time Equivalency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Gifted Eligibility Criteria', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefProgramGiftedEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Category System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'CategorySystem' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Education Level ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RefEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Immunization Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RefImmunizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Notes', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Notes' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter A', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterA' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter B', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterB' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter Difficulty Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryDifficultyCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter C', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterC' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter D1', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD1' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter D2', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD2' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter D3', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD3' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter D4', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD4' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter D5', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD5' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter D6', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'ParameterD6' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Linking Item Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'LinkingItemIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Point Biserial Correlation Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'PointBiserialCorrelationValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Release Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'ReleaseStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory DIF Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'DIFValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Kappa Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'KappaValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Kappa Algorithm', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryKappaAlgorithmId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Body Text', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'BodyText' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Stimulus', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stimulus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Possible Response Option', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'PossibleResponseOption' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Marking Term Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MarkingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Scheduling Term Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SchedulingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Session Attendance Term Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'AttendanceTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Calendar Event Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EventDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Calendar Event Day Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accommodations Needed Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefAccommodationsNeededTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Advanced Placement Course Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdvancedPlacementCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Education Levels Addressed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RefPDActivityEducationLevelsAddressedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Allergy Reaction Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'ReactionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Allergy Severity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergySeverityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Allergy Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Result XML', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ResultXML' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Blended Learning Model Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Blended Learning Model Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Blended Learning Model Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Cluster', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Cluster', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Cluster', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Cluster', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Cluster', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Education Plan Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'LastUpdated' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Education Plan Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RefCareerEducationPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Authorizer Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolAuthorizerAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Authorizer Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Approval Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolApprovalYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Correctional Education Facility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefCorrectionalEducationFacilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Academic Grade Scale Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Academic Grade Status Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Academic Grade Status Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Applicable Education Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseApplicableEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Certification Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CertificationDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Basis Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Funding Program', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FundingProgram' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Honors Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseHonorsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Instruction Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Instruction Site Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'CourseInstructionSiteName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Instruction Site Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionSiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Interaction Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Narrative Explanation Grade', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'CourseNarrativeExplanationGrade' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'CourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Total', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CourseTotal' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'PESC Award Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefPESCAwardLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Award Evidence URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'EvidenceURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Financial Position Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Financial Position Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBFinancialPositionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Revenue Restriction Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBRevenueRestrictionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Functional Expense Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBFunctionalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance Natural Expense Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSNaturalExpenseId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Scholarships and Fellowships Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Scholarships and Fellowships Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenueId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance Intercollegiate Athletics Expenses', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSIntercollegiateAthleticsExpensesId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Pell Grant Transactions', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RefIPEDSFASBPellGrantTransactionsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Progress Report Schedule', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportScheduleId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Transfer of Rights Statement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'TransferOfRightsStatement' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'ServicePlanEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Meeting Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'MeetingDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Accommodation Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Accommodation Applicability', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'Applicability' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Alternative Assessment Rationale', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'IEPAlternativeAssessmentRationale' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Amendment Reason Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'ReasonDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Amendment Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Current Performance Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'CurrentPerformanceDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Criterion Accuracy Percent', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AccuracyPercent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Criterion Attempts Count', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'AttemptsCount' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Criterion Metric', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'Metric' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Criterion Success Count', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'SuccessCount' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Schedule', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Schedule' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RefGoalMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Goal Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RefIEPGoalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Progress Report Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressReportDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Progress Report Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Progress Report Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Progress Report Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RefGoalStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'Status' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Placement Rationale', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'IDEAPlacementRationale' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Present Level Academic Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'AcademicDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Present Level Functional Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'FunctionalDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Present Level General Education Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'GeneralEducationDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Present Level Preschool Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'PreschoolDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Present Level Student Strengths Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentStrengthsDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Present Level Parent Concern Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'ParentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Present Level Student Concern Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Declined Services Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'DeclinedServicesDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Frequency Unit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RefFrequencyUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Frequency Instances Per Cycle', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'InstancesPerCycle' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Frequency Length', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'FrequencyLength' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Duration Length in Minutes', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'DurationInMinutes' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Extends Outside School Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ExtendsOutsideSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Service Setting Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'SettingDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Authorization Document Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RefIEPAuthorizationDocumentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorizer Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RefAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization Acceptance Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AcceptanceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization Decision Explanation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'DecisionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Authorization Rejected Portion Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Authorization Rejected Portion Explanation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorization Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AuthorizationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Consent to Evaluation Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Consent to Evaluation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Eligibility Evaluation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RefIEPEligibilityEvaluationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Eligibility Evaluation Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RefIDEAEligibilityEvaluationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Eligibility Evaluation Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Eligibility Evaluation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'EvaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Eligibility Parent Observations Explanation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ParentObservations' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Disability Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefIDEADisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Advanced Standing Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Advanced Standing URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Alternate Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'AlternateName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Award Approver Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'ApproverName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Assessment Method Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAssessMethodTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Identifier System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RefCredentialIdentifierSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Estimated Duration', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'EstimatedDuration' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition NAICS Industry Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialNAICSIndustryType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Jurisdiction Region', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Jurisdiction Region Exception', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegionException' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Keywords', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Keywords' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Maximum Duration', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MaximumDuration' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Minimum Age', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumAge' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Minimum Duration', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumDuration' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Intended Purpose Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefIntendedPurposeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Region GeoJSON', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RegionGeoJSON' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Revoked Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Validation Method Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ValidationMethodDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Verification Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefVerificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'CTDL Organization Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'CTDL Organization Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'O*NET-SOC Occupation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefONETSOCOccupationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Type URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypeURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Full Academic Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'StateFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'LEA Full Academic Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'LEAFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Full Academic Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'SchoolFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingArea' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Significant Cognitive Disability Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'SignificantCognitiveDisabilityIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Virtual School Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Virtual School Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'National School Lunch Program Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'National School Lunch Program Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Acquisition Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityAcquisitionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Addition Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityAdditionYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Building Permanency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityBuildingPermanency' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Construction Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Historic Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingHistoricStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Site Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteArea' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Block Number Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityBlockNumberArea' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Addition Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Addition Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Primary Use Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingPrimaryUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Campus Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Census Tract', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityCensusTract' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Construction Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Construction Date Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionDateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Project-Based Learning Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'RefProjectBasedLearningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Approval Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CourseLevelApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Type Administered to English Learners', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Education Teacher Qualification Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationTeacherQualificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'EDFacts Certification Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEdFactsCertificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Support Service Availability Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceAvailabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adjusted Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'AdjustedCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adjusted Capacity Reason Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'RefAdjustedCapacityReasonTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Age 2 and Older Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAge2AndOlderCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Age Under 2 Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAgeUnder2Capacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Revenue Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Function Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Object Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Local Level of Instruction Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Balance Sheet Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Fund Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Local Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Federal Program Subgrant Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramSubgrantCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationEnrollmentCapacityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Program Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'PrimaryProgramIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Award Level Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Award Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardTitle' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Honors Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RefAcademicHonorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accountability Report Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AccountabilityReportTitle' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Type for Learner or Family', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adequate Yearly Progress Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAypStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Administrative Funding Control', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Administrative Funding Control', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Administrative Funding Control', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Aligned with Standards', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Aligned with Standards', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Alternate Adequate Yearly Progress Approach Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AlternateAypApproachIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Alternative School Focus Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefAlternativeSchoolFocusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Advanced Placement Credits Awarded', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AdvancedPlacementCreditsAwarded' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Apartment Room or Suite Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address Apartment Room or Suite Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Academic Subject', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Academic Subject', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Form Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Participation Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentParticipationIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Purpose', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Purpose', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Purpose', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Assessment Reporting Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RefCourseSectionAssessmentReportingMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Available Carnegie Unit Credit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Available Carnegie Unit Credit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Available Carnegie Unit Credit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Awaiting Initial IDEA Evaluation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'AwaitingInitialIDEAEvaluationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Base Salary', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationBaseSalary' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Birthdate', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Birthdate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Campus Residency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCampusResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career and Technical Education Completer', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteCompleter' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career and Technical Education Concentrator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteConcentrator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Carnegie Basic Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefCarnegieBasicClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address City', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address City', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Student Class Rank', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Student Class Rank', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Class Ranking Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ClassRankingDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Use', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCipUseId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Classification of Instructional Program Version', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipVersionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cohort Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Contract Days of Service Per Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Contract Days of Service Per Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Control of Institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Control of Institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Corrective Action Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RefCorrectiveActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Country Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Country of Birth Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Academic Grade', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'AcademicGrade' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Begin Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Units', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Units', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Units', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credit Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CreditValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Grade Point Average Applicability', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Grade Point Average Applicability', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Grade Point Average Applicability', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Grade Point Average Applicability', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Characteristic', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelCharacteristicsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Override School', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'CourseOverrideSchool' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Quality Points Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'QualityPointsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Repeat Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Repeat Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Subject Abbreviation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SubjectAbbreviation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Issuance Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'IssuanceDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credit Unit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credit Unit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Attempted Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Attempted Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Attempted Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Earned Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Earned Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credits Earned Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career and Technical Education Graduation Rate Inclusion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefCteGraduationRateInclusionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Attendance Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Degree Applicability', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'DegreeApplicability' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Degree or Certificate Seeking Student', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateSeekingStudent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dependency Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefDependencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Desegregation Order or Plan', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'DesegregationOrderOrPlan' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diploma or Credential Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Target', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Target' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Performance', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Performance' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Baseline', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Baseline' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Safe and Drug Free Baseline Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'BaselineYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Improvement Exit Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'SchoolImprovementExitDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Terminated Title III Programs Due to Failure', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'TerminatedTitleIIIProgramFailure' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Neglected or Delinquent Obtained Employment', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'ObtainedEmployment' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program in Multiple Purpose Facility', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'ProgramInMultiplePurposeFacility' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Type of Use of the Rural Low-Income Schools Program', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RefRlisProgramUseId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Title III Professional Development Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RefTitleIIIProfessionalDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disciplinary Action Taken', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplinaryActionTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationTeacherQualificationStatus', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21726', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RequiredStudentFees' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21727', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'InstitutionallyControlledHousingStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21728', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RoomCharges' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21729', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BoardCharges' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21730', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'BooksAndSuppliesCosts' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21731', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'OtherStudentExpenses' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21732', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'PriceOfAttendance' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21733', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'ComprehensiveFee' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21735', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'PostsecondaryApplicant' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefAdmittedStudentId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21738', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'WaitListedStudent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21739', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGradePointAverageDomainId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21740', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolPercentile' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21741', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'HousingOnCampus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21743', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FraternityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21744', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'SororityParticipationStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21745', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidApplicant' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21747', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialNeed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21748', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationTestCompanyId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21749', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21750', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefTeacherPrepCompleterStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21751', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefAltRouteToCertificationOrLicensureId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21753', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefCriticalTeacherShortageCandidateId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21754', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefSupervisedClinicalExperienceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21755', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'ClinicalExperienceClockHours' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21756', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationCredentialExamId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21757', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationExamScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21763', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtIntakeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21764', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtPosttestId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeSpecialProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21768', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAePostsecondaryTransitionActionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21770', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21784', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21774', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAeTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21774', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAETeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21786', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'ECDegreeOrCertificateHolder' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21776', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'ProxyContactHours' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21791', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalCollegeCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21795', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HoursWorkedPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21796', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HourlyWage' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21797', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageCollectionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21798', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21803', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RequiredTrainingClockHours' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21804', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefIssuingStateId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefChildDevAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21808', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21808', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTitle' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21810', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21810', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RefCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21815', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21815', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21817', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21817', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21821', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ServesChildrenWithSpecialNeeds' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21822', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ELClassGroupCurriculumType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21823', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefELGroupSizeStandardMetId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'ELProgramAnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'AnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21828', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefELProgramLicenseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21829', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodProgramEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21830', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21831', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QRISExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21834', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefProfitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21835', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfFatalities' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21836', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfInjuries' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21837', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseSuspensionStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21838', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseRevocationStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21840', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21841', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21843', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'NumberQrisLevels' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21844', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'NumberOfClassrooms' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21851', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ProgramHeathSafetyChecklistUseStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefPopulationServedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21857', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefCommunicationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21862', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RefERSRuralUrbanContinuumCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21865', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'StateLicensedFacilityCapacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21866', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'FullTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21867', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'PartTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21869', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefAssociationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21871', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'CompetencyDefAssociationIdentifierURI' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21872', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21873', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21874', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21875', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefBloomsTaxonomyDomainId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21876', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefMultipleIntelligenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21877', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RefCompletionCriteriaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21878', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'CompletionCriteriaThreshold' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21879', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefLearningResourceCompetencyAlignmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21880', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21881', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21882', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21883', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21884', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Publisher' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21885', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Rights' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22230', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'DIFValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22231', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'KappaValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22232', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponseTheory', @level2type=N'COLUMN', @level2name=N'RefItemResponseTheoryKappaAlgorithmId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22233', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'BodyText' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22234', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stimulus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22235', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'PossibleResponseOption' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22236', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22237', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22238', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'MarkingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22239', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SchedulingTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22240', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'AttendanceTermIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EventDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22242', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22243', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefAccommodationsNeededTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22244', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdvancedPlacementCourseCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22245', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RefPDActivityEducationLevelsAddressedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22247', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'ReactionDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22248', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergySeverityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22249', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RefAllergyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22250', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ResultXML' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22253', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22253', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22253', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefBlendedLearningModelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCareerClusterId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22255', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'LastUpdated' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22256', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RefCareerEducationPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolAuthorizerAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RefCharterSchoolAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22259', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolApprovalYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22262', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefCorrectionalEducationFacilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22264', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22265', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22265', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseAcademicGradeStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22267', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseApplicableEducationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22268', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CertificationDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22269', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22270', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCourseCreditLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22272', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FundingProgram' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseHonorsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22274', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22275', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'CourseInstructionSiteName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22276', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RefCourseInstructionSiteTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeCourse', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseLevelTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22279', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'CourseNarrativeExplanationGrade' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22280', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'CourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22282', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CourseTotal' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefCreditHoursAppliedOtherProgramId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22284', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CTEInstructorIndustryCertification' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22285', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22286', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22287', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityDeterminationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22288', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'IEPPlacementMeetingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22289', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DistanceEducationProgramEnrollmentInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22290', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyAdmitInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22291', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22292', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralExamTakenDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22293', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDoctoralExamsRequiredCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22294', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22294', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22295', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'GroupSize' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefOrganizationMonitoringNotificationsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22297', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22298', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefPurposeOfMonitoringVisitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22300', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'TypeOfMonitoring' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22302', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22302', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22303', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefELOutcomeMeasurementLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELProfessionalDevelopmentTopicAreaId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22305', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22306', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22307', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'StatusDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22308', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'EmergencyContactInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22309', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmployedPriorToEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22311', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FamilyConsumerSciencesCourseInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22312', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22313', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22314', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22315', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22316', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22317', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'ActualValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22318', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'BudgetedValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22319', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidIncomeLevel' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22322', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22323', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefFrequencyOfServiceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22324', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefGraduateOrDoctoralExamResultsStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningEquipmentUsed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22326', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningFollowUpRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22327', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'PartB619PotentialEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22330', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22331', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22333', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22334', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDeclineDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'DateOfTransitionPlan' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22337', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentMultipleOffenseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22676', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22677', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'Schedule' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22678', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RefGoalMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22679', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RefIEPGoalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22680', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressReportDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22681', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'ProgressDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22682', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22682', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RefIPSPProgressReportTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22683', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RefGoalStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22684', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'Status' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22685', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'IDEAPlacementRationale' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22686', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'AcademicDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22687', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'FunctionalDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22688', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'GeneralEducationDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22689', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'PreschoolDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22690', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentStrengthsDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22691', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'ParentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22692', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22693', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'DeclinedServicesDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22694', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RefFrequencyUnitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22695', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'InstancesPerCycle' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22696', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'FrequencyLength' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22697', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'DurationInMinutes' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22698', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ExtendsOutsideSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22699', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'SettingDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22700', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RefIEPAuthorizationDocumentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22701', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RefAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22702', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AcceptanceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22703', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'DecisionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22704', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22705', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22706', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AuthorizationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22707', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22708', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22709', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RefIEPEligibilityEvaluationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22710', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RefIDEAEligibilityEvaluationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22711', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'EvaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ParentObservations' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22714', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefIDEADisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22715', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22716', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22717', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'AlternateName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22718', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'ApproverName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22719', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAssessMethodTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22720', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RefCredentialIdentifierSystemId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22721', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22722', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'EstimatedDuration' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22723', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialNAICSIndustryType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22724', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22725', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegionException' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22726', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Keywords' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22727', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MaximumDuration' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22728', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumAge' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22729', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumDuration' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22730', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefIntendedPurposeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22731', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RegionGeoJSON' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22732', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22733', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ValidationMethodDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22734', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefVerificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22735', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22737', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefONETSOCOccupationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22738', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypeURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22742', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'StateFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22743', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'LEAFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22744', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'SchoolFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22745', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingArea' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22746', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'SignificantCognitiveDisabilityIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22747', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22747', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22748', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22748', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22749', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityAcquisitionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22750', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityAdditionYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22751', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityBuildingPermanency' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22752', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22753', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingHistoricStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22754', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteArea' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22755', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityBlockNumberArea' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22756', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22757', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22758', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingPrimaryUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22759', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22760', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityCensusTract' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22761', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22762', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionDateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22763', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionMaterialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22764', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityExpectedLife' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22765', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'FacilityReplacementValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfStories' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22768', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteImprovementLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22769', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearBuilt' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22770', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearOfLastModernization' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22771', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingAirDistributionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22772', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCommMgmtComponentSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22773', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22774', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilitySystemOrComponentConditionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22775', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCoolingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22776', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingElectricalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22777', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityApplicableFederalMandateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22778', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityFederalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22779', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingFireProtectionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHeatingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolIndicatorStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaAlternateFundUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationImage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationWebsite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationFoodService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22908', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22953', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAwayFromSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22952', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAccessId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22954', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceProviderId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22936', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'InternetAccessInResidence' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22916', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefBarrierToInternetAccessInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22937', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetAccessTypeInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22939', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetPerformanceInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'CohortMedianEarnings' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22915', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAdultEducationProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22969', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RefWIOABarrierstoEmploymentId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22970', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOACareerServices' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22971', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOATrainingServices' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22932', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'FederalRaceAndEthnicityDeclined' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22951', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22959', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RefRoleId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22933', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'FirstGenerationCollegeStudent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22944', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideEstimate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22945', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideStandardError' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22943', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideDateProcessed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22946', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageBeginYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22947', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageEndYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22919', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefinitionTerminalDegreeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22914', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22912', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentEmployedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22913', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSCredentialIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22948', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysTardy' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22964', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RefStaffCompensationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22962', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationAnnualSupplement' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22963', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationLongevity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22929', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEDFactsTeacherInexperiencedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22930', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefOutOfFieldStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22968', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefStudentSchoolAffiliationStateDefinedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22960', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemDataCollectionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22961', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22923', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22922', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22924', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionOpenDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22921', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionCloseDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22920', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionAcademicSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22925', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22958', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22958', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22957', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22957', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22956', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22956', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22941', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetUploadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22938', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetDownloadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22940', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetSpeedTestDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22931', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'EmancipatedMinor' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22950', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfHouseholdCollegeStudents' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22949', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefNumberOfDependentsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'ChildrenOfFallenHeroesIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22965', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'PartName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22967', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22966', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22935', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22934', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22926', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'RefDataCollectionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22991', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'ProjectBasedLearningIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22992', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'OrganizationProjectBasedLearningId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22992', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'RefProjectBasedLearningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22975', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CourseLevelApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22974', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22993', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationTeacherQualificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22978', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEdFactsCertificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22994', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceAvailabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22972', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'AdjustedCapacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22973', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'RefAdjustedCapacityReasonTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22976', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAge2AndOlderCapacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22977', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAgeUnder2Capacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22985', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22986', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22987', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22982', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22983', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22984', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22980', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramSubgrantCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationEnrollmentCapacityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'PrimaryProgramIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21001', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21002', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21003', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardTitle' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RefAcademicHonorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AccountabilityReportTitle' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21358', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21011', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAypStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21013', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21013', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21014', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AlternateAypApproachIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21015', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefAlternativeSchoolFocusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21018', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AdvancedPlacementCreditsAwarded' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21019', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21019', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21348', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'ContinuingLicenseDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21349', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21349', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefLicenseExemptId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21350', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationOperationalStatus', @level2type=N'COLUMN', @level2name=N'OperationalStatusEffectiveDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21352', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21352', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21352', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefServiceOptionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'HoursAvailablePerDay' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21354', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21354', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'DaysAvailablePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RefEnvironmentSettingId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21356', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RefQrisParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21357', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21360', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21361', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21361', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursCompleted' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21362', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21507', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Classroom', @level2type=N'COLUMN', @level2name=N'ClassroomIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21507', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'ClassroomId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21158', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'IdentificationSystem' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21365', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'FormNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21366', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21367', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Abbreviation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21368', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21368', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefScoreMetricTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21369', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'InstructionalRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21370', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21373', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21374', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAssessmentAccommodationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21375', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21375', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentSecureIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21376', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21376', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RefAccommodationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21377', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentPlatformTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21379', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21380', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21380', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionSpecialCircumstanceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21382', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21383', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Difficulty' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21384', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemCharacteristicTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21385', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'ResponseChoicePattern' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21387', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MaximumValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21388', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'MinimumValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21389', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'OptimalValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21390', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'DistractorAnalysis' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21392', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Stem' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21394', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Duration' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21395', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21396', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessItemResponseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21397', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AidSetUsed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21398', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'TimeAssessed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21399', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'AllottedTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21405', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21407', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'ScoreMetric' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21408', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'LowerCutScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21409', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'UpperCutScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21411', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21412', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21413', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'UrlReference' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21414', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RefStateANSICodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21415', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RefPersonRelationshipTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21416', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21417', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefStateId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21418', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21418', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'BirthdateVerification' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21419', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefContinuationOfServicesReasonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21420', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MepEligibilityExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21421', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'MultipleBirthIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21422', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'MigrantStudentQualifyingArrivalDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21423', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'QualifyingMoveFromCity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21424', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromCountryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21425', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefQualifyingMoveFromStateId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21426', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'DesignatedGraduationSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21427', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21428', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ImmunizationRecordFlag' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21429', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RefMedicalAlertIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21430', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepProjectBasedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21432', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDesignation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21433', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealChangedDesignation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21434', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21435', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'StateTransferabilityOfFunds' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21437', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21437', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21438', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21438', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21439', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefBarrierToEducatingHomelessId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21443', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessStandardsFunding' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21444', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessmentAdminFunding' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21445', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateStateReceivedTitleIIIAllocation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21446', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateTitleIIIFundsAvailableToSubgrantees' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21447', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'NumberOfDaysForTitleIIISubgrants' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21451', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21452', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpentOnStrategicPriorities' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21453', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepProjectTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21454', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeProgramsFundsReceived' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21456', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RefLiteracyAssessmentId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21457', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyGoalMetStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21458', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPostTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21459', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPreTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21461', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'IndicatorName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21462', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Instrument' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21463', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'CollectionFrequency' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21464', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'MostRecentCollection' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21465', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Target' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21466', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Performance' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The category that describes how the student spends his or her time not physically present on school grounds and not participating in instruction or instruction-related activities at an approved off-grounds location.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAbsentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category that describes how the student spends his or her time when attending an instructional program approved by the state and/or school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPresentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of attendance event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of scheduled or unscheduled calendar event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCalendarEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an assessment conforms to a standard.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContentStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineLengthDifferenceReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies where the incident occurred and whether or not it occurred on campus.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The evidence by which a persons name, address, date of birth, etc. is confirmed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason for the termination of the employment relationship.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type of separation occurring between a person and the organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of position the staff member holds in the specific course section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefClassroomPositionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of the leave event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaveEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Supplemental information about an incident when the primary offense is more serious in nature than alcohol or drug, etc. offenses.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehaviorSecondary', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of previous, alternate or other names for a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOtherNameType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of address listed for an organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role that the Staff Member has been assigned for a Class Section. (A teacher may have the lead responsibility for one section and serve a supporting role for another section of the same course.)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingAssignmentRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The process by which a student enters a school (Course Section) during a given academic session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The circumstances under which the student exited from membership in a course section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The publication status of the competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyFrameworkPublicationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category of charter school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the standard curriculum used for this course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCurriculumFrameworkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaDistinctionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of organization providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramSponsorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic term for which the data apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicTermDesignator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual''s enrollment in a course or courses in which the instructional content is delivered exclusively via distance education. Distance education is education that uses one or more technologies to deliver instruction to students who are separated from the instructor and to support regular and substantive interaction between the students and the instructor synchronously or asynchronously. Technologies used for instruction may include: Internet; one-way and two-way transmissions through open broadcasts, closed circuit, cable, microwave, broadband lines, fiber optics, satellite or wireless communication devices; audio conferencing; and video cassette, DVDs, and CD-ROMs, if the cassette, DVDs, and CD-ROMs are used in a course in conjunction with the technologies listed above.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDistanceEducationCourseEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which an institution structures most of its courses for the academic year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPredominantCalendarSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report employees.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIpedsOccupationalCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The contracted teaching period for faculty.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffContractLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an individual is employed for a standard number of hours (as determined by civil or organizational policies) in a week, month, or other period of time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFullTimeStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of employment contract used by an institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentContractType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether an institution has personnel positions that lead to consideration for tenure.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTenureSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the type of faculty status a person has if, by institutional definition, a staff member has faculty status.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffFacultyTenure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The academic rank of staff whose primary responsibility is instruction, research, and/or public service. Institutions without standard academic ranks should code staff whose primary responsibility is instruction, research, and/or public service as "No Academic Rank."', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicRank', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type(s) of instruction being delivered by staff whose primary responsibility is instruction. Instruction that is for "credit" can be applied toward the requirements for a postsecondary degree, diploma, certificate or other formal award.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report graduate assistants.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateAssistantIpedsCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The component for which tuition is being charged. It might be a time period (term, quarter, year, etc.) or it might be an entity of education (course, credit hour, etc.).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Applicant who has been granted an official offer to enroll in a postsecondary institution. Admitted applicants should include wait-listed students who were subsequently offered admission.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmittedStudent', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The domain to which the Grade Point Average is referencing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGradePointAverageDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the company that provides the examination used in the teacher education program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationTestCompany', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is pursuing certification as a teacher.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person completed a state-approved teacher preparation program. The fact that a person has or has not been recommended to the state for initial certification or licensure may not be used as a criterion for determining who is a program completer.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepCompleterStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is enrolled in an alternative teacher preparation program as defined by Title II.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAltRouteToCertificationOrLicensure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is pursuing licensure/certification in a field designated as a shortage area as defined by Title II.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCriticalTeacherShortageCandidate', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is enrolled in a supervised clinical experience (including student teaching) as part of a teacher preparation program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSupervisedClinicalExperience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of examination used to assess teacher candidate''s knowledge and skills.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationCredentialExam', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the type of credential exam associated with a given exam score.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationExamScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtIntake', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtPosttest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of instructional program in which an adult is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeInstructionalProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type, by location or delivery mode, of adult education instruction program in which an adult participates.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeSpecialProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A person''s reasons for attending an adult education class or program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalsForAttendingAdultEducation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The action taken with respect to postsecondary enrollment by the learner after program exit or when co-enrolled in ABE and postsecondary with respect to enrollment in a postsecondary educational or occupational skills program building on prior services or training received.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAePostsecondaryTransitionAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The titles of employment, official status, or rank of adult education staff.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The condition under which a person has agreed to serve as an employee.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the category of the adult education certification a person holds.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeCertificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of institution responsible for providing adult education instructional services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalTechnicalCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Method used for the collection of wage data for an employment record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageCollectionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of Child Development Associate credential as defined by options.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentAssociateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of financial assistance received in support of non-credit professional development activities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalDevelopmentFinancialSupport', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the core knowledge areas addressed by Early Learning professional development.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the accreditation status of a higher education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHigherEducationInstitutionAccreditationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the wage information has been verified.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a program meets NAEYC or NAFCC standards for infant group sizes.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELGroupSizeStandardMet', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The current licensing status for an early learning program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramLicenseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodProgramEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the for-profit status of a facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Program provides services to meet the needs of children in special circumstances.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPopulationServed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of communication methods with parents.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunicationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Rural-Urban Continuum Codes form a classification scheme that distinguishes metropolitan (metro) counties by the population size of their metro area, and nonmetropolitan (nonmetro) counties by degree of urbanization and adjacency to a metro area or areas. The metro and nonmetro categories have been subdivided into three metro and six nonmetro groupings, resulting in a nine-part county codification. The codes allow researchers working with county data to break such data into finer residential groups beyond a simple metro-nonmetro dichotomy, particularly for the analysis of trends in nonmetro areas that may be related to degree of rurality and metro proximity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERSRuralUrbanContinuumCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the nature of the association between a Competency Definition and an associated data object such as a Learning Resource, an Assessment Item, or even another Competency Definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefAssociationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Classification of the Competency Definition using Bloom''s Taxonomy Domains. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBloomsTaxonomyDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Classification of the Competency Definition using intelligences defined for Howard Earl Gardner''s Theory of Multiple Intelligences.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMultipleIntelligenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The criteria for the set of competencies that represent completion or partial completion of a unit, course, program, degree, certification, or other achievement/award. Specifies whether completion requires achievement of all items in the set or some number of items.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencySetCompletionCriteria', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The alignment relationship between the resource and a competency definition object.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceCompetencyAlignmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The scaling system used to specify the text complexity of an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTextComplexitySystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The individual or group for which the resource was produced.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceIntendedEndUserRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The predominate mode of learning supported by the learning resource. Acceptable values are active, expositive, or mixed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The predominate type or kind characterizing the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of action taken by the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of work assigned to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of time of the Maximum Time Allowed value.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityMaximumTimeAllowedUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the assignment as one that is graded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityAddToGradeBookFlag', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status related to a student enrollment in an instance of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEnrollmentStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The agency that accredited a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccreditationAgency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the facility license.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFacilityLicensingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedAfterExit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of one organization’s relationship to another.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationRelationship', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of level indicating a point in a progression through an educational or training context, for which the credential is intended; select from an existing enumeration of such types.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLAudienceLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role that an organization or person has in relation to this Credential Definition based on terms defined by Credential Engine.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAgentRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category used to report the school''s performance on the progress of achieving the English language proficiency indicator.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation given to a school by the state for additional targeted support and improvement as part of its statewide system of annual meaningful differentiation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefComprehensiveSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The documented or assumed reason a person is being served by a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramEntryReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a telephone number is listed under a directory assistance service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberListedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The documented or assumed reason the person is no longer being served by the adult education program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdultEducationProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the barrier to having internet access in the student''s primary place of residence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToInternetAccessInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A process indicator of the level of stability, quality, and/or preparedness of the collection of data.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDataCollectionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of academic or career and technical outcome attained up to 90 days after exiting the facility or program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of academic or career and technical outcome attained while enrolled in the program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether teachers have been identified as inexperienced as defined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEDFactsTeacherInexperiencedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether teachers have been identified as teaching a subject or field for which they are not certified or licensed as defined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutOfFieldStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary type of internet service used in the student''s primary place of residence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccessTypeInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the student can complete the full range of learning activities, including video streaming and assignment upload, without interruptions caused by poor internet performance in their primary place of residence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetPerformanceInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The student''s relationship to the dependents who live with the student or receive more than half of the student''s support', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNumberOfDependentsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of personal information verified through the Personal Information Verification evidence.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the primary learning device is shared or not shared with another individual', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of device the student uses most often to complete learning activities away from school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAwayFromSchool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The provider of the primary learning device.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceProvider', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The origins of a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRace', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of entity that created or indicated the Record Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusCreatorEntity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A process indicator of the level of stability, quality, and/or preparedness of the record.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the way in which a person relates to an organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The source for the staff compensation a person receives.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffCompensationSourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the nature of a student''s affiliation, as defined by the state, with a public school and used generally, but not exclusively, for the purpose of determining residency, funding, or accountability.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSchoolAffiliationStateDefinedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A self-identified barrier as defined by the Workforce Innovation and Opportunity Act (WIOA) that is presumed to affect placement of a participant in unsubsidized employment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWIOABarrierstoEmployment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdjustedCapacityReasonType', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001590', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDirectoryInformationBlockStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEducationStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001603', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLocalRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001604', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001605', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELStateRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001606', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELTrainerCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001607', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEducationVerificationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001609', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001616', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSProgramLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001622', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReimbursementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001623', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScheduledWellChildScreening', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001629', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferOutIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001630', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTrimesterWhenPrenatalCareBegan', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001632', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001633', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunityBasedType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001636', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceProfessionalStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001637', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6393Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001638', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6395LanguageFamily', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001640', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryBranch', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001641', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDQPCategoriesOfLearning', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolManagementOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001656', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAPartCEligibilityCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001657', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTribalAffiliation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001659', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001666', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardPrerequisiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001668', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPESCAwardLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001670', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001671', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001672', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001673', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001674', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenueRestriction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001675', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001676', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSNaturalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001677', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001678', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001679', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSIntercollegiateAthleticsExpenses', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001680', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBPellGrantTransactions', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001681', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportSchedule', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001697', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001698', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPGoalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001701', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001702', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001719', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPAuthorizationDocumentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001720', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001728', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPEligibilityEvaluationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001729', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEligibilityEvaluationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001733', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001738', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAssessMethodType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001739', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialIdentifierSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001740', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001749', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefIntendedPurposeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001753', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefVerificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001755', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001756', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefONETSOCOccupationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVirtualSchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNationalSchoolLunchProgramStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001772', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHistoricStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001777', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPrimaryUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001778', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001781', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001782', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionMaterialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001787', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteImprovementLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001790', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAirDistributionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001791', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommMgmtComponentSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001792', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001793', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySystemOrComponentCondition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001794', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCoolingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001795', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingElectricalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001796', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityApplicableFederalMandateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001797', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFederalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001798', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFireProtectionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001799', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHeatingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001800', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHVACSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001802', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalConveyingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001803', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPlumbingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001804', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSecuritySystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStateOrLocalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001807', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingTechnologyWiringSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingVerticalTransportationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001813', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAdministrativeSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001814', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingArtSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001815', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingBasicClassroomDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001816', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001817', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCareerTechEducationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCirculationSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001819', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnvOrEnergyPerformanceRatingCat', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001820', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFurnishingsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001821', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFoodServiceSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001822', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingIndoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001823', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingLibMediaCenterSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOperationsOrMaintSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001825', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001826', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingOutdoorOrNonathleticSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001827', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPerformingArtsSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001828', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSchoolDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001829', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingScienceSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001830', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteOutdoorAreaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001831', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpaceDesignType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001832', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSpecEdSpecialtySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001833', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingStudentSupportSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001836', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAssemblySpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001843', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFullServiceKitchenType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001851', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingInstructionalSpaceFactorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseRationaleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001853', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUseSchedulingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001854', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingJointUserType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001855', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommunityUseSpaceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001860', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSiteUseRestrictionsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001862', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentEnrollmentAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001864', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityAuditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001865', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCharterSchoolRealtyAccessType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001866', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCleaningStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001867', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceAgencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001868', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergyConservationMeasureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001870', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingEnergySourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001871', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMgmtEmergencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001872', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityCapitalProgramMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001873', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityOperationsMgmtType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001874', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityHazardousMaterialsOrCondType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001875', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityJointDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001876', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMaintStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001877', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityNaturallyOccurringHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001878', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityProviderType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001879', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityUtilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001883', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001884', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001885', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitiesMandateAuthorityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001886', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFinancingFeeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001888', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseAmountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001889', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityLeaseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Licensing Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramLicenseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Program Enrollment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodProgramEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Profit Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Circumstances Population Served', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPopulationServed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Parent Communication Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunicationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Economic Research Service Rural-Urban Continuum Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERSRuralUrbanContinuumCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefAssociationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Blooms Taxonomy Domain', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBloomsTaxonomyDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Multiple Intelligence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMultipleIntelligenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Set Completion Criteria', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencySetCompletionCriteria', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Competency Alignment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceCompetencyAlignmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Text Complexity System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTextComplexitySystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Intended End User Role', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceIntendedEndUserRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Interactivity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Action Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Maximum Time Allowed Unit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityMaximumTimeAllowedUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learner Activity Add to Grade Book Flag', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityAddToGradeBookFlag', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Enrollment Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEnrollmentStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accreditation Agency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccreditationAgency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Licensing Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFacilityLicensingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed While Enrolled', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed After Exit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedAfterExit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Record Administrative Data Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERAdministrativeDataSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Workforce Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWfProgramParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Early Learning Developmental Domain', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentELDevelopmentalDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Educational Use', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceEducationalUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Subtest Identifier Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSubtestIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Language Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLanguageLearnerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Hazard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Support Tool Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSupportTool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Usage Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUsageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Link Indication Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLinkIndicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Braille Grade Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleGradeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Number of Braille Dots Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedNumberOfBrailleDots', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Braille Mark Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleMarkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Braille Status Cell Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleStatusCellType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Signing Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSigningType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Alternative Representation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedAlternativeRepresentationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Spoken Source Preference Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSpokenSourcePreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need User Spoken Preference Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUserSpokenPreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Masking Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedMaskingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Need Increased Whitespacing Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedIncreasedWhitespacingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NAEP Mathematical Complexity Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepMathComplexityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Interaction Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefApipInteractionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Identification System for Assessment Form Section', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentFormSectionIdentificationSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Asset Identifier Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NAEP Aspects of Reading', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepAspectsOfReading', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Instructional Delivery Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Use Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Space Use Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpaceUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'County ANSI Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCounty', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Weapon Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWeaponType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Session Staff Role Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionStaffRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Application Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidApplicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Need Determination Methodology', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeedDeterminationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Date Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Transition Plan Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramTransitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Meeting Location', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Gifted Eligibility Criteria', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramGiftedEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Immunization Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefImmunizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Parameter Difficulty Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryDifficultyCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Theory Kappa Algorithm', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryKappaAlgorithm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accommodations Needed Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationsNeededType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Advanced Placement Course Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdvancedPlacementCourseCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Education Levels Addressed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityEducationLevelsAddressed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Allergy Severity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergySeverity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Allergy Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Blended Learning Model Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBlendedLearningModelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Cluster', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerCluster', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career Education Plan Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerEducationPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Authorizer Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Correctional Education Facility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectionalEducationFacilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Academic Grade Status Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseAcademicGradeStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Applicable Education Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseApplicableEducationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Basis Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Credit Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Honors Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseHonorsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Instruction Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Instruction Site Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionSiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Interaction Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credit Hours Applied Other Program', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditHoursAppliedOtherProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disability Condition Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disability Condition Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disability Determination Source Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityDeterminationSourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Doctoral Exams Required Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDoctoralExamsRequiredCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Federal Funding Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFederalFundingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Monitoring Notifications', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationMonitoringNotifications', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Purpose of Monitoring Visit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPurposeOfMonitoringVisit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Other Federal Funding Sources', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOtherFederalFundingSources', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Outcome Measurement Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOutcomeMeasurementLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Professional Development Topic Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProfessionalDevelopmentTopicArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Eligibility Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibilityStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed Prior to Enrollment', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedPriorToEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Status While Enrolled', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatusWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Fund Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountFundClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountProgramCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Balance Sheet Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountBalanceSheetCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Function Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureFunctionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Object Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureObjectCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Frequency of Service', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyOfService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Graduate or Doctoral Exam Results Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateOrDoctoralExamResultsStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Multiple Offense Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentMultipleOffenseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Perpetrator Injury Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPerpetratorInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Person Role Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPersonRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Planned Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramPlannedServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'K12 End of Course Requirement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12EndOfCourseRequirement', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access API Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessAPIType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access Hazard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access Mode Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessModeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Book Format Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceBookFormatType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Control Flexibility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceControlFlexibilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Digital Media Sub Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaSubType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Digital Media Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceDigitalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Media Feature Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceMediaFeatureType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Physical Media Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourcePhysicalMediaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Node Accessibility Profile', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefNodeAccessibilityProfile', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21342', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDegreeOrCertificateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21344', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodCredential', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21346', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21349', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLicenseExempt', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21352', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceOption', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnvironmentSetting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21356', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefQrisParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21358', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21360', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21362', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21368', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScoreMetricType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21374', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAccommodationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21376', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21377', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPlatformType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21380', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionSpecialCircumstanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21382', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21384', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemCharacteristicType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21396', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21405', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministered', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21414', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStateANSICode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21415', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonRelationshipType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21419', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContinuationOfServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21427', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21429', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMedicalAlertIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21430', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectBased', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21437', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIILanguageInstructionProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21439', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToEducatingHomeless', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21441', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaFundsTransferType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21453', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepProjectType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21456', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLiteracyAssessment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21477', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRlisProgramUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21478', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIProfessionalDevelopmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21479', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplinaryActionTaken', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21481', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramDayLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21497', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentReporterType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21500', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehavior', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21501', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21506', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentTimeDescriptionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21515', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21521', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21522', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonPromotionReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21523', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21526', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentSchoolAge', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21527', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIIAccountability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21529', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodOfCwd', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21530', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemovalReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21531', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotCompleting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21532', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAInterimRemoval', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21536', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21539', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFederalProgramFundingAllocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21546', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineMethodFirearms', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21547', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisciplineMethodFirearm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21548', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFirearmType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21549', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21550', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEducationalEnvironmentEC', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21550', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEnvironmentEL', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21552', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReapAlternativeFundingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21553', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationAgeGroupTaught', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnologyLiteracyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21563', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreAndPostTestIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21564', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPretestOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21565', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21578', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStatePovertyDesignation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21579', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21580', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21581', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21581', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNonTraditionalGenderStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21582', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffPerformanceLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21592', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAbsentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21593', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPresentAttendanceCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21594', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21596', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCalendarEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21598', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContentStandardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisciplineLengthDifferenceReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21613', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21614', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentSeparationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21615', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefClassroomPositionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaveEventType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21620', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentBehaviorSecondary', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21627', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOtherNameType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21644', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingAssignmentRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21652', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21654', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21675', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyFrameworkPublicationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21686', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21688', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCurriculumFrameworkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21689', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaDistinctionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21692', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramSponsorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21703', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicTermDesignator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21704', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDistanceEducationCourseEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21705', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPredominantCalendarSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21708', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIpedsOccupationalCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21712', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffContractLength', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21713', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFullTimeStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21714', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentContractType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21715', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTenureSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21716', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalStaffFacultyTenure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21717', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicRank', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21719', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21721', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateAssistantIpedsCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21725', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21736', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmittedStudent', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21739', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGradePointAverageDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21748', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationTestCompany', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21749', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21750', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherPrepCompleterStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21751', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAltRouteToCertificationOrLicensure', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22929', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEDFactsTeacherInexperiencedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22930', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutOfFieldStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22937', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccessTypeInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22939', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetPerformanceInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22949', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNumberOfDependentsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22951', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22952', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22953', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAwayFromSchool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22954', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceProvider', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22955', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRace', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22956', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusCreatorEntity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22958', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22959', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22964', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffCompensationSourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22968', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSchoolAffiliationStateDefinedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22969', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWIOABarrierstoEmployment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountLocalRevenueCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalFunctionCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The extent of formal instruction a person has received (e.g., the highest grade in school completed or its equivalent or the highest degree received).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The extent of formal instruction a person has received (e.g., the highest grade in school completed or its equivalent or the highest degree received).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the teacher has been classified as highly qualified based on assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'HighlyQualifiedTeacherIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which a person was hired for a position, or consecutive positions within the same organization and job classification.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'HireDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the person traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central and South America, and other Spanish cultures, regardless of race.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'HispanicLatinoEthnicity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary nighttime residence of the person at the time the person was identified as homeless.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RefHomelessNighttimeResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Children and youth who lack a fixed, regular, and adequate nighttime residence. Homeless children and youth include: 1) children and youth who are sharing the housing of other persons due to loss of housing, economic hardship, or a similar reason; are living in motels, hotels, trailer parks, or camping grounds due to the lack of alternative adequate accommodations; are living in emergency or transitional shelters; are abandoned in hospitals; or are awaiting foster care placement; 2) children and youth who have a primary nighttime residence that is a public or private place not designed for or originally used as a regular sleeping accommodation for human beings; or 3) children and youths who are living in cars, parks, public spaces, abandoned buildings, substandard housing, bus or train stations, or similar settings. 4) migratory children who qualify as homeless because the children are living in circumstances described in the above. (See Section 103 of the McKinney Act for a more detailed description of this data element).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'HomelessnessStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the type of academic distinctions earned by or awarded to the person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'HonorDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of increased learning time provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of increased learning time provided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The first registration term of a person enrolling in credit-granting courses at a postsecondary institution after completing high school (or its equivalent). ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InitialEnrollmentTerm' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of communication number listed for an organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefInstitutionTelephoneTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credit hours and/or contact hours attempted by a person during a term.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of measure of student instructional activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefInstructionalActivityHoursId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the extent to which the district has effectively and fully integrated technology, as defined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefIntegratedTechnologyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day of the last qualifying move of a migrant student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'LastQualifyingMoveDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full legal last name borne in common by members of a family.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the improvement stage for AYP of the local education agency (LEA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The three-digit unique identifier assigned to the supervisory union by the state. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'SupervisoryUnionIdentificationNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of whether a postsecondary institution''s highest level of offering is a program of 4-years or higher (4 year), 2-but-less-than 4-years (2 year), or less than 2-years.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A classification of whether a postsecondary institution''s highest level of offering is a program of 4-years or higher (4 year), 2-but-less-than 4-years (2 year), or less than 2-years.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A school that has been designed: 1) to attract students of different racial/ethnic backgrounds for the purpose of reducing, preventing, or eliminating racial isolation; and/or 2)to provide an academic or social focus on a particular theme (e.g., science/math, performing arts, gifted/talented, career academy or foreign language).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefMagnetSpecialProgramId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name or description of the marking period (e.g., fall, first marking period).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MarkingPeriodName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicator of student performance at the mid-point of the marking period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MidTermMark' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A full legal middle name given to a person at birth, baptism, or through legal change.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of services received by participating migrant students in the migrant education program (MEP).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time of year that a Migrant Education Program operates.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of employment, official status, or rank of staff working in the Migrant Education Program (MEP).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefMepStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the county, parish, borough, or comparable unit (within a state) in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'CountyName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the county, parish, borough, or comparable unit (within a state) in which an address is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'AddressCountyName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full legally accepted name of the institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'NameOfInstitution' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RefNeglectedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of a non-US citizen''s Visa type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefVisaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of time necessary for a person to complete all requirements for a degree or certificate according to the institution''s catalog. This is typically 4 years (8 semesters or trimesters, or 12 quarters, excluding summer terms) for a bachelor''s degree in a standard term-based institution; 2 years (4 semesters or trimesters, or 6 quarters, excluding summer terms) for an associate''s degree in a standard term-based institution; and the various scheduled times for certificate programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'NormalLengthTimeForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of measurement for length of time for completion.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefTimeForCompletionUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits that a student can earn for enrolling in and completing a given course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits that a student can earn for enrolling in and completing a given course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits that a student can earn for enrolling in and completing a given course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits an individual earns by the successful completion of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits an individual earns by the successful completion of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits an individual earns by the successful completion of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days a person is absent when school is in session during a given reporting period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysAbsent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days a person is present when school is in session during a given reporting period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days a person is present when school is in session during a given reporting period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'All other benefits paid by the school district, municipal, state, federal, and other government agencies for the teacher or early learning provider, prorated to the specific school or local provider agency indicated on the record, not including retirement and health insurance benefits or contributions made by the teacher or early learning provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationOtherBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Previous, alternate or other names or aliases associated with the person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'OtherName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether paraprofessionals are classified as qualified for their assignment according to state definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefParaprofessionalQualificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the 95 percent participation requirement in the mathematics assessment in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the 95 percent participation requirement on the reading/language arts assessment in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefParticipationStatusRlaId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school is identified as persistently dangerous in accordance with state definition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'PersistentlyDangerousStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An appellation, if any, used to denote rank, placement, or status (e.g., Mr., Ms., Reverend, Sister, Dr., Colonel).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Prefix' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The descriptive name of a person''s position.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'PositionTitle' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A number that identifies each postal delivery area in the United States used as a portion of an address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A number that identifies each postal delivery area in the United States used as a portion of an address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'PostalCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The groups of students for whom pre-kindergarten programs are available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RefPrekindergartenEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ages of children not served under IDEA to whom the LEA''s pre-kindergarten services are available. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RefPreKEligibleAgesNonIDEAId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The major or overriding disability condition that best describes a person''s impairment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'PrimaryDisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the telephone number should be used as the principal number for a person or organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the telephone number should be used as the principal number for a person or organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'PrimaryTelephoneNumberIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A general job classification that describes staff that performs duties requiring a high degree of knowledge and skills generally acquired through at least a baccalaureate degree (or its equivalent obtained through special study and/or experience) including skills in the field of education, educational psychology, educational social work, or an education therapy field.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A general job classification that describes staff that performs duties requiring a high degree of knowledge and skills generally acquired through at least a baccalaureate degree (or its equivalent obtained through special study and/or experience) including skills in the field of education, educational psychology, educational social work, or an education therapy field.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefProfessionalEducationJobClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the math proficiency target in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusMathId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The documented or assumed reason a student is no longer being served by a special program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The normal length in credit/contact hours of a person''s program as published in the institution''s catalogue, website, or other official documents.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'ProgramLengthHours' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of hours (credit or contact) by which the normal length of a program of study is measured.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefProgramLengthHoursTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The system outlining instructional or non-instructional activities and procedures designed to accomplish a predetermined educational objective or set of objectives or to provide support services to a person and/or the community.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'RefProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year and month the student is projected to graduate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ProjectedGraduationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the LEA was able to implement the provisions for public school choice under Title I, Part A, Section 1116 of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefPublicSchoolChoiceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason a student is not tested.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentReasonNotTestedId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The nature of recognition given to the student for accomplishments in a co-curricular, or extra-curricular activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RefActivityRecognitionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the school was restructured, transformed or otherwise changed as a consequence of the state’s accountability system under ESEA or as a result of School Improvement Grants (SIG).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefReconstitutedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the competency definition(s) addressed in the Course Section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RelatedCompetencyDefinitions' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefRestructuringActionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Contributions made by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider’s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationRetirementBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicator to determine whether the teacher''s base salary includes pay for teaching assignments alone.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'SalaryForTeachingAssignmentOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school received funds under Section 1003 of ESEA, as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementFundsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of intervention used by the school under the School Improvement Grant (SIG).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSigInterventionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the improvement stage of the school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RefSchoolImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the level of the education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the level of the education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of education institution as classified by its primary focus. ', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefSchoolTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year for a reported school session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'CalendarYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of minutes that all students were required to be at school and any additional learning time (e.g., before or after school, weekend school, summer school) for which all students had the opportunity to participate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'InstructionalMinutes' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a staff member''s salary is paid by the Title I, Part C Migrant Education Program (MEP) of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'MepPersonnelIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason why the student was disciplined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the person has achieved acceptable performance on a standards-based profile of technology user skills as defined by the state.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'TechnologySkillsStandardsMet' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unique five-digit number assigned to each federal program as listed in the Assistance Listings. See https://sam.gov/content/assistance-listings', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a staff member is targeted assistance (TAS) program staff funded by Title I, Part A, Section 1115 of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a staff member is targeted assistance (TAS) program staff funded by Title I, Part A, Section 1115 of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'TitleITargetedAssistanceStaffFunded' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school or district met the reading/language arts proficiency target in accordance with state definition for the purposes of determining AYP.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefProficiencyTargetStatusRLAId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method used to discipline students who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineMethodFirearmsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The methods used to discipline students who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefIDEADisciplineMethodFirearmId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of firearm.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefFirearmTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program in which children ages 3 through 5 attend and in which these children receive special education and related services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefIDEAEnvironmentELId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The program in which children ages 3 through 5 attend and in which these children receive special education and related services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'RefIDEAEducationalEnvironmentECId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of progress shown in academic subjects.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The amount of progress shown in academic subjects.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefProgressLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that a migratory child 1) is failing to meet, or most at risk of failing to meet, the state''s challenging academic content standards and student academic achievement standards; and 2) has experienced interruptions in their education during the regular school year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'PrioritizedForServices' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that migrant children are receiving instructional or support services under the continuation of services authority ESEA Title III Section 1304(e)(2)-(3).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'ContinuationOfServicesStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The age range of special education students taught.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The age range of special education students taught.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationAgeGroupTaughtId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the technology literacy of 8th graders.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefTechnologyLiteracyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The dollar amount spent on supplemental educational services during the school year under Title I, Part A, Section 1116 of ESEA as amended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The dollar amount spent on transportation for public school choice during the school year under Title I of ESEA as amended, Part A, Section 1116.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'PublicSchoolChoiceFundsSpent' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether students took both a pre-test and a post-test to measure academic improvement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether students took both a pre-test and a post-test to measure academic improvement.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefPreAndPostTestIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The results of a pre-test in academic subjects.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentPretestOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a student''s scores were proficient.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefProficiencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The dollar amount of the 20 percent reservation for supplemental educational services and choice-related transportation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'SesSchoolChoice20PercentObligation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person is classified as disabled under the American''s with Disability Act (ADA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'DisabilityStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether children (students) were provided educational services when removed from the regular school program for disciplinary reasons.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'EducationalServicesAfterRemoval' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A student who, at some time during the school year, is either a pregnant female student who is unmarried; or a male or female student who is unmarried or legally separated from a spouse and has a minor child or children.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'SingleParentOrSinglePregnantWoman' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year the cohort is expected to graduate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year the cohort is expected to graduate.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'CohortGraduationYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation of a school’s poverty quartile for purposes of determining classes taught by highly qualified teachers in high and low poverty schools, according to state’s indicator of poverty.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation of a school’s poverty quartile for purposes of determining classes taught by highly qualified teachers in high and low poverty schools, according to state’s indicator of poverty.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefStatePovertyDesignationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The action taken with respect to postsecondary enrollment by the student who graduated from the school, LEA or state in the past two years.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentActionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of internet access available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of internet access available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefInternetAccessId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether CTE participants were members of an underrepresented gender group (where one gender comprises less than 25 percent of the persons employed in those occupations or field of work).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'RefNonTraditionalGenderStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The levels used in district evaluation systems for assigning teacher or principal performance ratings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RefStaffPerformanceLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication a student has met the state-defined threshold of Career and Technical Education participation as defined in the State''s approved Perkins IV State Plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteParticipant' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the CTE student has completed a CTE program in a nontraditional field (where one gender comprises less than 25 percent of the persons employed in those occupations or fields of work).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteNonTraditionalCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of services/instruction the school is responsible for providing to the student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefK12ResponsibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefAdditionalCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The description of the place where an assessment is administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'LocationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The description of the place where an assessment is administered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'Location' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An alternate name used for the school day, typically used for the bell schedule (e.g., Blue day, Red day).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'AlternateDayName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N' The category that describes how the student spends his or her time not physically present on school grounds and not participating in instruction or instruction-related activities at an approved off-grounds location.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAbsentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The category that describes how the student spends his or her time when attending an instructional program approved by the state and/or school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefPresentAttendanceCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of attendance event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of the building on the site, if more than one building shares the same address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of the building on the site, if more than one building shares the same address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'BuildingSiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of scheduled or unscheduled calendar event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RefCalendarEventType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication as to whether an assessment conforms to a standard.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefContentStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The north or south angular distance from the equator that, when combined with longitude, reflects an estimation of where the address is physically situated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The north or south angular distance from the equator that, when combined with longitude, reflects an estimation of where the address is physically situated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Latitude' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The east or west angular distance from the prime meridian that, when combined with latitude, reflects an estimation of where the address is physically situated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The east or west angular distance from the prime meridian that, when combined with latitude, reflects an estimation of where the address is physically situated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'Longitude' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplineLengthDifferenceReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A student who was enrolled, or eligible for enrollment, but has enrolled in another place because of a crisis.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A student who was enrolled, or eligible for enrollment, but has enrolled in another place because of a crisis.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DisplacedStudentStatus' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code used to identify a crisis. This code should be able to accommodate numerous crises within a single school year. It is associated with the displaced student identifier in order to link a crisis to a student who was displaced or otherwise affected by the event. If the same code values are to be used over multiple years, it is important to have enough crisis-specific items (e.g., school year, date/time) to keep the events unique over time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name of the crisis that caused the displacement of students.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type or category of crisis (ex., chemical, earthquake, flood, wildfire, etc.).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'Type' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day on which the crisis affected the agency. This date may not be the same as the date the crisis occurred if evacuation orders are implemented in anticipation of a crisis.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The scale of equivalents, if applicable, for grades awarded as indicators of performance in schoolwork. For example, numerical equivalents for letter grades used in determining a student''s Grade Point Average (A=4, B=3, C=2, D=1 in a four-point system) or letter equivalents for percentage grades (90-100%=A, 80-90%=B, etc.)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The scale of equivalents, if applicable, for grades awarded as indicators of performance in schoolwork. For example, numerical equivalents for letter grades used in determining a student''s Grade Point Average (A=4, B=3, C=2, D=1 in a four-point system) or letter equivalents for percentage grades (90-100%=A, 80-90%=B, etc.)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeValueQualifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies where the incident occurred and whether or not it occurred on campus.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The evidence by which a persons name, address, date of birth, etc. is confirmed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The evidence by which a persons name, address, date of birth, etc. is confirmed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The evidence by which a persons name, address, date of birth, etc. is confirmed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary reason for the termination of the employment relationship.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A designation of the type of separation occurring between a person and the organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentSeparationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of position the staff member holds in the specific course section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of position the staff member holds in the specific course section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefClassroomPositionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of the leave event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefLeaveEventTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Supplemental information about an incident when the primary offense is more serious in nature than alcohol or drug, etc. offenses.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentBehaviorSecondaryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The identifier that uniquely identifies an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The full, legally accepted name of the institution at the site level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The youngest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The youngest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'YoungestAgeServed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of previous, alternate or other names for a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RefOtherNameTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date of the time period designated for the assessment administration.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start time of the time period designated for the assessment administration.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The finish date of the time period designated for the assessment administration.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The finish time of the time period designated for the assessment administration.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of a security issue, if any, discovered for an administration of an assessment, such as suspected cheating by a student or a teacher changing answers after a student takes the test.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The description of security issue, if any, related to a learner''s response to an assessment item.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The most recent date that the result was calculated/updated. The value should be the same as Assessment Result Date Created if the subtest has only been scored once, but may be different if the score was recalculated with a different result.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateUpdated' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the assessment result was generated.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status related to a student enrollment in an instance of a course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEnrollmentStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name given to an assessment event.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position of the assessment section presented in the sequence of sections within an assessment form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The position of the assessment section presented in the sequence of sections within an assessment form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The globally unique identifier of an Assessment Form Section using a RFC 4122 compliant hexadecimal string.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The globally unique identifier of an Assessment using a RFC 4122 compliant hexadecimal string.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The agency that accredited a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefAccreditationAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the facility license.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefELFacilityLicensingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The hour, minute and second on which a session begins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionStartTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The hour, minute and second on which a session ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionEndTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The quarterly amount paid to individuals found employed during the reference period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'Earnings' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The state or other location in which an individual is found employed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmploymentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of jobs held by a person during the reference period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'EmployedInMultipleJobsCount' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day of the first day of the employment record reference period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month, and day of the last day of the employment record reference period.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Administrative data source of information used to collect employment and earnings-related data.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefERAdministrativeDataSourceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of workforce and employment development program that an individual is participating in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefWfProgramParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The purpose of the work in the context of education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceEducationalUseId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The details about the device or platform by with which the assessment was delivered to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'DeliveryDeviceDetails' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines whether or not the individual needs the kind of support defined by the entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines whether or not the individual needs the kind of support defined by the entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines whether or not the individual needs the kind of support defined by the entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'AssignedSupport' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines whether or not the individual needs the kind of support defined by the entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssignedSupportFlag' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Determines if the alternative accessible content is rendered as the default content for the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Determines if the alternative accessible content is rendered as the default content for the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Determines if the alternative accessible content is rendered as the default content for the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Determines if the alternative accessible content is rendered as the default content for the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the provider or publisher of the assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Provider' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'If this score is preliminary, then this attribute value should be set. Preliminary scores may be provided for early use by the assessment program or user while final scoring is occurring.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'PreliminaryIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the source of the Diagnostic Statement based on a scored/evaluated portion of an assessment.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatementSource' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of responses that are included with the Student Score Set. Responses are those items that were attempted (partially or fully answered) by the student and not necessarily the number of items in the assessment (which can be determined from the assessment object).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'NumberOfResponses' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A weighting factor for how the item score is used to compute a sub-test score when the item is correct or partially correct. Item weight of 1 indicates the full item score is used. A weight of .5 would indicate the item only contributes one half of the item score to the subtest. A weight of 0 indicates the item does not affect the sub test score.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightCorrect' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A weighting factor for how the item score is used to compute a sub-test score when the item is attempted and incorrect. Item weight should be a negative value if the item subtracts from the score if missed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightIncorrect' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A weighting factor for how the item score is used to compute a sub-test score when the item has not been attempted by the student. Item weight should be a negative value if the item subtracts from the score if not attempted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightNotAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of identifier that is provided for a Subtest.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentSubtestIdentifierTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of days of instruction the student has taken prior to testing.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'DaysOfInstructionPriorToAssessment' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates if this registration is for a retest (retake). Retest can occur if a student failed a prior attempt and is eligible to retake. Other retest scenarios also can occur.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RetestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date/time assignment is made.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of session that is scheduled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date and time the assessment is scheduled to begin.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date and time the assessment is scheduled to end.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date and time the assessment actually began.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date and time the assessment actually began.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date and time the assessment actually ended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Date and time the assessment actually ended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile a preference for the language of the user interface.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedsProfileContentLanguageLearnerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile a characteristic of a digital resource that may be specified as being dangerous to a user.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the electronic tool associated with a resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSupportToolId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the rating for the collection of Access for All (AfA) needs and preferences.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the rating for the collection of Access for All (AfA) needs and preferences.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the characteristics of presentation for a hyperlink when using a screen reader.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedLinkIndicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the rate of speech of a speech synthesizer.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'SpeechRate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the volume of a speech synthesizer.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Volume' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the Access for All (AfA) preference to invert the foreground and background Colors.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'InvertColorChoice' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the preferred magnification of the screen as a factor of a screen’s original size.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'Magnification' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the grade of Braille to use when using a Braille display.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleGradeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the number of dots in a Braille cell.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedNumberOfBrailleDotsId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the number of active Braille cells in a Braille display.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'NumberOfBrailleCells' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile what textual properties to mark when using a Braille display.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleMarkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the resistance pressure of Braille display pins.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'BrailleDotPressure' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the preferred presence or location of a Braille display status cell.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleStatusCellTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the default language for the displayed translation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ItemTranslationDisplayLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the default language for the keyword translation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'KeywordTranslationLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the default language for the keyword translation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefKeywordTranslationsLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the type of signing preferred by the user.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSigningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the default presentation mode of the associated Alternative Representations accessibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedAlternativeRepresentationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the preferred spoken audio form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSpokenSourcePreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Used as part of an Assessment Personal Needs Profile to define if the spoken play-back should commence from the start of a recording or not.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ReadAtStartPreferenceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Used as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUserSpokenPreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile whether or not the verbal alternative content presentation should be applied to directive content only.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'AssessmentNeedDirectionsOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A fund is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The name given to the financial account in an organization''s accounting system.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A program is a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives. The program classification provides the organization with a framework to classify instructional and other expenditures by program to determine cost.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The actual value of a financial account for the specified accounting period or fiscal year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'ActualValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The budgeted value of a financial account for the specified accounting period or fiscal year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'BudgetedValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The income level of an individual that is used by an institution''s financial aid office to determine an individual''s Expected Family Contribution (EFC). For dependent students this will include the parents'' adjusted gross income and the student''s adjusted gross income. For independent students this will include the student''s adjusted gross income.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidIncomeLevel' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Balance sheet accounts and statement of net position accounts are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The function describes the activity for which a service or material object is acquired. The functions of an organization are classified into five broad areas: instruction, support services, operation of non-instructional services, facilities acquisition and construction, and debt service. Functions are further classified into sub functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This classification is used to describe the service or commodity obtained as the result of a specific expenditure. Nine major object categories have codes ending in 00 and are further subdivided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The frequency at which a service is planned to occur or has occurred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefFrequencyOfServiceId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The individual''s status in completing exams required for graduate or doctoral degree programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefGraduateOrDoctoralExamResultsStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The screening equipment used for the hearing screening or the method used for the vision screening', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningEquipmentUsed' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Recommendations for follow-up after a health screening.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningFollowUpRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The determination of whether a child is potentially eligible for Part B 619 services', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'PartB619PotentialEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether parents of a child potentially eligible for Part B preschool services have opted out of the impending notification to the local education agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date that parents of a child potentially eligible for Part B preschool services opt out of the impending notification to the local education agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date of the transition conference from IDEA Part C to Part B 619 or another early learning program or service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the parents declined approval for the transition conference from IDEA Part C to Part B 619 or another early learning program or service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDeclineDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date transition steps and services were added to the individualized service plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'DateOfTransitionPlan' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the offense was primary or secondary in nature when a single incident included more than one type of offense.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentMultipleOffenseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the occurrence of physical injury to the perpetrator(s) (participants) involved in the incident and‚ if so‚ the level of injury sustained.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentPerpetratorInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role or type of participation of a person in a discipline incident.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RefIncidentPersonRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the rule‚ regulation‚ or standard that was violated when an incident occurred (e.g.‚ the identification of a relevant law‚ conduct standard‚ or acceptable use policy).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RegulationViolatedDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication whether a student’s behavior (offense) was a manifestation of‚ or related to‚ a disability condition.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RelatedToDisabilityManifestationInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the school resource officer or any other law enforcement official was notified about the incident‚ regardless of whether official action is taken.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'ReportedToLawEnforcementInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the service is planned to begin.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramPlannedServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a person provides services at more than one site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantProvider' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that this course has an end of course examination required by the SEA or LEA.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefK12EndOfCourseRequirementId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The language in which the professional development session is delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the learning resource is compatible with the referenced accessibility application programming interface (API).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessAPITypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A characteristic of the described learning resource that is physiologically dangerous to some users.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An access mode through which the intellectual content of a described learning resource or adaptation is communicated; if adaptations for the resource are known, the access modes of those adaptations are not included.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessModeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The Uniform Resource Locator of a learning resource that is an adaptation for this resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'AdaptationURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the learning resource is compatible with assistive technologies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AssistiveTechnologiesCompatibleInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Specifies the format for a learning resource that is a book. Other options may be considered for inclusion in the option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceBookFormatTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies a single input method that is sufficient to control the described learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceControlFlexibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The media or file subtype of the digital resource being based on the Media Types and Subtypes, formerly known as MIME types, defined by the Internet Assigned Numbers Authority (IANA).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaSubTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The media or file type of the digital resource being based on the media types defined by the Internet Assigned Numbers Authority (AINA) at http://www.iana.org/assignments/media-types.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'URL identifier of a learning resource for which this resource is an adaptation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AdaptedFromURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Accessible content features included with the learning resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RefLearningResourceMediaFeatureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sample size of a peer rating value. Only used when the Peer Rating Value is collected in aggregate as an average of multiple atomic/individual ratings.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PeerRatingSampleSize' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of physical media on which the Learning Resource is delivered or available.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RefLearningResourcePhysicalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Any citation appropriate to evidence the connection between nodes', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'ConnectionCitation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Name of the destination node when the Competency Association is used as a connector in a learning map.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'URI of the destination node when the Competency Association is used as a connector in a learning map.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Name of the origin node when the Competency Association is used as a connector in a learning map.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'URI of the origin node when the Competency Association is used as a connector in a learning map.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates the relative significance this connection has for the destination node in a learning map.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'When the Competency Definition is used as a node in a learning map, this element supports alternative pathways based on a learner''s accessibility profile. The type selected indicates which accessibility profile the node is designed to address.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefNodeAccessibilityProfileId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The short name or label for the competency definition or its node in a competency framework.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates if the competency described in the Competency Definition Statement can be tested using one or more assessment items.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefTestabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a member of the uniformed armed forces of the United States as reported through FEDES after exiting secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'MilitaryEnlistmentAfterExit' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the course is approved for determining NCAA eligibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'NCAAEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A taxonomy system for coding postsecondary courses in NCES research studies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefNCESCollegeCourseMapCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of dependents who live with the student and receive more than half their support from them.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'NumberOfDependents' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the individual''s completion of an oral defense. The requirement to conduct an oral defense by doctoral individuals may vary across institutions, programs, or fields of study.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseCompletedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date on which the individual gave an oral defense.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date in which accreditation process was started (but not officially approved or denied)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'SeekingAccreditationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The course identifier as it was listed when the credit was earned (e.g. before a system conversion) to show consistency between present transcripts and older ones.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OriginalCourseIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Race other than American Indian, Black, Asian, White, Native Pacific Islander', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'OtherRaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the way an academic course was identified at an educational institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OverrideSchoolCourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The numeric order in the preferred sequence and priority for contacting a person related to the learner.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactPriorityNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Restrictions for student and/or teacher contact with the individual (e.g., the student may not be picked up by the individual)', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactRestrictions' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether or not the learner lives with the related person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'LivesWithIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The initial enrollment of an individual in credit bearing courses or developmental/remedial courses at an institution after completing high school or a high school equivalency program (e.g. GED, Adult High School Diploma).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'PostsecondaryEnteringStudentInd' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The term and year of the initial enrollment of an individual in credit bearing courses or developmental/remedial courses at an institution after completing high school or a high school equivalency program (e.g., GED, Adult High School Diploma).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'EnteringTerm' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that a person is a primary contact within the specified context, such as a primary parental contact specified in Person Relationship to Learner or a primary administrative contact for an organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'PrimaryContactIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number issued by the credentialing/licensing agency.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'ProfessionalCertificateOrLicenseNumber' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of audience for the professional development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDAudienceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method by which a session is delivered', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDDeliveryMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code given to an activity by an approval organization to designate it as an approved activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ApprovalCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The purposes for which an activity is approved.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityApprovedPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code assigned to an professional development activity by the organization offering the activity that is unique to the non-variable activity details.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The cost for an attendee to participate in a professional development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Cost' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credit awarded.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of credits a professional development activity provides.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Credits' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the content covered in the professional development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of the level of a professional development activity on the beginner to advanced continuum.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The expected outcomes of a participant in an activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The indication of the type of professional development activity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary source of funding for a professional development session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'FundingSource' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indicator of whether the professional development activity should be published.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'PublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of participants that can be accommodated by a professional development session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'Capacity' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year, month and day a professional development session ends.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'How the child''s disability affects the child''s functional performance.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'FunctionalDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'How the child''s disability affects the child''s involvement and progress in the general education curriculum.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'GeneralEducationDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'For preschool children, as appropriate, how the disability affects the child''s participation in appropriate activities.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'PreschoolDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Explanation of perceived strengths and abilities of the student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentStrengthsDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Parent’s explanation of their interest in or concerns about the student’s participation in special education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'ParentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student’s explanation of his or her interest in or concerns about participation in special education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'StudentConcernDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date recommended services were declined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'DeclinedServicesDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The unit of time by which a cycle is defined.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RefFrequencyUnitId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of recurrences within a cycle.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'InstancesPerCycle' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of units within a repeating cycle. Used with Frequency and Frequency Units elements to describe the occurrence of repeating events such as student services delivered 3 times a week for 16 weeks.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'FrequencyLength' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of minutes in an instance.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'DurationInMinutes' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Determination if this service continues outside school year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ExtendsOutsideSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of the setting in which the services are delivered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'SettingDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of Individualized Education Plan document authorized.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RefIEPAuthorizationDocumentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of person who authorized the decision or document.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RefAuthorizerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates authorizer agreement to a document or plan, such as plan for delivery of student services, program, or improvement plan.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AcceptanceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Authorizer''s explanation regarding the authorization decision.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'DecisionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Portion the authorizer does not want executed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Authorizer''s explanation for rejected portions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'PortionExplanation' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the authorization occurred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'AuthorizationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indication parent agreed to evaluate student.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the consent to evaluation occurred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ConsentToEvaluateDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Purpose within the IEP lifecycle for which the eligibility evaluation is conducted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RefIEPEligibilityEvaluationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Category of evaluation used for IDEA eligibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RefIDEAEligibilityEvaluationCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of evaluation procedure and result used for determining eligibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date when the evaluation to determine eligibility was conducted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'EvaluationDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Explanation of parent''s observations of student’s characteristics and history used for determining eligibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'ParentObservations' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A category of disability that describes a person’s impairment defined by the Individuals with Disabilities Education Act.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefIDEADisabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of a credential that reduced the time or cost of attaining this credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A URL that resolves to information about a credential that reduced the time or cost of attaining this credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'AdvancedStandingURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An alias for the credential, which may include acronyms, alpha-numeric notations, and other forms of name abbreviations in common use such as PhD, MA, and BA.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'AlternateName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Pronouncement of a favorable judgment by the agent being referenced.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'ApproverName' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The method used to conduct the assessment being referenced.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RefCredentialDefAssessMethodTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used for identification and record-keeping purposes by a credentialing organization to refer to a qualification, achievement, personal or organizational quality, or aspect of an identity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RefCredentialIdentifierSystemId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of the credential offered by a credentialing organization.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The estimated amount of time in minutes it will take to earn the credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'EstimatedDuration' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The North American Industry Classification System (NAICS) class identifier for an industry associated with the credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialNAICSIndustryType' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The geo-political region in which the credential is applicable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegion' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A geo-political region in which the credential does not apply.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'JurisdictionRegionException' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Keywords or key phrases describing aspects of a credential considered useful for its discovery.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Keywords' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The maximum amount of time in minutes it will take to earn the described credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MaximumDuration' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum allowed age in years at which a person is eligible for the credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumAge' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The minimum amount of time in minutes it will take to earn the described credential.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'MinimumDuration' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The intended type of application of the credential by the holder.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefIntendedPurposeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The geo-political area of the organization''s facility, building, or site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RegionGeoJSON' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates whether the credential has been revoked by the credential provider.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RevokedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Description of the methods used to evaluate the validity and reliability of a credential earned by a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ValidationMethodDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A resource describing the means by which someone can verify whether a credential has been attained by a person.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCredentialDefVerificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An alphanumeric identifier of a version of the credential being described that is unique within the organizational context.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Version' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credentialing organization or entity as defined by the Credential Transparency Description Language.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgent', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of credentialing organization or entity as defined by the Credential Transparency Description Language.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'RefCTDLOrganizationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The O*NET-SOC taxonomy defines the set of occupations across the world of work based on the Standard Occupational Classification.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefONETSOCOccupationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The class of statement in the structure of statements in the Competency Framework according to a controlled vocabulary, specified as a URI referencing a controlled vocabulary.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TypeURL' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a student was in membership in the state education unit for a full academic year, according to the state’s definition of Full Academic Year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'StateFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a student was in membership in the LEA education unit for a full academic year, according to the state’s definition of Full Academic Year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'LEAFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a student was in membership in the school education unit for a full academic year, according to the state’s definition of Full Academic Year.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'SchoolFullAcademicYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sum of the areas at each floor level included within the principal outside faces of exterior walls, including roofed areas with finished floors that may not have exterior walls, but are connected to the main building. This sum should include all stories or areas having floor surfaces with clear standing head room (6.5 feet or 1.98 meters) but omit architectural setbacks or projections.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingArea' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Student has an existing IDEA disability with cognitive impairments which may prevent him/her from attaining grade-level achievement standards.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'SignificantCognitiveDisabilityIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the extent to which a school offers instruction in which students and teachers are separated by time and/or location, and interaction occurs via computers and/or telecommunications technologies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the extent to which a school offers instruction in which students and teachers are separated by time and/or location, and interaction occurs via computers and/or telecommunications technologies.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefVirtualSchoolStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of participation by a school in the National School Lunch Program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The classification of participation by a school in the National School Lunch Program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefNationalSchoolLunchProgramStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The date the property/facility was acquired.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityAcquisitionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year the construction on the addition was completed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityAdditionYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the building is built for permanent use in the same location or is relocatable.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityBuildingPermanency' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year the building was first constructed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionYear' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether or not a building is eligible to be or has been declared a landmark or historic building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingHistoricStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The total number of acres in a continuous piece of land, to the nearest tenth, including undeveloped areas as well as areas occupied by buildings, walks, drives, parking facilities, and other improvements.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteArea' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The informal description of location sometimes used in rural areas, for example, "from the highway to the railroad tracks."', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityBlockNumberArea' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description of the permanent structure added to the original building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A unique number or alphanumeric code assigned to a building addition by a school, school system, state, or other agency or entity.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingAdditionCode' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary use type of the building in which a school is located.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefBuildingPrimaryUseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The generalized use or control of a campus, independent of program type.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The census tract number of the school site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'FacilityCensusTract' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The month, day, and year on which construction of a building, addition, or improvement was completed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'FacilityConstructionDate' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Designation of the nature of the construction completion date.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionDateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary material used for the construction of a building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionMaterialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time, in years, of the expected useful life of a facility for the purposes of depreciation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityExpectedLife' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The estimated cost of replacing a facility using current per square foot estimates of total project costs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'FacilityReplacementValue' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The number of stories in a building, excluding the basement if its ceiling is less than three feet above ground level.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfStories' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The lot and square number, or equivalent unique municipal number identification, of a parcel of land.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of location of the designed and constructed improvements made to a site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteImprovementLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The year a building was constructed, as indicated by cornerstone or official government records.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearBuilt' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The most recent year that a comprehensive upgrade of ALL major building systems and components was completed, such that it functions as a modern building, as measured by a facility condition index not greater than 15%.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearOfLastModernization' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary means by which air is circulated, freshened, and exhausted.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingAirDistributionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of system, interface, and management components for carrying voice, video, and data throughout a building.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCommMgmtComponentSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the school, building, site, system, component, equipment, vehicle, or fixture conforms to the requirements or standards specified in federal, state, or local standards or codes or other officially required guidelines or regulations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The rating of the system or component functions under the demands of its regular operation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilitySystemOrComponentConditionId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of mechanical systems and building designs used for cooling.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCoolingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The components and system required to distribute electricity throughout the building or site.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingElectricalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The particular federal law, regulation, or standard that pertains to a school facility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityApplicableFederalMandateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12FederalFundAllocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolIndicatorStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaAlternateFundUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The start date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationIndicator', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleApplication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPolicy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PDActivityEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PeerRatingSystem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Person_AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAllergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMaster', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSessionInstructor', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The end date and, optionally, time that a record is active as used to support version control.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The starting hour, minute and second.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The starting hour, minute and second.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ending hour, minute and second.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The ending hour, minute and second.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The time a person is enrolled, employed, involved, or participates in the organization, divided by the time the organization defines as full-time for that role.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPersonRoleFTE', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The documented or assumed reason a person is being served by a program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProgramEntryReasonId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefComprehensiveSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The designation given to a school by the state for additional targeted support and improvement as part of its statewide system of annual meaningful differentiation.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAdditionalTargetedSupportAndImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific grade or combination of grades approved by an organization to be offered by an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The specific grade or combination of grades approved by an organization to be offered by an education institution.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a telephone number is listed under a directory assistance service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether a telephone number is listed under a directory assistance service.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000958', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000959', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000961', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000962', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000963', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000964', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000965', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000968', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000969', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000970', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateUpdated' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000971', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000976', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEnrollmentStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000977', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000980', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000981', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000982', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefAccreditationAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000984', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefELFacilityLicensingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000985', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionStartTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000986', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionEndTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000987', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000987', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000987', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000987', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000989', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'Earnings' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmploymentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000991', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'EmployedInMultipleJobsCount' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000992', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000993', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000994', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefERAdministrativeDataSourceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000997', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefWfProgramParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001002', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceEducationalUseId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001003', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'DeliveryDeviceDetails' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'AssignedSupport' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssignedSupportFlag' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'ActivateByDefault' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001006', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Provider' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001007', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'PreliminaryIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001008', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DiagnosticStatementSource' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001009', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'NumberOfResponses' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001010', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightCorrect' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightIncorrect' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001013', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'ItemWeightNotAttempted' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001014', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentSubtestIdentifierTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001015', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'DaysOfInstructionPriorToAssessment' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001016', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RetestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001017', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001018', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RefAssessmentSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001019', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001020', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ScheduledEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001022', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001022', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'ActualEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001023', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedsProfileContentLanguageLearnerTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001024', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSupportToolId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUsageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedLinkIndicationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001028', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'SpeechRate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001029', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Volume' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'InvertColorChoice' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001031', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'Magnification' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001032', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleGradeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001033', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedNumberOfBrailleDotsId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001034', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'NumberOfBrailleCells' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleMarkTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001036', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'BrailleDotPressure' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001037', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedBrailleStatusCellTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001038', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ItemTranslationDisplayLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001039', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'KeywordTranslationLanguageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001039', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RefKeywordTranslationsLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001040', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSigningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedAlternativeRepresentationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001042', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedSpokenSourcePreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'ReadAtStartPreferenceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedUserSpokenPreferenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001045', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'AssessmentNeedDirectionsOnlyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001046', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedMaskingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001047', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementTextMessagingString' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementSoundFileUrl' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001049', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'AssessmentNeedTimeMultiplier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001050', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'LineReaderHighlightColor' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001051', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'OverlayColor' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001052', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'ForegroundColor' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001053', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'BackgroundColor' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001054', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RefAssessmentNeedIncreasedWhitespacingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001055', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'TestingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001056', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'ScorePublishDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001058', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001059', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CardiopulmonaryResuscitationCertification' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'FirstAidCertification' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001061', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001062', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCompletionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001063', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'EmploymentNaicsCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'EmploymentNAICSCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001066', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationLocation', @level2type=N'COLUMN', @level2name=N'RefOrganizationLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001067', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001077', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeInstructionalProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001079', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefGoalsForAttendingAdultEducationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'PostsecondaryTransitionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001083', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffEmploymentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001085', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefAeCertificationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001086', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalApprovedECCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'Pitch' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001088', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefNaepMathComplexityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RefAssessmentLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001091', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'PublishedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001092', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedbackSource' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001093', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'SpecialEventDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001524', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'PreviousVersionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001525', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CurrentVersionIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001526', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001526', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001527', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTimeInvolved' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001528', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RefActivityTimeMeasurementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001529', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'APIPInteractionSequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001530', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Activity', @level2type=N'COLUMN', @level2name=N'ActivityDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001531', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'AssessmentAdministrationPeriodDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001532', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAdaptiveIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001533', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001534', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormAlgorithmVersion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001535', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'AssessmentFormGUID' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001536', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'AssessmentFormSectionItemFieldTestIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001537', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'AssessmentItemResponseDescriptiveFeedbackDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001538', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RefAssessmentItemResponseScoreStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001539', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionDatabaseName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001540', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'AssessmentParticipantSessionGUID' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001541', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentRegistrationCompletionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001542', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssessmentRegistrationCompletionStatusDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001543', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultDataTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001544', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentRevisionDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001545', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultDescriptiveFeedbackDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001546', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'AssessmentResultScoreStandardError' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001547', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefAssessmentResultScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001548', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolOpenEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001549', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001549', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseDepartmentName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001550', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001552', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'CrisisEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001552', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001553', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodServicesOfferedId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001554', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'AccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001554', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialAccountNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001555', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001556', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'FinancialExpenditureProjectReportingCode' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001557', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionActorIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001558', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001559', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001560', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionObjectType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001561', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessRightsUrlId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001562', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAuthorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001563', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001564', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceDateModified' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001565', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractionModeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001566', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceAuthorEmail' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001567', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherEmail' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001568', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourcePublisherURL' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001569', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'CompetencyFrameworkPublicationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001570', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefSequence' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001573', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001573', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'StudentCourseSectionGradeNarrative' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001574', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001574', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Program', @level2type=N'COLUMN', @level2name=N'CreditsRequired' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001575', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001575', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'TuitionFunded' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001576', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryConnectedStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001577', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryActiveStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001578', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryVeteranStudentIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001579', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001580', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdmissionConsiderationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001581', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'StaffApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001582', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefBillableBasisTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001583', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationExitDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001584', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CareerPathwaysProgramParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001587', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'CredentialOrLicenseAwardEntity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001588', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationReferralStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001589', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDevelopmentalEducationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001590', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDirectoryInformationBlockStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001591', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ECEAPEligibility' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001592', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001593', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001594', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001595', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationDocumentType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001597', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001599', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELApplicationRequiredDocument' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001600', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'ELEnrollmentApplicationVerificationReasonType' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001602', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEducationStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001603', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELLocalRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001604', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'RefELServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001605', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELStateRevenueSourceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001606', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefELTrainerCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001607', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefEducationVerificationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001609', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001610', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RefFinancialAidVeteransBenefitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001611', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001612', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'IncludedInCountedFamilySize' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001613', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'IPEDSCollectionYearDesignator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001614', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001615', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'MemorandumOfUnderstandingStartDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001616', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefPSProgramLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001617', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPSExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001618', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'EligibilityPriorityPoints' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001619', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentActivityStateApprovedStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001620', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanApprovedBySupervisor' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001621', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCareerEducationPlan', @level2type=N'COLUMN', @level2name=N'ProfessionalDevelopmentPlanCompletion' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001622', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefReimbursementTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001623', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'RefScheduledWellChildScreeningId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001624', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001625', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'ServicePartnerName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001627', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildServicesApplication', @level2type=N'COLUMN', @level2name=N'SitePreferenceRank' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001628', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'TrainingAndTechnicalAssistanceLevel' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001629', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefTransferOutIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001630', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealthBirth', @level2type=N'COLUMN', @level2name=N'RefTrimesterWhenPrenatalCareBeganId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001631', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildHealth', @level2type=N'COLUMN', @level2name=N'WellChildScreeningReceivedDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001632', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELEmploymentSeparationReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001633', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefCommunityBasedTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001634', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001634', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001634', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'InclusiveSettingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001635', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildService', @level2type=N'COLUMN', @level2name=N'ServiceDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001636', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefELServiceProfessionalStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001639', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001640', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonMilitary', @level2type=N'COLUMN', @level2name=N'RefMilitaryBranchId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001641', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefDQPCategoriesOfLearningId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001642', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodBeginDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001643', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'FiscalPeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001644', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'EncumberedValue' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001645', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001646', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'ProgramNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001647', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001648', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001649', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'Date' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001650', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'K12CharterSchoolManagementOrganizationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELServicePartner', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinancial', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityRelationship', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurementCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalPerformance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IDEAEligibilityEvaluationCategory', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPAuthorizationRejected', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IEPPresentLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAccommodationSubject', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAmendment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramAssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramEligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeeting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramMeetingAttendee', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressGoal', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReport', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramProgressReportPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IPEDSFinance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolAuthorizerAgency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12CharterSchoolManagementOrganization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12FederalFundAllocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaPreKEligibleAgesIDEA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleISupportService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeLevelsApproved', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolIndicatorStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Sea', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaAlternateFundUse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity_LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePeerRating', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Location', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Organization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendar', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarCrisis', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarDay', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001917', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'RefTelephoneNumberListedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonTelephone', @level2type=N'COLUMN', @level2name=N'DoNotPublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001930', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001930', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'OutOfWorkforceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001931', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAwayFromSchoolId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001932', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceAccessId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001933', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonLearningDevice', @level2type=N'COLUMN', @level2name=N'RefPrimaryLearningDeviceProviderId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001934', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'InternetAccessInResidence' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001935', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefBarrierToInternetAccessInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001936', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetAccessTypeInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001937', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccess', @level2type=N'COLUMN', @level2name=N'RefInternetPerformanceInResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001938', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'CohortMedianEarnings' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001939', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAdultEducationProgramExitReasonId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001940', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RefWIOABarrierstoEmploymentId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001941', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOACareerServices' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001942', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'WIOATrainingServices' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001944', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDemographicRace', @level2type=N'COLUMN', @level2name=N'FederalRaceAndEthnicityDeclined' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001945', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonPersonalInformationVerification', @level2type=N'COLUMN', @level2name=N'RefPersonalInformationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001946', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RefRoleId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001947', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'FirstGenerationCollegeStudent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001948', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideEstimate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001949', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideStandardError' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001950', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideDateProcessed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001951', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageBeginYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001952', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddressNcesSide', @level2type=N'COLUMN', @level2name=N'NcesSideVintageEndYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001953', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'CredentialDefinitionTerminalDegreeIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001954', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSEnrollmentIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001955', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentEmployedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001956', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'AECredentialAttainmentPSCredentialIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001957', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysTardy' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001958', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RefStaffCompensationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001959', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationAnnualSupplement' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001960', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationLongevity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001961', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEDFactsTeacherInexperiencedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001962', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefOutOfFieldStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001963', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12OrganizationStudentResponsibility', @level2type=N'COLUMN', @level2name=N'RefStudentSchoolAffiliationStateDefinedStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001964', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemDataCollectionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001965', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'SourceSystemName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001966', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001967', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionDescription' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001968', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionOpenDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001969', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionCloseDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001970', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionAcademicSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001971', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'DataCollectionSchoolYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001972', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001972', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001973', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001973', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RecordStatusDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001974', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatus', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001974', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RecordStatusHistory', @level2type=N'COLUMN', @level2name=N'RefRecordStatusCreatorEntityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001975', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetUploadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001976', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetDownloadSpeed' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001977', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDigitalAccessSpeed', @level2type=N'COLUMN', @level2name=N'InternetSpeedTestDateTime' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001978', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAttainment', @level2type=N'COLUMN', @level2name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001981', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'EmancipatedMinor' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001982', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'NumberOfHouseholdCollegeStudents' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001983', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefNumberOfDependentsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001984', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'ChildrenOfFallenHeroesIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001985', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'PartName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001986', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001987', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001989', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentHomeLanguageSurvey', @level2type=N'COLUMN', @level2name=N'HomeLanguageSurveyAdministrationDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'DataCollection', @level2type=N'COLUMN', @level2name=N'RefDataCollectionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001991', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'ProjectBasedLearningIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001992', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'OrganizationProjectBasedLearningId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001992', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProjectBasedLearning', @level2type=N'COLUMN', @level2name=N'RefProjectBasedLearningTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001994', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CourseLevelApprovalIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001995', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeAdministeredToEnglishLearnersId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001996', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefSpecialEducationTeacherQualificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001997', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefEdFactsCertificationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001998', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefStudentSupportServiceAvailabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001999', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'AdjustedCapacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002000', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'RefAdjustedCapacityReasonTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002001', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAge2AndOlderCapacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002002', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EarlyLearningAgeUnder2Capacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002003', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002006', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureLocalLevelOfInstructionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002007', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002008', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002009', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccountLocal', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountLocalProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002010', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFederalProgramSubgrantCodeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'EnrollmentCapacity' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEnrollmentCapacity', @level2type=N'COLUMN', @level2name=N'OrganizationEnrollmentCapacityId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'002013', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationProgramType', @level2type=N'COLUMN', @level2name=N'PrimaryProgramIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000001', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000002', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RefAcademicAwardLevelId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000003', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'AcademicAwardTitle' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'RefAcademicHonorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AccountabilityReportTitle' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000010', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefPersonLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000011', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefAypStatusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefAdministrativeFundingControlId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000013', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000013', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'CourseAlignedWithStandards' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000014', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AlternateAypApproachIndicator' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000015', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefAlternativeSchoolFocusId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000018', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'AdvancedPlacementCreditsAwarded' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000019', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000019', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'ApartmentRoomOrSuiteNumber' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000024', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentParticipationIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RefCourseSectionAssessmentReportingMethodId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000028', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000029', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000442', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDesignation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000443', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealChangedDesignation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000444', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'AypAppealProcessDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000445', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'StateTransferabilityOfFunds' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000447', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12TitleIIILanguageInstruction', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000447', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RefTitleIIILanguageInstructionProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000448', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000448', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'RefInstructionLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000449', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefBarrierToEducatingHomelessId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000453', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessStandardsFunding' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000454', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'StateAssessmentAdminFunding' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000455', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateStateReceivedTitleIIIAllocation' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000456', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'DateTitleIIIFundsAvailableToSubgrantees' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000457', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SeaFederalFunds', @level2type=N'COLUMN', @level2name=N'NumberOfDaysForTitleIIISubgrants' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000461', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpent' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000462', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeDollarsSpentOnStrategicPriorities' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000463', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepProjectTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000464', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'InnovativeProgramsFundsReceived' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000466', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'RefLiteracyAssessmentId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000467', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyGoalMetStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000468', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPostTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000469', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentLiteracyAssessment', @level2type=N'COLUMN', @level2name=N'LiteracyPreTestStatus' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000471', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'IndicatorName' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000472', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Instrument' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000473', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'CollectionFrequency' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000474', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'MostRecentCollection' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000475', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Target' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000476', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Performance' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000477', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Baseline' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000478', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'BaselineYear' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000481', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'SchoolImprovementExitDate' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000482', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'TerminatedTitleIIIProgramFailure' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000484', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'ObtainedEmployment' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000485', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'ProgramInMultiplePurposeFacility' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000486', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RefRlisProgramUseId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000487', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RefTitleIIIProfessionalDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000488', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplinaryActionTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsCertificationStatus', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceAvailabilityType', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Supervised Clinical Experience', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'RefSupervisedClinicalExperienceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Supervised Clinical Experience Clock Hours', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'ClinicalExperienceClockHours' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Education Credential Exam Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationCredentialExamId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Teacher Education Credential Exam Score Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RefTeacherEducationExamScoreTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Educational Functioning Level at Intake', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtIntakeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Educational Functioning Level at Posttest', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeFunctioningLevelAtPosttestId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Special Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAeSpecialProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional or Technical Credential Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional or Technical Credential Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional or Technical Credential Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional or Technical Credential Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional or Technical Credential Conferred', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefProfessionalTechnicalCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Postsecondary Transition Action', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'RefAePostsecondaryTransitionActionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Adult Education Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'RefAeStaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Family Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'FamilyIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Years of Prior Adult Education Teaching Experience', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStaff', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAeTeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Years of Prior Adult Education Teaching Experience', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'YearsOfPriorAETeachingExperience' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Degree or Certificate Holder', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'ECDegreeOrCertificateHolder' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Proxy Contact Hours', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'ProxyContactHours' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Staff Total College Credits Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'TotalCollegeCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hours Worked Per Week', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HoursWorkedPerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hourly Wage', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'HourlyWage' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Wage Collection Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageCollectionMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Union Membership Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'UnionMembershipStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Required Training Clock Hours', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentRequirement', @level2type=N'COLUMN', @level2name=N'RequiredTrainingClockHours' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Issuing Professional Credential or License', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefIssuingStateId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Development Associate Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaff', @level2type=N'COLUMN', @level2name=N'RefChildDevelopmentAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Child Development Associate Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RefChildDevAssociateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityTitle' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Scholarship Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Scholarship Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ScholarshipStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Financial Support Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Financial Support Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefProfessionalDevelopmentFinancialSupportId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Core Knowledge Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RefCoreKnowledgeAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of School-age Education Postsecondary Credit Hours', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of School-age Education Postsecondary Credit Hours', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTeacherPrep', @level2type=N'COLUMN', @level2name=N'SchoolAgeEducationPSCredits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Higher Education Institution Accreditation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Higher Education Institution Accreditation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'RefHigherEducationInstitutionAccreditationStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Wage Verification Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'RefWageVerificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Serves Children with Special Needs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ServesChildrenWithSpecialNeeds' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Class Group Curriculum Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'ELClassGroupCurriculumType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Group Size Standards Met', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefELGroupSizeStandardMetId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Annual Operating Weeks', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'ELProgramAnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Annual Operating Weeks', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'AnnualOperatingWeeks' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Licensing Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RefELProgramLicenseStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Childhood Program Enrollment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RefEarlyChildhoodProgramEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Rating and Improvement System Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QrisAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Quality Rating and Improvement System Expiration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'QRISExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Profit Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefProfitStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Early Learning Fatalities', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfFatalities' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Early Learning Injuries', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'NumberOfInjuries' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program License Suspension Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseSuspensionStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program License Revocation Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'LicenseRevocationStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accreditation Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Accreditation Expiration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'AccreditationExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Quality Rating and Improvement System Levels', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'NumberQrisLevels' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Classrooms', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationAvailability', @level2type=N'COLUMN', @level2name=N'NumberOfClassrooms' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Program Health Safety Checklist Use Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ProgramHeathSafetyChecklistUseStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Special Circumstances Population Served', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationPopulationServed', @level2type=N'COLUMN', @level2name=N'RefPopulationServedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Parent Communication Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefCommunicationMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Economic Research Service Rural-Urban Continuum Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'RefERSRuralUrbanContinuumCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'State Licensed Facility Capacity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'StateLicensedFacilityCapacity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Full-Time Employee Benefits', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'FullTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Part-Time Employee Benefits', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmployeeBenefit', @level2type=N'COLUMN', @level2name=N'PartTimeBenefitIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefAssociationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Identifier URI', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'CompetencyDefAssociationIdentifierURI' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Parent Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Parent Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'CompetencyDefParentCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'URL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Blooms Taxonomy Domain', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefBloomsTaxonomyDomainId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Multiple Intelligence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefMultipleIntelligenceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Set Completion Criteria', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RefCompletionCriteriaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Set Completion Criteria Threshold', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'CompletionCriteriaThreshold' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Competency Alignment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RefLearningResourceCompetencyAlignmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework License', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition License', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'License' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Publisher', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Publisher' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Rights', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'Rights' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Framework Rights Holder', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RightsHolder' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Concept Keyword', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Concept Term', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptTerm' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Assignor Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssignedByPersonId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Descriptive Feedback', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Descriptive Feedback', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Category Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Image URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ImageUrl' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Criteria', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'Criteria' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Award Issuer Origin URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'AwardIssuerOriginURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Evidence Statement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Success Criteria', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'SuccessCriteria' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Possible Response Feedback Message', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'FeedbackMessage' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Possible Response Sequence Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Text Complexity Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Text Complexity System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefTextComplexitySystemId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Possible Response Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Text Complexity System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Url' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Title', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Subject Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Subject Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Subject Code System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCodeSystem' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Date Created', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Creator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Publisher Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublisherName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource License URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceLicenseURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credit Hours Applied Other Program', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefCreditHoursAppliedOtherProgramId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career and Technical Education Instructor Industry Certification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'CTEInstructorIndustryCertification' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disability Condition Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionStatusCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disability Condition Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityConditionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disability Determination Source Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDisability', @level2type=N'COLUMN', @level2name=N'RefDisabilityDeterminationSourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disciplinary Action IEP Placement Meeting Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'IEPPlacementMeetingIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Distance Education Program Enrollment Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DistanceEducationProgramEnrollmentInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Doctoral Candidacy Admit Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyAdmitInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Doctoral Candidacy Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralCandidacyDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Doctoral Exam Taken Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DoctoralExamTakenDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Doctoral Exams Required Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefDoctoralExamsRequiredCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Federal Funding Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Federal Funding Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELFederalFundingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Group Size', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSection', @level2type=N'COLUMN', @level2name=N'GroupSize' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Monitoring Notifications', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefOrganizationMonitoringNotificationsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Monitoring Visit Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Monitoring Visit End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'VisitEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Purpose of Monitoring Visit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RefPurposeOfMonitoringVisitId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Type of Monitoring', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'TypeOfMonitoring' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Other Federal Funding Sources', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Other Federal Funding Sources', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationFunds', @level2type=N'COLUMN', @level2name=N'RefELOtherFederalFundingSourcesId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Outcome Measurement Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RefELOutcomeMeasurementLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Professional Development Topic Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEducation', @level2type=N'COLUMN', @level2name=N'RefELProfessionalDevelopmentTopicAreaId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Eligibility Expiration Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Eligibility Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'RefELProgramEligibilityStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Program Eligibility Status Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildProgramEligibility', @level2type=N'COLUMN', @level2name=N'StatusDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Emergency Contact Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'EmergencyContactInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employed Prior to Enrollment', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmployedPriorToEnrollmentId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Employment Status While Enrolled', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmploymentStatusWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Family and Consumer Sciences Course Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'FamilyConsumerSciencesCourseInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Fund Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountFundClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Program Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountProgramCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Accounting Period Actual Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'ActualValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Accounting Period Budgeted Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFinancial', @level2type=N'COLUMN', @level2name=N'BudgetedValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Income Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'FinancialAidIncomeLevel' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Balance Sheet Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountBalanceSheetCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Function Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureFunctionCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Object Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialExpenditureObjectCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Frequency of Service', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RefFrequencyOfServiceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Graduate or Doctoral Exam Results Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefGraduateOrDoctoralExamResultsStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Health Screening Equipment Used', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningEquipmentUsed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Health Screening Follow-up Recommendation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHealth', @level2type=N'COLUMN', @level2name=N'HealthScreeningFollowUpRecommendation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Part B 619 Potential Eligibility Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'PartB619PotentialEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Part C to Part B Notification Opt Out Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Part C to Part B Notification Opt Out Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'IDEAPartCToPartBNotificationOptOutDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Transition Conference Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Transition Conference Decline Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'TransitionConferenceDeclineDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Date of Transition Plan', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildTransitionPlan', @level2type=N'COLUMN', @level2name=N'DateOfTransitionPlan' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Multiple Offense Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentMultipleOffenseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Perpetrator Injury Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentPerpetratorInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Person Role Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RefIncidentPersonRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Regulation Violated Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RegulationViolatedDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Related to Disability Manifestation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RelatedToDisabilityManifestationInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Incident Reported to Law Enforcement Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'ReportedToLawEnforcementInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Planned Service Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Planned Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramPlannedServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Itinerant Provider', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantProvider' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'K12 End of Course Requirement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefK12EndOfCourseRequirementId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Language', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access API Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessAPITypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access Hazard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access Mode Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessModeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Adaptation URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'AdaptationURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Assistive Technologies Compatible Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AssistiveTechnologiesCompatibleInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Book Format Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceBookFormatTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Control Flexibility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceControlFlexibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Digital Media Sub Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaSubTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Digital Media Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Adapted From URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AdaptedFromURL' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Media Feature Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RefLearningResourceMediaFeatureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Peer Rating Sample Size', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PeerRatingSampleSize' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Physical Media Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RefLearningResourcePhysicalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Connection Citation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'ConnectionCitation' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Destination Node Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Destination Node URI', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Origin Node Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Origin Node URI', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Association Weight', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Node Accessibility Profile', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefNodeAccessibilityProfileId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Short Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Testability Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefTestabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Enlistment After Exit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'MilitaryEnlistmentAfterExit' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'National Collegiate Athletic Association Eligibility', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'NCAAEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NCES College Course Map Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefNCESCollegeCourseMapCodeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Dependents', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'NumberOfDependents' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Oral Defense Completed Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseCompletedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Oral Defense Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Organization Seeking Accreditation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'SeekingAccreditationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Original Course Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OriginalCourseIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other Race Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'OtherRaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Override School Course Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OverrideSchoolCourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Person Relationship to Learner Contact Priority Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactPriorityNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Person Relationship to Learner Contact Restrictions Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactRestrictions' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Person Relationship to Learner Lives with Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'LivesWithIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Entering Student Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'PostsecondaryEnteringStudentInd' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Student Entering Term', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'EnteringTerm' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Primary Contact Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'PrimaryContactIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Certificate or License Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'ProfessionalCertificateOrLicenseNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Audience Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDAudienceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Delivery Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDDeliveryMethodId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Approval Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ApprovalCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Approved Purpose', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityApprovedPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Cost', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Cost' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Credits', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Credits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Objective', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Construction Material Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityConstructionMaterialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Expected Life', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'FacilityExpectedLife' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Replacement Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'FacilityReplacementValue' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Number of Stories', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfStories' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Site Identifier', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'FacilitySiteIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Site Improvement Location Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteImprovementLocationTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Year Built', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearBuilt' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Year of Last Modernization', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'BuildingYearOfLastModernization' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Air Distribution System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingAirDistributionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Communications Management Component System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCommMgmtComponentSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Compliance Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility System or Component Condition', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilitySystemOrComponentConditionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Cooling Generation System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingCoolingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Electrical System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingElectricalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Applicable Federal Mandate Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityApplicableFederalMandateTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Federal Mandate Interest Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityFederalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Fire Protection System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingFireProtectionSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Heating Generation System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHeatingGenerationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building HVAC System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHVACSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Institutional Equipment Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'BuildingInstitutionalEquipmentDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Mechanical Conveying System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalConveyingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Plumbing System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingPlumbingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Security System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSecuritySystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility State or Local Mandate Interest Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityStateOrLocalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility State or Local Mandate Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'FacilityStateOrLocalMandateName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Technology Wiring System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingTechnologyWiringSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Location of Hazardous Materials', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityLocationOfHazardousMaterials' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Mechanical System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Nearby Environmental Hazard Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityNearbyEnvHazardDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Vertical Transportation System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingVerticalTransportationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Administrative Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAdministrativeSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Art Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingArtSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Basic Classroom Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingBasicClassroomDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Career-Technical Education Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCareerTechEducationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Circulation Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCirculationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Environmental or Energy Performance Rating Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingEnvOrEnergyPerformanceRatingCatId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Furnishings Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilityFurnishingsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Food Service Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFoodServiceSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Indoor Athletic or Physical Education Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingIndoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Library or Media Center Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingLibMediaCenterSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Operations or Maintenance Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOperationsOrMaintSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Outdoor Athletic or Physical Education Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Outdoor or Non-athletic Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorOrNonathleticSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Performing Arts Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingPerformingArtsSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building School Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingSchoolDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Science Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingScienceSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Site Outdoor Area Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteOutdoorAreaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Space Design Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpaceDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Special Education Specialty Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpecEdSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Student Support Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingStudentSupportSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Architect Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitectName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Architectural Firm Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitecturalFirmName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Assembly Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAssemblySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Compliance Determination Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceDeterminationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Compliance Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Component Deficiency Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComponentDeficiencyDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Component Identification Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Estimated Cost to Eliminate Deferred Maintenance', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityEstimatedCostToEliminateDeferredMaint' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Hazardous Condition Expected Remediation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityHazardousCondExpectedRemediationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Full Service Kitchen Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFullServiceKitchenTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hazardous Material or Condition Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hazardous Material or Condition Testing Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionTestingDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Inspection Score Result Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionScoreResultDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Inspection Violation Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionViolationDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Installation Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'InstallationDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Life-cycle Cost', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'LifecycleCost' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Site Improvement Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingSiteImprovementDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Instructional Space Factor Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingInstructionalSpaceFactorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Joint Use Rationale Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseRationaleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Joint Use Scheduling Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseSchedulingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Joint User Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUserTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Community Use Space Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingCommunityUseSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Hours of Public Use Per Week', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingHoursOfPublicUsePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Net Area of Instructional Space', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNetAreaOfInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Number of Teaching Stations', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfTeachingStations' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Public Use Policy Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingPublicUsePolicyDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Site Use Restrictions Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefBuildingSiteUseRestrictionsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Space Utilization Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingSpaceUtilizationArea' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Enrollment Access Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefStudentEnrollmentAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Unassigned Space Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingUnassignedSpaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Audit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RefFacilityAuditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Charter School Realty Access Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCharterSchoolRealtyAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Cleaning Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCleaningStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Compliance Agency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceAgencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Energy Conservation Measure Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergyConservationMeasureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Energy Service Company Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'BuildingEnergyServiceCompanyName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Energy Source Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergySourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Management Emergency Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMgmtEmergencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Capital Program Management Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityCapitalProgramMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Operations Management Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityOperationsMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Hazardous Materials or Condition Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityHazardousMaterialsOrCondTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Joint Development Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityJointDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Maintenance Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityMaintStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Naturally Occurring Hazard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityNaturallyOccurringHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Utility Provider Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityProviderTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Utility Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Date of Certificate of Occupancy', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingDateOfCertificateOfOccupancy' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Audit Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'FacilityAuditDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Plan Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'FacilitiesPlanDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Plan Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Standard Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facilities Mandate Authority Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMandateAuthorityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Financing Fee Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RefFacilityFinancingFeeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Lease Amount', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'FacilityLeaseAmount' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Lease Amount Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseAmountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Lease Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Mortgage Interest Amount', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityMortgageInterestAmount' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Mortgage Interest Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Mortgage Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Indebtedness Amount Allowed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'IndebtednessAmountAllowed' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record Start Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefEducationLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition_CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_Rubric', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencySet_RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CoreKnowledgeArea', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionSchedule', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAward', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardCredit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialCriteriaCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefAgentCredential', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefIdentifier', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EarlyChildhoodProgramTypeOffered', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELClassSectionService', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELCourse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollmentOtherFunding', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'EligibilityEvaluation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganizationMonitoring', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELProgramLicensing', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityRatingImprovement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Record End Date Time', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diploma or Credential Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diploma or Credential Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diploma or Credential Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diploma or Credential Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diploma or Credential Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Diploma or Credential Award Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'AwardDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disciplinary Action End Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionEndDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Disciplinary Action Start Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionStartDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career-Technical-Adult Education Displaced Homemaker Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Career-Technical-Adult Education Displaced Homemaker Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Dual Credit Dual Enrollment Credits Awarded', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DualCreditDualEnrollmentCredits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'K12 Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'K12 Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'K12 Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Electronic Mail Address', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'ElectronicMailAddress' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Electronic Mail Address', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'EmailAddress' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Electronic Mail Address Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Electronic Mail Address Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Elementary-Middle Additional Indicator Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefElementaryMiddleAdditionalId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Eligibility Status for School Food Service Programs', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'End of Term Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEndOfTermStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Enrollment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Enrollment Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Enrollment Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Entry Date into Postsecondary', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'EntryDateIntoPostsecondary' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Entry Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryType' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Entry Grade Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Course Section Time Required for Completion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'TimeRequiredForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Evaluation Outcome', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Outcome' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Evaluation Scale', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Evaluation Score or Rating', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Evaluation System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'System' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Cohort Exclusion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCohortExclusionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit or Withdrawal Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit or Withdrawal Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit or Withdrawal Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Exit or Withdrawal Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefExitOrWithdrawalTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Award Amount', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'FinancialAidAwardAmount' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Award Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAidAward', @level2type=N'COLUMN', @level2name=N'RefFinancialAidAwardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'First Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'FirstName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'First Time Postsecondary Student', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'FirstTimePostsecondaryStudent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Full Time Equivalency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Full Time Equivalency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Full Time Equivalency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'FullTimeEquivalency' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Generation Code or Suffix', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'GenerationCode' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Weighted Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Weighted Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RefGpaWeightedIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Course Section Grade Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Student Course Section Grade Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'GradeEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Level When Course Taken', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Level When Course Taken', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentGraduationPlan', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenCourseTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Level When Assessed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelToBeAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Level When Assessed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefGradeLevelWhenAssessedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverage' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'GradePointAverageCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Point Average Given Session', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentSession', @level2type=N'COLUMN', @level2name=N'GradePointAverageGivenSession' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grade Points Earned Cumulative', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'GradePointsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grades Offered', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Grades Offered', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolGradeOffered', @level2type=N'COLUMN', @level2name=N'RefGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Graduation Rate Survey Cohort Year', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyCohortYear' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Graduation Rate Survey Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'GraduationRateSurveyIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Gun Free Schools Act Reporting Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefGunFreeSchoolsActReportingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Harassment or Bullying Policy Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'HarassmentOrBullyingPolicy' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Health Benefits', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationHealthBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Course Requirement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Course Requirement', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'HighSchoolCourseRequirement' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Diploma Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Diploma Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RefHighSchoolDiplomaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'High School Graduation Rate Indicator Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefHighSchoolGraduationRateIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Highest Level of Education Completed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Highest Level of Education Completed', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonFamily', @level2type=N'COLUMN', @level2name=N'RefHighestEducationLevelCompletedId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Highly Qualified Teacher Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'HighlyQualifiedTeacherIndicator' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hire Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'HireDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Hispanic or Latino Ethnicity', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'HispanicLatinoEthnicity' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Homeless Primary Nighttime Residence', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'RefHomelessNighttimeResidenceId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Homelessness Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonHomelessness', @level2type=N'COLUMN', @level2name=N'HomelessnessStatus' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Honors Description', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicHonor', @level2type=N'COLUMN', @level2name=N'HonorDescription' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Increased Learning Time Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Increased Learning Time Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefIncreasedLearningTimeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Initial Enrollment Term', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InitialEnrollmentTerm' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Institution Telephone Number Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTelephone', @level2type=N'COLUMN', @level2name=N'RefInstitutionTelephoneTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Activity Hours Attempted', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'InstructionalActivityHoursAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Instructional Activity Hours Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefInstructionalActivityHoursId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Integrated Technology Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'RefIntegratedTechnologyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Last Qualifying Move Date', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'LastQualifyingMoveDate' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Last or Surname', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'LastName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Improvement Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'RefLeaImprovementStatusId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Local Education Agency Supervisory Union Identification Number', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'SupervisoryUnionIdentificationNumber' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Level of Institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeProvider', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Level of Institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefLevelOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Magnet or Special Program Emphasis School', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolStatus', @level2type=N'COLUMN', @level2name=N'RefMagnetSpecialProgramId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Marking Period Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MarkingPeriodName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Mid Term Mark', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'MidTermMark' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Middle Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'MiddleName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Services Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationMigrant', @level2type=N'COLUMN', @level2name=N'RefMepServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Session Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'RefMepSessionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Migrant Education Program Staff Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefMepStaffCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address County Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'CountyName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Address County Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'AddressCountyName' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Name of Institution', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'NameOfInstitution' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Neglected or Delinquent Program Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'RefNeglectedProgramTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Visa Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'RefVisaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Normal Length of Time for Completion', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'NormalLengthTimeForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Normal Length of Time for Completion Units', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefTimeForCompletionUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Credits Attempted', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Credits Attempted', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Credits Attempted', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsAttempted' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Credits Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Credits Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Credits Earned', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'NumberOfCreditsEarned' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Days Absent', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysAbsent' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Days in Attendance', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELEnrollment', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Number of Days in Attendance', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'NumberOfDaysInAttendance' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Staff Compensation Other Benefits', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationOtherBenefits' -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Other Name', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonOtherName', @level2type=N'COLUMN', @level2name=N'OtherName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21886', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyFramework', @level2type=N'COLUMN', @level2name=N'RightsHolder' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21887', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptKeyword' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21888', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ConceptTerm' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21889', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'AssignedByPersonId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21890', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21891', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'DescriptiveFeedback' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21892', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCategory', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21893', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21894', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'ImageUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21895', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21896', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefCriteria', @level2type=N'COLUMN', @level2name=N'Criteria' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21900', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialIssuer', @level2type=N'COLUMN', @level2name=N'AwardIssuerOriginURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21901', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialAwardEvidence', @level2type=N'COLUMN', @level2name=N'Statement' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21902', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'GoalMeasurement', @level2type=N'COLUMN', @level2name=N'SuccessCriteria' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21903', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Goal', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21904', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'FeedbackMessage' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21906', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21907', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RefTextComplexitySystemId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21908', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21910', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21911', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Url' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21912', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21913', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21914', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21915', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'SubjectCodeSystem' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21916', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21918', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'Creator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21919', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PublisherName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21920', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21922', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'LearningResourceLicenseURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21923', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'BasedOnUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21924', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceIntendedEndUserRoleId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21925', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TimeRequired' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21926', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMinimum' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TypicalAgeRangeMaximum' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceInteractivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21929', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21930', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexityValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21931', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'TextComplexitySystem' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21932', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21933', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyTitle' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21934', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'AssessmentFamilyShortName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21935', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'RefLearnerActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21936', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'Value' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21938', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerAction', @level2type=N'COLUMN', @level2name=N'LearnerActionDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21939', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21940', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21941', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21942', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Prerequisite' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21943', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21944', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'CreationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21945', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumTimeAllowed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21946', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityMaximumTimeAllowedUnitsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21947', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21948', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'DueTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21949', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'MaximumAttemptsAllowed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21950', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RefLearnerActivityAddToGradeBookFlagId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21951', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'ReleaseDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21952', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21953', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'PossiblePoints' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21954', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearnerActivity', @level2type=N'COLUMN', @level2name=N'RubricUrl' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21955', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'ScaffoldingItemFlag' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21956', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintCount' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21957', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'HintIncludedAnswer' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21958', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'FirstAttemptDuration' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21959', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21960', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21962', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Code' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21963', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21964', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21965', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21966', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'FinishTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21969', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21970', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'SecurityIssue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21971', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateUpdated' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21972', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'DateCreated' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21977', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseSectionEnrollmentStatusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21978', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21980', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21980', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'SequenceNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21981', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21982', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'GUID' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21983', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'RefAccreditationAgencyId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21985', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELFacilityLicensing', @level2type=N'COLUMN', @level2name=N'RefELFacilityLicensingStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21986', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionStartTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21988', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'SessionEndTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21989', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21989', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21989', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21989', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedWhileEnrolledId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RefEmployedAfterExitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21991', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'Earnings' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21992', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefEmploymentLocationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21993', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'EmployedInMultipleJobsCount' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21994', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21995', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'ReferencePeriodEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21996', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RefERAdministrativeDataSourceId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22000', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RefWfProgramParticipationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceEducationalUseId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22006', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'DeliveryDeviceDetails' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22007', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22007', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingAssignedSupportIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22007', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'AssignedSupport' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22007', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'AssignedSupportFlag' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22008', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'EncouragementActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22008', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'MaskingActivateByDefaultIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22339', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RefIncidentPerpetratorInjuryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22341', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IncidentPerson', @level2type=N'COLUMN', @level2name=N'RefIncidentPersonRoleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22342', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RegulationViolatedDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22343', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'RelatedToDisabilityManifestationInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22345', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Incident', @level2type=N'COLUMN', @level2name=N'ReportedToLawEnforcementInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22350', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'PlannedServiceStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22352', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'IndividualizedProgramService', @level2type=N'COLUMN', @level2name=N'RefIndividualizedProgramPlannedServiceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'ItinerantProvider' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22355', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefK12EndOfCourseRequirementId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22357', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefLanguageId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22358', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessAPITypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22359', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22360', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceAccessModeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22361', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceAdaptation', @level2type=N'COLUMN', @level2name=N'AdaptationURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22362', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AssistiveTechnologiesCompatibleInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22363', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceBookFormatTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22364', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceControlFlexibilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22365', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaSubTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22366', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'RefLearningResourceDigitalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22367', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'AdaptedFromURL' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22368', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourceMediaFeature', @level2type=N'COLUMN', @level2name=N'RefLearningResourceMediaFeatureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22369', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResource', @level2type=N'COLUMN', @level2name=N'PeerRatingSampleSize' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22370', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LearningResourcePhysicalMedia', @level2type=N'COLUMN', @level2name=N'RefLearningResourcePhysicalMediaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22371', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'ConnectionCitation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22372', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22373', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'DestinationNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22374', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22375', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'OriginNodeURI' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22376', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefAssociation', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22377', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefNodeAccessibilityProfileId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22378', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22380', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RefCompetencyDefTestabilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22381', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'MilitaryEnlistmentAfterExit' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22382', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'NCAAEligibilityInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22383', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefNCESCollegeCourseMapCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22384', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'NumberOfDependents' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22385', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseCompletedIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22386', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'OralDefenseDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22388', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationAccreditation', @level2type=N'COLUMN', @level2name=N'SeekingAccreditationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22389', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OriginalCourseIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22390', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELChildDemographic', @level2type=N'COLUMN', @level2name=N'OtherRaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22391', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'OverrideSchoolCourseNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22392', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactPriorityNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22393', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'ContactRestrictions' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22394', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'LivesWithIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22395', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'PostsecondaryEnteringStudentInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22396', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'EnteringTerm' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22397', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonRelationship', @level2type=N'COLUMN', @level2name=N'PrimaryContactIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22398', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'ProfessionalCertificateOrLicenseNumber' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22399', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDAudienceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22401', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDDeliveryMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22402', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ApprovalCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22403', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityApprovedPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22404', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'ActivityCode' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22405', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Cost' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22406', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityCreditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22407', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Credits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22408', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22409', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22410', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'Objective' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22412', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefPDActivityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22413', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'FundingSource' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22415', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'PublishIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22416', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'Capacity' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22417', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22418', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EndTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22419', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationMethod' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22420', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'EvaluationScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22421', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'ExpirationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22422', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SessionIdentifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22424', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'LocationName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22426', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22427', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'StartTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22428', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDSessionStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22429', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'RefPDInstructionalDeliveryModeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22432', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MaximumScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22433', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'MinimumScore' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22434', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ScoreLevel' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22435', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22436', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22437', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELQualityInitiative', @level2type=N'COLUMN', @level2name=N'ParticipationStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22440', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FinancialAccount', @level2type=N'COLUMN', @level2name=N'RefFinancialAccountRevenueCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22441', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Category' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22442', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22443', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22444', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Feedback' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22445', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22446', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Quality' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22447', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'Score' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22448', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Position' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22449', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22450', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'Weight' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22451', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'Description' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22452', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'SCEDGradeSpan' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22453', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22454', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'RefReferralOutcomeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22455', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Reason' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22456', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'Source' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22457', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferralTypeReceived' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22458', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonReferral', @level2type=N'COLUMN', @level2name=N'ReferredTo' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22459', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationDetail', @level2type=N'COLUMN', @level2name=N'ShortName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22460', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'ReasonForDeclinedServices' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22461', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentSession', @level2type=N'COLUMN', @level2name=N'SponsoringAgencyName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22465', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22465', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'TechnicalAssistanceApprovedInd' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22466', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RefTechnicalAssistanceDeliveryTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22781', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingHVACSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22782', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'BuildingInstitutionalEquipmentDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22783', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalConveyingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22784', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingPlumbingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22785', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSecuritySystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22786', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilityStateOrLocalMandateInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22787', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'FacilityStateOrLocalMandateName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22788', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingTechnologyWiringSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22789', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityLocationOfHazardousMaterials' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22790', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingMechanicalSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22791', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityNearbyEnvHazardDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22792', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22793', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RefBuildingVerticalTransportationSystemTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22794', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAdministrativeSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22795', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingArtSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22796', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingBasicClassroomDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22797', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22798', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCareerTechEducationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22799', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingCirculationSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22800', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingEnvOrEnergyPerformanceRatingCatId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22801', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RefFacilityFurnishingsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22802', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFoodServiceSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22803', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingIndoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22804', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingLibMediaCenterSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOperationsOrMaintSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22806', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorAthleticOrPhysEdSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22807', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingOutdoorOrNonathleticSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22808', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingPerformingArtsSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22809', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySchoolDesign', @level2type=N'COLUMN', @level2name=N'RefBuildingSchoolDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22810', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingScienceSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefFacilitySiteOutdoorAreaTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpaceDesignTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22813', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingSpecEdSpecialtySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22814', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingStudentSupportSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22815', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitectName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22816', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingArchitecturalFirmName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22817', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingAssemblySpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceDeterminationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22819', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComplianceName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22820', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityComponentDeficiencyDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22821', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'Identifier' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22822', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityEstimatedCostToEliminateDeferredMaint' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22823', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'FacilityHazardousCondExpectedRemediationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22824', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RefBuildingFullServiceKitchenTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22825', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22826', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'HazardousMaterialOrConditionTestingDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22827', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionScoreResultDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22828', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'FacilityInspectionViolationDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22829', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'InstallationDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22830', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'LifecycleCost' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22831', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'BuildingSiteImprovementDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22832', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingInstructionalSpaceFactorTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22833', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseRationaleTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22834', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUseSchedulingTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22835', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityJointUse', @level2type=N'COLUMN', @level2name=N'RefBuildingJointUserTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22836', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'RefBuildingCommunityUseSpaceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22837', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingHoursOfPublicUsePerWeek' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22838', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNetAreaOfInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22839', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingNumberOfTeachingStations' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22840', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityUtilization', @level2type=N'COLUMN', @level2name=N'BuildingPublicUsePolicyDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22841', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilitySite', @level2type=N'COLUMN', @level2name=N'RefBuildingSiteUseRestrictionsTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22842', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingSpaceUtilizationArea' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22843', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefStudentEnrollmentAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22844', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingUnassignedSpaceIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22845', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'RefFacilityAuditTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22846', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCharterSchoolRealtyAccessTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22847', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefBuildingCleaningStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22848', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityComplianceAgencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22849', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergyConservationMeasureTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22850', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'BuildingEnergyServiceCompanyName' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22851', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefBuildingEnergySourceTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMgmtEmergencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22853', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityCapitalProgramMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22854', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagement', @level2type=N'COLUMN', @level2name=N'RefFacilityOperationsMgmtTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22855', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityHazardousMaterialsOrCondTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22856', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityJointDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22857', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'RefFacilityMaintStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22858', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityHazard', @level2type=N'COLUMN', @level2name=N'RefFacilityNaturallyOccurringHazardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22859', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityProviderTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22860', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityEnergy', @level2type=N'COLUMN', @level2name=N'RefFacilityUtilityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22861', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesign', @level2type=N'COLUMN', @level2name=N'BuildingDateOfCertificateOfOccupancy' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22862', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityAudit', @level2type=N'COLUMN', @level2name=N'FacilityAuditDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22863', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'FacilitiesPlanDescription' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22864', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityManagementPlan', @level2type=N'COLUMN', @level2name=N'RefFacilitiesPlanTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22865', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityDesignConstruction', @level2type=N'COLUMN', @level2name=N'RefFacilityStandardTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22866', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMandate', @level2type=N'COLUMN', @level2name=N'RefFacilitiesMandateAuthorityTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22867', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgageFee', @level2type=N'COLUMN', @level2name=N'RefFacilityFinancingFeeTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22868', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'FacilityLeaseAmount' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22869', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseAmountCategoryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22870', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityLease', @level2type=N'COLUMN', @level2name=N'RefFacilityLeaseTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22871', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityMortgageInterestAmount' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22872', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageInterestTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22873', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'RefFacilityMortgageTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22874', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'IndebtednessAmountAllowed' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22875', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'InsuranceDeductible' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22876', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityFinance', @level2type=N'COLUMN', @level2name=N'PublicEducationMillRate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22877', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityMortgage', @level2type=N'COLUMN', @level2name=N'FacilityTotalAssessedValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22878', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Facility', @level2type=N'COLUMN', @level2name=N'RefCampusTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22879', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'FacilityCompliance', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureCheckDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22880', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22881', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponentService', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureScheduledServicedDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22882', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'ComponentOrFixtureUsefulLife' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22883', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'AvailableUtilizedInstructionalSpace' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22884', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpaceUtilization', @level2type=N'COLUMN', @level2name=N'BuildingCapacityFactorIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleI', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationTitleIIILep', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOA', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationWIOABarriers', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsPriceOfAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSectionLocation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicAward', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAdmissionTest', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentCourseSectionMark', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentFinancialAid', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'QuarterlyEmploymentRecord', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RequiredImmunization', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Role', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleStatus', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Rubric', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RubricCriterionLevel', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceFrequency', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicePlan', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvided', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceProvider', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServicesReceived', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ServiceStaff', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEmployment', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluationPart', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffExperience', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffTechnicalAssistance', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherEducationCredentialExam', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TeacherStudentDataLinkExclusion', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceEmploymentQuarterlyData', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipantCohort', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'RecordStartDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ActivityRecognition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ApipInteraction', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Application', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment_AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAccommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAdministration_Organization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm_AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentAsset', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentFormSection_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemCharacteristic', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemPossibleResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemResponse', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentItemRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLanguage', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedApipDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedBraille', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentNeedScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentParticipantSession_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedLanguageLearner', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedScreenReader', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfile', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileContent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileControl', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileDisplay', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentPersonalNeedsProfileScreenEnhancement', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration_Accommodation', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResult_PerformanceLevel', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentResultRubricCriterionResult', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSession', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSessionStaffRole', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_AssessmentItem', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest_CompetencyDefinition', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestELDevelopmentalDomain', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtestLevelsForWhichDesigned', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authentication', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Authorization', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AuthorizationDocument', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSpace', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemCategory', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'BuildingSystemComponent', @level2type=N'COLUMN', @level2name=N'RecordEndDateTime' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAcademicSubjectId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21024', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentForm', @level2type=N'COLUMN', @level2name=N'Name' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentParticipationIndicatorId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentRegistration', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AssessmentSubtest', @level2type=N'COLUMN', @level2name=N'RefAssessmentPurposeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSectionAssessmentReporting', @level2type=N'COLUMN', @level2name=N'RefCourseSectionAssessmentReportingMethodId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21028', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'Title' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21029', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Assessment', @level2type=N'COLUMN', @level2name=N'RefAssessmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21030', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'AvailableCarnegieUnitCredit' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21031', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationSpecialEducation', @level2type=N'COLUMN', @level2name=N'AwaitingInitialIDEAEvaluationStatus' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21032', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCompensation', @level2type=N'COLUMN', @level2name=N'StaffCompensationBaseSalary' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21033', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDetail', @level2type=N'COLUMN', @level2name=N'Birthdate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCampusResidencyTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21036', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteCompleter' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21037', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'CteConcentrator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21038', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefCarnegieBasicClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21039', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Lea', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21039', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12School', @level2type=N'COLUMN', @level2name=N'CharterSchoolIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21040', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'LocationAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21040', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'City' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentApplication', @level2type=N'COLUMN', @level2name=N'HighSchoolStudentClassRank' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21042', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'ClassRankingDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CredentialDefinition', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsCourse', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCipCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PSStudentProgram', @level2type=N'COLUMN', @level2name=N'RefCipUseId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21045', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsProgram', @level2type=N'COLUMN', @level2name=N'RefCipVersionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21046', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCohort', @level2type=N'COLUMN', @level2name=N'CohortYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21047', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21047', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'ContractDaysOfServicePerYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELOrganization', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsInstitution', @level2type=N'COLUMN', @level2name=N'RefControlOfInstitutionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21049', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolCorrectiveAction', @level2type=N'COLUMN', @level2name=N'RefCorrectiveActionTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21050', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonAddress', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21051', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonBirthplace', @level2type=N'COLUMN', @level2name=N'RefCountryId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21053', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'AcademicGrade' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21054', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'OrganizationCalendarSessionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffProfessionalDevelopmentActivity', @level2type=N'COLUMN', @level2name=N'RefCourseCreditUnitId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21058', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'CreditValue' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21059', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationCalendarSession', @level2type=N'COLUMN', @level2name=N'EndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12Course', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsSection', @level2type=N'COLUMN', @level2name=N'RefCourseGPAApplicabilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21061', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'RefCourseLevelCharacteristicsId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21063', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'CourseOverrideSchool' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21064', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'QualityPointsEarned' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21065', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21065', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'RefCourseRepeatCodeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21066', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'Course', @level2type=N'COLUMN', @level2name=N'SubjectAbbreviation' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21070', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'IssuanceDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21071', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonCredential', @level2type=N'COLUMN', @level2name=N'RefCredentialTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteCourse', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentCourseSection', @level2type=N'COLUMN', @level2name=N'RefCreditTypeEarnedId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21073', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsAttemptedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21074', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21074', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21074', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'CreditsEarnedCumulative' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21075', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefCteGraduationRateInclusionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21076', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RoleAttendanceEvent', @level2type=N'COLUMN', @level2name=N'RefAttendanceStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21077', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentSection', @level2type=N'COLUMN', @level2name=N'DegreeApplicability' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21078', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'DegreeOrCertificateSeekingStudent' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21079', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefDependencyStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21080', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'DesegregationOrderOrPlan' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'AeStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CteStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffCredential', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'WorkforceProgramParticipation', @level2type=N'COLUMN', @level2name=N'DiplomaOrCredentialAwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonDegreeOrCertificate', @level2type=N'COLUMN', @level2name=N'AwardDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21082', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionEndDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21083', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'DisciplinaryActionStartDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21084', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationAE', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21084', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationCte', @level2type=N'COLUMN', @level2name=N'DisplacedHomemakerIndicator' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21085', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentAcademicRecord', @level2type=N'COLUMN', @level2name=N'DualCreditDualEnrollmentCredits' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ELStaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffAssignment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StaffEmployment', @level2type=N'COLUMN', @level2name=N'RefK12StaffClassificationId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21088', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'ElectronicMailAddress' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21088', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'EmailAddress' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationEmail', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PersonEmailAddress', @level2type=N'COLUMN', @level2name=N'RefEmailTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21091', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'OrganizationFederalAccountability', @level2type=N'COLUMN', @level2name=N'RefElementaryMiddleAdditionalId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21092', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefFoodServiceEligibilityId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21093', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEndOfTermStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21094', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21095', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21096', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefPsEnrollmentStatusId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21098', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentEnrollment', @level2type=N'COLUMN', @level2name=N'EntryDateIntoPostsecondary' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21099', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryType' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21100', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentEnrollment', @level2type=N'COLUMN', @level2name=N'RefEntryGradeLevelId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21101', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'CourseSection', @level2type=N'COLUMN', @level2name=N'TimeRequiredForCompletion' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21102', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Outcome' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21103', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'Scale' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21104', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'ScoreOrRating' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21105', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'StaffEvaluation', @level2type=N'COLUMN', @level2name=N'System' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21106', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'PsStudentDemographic', @level2type=N'COLUMN', @level2name=N'RefCohortExclusionId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21468', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'Baseline' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21469', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaSafeDrugFree', @level2type=N'COLUMN', @level2name=N'BaselineYear' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21472', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12SchoolImprovement', @level2type=N'COLUMN', @level2name=N'SchoolImprovementExitDate' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21473', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalReporting', @level2type=N'COLUMN', @level2name=N'TerminatedTitleIIIProgramFailure' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21475', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'ProgramParticipationNeglected', @level2type=N'COLUMN', @level2name=N'ObtainedEmployment' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21476', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12ProgramOrService', @level2type=N'COLUMN', @level2name=N'ProgramInMultiplePurposeFacility' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21477', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaFederalFunds', @level2type=N'COLUMN', @level2name=N'RefRlisProgramUseId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21478', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12LeaTitleIIIProfessionalDevelopment', @level2type=N'COLUMN', @level2name=N'RefTitleIIIProfessionalDevelopmentTypeId' -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21479', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'K12StudentDiscipline', @level2type=N'COLUMN', @level2name=N'RefDisciplinaryActionTakenId' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The sequence the options in this option set should be ordered.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalObjectCode', @level2type='COLUMN', @level2name='SortOrder' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code or abbreviation for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='Code' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The defintion for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='Definition' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A description for the options in this option set.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLocalLevelOfInstructionCode', @level2type='COLUMN', @level2name='Description' -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The state or other location in which an individual is found employed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Administrative data source of information used to collect employment and earnings-related data.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERAdministrativeDataSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of workforce and employment development program that an individual is participating in.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWfProgramParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Developmental domains related to early learning and used for assessing a child''s kindergarten readiness.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentELDevelopmentalDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The purpose of the work in the context of education.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceEducationalUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of identifier that is provided for a Subtest.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSubtestIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of session that is scheduled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile a preference for the language of the user interface.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLanguageLearnerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile a characteristic of a digital resource that may be specified as being dangerous to a user.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the electronic tool associated with a resource.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSupportTool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the rating for the collection of Access for All (AfA) needs and preferences.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUsageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the characteristics of presentation for a hyperlink when using a screen reader.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLinkIndicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the grade of Braille to use when using a Braille display.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleGradeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the number of dots in a Braille cell.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedNumberOfBrailleDots', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile what textual properties to mark when using a Braille display.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleMarkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the preferred presence or location of a Braille display status cell.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleStatusCellType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the type of signing preferred by the user.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSigningType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the default presentation mode of the associated Alternative Representations accessibility.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedAlternativeRepresentationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines as part of an Assessment Personal Needs Profile the preferred spoken audio form.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSpokenSourcePreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Used as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUserSpokenPreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Specifies as part of an Assessment Personal Needs Profile the type of masks the user is able to create to cover portions of the question until needed.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedMaskingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Defines the user preferences for white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedIncreasedWhitespacingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Complexity levels defined by the National Assessment of Educational Progress (NAEP 2005a Framework).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepMathComplexityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The assessment item body interaction type as defined by IMS Global specifications.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefApipInteractionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A coding scheme that is used for identification of an Assessment Form Section.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentFormSectionIdentificationSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Specifies a predominant type of assessment asset represented by the Learning Resource. Assessment assets represent any content used to compose an assessment item, is referenced by an item but not part of the item content itself, or is content that is included as part of a section within an assessment form. Assets can be static content such as art work or dynamic assets such as calculators.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of identifier that is provided for this asset.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Aspects of reading defined by the National Assessment of Educational Progress (NAEP 2005b Framework).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepAspectsOfReading', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary setting or medium of delivery for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'How a building is principally used, regardless of its original design.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpaceUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'County code as defined for the identification of counties and equivalent areas of the United States, Puerto Rico, and the insular areas as established by the American National Standards Institute (ANSI) Inter-National Committee for Information Technology Standards (INCITS) in specification BSR INCITS 31-200x or more current updates. See https://www.census.gov/library/reference/code-lists/ansi.html#par_statelist.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCounty', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Identifies the type of weapon used during an incident.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWeaponType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of role served related to the administration of an assessment session.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionStaffRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of financial application completed by an individual.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidApplicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The methodology used to determine an individual''s financial need.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeedDeterminationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the significance of a date to an individualized program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The post-school transition plan for the student recorded on their Individualized Education Program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramTransitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The place in which a child''s service plan meeting is held.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'State/local code used to determine a student''s eligibility for Gifted/Talented program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramGiftedEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the type of immunization that an individual has satisfactorily received. (Note: The International Classification of Diseases (ICD) is maintained by the World Health Organization. The ICD is revised periodically to incorporate changes in the medical field, the most updated and detailed list of International Statistical Classification of Diseases and Related Health Problems can be found at http://www.who.int/classifications/apps/icd/icd10online).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefImmunizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A category for the difficulty of the item based on the Item Response Theory value.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryDifficultyCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The algorithm used to derive the Assessment Item Kappa Value', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryKappaAlgorithm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of health accommodations.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationsNeededType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Course areas for advanced placement or credit. For a list of codes see http://apcentral.collegeboard.com/apc/public/courses/teachers_corner/index.html .', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdvancedPlacementCourseCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An age group or education level to which the professional development activity''s content pertains.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityEducationLevelsAddressed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of severity of a person''s reaction to an allergen.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergySeverity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBlendedLearningModelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerCluster', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether an individual completed an individualized guidance and counseling plan', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerEducationPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of agency that authorized the establishment or continuation of a charter school.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of facility in which an inmate receives correctional education services.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectionalEducationFacilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Additional information regarding the context of the given grade.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseAcademicGradeStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The education level, grade level or primary instructional level at which a course is intended.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseApplicableEducationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The type of enrollment associated with the credit hours for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of credit associated with the credit hours earned for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that the course is or can be counted as an honors course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseHonorsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary method of instruction used for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the type of location at which the course is taught.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionSiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The primary type of interaction, synchronous or asynchronous, defined for the course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditHoursAppliedOtherProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A code indicating the disability condition status.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of disability conditions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Codes identifying the set of disability determination sources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityDeterminationSourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A qualifier identifying the types of exams required of doctoral level individuals.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDoctoralExamsRequiredCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Federal source, even if administered by state or local, that contributes to the EL program.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFederalFundingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Whether the organization received notification about monitoring', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationMonitoringNotifications', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The purpose for the monitoring visit.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPurposeOfMonitoringVisit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The other contributing funding sources.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOtherFederalFundingSources', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Use for outcome measures in early learning.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELOutcomeMeasurementLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The topical area of competence needed for Staff professional development.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProfessionalDevelopmentTopicArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The status of eligibility for the child.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibilityStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, before enrolling in secondary, postsecondary, or adult education or workforce programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedPriorToEnrollment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the individual''s employment status while enrolled.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatusWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A label for a grouping of financial accounts, based on type and purpose.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A fund is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountFundClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A program is a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives. The program classification provides the organization with a framework to classify instructional and other expenditures by program to determine cost.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountProgramCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Balance sheet accounts and statement of net position accounts are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountBalanceSheetCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The function describes the activity for which a service or material object is acquired. The functions of an organization are classified into five broad areas: instruction, support services, operation of non-instructional services, facilities acquisition and construction, and debt service. Functions are further classified into sub functions.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureFunctionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'This classification is used to describe the service or commodity obtained as the result of a specific expenditure. Nine major object categories have codes ending in 00 and are further subdivided.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureObjectCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The frequency at which a service is planned to occur or has occurred.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyOfService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The individual''s status in completing exams required for graduate or doctoral degree programs.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGraduateOrDoctoralExamResultsStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of whether the offense was primary or secondary in nature when a single incident included more than one type of offense.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentMultipleOffenseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication of the occurrence of physical injury to the perpetrator(s) (participants) involved in the incident and‚ if so‚ the level of injury sustained.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPerpetratorInjuryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The role or type of participation of a person in a discipline incident.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncidentPersonRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'The types of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramPlannedServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'An indication that this course has an end of course examination required by the SEA or LEA.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12EndOfCourseRequirement', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'Indicates that the learning resource is compatible with the referenced accessibility application programming interface (API).', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessAPIType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Def_Desc', @value=N'A characteristic of the described learning resource that is physiologically dangerous to some users.', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000002', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000004', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicHonorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000010', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000011', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAypStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000012', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdministrativeFundingControl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000015', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAlternativeSchoolFocus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000021', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicSubject', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentParticipationIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionAssessmentReportingMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000029', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000038', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCarnegieBasicClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000043', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000045', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCipVersion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000048', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefControlOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000049', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectiveActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000050', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCountry', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000057', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseGpaApplicability', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000061', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelCharacteristic', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000065', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseRepeatCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000071', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditTypeEarned', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000075', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCteGraduationRateInclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000076', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAttendanceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000079', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDependencyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000087', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12StaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000089', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmailType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000091', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefElementaryMiddleAdditional', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000092', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000093', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEndOfTermStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000094', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000095', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000096', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000099', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEntryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000106', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCohortExclusion', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000108', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000110', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000113', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000123', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGpaWeightedIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000134', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGunFreeSchoolsActReportingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000138', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolDiplomaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000140', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHighSchoolGraduationRateIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000146', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHomelessNighttimeResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000164', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncreasedLearningTimeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000167', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstitutionTelephoneType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000169', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInstructionalActivityHours', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000170', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIntegratedTechnologyStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000173', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLeaImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLevelOfInstitution', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000181', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMagnetSpecialProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000186', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000187', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000188', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000194', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeglectedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisaType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000198', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTimeForCompletionUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000207', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParaprofessionalQualification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000208', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefParticipationStatusAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000216', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrekindergartenEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000217', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPreKEligibleAgesNonIDEA', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000218', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000220', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalEducationJobClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000221', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProficiencyTargetAyp', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000222', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000224', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramLengthHoursType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000225', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000227', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPublicSchoolChoiceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000228', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentReasonNotTested', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000229', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityRecognitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000230', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReconstitutedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000232', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRestructuringAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000238', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementFunds', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000239', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSigInterventionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000240', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000241', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000242', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000255', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSex', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSingleSexClassStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000260', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpecialEducationExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000266', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStandardizedAdmissionTest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000267', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefState', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000272', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsStudentLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSupportServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialBasis', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeachingCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000280', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000280', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonTelephoneNumberType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000281', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000282', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIInstructionalServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramStaffCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000284', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleIProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000285', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTitleISchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000289', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefK12LeaTitleISupportService', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000296', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferReady', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000297', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTuitionResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000299', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefUSCitizenshipStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000304', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000305', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProofOfResidencyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000308', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVisionScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000309', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHearingScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000310', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000314', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentalScreeningStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000315', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEvaluationFinding', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000316', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLanguageUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000317', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6392Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000320', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000321', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFoodServiceParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000325', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSchoolFoodServiceProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000333', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFamilyIncomeSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000334', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIncomeCalculationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000335', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHealthInsuranceCoverage', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000336', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDentalInsuranceCoverageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000341', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLevelOfSpecialization', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000343', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDegreeOrCertificateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000345', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodCredential', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000347', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000350', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLicenseExempt', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000353', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceOption', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000356', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEnvironmentSetting', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000357', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefQrisParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000361', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPsEnrollmentAwardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000363', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidAwardStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000369', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScoreMetricType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000383', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAccommodationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000385', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000386', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentPlatformType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000389', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionSpecialCircumstanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000390', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000392', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemCharacteristicType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000405', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000415', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentTypeAdministered', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000424', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStateANSICode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000425', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonRelationshipType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000429', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefContinuationOfServices', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'000437', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMepEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001891', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001892', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityMortgageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001897', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001905', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationRelationship', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001913', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLAudienceLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001914', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAgentRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001915', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001922', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramEntryReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001923', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefComprehensiveSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001924', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001925', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdditionalTargetedSupportAndImprovementStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001927', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTelephoneNumberListedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001931', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAwayFromSchool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001932', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceAccess', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001933', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPrimaryLearningDeviceProvider', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001935', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBarrierToInternetAccessInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001936', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetAccessTypeInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001937', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefInternetPerformanceInResidence', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001939', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdultEducationProgramExitReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001940', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWIOABarrierstoEmployment', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001943', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRace', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001945', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPersonalInformationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001946', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001958', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStaffCompensationSourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001961', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEDFactsTeacherInexperiencedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001962', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutOfFieldStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001963', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefStudentSchoolAffiliationStateDefinedStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001972', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001974', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefRecordStatusCreatorEntity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001978', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001979', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001983', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNumberOfDependentsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_GlobalId', @value=N'001990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDataCollectionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Competency Definition Testability Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefTestabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'NCES College Course Map Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNCESCollegeCourseMapCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Audience Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDAudienceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Delivery Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDDeliveryMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Approved Purpose', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityApprovedPurpose', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Credit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityCreditType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Session Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDSessionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Instructional Delivery Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDInstructionalDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Account Revenue Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAccountRevenueCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Referral Outcome', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReferralOutcome', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Professional Development Activity Target Audience', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityTargetAudience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Delivery Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceDeliveryType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Technical Assistance Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTechnicalAssistanceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Work-based Learning Opportunity Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWorkbasedLearningOpportunityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA IEP Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAIEPStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Outcome Time Point', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOutcomeTimePoint', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Method of Service Delivery', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMethodOfServiceDelivery', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'School Courses for the Exchange of Data Course Subject Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSCEDCourseSubjectArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Planned Service Frequency', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefServiceFrequency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reason for Delay of Transition Conference', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReasonDelayTransitionConf', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Activity Time Measurement Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefActivityTimeMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Item Response Score Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentItemResponseScoreStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Registration Completion Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentRegistrationCompletionStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Data Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultDataType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Assessment Result Score Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentResultScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Expenditure Level of Instruction Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialExpenditureLevelOfInstructionCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Access Rights URL', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAccessRightsUrl', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Author Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceAuthorType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Learning Resource Interaction Mode', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Connected Student Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryConnectedStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Active Student Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryActiveStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Veteran Student Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryVeteranStudentIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Admission Consideration Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Admission Consideration Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdmissionConsiderationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Billable Basis Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBillableBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Developmental Education Referral Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationReferralStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Developmental Education Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDevelopmentalEducationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Directory Information Block Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDirectoryInformationBlockStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Education Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEducationStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Local Revenue Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELLocalRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Service Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning State Revenue Source', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELStateRevenueSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Trainer Core Knowledge Area', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELTrainerCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Education Verification Method', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEducationVerificationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Veteran’s Benefit Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Financial Aid Veteran’s Benefit Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidVeteransBenefitType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Program Level', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSProgramLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Postsecondary Exit or Withdrawal Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPSExitOrWithdrawalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Reimbursement Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefReimbursementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Scheduled Well Child Screening', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefScheduledWellChildScreening', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Transfer-out Indicator', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTransferOutIndicator', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Trimester When Prenatal Care Began', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTrimesterWhenPrenatalCareBegan', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Employment Separation Reason', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELEmploymentSeparationReason', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Community-based Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunityBasedType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Early Learning Service Professional Staff Classification', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELServiceProfessionalStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'ISO 639-3 Language Code', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6393Language', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'ISO 639-5 Language Family', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefISO6395LanguageFamily', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Military Branch', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMilitaryBranch', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'DQP Categories of Learning', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDQPCategoriesOfLearning', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Charter School Management Organization Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolManagementOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Part C Eligibility Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAPartCEligibilityCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Tribal Affiliation', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTribalAffiliation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Functional Expense Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Academic Award Prerequisite Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAcademicAwardPrerequisiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'PESC Award Level Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPESCAwardLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Financial Position Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Financial Position Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBFinancialPosition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Revenue Restriction Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBRevenueRestriction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Functional Expense Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBFunctionalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance Natural Expense Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSNaturalExpense', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance GASB Scholarships and Fellowships Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSGASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Scholarships and Fellowships Revenue Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBScholarshipsandFellowshipsRevenue', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance Intercollegiate Athletics Expenses', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSIntercollegiateAthleticsExpenses', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IPEDS Finance FASB Pell Grant Transactions', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPEDSFASBPellGrantTransactions', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Progress Report Schedule', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportSchedule', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Measurement Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalMeasurementType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Goal Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPGoalType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Individualized Program Service Plan Progress Report Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIPSPProgressReportType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Goal Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Frequency Unit', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFrequencyUnit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Authorization Document Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPAuthorizationDocumentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Authorizer Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IEP Eligibility Evaluation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIEPEligibilityEvaluationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Eligibility Evaluation Category', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEAEligibilityEvaluationCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'IDEA Disability Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIDEADisabilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Assessment Method Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefAssessMethodType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Identifier System', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialIdentifierSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Status Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Intended Purpose Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefIntendedPurposeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Credential Definition Verification Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCredentialDefVerificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'CTDL Organization Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCTDLOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'O*NET-SOC Occupation Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefONETSOCOccupationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Virtual School Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefVirtualSchoolStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'National School Lunch Program Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNationalSchoolLunchProgramStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Historic Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHistoricStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Primary Use Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPrimaryUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Campus Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCampusStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Construction Date Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Construction Material Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityConstructionMaterialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Site Improvement Location Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySiteImprovementLocationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Air Distribution System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingAirDistributionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Communications Management Component System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCommMgmtComponentSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Compliance Status', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityComplianceStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility System or Component Condition', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilitySystemOrComponentCondition', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Cooling Generation System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingCoolingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Electrical System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingElectricalSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Applicable Federal Mandate Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityApplicableFederalMandateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility Federal Mandate Interest Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityFederalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Fire Protection System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingFireProtectionSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Heating Generation System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHeatingGenerationSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building HVAC System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingHVACSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Mechanical Conveying System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingMechanicalConveyingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Plumbing System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingPlumbingSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Security System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingSecuritySystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Facility State or Local Mandate Interest Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFacilityStateOrLocalMandateInterestType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_Element', @value=N'Building Technology Wiring System Type', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingTechnologyWiringSystemType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21753', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCriticalTeacherShortageCandidate', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21754', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSupervisedClinicalExperience', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21756', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationCredentialExam', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21757', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTeacherEducationExamScoreType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21763', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtIntake', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21764', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeFunctioningLevelAtPosttest', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21765', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeInstructionalProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21766', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeSpecialProgramType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21767', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefGoalsForAttendingAdultEducation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21768', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAePostsecondaryTransitionAction', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21770', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffClassification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21771', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeStaffEmploymentStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21775', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAeCertificationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21779', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefOrganizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalTechnicalCredentialType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21797', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageCollectionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21805', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefChildDevelopmentAssociateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21811', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfessionalDevelopmentFinancialSupport', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21812', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCoreKnowledgeArea', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21817', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefHigherEducationInstitutionAccreditationStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21818', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWageVerification', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21823', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELGroupSizeStandardMet', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21828', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELProgramLicenseStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21829', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEarlyChildhoodProgramEnrollmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21834', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProfitStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21852', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPopulationServed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21857', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCommunicationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21862', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERSRuralUrbanContinuumCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21869', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencyDefAssociationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21875', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBloomsTaxonomyDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21876', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefMultipleIntelligenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21877', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCompetencySetCompletionCriteria', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21879', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceCompetencyAlignmentType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21907', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefTextComplexitySystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21924', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceIntendedEndUserRole', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21928', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceInteractivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21929', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21935', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21943', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21946', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityMaximumTimeAllowedUnits', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21950', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearnerActivityAddToGradeBookFlag', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21977', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionEnrollmentStatusType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21983', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccreditationAgency', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21985', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefELFacilityLicensingStatus', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21989', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedWhileEnrolled', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21990', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmployedAfterExit', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21992', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefEmploymentLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21996', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefERAdministrativeDataSource', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22000', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWfProgramParticipation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22003', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentELDevelopmentalDomain', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22005', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefLearningResourceEducationalUse', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22016', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSubtestIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22020', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22025', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLanguageLearnerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22026', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedHazardType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22027', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSupportTool', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22028', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUsageType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22029', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedLinkIndicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22035', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleGradeType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22036', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedNumberOfBrailleDots', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22038', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleMarkType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22041', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedBrailleStatusCellType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22044', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSigningType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22045', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedAlternativeRepresentationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22046', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedSpokenSourcePreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22049', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedUserSpokenPreferenceType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22051', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedMaskingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22060', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentNeedIncreasedWhitespacingType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22072', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepMathComplexityLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22117', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefApipInteractionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22141', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentFormSectionIdentificationSystem', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22147', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22150', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentAssetIdentifierType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22166', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNaepAspectsOfReading', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22168', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseSectionDeliveryMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22173', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBuildingUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22175', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefSpaceUseType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22176', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCounty', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22178', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefWeaponType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22179', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAssessmentSessionStaffRoleType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22186', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefFinancialAidApplicationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22188', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefNeedDeterminationMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22196', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramDateType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22200', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramTransitionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22202', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefIndividualizedProgramLocation', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22210', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefProgramGiftedEligibility', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22214', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefImmunizationType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22219', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryDifficultyCategory', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22232', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefItemResponseTheoryKappaAlgorithm', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22243', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAccommodationsNeededType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22244', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAdvancedPlacementCourseCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22245', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefPDActivityEducationLevelsAddressed', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22248', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergySeverity', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22249', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefAllergyType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22253', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefBlendedLearningModelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerCluster', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22256', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCareerEducationPlanType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22258', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCharterSchoolAuthorizerType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22262', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCorrectionalEducationFacilityType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22265', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseAcademicGradeStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22267', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseApplicableEducationLevel', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22269', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditBasisType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22270', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseCreditLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22273', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseHonorsType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22274', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionMethod', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22276', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInstructionSiteType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22277', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseInteractionMode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCourseLevelType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22283', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefCreditHoursAppliedOtherProgram', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22285', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionStatusCode', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22286', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityConditionType', @level2type=NULL, @level2name=NULL -exec sp_updateextendedproperty @name=N'CEDS_URL', @value=N'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22287', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE', @level1name=N'RefDisabilityDeterminationSourceType', @level2type=NULL, @level2name=NULL - - - --------------------------------------------------------------------------- +--------------------------------------------------------------------------------------------------- ----Section 7 Update _CEDSElements and _CEDSToNDSMapping tables ---------- --------------------------------------------------------------------------- +--------------------------------------------------------------------------------------------------- PRINT N'Populate _CEDSElements table' GO @@ -85726,3621 +75569,3815 @@ IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[_CEDSElemen BEGIN DELETE FROM dbo.[_CEDSElements] INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000301', 'White', 'Race White', 'A person having origins in any of the original peoples of Europe, Middle East, or North Africa.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21659', '11', '21659', NULL, NULL) +VALUES ('000328', 'Ability Grouping Status', NULL, 'An indication of whether the school has students who are ability grouped for classroom instruction in mathematics or English/reading/language arts.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23000', '12', '23000', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000001', 'Academic Award Date', NULL, 'The year, month and day or year and month on which the academic award was conferred.', 'YYYY-MM-DD or YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23001', '12', '23001', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000002', 'Academic Award Level Conferred', NULL, 'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23002', '12', '23002', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000003', 'Academic Award Title', NULL, 'The descriptive title for the academic award.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23003', '12', '23003', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000004', 'Academic Honors Type', NULL, 'A designation of the type of academic distinctions earned by or awarded to the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23004', '12', '23004', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000005', 'Accountability Report Title', NULL, 'The title of the accountability report.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23005', '12', '23005', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000006', 'Activity Identifier', NULL, 'A unique number or alphanumeric code used in the local system to identify an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23006', '12', '23006', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000007', 'Activity Involvement Begin Date', NULL, 'The year, month and day on which the person began to participate in the activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23007', '12', '23007', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000008', 'Activity Involvement End Date', NULL, 'The year, month and day on which the person ceased to participate in the activity.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23008', '12', '23008', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000009', 'Activity Title', NULL, 'The title for a particular activity, such as a co-curricular or extra-curricular activity.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23009', '12', '23009', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000011', 'Adequate Yearly Progress Status', 'AYP Status', 'An indication of whether the state, district, or school met the Adequate Yearly Progress (AYP) requirements for the school year, as determined by the state-established criteria.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23011', '12', '23011', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000012', 'Administrative Funding Control', NULL, 'The type of education institution as classified by its funding source.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23012', '12', '23012', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000013', 'Course Aligned with Standards', NULL, 'An indication whether a course is aligned with the established standards of a curriculum framework.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23013', '12', '23013', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000014', 'Alternate Adequate Yearly Progress Approach Indicator', 'Alternate AYP Approach Indicator', 'An indication of whether the district or school used an approved alternate approach for calculating Adequate Yearly Progress (AYP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23014', '12', '23014', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000015', 'Alternative School Focus Type', NULL, 'An indication of the specific group of students whose needs the alternative school is designed to meet.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23015', '12', '23015', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000017', 'Advanced Placement Course Self Selection', 'AP Course Self Selection', 'An indication of whether enrollment via self-selection by the student is permitted for all Advanced Placement (AP) courses offered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23017', '12', '23017', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000018', 'Advanced Placement Credits Awarded', 'AP Credits Awarded', 'The number of credits awarded a student by the postsecondary institution based on successful completion of advanced placement courses and/or advanced placement tests. ', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23018', '12', '23018', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000019', 'Address Apartment Room or Suite Number', NULL, 'The apartment, room, or suite number of an address.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23019', '12', '23019', 'Updated', 'Add new DES location') +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000021', 'Assessment Academic Subject', NULL, 'The description of the academic content or subject area (e.g., arts, mathematics, reading, or a foreign language) being evaluated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23021', '12', '23021', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000024', 'Assessment Form Name', NULL, 'The name of a given assessment form.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23024', '12', '23024', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000025', 'Assessment Registration Participation Indicator', NULL, 'An indication of whether a student participated in an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23025', '12', '23025', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000026', 'Assessment Purpose', NULL, 'The reason for which an assessment is designed or delivered.', NULL, '1', 'This element might have multiple occurrences associated with any one assessment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23026', '12', '23026', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000027', 'Course Section Assessment Reporting Method', NULL, 'The method that the instructor of the course uses to report the performance and achievement of all students. It may be a qualitative method such as individualized teacher comments or a quantitative method such as a letter or a numerical grade. In some cases, more than one type of reporting method may be used.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23027', '12', '23027', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000028', 'Assessment Title', NULL, 'The title or name of the assessment.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23028', '12', '23028', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000029', 'Assessment Type', NULL, 'The category of an assessment based on format and content.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23029', '12', '23029', 'Updated', 'Add new option to option set') +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000030', 'Available Carnegie Unit Credit', NULL, 'Measured in Carnegie units, the amount of credit available to a student who successfully meets the objectives of the course. A course meeting every day for one period of the school day over the span of a school year offers one Carnegie unit. A Carnegie unit is thus a measure of "seat time" rather than a measure of attainment of the course objectives.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23030', '12', '23030', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000031', 'Awaiting Initial IDEA Evaluation Status', NULL, 'Awaiting initial evaluation for special education programs and related services under the Individuals with Disabilities Education Act (IDEA). ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23031', '12', '23031', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000728', 'Distance Education Course Enrollment', NULL, 'An individual''s enrollment in a course or courses in which the instructional content is delivered exclusively via distance education. Distance education is education that uses one or more technologies to deliver instruction to students who are separated from the instructor and to support regular and substantive interaction between the students and the instructor synchronously or asynchronously. Technologies used for instruction may include: Internet; one-way and two-way transmissions through open broadcasts, closed circuit, cable, microwave, broadband lines, fiber optics, satellite or wireless communication devices; audio conferencing; and video cassette, DVDs, and CD-ROMs, if the cassette, DVDs, and CD-ROMs are used in a course in conjunction with the technologies listed above.', NULL, '1', 'Element defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23704', '12', '23704', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000729', 'Predominant Calendar System', NULL, 'The method by which an institution structures most of its courses for the academic year.', NULL, '1', 'Definition and code set in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23705', '12', '23705', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000730', 'Standard Occupational Classification', NULL, 'A Bureau of Labor Statistics coding system for classifying occupations by work performed and, in some cases, on the skills, education and training needed to perform the work at a competent level. See https://www.bls.gov/soc/2018/major_groups.htm.', '##-####', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23707', '12', '23707', 'Updated', 'Add new DES location') +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000731', 'IPEDS Occupational Category', NULL, 'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report employees.', NULL, '1', 'IPEDS reporting categories beginning with the 2012 IPEDS survey year.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23708', '12', '23708', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000732', 'Instructional Staff Status', NULL, 'Staff whose primary function/occupational activity is primarily instruction or instruction combined with research and/or public service. Does not include medical school staff.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23709', '12', '23709', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000733', 'Medical School Staff Status', NULL, 'Staff employed by or employees working in the medical school component of a postsecondary institution or in a free standing medical school. Does not include staff employed by or employees working strictly in a hospital associated with a medical school or those who work in health or allied health schools or departments such as dentistry, veterinary medicine, nursing or dental hygiene.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23710', '12', '23710', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000734', 'Faculty Status', NULL, 'Persons identified by the institution as such and typically those whose initial assignments are made for the purpose of conducting instruction, research or public service as a principal activity (or activities). They may hold academic rank titles of professor, associate professor, assistant professor, instructor, lecturer or the equivalent of any of those academic ranks. Faculty may also include the chancellor/president, provost, vice provosts, deans, directors or the equivalent, as well as associate deans, assistant deans and executive officers of academic departments (chairpersons, heads or the equivalent) if their principal activity is instruction combined with research and/or public service. The designation as "faculty" is separate from the activities to which they may be currently assigned. For example, a newly appointed president of an institution may also be appointed as a faculty member. Graduate, instruction, and research assistants are not included in this category.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23711', '12', '23711', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000735', 'Instructional Staff Contract Length', NULL, 'The contracted teaching period for faculty.', NULL, '1', 'Option set new for IPEDS in 2012 survey year; IPEDS does not include the Less than 9-month code', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23712', '12', '23712', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000736', 'Full-time Status', NULL, 'An indication of whether an individual is employed for a standard number of hours (as determined by civil or organizational policies) in a week, month, or other period of time.', NULL, '1', 'Postsecondary: The type of appointment at the snapshot date determines whether an employee is full-time or part-time. The employee''s term of contract is not considered in making the determination of full or part-time. Causal employees (hired on an ad-hoc basis or occasional basis to meet short-term needs) and students in the College Work-Study Program (CWS) are not considered part-time staff.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23713', '12', '23713', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000737', 'Contract Type', NULL, 'The type of employment contract used by an institution.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23714', '12', '23714', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000738', 'Tenure System', NULL, 'An indicator of whether an institution has personnel positions that lead to consideration for tenure.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23715', '12', '23715', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000739', 'Instructional Staff Faculty Tenure Status', NULL, 'An indicator of the type of faculty status a person has if, by institutional definition, a staff member has faculty status.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23716', '12', '23716', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000740', 'Academic Rank', NULL, 'The academic rank of staff whose primary responsibility is instruction, research, and/or public service. Institutions without standard academic ranks should code staff whose primary responsibility is instruction, research, and/or public service as "No Academic Rank."', NULL, '1', 'Element definition and option set defined in IPEDS. Adjunct is not included since it can be determined from a combination of the elements Instructional Staff Faculty Tenure Status and Full-time Status.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23717', '12', '23717', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000741', 'Instruction Credit Type', NULL, 'A designation of the type(s) of instruction being delivered by staff whose primary responsibility is instruction. Instruction that is for "credit" can be applied toward the requirements for a postsecondary degree, diploma, certificate or other formal award.', NULL, '1', 'Element definition and option set defined in IPEDS; new collection element for the 2012 survey year', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23719', '12', '23719', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000742', 'Graduate Assistant Status', NULL, 'Graduate-level students employed on a part-time basis, not limited to, but often employed for the primary purpose of assisting in classroom or laboratory instruction or in the conduct of research. Graduate students having titles such as graduate assistant, teaching assistant, teaching associate, teaching fellow, or research assistant typically hold these positions.', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23720', '12', '23720', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000743', 'Graduate Assistant IPEDS Occupation Category', NULL, 'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report graduate assistants.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23721', '12', '23721', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000744', 'Annual Base Contractual Salary', NULL, 'The total annual base contractual salary of a person.', 'Integer - greater than or equal to 0', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23722', '12', '23722', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000745', 'Tuition - Published', NULL, 'The published tuition for first time, full-time undergraduate students (lower of in-district or in-state for public institutions). Tuition may be charged per term, per course, per credit or per program.', 'Numeric - up to 2 digits after decimal place', '0', 'The tuition rate used in the calculation of the institutional "net price" of attendance.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23723', '12', '23723', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000746', 'Tuition Unit', NULL, 'The component for which tuition is being charged. It might be a time period (term, quarter, year, etc.) or it might be an entity of education (course, credit hour, etc.).', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23725', '12', '23725', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000747', 'Required Student Fees', NULL, 'Fixed sum charged to persons for items not covered by tuition and required of such a large proportion of all students that the student who does not pay the charge is the exception.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23726', '12', '23726', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000748', 'Institutionally Controlled Housing Status', NULL, 'An indication of whether an institution has any residence hall or housing facility located on- or off-campus that is owned or controlled by an institution and used by the institution in direct support of or in a manner related to, the institution''s educational purposes.', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23727', '12', '23727', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000749', 'Room Charges', NULL, 'The charges for an academic year for rooming accommodations for a typical student sharing a room with one other student.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23728', '12', '23728', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000750', 'Board Charges', NULL, 'The charges assessed students for an academic year for the maximum meal plan available.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23729', '12', '23729', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000751', 'Books and Supplies Costs', NULL, 'The average cost for books and supplies for a typical student for an entire academic year (or program). Does not include unusual costs for special groups of students (e.g., engineering or art majors) unless they constitute the majority of students at an institution.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23730', '12', '23730', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000752', 'Other Student Expenses', NULL, 'The amount of money (estimated by the financial aid office) needed by a person to cover expenses such as laundry, transportation, and entertainment.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23731', '12', '23731', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000753', 'Price of Attendance', NULL, 'The total amount institutions estimate that undergraduate-level full-time, first-time degree-seeking students will pay to attend before financial aid is considered. This price includes tuition and fees, books and supplies, room and board, and certain other designated expenses such as transportation. These estimates are the average amounts used by the financial aid office to determine a student’s financial aid.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23732', '12', '23732', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000754', 'Comprehensive Fee', NULL, 'A single fixed amount of money charged by an institution that covers tuition, required fees, room, and board. For some institutions, this amount may also cover books and supplies.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23733', '12', '23733', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000755', 'Postsecondary Applicant', NULL, 'An individual who has fulfilled the institution’s requirements to be considered for admission (including payment or waiving of the application fee, if any) and who has been notified of one of the following actions: admission, nonadmission, placement on waiting list, or application withdrawn (by applicant or institution). Include early decision, early action, and students who began studies during summer in this cohort.', NULL, '1', 'CDS definition/instructions; first part matches IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23735', '12', '23735', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000756', 'Admitted Student', NULL, 'Applicant who has been granted an official offer to enroll in a postsecondary institution. Admitted applicants should include wait-listed students who were subsequently offered admission.', NULL, '1', 'First sentence from IPEDS, not CDS; Second sentence from CDS instructions. All options except "No" should be able to be collapsed into "Yes" for IPEDS reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23736', '12', '23736', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000757', 'Wait Listed Student', NULL, 'A person who meets the admission requirements but will only be offered a place in the class if space becomes available.', NULL, '1', 'Common Data Set definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23738', '12', '23738', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000758', 'Grade Point Average Domain', 'GPA Domain', 'The domain to which the Grade Point Average is referencing.', NULL, '1', 'Used to indicate to which academic domain a grade point element is referencing', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23739', '12', '23739', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000759', 'High School Percentile', NULL, 'The High School Rank divided by the Size of High School Graduating Class expressed as a percentage.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', 'Related Connection; linked to High School Grade Point Average Cumulative, Grade Point Average Weighted Indicator, High School Rank, and Size of High School Graduating Class
0% to 99% (where 99% corresponds to the valedictorian, 0% to the bottom rank in the class)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23740', '12', '23740', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000760', 'Postsecondary Student Housing On-Campus', NULL, 'The student resides in a residence hall or housing facility owned or controlled by an institution within the same reasonably contiguous geographic area and used by the institution in direct support of or in a manner related to, the institution''s educational purposes.', NULL, '1', 'IPEDS Definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23741', '12', '23741', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000761', 'Fraternity Participation Status', NULL, 'Student is in membership of a chiefly social organization of men students at a college or university, usually designated by Greek letters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23743', '12', '23743', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000762', 'Sorority Participation Status', NULL, 'Student is in membership in a chiefly social organization of women students at a college or university, usually designated by Greek letters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23744', '12', '23744', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000763', 'Financial Aid Applicant', NULL, 'Any applicant who submits any one of the institutionally required financial aid applications/forms, such as the Free Application for Federal Student Aid (FAFSA).', NULL, '1', 'Common Data Set definition.
Element should be used in combination with Financial Aid Applicant Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23745', '12', '23745', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000765', 'Financial Need', NULL, 'The amount of financial need as determined by an institution using the federal methodology and/or your institution''s own standards.', 'Numeric - up to 2 digits after decimal place', '0', 'Common Data Set definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23747', '12', '23747', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000766', 'Teacher Education Test Company', NULL, 'The name of the company that provides the examination used in the teacher education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23748', '12', '23748', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000767', 'Teacher Preparation Program Enrollment Status', NULL, 'An indication of whether a person is pursuing certification as a teacher.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23749', '12', '23749', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000768', 'Teacher Preparation Program Completer Status', NULL, 'An indication of whether a person completed a state-approved teacher preparation program. The fact that a person has or has not been recommended to the state for initial certification or licensure may not be used as a criterion for determining who is a program completer.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23750', '12', '23750', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000769', 'Alternative Route to Certification or Licensure', NULL, 'An indication of whether a person is enrolled in an alternative teacher preparation program as defined by Title II.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23751', '12', '23751', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000770', 'Critical Teacher Shortage Area Candidate', NULL, 'An indication of whether a person is pursuing licensure/certification in a field designated as a shortage area as defined by Title II.', NULL, '1', 'When used in conjunction with the element Classification of Instructional Program, the field of study can be determined.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23753', '12', '23753', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000771', 'Supervised Clinical Experience', NULL, 'An indication of whether a person is enrolled in a supervised clinical experience (including student teaching) as part of a teacher preparation program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23754', '12', '23754', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000772', 'Supervised Clinical Experience Clock Hours', NULL, 'An indication of the number of clock hours (minimum) a student is required to complete associated with a supervised clinical experience.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23755', '12', '23755', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000773', 'Teacher Education Credential Exam Type', NULL, 'The type of examination used to assess teacher candidate''s knowledge and skills.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23756', '12', '23756', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000774', 'Teacher Education Credential Exam Score Type', NULL, 'An indication of the type of credential exam associated with a given exam score.', 'Alphanumeric - 30 characters maximum', '0', 'Praxis I:
Reading
Mathematics
Writing

Praxis II:
Codes at http://www.ets.org/praxis/about/praxisii/content

ACTFL codes at http://www.languagetesting.com/', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23757', '12', '23757', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000775', 'Low-income Status', NULL, 'A person who receives or is a member of a family who receives a total family income in the 6 months prior to enrollment of 70 percent of the income standard for a family of that size or that does not exceed the poverty line, or the person is receiving or is a member of a family who is receiving cash assistance payments from Federal, State, or local agencies or food stamps, or the person can be designated as homeless under the McKinney Act.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23758', '12', '23758', 'Updated', 'Add new DES location') +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000776', 'Dislocated Worker Status', NULL, 'An individual who has been terminated or laid off, or who has received a notice of termination or layoff from employment, or an individual who was self-employed but is unemployed as a result of general economic conditions in the community in which the individual resides or because of natural disasters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23759', '12', '23759', 'Updated', 'Add new DES location') +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000777', 'Public Assistance Status', NULL, 'A person who receives financial assistance from Federal, State, or local government agencies, including Temporary Assistance for Needy Families or equivalent.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23760', '12', '23760', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000778', 'Rural Residency Status', NULL, 'A person who resides in a place with a population of less than 2,500 that is not near any metropolitan area with a population greater than 50,000, or in a city with adjacent areas of high density.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23761', '12', '23761', 'Updated', 'Add new DES location') +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000779', 'Adult Educational Functioning Level at Intake', NULL, 'An individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23763', '12', '23763', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000780', 'Adult Educational Functioning Level at Posttest', NULL, 'An individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23764', '12', '23764', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001077', 'Adult Education Instructional Program Type', NULL, 'The type of instructional program in which an adult is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23765', '12', '23765', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000782', 'Adult Education Special Program Type', NULL, 'The type, by location or delivery mode, of adult education instruction program in which an adult participates.', NULL, '1', 'Also see Adult Education Instructional Program Type', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23766', '12', '23766', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001079', 'Goals for Attending Adult Education', NULL, 'A person''s reasons for attending an adult education class or program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23767', '12', '23767', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000784', 'Adult Education Postsecondary Transition Action', NULL, 'The action taken with respect to postsecondary enrollment by the learner after program exit or when co-enrolled in ABE and postsecondary with respect to enrollment in a postsecondary educational or occupational skills program building on prior services or training received.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23768', '12', '23768', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001081', 'Adult Education Postsecondary Transition Date', NULL, 'The year, month and day on which a person previously enrolled in adult education entered and began to receive instructional services or training at a postsecondary institution.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23769', '12', '23769', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000786', 'Adult Education Staff Classification', NULL, 'The titles of employment, official status, or rank of adult education staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23770', '12', '23770', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001083', 'Adult Education Staff Employment Status', NULL, 'The condition under which a person has agreed to serve as an employee.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23771', '12', '23771', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000788', 'Years of Prior Adult Education Teaching Experience', NULL, 'The total number of years that a person has previously held a teaching position in one or more adult education programs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23774', '12', '23774', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001085', 'Adult Education Certification Type', NULL, 'An indication of the category of the adult education certification a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23775', '12', '23775', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000790', 'Proxy Contact Hours', NULL, 'The number of instructional hours completed by an adult enrolled in a distance learning program.', 'Numeric - up to 1 digit after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23776', '12', '23776', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000810', 'Professional Development Activity Title', NULL, 'The title of an activity designed for the purpose of developing someone professionally.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23809', '12', '23809', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001076', 'Adult Education Service Provider Identifier', NULL, 'A unique number or alphanumeric code assigned to an institution by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23777', '12', '23777', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000781', 'Adult Education Service Provider Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23778', '12', '23778', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001078', 'Adult Education Provider Type', NULL, 'The type of institution responsible for providing adult education instructional services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23779', '12', '23779', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000783', 'Professional or Technical Credential Conferred', NULL, 'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23780', '12', '23780', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('001080', 'Child Identifier', NULL, 'A unique number or alphanumeric code assigned to a child by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23781', '12', '23781', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000785', 'Child Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by programs, schools, social services, or other agencies to refer to a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23782', '12', '23782', 'Updated', 'Added new option to existing option set') +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000787', 'Family Identifier', NULL, 'A unique number or alphanumeric code assigned to a family by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23784', '12', '23784', NULL, NULL) +INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) +VALUES ('000789', 'Early Childhood Degree or Certificate Holder', NULL, 'Staff has a degree in early childhood regardless of level.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23786', '12', '23786', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000653', 'Interscholastic Sports - Male Only', NULL, 'The number of interscholastic sports in which only male students participate. Sports include distinct sports such as football, basketball, soccer but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21660', '11', '21660', NULL, NULL) +VALUES ('001086', 'Total Approved Early Childhood Credits Earned', NULL, 'Total semester credits earned in early childhood regardless of whether credits are earned as part of an early childhood degree program, other degree program or outside of a degree program.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23787', '12', '23787', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000654', 'Interscholastic Sports - Female Only', NULL, 'The number of interscholastic sports in which only female students participate. Sports include distinct sports such as football, basketball, soccer but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21661', '11', '21661', NULL, NULL) +VALUES ('000792', 'Early Learning Staff Total College Credits Earned', NULL, 'Total number of college credits earned, including all credits within a degree and outside a degree, regardless of whether they all are early childhood credits.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23791', '12', '23791', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000655', 'Interscholastic Teams - Male Only', NULL, 'The number of interscholastic teams in which only male students participate. Teams include each competitive level team in each sport, such as freshman team, junior varsity team, and varsity team but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21662', '11', '21662', NULL, NULL) +VALUES ('000793', 'Staff Education Entry Date', NULL, 'The year, month and day that a staff member began participating in an educational experience (course, educational program, or formal education activity).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23792', '12', '23792', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000656', 'Interscholastic Teams - Female Only', NULL, 'The number of interscholastic teams in which only female students participate. Teams include each competitive level team in each sport, such as freshman team, junior varsity team, and varsity team but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21663', '11', '21663', NULL, NULL) +VALUES ('000794', 'Staff Education Withdrawal Date', NULL, 'The year, month and day that an individual ceased participating in an educational experience without completing the course, educational program, or staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23793', '12', '23793', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000657', 'Interscholastic Sport Participants - Male Only', NULL, 'The number of male students who participated on an interscholastic team. A student should be counted once for each team he was on.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21664', '11', '21664', NULL, NULL) +VALUES ('000795', 'Employment End Date', NULL, 'The year, month and day on which a person ended self-employment or employment with an organization or institution.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23794', '12', '23794', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000658', 'Interscholastic Sport Participants - Female Only', NULL, 'The number of female students who participated on an interscholastic team. A student should be counted once for each team she was on.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21665', '11', '21665', NULL, NULL) +VALUES ('000796', 'Hours Worked Per Week', NULL, 'The number of hours worked per week in employment.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23795', '12', '23795', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000689', 'Competency Definition Identifier', 'Learning Standard Item Identifier, Competency Item Identifier', 'The globally unique identifier (GUID) issued by the publisher of the competency framework that uniquely identifies the definition in the hierarchy of competency definitions using a RFC 4122 compliant 32-character hexadecimal string, such as 21EC2020-3AEA-1069-A2DD-08002B30309D.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21666', '11', '21666', NULL, NULL) +VALUES ('000797', 'Hourly Wage', NULL, 'Hourly wage associated with the employment position being reported.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23796', '12', '23796', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000690', 'Competency Definition Statement', 'Learning Standard Item Statement, Competency Item Statement', 'The text of the statement. The textual content that either describes a specific competency or describes a less granular group of competencies within the taxonomy of the competency framework.', 'Alphanumeric', '0', 'Note: This element is designed to support statements from various learning standards frameworks. The Head Start Child Outcomes Framework includes statements for Domains, Elements, and Indicators. Examples from the K-12 Common Core State Standards are the domain: “Geometry", the cluster: “Understand and apply the Pythagorean Theorem,” and standard: “Apply the Pythagorean Theorem to determine unknown side lengths in right triangles in real-world and mathematical problems in two and three dimensions.”', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21667', '11', '21667', NULL, NULL) +VALUES ('000798', 'Wage Collection Code', NULL, 'Method used for the collection of wage data for an employment record.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23797', '12', '23797', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000691', 'Competency Definition Type', 'Learning Standard Item Type, Competency Item Type', 'The class of statement in the structure of statements in the Competency Framework according to a controlled vocabulary, specified as a textual label.', 'Alphanumeric - 60 characters maximum', '0', 'This property points to a class, not to instances of that class. For example, where two competencies in a competency framework have been identified respectively as \"Strand: Renaissance\" and \"Strand: Social history\", the competencyCategory for both these competencies is \"Strand\"."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21668', '11', '21668', NULL, NULL) +VALUES ('000799', 'Union Membership Status', NULL, 'An indication of whether the person is a member of a union.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23798', '12', '23798', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000692', 'Competency Definition Code', 'Learning Standard Item Code, Competency Item Code', 'A human-referenceable code designated by the publisher to identify the item in the hierarchy of competency definitions.', 'Alphanumeric - 30 characters maximum', '0', 'For example: "M.1.N.3" The code is usually not globally unique and usually has embedded meaning such as a number that represents a grade/level and letters that represent content strands.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21669', '11', '21669', NULL, NULL) +VALUES ('000804', 'Required Training Clock Hours', NULL, 'Number of clock hours of training required for providers to meet requirements of the state.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23803', '12', '23803', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000693', 'Competency Framework Identifier URI', 'Learning Standard Document Identifier URI', 'An unambiguous reference to the competency framework using a network-resolvable URI.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21670', '11', '21670', NULL, NULL) +VALUES ('000805', 'State Issuing Professional Credential or License', NULL, 'State where the professional license/credential was issued.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23804', '12', '23804', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000694', 'Competency Framework Title', 'Learning Standard Document Title', 'The name of the competency framework.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21671', '11', '21671', NULL, NULL) +VALUES ('000806', 'Child Development Associate Type', 'CDA Type', 'Type of Child Development Associate credential as defined by options.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23805', '12', '23805', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000695', 'Competency Framework Version', 'Learning Standard Document Version', 'Defines the revision of the competency framework as a version number or date.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21672', '11', '21672', NULL, NULL) +VALUES ('000807', 'Professional Association Membership Status', NULL, 'An indication of whether the person is a member of a professional organization or association.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23806', '12', '23806', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000696', 'Competency Framework Creator', 'Learning Standard Document Creator', 'The person or organization chiefly responsible for the intellectual content of the competency framework.', 'Alphanumeric - 120 characters maximum', '0', 'Implementations may choose to model this element as a repeatable field to support the case of multiple authors. Others may just use a comma delimited string for multiple authors.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21673', '11', '21673', NULL, NULL) +VALUES ('000808', 'Professional Association Name', NULL, 'The name of a professional association or organization.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23807', '12', '23807', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000697', 'Competency Framework Description', 'Learning Standard Document Description', 'A textual description of the scope and contents of the competency framework.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21674', '11', '21674', NULL, NULL) +VALUES ('000809', 'Professional Development Activity Identifier', NULL, 'A unique number or alphanumeric code assigned to the Professional Development Activity as assigned by the organization offering the training.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23808', '12', '23808', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000698', 'Competency Framework Publication Status', 'Learning Standard Document Publication Status', 'The publication status of the competency framework.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21675', '11', '21675', NULL, NULL) +VALUES ('000811', 'Professional Development Scholarship Status', NULL, 'An indication of whether a scholarship was received for the person to participate in the professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23810', '12', '23810', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000699', 'Competency Framework Jurisdiction', 'Learning Standard Document Jurisdiction', 'A legal, quasi-legal, organizational or institutional domain of the entity mandating the use of the statement--e.g., California.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21676', '11', '21676', NULL, NULL) +VALUES ('000812', 'Professional Development Financial Support Type', NULL, 'The type of financial assistance received in support of non-credit professional development activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23811', '12', '23811', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000700', 'Competency Framework Valid Start Date', 'Learning Standard Document Valid Start Date', 'The year, month and day the competency framework was adopted by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21677', '11', '21677', NULL, NULL) +VALUES ('000813', 'Early Learning Core Knowledge Area', NULL, 'A description of the core knowledge areas addressed by Early Learning professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23812', '12', '23812', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000701', 'Competency Framework Valid End Date', 'Learning Standard Document Valid End Date', 'The year, month and day the competency framework was deprecated/replaced by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21678', '11', '21678', NULL, NULL) +VALUES ('000814', 'State Approved Trainer Status', NULL, 'An indication of whether an individual has been approved as a trainer through a state process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23813', '12', '23813', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000702', 'Competency Framework Subject', 'Learning Standard Document Subject', 'The topic or academic subject of the competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21679', '11', '21679', NULL, NULL) +VALUES ('000815', 'State Approved Technical Assistance Provider Status', NULL, 'An indication of whether an individual has been approved as a technical assistance provider through a state process.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23814', '12', '23814', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000703', 'Vision Screening Date', NULL, 'The year, month and day of a vision screening.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21680', '11', '21680', NULL, NULL) +VALUES ('000816', 'Number of School-age Education Postsecondary Credit Hours', NULL, 'The number of college course credit hours an individual has successfully completed that are related to K-12 education, parks and recreation, and juvenile justice.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23815', '12', '23815', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000705', 'Hearing Screening Date', NULL, 'The year, month and day of a hearing screening.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21681', '11', '21681', NULL, NULL) +VALUES ('000818', 'Higher Education Institution Accreditation Status', NULL, 'An indication of the accreditation status of a higher education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23817', '12', '23817', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000706', 'Dental Screening Date', NULL, 'The year, month and day of a dental screening', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21682', '11', '21682', NULL, NULL) +VALUES ('000819', 'Wage Verification Code', NULL, 'An indication of whether the wage information has been verified.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23818', '12', '23818', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000707', 'Assessment Item Maximum Score', NULL, 'The maximum number of points possible for the assessment item.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21683', '11', '21683', NULL, NULL) +VALUES ('000820', 'Early Learning Class Group Identifier', NULL, 'A unique number or alphanumeric code assigned by a school, school system, a state, or other agency or entity for a particular early learning class or group.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23819', '12', '23819', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000708', 'Assessment Item Minimum Score', NULL, 'The minimum number of points possible for the assessment item.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21684', '11', '21684', NULL, NULL) +VALUES ('000821', 'Early Learning Class Group Name', NULL, 'Name of an early learning class or group.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23820', '12', '23820', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000709', 'Assessment Item Characteristic Value', NULL, 'A psychometric measure provided for an assessment item.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21685', '11', '21685', NULL, NULL) +VALUES ('000822', 'Serves Children with Special Needs', NULL, 'An indication of whether a class or group serves children with special needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23821', '12', '23821', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000710', 'Charter School Type', NULL, 'The category of charter school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21686', '11', '21686', NULL, NULL) +VALUES ('000823', 'Early Learning Class Group Curriculum Type', NULL, 'The type of curriculum used in an early learning classroom or group.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23822', '12', '23822', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000711', 'Cohort Description', NULL, 'A description of the student cohort.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21687', '11', '21687', NULL, NULL) +VALUES ('000824', 'Early Learning Group Size Standards Met', NULL, 'An indication of whether a program meets NAEYC or NAFCC standards for infant group sizes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23823', '12', '23823', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000712', 'Curriculum Framework Type', NULL, 'An indication of the standard curriculum used for this course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21688', '11', '21688', NULL, NULL) +VALUES ('000825', 'Early Learning Program Annual Operating Weeks', NULL, 'The number of operating weeks per year for an early learning program.', 'Integer - between 0 and 52', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23824', '12', '23824', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000713', 'High School Diploma Distinction Type', NULL, 'The distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21689', '11', '21689', NULL, NULL) +VALUES ('000826', 'Organization Identifier', NULL, 'A unique number or alphanumeric code assigned to an organization by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23825', '12', '23825', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000714', 'Kindergarten Program Participation Type ', NULL, 'The type of Kindergarten program the student is enrolled in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21690', '11', '21690', NULL, NULL) +VALUES ('000827', 'Organization Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23827', '12', '23827', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000715', 'Competency Definition Prerequisite Identifier', 'Learning Standard Item Prerequisite Identifier, Competency Item Prerequisite Identifier', 'The unique identifier of an immediate prerequisite Competency Definition, a competency needed prior to learning this one. (Some items may have no prerequisites while others may have one or more prerequisites. This should only be used to represent the immediate predecessors in a competency-based pathway, i.e. not prerequisites of prerequisites.)', 'Alphanumeric - 40 characters maximum', '0', 'The recommended approach is to use the entity Learning Standard Item Association instead of this data element. Learning Standard Item Association also supports associating other entities, such as Learning Resources, to learning standard items. CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces. An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21691', '11', '21691', NULL, NULL) +VALUES ('000828', 'Early Learning Program Licensing Status', NULL, 'The current licensing status for an early learning program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23828', '12', '23828', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000716', 'Program Sponsor Type', NULL, 'A type of organization providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21692', '11', '21692', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000829', 'Early Childhood Program Enrollment Type', NULL, 'The system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23829', '12', '23829', 'Updated', 'Added new option to existing option set, change option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000717', 'Assessment Performance Level Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment performance level.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21693', '11', '21693', NULL, NULL) +VALUES ('000830', 'Quality Rating and Improvement System Award Date', 'QRIS Award Date', 'Date Quality Rating and Improvement System score, level or rating was awarded.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23830', '12', '23830', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000718', 'Assessment Performance Level Label', NULL, 'A label representing the performance level appropriate for use on a report.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21694', '11', '21694', NULL, NULL) +VALUES ('000831', 'Quality Rating and Improvement System Expiration Date', 'QRIS Expiration Date', 'Date Quality Rating and Improvement System score, level or rating expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23831', '12', '23831', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000719', 'Assessment Subtest Rules', NULL, 'A description of the rules to produce a student test/subtest score from for a grouping of student item scores.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21695', '11', '21695', NULL, NULL) +VALUES ('000834', 'Facility Profit Status', NULL, 'An indication of the for-profit status of a facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23834', '12', '23834', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000722', 'Address Type for Staff', NULL, 'The address type for a staff member.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21698', '11', '21698', NULL, NULL) +VALUES ('000835', 'Number of Early Learning Fatalities', NULL, 'Number of child fatalities at the program in the past year, as defined by the State', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23835', '12', '23835', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000724', 'Assessment Item Response Score Value', NULL, 'The score given to a person''s response to an assessment item.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21700', '11', '21700', NULL, NULL) +VALUES ('000836', 'Number of Early Learning Injuries', NULL, 'Number of child injuries at the program in the past year, as defined by the State.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23836', '12', '23836', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000725', 'Competency Definition Education Level', 'Learning Standard Item Education Level, Competency Item Education Level', 'The education level, grade level or primary instructional level at which a Competency Definition is intended.', NULL, '1', 'More than one Learning Standard Grade Level may be associated with one Learning Standard Item.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21701', '11', '21701', NULL, NULL) +VALUES ('000837', 'Early Learning Program License Suspension Status', NULL, 'An indication of whether a program''s license was suspended due to violations as determined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23837', '12', '23837', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000726', 'Academic Year Designator', NULL, 'The academic year for which the data apply.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21702', '11', '21702', NULL, NULL) +VALUES ('000838', 'Early Learning Program License Revocation Status', NULL, 'An indication of whether a program''s license was revoked due to violations as determined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23838', '12', '23838', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000727', 'Academic Term Designator', NULL, 'The academic term for which the data apply.', NULL, '1', 'Needs to be used in combination with Predominant Calendar System element in order to determine if the option set is referring to a semester, quarter, or some other term length.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21703', '11', '21703', NULL, NULL) +VALUES ('000840', 'Accreditation Award Date', NULL, 'The year, month and day when an accreditation was awarded.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23840', '12', '23840', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000728', 'Distance Education Course Enrollment', NULL, 'An individual''s enrollment in a course or courses in which the instructional content is delivered exclusively via distance education. Distance education is education that uses one or more technologies to deliver instruction to students who are separated from the instructor and to support regular and substantive interaction between the students and the instructor synchronously or asynchronously. Technologies used for instruction may include: Internet; one-way and two-way transmissions through open broadcasts, closed circuit, cable, microwave, broadband lines, fiber optics, satellite or wireless communication devices; audio conferencing; and video cassette, DVDs, and CD-ROMs, if the cassette, DVDs, and CD-ROMs are used in a course in conjunction with the technologies listed above.', NULL, '1', 'Element defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21704', '11', '21704', NULL, NULL) +VALUES ('000841', 'Accreditation Expiration Date', NULL, 'The year, month and day when an accreditation expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23841', '12', '23841', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000729', 'Predominant Calendar System', NULL, 'The method by which an institution structures most of its courses for the academic year.', NULL, '1', 'Definition and code set in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21705', '11', '21705', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000842', 'Personnel Policy Type', NULL, 'Policies related to personnel in the organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23842', '12', '23842', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000730', 'Standard Occupational Classification', NULL, 'A Bureau of Labor Statistics coding system for classifying occupations by work performed and, in some cases, on the skills, education and training needed to perform the work at a competent level. See https://www.bls.gov/soc/2018/major_groups.htm.', '##-####', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21707', '11', '21707', NULL, NULL) +VALUES ('000843', 'Number of Quality Rating and Improvement System Levels', 'Number of QRIS Levels', 'Number of quality levels in the Quality Rating and Improvement System (QRIS).', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23843', '12', '23843', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000731', 'IPEDS Occupational Category', NULL, 'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report employees.', NULL, '1', 'IPEDS reporting categories beginning with the 2012 IPEDS survey year.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21708', '11', '21708', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000844', 'Number of Classrooms', NULL, 'The total number of classrooms for a program, facility, location, or other educational environment.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23844', '12', '23844', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000732', 'Instructional Staff Status', NULL, 'Staff whose primary function/occupational activity is primarily instruction or instruction combined with research and/or public service. Does not include medical school staff.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21709', '11', '21709', NULL, NULL) +VALUES ('000845', 'Program Provides Translated Materials', NULL, 'An indication of whether a program translates written materials into the individual''s home or parent''s language.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23845', '12', '23845', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000733', 'Medical School Staff Status', NULL, 'Staff employed by or employees working in the medical school component of a postsecondary institution or in a free standing medical school. Does not include staff employed by or employees working strictly in a hospital associated with a medical school or those who work in health or allied health schools or departments such as dentistry, veterinary medicine, nursing or dental hygiene.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21710', '11', '21710', NULL, NULL) +VALUES ('000847', 'Ongoing Health Screening Policy', NULL, 'An indication of whether a program requires that all children are receiving ongoing health screenings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23847', '12', '23847', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000734', 'Faculty Status', NULL, 'Persons identified by the institution as such and typically those whose initial assignments are made for the purpose of conducting instruction, research or public service as a principal activity (or activities). They may hold academic rank titles of professor, associate professor, assistant professor, instructor, lecturer or the equivalent of any of those academic ranks. Faculty may also include the chancellor/president, provost, vice provosts, deans, directors or the equivalent, as well as associate deans, assistant deans and executive officers of academic departments (chairpersons, heads or the equivalent) if their principal activity is instruction combined with research and/or public service. The designation as "faculty" is separate from the activities to which they may be currently assigned. For example, a newly appointed president of an institution may also be appointed as a faculty member. Graduate, instruction, and research assistants are not included in this category.', NULL, '1', 'As defined in IPEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21711', '11', '21711', NULL, NULL) +VALUES ('000848', 'Early Learning Program Developmental Screening Status', NULL, 'An indication of whether a program ensures that all children served by the program are receiving developmental screenings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23848', '12', '23848', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000735', 'Instructional Staff Contract Length', NULL, 'The contracted teaching period for faculty.', NULL, '1', 'Option set new for IPEDS in 2012 survey year; IPEDS does not include the Less than 9-month code', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21712', '11', '21712', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000849', 'Immunization Policy', NULL, 'An indication of whether a program has an immunization policy that specifically indicates that all children are receiving immunizations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23849', '12', '23849', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000736', 'Full-time Status', NULL, 'An indication of whether an individual is employed for a standard number of hours (as determined by civil or organizational policies) in a week, month, or other period of time.', NULL, '1', 'Postsecondary: The type of appointment at the snapshot date determines whether an employee is full-time or part-time. The employee''s term of contract is not considered in making the determination of full or part-time. Causal employees (hired on an ad-hoc basis or occasional basis to meet short-term needs) and students in the College Work-Study Program (CWS) are not considered part-time staff.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21713', '11', '21713', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000850', 'Referral Policy', NULL, 'An indication of whether the program has a policy for referrals for all children requiring them.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23850', '12', '23850', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000737', 'Contract Type', NULL, 'The type of employment contract used by an institution.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21714', '11', '21714', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000851', 'Program Health Safety Checklist Use Status', NULL, 'An indication of whether a program uses a health or safety checklist or documentation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23851', '12', '23851', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000738', 'Tenure System', NULL, 'An indicator of whether an institution has personnel positions that lead to consideration for tenure.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21715', '11', '21715', NULL, NULL) +VALUES ('000852', 'Special Circumstances Population Served', NULL, 'Program provides services to meet the needs of children in special circumstances.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23852', '12', '23852', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000739', 'Instructional Staff Faculty Tenure Status', NULL, 'An indicator of the type of faculty status a person has if, by institutional definition, a staff member has faculty status.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21716', '11', '21716', NULL, NULL) +VALUES ('000853', 'Program Provides Written Handbook', NULL, 'An indication of whether the program provides each parent with a written handbook.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23853', '12', '23853', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000740', 'Academic Rank', NULL, 'The academic rank of staff whose primary responsibility is instruction, research, and/or public service. Institutions without standard academic ranks should code staff whose primary responsibility is instruction, research, and/or public service as "No Academic Rank."', NULL, '1', 'Element definition and option set defined in IPEDS. Adjunct is not included since it can be determined from a combination of the elements Instructional Staff Faculty Tenure Status and Full-time Status.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21717', '11', '21717', NULL, NULL) +VALUES ('000854', 'Program Collects Parental Feedback', NULL, 'An indication of whether the program collects feedback from parents that informs program content and/or administration.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23854', '12', '23854', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000741', 'Instruction Credit Type', NULL, 'A designation of the type(s) of instruction being delivered by staff whose primary responsibility is instruction. Instruction that is for "credit" can be applied toward the requirements for a postsecondary degree, diploma, certificate or other formal award.', NULL, '1', 'Element definition and option set defined in IPEDS; new collection element for the 2012 survey year', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21719', '11', '21719', NULL, NULL) +VALUES ('000855', 'Program Provides Parent Involvement Opportunity', NULL, 'An indication of whether the program provides opportunities to parents to be involved with their children''s activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23855', '12', '23855', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000742', 'Graduate Assistant Status', NULL, 'Graduate-level students employed on a part-time basis, not limited to, but often employed for the primary purpose of assisting in classroom or laboratory instruction or in the conduct of research. Graduate students having titles such as graduate assistant, teaching assistant, teaching associate, teaching fellow, or research assistant typically hold these positions.', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21720', '11', '21720', NULL, NULL) +VALUES ('000856', 'Program Provides Parent Education', NULL, 'An indication of whether the program provides parent training/education/workshops.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23856', '12', '23856', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000743', 'Graduate Assistant IPEDS Occupation Category', NULL, 'The Integrated Postsecondary Education Data System (IPEDS) occupational categories used to report graduate assistants.', NULL, '1', 'Option set defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21721', '11', '21721', NULL, NULL) +VALUES ('000857', 'Parent Communication Method', NULL, 'The types of communication methods with parents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23857', '12', '23857', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000744', 'Annual Base Contractual Salary', NULL, 'The total annual base contractual salary of a person.', 'Integer - greater than or equal to 0', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21722', '11', '21722', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000858', 'Assessment Shared with Parents', NULL, 'An indication of whether assessment results are shared with parents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23858', '12', '23858', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000745', 'Tuition - Published', NULL, 'The published tuition for first time, full-time undergraduate students (lower of in-district or in-state for public institutions). Tuition may be charged per term, per course, per credit or per program.', 'Numeric - up to 2 digits after decimal place', '0', 'The tuition rate used in the calculation of the institutional "net price" of attendance.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21723', '11', '21723', NULL, NULL) +VALUES ('000859', 'Program Transition Planning Policy', NULL, 'An indication of whether a program has a transition planning policy (to center, to classroom, to school).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23859', '12', '23859', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000746', 'Tuition Unit', NULL, 'The component for which tuition is being charged. It might be a time period (term, quarter, year, etc.) or it might be an entity of education (course, credit hour, etc.).', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21725', '11', '21725', NULL, NULL) +VALUES ('000862', 'Economic Research Service Rural-Urban Continuum Code', 'ERS Rural-Urban Continuum Code', 'Rural-Urban Continuum Codes form a classification scheme that distinguishes metropolitan (metro) counties by the population size of their metro area, and nonmetropolitan (nonmetro) counties by degree of urbanization and adjacency to a metro area or areas. The metro and nonmetro categories have been subdivided into three metro and six nonmetro groupings, resulting in a nine-part county codification. The codes allow researchers working with county data to break such data into finer residential groups beyond a simple metro-nonmetro dichotomy, particularly for the analysis of trends in nonmetro areas that may be related to degree of rurality and metro proximity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23862', '12', '23862', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000747', 'Required Student Fees', NULL, 'Fixed sum charged to persons for items not covered by tuition and required of such a large proportion of all students that the student who does not pay the charge is the exception.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21726', '11', '21726', NULL, NULL) +VALUES ('000863', 'Program Follows Salary Scale', NULL, 'An indication of whether a program has a salary scale that is followed for practitioners', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23863', '12', '23863', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000748', 'Institutionally Controlled Housing Status', NULL, 'An indication of whether an institution has any residence hall or housing facility located on- or off-campus that is owned or controlled by an institution and used by the institution in direct support of or in a manner related to, the institution''s educational purposes.', NULL, '1', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21727', '11', '21727', NULL, NULL) +VALUES ('000864', 'Early Learning Program Year', NULL, 'The year the program is operating.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23864', '12', '23864', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000749', 'Room Charges', NULL, 'The charges for an academic year for rooming accommodations for a typical student sharing a room with one other student.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21728', '11', '21728', NULL, NULL) +VALUES ('000865', 'State Licensed Facility Capacity', NULL, 'The maximum number of children for which a state licensed a facility.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23865', '12', '23865', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000750', 'Board Charges', NULL, 'The charges assessed students for an academic year for the maximum meal plan available.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21729', '11', '21729', NULL, NULL) +VALUES ('000866', 'Full-Time Employee Benefits', NULL, 'The benefits offered by a program/facility/employer for full-time staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23866', '12', '23866', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000751', 'Books and Supplies Costs', NULL, 'The average cost for books and supplies for a typical student for an entire academic year (or program). Does not include unusual costs for special groups of students (e.g., engineering or art majors) unless they constitute the majority of students at an institution.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21730', '11', '21730', NULL, NULL) +VALUES ('000867', 'Part-Time Employee Benefits', NULL, 'The benefits offered by a program/facility/employer for part-time staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23867', '12', '23867', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000752', 'Other Student Expenses', NULL, 'The amount of money (estimated by the financial aid office) needed by a person to cover expenses such as laundry, transportation, and entertainment.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21731', '11', '21731', NULL, NULL) +VALUES ('000868', 'Differential Shift Pay Indicator', NULL, 'An indication of whether staff receive differential shift pay.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23868', '12', '23868', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000753', 'Price of Attendance', NULL, 'The total amount institutions estimate that undergraduate-level full-time, first-time degree-seeking students will pay to attend before financial aid is considered. This price includes tuition and fees, books and supplies, room and board, and certain other designated expenses such as transportation. These estimates are the average amounts used by the financial aid office to determine a student’s financial aid.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21732', '11', '21732', NULL, NULL) +VALUES ('000869', 'Competency Association Type', 'Learning Standard Item Association Type', 'Defines the nature of the association between a Competency Definition and an associated data object such as a Learning Resource, an Assessment Item, or even another Competency Definition.', NULL, '1', 'The Learning Standard Item Association entity defines metadata relationships between a Learning Standard Item and other objects or relationships between Learning Standard Items not otherwise defined in the normal taxonomy of the framework such as for competency-based pathways, relationships between different versions of the same learning standard, and relationships to resources.


For example, "Prerequisite" may indicate that the Associated Learning Standard Item is a Prerequisite of this Learning Standards Item. Another association may specify that a Learning Resource "Teaches" the specified Learning Standard Item, or is aligned to the "Reading Level" specified as part of the Learning Standard Item.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23869', '12', '23869', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000754', 'Comprehensive Fee', NULL, 'A single fixed amount of money charged by an institution that covers tuition, required fees, room, and board. For some institutions, this amount may also cover books and supplies.', 'Numeric - up to 2 digits after decimal place', '0', 'As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21733', '11', '21733', NULL, NULL) +VALUES ('000871', 'Competency Association Identifier URI', 'Learning Standard Item Association Identifier URI', 'A URI that establishes uniqueness of an association between a competency definition and another competency item or other objects such as learning resources.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23871', '12', '23871', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000755', 'Postsecondary Applicant', NULL, 'An individual who has fulfilled the institution’s requirements to be considered for admission (including payment or waiving of the application fee, if any) and who has been notified of one of the following actions: admission, nonadmission, placement on waiting list, or application withdrawn (by applicant or institution). Include early decision, early action, and students who began studies during summer in this cohort.', NULL, '1', 'CDS definition/instructions; first part matches IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21735', '11', '21735', NULL, NULL) +VALUES ('000912', 'Learning Resource Title', NULL, 'The title of the resource.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23912', '12', '23912', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000756', 'Admitted Student', NULL, 'Applicant who has been granted an official offer to enroll in a postsecondary institution. Admitted applicants should include wait-listed students who were subsequently offered admission.', NULL, '1', 'First sentence from IPEDS, not CDS; Second sentence from CDS instructions. All options except "No" should be able to be collapsed into "Yes" for IPEDS reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21736', '11', '21736', NULL, NULL) +VALUES ('000913', 'Learning Resource Subject Name', NULL, 'The descriptive name for the subject of the content for the learning resource.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23913', '12', '23913', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000757', 'Wait Listed Student', NULL, 'A person who meets the admission requirements but will only be offered a place in the class if space becomes available.', NULL, '1', 'Common Data Set definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21738', '11', '21738', NULL, NULL) +VALUES ('000872', 'Competency Definition Parent Identifier', 'Learning Standard Item Parent Identifier, Competency Item Parent Identifier', 'The globally unique identifier (GUID) issued by the publisher of the competency framework that uniquely identifies the parent item in the hierarchy of competency definitions using a RFC 4122 compliant 32-character hexadecimal string, such as 21EC2020-3AEA-1069-A2DD-08002B30309D.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23872', '12', '23872', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000758', 'Grade Point Average Domain', 'GPA Domain', 'The domain to which the Grade Point Average is referencing.', NULL, '1', 'Used to indicate to which academic domain a grade point element is referencing', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21739', '11', '21739', NULL, NULL) +VALUES ('000873', 'Competency Definition Parent Code', 'Learning Standard Item Parent Code, Competency Item Parent Code', 'A human-referenceable code designated by the publisher to identify the parent item in the hierarchy of competency definitions.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23873', '12', '23873', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000759', 'High School Percentile', NULL, 'The High School Rank divided by the Size of High School Graduating Class expressed as a percentage.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', 'Related Connection; linked to High School Grade Point Average Cumulative, Grade Point Average Weighted Indicator, High School Rank, and Size of High School Graduating Class
0% to 99% (where 99% corresponds to the valedictorian, 0% to the bottom rank in the class)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21740', '11', '21740', NULL, NULL) +VALUES ('000874', 'Competency Definition URL', 'Learning Standard Item URL, Competency Item URL', 'A network-resolvable Uniform Resource Locator (URL) pointing to the authoritative reference for the competency definition.', 'Alphanumeric - 512 characters maximum', '0', 'An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23874', '12', '23874', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000760', 'Postsecondary Student Housing On-Campus', NULL, 'The student resides in a residence hall or housing facility owned or controlled by an institution within the same reasonably contiguous geographic area and used by the institution in direct support of or in a manner related to, the institution''s educational purposes.', NULL, '1', 'IPEDS Definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21741', '11', '21741', NULL, NULL) +VALUES ('000875', 'Competency Definition Blooms Taxonomy Domain', 'Learning Standard Item Blooms Taxonomy Domain, Competency Item Blooms Taxonomy Domain', 'Classification of the Competency Definition using Bloom''s Taxonomy Domains. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23875', '12', '23875', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000761', 'Fraternity Participation Status', NULL, 'Student is in membership of a chiefly social organization of men students at a college or university, usually designated by Greek letters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21743', '11', '21743', NULL, NULL) +VALUES ('000876', 'Competency Definition Multiple Intelligence', 'Learning Standard Item Multiple Intelligence, Competency Item Multiple Intelligence', 'Classification of the Competency Definition using intelligences defined for Howard Earl Gardner''s Theory of Multiple Intelligences.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23876', '12', '23876', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000762', 'Sorority Participation Status', NULL, 'Student is in membership in a chiefly social organization of women students at a college or university, usually designated by Greek letters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21744', '11', '21744', NULL, NULL) +VALUES ('000877', 'Competency Set Completion Criteria', NULL, 'The criteria for the set of competencies that represent completion or partial completion of a unit, course, program, degree, certification, or other achievement/award. Specifies whether completion requires achievement of all items in the set or some number of items.', NULL, '1', 'The criteria may be ‘all’ competencies in the set or ‘at-least’ # of competencies. Sets may be nested, e.g. all in subset A and 3 of 5 from subset B.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23877', '12', '23877', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000763', 'Financial Aid Applicant', NULL, 'Any applicant who submits any one of the institutionally required financial aid applications/forms, such as the Free Application for Federal Student Aid (FAFSA).', NULL, '1', 'Common Data Set definition.
Element should be used in combination with Financial Aid Applicant Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21745', '11', '21745', NULL, NULL) +VALUES ('000878', 'Competency Set Completion Criteria Threshold', NULL, 'The minimum number of competencies in the set that must be achieved for completion or partial completion of a unit, course, program, degree, certification, or other achievement/award.', 'Integer - greater than or equal to 0', '0', 'Used to define the completion criteria when Competency Set Completion Criteria is "At Least". Not used when Competency Set Completion Criteria is "All".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23878', '12', '23878', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000765', 'Financial Need', NULL, 'The amount of financial need as determined by an institution using the federal methodology and/or your institution''s own standards.', 'Numeric - up to 2 digits after decimal place', '0', 'Common Data Set definition', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21747', '11', '21747', NULL, NULL) +VALUES ('000879', 'Learning Resource Competency Alignment Type', NULL, 'The alignment relationship between the resource and a competency definition object.', NULL, '1', 'A community of SEAs have agreed to use a limited set of Learning Resource Competency Alignment Type options when tagging learning resources in shared resource repositories. Those options are assesses, teaches, and requires.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23879', '12', '23879', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000766', 'Teacher Education Test Company', NULL, 'The name of the company that provides the examination used in the teacher education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21748', '11', '21748', NULL, NULL) +VALUES ('000880', 'Competency Framework Language', 'Learning Standard Document Language', 'The default language of the text used for the content in the competency framework.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23880', '12', '23880', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000767', 'Teacher Preparation Program Enrollment Status', NULL, 'An indication of whether a person is pursuing certification as a teacher.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21749', '11', '21749', NULL, NULL) +VALUES ('000881', 'Competency Definition Language', 'Learning Standard Item Language, Competency Item Language', 'The default language of the text used for the content in the competency definition statement.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23881', '12', '23881', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000768', 'Teacher Preparation Program Completer Status', NULL, 'An indication of whether a person completed a state-approved teacher preparation program. The fact that a person has or has not been recommended to the state for initial certification or licensure may not be used as a criterion for determining who is a program completer.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21750', '11', '21750', NULL, NULL) +VALUES ('000882', 'Competency Framework License', 'Learning Standard Document License', 'A legal document giving official permission to do something with the competency framework.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23882', '12', '23882', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000769', 'Alternative Route to Certification or Licensure', NULL, 'An indication of whether a person is enrolled in an alternative teacher preparation program as defined by Title II.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21751', '11', '21751', NULL, NULL) +VALUES ('000883', 'Competency Definition License', 'Learning Standard Item License, Competency Item License', 'The full text or URL reference to a legal document giving official permission to do something with the competency definition statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23883', '12', '23883', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000770', 'Critical Teacher Shortage Area Candidate', NULL, 'An indication of whether a person is pursuing licensure/certification in a field designated as a shortage area as defined by Title II.', NULL, '1', 'When used in conjunction with the element Classification of Instructional Program, the field of study can be determined.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21753', '11', '21753', NULL, NULL) +VALUES ('000884', 'Competency Framework Publisher', 'Learning Standard Document Publisher', 'The entity responsible for making the competency framework available.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23884', '12', '23884', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000771', 'Supervised Clinical Experience', NULL, 'An indication of whether a person is enrolled in a supervised clinical experience (including student teaching) as part of a teacher preparation program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21754', '11', '21754', NULL, NULL) +VALUES ('000885', 'Competency Framework Rights', 'Learning Standard Document Rights', 'The information about rights held in and over the resource.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23885', '12', '23885', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000772', 'Supervised Clinical Experience Clock Hours', NULL, 'An indication of the number of clock hours (minimum) a student is required to complete associated with a supervised clinical experience.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21755', '11', '21755', NULL, NULL) +VALUES ('000886', 'Competency Framework Rights Holder', 'Learning Standard Document Rights Holder', 'The person or organization owning or managing rights over the competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23886', '12', '23886', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000773', 'Teacher Education Credential Exam Type', NULL, 'The type of examination used to assess teacher candidate''s knowledge and skills.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21756', '11', '21756', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000887', 'Competency Definition Concept Keyword', 'Learning Standard Item Concept Keyword, Competency Item Concept Keyword', 'The significant topicality of the competency definition using free-text keywords and phrases.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23887', '12', '23887', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000774', 'Teacher Education Credential Exam Score Type', NULL, 'An indication of the type of credential exam associated with a given exam score.', 'Alphanumeric - 30 characters maximum', '0', 'Praxis I:
Reading
Mathematics
Writing

Praxis II:
Codes at http://www.ets.org/praxis/about/praxisii/content

ACTFL codes at http://www.languagetesting.com/', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21757', '11', '21757', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000888', 'Competency Definition Concept Term', 'Learning Standard Item Concept Term, Competency Item Concept Term', 'The topicality of the competency definition, e.g. "Pythagorean Theorem," "Trigonometric functions," "Forces and energy," "Scientific method," "Oral history," etc.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23888', '12', '23888', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000775', 'Low-income Status', NULL, 'A person who receives or is a member of a family who receives a total family income in the 6 months prior to enrollment of 70 percent of the income standard for a family of that size or that does not exceed the poverty line, or the person is receiving or is a member of a family who is receiving cash assistance payments from Federal, State, or local agencies or food stamps, or the person can be designated as homeless under the McKinney Act.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21758', '11', '21758', NULL, NULL) +VALUES ('000939', 'Learner Activity Title', NULL, 'The title for work assigned to the learner, which can comprise of learning resources, activities, and assessments.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23940', '12', '23940', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000776', 'Dislocated Worker Status', NULL, 'An individual who has been terminated or laid off, or who has received a notice of termination or layoff from employment, or an individual who was self-employed but is unemployed as a result of general economic conditions in the community in which the individual resides or because of natural disasters.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21759', '11', '21759', NULL, NULL) +VALUES ('000940', 'Learner Activity Description', NULL, 'The description and context for the assignment described in a way that the learner can understand.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23941', '12', '23941', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000777', 'Public Assistance Status', NULL, 'A person who receives financial assistance from Federal, State, or local government agencies, including Temporary Assistance for Needy Families or equivalent.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21760', '11', '21760', NULL, NULL) +VALUES ('000889', 'Assessment Registration Assignor Identifier', NULL, 'The unique identifier of the person who assigned the assessment to the learner.', 'Alphanumeric - 40 characters maximum', '0', 'For example, the unique identifier of a classroom teacher or school principal.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23889', '12', '23889', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000778', 'Rural Residency Status', NULL, 'A person who resides in a place with a population of less than 2,500 that is not near any metropolitan area with a population greater than 50,000, or in a city with adjacent areas of high density.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21761', '11', '21761', NULL, NULL) +VALUES ('000890', 'Assessment Result Descriptive Feedback', NULL, 'The formative descriptive feedback that was given to a learner based on a scored/evaluated portion of an assessment as recorded in the result entity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23890', '12', '23890', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000779', 'Adult Educational Functioning Level at Intake', NULL, 'An individual''s entering skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment at program intake.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21763', '11', '21763', NULL, NULL) +VALUES ('000891', 'Assessment Item Response Descriptive Feedback', NULL, 'The formative descriptive feedback that was given to a learner in response to the results from a scored/evaluated assessment item.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23891', '12', '23891', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000780', 'Adult Educational Functioning Level at Posttest', NULL, 'An individual''s skill level, as defined by the National Reporting System for Adult Education and determined by an approved standardized assessment after a set time period or number of instructional hours.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21764', '11', '21764', NULL, NULL) +VALUES ('000892', 'Credential Definition Category Type', 'Credential Category Type', 'A category for defining the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 60 characters maximum', '0', 'Categories could include "Competency Mastered", "Competency Retained", "Course Completed", "Level Completed", "Certificate Earned", "Diploma Earned", "License Earned", "License Endorsement Earned", "Participation", "Academic Honor", "Non-Academic Honor", etc. (This element supports an emerging use case, therefore a complete set of options are not known. Future CEDS versions may define an Achievement Type element when a fixed option set can be compiled.) Note: The Achievement entity is most valuable when linked to a specific competency set that defined the learning standards related to the achievement.(SEE "Achievement Category System")', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23892', '12', '23892', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001077', 'Adult Education Instructional Program Type', NULL, 'The type of instructional program in which an adult is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21765', '11', '21765', NULL, NULL) +VALUES ('000893', 'Credential Definition Title', 'Credential Title', 'The title assigned to a qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23893', '12', '23893', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000782', 'Adult Education Special Program Type', NULL, 'The type, by location or delivery mode, of adult education instruction program in which an adult participates.', NULL, '1', 'Also see Adult Education Instructional Program Type', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21766', '11', '21766', NULL, NULL) +VALUES ('000894', 'Credential Image URL', NULL, 'The Uniform Resource Locator (URL) for the unique address of an image representing an award or badge associated with the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 512 characters maximum', '0', 'Typical use is for online display of a badge image.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23894', '12', '23894', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001079', 'Goals for Attending Adult Education', NULL, 'A person''s reasons for attending an adult education class or program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21767', '11', '21767', NULL, NULL) +VALUES ('000895', 'Credential Definition Description', 'Credential Description', 'A description of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23895', '12', '23895', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000784', 'Adult Education Postsecondary Transition Action', NULL, 'The action taken with respect to postsecondary enrollment by the learner after program exit or when co-enrolled in ABE and postsecondary with respect to enrollment in a postsecondary educational or occupational skills program building on prior services or training received.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21768', '11', '21768', NULL, NULL) +VALUES ('000896', 'Credential Definition Criteria', 'Credential Criteria', 'The criteria for competency-based completion of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23896', '12', '23896', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001081', 'Adult Education Postsecondary Transition Date', NULL, 'The year, month and day on which a person previously enrolled in adult education entered and began to receive instructional services or training at a postsecondary institution.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21769', '11', '21769', NULL, NULL) +VALUES ('000898', 'Credential Award Issuer Name', NULL, 'The name of the agent issuing the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 128 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23898', '12', '23898', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000786', 'Adult Education Staff Classification', NULL, 'The titles of employment, official status, or rank of adult education staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21770', '11', '21770', NULL, NULL) +VALUES ('000900', 'Credential Award Issuer Origin URL', NULL, 'The Uniform Resource Locator (URL) from which the qualification, achievement, personal or organizational quality, or aspect of an identity was issued.', 'Alphanumeric - 512 characters maximum', '0', 'Used only if an award is issued electronically for the achievement.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23900', '12', '23900', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001083', 'Adult Education Staff Employment Status', NULL, 'The condition under which a person has agreed to serve as an employee.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21771', '11', '21771', NULL, NULL) +VALUES ('000901', 'Credential Evidence Statement', NULL, 'A statement or reference describing the evidence that the learner met the criteria for attainment of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', 'A narrative that may connect multiple pieces of evidence OR an IRI or document describing the work that the recipient did to earn the achievement. This can be a page that links out to other pages if linking directly to the work is infeasible. May be used in an array of multiple values.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23901', '12', '23901', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000788', 'Years of Prior Adult Education Teaching Experience', NULL, 'The total number of years that a person has previously held a teaching position in one or more adult education programs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21774', '11', '21774', NULL, NULL) +VALUES ('000902', 'Goal Success Criteria', NULL, 'One or more statements that describes the criteria used by teachers and students to check for attainment of a goal.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23902', '12', '23902', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001085', 'Adult Education Certification Type', NULL, 'An indication of the category of the adult education certification a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21775', '11', '21775', NULL, NULL) +VALUES ('000903', 'Goal Description', NULL, 'A statement that describes the desired outcomes.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23903', '12', '23903', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000790', 'Proxy Contact Hours', NULL, 'The number of instructional hours completed by an adult enrolled in a distance learning program.', 'Numeric - up to 1 digit after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21776', '11', '21776', NULL, NULL) +VALUES ('000904', 'Assessment Item Possible Response Feedback Message', NULL, 'A message provided to the person being assessed after giving a response that matches the possible response.', 'Alphanumeric - 300 characters maximum', '0', 'This may be a message of affirmation for a correct answer or descriptive feedback for an incorrect answer. For example, if the item asked the question what is 2 times 3 and the learner answered 5, the Feedback Message might be "Try multiplication instead of addition."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23904', '12', '23904', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001076', 'Adult Education Service Provider Identifier', NULL, 'A unique number or alphanumeric code assigned to an institution by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21777', '11', '21777', NULL, NULL) +VALUES ('000905', 'Assessment Item Possible Response Sequence Number', NULL, 'The position of this response in the list of responses displayed, such as for a multiple choice item type.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23905', '12', '23905', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000781', 'Adult Education Service Provider Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21778', '11', '21778', NULL, NULL) +VALUES ('000906', 'Assessment Item Text Complexity Value', NULL, 'The complexity of the text using the scaling system defined by Text Complexity System, e.g. Lexile™ for assessment items with a reading passage.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23906', '12', '23906', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001078', 'Adult Education Provider Type', NULL, 'The type of institution responsible for providing adult education instructional services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21779', '11', '21779', NULL, NULL) +VALUES ('000907', 'Assessment Item Text Complexity System', NULL, 'The scaling system used to specify the text complexity of an assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23907', '12', '23907', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000783', 'Professional or Technical Credential Conferred', NULL, 'An indicator of the category of credential conferred by a state occupational licensing entity or industry organization for competency in a specific area measured by a set of pre-established standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21780', '11', '21780', NULL, NULL) +VALUES ('000908', 'Assessment Item Possible Response Value', NULL, 'The description of each distracter on an assessment item, explaining why it is there, what misunderstandings it exposes.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23908', '12', '23908', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001080', 'Child Identifier', NULL, 'A unique number or alphanumeric code assigned to a child by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21781', '11', '21781', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000910', 'Competency Definition Text Complexity System', 'Learning Standard Item Text Complexity System, Competency Item Text Complexity System', 'The scaling system used to specify the text complexity of a competency item.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23910', '12', '23910', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000785', 'Child Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by programs, schools, social services, or other agencies to refer to a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21782', '11', '21782', NULL, NULL) +VALUES ('000911', 'Learning Resource URL', NULL, 'The Uniform Resource Locator where the resource may be accessed, or a proxy for the resource, such as an information page for a commercially available resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23911', '12', '23911', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000787', 'Family Identifier', NULL, 'A unique number or alphanumeric code assigned to a family by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21784', '11', '21784', NULL, NULL) +VALUES ('001533', 'Assessment Form Algorithm Identifier', NULL, 'An identifier for algorithm used to generate a custom form for an adaptive test.', 'Alphanumeric - 40 characters maximum', '0', 'The algorithm is typically used to generate the entire assessment form, but there may be cases in which it is used to generate only one part (Assessment Form Section).

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24508', '12', '24508', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000789', 'Early Childhood Degree or Certificate Holder', NULL, 'Staff has a degree in early childhood regardless of level.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21786', '11', '21786', NULL, NULL) +VALUES ('001534', 'Assessment Form Algorithm Version', NULL, 'The version of the algorithm used to generate a custom form for an adaptive test.', 'Alphanumeric - 40 characters maximum', '0', 'The algorithm is typically used to generate the entire assessment form, but there may be cases in which it is used to generate only one part (Assessment Form Section).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24509', '12', '24509', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001086', 'Total Approved Early Childhood Credits Earned', NULL, 'Total semester credits earned in early childhood regardless of whether credits are earned as part of an early childhood degree program, other degree program or outside of a degree program.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21787', '11', '21787', NULL, NULL) +VALUES ('001535', 'Assessment Form GUID', NULL, 'The globally unique identifier of an Assessment Form.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24510', '12', '24510', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000792', 'Early Learning Staff Total College Credits Earned', NULL, 'Total number of college credits earned, including all credits within a degree and outside a degree, regardless of whether they all are early childhood credits.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21791', '11', '21791', NULL, NULL) +VALUES ('001536', 'Assessment Form Section Item Field Test Indicator', NULL, 'Indicates that the assessment item is being field tested on this form of the test, and is not to be included for scoring.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24511', '12', '24511', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000793', 'Staff Education Entry Date', NULL, 'The year, month and day that a staff member began participating in an educational experience (course, educational program, or formal education activity).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21792', '11', '21792', NULL, NULL) +VALUES ('001537', 'Assessment Item Response Descriptive Feedback Date', NULL, 'The date and time the descriptive feedback was entered in response to the results from a scored/evaluated assessment item.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24512', '12', '24512', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000794', 'Staff Education Withdrawal Date', NULL, 'The year, month and day that an individual ceased participating in an educational experience without completing the course, educational program, or staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21793', '11', '21793', NULL, NULL) +VALUES ('001538', 'Assessment Item Response Score Status', NULL, 'The status of scoring a person''s response to an assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24513', '12', '24513', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000795', 'Employment End Date', NULL, 'The year, month and day on which a person ended self-employment or employment with an organization or institution.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21794', '11', '21794', NULL, NULL) +VALUES ('001539', 'Assessment Participant Session Database Name', NULL, 'The name of the database that was used to administer the test.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24514', '12', '24514', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000796', 'Hours Worked Per Week', NULL, 'The number of hours worked per week in employment.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21795', '11', '21795', NULL, NULL) +VALUES ('001540', 'Assessment Participant Session GUID', NULL, 'A globally unique identifier for an instance of a person taking an assessment.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24515', '12', '24515', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000797', 'Hourly Wage', NULL, 'Hourly wage associated with the employment position being reported.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21796', '11', '21796', NULL, NULL) +VALUES ('001541', 'Assessment Registration Completion Status', NULL, 'The completion and scoring status for an instance of a person taking an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24516', '12', '24516', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000798', 'Wage Collection Code', NULL, 'Method used for the collection of wage data for an employment record.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21797', '11', '21797', NULL, NULL) +VALUES ('001542', 'Assessment Registration Completion Status Date Time', NULL, 'The date and time the completion and scoring status was changed for an instance of a person taking an assessment.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24517', '12', '24517', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000799', 'Union Membership Status', NULL, 'An indication of whether the person is a member of a union.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21798', '11', '21798', NULL, NULL) +VALUES ('001543', 'Assessment Result Data Type', NULL, ' The data type of the assessment result score value.', NULL, '1', 'An Assessment Result in CEDS may apply to an entire assessment or one aspect of evaluation as defined in the related “subtest” entity. The Assessment Result entity is repeatable, so there could be multiple Assessment Result Score Values each using a different Assessment Result Data Type, and each of these score values may be associated with one or more Assessment Performance Level(s).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24518', '12', '24518', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000804', 'Required Training Clock Hours', NULL, 'Number of clock hours of training required for providers to meet requirements of the state.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21803', '11', '21803', NULL, NULL) +VALUES ('001544', 'Assessment Revision Date', NULL, 'The month, day, and year that the conceptual design for the assessment was most recently revised substantially.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24519', '12', '24519', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000805', 'State Issuing Professional Credential or License', NULL, 'State where the professional license/credential was issued.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21804', '11', '21804', NULL, NULL) +VALUES ('001545', 'Assessment Result Descriptive Feedback Date Time', NULL, 'The date and time the descriptive feedback was entered for a scored/evaluated portion of an assessment.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24520', '12', '24520', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000806', 'Child Development Associate Type', 'CDA Type', 'Type of Child Development Associate credential as defined by options.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21805', '11', '21805', NULL, NULL) +VALUES ('001546', 'Assessment Result Score Standard Error', NULL, 'The measure of sampling variability and measurement error for the score, the amount of error to be expected in the score.', 'Numeric', '0', 'See http://nces.ed.gov/nationsreportcard/NDEHelp/WebHelp/standard_error.htm', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24522', '12', '24522', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000807', 'Professional Association Membership Status', NULL, 'An indication of whether the person is a member of a professional organization or association.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21806', '11', '21806', NULL, NULL) +VALUES ('001547', 'Assessment Result Score Type', NULL, 'Indicates the purpose for which this assessment score instance was recorded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24523', '12', '24523', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000808', 'Professional Association Name', NULL, 'The name of a professional association or organization.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21807', '11', '21807', NULL, NULL) +VALUES ('001548', 'Charter School Open Enrollment Indicator', NULL, 'Indicates that the charter school offers open enrollment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24524', '12', '24524', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000809', 'Professional Development Activity Identifier', NULL, 'A unique number or alphanumeric code assigned to the Professional Development Activity as assigned by the organization offering the training.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21808', '11', '21808', NULL, NULL) +VALUES ('001549', 'Course Department Name', NULL, 'Department with jurisdiction over this course.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24525', '12', '24525', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000810', 'Professional Development Activity Title', NULL, 'The title of an activity designed for the purpose of developing someone professionally.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21809', '11', '21809', NULL, NULL) +VALUES ('001550', 'Crisis Description', NULL, 'A description of the crisis that caused the displacement of students.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24526', '12', '24526', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000811', 'Professional Development Scholarship Status', NULL, 'An indication of whether a scholarship was received for the person to participate in the professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21810', '11', '21810', NULL, NULL) +VALUES ('001552', 'Crisis End Date', NULL, 'The date on which the crisis ceased to affect the agency.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24528', '12', '24528', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000812', 'Professional Development Financial Support Type', NULL, 'The type of financial assistance received in support of non-credit professional development activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21811', '11', '21811', NULL, NULL) +VALUES ('001553', 'Early Childhood Services Offered', NULL, 'A type of service offered by an organization that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24529', '12', '24529', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000813', 'Early Learning Core Knowledge Area', NULL, 'A description of the core knowledge areas addressed by Early Learning professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21812', '11', '21812', NULL, NULL) +VALUES ('001554', 'Financial Account Number', NULL, 'A number given to a financial account within a local source accounting system. The number may be a concatenation of a standard prefix for the type of account with digits added that have specific meaning within the local system.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24530', '12', '24530', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000814', 'State Approved Trainer Status', NULL, 'An indication of whether an individual has been approved as a trainer through a state process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21813', '11', '21813', NULL, NULL) +VALUES ('001555', 'Financial Expenditure Level of Instruction Code', NULL, 'This classification permits expenditures to be segregated by instructional level.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24531', '12', '24531', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000815', 'State Approved Technical Assistance Provider Status', NULL, 'An indication of whether an individual has been approved as a technical assistance provider through a state process.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21814', '11', '21814', NULL, NULL) +VALUES ('001575', 'Tuition Funded', NULL, 'Indicates that tuition for person''s participation in a program, service, or course is funded or partially funded by an external grant program.', NULL, '1', 'The initial use case is for professional development courses/programs, but could apply to student programs/courses as well.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24554', '12', '24554', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000816', 'Number of School-age Education Postsecondary Credit Hours', NULL, 'The number of college course credit hours an individual has successfully completed that are related to K-12 education, parks and recreation, and juvenile justice.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21815', '11', '21815', NULL, NULL) +VALUES ('001556', 'Financial Expenditure Project Reporting Code', NULL, 'The project/reporting code permits organizations to accumulate expenditures to meet a variety of specialized reporting requirements at the local, state, and federal levels. It is a three-digit code with the format 00X. The first two digits identify the particular funding source, authority, or expenditure purpose for which a special record or report is required. The third digit is available to identify particular projects and the fiscal year of the appropriation within that funding source. Each classification is presented by a code range followed by a description.', 'Numeric', '0', 'Based on the following code conventions specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition":

010 to 190 Local Projects. Expenditures that require specialized reporting and are funded from local sources.

200 to 390 State Projects. Expenditures that require specialized reporting for categorically funded state programs.

400 to 990 Federal Projects. Expenditures that require specialized reporting to the federal government directly or through the state.

1000 Noncategorical. Expenditures that do not require specialized reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24532', '12', '24532', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000818', 'Higher Education Institution Accreditation Status', NULL, 'An indication of the accreditation status of a higher education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21817', '11', '21817', NULL, NULL) +VALUES ('001557', 'Learner Action Actor Identifier', NULL, ' A unique identifier for the person performing the learner action. The identifier should be encrypted when integrating learning experience data across systems to secure the privacy of the learner.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24533', '12', '24533', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000819', 'Wage Verification Code', NULL, 'An indication of whether the wage information has been verified.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21818', '11', '21818', NULL, NULL) +VALUES ('001558', 'Learner Action Object Description', NULL, 'A description of the object upon which the person has performed the Learner Action.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24534', '12', '24534', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000820', 'Early Learning Class Group Identifier', NULL, 'A unique number or alphanumeric code assigned by a school, school system, a state, or other agency or entity for a particular early learning class or group.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21819', '11', '21819', NULL, NULL) +VALUES ('001559', 'Learner Action Object Identifier', NULL, 'A globally unique identifier for the object upon which the learning has performed the Learner Action which may be a URL with information about a learning resource or to launch the resource.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24535', '12', '24535', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000821', 'Early Learning Class Group Name', NULL, 'Name of an early learning class or group.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21820', '11', '21820', NULL, NULL) +VALUES ('001560', 'Learner Action Object Type', NULL, 'The type of object upon which a person has performed the Learner Action.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24536', '12', '24536', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000822', 'Serves Children with Special Needs', NULL, 'An indication of whether a class or group serves children with special needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21821', '11', '21821', NULL, NULL) +VALUES ('001561', 'Learning Resource Access Rights URL', NULL, 'A Uniform Resource Locator (URL) that identifies the conditions that govern the user’s ability to access a learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24537', '12', '24537', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000823', 'Early Learning Class Group Curriculum Type', NULL, 'The type of curriculum used in an early learning classroom or group.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21822', '11', '21822', NULL, NULL) +VALUES ('001562', 'Learning Resource Author Type', NULL, 'The type of entity, organization or person, that authored the learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24540', '12', '24540', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000824', 'Early Learning Group Size Standards Met', NULL, 'An indication of whether a program meets NAEYC or NAFCC standards for infant group sizes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21823', '11', '21823', NULL, NULL) +VALUES ('001563', 'Learning Resource Author URL', NULL, 'A Uniform Resource Locator (URL) attributed to the author of a learning resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24541', '12', '24541', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000825', 'Early Learning Program Annual Operating Weeks', NULL, 'The number of operating weeks per year for an early learning program.', 'Integer - between 0 and 52', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21824', '11', '21824', NULL, NULL) +VALUES ('001564', 'Learning Resource Date Modified', NULL, 'The most recent date that the learning resource was updated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24542', '12', '24542', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000826', 'Organization Identifier', NULL, 'A unique number or alphanumeric code assigned to an organization by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21825', '11', '21825', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001565', 'Learning Resource Interaction Mode', NULL, 'The primary type of interaction, synchronous or asynchronous, defined for the learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24543', '12', '24543', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000827', 'Organization Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21827', '11', '21827', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001566', 'Learning Resource Author Email', NULL, 'An email address for the author of the learning resource.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24544', '12', '24544', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000828', 'Early Learning Program Licensing Status', NULL, 'The current licensing status for an early learning program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21828', '11', '21828', NULL, NULL) +VALUES ('001567', 'Learning Resource Publisher Email', NULL, 'An email address for the publisher of the learning resource.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24545', '12', '24545', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000829', 'Early Childhood Program Enrollment Type', NULL, 'The system outlining activities and procedures based on a set of required services and standards in which the child is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21829', '11', '21829', NULL, NULL) +VALUES ('001568', 'Learning Resource Publisher URL', NULL, 'A Uniform Resource Locator (URL) attributed to the publisher of a learning resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24547', '12', '24547', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000830', 'Quality Rating and Improvement System Award Date', 'QRIS Award Date', 'Date Quality Rating and Improvement System score, level or rating was awarded.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21830', '11', '21830', NULL, NULL) +VALUES ('001569', 'Competency Framework Publication Date', 'Learning Standard Document Publication Date', 'The date on which this content was first published.', 'YYYY-MM-DD', '0', 'This may or may not be different from the Learning Standard Document Valid Start Date.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24548', '12', '24548', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000831', 'Quality Rating and Improvement System Expiration Date', 'QRIS Expiration Date', 'Date Quality Rating and Improvement System score, level or rating expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21831', '11', '21831', NULL, NULL) +VALUES ('001570', 'Competency Definition Sequence', 'Learning Standard Item Sequence, Competency Item Sequence', 'A set of one or more alphanumeric characters and/or symbols denoting the positioning of the statement being described in a sequential listing of statements.', 'Alphanumeric - 60 characters maximum', '0', 'Based on ASN''s ListID. (add reference URL)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24549', '12', '24549', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000834', 'Facility Profit Status', NULL, 'An indication of the for-profit status of a facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21834', '11', '21834', NULL, NULL) +VALUES ('001571', 'Person Identification System', NULL, 'A coding scheme that is used for identification of a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24550', '12', '24550', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000835', 'Number of Early Learning Fatalities', NULL, 'Number of child fatalities at the program in the past year, as defined by the State', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21835', '11', '21835', NULL, NULL) +VALUES ('001572', 'Person Identifier', NULL, 'A unique number or alphanumeric code assigned to a person by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24551', '12', '24551', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000836', 'Number of Early Learning Injuries', NULL, 'Number of child injuries at the program in the past year, as defined by the State.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21836', '11', '21836', NULL, NULL) +VALUES ('001573', 'Student Course Section Grade Narrative', NULL, 'The narrative of the student performance in a course section as submitted by the instructor.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24552', '12', '24552', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000837', 'Early Learning Program License Suspension Status', NULL, 'An indication of whether a program''s license was suspended due to violations as determined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21837', '11', '21837', NULL, NULL) +VALUES ('001574', 'Credits Required', NULL, 'The total number of credits required for a student to graduate from the school of enrollment or complete a program.', 'Numeric - up to 2 digits after decimal place', '0', 'May be compared to the sum of Number of Credits Earned for courses associated with the program of study to determine the remaining credits that the student needs to complete the program.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24553', '12', '24553', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000838', 'Early Learning Program License Revocation Status', NULL, 'An indication of whether a program''s license was revoked due to violations as determined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21838', '11', '21838', NULL, NULL) +VALUES ('001576', 'Military Connected Student Indicator', NULL, 'An indication that the student’s parent or guardian is on Active Duty, in the National Guard, or in the Reserve components of the United States military services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24555', '12', '24555', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000840', 'Accreditation Award Date', NULL, 'The year, month and day when an accreditation was awarded.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21840', '11', '21840', NULL, NULL) +VALUES ('001577', 'Active Military Status Indicator', NULL, 'Indicates whether a person is an active member of the active duty forces, national guard, or reserve forces.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24556', '12', '24556', 'Updated', 'Modify element name, defintion, technical name, option set, and DES locations') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000841', 'Accreditation Expiration Date', NULL, 'The year, month and day when an accreditation expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21841', '11', '21841', NULL, NULL) +VALUES ('001578', 'Military Veteran Status Indicator', NULL, 'An indication that a person is a veteran who served on Active Duty, in the National Guard, or in the Reserve components of the United States military services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24557', '12', '24557', 'Updated', 'Modify element name, defintion, technical name, option set, and DES locations') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000842', 'Personnel Policy Type', NULL, 'Policies related to personnel in the organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21842', '11', '21842', NULL, NULL) +VALUES ('001579', 'Admission Consideration Level', NULL, 'The level of consideration given a type of admission criteria used at an institution during the selection process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24558', '12', '24558', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000843', 'Number of Quality Rating and Improvement System Levels', 'Number of QRIS Levels', 'Number of quality levels in the Quality Rating and Improvement System (QRIS).', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21843', '11', '21843', NULL, NULL) +VALUES ('001580', 'Admission Consideration Type', NULL, 'The type of admission consideration used at an institution during the selection process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24559', '12', '24559', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000844', 'Number of Classrooms', NULL, 'The total number of classrooms for a program, facility, location, or other educational environment.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21844', '11', '21844', NULL, NULL) +VALUES ('001581', 'Staff Approval Indicator', NULL, 'Individual is approved to Work with Children', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24560', '12', '24560', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000845', 'Program Provides Translated Materials', NULL, 'An indication of whether a program translates written materials into the individual''s home or parent''s language.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21845', '11', '21845', NULL, NULL) +VALUES ('001582', 'Billable Basis Type', NULL, 'The event/action that results in a billable action.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24561', '12', '24561', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000847', 'Ongoing Health Screening Policy', NULL, 'An indication of whether a program requires that all children are receiving ongoing health screenings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21847', '11', '21847', NULL, NULL) +VALUES ('001583', 'Career Pathways Program Participation Exit Date', NULL, 'The year, month and day on which the person ceased to participate in a program.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24562', '12', '24562', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000848', 'Early Learning Program Developmental Screening Status', NULL, 'An indication of whether a program ensures that all children served by the program are receiving developmental screenings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21848', '11', '21848', NULL, NULL) +VALUES ('001584', 'Career Pathways Program Participation Start Date', NULL, 'The year, month and day on which the person began to participate in a career pathway program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24563', '12', '24563', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000849', 'Immunization Policy', NULL, 'An indication of whether a program has an immunization policy that specifically indicates that all children are receiving immunizations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21849', '11', '21849', NULL, NULL) +VALUES ('001587', 'Credential or License Award Entity', NULL, 'The name of the organization awarding the individual''s credential or license.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24566', '12', '24566', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000850', 'Referral Policy', NULL, 'An indication of whether the program has a policy for referrals for all children requiring them.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21850', '11', '21850', NULL, NULL) +VALUES ('001588', 'Developmental Education Referral Status', NULL, 'The status of a student''s referral to or placement into developmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24567', '12', '24567', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000851', 'Program Health Safety Checklist Use Status', NULL, 'An indication of whether a program uses a health or safety checklist or documentation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21851', '11', '21851', NULL, NULL) +VALUES ('001589', 'Developmental Education Type', NULL, 'An indicator of the category of developmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24568', '12', '24568', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000852', 'Special Circumstances Population Served', NULL, 'Program provides services to meet the needs of children in special circumstances.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21852', '11', '21852', NULL, NULL) +VALUES ('001590', 'Directory Information Block Status', NULL, 'An indication of whether a individual requested a Family Education Rights and Privacy Act (FERPA) block to withhold the release of the person''s directory information.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24569', '12', '24569', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000853', 'Program Provides Written Handbook', NULL, 'An indication of whether the program provides each parent with a written handbook.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21853', '11', '21853', NULL, NULL) +VALUES ('001591', 'Early Childhood Education and Assistance Program Eligibility', NULL, 'Denotes whether the family member can receive Early Childhood Education and Assistance Program (ECEAP) information for the child in question.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24570', '12', '24570', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000854', 'Program Collects Parental Feedback', NULL, 'An indication of whether the program collects feedback from parents that informs program content and/or administration.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21854', '11', '21854', NULL, NULL) +VALUES ('001592', 'Early Learning Enrollment Application Verification Date', NULL, 'Date the required document was verified for the enrollment application', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24571', '12', '24571', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000855', 'Program Provides Parent Involvement Opportunity', NULL, 'An indication of whether the program provides opportunities to parents to be involved with their children''s activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21855', '11', '21855', NULL, NULL) +VALUES ('001593', 'Early Learning Enrollment Application Document Identifier', NULL, 'Identifier for an enrollment application document record.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24572', '12', '24572', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000856', 'Program Provides Parent Education', NULL, 'An indication of whether the program provides parent training/education/workshops.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21856', '11', '21856', NULL, NULL) +VALUES ('001594', 'Early Learning Enrollment Application Document Name', NULL, 'Document name for an enrollment application document record.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24573', '12', '24573', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000857', 'Parent Communication Method', NULL, 'The types of communication methods with parents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21857', '11', '21857', NULL, NULL) +VALUES ('001595', 'Early Learning Enrollment Application Document Type', NULL, 'Document type for an enrollment application document record.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24574', '12', '24574', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000858', 'Assessment Shared with Parents', NULL, 'An indication of whether assessment results are shared with parents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21858', '11', '21858', NULL, NULL) +VALUES ('001597', 'Early Learning Application Identifier', NULL, 'Identifier for the application for enrollment or direct services filled out on behalf of a child', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24576', '12', '24576', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000859', 'Program Transition Planning Policy', NULL, 'An indication of whether a program has a transition planning policy (to center, to classroom, to school).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21859', '11', '21859', NULL, NULL) +VALUES ('001599', 'Early Learning Application Required Document', NULL, 'Identifies a specific document required for enrollment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24578', '12', '24578', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000862', 'Economic Research Service Rural-Urban Continuum Code', 'ERS Rural-Urban Continuum Code', 'Rural-Urban Continuum Codes form a classification scheme that distinguishes metropolitan (metro) counties by the population size of their metro area, and nonmetropolitan (nonmetro) counties by degree of urbanization and adjacency to a metro area or areas. The metro and nonmetro categories have been subdivided into three metro and six nonmetro groupings, resulting in a nine-part county codification. The codes allow researchers working with county data to break such data into finer residential groups beyond a simple metro-nonmetro dichotomy, particularly for the analysis of trends in nonmetro areas that may be related to degree of rurality and metro proximity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21862', '11', '21862', NULL, NULL) +VALUES ('001600', 'Early Learning Enrollment Application Verification Reason Type', NULL, 'Identifies the reason for verification of enrollment application information', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24579', '12', '24579', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000863', 'Program Follows Salary Scale', NULL, 'An indication of whether a program has a salary scale that is followed for practitioners', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21863', '11', '21863', NULL, NULL) +VALUES ('001602', 'Early Learning Education Staff Classification', NULL, 'The title/role of employment, official status, or rank of education staff', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24581', '12', '24581', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000864', 'Early Learning Program Year', NULL, 'The year the program is operating.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21864', '11', '21864', NULL, NULL) +VALUES ('001603', 'Early Learning Local Revenue Source', NULL, 'Funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24582', '12', '24582', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000865', 'State Licensed Facility Capacity', NULL, 'The maximum number of children for which a state licensed a facility.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21865', '11', '21865', NULL, NULL) +VALUES ('001604', 'Early Learning Service Type', NULL, 'A type of service provided to a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24583', '12', '24583', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000866', 'Full-Time Employee Benefits', NULL, 'The benefits offered by a program/facility/employer for full-time staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21866', '11', '21866', NULL, NULL) +VALUES ('001605', 'Early Learning State Revenue Source', NULL, ' Funds that originate at the State, and not from a federal or local source, that contribute to EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24584', '12', '24584', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000867', 'Part-Time Employee Benefits', NULL, 'The benefits offered by a program/facility/employer for part-time staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21867', '11', '21867', NULL, NULL) +VALUES ('001606', 'Early Learning Trainer Core Knowledge Area', NULL, 'A description of the core knowledge expertise of a trainer of a professional development experience.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24585', '12', '24585', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000868', 'Differential Shift Pay Indicator', NULL, 'An indication of whether staff receive differential shift pay.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21868', '11', '21868', NULL, NULL) +VALUES ('001607', 'Education Verification Method', NULL, 'The method by which the formal education is verified.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24586', '12', '24586', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000869', 'Competency Association Type', 'Learning Standard Item Association Type', 'Defines the nature of the association between a Competency Definition and an associated data object such as a Learning Resource, an Assessment Item, or even another Competency Definition.', NULL, '1', 'The Learning Standard Item Association entity defines metadata relationships between a Learning Standard Item and other objects or relationships between Learning Standard Items not otherwise defined in the normal taxonomy of the framework such as for competency-based pathways, relationships between different versions of the same learning standard, and relationships to resources.


For example, "Prerequisite" may indicate that the Associated Learning Standard Item is a Prerequisite of this Learning Standards Item. Another association may specify that a Learning Resource "Teaches" the specified Learning Standard Item, or is aligned to the "Reading Level" specified as part of the Learning Standard Item.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21869', '11', '21869', NULL, NULL) +VALUES ('001609', 'Financial Aid Veteran’s Benefit Status', NULL, 'An indication of whether a person is receiving Veteran''s benefits.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24588', '12', '24588', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000871', 'Competency Association Identifier URI', 'Learning Standard Item Association Identifier URI', 'A URI that establishes uniqueness of an association between a competency definition and another competency item or other objects such as learning resources.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21871', '11', '21871', NULL, NULL) +VALUES ('001610', 'Financial Aid Veteran’s Benefit Type', NULL, 'The type of Veteran''s benefits a person is receiving.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24589', '12', '24589', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001469', 'Rubric Criterion Category', NULL, 'A textual label for category by which Rubric Criterion may be grouped.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22441', '11', '22441', NULL, NULL) +VALUES ('001611', 'Financial Aid Year Designator', NULL, 'The school year for which the student''s financial aid application and award data apply. Generally, this is the 12-month period from July 1 to June 30.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24590', '12', '24590', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001470', 'Rubric Criterion Description', NULL, 'Text describing a criterion that must be met to demonstrate quality for a product, process, or performance task.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22442', '11', '22442', NULL, NULL) +VALUES ('001612', 'Included in Counted Family Size', NULL, 'Denotes whether this family member is counted in the family size as it pertains to the federal poverty level', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24591', '12', '24591', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001471', 'Rubric Criterion Level Description', NULL, 'Text describing one or more benchmarks that must be met to achieve a degree of achievement on a product, process, or performance task.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22443', '11', '22443', NULL, NULL) +VALUES ('001613', 'IPEDS Collection Year Designator', NULL, 'The academic year, generally extending from September to June, in which IPEDS data is collected. Most Institutional Characteristics, Salaries, Fall Staff, Fall Enrollment, and Employees by Assigned Position data are collected for the current year; Completions, 12-Month Enrollment, Student Financial Aid, and Finance data collections cover the prior year.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24592', '12', '24592', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001472', 'Rubric Criterion Level Feedback', NULL, 'Pre-defined feedback text to be relayed to the person or organization being evaluated. This may include guidance and suggestions for improvement or development.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22444', '11', '22444', NULL, NULL) +VALUES ('001614', 'Memorandum of Understanding End Date', NULL, 'The date that a Memorandum of Understanding between the Early Learning Organization and the Service Partner is determined to expire.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24593', '12', '24593', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001473', 'Rubric Criterion Level Position', NULL, 'A numeric value representing the level''s position in the list of levels defined for the Rubric Criterion.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22445', '11', '22445', NULL, NULL) +VALUES ('001615', 'Memorandum of Understanding Start Date', NULL, 'The effective date that a Memorandum of Understanding between the Early Learning Organization and the Service Partner Organization is effective.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24594', '12', '24594', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001474', 'Rubric Criterion Level Quality Label', NULL, 'A qualitative description of this degree of achievement used for column headers or row labels in tabular rubrics.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22446', '11', '22446', NULL, NULL) +VALUES ('001616', 'Postsecondary Program Level', NULL, 'The level describing the concentration of study for a postsecondary program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24595', '12', '24595', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001475', 'Rubric Criterion Level Score', NULL, 'The points awarded for achieving this level.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22447', '11', '22447', NULL, NULL) +VALUES ('001617', 'Postsecondary Exit or Withdrawal Type', NULL, ' The circumstances under which the student exited from enrollment in a postsecondary institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24596', '12', '24596', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001476', 'Rubric Criterion Position', NULL, 'A numeric value representing this criterion''s position in the criteria list for this rubric.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22448', '11', '22448', NULL, NULL) +VALUES ('001618', 'Eligibility Priority Points', NULL, 'Priority points used to determine eligibility and placement order', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24597', '12', '24597', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001477', 'Rubric Criterion Title', NULL, 'The title of the rubric criterion.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22449', '11', '22449', NULL, NULL) +VALUES ('001619', 'Professional Development Activity State Approved Status', NULL, 'An indication of whether a training activity has been approved through a state process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24598', '12', '24598', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001478', 'Rubric Criterion Weight', NULL, 'A numeric weight assigned to this Rubric Criterion, used for scored rubrics.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22450', '11', '22450', NULL, NULL) +VALUES ('001620', 'Professional Development Plan Approved by Supervisor', NULL, 'Professional development plan is approved by the employee''s supervisor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24599', '12', '24599', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001479', 'Rubric Description', NULL, 'Text describing the intended use of the rubric.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22451', '11', '22451', NULL, NULL) +VALUES ('001621', 'Professional Development Plan Completion', NULL, 'The date the professional development plan is completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24600', '12', '24600', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001480', 'School Courses for the Exchange of Data Grade Span', 'SCED Grade Span', 'The grade span for which the course is appropriate.', 'Alphanumeric - exactly 4 characters in length', '0', 'The span is represented by a four-character code with no decimals. Each grade level from 1 through 12 is represented by a two-digit code, ranging from 01 to 12; kindergarten is represented by the letters KG and prekindergarten by the letters PK.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22452', '11', '22452', NULL, NULL) +VALUES ('001622', 'Reimbursement Type', NULL, 'A billable basis which defines payment. This is how state agencies/programs move funding to the local provider/agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24601', '12', '24601', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001481', 'Referral Date', NULL, 'The date of referral.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22453', '11', '22453', NULL, NULL) +VALUES ('001623', 'Scheduled Well Child Screening', NULL, 'The individual well child visit scheduled according to the AAP recommended periodicity schedule.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24602', '12', '24602', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001482', 'Referral Outcome', NULL, 'The outcome of the referral.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22454', '11', '22454', NULL, NULL) +VALUES ('001624', 'Service Partner Description', NULL, 'A description of the type of services that the partner organization provides.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24603', '12', '24603', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001483', 'Referral Reason', NULL, 'The reason for the referral.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22455', '11', '22455', NULL, NULL) +VALUES ('001625', 'Service Partner Name', NULL, 'The name of a non-person entity such as an organization, institution, agency or business, that partners with the Early Learning Organization to provide services to enrolled children/families.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24606', '12', '24606', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001484', 'Referral Source', NULL, 'The person, program, or organization making the initial referral.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22456', '11', '22456', NULL, NULL) +VALUES ('001627', 'Site Preference Rank', NULL, 'The applicant preference that the family has for the program sites.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24608', '12', '24608', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001485', 'Referral Type Received', NULL, 'A type of service that a child or family has received a referral for.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22457', '11', '22457', NULL, NULL) +VALUES ('001628', 'Training and Technical Assistance Level', NULL, 'The level of expertise an individual training and technical assistance specialist has based on a set of established criteria.', 'Alphanumeric - 100 characters maximum', '0', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24609', '12', '24609', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001486', 'Referred To', NULL, 'The program or organization to which the child/family was referred.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22458', '11', '22458', NULL, NULL) +VALUES ('001629', 'Transfer-out Indicator', NULL, 'An indicator of whether the student has transferred to another institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24610', '12', '24610', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001487', 'Short Name of Organization', NULL, 'The name of the organization, which could be abbreviated form of the full legally accepted name.', 'Alphanumeric - 30 characters maximum', '0', 'An abbreviated name of an institution is commonly used, especially in reports and applications, e.g. a K12 school with the full legal name "Dr. Martin Luther King, Jr. Elementary School" may use "King Elementary".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22459', '11', '22459', 'Updated', 'Changed name of element, technical name, and definition. Added elements to DES context to all organization domains.') +VALUES ('001630', 'Trimester When Prenatal Care Began', NULL, 'The trimester of pregnancy in which a child''s mother began receiving prenatal health care.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24611', '12', '24611', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001488', 'Reason for Declined Services', NULL, 'The reason given for declining the recommended services.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22460', '11', '22460', NULL, NULL) +VALUES ('001631', 'Well Child Screening Received Date', NULL, 'The year, month and day of a well child visit.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24612', '12', '24612', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001489', 'Sponsoring Agency Name', NULL, 'The name of the sponsoring agency.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22461', '11', '22461', NULL, NULL) +VALUES ('001632', 'Early Learning Employment Separation Reason', NULL, 'The primary reason for the termination of the employment relationship.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24613', '12', '24613', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001490', 'State Agency Identifier', NULL, 'A unique number or alphanumeric code assigned to a state agency.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22462', '11', '22462', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001633', 'Community-based Type', NULL, 'Non domestic residence in which the early learning setting is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24614', '12', '24614', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001491', 'State Agency Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes to refer to a state agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22463', '11', '22463', 'Updated', 'Added new options to the existing option set. Changed definition for grammatical error. Added elements to DES contexts to support Early Learning needs.') +VALUES ('001634', 'Inclusive Setting Indicator', NULL, 'Indicates that services are provided to the child in a place where children of all abilities learn together.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24615', '12', '24615', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001492', 'Professional Development Activity Target Audience', NULL, 'A categorization of the audience for which the professional development activity is intended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22464', '11', '22464', NULL, NULL) +VALUES ('001635', 'Service Date', NULL, 'The year, month, and day on which a service was provided.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24616', '12', '24616', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001493', 'Technical Assistance Approved Indicator', NULL, 'Indicates whether or not the technical assistance was approved.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22465', '11', '22465', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001636', 'Early Learning Service Professional Staff Classification', NULL, 'The title/role of employment, official status, or rank of early learning service professionals', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24617', '12', '24617', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001494', 'Technical Assistance Delivery Type', NULL, 'The method of delivery of technical assistance received/provided', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22466', '11', '22466', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001637', 'ISO 639-3 Language Code', NULL, 'The code for the specific language or dialect that a person uses to communicate.', NULL, '1', 'The CEDS ISO 639-3 Language Code option set comes from the ISO 639-3 standard, the Latin-1 download. Only living language code types from the ISO standard are included in the CEDS list. Special scope and discontinued codes are excluded.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24618', '12', '24618', 'Updated', 'Add new option set, change option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001495', 'Technical Assistance Type', NULL, 'The type of technical assistance provided.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22467', '11', '22467', NULL, NULL) +VALUES ('001638', 'ISO 639-5 Language Family', NULL, 'A code for a specific language family, which supplements the language groups and families in the ISO 639-2 Language Code.', NULL, '1', 'The CEDS ISO 639-5 Language Family option set comes from the ISO 639-5 standard.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24619', '12', '24619', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001496', 'Thesis or Dissertation Title', NULL, 'The title of the thesis or dissertation.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22468', '11', '22468', NULL, NULL) +VALUES ('001639', 'Fiscal Year', NULL, 'The year an organization uses for budgeting, accounting, and reporting financials.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24620', '12', '24620', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001497', 'Union Membership Name', NULL, 'The name of the labor organization of which the person is a member.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22469', '11', '22469', NULL, NULL) +VALUES ('001640', 'Military Branch', NULL, 'A branch of the U.S. Military applicable for specifying more details when using Military Connected Student Indicator, Military Active Student Indicator, Military Veteran Student Indicator, and Military Enlistment After Exit elements.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24621', '12', '24621', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001498', 'Weeks Employed Per Year', NULL, 'The number of weeks employed by year.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22470', '11', '22470', NULL, NULL) +VALUES ('001641', 'DQP Categories of Learning', NULL, 'The Lumina Foundation''s Degree Qualifications Profile offers reference points for what students should know and be able to do upon completion of associate, bachelor''s and master''s degrees – in any field of study. The DQP Categories of Learning provide a profile of what degrees mean within which specific proficiencies may be defined.', NULL, '1', 'Based on the Degree Qualifications Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24622', '12', '24622', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001499', 'Work-based Learning Opportunity Type', NULL, 'The type of work-based learning opportunity a student participated in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22471', '11', '22471', NULL, NULL) +VALUES ('001642', 'Fiscal Period Begin Date', NULL, 'The year, month and day on which an accounting period begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24623', '12', '24623', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001500', 'IDEA Part C to Part B Notification Date', NULL, 'The date that notification is provided to the State Education Agency (SEA) and local education agency (LEA) of residence for a child potentially eligible for Part B (619) preschool services.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22472', '11', '22472', NULL, NULL) +VALUES ('001643', 'Fiscal Period End Date', NULL, 'The year, month and day on which an accounting period ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24624', '12', '24624', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001501', 'IDEA IEP Status', NULL, 'The status of an individualized services plan for a specified reporting period or on a specified date.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22473', '11', '22473', NULL, NULL) +VALUES ('001644', 'Financial Accounting Period Encumbered Value', NULL, 'The planned or obligated expense value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', 'Used for purchase order balances, the value not already included in "Financial Accounting Period Actual Value" as an expense.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24625', '12', '24625', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001503', 'Early Learning Outcome Time Point', NULL, 'The point in time for which the result is used for an outcome measure.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22475', '11', '22475', NULL, NULL) +VALUES ('001645', 'Financial Account Program Name', NULL, 'The name given to the program area in an organization''s accounting system.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24626', '12', '24626', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001504', 'Child Outcomes Summary Progress A Indicator', 'COS Progress A Indicator', 'Indicates that the child demonstrates progress in positive social-emotional skills, including social relationships.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22476', '11', '22476', NULL, NULL) +VALUES ('001646', 'Financial Account Program Number', NULL, 'A number given to a program area within an organization''s accounting system.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24627', '12', '24627', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001505', 'Child Outcomes Summary Progress B Indicator', 'COS Progress B Indicator', 'Indicates that the child demonstrates progress in acquisition and use of knowledge and skills, including early language/communication.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22477', '11', '22477', NULL, NULL) +VALUES ('001647', 'Financial Accounting Value', NULL, 'The value of a financial account balance or transaction.', 'Numeric - up to 2 digits after decimal place', '0', 'Used to represent a point-in-time transaction or snapshot of an account/fund balance. Use “Financial Accounting Period Budgeted Value”, “Financial Accounting Period Actual Value”, and “Financial Accounting Period Encumbered Value” for values representing a period (with begin and end dates).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24628', '12', '24628', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001506', 'Child Outcomes Summary Progress C Indicator', 'COS Progress C Indicator', 'Indicates that the child demonstrates progress in use of appropriate behaviors to meet their needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22478', '11', '22478', NULL, NULL) +VALUES ('001648', 'Financial Accounting Date', NULL, 'The date of a financial transaction or when an account balance is reported.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24629', '12', '24629', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001507', 'Child Outcomes Summary Rating A', 'COS Rating A', 'Child''s level of functioning in positive social-emotional skills (including social relationships).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22479', '11', '22479', NULL, NULL) +VALUES ('001649', 'Attendance Event Date', NULL, 'The date on which an attendance event takes place.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24630', '12', '24630', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001508', 'Child Outcomes Summary Rating B', 'COS Rating B', 'Child''s level of functioning in the acquisition and use of knowledge and skills (including early language/communication.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22480', '11', '22480', NULL, NULL) +VALUES ('001650', 'Charter School Management Organization Type', NULL, 'The type of organization that is a separate legal entity that 1) contracts with one or more charter schools to manage, operate, and oversee the charter schools; or 2) holds a charter, or charters, to operate multiple charter schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24631', '12', '24631', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001509', 'Child Outcomes Summary Rating C', 'COS Rating C', 'Child''s level of functioning in the use of appropriate behaviors to meet their needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22481', '11', '22481', NULL, NULL) +VALUES ('001651', 'Charter School Contract Id Number', NULL, 'The unique number the SEA assigns to the contract (or charter) that authorizes the charter school to operate in the state under the state''s charter school legislation.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24632', '12', '24632', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001510', 'Method of Service Delivery', NULL, 'The method by which the services will be provided.', 'Alphanumeric - 60 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22482', '11', '22482', NULL, NULL) +VALUES ('001652', 'Charter School Contract Approval Date', NULL, 'The effective date of the contract (or charter) that an approved charter school authorizer authorized the charter school to operate in the state under the state''s charter school legislation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24633', '12', '24633', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001511', 'Competency Definition Valid End Date', 'Learning Standard Item Valid End Date, Competency Item Valid End Date', 'The year, month and day the competency definition was deprecated/replaced by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', 'When not specified, the entity is assumed to contain the most current version of the specified competency definition. All CEDS Exit and End Dates represent the last day of the date range specified, in this case the last day the competency definition was valid.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22483', '11', '22483', NULL, NULL) +VALUES ('001653', 'Charter School Contract Renewal Date', NULL, 'The date by which the charter school must renew its contract (or charter) with an approved charter school authorizer in order to continue to operate in the state under the state''s charter school legislation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24634', '12', '24634', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001512', 'Competency Definition Valid Start Date', 'Learning Standard Item Valid Start Date, Competency Item Valid Start Date', 'The year, month and day the competency definition was adopted by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22484', '11', '22484', NULL, NULL) +VALUES ('001654', 'National School Lunch Program Direct Certification Indicator', NULL, 'Indicates that the student''s National School Lunch Program (NSLP) eligibility has been determined through direct certification.', NULL, '1', 'This element was introduced in version 6 of CEDS with plans for further development of elements needed to fully support direct certification use cases.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24635', '12', '24635', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001513', 'Other Last Name', NULL, 'A last name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other Last Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22485', '11', '22485', NULL, NULL) +VALUES ('001655', 'Course Section Maximum Capacity', NULL, 'The maximum number of students the Course Section can maintain.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24636', '12', '24636', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001514', 'Other First Name', NULL, 'A first name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other First Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22486', '11', '22486', NULL, NULL) +VALUES ('001656', 'IDEA Part C Eligibility Category', NULL, 'The category under which a person under 3 years of age is eligible for early intervention services under IDEA Part C.', NULL, '1', 'http://idea.ed.gov/part-c/statutes', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24637', '12', '24637', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001515', 'Other Middle Name', NULL, 'A middle name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other Middle Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22487', '11', '22487', NULL, NULL) +VALUES ('001657', 'Tribal Affiliation', NULL, 'The Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24638', '12', '24638', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001516', 'School Courses for the Exchange of Data Course Level', 'SCED Course Level', ' The course''s level of rigor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22488', '11', '22488', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001658', 'Credential Definition Identifier', 'Credential Identifier', 'A globally unique identifier by which the creator/owner/provider of a credential recognizes the qualification, achievement, personal or organizational quality, or aspect of an identity in transactions with the external environment.', 'Alphanumeric - 512 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces. An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24639', '12', '24639', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001517', 'School Courses for the Exchange of Data Course Code', 'SCED Course Code', 'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', NULL, '1', 'https://nces.ed.gov/forum/SCED.asp', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22490', '11', '22490', 'Updated', 'Added new options to the existing option set. Updated existing options. Added elements to DES contexts to support Early Learning needs.') +VALUES ('001659', 'IPEDS Finance FASB Functional Expense Category', NULL, 'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', NULL, '1', '(NACUBO FARM, section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24640', '12', '24640', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001518', 'School Courses for the Exchange of Data Course Subject Area', 'SCED Course Subject Area', 'The intended major subject area of the education course.', NULL, '1', 'This is a compilation of Secondary Course Subject Area and Prior to Secondary Course Subject Area. This version merges SCED and pSCED.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22491', '11', '22491', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001660', 'Credential Revoked Date', NULL, 'The date on which the qualification, achievement, personal or organizational quality, or aspect of an identity was revoked.', 'YYYY-MM-DD', '0', 'An empty string means the assertion was not revoked. Some uses (e.g. OpenBadges) may append time info in ISO 8601 format.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24641', '12', '24641', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001519', 'Individualized Program Planned Service Frequency', NULL, 'The frequency that a service is planned to be provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22492', '11', '22492', NULL, NULL) +VALUES ('001661', 'Credential Revoked Reason', NULL, 'Published reason for revocation of a credential award.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24642', '12', '24642', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001520', 'Individualized Program Planned Service Duration', NULL, 'The length, in hours, that delivery of the service is planned.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22493', '11', '22493', NULL, NULL) +VALUES ('001662', 'Credential Issuer Revocation List URL', NULL, 'The URL to a document that includes a list of credential award assertions an issuer has revoked.', 'Alphanumeric - 512 characters maximum', '0', 'See OpenBadges standard example http://openbadges.github.io/openbadges-specification/#RevocationList', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24643', '12', '24643', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001521', 'Reason for Delay of Transition Conference', NULL, 'The reasons for the delay of a transition conference.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22494', '11', '22494', NULL, NULL) +VALUES ('001663', 'Organization Image URL', NULL, 'The Uniform Resource Locator (URL) for the unique address of an image representing the Organization.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24644', '12', '24644', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001524', 'Competency Definition Previous Version Identifier', 'Learning Standard Item Previous Version Identifier, Competency Item Previous Version Identifier', 'The unique identifier of the previous version of the Competency Definition if the statement was modified.', 'Alphanumeric - 40 characters maximum', '0', 'This element supports version histories at the statement level. If corrections have been made to individual items/statements that are not part of a new Competency Framework, the elements ''Competency Definition Previous Version Identifier'' and ''Competency Definition Current Version Indicator'' provide a reference to historical versions of the current statement. In such uses the ''Competency Definition Code'' could be the same for multiple versions of a statement and ''Competency Definition URL'' could resolve to the most current version of the statement.


CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.


An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22498', '11', '22498', NULL, NULL) +VALUES ('001664', 'Credential Completion Date', NULL, 'The date on which the person''s requirements for earning a credential were met or completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24645', '12', '24645', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001525', 'Competency Definition Current Version Indicator', 'Learning Standard Item Current Version Indicator, Competency Item Current Version Indicator', 'Indicates that this is the most current version of the Competency Definition.', NULL, '1', 'This element supports version histories at the statement level. If corrections have been made to individual items/statements that are not part of a new Competency Framework, the elements ''Competency Definition Previous Version Identifier'' and ''Competency Definition Current Version Indicator'' provide a reference to historical versions of the current statement. In such uses the ''Competency Definition Code'' could be the same for multiple versions of a statement and ''Competency Definition URL'' could resolve to the most current version of the statement.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22499', '11', '22499', NULL, NULL) +VALUES ('001665', 'Academic Award Requirements URL', NULL, 'A URL to a page that describes the requirements for the credential.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24646', '12', '24646', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001526', 'Accreditation Agency Name', NULL, 'The full name of an agency that accredited a school.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22500', '11', '22500', NULL, NULL) +VALUES ('001666', 'Academic Award Prerequisite Type', NULL, 'Prerequisite conditions for earning an academic award.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24647', '12', '24647', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001527', 'Activity Time Involved', NULL, 'The amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22502', '11', '22502', NULL, NULL) +VALUES ('001667', 'Course Repeatability Maximum Number', NULL, 'The maximum number of times the course may be taken or completed for credit.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24648', '12', '24648', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001528', 'Activity Time Measurement Type', NULL, 'The type of measurement for the amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22503', '11', '22503', NULL, NULL) +VALUES ('001668', 'PESC Award Level Type', NULL, 'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24649', '12', '24649', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001529', 'APIP Interaction Sequence Number', NULL, 'The position of this APIP Interaction in a sequence of interactions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22504', '11', '22504', NULL, NULL) +VALUES ('001669', 'Credential Award Evidence URL', NULL, 'A URL to a page that describes the evidence that the learner met the criteria for attainment of the credential award.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24650', '12', '24650', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001530', 'Activity Description', NULL, 'A description of the events and procedures that take place under the purview of an organized activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22505', '11', '22505', NULL, NULL) +VALUES ('001670', 'IPEDS Finance GASB Financial Position Category', NULL, 'IPEDS financial position classification used by degree-granting public institutions using GASB Reporting Standards for reporting the assets, liabilities, and net position in a manner consistent with the Statement of Net Position in the General Purpose Financial Statements (GPFS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24651', '12', '24651', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001531', 'Assessment Administration Period Description', NULL, 'The period or window in which an assessment is supposed to be administered.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22506', '11', '22506', NULL, NULL) +VALUES ('001671', 'IPEDS Finance FASB Financial Position Category', NULL, 'IPEDS financial position classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting the assets, liabilities, and net assets in a manner consistent with the Statement of Financial Position in the General Purpose Financial Statements (GPFS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24652', '12', '24652', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001532', 'Assessment Form Adaptive Indicator', NULL, 'Indicates that the assessment form was generated using an algorithm rather than a fixed form.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22507', '11', '22507', NULL, NULL) +VALUES ('001672', 'IPEDS Finance GASB Revenue Category', NULL, 'IPEDS revenue classification used by degree-granting public institutions using GASB Reporting Standards for reporting revenues and other additions by source including all operating revenues, nonoperating revenues, and other additions for the reporting period. This includes unrestricted and restricted revenues and additions, whether expendable or nonexpendable.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24653', '12', '24653', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001533', 'Assessment Form Algorithm Identifier', NULL, 'An identifier for algorithm used to generate a custom form for an adaptive test.', 'Alphanumeric - 40 characters maximum', '0', 'The algorithm is typically used to generate the entire assessment form, but there may be cases in which it is used to generate only one part (Assessment Form Section).

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22508', '11', '22508', NULL, NULL) +VALUES ('001673', 'IPEDS Finance FASB Revenue Category', NULL, 'IPEDS revenue classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues and investment return by source in a manner consistent with the definitions from the National Association of College and University Business Officers (NACUBO) Financial Accounting and Reporting Manual for Higher Education (FARM).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24654', '12', '24654', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001534', 'Assessment Form Algorithm Version', NULL, 'The version of the algorithm used to generate a custom form for an adaptive test.', 'Alphanumeric - 40 characters maximum', '0', 'The algorithm is typically used to generate the entire assessment form, but there may be cases in which it is used to generate only one part (Assessment Form Section).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22509', '11', '22509', NULL, NULL) +VALUES ('001674', 'IPEDS Finance FASB Revenue Restriction Category', NULL, 'IPEDS revenue restriction classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues by restriction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24655', '12', '24655', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001535', 'Assessment Form GUID', NULL, 'The globally unique identifier of an Assessment Form.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22510', '11', '22510', NULL, NULL) +VALUES ('001675', 'IPEDS Finance GASB Functional Expense Category', NULL, 'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', NULL, '1', '(NACUBO FARM, section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24656', '12', '24656', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001536', 'Assessment Form Section Item Field Test Indicator', NULL, 'Indicates that the assessment item is being field tested on this form of the test, and is not to be included for scoring.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22511', '11', '22511', NULL, NULL) +VALUES ('001676', 'IPEDS Finance Natural Expense Category', NULL, 'A natural expense classification is a method of grouping expenses according to the type of costs that are incurred. The classifications tell what was purchased rather than why an expense was incurred.', NULL, '1', '(NACUBO FARM section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24657', '12', '24657', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001537', 'Assessment Item Response Descriptive Feedback Date', NULL, 'The date and time the descriptive feedback was entered in response to the results from a scored/evaluated assessment item.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22512', '11', '22512', NULL, NULL) +VALUES ('001677', 'IPEDS Finance GASB Scholarships and Fellowships Revenue Category', NULL, 'IPEDS revenue category used by degree-granting public institutions using GASB Reporting Standards for the reporting of resources received for supporting student scholarships and fellowships.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24658', '12', '24658', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001538', 'Assessment Item Response Score Status', NULL, 'The status of scoring a person''s response to an assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22513', '11', '22513', NULL, NULL) +VALUES ('001678', 'IPEDS Finance FASB Scholarships and Fellowships Revenue Category', NULL, 'IPEDS revenue category used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for the reporting of resources received for supporting student grant aid.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24659', '12', '24659', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001539', 'Assessment Participant Session Database Name', NULL, 'The name of the database that was used to administer the test.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22514', '11', '22514', NULL, NULL) +VALUES ('001679', 'IPEDS Finance Intercollegiate Athletics Expenses', NULL, 'Identifies the functional expense category where the institution allocates its intercollegiate athletics expenses.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24660', '12', '24660', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001540', 'Assessment Participant Session GUID', NULL, 'A globally unique identifier for an instance of a person taking an assessment.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22515', '11', '22515', NULL, NULL) +VALUES ('001680', 'IPEDS Finance FASB Pell Grant Transactions', NULL, 'Method of reporting Pell Grants in IPEDS by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24661', '12', '24661', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001541', 'Assessment Registration Completion Status', NULL, 'The completion and scoring status for an instance of a person taking an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22516', '11', '22516', NULL, NULL) +VALUES ('001681', 'Individualized Program Service Plan Progress Report Schedule', NULL, 'Frequency by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24662', '12', '24662', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001542', 'Assessment Registration Completion Status Date Time', NULL, 'The date and time the completion and scoring status was changed for an instance of a person taking an assessment.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22517', '11', '22517', NULL, NULL) +VALUES ('001682', 'IEP Transfer of Rights Statement', NULL, 'Beginning not later than one year before the child reaches the age of majority under State law, the IEP must include a statement that the child has been informed of the child''s rights under Part B of the Individuals with Disabilities Education Act, if any, that will transfer to the child on reaching the age of majority under §300.520.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24663', '12', '24663', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001543', 'Assessment Result Data Type', NULL, ' The data type of the assessment result score value.', NULL, '1', 'An Assessment Result in CEDS may apply to an entire assessment or one aspect of evaluation as defined in the related “subtest” entity. The Assessment Result entity is repeatable, so there could be multiple Assessment Result Score Values each using a different Assessment Result Data Type, and each of these score values may be associated with one or more Assessment Performance Level(s).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22518', '11', '22518', NULL, NULL) +VALUES ('001683', 'Individualized Program Service Plan End Date', NULL, 'The year, month and day on which the status of the service plan for a child effectively ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24664', '12', '24664', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001544', 'Assessment Revision Date', NULL, 'The month, day, and year that the conceptual design for the assessment was most recently revised substantially.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22519', '11', '22519', NULL, NULL) +VALUES ('001684', 'Individualized Program Service Plan Meeting Date', NULL, 'The date on which a child''s service plan meeting is held.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24665', '12', '24665', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001545', 'Assessment Result Descriptive Feedback Date Time', NULL, 'The date and time the descriptive feedback was entered for a scored/evaluated portion of an assessment.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22520', '11', '22520', NULL, NULL) +VALUES ('001685', 'Individualized Program Accommodation Description', NULL, 'Description of a specific accommodation or change to standards or practices that will be made.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24666', '12', '24666', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001546', 'Assessment Result Score Standard Error', NULL, 'The measure of sampling variability and measurement error for the score, the amount of error to be expected in the score.', 'Numeric', '0', 'See http://nces.ed.gov/nationsreportcard/NDEHelp/WebHelp/standard_error.htm', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22522', '11', '22522', NULL, NULL) +VALUES ('001686', 'Individualized Program Accommodation Applicability', NULL, 'Circumstances in which the accommodation or change to standards or practices will be applied.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24667', '12', '24667', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001547', 'Assessment Result Score Type', NULL, 'Indicates the purpose for which this assessment score instance was recorded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22523', '11', '22523', NULL, NULL) +VALUES ('001687', 'IEP Alternative Assessment Rationale', NULL, 'A statement of why— (A) The child cannot participate in the regular assessment; and (B) The particular alternate assessment selected is appropriate for the child.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24668', '12', '24668', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001548', 'Charter School Open Enrollment Indicator', NULL, 'Indicates that the charter school offers open enrollment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22524', '11', '22524', NULL, NULL) +VALUES ('001688', 'Individualized Program Service Plan Amendment Reason Description', NULL, 'Description of the reason changes were made to the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24669', '12', '24669', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001549', 'Course Department Name', NULL, 'Department with jurisdiction over this course.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22525', '11', '22525', NULL, NULL) +VALUES ('001689', 'Individualized Program Service Plan Amendment Description', NULL, 'Description of the changes made to the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24670', '12', '24670', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001550', 'Crisis Description', NULL, 'A description of the crisis that caused the displacement of students.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22526', '11', '22526', NULL, NULL) +VALUES ('001690', 'Goal Current Performance Description', NULL, 'Current performance explanation related to the annual goal or short-term objectives.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24671', '12', '24671', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001552', 'Crisis End Date', NULL, 'The date on which the crisis ceased to affect the agency.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22528', '11', '22528', NULL, NULL) +VALUES ('001691', 'Goal Measurement Criterion Accuracy Percent', NULL, 'The percent of correct results that will be considered to represent successful achievement of a goal.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24672', '12', '24672', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001553', 'Early Childhood Services Offered', NULL, 'A type of service offered by an organization that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22529', '11', '22529', NULL, NULL) +VALUES ('001692', 'Goal Measurement Criterion Attempts Count', NULL, 'The number of attempts representing a completed trial for assessing achievement of a goal.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24673', '12', '24673', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001554', 'Financial Account Number', NULL, 'A number given to a financial account within a local source accounting system. The number may be a concatenation of a standard prefix for the type of account with digits added that have specific meaning within the local system.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22530', '11', '22530', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001693', 'Goal Measurement Criterion Metric', NULL, 'A metric used for evaluating achievement of a goal.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24674', '12', '24674', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001555', 'Financial Expenditure Level of Instruction Code', NULL, 'This classification permits expenditures to be segregated by instructional level.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22531', '11', '22531', 'Updated', 'Changed element name and technical name. Added option to the existing option set. Added elements to DES contexts to support Early Learning needs.') +VALUES ('001694', 'Goal Measurement Criterion Success Count', NULL, 'The number of correct results that will be considered to represent successful achievement of a goal.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24675', '12', '24675', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001556', 'Financial Expenditure Project Reporting Code', NULL, 'The project/reporting code permits organizations to accumulate expenditures to meet a variety of specialized reporting requirements at the local, state, and federal levels. It is a three-digit code with the format 00X. The first two digits identify the particular funding source, authority, or expenditure purpose for which a special record or report is required. The third digit is available to identify particular projects and the fiscal year of the appropriation within that funding source. Each classification is presented by a code range followed by a description.', 'Numeric', '0', 'Based on the following code conventions specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition":

010 to 190 Local Projects. Expenditures that require specialized reporting and are funded from local sources.

200 to 390 State Projects. Expenditures that require specialized reporting for categorically funded state programs.

400 to 990 Federal Projects. Expenditures that require specialized reporting to the federal government directly or through the state.

1000 Noncategorical. Expenditures that do not require specialized reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22532', '11', '22532', 'Updated', 'Changed element name, technical name, and definition. Added elements to DES contexts to support Early Learning needs.') +VALUES ('001695', 'Goal Measurement Description', NULL, 'The procedures and/or instruments that will be used to measure achievement of a goal or short-term objective.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24676', '12', '24676', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001557', 'Learner Action Actor Identifier', NULL, ' A unique identifier for the person performing the learner action. The identifier should be encrypted when integrating learning experience data across systems to secure the privacy of the learner.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22533', '11', '22533', NULL, NULL) +VALUES ('001696', 'Goal Measurement Schedule', NULL, 'Frequency of evaluation of progress toward meeting the goal or short-term objective.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24677', '12', '24677', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001558', 'Learner Action Object Description', NULL, 'A description of the object upon which the person has performed the Learner Action.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22534', '11', '22534', NULL, NULL) +VALUES ('001697', 'Goal Measurement Type', NULL, 'Type of evidence appropriate for assessing achievement of a goal or short-term objective.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24678', '12', '24678', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001559', 'Learner Action Object Identifier', NULL, 'A globally unique identifier for the object upon which the learning has performed the Learner Action which may be a URL with information about a learning resource or to launch the resource.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22535', '11', '22535', NULL, NULL) +VALUES ('001698', 'IEP Goal Type', NULL, 'Legal category for an IEP annual goal or short-term objectives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24679', '12', '24679', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001560', 'Learner Action Object Type', NULL, 'The type of object upon which a person has performed the Learner Action.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22536', '11', '22536', NULL, NULL) +VALUES ('001699', 'Individualized Program Service Plan Progress Report Date', NULL, 'The date parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24680', '12', '24680', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001561', 'Learning Resource Access Rights URL', NULL, 'A Uniform Resource Locator (URL) that identifies the conditions that govern the user’s ability to access a learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22537', '11', '22537', NULL, NULL) +VALUES ('001700', 'Individualized Program Service Plan Progress Report Description', NULL, 'A description of the progress report used to notify parents of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24681', '12', '24681', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001562', 'Learning Resource Author Type', NULL, 'The type of entity, organization or person, that authored the learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22540', '11', '22540', NULL, NULL) +VALUES ('001701', 'Individualized Program Service Plan Progress Report Type', NULL, 'A method by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24682', '12', '24682', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001563', 'Learning Resource Author URL', NULL, 'A Uniform Resource Locator (URL) attributed to the author of a learning resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22541', '11', '22541', NULL, NULL) +VALUES ('001702', 'Goal Status Type', NULL, 'Status toward achievement of the annual goal or short-term objectives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24683', '12', '24683', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001564', 'Learning Resource Date Modified', NULL, 'The most recent date that the learning resource was updated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22542', '11', '22542', NULL, NULL) +VALUES ('001703', 'Goal Status', NULL, 'Description of status toward achievement of the annual goal or short-term objectives.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24684', '12', '24684', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001565', 'Learning Resource Interaction Mode', NULL, 'The primary type of interaction, synchronous or asynchronous, defined for the learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22543', '11', '22543', NULL, NULL) +VALUES ('001704', 'IDEA Placement Rationale', NULL, 'The rationale for the placement decision and if applicable, an explanation of the extent, if any, to which the child will not participate with nondisabled children in the regular class and in the activities described in paragraph (a)(4) of CFR. §300.320.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24685', '12', '24685', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001566', 'Learning Resource Author Email', NULL, 'An email address for the author of the learning resource.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22544', '11', '22544', NULL, NULL) +VALUES ('001705', 'IEP Present Level Academic Description', NULL, 'How the child''s disability affects the child''s academic achievement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24686', '12', '24686', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001567', 'Learning Resource Publisher Email', NULL, 'An email address for the publisher of the learning resource.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22545', '11', '22545', NULL, NULL) +VALUES ('001706', 'IEP Present Level Functional Description', NULL, 'How the child''s disability affects the child''s functional performance.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24687', '12', '24687', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001568', 'Learning Resource Publisher URL', NULL, 'A Uniform Resource Locator (URL) attributed to the publisher of a learning resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22547', '11', '22547', NULL, NULL) +VALUES ('001707', 'IEP Present Level General Education Description', NULL, 'How the child''s disability affects the child''s involvement and progress in the general education curriculum.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24688', '12', '24688', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001569', 'Competency Framework Publication Date', 'Learning Standard Document Publication Date', 'The date on which this content was first published.', 'YYYY-MM-DD', '0', 'This may or may not be different from the Learning Standard Document Valid Start Date.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22548', '11', '22548', NULL, NULL) +VALUES ('001708', 'IEP Present Level Preschool Description', NULL, 'For preschool children, as appropriate, how the disability affects the child''s participation in appropriate activities.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24689', '12', '24689', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001570', 'Competency Definition Sequence', 'Learning Standard Item Sequence, Competency Item Sequence', 'A set of one or more alphanumeric characters and/or symbols denoting the positioning of the statement being described in a sequential listing of statements.', 'Alphanumeric - 60 characters maximum', '0', 'Based on ASN''s ListID. (add reference URL)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22549', '11', '22549', NULL, NULL) +VALUES ('001709', 'IEP Present Level Student Strengths Description', NULL, 'Explanation of perceived strengths and abilities of the student.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24690', '12', '24690', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001571', 'Person Identification System', NULL, 'A coding scheme that is used for identification of a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22550', '11', '22550', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001710', 'IEP Present Level Parent Concern Description', NULL, 'Parent’s explanation of their interest in or concerns about the student’s participation in special education.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24691', '12', '24691', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001572', 'Person Identifier', NULL, 'A unique number or alphanumeric code assigned to a person by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22551', '11', '22551', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001711', 'IEP Present Level Student Concern Description', NULL, 'Student’s explanation of his or her interest in or concerns about participation in special education.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24692', '12', '24692', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001573', 'Student Course Section Grade Narrative', NULL, 'The narrative of the student performance in a course section as submitted by the instructor.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22552', '11', '22552', NULL, NULL) +VALUES ('001712', 'Declined Services Date', NULL, 'The date recommended services were declined.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24693', '12', '24693', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001574', 'Credits Required', NULL, 'The total number of credits required for a student to graduate from the school of enrollment or complete a program.', 'Numeric - up to 2 digits after decimal place', '0', 'May be compared to the sum of Number of Credits Earned for courses associated with the program of study to determine the remaining credits that the student needs to complete the program.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22553', '11', '22553', NULL, NULL) +VALUES ('001713', 'Frequency Unit', NULL, 'The unit of time by which a cycle is defined.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24694', '12', '24694', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001575', 'Tuition Funded', NULL, 'Indicates that tuition for person''s participation in a program, service, or course is funded or partially funded by an external grant program.', NULL, '1', 'The initial use case is for professional development courses/programs, but could apply to student programs/courses as well.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22554', '11', '22554', NULL, NULL) +VALUES ('001714', 'Frequency Instances Per Cycle', NULL, 'The number of recurrences within a cycle.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24695', '12', '24695', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001576', 'Military Connected Student Indicator', NULL, 'An indication that the student’s parent or guardian is on Active Duty, in the National Guard, or in the Reserve components of the United States military services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22555', '11', '22555', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001715', 'Frequency Length', NULL, 'The number of units within a repeating cycle. Used with Frequency and Frequency Units elements to describe the occurrence of repeating events such as student services delivered 3 times a week for 16 weeks.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24696', '12', '24696', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001577', 'Military Active Student Indicator', NULL, 'An indication that the student is currently serving on Active Duty, in the National Guard, or in the Reserve components of the United States military services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22556', '11', '22556', NULL, NULL) +VALUES ('001716', 'Duration Length in Minutes', NULL, 'The number of minutes in an instance.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24697', '12', '24697', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001578', 'Military Veteran Student Indicator', NULL, 'An indication that the student is a veteran who served on Active Duty, in the National Guard, or in the Reserve components of the United States military services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22557', '11', '22557', NULL, NULL) +VALUES ('001717', 'Service Extends Outside School Year', NULL, 'Determination if this service continues outside school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24698', '12', '24698', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001579', 'Admission Consideration Level', NULL, 'The level of consideration given a type of admission criteria used at an institution during the selection process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22558', '11', '22558', NULL, NULL) +VALUES ('001718', 'Service Setting Description', NULL, 'Description of the setting in which the services are delivered.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24699', '12', '24699', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001580', 'Admission Consideration Type', NULL, 'The type of admission consideration used at an institution during the selection process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22559', '11', '22559', NULL, NULL) +VALUES ('001719', 'IEP Authorization Document Type', NULL, 'Type of Individualized Education Plan document authorized.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24700', '12', '24700', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001581', 'Staff Approval Indicator', NULL, 'Individual is approved to Work with Children', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22560', '11', '22560', NULL, NULL) +VALUES ('001720', 'Authorizer Type', NULL, 'Type of person who authorized the decision or document.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24701', '12', '24701', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001582', 'Billable Basis Type', NULL, 'The event/action that results in a billable action.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22561', '11', '22561', NULL, NULL) +VALUES ('001721', 'Authorization Acceptance Indicator', NULL, 'Indicates authorizer agreement to a document or plan, such as plan for delivery of student services, program, or improvement plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24702', '12', '24702', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001583', 'Career Pathways Program Participation Exit Date', NULL, 'The year, month and day on which the person ceased to participate in a program.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22562', '11', '22562', NULL, NULL) +VALUES ('001722', 'Authorization Decision Explanation', NULL, 'Authorizer''s explanation regarding the authorization decision.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24703', '12', '24703', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001584', 'Career Pathways Program Participation Start Date', NULL, 'The year, month and day on which the person began to participate in a career pathway program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22563', '11', '22563', NULL, NULL) +VALUES ('001723', 'IEP Authorization Rejected Portion Description', NULL, 'Portion the authorizer does not want executed.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24704', '12', '24704', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001587', 'Credential or License Award Entity', NULL, 'The name of the organization awarding the individual''s credential or license.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22566', '11', '22566', NULL, NULL) +VALUES ('001724', 'IEP Authorization Rejected Portion Explanation', NULL, 'Authorizer''s explanation for rejected portions.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24705', '12', '24705', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001588', 'Developmental Education Referral Status', NULL, 'The status of a student''s referral to or placement into developmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22567', '11', '22567', NULL, NULL) +VALUES ('001725', 'Authorization Date', NULL, 'The date the authorization occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24706', '12', '24706', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001589', 'Developmental Education Type', NULL, 'An indicator of the category of developmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22568', '11', '22568', NULL, NULL) +VALUES ('001726', 'Consent to Evaluation Indicator', NULL, 'Indication parent agreed to evaluate student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24707', '12', '24707', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001590', 'Directory Information Block Status', NULL, 'An indication of whether a individual requested a Family Education Rights and Privacy Act (FERPA) block to withhold the release of the person''s directory information.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22569', '11', '22569', NULL, NULL) +VALUES ('001727', 'Consent to Evaluation Date', NULL, 'The date the consent to evaluation occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24708', '12', '24708', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001591', 'Early Childhood Education and Assistance Program Eligibility', NULL, 'Denotes whether the family member can receive Early Childhood Education and Assistance Program (ECEAP) information for the child in question.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22570', '11', '22570', NULL, NULL) +VALUES ('001728', 'IEP Eligibility Evaluation Type', NULL, 'Purpose within the IEP lifecycle for which the eligibility evaluation is conducted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24709', '12', '24709', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001592', 'Early Learning Enrollment Application Verification Date', NULL, 'Date the required document was verified for the enrollment application', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22571', '11', '22571', NULL, NULL) +VALUES ('001729', 'IDEA Eligibility Evaluation Category', NULL, 'Category of evaluation used for IDEA eligibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24710', '12', '24710', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001593', 'Early Learning Enrollment Application Document Identifier', NULL, 'Identifier for an enrollment application document record.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22572', '11', '22572', NULL, NULL) +VALUES ('001730', 'Eligibility Evaluation Description', NULL, 'Description of evaluation procedure and result used for determining eligibility.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24711', '12', '24711', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001594', 'Early Learning Enrollment Application Document Name', NULL, 'Document name for an enrollment application document record.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22573', '11', '22573', NULL, NULL) +VALUES ('001731', 'Eligibility Evaluation Date', NULL, 'The date when the evaluation to determine eligibility was conducted.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24712', '12', '24712', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001595', 'Early Learning Enrollment Application Document Type', NULL, 'Document type for an enrollment application document record.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22574', '11', '22574', NULL, NULL) +VALUES ('001732', 'Eligibility Parent Observations Explanation', NULL, 'Explanation of parent''s observations of student’s characteristics and history used for determining eligibility.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24713', '12', '24713', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001597', 'Early Learning Application Identifier', NULL, 'Identifier for the application for enrollment or direct services filled out on behalf of a child', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22576', '11', '22576', NULL, NULL) +VALUES ('001733', 'IDEA Disability Type', NULL, 'A category of disability that describes a person’s impairment defined by the Individuals with Disabilities Education Act.', NULL, '1', 'Option set based on IDEA disability categories. Multiple disability condition could be selected. Refer to Primary Disability Type for a single disability condition based on EDFacts.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24714', '12', '24714', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001599', 'Early Learning Application Required Document', NULL, 'Identifies a specific document required for enrollment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22578', '11', '22578', NULL, NULL) +VALUES ('001734', 'Credential Advanced Standing Description', NULL, 'A description of a credential that reduced the time or cost of attaining this credential.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24715', '12', '24715', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001600', 'Early Learning Enrollment Application Verification Reason Type', NULL, 'Identifies the reason for verification of enrollment application information', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22579', '11', '22579', NULL, NULL) +VALUES ('001735', 'Credential Advanced Standing URL', NULL, 'A URL that resolves to information about a credential that reduced the time or cost of attaining this credential.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24716', '12', '24716', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001602', 'Early Learning Education Staff Classification', NULL, 'The title/role of employment, official status, or rank of education staff', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22581', '11', '22581', NULL, NULL) +VALUES ('001736', 'Credential Definition Alternate Name', 'Credential Alternate Name', 'An alias for the credential, which may include acronyms, alpha-numeric notations, and other forms of name abbreviations in common use such as PhD, MA, and BA.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24717', '12', '24717', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001603', 'Early Learning Local Revenue Source', NULL, 'Funds that originate at the local level, and not from the state or federal level, that contribute to EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22582', '11', '22582', NULL, NULL) +VALUES ('001737', 'Credential Award Approver Name', NULL, 'Pronouncement of a favorable judgment by the agent being referenced.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24718', '12', '24718', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001604', 'Early Learning Service Type', NULL, 'A type of service provided to a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22583', '11', '22583', NULL, NULL) +VALUES ('001738', 'Credential Definition Assessment Method Type', 'Credential Assessment Method Type', 'The method used to conduct the assessment being referenced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24719', '12', '24719', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001605', 'Early Learning State Revenue Source', NULL, ' Funds that originate at the State, and not from a federal or local source, that contribute to EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22584', '11', '22584', NULL, NULL) +VALUES ('001739', 'Credential Definition Identifier System', 'Credential Identifier System', 'A coding scheme that is used for identification and record-keeping purposes by a credentialing organization to refer to a qualification, achievement, personal or organizational quality, or aspect of an identity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24720', '12', '24720', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001606', 'Early Learning Trainer Core Knowledge Area', NULL, 'A description of the core knowledge expertise of a trainer of a professional development experience.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22585', '11', '22585', NULL, NULL) +VALUES ('001740', 'Credential Definition Status Type', 'Credential Status Type', 'The status of the credential offered by a credentialing organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24721', '12', '24721', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001607', 'Education Verification Method', NULL, 'The method by which the formal education is verified.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22586', '11', '22586', NULL, NULL) +VALUES ('001741', 'Credential Definition Estimated Duration', 'Credential Estimated Duration', 'The estimated amount of time in minutes it will take to earn the credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24722', '12', '24722', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001609', 'Financial Aid Veteran’s Benefit Status', NULL, 'An indication of whether a person is receiving Veteran''s benefits.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22588', '11', '22588', NULL, NULL) +VALUES ('001742', 'Credential Definition NAICS Industry Type', 'Credential NAICS Industry Type', 'The North American Industry Classification System (NAICS) class identifier for an industry associated with the credential.', 'Integer - exactly 6 digits', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24723', '12', '24723', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001610', 'Financial Aid Veteran’s Benefit Type', NULL, 'The type of Veteran''s benefits a person is receiving.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22589', '11', '22589', NULL, NULL) +VALUES ('001743', 'Credential Definition Jurisdiction Region', 'Credential Jurisdiction Region', 'The geo-political region in which the credential is applicable.', 'GeoJSON', '0', 'http://geojson.org/geojson-spec.html#polygon', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24724', '12', '24724', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001611', 'Financial Aid Year Designator', NULL, 'The school year for which the student''s financial aid application and award data apply. Generally, this is the 12-month period from July 1 to June 30.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22590', '11', '22590', NULL, NULL) +VALUES ('001744', 'Credential Definition Jurisdiction Region Exception', 'Credential Jurisdiction Region Exception', 'A geo-political region in which the credential does not apply.', 'GeoJSON', '0', 'http://geojson.org/geojson-spec.html#polygon', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24725', '12', '24725', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001612', 'Included in Counted Family Size', NULL, 'Denotes whether this family member is counted in the family size as it pertains to the federal poverty level', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22591', '11', '22591', NULL, NULL) +VALUES ('001745', 'Credential Definition Keywords', 'Credential Keywords', 'Keywords or key phrases describing aspects of a credential considered useful for its discovery.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24726', '12', '24726', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001613', 'IPEDS Collection Year Designator', NULL, 'The academic year, generally extending from September to June, in which IPEDS data is collected. Most Institutional Characteristics, Salaries, Fall Staff, Fall Enrollment, and Employees by Assigned Position data are collected for the current year; Completions, 12-Month Enrollment, Student Financial Aid, and Finance data collections cover the prior year.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22592', '11', '22592', NULL, NULL) +VALUES ('001746', 'Credential Definition Maximum Duration', 'Credential Maximum Duration', 'The maximum amount of time in minutes it will take to earn the described credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24727', '12', '24727', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001614', 'Memorandum of Understanding End Date', NULL, 'The date that a Memorandum of Understanding between the Early Learning Organization and the Service Partner is determined to expire.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22593', '11', '22593', NULL, NULL) +VALUES ('001747', 'Credential Definition Minimum Age', 'Credential Minimum Age', 'The minimum allowed age in years at which a person is eligible for the credential.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24728', '12', '24728', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001615', 'Memorandum of Understanding Start Date', NULL, 'The effective date that a Memorandum of Understanding between the Early Learning Organization and the Service Partner Organization is effective.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22594', '11', '22594', NULL, NULL) +VALUES ('001748', 'Credential Definition Minimum Duration', 'Credential Minimum Duration', 'The minimum amount of time in minutes it will take to earn the described credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24729', '12', '24729', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001616', 'Postsecondary Program Level', NULL, 'The level describing the concentration of study for a postsecondary program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22595', '11', '22595', NULL, NULL) +VALUES ('000032', 'Staff Compensation Base Salary', NULL, 'The salary or wage a person is paid before deductions (excluding differentials) but including annuities.', 'Numeric - up to 2 digits after decimal place', '0', 'For the Common Core Data Teacher Compensation Survey this is: ''The negotiated annual salary for teaching duties for the school year. The base salary excludes pay for additional duties, such as supervising or directing afterschool activities, school administration activities, and teaching summer school or adult education classes. Bonuses and other incentives are not included in base salaries.'' Also use CEDS element Salary for Teaching Assignment Only Indicator to indicate if a Base Salary is specific to teaching assignments.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23032', '12', '23032', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001617', 'Postsecondary Exit or Withdrawal Type', NULL, ' The circumstances under which the student exited from enrollment in a postsecondary institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22596', '11', '22596', NULL, NULL) +VALUES ('000033', 'Birthdate', NULL, 'The year, month and day on which a person was born.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23033', '12', '23033', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001618', 'Eligibility Priority Points', NULL, 'Priority points used to determine eligibility and placement order', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22597', '11', '22597', NULL, NULL) +VALUES ('000035', 'Campus Residency Type', NULL, 'A person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23035', '12', '23035', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001619', 'Professional Development Activity State Approved Status', NULL, 'An indication of whether a training activity has been approved through a state process.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22598', '11', '22598', NULL, NULL) +VALUES ('000036', 'Career and Technical Education Completer', 'CTE Completer', 'An indication of a student who reached a state-defined threshold of a career and technical education program/pathway.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23036', '12', '23036', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001620', 'Professional Development Plan Approved by Supervisor', NULL, 'Professional development plan is approved by the employee''s supervisor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22599', '11', '22599', NULL, NULL) +VALUES ('000037', 'Career and Technical Education Concentrator', 'CTE Concentrator', 'An indication of a student who has met the state-defined threshold of career and technical education concentrators, as defined in the State''s approved Perkins IV State Plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23037', '12', '23037', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001621', 'Professional Development Plan Completion', NULL, 'The date the professional development plan is completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22600', '11', '22600', NULL, NULL) +VALUES ('000038', 'Carnegie Basic Classification', NULL, 'The Basic Classification is an update of the traditional classification framework developed by the Carnegie Commission on Higher Education in 1970 to support its research program, and later published in 1973 for use by other researchers.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23038', '12', '23038', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001622', 'Reimbursement Type', NULL, 'A billable basis which defines payment. This is how state agencies/programs move funding to the local provider/agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22601', '11', '22601', NULL, NULL) +VALUES ('000039', 'Charter School Indicator', NULL, 'An indication that a public school provides free public elementary and/or secondary education to eligible students under a specific charter executed, pursuant to a state charter school law, by an authorized chartering agency/authority and that is designated by such authority to be a public charter school.', NULL, '1', 'When the element is used for an LEA, it means the LEA is a Charter District meaning any and all schools under the authority of the LEA are charter schools. Don''t flag an LEA as a charter district if it has a mix of charter schools and non-charter schools.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23039', '12', '23039', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001623', 'Scheduled Well Child Screening', NULL, 'The individual well child visit scheduled according to the AAP recommended periodicity schedule.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22602', '11', '22602', NULL, NULL) +VALUES ('000040', 'Address City', NULL, 'The name of the city in which an address is located.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23040', '12', '23040', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001624', 'Service Partner Description', NULL, 'A description of the type of services that the partner organization provides.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22603', '11', '22603', NULL, NULL) +VALUES ('000041', 'High School Student Class Rank', NULL, 'The academic rank of a student in relation to his or her high school graduating class (e.g., 1, 2, 3) based on high school GPA.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23041', '12', '23041', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001625', 'Service Partner Name', NULL, 'The name of a non-person entity such as an organization, institution, agency or business, that partners with the Early Learning Organization to provide services to enrolled children/families.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22606', '11', '22606', NULL, NULL) +VALUES ('000042', 'Class Ranking Date', NULL, 'The date class ranking was determined.', 'YYYY-MM-DD or YYYY-MM or YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23042', '12', '23042', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001627', 'Site Preference Rank', NULL, 'The applicant preference that the family has for the program sites.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22608', '11', '22608', NULL, NULL) +VALUES ('000043', 'Classification of Instructional Program Code', 'CIP Code', 'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23043', '12', '23043', 'Updated', 'Updated link to newer version of CIP Codes') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001628', 'Training and Technical Assistance Level', NULL, 'The level of expertise an individual training and technical assistance specialist has based on a set of established criteria.', 'Alphanumeric - 100 characters maximum', '0', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22609', '11', '22609', NULL, NULL) +VALUES ('000044', 'Classification of Instructional Program Use', 'CIP Use', 'An indicator of whether the CIP Code is referencing an enrollment program or an award program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23044', '12', '23044', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001629', 'Transfer-out Indicator', NULL, 'An indicator of whether the student has transferred to another institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22610', '11', '22610', NULL, NULL) +VALUES ('000045', 'Classification of Instructional Program Version', 'CIP Version', 'The version of CIP being reported.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23045', '12', '23045', 'Updated', 'Added new option to existing option set, add new DES locations') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001630', 'Trimester When Prenatal Care Began', NULL, 'The trimester of pregnancy in which a child''s mother began receiving prenatal health care.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22611', '11', '22611', NULL, NULL) +VALUES ('000046', 'Cohort Year', NULL, 'The school year in which the student entered the baseline group used for computing completion rates (e.g., high school, program).', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23046', '12', '23046', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001631', 'Well Child Screening Received Date', NULL, 'The year, month and day of a well child visit.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22612', '11', '22612', NULL, NULL) +VALUES ('000047', 'Contract Days of Service Per Year', NULL, 'The number of days per year that a person is expected to work as outlined specifically in his or her employment agreement.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23047', '12', '23047', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001632', 'Early Learning Employment Separation Reason', NULL, 'The primary reason for the termination of the employment relationship.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22613', '11', '22613', NULL, NULL) +VALUES ('000048', 'Control of Institution', NULL, 'A classification of whether a postsecondary institution is operated by publicly elected or appointed officials (public control) or by privately elected or appointed officials and derives its major source of funds from private sources (private control). ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23048', '12', '23048', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001633', 'Community-based Type', NULL, 'Non domestic residence in which the early learning setting is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22614', '11', '22614', NULL, NULL) +VALUES ('000049', 'Corrective Action Type', NULL, 'The types of corrective actions under ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23049', '12', '23049', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001634', 'Inclusive Setting Indicator', NULL, 'Indicates that services are provided to the child in a place where children of all abilities learn together.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22615', '11', '22615', NULL, NULL) +VALUES ('000050', 'Country Code', NULL, 'The unique two character International Organization for Standardization (ISO) code for the country in which an address is located.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23050', '12', '23050', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001635', 'Service Date', NULL, 'The year, month, and day on which a service was provided.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22616', '11', '22616', NULL, NULL) +VALUES ('000051', 'Country of Birth Code', NULL, 'The unique two digit International Organization for Standardization (ISO) code for the country in which a person is born.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23051', '12', '23051', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001636', 'Early Learning Service Professional Staff Classification', NULL, 'The title/role of employment, official status, or rank of early learning service professionals', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22617', '11', '22617', NULL, NULL) +VALUES ('000053', 'Course Academic Grade', NULL, 'The final grade awarded for participation in the course. ', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23053', '12', '23053', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001637', 'ISO 639-3 Language Code', NULL, 'The code for the specific language or dialect that a person uses to communicate.', NULL, '1', 'The CEDS ISO 639-3 Language Code option set comes from the ISO 639-3 standard, the Latin-1 download. Only living language code types from the ISO standard are included in the CEDS list. Special scope and discontinued codes are excluded.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22618', '11', '22618', 'Updated', 'Added new options to the existing option set, updated existing option set.') +VALUES ('000054', 'Course Begin Date', NULL, 'The year, month and day an instance of a course officially began.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23054', '12', '23054', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001638', 'ISO 639-5 Language Family', NULL, 'A code for a specific language family, which supplements the language groups and families in the ISO 639-2 Language Code.', NULL, '1', 'The CEDS ISO 639-5 Language Family option set comes from the ISO 639-5 standard.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22619', '11', '22619', NULL, NULL) +VALUES ('000055', 'Course Identifier', NULL, 'The actual code that identifies the organization of subject matter and related learning experiences provided for the instruction of students.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23055', '12', '23055', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001639', 'Fiscal Year', NULL, 'The year an organization uses for budgeting, accounting, and reporting financials.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22620', '11', '22620', 'Updated', 'Changed definition. Added elements to DES contexts to support Early Learning needs.') +VALUES ('000056', 'Course Code System', NULL, 'A system that is used to identify the organization of subject matter and related learning experiences provided for the instruction of students.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23056', '12', '23056', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001640', 'Military Branch', NULL, 'A branch of the U.S. Military applicable for specifying more details when using Military Connected Student Indicator, Military Active Student Indicator, Military Veteran Student Indicator, and Military Enlistment After Exit elements.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22621', '11', '22621', NULL, NULL) +VALUES ('000057', 'Course Credit Units', NULL, 'The type of credit (unit, semester, or quarter) associated with the credit hours earned for the course. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23057', '12', '23057', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001641', 'DQP Categories of Learning', NULL, 'The Lumina Foundation''s Degree Qualifications Profile offers reference points for what students should know and be able to do upon completion of associate, bachelor''s and master''s degrees – in any field of study. The DQP Categories of Learning provide a profile of what degrees mean within which specific proficiencies may be defined.', NULL, '1', 'Based on the Degree Qualifications Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22622', '11', '22622', NULL, NULL) +VALUES ('000058', 'Credit Value', NULL, 'The amount of credit available to the student who successfully meets the objectives of the course or learning opportunity based on the units defined by Credit Unit Type.', 'Numeric - up to 2 digits after decimal place', '0', 'For K-12 a course meeting every day for one period of the school day over the span of a school year typically offers one Carnegie unit. In this case a Carnegie unit is a measure of "seat time" rather than a measure of attainment of the course objectives.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23058', '12', '23058', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001642', 'Fiscal Period Begin Date', NULL, 'The year, month and day on which an accounting period begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22623', '11', '22623', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000059', 'Course End Date', NULL, 'The year, month and day an instance of a course ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23059', '12', '23059', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001643', 'Fiscal Period End Date', NULL, 'The year, month and day on which an accounting period ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22624', '11', '22624', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000060', 'Course Grade Point Average Applicability', 'Course GPA Applicability', 'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23060', '12', '23060', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001644', 'Financial Accounting Period Encumbered Value', NULL, 'The planned or obligated expense value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', 'Used for purchase order balances, the value not already included in "Financial Accounting Period Actual Value" as an expense.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22625', '11', '22625', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000061', 'Course Level Characteristic', NULL, 'An indication of the general nature and difficulty of instruction provided throughout a course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23061', '12', '23061', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001645', 'Financial Account Program Name', NULL, 'The name given to the program area in an organization''s accounting system.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22626', '11', '22626', 'Updated', 'Changed definition. Added elements to DES contexts to support Early Learning needs.') +VALUES ('000063', 'Course Override School', NULL, 'The school where the credit was earned if different from the institution reporting. ', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23063', '12', '23063', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001646', 'Financial Account Program Number', NULL, 'A number given to a program area within an organization''s accounting system.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22627', '11', '22627', 'Updated', 'Changed definition. Added elements to DES contexts to support Early Learning needs.') +VALUES ('000064', 'Course Quality Points Earned', NULL, 'The numerical value assigned to a letter grade to provide a basis of quantitative determination of an average. ', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23064', '12', '23064', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001647', 'Financial Accounting Value', NULL, 'The value of a financial account balance or transaction.', 'Numeric - up to 2 digits after decimal place', '0', 'Used to represent a point-in-time transaction or snapshot of an account/fund balance. Use “Financial Accounting Period Budgeted Value”, “Financial Accounting Period Actual Value”, and “Financial Accounting Period Encumbered Value” for values representing a period (with begin and end dates).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22628', '11', '22628', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000065', 'Course Repeat Code', NULL, 'Indicates that an academic course has been repeated by a student and how that repeat is to be computed in the student''s academic grade average.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23065', '12', '23065', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001648', 'Financial Accounting Date', NULL, 'The date of a financial transaction or when an account balance is reported.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22629', '11', '22629', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000066', 'Course Subject Abbreviation', NULL, 'The alphabetic abbreviation of the academic department or discipline offering the course. It is one part of the total course identifier number. ', 'Alphanumeric - 10 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23066', '12', '23066', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001649', 'Attendance Event Date', NULL, 'The date on which an attendance event takes place.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22630', '11', '22630', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000067', 'Course Title', NULL, 'The descriptive name given to a course of study offered in a school or other institution or organization. In departmentalized classes at the elementary, secondary, and postsecondary levels (and for staff development activities), this refers to the name by which a course is identified (e.g., American History, English III). For elementary and other non-departmentalized classes, it refers to any portion of the instruction for which a grade or report is assigned (e.g., reading, composition, spelling, and language arts).', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23067', '12', '23067', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001650', 'Charter School Management Organization Type', NULL, 'The type of organization that is a separate legal entity that 1) contracts with one or more charter schools to manage, operate, and oversee the charter schools; or 2) holds a charter, or charters, to operate multiple charter schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22631', '11', '22631', NULL, NULL) +VALUES ('000068', 'Postsecondary Course Title', NULL, 'The name or title of the course taken by a student at an academic institution.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23068', '12', '23068', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001651', 'Charter School Contract Id Number', NULL, 'The unique number the SEA assigns to the contract (or charter) that authorizes the charter school to operate in the state under the state''s charter school legislation.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22632', '11', '22632', NULL, NULL) +VALUES ('000069', 'Credential Expiration Date', NULL, 'The year, month and day on which an active credential held by a person will expire.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23069', '12', '23069', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001652', 'Charter School Contract Approval Date', NULL, 'The effective date of the contract (or charter) that an approved charter school authorizer authorized the charter school to operate in the state under the state''s charter school legislation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22633', '11', '22633', NULL, NULL) +VALUES ('000070', 'Credential Issuance Date', NULL, 'The year, month and day on which an active credential was issued to a person.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23070', '12', '23070', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001653', 'Charter School Contract Renewal Date', NULL, 'The date by which the charter school must renew its contract (or charter) with an approved charter school authorizer in order to continue to operate in the state under the state''s charter school legislation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22634', '11', '22634', NULL, NULL) +VALUES ('000071', 'Credential Type', NULL, 'An indication of the category of credential a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23071', '12', '23071', 'Updated', 'Added new option to existing option set and add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001654', 'National School Lunch Program Direct Certification Indicator', NULL, 'Indicates that the student''s National School Lunch Program (NSLP) eligibility has been determined through direct certification.', NULL, '1', 'This element was introduced in version 6 of CEDS with plans for further development of elements needed to fully support direct certification use cases.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22635', '11', '22635', NULL, NULL) +VALUES ('000072', 'Credit Unit Type', NULL, 'The type of credits or units of value awarded for the completion of a course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23072', '12', '23072', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001655', 'Course Section Maximum Capacity', NULL, 'The maximum number of students the Course Section can maintain.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22636', '11', '22636', NULL, NULL) +VALUES ('000073', 'Credits Attempted Cumulative', NULL, 'The cumulative number of credits a person attempts to earn by taking courses during their enrollment in their current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23073', '12', '23073', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001656', 'IDEA Part C Eligibility Category', NULL, 'The category under which a person under 3 years of age is eligible for early intervention services under IDEA Part C.', NULL, '1', 'http://idea.ed.gov/part-c/statutes', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22637', '11', '22637', NULL, NULL) +VALUES ('000074', 'Credits Earned Cumulative', NULL, 'The cumulative number of credits a person earns by completing courses or examinations during their enrollment in the current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23074', '12', '23074', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001657', 'Tribal Affiliation', NULL, 'The Native American tribal entity recognized and eligible to receive services from the United States Bureau of Indian Affairs to which a person is affiliated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22638', '11', '22638', NULL, NULL) +VALUES ('000075', 'Career and Technical Education Graduation Rate Inclusion', 'CTE Graduation Rate Inclusion', 'An indication of how CTE concentrators are included in the state''s computation of its graduation rate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23075', '12', '23075', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001658', 'Credential Definition Identifier', 'Credential Identifier', 'A globally unique identifier by which the creator/owner/provider of a credential recognizes the qualification, achievement, personal or organizational quality, or aspect of an identity in transactions with the external environment.', 'Alphanumeric - 512 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces. An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22639', '11', '22639', NULL, NULL) +VALUES ('000076', 'Attendance Status', NULL, 'The status of a person''s attendance associated with an Attendance Event Type and Attendance Event Date in an organization-person-role context.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23076', '12', '23076', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001659', 'IPEDS Finance FASB Functional Expense Category', NULL, 'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', NULL, '1', '(NACUBO FARM, section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22640', '11', '22640', NULL, NULL) +VALUES ('000077', 'Degree Applicability', NULL, 'An indication that the course is a part of a degree program. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23077', '12', '23077', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001660', 'Credential Revoked Date', NULL, 'The date on which the qualification, achievement, personal or organizational quality, or aspect of an identity was revoked.', 'YYYY-MM-DD', '0', 'An empty string means the assertion was not revoked. Some uses (e.g. OpenBadges) may append time info in ISO 8601 format.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22641', '11', '22641', NULL, NULL) +VALUES ('000078', 'Degree or Certificate Seeking Student', NULL, 'Person is enrolled in courses for credit and recognized by the institution as seeking a degree, certificate, or other formal award. High school students also enrolled in postsecondary courses for credit are not considered degree/certificate-seeking.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23078', '12', '23078', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001661', 'Credential Revoked Reason', NULL, 'Published reason for revocation of a credential award.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22642', '11', '22642', NULL, NULL) +VALUES ('000079', 'Dependency Status', NULL, 'A person''s classification as dependent or independent with regards to eligibility for Title IV Federal Student aid.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23079', '12', '23079', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001662', 'Credential Issuer Revocation List URL', NULL, 'The URL to a document that includes a list of credential award assertions an issuer has revoked.', 'Alphanumeric - 512 characters maximum', '0', 'See OpenBadges standard example http://openbadges.github.io/openbadges-specification/#RevocationList', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22643', '11', '22643', NULL, NULL) +VALUES ('000080', 'Desegregation Order or Plan', NULL, 'An indication whether the LEA is covered by a desegregation plan either ordered by a court or entered into with the Office for Civil Rights under Title VI of the Civil Rights Act of 1964.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23080', '12', '23080', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001663', 'Organization Image URL', NULL, 'The Uniform Resource Locator (URL) for the unique address of an image representing the Organization.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22644', '11', '22644', NULL, NULL) +VALUES ('000081', 'Diploma or Credential Award Date', NULL, 'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23081', '12', '23081', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001664', 'Credential Completion Date', NULL, 'The date on which the person''s requirements for earning a credential were met or completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22645', '11', '22645', NULL, NULL) +VALUES ('000082', 'Disciplinary Action End Date', NULL, 'The year, month and day on which a discipline action ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23082', '12', '23082', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001665', 'Academic Award Requirements URL', NULL, 'A URL to a page that describes the requirements for the credential.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22646', '11', '22646', NULL, NULL) +VALUES ('000083', 'Disciplinary Action Start Date', NULL, 'The year, month and day on which a discipline action begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23083', '12', '23083', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001666', 'Academic Award Prerequisite Type', NULL, 'Prerequisite conditions for earning an academic award.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22647', '11', '22647', NULL, NULL) +VALUES ('000084', 'Career-Technical-Adult Education Displaced Homemaker Indicator', 'CTE-AE Displaced Homemaker Indicator', 'A person who ; (A) (i) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; (ii) has been dependent on the income of another family member but is no longer supported by that income; or (iii) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (B) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23084', '12', '23084', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001667', 'Course Repeatability Maximum Number', NULL, 'The maximum number of times the course may be taken or completed for credit.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22648', '11', '22648', NULL, NULL) +VALUES ('000085', 'Dual Credit Dual Enrollment Credits Awarded', NULL, 'The number of credits awarded a student by the postsecondary institution based on successful completion of dual credit/dual enrollment courses. ', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23085', '12', '23085', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001668', 'PESC Award Level Type', NULL, 'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22649', '11', '22649', NULL, NULL) +VALUES ('000086', 'Economic Disadvantage Status', NULL, 'An indication that the student met the State criteria for classification as having an economic disadvantage.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23086', '12', '23086', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001669', 'Credential Award Evidence URL', NULL, 'A URL to a page that describes the evidence that the learner met the criteria for attainment of the credential award.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22650', '11', '22650', NULL, NULL) +VALUES ('000087', 'K12 Staff Classification', NULL, 'The titles of employment, official status, or rank of education staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23087', '12', '23087', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000328', 'Ability Grouping Status', NULL, 'An indication of whether the school has students who are ability grouped for classroom instruction in mathematics or English/reading/language arts.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21000', '11', '21000', NULL, NULL) +VALUES ('000088', 'Electronic Mail Address', 'Email Address', 'The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the person or organization belongs.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23088', '12', '23088', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000001', 'Academic Award Date', NULL, 'The year, month and day or year and month on which the academic award was conferred.', 'YYYY-MM-DD or YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21001', '11', '21001', NULL, NULL) +VALUES ('000089', 'Electronic Mail Address Type', 'Email Address Type', 'The type of electronic mail (e-mail) address listed for a person or organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23089', '12', '23089', 'Updated', 'Change option for Organizational address') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000002', 'Academic Award Level Conferred', NULL, 'An indicator of the category of award conferred by a college, university, or other postsecondary education institution as official recognition for the successful completion of a program of study. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21002', '11', '21002', NULL, NULL) +VALUES ('000091', 'Elementary-Middle Additional Indicator Status', NULL, ' An indication of whether the school or district met the Elementary/Middle Additional Indicator requirement in accordance with state definition for the purpose of determining Adequate Yearly Progress (AYP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23091', '12', '23091', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000003', 'Academic Award Title', NULL, 'The descriptive title for the academic award.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21003', '11', '21003', NULL, NULL) +VALUES ('000092', 'Eligibility Status for School Food Service Programs', NULL, 'An indication of a student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23092', '12', '23092', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000004', 'Academic Honors Type', NULL, 'A designation of the type of academic distinctions earned by or awarded to the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21004', '11', '21004', NULL, NULL) +VALUES ('000093', 'End of Term Status', NULL, 'The nature of the student''s progress at the end of a given school term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23093', '12', '23093', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000005', 'Accountability Report Title', NULL, 'The title of the accountability report.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21005', '11', '21005', NULL, NULL) +VALUES ('000094', 'Enrollment Status', NULL, 'An indication as to whether a student''s name was, is, or will be officially registered on the roll of a school or schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23094', '12', '23094', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000006', 'Activity Identifier', NULL, 'A unique number or alphanumeric code used in the local system to identify an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21006', '11', '21006', NULL, NULL) +VALUES ('000095', 'Postsecondary Enrollment Type', NULL, 'An indicator of the enrollment type associated with the enrollment award level of a person at the beginning of a term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23095', '12', '23095', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000007', 'Activity Involvement Begin Date', NULL, 'The year, month and day on which the person began to participate in the activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21007', '11', '21007', NULL, NULL) +VALUES ('000096', 'Postsecondary Enrollment Status', NULL, 'An indication of the student''s enrollment status for a particular term as defined by the institution', NULL, '1', 'Either use option 02 or one of the options, 04 or 05, for less than full-time but at least half-time.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23096', '12', '23096', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000008', 'Activity Involvement End Date', NULL, 'The year, month and day on which the person ceased to participate in the activity.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21008', '11', '21008', NULL, NULL) +VALUES ('000097', 'Enrollment Entry Date', NULL, 'The month, day, and year on which a person enters and begins to receive instructional services in a school, institution, program, or class-section during a given session.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23097', '12', '23097', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000009', 'Activity Title', NULL, 'The title for a particular activity, such as a co-curricular or extra-curricular activity.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21009', '11', '21009', NULL, NULL) +VALUES ('000098', 'Entry Date into Postsecondary', NULL, 'The year, month and day on which a person entered and began to receive instructional services at a postsecondary institution for the first time after completing high school (or its equivalent). ', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23098', '12', '23098', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000011', 'Adequate Yearly Progress Status', 'AYP Status', 'An indication of whether the state, district, or school met the Adequate Yearly Progress (AYP) requirements for the school year, as determined by the state-established criteria.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21011', '11', '21011', NULL, NULL) +VALUES ('000099', 'Entry Type', NULL, 'The process by which a student enters a school during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23099', '12', '23099', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000012', 'Administrative Funding Control', NULL, 'The type of education institution as classified by its funding source.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21012', '11', '21012', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000100', 'Entry Grade Level', NULL, 'The grade level or primary instructional level at which a student enters and receives services in a school or an educational institution during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23100', '12', '23100', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000013', 'Course Aligned with Standards', NULL, 'An indication whether a course is aligned with the established standards of a curriculum framework.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21013', '11', '21013', NULL, NULL) +VALUES ('000101', 'Course Section Time Required for Completion', NULL, 'The actual or estimated number of clock minutes required for course completion. This number is especially important for career and technical education course and may represent (in minutes) the clock hour requirement of the course, the number of minutes (or clock hours) of class time per week, times the number of equivalent weeks the class typically meets.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23101', '12', '23101', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000014', 'Alternate Adequate Yearly Progress Approach Indicator', 'Alternate AYP Approach Indicator', 'An indication of whether the district or school used an approved alternate approach for calculating Adequate Yearly Progress (AYP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21014', '11', '21014', NULL, NULL) +VALUES ('000102', 'Staff Evaluation Outcome', NULL, 'The result of an assessment of a person''s performance.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23102', '12', '23102', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000015', 'Alternative School Focus Type', NULL, 'An indication of the specific group of students whose needs the alternative school is designed to meet.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21015', '11', '21015', NULL, NULL) +VALUES ('000103', 'Staff Evaluation Scale', NULL, 'The quantitative or qualitative range of possible scores/rating for a person''s overall performance (e.g., 0 - 10; Poor, Fair, Average, Good, Excellent).', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23103', '12', '23103', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000017', 'Advanced Placement Course Self Selection', 'AP Course Self Selection', 'An indication of whether enrollment via self-selection by the student is permitted for all Advanced Placement (AP) courses offered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21017', '11', '21017', NULL, NULL) +VALUES ('000104', 'Staff Evaluation Score or Rating', NULL, 'The actual quantitative or qualitative assessment of a person''s overall performance.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23104', '12', '23104', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000018', 'Advanced Placement Credits Awarded', 'AP Credits Awarded', 'The number of credits awarded a student by the postsecondary institution based on successful completion of advanced placement courses and/or advanced placement tests. ', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21018', '11', '21018', NULL, NULL) +VALUES ('000105', 'Staff Evaluation System', NULL, 'The instrument and/or set of procedures with which a person''s performance is assessed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23105', '12', '23105', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000019', 'Address Apartment Room or Suite Number', NULL, 'The apartment, room, or suite number of an address.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21019', '11', '21019', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000106', 'Cohort Exclusion', NULL, 'Those persons who may be removed (deleted) from a cohort (or subcohort). For the Graduation Rates and Fall Enrollment retention rate reporting, persons may be removed from a cohort if they left the institution for one of the following reasons: death or total and permanent disability; service in the armed forces (including those called to active duty); service with a foreign aid service of the federal government, such as the Peace Corps; or service on official church missions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23106', '12', '23106', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000021', 'Assessment Academic Subject', NULL, 'The description of the academic content or subject area (e.g., arts, mathematics, reading, or a foreign language) being evaluated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21021', '11', '21021', NULL, NULL) +VALUES ('000107', 'Enrollment Exit Date', NULL, 'The year, month and day on which the student officially withdrew or graduated, i.e. the date on which the student''s enrollment ended.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23107', '12', '23107', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000024', 'Assessment Form Name', NULL, 'The name of a given assessment form.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21024', '11', '21024', NULL, NULL) +VALUES ('000108', 'Exit or Withdrawal Status', NULL, 'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23108', '12', '23108', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000025', 'Assessment Registration Participation Indicator', NULL, 'An indication of whether a student participated in an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21025', '11', '21025', NULL, NULL) +VALUES ('000110', 'Exit or Withdrawal Type', NULL, 'The circumstances under which the student exited from membership in an educational institution. ', NULL, '1', 'The purpose of this element is to track the circumstances related to an exit from membership. There are multiple use cases related to this element, some for longitudinal purposes, some for funding, some for live transactional systems. The descriptions and definitions are intended to meet those needs. Four often misunderstood options are explained below:
1. 09999 - Other. Other is intended to indicate that CEDS has not yet defined a circumstance in which this exit occurred.
2. 03505 - Exited. Unlike "09999 - Other", the "Exited" option is intended to be used for administrative purposes such as a mid-year grade level change.
3. 01931 - Not enrolled, unknown status. This is to be used as a placeholder while additional exit information is collected or to track students who are known to have Discontinued Schooling (dropped out) separate from students whose whereabouts are unknown.
4. 03502 - Not enrolled, eligible to return. Different than the 01931 code, the status of this student is not unknown; however, the institution is required to exit the student from membership for an extended period. It is expected the student will reenroll in the same institution following this extended period.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23110', '12', '23110', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000026', 'Assessment Purpose', NULL, 'The reason for which an assessment is designed or delivered.', NULL, '1', 'This element might have multiple occurrences associated with any one assessment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21026', '11', '21026', NULL, NULL) +VALUES ('000111', 'Federal School Code', NULL, ' A unique code assigned by the U.S. Department of Education to schools participating in the Title IV Federal Student Aid programs. Persons enter these codes in the Free Application for Federal Student Aid (FAFSA) to indicate which postsecondary schools they want to receive their financial aid application results.', 'Alphanumeric - exactly 6 characters in length', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23111', '12', '23111', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000027', 'Course Section Assessment Reporting Method', NULL, 'The method that the instructor of the course uses to report the performance and achievement of all students. It may be a qualitative method such as individualized teacher comments or a quantitative method such as a letter or a numerical grade. In some cases, more than one type of reporting method may be used.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21027', '11', '21027', 'Updated', 'Added new option to the existing option set.') +VALUES ('000112', 'Financial Aid Award Amount', NULL, 'The amount of financial aid awarded to a person for the term/year.', 'Numeric - up to 2 digits after decimal place', '0', 'Linked to financial aid award type.
Note: For any given individual this cluster of fields may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23112', '12', '23112', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000028', 'Assessment Title', NULL, 'The title or name of the assessment.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21028', '11', '21028', NULL, NULL) +VALUES ('000113', 'Financial Aid Award Type', NULL, 'The classification of financial aid awarded to a person for the academic term/year.', NULL, '1', 'Linked to financial aid type.
Note: For any given individual this cluster of fields may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23113', '12', '23113', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000029', 'Assessment Type', NULL, 'The category of an assessment based on format and content.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21029', '11', '21029', NULL, NULL) +VALUES ('000115', 'First Name', NULL, 'The full legal first name given to a person at birth, baptism, or through legal change.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23115', '12', '23115', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000030', 'Available Carnegie Unit Credit', NULL, 'Measured in Carnegie units, the amount of credit available to a student who successfully meets the objectives of the course. A course meeting every day for one period of the school day over the span of a school year offers one Carnegie unit. A Carnegie unit is thus a measure of "seat time" rather than a measure of attainment of the course objectives.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21030', '11', '21030', NULL, NULL) +VALUES ('000117', 'First Time Postsecondary Student', NULL, 'A person who has no prior postsecondary experience attending any institution for the first time at the undergraduate level since completing high school (or its equivalent). This includes persons enrolled in academic or occupational programs. It also includes persons enrolled in the fall term who attended college for the first time in the prior summer term, and persons who entered with advanced standing (college credits earned before graduation from high school).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23117', '12', '23117', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000031', 'Awaiting Initial IDEA Evaluation Status', NULL, 'Awaiting initial evaluation for special education programs and related services under the Individuals with Disabilities Education Act (IDEA). ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21031', '11', '21031', NULL, NULL) +VALUES ('000118', 'Staff Full Time Equivalency', 'Staff FTE', 'The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23118', '12', '23118', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000032', 'Staff Compensation Base Salary', NULL, 'The salary or wage a person is paid before deductions (excluding differentials) but including annuities.', 'Numeric - up to 2 digits after decimal place', '0', 'For the Common Core Data Teacher Compensation Survey this is: ''The negotiated annual salary for teaching duties for the school year. The base salary excludes pay for additional duties, such as supervising or directing afterschool activities, school administration activities, and teaching summer school or adult education classes. Bonuses and other incentives are not included in base salaries.'' Also use CEDS element Salary for Teaching Assignment Only Indicator to indicate if a Base Salary is specific to teaching assignments.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21032', '11', '21032', NULL, NULL) +VALUES ('000120', 'GED Preparation Program Participation Status', NULL, 'An indication that a student aged 16-19 participates in a General Educational Development (GED) preparation program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23120', '12', '23120', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000033', 'Birthdate', NULL, 'The year, month and day on which a person was born.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21033', '11', '21033', NULL, NULL) +VALUES ('000121', 'Generation Code or Suffix', NULL, 'An appendage, if any, used to denote a person''s generation in his family (e.g., Jr., Sr., III).', 'Alphanumeric - 10 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23121', '12', '23121', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000035', 'Campus Residency Type', NULL, 'A person''s residency arrangement as defined in the Free Application for Federal Student Aid (FAFSA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21035', '11', '21035', NULL, NULL) +VALUES ('000122', 'Gifted and Talented Indicator', NULL, 'An indication that the student is participating in and served by a Gifted/Talented program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23122', '12', '23122', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000036', 'Career and Technical Education Completer', 'CTE Completer', 'An indication of a student who reached a state-defined threshold of a career and technical education program/pathway.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21036', '11', '21036', NULL, NULL) +VALUES ('000123', 'Grade Point Average Weighted Indicator', 'GPA Weighted Indicator', 'An indication of whether the reported Grade Point Average is weighted or unweighted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23123', '12', '23123', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000037', 'Career and Technical Education Concentrator', 'CTE Concentrator', 'An indication of a student who has met the state-defined threshold of career and technical education concentrators, as defined in the State''s approved Perkins IV State Plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21037', '11', '21037', NULL, NULL) +VALUES ('000124', 'Student Course Section Grade Earned', NULL, 'A final indicator of student performance in a course section as submitted by the instructor.', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23124', '12', '23124', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000038', 'Carnegie Basic Classification', NULL, 'The Basic Classification is an update of the traditional classification framework developed by the Carnegie Commission on Higher Education in 1970 to support its research program, and later published in 1973 for use by other researchers.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21038', '11', '21038', NULL, NULL) +VALUES ('000125', 'Grade Level When Course Taken', NULL, 'Student''s grade level at time of course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23125', '12', '23125', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000039', 'Charter School Indicator', NULL, 'An indication that a public school provides free public elementary and/or secondary education to eligible students under a specific charter executed, pursuant to a state charter school law, by an authorized chartering agency/authority and that is designated by such authority to be a public charter school.', NULL, '1', 'When the element is used for an LEA, it means the LEA is a Charter District meaning any and all schools under the authority of the LEA are charter schools. Don''t flag an LEA as a charter district if it has a mix of charter schools and non-charter schools.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21039', '11', '21039', NULL, NULL) +VALUES ('000126', 'Grade Level When Assessed', NULL, 'The grade or developmental level of a student when assessed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23126', '12', '23126', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000040', 'Address City', NULL, 'The name of the city in which an address is located.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21040', '11', '21040', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000127', 'Grade Point Average', NULL, 'The value of the total quality points divided by the Credit Hours for Grade Point Average. ', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23127', '12', '23127', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000041', 'High School Student Class Rank', NULL, 'The academic rank of a student in relation to his or her high school graduating class (e.g., 1, 2, 3) based on high school GPA.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21041', '11', '21041', NULL, NULL) +VALUES ('000128', 'Grade Point Average Cumulative', 'GPA - Cumulative', 'A measure of average performance in all courses taken by a person during his or her school career as determined for record-keeping purposes. This is obtained by dividing the total grade points received by the total number of credits attempted. This usually includes grade points received and credits attempted in his or her current school as well as those transferred from schools in which the person was previously enrolled.', 'Numeric - up to 4 digits after decimal place', '0', 'Related Connection; linked to Grade Point Average Weighted Indicator, High School Percentile, High School Rank, and Size of High School Graduating Class', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23128', '12', '23128', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000042', 'Class Ranking Date', NULL, 'The date class ranking was determined.', 'YYYY-MM-DD or YYYY-MM or YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21042', '11', '21042', NULL, NULL) +VALUES ('000129', 'Grade Point Average Given Session', 'GPA - Given Session', 'A measure of average performance in all courses taken by a person during a given session. This is obtained by dividing the total grade points received by the number of credits attempted for the same session.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23129', '12', '23129', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000043', 'Classification of Instructional Program Code', 'CIP Code', 'A six-digit code in the form xx.xxxx that identifies instructional program specialties within educational institutions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21043', '11', '21043', NULL, NULL) +VALUES ('000130', 'Grade Points Earned Cumulative', NULL, 'The cumulative number of grade points a person earns by successfully completing courses or examinations during his or her enrollment in the current school as well as those transferred from schools in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23130', '12', '23130', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000044', 'Classification of Instructional Program Use', 'CIP Use', 'An indicator of whether the CIP Code is referencing an enrollment program or an award program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21044', '11', '21044', NULL, NULL) +VALUES ('000131', 'Grades Offered', NULL, 'The specific grade or combination of grades offered by an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23131', '12', '23131', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000045', 'Classification of Instructional Program Version', 'CIP Version', 'The version of CIP being reported.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21045', '11', '21045', NULL, NULL) +VALUES ('000132', 'Graduation Rate Survey Cohort Year', NULL, 'The academic year in which a student entered as part of the GRS cohort.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23132', '12', '23132', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000046', 'Cohort Year', NULL, 'The school year in which the student entered the baseline group used for computing completion rates (e.g., high school, program).', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21046', '11', '21046', NULL, NULL) +VALUES ('000133', 'Graduation Rate Survey Indicator', NULL, 'An indication of whether or not the student is in a GRS cohort; meaning the student began as a first-time, full-time, degree seeking student in the fall of a given year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23133', '12', '23133', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000047', 'Contract Days of Service Per Year', NULL, 'The number of days per year that a person is expected to work as outlined specifically in his or her employment agreement.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21047', '11', '21047', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000134', 'Gun Free Schools Act Reporting Status', NULL, 'An indication of whether the school or local education agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, as defined by Title 18, Section 921.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23134', '12', '23134', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000048', 'Control of Institution', NULL, 'A classification of whether a postsecondary institution is operated by publicly elected or appointed officials (public control) or by privately elected or appointed officials and derives its major source of funds from private sources (private control). ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21048', '11', '21048', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000135', 'Harassment or Bullying Policy Status', NULL, 'An indication of whether the education unit has adopted written policy prohibiting harassment and bullying on the basis of a civil rights law.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23135', '12', '23135', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000049', 'Corrective Action Type', NULL, 'The types of corrective actions under ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21049', '11', '21049', NULL, NULL) +VALUES ('000136', 'Staff Compensation Health Benefits', NULL, 'Contributions made by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider''s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23136', '12', '23136', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000050', 'Country Code', NULL, 'The unique two character International Organization for Standardization (ISO) code for the country in which an address is located.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21050', '11', '21050', NULL, NULL) +VALUES ('000137', 'High School Course Requirement', NULL, 'An indication that this course credit is required for a high school diploma.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23137', '12', '23137', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000051', 'Country of Birth Code', NULL, 'The unique two digit International Organization for Standardization (ISO) code for the country in which a person is born.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21051', '11', '21051', NULL, NULL) +VALUES ('000138', 'High School Diploma Type', NULL, 'The type of diploma/credential that is awarded to a person in recognition of his/her completion of the curricular requirements.', NULL, '1', 'Use "Other Diploma" instead of "Other" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23138', '12', '23138', 'Updated', 'Added new option to existing option set, change option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000053', 'Course Academic Grade', NULL, 'The final grade awarded for participation in the course. ', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21053', '11', '21053', NULL, NULL) +VALUES ('000140', 'High School Graduation Rate Indicator Status', NULL, 'An indication of whether the school or district met the High School Graduation Rate requirement in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23140', '12', '23140', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000054', 'Course Begin Date', NULL, 'The year, month and day an instance of a course officially began.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21054', '11', '21054', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000141', 'Highest Level of Education Completed', NULL, 'The extent of formal instruction a person has received (e.g., the highest grade in school completed or its equivalent or the highest degree received).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23141', '12', '23141', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000055', 'Course Identifier', NULL, 'The actual code that identifies the organization of subject matter and related learning experiences provided for the instruction of students.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21055', '11', '21055', NULL, NULL) +VALUES ('000142', 'Highly Qualified Teacher Indicator', NULL, 'An indication that the teacher has been classified as highly qualified based on assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23142', '12', '23142', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000056', 'Course Code System', NULL, 'A system that is used to identify the organization of subject matter and related learning experiences provided for the instruction of students.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21056', '11', '21056', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000143', 'Hire Date', NULL, 'The year, month and day on which a person was hired for a position, or consecutive positions within the same organization and job classification.', 'YYYY-MM-DD', '0', 'This is the Hire Date beginning consecutive employment with the current employer in the same Professional-Educational Job Classification. A person may change positions within the same organization and job classification without triggering a new hire date. For example a teacher originally hire to teach 3rd grade may be reassigned to 4th grade. However, a change of job classifications, e.g. from teacher to principal, would trigger a new Hire Date.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23143', '12', '23143', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000057', 'Course Credit Units', NULL, 'The type of credit (unit, semester, or quarter) associated with the credit hours earned for the course. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21057', '11', '21057', NULL, NULL) +VALUES ('000144', 'Hispanic or Latino Ethnicity', NULL, 'An indication that the person traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central and South America, and other Spanish cultures, regardless of race.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23144', '12', '23144', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000058', 'Credit Value', NULL, 'The amount of credit available to the student who successfully meets the objectives of the course or learning opportunity based on the units defined by Credit Unit Type.', 'Numeric - up to 2 digits after decimal place', '0', 'For K-12 a course meeting every day for one period of the school day over the span of a school year typically offers one Carnegie unit. In this case a Carnegie unit is a measure of "seat time" rather than a measure of attainment of the course objectives.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21058', '11', '21058', NULL, NULL) +VALUES ('000146', 'Homeless Primary Nighttime Residence', NULL, 'The primary nighttime residence of the person at the time the person was identified as homeless.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23146', '12', '23146', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000059', 'Course End Date', NULL, 'The year, month and day an instance of a course ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21059', '11', '21059', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000147', 'Homeless Serviced Indicator', NULL, 'An indication of whether homeless children and youth were served by a McKinney-Vento program in the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23147', '12', '23147', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000060', 'Course Grade Point Average Applicability', 'Course GPA Applicability', 'An indicator of whether or not this course being described is included in the computation of the student’s Grade Point Average (GPA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21060', '11', '21060', NULL, NULL) +VALUES ('000148', 'Homeless Unaccompanied Youth Status', NULL, 'A homeless unaccompanied youth is a youth who is not in the physical custody of a parent or guardian and who fits the McKinney-Vento definition of homeless. Students must be both unaccompanied and homeless to be included as unaccompanied homeless youth. There is no age range specified for an unaccompanied youth in the law. The upper age range is determined by what a state defines as school age, unless the child is in special education. The upper age range for students in special education may extend to 22 years of age. There is no lower age range. Therefore, as an example, a young child not in the physical custody of a parent or guardian, though living with a caregiver, and is living in a situation that is not fixed, regular, and adequate, would be identified as a homeless unaccompanied youth.', NULL, '1', 'Homelessness Status and Primary Nighttime Residence should be known in order to collect this additional information.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23148', '12', '23148', 'Updated', 'Add usage note, update defintion') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000061', 'Course Level Characteristic', NULL, 'An indication of the general nature and difficulty of instruction provided throughout a course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21061', '11', '21061', NULL, NULL) +VALUES ('000149', 'Homelessness Status', NULL, 'Children and youth who lack a fixed, regular, and adequate nighttime residence. Homeless children and youth include: 1) children and youth who are sharing the housing of other persons due to loss of housing, economic hardship, or a similar reason; are living in motels, hotels, trailer parks, or camping grounds due to the lack of alternative adequate accommodations; are living in emergency or transitional shelters; are abandoned in hospitals; or are awaiting foster care placement; 2) children and youth who have a primary nighttime residence that is a public or private place not designed for or originally used as a regular sleeping accommodation for human beings; or 3) children and youths who are living in cars, parks, public spaces, abandoned buildings, substandard housing, bus or train stations, or similar settings. 4) migratory children who qualify as homeless because the children are living in circumstances described in the above. (See Section 103 of the McKinney Act for a more detailed description of this data element).', NULL, '1', 'Use of this element for EDFacts reporting beginning in school year 2022-2023 must include student enrollment. This element does not indicate if the student was served under the McKinney-Vento Act.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23149', '12', '23149', 'Updated', 'Add usage note') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000063', 'Course Override School', NULL, 'The school where the credit was earned if different from the institution reporting. ', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21063', '11', '21063', NULL, NULL) +VALUES ('000150', 'Honors Description', NULL, 'A description of the type of academic distinctions earned by or awarded to the person.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23150', '12', '23150', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000064', 'Course Quality Points Earned', NULL, 'The numerical value assigned to a letter grade to provide a basis of quantitative determination of an average. ', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21064', '11', '21064', NULL, NULL) +VALUES ('000170', 'Integrated Technology Status', NULL, 'An indication of the extent to which the district has effectively and fully integrated technology, as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23170', '12', '23170', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000065', 'Course Repeat Code', NULL, 'Indicates that an academic course has been repeated by a student and how that repeat is to be computed in the student''s academic grade average.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21065', '11', '21065', NULL, NULL) +VALUES ('000151', 'IDEA Indicator', NULL, 'A person having intellectual disability; hearing impairment, including deafness; speech or language impairment; visual impairment, including blindness; serious emotional disturbance (hereafter referred to as emotional disturbance); orthopedic impairment; autism; traumatic brain injury; developmental delay; other health impairment; specific learning disability; deaf-blindness; or multiple disabilities and who, by reason thereof, receive special education and related services under the Individuals with Disabilities Education Act (IDEA) according to an Individualized Education Program (IEP), Individual Family Service Plan (IFSP), or service plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23151', '12', '23151', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000066', 'Course Subject Abbreviation', NULL, 'The alphabetic abbreviation of the academic department or discipline offering the course. It is one part of the total course identifier number. ', 'Alphanumeric - 10 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21066', '11', '21066', NULL, NULL) +VALUES ('001067', 'Assessment Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment by a school, school system, a state, or other agency or entity. This may be the publisher identifier.', 'Alphanumeric - 100 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23152', '12', '23152', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000067', 'Course Title', NULL, 'The descriptive name given to a course of study offered in a school or other institution or organization. In departmentalized classes at the elementary, secondary, and postsecondary levels (and for staff development activities), this refers to the name by which a course is identified (e.g., American History, English III). For elementary and other non-departmentalized classes, it refers to any portion of the instruction for which a grade or report is assigned (e.g., reading, composition, spelling, and language arts).', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21067', '11', '21067', NULL, NULL) +VALUES ('001068', 'Local Education Agency Identifier', 'LEA Identifier', 'A unique number or alphanumeric code assigned to a local education agency by a school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23153', '12', '23153', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000068', 'Postsecondary Course Title', NULL, 'The name or title of the course taken by a student at an academic institution.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21068', '11', '21068', NULL, NULL) +VALUES ('001069', 'School Identifier', NULL, 'A unique number or alphanumeric code assigned to an institution by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23155', '12', '23155', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000069', 'Credential Expiration Date', NULL, 'The year, month and day on which an active credential held by a person will expire.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21069', '11', '21069', NULL, NULL) +VALUES ('001070', 'Staff Member Identifier', NULL, 'A unique number or alphanumeric code assigned to a staff member by a school, school system, a state, registry, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23156', '12', '23156', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000070', 'Credential Issuance Date', NULL, 'The year, month and day on which an active credential was issued to a person.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21070', '11', '21070', NULL, NULL) +VALUES ('001071', 'Student Identifier', NULL, 'A unique number or alphanumeric code assigned to a student by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23157', '12', '23157', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000071', 'Credential Type', NULL, 'An indication of the category of credential a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21071', '11', '21071', NULL, NULL) +VALUES ('000365', 'Assessment Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23158', '12', '23158', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000072', 'Credit Unit Type', NULL, 'The type of credits or units of value awarded for the completion of a course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21072', '11', '21072', NULL, NULL) +VALUES ('001072', 'Local Education Agency Identification System', 'LEA Identification System', 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to a local education agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23159', '12', '23159', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000073', 'Credits Attempted Cumulative', NULL, 'The cumulative number of credits a person attempts to earn by taking courses during their enrollment in their current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21073', '11', '21073', NULL, NULL) +VALUES ('001073', 'School Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23161', '12', '23161', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000074', 'Credits Earned Cumulative', NULL, 'The cumulative number of credits a person earns by completing courses or examinations during their enrollment in the current education institution as well as those credits transferred from an education institution in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21074', '11', '21074', NULL, NULL) +VALUES ('001074', 'Staff Member Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, registry, or other agencies to refer to a staff member.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23162', '12', '23162', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000075', 'Career and Technical Education Graduation Rate Inclusion', 'CTE Graduation Rate Inclusion', 'An indication of how CTE concentrators are included in the state''s computation of its graduation rate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21075', '11', '21075', NULL, NULL) +VALUES ('001075', 'Student Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to a student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23163', '12', '23163', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000076', 'Attendance Status', NULL, 'The status of a person''s attendance associated with an Attendance Event Type and Attendance Event Date in an organization-person-role context.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21076', '11', '21076', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000164', 'Increased Learning Time Type', NULL, 'The types of increased learning time provided.', NULL, '1', 'If your data is granular enough to differentiate between Before School and After School, it is recommended those options be selected over using the combined Before or After School option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23164', '12', '23164', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000077', 'Degree Applicability', NULL, 'An indication that the course is a part of a degree program. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21077', '11', '21077', NULL, NULL) +VALUES ('000165', 'Initial Enrollment Term', NULL, 'The first registration term of a person enrolling in credit-granting courses at a postsecondary institution after completing high school (or its equivalent). ', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23165', '12', '23165', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000078', 'Degree or Certificate Seeking Student', NULL, 'Person is enrolled in courses for credit and recognized by the institution as seeking a degree, certificate, or other formal award. High school students also enrolled in postsecondary courses for credit are not considered degree/certificate-seeking.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21078', '11', '21078', NULL, NULL) +VALUES ('000166', 'Institution IPEDS UnitID', 'IPEDS Identifier', 'Unique identification number assigned to postsecondary institutions surveyed through the Integrated Postsecondary Education Data System (IPEDS). Also referred to as UNITID or IPEDS ID.', 'Integer - exactly 6 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23166', '12', '23166', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000079', 'Dependency Status', NULL, 'A person''s classification as dependent or independent with regards to eligibility for Title IV Federal Student aid.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21079', '11', '21079', NULL, NULL) +VALUES ('000167', 'Institution Telephone Number Type', NULL, 'The type of communication number listed for an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23167', '12', '23167', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000080', 'Desegregation Order or Plan', NULL, 'An indication whether the LEA is covered by a desegregation plan either ordered by a court or entered into with the Office for Civil Rights under Title VI of the Civil Rights Act of 1964.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21080', '11', '21080', NULL, NULL) +VALUES ('000168', 'Instructional Activity Hours Attempted', NULL, 'The number of credit hours and/or contact hours attempted by a person during a term.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23168', '12', '23168', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000081', 'Diploma or Credential Award Date', NULL, 'The month and year on which the diploma/credential is awarded to a student in recognition of his/her completion of the curricular requirements.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21081', '11', '21081', NULL, NULL) +VALUES ('000169', 'Instructional Activity Hours Type', NULL, 'The unit of measure of student instructional activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23169', '12', '23169', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000082', 'Disciplinary Action End Date', NULL, 'The year, month and day on which a discipline action ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21082', '11', '21082', NULL, NULL) +VALUES ('000171', 'Last Qualifying Move Date', NULL, 'The year, month and day of the last qualifying move of a migrant student.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23171', '12', '23171', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000083', 'Disciplinary Action Start Date', NULL, 'The year, month and day on which a discipline action begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21083', '11', '21083', NULL, NULL) +VALUES ('000172', 'Last or Surname', 'Last Name', 'The full legal last name borne in common by members of a family.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23172', '12', '23172', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000084', 'Career-Technical-Adult Education Displaced Homemaker Indicator', 'CTE-AE Displaced Homemaker Indicator', 'A person who ; (A) (i) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; (ii) has been dependent on the income of another family member but is no longer supported by that income; or (iii) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (B) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21084', '11', '21084', NULL, NULL) +VALUES ('000173', 'Local Education Agency Improvement Status', 'LEA Improvement Status', 'An indication of the improvement stage for AYP of the local education agency (LEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23173', '12', '23173', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000085', 'Dual Credit Dual Enrollment Credits Awarded', NULL, 'The number of credits awarded a student by the postsecondary institution based on successful completion of dual credit/dual enrollment courses. ', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21085', '11', '21085', NULL, NULL) +VALUES ('000174', 'Local Education Agency Operational Status', 'LEA Operational Status', 'The classification of the operational condition of a local education agency (LEA) at the start of the school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23174', '12', '23174', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000086', 'Economic Disadvantage Status', NULL, 'An indication that the student met the State criteria for classification as having an economic disadvantage.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21086', '11', '21086', NULL, NULL) +VALUES ('000175', 'Local Education Agency Supervisory Union Identification Number', 'LEA Supervisory Union Identification Number', 'The three-digit unique identifier assigned to the supervisory union by the state. ', 'Alphanumeric - 3 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23175', '12', '23175', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000087', 'K12 Staff Classification', NULL, 'The titles of employment, official status, or rank of education staff.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21087', '11', '21087', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000177', 'Assessment Level for Which Designed', NULL, 'The typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23177', '12', '23177', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000088', 'Electronic Mail Address', 'Email Address', 'The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the person or organization belongs.', 'Alphanumeric - between 7 and 128 characters', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21088', '11', '21088', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000178', 'Level of Institution', NULL, 'A classification of whether a postsecondary institution''s highest level of offering is a program of 4-years or higher (4 year), 2-but-less-than 4-years (2 year), or less than 2-years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23178', '12', '23178', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000089', 'Electronic Mail Address Type', 'Email Address Type', 'The type of electronic mail (e-mail) address listed for a person or organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21089', '11', '21089', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000180', 'English Learner Status', NULL, 'In coordination with the state''s definition based on Section 8101(20) of the ESEA, as amended by the ESSA, the term ''English learner'', when used with respect to an individual, means an individual: (A) who is aged 3 through 21; (B) who is enrolled or preparing to enroll in an elementary school or a secondary school; (C) (i) who was not born in the United States or whose native languages are languages other than English; (ii) (I) who is a Native American or Alaska Native, or a native resident of the outlying areas; and (II) who comes from an environment where a language other than English has had a significant impact on the individual''s level of English language proficiency; or (iii) who is migratory, whose native language is a language other than English, and who come from an environment where a language other than English is dominant; and (D) whose difficulties in speaking, reading, writing, or understanding the English language may be sufficient to deny the individual (i) the ability to meet the challenging State academic standards; (ii) the ability to successfully achieve in classrooms where the language of instruction is English; or (iii) the opportunity to participate fully in society.', NULL, '1', 'To be classified as an English learner, an individual must be A, B, and (C or D). For C, an individual can be i, ii, or iii. If C-ii, the individual must be I and II. For D, an individual must be denied i or ii or iii and must be determined by a valid assessment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23180', '12', '23180', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000091', 'Elementary-Middle Additional Indicator Status', NULL, ' An indication of whether the school or district met the Elementary/Middle Additional Indicator requirement in accordance with state definition for the purpose of determining Adequate Yearly Progress (AYP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21091', '11', '21091', NULL, NULL) +VALUES ('000181', 'Magnet or Special Program Emphasis School', NULL, 'A school that has been designed: 1) to attract students of different racial/ethnic backgrounds for the purpose of reducing, preventing, or eliminating racial isolation; and/or 2)to provide an academic or social focus on a particular theme (e.g., science/math, performing arts, gifted/talented, career academy or foreign language).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23181', '12', '23181', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000092', 'Eligibility Status for School Food Service Programs', NULL, 'An indication of a student''s level of eligibility to participate in the National School Lunch Program for breakfast, lunch, snack, supper, and milk programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21092', '11', '21092', NULL, NULL) +VALUES ('000182', 'Marking Period Name', NULL, 'The name or description of the marking period (e.g., fall, first marking period).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23182', '12', '23182', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000093', 'End of Term Status', NULL, 'The nature of the student''s progress at the end of a given school term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21093', '11', '21093', NULL, NULL) +VALUES ('000183', 'Mid Term Mark', NULL, 'Indicator of student performance at the mid-point of the marking period.', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23183', '12', '23183', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000094', 'Enrollment Status', NULL, 'An indication as to whether a student''s name was, is, or will be officially registered on the roll of a school or schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21094', '11', '21094', NULL, NULL) +VALUES ('000184', 'Middle Name', NULL, 'A full legal middle name given to a person at birth, baptism, or through legal change.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23184', '12', '23184', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000095', 'Postsecondary Enrollment Type', NULL, 'An indicator of the enrollment type associated with the enrollment award level of a person at the beginning of a term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21095', '11', '21095', NULL, NULL) +VALUES ('000185', 'Migrant Education Program Participation Status', 'MEP Participation Status', 'An indicator of whether the student is served by a Migrant Education Program (MEP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23185', '12', '23185', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000096', 'Postsecondary Enrollment Status', NULL, 'An indication of the student''s enrollment status for a particular term as defined by the institution', NULL, '1', 'Either use option 02 or one of the options, 04 or 05, for less than full-time but at least half-time.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21096', '11', '21096', NULL, NULL) +VALUES ('000186', 'Migrant Education Program Services Type', 'MEP Services Type', 'The type of services received by participating migrant students in the migrant education program (MEP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23186', '12', '23186', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000097', 'Enrollment Entry Date', NULL, 'The month, day, and year on which a person enters and begins to receive instructional services in a school, institution, program, or class-section during a given session.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21097', '11', '21097', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000187', 'Migrant Education Program Session Type', 'MEP Session Type', 'The time of year that a Migrant Education Program operates.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23187', '12', '23187', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000098', 'Entry Date into Postsecondary', NULL, 'The year, month and day on which a person entered and began to receive instructional services at a postsecondary institution for the first time after completing high school (or its equivalent). ', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21098', '11', '21098', NULL, NULL) +VALUES ('000188', 'Migrant Education Program Staff Category', 'MEP Staff Category', 'Titles of employment, official status, or rank of staff working in the Migrant Education Program (MEP).', NULL, '1', 'Funded by Title I-C.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23188', '12', '23188', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000099', 'Entry Type', NULL, 'The process by which a student enters a school during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21099', '11', '21099', NULL, NULL) +VALUES ('000189', 'Migrant Status', NULL, 'Persons who are, or whose parents or spouses are, migratory agricultural workers, including migratory dairy workers, or migratory fishers, and who, in the preceding 36 months, in order to obtain, or accompany such parents or spouses, in order to obtain, temporary or seasonal employment in agricultural or fishing work (A) have moved from one LEA to another; (B) in a state that comprises a single LEA, have moved from one administrative area to another within such LEA; or (C) reside in an LEA of more than 15,000 square miles, and migrate a distance of 20 miles or more to a temporary residence to engage in a fishing activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23189', '12', '23189', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000100', 'Entry Grade Level', NULL, 'The grade level or primary instructional level at which a student enters and receives services in a school or an educational institution during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21100', '11', '21100', NULL, NULL) +VALUES ('000190', 'Address County Name', NULL, 'The name of the county, parish, borough, or comparable unit (within a state) in which an address is located.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23190', '12', '23190', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000101', 'Course Section Time Required for Completion', NULL, 'The actual or estimated number of clock minutes required for course completion. This number is especially important for career and technical education course and may represent (in minutes) the clock hour requirement of the course, the number of minutes (or clock hours) of class time per week, times the number of equivalent weeks the class typically meets.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21101', '11', '21101', NULL, NULL) +VALUES ('000191', 'Name of Institution', NULL, 'The full legally accepted name of the institution.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23191', '12', '23191', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000102', 'Staff Evaluation Outcome', NULL, 'The result of an assessment of a person''s performance.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21102', '11', '21102', NULL, NULL) +VALUES ('000193', 'Neglected or Delinquent Status', NULL, 'An indication that the student is participating in programs for neglected or delinquent students (N or D) under Title I, Part D, Subpart 1 (state agencies) of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23193', '12', '23193', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000103', 'Staff Evaluation Scale', NULL, 'The quantitative or qualitative range of possible scores/rating for a person''s overall performance (e.g., 0 - 10; Poor, Fair, Average, Good, Excellent).', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21103', '11', '21103', NULL, NULL) +VALUES ('000194', 'Neglected or Delinquent Program Type', NULL, 'The type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23194', '12', '23194', 'Updated', 'Add new option to option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000104', 'Staff Evaluation Score or Rating', NULL, 'The actual quantitative or qualitative assessment of a person''s overall performance.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21104', '11', '21104', NULL, NULL) +VALUES ('000196', 'Visa Type', NULL, 'An indicator of a non-US citizen''s Visa type.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23196', '12', '23196', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000105', 'Staff Evaluation System', NULL, 'The instrument and/or set of procedures with which a person''s performance is assessed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21105', '11', '21105', NULL, NULL) +VALUES ('000197', 'Normal Length of Time for Completion', NULL, 'The amount of time necessary for a person to complete all requirements for a degree or certificate according to the institution''s catalog. This is typically 4 years (8 semesters or trimesters, or 12 quarters, excluding summer terms) for a bachelor''s degree in a standard term-based institution; 2 years (4 semesters or trimesters, or 6 quarters, excluding summer terms) for an associate''s degree in a standard term-based institution; and the various scheduled times for certificate programs.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23197', '12', '23197', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000106', 'Cohort Exclusion', NULL, 'Those persons who may be removed (deleted) from a cohort (or subcohort). For the Graduation Rates and Fall Enrollment retention rate reporting, persons may be removed from a cohort if they left the institution for one of the following reasons: death or total and permanent disability; service in the armed forces (including those called to active duty); service with a foreign aid service of the federal government, such as the Peace Corps; or service on official church missions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21106', '11', '21106', NULL, NULL) +VALUES ('000198', 'Normal Length of Time for Completion Units', NULL, 'The unit of measurement for length of time for completion.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23198', '12', '23198', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000107', 'Enrollment Exit Date', NULL, 'The year, month and day on which the student officially withdrew or graduated, i.e. the date on which the student''s enrollment ended.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21107', '11', '21107', NULL, NULL) +VALUES ('000199', 'Number of Credits Attempted', NULL, 'The number of credits that a student can earn for enrolling in and completing a given course.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23199', '12', '23199', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000108', 'Exit or Withdrawal Status', NULL, 'An indication as to whether an instance of student exit/withdrawal is considered to be of a permanent or temporary nature.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21108', '11', '21108', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000200', 'Number of Credits Earned', NULL, 'The number of credits an individual earns by the successful completion of a course.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23200', '12', '23200', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000110', 'Exit or Withdrawal Type', NULL, 'The circumstances under which the student exited from membership in an educational institution. ', NULL, '1', 'The purpose of this element is to track the circumstances related to an exit from membership. There are multiple use cases related to this element, some for longitudinal purposes, some for funding, some for live transactional systems. The descriptions and definitions are intended to meet those needs. Four often misunderstood options are explained below:
1. 09999 - Other. Other is intended to indicate that CEDS has not yet defined a circumstance in which this exit occurred.
2. 03505 - Exited. Unlike "09999 - Other", the "Exited" option is intended to be used for administrative purposes such as a mid-year grade level change.
3. 01931 - Not enrolled, unknown status. This is to be used as a placeholder while additional exit information is collected or to track students who are known to have Discontinued Schooling (dropped out) separate from students whose whereabouts are unknown.
4. 03502 - Not enrolled, eligible to return. Different than the 01931 code, the status of this student is not unknown; however, the institution is required to exit the student from membership for an extended period. It is expected the student will reenroll in the same institution following this extended period.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21110', '11', '21110', NULL, NULL) +VALUES ('000201', 'Number of Days Absent', NULL, 'The number of days a person is absent when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23201', '12', '23201', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000111', 'Federal School Code', NULL, ' A unique code assigned by the U.S. Department of Education to schools participating in the Title IV Federal Student Aid programs. Persons enter these codes in the Free Application for Federal Student Aid (FAFSA) to indicate which postsecondary schools they want to receive their financial aid application results.', 'Alphanumeric - exactly 6 characters in length', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21111', '11', '21111', NULL, NULL) +VALUES ('000202', 'Number of Days in Attendance', NULL, 'The number of days a person is present when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', 'Note: This applies to an enrollment period record. Separate records using this element definition could capture attendance for regular enrollment, an out-of-school program or other program requiring attendance records. CEDS now supports the detailed attendance events to capture attendance status on any given day, class period, or session. CEDS generally doesn''t include elements for counts when it has the unit level elements to calculate the count. However, this element has been retained to support the intended use cases, recognizing that the rules for attendance vary based on location.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23202', '12', '23202', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000112', 'Financial Aid Award Amount', NULL, 'The amount of financial aid awarded to a person for the term/year.', 'Numeric - up to 2 digits after decimal place', '0', 'Linked to financial aid award type.
Note: For any given individual this cluster of fields may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21112', '11', '21112', NULL, NULL) +VALUES ('000203', 'Office of Postsecondary Education Identifier', 'OPEID', 'Identification number used by the U.S. Department of Education''s Office of Postsecondary Education (OPE) to identify schools that have Program Participation Agreements (PPA) so that its students are eligible to participate in Federal Student Financial Assistance programs under Title IV regulations. This is a 6-digit number followed by a 2-digit suffix used to identify branches, additional locations, and other entities that are part of the eligible institution.', 'Integer - exactly 8 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23203', '12', '23203', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000113', 'Financial Aid Award Type', NULL, 'The classification of financial aid awarded to a person for the academic term/year.', NULL, '1', 'Linked to financial aid type.
Note: For any given individual this cluster of fields may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21113', '11', '21113', NULL, NULL) +VALUES ('000204', 'Organization Name', NULL, 'The name of a non-person entity such as an organization, institution, agency or business.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23204', '12', '23204', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000115', 'First Name', NULL, 'The full legal first name given to a person at birth, baptism, or through legal change.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21115', '11', '21115', NULL, NULL) +VALUES ('000205', 'Staff Compensation Other Benefits', NULL, 'All other benefits paid by the school district, municipal, state, federal, and other government agencies for the teacher or early learning provider, prorated to the specific school or local provider agency indicated on the record, not including retirement and health insurance benefits or contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23205', '12', '23205', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000117', 'First Time Postsecondary Student', NULL, 'A person who has no prior postsecondary experience attending any institution for the first time at the undergraduate level since completing high school (or its equivalent). This includes persons enrolled in academic or occupational programs. It also includes persons enrolled in the fall term who attended college for the first time in the prior summer term, and persons who entered with advanced standing (college credits earned before graduation from high school).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21117', '11', '21117', NULL, NULL) +VALUES ('000206', 'Other Name', NULL, 'Previous, alternate or other names or aliases associated with the person.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23206', '12', '23206', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000118', 'Staff Full Time Equivalency', 'Staff FTE', 'The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21118', '11', '21118', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000207', 'Paraprofessional Qualification Status', NULL, 'An indication of whether paraprofessionals are classified as qualified for their assignment according to state definition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23207', '12', '23207', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000120', 'GED Preparation Program Participation Status', NULL, 'An indication that a student aged 16-19 participates in a General Educational Development (GED) preparation program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21120', '11', '21120', NULL, NULL) +VALUES ('000208', 'Participation Status for Math', NULL, 'An indication of whether the school or district met the 95 percent participation requirement in the mathematics assessment in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23208', '12', '23208', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000121', 'Generation Code or Suffix', NULL, 'An appendage, if any, used to denote a person''s generation in his family (e.g., Jr., Sr., III).', 'Alphanumeric - 10 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21121', '11', '21121', NULL, NULL) +VALUES ('000209', 'Participation Status for Reading and Language Arts', NULL, 'An indication of whether the school or district met the 95 percent participation requirement on the reading/language arts assessment in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23209', '12', '23209', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000122', 'Gifted and Talented Indicator', NULL, 'An indication that the student is participating in and served by a Gifted/Talented program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21122', '11', '21122', NULL, NULL) +VALUES ('000210', 'Persistently Dangerous Status', NULL, 'An indication of whether the school is identified as persistently dangerous in accordance with state definition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23210', '12', '23210', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000123', 'Grade Point Average Weighted Indicator', 'GPA Weighted Indicator', 'An indication of whether the reported Grade Point Average is weighted or unweighted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21123', '11', '21123', NULL, NULL) +VALUES ('000211', 'Persistently Lowest Achieving School Status', NULL, 'An indication of whether the school is identified by the state as persistently lowest-achieving.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23211', '12', '23211', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000124', 'Student Course Section Grade Earned', NULL, 'A final indicator of student performance in a course section as submitted by the instructor.', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21124', '11', '21124', NULL, NULL) +VALUES ('000212', 'Personal Title or Prefix', 'Prefix', 'An appellation, if any, used to denote rank, placement, or status (e.g., Mr., Ms., Reverend, Sister, Dr., Colonel).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23212', '12', '23212', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000125', 'Grade Level When Course Taken', NULL, 'Student''s grade level at time of course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21125', '11', '21125', 'Updated', 'Added new option to the existing option set.') +VALUES ('000213', 'Position Title', NULL, 'The descriptive name of a person''s position.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23213', '12', '23213', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000126', 'Grade Level When Assessed', NULL, 'The grade or developmental level of a student when assessed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21126', '11', '21126', 'Updated', 'Added new option to the existing option set.') +VALUES ('000214', 'Address Postal Code', NULL, 'A number that identifies each postal delivery area in the United States used as a portion of an address.', 'Alphanumeric - 17 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23214', '12', '23214', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000127', 'Grade Point Average', NULL, 'The value of the total quality points divided by the Credit Hours for Grade Point Average. ', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21127', '11', '21127', NULL, NULL) +VALUES ('000216', 'Prekindergarten Eligibility', NULL, 'The groups of students for whom pre-kindergarten programs are available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23216', '12', '23216', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000128', 'Grade Point Average Cumulative', 'GPA - Cumulative', 'A measure of average performance in all courses taken by a person during his or her school career as determined for record-keeping purposes. This is obtained by dividing the total grade points received by the total number of credits attempted. This usually includes grade points received and credits attempted in his or her current school as well as those transferred from schools in which the person was previously enrolled.', 'Numeric - up to 4 digits after decimal place', '0', 'Related Connection; linked to Grade Point Average Weighted Indicator, High School Percentile, High School Rank, and Size of High School Graduating Class', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21128', '11', '21128', NULL, NULL) +VALUES ('000217', 'Prekindergarten Eligible Ages for Non-IDEA Students', NULL, 'The ages of children not served under IDEA to whom the LEA''s pre-kindergarten services are available. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23217', '12', '23217', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000129', 'Grade Point Average Given Session', 'GPA - Given Session', 'A measure of average performance in all courses taken by a person during a given session. This is obtained by dividing the total grade points received by the number of credits attempted for the same session.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21129', '11', '21129', NULL, NULL) +VALUES ('000218', 'Primary Disability Type', NULL, 'The major or overriding disability condition that best describes a person''s impairment.', NULL, '1', 'Option set based on EDFacts. Only one disability condition would be selected. Refer to IDEA Disability Type for selecting multiple disability category options and any additional IDEA disability categories.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23218', '12', '23218', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000130', 'Grade Points Earned Cumulative', NULL, 'The cumulative number of grade points a person earns by successfully completing courses or examinations during his or her enrollment in the current school as well as those transferred from schools in which the person had been previously enrolled.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21130', '11', '21130', NULL, NULL) +VALUES ('000219', 'Primary Telephone Number Indicator', NULL, 'An indication that the telephone number should be used as the principal number for a person or organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23219', '12', '23219', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000131', 'Grades Offered', NULL, 'The specific grade or combination of grades offered by an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21131', '11', '21131', 'Updated', 'Added and removed options from existing option set.') +VALUES ('000914', 'Learning Resource Subject Code', NULL, 'The code used to identify the organization of subject matter and related learning experiences addressed by the learning resource.', 'Alphanumeric - 30 characters maximum', '0', 'A promising practice is to use a URL as the Learning Resource Subject Code, that resolves to a web page describing a term in a subject taxonomy. For example, for "Mathematics", the URL http://id.loc.gov/authorities/classification/BH301.M35.html points to the Library of Congress classification for "Mathematics". For K12 curriculum "SCED" - School Courses for the Exchange of Data (SCED) may be used, e.g. https://ceds.ed.gov/ScedCourseCodes.aspx#02031 is "Mathematics (grade 1)"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23914', '12', '23914', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000132', 'Graduation Rate Survey Cohort Year', NULL, 'The academic year in which a student entered as part of the GRS cohort.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21132', '11', '21132', NULL, NULL) +VALUES ('000915', 'Learning Resource Subject Code System', NULL, 'The system that is used to identify the organization of subject matter and related learning experiences addressed by the learning resource.', 'Alphanumeric - 30 characters maximum', '0', 'This may be a URL to a web page describing the subject code system or a name or abbreviation for the system if no authoritative web page exists. When the associated learning resource Subject Code is a URL, that URL usually provides enough context so that the "Subject Code System" need not be specified. However, this may be the URL to a page describing the classification system and/or the entry point to the web hosted classification system. E.g. for the Library of Congress Classification System use: http://id.loc.gov/authorities/classification.html', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23915', '12', '23915', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000133', 'Graduation Rate Survey Indicator', NULL, 'An indication of whether or not the student is in a GRS cohort; meaning the student began as a first-time, full-time, degree seeking student in the fall of a given year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21133', '11', '21133', NULL, NULL) +VALUES ('000916', 'Learning Resource Date Created', NULL, 'The date on which the resource was created.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23916', '12', '23916', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000134', 'Gun Free Schools Act Reporting Status', NULL, 'An indication of whether the school or local education agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, as defined by Title 18, Section 921.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21134', '11', '21134', NULL, NULL) +VALUES ('000917', 'Learning Resource Creator', NULL, 'The name of a person or organization credited with the creation of the resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23918', '12', '23918', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000135', 'Harassment or Bullying Policy Status', NULL, 'An indication of whether the education unit has adopted written policy prohibiting harassment and bullying on the basis of a civil rights law.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21135', '11', '21135', NULL, NULL) +VALUES ('000918', 'Learning Resource Publisher Name', NULL, 'The name of the organization credited with publishing the resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23919', '12', '23919', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000136', 'Staff Compensation Health Benefits', NULL, 'Contributions made by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider''s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21136', '11', '21136', NULL, NULL) +VALUES ('000919', 'Learning Resource Language', NULL, 'The primary language of the resource.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.
Note: For accessible resources LRMI uses language codes from the IETF BCP 47 standard which also refers to ISO 639. (Equivalent of the AfA languageOfAdaptation property.)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23920', '12', '23920', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000137', 'High School Course Requirement', NULL, 'An indication that this course credit is required for a high school diploma.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21137', '11', '21137', NULL, NULL) +VALUES ('000921', 'Learning Resource License URL', NULL, 'The URL where the owner specifies permissions for using the resource.', 'Alphanumeric - 512 characters maximum', '0', 'Ex: “http://creativecommons.org/licenses/by/3.0/“', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23922', '12', '23922', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000138', 'High School Diploma Type', NULL, 'The type of diploma/credential that is awarded to a person in recognition of his/her completion of the curricular requirements.', NULL, '1', 'Use "Other Diploma" instead of "Other" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21138', '11', '21138', NULL, NULL) +VALUES ('000922', 'Learning Resource Based on URL', NULL, 'A resource that was used in the creation of this resource. This term can be repeated for multiple sources.', 'Alphanumeric - 512 characters maximum', '0', 'Ex: “http://example.com/great-multiplication-intro.html“', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23923', '12', '23923', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000140', 'High School Graduation Rate Indicator Status', NULL, 'An indication of whether the school or district met the High School Graduation Rate requirement in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21140', '11', '21140', NULL, NULL) +VALUES ('000923', 'Learning Resource Intended End User Role', NULL, 'The individual or group for which the resource was produced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23924', '12', '23924', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000141', 'Highest Level of Education Completed', NULL, 'The extent of formal instruction a person has received (e.g., the highest grade in school completed or its equivalent or the highest degree received).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21141', '11', '21141', NULL, NULL) +VALUES ('000924', 'Learning Resource Time Required', NULL, 'The approximate or typical time it takes to work with or through this learning resource for the typical intended target audience.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23925', '12', '23925', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000142', 'Highly Qualified Teacher Indicator', NULL, 'An indication that the teacher has been classified as highly qualified based on assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21142', '11', '21142', NULL, NULL) +VALUES ('000925', 'Learning Resource Typical Age Range Minimum', NULL, 'The minimum for the typical range of ages of the content’s intended end user.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23926', '12', '23926', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000143', 'Hire Date', NULL, 'The year, month and day on which a person was hired for a position, or consecutive positions within the same organization and job classification.', 'YYYY-MM-DD', '0', 'This is the Hire Date beginning consecutive employment with the current employer in the same Professional-Educational Job Classification. A person may change positions within the same organization and job classification without triggering a new hire date. For example a teacher originally hire to teach 3rd grade may be reassigned to 4th grade. However, a change of job classifications, e.g. from teacher to principal, would trigger a new Hire Date.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21143', '11', '21143', NULL, NULL) +VALUES ('000926', 'Learning Resource Typical Age Range Maximum', NULL, 'The maximum for the typical range of ages of the content’s intended end user.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23927', '12', '23927', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000144', 'Hispanic or Latino Ethnicity', NULL, 'An indication that the person traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central and South America, and other Spanish cultures, regardless of race.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21144', '11', '21144', NULL, NULL) +VALUES ('000927', 'Learning Resource Interactivity Type', NULL, 'The predominate mode of learning supported by the learning resource. Acceptable values are active, expositive, or mixed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23928', '12', '23928', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000146', 'Homeless Primary Nighttime Residence', NULL, 'The primary nighttime residence of the person at the time the person was identified as homeless.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21146', '11', '21146', NULL, NULL) +VALUES ('000928', 'Learning Resource Type', NULL, 'The predominate type or kind characterizing the learning resource.', NULL, '1', 'A community of SEAs have agreed to use a limited set of Learning Resource Type options when tagging learning resources in shared resource repositories. The options defined for this element align with those common tagging specifications.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23929', '12', '23929', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000147', 'Homeless Serviced Indicator', NULL, 'An indication of whether homeless children and youth were served by a McKinney-Vento program in the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21147', '11', '21147', NULL, NULL) +VALUES ('000929', 'Learning Resource Text Complexity Value', NULL, 'The complexity of the text using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23930', '12', '23930', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000148', 'Homeless Unaccompanied Youth Status', NULL, 'An indication that homeless youths were unaccompanied by parents or legal guardians.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21148', '11', '21148', NULL, NULL) +VALUES ('000930', 'Learning Resource Text Complexity System', NULL, 'The scaling system used to specify the text complexity of an Learning Resource', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23931', '12', '23931', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000149', 'Homelessness Status', NULL, 'Children and youth who lack a fixed, regular, and adequate nighttime residence. Homeless children and youth include: 1) children and youth who are sharing the housing of other persons due to loss of housing, economic hardship, or a similar reason; are living in motels, hotels, trailer parks, or camping grounds due to the lack of alternative adequate accommodations; are living in emergency or transitional shelters; are abandoned in hospitals; or are awaiting foster care placement; 2) children and youth who have a primary nighttime residence that is a public or private place not designed for or originally used as a regular sleeping accommodation for human beings; or 3) children and youths who are living in cars, parks, public spaces, abandoned buildings, substandard housing, bus or train stations, or similar settings. 4) migratory children who qualify as homeless because the children are living in circumstances described in the above. (See Section 103 of the McKinney Act for a more detailed description of this data element).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21149', '11', '21149', NULL, NULL) +VALUES ('000931', 'Assessment Short Name', NULL, 'An abbreviated title for an assessment.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23932', '12', '23932', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000150', 'Honors Description', NULL, 'A description of the type of academic distinctions earned by or awarded to the person.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21150', '11', '21150', NULL, NULL) +VALUES ('000932', 'Assessment Family Title', NULL, 'The full title of the Assessment Family. An Assessment Family is a set of assessments with a common name, jurisdiction, or focus, such as Graduate Record Exam or National Assessment of Educational Progress.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23933', '12', '23933', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000151', 'IDEA Indicator', NULL, 'A person having intellectual disability; hearing impairment, including deafness; speech or language impairment; visual impairment, including blindness; serious emotional disturbance (hereafter referred to as emotional disturbance); orthopedic impairment; autism; traumatic brain injury; developmental delay; other health impairment; specific learning disability; deaf-blindness; or multiple disabilities and who, by reason thereof, receive special education and related services under the Individuals with Disabilities Education Act (IDEA) according to an Individualized Education Program (IEP), Individual Family Service Plan (IFSP), or service plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21151', '11', '21151', NULL, NULL) +VALUES ('000933', 'Assessment Family Short Name', NULL, 'The abbreviated title of the Assessment Family. An Assessment Family is a set of assessments with a common name, jurisdiction, or focus.', 'Alphanumeric - 30 characters maximum', '0', 'Examples: SAT, GRE, NAEP', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23934', '12', '23934', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001067', 'Assessment Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment by a school, school system, a state, or other agency or entity. This may be the publisher identifier.', 'Alphanumeric - 100 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21152', '11', '21152', 'Updated', 'Increased Format to Alphanumeric- 100 characters.') +VALUES ('000934', 'Learner Action Type', NULL, 'The type of action taken by the learner.', NULL, '1', 'The CEDS Learner Action Type option set comes from the ADL Controlled Vocabulary, xAPI specification.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23935', '12', '23935', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001068', 'Local Education Agency Identifier', 'LEA Identifier', 'A unique number or alphanumeric code assigned to a local education agency by a school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21153', '11', '21153', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000935', 'Learner Action Value', NULL, 'The value representing input by the learner using an online system, such as a value entered in response to an assessment question, or the URL of a learning resource link clicked.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23936', '12', '23936', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001069', 'School Identifier', NULL, 'A unique number or alphanumeric code assigned to an institution by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21155', '11', '21155', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000937', 'Learner Action Date Time', NULL, 'The date and time at which the action was taken.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23938', '12', '23938', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001070', 'Staff Member Identifier', NULL, 'A unique number or alphanumeric code assigned to a staff member by a school, school system, a state, registry, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21156', '11', '21156', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000938', 'Learner Activity Language', NULL, 'The default language used for the assignment.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23939', '12', '23939', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001071', 'Student Identifier', NULL, 'A unique number or alphanumeric code assigned to a student by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21157', '11', '21157', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000941', 'Learner Activity Prerequisite', NULL, 'The description of the skills or competencies the student must have to engage in assignment.', 'Alphanumeric - 300 characters maximum', '0', 'Note: Prerequisites may also be referenced via an associated Learning Goal and Competency Set (prerequisites for individual competencies). For some applications enumeration of the detailed prerequisites will have greater utility than a single descriptive field.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23942', '12', '23942', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000365', 'Assessment Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21158', '11', '21158', NULL, NULL) +VALUES ('000942', 'Learner Activity Type', NULL, 'The type of work assigned to the learner.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23943', '12', '23943', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001072', 'Local Education Agency Identification System', 'LEA Identification System', 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to a local education agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21159', '11', '21159', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000943', 'Learner Activity Creation Date', NULL, 'The creation date of the assignment.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23944', '12', '23944', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001073', 'School Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21161', '11', '21161', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000944', 'Learner Activity Maximum Time Allowed', NULL, 'The time required to complete the assignment.', 'Integer - greater than or equal to 0', '0', 'Time allowed is assumed to be unlimited if zero or omitted.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23945', '12', '23945', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001074', 'Staff Member Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, registry, or other agencies to refer to a staff member.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21162', '11', '21162', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000945', 'Learner Activity Maximum Time Allowed Unit', NULL, 'The unit of time of the Maximum Time Allowed value.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23946', '12', '23946', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001075', 'Student Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to a student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21163', '11', '21163', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000946', 'Learner Activity Due Date', NULL, 'The date assignment is due.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23947', '12', '23947', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000164', 'Increased Learning Time Type', NULL, 'The types of increased learning time provided.', NULL, '1', 'If your data is granular enough to differentiate between Before School and After School, it is recommended those options be selected over using the combined Before or After School option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21164', '11', '21164', NULL, NULL) +VALUES ('000947', 'Learner Activity Due Time', NULL, 'The time the assignment is due.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23948', '12', '23948', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000165', 'Initial Enrollment Term', NULL, 'The first registration term of a person enrolling in credit-granting courses at a postsecondary institution after completing high school (or its equivalent). ', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21165', '11', '21165', NULL, NULL) +VALUES ('000948', 'Learner Activity Maximum Attempts Allowed', NULL, 'The number attempts a student may make on this assignment. Assumed to be unlimited if zero or omitted.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23949', '12', '23949', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000166', 'Institution IPEDS UnitID', 'IPEDS Identifier', 'Unique identification number assigned to postsecondary institutions surveyed through the Integrated Postsecondary Education Data System (IPEDS). Also referred to as UNITID or IPEDS ID.', 'Integer - exactly 6 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21166', '11', '21166', NULL, NULL) +VALUES ('000949', 'Learner Activity Add to Grade Book Flag', NULL, 'Identifies the assignment as one that is graded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23950', '12', '23950', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000167', 'Institution Telephone Number Type', NULL, 'The type of communication number listed for an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21167', '11', '21167', NULL, NULL) +VALUES ('000950', 'Learner Activity Release Date', NULL, 'The date the student was informed about an assignment or that an automated system displays the assignment.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23951', '12', '23951', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000168', 'Instructional Activity Hours Attempted', NULL, 'The number of credit hours and/or contact hours attempted by a person during a term.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21168', '11', '21168', NULL, NULL) +VALUES ('000951', 'Learner Activity Weight', NULL, 'The percentage weight of the assignment during the particular course or term.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23952', '12', '23952', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000169', 'Instructional Activity Hours Type', NULL, 'The unit of measure of student instructional activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21169', '11', '21169', NULL, NULL) +VALUES ('000952', 'Learner Activity Possible Points', NULL, 'The number of possible points for an assignment.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23953', '12', '23953', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000170', 'Integrated Technology Status', NULL, 'An indication of the extent to which the district has effectively and fully integrated technology, as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21170', '11', '21170', NULL, NULL) +VALUES ('000953', 'Learner Activity Rubric URL', NULL, 'The Uniform Resource Locator pointing to a rubric that may be used to evaluate learner performance on the assignment.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23954', '12', '23954', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000171', 'Last Qualifying Move Date', NULL, 'The year, month and day of the last qualifying move of a migrant student.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21171', '11', '21171', NULL, NULL) +VALUES ('000954', 'Assessment Item Response Scaffolding Item Flag', NULL, 'Indicates that the response is to a scaffolding problem rather than the main/assigned problem. A scaffolding item is a follow-up formative assessment item used to assess prerequisite or component skills, presented immediately after a learner gives an incorrect answer on the previous item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23955', '12', '23955', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000172', 'Last or Surname', 'Last Name', 'The full legal last name borne in common by members of a family.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21172', '11', '21172', NULL, NULL) +VALUES ('000955', 'Assessment Item Response Hint Count', NULL, 'The total number of hints presented as the learner responded to a formative assessment item. This may include hints requested by the learner or hints automatically presented such as in an online tutoring system. Presentation of a scaffolding item is a separate response record and not counted as a hint.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23956', '12', '23956', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000173', 'Local Education Agency Improvement Status', 'LEA Improvement Status', 'An indication of the improvement stage for AYP of the local education agency (LEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21173', '11', '21173', NULL, NULL) +VALUES ('000956', 'Assessment Item Response Hint Included Answer', NULL, 'Indicates that one of the hints presented included the correct answer.', NULL, '1', 'A typical scenario for an online tutoring application may present a series of hints for a formative assessment item with the last hint being the correct answer. The learner must enter the correct answer before continuing. This data element is a flag that the learner was presented with the "bottom hint", which is the correct answer.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23957', '12', '23957', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000174', 'Local Education Agency Operational Status', 'LEA Operational Status', 'The classification of the operational condition of a local education agency (LEA) at the start of the school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21174', '11', '21174', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000957', 'Assessment Item Response First Attempt Duration', NULL, 'The amount of time in seconds or milliseconds that a person took to give an initial response, a first attempt to answer a formative assessment item.', 'HH:MM:SS or HH:MM:SS.sss', '0', 'Formative assessments often allow learners to make multiple attempts until a correct or acceptable answer is given. In such cases it is valuable to know both the time it took for the initial response and the total time spent responding to the problem.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23958', '12', '23958', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000175', 'Local Education Agency Supervisory Union Identification Number', 'LEA Supervisory Union Identification Number', 'The three-digit unique identifier assigned to the supervisory union by the state. ', 'Alphanumeric - 3 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21175', '11', '21175', NULL, NULL) +VALUES ('000958', 'Assessment Item Response Start Time', NULL, 'The time of day that the assessment item was presented to the learner.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23959', '12', '23959', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000177', 'Assessment Level for Which Designed', NULL, 'The typical grade or combination of grade-levels, developmental levels, or age-levels for which an assessment is designed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21177', '11', '21177', 'Updated', 'Added new option to the existing option set.') +VALUES ('000959', 'Assessment Item Response Start Date', NULL, 'The date on which the assessment item was presented to the learner.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23960', '12', '23960', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000178', 'Level of Institution', NULL, 'A classification of whether a postsecondary institution''s highest level of offering is a program of 4-years or higher (4 year), 2-but-less-than 4-years (2 year), or less than 2-years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21178', '11', '21178', NULL, NULL) +VALUES ('000961', 'Assessment Administration Code', NULL, 'The code given to the assessment event by a state or other authority directing overall administration.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23962', '12', '23962', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000179', 'Limited English Proficiency - Postsecondary', 'LEP - Postsecondary', 'The term "individual with limited English proficiency" means a secondary school student, an adult, or an out-of-school youth, who has limited ability in speaking, reading, writing, or understanding the English language AND whose native language is a language other than English; OR who lives in a family or community environment in which a language other than English is the dominant language. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21179', '11', '21179', 'Removed', 'Marked "Limited English Proficiency - Postsecondary" as "Removed". Use "English Learner Status" instead.') +VALUES ('000962', 'Assessment Administration Start Date', NULL, 'The start date of the time period designated for the assessment administration.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23963', '12', '23963', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000180', 'English Learner Status', NULL, 'In coordination with the state''s definition based on Section 8101(20) of the ESEA, as amended by the ESSA, the term ''English learner'', when used with respect to an individual, means an individual: (A) who is aged 3 through 21; (B) who is enrolled or preparing to enroll in an elementary school or a secondary school; (C) (i) who was not born in the United States or whose native languages are languages other than English; (ii) (I) who is a Native American or Alaska Native, or a native resident of the outlying areas; and (II) who comes from an environment where a language other than English has had a significant impact on the individual''s level of English language proficiency; or (iii) who is migratory, whose native language is a language other than English, and who come from an environment where a language other than English is dominant; and (D) whose difficulties in speaking, reading, writing, or understanding the English language may be sufficient to deny the individual (i) the ability to meet the challenging State academic standards; (ii) the ability to successfully achieve in classrooms where the language of instruction is English; or (iii) the opportunity to participate fully in society.', NULL, '1', 'To be classified as an English learner, an individual must be A, B, and (C or D). For C, an individual can be i, ii, or iii. If C-ii, the individual must be I and II. For D, an individual must be denied i or ii or iii and must be determined by a valid assessment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21180', '11', '21180', 'Updated', 'Removed English Learner Status out of EL Child>Disability. Created new category called English Learner. Removed Alternate Name') +VALUES ('000963', 'Assessment Administration Start Time', NULL, 'The start time of the time period designated for the assessment administration.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23964', '12', '23964', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000181', 'Magnet or Special Program Emphasis School', NULL, 'A school that has been designed: 1) to attract students of different racial/ethnic backgrounds for the purpose of reducing, preventing, or eliminating racial isolation; and/or 2)to provide an academic or social focus on a particular theme (e.g., science/math, performing arts, gifted/talented, career academy or foreign language).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21181', '11', '21181', NULL, NULL) +VALUES ('000964', 'Assessment Administration Finish Date', NULL, 'The finish date of the time period designated for the assessment administration.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23965', '12', '23965', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000182', 'Marking Period Name', NULL, 'The name or description of the marking period (e.g., fall, first marking period).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21182', '11', '21182', NULL, NULL) +VALUES ('000965', 'Assessment Administration Finish Time', NULL, 'The finish time of the time period designated for the assessment administration.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23966', '12', '23966', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000183', 'Mid Term Mark', NULL, 'Indicator of student performance at the mid-point of the marking period.', 'Alphanumeric - 15 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21183', '11', '21183', NULL, NULL) +VALUES ('000966', 'Assessment Administration Organization Name', NULL, 'The name of the organization with overall responsibility for the assessment event.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23967', '12', '23967', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000184', 'Middle Name', NULL, 'A full legal middle name given to a person at birth, baptism, or through legal change.', 'Alphanumeric - 75 characters maximum', '0', 'Workforce
Note: To collect data on workforce program participation, a data match will have to be negotiated between state agencies. The data match makes use of name, social security number, gender and ethnicity data.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21184', '11', '21184', NULL, NULL) +VALUES ('000967', 'Assessment Administration Assessment Family', NULL, 'The title of the assessment family to be administered.', 'Alphanumeric - 60 characters maximum', '0', 'A typical scenario for an assessment administration is a state-wide administration of an accountability test. For example, in Florida "Florida Comprehensive Assessment Test".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23968', '12', '23968', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000185', 'Migrant Education Program Participation Status', 'MEP Participation Status', 'An indicator of whether the student is served by a Migrant Education Program (MEP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21185', '11', '21185', NULL, NULL) +VALUES ('000985', 'Session Start Time', NULL, 'The hour, minute and second on which a session begins.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23986', '12', '23986', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000186', 'Migrant Education Program Services Type', 'MEP Services Type', 'The type of services received by participating migrant students in the migrant education program (MEP).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21186', '11', '21186', NULL, NULL) +VALUES ('000986', 'Session End Time', NULL, 'The hour, minute and second on which a session ends.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23988', '12', '23988', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000187', 'Migrant Education Program Session Type', 'MEP Session Type', 'The time of year that a Migrant Education Program operates.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21187', '11', '21187', NULL, NULL) +VALUES ('000968', 'Assessment Session Security Issue', NULL, 'The description of a security issue, if any, discovered for an administration of an assessment, such as suspected cheating by a student or a teacher changing answers after a student takes the test.', 'Alphanumeric - 300 characters maximum', '0', 'For example: Suspected plagiarism ; Computer left test window ; Excessive response time ; Proctor suspected copying ; Student identity not confirmed ; No proctor present ; Student carried wireless mobile device during test ; Student terminated test early and restarted ; Excessive erasures on test form ; Response pattern identical to another student''s', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23969', '12', '23969', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000188', 'Migrant Education Program Staff Category', 'MEP Staff Category', 'Titles of employment, official status, or rank of staff working in the Migrant Education Program (MEP).', NULL, '1', 'Funded by Title I-C.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21188', '11', '21188', NULL, NULL) +VALUES ('000969', 'Assessment Item Response Security Issue', NULL, 'The description of security issue, if any, related to a learner''s response to an assessment item.', 'Alphanumeric - 300 characters maximum', '0', 'For example: Suspected plagiarism ; Computer left test window ; Excessive response time ; Proctor suspected copying ; Student identity not confirmed ; No proctor present ; Student carried wireless mobile device during test ; Student terminated test early and restarted ; Excessive erasures on test form ; Response pattern identical to another student''s', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23970', '12', '23970', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000189', 'Migrant Status', NULL, 'Persons who are, or whose parents or spouses are, migratory agricultural workers, including migratory dairy workers, or migratory fishers, and who, in the preceding 36 months, in order to obtain, or accompany such parents or spouses, in order to obtain, temporary or seasonal employment in agricultural or fishing work (A) have moved from one LEA to another; (B) in a state that comprises a single LEA, have moved from one administrative area to another within such LEA; or (C) reside in an LEA of more than 15,000 square miles, and migrate a distance of 20 miles or more to a temporary residence to engage in a fishing activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21189', '11', '21189', NULL, NULL) +VALUES ('000970', 'Assessment Result Date Updated', NULL, 'The most recent date that the result was calculated/updated. The value should be the same as Assessment Result Date Created if the subtest has only been scored once, but may be different if the score was recalculated with a different result.', 'YYYY-MM-DD', '0', 'This flag is to handle cases when a subtest result is originally scored using incorrect parameters and then rescored, such as if the grade level attributed to the student was originally encoded incorrectly and later corrected. An operational system may also capture the history of if rescored more than once.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23971', '12', '23971', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000190', 'Address County Name', NULL, 'The name of the county, parish, borough, or comparable unit (within a state) in which an address is located.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21190', '11', '21190', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000971', 'Assessment Result Date Created', NULL, 'The date on which the assessment result was generated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23972', '12', '23972', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000872', 'Competency Definition Parent Identifier', 'Learning Standard Item Parent Identifier, Competency Item Parent Identifier', 'The globally unique identifier (GUID) issued by the publisher of the competency framework that uniquely identifies the parent item in the hierarchy of competency definitions using a RFC 4122 compliant 32-character hexadecimal string, such as 21EC2020-3AEA-1069-A2DD-08002B30309D.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21872', '11', '21872', NULL, NULL) +VALUES ('000972', 'Teacher Student Data Link Exclusion Flag', NULL, 'Indicates that the student is excluded from calculation of value-added or growth attribution calculations used for teacher evaluation.', NULL, '1', 'The context for this element is the intersection of a teacher assignment to a Class/Section and a student enrollment to a Class/Section. It may be represented in a data model as a separate entity such as Teacher Student Data Link Exclusion.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23973', '12', '23973', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000873', 'Competency Definition Parent Code', 'Learning Standard Item Parent Code, Competency Item Parent Code', 'A human-referenceable code designated by the publisher to identify the parent item in the hierarchy of competency definitions.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21873', '11', '21873', NULL, NULL) +VALUES ('000973', 'Demographic Race Two or More Races', NULL, 'A person having origins in any of more than one of the racial groups.', NULL, '1', 'To support backward compatibility for systems that cannot derive this, i.e. systems that use a single race/ethnicity element rather than separate flags that can indicate one or more ethnicities.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23974', '12', '23974', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000874', 'Competency Definition URL', 'Learning Standard Item URL, Competency Item URL', 'A network-resolvable Uniform Resource Locator (URL) pointing to the authoritative reference for the competency definition.', 'Alphanumeric - 512 characters maximum', '0', 'An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21874', '11', '21874', NULL, NULL) +VALUES ('000974', 'Course Section Enrollment Status Start Date', NULL, 'The date on which the enrollment status began related to a student enrolled in an instance of a course.', 'YYYY-MM-DD', '0', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23975', '12', '23975', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000875', 'Competency Definition Blooms Taxonomy Domain', 'Learning Standard Item Blooms Taxonomy Domain, Competency Item Blooms Taxonomy Domain', 'Classification of the Competency Definition using Bloom''s Taxonomy Domains. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21875', '11', '21875', NULL, NULL) +VALUES ('000975', 'Course Section Enrollment Status End Date', NULL, 'The date on which the enrollment status ended related to a student enrolled in an instance of a course.', 'YYYY-MM-DD', '0', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait-listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list. All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23976', '12', '23976', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000876', 'Competency Definition Multiple Intelligence', 'Learning Standard Item Multiple Intelligence, Competency Item Multiple Intelligence', 'Classification of the Competency Definition using intelligences defined for Howard Earl Gardner''s Theory of Multiple Intelligences.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21876', '11', '21876', NULL, NULL) +VALUES ('000976', 'Course Section Enrollment Status Type', NULL, 'The status related to a student enrollment in an instance of a course.', NULL, '1', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23977', '12', '23977', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000877', 'Competency Set Completion Criteria', NULL, 'The criteria for the set of competencies that represent completion or partial completion of a unit, course, program, degree, certification, or other achievement/award. Specifies whether completion requires achievement of all items in the set or some number of items.', NULL, '1', 'The criteria may be ‘all’ competencies in the set or ‘at-least’ # of competencies. Sets may be nested, e.g. all in subset A and 3 of 5 from subset B.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21877', '11', '21877', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('000977', 'Assessment Administration Name', NULL, 'The name given to an assessment event.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23978', '12', '23978', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000878', 'Competency Set Completion Criteria Threshold', NULL, 'The minimum number of competencies in the set that must be achieved for completion or partial completion of a unit, course, program, degree, certification, or other achievement/award.', 'Integer - greater than or equal to 0', '0', 'Used to define the completion criteria when Competency Set Completion Criteria is "At Least". Not used when Competency Set Completion Criteria is "All".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21878', '11', '21878', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('000978', 'Course Section Identifier', NULL, 'A unique number or alphanumeric code assigned by an institution, school, school system, state, or other agency or entity for a particular course-section.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23979', '12', '23979', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000879', 'Learning Resource Competency Alignment Type', NULL, 'The alignment relationship between the resource and a competency definition object.', NULL, '1', 'A community of SEAs have agreed to use a limited set of Learning Resource Competency Alignment Type options when tagging learning resources in shared resource repositories. Those options are assesses, teaches, and requires.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21879', '11', '21879', NULL, NULL) +VALUES ('000979', 'Assessment Form Section Sequence Number', NULL, 'The position of the assessment section presented in the sequence of sections within an assessment form.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23980', '12', '23980', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000880', 'Competency Framework Language', 'Learning Standard Document Language', 'The default language of the text used for the content in the competency framework.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21880', '11', '21880', NULL, NULL) +VALUES ('000980', 'Assessment Form Section GUID', NULL, 'The globally unique identifier of an Assessment Form Section using a RFC 4122 compliant hexadecimal string.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23981', '12', '23981', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000881', 'Competency Definition Language', 'Learning Standard Item Language, Competency Item Language', 'The default language of the text used for the content in the competency definition statement.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21881', '11', '21881', NULL, NULL) +VALUES ('000981', 'Assessment GUID', NULL, 'The globally unique identifier of an Assessment using a RFC 4122 compliant hexadecimal string.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23982', '12', '23982', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000882', 'Competency Framework License', 'Learning Standard Document License', 'A legal document giving official permission to do something with the competency framework.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21882', '11', '21882', NULL, NULL) +VALUES ('000982', 'Accreditation Agency', NULL, 'The agency that accredited a program.', NULL, '1', 'Organization Name may be used with Organization Type=''Accrediting Organization'' when Accreditation Agency is set to ''Other Accreditation Agency.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23983', '12', '23983', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000883', 'Competency Definition License', 'Learning Standard Item License, Competency Item License', 'The full text or URL reference to a legal document giving official permission to do something with the competency definition statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21883', '11', '21883', NULL, NULL) +VALUES ('000983', 'Administrative Policy Type', NULL, 'A type of administrative policy used by a program.', NULL, '1', 'More than one Administrative Policy Type may apply.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23984', '12', '23984', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000884', 'Competency Framework Publisher', 'Learning Standard Document Publisher', 'The entity responsible for making the competency framework available.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21884', '11', '21884', NULL, NULL) +VALUES ('000984', 'Facility Licensing Status', NULL, 'The status of the facility license.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23985', '12', '23985', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000885', 'Competency Framework Rights', 'Learning Standard Document Rights', 'The information about rights held in and over the resource.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21885', '11', '21885', NULL, NULL) +VALUES ('000987', 'Employed While Enrolled', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources won''t tell you anything further about employment or unemployment, only that a record was "not found" or "not matched" thus "unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23989', '12', '23989', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000886', 'Competency Framework Rights Holder', 'Learning Standard Document Rights Holder', 'The person or organization owning or managing rights over the competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21886', '11', '21886', NULL, NULL) +VALUES ('000988', 'Employed After Exit', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources will provide information about most of the types of jobs that students or former students will become employed in but not all. For that reason when a record is "not found" or "not matched" their employment status is "unknown" for the targeted time base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23990', '12', '23990', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000887', 'Competency Definition Concept Keyword', 'Learning Standard Item Concept Keyword, Competency Item Concept Keyword', 'The significant topicality of the competency definition using free-text keywords and phrases.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21887', '11', '21887', NULL, NULL) +VALUES ('000989', 'Quarterly Earnings', NULL, 'The quarterly amount paid to individuals found employed during the reference period.', 'Numeric - up to 2 digits after decimal place', '0', 'Workforce Notes: Quarterly earnings are the sum of all the reported earnings for each individual for all jobs held during the reference quarter. "Reference" quarter is the period of employment defined by the agency for its purposes either for students who are enrolled or after they exit. The amount is expressed as a numeric dollar amount. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23991', '12', '23991', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000888', 'Competency Definition Concept Term', 'Learning Standard Item Concept Term, Competency Item Concept Term', 'The topicality of the competency definition, e.g. "Pythagorean Theorem," "Trigonometric functions," "Forces and energy," "Scientific method," "Oral history," etc.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21888', '11', '21888', NULL, NULL) +VALUES ('000990', 'Employment Location', NULL, 'The state or other location in which an individual is found employed.', NULL, '1', 'Workforce Notes: The most commonly available indication of where employment is located is at the state level. While federal data resources provide indicators outside of the United States, these resources will not represent the majority of the students found employed, which will be based on state UI Wage Data. There may, in some instances, be multiple states where employment is found. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence, change, and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23992', '12', '23992', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000889', 'Assessment Registration Assignor Identifier', NULL, 'The unique identifier of the person who assigned the assessment to the learner.', 'Alphanumeric - 40 characters maximum', '0', 'For example, the unique identifier of a classroom teacher or school principal.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21889', '11', '21889', NULL, NULL) +VALUES ('000991', 'Person Employed in Multiple Jobs Count', NULL, 'The number of jobs held by a person during the reference period.', 'Integer - greater than or equal to 0', '0', 'Workforce Notes: The data sources represent employment during a three month period. Students found employed may have multiple jobs during a reference period with no indication of their sequence. The option set provides a set of numeric ranges for these instances. Many states report these numbers, some as indications of employment stability. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence, change, and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23993', '12', '23993', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000890', 'Assessment Result Descriptive Feedback', NULL, 'The formative descriptive feedback that was given to a learner based on a scored/evaluated portion of an assessment as recorded in the result entity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21890', '11', '21890', NULL, NULL) +VALUES ('000992', 'Employment Record Reference Period Start Date', NULL, 'The year, month, and day of the first day of the employment record reference period.', 'YYYY-MM-DD', '0', 'The reference quarter is the 13-week period around which employment and earnings data are collected. For unemployment insurance purposes, quarters are defined by 13-week periods. In most state cases, a reference quarter is defined to coincide with an enrollment period (e.g., a term or semester) or as a certain number of quarters after exiting a program, such as "3d quarter after exit." In some cases, states have defined the reference quarter to represent a period where employment and earnings data are collected for all of a previous year''s exits and graduates. This is often the October- December quarter. Ultimately, the most value to be gained from the use of employment and earnings data is when data are collected continuously, both in a longitudinal sense for defined cohorts of students, as well as for an "annual set" of students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23994', '12', '23994', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000891', 'Assessment Item Response Descriptive Feedback', NULL, 'The formative descriptive feedback that was given to a learner in response to the results from a scored/evaluated assessment item.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21891', '11', '21891', NULL, NULL) +VALUES ('000993', 'Employment Record Reference Period End Date', NULL, 'The year, month, and day of the last day of the employment record reference period.', 'YYYY-MM-DD', '0', 'The reference quarter is the 13-week period around which employment and earnings data are collected. For unemployment insurance purposes, quarters are defined by 13-week periods. In most state cases, a reference quarter is defined to coincide with an enrollment period (e.g., a term or semester) or as a certain number of quarters after exiting a program, such as "3d quarter after exit." In some cases, states have defined the reference quarter to represent a period where employment and earnings data are collected for all of a previous year''s exits and graduates. This is often the October - December quarter. Ultimately, the most value to be gained from the use of employment and earnings data is when data are collected continuously, both in a longitudinal sense for defined cohorts of students, as well as for an "annual set" of students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23995', '12', '23995', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000892', 'Credential Definition Category Type', 'Credential Category Type', 'A category for defining the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 60 characters maximum', '0', 'Categories could include "Competency Mastered", "Competency Retained", "Course Completed", "Level Completed", "Certificate Earned", "Diploma Earned", "License Earned", "License Endorsement Earned", "Participation", "Academic Honor", "Non-Academic Honor", etc. (This element supports an emerging use case, therefore a complete set of options are not known. Future CEDS versions may define an Achievement Type element when a fixed option set can be compiled.) Note: The Achievement entity is most valuable when linked to a specific competency set that defined the learning standards related to the achievement.(SEE "Achievement Category System")', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21892', '11', '21892', NULL, NULL) +VALUES ('000994', 'Employment Record Administrative Data Source', NULL, 'Administrative data source of information used to collect employment and earnings-related data.', NULL, '1', 'For over 25 years, states have relied upon administrative data sources to document the employment and earnings of students and former students. The sources listed are complementary, rather than alternatives. That is, State UI records only include information for employees within a state''s boundaries. The WRIS II system can provide employment data for other states (from their UI wage record systems). State UI records do not include information about federal or postal service employment, nor do they contain information about military enlistments. FEDES provides access to that information. Ideally, an entity will use UI, WRIS (other state UI), and FEDES together.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23996', '12', '23996', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000893', 'Credential Definition Title', 'Credential Title', 'The title assigned to a qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21893', '11', '21893', NULL, NULL) +VALUES ('000997', 'Workforce Program Type', NULL, 'The type of workforce and employment development program that an individual is participating in.', NULL, '1', 'A reference period for identifying program participation during or after enrollment in secondary education, postsecondary education, or adult education will have to be defined by the agency in collaboration with other agency partners. At this point this element is intended only to indicate program participation and does not delve into programmatic details, persistence, or completion.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24000', '12', '24000', 'Updated', 'Add new option to option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000894', 'Credential Image URL', NULL, 'The Uniform Resource Locator (URL) for the unique address of an image representing an award or badge associated with the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 512 characters maximum', '0', 'Typical use is for online display of a badge image.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21894', '11', '21894', NULL, NULL) +VALUES ('000998', 'Workforce Program Participation Start Date', NULL, 'The year, month, and day of the first day of the reference period during which data are matched between education and workforce data sources.', 'YYYY-MM-DD', '0', 'Agencies define the time period for this collection around an enrollment period or exit date with a to-be defined lag period following an exit event. Enrollment periods are defined in CEDS for K12 and postsecondary students. The term "exit" includes leaving education for any reason including dropping out or graduating with or without a credential. Exiting conditions are defined in CEDS for K12 and postsecondary students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24001', '12', '24001', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000895', 'Credential Definition Description', 'Credential Description', 'A description of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21895', '11', '21895', NULL, NULL) +VALUES ('000999', 'Workforce Program Participation End Date', NULL, 'The year, month, and day of the last day of the reference period during which data are matched between education and workforce data sources.', 'YYYY-MM-DD', '0', 'Agencies define the time period for this collection around an enrollment period or exit date with a to-be defined lag period following an exit event. Enrollment periods are defined in CEDS for K12 and postsecondary students. The term "exit" includes leaving education for any reason including dropping out or graduating with or without a credential. Exiting conditions are defined in CEDS for K12 and postsecondary students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24002', '12', '24002', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000896', 'Credential Definition Criteria', 'Credential Criteria', 'The criteria for competency-based completion of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21896', '11', '21896', NULL, NULL) +VALUES ('001000', 'Assessment Early Learning Developmental Domain', NULL, 'Developmental domains related to early learning and used for assessing a child''s kindergarten readiness.', NULL, '1', 'Used by states in reporting Kindergarten Entry Assessment (KEA) results as defined for some federal grant programs.

For each domain used by the state, the state would provide:
- The total number of children who participated in the KEA for each domain
- The number of children who participated in the KEA for each domain AND was at or above what the state defines as “ready” for kindergarten for that domain.

The counts may be calculated using unit-level data defined for Assessment Subtest (scoring method and what is being measured, e.g. the Domain), related Assessment Performance Levels (e.g. "Ready"), related to each student Assessment Result.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24003', '12', '24003', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000898', 'Credential Award Issuer Name', NULL, 'The name of the agent issuing the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 128 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21898', '11', '21898', NULL, NULL) +VALUES ('001001', 'Special Needs Policy', NULL, 'Program ensures that policies are in place for Individualized Education Programs (IEPs) or Individual Family Service Plans (IFSPs) to meet the child''s unique needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24004', '12', '24004', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000900', 'Credential Award Issuer Origin URL', NULL, 'The Uniform Resource Locator (URL) from which the qualification, achievement, personal or organizational quality, or aspect of an identity was issued.', 'Alphanumeric - 512 characters maximum', '0', 'Used only if an award is issued electronically for the achievement.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21900', '11', '21900', NULL, NULL) +VALUES ('001002', 'Learning Resource Educational Use', NULL, 'The purpose of the work in the context of education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24005', '12', '24005', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000901', 'Credential Evidence Statement', NULL, 'A statement or reference describing the evidence that the learner met the criteria for attainment of the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 300 characters maximum', '0', 'A narrative that may connect multiple pieces of evidence OR an IRI or document describing the work that the recipient did to earn the achievement. This can be a page that links out to other pages if linking directly to the work is infeasible. May be used in an array of multiple values.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21901', '11', '21901', NULL, NULL) +VALUES ('001003', 'Assessment Participant Session Delivery Device Details', NULL, 'The details about the device or platform by with which the assessment was delivered to the learner.', 'Alphanumeric - 300 characters maximum', '0', 'For example web browser version and screen resolution.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24006', '12', '24006', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000902', 'Goal Success Criteria', NULL, 'One or more statements that describes the criteria used by teachers and students to check for attainment of a goal.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21902', '11', '21902', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('001004', 'Assessment Personal Needs Profile Assigned Support', NULL, 'Defines whether or not the individual needs the kind of support defined by the entity.', NULL, '1', 'This flag may apply to any need within the Assessment Personal Need Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24007', '12', '24007', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000903', 'Goal Description', NULL, 'A statement that describes the desired outcomes.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21903', '11', '21903', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('001005', 'Assessment Personal Needs Profile Activate by Default', NULL, 'Determines if the alternative accessible content is rendered as the default content for the learner.', NULL, '1', 'This flag may apply to any need within the Assessment Personal Need Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24008', '12', '24008', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000904', 'Assessment Item Possible Response Feedback Message', NULL, 'A message provided to the person being assessed after giving a response that matches the possible response.', 'Alphanumeric - 300 characters maximum', '0', 'This may be a message of affirmation for a correct answer or descriptive feedback for an incorrect answer. For example, if the item asked the question what is 2 times 3 and the learner answered 5, the Feedback Message might be "Try multiplication instead of addition."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21904', '11', '21904', NULL, NULL) +VALUES ('001006', 'Assessment Provider', NULL, 'Identifies the provider or publisher of the assessment.', 'Alphanumeric - 30 characters maximum', '0', 'AIF property', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24009', '12', '24009', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000905', 'Assessment Item Possible Response Sequence Number', NULL, 'The position of this response in the list of responses displayed, such as for a multiple choice item type.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21905', '11', '21905', NULL, NULL) +VALUES ('001007', 'Assessment Result Preliminary Indicator', NULL, 'If this score is preliminary, then this attribute value should be set. Preliminary scores may be provided for early use by the assessment program or user while final scoring is occurring.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24010', '12', '24010', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000906', 'Assessment Item Text Complexity Value', NULL, 'The complexity of the text using the scaling system defined by Text Complexity System, e.g. Lexile™ for assessment items with a reading passage.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21906', '11', '21906', NULL, NULL) +VALUES ('001008', 'Diagnostic Statement Source', NULL, 'Identifies the source of the Diagnostic Statement based on a scored/evaluated portion of an assessment.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24011', '12', '24011', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000907', 'Assessment Item Text Complexity System', NULL, 'The scaling system used to specify the text complexity of an assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21907', '11', '21907', NULL, NULL) +VALUES ('001009', 'Assessment Result Number of Responses', NULL, 'The number of responses that are included with the Student Score Set. Responses are those items that were attempted (partially or fully answered) by the student and not necessarily the number of items in the assessment (which can be determined from the assessment object).', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24012', '12', '24012', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000908', 'Assessment Item Possible Response Value', NULL, 'The description of each distracter on an assessment item, explaining why it is there, what misunderstandings it exposes.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21908', '11', '21908', NULL, NULL) +VALUES ('001010', 'Assessment Form Subtest Item Weight Correct', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item is correct or partially correct. Item weight of 1 indicates the full item score is used. A weight of .5 would indicate the item only contributes one half of the item score to the subtest. A weight of 0 indicates the item does not affect the sub test score.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24013', '12', '24013', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000910', 'Competency Definition Text Complexity System', 'Learning Standard Item Text Complexity System, Competency Item Text Complexity System', 'The scaling system used to specify the text complexity of a competency item.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21910', '11', '21910', NULL, NULL) +VALUES ('001012', 'Assessment Form Subtest Item Weight Incorrect', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item is attempted and incorrect. Item weight should be a negative value if the item subtracts from the score if missed.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24014', '12', '24014', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000911', 'Learning Resource URL', NULL, 'The Uniform Resource Locator where the resource may be accessed, or a proxy for the resource, such as an information page for a commercially available resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21911', '11', '21911', NULL, NULL) +VALUES ('001013', 'Assessment Form Subtest Item Weight Not Attempted', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item has not been attempted by the student. Item weight should be a negative value if the item subtracts from the score if not attempted.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24015', '12', '24015', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000912', 'Learning Resource Title', NULL, 'The title of the resource.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21912', '11', '21912', NULL, NULL) +VALUES ('001014', 'Assessment Subtest Identifier Type', NULL, 'The type of identifier that is provided for a Subtest.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24016', '12', '24016', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000913', 'Learning Resource Subject Name', NULL, 'The descriptive name for the subject of the content for the learning resource.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21913', '11', '21913', NULL, NULL) +VALUES ('001015', 'Assessment Registration Days of Instruction', NULL, 'The number of days of instruction the student has taken prior to testing.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24017', '12', '24017', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000914', 'Learning Resource Subject Code', NULL, 'The code used to identify the organization of subject matter and related learning experiences addressed by the learning resource.', 'Alphanumeric - 30 characters maximum', '0', 'A promising practice is to use a URL as the Learning Resource Subject Code, that resolves to a web page describing a term in a subject taxonomy. For example, for "Mathematics", the URL http://id.loc.gov/authorities/classification/BH301.M35.html points to the Library of Congress classification for "Mathematics". For K12 curriculum "SCED" - School Courses for the Exchange of Data (SCED) may be used, e.g. https://ceds.ed.gov/ScedCourseCodes.aspx#02031 is "Mathematics (grade 1)"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21914', '11', '21914', NULL, NULL) +VALUES ('001016', 'Assessment Registration Retest Indicator', NULL, 'Indicates if this registration is for a retest (retake). Retest can occur if a student failed a prior attempt and is eligible to retake. Other retest scenarios also can occur.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24018', '12', '24018', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000915', 'Learning Resource Subject Code System', NULL, 'The system that is used to identify the organization of subject matter and related learning experiences addressed by the learning resource.', 'Alphanumeric - 30 characters maximum', '0', 'This may be a URL to a web page describing the subject code system or a name or abbreviation for the system if no authoritative web page exists. When the associated learning resource Subject Code is a URL, that URL usually provides enough context so that the "Subject Code System" need not be specified. However, this may be the URL to a page describing the classification system and/or the entry point to the web hosted classification system. E.g. for the Library of Congress Classification System use: http://id.loc.gov/authorities/classification.html', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21915', '11', '21915', NULL, NULL) +VALUES ('001017', 'Assessment Registration Creation Date', NULL, 'Date/time assignment is made.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24019', '12', '24019', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000916', 'Learning Resource Date Created', NULL, 'The date on which the resource was created.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21916', '11', '21916', NULL, NULL) +VALUES ('001018', 'Assessment Session Type', NULL, 'The type of session that is scheduled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24020', '12', '24020', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000917', 'Learning Resource Creator', NULL, 'The name of a person or organization credited with the creation of the resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21918', '11', '21918', NULL, NULL) +VALUES ('001019', 'Assessment Session Scheduled Start Date Time', NULL, 'Date and time the assessment is scheduled to begin.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24021', '12', '24021', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000918', 'Learning Resource Publisher Name', NULL, 'The name of the organization credited with publishing the resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21919', '11', '21919', NULL, NULL) +VALUES ('001020', 'Assessment Session Scheduled End Date Time', NULL, 'Date and time the assessment is scheduled to end.', 'YYYY-MM-DDTHH:MM:SS', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24022', '12', '24022', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000919', 'Learning Resource Language', NULL, 'The primary language of the resource.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.
Note: For accessible resources LRMI uses language codes from the IETF BCP 47 standard which also refers to ISO 639. (Equivalent of the AfA languageOfAdaptation property.)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21920', '11', '21920', NULL, NULL) +VALUES ('001021', 'Assessment Session Actual Start Date Time', NULL, 'Date and time the assessment actually began.', 'YYYY-MM-DDTHH:MM:SS', '0', 'When associated to an assessment session this is the actual start date and time. When associated to an individual taking an assessment, this is the actual date and time when the individual started.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24023', '12', '24023', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000921', 'Learning Resource License URL', NULL, 'The URL where the owner specifies permissions for using the resource.', 'Alphanumeric - 512 characters maximum', '0', 'Ex: “http://creativecommons.org/licenses/by/3.0/“', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21922', '11', '21922', NULL, NULL) +VALUES ('001022', 'Assessment Session Actual End Date Time', NULL, 'Date and time the assessment actually ended.', 'YYYY-MM-DDTHH:MM:SS', '0', 'When associated to an assessment session this is the actual end date and time. When associated to an individual taking an assessment, this is the actual date and time when the individual finished.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24024', '12', '24024', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000922', 'Learning Resource Based on URL', NULL, 'A resource that was used in the creation of this resource. This term can be repeated for multiple sources.', 'Alphanumeric - 512 characters maximum', '0', 'Ex: “http://example.com/great-multiplication-intro.html“', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21923', '11', '21923', NULL, NULL) +VALUES ('001023', 'Assessment Need Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile a preference for the language of the user interface.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24025', '12', '24025', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000923', 'Learning Resource Intended End User Role', NULL, 'The individual or group for which the resource was produced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21924', '11', '21924', NULL, NULL) +VALUES ('001024', 'Assessment Need Hazard Type', NULL, 'Defines as part of an Assessment Personal Needs Profile a characteristic of a digital resource that may be specified as being dangerous to a user.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24026', '12', '24026', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000924', 'Learning Resource Time Required', NULL, 'The approximate or typical time it takes to work with or through this learning resource for the typical intended target audience.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21925', '11', '21925', NULL, NULL) +VALUES ('001025', 'Assessment Need Support Tool Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the electronic tool associated with a resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24027', '12', '24027', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000925', 'Learning Resource Typical Age Range Minimum', NULL, 'The minimum for the typical range of ages of the content’s intended end user.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21926', '11', '21926', NULL, NULL) +VALUES ('001026', 'Assessment Need Usage Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the rating for the collection of Access for All (AfA) needs and preferences.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24028', '12', '24028', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000926', 'Learning Resource Typical Age Range Maximum', NULL, 'The maximum for the typical range of ages of the content’s intended end user.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21927', '11', '21927', NULL, NULL) +VALUES ('001027', 'Assessment Need Link Indication Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the characteristics of presentation for a hyperlink when using a screen reader.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24029', '12', '24029', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000927', 'Learning Resource Interactivity Type', NULL, 'The predominate mode of learning supported by the learning resource. Acceptable values are active, expositive, or mixed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21928', '11', '21928', NULL, NULL) +VALUES ('001028', 'Assessment Need Speech Rate', NULL, 'Defines as part of an Assessment Personal Needs Profile the rate of speech of a speech synthesizer.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24030', '12', '24030', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000928', 'Learning Resource Type', NULL, 'The predominate type or kind characterizing the learning resource.', NULL, '1', 'A community of SEAs have agreed to use a limited set of Learning Resource Type options when tagging learning resources in shared resource repositories. The options defined for this element align with those common tagging specifications.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21929', '11', '21929', NULL, NULL) +VALUES ('001087', 'Assessment Need Pitch', NULL, 'Defines as part of an Assessment Personal Needs Profile the pitch of a speech synthesizer.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24031', '12', '24031', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000929', 'Learning Resource Text Complexity Value', NULL, 'The complexity of the text using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21930', '11', '21930', NULL, NULL) +VALUES ('001029', 'Assessment Need Volume', NULL, 'Defines as part of an Assessment Personal Needs Profile the volume of a speech synthesizer.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24032', '12', '24032', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000930', 'Learning Resource Text Complexity System', NULL, 'The scaling system used to specify the text complexity of an Learning Resource', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21931', '11', '21931', NULL, NULL) +VALUES ('001030', 'Assessment Need Invert Color Choice', NULL, 'Defines as part of an Assessment Personal Needs Profile the Access for All (AfA) preference to invert the foreground and background Colors.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24033', '12', '24033', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000931', 'Assessment Short Name', NULL, 'An abbreviated title for an assessment.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21932', '11', '21932', NULL, NULL) +VALUES ('001031', 'Assessment Need Magnification', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred magnification of the screen as a factor of a screen’s original size.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24034', '12', '24034', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000932', 'Assessment Family Title', NULL, 'The full title of the Assessment Family. An Assessment Family is a set of assessments with a common name, jurisdiction, or focus, such as Graduate Record Exam or National Assessment of Educational Progress.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21933', '11', '21933', NULL, NULL) +VALUES ('001032', 'Assessment Need Braille Grade Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the grade of Braille to use when using a Braille display.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24035', '12', '24035', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000933', 'Assessment Family Short Name', NULL, 'The abbreviated title of the Assessment Family. An Assessment Family is a set of assessments with a common name, jurisdiction, or focus.', 'Alphanumeric - 30 characters maximum', '0', 'Examples: SAT, GRE, NAEP', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21934', '11', '21934', NULL, NULL) +VALUES ('001033', 'Assessment Need Number of Braille Dots Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the number of dots in a Braille cell.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24036', '12', '24036', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000934', 'Learner Action Type', NULL, 'The type of action taken by the learner.', NULL, '1', 'The CEDS Learner Action Type option set comes from the ADL Controlled Vocabulary, xAPI specification.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21935', '11', '21935', NULL, NULL) +VALUES ('001034', 'Assessment Need Number of Braille Cells', NULL, 'Defines as part of an Assessment Personal Needs Profile the number of active Braille cells in a Braille display.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24037', '12', '24037', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000935', 'Learner Action Value', NULL, 'The value representing input by the learner using an online system, such as a value entered in response to an assessment question, or the URL of a learning resource link clicked.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21936', '11', '21936', NULL, NULL) +VALUES ('001035', 'Assessment Need Braille Mark Type', NULL, 'Defines as part of an Assessment Personal Needs Profile what textual properties to mark when using a Braille display.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24038', '12', '24038', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000937', 'Learner Action Date Time', NULL, 'The date and time at which the action was taken.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21938', '11', '21938', NULL, NULL) +VALUES ('001036', 'Assessment Need Braille Dot Pressure', NULL, 'Defines as part of an Assessment Personal Needs Profile the resistance pressure of Braille display pins.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24040', '12', '24040', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000938', 'Learner Activity Language', NULL, 'The default language used for the assignment.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21939', '11', '21939', NULL, NULL) +VALUES ('001037', 'Assessment Need Braille Status Cell Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred presence or location of a Braille display status cell.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24041', '12', '24041', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000939', 'Learner Activity Title', NULL, 'The title for work assigned to the learner, which can comprise of learning resources, activities, and assessments.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21940', '11', '21940', NULL, NULL) +VALUES ('001038', 'Assessment Need Item Translation Display Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default language for the displayed translation.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24042', '12', '24042', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000940', 'Learner Activity Description', NULL, 'The description and context for the assignment described in a way that the learner can understand.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21941', '11', '21941', NULL, NULL) +VALUES ('001039', 'Assessment Need Keyword Translation Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default language for the keyword translation.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24043', '12', '24043', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000941', 'Learner Activity Prerequisite', NULL, 'The description of the skills or competencies the student must have to engage in assignment.', 'Alphanumeric - 300 characters maximum', '0', 'Note: Prerequisites may also be referenced via an associated Learning Goal and Competency Set (prerequisites for individual competencies). For some applications enumeration of the detailed prerequisites will have greater utility than a single descriptive field.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21942', '11', '21942', NULL, NULL) +VALUES ('001040', 'Assessment Need Signing Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the type of signing preferred by the user.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24044', '12', '24044', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000942', 'Learner Activity Type', NULL, 'The type of work assigned to the learner.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21943', '11', '21943', NULL, NULL) +VALUES ('001041', 'Assessment Need Alternative Representation Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default presentation mode of the associated Alternative Representations accessibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24045', '12', '24045', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000943', 'Learner Activity Creation Date', NULL, 'The creation date of the assignment.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21944', '11', '21944', NULL, NULL) +VALUES ('001042', 'Assessment Need Spoken Source Preference Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred spoken audio form.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24046', '12', '24046', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000944', 'Learner Activity Maximum Time Allowed', NULL, 'The time required to complete the assignment.', 'Integer - greater than or equal to 0', '0', 'Time allowed is assumed to be unlimited if zero or omitted.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21945', '11', '21945', NULL, NULL) +VALUES ('001043', 'Assessment Need Read at Start Preference', NULL, 'Used as part of an Assessment Personal Needs Profile to define if the spoken play-back should commence from the start of a recording or not.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24048', '12', '24048', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000945', 'Learner Activity Maximum Time Allowed Unit', NULL, 'The unit of time of the Maximum Time Allowed value.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21946', '11', '21946', NULL, NULL) +VALUES ('001044', 'Assessment Need User Spoken Preference Type', NULL, 'Used as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24049', '12', '24049', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000946', 'Learner Activity Due Date', NULL, 'The date assignment is due.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21947', '11', '21947', NULL, NULL) +VALUES ('001045', 'Assessment Need Directions Only', NULL, 'Defines as part of an Assessment Personal Needs Profile whether or not the verbal alternative content presentation should be applied to directive content only.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24050', '12', '24050', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000947', 'Learner Activity Due Time', NULL, 'The time the assignment is due.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21948', '11', '21948', NULL, NULL) +VALUES ('001046', 'Assessment Need Masking Type', NULL, 'Specifies as part of an Assessment Personal Needs Profile the type of masks the user is able to create to cover portions of the question until needed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24051', '12', '24051', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000948', 'Learner Activity Maximum Attempts Allowed', NULL, 'The number attempts a student may make on this assignment. Assumed to be unlimited if zero or omitted.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21949', '11', '21949', NULL, NULL) +VALUES ('001047', 'Assessment Need Text Messaging String', NULL, 'The text string that is to be displayed to the user as an expression of encouragement when Masking is specified as part of an Assessment Personal Needs Profile. It is left to the system to determine when to display this string.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24052', '12', '24052', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000949', 'Learner Activity Add to Grade Book Flag', NULL, 'Identifies the assignment as one that is graded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21950', '11', '21950', NULL, NULL) +VALUES ('001048', 'Assessment Need Sound File URL', NULL, 'The URI of the sound file that is to be played to the user as an expression of encouragement when Masking is specified as part of an Assessment Personal Needs Profile. It is left to the system to determine when to play this audio file.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24053', '12', '24053', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000950', 'Learner Activity Release Date', NULL, 'The date the student was informed about an assignment or that an automated system displays the assignment.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21951', '11', '21951', NULL, NULL) +VALUES ('001049', 'Assessment Need Time Multiplier', NULL, 'Defines the multiplier to be applied to the time limit to determine the total testing time allowed when Additional Testing Time is specified as part of an Assessment Personal Needs Profile. If the value is ‘unlimited’ then there is no time limit for the test.', 'Alphanumeric - 9 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24055', '12', '24055', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000951', 'Learner Activity Weight', NULL, 'The percentage weight of the assignment during the particular course or term.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21952', '11', '21952', NULL, NULL) +VALUES ('001050', 'Assessment Need Line Reader Highlight Color', NULL, 'The color defined as part of an Assessment Personal Needs Profile to be used to highlight the point of line reader activity i.e. the line being read.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24056', '12', '24056', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000952', 'Learner Activity Possible Points', NULL, 'The number of possible points for an assignment.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21953', '11', '21953', NULL, NULL) +VALUES ('001051', 'Assessment Need Overlay Color', NULL, 'This is the preferred color for the overlay for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24057', '12', '24057', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000953', 'Learner Activity Rubric URL', NULL, 'The Uniform Resource Locator pointing to a rubric that may be used to evaluate learner performance on the assignment.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21954', '11', '21954', NULL, NULL) +VALUES ('001052', 'Assessment Need Foreground Color', NULL, 'This is the preferred Foreground color for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24058', '12', '24058', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000954', 'Assessment Item Response Scaffolding Item Flag', NULL, 'Indicates that the response is to a scaffolding problem rather than the main/assigned problem. A scaffolding item is a follow-up formative assessment item used to assess prerequisite or component skills, presented immediately after a learner gives an incorrect answer on the previous item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21955', '11', '21955', NULL, NULL) +VALUES ('001053', 'Assessment Need Background Color', NULL, 'This is the preferred Background color for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24059', '12', '24059', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000955', 'Assessment Item Response Hint Count', NULL, 'The total number of hints presented as the learner responded to a formative assessment item. This may include hints requested by the learner or hints automatically presented such as in an online tutoring system. Presentation of a scaffolding item is a separate response record and not counted as a hint.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21956', '11', '21956', NULL, NULL) +VALUES ('001054', 'Assessment Need Increased Whitespacing Type', NULL, 'Defines the user preferences for white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24060', '12', '24060', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000956', 'Assessment Item Response Hint Included Answer', NULL, 'Indicates that one of the hints presented included the correct answer.', NULL, '1', 'A typical scenario for an online tutoring application may present a series of hints for a formative assessment item with the last hint being the correct answer. The learner must enter the correct answer before continuing. This data element is a flag that the learner was presented with the "bottom hint", which is the correct answer.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21957', '11', '21957', NULL, NULL) +VALUES ('001055', 'Assessment Registration Testing Indicator', NULL, 'Indicates rules about use of results based on Special Events before, during or after the test. The option set values are determined by the testing program.', 'Alphanumeric - 300 characters maximum', '0', 'For example, "do not score", "do not report".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24061', '12', '24061', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000957', 'Assessment Item Response First Attempt Duration', NULL, 'The amount of time in seconds or milliseconds that a person took to give an initial response, a first attempt to answer a formative assessment item.', 'HH:MM:SS or HH:MM:SS.sss', '0', 'Formative assessments often allow learners to make multiple attempts until a correct or acceptable answer is given. In such cases it is valuable to know both the time it took for the initial response and the total time spent responding to the problem.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21958', '11', '21958', NULL, NULL) +VALUES ('001056', 'Assessment Registration Score Publish Date', NULL, 'The date set by the testing program when the test scores are published. For formative or classroom assessments, this will likely be the date when the scored the individual test. For summative assessments, this date is likely set for a group of assessments when the processing system releases the scores.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24062', '12', '24062', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000958', 'Assessment Item Response Start Time', NULL, 'The time of day that the assessment item was presented to the learner.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21959', '11', '21959', NULL, NULL) +VALUES ('001057', 'Assessment Registration Grade Level to Be Assessed', NULL, 'The grade or level at which the learner is to be assessed.', NULL, '1', ' Informs selection of the assessment form appropriate for the grade level to be tested.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24063', '12', '24063', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000959', 'Assessment Item Response Start Date', NULL, 'The date on which the assessment item was presented to the learner.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21960', '11', '21960', NULL, NULL) +VALUES ('001058', 'Name of Professional Credential or License', NULL, 'The name of the license/credential awarded by a given profession.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24064', '12', '24064', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000961', 'Assessment Administration Code', NULL, 'The code given to the assessment event by a state or other authority directing overall administration.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21962', '11', '21962', NULL, NULL) +VALUES ('001059', 'Cardiopulmonary Resuscitation Certification Expiration Date', 'CPR Certification Expiration Date', 'The date an individual''s cardiopulmonary resuscitation (CPR) training certification expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24065', '12', '24065', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000962', 'Assessment Administration Start Date', NULL, 'The start date of the time period designated for the assessment administration.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21963', '11', '21963', NULL, NULL) +VALUES ('001060', 'First Aid Certification Expiration Date', NULL, 'The date an individual''s first aid training certification expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24066', '12', '24066', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000963', 'Assessment Administration Start Time', NULL, 'The start time of the time period designated for the assessment administration.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21964', '11', '21964', NULL, NULL) +VALUES ('001061', 'Staff Professional Development Activity Start Date', NULL, 'The year, month and day on which an individual begins a course, an education program or a staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24067', '12', '24067', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000964', 'Assessment Administration Finish Date', NULL, 'The finish date of the time period designated for the assessment administration.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21965', '11', '21965', NULL, NULL) +VALUES ('001062', 'Staff Professional Development Activity Completion Date', NULL, 'The year, month and day on which an individual completed a course, an education program or a staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24068', '12', '24068', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000965', 'Assessment Administration Finish Time', NULL, 'The finish time of the time period designated for the assessment administration.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21966', '11', '21966', NULL, NULL) +VALUES ('001063', 'Assessment Item Response Value', NULL, ' A specific response to an assessment item by the person being assessed.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24069', '12', '24069', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000966', 'Assessment Administration Organization Name', NULL, 'The name of the organization with overall responsibility for the assessment event.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21967', '11', '21967', NULL, NULL) +VALUES ('001064', 'Employment NAICS Code', NULL, 'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', 'Integer - exactly 6 digits', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24070', '12', '24070', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000967', 'Assessment Administration Assessment Family', NULL, 'The title of the assessment family to be administered.', 'Alphanumeric - 60 characters maximum', '0', 'A typical scenario for an assessment administration is a state-wide administration of an accountability test. For example, in Florida "Florida Comprehensive Assessment Test".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21968', '11', '21968', NULL, NULL) +VALUES ('001088', 'NAEP Mathematical Complexity Level', NULL, 'Complexity levels defined by the National Assessment of Educational Progress (NAEP 2005a Framework).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24072', '12', '24072', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000968', 'Assessment Session Security Issue', NULL, 'The description of a security issue, if any, discovered for an administration of an assessment, such as suspected cheating by a student or a teacher changing answers after a student takes the test.', 'Alphanumeric - 300 characters maximum', '0', 'For example: Suspected plagiarism ; Computer left test window ; Excessive response time ; Proctor suspected copying ; Student identity not confirmed ; No proctor present ; Student carried wireless mobile device during test ; Student terminated test early and restarted ; Excessive erasures on test form ; Response pattern identical to another student''s', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21969', '11', '21969', NULL, NULL) +VALUES ('001089', 'Assessment Language', NULL, 'The language in which the assessment form is designed to be delivered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24073', '12', '24073', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000969', 'Assessment Item Response Security Issue', NULL, 'The description of security issue, if any, related to a learner''s response to an assessment item.', 'Alphanumeric - 300 characters maximum', '0', 'For example: Suspected plagiarism ; Computer left test window ; Excessive response time ; Proctor suspected copying ; Student identity not confirmed ; No proctor present ; Student carried wireless mobile device during test ; Student terminated test early and restarted ; Excessive erasures on test form ; Response pattern identical to another student''s', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21970', '11', '21970', NULL, NULL) +VALUES ('001091', 'Assessment Subtest Published Date', NULL, 'The date on which the Subtest was published.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24075', '12', '24075', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000970', 'Assessment Result Date Updated', NULL, 'The most recent date that the result was calculated/updated. The value should be the same as Assessment Result Date Created if the subtest has only been scored once, but may be different if the score was recalculated with a different result.', 'YYYY-MM-DD', '0', 'This flag is to handle cases when a subtest result is originally scored using incorrect parameters and then rescored, such as if the grade level attributed to the student was originally encoded incorrectly and later corrected. An operational system may also capture the history of if rescored more than once.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21971', '11', '21971', NULL, NULL) +VALUES ('001092', 'Assessment Result Descriptive Feedback Source', NULL, 'Identifies the source of the descriptive feedback that was given to a learner based on a scored/evaluated portion of an assessment. May indicate if this is teacher, scorer, or system generated feedback. Values for this attribute would be determined by the assessment program.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24076', '12', '24076', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000971', 'Assessment Result Date Created', NULL, 'The date on which the assessment result was generated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21972', '11', '21972', NULL, NULL) +VALUES ('001093', 'Assessment Session Special Event Description', NULL, 'Describes special events that occur before during or after the assessment session that may impact use of results according to rules related to the Assessment Registration Testing Indicator.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24077', '12', '24077', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000972', 'Teacher Student Data Link Exclusion Flag', NULL, 'Indicates that the student is excluded from calculation of value-added or growth attribution calculations used for teacher evaluation.', NULL, '1', 'The context for this element is the intersection of a teacher assignment to a Class/Section and a student enrollment to a Class/Section. It may be represented in a data model as a separate entity such as Teacher Student Data Link Exclusion.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21973', '11', '21973', NULL, NULL) +VALUES ('001094', 'Competency Definition Parent URL', 'Learning Standard Item Parent URL, Competency Item Parent URL', 'A network-resolvable Uniform Resource Locator (URL) pointing to the authoritative reference for the hierarchal parent of the competency definition.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24078', '12', '24078', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000973', 'Demographic Race Two or More Races', NULL, 'A person having origins in any of more than one of the racial groups.', NULL, '1', 'To support backward compatibility for systems that cannot derive this, i.e. systems that use a single race/ethnicity element rather than separate flags that can indicate one or more ethnicities.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21974', '11', '21974', NULL, NULL) +VALUES ('001102', 'Assessment Item Body Custom Interaction XML', NULL, 'The custom interaction provides an opportunity for extensibility of this specification to include support for interactions not currently documented. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24079', '12', '24079', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000974', 'Course Section Enrollment Status Start Date', NULL, 'The date on which the enrollment status began related to a student enrolled in an instance of a course.', 'YYYY-MM-DD', '0', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21975', '11', '21975', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001103', 'Assessment Item Body Drawing Interaction XML', NULL, 'The drawing interaction allows the candidate to use a common set of drawing tools to modify a given graphical image (the canvas). It must be bound to a response variable with base-type file and single cardinality. The result is a file in the same format as the original image. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24080', '12', '24080', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000975', 'Course Section Enrollment Status End Date', NULL, 'The date on which the enrollment status ended related to a student enrolled in an instance of a course.', 'YYYY-MM-DD', '0', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait-listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list. All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21976', '11', '21976', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001104', 'Assessment Item Body Gap Match Interaction XML', NULL, 'A gap match interaction contains a number gaps that the candidate can fill from an associated set of choices. The candidate must be able to review the content with the gaps filled in context, as indicated by their choices. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24081', '12', '24081', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000976', 'Course Section Enrollment Status Type', NULL, 'The status related to a student enrollment in an instance of a course.', NULL, '1', 'Enrollment statuses may overlap, for example at one point in time a student may be both pre-registered and wait listed for enrollment in a course, the start dates may be different and the end dates may be the same as the start date for "enrolled" status when the student moves off the wait list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21977', '11', '21977', NULL, NULL) +VALUES ('001105', 'Assessment Item Body Match Interaction XML', NULL, 'A match interaction presents candidates with two sets of choices and allows them to create associates between pairs of choices in the two sets, but not between pairs of choices in the same set. Further restrictions can still be placed on the allowable associations using the matchMax attribute of the choices. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24082', '12', '24082', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000977', 'Assessment Administration Name', NULL, 'The name given to an assessment event.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21978', '11', '21978', NULL, NULL) +VALUES ('001106', 'Assessment Item Body Graphic Gap Match Interaction XML', NULL, 'A graphic gap-match interaction is a graphical interaction with a set of gaps that are defined as areas (hotspots) of the graphic image and an additional set of gap choices that are defined outside the image. The candidate must associate the gap choices with the gaps in the image and be able to review the image with the gaps filled in context, as indicated by their choices. Care should be taken when designing these interactions to ensure that the gaps in the image are a suitable size to receive the required gap choices. It must be clear to the candidate which hotspot each choice has been associated with. When associated, choices must appear wholly inside the gaps if at all possible and, where overlaps are required, should not hide each other completely. If the candidate indicates the association by positioning the choice over the gap (e.g., drag and drop) the system should ''snap'' it to the nearest position that satisfies these requirements. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24083', '12', '24083', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000978', 'Course Section Identifier', NULL, 'A unique number or alphanumeric code assigned by an institution, school, school system, state, or other agency or entity for a particular course-section.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21979', '11', '21979', NULL, NULL) +VALUES ('001107', 'Assessment Item Body Hot Spot Interaction XML', NULL, 'A hotspot interaction is a graphical interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to select one or more of the areas (hotspots). The hotspot interaction should only be used when the spatial relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, choiceInteraction should be used instead with separate material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24084', '12', '24084', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000979', 'Assessment Form Section Sequence Number', NULL, 'The position of the assessment section presented in the sequence of sections within an assessment form.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21980', '11', '21980', NULL, NULL) +VALUES ('001108', 'Assessment Item Body Graphic Order Interaction XML', NULL, 'A graphic order interaction is a graphic interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to impose an ordering on the areas (hotspots). The order hotspot interaction should only be used when the spatial relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, orderInteraction should be used instead with separate material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24085', '12', '24085', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000980', 'Assessment Form Section GUID', NULL, 'The globally unique identifier of an Assessment Form Section using a RFC 4122 compliant hexadecimal string.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21981', '11', '21981', NULL, NULL) +VALUES ('001109', 'Assessment Item Body Select Point Interaction XML', NULL, 'Like hotspotInteraction, a select point interaction is a graphic interaction. The candidate''s task is to select one or more points. The associated response may have an areaMapping that scores the response on the basis of comparing it against predefined areas but the delivery engine must not indicate these areas of the image. Only the actual point(s) selected by the candidate shall be indicated. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24087', '12', '24087', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000981', 'Assessment GUID', NULL, 'The globally unique identifier of an Assessment using a RFC 4122 compliant hexadecimal string.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "GUID" elements are defined as RFC 4122 compliant 32-character hexadecimal strings (36 characters with dashes). For example, 21EC2020-3AEA-1069-A2DD-08002B30309D.

Values MAY be encoded using a hash function such as HMAC-MD5 or HMAC-SHA1, resulting in a string up to 40 characters.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21982', '11', '21982', NULL, NULL) +VALUES ('001110', 'Assessment Item Body Select Point Interaction', NULL, 'A graphic associate interaction is a graphic interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to associate the areas (hotspots) with each other. The graphic associate interaction should only be used when the graphical relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, associateInteraction should be used instead with separate Material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24088', '12', '24088', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000982', 'Accreditation Agency', NULL, 'The agency that accredited a program.', NULL, '1', 'Organization Name may be used with Organization Type=''Accrediting Organization'' when Accreditation Agency is set to ''Other Accreditation Agency.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21983', '11', '21983', NULL, NULL) +VALUES ('001111', 'Assessment Item Body Slider Interaction XML', NULL, 'The slider interaction presents the candidate with a control for selecting a numerical value between a lower and upper bound. It must be bound to a response variable with single cardinality with a base-type of either integer or float. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24089', '12', '24089', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000983', 'Administrative Policy Type', NULL, 'A type of administrative policy used by a program.', NULL, '1', 'More than one Administrative Policy Type may apply.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21984', '11', '21984', NULL, NULL) +VALUES ('001112', 'Assessment Item Body Choice Interaction XML', NULL, 'The choice interaction presents a set of choices to the candidate. The candidate''s task is to select one or more of the choices, up to a maximum of maxChoices. The interaction is always initialized with no choices selected. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24090', '12', '24090', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000984', 'Facility Licensing Status', NULL, 'The status of the facility license.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21985', '11', '21985', NULL, NULL) +VALUES ('001114', 'Assessment Item Body Inline Choice Interaction XML', NULL, 'A inline choice is an inline interaction that presents the user with a set of choices, each of which is a simple piece of text. The candidate''s task is to select one of the choices. Unlike the Choice Interaction, the delivery engine must allow the candidate to review their choice within the context of the surrounding text.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24091', '12', '24091', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000985', 'Session Start Time', NULL, 'The hour, minute and second on which a session begins.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21986', '11', '21986', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('001115', 'Assessment Item Body Media Interaction XML', NULL, 'The media interaction allows more control over the way the candidate interacts with a time-based media object and allows the number of times the media object was experienced to be reported in the value of the associated response variable, which must be of base-type integer and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24092', '12', '24092', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000986', 'Session End Time', NULL, 'The hour, minute and second on which a session ends.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21988', '11', '21988', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('001749', 'Credential Definition Intended Purpose Type', 'Credential Intended Purpose Type', 'The intended type of application of the credential by the holder.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24730', '12', '24730', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000987', 'Employed While Enrolled', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, and at the same time is enrolled in secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources won''t tell you anything further about employment or unemployment, only that a record was "not found" or "not matched" thus "unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21989', '11', '21989', NULL, NULL) +VALUES ('001750', 'Organization Region GeoJSON', NULL, 'The geo-political area of the organization''s facility, building, or site.', 'GeoJSON', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24731', '12', '24731', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000988', 'Employed After Exit', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, after exiting secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources will provide information about most of the types of jobs that students or former students will become employed in but not all. For that reason when a record is "not found" or "not matched" their employment status is "unknown" for the targeted time base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21990', '11', '21990', NULL, NULL) +VALUES ('001751', 'Credential Revoked Indicator', NULL, 'Indicates whether the credential has been revoked by the credential provider.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24732', '12', '24732', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000989', 'Quarterly Earnings', NULL, 'The quarterly amount paid to individuals found employed during the reference period.', 'Numeric - up to 2 digits after decimal place', '0', 'Workforce Notes: Quarterly earnings are the sum of all the reported earnings for each individual for all jobs held during the reference quarter. "Reference" quarter is the period of employment defined by the agency for its purposes either for students who are enrolled or after they exit. The amount is expressed as a numeric dollar amount. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21991', '11', '21991', NULL, NULL) +VALUES ('001752', 'Credential Definition Validation Method Description', 'Credential Validation Method Description', 'Description of the methods used to evaluate the validity and reliability of a credential earned by a person.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24733', '12', '24733', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000990', 'Employment Location', NULL, 'The state or other location in which an individual is found employed.', NULL, '1', 'Workforce Notes: The most commonly available indication of where employment is located is at the state level. While federal data resources provide indicators outside of the United States, these resources will not represent the majority of the students found employed, which will be based on state UI Wage Data. There may, in some instances, be multiple states where employment is found. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence, change, and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21992', '11', '21992', NULL, NULL) +VALUES ('001753', 'Credential Definition Verification Type', 'Credential Verification Type', 'A resource describing the means by which someone can verify whether a credential has been attained by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24734', '12', '24734', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000991', 'Person Employed in Multiple Jobs Count', NULL, 'The number of jobs held by a person during the reference period.', 'Integer - greater than or equal to 0', '0', 'Workforce Notes: The data sources represent employment during a three month period. Students found employed may have multiple jobs during a reference period with no indication of their sequence. The option set provides a set of numeric ranges for these instances. Many states report these numbers, some as indications of employment stability. Note that it may be desirable to collect these data over time, in a longitudinal sense, to measure things related to persistence, change, and growth in employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21993', '11', '21993', NULL, NULL) +VALUES ('001754', 'Credential Definition Version', 'Credential Version', 'An alphanumeric identifier of a version of the credential being described that is unique within the organizational context.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24735', '12', '24735', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000992', 'Employment Record Reference Period Start Date', NULL, 'The year, month, and day of the first day of the employment record reference period.', 'YYYY-MM-DD', '0', 'The reference quarter is the 13-week period around which employment and earnings data are collected. For unemployment insurance purposes, quarters are defined by 13-week periods. In most state cases, a reference quarter is defined to coincide with an enrollment period (e.g., a term or semester) or as a certain number of quarters after exiting a program, such as "3d quarter after exit." In some cases, states have defined the reference quarter to represent a period where employment and earnings data are collected for all of a previous year''s exits and graduates. This is often the October- December quarter. Ultimately, the most value to be gained from the use of employment and earnings data is when data are collected continuously, both in a longitudinal sense for defined cohorts of students, as well as for an "annual set" of students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21994', '11', '21994', NULL, NULL) +VALUES ('001755', 'CTDL Organization Type', NULL, 'The type of credentialing organization or entity as defined by the Credential Transparency Description Language.', NULL, '1', 'Includes free-standing medical, law or other first-professional schools, schools that offer postbaccalaureate certificates only, those that offer graduate programs only, etc.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24736', '12', '24736', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000993', 'Employment Record Reference Period End Date', NULL, 'The year, month, and day of the last day of the employment record reference period.', 'YYYY-MM-DD', '0', 'The reference quarter is the 13-week period around which employment and earnings data are collected. For unemployment insurance purposes, quarters are defined by 13-week periods. In most state cases, a reference quarter is defined to coincide with an enrollment period (e.g., a term or semester) or as a certain number of quarters after exiting a program, such as "3d quarter after exit." In some cases, states have defined the reference quarter to represent a period where employment and earnings data are collected for all of a previous year''s exits and graduates. This is often the October - December quarter. Ultimately, the most value to be gained from the use of employment and earnings data is when data are collected continuously, both in a longitudinal sense for defined cohorts of students, as well as for an "annual set" of students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21995', '11', '21995', NULL, NULL) +VALUES ('001756', 'O*NET-SOC Occupation Type', NULL, 'The O*NET-SOC taxonomy defines the set of occupations across the world of work based on the Standard Occupational Classification.', '##-####.##', '0', 'https://www.onetcenter.org/taxonomy.html', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24737', '12', '24737', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000994', 'Employment Record Administrative Data Source', NULL, 'Administrative data source of information used to collect employment and earnings-related data.', NULL, '1', 'For over 25 years, states have relied upon administrative data sources to document the employment and earnings of students and former students. The sources listed are complementary, rather than alternatives. That is, State UI records only include information for employees within a state''s boundaries. The WRIS II system can provide employment data for other states (from their UI wage record systems). State UI records do not include information about federal or postal service employment, nor do they contain information about military enlistments. FEDES provides access to that information. Ideally, an entity will use UI, WRIS (other state UI), and FEDES together.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21996', '11', '21996', NULL, NULL) +VALUES ('001757', 'Competency Definition Type URL', 'Competency Item Type URL', 'The class of statement in the structure of statements in the Competency Framework according to a controlled vocabulary, specified as a URI referencing a controlled vocabulary.', 'Alphanumeric - 512 characters maximum', '0', 'This property points to a class, not to instances of that class. For example, where two competencies in a competency framework have been identified respectively as \"Strand: Renaissance\" and \"Strand: Social history\", the competency category for both these competencies is \"Strand\"."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24738', '12', '24738', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000997', 'Workforce Program Type', NULL, 'The type of workforce and employment development program that an individual is participating in.', NULL, '1', 'A reference period for identifying program participation during or after enrollment in secondary education, postsecondary education, or adult education will have to be defined by the agency in collaboration with other agency partners. At this point this element is intended only to indicate program participation and does not delve into programmatic details, persistence, or completion.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22000', '11', '22000', NULL, NULL) +VALUES ('001758', 'Submission Date', NULL, 'The month, day, and year on which a report is submitted.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24739', '12', '24739', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000998', 'Workforce Program Participation Start Date', NULL, 'The year, month, and day of the first day of the reference period during which data are matched between education and workforce data sources.', 'YYYY-MM-DD', '0', 'Agencies define the time period for this collection around an enrollment period or exit date with a to-be defined lag period following an exit event. Enrollment periods are defined in CEDS for K12 and postsecondary students. The term "exit" includes leaving education for any reason including dropping out or graduating with or without a credential. Exiting conditions are defined in CEDS for K12 and postsecondary students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22001', '11', '22001', NULL, NULL) +VALUES ('001759', 'Report Date', NULL, 'The month, day, and year on which a report was produced.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24740', '12', '24740', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000999', 'Workforce Program Participation End Date', NULL, 'The year, month, and day of the last day of the reference period during which data are matched between education and workforce data sources.', 'YYYY-MM-DD', '0', 'Agencies define the time period for this collection around an enrollment period or exit date with a to-be defined lag period following an exit event. Enrollment periods are defined in CEDS for K12 and postsecondary students. The term "exit" includes leaving education for any reason including dropping out or graduating with or without a credential. Exiting conditions are defined in CEDS for K12 and postsecondary students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22002', '11', '22002', NULL, NULL) +VALUES ('001760', 'Count Date', NULL, 'The effective month, day, and year on which the data was counted.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24741', '12', '24741', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001000', 'Assessment Early Learning Developmental Domain', NULL, 'Developmental domains related to early learning and used for assessing a child''s kindergarten readiness.', NULL, '1', 'Used by states in reporting Kindergarten Entry Assessment (KEA) results as defined for some federal grant programs.

For each domain used by the state, the state would provide:
- The total number of children who participated in the KEA for each domain
- The number of children who participated in the KEA for each domain AND was at or above what the state defines as “ready” for kindergarten for that domain.

The counts may be calculated using unit-level data defined for Assessment Subtest (scoring method and what is being measured, e.g. the Domain), related Assessment Performance Levels (e.g. "Ready"), related to each student Assessment Result.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22003', '11', '22003', NULL, NULL) +VALUES ('001761', 'State Full Academic Year', NULL, 'An indication of whether a student was in membership in the state education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24742', '12', '24742', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001001', 'Special Needs Policy', NULL, 'Program ensures that policies are in place for Individualized Education Programs (IEPs) or Individual Family Service Plans (IFSPs) to meet the child''s unique needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22004', '11', '22004', NULL, NULL) +VALUES ('001762', 'LEA Full Academic Year', NULL, 'An indication of whether a student was in membership in the LEA education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24743', '12', '24743', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001002', 'Learning Resource Educational Use', NULL, 'The purpose of the work in the context of education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22005', '11', '22005', NULL, NULL) +VALUES ('001763', 'School Full Academic Year', NULL, 'An indication of whether a student was in membership in the school education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24744', '12', '24744', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001003', 'Assessment Participant Session Delivery Device Details', NULL, 'The details about the device or platform by with which the assessment was delivered to the learner.', 'Alphanumeric - 300 characters maximum', '0', 'For example web browser version and screen resolution.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22006', '11', '22006', NULL, NULL) +VALUES ('001764', 'Building Area', NULL, 'The sum of the areas at each floor level included within the principal outside faces of exterior walls, including roofed areas with finished floors that may not have exterior walls, but are connected to the main building. This sum should include all stories or areas having floor surfaces with clear standing head room (6.5 feet or 1.98 meters) but omit architectural setbacks or projections.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24745', '12', '24745', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001004', 'Assessment Personal Needs Profile Assigned Support', NULL, 'Defines whether or not the individual needs the kind of support defined by the entity.', NULL, '1', 'This flag may apply to any need within the Assessment Personal Need Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22007', '11', '22007', NULL, NULL) +VALUES ('001765', 'Significant Cognitive Disability Indicator', NULL, 'Student has an existing IDEA disability with cognitive impairments which may prevent him/her from attaining grade-level achievement standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24746', '12', '24746', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001005', 'Assessment Personal Needs Profile Activate by Default', NULL, 'Determines if the alternative accessible content is rendered as the default content for the learner.', NULL, '1', 'This flag may apply to any need within the Assessment Personal Need Profile.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22008', '11', '22008', NULL, NULL) +VALUES ('001766', 'Virtual School Status', NULL, 'An indication of the extent to which a school offers instruction in which students and teachers are separated by time and/or location, and interaction occurs via computers and/or telecommunications technologies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24747', '12', '24747', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001006', 'Assessment Provider', NULL, 'Identifies the provider or publisher of the assessment.', 'Alphanumeric - 30 characters maximum', '0', 'AIF property', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22009', '11', '22009', NULL, NULL) +VALUES ('001767', 'National School Lunch Program Status', NULL, 'The classification of participation by a school in the National School Lunch Program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24748', '12', '24748', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001007', 'Assessment Result Preliminary Indicator', NULL, 'If this score is preliminary, then this attribute value should be set. Preliminary scores may be provided for early use by the assessment program or user while final scoring is occurring.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22010', '11', '22010', NULL, NULL) +VALUES ('001768', 'Facility Acquisition Date', NULL, 'The date the property/facility was acquired.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24749', '12', '24749', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001008', 'Diagnostic Statement Source', NULL, 'Identifies the source of the Diagnostic Statement based on a scored/evaluated portion of an assessment.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22011', '11', '22011', NULL, NULL) +VALUES ('001769', 'Facility Addition Year', NULL, 'The year the construction on the addition was completed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24750', '12', '24750', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001009', 'Assessment Result Number of Responses', NULL, 'The number of responses that are included with the Student Score Set. Responses are those items that were attempted (partially or fully answered) by the student and not necessarily the number of items in the assessment (which can be determined from the assessment object).', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22012', '11', '22012', NULL, NULL) +VALUES ('001770', 'Facility Building Permanency', NULL, 'An indication of whether the building is built for permanent use in the same location or is relocatable.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24751', '12', '24751', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001010', 'Assessment Form Subtest Item Weight Correct', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item is correct or partially correct. Item weight of 1 indicates the full item score is used. A weight of .5 would indicate the item only contributes one half of the item score to the subtest. A weight of 0 indicates the item does not affect the sub test score.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22013', '11', '22013', NULL, NULL) +VALUES ('001771', 'Facility Construction Year', NULL, 'The year the building was first constructed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24752', '12', '24752', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001012', 'Assessment Form Subtest Item Weight Incorrect', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item is attempted and incorrect. Item weight should be a negative value if the item subtracts from the score if missed.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22014', '11', '22014', NULL, NULL) +VALUES ('001772', 'Building Historic Status', NULL, 'An indication of whether or not a building is eligible to be or has been declared a landmark or historic building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24753', '12', '24753', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001013', 'Assessment Form Subtest Item Weight Not Attempted', NULL, 'A weighting factor for how the item score is used to compute a sub-test score when the item has not been attempted by the student. Item weight should be a negative value if the item subtracts from the score if not attempted.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22015', '11', '22015', NULL, NULL) +VALUES ('001773', 'Facility Site Area', NULL, 'The total number of acres in a continuous piece of land, to the nearest tenth, including undeveloped areas as well as areas occupied by buildings, walks, drives, parking facilities, and other improvements.', 'Numeric - up to 1 digit after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24754', '12', '24754', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001014', 'Assessment Subtest Identifier Type', NULL, 'The type of identifier that is provided for a Subtest.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22016', '11', '22016', NULL, NULL) +VALUES ('001774', 'Facility Block Number Area', 'BNA', 'The informal description of location sometimes used in rural areas, for example, "from the highway to the railroad tracks."', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24755', '12', '24755', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001015', 'Assessment Registration Days of Instruction', NULL, 'The number of days of instruction the student has taken prior to testing.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22017', '11', '22017', NULL, NULL) +VALUES ('001775', 'Building Addition Description', NULL, 'A description of the permanent structure added to the original building.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24756', '12', '24756', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001016', 'Assessment Registration Retest Indicator', NULL, 'Indicates if this registration is for a retest (retake). Retest can occur if a student failed a prior attempt and is eligible to retake. Other retest scenarios also can occur.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22018', '11', '22018', NULL, NULL) +VALUES ('001776', 'Building Addition Code', NULL, 'A unique number or alphanumeric code assigned to a building addition by a school, school system, state, or other agency or entity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24757', '12', '24757', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001017', 'Assessment Registration Creation Date', NULL, 'Date/time assignment is made.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22019', '11', '22019', NULL, NULL) +VALUES ('001777', 'Building Primary Use Type', NULL, 'The primary use type of the building in which a school is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24758', '12', '24758', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001018', 'Assessment Session Type', NULL, 'The type of session that is scheduled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22020', '11', '22020', NULL, NULL) +VALUES ('001778', 'Campus Status', NULL, 'The generalized use or control of a campus, independent of program type.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24759', '12', '24759', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001019', 'Assessment Session Scheduled Start Date Time', NULL, 'Date and time the assessment is scheduled to begin.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22021', '11', '22021', NULL, NULL) +VALUES ('001779', 'Facility Census Tract', NULL, 'The census tract number of the school site.', 'Integer - exactly 11 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24760', '12', '24760', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001020', 'Assessment Session Scheduled End Date Time', NULL, 'Date and time the assessment is scheduled to end.', 'YYYY-MM-DDTHH:MM:SS', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22022', '11', '22022', NULL, NULL) +VALUES ('001780', 'Facility Construction Date', NULL, 'The month, day, and year on which construction of a building, addition, or improvement was completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24761', '12', '24761', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001021', 'Assessment Session Actual Start Date Time', NULL, 'Date and time the assessment actually began.', 'YYYY-MM-DDTHH:MM:SS', '0', 'When associated to an assessment session this is the actual start date and time. When associated to an individual taking an assessment, this is the actual date and time when the individual started.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22023', '11', '22023', NULL, NULL) +VALUES ('001781', 'Facility Construction Date Type', NULL, 'Designation of the nature of the construction completion date.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24762', '12', '24762', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001022', 'Assessment Session Actual End Date Time', NULL, 'Date and time the assessment actually ended.', 'YYYY-MM-DDTHH:MM:SS', '0', 'When associated to an assessment session this is the actual end date and time. When associated to an individual taking an assessment, this is the actual date and time when the individual finished.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22024', '11', '22024', NULL, NULL) +VALUES ('001782', 'Facility Construction Material Type', NULL, 'The primary material used for the construction of a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24763', '12', '24763', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001023', 'Assessment Need Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile a preference for the language of the user interface.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22025', '11', '22025', NULL, NULL) +VALUES ('001783', 'Facility Expected Life', NULL, 'The time, in years, of the expected useful life of a facility for the purposes of depreciation.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24764', '12', '24764', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001024', 'Assessment Need Hazard Type', NULL, 'Defines as part of an Assessment Personal Needs Profile a characteristic of a digital resource that may be specified as being dangerous to a user.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22026', '11', '22026', NULL, NULL) +VALUES ('001784', 'Facility Replacement Value', NULL, 'The estimated cost of replacing a facility using current per square foot estimates of total project costs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24765', '12', '24765', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001025', 'Assessment Need Support Tool Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the electronic tool associated with a resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22027', '11', '22027', NULL, NULL) +VALUES ('001785', 'Building Number of Stories', NULL, 'The number of stories in a building, excluding the basement if its ceiling is less than three feet above ground level.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24766', '12', '24766', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001026', 'Assessment Need Usage Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the rating for the collection of Access for All (AfA) needs and preferences.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22028', '11', '22028', NULL, NULL) +VALUES ('001786', 'Facility Site Identifier', NULL, 'The lot and square number, or equivalent unique municipal number identification, of a parcel of land.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24767', '12', '24767', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001027', 'Assessment Need Link Indication Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the characteristics of presentation for a hyperlink when using a screen reader.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22029', '11', '22029', NULL, NULL) +VALUES ('001787', 'Facility Site Improvement Location Type', NULL, 'The type of location of the designed and constructed improvements made to a site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24768', '12', '24768', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001028', 'Assessment Need Speech Rate', NULL, 'Defines as part of an Assessment Personal Needs Profile the rate of speech of a speech synthesizer.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22030', '11', '22030', NULL, NULL) +VALUES ('001788', 'Building Year Built', NULL, 'The year a building was constructed, as indicated by cornerstone or official government records.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24769', '12', '24769', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001087', 'Assessment Need Pitch', NULL, 'Defines as part of an Assessment Personal Needs Profile the pitch of a speech synthesizer.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22031', '11', '22031', NULL, NULL) +VALUES ('001789', 'Building Year of Last Modernization', NULL, 'The most recent year that a comprehensive upgrade of ALL major building systems and components was completed, such that it functions as a modern building, as measured by a facility condition index not greater than 15%.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24770', '12', '24770', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001029', 'Assessment Need Volume', NULL, 'Defines as part of an Assessment Personal Needs Profile the volume of a speech synthesizer.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22032', '11', '22032', NULL, NULL) +VALUES ('001790', 'Building Air Distribution System Type', NULL, 'The primary means by which air is circulated, freshened, and exhausted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24771', '12', '24771', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001030', 'Assessment Need Invert Color Choice', NULL, 'Defines as part of an Assessment Personal Needs Profile the Access for All (AfA) preference to invert the foreground and background Colors.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22033', '11', '22033', NULL, NULL) +VALUES ('001791', 'Building Communications Management Component System Type', NULL, 'The type of system, interface, and management components for carrying voice, video, and data throughout a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24772', '12', '24772', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001031', 'Assessment Need Magnification', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred magnification of the screen as a factor of a screen’s original size.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22034', '11', '22034', NULL, NULL) +VALUES ('001792', 'Facility Compliance Status', NULL, 'An indication of whether the school, building, site, system, component, equipment, vehicle, or fixture conforms to the requirements or standards specified in federal, state, or local standards or codes or other officially required guidelines or regulations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24773', '12', '24773', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001032', 'Assessment Need Braille Grade Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the grade of Braille to use when using a Braille display.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22035', '11', '22035', NULL, NULL) +VALUES ('001793', 'Facility System or Component Condition', NULL, 'The rating of the system or component functions under the demands of its regular operation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24774', '12', '24774', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001033', 'Assessment Need Number of Braille Dots Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the number of dots in a Braille cell.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22036', '11', '22036', NULL, NULL) +VALUES ('001794', 'Building Cooling Generation System Type', NULL, 'The type of mechanical systems and building designs used for cooling.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24775', '12', '24775', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001034', 'Assessment Need Number of Braille Cells', NULL, 'Defines as part of an Assessment Personal Needs Profile the number of active Braille cells in a Braille display.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22037', '11', '22037', NULL, NULL) +VALUES ('001795', 'Building Electrical System Type', NULL, 'The components and system required to distribute electricity throughout the building or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24776', '12', '24776', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001035', 'Assessment Need Braille Mark Type', NULL, 'Defines as part of an Assessment Personal Needs Profile what textual properties to mark when using a Braille display.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22038', '11', '22038', NULL, NULL) +VALUES ('001796', 'Facility Applicable Federal Mandate Type', NULL, 'The particular federal law, regulation, or standard that pertains to a school facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24777', '12', '24777', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001036', 'Assessment Need Braille Dot Pressure', NULL, 'Defines as part of an Assessment Personal Needs Profile the resistance pressure of Braille display pins.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22040', '11', '22040', NULL, NULL) +VALUES ('001797', 'Facility Federal Mandate Interest Type', NULL, 'The area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24778', '12', '24778', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001037', 'Assessment Need Braille Status Cell Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred presence or location of a Braille display status cell.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22041', '11', '22041', NULL, NULL) +VALUES ('001798', 'Building Fire Protection System Type', NULL, 'The type of system that protects the facility against fire.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24779', '12', '24779', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001038', 'Assessment Need Item Translation Display Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default language for the displayed translation.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22042', '11', '22042', NULL, NULL) +VALUES ('001799', 'Building Heating Generation System Type', NULL, 'The method by which the heat is distributed and delivered throughout the room(s) or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24780', '12', '24780', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001039', 'Assessment Need Keyword Translation Language Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default language for the keyword translation.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22043', '11', '22043', NULL, NULL) +VALUES ('001800', 'Building HVAC System Type', NULL, 'The building service system that provides for heating, ventilation and air-conditioning.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24781', '12', '24781', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001670', 'IPEDS Finance GASB Financial Position Category', NULL, 'IPEDS financial position classification used by degree-granting public institutions using GASB Reporting Standards for reporting the assets, liabilities, and net position in a manner consistent with the Statement of Net Position in the General Purpose Financial Statements (GPFS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22651', '11', '22651', NULL, NULL) +VALUES ('001801', 'Building Institutional Equipment Description', NULL, 'Equipment that is installed for use in support of instructional program such as kilns for art, planetarium equipment for astronomy, fitness equipment for physical education.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24782', '12', '24782', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001671', 'IPEDS Finance FASB Financial Position Category', NULL, 'IPEDS financial position classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting the assets, liabilities, and net assets in a manner consistent with the Statement of Financial Position in the General Purpose Financial Statements (GPFS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22652', '11', '22652', NULL, NULL) +VALUES ('001802', 'Building Mechanical Conveying System Type', NULL, 'Mechanical means for moving people and equipment within buildings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24783', '12', '24783', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001672', 'IPEDS Finance GASB Revenue Category', NULL, 'IPEDS revenue classification used by degree-granting public institutions using GASB Reporting Standards for reporting revenues and other additions by source including all operating revenues, nonoperating revenues, and other additions for the reporting period. This includes unrestricted and restricted revenues and additions, whether expendable or nonexpendable.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22653', '11', '22653', NULL, NULL) +VALUES ('001803', 'Building Plumbing System Type', NULL, 'The component of an on-site system for supplying, eliminating, and treating water.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24784', '12', '24784', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001673', 'IPEDS Finance FASB Revenue Category', NULL, 'IPEDS revenue classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues and investment return by source in a manner consistent with the definitions from the National Association of College and University Business Officers (NACUBO) Financial Accounting and Reporting Manual for Higher Education (FARM).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22654', '11', '22654', NULL, NULL) +VALUES ('001804', 'Building Security System Type', NULL, 'The type of system that protects the facility from intrusion.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24785', '12', '24785', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001674', 'IPEDS Finance FASB Revenue Restriction Category', NULL, 'IPEDS revenue restriction classification used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for reporting revenues by restriction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22655', '11', '22655', NULL, NULL) +VALUES ('001805', 'Facility State or Local Mandate Interest Type', NULL, 'The area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24786', '12', '24786', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001675', 'IPEDS Finance GASB Functional Expense Category', NULL, 'A functional expense classification is a method of grouping expenses according to the purpose for which the costs are incurred. The classifications tell why an expense was incurred rather than what was purchased.', NULL, '1', '(NACUBO FARM, section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22656', '11', '22656', NULL, NULL) +VALUES ('001806', 'Facility State or Local Mandate Name', NULL, 'The specific law, rule, regulation, or standard of a state or local government that pertains to public school facilities.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24787', '12', '24787', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001676', 'IPEDS Finance Natural Expense Category', NULL, 'A natural expense classification is a method of grouping expenses according to the type of costs that are incurred. The classifications tell what was purchased rather than why an expense was incurred.', NULL, '1', '(NACUBO FARM section 700)', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22657', '11', '22657', NULL, NULL) +VALUES ('001807', 'Building Technology Wiring System Type', NULL, 'The means through which voice, video, audio, and data information are conveyed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24788', '12', '24788', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001677', 'IPEDS Finance GASB Scholarships and Fellowships Revenue Category', NULL, 'IPEDS revenue category used by degree-granting public institutions using GASB Reporting Standards for the reporting of resources received for supporting student scholarships and fellowships.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22658', '11', '22658', NULL, NULL) +VALUES ('001808', 'Facility Location of Hazardous Materials', NULL, 'The location at which the identified hazardous material is found.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24789', '12', '24789', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001678', 'IPEDS Finance FASB Scholarships and Fellowships Revenue Category', NULL, 'IPEDS revenue category used by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards for the reporting of resources received for supporting student grant aid.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22659', '11', '22659', NULL, NULL) +VALUES ('001809', 'Building Mechanical System Type', NULL, 'The major manufactured systems required to operate a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24790', '12', '24790', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001679', 'IPEDS Finance Intercollegiate Athletics Expenses', NULL, 'Identifies the functional expense category where the institution allocates its intercollegiate athletics expenses.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22660', '11', '22660', NULL, NULL) +VALUES ('001810', 'Facility Nearby Environmental Hazard Description', NULL, 'Description of any type of environmental hazards within range of the facility that has the potential to seriously affect the health, safety and operation of school facilities and their occupants.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24791', '12', '24791', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001680', 'IPEDS Finance FASB Pell Grant Transactions', NULL, 'Method of reporting Pell Grants in IPEDS by degree-granting private, not-for-profit institutions and public institutions using FASB Reporting Standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22661', '11', '22661', NULL, NULL) +VALUES ('001811', 'Building System Type', NULL, 'The type of system that is installed in the building or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24792', '12', '24792', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001681', 'Individualized Program Service Plan Progress Report Schedule', NULL, 'Frequency by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22662', '11', '22662', NULL, NULL) +VALUES ('001812', 'Building Vertical Transportation System Type', NULL, 'The type of system used to convey persons or freight between floors.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24793', '12', '24793', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001682', 'IEP Transfer of Rights Statement', NULL, 'Beginning not later than one year before the child reaches the age of majority under State law, the IEP must include a statement that the child has been informed of the child''s rights under Part B of the Individuals with Disabilities Education Act, if any, that will transfer to the child on reaching the age of majority under §300.520.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22663', '11', '22663', NULL, NULL) +VALUES ('001813', 'Building Administrative Space Type', NULL, 'The space designed primarily for conducting administrative and business functions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24794', '12', '24794', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001683', 'Individualized Program Service Plan End Date', NULL, 'The year, month and day on which the status of the service plan for a child effectively ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22664', '11', '22664', NULL, NULL) +VALUES ('001814', 'Building Art Specialty Space Type', NULL, 'The space designed to support the teaching and learning of 2 dimensional or 3 dimensional visual arts.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24795', '12', '24795', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001684', 'Individualized Program Service Plan Meeting Date', NULL, 'The date on which a child''s service plan meeting is held.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22665', '11', '22665', NULL, NULL) +VALUES ('001815', 'Building Basic Classroom Design Type', NULL, 'A classroom designed for instruction of a particular age group, but not a specific subject.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24796', '12', '24796', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001685', 'Individualized Program Accommodation Description', NULL, 'Description of a specific accommodation or change to standards or practices that will be made.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22666', '11', '22666', NULL, NULL) +VALUES ('001816', 'Building Design Type', NULL, 'The primary design or purpose of a building, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24797', '12', '24797', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001686', 'Individualized Program Accommodation Applicability', NULL, 'Circumstances in which the accommodation or change to standards or practices will be applied.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22667', '11', '22667', NULL, NULL) +VALUES ('001817', 'Building Career-Technical Education Space Type', NULL, 'The classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24798', '12', '24798', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001687', 'IEP Alternative Assessment Rationale', NULL, 'A statement of why— (A) The child cannot participate in the regular assessment; and (B) The particular alternate assessment selected is appropriate for the child.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22668', '11', '22668', NULL, NULL) +VALUES ('001818', 'Building Circulation Space Type', NULL, 'A space designed to enable people to move within the building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24799', '12', '24799', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001688', 'Individualized Program Service Plan Amendment Reason Description', NULL, 'Description of the reason changes were made to the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22669', '11', '22669', NULL, NULL) +VALUES ('001819', 'Building Environmental or Energy Performance Rating Category', NULL, 'The primary groupings that rating organizations use to evaluate environmental sustainability and energy use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24800', '12', '24800', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001689', 'Individualized Program Service Plan Amendment Description', NULL, 'Description of the changes made to the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22670', '11', '22670', NULL, NULL) +VALUES ('001820', 'Facility Furnishings Type', NULL, 'Moveable assets that are provided so the building or interior assets can be utilized by occupants for their intended purposes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24801', '12', '24801', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001690', 'Goal Current Performance Description', NULL, 'Current performance explanation related to the annual goal or short-term objectives.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22671', '11', '22671', NULL, NULL) +VALUES ('001821', 'Building Food Service Space Type', NULL, 'The space located, designed, furnished and equipped to support meal programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24802', '12', '24802', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001691', 'Goal Measurement Criterion Accuracy Percent', NULL, 'The percent of correct results that will be considered to represent successful achievement of a goal.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22672', '11', '22672', NULL, NULL) +VALUES ('001822', 'Building Indoor Athletic or Physical Education Space Type', NULL, 'The indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24803', '12', '24803', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001692', 'Goal Measurement Criterion Attempts Count', NULL, 'The number of attempts representing a completed trial for assessing achievement of a goal.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22673', '11', '22673', NULL, NULL) +VALUES ('001823', 'Building Library or Media Center Specialty Space Type', NULL, 'The primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24804', '12', '24804', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001693', 'Goal Measurement Criterion Metric', NULL, 'A metric used for evaluating achievement of a goal.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22674', '11', '22674', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('001824', 'Building Operations or Maintenance Space Type', NULL, 'The area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24805', '12', '24805', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001694', 'Goal Measurement Criterion Success Count', NULL, 'The number of correct results that will be considered to represent successful achievement of a goal.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22675', '11', '22675', NULL, NULL) +VALUES ('001825', 'Building Outdoor Athletic or Physical Education Space Type', NULL, 'The outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24806', '12', '24806', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001695', 'Goal Measurement Description', NULL, 'The procedures and/or instruments that will be used to measure achievement of a goal or short-term objective.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22676', '11', '22676', NULL, NULL) +VALUES ('001826', 'Building Outdoor or Non-athletic Space Type', NULL, 'The outdoor space located, designed, furnished, and equipped primarily for recreation, play and outdoor environmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24807', '12', '24807', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001696', 'Goal Measurement Schedule', NULL, 'Frequency of evaluation of progress toward meeting the goal or short-term objective.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22677', '11', '22677', NULL, NULL) +VALUES ('001827', 'Building Performing Arts Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped for instruction and support of music and drama curricula and productions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24808', '12', '24808', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001697', 'Goal Measurement Type', NULL, 'Type of evidence appropriate for assessing achievement of a goal or short-term objective.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22678', '11', '22678', NULL, NULL) +VALUES ('001828', 'Building School Design Type', NULL, 'The physical layout and character of a school facility, as determined by age groups served and educational programs provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24809', '12', '24809', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001698', 'IEP Goal Type', NULL, 'Legal category for an IEP annual goal or short-term objectives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22679', '11', '22679', NULL, NULL) +VALUES ('001829', 'Building Science Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped for instruction and experimentation in science.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24810', '12', '24810', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001699', 'Individualized Program Service Plan Progress Report Date', NULL, 'The date parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22680', '11', '22680', NULL, NULL) +VALUES ('001830', 'Facility Site Outdoor Area Type', NULL, 'The designated constructed outdoor area on a public school site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24811', '12', '24811', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001700', 'Individualized Program Service Plan Progress Report Description', NULL, 'A description of the progress report used to notify parents of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22681', '11', '22681', NULL, NULL) +VALUES ('001831', 'Building Space Design Type', NULL, 'The primary design or purpose of a space, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24812', '12', '24812', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001701', 'Individualized Program Service Plan Progress Report Type', NULL, 'A method by which parents are notified of the student’s progress on annual goals and if the progress is sufficient to achieve the goals by the end of the individualized program service plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22682', '11', '22682', NULL, NULL) +VALUES ('001832', 'Building Special Education Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24813', '12', '24813', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001702', 'Goal Status Type', NULL, 'Status toward achievement of the annual goal or short-term objectives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22683', '11', '22683', NULL, NULL) +VALUES ('001833', 'Building Student Support Space Type', NULL, 'The space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24814', '12', '24814', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001703', 'Goal Status', NULL, 'Description of status toward achievement of the annual goal or short-term objectives.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22684', '11', '22684', NULL, NULL) +VALUES ('001834', 'Building Architect Name', NULL, 'The name of the architect of record for the building.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24815', '12', '24815', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001704', 'IDEA Placement Rationale', NULL, 'The rationale for the placement decision and if applicable, an explanation of the extent, if any, to which the child will not participate with nondisabled children in the regular class and in the activities described in paragraph (a)(4) of CFR. §300.320.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22685', '11', '22685', NULL, NULL) +VALUES ('001835', 'Building Architectural Firm Name', NULL, 'The name of the architectural firm responsible for the building design.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24816', '12', '24816', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001705', 'IEP Present Level Academic Description', NULL, 'How the child''s disability affects the child''s academic achievement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22686', '11', '22686', NULL, NULL) +VALUES ('001836', 'Building Assembly Space Type', NULL, 'An area designed primarily for theater productions, assemblies, and other large gatherings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24817', '12', '24817', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001706', 'IEP Present Level Functional Description', NULL, 'How the child''s disability affects the child''s functional performance.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22687', '11', '22687', NULL, NULL) +VALUES ('001837', 'Facility Compliance Determination Date', NULL, 'The month, day, and year that the school, building, site, system, component, equipment, or fixture compliance status was determined.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24818', '12', '24818', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001707', 'IEP Present Level General Education Description', NULL, 'How the child''s disability affects the child''s involvement and progress in the general education curriculum.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22688', '11', '22688', NULL, NULL) +VALUES ('001838', 'Facility Compliance Name', NULL, 'The name of the inspection or process that indicates conformity to the requirements or standards specified in federal, state, or local standards or codes.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24819', '12', '24819', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001708', 'IEP Present Level Preschool Description', NULL, 'For preschool children, as appropriate, how the disability affects the child''s participation in appropriate activities.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22689', '11', '22689', NULL, NULL) +VALUES ('001839', 'Facility Component Deficiency Description', NULL, 'A description of the component, system, or finish that needs replacement, repair, or maintenance to perform at an optimal level.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24820', '12', '24820', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001709', 'IEP Present Level Student Strengths Description', NULL, 'Explanation of perceived strengths and abilities of the student.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22690', '11', '22690', NULL, NULL) +VALUES ('001840', 'Facility Component Identification Code', NULL, 'A unique number or alphanumeric code assigned to a component by a school, school system, state, or other agency or entity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24821', '12', '24821', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001710', 'IEP Present Level Parent Concern Description', NULL, 'Parent’s explanation of their interest in or concerns about the student’s participation in special education.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22691', '11', '22691', NULL, NULL) +VALUES ('001841', 'Facility Estimated Cost to Eliminate Deferred Maintenance', NULL, 'The estimated cost to bring systems, components, finishes, fixtures, or equipment to a state of good repair.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24822', '12', '24822', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001711', 'IEP Present Level Student Concern Description', NULL, 'Student’s explanation of his or her interest in or concerns about participation in special education.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22692', '11', '22692', NULL, NULL) +VALUES ('001842', 'Facility Hazardous Condition Expected Remediation Date', NULL, 'The month, day, and year by which a hazardous condition of a site or building is expected to be remediated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24823', '12', '24823', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001712', 'Declined Services Date', NULL, 'The date recommended services were declined.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22693', '11', '22693', NULL, NULL) +VALUES ('001843', 'Building Full Service Kitchen Type', NULL, 'The type of kitchen housed in the facility as defined by whether it prepares food to be served onsite and/or at additional locations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24824', '12', '24824', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001713', 'Frequency Unit', NULL, 'The unit of time by which a cycle is defined.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22694', '11', '22694', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001844', 'Hazardous Material or Condition Description', NULL, 'A description of the seriousness a threat or hazardous material poses.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24825', '12', '24825', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001714', 'Frequency Instances Per Cycle', NULL, 'The number of recurrences within a cycle.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22695', '11', '22695', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001845', 'Hazardous Material or Condition Testing Date', NULL, 'The month, day, and year that the site or building is tested for a specific hazardous material.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24826', '12', '24826', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001715', 'Frequency Length', NULL, 'The number of units within a repeating cycle. Used with Frequency and Frequency Units elements to describe the occurrence of repeating events such as student services delivered 3 times a week for 16 weeks.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22696', '11', '22696', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001846', 'Facility Inspection Score Result Description', NULL, 'The description of a meaningful raw score of statistical expression of the performance on an inspection.', 'Alphanumeric - 35 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24827', '12', '24827', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001716', 'Duration Length in Minutes', NULL, 'The number of minutes in an instance.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22697', '11', '22697', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('001847', 'Facility Inspection Violation Description', NULL, 'A description of the standard violation(s) found in the inspection.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24828', '12', '24828', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001717', 'Service Extends Outside School Year', NULL, 'Determination if this service continues outside school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22698', '11', '22698', NULL, NULL) +VALUES ('001848', 'Installation Date', NULL, 'The year in which the system, component, equipment, or fixture was originally installed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24829', '12', '24829', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001718', 'Service Setting Description', NULL, 'Description of the setting in which the services are delivered.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22699', '11', '22699', NULL, NULL) +VALUES ('001849', 'Life-cycle Cost', NULL, 'The total cost of acquiring, owning, operating, and disposing of a building, facility, or piece of equipment over its useful life.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24830', '12', '24830', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001719', 'IEP Authorization Document Type', NULL, 'Type of Individualized Education Plan document authorized.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22700', '11', '22700', NULL, NULL) +VALUES ('001850', 'Building Site Improvement Description', NULL, 'A description of the designed and constructed improvements made to a site.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24831', '12', '24831', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001720', 'Authorizer Type', NULL, 'Type of person who authorized the decision or document.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22701', '11', '22701', NULL, NULL) +VALUES ('001851', 'Building Instructional Space Factor Type', NULL, 'A designation as to whether the space is considered an instructional space under state or local guidelines.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24832', '12', '24832', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001721', 'Authorization Acceptance Indicator', NULL, 'Indicates authorizer agreement to a document or plan, such as plan for delivery of student services, program, or improvement plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22702', '11', '22702', NULL, NULL) +VALUES ('001852', 'Building Joint Use Rationale Type', NULL, 'The reasons for permitting and participating in joint-use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24833', '12', '24833', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001722', 'Authorization Decision Explanation', NULL, 'Authorizer''s explanation regarding the authorization decision.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22703', '11', '22703', NULL, NULL) +VALUES ('001853', 'Building Joint Use Scheduling Type', NULL, 'The type of designation of non school district users by the amount of time they have access to public school for joint use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24834', '12', '24834', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001723', 'IEP Authorization Rejected Portion Description', NULL, 'Portion the authorizer does not want executed.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22704', '11', '22704', NULL, NULL) +VALUES ('001854', 'Building Joint User Type', NULL, 'The types of users sharing school district controlled, owned, or utilized facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24835', '12', '24835', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001724', 'IEP Authorization Rejected Portion Explanation', NULL, 'Authorizer''s explanation for rejected portions.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22705', '11', '22705', NULL, NULL) +VALUES ('001855', 'Building Community Use Space Type', NULL, 'The space designed primarily for community or shared use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24836', '12', '24836', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001725', 'Authorization Date', NULL, 'The date the authorization occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22706', '11', '22706', NULL, NULL) +VALUES ('001856', 'Building Hours of Public Use Per Week', NULL, 'The number of hours that all or part of a building is used for purposes other than general education by the community or other organizations.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24837', '12', '24837', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001726', 'Consent to Evaluation Indicator', NULL, 'Indication parent agreed to evaluate student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22707', '11', '22707', NULL, NULL) +VALUES ('001857', 'Building Net Area of Instructional Space', NULL, 'The area of space directly used for instruction excluding circulation, administration, student services, and building support.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24838', '12', '24838', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001727', 'Consent to Evaluation Date', NULL, 'The date the consent to evaluation occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22708', '11', '22708', NULL, NULL) +VALUES ('001858', 'Building Number of Teaching Stations', NULL, 'The number of teaching stations, as defined by how many spaces have, or could have, a teacher assigned to them for classroom instruction.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24839', '12', '24839', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001728', 'IEP Eligibility Evaluation Type', NULL, 'Purpose within the IEP lifecycle for which the eligibility evaluation is conducted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22709', '11', '22709', NULL, NULL) +VALUES ('001859', 'Building Public Use Policy Description', NULL, 'A description of the policy that enables the community or other organizations to use all or part of a building for purposes other than general education.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24840', '12', '24840', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001729', 'IDEA Eligibility Evaluation Category', NULL, 'Category of evaluation used for IDEA eligibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22710', '11', '22710', NULL, NULL) +VALUES ('001860', 'Building Site Use Restrictions Type', NULL, 'A characterization of a site that would define restrictions or opportunities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24841', '12', '24841', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001730', 'Eligibility Evaluation Description', NULL, 'Description of evaluation procedure and result used for determining eligibility.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22711', '11', '22711', NULL, NULL) +VALUES ('001861', 'Building Space Utilization Area', NULL, 'The area in square feet measured between the principal wall that faces at or near floor level, including alcove spaces, and the outer limits of space designed to serve the activity. Structural space is excluded.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24842', '12', '24842', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001731', 'Eligibility Evaluation Date', NULL, 'The date when the evaluation to determine eligibility was conducted.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22712', '11', '22712', NULL, NULL) +VALUES ('001862', 'Student Enrollment Access Type', NULL, 'The designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24843', '12', '24843', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001732', 'Eligibility Parent Observations Explanation', NULL, 'Explanation of parent''s observations of student’s characteristics and history used for determining eligibility.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22713', '11', '22713', NULL, NULL) +VALUES ('001863', 'Building Unassigned Space Indicator', NULL, 'An indication that the space in a school, including circulation, administration offices, support spaces, and common areas, is not part of the calculation for capacity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24844', '12', '24844', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001733', 'IDEA Disability Type', NULL, 'A category of disability that describes a person’s impairment defined by the Individuals with Disabilities Education Act.', NULL, '1', 'Option set based on IDEA disability categories. Multiple disability condition could be selected. Refer to Primary Disability Type for a single disability condition based on EDFacts.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22714', '11', '22714', NULL, NULL) +VALUES ('001864', 'Facility Audit Type', NULL, 'The type of systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24845', '12', '24845', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001734', 'Credential Advanced Standing Description', NULL, 'A description of a credential that reduced the time or cost of attaining this credential.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22715', '11', '22715', NULL, NULL) +VALUES ('001865', 'Building Charter School Realty Access Type', NULL, 'The type of real estate vehicle through which a public charter school has access and control of its building space.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24846', '12', '24846', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001735', 'Credential Advanced Standing URL', NULL, 'A URL that resolves to information about a credential that reduced the time or cost of attaining this credential.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22716', '11', '22716', NULL, NULL) +VALUES ('001866', 'Building Cleaning Standard Type', NULL, 'The standard for cleanliness, and benchmarks for how much space can be assigned to one properly supplied custodian to meet these standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24847', '12', '24847', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001736', 'Credential Definition Alternate Name', 'Credential Alternate Name', 'An alias for the credential, which may include acronyms, alpha-numeric notations, and other forms of name abbreviations in common use such as PhD, MA, and BA.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22717', '11', '22717', NULL, NULL) +VALUES ('001867', 'Facility Compliance Agency Type', NULL, 'The type of agency that has ultimate responsibility for the compliance determination.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24848', '12', '24848', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001737', 'Credential Award Approver Name', NULL, 'Pronouncement of a favorable judgment by the agent being referenced.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22718', '11', '22718', NULL, NULL) +VALUES ('001868', 'Building Energy Conservation Measure Type', NULL, 'The type of modification to, or replacement of, a piece of equipment or building shell/system that increases energy efficiency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24849', '12', '24849', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001738', 'Credential Definition Assessment Method Type', 'Credential Assessment Method Type', 'The method used to conduct the assessment being referenced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22719', '11', '22719', NULL, NULL) +VALUES ('001869', 'Building Energy Service Company Name', NULL, 'The name of the company that designs, procures, finances, installs, maintains, and guarantees the performance of energy conservation measures in an owner''s facility or facilities.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24850', '12', '24850', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001739', 'Credential Definition Identifier System', 'Credential Identifier System', 'A coding scheme that is used for identification and record-keeping purposes by a credentialing organization to refer to a qualification, achievement, personal or organizational quality, or aspect of an identity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22720', '11', '22720', NULL, NULL) +VALUES ('001870', 'Building Energy Source Type', NULL, 'The source of energy that directly powers a school district facility or building system.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24851', '12', '24851', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001740', 'Credential Definition Status Type', 'Credential Status Type', 'The status of the credential offered by a credentialing organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22721', '11', '22721', NULL, NULL) +VALUES ('001871', 'Facilities Management Emergency Type', NULL, 'The type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24852', '12', '24852', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001741', 'Credential Definition Estimated Duration', 'Credential Estimated Duration', 'The estimated amount of time in minutes it will take to earn the credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22722', '11', '22722', NULL, NULL) +VALUES ('001872', 'Facility Capital Program Management Type', NULL, 'The type of management organization for planning, design, and construction of major capital projects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24853', '12', '24853', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001742', 'Credential Definition NAICS Industry Type', 'Credential NAICS Industry Type', 'The North American Industry Classification System (NAICS) class identifier for an industry associated with the credential.', 'Integer - exactly 6 digits', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22723', '11', '22723', NULL, NULL) +VALUES ('001873', 'Facility Operations Management Type', NULL, 'The type of management arrangements whereby a district oversees and manages its facilities operations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24854', '12', '24854', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001743', 'Credential Definition Jurisdiction Region', 'Credential Jurisdiction Region', 'The geo-political region in which the credential is applicable.', 'GeoJSON', '0', 'http://geojson.org/geojson-spec.html#polygon', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22724', '11', '22724', NULL, NULL) +VALUES ('001874', 'Facility Hazardous Materials or Condition Type', NULL, 'The type of hazardous materials or conditions tested for at a site or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24855', '12', '24855', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001744', 'Credential Definition Jurisdiction Region Exception', 'Credential Jurisdiction Region Exception', 'A geo-political region in which the credential does not apply.', 'GeoJSON', '0', 'http://geojson.org/geojson-spec.html#polygon', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22725', '11', '22725', NULL, NULL) +VALUES ('001875', 'Facility Joint Development Type', NULL, 'The type of development where two or more entities partner to plan, site, design, and/or build a new school or renovate an existing school to better support the joint use of the building and/or land.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24856', '12', '24856', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001745', 'Credential Definition Keywords', 'Credential Keywords', 'Keywords or key phrases describing aspects of a credential considered useful for its discovery.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22726', '11', '22726', NULL, NULL) +VALUES ('001876', 'Facility Maintenance Standard Type', NULL, 'The standard for maintenance of a component, system, or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24857', '12', '24857', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001746', 'Credential Definition Maximum Duration', 'Credential Maximum Duration', 'The maximum amount of time in minutes it will take to earn the described credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22727', '11', '22727', NULL, NULL) +VALUES ('001877', 'Facility Naturally Occurring Hazard Type', NULL, 'Type of natural hazard that can affect the health, safety and operation of school facilities and their occupants.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24858', '12', '24858', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001747', 'Credential Definition Minimum Age', 'Credential Minimum Age', 'The minimum allowed age in years at which a person is eligible for the credential.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22728', '11', '22728', NULL, NULL) +VALUES ('001878', 'Facility Utility Provider Type', NULL, 'An indication of how utilities are supplied to a site or a building by a company or provider.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24859', '12', '24859', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001748', 'Credential Definition Minimum Duration', 'Credential Minimum Duration', 'The minimum amount of time in minutes it will take to earn the described credential.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22729', '11', '22729', NULL, NULL) +VALUES ('001879', 'Facility Utility Type', NULL, 'The type of utility used in the operation of a facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24860', '12', '24860', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001749', 'Credential Definition Intended Purpose Type', 'Credential Intended Purpose Type', 'The intended type of application of the credential by the holder.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22730', '11', '22730', NULL, NULL) +VALUES ('001880', 'Building Date of Certificate of Occupancy', NULL, 'The month, day and year in which a certificate of occupancy was granted by the appropriate local authority.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24861', '12', '24861', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001750', 'Organization Region GeoJSON', NULL, 'The geo-political area of the organization''s facility, building, or site.', 'GeoJSON', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22731', '11', '22731', NULL, NULL) +VALUES ('001881', 'Facility Audit Date', NULL, 'The month, day, and year of the systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24862', '12', '24862', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001751', 'Credential Revoked Indicator', NULL, 'Indicates whether the credential has been revoked by the credential provider.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22732', '11', '22732', NULL, NULL) +VALUES ('001882', 'Facilities Plan Description', NULL, 'A description of the management and accountability plan.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24863', '12', '24863', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001752', 'Credential Definition Validation Method Description', 'Credential Validation Method Description', 'Description of the methods used to evaluate the validity and reliability of a credential earned by a person.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22733', '11', '22733', NULL, NULL) +VALUES ('001883', 'Facilities Plan Type', NULL, 'The type of management and accountability plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24864', '12', '24864', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001753', 'Credential Definition Verification Type', 'Credential Verification Type', 'A resource describing the means by which someone can verify whether a credential has been attained by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22734', '11', '22734', NULL, NULL) +VALUES ('001884', 'Facility Standard Type', NULL, 'An indication of the district or state requirements or guidelines for the design and construction of school facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24865', '12', '24865', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001754', 'Credential Definition Version', 'Credential Version', 'An alphanumeric identifier of a version of the credential being described that is unique within the organizational context.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22735', '11', '22735', NULL, NULL) +VALUES ('001885', 'Facilities Mandate Authority Type', NULL, 'The authority that mandates through law, regulation, or standard that pertains to a specific mandate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24866', '12', '24866', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001755', 'CTDL Organization Type', NULL, 'The type of credentialing organization or entity as defined by the Credential Transparency Description Language.', NULL, '1', 'Includes free-standing medical, law or other first-professional schools, schools that offer postbaccalaureate certificates only, those that offer graduate programs only, etc.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22736', '11', '22736', NULL, NULL) +VALUES ('001886', 'Facility Financing Fee Type', NULL, 'The type of fee that one must pay when getting a mortgage.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24867', '12', '24867', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001756', 'O*NET-SOC Occupation Type', NULL, 'The O*NET-SOC taxonomy defines the set of occupations across the world of work based on the Standard Occupational Classification.', '##-####.##', '0', 'https://www.onetcenter.org/taxonomy.html', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22737', '11', '22737', NULL, NULL) +VALUES ('001887', 'Facility Lease Amount', NULL, 'The amount of money the school must pay to rent the facility that it is in.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24868', '12', '24868', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001757', 'Competency Definition Type URL', 'Competency Item Type URL', 'The class of statement in the structure of statements in the Competency Framework according to a controlled vocabulary, specified as a URI referencing a controlled vocabulary.', 'Alphanumeric - 512 characters maximum', '0', 'This property points to a class, not to instances of that class. For example, where two competencies in a competency framework have been identified respectively as \"Strand: Renaissance\" and \"Strand: Social history\", the competency category for both these competencies is \"Strand\"."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22738', '11', '22738', NULL, NULL) +VALUES ('001888', 'Facility Lease Amount Category', NULL, 'The category of payment that a school must pay to rent the facility that it is in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24869', '12', '24869', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001758', 'Submission Date', NULL, 'The month, day, and year on which a report is submitted.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22739', '11', '22739', NULL, NULL) +VALUES ('001889', 'Facility Lease Type', NULL, 'The type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24870', '12', '24870', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001759', 'Report Date', NULL, 'The month, day, and year on which a report was produced.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22740', '11', '22740', NULL, NULL) +VALUES ('001890', 'Facility Mortgage Interest Amount', NULL, 'The amount the borrower pays the lender to compensate the lender for the use of money to purchase a building or facility.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24871', '12', '24871', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001760', 'Count Date', NULL, 'The effective month, day, and year on which the data was counted.', 'YYYY-MM-DD', '0', 'Implementation Note: This element is not defined in the CEDS Normalized Data Schema (NDS) reference model. It represents an implementation variable. Typical use would be in a reporting data store (RDS) rather than in a unit level operational data store.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22741', '11', '22741', NULL, NULL) +VALUES ('001891', 'Facility Mortgage Interest Type', NULL, 'The type of interest paid on a mortgage to the lender to compensate the lender for the use of money to purchase a building or facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24872', '12', '24872', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001761', 'State Full Academic Year', NULL, 'An indication of whether a student was in membership in the state education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22742', '11', '22742', NULL, NULL) +VALUES ('001892', 'Facility Mortgage Type', NULL, 'The status of a mortgage as it relates to priority of payment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24873', '12', '24873', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001762', 'LEA Full Academic Year', NULL, 'An indication of whether a student was in membership in the LEA education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22743', '11', '22743', NULL, NULL) +VALUES ('001893', 'Indebtedness Amount Allowed', NULL, 'The amount of indebtedness allowed by law to be carried by the school district.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24874', '12', '24874', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001763', 'School Full Academic Year', NULL, 'An indication of whether a student was in membership in the school education unit for a full academic year, according to the state’s definition of Full Academic Year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22744', '11', '22744', NULL, NULL) +VALUES ('001894', 'Insurance Deductible', NULL, 'The dollar amount a school district must pay before its insurance will compensate it for loss.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24875', '12', '24875', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001764', 'Building Area', NULL, 'The sum of the areas at each floor level included within the principal outside faces of exterior walls, including roofed areas with finished floors that may not have exterior walls, but are connected to the main building. This sum should include all stories or areas having floor surfaces with clear standing head room (6.5 feet or 1.98 meters) but omit architectural setbacks or projections.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22745', '11', '22745', NULL, NULL) +VALUES ('001895', 'Public Education Mill Rate', NULL, 'The millage rate used to calculate property tax revenue for K-12 public education.', 'Numeric - up to 2 digits before and 8 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24876', '12', '24876', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001765', 'Significant Cognitive Disability Indicator', NULL, 'Student has an existing IDEA disability with cognitive impairments which may prevent him/her from attaining grade-level achievement standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22746', '11', '22746', NULL, NULL) +VALUES ('001896', 'Facility Total Assessed Value', NULL, 'The total assessed value of property that constitutes the basis for public borrowing.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24877', '12', '24877', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001766', 'Virtual School Status', NULL, 'An indication of the extent to which a school offers instruction in which students and teachers are separated by time and/or location, and interaction occurs via computers and/or telecommunications technologies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22747', '11', '22747', 'Updated', 'Added elements to DES contexts to support Early Learning needs. Changed definition of element to support other domains.') +VALUES ('001897', 'Campus Facility Type', NULL, 'The primary purpose for which a campus is designed and/or used.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24878', '12', '24878', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001767', 'National School Lunch Program Status', NULL, 'The classification of participation by a school in the National School Lunch Program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22748', '11', '22748', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001898', 'Component or Fixture Check Date', NULL, 'The month, day, and year that the condition of a system, component, equipment, or fixture was checked.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24879', '12', '24879', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001768', 'Facility Acquisition Date', NULL, 'The date the property/facility was acquired.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22749', '11', '22749', NULL, NULL) +VALUES ('001899', 'Component or Fixture Serviced Date', NULL, 'The month, day, and year a system, component, equipment, or fixture was serviced for repair or routine maintenance.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24880', '12', '24880', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001769', 'Facility Addition Year', NULL, 'The year the construction on the addition was completed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22750', '11', '22750', NULL, NULL) +VALUES ('001900', 'Component or Fixture Scheduled Serviced Date', NULL, 'The month, day, and year a major component, system, equipment, or fixture is scheduled to be serviced for preventive or routine maintenance.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24881', '12', '24881', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001770', 'Facility Building Permanency', NULL, 'An indication of whether the building is built for permanent use in the same location or is relocatable.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22751', '11', '22751', NULL, NULL) +VALUES ('001901', 'Component or Fixture Useful Life', NULL, 'The anticipated time (in years) from the time of installation or service that a properly maintained system, component, equipment, or fixture is expected to operate effectively and efficiently.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24882', '12', '24882', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001771', 'Facility Construction Year', NULL, 'The year the building was first constructed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22752', '11', '22752', NULL, NULL) +VALUES ('001902', 'Available Utilized Instructional Space', NULL, 'An indication that the instruction space in a school is used in the calculation of student capacity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24883', '12', '24883', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001772', 'Building Historic Status', NULL, 'An indication of whether or not a building is eligible to be or has been declared a landmark or historic building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22753', '11', '22753', NULL, NULL) +VALUES ('001903', 'Building Capacity Factor Indicator', NULL, 'A designation as to whether the space is included in the calculation of school building capacity under state or local guidelines.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24884', '12', '24884', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001773', 'Facility Site Area', NULL, 'The total number of acres in a continuous piece of land, to the nearest tenth, including undeveloped areas as well as areas occupied by buildings, walks, drives, parking facilities, and other improvements.', 'Numeric - up to 1 digit after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22754', '11', '22754', NULL, NULL) +VALUES ('001904', 'Facility Enrollment Capacity', NULL, 'The maximum number of age appropriate students who can be enrolled in a facility such that the district''s programmatic, operational, and student/teacher work load requirements are met.', 'Integer', '0', 'This element will be phased out in version 12. It is being replaced by Enrollment Capacity.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24885', '12', '24885', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001774', 'Facility Block Number Area', 'BNA', 'The informal description of location sometimes used in rural areas, for example, "from the highway to the railroad tracks."', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22755', '11', '22755', NULL, NULL) +VALUES ('001905', 'Organization Relationship Type', NULL, 'The nature of one organization’s relationship to another.', NULL, '1', 'Related Body would be used for a use case in which no hierarchy exists, such as a foundation related to a postsecondary institution. Neither organization has authority over the other, but is related to one another.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24886', '12', '24886', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001775', 'Building Addition Description', NULL, 'A description of the permanent structure added to the original building.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22756', '11', '22756', NULL, NULL) +VALUES ('001906', 'Facility Ownership Indicator', NULL, 'Indicates the public or private entity holds legal title to the building and/or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24887', '12', '24887', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001776', 'Building Addition Code', NULL, 'A unique number or alphanumeric code assigned to a building addition by a school, school system, state, or other agency or entity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22757', '11', '22757', NULL, NULL) +VALUES ('001907', 'Competency Framework Source URL', NULL, 'A URL that resolves to the original or authoritative competency framework document.', 'Alphanumeric - 512 characters maximum', '0', 'This is the URL of a human-readable artifact. Often this document is published in html and/or pdf and is used by the standard setting entity as part of its approval process.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24888', '12', '24888', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001777', 'Building Primary Use Type', NULL, 'The primary use type of the building in which a school is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22758', '11', '22758', NULL, NULL) +VALUES ('001908', 'Competency Definition Typical Age Range Minimum', NULL, 'The typical minimum age at which a person learns the defined competency.', 'Integer - greater than or equal to 0', '0', 'Use this element with "Competency Definition Typical Age Range Maximum" instead of "Competency Item Typical Age Range"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24889', '12', '24889', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001778', 'Campus Status', NULL, 'The generalized use or control of a campus, independent of program type.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22759', '11', '22759', NULL, NULL) +VALUES ('001909', 'Competency Definition Typical Age Range Maximum', NULL, 'The typical maximum age at which a person learns the defined competency.', 'Integer - greater than or equal to 0', '0', 'Use this element with "Competency Definition Typical Age Range Minimum" instead of "Competency Item Typical Age Range"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24890', '12', '24890', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001779', 'Facility Census Tract', NULL, 'The census tract number of the school site.', 'Integer - exactly 11 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22760', '11', '22760', NULL, NULL) +VALUES ('001910', 'Credential Definition Date Effective', NULL, 'Effective date of the content of a credential definition.', 'YYYY-MM-DD', '0', 'This is the date the content/definition of the credential became effective, not necessarily the date that one or more credentialing organizations began offering the credential.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24891', '12', '24891', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001780', 'Facility Construction Date', NULL, 'The month, day, and year on which construction of a building, addition, or improvement was completed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22761', '11', '22761', NULL, NULL) +VALUES ('001911', 'Credential Offered Start Date', NULL, 'The first date a credential was offered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24892', '12', '24892', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001781', 'Facility Construction Date Type', NULL, 'Designation of the nature of the construction completion date.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22762', '11', '22762', NULL, NULL) +VALUES ('001912', 'Credential Offered End Date', NULL, 'The last date a credential was offered.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24893', '12', '24893', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001782', 'Facility Construction Material Type', NULL, 'The primary material used for the construction of a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22763', '11', '22763', NULL, NULL) +VALUES ('001913', 'CTDL Audience Level Type', 'ceterms:AudienceLevel', 'Type of level indicating a point in a progression through an educational or training context, for which the credential is intended; select from an existing enumeration of such types.', NULL, '1', 'This is similar to "PESC Award Level Type" and "Academic Award Level Conferred" but uses a different controlled vocabulary. See https://credreg.net/ctdl/terms/Credential#AudienceLevel.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24894', '12', '24894', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001783', 'Facility Expected Life', NULL, 'The time, in years, of the expected useful life of a facility for the purposes of depreciation.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22764', '11', '22764', NULL, NULL) +VALUES ('001914', 'Credential Definition Agent Role Type', NULL, 'The role that an organization or person has in relation to this Credential Definition based on terms defined by Credential Engine.', NULL, '1', 'Option codes and definitions are from the Credential Engine and the ceterms namespace, except the codes use Pascal case in CEDS to follow CEDS conventions and use camel case in the original ceterms.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24895', '12', '24895', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001784', 'Facility Replacement Value', NULL, 'The estimated cost of replacing a facility using current per square foot estimates of total project costs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22765', '11', '22765', NULL, NULL) +VALUES ('001915', 'Progress Achieving English Language Proficiency Indicator Type', NULL, 'The category used to report the school''s performance on the progress of achieving the English language proficiency indicator.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24896', '12', '24896', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001785', 'Building Number of Stories', NULL, 'The number of stories in a building, excluding the basement if its ceiling is less than three feet above ground level.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22766', '11', '22766', NULL, NULL) +VALUES ('001916', 'Progress Achieving English Language Proficiency State Defined Status', NULL, 'The state defined status assigned to the school''s performance on the progress of achieving the English language proficiency indicator.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24897', '12', '24897', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001786', 'Facility Site Identifier', NULL, 'The lot and square number, or equivalent unique municipal number identification, of a parcel of land.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22767', '11', '22767', NULL, NULL) +VALUES ('001917', 'Record Start Date Time', NULL, 'The start date and, optionally, time that a record is active as used to support version control.', 'YYYY-MM-DDTHH:MM:SS', '0', 'See CEDS Integrated Data Store for use in version control.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24898', '12', '24898', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001787', 'Facility Site Improvement Location Type', NULL, 'The type of location of the designed and constructed improvements made to a site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22768', '11', '22768', NULL, NULL) +VALUES ('001918', 'Record End Date Time', NULL, 'The end date and, optionally, time that a record is active as used to support version control.', 'YYYY-MM-DDTHH:MM:SS', '0', 'See CEDS Integrated Data Store for use in version control. All CEDS Exit and End Dates represent the last day of the date range specified.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24899', '12', '24899', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001788', 'Building Year Built', NULL, 'The year a building was constructed, as indicated by cornerstone or official government records.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22769', '11', '22769', NULL, NULL) +VALUES ('001919', 'Start Time', NULL, 'The starting hour, minute and second.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24900', '12', '24900', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001789', 'Building Year of Last Modernization', NULL, 'The most recent year that a comprehensive upgrade of ALL major building systems and components was completed, such that it functions as a modern building, as measured by a facility condition index not greater than 15%.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22770', '11', '22770', NULL, NULL) +VALUES ('001920', 'End Time', NULL, 'The ending hour, minute and second.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24901', '12', '24901', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001790', 'Building Air Distribution System Type', NULL, 'The primary means by which air is circulated, freshened, and exhausted.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22771', '11', '22771', NULL, NULL) +VALUES ('001925', 'Additional Targeted Support and Improvement Status', NULL, 'The designation given to a school by the state for additional targeted support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24902', '12', '24902', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001791', 'Building Communications Management Component System Type', NULL, 'The type of system, interface, and management components for carrying voice, video, and data throughout a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22772', '11', '22772', NULL, NULL) +VALUES ('001929', 'Awaiting Foster Care Status', NULL, 'An indication of whether this child is awaiting foster care.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24903', '12', '24903', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001792', 'Facility Compliance Status', NULL, 'An indication of whether the school, building, site, system, component, equipment, vehicle, or fixture conforms to the requirements or standards specified in federal, state, or local standards or codes or other officially required guidelines or regulations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22773', '11', '22773', NULL, NULL) +VALUES ('001923', 'Comprehensive Support and Improvement Status', NULL, 'The designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24904', '12', '24904', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001793', 'Facility System or Component Condition', NULL, 'The rating of the system or component functions under the demands of its regular operation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22774', '11', '22774', NULL, NULL) +VALUES ('001928', 'Do Not Publish Indicator', NULL, 'An indication that the record should not be published.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24905', '12', '24905', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001794', 'Building Cooling Generation System Type', NULL, 'The type of mechanical systems and building designs used for cooling.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22775', '11', '22775', NULL, NULL) +VALUES ('001921', 'Full Time Equivalency', NULL, 'The time a person is enrolled, employed, involved, or participates in the organization, divided by the time the organization defines as full-time for that role.', 'Numeric - up to 2 decimal places', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24906', '12', '24906', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001795', 'Building Electrical System Type', NULL, 'The components and system required to distribute electricity throughout the building or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22776', '11', '22776', NULL, NULL) +VALUES ('001926', 'Grade Levels Approved', NULL, 'The specific grade or combination of grades approved by an organization to be offered by an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24907', '12', '24907', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001796', 'Facility Applicable Federal Mandate Type', NULL, 'The particular federal law, regulation, or standard that pertains to a school facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22777', '11', '22777', NULL, NULL) +VALUES ('001930', 'Out of Workforce Indicator', NULL, 'An individual: (A) who is a displaced homemaker, as defined in section 3 of the Workforce Innovation and Opportunity Act (29 U.S.C. 3102); or (B) who (i)(I) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; or (II) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (ii) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24908', '12', '24908', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001797', 'Facility Federal Mandate Interest Type', NULL, 'The area of interest controlled by a federal law, regulation, or standard that pertains to a school facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22778', '11', '22778', NULL, NULL) +VALUES ('001922', 'Program Entry Reason', NULL, 'The documented or assumed reason a person is being served by a program.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24909', '12', '24909', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001798', 'Building Fire Protection System Type', NULL, 'The type of system that protects the facility against fire.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22779', '11', '22779', NULL, NULL) +VALUES ('001924', 'Targeted Support and Improvement Status', NULL, 'The designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24910', '12', '24910', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001799', 'Building Heating Generation System Type', NULL, 'The method by which the heat is distributed and delivered throughout the room(s) or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22780', '11', '22780', NULL, NULL) +VALUES ('001927', 'Telephone Number Listed Status', NULL, 'An indication of whether a telephone number is listed under a directory assistance service.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24911', '12', '24911', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001800', 'Building HVAC System Type', NULL, 'The building service system that provides for heating, ventilation and air-conditioning.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22781', '11', '22781', NULL, NULL) +VALUES ('001955', 'Adult Education Credential Attainment Employed Indicator', NULL, 'An indication of whether the adult education participant received a secondary school diploma or its recognized equivalent while enrolled in the adult education program or within one year of exiting the adult education program and was employed within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24912', '12', '24912', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001801', 'Building Institutional Equipment Description', NULL, 'Equipment that is installed for use in support of instructional program such as kilns for art, planetarium equipment for astronomy, fitness equipment for physical education.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22782', '11', '22782', NULL, NULL) +VALUES ('001956', 'Adult Education Credential Attainment Postsecondary Credential Indicator', NULL, 'An indication of whether the adult education participant received a postsecondary credential while enrolled in the adult education program or within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24913', '12', '24913', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001802', 'Building Mechanical Conveying System Type', NULL, 'Mechanical means for moving people and equipment within buildings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22783', '11', '22783', NULL, NULL) +VALUES ('001954', 'Adult Education Credential Attainment Postsecondary Enrollment Indicator', NULL, 'An indication of whether the adult education participant received a secondary school diploma or its recognized equivalent while enrolled in the adult education program or within one year of exiting the adult education program and entered into postsecondary education within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24914', '12', '24914', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001803', 'Building Plumbing System Type', NULL, 'The component of an on-site system for supplying, eliminating, and treating water.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22784', '11', '22784', NULL, NULL) +VALUES ('001939', 'Adult Education Program Exit Reason', NULL, 'The documented or assumed reason the person is no longer being served by the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24915', '12', '24915', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001804', 'Building Security System Type', NULL, 'The type of system that protects the facility from intrusion.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22785', '11', '22785', NULL, NULL) +VALUES ('001935', 'Barrier to Internet Access In Residence', NULL, 'An indication of the barrier to having internet access in the student''s primary place of residence.', NULL, '1', 'This element is used in combination with the element "Internet Access in Residence." When asking for this information on a parent or student survey, the question could be phrased like this: "If the student is unable to access the internet in their primary place of residence, why not?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24916', '12', '24916', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001805', 'Facility State or Local Mandate Interest Type', NULL, 'The area of interest controlled by a law, rule, regulation, or standard of state and local governments that pertains to public school facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22786', '11', '22786', NULL, NULL) +VALUES ('001984', 'Children of Fallen Heroes Indicator', NULL, 'Pell-eligible students whose parent or guardian was a member of the U.S. armed forces and died as a result of military service performed in Iraq or Afghanistan after the events of 9/11 or a public safety officer and died as a result of active service in the line of duty. At the time of the parent''s or guardian''s death, the student must be less than 24 years of age or enrolled in college or career school at least part-time.', NULL, '1', 'The Children of Fallen heroes Indicator should follow the current legislation definitions and be updated as definitions change', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24917', '12', '24917', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001806', 'Facility State or Local Mandate Name', NULL, 'The specific law, rule, regulation, or standard of a state or local government that pertains to public school facilities.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22787', '11', '22787', NULL, NULL) +VALUES ('001938', 'Cohort Median Earnings', NULL, 'The midpoint between the lowest and highest quarterly wage, in U.S. dollars, for the total number of persons included in the cohort for the period of time between the Employment Record Reference Period Start Date and Employment Record Reference Period End Date.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24918', '12', '24918', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001807', 'Building Technology Wiring System Type', NULL, 'The means through which voice, video, audio, and data information are conveyed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22788', '11', '22788', NULL, NULL) +VALUES ('001953', 'Credential Definition Terminal Degree Indicator', NULL, 'This degree is the highest degree that can be awarded in this classification of instructional programs field or program area.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24919', '12', '24919', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001808', 'Facility Location of Hazardous Materials', NULL, 'The location at which the identified hazardous material is found.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22789', '11', '22789', NULL, NULL) +VALUES ('001970', 'Data Collection Academic School Year', NULL, 'The year for a reported school session for which the data is applicable.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24920', '12', '24920', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001809', 'Building Mechanical System Type', NULL, 'The major manufactured systems required to operate a building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22790', '11', '22790', NULL, NULL) +VALUES ('001969', 'Data Collection Close Date', NULL, 'The date the data collection closes or ends.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24921', '12', '24921', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001810', 'Facility Nearby Environmental Hazard Description', NULL, 'Description of any type of environmental hazards within range of the facility that has the potential to seriously affect the health, safety and operation of school facilities and their occupants.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22791', '11', '22791', NULL, NULL) +VALUES ('001967', 'Data Collection Description', NULL, 'The description of what is included in the data within the context of the data collection based on the source system and collection period as defined by the Data Collection Open Date and Data Collection Close Date.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24922', '12', '24922', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001811', 'Building System Type', NULL, 'The type of system that is installed in the building or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22792', '11', '22792', NULL, NULL) +VALUES ('001966', 'Data Collection Name', NULL, 'A human readable name used to identify the data within the collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24923', '12', '24923', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001812', 'Building Vertical Transportation System Type', NULL, 'The type of system used to convey persons or freight between floors.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22793', '11', '22793', NULL, NULL) +VALUES ('001968', 'Data Collection Open Date', NULL, 'The date the data collection opens or commences.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24924', '12', '24924', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001813', 'Building Administrative Space Type', NULL, 'The space designed primarily for conducting administrative and business functions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22794', '11', '22794', NULL, NULL) +VALUES ('001971', 'Data Collection School Year', NULL, 'The year for a reported school session in which the data collection occurs.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24925', '12', '24925', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001814', 'Building Art Specialty Space Type', NULL, 'The space designed to support the teaching and learning of 2 dimensional or 3 dimensional visual arts.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22795', '11', '22795', NULL, NULL) +VALUES ('001990', 'Data Collection Status', NULL, 'A process indicator of the level of stability, quality, and/or preparedness of the collection of data.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24926', '12', '24926', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001815', 'Building Basic Classroom Design Type', NULL, 'A classroom designed for instruction of a particular age group, but not a specific subject.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22796', '11', '22796', NULL, NULL) +VALUES ('001979', 'EDFacts Academic or Career and Technical Outcome Exit Type', NULL, 'The type of academic or career and technical outcome attained up to 90 days after exiting the facility or program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24927', '12', '24927', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001816', 'Building Design Type', NULL, 'The primary design or purpose of a building, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22797', '11', '22797', NULL, NULL) +VALUES ('001978', 'EDFacts Academic or Career and Technical Outcome Type', NULL, 'The type of academic or career and technical outcome attained while enrolled in the program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24928', '12', '24928', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001817', 'Building Career-Technical Education Space Type', NULL, 'The classroom, laboratory, or shop specially located, designed, furnished, and equipped to support instruction of technical and technology related curriculum, usually tied to particular industry, for example, bio-tech, construction, or agriculture.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22798', '11', '22798', NULL, NULL) +VALUES ('001961', 'EDFacts Teacher Inexperienced Status', NULL, 'An indication of whether teachers have been identified as inexperienced as defined by the state.', NULL, '1', 'This element is used specifically for EDFacts reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24929', '12', '24929', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001818', 'Building Circulation Space Type', NULL, 'A space designed to enable people to move within the building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22799', '11', '22799', NULL, NULL) +VALUES ('001962', 'EDFacts Teacher Out of Field Status', NULL, 'An indication of whether teachers have been identified as teaching a subject or field for which they are not certified or licensed as defined by the state.', NULL, '1', 'This element is used specifically for EDFacts reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24930', '12', '24930', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001819', 'Building Environmental or Energy Performance Rating Category', NULL, 'The primary groupings that rating organizations use to evaluate environmental sustainability and energy use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22800', '11', '22800', NULL, NULL) +VALUES ('001981', 'Emancipated Minor', NULL, 'A minor student under the age of 18 who has been granted by legal action to have the power and capacity of an adult.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24931', '12', '24931', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001820', 'Facility Furnishings Type', NULL, 'Moveable assets that are provided so the building or interior assets can be utilized by occupants for their intended purposes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22801', '11', '22801', NULL, NULL) +VALUES ('001944', 'Federal Race and Ethnicity Declined', NULL, 'A parent, guardian, or student declined to report sufficient information for identifying a student''s federal race and/or ethnicity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24932', '12', '24932', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001821', 'Building Food Service Space Type', NULL, 'The space located, designed, furnished and equipped to support meal programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22802', '11', '22802', NULL, NULL) +VALUES ('001947', 'First Generation College Student', NULL, 'The term First Generation College Student means an individual both of whose parents did not complete a baccalaureate degree or in the case of any individual who regularly resided with and received support from only one parent, an individual whose only such parent did not complete a baccalaureate degree.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24933', '12', '24933', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001822', 'Building Indoor Athletic or Physical Education Space Type', NULL, 'The indoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22803', '11', '22803', NULL, NULL) +VALUES ('001989', 'Home Language Survey Administration Date', NULL, 'The year, month, and day on which the Home Language Survey is known to have been administered to the parent or guardian of this student.', 'YYYY-MM-DD', '0', 'The actual date of the administration is not what this element is capturing but rather when the result of the home language survey have been received by the school. The survey may have been completed in the school office upon registration of the student or could have been completed at home as part of a set of documents parents or guardians complete when enrolling students. When the completed home language survey has been provided to the school, the date received or the date the information is entered into a student information system as having been completed is sufficient to meet the intent of this element.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24934', '12', '24934', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001823', 'Building Library or Media Center Specialty Space Type', NULL, 'The primary and auxiliary space designed to provide and support student and staff access to books, periodicals, software, videos, and the Internet.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22804', '11', '22804', NULL, NULL) +VALUES ('001988', 'Home Language Survey Administration Indicator', NULL, 'An indication that the parent or guardian of this student was administered the Home Language Survey - a questionnaire given to parents or guardians that helps schools and local education agencies identify which students are potential English Learners and who will require assessment of their English language proficiency to determine whether they are eligible for language assistance services.', NULL, '1', 'The term "administration" would indicate that the results of the home language survey for this student have been provided to the school. The intent of this element is not to determine whether or not the school provided a home language survey to the parents/guardians of the student but instead to determine if the school received the results of that home language survey back from the parents/guardians of the student.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24935', '12', '24935', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001824', 'Building Operations or Maintenance Space Type', NULL, 'The area designed primarily for conducting activities concerned with maintaining the grounds, buildings, and equipment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22805', '11', '22805', NULL, NULL) +VALUES ('001934', 'Internet Access In Residence', NULL, 'An indication of whether the student is able to access the internet in their primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Can the student access the internet in their primary place of residence?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24936', '12', '24936', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001825', 'Building Outdoor Athletic or Physical Education Space Type', NULL, 'The outdoor space designed, located, furnished, and equipped for instruction and support of a physical education curriculum and athletic program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22806', '11', '22806', NULL, NULL) +VALUES ('001936', 'Internet Access Type In Residence', NULL, 'The primary type of internet service used in the student''s primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "What is the primary type of internet service used in the student''s primary place of residence?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24937', '12', '24937', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001826', 'Building Outdoor or Non-athletic Space Type', NULL, 'The outdoor space located, designed, furnished, and equipped primarily for recreation, play and outdoor environmental education.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22807', '11', '22807', NULL, NULL) +VALUES ('001976', 'Internet Download Speed', NULL, 'The speed that data or information can be downloaded from a server on the internet to one''s device in megabits per second.', 'Numeric', '0', 'This information is collected via an internet speed test. In 2021, the FCC minimum broadband threshold is 25 Mbps. Display Example: 25.0', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24938', '12', '24938', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001827', 'Building Performing Arts Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped for instruction and support of music and drama curricula and productions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22808', '11', '22808', NULL, NULL) +VALUES ('001937', 'Internet Performance In Residence', NULL, 'An indication of whether the student can complete the full range of learning activities, including video streaming and assignment upload, without interruptions caused by poor internet performance in their primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Can the student complete learning activities such as streaming a video and uploading assignments without interruptions caused by poor internet performance?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24939', '12', '24939', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001828', 'Building School Design Type', NULL, 'The physical layout and character of a school facility, as determined by age groups served and educational programs provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22809', '11', '22809', NULL, NULL) +VALUES ('001977', 'Internet Speed Test Date Time', NULL, 'The date and, optionally, time that the information was gathered.', 'YYYY-MM-DDTHH:MM:SS', '0', 'This information is collected and stored as part of each speed test. Display Example: 2021-09-20T10:30:00', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24940', '12', '24940', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001829', 'Building Science Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped for instruction and experimentation in science.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22810', '11', '22810', NULL, NULL) +VALUES ('001975', 'Internet Upload Speed', NULL, 'The speed that data or information can be sent from one''s device to another device or server on the internet in megabits per second.', 'Numeric', '0', 'This information is collected via an internet speed test. In 2021, the FCC minimum broadband threshold is 3 Mbps. Display Example: 3.0', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24941', '12', '24941', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001830', 'Facility Site Outdoor Area Type', NULL, 'The designated constructed outdoor area on a public school site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22811', '11', '22811', NULL, NULL) +VALUES ('001980', 'Marital Status', NULL, 'The marital status of the person as of today.', NULL, '1', 'This element supports FAFSA questions related to parent''s marital status and student''s marital status. The option set was developed using Census classifications.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24942', '12', '24942', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001831', 'Building Space Design Type', NULL, 'The primary design or purpose of a space, as determined by its physical layout and built-in systems and equipment, regardless of its current use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22812', '11', '22812', NULL, NULL) +VALUES ('001950', 'NCES SIDE Date Processed', NULL, 'The year, month, and day on which the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) was processed through the BlindSIDE resource.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24943', '12', '24943', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001832', 'Building Special Education Specialty Space Type', NULL, 'The space designed, located, furnished, and equipped to support instruction of children with special physical, emotional, and/or educational needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22813', '11', '22813', NULL, NULL) +VALUES ('001948', 'NCES SIDE Estimate', NULL, 'The National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) based on the person''s latitude and longitude location.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24944', '12', '24944', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001833', 'Building Student Support Space Type', NULL, 'The space designed to provide student support services such as administrative, technical (e.g., guidance and health), and logistical support to facilitate and enhance instruction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22814', '11', '22814', NULL, NULL) +VALUES ('001949', 'NCES SIDE Standard Error', NULL, 'The standard error applied to the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24945', '12', '24945', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001834', 'Building Architect Name', NULL, 'The name of the architect of record for the building.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22815', '11', '22815', NULL, NULL) +VALUES ('001951', 'NCES SIDE Vintage Begin Year', NULL, 'The begin year for the American Community Survey (ACS) period estimates used to construct the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'YYYY', '0', 'The NCES SIDE base is constructed from ACS five-year microdata. The NCES SIDE Vintage Begin Year indicates the first year of that five-year microdata base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24946', '12', '24946', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001835', 'Building Architectural Firm Name', NULL, 'The name of the architectural firm responsible for the building design.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22816', '11', '22816', NULL, NULL) +VALUES ('001952', 'NCES SIDE Vintage End Year', NULL, 'The end year for the American Community Survey (ACS) period estimates used to construct the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'YYYY', '0', 'The NCES SIDE base is constructed from ACS five-year microdata. The NCES SIDE Vintage End Year indicates the last year of that five-year microdata base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24947', '12', '24947', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001836', 'Building Assembly Space Type', NULL, 'An area designed primarily for theater productions, assemblies, and other large gatherings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22817', '11', '22817', NULL, NULL) +VALUES ('000220', 'Professional Educational Job Classification', NULL, 'A general job classification that describes staff that performs duties requiring a high degree of knowledge and skills generally acquired through at least a baccalaureate degree (or its equivalent obtained through special study and/or experience) including skills in the field of education, educational psychology, educational social work, or an education therapy field.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23220', '12', '23220', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001837', 'Facility Compliance Determination Date', NULL, 'The month, day, and year that the school, building, site, system, component, equipment, or fixture compliance status was determined.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22818', '11', '22818', NULL, NULL) +VALUES ('000221', 'Proficiency Target Status for Math', NULL, 'An indication of whether the school or district met the math proficiency target in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23221', '12', '23221', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001838', 'Facility Compliance Name', NULL, 'The name of the inspection or process that indicates conformity to the requirements or standards specified in federal, state, or local standards or codes.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22819', '11', '22819', NULL, NULL) +VALUES ('000222', 'Exit Reason', NULL, 'The documented or assumed reason a student is no longer being served by a special program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23222', '12', '23222', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001839', 'Facility Component Deficiency Description', NULL, 'A description of the component, system, or finish that needs replacement, repair, or maintenance to perform at an optimal level.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22820', '11', '22820', NULL, NULL) +VALUES ('000223', 'Program Length Hours', NULL, 'The normal length in credit/contact hours of a person''s program as published in the institution''s catalogue, website, or other official documents.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23223', '12', '23223', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001840', 'Facility Component Identification Code', NULL, 'A unique number or alphanumeric code assigned to a component by a school, school system, state, or other agency or entity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22821', '11', '22821', NULL, NULL) +VALUES ('000224', 'Program Length Hours Type', NULL, 'The type of hours (credit or contact) by which the normal length of a program of study is measured.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23224', '12', '23224', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001841', 'Facility Estimated Cost to Eliminate Deferred Maintenance', NULL, 'The estimated cost to bring systems, components, finishes, fixtures, or equipment to a state of good repair.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22822', '11', '22822', NULL, NULL) +VALUES ('000225', 'Program Type', NULL, 'The system outlining instructional or non-instructional activities and procedures designed to accomplish a predetermined educational objective or set of objectives or to provide support services to a person and/or the community.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23225', '12', '23225', 'Updated', 'Add new option to option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001842', 'Facility Hazardous Condition Expected Remediation Date', NULL, 'The month, day, and year by which a hazardous condition of a site or building is expected to be remediated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22823', '11', '22823', NULL, NULL) +VALUES ('000226', 'Projected Graduation Date', NULL, 'The year and month the student is projected to graduate.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23226', '12', '23226', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001843', 'Building Full Service Kitchen Type', NULL, 'The type of kitchen housed in the facility as defined by whether it prepares food to be served onsite and/or at additional locations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22824', '11', '22824', NULL, NULL) +VALUES ('000227', 'Public School Choice Implementation Status', NULL, 'An indication of whether the LEA was able to implement the provisions for public school choice under Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23227', '12', '23227', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001844', 'Hazardous Material or Condition Description', NULL, 'A description of the seriousness a threat or hazardous material poses.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22825', '11', '22825', NULL, NULL) +VALUES ('000228', 'Reason Not Tested', NULL, 'The primary reason a student is not tested.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23228', '12', '23228', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001845', 'Hazardous Material or Condition Testing Date', NULL, 'The month, day, and year that the site or building is tested for a specific hazardous material.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22826', '11', '22826', NULL, NULL) +VALUES ('000229', 'Recognition for Participation or Performance in an Activity', NULL, 'The nature of recognition given to the student for accomplishments in a co-curricular, or extra-curricular activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23229', '12', '23229', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001846', 'Facility Inspection Score Result Description', NULL, 'The description of a meaningful raw score of statistical expression of the performance on an inspection.', 'Alphanumeric - 35 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22827', '11', '22827', NULL, NULL) +VALUES ('000230', 'Reconstituted Status', NULL, 'An indication that the school was restructured, transformed or otherwise changed as a consequence of the state’s accountability system under ESEA or as a result of School Improvement Grants (SIG).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23230', '12', '23230', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001847', 'Facility Inspection Violation Description', NULL, 'A description of the standard violation(s) found in the inspection.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22828', '11', '22828', NULL, NULL) +VALUES ('000231', 'Related Competency Definitions', 'Related Learning Standard Items, Related Competency Items', 'An indication of the competency definition(s) addressed in the Course Section.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23231', '12', '23231', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001848', 'Installation Date', NULL, 'The year in which the system, component, equipment, or fixture was originally installed.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22829', '11', '22829', NULL, NULL) +VALUES ('000232', 'Restructuring Action', NULL, 'The types of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23232', '12', '23232', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001849', 'Life-cycle Cost', NULL, 'The total cost of acquiring, owning, operating, and disposing of a building, facility, or piece of equipment over its useful life.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22830', '11', '22830', NULL, NULL) +VALUES ('000233', 'Staff Compensation Retirement Benefits', NULL, 'Contributions made by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider’s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23233', '12', '23233', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001850', 'Building Site Improvement Description', NULL, 'A description of the designed and constructed improvements made to a site.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22831', '11', '22831', NULL, NULL) +VALUES ('000234', 'Salary for Teaching Assignment Only Indicator', NULL, 'Indicator to determine whether the teacher''s base salary includes pay for teaching assignments alone.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23234', '12', '23234', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001851', 'Building Instructional Space Factor Type', NULL, 'A designation as to whether the space is considered an instructional space under state or local guidelines.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22832', '11', '22832', NULL, NULL) +VALUES ('000235', 'School Choice Applied for Transfer Status', NULL, 'An indication that a student applied to transfer in the current year (regardless of whether the student transferred), OR previously applied and transferred under the public school choice provisions and continue to attend the transfer school in the current year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23235', '12', '23235', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001852', 'Building Joint Use Rationale Type', NULL, 'The reasons for permitting and participating in joint-use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22833', '11', '22833', NULL, NULL) +VALUES ('000236', 'School Choice Eligible for Transfer Status', NULL, 'An indication the student is eligible to transfer for the current school year under the public school choice provisions or who applied and transferred in the current school year under the public school choice provisions or previously applied and transferred under the public school choice provisions and continue to attend the transfer school in the current year.', NULL, '1', 'Which students should be reported?', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23236', '12', '23236', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001853', 'Building Joint Use Scheduling Type', NULL, 'The type of designation of non school district users by the amount of time they have access to public school for joint use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22834', '11', '22834', NULL, NULL) +VALUES ('000237', 'School Choice Transfer Status', NULL, 'An indication of whether an eligible student transferred to the school under the provisions for public school choice in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23237', '12', '23237', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001854', 'Building Joint User Type', NULL, 'The types of users sharing school district controlled, owned, or utilized facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22835', '11', '22835', NULL, NULL) +VALUES ('000238', 'School Improvement Funds Status', NULL, 'An indication of whether the school received funds under Section 1003 of ESEA, as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23238', '12', '23238', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001855', 'Building Community Use Space Type', NULL, 'The space designed primarily for community or shared use.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22836', '11', '22836', NULL, NULL) +VALUES ('000239', 'School Improvement Grant Intervention Type', NULL, 'The type of intervention used by the school under the School Improvement Grant (SIG).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23239', '12', '23239', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001856', 'Building Hours of Public Use Per Week', NULL, 'The number of hours that all or part of a building is used for purposes other than general education by the community or other organizations.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22837', '11', '22837', NULL, NULL) +VALUES ('000240', 'School Improvement Status', NULL, 'An indication of the improvement stage of the school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23240', '12', '23240', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001857', 'Building Net Area of Instructional Space', NULL, 'The area of space directly used for instruction excluding circulation, administration, student services, and building support.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22838', '11', '22838', NULL, NULL) +VALUES ('000241', 'School Level', NULL, 'An indication of the level of the education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23241', '12', '23241', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001858', 'Building Number of Teaching Stations', NULL, 'The number of teaching stations, as defined by how many spaces have, or could have, a teacher assigned to them for classroom instruction.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22839', '11', '22839', NULL, NULL) +VALUES ('000242', 'School Type', NULL, 'The type of education institution as classified by its primary focus. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23242', '12', '23242', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001859', 'Building Public Use Policy Description', NULL, 'A description of the policy that enables the community or other organizations to use all or part of a building for purposes other than general education.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22840', '11', '22840', NULL, NULL) +VALUES ('000243', 'School Year', NULL, 'The year for a reported school session.', 'YYYY', '0', 'For academic years that span a calendar year this is the four digit year-end. E.g. 2013 for 2012-2013', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23243', '12', '23243', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001860', 'Building Site Use Restrictions Type', NULL, 'A characterization of a site that would define restrictions or opportunities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22841', '11', '22841', NULL, NULL) +VALUES ('000244', 'School Year Minutes', NULL, 'The number of minutes that all students were required to be at school and any additional learning time (e.g., before or after school, weekend school, summer school) for which all students had the opportunity to participate.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23244', '12', '23244', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001861', 'Building Space Utilization Area', NULL, 'The area in square feet measured between the principal wall that faces at or near floor level, including alcove spaces, and the outer limits of space designed to serve the activity. Structural space is excluded.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22842', '11', '22842', NULL, NULL) +VALUES ('000704', 'Web Site Address', NULL, 'The Uniform Resource Locator (URL) for the unique address of a Web page.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23300', '12', '23300', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001862', 'Student Enrollment Access Type', NULL, 'The designation of how students secure access to age appropriate public schools, or publicly funded charter or private schools.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22843', '11', '22843', NULL, NULL) +VALUES ('000302', 'Years of Prior Teaching Experience', NULL, 'The total number of years prior to this job that a person has previously held a teaching position in one or more education institutions.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23302', '12', '23302', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001863', 'Building Unassigned Space Indicator', NULL, 'An indication that the space in a school, including circulation, administration offices, support spaces, and common areas, is not part of the calculation for capacity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22844', '11', '22844', NULL, NULL) +VALUES ('000245', 'Assessment Result Score Value', NULL, 'A meaningful raw score, derived score, or statistical expression of the performance of a person on an assessment. The type of result is indicated by the Assessment Score Metric Type element. The results can be expressed as a number, percentile, range, level, etc. The score relates to all scored items or a sub test scoring one aspect of performance on the test. This value may or may not correspond to one or more Performance Levels.', 'Alphanumeric - 35 characters maximum', '0', 'Information for interpreting the score is defined by elements in the related Assessment Subtest entity. This includes the minimum, maximum, and optimal values for the measurement. Assessment Subtest defines information for scoring an Assessment Form, which may be for the entire assessment or one aspect of evaluation. The Assessment Subtest may in turn be associated with one or more content standards using the Learning Standard Item Association entity.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23245', '12', '23245', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001864', 'Facility Audit Type', NULL, 'The type of systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22845', '11', '22845', NULL, NULL) +VALUES ('000249', 'Section 504 Status', NULL, 'Individuals with disabilities who are being provided with related aids and services under Section 504 of the Rehabilitation Act of 1973, as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23249', '12', '23249', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001865', 'Building Charter School Realty Access Type', NULL, 'The type of real estate vehicle through which a public charter school has access and control of its building space.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22846', '11', '22846', NULL, NULL) +VALUES ('000250', 'School Courses for the Exchange of Data Sequence of Course', 'SCED Sequence of Course', 'Where a specific course lies when it is part of a consecutive sequence of courses. This element should be interpreted as "part ''n'' of ''m'' parts.', 'Alphanumeric - 10 characters maximum', '0', 'For example: if a school offers 4 years of Theater, Theater 3 within this school would be indicated in the sequence elements as 3 4, denoting the 3rd part of a 4-part sequence of courses.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23250', '12', '23250', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001866', 'Building Cleaning Standard Type', NULL, 'The standard for cleanliness, and benchmarks for how much space can be assigned to one properly supplied custodian to meet these standards.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22847', '11', '22847', NULL, NULL) +VALUES ('000251', 'Session Begin Date', NULL, 'The year, month and day on which a session begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23251', '12', '23251', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001867', 'Facility Compliance Agency Type', NULL, 'The type of agency that has ultimate responsibility for the compliance determination.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22848', '11', '22848', NULL, NULL) +VALUES ('000252', 'Session Designator', NULL, 'The academic session for which the data are recorded and applicable.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23252', '12', '23252', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001868', 'Building Energy Conservation Measure Type', NULL, 'The type of modification to, or replacement of, a piece of equipment or building shell/system that increases energy efficiency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22849', '11', '22849', NULL, NULL) +VALUES ('000253', 'Session End Date', NULL, 'The year, month and day on which a session ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23253', '12', '23253', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001869', 'Building Energy Service Company Name', NULL, 'The name of the company that designs, procures, finances, installs, maintains, and guarantees the performance of energy conservation measures in an owner''s facility or facilities.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22850', '11', '22850', NULL, NULL) +VALUES ('000254', 'Session Type', NULL, 'A prescribed span of time when an education institution is open, instruction is provided, and students are under the direction and guidance of teachers and/or education institution administration. A session may be interrupted by one or more vacations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23254', '12', '23254', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001870', 'Building Energy Source Type', NULL, 'The source of energy that directly powers a school district facility or building system.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22851', '11', '22851', NULL, NULL) +VALUES ('000255', 'Sex', NULL, 'The concept describing the biological traits that distinguish the males and females of a species.', NULL, '1', 'Postsecondary: As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23255', '12', '23255', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001871', 'Facilities Management Emergency Type', NULL, 'The type of abnormal and urgent circumstances that disrupt the normal operation of the building, threaten the health and safety of the occupants, or require an emergency response.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22852', '11', '22852', NULL, NULL) +VALUES ('000257', 'Shared Time Indicator', NULL, 'An indication that a school offers career and technical education or other educational services in which some or all students are enrolled at a separate school of record and attend the shared-time school on a part-time basis.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23257', '12', '23257', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001872', 'Facility Capital Program Management Type', NULL, 'The type of management organization for planning, design, and construction of major capital projects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22853', '11', '22853', NULL, NULL) +VALUES ('000258', 'Course Section Single Sex Class Status', NULL, 'Section in a co-educational school where only male or only female students are permitted to take the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23258', '12', '23258', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001873', 'Facility Operations Management Type', NULL, 'The type of management arrangements whereby a district oversees and manages its facilities operations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22854', '11', '22854', NULL, NULL) +VALUES ('000260', 'Special Education Exit Reason', NULL, 'The reason children who were in special education at the start of the reporting period were not in special education at the end of the reporting period.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23260', '12', '23260', 'Updated', 'Change option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001874', 'Facility Hazardous Materials or Condition Type', NULL, 'The type of hazardous materials or conditions tested for at a site or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22855', '11', '22855', NULL, NULL) +VALUES ('000261', 'Special Education Paraprofessional', NULL, 'An indication of whether a paraprofessional is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23261', '12', '23261', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001875', 'Facility Joint Development Type', NULL, 'The type of development where two or more entities partner to plan, site, design, and/or build a new school or renovate an existing school to better support the joint use of the building and/or land.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22856', '11', '22856', NULL, NULL) +VALUES ('000262', 'Special Education Related Services Personnel', NULL, 'An indication of whether a related services person is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23262', '12', '23262', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001876', 'Facility Maintenance Standard Type', NULL, 'The standard for maintenance of a component, system, or building.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22857', '11', '22857', NULL, NULL) +VALUES ('000263', 'Special Education Services Exit Date', NULL, 'The year, month and day a child with disabilities (IDEA) ages 14 through 21 exited special education.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23263', '12', '23263', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001877', 'Facility Naturally Occurring Hazard Type', NULL, 'Type of natural hazard that can affect the health, safety and operation of school facilities and their occupants.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22858', '11', '22858', NULL, NULL) +VALUES ('000264', 'Special Education Teacher', NULL, 'An indication of whether a teacher is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23264', '12', '23264', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001878', 'Facility Utility Provider Type', NULL, 'An indication of how utilities are supplied to a site or a building by a company or provider.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22859', '11', '22859', NULL, NULL) +VALUES ('000265', 'Standardized Admission Test Score', NULL, 'The quantitative score on a standardized admission test reported to a postsecondary institution.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23265', '12', '23265', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001879', 'Facility Utility Type', NULL, 'The type of utility used in the operation of a facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22860', '11', '22860', NULL, NULL) +VALUES ('000266', 'Standardized Admission Test Type', NULL, 'The type of test prepared and administered by an agency that is independent of any postsecondary education institution and is typically used for admissions purposes. Tests provide information about prospective students and their academic qualifications relative to a national sample.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23266', '12', '23266', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001880', 'Building Date of Certificate of Occupancy', NULL, 'The month, day and year in which a certificate of occupancy was granted by the appropriate local authority.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22861', '11', '22861', NULL, NULL) +VALUES ('000267', 'State Abbreviation', NULL, 'The abbreviation for the state (within the United States) or outlying area in which an address is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23267', '12', '23267', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001881', 'Facility Audit Date', NULL, 'The month, day, and year of the systematic review or audit of facility quality, management, decision making processes, controls, schedule and cost.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22862', '11', '22862', NULL, NULL) +VALUES ('000268', 'State of Residence', NULL, 'An person''s permanent address as determined by such evidence as a driver''s license or voter registration. For entering freshmen, state of residence may be the legal state of residence of a parent or guardian.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23268', '12', '23268', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001882', 'Facilities Plan Description', NULL, 'A description of the management and accountability plan.', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22863', '11', '22863', NULL, NULL) +VALUES ('000269', 'Address Street Number and Name', NULL, 'The street number and street name or post office box number of an address.', 'Alphanumeric - 150 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23269', '12', '23269', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001883', 'Facilities Plan Type', NULL, 'The type of management and accountability plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22864', '11', '22864', NULL, NULL) +VALUES ('000271', 'Student Attendance Rate', NULL, 'The number of school days during the regular school year (plus summer, if applicable, if part of implementing the restart, transformation, or turnaround model) the student attended school divided by the maximum number of days the student could have attended school during the regular school year.', 'Numeric - between 0 and 1', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23271', '12', '23271', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001884', 'Facility Standard Type', NULL, 'An indication of the district or state requirements or guidelines for the design and construction of school facilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22865', '11', '22865', NULL, NULL) +VALUES ('000272', 'Student Level', NULL, 'Classification of a person enrolling in credit-granting courses at a postsecondary institution since completing high school (or its equivalent) as either an undergraduate or graduate student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23272', '12', '23272', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001885', 'Facilities Mandate Authority Type', NULL, 'The authority that mandates through law, regulation, or standard that pertains to a specific mandate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22866', '11', '22866', NULL, NULL) +VALUES ('000304', 'Early Learning Program Eligibility Category', NULL, 'Category under which the person is eligible for an early childhood program or service.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23304', '12', '23304', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001886', 'Facility Financing Fee Type', NULL, 'The type of fee that one must pay when getting a mortgage.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22867', '11', '22867', NULL, NULL) +VALUES ('000305', 'Proof of Residency Type', NULL, 'An accepted form of proof of residency in the district/county/other locality.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23305', '12', '23305', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001887', 'Facility Lease Amount', NULL, 'The amount of money the school must pay to rent the facility that it is in.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22868', '11', '22868', NULL, NULL) +VALUES ('000273', 'Student Support Service Type', NULL, 'Type of related or ancillary services offered or provided to a person or a group of persons within the formal educational system or by an outside agency which provides non-instructional services to support the general welfare of students. This includes physical and emotional health, the ability to select an appropriate course of study, admission to appropriate educational programs, and the ability to adjust to and remain in school through the completion of programs. In serving a student with an identified disability, related services include developmental, corrective, or supportive services required to ensure that the person benefits from special education.', NULL, '1', 'At the organization level, this element indicates the services offered to students. At the person level, this element indicates the services received by students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23273', '12', '23273', 'Updated', 'Add new option to option set, add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001888', 'Facility Lease Amount Category', NULL, 'The category of payment that a school must pay to rent the facility that it is in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22869', '11', '22869', NULL, NULL) +VALUES ('000274', 'Assessment Subtest Description', NULL, 'The description of the subtest (e.g., vocabulary, measurement, or geometry).', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23274', '12', '23274', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001889', 'Facility Lease Type', NULL, 'The type of agreement that allows the use and possession of a school, building, or other facility from a third party in return for a regularly scheduled installment payment over an agreed-upon period.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22870', '11', '22870', NULL, NULL) +VALUES ('000275', 'Assessment Subtest Title', NULL, 'The name or title of the subtest.', '300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23275', '12', '23275', 'Updated', 'Modify element format maximum length') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001890', 'Facility Mortgage Interest Amount', NULL, 'The amount the borrower pays the lender to compensate the lender for the use of money to purchase a building or facility.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22871', '11', '22871', NULL, NULL) +VALUES ('000277', 'Teaching Credential Basis', NULL, 'An indication of the pre-determined criteria for granting the teaching credential that a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23277', '12', '23277', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001891', 'Facility Mortgage Interest Type', NULL, 'The type of interest paid on a mortgage to the lender to compensate the lender for the use of money to purchase a building or facility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22872', '11', '22872', NULL, NULL) +VALUES ('000278', 'Teaching Credential Type', NULL, 'An indication of the category of a legal document giving authorization to perform teaching assignment services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23278', '12', '23278', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001892', 'Facility Mortgage Type', NULL, 'The status of a mortgage as it relates to priority of payment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22873', '11', '22873', NULL, NULL) +VALUES ('000279', 'Telephone Number', NULL, 'The telephone number including the area code, and extension, if applicable.', 'Alphanumeric - 24 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23279', '12', '23279', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001893', 'Indebtedness Amount Allowed', NULL, 'The amount of indebtedness allowed by law to be carried by the school district.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22874', '11', '22874', NULL, NULL) +VALUES ('000280', 'Telephone Number Type', NULL, 'The type of communication number listed for a person.', 'Alphanumeric - 15 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23280', '12', '23280', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001894', 'Insurance Deductible', NULL, 'The dollar amount a school district must pay before its insurance will compensate it for loss.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22875', '11', '22875', NULL, NULL) +VALUES ('000281', 'Title I Indicator', NULL, 'An indication that the student is participating in and served by programs under Title I, Part A of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23281', '12', '23281', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001895', 'Public Education Mill Rate', NULL, 'The millage rate used to calculate property tax revenue for K-12 public education.', 'Numeric - up to 2 digits before and 8 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22876', '11', '22876', NULL, NULL) +VALUES ('000282', 'Title I Instructional Services', NULL, 'The type of instructional services provided to students in ESEA Title I programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23282', '12', '23282', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001896', 'Facility Total Assessed Value', NULL, 'The total assessed value of property that constitutes the basis for public borrowing.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22877', '11', '22877', NULL, NULL) +VALUES ('000283', 'Title I Program Staff Category', NULL, 'Titles of employment, official status, or rank for staff working in a Title I program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23283', '12', '23283', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001897', 'Campus Facility Type', NULL, 'The primary purpose for which a campus is designed and/or used.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22878', '11', '22878', NULL, NULL) +VALUES ('000284', 'Title I Program Type', NULL, 'The type of Title I program offered in the school or district.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23284', '12', '23284', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001898', 'Component or Fixture Check Date', NULL, 'The month, day, and year that the condition of a system, component, equipment, or fixture was checked.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22879', '11', '22879', NULL, NULL) +VALUES ('000285', 'Title I School Status', NULL, 'An indication that a school is designated under state and federal regulations as being eligible for participation in programs authorized by Title I of ESEA as amended and whether it has a Title I program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23285', '12', '23285', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001899', 'Component or Fixture Serviced Date', NULL, 'The month, day, and year a system, component, equipment, or fixture was serviced for repair or routine maintenance.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22880', '11', '22880', NULL, NULL) +VALUES ('000286', 'Title I School Supplemental Services Applied Status', NULL, 'An indication of whether an eligible student applied/requested to receive supplemental educational services under Title I, Part A, Section 1116 of ESEA as amended during the school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23286', '12', '23286', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001900', 'Component or Fixture Scheduled Serviced Date', NULL, 'The month, day, and year a major component, system, equipment, or fixture is scheduled to be serviced for preventive or routine maintenance.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22881', '11', '22881', NULL, NULL) +VALUES ('000287', 'Title I School Supplemental Services Eligible Status', NULL, 'An indication of whether a student is eligible to receive supplemental educational services during the school year in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23287', '12', '23287', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001901', 'Component or Fixture Useful Life', NULL, 'The anticipated time (in years) from the time of installation or service that a properly maintained system, component, equipment, or fixture is expected to operate effectively and efficiently.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22882', '11', '22882', NULL, NULL) +VALUES ('000288', 'Title I School Supplemental Services Received Status', NULL, 'An indication of whether an eligible student received supplemental educational services during the school year in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23288', '12', '23288', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001902', 'Available Utilized Instructional Space', NULL, 'An indication that the instruction space in a school is used in the calculation of student capacity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22883', '11', '22883', NULL, NULL) +VALUES ('000289', 'Title I Support Services', NULL, 'The type of support services provided to students in Title I programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23289', '12', '23289', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001903', 'Building Capacity Factor Indicator', NULL, 'A designation as to whether the space is included in the calculation of school building capacity under state or local guidelines.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22884', '11', '22884', NULL, NULL) +VALUES ('000290', 'Title III Immigrant Participation Status', NULL, 'An indication that an immigrant student participated in programs for immigrant children and youth funded under ESEA Title III Section 3114(d)(1) using funds reserved for immigrant education programs/activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23290', '12', '23290', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000191', 'Name of Institution', NULL, 'The full legally accepted name of the institution.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21191', '11', '21191', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000291', 'Title III Immigrant Status', NULL, 'An indication that the child is an immigrant according to the Title III of ESEA definition, meaning children who are aged 3 through 21; were not born in any state; and have not been attending one or more schools in any one or more States for more than 3 full academic years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23291', '12', '23291', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000193', 'Neglected or Delinquent Status', NULL, 'An indication that the student is participating in programs for neglected or delinquent students (N or D) under Title I, Part D, Subpart 1 (state agencies) of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21193', '11', '21193', NULL, NULL) +VALUES ('000292', 'Title IV Participant and Recipient', NULL, 'A person who receives Title IV aid. Title IV aid includes grant aid, work study aid, and loan aid such as: Federal Pell Grant, Federal Supplemental Educational Opportunity Grant (FSEOG), Teacher Education Assistance for College and Higher Education (TEACH) Grant, Federal Work-Study, Federal Perkins Loan, Subsidized Direct or FFEL Stafford Loan, and Unsubsidized Direct or FFEL Stafford Loan. Title IV aid specifications are defined by the instructions for the IPEDS Student Financial Aid survey.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23292', '12', '23292', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000194', 'Neglected or Delinquent Program Type', NULL, 'The type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21194', '11', '21194', NULL, NULL) +VALUES ('000293', 'Staff Compensation Total Benefits', NULL, 'Sum of retirement, health, and all other benefits, or total benefits paid by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider’s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23293', '12', '23293', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000196', 'Visa Type', NULL, 'An indicator of a non-US citizen''s Visa type.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21196', '11', '21196', NULL, NULL) +VALUES ('000294', 'Size of High School Graduating Class', NULL, 'The total number of students in the student''s high school graduating class.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23294', '12', '23294', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000197', 'Normal Length of Time for Completion', NULL, 'The amount of time necessary for a person to complete all requirements for a degree or certificate according to the institution''s catalog. This is typically 4 years (8 semesters or trimesters, or 12 quarters, excluding summer terms) for a bachelor''s degree in a standard term-based institution; 2 years (4 semesters or trimesters, or 6 quarters, excluding summer terms) for an associate''s degree in a standard term-based institution; and the various scheduled times for certificate programs.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21197', '11', '21197', NULL, NULL) +VALUES ('000295', 'Staff Compensation Total Salary', NULL, 'Total annualized salary of staff at the specific school/program indicated on the record in the school/program year specified on the record.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23295', '12', '23295', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000198', 'Normal Length of Time for Completion Units', NULL, 'The unit of measurement for length of time for completion.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21198', '11', '21198', NULL, NULL) +VALUES ('000296', 'Transfer-ready', NULL, 'A person who has successfully completed a transfer-preparatory program as defined by the state or by the institution if no official state definition exists.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23296', '12', '23296', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000199', 'Number of Credits Attempted', NULL, 'The number of credits that a student can earn for enrolling in and completing a given course.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21199', '11', '21199', NULL, NULL) +VALUES ('000297', 'Tuition Residency Type', NULL, 'A person''s residency status for tuition purposes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23297', '12', '23297', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000200', 'Number of Credits Earned', NULL, 'The number of credits an individual earns by the successful completion of a course.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21200', '11', '21200', NULL, NULL) +VALUES ('000299', 'United States Citizenship Status', NULL, 'An indicator of whether or not the person is a US citizen.', NULL, '1', 'Postsecondary: As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23299', '12', '23299', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000201', 'Number of Days Absent', NULL, 'The number of days a person is absent when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21201', '11', '21201', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000306', 'Immunization Date', NULL, 'The year, month and day of an immunization.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23306', '12', '23306', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000202', 'Number of Days in Attendance', NULL, 'The number of days a person is present when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', 'Note: This applies to an enrollment period record. Separate records using this element definition could capture attendance for regular enrollment, an out-of-school program or other program requiring attendance records. CEDS now supports the detailed attendance events to capture attendance status on any given day, class period, or session. CEDS generally doesn''t include elements for counts when it has the unit level elements to calculate the count. However, this element has been retained to support the intended use cases, recognizing that the rules for attendance vary based on location.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21202', '11', '21202', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000307', 'Required Immunization', NULL, 'An indication that an immunization is specifically required by an organization or governing body.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23307', '12', '23307', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000203', 'Office of Postsecondary Education Identifier', 'OPEID', 'Identification number used by the U.S. Department of Education''s Office of Postsecondary Education (OPE) to identify schools that have Program Participation Agreements (PPA) so that its students are eligible to participate in Federal Student Financial Assistance programs under Title IV regulations. This is a 6-digit number followed by a 2-digit suffix used to identify branches, additional locations, and other entities that are part of the eligible institution.', 'Integer - exactly 8 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21203', '11', '21203', NULL, NULL) +VALUES ('000308', 'Vision Screening Status', NULL, 'Status of an examination used to measure a person''s ability to see.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23308', '12', '23308', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000204', 'Organization Name', NULL, 'The name of a non-person entity such as an organization, institution, agency or business.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21204', '11', '21204', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000309', 'Hearing Screening Status', NULL, 'Status of an examination used to measure a person''s ability to perceive sounds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23309', '12', '23309', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000205', 'Staff Compensation Other Benefits', NULL, 'All other benefits paid by the school district, municipal, state, federal, and other government agencies for the teacher or early learning provider, prorated to the specific school or local provider agency indicated on the record, not including retirement and health insurance benefits or contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21205', '11', '21205', NULL, NULL) +VALUES ('000310', 'Dental Screening Status', NULL, 'The condition of a person''s mouth or oral cavity; more specifically the condition of the hard tissues (i.e., teeth and jaws) and the soft tissues (i.e., gums, tongue, lips, palate, mouth floor, and inner cheeks). Good oral health denotes the absence of clinically manifested disease or abnormalities of the oral cavity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23310', '12', '23310', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000206', 'Other Name', NULL, 'Previous, alternate or other names or aliases associated with the person.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21206', '11', '21206', NULL, NULL) +VALUES ('000312', 'Weight at Birth', NULL, 'The weight of a child at birth in pounds and ounces.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23312', '12', '23312', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000207', 'Paraprofessional Qualification Status', NULL, 'An indication of whether paraprofessionals are classified as qualified for their assignment according to state definition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21207', '11', '21207', NULL, NULL) +VALUES ('000313', 'Weeks of Gestation', NULL, 'The number of weeks during gestational period.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23313', '12', '23313', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000208', 'Participation Status for Math', NULL, 'An indication of whether the school or district met the 95 percent participation requirement in the mathematics assessment in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21208', '11', '21208', NULL, NULL) +VALUES ('000314', 'Child Developmental Screening Status', NULL, 'The result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23314', '12', '23314', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000209', 'Participation Status for Reading and Language Arts', NULL, 'An indication of whether the school or district met the 95 percent participation requirement on the reading/language arts assessment in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21209', '11', '21209', NULL, NULL) +VALUES ('000315', 'Developmental Evaluation Finding', NULL, 'Child developmental delay/disability determined by procedure used by appropriate qualified personnel.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23315', '12', '23315', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000210', 'Persistently Dangerous Status', NULL, 'An indication of whether the school is identified as persistently dangerous in accordance with state definition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21210', '11', '21210', NULL, NULL) +VALUES ('000316', 'Language Type', NULL, 'An indication of the function and context in which a person uses a language to communicate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23316', '12', '23316', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000211', 'Persistently Lowest Achieving School Status', NULL, 'An indication of whether the school is identified by the state as persistently lowest-achieving.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21211', '11', '21211', NULL, NULL) +VALUES ('000317', 'ISO 639-2 Language Code', NULL, 'The code for the specific language or dialect that a person uses to communicate.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23317', '12', '23317', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000212', 'Personal Title or Prefix', 'Prefix', 'An appellation, if any, used to denote rank, placement, or status (e.g., Mr., Ms., Reverend, Sister, Dr., Colonel).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21212', '11', '21212', NULL, NULL) +VALUES ('000320', 'Individualized Program Type', NULL, 'A designation of the type of program developed for a student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23320', '12', '23320', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000213', 'Position Title', NULL, 'The descriptive name of a person''s position.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21213', '11', '21213', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000321', 'Early Childhood Services Received', NULL, 'The types of service that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23321', '12', '23321', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000214', 'Address Postal Code', NULL, 'A number that identifies each postal delivery area in the United States used as a portion of an address.', 'Alphanumeric - 17 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21214', '11', '21214', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000323', 'Application Date', NULL, 'The year, month and day on which an individual application is received by the organization.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23323', '12', '23323', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000216', 'Prekindergarten Eligibility', NULL, 'The groups of students for whom pre-kindergarten programs are available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21216', '11', '21216', NULL, NULL) +VALUES ('000324', 'Enrollment Date', NULL, 'The year, month and day on which a person is considered officially enrolled in the program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23324', '12', '23324', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000217', 'Prekindergarten Eligible Ages for Non-IDEA Students', NULL, 'The ages of children not served under IDEA to whom the LEA''s pre-kindergarten services are available. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21217', '11', '21217', NULL, NULL) +VALUES ('000325', 'Participation in School Food Service Programs', NULL, 'An indication of a student''s participation in free, reduced price, full price breakfast, lunch, snack, supper, and milk programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23325', '12', '23325', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000218', 'Primary Disability Type', NULL, 'The major or overriding disability condition that best describes a person''s impairment.', NULL, '1', 'Option set based on EDFacts. Only one disability condition would be selected. Refer to IDEA Disability Type for selecting multiple disability category options and any additional IDEA disability categories.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21218', '11', '21218', NULL, NULL) +VALUES ('000326', 'Service Entry Date', NULL, 'The year, month and day on which a person begins to receive early intervention, special education or other services.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23326', '12', '23326', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000219', 'Primary Telephone Number Indicator', NULL, 'An indication that the telephone number should be used as the principal number for a person or organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21219', '11', '21219', NULL, NULL) +VALUES ('000327', 'Service Exit Date', NULL, 'The year, month and day on which a person stops receiving early intervention or special education services.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23327', '12', '23327', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000220', 'Professional Educational Job Classification', NULL, 'A general job classification that describes staff that performs duties requiring a high degree of knowledge and skills generally acquired through at least a baccalaureate degree (or its equivalent obtained through special study and/or experience) including skills in the field of education, educational psychology, educational social work, or an education therapy field.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21220', '11', '21220', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000329', 'Custodial Parent or Guardian Indicator', NULL, 'An indication that a person has legal custody of a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23328', '12', '23328', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000221', 'Proficiency Target Status for Math', NULL, 'An indication of whether the school or district met the math proficiency target in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21221', '11', '21221', NULL, NULL) +VALUES ('000330', 'Number of People in Family', NULL, 'Total number of persons in immediate family. Family means for the purposes of the regulations in this part all persons: (i) Living in the same household who are: (A) Supported by the income of the parent(s) or guardian(s) of the child enrolling or participating in the program; or (B) Related to the child by blood, marriage, or adoption; or (ii) Related to the child enrolling or participating in the program as parents or siblings, by blood, marriage, or adoption.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23329', '12', '23329', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000222', 'Exit Reason', NULL, 'The documented or assumed reason a student is no longer being served by a special program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21222', '11', '21222', NULL, NULL) +VALUES ('000331', 'Number of People in Household', NULL, 'Total number of persons residing in the same household.', 'Integer - greater than or equal to 0', '0', 'For FAFSA, this includes the number of family members that are in the household, including the student, their spouse, children, and any other persons living in the household to whom they will provide more than half of their support', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23330', '12', '23330', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000223', 'Program Length Hours', NULL, 'The normal length in credit/contact hours of a person''s program as published in the institution''s catalogue, website, or other official documents.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21223', '11', '21223', NULL, NULL) +VALUES ('000332', 'Family Income', NULL, 'Total income of family from all sources. Income includes money, wages or salary before deductions; net income from non-farm self-employment; net income from farm self-employment; regular payments from Social Security or railroad retirement; payments from unemployment compensation, strike benefits from union funds, workers’ compensation, veterans benefits (with the exception noted below), public assistance (including Temporary Assistance for Needy Families, Supplemental Security Income, Emergency Assistance money payments, and non-Federally funded General Assistance or General Relief money payments); training stipends; alimony, child support, and military family allotments or other regular support from an absent family member or someone not living in the household; private pensions, government employee pensions (including military retirement pay), and regular insurance or annuity payments; college or university scholarships, grants, fellowships, and assistantships; and dividends, interest, net rental income, net royalties, and periodic receipts from estates or trusts; and net gambling or lottery winnings.', 'Numeric - up to 2 digits after decimal place', '0', 'Family Income is calculated based on the method specified by “Income Calculation Method.”', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23331', '12', '23331', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000224', 'Program Length Hours Type', NULL, 'The type of hours (credit or contact) by which the normal length of a program of study is measured.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21224', '11', '21224', NULL, NULL) +VALUES ('000333', 'Source of Family Income', NULL, 'Sources of total family income.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23332', '12', '23332', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000225', 'Program Type', NULL, 'The system outlining instructional or non-instructional activities and procedures designed to accomplish a predetermined educational objective or set of objectives or to provide support services to a person and/or the community.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21225', '11', '21225', 'Updated', 'Added element to DES contexts and added new options to the existing option set.') +VALUES ('000334', 'Income Calculation Method', NULL, 'The calculation method used by a program to determine total family income.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23333', '12', '23333', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000226', 'Projected Graduation Date', NULL, 'The year and month the student is projected to graduate.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21226', '11', '21226', NULL, NULL) +VALUES ('000335', 'Insurance Coverage', NULL, 'The nature of insurance covering an person''s hospitalization and other health or medical care.', NULL, '1', 'Use cases may utilize subsets of the option set. For example, the option set for Parent/Guardian may not include the "Children''s health insurance program" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23334', '12', '23334', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000227', 'Public School Choice Implementation Status', NULL, 'An indication of whether the LEA was able to implement the provisions for public school choice under Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21227', '11', '21227', NULL, NULL) +VALUES ('000336', 'Dental Insurance Coverage Type', NULL, 'The source of insurance covering an person''s dental care.', NULL, '1', 'Use cases may utilize subsets of the option set. For example, the option set for Parent/Guardian may not include the "Children''s health insurance program" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23335', '12', '23335', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000228', 'Reason Not Tested', NULL, 'The primary reason a student is not tested.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21228', '11', '21228', NULL, NULL) +VALUES ('000341', 'Level of Specialization in Early Learning', NULL, 'The extent to which a person concentrates upon a particular subject matter area during his or her period of study at an educational institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23340', '12', '23340', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000229', 'Recognition for Participation or Performance in an Activity', NULL, 'The nature of recognition given to the student for accomplishments in a co-curricular, or extra-curricular activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21229', '11', '21229', NULL, NULL) +VALUES ('000342', 'Degree or Certificate Title or Subject', NULL, 'The name of the degree or certificate earned by a person. This includes honorary degrees conferred upon an individual.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23341', '12', '23341', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000230', 'Reconstituted Status', NULL, 'An indication that the school was restructured, transformed or otherwise changed as a consequence of the state’s accountability system under ESEA or as a result of School Improvement Grants (SIG).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21230', '11', '21230', NULL, NULL) +VALUES ('000343', 'Degree or Certificate Type', NULL, 'The type of degree or certificate earned by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23342', '12', '23342', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000231', 'Related Competency Definitions', 'Related Learning Standard Items, Related Competency Items', 'An indication of the competency definition(s) addressed in the Course Section.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21231', '11', '21231', NULL, NULL) +VALUES ('000344', 'Degree or Certificate Conferring Date', NULL, 'The year, month and day on which a person received a degree or certificate.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23343', '12', '23343', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000232', 'Restructuring Action', NULL, 'The types of actions being implemented in Title I schools as a result of the school being in an improvement status of restructuring – year 2 (implementation year).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21232', '11', '21232', NULL, NULL) +VALUES ('000345', 'Early Childhood Credential', NULL, 'The credential related to early childhood education or development held by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23344', '12', '23344', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000233', 'Staff Compensation Retirement Benefits', NULL, 'Contributions made by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider’s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21233', '11', '21233', NULL, NULL) +VALUES ('000346', 'Employment Start Date', NULL, 'The year, month and day on which a person began self-employment or employment with an organization or institution.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23345', '12', '23345', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000234', 'Salary for Teaching Assignment Only Indicator', NULL, 'Indicator to determine whether the teacher''s base salary includes pay for teaching assignments alone.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21234', '11', '21234', NULL, NULL) +VALUES ('000347', 'Employment Status', NULL, 'The condition under which a person has agreed to serve as an employee.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23346', '12', '23346', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000235', 'School Choice Applied for Transfer Status', NULL, 'An indication that a student applied to transfer in the current year (regardless of whether the student transferred), OR previously applied and transferred under the public school choice provisions and continue to attend the transfer school in the current year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21235', '11', '21235', NULL, NULL) +VALUES ('000348', 'Initial License Date', NULL, 'The year, month and day on which a program or center received its initial license.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23347', '12', '23347', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000236', 'School Choice Eligible for Transfer Status', NULL, 'An indication the student is eligible to transfer for the current school year under the public school choice provisions or who applied and transferred in the current school year under the public school choice provisions or previously applied and transferred under the public school choice provisions and continue to attend the transfer school in the current year.', NULL, '1', 'Which students should be reported?', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21236', '11', '21236', NULL, NULL) +VALUES ('000349', 'Continuing License Date', NULL, 'The year, month and day on which a program or center received its continuing license.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23348', '12', '23348', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000237', 'School Choice Transfer Status', NULL, 'An indication of whether an eligible student transferred to the school under the provisions for public school choice in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21237', '11', '21237', NULL, NULL) +VALUES ('000350', 'License Exempt', NULL, 'The program or center is legally exempt from licensing.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23349', '12', '23349', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000238', 'School Improvement Funds Status', NULL, 'An indication of whether the school received funds under Section 1003 of ESEA, as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21238', '11', '21238', NULL, NULL) +VALUES ('000351', 'Operation Date', NULL, 'The year, month and day on which a program or center began operation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23350', '12', '23350', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000239', 'School Improvement Grant Intervention Type', NULL, 'The type of intervention used by the school under the School Improvement Grant (SIG).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21239', '11', '21239', NULL, NULL) +VALUES ('000353', 'Service Option Variation', NULL, 'Nature of early childhood program, class or group in which a person is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23352', '12', '23352', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000240', 'School Improvement Status', NULL, 'An indication of the improvement stage of the school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21240', '11', '21240', NULL, NULL) +VALUES ('000354', 'Hours Available Per Day', NULL, 'The number of hours per day the site or classroom is open for children to attend.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23353', '12', '23353', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000241', 'School Level', NULL, 'An indication of the level of the education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21241', '11', '21241', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000355', 'Days Available Per Week', NULL, 'The number of days per week the site or classroom is open for children to attend.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23354', '12', '23354', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000242', 'School Type', NULL, 'The type of education institution as classified by its primary focus. ', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21242', '11', '21242', NULL, NULL) +VALUES ('000356', 'Early Childhood Setting', NULL, 'The site or setting in which early childhood care, education, and/or services are provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23355', '12', '23355', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000243', 'School Year', NULL, 'The year for a reported school session.', 'YYYY', '0', 'For academic years that span a calendar year this is the four digit year-end. E.g. 2013 for 2012-2013', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21243', '11', '21243', NULL, NULL) +VALUES ('000357', 'Quality Rating and Improvement System Participation', 'QRIS Participation', 'Program site participates in a Quality Rating and Improvement System (QRIS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23356', '12', '23356', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000244', 'School Year Minutes', NULL, 'The number of minutes that all students were required to be at school and any additional learning time (e.g., before or after school, weekend school, summer school) for which all students had the opportunity to participate.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21244', '11', '21244', NULL, NULL) +VALUES ('000358', 'Quality Rating and Improvement System Score', 'QRIS Score', 'The score, rating or level received by a program for its Quality Rating and Improvement System (QRIS).', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23357', '12', '23357', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000245', 'Assessment Result Score Value', NULL, 'A meaningful raw score, derived score, or statistical expression of the performance of a person on an assessment. The type of result is indicated by the Assessment Score Metric Type element. The results can be expressed as a number, percentile, range, level, etc. The score relates to all scored items or a sub test scoring one aspect of performance on the test. This value may or may not correspond to one or more Performance Levels.', 'Alphanumeric - 35 characters maximum', '0', 'Information for interpreting the score is defined by elements in the related Assessment Subtest entity. This includes the minimum, maximum, and optimal values for the measurement. Assessment Subtest defines information for scoring an Assessment Form, which may be for the entire assessment or one aspect of evaluation. The Assessment Subtest may in turn be associated with one or more content standards using the Learning Standard Item Association entity.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21245', '11', '21245', NULL, NULL) +VALUES ('000010', 'Address Type for Learner or Family', NULL, 'The type of address listed for a learner or a parent, guardian, family member or related person.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23358', '12', '23358', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000249', 'Section 504 Status', NULL, 'Individuals with disabilities who are being provided with related aids and services under Section 504 of the Rehabilitation Act of 1973, as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21249', '11', '21249', NULL, NULL) +VALUES ('000361', 'Enrollment in Postsecondary Award Type', NULL, 'An indicator of the award level in which the person is currently enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23360', '12', '23360', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000250', 'School Courses for the Exchange of Data Sequence of Course', 'SCED Sequence of Course', 'Where a specific course lies when it is part of a consecutive sequence of courses. This element should be interpreted as "part ''n'' of ''m'' parts.', 'Alphanumeric - 10 characters maximum', '0', 'For example: if a school offers 4 years of Theater, Theater 3 within this school would be indicated in the sequence elements as 3 4, denoting the 3rd part of a 4-part sequence of courses.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21250', '11', '21250', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000362', 'Instructional Activity Hours Completed', NULL, 'The number of credit hours and/or contact hours successfully completed by a person during a term.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23361', '12', '23361', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000251', 'Session Begin Date', NULL, 'The year, month and day on which a session begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21251', '11', '21251', NULL, NULL) +VALUES ('000363', 'Financial Aid Award Status', NULL, 'An indication of whether the financial aid type being reported is aid that has been awarded, accepted or dispersed.', NULL, '1', 'Linked to financial aid type, financial aid amount.
Note: For any given individual this field may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23362', '12', '23362', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000252', 'Session Designator', NULL, 'The academic session for which the data are recorded and applicable.', 'YYYY-MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21252', '11', '21252', NULL, NULL) +VALUES ('000366', 'Assessment Form Number', NULL, 'The number of a given assessment form.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23365', '12', '23365', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000253', 'Session End Date', NULL, 'The year, month and day on which a session ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21253', '11', '21253', NULL, NULL) +VALUES ('000367', 'Assessment Subtest Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment subtest.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23366', '12', '23366', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000254', 'Session Type', NULL, 'A prescribed span of time when an education institution is open, instruction is provided, and students are under the direction and guidance of teachers and/or education institution administration. A session may be interrupted by one or more vacations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21254', '11', '21254', NULL, NULL) +VALUES ('000368', 'Assessment Subtest Abbreviation', NULL, 'The shortened name identifying the assessment for use in reference and/or reports.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23367', '12', '23367', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000255', 'Sex', NULL, 'The concept describing the biological traits that distinguish the males and females of a species.', NULL, '1', 'Postsecondary: As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21255', '11', '21255', NULL, NULL) +VALUES ('000369', 'Assessment Score Metric Type', NULL, 'The specific method used to report the performance and achievement of the assessment. This is the metric that is being used to derive the scores.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23368', '12', '23368', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000257', 'Shared Time Indicator', NULL, 'An indication that a school offers career and technical education or other educational services in which some or all students are enrolled at a separate school of record and attend the shared-time school on a part-time basis.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21257', '11', '21257', NULL, NULL) +VALUES ('000370', 'Instructional Recommendation', NULL, 'This provides the next steps for instruction for the student based upon the assessment results and student characteristics.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23369', '12', '23369', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000258', 'Course Section Single Sex Class Status', NULL, 'Section in a co-educational school where only male or only female students are permitted to take the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21258', '11', '21258', NULL, NULL) +VALUES ('000371', 'Assessment Participant Session Language', NULL, 'The language that the assessment is administered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23370', '12', '23370', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000260', 'Special Education Exit Reason', NULL, 'The reason children who were in special education at the start of the reporting period were not in special education at the end of the reporting period.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21260', '11', '21260', NULL, NULL) +VALUES ('000382', 'Assessment Objective', NULL, 'This is the objective that the assessment is measuring.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23373', '12', '23373', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000261', 'Special Education Paraprofessional', NULL, 'An indication of whether a paraprofessional is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21261', '11', '21261', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000383', 'Assessment Accommodation Category', NULL, 'A category of accommodations needed for a given assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23374', '12', '23374', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000262', 'Special Education Related Services Personnel', NULL, 'An indication of whether a related services person is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21262', '11', '21262', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000384', 'Assessment Secure Indicator', NULL, 'Indicates whether or not the assessment is a secure assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23375', '12', '23375', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000263', 'Special Education Services Exit Date', NULL, 'The year, month and day a child with disabilities (IDEA) ages 14 through 21 exited special education.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21263', '11', '21263', NULL, NULL) +VALUES ('000385', 'Accommodation Type', NULL, 'The specific accommodation necessary for assessment or instruction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23376', '12', '23376', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000264', 'Special Education Teacher', NULL, 'An indication of whether a teacher is employed or contracted to work with children with disabilities who are ages 3 through 21.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21264', '11', '21264', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000386', 'Assessment Participant Session Platform Type', NULL, 'The platform with which the assessment was delivered to the student during the assessment session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23377', '12', '23377', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000265', 'Standardized Admission Test Score', NULL, 'The quantitative score on a standardized admission test reported to a postsecondary institution.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21265', '11', '21265', NULL, NULL) +VALUES ('000388', 'Assessment Subtest Version', NULL, 'The version of the subtest that is included for the assessment.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23379', '12', '23379', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000266', 'Standardized Admission Test Type', NULL, 'The type of test prepared and administered by an agency that is independent of any postsecondary education institution and is typically used for admissions purposes. Tests provide information about prospective students and their academic qualifications relative to a national sample.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21266', '11', '21266', NULL, NULL) +VALUES ('000389', 'Assessment Session Special Circumstance Type', NULL, 'An unusual event occurred during the administration of the assessment. This could include fire alarm, student became ill, etc.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23380', '12', '23380', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000267', 'State Abbreviation', NULL, 'The abbreviation for the state (within the United States) or outlying area in which an address is located.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21267', '11', '21267', 'Updated', 'Added elements to DES contexts to support Early Learning needs. Added new options to the existing option set.') +VALUES ('000390', 'Assessment Item Type', NULL, 'The specific type of assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23382', '12', '23382', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000268', 'State of Residence', NULL, 'An person''s permanent address as determined by such evidence as a driver''s license or voter registration. For entering freshmen, state of residence may be the legal state of residence of a parent or guardian.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21268', '11', '21268', NULL, NULL) +VALUES ('000391', 'Assessment Item Difficulty', NULL, 'The percentage of students who answered the item correctly during trial testing of the item.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23383', '12', '23383', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000269', 'Address Street Number and Name', NULL, 'The street number and street name or post office box number of an address.', 'Alphanumeric - 150 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21269', '11', '21269', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000392', 'Assessment Item Characteristic Type', NULL, 'The type of psychometric measure provided for assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23384', '12', '23384', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000271', 'Student Attendance Rate', NULL, 'The number of school days during the regular school year (plus summer, if applicable, if part of implementing the restart, transformation, or turnaround model) the student attended school divided by the maximum number of days the student could have attended school during the regular school year.', 'Numeric - between 0 and 1', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21271', '11', '21271', NULL, NULL) +VALUES ('000393', 'Assessment Item Response Choice Pattern', NULL, 'The distribution of responses for each choice in the assessment item.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23385', '12', '23385', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000272', 'Student Level', NULL, 'Classification of a person enrolling in credit-granting courses at a postsecondary institution since completing high school (or its equivalent) as either an undergraduate or graduate student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21272', '11', '21272', NULL, NULL) +VALUES ('000395', 'Assessment Subtest Minimum Value', NULL, 'The minimum value possible for the measurement.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23387', '12', '23387', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000273', 'Student Support Service Type', NULL, 'Type of related or ancillary services offered or provided to a person or a group of persons within the formal educational system or by an outside agency which provides non-instructional services to support the general welfare of students. This includes physical and emotional health, the ability to select an appropriate course of study, admission to appropriate educational programs, and the ability to adjust to and remain in school through the completion of programs. In serving a student with an identified disability, related services include developmental, corrective, or supportive services required to ensure that the person benefits from special education.', NULL, '1', 'At the organization level, this element indicates the services offered to students. At the person level, this element indicates the services received by students.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21273', '11', '21273', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000396', 'Assessment Subtest Maximum Value', NULL, 'The maximum value for the measurement.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23388', '12', '23388', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000274', 'Assessment Subtest Description', NULL, 'The description of the subtest (e.g., vocabulary, measurement, or geometry).', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21274', '11', '21274', NULL, NULL) +VALUES ('000397', 'Assessment Subtest Optimal Value', NULL, 'The optimal value for this measurement.', 'Alphanumeric - 30 characters maximum', '0', 'The Optimal Value may be the same as the Maximum Value, the Minimum Value, or something in between.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23389', '12', '23389', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000275', 'Assessment Subtest Title', NULL, 'The name or title of the subtest.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21275', '11', '21275', NULL, NULL) +VALUES ('000398', 'Assessment Item Distractor Analysis', NULL, 'The analysis of the distractors provided for a specific assessment.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23390', '12', '23390', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000277', 'Teaching Credential Basis', NULL, 'An indication of the pre-determined criteria for granting the teaching credential that a person holds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21277', '11', '21277', NULL, NULL) +VALUES ('000400', 'Assessment Item Stem', NULL, 'The statement of the question or prompt for an Assessment Item to which the student responds.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23392', '12', '23392', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000278', 'Teaching Credential Type', NULL, 'An indication of the category of a legal document giving authorization to perform teaching assignment services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21278', '11', '21278', NULL, NULL) +VALUES ('000402', 'Assessment Item Response Duration', NULL, 'The total amount of time in seconds or milliseconds that a person spent responding to a given assessment item.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23394', '12', '23394', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000279', 'Telephone Number', NULL, 'The telephone number including the area code, and extension, if applicable.', 'Alphanumeric - 24 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21279', '11', '21279', NULL, NULL) +VALUES ('000403', 'Assessment Item Allotted Time', NULL, 'The amount of time allotted for a specific item.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23395', '12', '23395', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000280', 'Telephone Number Type', NULL, 'The type of communication number listed for a person.', 'Alphanumeric - 15 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21280', '11', '21280', NULL, NULL) +VALUES ('000405', 'Assessment Item Response Status', NULL, 'The status of the response for a given item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23396', '12', '23396', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000281', 'Title I Indicator', NULL, 'An indication that the student is participating in and served by programs under Title I, Part A of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21281', '11', '21281', NULL, NULL) +VALUES ('000406', 'Assessment Item Response Aid Set Used', NULL, 'A tool or aid set used while viewing the item. This can include things like a calculator, reference tools, etc.', 'Alphanumeric - 30 characters maximum', '0', 'This a permissible set of tools suggested for use for successful completion of a test question, not an accommodation.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23397', '12', '23397', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000282', 'Title I Instructional Services', NULL, 'The type of instructional services provided to students in ESEA Title I programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21282', '11', '21282', NULL, NULL) +VALUES ('000407', 'Assessment Participant Session Time Assessed', NULL, 'The overall time a learner actually spent during the assessment session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23398', '12', '23398', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000283', 'Title I Program Staff Category', NULL, 'Titles of employment, official status, or rank for staff working in a Title I program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21283', '11', '21283', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000408', 'Assessment Session Allotted Time', NULL, 'The duration of time allotted for the assessment session.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23399', '12', '23399', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000284', 'Title I Program Type', NULL, 'The type of Title I program offered in the school or district.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21284', '11', '21284', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000410', 'Assessment Session Administrator Identifier', NULL, 'The unique identifier of the person overseeing the administration of an assessment. This is typically at a district or school level or at an administrator at a testing facility.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23400', '12', '23400', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000285', 'Title I School Status', NULL, 'An indication that a school is designated under state and federal regulations as being eligible for participation in programs authorized by Title I of ESEA as amended and whether it has a Title I program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21285', '11', '21285', NULL, NULL) +VALUES ('000411', 'Assessment Session Proctor Identifier', NULL, 'The unique identifier of the person overseeing the assessment session in the setting.', 'Alphanumeric - 40 characters maximum', '0', 'This could be the identifier for a teacher, a paraprofessional or individual at a testing site.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23401', '12', '23401', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000286', 'Title I School Supplemental Services Applied Status', NULL, 'An indication of whether an eligible student applied/requested to receive supplemental educational services under Title I, Part A, Section 1116 of ESEA as amended during the school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21286', '11', '21286', NULL, NULL) +VALUES ('000415', 'Assessment Type Administered', NULL, 'The type of assessment administered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23405', '12', '23405', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000287', 'Title I School Supplemental Services Eligible Status', NULL, 'An indication of whether a student is eligible to receive supplemental educational services during the school year in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21287', '11', '21287', NULL, NULL) +VALUES ('000417', 'Assessment Performance Level Score Metric', NULL, 'The metric or scale used for score reporting.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23407', '12', '23407', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000288', 'Title I School Supplemental Services Received Status', NULL, 'An indication of whether an eligible student received supplemental educational services during the school year in accordance with Title I, Part A, Section 1116 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21288', '11', '21288', NULL, NULL) +VALUES ('000418', 'Assessment Performance Level Lower Cut Score', NULL, 'Lowest possible score for the performance level.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23408', '12', '23408', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000289', 'Title I Support Services', NULL, 'The type of support services provided to students in Title I programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21289', '11', '21289', NULL, NULL) +VALUES ('000419', 'Assessment Performance Level Upper Cut Score', NULL, 'Highest possible score for the performance level.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23409', '12', '23409', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000290', 'Title III Immigrant Participation Status', NULL, 'An indication that an immigrant student participated in programs for immigrant children and youth funded under ESEA Title III Section 3114(d)(1) using funds reserved for immigrant education programs/activities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21290', '11', '21290', NULL, NULL) +VALUES ('000421', 'Rubric Title', NULL, 'The title of the rubric.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23411', '12', '23411', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000291', 'Title III Immigrant Status', NULL, 'An indication that the child is an immigrant according to the Title III of ESEA definition, meaning children who are aged 3 through 21; were not born in any state; and have not been attending one or more schools in any one or more States for more than 3 full academic years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21291', '11', '21291', NULL, NULL) +VALUES ('000481', 'School Improvement Exit Date', NULL, 'Date the school exited school improvement status.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23472', '12', '23472', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000292', 'Title IV Participant and Recipient', NULL, 'A person who receives Title IV aid. Title IV aid includes grant aid, work study aid, and loan aid such as: Federal Pell Grant, Federal Supplemental Educational Opportunity Grant (FSEOG), Teacher Education Assistance for College and Higher Education (TEACH) Grant, Federal Work-Study, Federal Perkins Loan, Subsidized Direct or FFEL Stafford Loan, and Unsubsidized Direct or FFEL Stafford Loan. Title IV aid specifications are defined by the instructions for the IPEDS Student Financial Aid survey.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21292', '11', '21292', NULL, NULL) +VALUES ('000422', 'Rubric Identifier', NULL, 'An identifier assigned to a rubric.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23412', '12', '23412', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000293', 'Staff Compensation Total Benefits', NULL, 'Sum of retirement, health, and all other benefits, or total benefits paid by the school district, municipal, state, federal and other government agencies for the teacher''s or early learning provider’s health insurance, prorated to the specific school or local provider agency indicated on the record, not including contributions made by the teacher or early learning provider.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21293', '11', '21293', NULL, NULL) +VALUES ('000423', 'Rubric URL Reference', NULL, 'The URL location where the rubric may be found.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23413', '12', '23413', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000294', 'Size of High School Graduating Class', NULL, 'The total number of students in the student''s high school graduating class.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21294', '11', '21294', NULL, NULL) +VALUES ('000424', 'State ANSI Code', NULL, 'The American National Standards Institute (ANSI) two-digit code for the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23414', '12', '23414', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000295', 'Staff Compensation Total Salary', NULL, 'Total annualized salary of staff at the specific school/program indicated on the record in the school/program year specified on the record.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21295', '11', '21295', NULL, NULL) +VALUES ('000425', 'Person Relationship Type', NULL, 'The nature of a person''s relationship to another person.', NULL, '1', 'For implementation in the CEDS Integrated Data Store (IDS), the "person" in the description would be the person referred to in the PersonId column in the IDS. The "related person" in the description would be the person referred to in the "RelatedPersonId" in the IDS. Example: Foster mother - The person (PersonId) is the related person''s (RelatedPersonId) Foster mother.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23415', '12', '23415', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000296', 'Transfer-ready', NULL, 'A person who has successfully completed a transfer-preparatory program as defined by the state or by the institution if no official state definition exists.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21296', '11', '21296', NULL, NULL) +VALUES ('000426', 'City of Birth', NULL, ' The name of the city in which a person was born.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23416', '12', '23416', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000297', 'Tuition Residency Type', NULL, 'A person''s residency status for tuition purposes.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21297', '11', '21297', NULL, NULL) +VALUES ('000427', 'State of Birth Abbreviation', NULL, 'The abbreviation for the name of the state (within the United States) or extra-state jurisdiction in which a person was born.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23417', '12', '23417', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000299', 'United States Citizenship Status', NULL, 'An indicator of whether or not the person is a US citizen.', NULL, '1', 'Postsecondary: As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21299', '11', '21299', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000428', 'Birthdate Verification', NULL, 'The evidence by which a child''s date of birth is confirmed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23418', '12', '23418', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000704', 'Web Site Address', NULL, 'The Uniform Resource Locator (URL) for the unique address of a Web page.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21300', '11', '21300', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000429', 'Continuation of Services Reason', NULL, 'Reason why the student is being served under the continuation of services provision of the MEP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23419', '12', '23419', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000302', 'Years of Prior Teaching Experience', NULL, 'The total number of years prior to this job that a person has previously held a teaching position in one or more education institutions.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21302', '11', '21302', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000430', 'Migrant Education Program Eligibility Expiration Date', 'MEP Eligibility Expiration Date', 'The year, month, and day on which the child is no longer eligible for the Migrant Education Program. This date should initially be a date equal to 36 months from the Qualifying Arrival Date to indicate the end of MEP eligibility or the student reaches 22 years of age, whichever comes first.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23420', '12', '23420', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000304', 'Early Learning Program Eligibility Category', NULL, 'Category under which the person is eligible for an early childhood program or service.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21304', '11', '21304', NULL, NULL) +VALUES ('000431', 'Multiple Birth Indicator', NULL, 'An indication that the person is a twin, triplet, etc.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23421', '12', '23421', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000305', 'Proof of Residency Type', NULL, 'An accepted form of proof of residency in the district/county/other locality.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21305', '11', '21305', NULL, NULL) +VALUES ('000432', 'Migrant Student Qualifying Arrival Date', NULL, 'The qualifying arrival date (QAD) is the month, date, and year that the child completed a move with his or her parent to enable the parent to find qualifying employment. In some cases, the child and worker may not always move together, in which case the QAD would be the date that the child joins the worker who has already moved, or the date the worker joins the child who has already moved. The QAD is the date the child''s eligibility for the Migrant Education Program begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23422', '12', '23422', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000306', 'Immunization Date', NULL, 'The year, month and day of an immunization.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21306', '11', '21306', NULL, NULL) +VALUES ('000433', 'Qualifying Move From City', NULL, 'The name of the city in which the child resided prior to the qualifying move.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23423', '12', '23423', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000307', 'Required Immunization', NULL, 'An indication that an immunization is specifically required by an organization or governing body.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21307', '11', '21307', NULL, NULL) +VALUES ('000434', 'Qualifying Move From Country', NULL, 'The abbreviation code for a country (other than the US) area in which the child resided prior to the qualifying move.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23424', '12', '23424', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000308', 'Vision Screening Status', NULL, 'Status of an examination used to measure a person''s ability to see.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21308', '11', '21308', NULL, NULL) +VALUES ('000435', 'Qualifying Move From State', NULL, 'The postal abbreviation code for a state (within the United States) or outlying area in which the child resided prior to the qualifying move.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23425', '12', '23425', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000309', 'Hearing Screening Status', NULL, 'Status of an examination used to measure a person''s ability to perceive sounds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21309', '11', '21309', NULL, NULL) +VALUES ('000436', 'Designated Graduation School Identifier', NULL, 'The NCES school identification number that identifies the school or facility from which a student expects to graduate.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23426', '12', '23426', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000310', 'Dental Screening Status', NULL, 'The condition of a person''s mouth or oral cavity; more specifically the condition of the hard tissues (i.e., teeth and jaws) and the soft tissues (i.e., gums, tongue, lips, palate, mouth floor, and inner cheeks). Good oral health denotes the absence of clinically manifested disease or abnormalities of the oral cavity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21310', '11', '21310', NULL, NULL) +VALUES ('000437', 'Migrant Education Program Enrollment Type', 'MEP Enrollment Type', 'The type of school/migrant education project in which instruction and/or support services are provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23427', '12', '23427', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000312', 'Weight at Birth', NULL, 'The weight of a child at birth in pounds and ounces.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21312', '11', '21312', NULL, NULL) +VALUES ('000438', 'Immunization Record Flag', NULL, 'Indicates whether the school or MEP program has immunization records on file for the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23428', '12', '23428', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000313', 'Weeks of Gestation', NULL, 'The number of weeks during gestational period.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21313', '11', '21313', NULL, NULL) +VALUES ('000439', 'Medical Alert Indicator', NULL, 'Alert indicator for a medical/health condition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23429', '12', '23429', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000314', 'Child Developmental Screening Status', NULL, 'The result of a brief standardized screening tool aiding in the identification of children at risk of a developmental delay/disorder.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21314', '11', '21314', NULL, NULL) +VALUES ('000440', 'Migrant Education Program Project Based', 'MEP Project Based', 'Indicates the type of MEP project based on the location where the MEP services are held.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23430', '12', '23430', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000315', 'Developmental Evaluation Finding', NULL, 'Child developmental delay/disability determined by procedure used by appropriate qualified personnel.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21315', '11', '21315', NULL, NULL) +VALUES ('000442', 'Appealed Adequate Yearly Progress Designation', 'Appealed AYP Designation', 'An indication that a school or district appealed its AYP designation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23432', '12', '23432', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000316', 'Language Type', NULL, 'An indication of the function and context in which a person uses a language to communicate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21316', '11', '21316', NULL, NULL) +VALUES ('000443', 'Adequate Yearly Progress Appeal Changed Designation', 'AYP Appeal Changed Designation', 'An indication that the appeal resulted in a change in a school or district''s AYP designation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23433', '12', '23433', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000317', 'ISO 639-2 Language Code', NULL, 'The code for the specific language or dialect that a person uses to communicate.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21317', '11', '21317', NULL, NULL) +VALUES ('000444', 'Adequate Yearly Progress Appeal Process Date', 'AYP Appeal Process Date', 'The last date that an appeal of an AYP designation was processed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23434', '12', '23434', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000320', 'Individualized Program Type', NULL, 'A designation of the type of program developed for a student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21320', '11', '21320', NULL, NULL) +VALUES ('000445', 'State Transferability of Funds', NULL, 'Did the State transfer funds under the State Transferability authority of Section 6123(a)', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23435', '12', '23435', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000321', 'Early Childhood Services Received', NULL, 'The types of service that adapts the curriculum, materials, or instruction for students identified as needing additional resources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21321', '11', '21321', NULL, NULL) +VALUES ('000446', 'Local Education Agency Transferability of Funds', 'LEA Transferability of Funds', 'LEA notified the State that they were transferring funds under the LEA Transferability authority of Section 6123(b).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23436', '12', '23436', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000323', 'Application Date', NULL, 'The year, month and day on which an individual application is received by the organization.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21323', '11', '21323', NULL, NULL) +VALUES ('000447', 'Title III Language Instruction Program Type', NULL, 'The type of Title III language instructional education programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23437', '12', '23437', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000324', 'Enrollment Date', NULL, 'The year, month and day on which a person is considered officially enrolled in the program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21324', '11', '21324', NULL, NULL) +VALUES ('000448', 'Instruction Language', NULL, 'The language of instruction, other than English, used in the program or course.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23438', '12', '23438', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000325', 'Participation in School Food Service Programs', NULL, 'An indication of a student''s participation in free, reduced price, full price breakfast, lunch, snack, supper, and milk programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21325', '11', '21325', NULL, NULL) +VALUES ('000449', 'Barrier to Educating Homeless', NULL, 'Barriers to the enrollment and success of homeless children and youths.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23439', '12', '23439', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000326', 'Service Entry Date', NULL, 'The year, month and day on which a person begins to receive early intervention, special education or other services.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21326', '11', '21326', NULL, NULL) +VALUES ('000451', 'Local Education Agency Funds Transfer Type', 'LEA Funds Transfer Type', 'An indication of the type of transfer for an LEAs that transferred funds from an eligible program to another eligible program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23441', '12', '23441', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000327', 'Service Exit Date', NULL, 'The year, month and day on which a person stops receiving early intervention or special education services.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21327', '11', '21327', NULL, NULL) +VALUES ('000452', 'Funds Transfer Amount', NULL, 'The total amount of FY appropriated funds transferred from and to each eligible program.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23442', '12', '23442', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000329', 'Custodial Parent or Guardian Indicator', NULL, 'An indication that a person has legal custody of a child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21328', '11', '21328', NULL, NULL) +VALUES ('000453', 'State Assessment Standards Funding', NULL, 'The percentage of funds used to pay the costs of the development of the State assessments and standards required by section 1111(b).', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23443', '12', '23443', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000330', 'Number of People in Family', NULL, 'Total number of persons in immediate family. Family means for the purposes of the regulations in this part all persons: (i) Living in the same household who are: (A) Supported by the income of the parent(s) or guardian(s) of the child enrolling or participating in the program; or (B) Related to the child by blood, marriage, or adoption; or (ii) Related to the child enrolling or participating in the program as parents or siblings, by blood, marriage, or adoption.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21329', '11', '21329', NULL, NULL) +VALUES ('000454', 'State Assessment Administration Funding', NULL, 'The percentage of funds used to administer assessments required by section 1111(b) or to carry out other activities described in section 6111 and other activities related to ensuring that the State’s schools and local educational agencies are held accountable for results.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23444', '12', '23444', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000331', 'Number of People in Household', NULL, 'Total number of persons residing in the same household.', 'Integer - greater than or equal to 0', '0', 'For FAFSA, this includes the number of family members that are in the household, including the student, their spouse, children, and any other persons living in the household to whom they will provide more than half of their support', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21330', '11', '21330', NULL, NULL) +VALUES ('000455', 'Date State Received Title III Allocation', NULL, 'Annual date the State receives the Title III allocation from U.S. Department of Education (ED).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23445', '12', '23445', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000332', 'Family Income', NULL, 'Total income of family from all sources. Income includes money, wages or salary before deductions; net income from non-farm self-employment; net income from farm self-employment; regular payments from Social Security or railroad retirement; payments from unemployment compensation, strike benefits from union funds, workers’ compensation, veterans benefits (with the exception noted below), public assistance (including Temporary Assistance for Needy Families, Supplemental Security Income, Emergency Assistance money payments, and non-Federally funded General Assistance or General Relief money payments); training stipends; alimony, child support, and military family allotments or other regular support from an absent family member or someone not living in the household; private pensions, government employee pensions (including military retirement pay), and regular insurance or annuity payments; college or university scholarships, grants, fellowships, and assistantships; and dividends, interest, net rental income, net royalties, and periodic receipts from estates or trusts; and net gambling or lottery winnings.', 'Numeric - up to 2 digits after decimal place', '0', 'Family Income is calculated based on the method specified by “Income Calculation Method.”', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21331', '11', '21331', NULL, NULL) +VALUES ('000456', 'Date Title III Funds Available to Subgrantees', NULL, 'Annual date that Title III funds are available to approved subgrantees.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23446', '12', '23446', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000333', 'Source of Family Income', NULL, 'Sources of total family income.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21332', '11', '21332', NULL, NULL) +VALUES ('000457', 'Number of Days for Title III Subgrants', NULL, 'Average number of days for States receiving Title III funds to make subgrants to subgrantees beginning from July 1 of each year, except under conditions where funds are being withheld.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23447', '12', '23447', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000334', 'Income Calculation Method', NULL, 'The calculation method used by a program to determine total family income.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21333', '11', '21333', NULL, NULL) +VALUES ('000461', 'Innovative Dollars Spent', NULL, 'The total Title V, Part A funds expended by LEAs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23451', '12', '23451', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000335', 'Insurance Coverage', NULL, 'The nature of insurance covering an person''s hospitalization and other health or medical care.', NULL, '1', 'Use cases may utilize subsets of the option set. For example, the option set for Parent/Guardian may not include the "Children''s health insurance program" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21334', '11', '21334', NULL, NULL) +VALUES ('000462', 'Innovative Dollars Spent on Strategic Priorities', NULL, 'The total amount of Title V, Part A funds expended by LEAs for the four strategic priorities.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23452', '12', '23452', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000336', 'Dental Insurance Coverage Type', NULL, 'The source of insurance covering an person''s dental care.', NULL, '1', 'Use cases may utilize subsets of the option set. For example, the option set for Parent/Guardian may not include the "Children''s health insurance program" option.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21335', '11', '21335', NULL, NULL) +VALUES ('000463', 'Migrant Education Program Project Type', 'MEP Project Type', 'Type of project funded in whole or in part by MEP funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23453', '12', '23453', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000341', 'Level of Specialization in Early Learning', NULL, 'The extent to which a person concentrates upon a particular subject matter area during his or her period of study at an educational institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21340', '11', '21340', NULL, NULL) +VALUES ('000464', 'Innovative Programs Funds Received', NULL, 'The total Title V, Part A funds received by LEAs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23454', '12', '23454', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000342', 'Degree or Certificate Title or Subject', NULL, 'The name of the degree or certificate earned by a person. This includes honorary degrees conferred upon an individual.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21341', '11', '21341', NULL, NULL) +VALUES ('000466', 'Literacy Assessment Administered Type', NULL, 'The type of literacy test administered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23456', '12', '23456', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000343', 'Degree or Certificate Type', NULL, 'The type of degree or certificate earned by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21342', '11', '21342', NULL, NULL) +VALUES ('000467', 'Literacy Goal Met Status', NULL, 'The participant showed "significant learning gains" on measures of reading, the definition of which is determined at the State level.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23457', '12', '23457', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000344', 'Degree or Certificate Conferring Date', NULL, 'The year, month and day on which a person received a degree or certificate.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21343', '11', '21343', NULL, NULL) +VALUES ('000468', 'Literacy Post Test Status', NULL, 'The participant completed a literacy post-test.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23458', '12', '23458', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000345', 'Early Childhood Credential', NULL, 'The credential related to early childhood education or development held by a person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21344', '11', '21344', NULL, NULL) +VALUES ('000469', 'Literacy Pre Test Status', NULL, 'The participant completed a literacy pre-test.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23459', '12', '23459', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000346', 'Employment Start Date', NULL, 'The year, month and day on which a person began self-employment or employment with an organization or institution.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21345', '11', '21345', NULL, NULL) +VALUES ('000470', 'Number of Immigrant Program Subgrants', NULL, 'The number of immigrant program [3114(d)(1)] subgrants.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23460', '12', '23460', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000347', 'Employment Status', NULL, 'The condition under which a person has agreed to serve as an employee.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21346', '11', '21346', NULL, NULL) +VALUES ('000471', 'Safe and Drug Free Indicator Name', NULL, 'The name of the performance indicator for student behaviors under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23461', '12', '23461', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000348', 'Initial License Date', NULL, 'The year, month and day on which a program or center received its initial license.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21347', '11', '21347', NULL, NULL) +VALUES ('000472', 'Safe and Drug Free Instrument', NULL, 'The instrument or data source for reported performance indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23462', '12', '23462', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000349', 'Continuing License Date', NULL, 'The year, month and day on which a program or center received its continuing license.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21348', '11', '21348', NULL, NULL) +VALUES ('000473', 'Safe and Drug Free Collection Frequency', NULL, ' The frequency of data collection for performance indicator under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23463', '12', '23463', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000350', 'License Exempt', NULL, 'The program or center is legally exempt from licensing.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21349', '11', '21349', NULL, NULL) +VALUES ('000474', 'Safe and Drug Free Year Most Recent Collection', NULL, 'The academic year of the most recent collection of the performance indicator under the Sage and Drug-Free Schools and Communities Act.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23464', '12', '23464', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000351', 'Operation Date', NULL, 'The year, month and day on which a program or center began operation.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21350', '11', '21350', NULL, NULL) +VALUES ('000475', 'Safe and Drug Free Target', NULL, 'The targeted performance for the given indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23465', '12', '23465', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000353', 'Service Option Variation', NULL, 'Nature of early childhood program, class or group in which a person is enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21352', '11', '21352', NULL, NULL) +VALUES ('000476', 'Safe and Drug Free Performance', NULL, 'Actual performance for the given indicator of student behavior under the Safe and Drug-Free Schools and Communities Act', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23466', '12', '23466', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000354', 'Hours Available Per Day', NULL, 'The number of hours per day the site or classroom is open for children to attend.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21353', '11', '21353', NULL, NULL) +VALUES ('000477', 'Safe and Drug Free Baseline', NULL, 'The baseline of the performance indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23468', '12', '23468', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000355', 'Days Available Per Week', NULL, 'The number of days per week the site or classroom is open for children to attend.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21354', '11', '21354', NULL, NULL) +VALUES ('000478', 'Safe and Drug Free Baseline Year', NULL, 'The academic year the baseline was established.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23469', '12', '23469', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000356', 'Early Childhood Setting', NULL, 'The site or setting in which early childhood care, education, and/or services are provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21355', '11', '21355', NULL, NULL) +VALUES ('000479', 'School Improvement Reserved Funds Percentage', NULL, 'An indication of the percentage of the Title I, Part A allocation that the SEA reserved in accordance with Section 1003(a) of ESEA and §200.100(a) of ED''s regulations governing the reservation of funds for school improvement under Section 1003(a) of ESEA.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23470', '12', '23470', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000357', 'Quality Rating and Improvement System Participation', 'QRIS Participation', 'Program site participates in a Quality Rating and Improvement System (QRIS).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21356', '11', '21356', NULL, NULL) +VALUES ('000480', 'School Improvement Allocation', NULL, 'The amount of Section 1003(a) and 1003(g) allocations to LEAs and Schools.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23471', '12', '23471', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000358', 'Quality Rating and Improvement System Score', 'QRIS Score', 'The score, rating or level received by a program for its Quality Rating and Improvement System (QRIS).', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21357', '11', '21357', NULL, NULL) +VALUES ('001116', 'Assessment Item Body Hottext Interaction XML', NULL, 'The hottext interaction presents a set of choices to the candidate represented as selectable runs of text embedded within a surrounding context, such as a simple passage of text. Like choiceInteraction, the candidate''s task is to select one or more of the choices, up to a maximum of maxChoices. The interaction is initialized from the defaultValue of the associated response variable, a NULL value indicating that no choices are selected (the usual case). The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24093', '12', '24093', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000010', 'Address Type for Learner or Family', NULL, 'The type of address listed for a learner or a parent, guardian, family member or related person.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21358', '11', '21358', NULL, NULL) +VALUES ('001117', 'Assessment Item Body Order Interaction XML', NULL, 'In an order interaction the candidate''s task is to reorder the choices, the order in which the choices are displayed initially is significant. By default the candidate''s task is to order all of the choices but a subset of the choices can be requested using the maxChoices and minChoices attributes. When specified the candidate must select a subset of the choices and impose an ordering on them. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24094', '12', '24094', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000361', 'Enrollment in Postsecondary Award Type', NULL, 'An indicator of the award level in which the person is currently enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21360', '11', '21360', NULL, NULL) +VALUES ('001118', 'Assessment Item Body Position Object Interaction XML', NULL, 'The position object interaction consists of a single image which must be positioned on another graphic image (the stage) by the candidate. Like selectPointInteraction, the associated response may have an areaMapping that scores the response on the basis of comparing it against predefined areas but the delivery engine must not indicate these areas of the stage. Only the actual position(s) selected by the candidate shall be indicated. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24095', '12', '24095', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000362', 'Instructional Activity Hours Completed', NULL, 'The number of credit hours and/or contact hours successfully completed by a person during a term.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21361', '11', '21361', NULL, NULL) +VALUES ('001119', 'Assessment Item Body Text Entry Interaction XML', NULL, 'A textEntry interaction obtains a simple piece of text from the candidate. Like inlineChoiceInteraction, the delivery engine must allow the candidate to review their choice within the context of the surrounding text. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24096', '12', '24096', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000363', 'Financial Aid Award Status', NULL, 'An indication of whether the financial aid type being reported is aid that has been awarded, accepted or dispersed.', NULL, '1', 'Linked to financial aid type, financial aid amount.
Note: For any given individual this field may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21362', '11', '21362', NULL, NULL) +VALUES ('001120', 'Assessment Item Body Extended Text Interaction XML', NULL, 'An extended text interaction allows the candidate to enter an extended amount of text. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24097', '12', '24097', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000366', 'Assessment Form Number', NULL, 'The number of a given assessment form.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21365', '11', '21365', NULL, NULL) +VALUES ('001121', 'Assessment Item Body End Attempt Interaction XML', NULL, 'The end attempt interaction is a special type of interaction which allows item authors to provide the candidate with control over the way in which the candidate terminates an attempt. The candidate can use the interaction to terminate the attempt (triggering response processing) immediately, typically to request a hint. It must be bound to a response variable with base-type boolean and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24098', '12', '24098', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000367', 'Assessment Subtest Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment subtest.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21366', '11', '21366', NULL, NULL) +VALUES ('001222', 'Assessment Item Body Upload Interaction XML', NULL, 'The upload interaction allows the candidate to upload a pre-prepared file representing their response. It must be bound to a response variable with base-type file and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24099', '12', '24099', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000368', 'Assessment Subtest Abbreviation', NULL, 'The shortened name identifying the assessment for use in reference and/or reports.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21367', '11', '21367', NULL, NULL) +VALUES ('001123', 'Assessment Item Body Associate Interaction XML', NULL, 'An associate interaction presents candidates with a number of choices and allows them to create associations between them. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24100', '12', '24100', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000369', 'Assessment Score Metric Type', NULL, 'The specific method used to report the performance and achievement of the assessment. This is the metric that is being used to derive the scores.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21368', '11', '21368', 'Updated', 'Added new option to the existing option set.') +VALUES ('001127', 'Assessment Need Type', NULL, 'A type of need identified for a learner as part of an assessment need profile.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24101', '12', '24101', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000370', 'Instructional Recommendation', NULL, 'This provides the next steps for instruction for the student based upon the assessment results and student characteristics.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21369', '11', '21369', NULL, NULL) +VALUES ('001130', 'Assessment Participant Session Security Issue', NULL, 'Describes an issue related to the security of a testing instrument identified during a specific instance of delivering an assessment to a specific person during a specific time period.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24102', '12', '24102', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000371', 'Assessment Participant Session Language', NULL, 'The language that the assessment is administered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21370', '11', '21370', NULL, NULL) +VALUES ('001131', 'Assessment Item APIP Response Processing Template URL', NULL, 'These templates are described using the processing language defined in IMS Global APIP specification and are distributed (in XML form) along with it. Delivery engines that support generalized response processing do not need to implement special mechanisms to support them as a template file can be parsed directly while processing the assessment item that refers to it. This element provides the URL for the template.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24103', '12', '24103', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000382', 'Assessment Objective', NULL, 'This is the objective that the assessment is measuring.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21373', '11', '21373', NULL, NULL) +VALUES ('001132', 'Assessment Item APIP Response Processing XML', NULL, 'Response processing is the process by which the Delivery Engine assigns outcomes based on the learner''s responses. The outcomes may be used to provide feedback to the learner Feedback is either provided immediately following the end of the learner''s attempt or it is provided at some later time, perhaps as part of a summary report on the item session. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24104', '12', '24104', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000383', 'Assessment Accommodation Category', NULL, 'A category of accommodations needed for a given assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21374', '11', '21374', NULL, NULL) +VALUES ('001133', 'Assessment Item APIP Response Declaration XML', NULL, 'Response declarations state what the response variables include. The response declaration may assign an optional correct response. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24105', '12', '24105', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000384', 'Assessment Secure Indicator', NULL, 'Indicates whether or not the assessment is a secure assessment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21375', '11', '21375', NULL, NULL) +VALUES ('001134', 'Assessment Item APIP Outcome Declaration XML', NULL, 'Outcome variables are declared by outcome declarations. Their value is set either from a default given in the declaration itself or by a responseRule during response processing. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24106', '12', '24106', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000385', 'Accommodation Type', NULL, 'The specific accommodation necessary for assessment or instruction.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21376', '11', '21376', NULL, NULL) +VALUES ('001135', 'Assessment Item APIP Template Declaration XML', NULL, 'Template declarations declare item variables that are to be used specifically for the purposes of cloning items. They can have their value set only during template processing. They are referred to within the item body in order to individualize the clone and possibly also within the response Processing rules if the cloning process affects the way the item is scored. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24107', '12', '24107', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000386', 'Assessment Participant Session Platform Type', NULL, 'The platform with which the assessment was delivered to the student during the assessment session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21377', '11', '21377', NULL, NULL) +VALUES ('001136', 'Assessment Item APIP Template Processing XML', NULL, 'Template processing consists of one or more template rules that are followed by the cloning engine or delivery system in order to assign values to the template variables. Template processing is identical in form to responseProcessing except that the purpose is to assign values to template variables, not outcome variables. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24108', '12', '24108', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000388', 'Assessment Subtest Version', NULL, 'The version of the subtest that is included for the assessment.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21379', '11', '21379', NULL, NULL) +VALUES ('001137', 'Assessment Item APIP Modal Feedback XML', NULL, 'Modal feedback is shown to the candidate directly following response processing. The value of an outcome variable is used in conjunction with the showHide and identifier attributes to determine whether or not the feedback is shown in a similar way to feedbackElement. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24109', '12', '24109', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000389', 'Assessment Session Special Circumstance Type', NULL, 'An unusual event occurred during the administration of the assessment. This could include fire alarm, student became ill, etc.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21380', '11', '21380', NULL, NULL) +VALUES ('001138', 'Assessment Item APIP Item Body XML', NULL, 'The item body contains the text, graphics, media objects, and interactions that describe the item''s content and information about how it is structured. The body is presented by combining it with stylesheet information, either explicitly or implicitly using the default style rules of the delivery or authoring system. This element contains the appropriate XML from the IMS Global APIP Specification defining the various item body interactions.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24110', '12', '24110', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000390', 'Assessment Item Type', NULL, 'The specific type of assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21382', '11', '21382', NULL, NULL) +VALUES ('001139', 'Assessment Item Adaptive Indicator', NULL, 'This indicator determines whether an assessment item is an adaptive item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24111', '12', '24111', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000391', 'Assessment Item Difficulty', NULL, 'The percentage of students who answered the item correctly during trial testing of the item.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21383', '11', '21383', NULL, NULL) +VALUES ('001152', 'Assessment Participant Session Platform User Agent', NULL, ' A list of product tokens (keywords) with optional comments that identifies the client hardware and software with which the assessment was delivered to the student during the assessment session.', 'Alphanumeric - 512 characters maximum', '0', 'Implementation Note: The recommended approach is to store the User-Agent string returned as part of an HTTP header. For example, an assessment session delivery via iPad might have "Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Mobile/7B405"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24112', '12', '24112', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000392', 'Assessment Item Characteristic Type', NULL, 'The type of psychometric measure provided for assessment item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21384', '11', '21384', NULL, NULL) +VALUES ('001153', 'Credential Definition Criteria URL', 'Credential Criteria URL', 'The Uniform Resource Locator (URL) for the unique address of a web page describing the competency-based completion criteria for the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24113', '12', '24113', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000393', 'Assessment Item Response Choice Pattern', NULL, 'The distribution of responses for each choice in the assessment item.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21385', '11', '21385', NULL, NULL) +VALUES ('001154', 'Competency Definition Text Complexity Minimum Value', 'Learning Standard Item Text Complexity Minimum Value, Competency Item Text Complexity Minimum Value', 'The minimum value in the range of text complexity applicable to a language competency definition using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24114', '12', '24114', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000395', 'Assessment Subtest Minimum Value', NULL, 'The minimum value possible for the measurement.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21387', '11', '21387', NULL, NULL) +VALUES ('001155', 'Competency Definition Text Complexity Maximum Value', 'Learning Standard Item Text Complexity Maximum Value, Competency Item Text Complexity Maximum Value', 'The maximum value in the range of text complexity applicable to a language competency definition using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24115', '12', '24115', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000396', 'Assessment Subtest Maximum Value', NULL, 'The maximum value for the measurement.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21388', '11', '21388', NULL, NULL) +VALUES ('001157', 'Accommodation Other Description', NULL, 'The description of the accommodation when ''Accommodation Type'' is set to ''Other''.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24116', '12', '24116', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000397', 'Assessment Subtest Optimal Value', NULL, 'The optimal value for this measurement.', 'Alphanumeric - 30 characters maximum', '0', 'The Optimal Value may be the same as the Maximum Value, the Minimum Value, or something in between.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21389', '11', '21389', NULL, NULL) +VALUES ('001158', 'Assessment Item Interaction Type', NULL, 'The assessment item body interaction type as defined by IMS Global specifications.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24117', '12', '24117', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000398', 'Assessment Item Distractor Analysis', NULL, 'The analysis of the distractors provided for a specific assessment.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21390', '11', '21390', NULL, NULL) +VALUES ('001162', 'Assessment Registration Test Attempt Identifier', NULL, 'A unique identifier for the test attempt assigned by the delivery system.', 'Alphanumeric - 40 characters maximum', '0', 'For paper-based tests this is typically a batch/stack/serial number and for online tests it is likely a unique internal identifier. Used to locate the original attempt.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24119', '12', '24119', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000400', 'Assessment Item Stem', NULL, 'The statement of the question or prompt for an Assessment Item to which the student responds.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21392', '11', '21392', NULL, NULL) +VALUES ('001163', 'Credential Award Start Date', 'Credential Start Date', 'The date on which the qualification, achievement, personal or organizational quality, or aspect of an identity was conferred.', 'YYYY-MM-DD', '0', 'Diploma or Credential Award Date is the same concept but used when only month and year are known or needed.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24120', '12', '24120', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000402', 'Assessment Item Response Duration', NULL, 'The total amount of time in seconds or milliseconds that a person spent responding to a given assessment item.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21394', '11', '21394', NULL, NULL) +VALUES ('001164', 'Credential Award End Date', 'Credential End Date', 'The date, if any, on which the qualification, achievement, personal or organizational quality, or aspect of an identity expires or requires renewal.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24121', '12', '24121', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000403', 'Assessment Item Allotted Time', NULL, 'The amount of time allotted for a specific item.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21395', '11', '21395', NULL, NULL) +VALUES ('001168', 'Authentication Identity Provider Name', NULL, 'The name of a provider that can authenticate the identity of an person.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24122', '12', '24122', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000405', 'Assessment Item Response Status', NULL, 'The status of the response for a given item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21396', '11', '21396', NULL, NULL) +VALUES ('001169', 'Authentication Identity Provider URI', NULL, 'The Uniform Resource Identifier (URI) of the Authentication Identity Provider.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24123', '12', '24123', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000406', 'Assessment Item Response Aid Set Used', NULL, 'A tool or aid set used while viewing the item. This can include things like a calculator, reference tools, etc.', 'Alphanumeric - 30 characters maximum', '0', 'This a permissible set of tools suggested for use for successful completion of a test question, not an accommodation.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21397', '11', '21397', NULL, NULL) +VALUES ('001170', 'Authentication Identity Provider Login Identifier', NULL, 'The login identifier for the person for the specified Authentication Identity Provider.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24124', '12', '24124', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000407', 'Assessment Participant Session Time Assessed', NULL, 'The overall time a learner actually spent during the assessment session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21398', '11', '21398', NULL, NULL) +VALUES ('001171', 'Authentication Identity Provider Start Date', NULL, 'The date on which the an associated person may begin to use the specified Authentication Identity Provider to authenticate identity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24125', '12', '24125', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000408', 'Assessment Session Allotted Time', NULL, 'The duration of time allotted for the assessment session.', 'HH:MM:SS or HH:MM:SS.sss', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21399', '11', '21399', NULL, NULL) +VALUES ('001172', 'Authentication Identity Provider End Date', NULL, 'The date after which the an associated person is no longer allowed to use the specified Authentication Identity Provider to authenticate identity.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24126', '12', '24126', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000410', 'Assessment Session Administrator Identifier', NULL, 'The unique identifier of the person overseeing the administration of an assessment. This is typically at a district or school level or at an administrator at a testing facility.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21400', '11', '21400', NULL, NULL) +VALUES ('001173', 'Authorization Application Name', NULL, 'The name of a data system or application which an authenticated person may access.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24127', '12', '24127', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000411', 'Assessment Session Proctor Identifier', NULL, 'The unique identifier of the person overseeing the assessment session in the setting.', 'Alphanumeric - 40 characters maximum', '0', 'This could be the identifier for a teacher, a paraprofessional or individual at a testing site.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21401', '11', '21401', NULL, NULL) +VALUES ('001174', 'Authorization Application URI', NULL, 'The Uniform Resource Identifier (URI) of a data system or application which an authenticated person may access.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24128', '12', '24128', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000415', 'Assessment Type Administered', NULL, 'The type of assessment administered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21405', '11', '21405', 'Updated', 'Changed Name, Definition, and Technical Name to reflect a broader use.') +VALUES ('001175', 'Authorization Application Role Name', NULL, 'The user role for which the person is allowed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24129', '12', '24129', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000417', 'Assessment Performance Level Score Metric', NULL, 'The metric or scale used for score reporting.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21407', '11', '21407', NULL, NULL) +VALUES ('001176', 'Authorization Start Date', NULL, 'The date on which the an associated person is authorized to start using the application with the specified role.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24130', '12', '24130', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000418', 'Assessment Performance Level Lower Cut Score', NULL, 'Lowest possible score for the performance level.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21408', '11', '21408', NULL, NULL) +VALUES ('001177', 'Authorization End Date', NULL, 'The date after which the an associated person is no longer allowed to use the application with the specified role.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24131', '12', '24131', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000419', 'Assessment Performance Level Upper Cut Score', NULL, 'Highest possible score for the performance level.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21409', '11', '21409', NULL, NULL) +VALUES ('001181', 'Assessment Item Bank Identifier', NULL, 'If the assessment is provided with an item bank, then this identifies the item bank: a unique code or number used by the item banking system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24132', '12', '24132', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000421', 'Rubric Title', NULL, 'The title of the rubric.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21411', '11', '21411', NULL, NULL) +VALUES ('001182', 'Assessment Item Bank Name', NULL, 'If the assessment is provided with an item bank, then this is the name of the item bank.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24133', '12', '24133', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000422', 'Rubric Identifier', NULL, 'An identifier assigned to a rubric.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21412', '11', '21412', NULL, NULL) +VALUES ('001183', 'Assessment Form Version', NULL, 'The version number of the Assessment Form.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24134', '12', '24134', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000423', 'Rubric URL Reference', NULL, 'The URL location where the rubric may be found.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21413', '11', '21413', NULL, NULL) +VALUES ('001184', 'Learning Resource Published Date', NULL, 'The published date of an educational resource, such as instructional media, an assessment form, or section of an assessment form.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24135', '12', '24135', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000424', 'State ANSI Code', NULL, 'The American National Standards Institute (ANSI) two-digit code for the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21414', '11', '21414', 'Updated', 'Added new options to the existing option set.') +VALUES ('001185', 'Assessment Form Accommodation List', NULL, 'The human readable list of one or more of the specific accommodations available. If no accommodations are provided, then this list will not be present.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24136', '12', '24136', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000425', 'Person Relationship Type', NULL, 'The nature of a person''s relationship to another person.', NULL, '1', 'For implementation in the CEDS Integrated Data Store (IDS), the "person" in the description would be the person referred to in the PersonId column in the IDS. The "related person" in the description would be the person referred to in the "RelatedPersonId" in the IDS. Example: Foster mother - The person (PersonId) is the related person''s (RelatedPersonId) Foster mother.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21415', '11', '21415', NULL, NULL) +VALUES ('001186', 'Intended Administration Start Date', NULL, 'The beginning date of the time period in which the form is intended to be administered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24137', '12', '24137', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000426', 'City of Birth', NULL, ' The name of the city in which a person was born.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21416', '11', '21416', NULL, NULL) +VALUES ('001187', 'Assessment Form Intended Administration End Date', NULL, 'The ending date of the time period in which the assessment form is intended to be administered.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24138', '12', '24138', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000427', 'State of Birth Abbreviation', NULL, 'The abbreviation for the name of the state (within the United States) or extra-state jurisdiction in which a person was born.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21417', '11', '21417', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001188', 'Assessment Form Platforms Supported', NULL, 'A human readable list of delivery platforms the form will support.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24139', '12', '24139', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000428', 'Birthdate Verification', NULL, 'The evidence by which a child''s date of birth is confirmed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21418', '11', '21418', NULL, NULL) +VALUES ('001189', 'Assessment Form Section Version', NULL, 'The version number of the Assessment Form Section.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24140', '12', '24140', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000429', 'Continuation of Services Reason', NULL, 'Reason why the student is being served under the continuation of services provision of the MEP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21419', '11', '21419', NULL, NULL) +VALUES ('001190', 'Identification System for Assessment Form Section', NULL, 'A coding scheme that is used for identification of an Assessment Form Section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24141', '12', '24141', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000430', 'Migrant Education Program Eligibility Expiration Date', 'MEP Eligibility Expiration Date', 'The year, month, and day on which the child is no longer eligible for the Migrant Education Program. This date should initially be a date equal to 36 months from the Qualifying Arrival Date to indicate the end of MEP eligibility or the student reaches 22 years of age, whichever comes first.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21420', '11', '21420', NULL, NULL) +VALUES ('001191', 'Assessment Form Section Identifier', NULL, 'A unique number or alphanumeric code assigned to the Assessment Form Section using the system specified by Identification System for Assessment Form Section.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24142', '12', '24142', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000431', 'Multiple Birth Indicator', NULL, 'An indication that the person is a twin, triplet, etc.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21421', '11', '21421', NULL, NULL) +VALUES ('001192', 'Assessment Form Section Time Limit', NULL, 'If this section is timed, then this will identify the maximum amount of time the test taker can spend within this section.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24143', '12', '24143', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000432', 'Migrant Student Qualifying Arrival Date', NULL, 'The qualifying arrival date (QAD) is the month, date, and year that the child completed a move with his or her parent to enable the parent to find qualifying employment. In some cases, the child and worker may not always move together, in which case the QAD would be the date that the child joins the worker who has already moved, or the date the worker joins the child who has already moved. The QAD is the date the child''s eligibility for the Migrant Education Program begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21422', '11', '21422', NULL, NULL) +VALUES ('001193', 'Assessment Form Section Sealed', NULL, 'Indicates this section is sealed, meaning the test taker cannot enter the section until authorized by the proctor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24144', '12', '24144', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000433', 'Qualifying Move From City', NULL, 'The name of the city in which the child resided prior to the qualifying move.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21423', '11', '21423', NULL, NULL) +VALUES ('001194', 'Assessment Form Section Reentry', NULL, 'Indicates that this section can be re-entered, meaning the test taker can return to this section after they have left the section. A common example of this is a two section test where one section does not allow the use of a calculator and the other does. Typically the test taker cannot return to the non-calculator section after they have used a calculator.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24145', '12', '24145', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000434', 'Qualifying Move From Country', NULL, 'The abbreviation code for a country (other than the US) area in which the child resided prior to the qualifying move.', NULL, '1', 'The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21424', '11', '21424', NULL, NULL) +VALUES ('001195', 'Assessment Asset Version', NULL, 'A version number or label defined by the publisher.', 'Alphanumeric - 30 characters maximum', '0', 'In some use cases a date, such as Learning Resource Date Created may be used as an alternative to a version number. Each use case may adopt different rules depending on the application requirements for maintenance of current version only or the multiple objects/records representing the complete version history.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24146', '12', '24146', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000435', 'Qualifying Move From State', NULL, 'The postal abbreviation code for a state (within the United States) or outlying area in which the child resided prior to the qualifying move.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21425', '11', '21425', NULL, NULL) +VALUES ('001196', 'Assessment Asset Type', NULL, 'Specifies a predominant type of assessment asset represented by the Learning Resource. Assessment assets represent any content used to compose an assessment item, is referenced by an item but not part of the item content itself, or is content that is included as part of a section within an assessment form. Assets can be static content such as art work or dynamic assets such as calculators.', NULL, '1', 'The standard option set may be extended based on local and implementation-specific requirements. Commonly used options may be submitted for inclusion in future versions of CEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24147', '12', '24147', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001040', 'Assessment Need Signing Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the type of signing preferred by the user.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22044', '11', '22044', NULL, NULL) +VALUES ('001197', 'Assessment Asset Published Date', NULL, 'The date that this version of the asset was made available for use.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24148', '12', '24148', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001041', 'Assessment Need Alternative Representation Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the default presentation mode of the associated Alternative Representations accessibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22045', '11', '22045', NULL, NULL) +VALUES ('001198', 'Assessment Asset Identifier', NULL, 'A unique code identifying the Assessment Asset provided by the authoring system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24149', '12', '24149', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001042', 'Assessment Need Spoken Source Preference Type', NULL, 'Defines as part of an Assessment Personal Needs Profile the preferred spoken audio form.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22046', '11', '22046', NULL, NULL) +VALUES ('001199', 'Assessment Asset Identifier Type', NULL, 'The type of identifier that is provided for this asset.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24150', '12', '24150', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001043', 'Assessment Need Read at Start Preference', NULL, 'Used as part of an Assessment Personal Needs Profile to define if the spoken play-back should commence from the start of a recording or not.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22048', '11', '22048', NULL, NULL) +VALUES ('001200', 'Assessment Asset Name', NULL, 'The name of the Assessment Asset.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24151', '12', '24151', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001044', 'Assessment Need User Spoken Preference Type', NULL, 'Used as part of an Assessment Personal Needs Profile to define the type of material that should be rendered using the read aloud alternative content.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22049', '11', '22049', NULL, NULL) +VALUES ('001201', 'Assessment Asset Owner', NULL, 'The name of the ownership rights holder or publisher of the asset.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24152', '12', '24152', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001045', 'Assessment Need Directions Only', NULL, 'Defines as part of an Assessment Personal Needs Profile whether or not the verbal alternative content presentation should be applied to directive content only.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22050', '11', '22050', NULL, NULL) +VALUES ('001202', 'Assessment Asset Content XML', NULL, 'XML encoded in UTF-8 representing the content of the Assessment Asset.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24153', '12', '24153', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001046', 'Assessment Need Masking Type', NULL, 'Specifies as part of an Assessment Personal Needs Profile the type of masks the user is able to create to cover portions of the question until needed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22051', '11', '22051', NULL, NULL) +VALUES ('001203', 'Assessment Asset Content Mime Type', NULL, 'MIME type to specifically indicate the Assessment Asset content type.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24154', '12', '24154', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001047', 'Assessment Need Text Messaging String', NULL, 'The text string that is to be displayed to the user as an expression of encouragement when Masking is specified as part of an Assessment Personal Needs Profile. It is left to the system to determine when to display this string.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22052', '11', '22052', NULL, NULL) +VALUES ('001204', 'Assessment Asset Content URL', NULL, 'The Uniform Resource Locator (URL) location of the external Assessment Asset content.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24155', '12', '24155', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001048', 'Assessment Need Sound File URL', NULL, 'The URI of the sound file that is to be played to the user as an expression of encouragement when Masking is specified as part of an Assessment Personal Needs Profile. It is left to the system to determine when to play this audio file.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22053', '11', '22053', NULL, NULL) +VALUES ('001143', 'Learning Resource Description', NULL, ' A short description of the Learning Resource.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24156', '12', '24156', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001049', 'Assessment Need Time Multiplier', NULL, 'Defines the multiplier to be applied to the time limit to determine the total testing time allowed when Additional Testing Time is specified as part of an Assessment Personal Needs Profile. If the value is ‘unlimited’ then there is no time limit for the test.', 'Alphanumeric - 9 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22055', '11', '22055', NULL, NULL) +VALUES ('001144', 'Learning Resource Copyright Holder Name', NULL, 'The name(s) of the person(s) or organization(s) holding the copyright for the Learning Resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24157', '12', '24157', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001050', 'Assessment Need Line Reader Highlight Color', NULL, 'The color defined as part of an Assessment Personal Needs Profile to be used to highlight the point of line reader activity i.e. the line being read.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22056', '11', '22056', NULL, NULL) +VALUES ('001145', 'Learning Resource Copyright Year', NULL, 'The copyright year for the Learning Resource.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24158', '12', '24158', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001051', 'Assessment Need Overlay Color', NULL, 'This is the preferred color for the overlay for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22057', '11', '22057', NULL, NULL) +VALUES ('001146', 'Learning Resource Concept Keyword', NULL, 'The significant topicality of the Learning Resource using free-text keywords and phrases.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24159', '12', '24159', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001052', 'Assessment Need Foreground Color', NULL, 'This is the preferred Foreground color for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22058', '11', '22058', NULL, NULL) +VALUES ('001147', 'Peer Rating System Name', NULL, 'The name of the scaling system used to specify the Peer Rating.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24160', '12', '24160', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001053', 'Assessment Need Background Color', NULL, 'This is the preferred Background color for screen enhancement defined as part of an Assessment Personal Needs Profile.', 'Color hex code (alphanumeric - 6 characters)', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22059', '11', '22059', NULL, NULL) +VALUES ('001148', 'Learning Resource Peer Rating Value', NULL, 'An individual score, rating or level assigned to a Learning Resource by a person within the boundaries set by a Peer Rating System that may be aggregated to derive an overall score for the learning resource.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24161', '12', '24161', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001054', 'Assessment Need Increased Whitespacing Type', NULL, 'Defines the user preferences for white spacing in lines, words and characters as part of an Assessment Personal Needs Profile.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22060', '11', '22060', NULL, NULL) +VALUES ('001149', 'Peer Rating System Maximum Value', NULL, ' The maximum value allowed by the Peer Rating System.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24162', '12', '24162', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001055', 'Assessment Registration Testing Indicator', NULL, 'Indicates rules about use of results based on Special Events before, during or after the test. The option set values are determined by the testing program.', 'Alphanumeric - 300 characters maximum', '0', 'For example, "do not score", "do not report".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22061', '11', '22061', NULL, NULL) +VALUES ('001150', 'Peer Rating System Minimum Value', NULL, 'The minimum value allowed by the Peer Rating System.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24163', '12', '24163', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001056', 'Assessment Registration Score Publish Date', NULL, 'The date set by the testing program when the test scores are published. For formative or classroom assessments, this will likely be the date when the scored the individual test. For summative assessments, this date is likely set for a group of assessments when the processing system releases the scores.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22062', '11', '22062', NULL, NULL) +VALUES ('001151', 'Peer Rating System Optimum Value', NULL, 'The optimum value allowed by the Peer Rating System. The optimum or best rating may be the maximum value, the minimum value, or something in between.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24164', '12', '24164', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001057', 'Assessment Registration Grade Level to Be Assessed', NULL, 'The grade or level at which the learner is to be assessed.', NULL, '1', ' Informs selection of the assessment form appropriate for the grade level to be tested.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22063', '11', '22063', 'Updated', 'Added and removed options to the existing option set.') +VALUES ('001156', 'Organization Type', NULL, 'The type of educational organization or entity.', NULL, '1', 'This element is used in data models that are normalized and identifies the primary role of the organization.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24165', '12', '24165', 'Updated', 'Added new option to existing option set, add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001058', 'Name of Professional Credential or License', NULL, 'The name of the license/credential awarded by a given profession.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22064', '11', '22064', NULL, NULL) +VALUES ('001122', 'NAEP Aspects of Reading', NULL, 'Aspects of reading defined by the National Assessment of Educational Progress (NAEP 2005b Framework).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24166', '12', '24166', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001059', 'Cardiopulmonary Resuscitation Certification Expiration Date', 'CPR Certification Expiration Date', 'The date an individual''s cardiopulmonary resuscitation (CPR) training certification expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22065', '11', '22065', NULL, NULL) +VALUES ('001160', 'Virtual Indicator', NULL, 'An indication that a childcare, early education, or early learning program, school, institution, program, or course section focuses primarily on instruction in which children and teachers are separated by time and/or location and interact through the use of computers and/or telecommunications technology.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24167', '12', '24167', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001060', 'First Aid Certification Expiration Date', NULL, 'The date an individual''s first aid training certification expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22066', '11', '22066', NULL, NULL) +VALUES ('001161', 'Course Section Instructional Delivery Mode', NULL, 'The primary setting or medium of delivery for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24168', '12', '24168', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001061', 'Staff Professional Development Activity Start Date', NULL, 'The year, month and day on which an individual begins a course, an education program or a staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22067', '11', '22067', NULL, NULL) +VALUES ('001165', 'Goal Start Date', NULL, 'The date on which the goal becomes active.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24169', '12', '24169', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001062', 'Staff Professional Development Activity Completion Date', NULL, 'The year, month and day on which an individual completed a course, an education program or a staff development activity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22068', '11', '22068', NULL, NULL) +VALUES ('001166', 'Goal End Date', NULL, 'The date on which the goal expires or has been achieved.', 'YYYY-MM-DD', '0', 'For federal reporting use cases some codes are required to be reported and others are not. All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24170', '12', '24170', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001063', 'Assessment Item Response Value', NULL, ' A specific response to an assessment item by the person being assessed.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22069', '11', '22069', NULL, NULL) +VALUES ('001167', 'Peer Rating Date', NULL, 'The date on which the Peer Rating was entered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24171', '12', '24171', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001064', 'Employment NAICS Code', NULL, 'The North American Industry Classification System (NAICS) code associated with an individual''s employment.', 'Integer - exactly 6 digits', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22070', '11', '22070', NULL, NULL) +VALUES ('001205', 'Facility Building Name', NULL, 'The full, legally accepted or popularly accepted name of a building.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24172', '12', '24172', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001088', 'NAEP Mathematical Complexity Level', NULL, 'Complexity levels defined by the National Assessment of Educational Progress (NAEP 2005a Framework).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22072', '11', '22072', NULL, NULL) +VALUES ('001206', 'Building Use Type', NULL, 'How a building is principally used, regardless of its original design.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24173', '12', '24173', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001089', 'Assessment Language', NULL, 'The language in which the assessment form is designed to be delivered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22073', '11', '22073', NULL, NULL) +VALUES ('001207', 'Facility Space Description', NULL, 'A description of the space, as determined by its physical layout and built-in systems and equipment.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24174', '12', '24174', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001091', 'Assessment Subtest Published Date', NULL, 'The date on which the Subtest was published.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22075', '11', '22075', NULL, NULL) +VALUES ('001208', 'Facility Space Use Type', NULL, 'The primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24175', '12', '24175', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001092', 'Assessment Result Descriptive Feedback Source', NULL, 'Identifies the source of the descriptive feedback that was given to a learner based on a scored/evaluated portion of an assessment. May indicate if this is teacher, scorer, or system generated feedback. Values for this attribute would be determined by the assessment program.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22076', '11', '22076', NULL, NULL) +VALUES ('001209', 'County ANSI Code', NULL, 'County code as defined for the identification of counties and equivalent areas of the United States, Puerto Rico, and the insular areas as established by the American National Standards Institute (ANSI) Inter-National Committee for Information Technology Standards (INCITS) in specification BSR INCITS 31-200x or more current updates. See https://www.census.gov/library/reference/code-lists/ansi.html#par_statelist.', 'Integer - 5 digits with leading zeros', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24176', '12', '24176', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001093', 'Assessment Session Special Event Description', NULL, 'Describes special events that occur before during or after the assessment session that may impact use of results according to rules related to the Assessment Registration Testing Indicator.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22077', '11', '22077', NULL, NULL) +VALUES ('001210', 'Exit Grade Level', NULL, 'The grade level or primary instructional level at which a student exits a school, program, or an educational institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24177', '12', '24177', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001094', 'Competency Definition Parent URL', 'Learning Standard Item Parent URL, Competency Item Parent URL', 'A network-resolvable Uniform Resource Locator (URL) pointing to the authoritative reference for the hierarchal parent of the competency definition.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22078', '11', '22078', NULL, NULL) +VALUES ('001211', 'Weapon Type', NULL, 'Identifies the type of weapon used during an incident.', NULL, '1', 'See Forum Guide to Crime, Violence, and Discipline Incident Data http://nces.ed.gov/pubs2011/2011806.pdf Forum Guide.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24178', '12', '24178', 'Updated', 'Added new option to existing option set, change option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001102', 'Assessment Item Body Custom Interaction XML', NULL, 'The custom interaction provides an opportunity for extensibility of this specification to include support for interactions not currently documented. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22079', '11', '22079', NULL, NULL) +VALUES ('001212', 'Assessment Session Staff Role Type', NULL, 'The type of role served related to the administration of an assessment session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24179', '12', '24179', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001103', 'Assessment Item Body Drawing Interaction XML', NULL, 'The drawing interaction allows the candidate to use a common set of drawing tools to modify a given graphical image (the canvas). It must be bound to a response variable with base-type file and single cardinality. The result is a file in the same format as the original image. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22080', '11', '22080', NULL, NULL) +VALUES ('001214', 'Assessment Form Subtest Tier', NULL, 'In a hierarchy of subtests, this element represents the level of the sub test in the hierarchy. The top tier and default is zero.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24180', '12', '24180', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001104', 'Assessment Item Body Gap Match Interaction XML', NULL, 'A gap match interaction contains a number gaps that the candidate can fill from an associated set of choices. The candidate must be able to review the content with the gaps filled in context, as indicated by their choices. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22081', '11', '22081', NULL, NULL) +VALUES ('001215', 'Assessment Form Subtest Container Only', NULL, 'In a hierarchy of subtests, this indicates that this tier is only used as a level in the hierarchy and does not represent a scoring model.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24181', '12', '24181', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001105', 'Assessment Item Body Match Interaction XML', NULL, 'A match interaction presents candidates with two sets of choices and allows them to create associates between pairs of choices in the two sets, but not between pairs of choices in the same set. Further restrictions can still be placed on the allowable associations using the matchMax attribute of the choices. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22082', '11', '22082', NULL, NULL) +VALUES ('001216', 'Learning Resource Version', NULL, 'Defines the version of the learning resource as defined by the publisher.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24182', '12', '24182', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001106', 'Assessment Item Body Graphic Gap Match Interaction XML', NULL, 'A graphic gap-match interaction is a graphical interaction with a set of gaps that are defined as areas (hotspots) of the graphic image and an additional set of gap choices that are defined outside the image. The candidate must associate the gap choices with the gaps in the image and be able to review the image with the gaps filled in context, as indicated by their choices. Care should be taken when designing these interactions to ensure that the gaps in the image are a suitable size to receive the required gap choices. It must be clear to the candidate which hotspot each choice has been associated with. When associated, choices must appear wholly inside the gaps if at all possible and, where overlaps are required, should not hide each other completely. If the candidate indicates the association by positioning the choice over the gap (e.g., drag and drop) the system should ''snap'' it to the nearest position that satisfies these requirements. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22083', '11', '22083', NULL, NULL) +VALUES ('001217', 'Assessment Item Possible Response Correct Indicator', NULL, 'Indicates that the possible response is the correct response.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24183', '12', '24183', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001107', 'Assessment Item Body Hot Spot Interaction XML', NULL, 'A hotspot interaction is a graphical interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to select one or more of the areas (hotspots). The hotspot interaction should only be used when the spatial relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, choiceInteraction should be used instead with separate material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22084', '11', '22084', NULL, NULL) +VALUES ('001218', 'Assessment Performance Level Descriptive Feedback', NULL, 'A feedback message designed to be reported with the assessment performance level.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24184', '12', '24184', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001108', 'Assessment Item Body Graphic Order Interaction XML', NULL, 'A graphic order interaction is a graphic interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to impose an ordering on the areas (hotspots). The order hotspot interaction should only be used when the spatial relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, orderInteraction should be used instead with separate material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22085', '11', '22085', NULL, NULL) +VALUES ('001219', 'Assessment Result Diagnostic Statement', NULL, 'A statement intended for use by education professionals, using professional terminology, to interpret learner needs based on the scored/evaluated portion of an assessment. This statement may inform Descriptive Feedback given to the learner.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24185', '12', '24185', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001109', 'Assessment Item Body Select Point Interaction XML', NULL, 'Like hotspotInteraction, a select point interaction is a graphic interaction. The candidate''s task is to select one or more points. The associated response may have an areaMapping that scores the response on the basis of comparing it against predefined areas but the delivery engine must not indicate these areas of the image. Only the actual point(s) selected by the candidate shall be indicated. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22087', '11', '22087', NULL, NULL) +VALUES ('001223', 'Financial Aid Application Type', NULL, 'The type of financial application completed by an individual.', NULL, '1', 'Common Data Set definition. This element may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24186', '12', '24186', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001110', 'Assessment Item Body Select Point Interaction', NULL, 'A graphic associate interaction is a graphic interaction with a corresponding set of choices that are defined as areas of the graphic image. The candidate''s task is to associate the areas (hotspots) with each other. The graphic associate interaction should only be used when the graphical relationship of the choices with respect to each other (as represented by the graphic image) is important to the needs of the item. Otherwise, associateInteraction should be used instead with separate Material for each option. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22088', '11', '22088', NULL, NULL) +VALUES ('001224', 'Financial Need Determination Methodology', NULL, 'The methodology used to determine an individual''s financial need.', NULL, '1', 'Element should be used in combination with Financial Need.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24188', '12', '24188', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001111', 'Assessment Item Body Slider Interaction XML', NULL, 'The slider interaction presents the candidate with a control for selecting a numerical value between a lower and upper bound. It must be bound to a response variable with single cardinality with a base-type of either integer or float. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22089', '11', '22089', NULL, NULL) +VALUES ('001225', 'Early Learning Oldest Age Authorized to Serve', NULL, 'The oldest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24189', '12', '24189', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001112', 'Assessment Item Body Choice Interaction XML', NULL, 'The choice interaction presents a set of choices to the candidate. The candidate''s task is to select one or more of the choices, up to a maximum of maxChoices. The interaction is always initialized with no choices selected. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22090', '11', '22090', NULL, NULL) +VALUES ('001226', 'Language Translation Policy', NULL, 'Indicates that the organization or class/group has translation services available .', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24190', '12', '24190', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001114', 'Assessment Item Body Inline Choice Interaction XML', NULL, 'A inline choice is an inline interaction that presents the user with a set of choices, each of which is a simple piece of text. The candidate''s task is to select one of the choices. Unlike the Choice Interaction, the delivery engine must allow the candidate to review their choice within the context of the surrounding text.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22091', '11', '22091', NULL, NULL) +VALUES ('001142', 'Student Course Section Mark Final Indicator', NULL, 'Indicates that the mark is a final mark the learner has earned for the course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24191', '12', '24191', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001115', 'Assessment Item Body Media Interaction XML', NULL, 'The media interaction allows more control over the way the candidate interacts with a time-based media object and allows the number of times the media object was experienced to be reported in the value of the associated response variable, which must be of base-type integer and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22092', '11', '22092', NULL, NULL) +VALUES ('001227', 'Status Start Date', NULL, 'The year, month, day and optionally time, that a status became applicable.', 'YYYY-MM-DDTHH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24192', '12', '24192', 'Updated', 'Modify element definition, format and add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001116', 'Assessment Item Body Hottext Interaction XML', NULL, 'The hottext interaction presents a set of choices to the candidate represented as selectable runs of text embedded within a surrounding context, such as a simple passage of text. Like choiceInteraction, the candidate''s task is to select one or more of the choices, up to a maximum of maxChoices. The interaction is initialized from the defaultValue of the associated response variable, a NULL value indicating that no choices are selected (the usual case). The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22093', '11', '22093', NULL, NULL) +VALUES ('001228', 'Status End Date', NULL, 'The last year, month, day, and optionally time when a status applied.', 'YYYY-MM-DDTHH:MM:SS', '0', 'This element reflects the end date for a person''s status rather than that person''s participation in a program. Use Program Participation Exit Date if referring to a person''s participation in a program or receipt of services. Status dates and program participation dates don''t need to align, they are for different purposes. For example, for a homeless student the Status Begin Date and Status End Date elements are used to record when the student began being homeless to the date when the student ceased being homeless. The student may begin receiving services under a program for homeless students after becoming homeless and that program may continue to provide services after the student ceases to have the status of "homeless" and therefore have a Program Participation Start Date and Program Participation Exit Date that are different from the status dates. Students under the McKinney-Vento may continue to receive services until the end of a school year even if they become stably housed at some point during the year.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24193', '12', '24193', 'Updated', 'Modify element definition, format and add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001117', 'Assessment Item Body Order Interaction XML', NULL, 'In an order interaction the candidate''s task is to reorder the choices, the order in which the choices are displayed initially is significant. By default the candidate''s task is to order all of the choices but a subset of the choices can be requested using the maxChoices and minChoices attributes. When specified the candidate must select a subset of the choices and impose an ordering on them. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22094', '11', '22094', NULL, NULL) +VALUES ('001229', 'Maternal Guardian Education', NULL, 'The highest level of education attained by a person''s mother or maternal guardian', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24194', '12', '24194', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001118', 'Assessment Item Body Position Object Interaction XML', NULL, 'The position object interaction consists of a single image which must be positioned on another graphic image (the stage) by the candidate. Like selectPointInteraction, the associated response may have an areaMapping that scores the response on the basis of comparing it against predefined areas but the delivery engine must not indicate these areas of the stage. Only the actual position(s) selected by the candidate shall be indicated. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22095', '11', '22095', NULL, NULL) +VALUES ('001230', 'Paternal Guardian Education', NULL, 'The highest level of education attained by a person''s father or paternal guardian', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24195', '12', '24195', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001119', 'Assessment Item Body Text Entry Interaction XML', NULL, 'A textEntry interaction obtains a simple piece of text from the candidate. Like inlineChoiceInteraction, the delivery engine must allow the candidate to review their choice within the context of the surrounding text. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22096', '11', '22096', NULL, NULL) +VALUES ('001231', 'Individualized Program Service Plan Date Type', NULL, 'An indication of the significance of a date to an individualized program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24196', '12', '24196', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001120', 'Assessment Item Body Extended Text Interaction XML', NULL, 'An extended text interaction allows the candidate to enter an extended amount of text. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22097', '11', '22097', NULL, NULL) +VALUES ('001232', 'Individualized Program Date', NULL, 'The year, month and day on which the status of an individualized program for a student is significantly altered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24197', '12', '24197', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001121', 'Assessment Item Body End Attempt Interaction XML', NULL, 'The end attempt interaction is a special type of interaction which allows item authors to provide the candidate with control over the way in which the candidate terminates an attempt. The candidate can use the interaction to terminate the attempt (triggering response processing) immediately, typically to request a hint. It must be bound to a response variable with base-type boolean and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22098', '11', '22098', NULL, NULL) +VALUES ('001233', 'Individualized Program NonInclusion Minutes Per Week', NULL, 'The number of minutes per week that a student with disabilities is served in a special education setting separate from his or her non-disabled peers.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24198', '12', '24198', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001222', 'Assessment Item Body Upload Interaction XML', NULL, 'The upload interaction allows the candidate to upload a pre-prepared file representing their response. It must be bound to a response variable with base-type file and single cardinality. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22099', '11', '22099', NULL, NULL) +VALUES ('001234', 'Individualized Program Inclusion Minutes Per Week', NULL, 'The number of minutes per week that a student with disabilities is served in a regular classroom with his or her non-disabled peers.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24199', '12', '24199', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001123', 'Assessment Item Body Associate Interaction XML', NULL, 'An associate interaction presents candidates with a number of choices and allows them to create associations between them. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22100', '11', '22100', NULL, NULL) +VALUES ('001235', 'Individualized Program Transition Plan Type', NULL, 'The post-school transition plan for the student recorded on their Individualized Education Program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24200', '12', '24200', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001127', 'Assessment Need Type', NULL, 'A type of need identified for a learner as part of an assessment need profile.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22101', '11', '22101', NULL, NULL) +VALUES ('001236', 'Individualized Program Service Plan Date', NULL, 'The year, month and day on which the status of the service plan for a child is established or significantly altered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24201', '12', '24201', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001130', 'Assessment Participant Session Security Issue', NULL, 'Describes an issue related to the security of a testing instrument identified during a specific instance of delivering an assessment to a specific person during a specific time period.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22102', '11', '22102', NULL, NULL) +VALUES ('001237', 'Individualized Program Service Plan Meeting Location', NULL, 'The place in which a child''s service plan meeting is held.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24202', '12', '24202', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001131', 'Assessment Item APIP Response Processing Template URL', NULL, 'These templates are described using the processing language defined in IMS Global APIP specification and are distributed (in XML form) along with it. Delivery engines that support generalized response processing do not need to implement special mechanisms to support them as a template file can be parsed directly while processing the assessment item that refers to it. This element provides the URL for the template.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22103', '11', '22103', NULL, NULL) +VALUES ('001238', 'Individualized Program Service Plan Meeting Participants', NULL, 'The position titles of individuals who attend the service plan meeting.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24203', '12', '24203', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001132', 'Assessment Item APIP Response Processing XML', NULL, 'Response processing is the process by which the Delivery Engine assigns outcomes based on the learner''s responses. The outcomes may be used to provide feedback to the learner Feedback is either provided immediately following the end of the learner''s attempt or it is provided at some later time, perhaps as part of a summary report on the item session. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22104', '11', '22104', NULL, NULL) +VALUES ('001239', 'Individualized Program Service Plan Signed By', NULL, 'The position titles of individuals who sign a written service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24204', '12', '24204', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001133', 'Assessment Item APIP Response Declaration XML', NULL, 'Response declarations state what the response variables include. The response declaration may assign an optional correct response. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22105', '11', '22105', NULL, NULL) +VALUES ('001240', 'Individualized Program Service Plan Signature Date', NULL, 'The year, month and day on which the service plan document is signed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24205', '12', '24205', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001134', 'Assessment Item APIP Outcome Declaration XML', NULL, 'Outcome variables are declared by outcome declarations. Their value is set either from a default given in the declaration itself or by a responseRule during response processing. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22106', '11', '22106', NULL, NULL) +VALUES ('001241', 'Individualized Program Service Plan Reevaluation Date', NULL, 'Date student will be reevaluated for continued placement in a support program(s).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24207', '12', '24207', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001135', 'Assessment Item APIP Template Declaration XML', NULL, 'Template declarations declare item variables that are to be used specifically for the purposes of cloning items. They can have their value set only during template processing. They are referred to within the item body in order to individualize the clone and possibly also within the response Processing rules if the cloning process affects the way the item is scored. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22107', '11', '22107', NULL, NULL) +VALUES ('001242', 'Special Education Full Time Equivalency', 'Special Education FTE', 'Calculated ratio of time the student is in a special education setting. Values range from 0.00 to 1.00. If the student is in a special education setting 25% of the time, the value is .25; if 100% of the time, the value is 1.00.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24208', '12', '24208', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001136', 'Assessment Item APIP Template Processing XML', NULL, 'Template processing consists of one or more template rules that are followed by the cloning engine or delivery system in order to assign values to the template variables. Template processing is identical in form to responseProcessing except that the purpose is to assign values to template variables, not outcome variables. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22108', '11', '22108', NULL, NULL) +VALUES ('001243', 'Program Participation Status', NULL, 'The current status of the student''s program participation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24209', '12', '24209', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001137', 'Assessment Item APIP Modal Feedback XML', NULL, 'Modal feedback is shown to the candidate directly following response processing. The value of an outcome variable is used in conjunction with the showHide and identifier attributes to determine whether or not the feedback is shown in a similar way to feedbackElement. The XML from the IMS Global APIP Specification would be included.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22109', '11', '22109', NULL, NULL) +VALUES ('001244', 'Program Gifted Eligibility Criteria', NULL, 'State/local code used to determine a student''s eligibility for Gifted/Talented program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24210', '12', '24210', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001138', 'Assessment Item APIP Item Body XML', NULL, 'The item body contains the text, graphics, media objects, and interactions that describe the item''s content and information about how it is structured. The body is presented by combining it with stylesheet information, either explicitly or implicitly using the default style rules of the delivery or authoring system. This element contains the appropriate XML from the IMS Global APIP Specification defining the various item body interactions.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22110', '11', '22110', NULL, NULL) +VALUES ('001245', 'Credential Definition Category System', 'Credential Category System', 'The system that defines the categories of the qualification, achievement, personal or organizational quality, or aspect of an identity used in Credential Category Type.', 'Alphanumeric - 30 characters maximum', '0', 'This element recognizes formal adoption of categories for the Achievement Category Type to aid in comparability of data when a formally adopted vocabulary is used.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24211', '12', '24211', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001139', 'Assessment Item Adaptive Indicator', NULL, 'This indicator determines whether an assessment item is an adaptive item.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22111', '11', '22111', NULL, NULL) +VALUES ('001246', 'Learning Resource Education Level ', NULL, 'The education level, grade level or primary instructional level at which a Learning Resource is intended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24212', '12', '24212', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001152', 'Assessment Participant Session Platform User Agent', NULL, ' A list of product tokens (keywords) with optional comments that identifies the client hardware and software with which the assessment was delivered to the student during the assessment session.', 'Alphanumeric - 512 characters maximum', '0', 'Implementation Note: The recommended approach is to store the User-Agent string returned as part of an HTTP header. For example, an assessment session delivery via iPad might have "Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Mobile/7B405"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22112', '11', '22112', NULL, NULL) +VALUES ('001248', 'Immunization Type', NULL, 'An indication of the type of immunization that an individual has satisfactorily received. (Note: The International Classification of Diseases (ICD) is maintained by the World Health Organization. The ICD is revised periodically to incorporate changes in the medical field, the most updated and detailed list of International Statistical Classification of Diseases and Related Health Problems can be found at http://www.who.int/classifications/apps/icd/icd10online).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24214', '12', '24214', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001153', 'Credential Definition Criteria URL', 'Credential Criteria URL', 'The Uniform Resource Locator (URL) for the unique address of a web page describing the competency-based completion criteria for the qualification, achievement, personal or organizational quality, or aspect of an identity.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22113', '11', '22113', NULL, NULL) +VALUES ('001249', 'Competency Definition Notes', 'Learning Standard Item Notes, Competency Item Notes', 'Information about the derivation of a Competency Definition Statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24215', '12', '24215', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001154', 'Competency Definition Text Complexity Minimum Value', 'Learning Standard Item Text Complexity Minimum Value, Competency Item Text Complexity Minimum Value', 'The minimum value in the range of text complexity applicable to a language competency definition using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22114', '11', '22114', NULL, NULL) +VALUES ('001250', 'Competency Definition Version', 'Learning Standard Item Version, Competency Item Version', 'A label assigned by the publisher indicating the version of the competency framework statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24216', '12', '24216', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001155', 'Competency Definition Text Complexity Maximum Value', 'Learning Standard Item Text Complexity Maximum Value, Competency Item Text Complexity Maximum Value', 'The maximum value in the range of text complexity applicable to a language competency definition using the scaling system defined by Text Complexity System, e.g. Lexile(tm).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22115', '11', '22115', NULL, NULL) +VALUES ('001251', 'Assessment Item Response Theory Parameter A', NULL, 'The Item Response Theory value representing the discrimination of the item. The a parameter is found by taking the slope of the line tangent to the item characteristic curve at the inflection point, B. The parameter is the steepness of the curve at its steepest point.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24217', '12', '24217', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001157', 'Accommodation Other Description', NULL, 'The description of the accommodation when ''Accommodation Type'' is set to ''Other''.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22116', '11', '22116', NULL, NULL) +VALUES ('001252', 'Assessment Item Response Theory Parameter B', NULL, 'The Item Response Theory value representing the difficulty of the item. It is the Theta value for the location of the inflection point of the item characteristic curve.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24218', '12', '24218', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001158', 'Assessment Item Interaction Type', NULL, 'The assessment item body interaction type as defined by IMS Global specifications.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22117', '11', '22117', NULL, NULL) +VALUES ('001253', 'Assessment Item Response Theory Parameter Difficulty Category', NULL, 'A category for the difficulty of the item based on the Item Response Theory value.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24219', '12', '24219', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001162', 'Assessment Registration Test Attempt Identifier', NULL, 'A unique identifier for the test attempt assigned by the delivery system.', 'Alphanumeric - 40 characters maximum', '0', 'For paper-based tests this is typically a batch/stack/serial number and for online tests it is likely a unique internal identifier. Used to locate the original attempt.

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22119', '11', '22119', NULL, NULL) +VALUES ('001254', 'Assessment Item Response Theory Parameter C', NULL, 'The Item Response Theory value for multiple choice items representing the guessing of the item. The c parameter is a lower asymptote. It is the low point of the curve as it moves to negative infinity on the horizontal axis. You can think of c as the probability that a chicken would get the item right.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24220', '12', '24220', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001163', 'Credential Award Start Date', 'Credential Start Date', 'The date on which the qualification, achievement, personal or organizational quality, or aspect of an identity was conferred.', 'YYYY-MM-DD', '0', 'Diploma or Credential Award Date is the same concept but used when only month and year are known or needed.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22120', '11', '22120', NULL, NULL) +VALUES ('001255', 'Assessment Item Response Theory Parameter D1', NULL, 'For polytomous assessment items with more than two possible responses, this is the item response theory value representing the threshold between the first and second item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24221', '12', '24221', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001164', 'Credential Award End Date', 'Credential End Date', 'The date, if any, on which the qualification, achievement, personal or organizational quality, or aspect of an identity expires or requires renewal.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22121', '11', '22121', NULL, NULL) +VALUES ('001256', 'Assessment Item Response Theory Parameter D2', NULL, 'For polytomous assessment items with more than two possible responses, this is the item response theory value representing the threshold between the second and third item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24222', '12', '24222', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001168', 'Authentication Identity Provider Name', NULL, 'The name of a provider that can authenticate the identity of an person.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22122', '11', '22122', NULL, NULL) +VALUES ('001257', 'Assessment Item Response Theory Parameter D3', NULL, 'For polytomous assessment items with more than three possible responses, this is the item response theory value representing the threshold between the third and fourth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24223', '12', '24223', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001169', 'Authentication Identity Provider URI', NULL, 'The Uniform Resource Identifier (URI) of the Authentication Identity Provider.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22123', '11', '22123', NULL, NULL) +VALUES ('001258', 'Assessment Item Response Theory Parameter D4', NULL, 'For polytomous assessment items with more than four possible responses, this is the item response theory value representing the threshold between the fourth and fifth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24224', '12', '24224', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001170', 'Authentication Identity Provider Login Identifier', NULL, 'The login identifier for the person for the specified Authentication Identity Provider.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22124', '11', '22124', NULL, NULL) +VALUES ('001259', 'Assessment Item Response Theory Parameter D5', NULL, 'For polytomous assessment items with more than five possible responses, this is the item response theory value representing the threshold between the fifth and sixth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24225', '12', '24225', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001171', 'Authentication Identity Provider Start Date', NULL, 'The date on which the an associated person may begin to use the specified Authentication Identity Provider to authenticate identity.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22125', '11', '22125', NULL, NULL) +VALUES ('001260', 'Assessment Item Response Theory Parameter D6', NULL, 'For polytomous assessment items with more than six possible responses, this is the item response theory value representing the threshold between the sixth and seventh item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24226', '12', '24226', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001172', 'Authentication Identity Provider End Date', NULL, 'The date after which the an associated person is no longer allowed to use the specified Authentication Identity Provider to authenticate identity.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22126', '11', '22126', NULL, NULL) +VALUES ('001261', 'Assessment Item Linking Item Indicator', NULL, 'Indicates that the item is intended to be administered in two different grades for the goal of establishing cross grade comparison.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24227', '12', '24227', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001173', 'Authorization Application Name', NULL, 'The name of a data system or application which an authenticated person may access.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22127', '11', '22127', NULL, NULL) +VALUES ('001262', 'Assessment Item Response Theory Point Biserial Correlation Value', NULL, 'The correlation between correct answers on this item and total correct answers on the test during a previous administration. ', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24228', '12', '24228', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001174', 'Authorization Application URI', NULL, 'The Uniform Resource Identifier (URI) of a data system or application which an authenticated person may access.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22128', '11', '22128', NULL, NULL) +VALUES ('001263', 'Assessment Item Release Status', NULL, 'Indicates that the assessment item has been released to the public.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24229', '12', '24229', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001175', 'Authorization Application Role Name', NULL, 'The user role for which the person is allowed.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22129', '11', '22129', NULL, NULL) +VALUES ('001264', 'Assessment Item Response Theory DIF Value', NULL, 'A value representing the Differential Item Functioning, also referred to as measurement bias, for the assessment item. The value represents differences in the functioning of the item across groups which are matched on the attribute being measure by the item. The value is calculated using Mantel-Haenszel approach or a comparable algorithm so that a value of 1.0 represents no bias.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24230', '12', '24230', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001176', 'Authorization Start Date', NULL, 'The date on which the an associated person is authorized to start using the application with the specified role.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22130', '11', '22130', NULL, NULL) +VALUES ('001265', 'Assessment Item Response Theory Kappa Value', NULL, 'The measure used to represent the degree of agreement among raters.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24231', '12', '24231', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001177', 'Authorization End Date', NULL, 'The date after which the an associated person is no longer allowed to use the application with the specified role.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22131', '11', '22131', NULL, NULL) +VALUES ('001266', 'Assessment Item Response Theory Kappa Algorithm', NULL, 'The algorithm used to derive the Assessment Item Kappa Value', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24232', '12', '24232', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001181', 'Assessment Item Bank Identifier', NULL, 'If the assessment is provided with an item bank, then this identifies the item bank: a unique code or number used by the item banking system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22132', '11', '22132', NULL, NULL) +VALUES ('001267', 'Assessment Item Body Text', NULL, 'The complete text of an assessment item including all applicable parts such as stimulus, stem, and possible response options presented.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24233', '12', '24233', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001182', 'Assessment Item Bank Name', NULL, 'If the assessment is provided with an item bank, then this is the name of the item bank.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22133', '11', '22133', NULL, NULL) +VALUES ('001268', 'Assessment Item Stimulus', NULL, ' The text, source (e.g., video clip), and/or graphic about which the assessment item is written. The stimulus provides the context of the item/task to which the student must respond.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24234', '12', '24234', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001183', 'Assessment Form Version', NULL, 'The version number of the Assessment Form.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22134', '11', '22134', NULL, NULL) +VALUES ('001269', 'Assessment Item Possible Response Option', NULL, 'The possible response presented to the participant within a selected-response/multiple-choice assessment item.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24235', '12', '24235', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001184', 'Learning Resource Published Date', NULL, 'The published date of an educational resource, such as instructional media, an assessment form, or section of an assessment form.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22135', '11', '22135', NULL, NULL) +VALUES ('001270', 'Session Code', NULL, 'A local code given to the session, usually for a session that represents a term within the school year such as a marking term.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24236', '12', '24236', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001185', 'Assessment Form Accommodation List', NULL, 'The human readable list of one or more of the specific accommodations available. If no accommodations are provided, then this list will not be present.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22136', '11', '22136', NULL, NULL) +VALUES ('001271', 'Session Description', NULL, 'A short description of the Session.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24237', '12', '24237', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001186', 'Intended Administration Start Date', NULL, 'The beginning date of the time period in which the form is intended to be administered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22137', '11', '22137', NULL, NULL) +VALUES ('001272', 'Session Marking Term Indicator', NULL, 'Indicates that the session is a marking term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24238', '12', '24238', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001187', 'Assessment Form Intended Administration End Date', NULL, 'The ending date of the time period in which the assessment form is intended to be administered.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22138', '11', '22138', NULL, NULL) +VALUES ('001273', 'Session Scheduling Term Indicator', NULL, 'Indicates that the session is a scheduling term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24239', '12', '24239', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001188', 'Assessment Form Platforms Supported', NULL, 'A human readable list of delivery platforms the form will support.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22139', '11', '22139', NULL, NULL) +VALUES ('001274', 'Session Attendance Term Indicator', NULL, 'Indicates that the session is an attendance term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24240', '12', '24240', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001189', 'Assessment Form Section Version', NULL, 'The version number of the Assessment Form Section.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22140', '11', '22140', NULL, NULL) +VALUES ('001275', 'Calendar Event Date', NULL, 'The date of the scheduled or unscheduled calendar event.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24241', '12', '24241', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001190', 'Identification System for Assessment Form Section', NULL, 'A coding scheme that is used for identification of an Assessment Form Section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22141', '11', '22141', NULL, NULL) +VALUES ('001276', 'Calendar Event Day Name', NULL, 'A name used for the day of the calendar event.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24242', '12', '24242', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001191', 'Assessment Form Section Identifier', NULL, 'A unique number or alphanumeric code assigned to the Assessment Form Section using the system specified by Identification System for Assessment Form Section.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22142', '11', '22142', NULL, NULL) +VALUES ('001277', 'Accommodations Needed Type', NULL, 'Codes identifying the set of health accommodations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24243', '12', '24243', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001192', 'Assessment Form Section Time Limit', NULL, 'If this section is timed, then this will identify the maximum amount of time the test taker can spend within this section.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22143', '11', '22143', NULL, NULL) +VALUES ('001278', 'Advanced Placement Course Code', 'AP Course Code', 'Course areas for advanced placement or credit. For a list of codes see http://apcentral.collegeboard.com/apc/public/courses/teachers_corner/index.html .', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24244', '12', '24244', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001193', 'Assessment Form Section Sealed', NULL, 'Indicates this section is sealed, meaning the test taker cannot enter the section until authorized by the proctor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22144', '11', '22144', NULL, NULL) +VALUES ('001279', 'Professional Development Activity Education Levels Addressed', NULL, 'An age group or education level to which the professional development activity''s content pertains.', NULL, '1', 'Multiple options may be selected.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24245', '12', '24245', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001194', 'Assessment Form Section Reentry', NULL, 'Indicates that this section can be re-entered, meaning the test taker can return to this section after they have left the section. A common example of this is a two section test where one section does not allow the use of a calculator and the other does. Typically the test taker cannot return to the non-calculator section after they have used a calculator.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22145', '11', '22145', NULL, NULL) +VALUES ('001280', 'Agency Course Identifier', NULL, 'The course identifier as it may be recorded at the regional or state level to conform to a standardized course classification system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24246', '12', '24246', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001195', 'Assessment Asset Version', NULL, 'A version number or label defined by the publisher.', 'Alphanumeric - 30 characters maximum', '0', 'In some use cases a date, such as Learning Resource Date Created may be used as an alternative to a version number. Each use case may adopt different rules depending on the application requirements for maintenance of current version only or the multiple objects/records representing the complete version history.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22146', '11', '22146', NULL, NULL) +VALUES ('001281', 'Allergy Reaction Description', NULL, 'Describes symptoms know to be associated with a person''s reaction to an allergen.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24247', '12', '24247', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001196', 'Assessment Asset Type', NULL, 'Specifies a predominant type of assessment asset represented by the Learning Resource. Assessment assets represent any content used to compose an assessment item, is referenced by an item but not part of the item content itself, or is content that is included as part of a section within an assessment form. Assets can be static content such as art work or dynamic assets such as calculators.', NULL, '1', 'The standard option set may be extended based on local and implementation-specific requirements. Commonly used options may be submitted for inclusion in future versions of CEDS.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22147', '11', '22147', NULL, NULL) +VALUES ('001282', 'Allergy Severity', NULL, 'The level of severity of a person''s reaction to an allergen.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24248', '12', '24248', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001197', 'Assessment Asset Published Date', NULL, 'The date that this version of the asset was made available for use.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22148', '11', '22148', NULL, NULL) +VALUES ('001283', 'Allergy Type', NULL, 'Type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', NULL, '1', 'This material includes SNOMED Clinical Terms® (SNOMED CT®) which is used by permission of the International Health Terminology Standards Development Organization (IHTSDO). All rights reserved. SNOMED CT®, was originally created by The College of American Pathologists. “SNOMED” and “SNOMED CT” are registered trademarks of the IHTSDO.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24249', '12', '24249', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001198', 'Assessment Asset Identifier', NULL, 'A unique code identifying the Assessment Asset provided by the authoring system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22149', '11', '22149', NULL, NULL) +VALUES ('001284', 'Assessment Item Result XML', NULL, 'The assessment item result formatted according to the IMS Global QTI Specification.', 'Alphanumeric', '0', 'See http://www.imsglobal.org/question/qtiv2p1/imsqti_resultv2p1.html#element10818', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24250', '12', '24250', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001199', 'Assessment Asset Identifier Type', NULL, 'The type of identifier that is provided for this asset.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22150', '11', '22150', NULL, NULL) +VALUES ('001287', 'Blended Learning Model Type', NULL, 'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.', NULL, '1', 'This may be an attribute of a Course (as designed) or a Class Section (as delivered). It also may be attributed to a school, institution, or program for "whole-school" blended models.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24253', '12', '24253', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001200', 'Assessment Asset Name', NULL, 'The name of the Assessment Asset.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22151', '11', '22151', NULL, NULL) +VALUES ('001288', 'Career Cluster', NULL, 'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', NULL, '1', 'Options from O*NET OnLine an application that was created for the general public to provide broad access to the O*NET database of occupational information. O*NET OnLine offers a variety of search options and occupational data, while My Next Move is a streamlined application for students and job seekers. Both applications were developed for the U.S. Department of Labor by the National Center for O*NET Development. See onetonline.org for more information.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24254', '12', '24254', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001201', 'Assessment Asset Owner', NULL, 'The name of the ownership rights holder or publisher of the asset.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22152', '11', '22152', NULL, NULL) +VALUES ('001289', 'Career Education Plan Date', NULL, 'The date on which an individual''s professional development career plan was last updated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24255', '12', '24255', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001202', 'Assessment Asset Content XML', NULL, 'XML encoded in UTF-8 representing the content of the Assessment Asset.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22153', '11', '22153', NULL, NULL) +VALUES ('001290', 'Career Education Plan Type', NULL, 'An indication of whether an individual completed an individualized guidance and counseling plan', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24256', '12', '24256', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001203', 'Assessment Asset Content Mime Type', NULL, 'MIME type to specifically indicate the Assessment Asset content type.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22154', '11', '22154', NULL, NULL) +VALUES ('001291', 'Career Pathways Program Participation Indicator', NULL, 'An indication of an individual who is participating in a program that is a component of or leads to a specific or recognized career pathway, as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24257', '12', '24257', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001204', 'Assessment Asset Content URL', NULL, 'The Uniform Resource Locator (URL) location of the external Assessment Asset content.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22155', '11', '22155', NULL, NULL) +VALUES ('001292', 'Charter School Authorizer Type', NULL, 'The type of agency that authorized the establishment or continuation of a charter school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24258', '12', '24258', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001143', 'Learning Resource Description', NULL, ' A short description of the Learning Resource.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22156', '11', '22156', NULL, NULL) +VALUES ('001293', 'Charter School Approval Year', NULL, 'The school year in which a charter school was initially approved.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24259', '12', '24259', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001144', 'Learning Resource Copyright Holder Name', NULL, 'The name(s) of the person(s) or organization(s) holding the copyright for the Learning Resource.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22157', '11', '22157', NULL, NULL) +VALUES ('001296', 'Correctional Education Facility Type', NULL, 'The type of facility in which an inmate receives correctional education services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24262', '12', '24262', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001145', 'Learning Resource Copyright Year', NULL, 'The copyright year for the Learning Resource.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22158', '11', '22158', NULL, NULL) +VALUES ('001297', 'Correctional Education Reentry Services Participation Indicator', NULL, 'An indication of whether an adult correctional education student who receives instructional services (e.g., life skills, cognitive restructuring, etc.) to support reentry into society.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24263', '12', '24263', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001146', 'Learning Resource Concept Keyword', NULL, 'The significant topicality of the Learning Resource using free-text keywords and phrases.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22159', '11', '22159', NULL, NULL) +VALUES ('001298', 'Course Academic Grade Scale Code', NULL, 'The grading scale used by an academic educational institution for an academic course.', 'Integer - 2 digits with leading zeros', '0', 'Based on the American Medical Colleges Admissions Services (AMCAS) grade scale, values 01 through 99. See Appendix E of the PESC XML High School Transcript Implementation Guide for a complete list of code values. 3-digit values (500 and above) established in earlier versions of the standard for miscellaneous grades are deprecated.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24264', '12', '24264', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001147', 'Peer Rating System Name', NULL, 'The name of the scaling system used to specify the Peer Rating.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22160', '11', '22160', NULL, NULL) +VALUES ('001299', 'Course Academic Grade Status Code', NULL, 'Additional information regarding the context of the given grade.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24265', '12', '24265', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001148', 'Learning Resource Peer Rating Value', NULL, 'An individual score, rating or level assigned to a Learning Resource by a person within the boundaries set by a Peer Rating System that may be aggregated to derive an overall score for the learning resource.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22161', '11', '22161', NULL, NULL) +VALUES ('001300', 'Course Add Date', NULL, 'The date an individual was added to an academic course at a school.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24266', '12', '24266', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001149', 'Peer Rating System Maximum Value', NULL, ' The maximum value allowed by the Peer Rating System.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22162', '11', '22162', NULL, NULL) +VALUES ('001301', 'Course Applicable Education Level', NULL, 'The education level, grade level or primary instructional level at which a course is intended.', NULL, '1', 'This element is repeatable for most use cases. Examples: (1.) SCED identifiers may specify a grade span of two or more grades. (2) A postsecondary course designed to qualify a student for an associates degree and professional certification could be repeated with both of those options.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24267', '12', '24267', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001150', 'Peer Rating System Minimum Value', NULL, 'The minimum value allowed by the Peer Rating System.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22163', '11', '22163', NULL, NULL) +VALUES ('001302', 'Course Certification Description', NULL, 'A description of the certification or recognition associated with this course (ex. Networking, CAD, etc.)', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24268', '12', '24268', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001151', 'Peer Rating System Optimum Value', NULL, 'The optimum value allowed by the Peer Rating System. The optimum or best rating may be the maximum value, the minimum value, or something in between.', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22164', '11', '22164', NULL, NULL) +VALUES ('001303', 'Course Credit Basis Type', NULL, 'The type of enrollment associated with the credit hours for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24269', '12', '24269', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001156', 'Organization Type', NULL, 'The type of educational organization or entity.', NULL, '1', 'This element is used in data models that are normalized and identifies the primary role of the organization.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22165', '11', '22165', 'Updated', 'Added new options to existing option set.') +VALUES ('001304', 'Course Credit Level Type', NULL, 'The level of credit associated with the credit hours earned for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24270', '12', '24270', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001122', 'NAEP Aspects of Reading', NULL, 'Aspects of reading defined by the National Assessment of Educational Progress (NAEP 2005b Framework).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22166', '11', '22166', NULL, NULL) +VALUES ('001305', 'Course Drop Date', NULL, 'The date on which the individual drops or withdraws from the course.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24271', '12', '24271', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001160', 'Virtual Indicator', NULL, 'An indication that a childcare, early education, or early learning program, school, institution, program, or course section focuses primarily on instruction in which children and teachers are separated by time and/or location and interact through the use of computers and/or telecommunications technology.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22167', '11', '22167', 'Updated', 'Added elements to DES contexts to support Early Learning needs. Changed definition of element to support other domains.') +VALUES ('001306', 'Course Funding Program', NULL, 'A program through which the course is funded.', 'Alphanumeric - 30 characters maximum', '0', 'This may be a program targeted to a specific student population (e.g. SPED, ESOL) and the funding guidelines may specify that all or some of the students in the course are members of the subgroup.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24272', '12', '24272', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001161', 'Course Section Instructional Delivery Mode', NULL, 'The primary setting or medium of delivery for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22168', '11', '22168', NULL, NULL) +VALUES ('001307', 'Course Honors Type', NULL, 'An indication that the course is or can be counted as an honors course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24273', '12', '24273', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001165', 'Goal Start Date', NULL, 'The date on which the goal becomes active.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22169', '11', '22169', NULL, NULL) +VALUES ('001308', 'Course Instruction Method', NULL, 'The primary method of instruction used for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24274', '12', '24274', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001166', 'Goal End Date', NULL, 'The date on which the goal expires or has been achieved.', 'YYYY-MM-DD', '0', 'For federal reporting use cases some codes are required to be reported and others are not. All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22170', '11', '22170', NULL, NULL) +VALUES ('001309', 'Course Instruction Site Name', NULL, 'The name of the location at which the course is taught.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24275', '12', '24275', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001167', 'Peer Rating Date', NULL, 'The date on which the Peer Rating was entered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22171', '11', '22171', NULL, NULL) +VALUES ('001310', 'Course Instruction Site Type', NULL, 'An indication of the type of location at which the course is taught.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24276', '12', '24276', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001205', 'Facility Building Name', NULL, 'The full, legally accepted or popularly accepted name of a building.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22172', '11', '22172', NULL, NULL) +VALUES ('001311', 'Course Interaction Mode', NULL, 'The primary type of interaction, synchronous or asynchronous, defined for the course.', NULL, '1', 'This may be an attribute of a Course (as designed) or an instance of a Class Section (as delivered).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24277', '12', '24277', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001206', 'Building Use Type', NULL, 'How a building is principally used, regardless of its original design.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22173', '11', '22173', NULL, NULL) +VALUES ('001312', 'Course Level Type', NULL, 'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24278', '12', '24278', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001207', 'Facility Space Description', NULL, 'A description of the space, as determined by its physical layout and built-in systems and equipment.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22174', '11', '22174', NULL, NULL) +VALUES ('001313', 'Course Narrative Explanation Grade', NULL, 'The narrative of the grade awarded to an individual in an academic course in those cases where a course does not receive a letter or numeric grade included in the grading scale of the Course Academic Grade Qualifier.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24279', '12', '24279', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001208', 'Facility Space Use Type', NULL, 'The primary use of a space, as determined by its physical layout and built-in systems and equipment, regardless of its original design.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22175', '11', '22175', NULL, NULL) +VALUES ('001314', 'Course Number', NULL, 'The official reference number portion of a course identifier. This number normally designates the level of the course as well as the level of the individual expected to enroll in the course.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24280', '12', '24280', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001209', 'County ANSI Code', NULL, 'County code as defined for the identification of counties and equivalent areas of the United States, Puerto Rico, and the insular areas as established by the American National Standards Institute (ANSI) Inter-National Committee for Information Technology Standards (INCITS) in specification BSR INCITS 31-200x or more current updates. See https://www.census.gov/library/reference/code-lists/ansi.html#par_statelist.', 'Integer - 5 digits with leading zeros', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22176', '11', '22176', NULL, NULL) +VALUES ('001315', 'Course Section Number', NULL, 'The number assigned to differentiate among distinct occurrences of courses that have the same course abbreviation and number but are considered to be different courses.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24281', '12', '24281', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001210', 'Exit Grade Level', NULL, 'The grade level or primary instructional level at which a student exits a school, program, or an educational institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22177', '11', '22177', 'Updated', 'Added new option to the existing option set.') +VALUES ('001316', 'Course Total', NULL, 'The total number of courses listed on a transcript. Used as a check digit for integrity purposes.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24282', '12', '24282', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001211', 'Weapon Type', NULL, 'Identifies the type of weapon used during an incident.', NULL, '1', 'See Forum Guide to Crime, Violence, and Discipline Incident Data http://nces.ed.gov/pubs2011/2011806.pdf Forum Guide.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22178', '11', '22178', NULL, NULL) +VALUES ('001317', 'Credit Hours Applied Other Program', NULL, 'Codes identifying the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24283', '12', '24283', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001212', 'Assessment Session Staff Role Type', NULL, 'The type of role served related to the administration of an assessment session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22179', '11', '22179', NULL, NULL) +VALUES ('001318', 'Career and Technical Education Instructor Industry Certification', 'CTE Instructor Industry Certification', 'An indication of whether a Career and Technical Education (CTE) instructor holds a current industry-recognized credential related to their teaching field.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24284', '12', '24284', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001214', 'Assessment Form Subtest Tier', NULL, 'In a hierarchy of subtests, this element represents the level of the sub test in the hierarchy. The top tier and default is zero.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22180', '11', '22180', NULL, NULL) +VALUES ('001319', 'Disability Condition Status Type', 'Disability Condition Status Code', 'A code indicating the disability condition status.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24285', '12', '24285', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001215', 'Assessment Form Subtest Container Only', NULL, 'In a hierarchy of subtests, this indicates that this tier is only used as a level in the hierarchy and does not represent a scoring model.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22181', '11', '22181', NULL, NULL) +VALUES ('001320', 'Disability Condition Type', NULL, 'Codes identifying the set of disability conditions.', NULL, '1', 'Disability Conditional Type may be used in K12 to specify a disability other than Primary Disability Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24286', '12', '24286', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001216', 'Learning Resource Version', NULL, 'Defines the version of the learning resource as defined by the publisher.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22182', '11', '22182', NULL, NULL) +VALUES ('001321', 'Disability Determination Source Type', NULL, 'Codes identifying the set of disability determination sources.', NULL, '1', 'Disability Conditional Type may be used in K12 to specify a disability other than Primary Disability Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24287', '12', '24287', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001217', 'Assessment Item Possible Response Correct Indicator', NULL, 'Indicates that the possible response is the correct response.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22183', '11', '22183', NULL, NULL) +VALUES ('001322', 'Disciplinary Action IEP Placement Meeting Indicator', NULL, 'An indication as to whether an offense and/or disciplinary action resulted in a meeting of a student’s Individualized Education Program (IEP) team to determine appropriate placement.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24288', '12', '24288', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001218', 'Assessment Performance Level Descriptive Feedback', NULL, 'A feedback message designed to be reported with the assessment performance level.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22184', '11', '22184', NULL, NULL) +VALUES ('001351', 'Financial Accounting Period Budgeted Value', NULL, 'The budgeted value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24318', '12', '24318', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001219', 'Assessment Result Diagnostic Statement', NULL, 'A statement intended for use by education professionals, using professional terminology, to interpret learner needs based on the scored/evaluated portion of an assessment. This statement may inform Descriptive Feedback given to the learner.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22185', '11', '22185', NULL, NULL) +VALUES ('001957', 'Number of Days Tardy', NULL, 'The number of days a person is tardy when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24948', '12', '24948', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001223', 'Financial Aid Application Type', NULL, 'The type of financial application completed by an individual.', NULL, '1', 'Common Data Set definition. This element may be repeated multiple times.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22186', '11', '22186', NULL, NULL) +VALUES ('001983', 'Number of Dependents Type', NULL, 'The student''s relationship to the dependents who live with the student or receive more than half of the student''s support', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24949', '12', '24949', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001224', 'Financial Need Determination Methodology', NULL, 'The methodology used to determine an individual''s financial need.', NULL, '1', 'Element should be used in combination with Financial Need.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22188', '11', '22188', NULL, NULL) +VALUES ('001982', 'Number of Household College Students', NULL, 'Number of people, including the student, who will attend at least half-time in the current academic year, a program that leads to a college degree or certificate', 'Integer - greater than or equal to 0', '0', 'This information is collected on the FAFSA', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24950', '12', '24950', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001225', 'Early Learning Oldest Age Authorized to Serve', NULL, 'The oldest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22189', '11', '22189', NULL, NULL) +VALUES ('001945', 'Personal Information Type', NULL, 'The type of personal information verified through the Personal Information Verification evidence.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24951', '12', '24951', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001226', 'Language Translation Policy', NULL, 'Indicates that the organization or class/group has translation services available .', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22190', '11', '22190', NULL, NULL) +VALUES ('001932', 'Primary Learning Device Access', NULL, 'An indication of whether the primary learning device is shared or not shared with another individual', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Is the student''s primary learning device shared with anyone else?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24952', '12', '24952', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001142', 'Student Course Section Mark Final Indicator', NULL, 'Indicates that the mark is a final mark the learner has earned for the course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22191', '11', '22191', NULL, NULL) +VALUES ('001931', 'Primary Learning Device Away From School', NULL, 'The type of device the student uses most often to complete learning activities away from school.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "What device does the student most often use to complete learning activities away from school?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24953', '12', '24953', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001227', 'Status Start Date', NULL, 'The year, month and day that a status became applicable to an individual.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22192', '11', '22192', NULL, NULL) +VALUES ('001933', 'Primary Learning Device Provider', NULL, 'The provider of the primary learning device.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Who provided the primary learning device to the student?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24954', '12', '24954', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001228', 'Status End Date', NULL, 'The last year, month and day when a status applied to an individual.', 'YYYY-MM-DD', '0', 'This element reflects the end date for a person''s status rather than that person''s participation in a program. Use Program Participation Exit Date if referring to a person''s participation in a program or receipt of services. Status dates and program participation dates don''t need to align, they are for different purposes. For example, for a homeless student the Status Begin Date and Status End Date elements are used to record when the student began being homeless to the date when the student ceased being homeless. The student may begin receiving services under a program for homeless students after becoming homeless and that program may continue to provide services after the student ceases to have the status of "homeless" and therefore have a Program Participation Start Date and Program Participation Exit Date that are different from the status dates. Students under the McKinney-Vento may continue to receive services until the end of a school year even if they become stably housed at some point during the year.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22193', '11', '22193', NULL, NULL) +VALUES ('001943', 'Race', NULL, 'The origins of a person.', NULL, '1', 'It is expected that a person may select more than one option with the exception of the options "Demographic Race Two or More Races" and "Race and Ethnicity Unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24955', '12', '24955', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001229', 'Maternal Guardian Education', NULL, 'The highest level of education attained by a person''s mother or maternal guardian', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22194', '11', '22194', NULL, NULL) +VALUES ('001974', 'Record Status Creator Entity', NULL, 'The type of entity that created or indicated the Record Status Type', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24956', '12', '24956', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001230', 'Paternal Guardian Education', NULL, 'The highest level of education attained by a person''s father or paternal guardian', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22195', '11', '22195', NULL, NULL) +VALUES ('001973', 'Record Status Date', NULL, 'The date the record was marked with the Record Status Type.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24957', '12', '24957', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001231', 'Individualized Program Service Plan Date Type', NULL, 'An indication of the significance of a date to an individualized program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22196', '11', '22196', NULL, NULL) +VALUES ('001972', 'Record Status Type', NULL, 'A process indicator of the level of stability, quality, and/or preparedness of the record.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24958', '12', '24958', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001232', 'Individualized Program Date', NULL, 'The year, month and day on which the status of an individualized program for a student is significantly altered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22197', '11', '22197', NULL, NULL) +VALUES ('001946', 'Role', NULL, 'A description of the way in which a person relates to an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24959', '12', '24959', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001233', 'Individualized Program NonInclusion Minutes Per Week', NULL, 'The number of minutes per week that a student with disabilities is served in a special education setting separate from his or her non-disabled peers.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22198', '11', '22198', 'Updated', 'Edited definition to fix mix up.') +VALUES ('001964', 'Source System Data Collection Identifier', NULL, 'The identifier specified by the source system that uniquely identifies the data collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24960', '12', '24960', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001234', 'Individualized Program Inclusion Minutes Per Week', NULL, 'The number of minutes per week that a student with disabilities is served in a regular classroom with his or her non-disabled peers.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22199', '11', '22199', 'Updated', 'Edited definition to fix mix up.') +VALUES ('001965', 'Source System Name', NULL, 'The name of the source system that provided the data within the collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24961', '12', '24961', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001235', 'Individualized Program Transition Plan Type', NULL, 'The post-school transition plan for the student recorded on their Individualized Education Program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22200', '11', '22200', NULL, NULL) +VALUES ('001959', 'Staff Compensation Annual Supplement', NULL, 'The annual sum of payments given to staff in addition to their regular wages.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24962', '12', '24962', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001236', 'Individualized Program Service Plan Date', NULL, 'The year, month and day on which the status of the service plan for a child is established or significantly altered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22201', '11', '22201', NULL, NULL) +VALUES ('001960', 'Staff Compensation Longevity', NULL, 'Compensation paid to a staff member based on their years of service.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24963', '12', '24963', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001237', 'Individualized Program Service Plan Meeting Location', NULL, 'The place in which a child''s service plan meeting is held.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22202', '11', '22202', NULL, NULL) +VALUES ('001958', 'Staff Compensation Source Type', NULL, 'The source for the staff compensation a person receives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24964', '12', '24964', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001238', 'Individualized Program Service Plan Meeting Participants', NULL, 'The position titles of individuals who attend the service plan meeting.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22203', '11', '22203', NULL, NULL) +VALUES ('001985', 'Staff Evaluation Part Name', NULL, 'The name of the component part that is being evaluated and scored.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24965', '12', '24965', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001239', 'Individualized Program Service Plan Signed By', NULL, 'The position titles of individuals who sign a written service plan.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22204', '11', '22204', NULL, NULL) +VALUES ('001987', 'Staff Evaluation Part Scale', NULL, 'The quantitative or qualitative range of possible scores/rating for a person''s performance on a component part (e.g., 0 - 10; Poor, Fair, Average, Good, Excellent).', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24966', '12', '24966', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001240', 'Individualized Program Service Plan Signature Date', NULL, 'The year, month and day on which the service plan document is signed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22205', '11', '22205', NULL, NULL) +VALUES ('001986', 'Staff Evaluation Part Score or Rating', NULL, 'The actual quantitative or qualitative assessment of a person''s performance on a component part that is being evaluated. ', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24967', '12', '24967', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001241', 'Individualized Program Service Plan Reevaluation Date', NULL, 'Date student will be reevaluated for continued placement in a support program(s).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22207', '11', '22207', NULL, NULL) +VALUES ('001963', 'Student School Affiliation State Defined Status', NULL, 'An indication of the nature of a student''s affiliation, as defined by the state, with a public school and used generally, but not exclusively, for the purpose of determining residency, funding, or accountability.', NULL, '1', 'This element should be used in conjunction with the Public School Residence Status and the Responsible School Type elements to create specificity about the role a school plays or should play in the education of the student.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24968', '12', '24968', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001242', 'Special Education Full Time Equivalency', 'Special Education FTE', 'Calculated ratio of time the student is in a special education setting. Values range from 0.00 to 1.00. If the student is in a special education setting 25% of the time, the value is .25; if 100% of the time, the value is 1.00.', 'Numeric - between 0 and 1, up to 2 digits', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22208', '11', '22208', NULL, NULL) +VALUES ('001940', 'WIOA Barriers to Employment', NULL, 'A self-identified barrier as defined by the Workforce Innovation and Opportunity Act (WIOA) that is presumed to affect placement of a participant in unsubsidized employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24969', '12', '24969', 'Updated', 'Add new option to option set, change option set, and add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001243', 'Program Participation Status', NULL, 'The current status of the student''s program participation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22209', '11', '22209', NULL, NULL) +VALUES ('001941', 'WIOA Career Services', NULL, 'An indication of whether or not the individual has received services as identified in sec. 134(c)(2) of the Workforce Innovation and Opportunity Act (WIOA) consisting of (a) basic career services, (b) individualized career services, or (c) follow-up services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24970', '12', '24970', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001244', 'Program Gifted Eligibility Criteria', NULL, 'State/local code used to determine a student''s eligibility for Gifted/Talented program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22210', '11', '22210', NULL, NULL) +VALUES ('001942', 'WIOA Training Services', NULL, 'An indication of whether or not the individual has received services as defined by the Workforce Innovation and Opportunity Act (WIOA), one or more courses or classes, or a structured regimen that provides the services in 20 CFR part 680.200 and leads to: (a) An industry-recognized certificate or certification, a certificate of completion of a registered apprenticeship, a license recognized by the State involved or the Federal Government, an associate or baccalaureate degree, or community college certificate of completion; (b) Consistent with § 680.350, a secondary school diploma or its equivalent; (c) Employment; or (d) Measurable skill gains toward a credential described in paragraph (a) or (b) of this section or employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24971', '12', '24971', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001245', 'Credential Definition Category System', 'Credential Category System', 'The system that defines the categories of the qualification, achievement, personal or organizational quality, or aspect of an identity used in Credential Category Type.', 'Alphanumeric - 30 characters maximum', '0', 'This element recognizes formal adoption of categories for the Achievement Category Type to aid in comparability of data when a formally adopted vocabulary is used.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22211', '11', '22211', NULL, NULL) +VALUES ('001999', 'Adjusted Capacity', NULL, 'The maximum number of participants that can be served in a program.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24972', '12', '24972', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001246', 'Learning Resource Education Level ', NULL, 'The education level, grade level or primary instructional level at which a Learning Resource is intended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22212', '11', '22212', NULL, NULL) +VALUES ('002000', 'Adjusted Capacity Reason Type', NULL, 'Identifies the reason for adjusted capacity in a program. ', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24973', '12', '24973', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001248', 'Immunization Type', NULL, 'An indication of the type of immunization that an individual has satisfactorily received. (Note: The International Classification of Diseases (ICD) is maintained by the World Health Organization. The ICD is revised periodically to incorporate changes in the medical field, the most updated and detailed list of International Statistical Classification of Diseases and Related Health Problems can be found at http://www.who.int/classifications/apps/icd/icd10online).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22214', '11', '22214', NULL, NULL) +VALUES ('001995', 'Assessment Type Administered to English Learners', NULL, 'The types of assessments administered to English Learners.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24974', '12', '24974', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001249', 'Competency Definition Notes', 'Learning Standard Item Notes, Competency Item Notes', 'Information about the derivation of a Competency Definition Statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22215', '11', '22215', NULL, NULL) +VALUES ('001994', 'Course Level Approval Indicator', NULL, 'An indication that there are school or program developed requirements for student participation in the course.', 'Option Set', '1', 'This element is used in conjunction with Course Level Characteristic.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24975', '12', '24975', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001250', 'Competency Definition Version', 'Learning Standard Item Version, Competency Item Version', 'A label assigned by the publisher indicating the version of the competency framework statement.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22216', '11', '22216', NULL, NULL) +VALUES ('002001', 'Early Learning Age 2 and Older Capacity', NULL, 'The maximum number of children ages two and above that can be served.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24976', '12', '24976', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001251', 'Assessment Item Response Theory Parameter A', NULL, 'The Item Response Theory value representing the discrimination of the item. The a parameter is found by taking the slope of the line tangent to the item characteristic curve at the inflection point, B. The parameter is the steepness of the curve at its steepest point.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22217', '11', '22217', NULL, NULL) +VALUES ('002002', 'Early Learning Age Under 2 Capacity', NULL, 'The maximum number of children under the age of two that can be served.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24977', '12', '24977', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001252', 'Assessment Item Response Theory Parameter B', NULL, 'The Item Response Theory value representing the difficulty of the item. It is the Theta value for the location of the inflection point of the item characteristic curve.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22218', '11', '22218', NULL, NULL) +VALUES ('001997', 'EDFacts Certification Status', NULL, 'An indication of whether an educator holds the certification or licensure required by their assignment.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24978', '12', '24978', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001253', 'Assessment Item Response Theory Parameter Difficulty Category', NULL, 'A category for the difficulty of the item based on the Item Response Theory value.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22219', '11', '22219', NULL, NULL) +VALUES ('002012', 'Enrollment Capacity', NULL, 'Maximum number of age-appropriate students who can be enrolled. ', 'Integer', '0', 'Enrollment capacity can be collected at a variety of levels, such as classroom, grade, school, and facility.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24979', '12', '24979', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001254', 'Assessment Item Response Theory Parameter C', NULL, 'The Item Response Theory value for multiple choice items representing the guessing of the item. The c parameter is a lower asymptote. It is the low point of the curve as it moves to negative infinity on the horizontal axis. You can think of c as the probability that a chicken would get the item right.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22220', '11', '22220', NULL, NULL) +VALUES ('002010', 'Federal Program Subgrant Code', NULL, 'An additional code appended to the Federal Program Code used to identify a subgrant of the grant identified by the Federal Program Code.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24980', '12', '24980', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001255', 'Assessment Item Response Theory Parameter D1', NULL, 'For polytomous assessment items with more than two possible responses, this is the item response theory value representing the threshold between the first and second item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22221', '11', '22221', NULL, NULL) +VALUES ('002011', 'Financial Account Coding System Organization Type', NULL, 'The type of organization that created the coding system for the financial account information.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24981', '12', '24981', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001256', 'Assessment Item Response Theory Parameter D2', NULL, 'For polytomous assessment items with more than two possible responses, this is the item response theory value representing the threshold between the second and third item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22222', '11', '22222', NULL, NULL) +VALUES ('002007', 'Financial Account Local Balance Sheet Code', NULL, 'A local code used to describe balance sheet accounts and statement of net position accounts which are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24982', '12', '24982', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001257', 'Assessment Item Response Theory Parameter D3', NULL, 'For polytomous assessment items with more than three possible responses, this is the item response theory value representing the threshold between the third and fourth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22223', '11', '22223', NULL, NULL) +VALUES ('002008', 'Financial Account Local Fund Classification', NULL, 'A local code used to classify a fund which is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24983', '12', '24983', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001258', 'Assessment Item Response Theory Parameter D4', NULL, 'For polytomous assessment items with more than four possible responses, this is the item response theory value representing the threshold between the fourth and fifth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22224', '11', '22224', NULL, NULL) +VALUES ('002009', 'Financial Account Local Program Code', NULL, 'A local code used to describe a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24984', '12', '24984', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001259', 'Assessment Item Response Theory Parameter D5', NULL, 'For polytomous assessment items with more than five possible responses, this is the item response theory value representing the threshold between the fifth and sixth item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22225', '11', '22225', NULL, NULL) +VALUES ('002003', 'Financial Account Local Revenue Code', NULL, 'A local code used to record revenue and other receivables by source.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24985', '12', '24985', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001904', 'Facility Enrollment Capacity', NULL, 'The maximum number of age appropriate students who can be enrolled in a facility such that the district''s programmatic, operational, and student/teacher work load requirements are met.', 'Integer', '0', 'This element will be phased out in version 12. It is being replaced by Enrollment Capacity.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22885', '11', '22885', 'Updated', 'Added Usage Note.') +VALUES ('002004', 'Financial Expenditure Local Function Code', NULL, 'A local code used to describe the activity for which a service or material object is acquired.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24986', '12', '24986', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001905', 'Organization Relationship Type', NULL, 'The nature of one organization’s relationship to another.', NULL, '1', 'Related Body would be used for a use case in which no hierarchy exists, such as a foundation related to a postsecondary institution. Neither organization has authority over the other, but is related to one another.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22886', '11', '22886', 'Updated', 'Add new option to existing option set. Added Usage Note.') +VALUES ('002006', 'Financial Expenditure Local Level of Instruction Code', NULL, 'A local code used to classify the segregation of expenditures by instructional level.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24987', '12', '24987', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001906', 'Facility Ownership Indicator', NULL, 'Indicates the public or private entity holds legal title to the building and/or site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22887', '11', '22887', NULL, NULL) +VALUES ('002005', 'Financial Expenditure Local Object Code', NULL, 'A local code used to describe the service or commodity obtained as the result of a specific expenditure.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24988', '12', '24988', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001907', 'Competency Framework Source URL', NULL, 'A URL that resolves to the original or authoritative competency framework document.', 'Alphanumeric - 512 characters maximum', '0', 'This is the URL of a human-readable artifact. Often this document is published in html and/or pdf and is used by the standard setting entity as part of its approval process.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22888', '11', '22888', NULL, NULL) +VALUES ('001993', 'Interdisciplinary Indicator', NULL, 'An indication that the course, projects, and/or learning activities develop knowledge and skills across multiple subject areas and highlight connections between subject area domains, with formal collaboration among teachers across subject areas.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24989', '12', '24989', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001908', 'Competency Definition Typical Age Range Minimum', NULL, 'The typical minimum age at which a person learns the defined competency.', 'Integer - greater than or equal to 0', '0', 'Use this element with "Competency Definition Typical Age Range Maximum" instead of "Competency Item Typical Age Range"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22889', '11', '22889', NULL, NULL) +VALUES ('002013', 'Primary Program Indicator', NULL, 'An indication that the associated program is the primary function of this organization.', 'Option Set', '1', 'This element is used in conjunction with Program Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24990', '12', '24990', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001909', 'Competency Definition Typical Age Range Maximum', NULL, 'The typical maximum age at which a person learns the defined competency.', 'Integer - greater than or equal to 0', '0', 'Use this element with "Competency Definition Typical Age Range Minimum" instead of "Competency Item Typical Age Range"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22890', '11', '22890', NULL, NULL) +VALUES ('001991', 'Project-Based Learning Indicator', NULL, 'An indication that an instructional model is being implemented wherein a student learns through answering complex questions or solving for real-world problems. Also called problem-based learning, inquiry-based learning, or learning-by-doing.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24991', '12', '24991', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001910', 'Credential Definition Date Effective', NULL, 'Effective date of the content of a credential definition.', 'YYYY-MM-DD', '0', 'This is the date the content/definition of the credential became effective, not necessarily the date that one or more credentialing organizations began offering the credential.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22891', '11', '22891', NULL, NULL) +VALUES ('001992', 'Project-Based Learning Type', NULL, 'The type of project-based instruction being offered.', 'Option Set', '1', 'Select all that apply.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24992', '12', '24992', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001911', 'Credential Offered Start Date', NULL, 'The first date a credential was offered.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22892', '11', '22892', NULL, NULL) +VALUES ('001996', 'Special Education Teacher Qualification Status', NULL, 'An indication of whether special education teachers are fully certified in the State..', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24993', '12', '24993', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001912', 'Credential Offered End Date', NULL, 'The last date a credential was offered.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22893', '11', '22893', NULL, NULL) +VALUES ('001998', 'Student Support Service Availability Type', NULL, 'The group of students to whom related or ancillary service is offered within the formal educational system or by an outside agency which provides non-instructional service to support the general welfare of students.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24994', '12', '24994', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001913', 'CTDL Audience Level Type', 'ceterms:AudienceLevel', 'Type of level indicating a point in a progression through an educational or training context, for which the credential is intended; select from an existing enumeration of such types.', NULL, '1', 'This is similar to "PESC Award Level Type" and "Academic Award Level Conferred" but uses a different controlled vocabulary. See https://credreg.net/ctdl/terms/Credential#AudienceLevel.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22894', '11', '22894', NULL, NULL) +VALUES ('002090', 'Accessible Format Issued Begin Date', NULL, 'The date the student was issued any accessible format(s).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24995', '12', '24995', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001914', 'Credential Definition Agent Role Type', NULL, 'The role that an organization or person has in relation to this Credential Definition based on terms defined by Credential Engine.', NULL, '1', 'Option codes and definitions are from the Credential Engine and the ceterms namespace, except the codes use Pascal case in CEDS to follow CEDS conventions and use camel case in the original ceterms.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22895', '11', '22895', NULL, NULL) +VALUES ('002091', 'Accessible Format Issued End Date', NULL, 'The end date for the issuance of accessible format(s) to the student.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24996', '12', '24996', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001915', 'Progress Achieving English Language Proficiency Indicator Type', NULL, 'The category used to report the school''s performance on the progress of achieving the English language proficiency indicator.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22896', '11', '22896', NULL, NULL) +VALUES ('002088', 'Accessible Format Issued Indicator', NULL, 'An indication that the student was issued an accessible format according to their IEP or 504 Plan. ', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24997', '12', '24997', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001916', 'Progress Achieving English Language Proficiency State Defined Status', NULL, 'The state defined status assigned to the school''s performance on the progress of achieving the English language proficiency indicator.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22897', '11', '22897', NULL, NULL) +VALUES ('002092', 'Accessible Format Required Indicator', NULL, 'An indication that the student requires an accessible format according to their IEP or 504 Plan.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24998', '12', '24998', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001917', 'Record Start Date Time', NULL, 'The start date and, optionally, time that a record is active as used to support version control.', 'YYYY-MM-DDTHH:MM:SS', '0', 'See CEDS Integrated Data Store for use in version control.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22898', '11', '22898', NULL, NULL) +VALUES ('002089', 'Accessible Format Type', NULL, 'An alternative manner or form that gives an eligible person access to the work when the copy or phonorecord in the accessible format is used exclusively by the eligible person to permit him or her to have access as feasibly and comfortably as a person without such disability (20 U.S.C. § 121(d)(1)).', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24999', '12', '24999', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001918', 'Record End Date Time', NULL, 'The end date and, optionally, time that a record is active as used to support version control.', 'YYYY-MM-DDTHH:MM:SS', '0', 'See CEDS Integrated Data Store for use in version control. All CEDS Exit and End Dates represent the last day of the date range specified.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22899', '11', '22899', NULL, NULL) +VALUES ('002110', 'Incident Activity', NULL, 'The activity taking place during the occurrence. ', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25024', '12', '25024', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001919', 'Start Time', NULL, 'The starting hour, minute and second.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22900', '11', '22900', NULL, NULL) +VALUES ('002017', 'Adjusted Exit or Withdrawal Type', NULL, 'An adjustment of the last known circumstances under which the student exited from membership in an educational institution.', 'Option Set', '1', 'There are extended periods of time where information collected about a student can change, but for which there may not be another enrollment record. Summer is a good example of this. At the end of the school year, the Exit or Withdrawal Reason for the student may be 73062 - Student is expected to return to the same school. Then halfway through the summer, the student moves out of state - 01909 - Transferred to a public school in a different state. There is a need to capture this adjusted exit information while still retaining the original exit or withdrawal type. This element serves that purpose and should always be used in conjunction with an existing Exit or Withdrawal Type and enrollment record.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25000', '12', '25000', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001920', 'End Time', NULL, 'The ending hour, minute and second.', NULL, '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22901', '11', '22901', NULL, NULL) +VALUES ('002098', 'Attendance Event Duration Day', NULL, 'The duration of the attendance event captured as one whole day or a portion of a day.', 'Numeric - up to 2 decimal places', '0', 'When used to capture daily attendance, 1.0 would represent a whole day. Other examples would include 0.5 as a half-day and 0.33 as one-third of a day. For capturing course section attendance, the recommendation would be to use the element "Attendance Event Duration Minutes".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25001', '12', '25001', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001925', 'Additional Targeted Support and Improvement Status', NULL, 'The designation given to a school by the state for additional targeted support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22902', '11', '22902', NULL, NULL) +VALUES ('002015', 'Attendance Event Duration Hours', NULL, 'The duration of the attendance event in hours.', 'Numeric - up to 2 decimal places', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25002', '12', '25002', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001929', 'Awaiting Foster Care Status', NULL, 'An indication of whether this child is awaiting foster care.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22903', '11', '22903', NULL, NULL) +VALUES ('002014', 'Attendance Event Duration Minutes', NULL, 'The duration of the attendance event in minutes.', 'Numeric - up to 2 decimal places', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25003', '12', '25003', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001923', 'Comprehensive Support and Improvement Status', NULL, 'The designation given to a school by the state for comprehensive support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22904', '11', '22904', NULL, NULL) +VALUES ('002104', 'Board Member Position Type', NULL, 'The position or role the person performs on the board.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25004', '12', '25004', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001928', 'Do Not Publish Indicator', NULL, 'An indication that the record should not be published.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22905', '11', '22905', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('002103', 'Board Member Term End Date', NULL, 'The date on which the board member''s term ends.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25005', '12', '25005', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001921', 'Full Time Equivalency', NULL, 'The time a person is enrolled, employed, involved, or participates in the organization, divided by the time the organization defines as full-time for that role.', 'Numeric - up to 2 decimal places', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22906', '11', '22906', NULL, NULL) +VALUES ('002102', 'Board Member Term Start Date', NULL, 'The date on which the board member''s term begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25006', '12', '25006', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001926', 'Grade Levels Approved', NULL, 'The specific grade or combination of grades approved by an organization to be offered by an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22907', '11', '22907', 'Updated', 'Added and removed options to the existing option set.') +VALUES ('002105', 'Board Membership Type', NULL, 'The type of membership for the board member.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25007', '12', '25007', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001930', 'Out of Workforce Indicator', NULL, 'An individual: (A) who is a displaced homemaker, as defined in section 3 of the Workforce Innovation and Opportunity Act (29 U.S.C. 3102); or (B) who (i)(I) has worked primarily without remuneration to care for a home and family, and for that reason has diminished marketable skills; or (II) is a parent whose youngest dependent child will become ineligible to receive assistance under part A of title IV of the Social Security Act (42 U.S.C. 601 et seq.) not later than 2 years after the date on which the parent applies for assistance under such title; and (ii) is unemployed or underemployed and is experiencing difficulty in obtaining or upgrading employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22908', '11', '22908', NULL, NULL) +VALUES ('002022', 'Chronic Student Absenteeism Indicator', NULL, 'Indicates whether a student was absent 10% or more school days during the school year with an absence being defined as a student not physically on school grounds and was not participating in instruction or instruction-related activities at an approved off-grounds location for at least half the school day.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25008', '12', '25008', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001922', 'Program Entry Reason', NULL, 'The documented or assumed reason a person is being served by a program.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22909', '11', '22909', NULL, NULL) +VALUES ('002073', 'Coding System Organization Type', NULL, 'The type of organization that created the coding system for this element.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25009', '12', '25009', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001924', 'Targeted Support and Improvement Status', NULL, 'The designation given to a school by the state for targeted support and improvement as part of its statewide system of annual meaningful differentiation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22910', '11', '22910', NULL, NULL) +VALUES ('002065', 'Course Funding Program Allowed', NULL, 'An indication of permission for allocation of a course funding program''s funds for the support of a course.', 'Option Set', '1', 'This element is used in relation to the element Course Funding Program.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25010', '12', '25010', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001927', 'Telephone Number Listed Status', NULL, 'An indication of whether a telephone number is listed under a directory assistance service.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22911', '11', '22911', NULL, NULL) +VALUES ('002081', 'Credential Award Relationship', NULL, 'The nature of a credential award''s relationship to another credential award.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25011', '12', '25011', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001955', 'Adult Education Credential Attainment Employed Indicator', NULL, 'An indication of whether the adult education participant received a secondary school diploma or its recognized equivalent while enrolled in the adult education program or within one year of exiting the adult education program and was employed within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22912', '11', '22912', NULL, NULL) +VALUES ('002085', 'Delinquent Program Type', NULL, 'The type of delinquent programs under Title I, Part D, Subpart 1 (State Agency) of ESEA as amended or under Title I, Part D, Subpart 2 (LEA) of ESEA, as amended.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25012', '12', '25012', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001956', 'Adult Education Credential Attainment Postsecondary Credential Indicator', NULL, 'An indication of whether the adult education participant received a postsecondary credential while enrolled in the adult education program or within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22913', '11', '22913', NULL, NULL) +VALUES ('002016', 'Diversity Equity Inclusion Policy Indicator', NULL, 'Indicates whether or not the program has a written policy addressing diversity, equity and inclusion (DEI).', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25013', '12', '25013', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001954', 'Adult Education Credential Attainment Postsecondary Enrollment Indicator', NULL, 'An indication of whether the adult education participant received a secondary school diploma or its recognized equivalent while enrolled in the adult education program or within one year of exiting the adult education program and entered into postsecondary education within one year of exiting the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22914', '11', '22914', NULL, NULL) +VALUES ('002113', 'Dropout Reason Type', NULL, 'The reason or reasons the student dropped out of school.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25014', '12', '25014', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001939', 'Adult Education Program Exit Reason', NULL, 'The documented or assumed reason the person is no longer being served by the adult education program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22915', '11', '22915', NULL, NULL) +VALUES ('002074', 'Education Job Type', NULL, 'A broad categorization of the job as it relates to education.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25015', '12', '25015', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001935', 'Barrier to Internet Access In Residence', NULL, 'An indication of the barrier to having internet access in the student''s primary place of residence.', NULL, '1', 'This element is used in combination with the element "Internet Access in Residence." When asking for this information on a parent or student survey, the question could be phrased like this: "If the student is unable to access the internet in their primary place of residence, why not?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22916', '11', '22916', NULL, NULL) +VALUES ('002112', 'Facility Joint Use Description', NULL, 'A description explaining the details of an organization''s shared facility arrangement.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25016', '12', '25016', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001984', 'Children of Fallen Heroes Indicator', NULL, 'Pell-eligible students whose parent or guardian was a member of the U.S. armed forces and died as a result of military service performed in Iraq or Afghanistan after the events of 9/11 or a public safety officer and died as a result of active service in the line of duty. At the time of the parent''s or guardian''s death, the student must be less than 24 years of age or enrolled in college or career school at least part-time.', NULL, '1', 'The Children of Fallen heroes Indicator should follow the current legislation definitions and be updated as definitions change', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22917', '11', '22917', NULL, NULL) +VALUES ('002111', 'Facility Joint Use Indicator', NULL, 'An indication that an organization shares a facility or space within a facility with another organization.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25017', '12', '25017', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001938', 'Cohort Median Earnings', NULL, 'The midpoint between the lowest and highest quarterly wage, in U.S. dollars, for the total number of persons included in the cohort for the period of time between the Employment Record Reference Period Start Date and Employment Record Reference Period End Date.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22918', '11', '22918', NULL, NULL) +VALUES ('002066', 'Financial Account GASB Revenue Classification', NULL, 'The classification of Governmental Accounting Standards Board (GASB) revenues.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25018', '12', '25018', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001953', 'Credential Definition Terminal Degree Indicator', NULL, 'This degree is the highest degree that can be awarded in this classification of instructional programs field or program area.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22919', '11', '22919', NULL, NULL) +VALUES ('002067', 'Financial Account Local GASB Revenue Classification', NULL, 'A local code used to classify Governmental Accounting Standards Board (GASB) revenues.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25019', '12', '25019', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001970', 'Data Collection Academic School Year', NULL, 'The year for a reported school session for which the data is applicable.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22920', '11', '22920', NULL, NULL) +VALUES ('002059', 'Funding Source Amount', NULL, 'The amount of financial support contributed by a specific funding or revenue stream.', 'Alphanumeric - 40 characters maximum', '0', 'The funding source, usually an organization, is related to either another organization that is receiving the funding or to a person such as in the case of employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25020', '12', '25020', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001969', 'Data Collection Close Date', NULL, 'The date the data collection closes or ends.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22921', '11', '22921', NULL, NULL) +VALUES ('002058', 'Funding Source Percentage', NULL, 'The proportion or percentage of financial support or resources contributed by a specific funding or revenue stream in relation to the total funding.', 'Numeric - up to 2 digits after decimal place', '0', 'The funding source, usually an organization, is related to either another organization that is receiving the funding or to a person such as in the case of employment.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25021', '12', '25021', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001967', 'Data Collection Description', NULL, 'The description of what is included in the data within the context of the data collection based on the source system and collection period as defined by the Data Collection Open Date and Data Collection Close Date.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22922', '11', '22922', NULL, NULL) +VALUES ('002083', 'High Grade Level', NULL, 'The highest grade level when referring to grade levels as a range.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25022', '12', '25022', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001966', 'Data Collection Name', NULL, 'A human readable name used to identify the data within the collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22923', '11', '22923', NULL, NULL) +VALUES ('002032', 'High Quality Instructional Material Indicator', NULL, 'An indication of whether the related learning resource meets requirements to be considered high quality instructional material as defined by the organization assigning the indicator.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25023', '12', '25023', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001968', 'Data Collection Open Date', NULL, 'The date the data collection opens or commences.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22924', '11', '22924', NULL, NULL) +VALUES ('002099', 'Instructional Minutes Per Day', NULL, 'The number of instructional minutes in the day in which the school is normally in session.', 'Integer- greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25025', '12', '25025', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001971', 'Data Collection School Year', NULL, 'The year for a reported school session in which the data collection occurs.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22925', '11', '22925', NULL, NULL) +VALUES ('002070', 'Job Identification System', NULL, 'A coding scheme that is used by an organization for identification and record keeping purposes to refer to a job.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25026', '12', '25026', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001990', 'Data Collection Status', NULL, 'A process indicator of the level of stability, quality, and/or preparedness of the collection of data.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22926', '11', '22926', NULL, NULL) +VALUES ('002069', 'Job Identifier', NULL, 'A unique number or alphanumeric code used to identify a job.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25027', '12', '25027', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001979', 'EDFacts Academic or Career and Technical Outcome Exit Type', NULL, 'The type of academic or career and technical outcome attained up to 90 days after exiting the facility or program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22927', '11', '22927', NULL, NULL) +VALUES ('002077', 'Job Position Expected Start Date', NULL, 'The date, determined by the organization, on which they anticipate the selected individual to commence their role within the organization.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25028', '12', '25028', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001978', 'EDFacts Academic or Career and Technical Outcome Type', NULL, 'The type of academic or career and technical outcome attained while enrolled in the program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22928', '11', '22928', NULL, NULL) +VALUES ('002076', 'Job Position Identification System', NULL, 'A coding scheme that is used by an organization for identification and record keeping purposes to refer to a job position.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25029', '12', '25029', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001961', 'EDFacts Teacher Inexperienced Status', NULL, 'An indication of whether teachers have been identified as inexperienced as defined by the state.', NULL, '1', 'This element is used specifically for EDFacts reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22929', '11', '22929', NULL, NULL) +VALUES ('002075', 'Job Position Identifier', NULL, 'A unique number or alphanumeric code used to identify a job position.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25030', '12', '25030', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001962', 'EDFacts Teacher Out of Field Status', NULL, 'An indication of whether teachers have been identified as teaching a subject or field for which they are not certified or licensed as defined by the state.', NULL, '1', 'This element is used specifically for EDFacts reporting.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22930', '11', '22930', NULL, NULL) +VALUES ('002078', 'Job Position Status', NULL, 'A value defining the status of the job position.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25031', '12', '25031', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001981', 'Emancipated Minor', NULL, 'A minor student under the age of 18 who has been granted by legal action to have the power and capacity of an adult.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22931', '11', '22931', NULL, NULL) +VALUES ('002080', 'Job Position Status Cancelled Reason', NULL, 'The reason why the job position was given the job position status of cancelled.', 'Option Set', '1', 'To be used in conjunction with the element Job Position Status.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25032', '12', '25032', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001944', 'Federal Race and Ethnicity Declined', NULL, 'A parent, guardian, or student declined to report sufficient information for identifying a student''s federal race and/or ethnicity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22932', '11', '22932', NULL, NULL) +VALUES ('002079', 'Job Position Status Date', NULL, 'The effective date of the job position status.', 'YYYY-MM-DD', '0', 'Used in conjunction with the element Job Position Status.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25033', '12', '25033', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001947', 'First Generation College Student', NULL, 'The term First Generation College Student means an individual both of whose parents did not complete a baccalaureate degree or in the case of any individual who regularly resided with and received support from only one parent, an individual whose only such parent did not complete a baccalaureate degree.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22933', '11', '22933', NULL, NULL) +VALUES ('002096', 'LEA GFSA Assurance of Compliance Indicator', NULL, 'Indicates if a Local Education Agency (LEA) has provided an assurance that it is in compliance with the State law requiring that a student who brings a firearm to school, or possesses a firearm at school, be expelled for one year, except that such State law shall allow the chief administering officer of a local educational agency to modify such expulsion requirement for a student on a case-by-case basis if such modification is in writing.', 'Option Set', '1', 'This data is part of the requirement for LEAs to adhere to the Gun Free Schools Act (GFSA).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25034', '12', '25034', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001989', 'Home Language Survey Administration Date', NULL, 'The year, month, and day on which the Home Language Survey is known to have been administered to the parent or guardian of this student.', 'YYYY-MM-DD', '0', 'The actual date of the administration is not what this element is capturing but rather when the result of the home language survey have been received by the school. The survey may have been completed in the school office upon registration of the student or could have been completed at home as part of a set of documents parents or guardians complete when enrolling students. When the completed home language survey has been provided to the school, the date received or the date the information is entered into a student information system as having been completed is sufficient to meet the intent of this element.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22934', '11', '22934', NULL, NULL) +VALUES ('002097', 'LEA GFSA Policy Assurance Indicator', NULL, 'Indicates if a Local Education Agency has provided an assurance that it is in compliance with the requirement in Section 4141(h) that an LEA receiving ESEA funds have in place a policy requiring referral to the criminal justice or juvenile delinquency system of any student who brings a firearm to a school or possesses a firearm at school. ', 'Option Set', '1', 'This data is part of the requirement for LEAs to adhere to the Gun Free Schools Act (GFSA).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25035', '12', '25035', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001988', 'Home Language Survey Administration Indicator', NULL, 'An indication that the parent or guardian of this student was administered the Home Language Survey - a questionnaire given to parents or guardians that helps schools and local education agencies identify which students are potential English Learners and who will require assessment of their English language proficiency to determine whether they are eligible for language assistance services.', NULL, '1', 'The term "administration" would indicate that the results of the home language survey for this student have been provided to the school. The intent of this element is not to determine whether or not the school provided a home language survey to the parents/guardians of the student but instead to determine if the school received the results of that home language survey back from the parents/guardians of the student.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22935', '11', '22935', NULL, NULL) +VALUES ('002028', 'Learning Resource Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes to refer to a learning resource.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25036', '12', '25036', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001934', 'Internet Access In Residence', NULL, 'An indication of whether the student is able to access the internet in their primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Can the student access the internet in their primary place of residence?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22936', '11', '22936', NULL, NULL) +VALUES ('002027', 'Learning Resource Identifier', NULL, 'A unique number or alphanumeric code assigned to a learning resource by an organization.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25037', '12', '25037', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001936', 'Internet Access Type In Residence', NULL, 'The primary type of internet service used in the student''s primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "What is the primary type of internet service used in the student''s primary place of residence?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22937', '11', '22937', NULL, NULL) +VALUES ('002093', 'Learning Resource Issued Date', NULL, 'The date the learning resource was issued to the student.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25038', '12', '25038', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001976', 'Internet Download Speed', NULL, 'The speed that data or information can be downloaded from a server on the internet to one''s device in megabits per second.', 'Numeric', '0', 'This information is collected via an internet speed test. In 2021, the FCC minimum broadband threshold is 25 Mbps. Display Example: 25.0', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22938', '11', '22938', NULL, NULL) +VALUES ('002095', 'Learning Resource Ordered Date', NULL, 'The date the learning resource was ordered for the student.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25039', '12', '25039', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001937', 'Internet Performance In Residence', NULL, 'An indication of whether the student can complete the full range of learning activities, including video streaming and assignment upload, without interruptions caused by poor internet performance in their primary place of residence.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Can the student complete learning activities such as streaming a video and uploading assignments without interruptions caused by poor internet performance?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22939', '11', '22939', NULL, NULL) +VALUES ('002094', 'Learning Resource Received Date', NULL, 'The date the learning resource was received by the organization that placed the order. ', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25040', '12', '25040', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001977', 'Internet Speed Test Date Time', NULL, 'The date and, optionally, time that the information was gathered.', 'YYYY-MM-DDTHH:MM:SS', '0', 'This information is collected and stored as part of each speed test. Display Example: 2021-09-20T10:30:00', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22940', '11', '22940', NULL, NULL) +VALUES ('002031', 'Learning Resource Status', NULL, 'The status of the Learning Resource as of the status start date.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25041', '12', '25041', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001975', 'Internet Upload Speed', NULL, 'The speed that data or information can be sent from one''s device to another device or server on the internet in megabits per second.', 'Numeric', '0', 'This information is collected via an internet speed test. In 2021, the FCC minimum broadband threshold is 3 Mbps. Display Example: 3.0', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22941', '11', '22941', NULL, NULL) +VALUES ('002033', 'Learning Resource Status Quantity', NULL, 'The total number of a specific related learning resource for each distinct learning resource status.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25042', '12', '25042', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001980', 'Marital Status', NULL, 'The marital status of the person as of today.', NULL, '1', 'This element supports FAFSA questions related to parent''s marital status and student''s marital status. The option set was developed using Census classifications.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22942', '11', '22942', NULL, NULL) +VALUES ('002071', 'Local Job Category', NULL, 'A local code used to describe and classify the job.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25043', '12', '25043', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001950', 'NCES SIDE Date Processed', NULL, 'The year, month, and day on which the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) was processed through the BlindSIDE resource.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22943', '11', '22943', NULL, NULL) +VALUES ('002072', 'Local Job Function', NULL, 'A local code indicating the broad business activity supported by the job.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25044', '12', '25044', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001948', 'NCES SIDE Estimate', NULL, 'The National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE) based on the person''s latitude and longitude location.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22944', '11', '22944', NULL, NULL) +VALUES ('002082', 'Low Grade Level', NULL, 'The lowest grade level when referring to grade levels as a range.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25045', '12', '25045', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001949', 'NCES SIDE Standard Error', NULL, 'The standard error applied to the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22945', '11', '22945', NULL, NULL) +VALUES ('002100', 'Lunch Minutes Per Day', NULL, 'The number of lunch minutes in the day in which the school is normally in session.', 'Integer- greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25046', '12', '25046', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001951', 'NCES SIDE Vintage Begin Year', NULL, 'The begin year for the American Community Survey (ACS) period estimates used to construct the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'YYYY', '0', 'The NCES SIDE base is constructed from ACS five-year microdata. The NCES SIDE Vintage Begin Year indicates the first year of that five-year microdata base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22946', '11', '22946', NULL, NULL) +VALUES ('002050', 'Military Campaigns', NULL, 'A military campaign in which the person has been involved during the service period.', 'Option Set', '1', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25047', '12', '25047', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001952', 'NCES SIDE Vintage End Year', NULL, 'The end year for the American Community Survey (ACS) period estimates used to construct the National Center for Education Statistics (NCES) spatially interpolated demographic estimate (SIDE).', 'YYYY', '0', 'The NCES SIDE base is constructed from ACS five-year microdata. The NCES SIDE Vintage End Year indicates the last year of that five-year microdata base.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22947', '11', '22947', NULL, NULL) +VALUES ('002034', 'Military Country', NULL, 'The unique two character International Organization for Standardization (ISO) code for the country in whose military a person serves or served.', 'Option Set', '1', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. The CEDS Country Code option set comes from the ISO 3166 standard, the short name for Officially assigned codes. Discontinued codes from the ISO standard are not included in the CEDS list. This element is intended to show when a person is serving or has served in another country''s military, not the country in which they serve as part of the US Military.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25048', '12', '25048', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001957', 'Number of Days Tardy', NULL, 'The number of days a person is tardy when school is in session during a given reporting period.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22948', '11', '22948', NULL, NULL) +VALUES ('002048', 'Military Current Rank', NULL, 'The rank a person currently holds as part of active service. Do not use this indicator if the person is no longer holding this rank.', 'Alphanumeric - 40 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25049', '12', '25049', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001983', 'Number of Dependents Type', NULL, 'The student''s relationship to the dependents who live with the student or receive more than half of the student''s support', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22949', '11', '22949', NULL, NULL) +VALUES ('002055', 'Military Deployment Activity Code', NULL, 'The codes of any activities performed by the person while deployed in the military.', 'Alphanumeric - 200 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25050', '12', '25050', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001982', 'Number of Household College Students', NULL, 'Number of people, including the student, who will attend at least half-time in the current academic year, a program that leads to a college degree or certificate', 'Integer - greater than or equal to 0', '0', 'This information is collected on the FAFSA', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22950', '11', '22950', NULL, NULL) +VALUES ('002056', 'Military Deployment Activity Name', NULL, 'The names of any activities performed by the person while deployed in the military.', 'Alphanumeric - 400 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25051', '12', '25051', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001945', 'Personal Information Type', NULL, 'The type of personal information verified through the Personal Information Verification evidence.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22951', '11', '22951', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('002052', 'Military Deployment Description', NULL, 'A textual description of the person''s military deployment.', 'Alphanumeric - 200 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25052', '12', '25052', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001932', 'Primary Learning Device Access', NULL, 'An indication of whether the primary learning device is shared or not shared with another individual', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Is the student''s primary learning device shared with anyone else?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22952', '11', '22952', NULL, NULL) +VALUES ('002043', 'Military Deployment End Date', NULL, 'The date when a person''s military deployment ended.', 'YYYY-MM-DD or YYYY-MM', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25053', '12', '25053', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001931', 'Primary Learning Device Away From School', NULL, 'The type of device the student uses most often to complete learning activities away from school.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "What device does the student most often use to complete learning activities away from school?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22953', '11', '22953', NULL, NULL) +VALUES ('002053', 'Military Deployment Order Description', NULL, 'A textual description of the person''s military deployment order.', 'Alphanumeric - 200 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25054', '12', '25054', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001933', 'Primary Learning Device Provider', NULL, 'The provider of the primary learning device.', NULL, '1', 'When asking for this information on a parent or student survey, the question could be phrased like this: "Who provided the primary learning device to the student?"', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22954', '11', '22954', NULL, NULL) +VALUES ('002054', 'Military Deployment Requested By', NULL, 'A textual description of an entity that requested the person''s military deployment.', 'Alphanumeric - 100 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25055', '12', '25055', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001943', 'Race', NULL, 'The origins of a person.', NULL, '1', 'It is expected that a person may select more than one option with the exception of the options "Demographic Race Two or More Races" and "Race and Ethnicity Unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22955', '11', '22955', NULL, NULL) +VALUES ('002042', 'Military Deployment Start Date', NULL, 'The date when a person''s military deployment started.', 'YYYY-MM-DD or YYYY-MM', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25056', '12', '25056', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001974', 'Record Status Creator Entity', NULL, 'The type of entity that created or indicated the Record Status Type', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22956', '11', '22956', NULL, NULL) +VALUES ('002051', 'Military Deployment Status Code', NULL, 'Deployment status code issued to military personnel by the U.S. military.', 'Option Set', '1', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25057', '12', '25057', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001973', 'Record Status Date', NULL, 'The date the record was marked with the Record Status Type.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22957', '11', '22957', NULL, NULL) +VALUES ('002044', 'Military Discharge Category', NULL, 'A kind of discharge a person received from military services.', 'Option Set', '1', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25058', '12', '25058', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001972', 'Record Status Type', NULL, 'A process indicator of the level of stability, quality, and/or preparedness of the record.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22958', '11', '22958', NULL, NULL) +VALUES ('002040', 'Military Discharge Date', NULL, 'The date when a person was released from further military obligations.', 'YYYY-MM-DD or YYYY-MM', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25059', '12', '25059', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001946', 'Role', NULL, 'A description of the way in which a person relates to an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22959', '11', '22959', 'Updated', 'Added new option to the existing option set.') +VALUES ('002046', 'Military Discharge Rank', NULL, 'A rank at time a person was discharged from military service.', 'Alphanumeric - 40 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25060', '12', '25060', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001964', 'Source System Data Collection Identifier', NULL, 'The identifier specified by the source system that uniquely identifies the data collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22960', '11', '22960', NULL, NULL) +VALUES ('002037', 'Military Duties', NULL, 'A description of the duties encompassed within a period of military service.', 'Option Set', '1', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25061', '12', '25061', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001965', 'Source System Name', NULL, 'The name of the source system that provided the data within the collection.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22961', '11', '22961', NULL, NULL) +VALUES ('002036', 'Military Expertise', NULL, 'A list of expertise that the person developed during the service period.', 'Option Set', '1', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25062', '12', '25062', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001959', 'Staff Compensation Annual Supplement', NULL, 'The annual sum of payments given to staff in addition to their regular wages.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22962', '11', '22962', NULL, NULL) +VALUES ('002047', 'Military Highest Rank', NULL, 'The highest rank achieved by a person in military service.', 'Alphanumeric - 40 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25063', '12', '25063', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001960', 'Staff Compensation Longevity', NULL, 'Compensation paid to a staff member based on their years of service.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22963', '11', '22963', NULL, NULL) +VALUES ('002049', 'Military Honors', NULL, 'A military honor that the person received during the service period.', 'Alphanumeric - 40 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25064', '12', '25064', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001958', 'Staff Compensation Source Type', NULL, 'The source for the staff compensation a person receives.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22964', '11', '22964', NULL, NULL) +VALUES ('002039', 'Military Induction Date', NULL, 'The date when a person was inducted into active military service.', 'YYYY-MM-DD or YYYY-MM', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25065', '12', '25065', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001985', 'Staff Evaluation Part Name', NULL, 'The name of the component part that is being evaluated and scored.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22965', '11', '22965', NULL, NULL) +VALUES ('002045', 'Military Induction Rank', NULL, 'A rank at the time a person started their military experience.', 'Alphanumeric - 40 characters maximum', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25066', '12', '25066', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001987', 'Staff Evaluation Part Scale', NULL, 'The quantitative or qualitative range of possible scores/rating for a person''s performance on a component part (e.g., 0 - 10; Poor, Fair, Average, Good, Excellent).', 'Alphanumeric - 80 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22966', '11', '22966', NULL, NULL) +VALUES ('002035', 'Military Occupational Specialties ', NULL, 'A military occupational specialty of a person. ', 'Alphanumeric - 200 characters maximum', '0', 'This is a code or an identifier of an occupation applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. The complete list of MOS for each branch of the U.S. military can be found on their respective websites. In addition, there are other resources available that provide information on how MOS relate to civilian jobs, such as the crosswalk tools available on the Department of Veterans Affairs website: https://www.myhealth.va.gov/mhv-portal-web/dod-military-service-information-faqs#civilianjobs. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25067', '12', '25067', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001986', 'Staff Evaluation Part Score or Rating', NULL, 'The actual quantitative or qualitative assessment of a person''s performance on a component part that is being evaluated. ', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22967', '11', '22967', NULL, NULL) +VALUES ('002041', 'Military Release Date', NULL, 'The date a person was released from active military service.', 'YYYY-MM-DD or YYYY-MM', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25068', '12', '25068', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001963', 'Student School Affiliation State Defined Status', NULL, 'An indication of the nature of a student''s affiliation, as defined by the state, with a public school and used generally, but not exclusively, for the purpose of determining residency, funding, or accountability.', NULL, '1', 'This element should be used in conjunction with the Public School Residence Status and the Responsible School Type elements to create specificity about the role a school plays or should play in the education of the student.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22968', '11', '22968', NULL, NULL) +VALUES ('002038', 'Military Service Locations', NULL, 'A description of the duty stations (locations) encompassed within a period of military service.', 'Alphanumeric', '0', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25069', '12', '25069', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001940', 'WIOA Barriers to Employment', NULL, 'A self-identified barrier as defined by the Workforce Innovation and Opportunity Act (WIOA) that is presumed to affect placement of a participant in unsubsidized employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22969', '11', '22969', NULL, NULL) +VALUES ('002114', 'Military Service Number', NULL, 'The military service number or identifier of the person as defined by the country, branch, and/or division.', 'Alphanumeric - 40 characters maximum', '0', 'This identifier is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25070', '12', '25070', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001941', 'WIOA Career Services', NULL, 'An indication of whether or not the individual has received services as identified in sec. 134(c)(2) of the Workforce Innovation and Opportunity Act (WIOA) consisting of (a) basic career services, (b) individualized career services, or (c) follow-up services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22970', '11', '22970', NULL, NULL) +VALUES ('002025', 'Most Prevalent Level of Institution', NULL, 'A classification of a postsecondary institution''s most prevalent level.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25071', '12', '25071', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001942', 'WIOA Training Services', NULL, 'An indication of whether or not the individual has received services as defined by the Workforce Innovation and Opportunity Act (WIOA), one or more courses or classes, or a structured regimen that provides the services in 20 CFR part 680.200 and leads to: (a) An industry-recognized certificate or certification, a certificate of completion of a registered apprenticeship, a license recognized by the State involved or the Federal Government, an associate or baccalaureate degree, or community college certificate of completion; (b) Consistent with § 680.350, a secondary school diploma or its equivalent; (c) Employment; or (d) Measurable skill gains toward a credential described in paragraph (a) or (b) of this section or employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22971', '11', '22971', NULL, NULL) +VALUES ('002057', 'National Guard Indicator', NULL, 'A person''s current membership status in the United States National Guard. ', 'Option Set', '1', 'This element is applicable for specifying more details when using indicators related to U.S. Military service, such as Military Connected Student Indicator, Active Military Status Indicator, Military Veteran Status Indicator and Military Enlistment After Exit elements. ', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25072', '12', '25072', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001999', 'Adjusted Capacity', NULL, 'The maximum number of participants that can be served in a program.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22972', '11', '22972', 'New', 'Added new element to DES.') +VALUES ('002084', 'Neglected Program Type', NULL, 'The type of neglected programs under Title I, Part D, Subpart 1 (State Agency) of ESEA as amended.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25073', '12', '25073', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002000', 'Adjusted Capacity Reason Type', NULL, 'Identifies the reason for adjusted capacity in a program. ', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22973', '11', '22973', 'New', 'Added new element to DES.') +VALUES ('002063', 'Organization Jurisdiction Square Miles', NULL, 'The total area, measured in square miles, over which an organization holds administrative or governing authority, including regions under its regulatory, operational, or legal control. ', 'Numeric - up to 4 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25074', '12', '25074', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001995', 'Assessment Type Administered to English Learners', NULL, 'The types of assessments administered to English Learners.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22974', '11', '22974', 'New', 'Added new element to DES.') +VALUES ('002086', 'Part B Postsecondary Outcomes Indicator', NULL, 'An indication of the status of a person within one year of leaving secondary school and who had an individualized education program in effect at the time they left secondary school.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25075', '12', '25075', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001994', 'Course Level Approval Indicator', NULL, 'An indication that there are school or program developed requirements for student participation in the course.', 'Option Set', '1', 'This element is used in conjunction with Course Level Characteristic.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22975', '11', '22975', 'New', 'Added new element to DES.') +VALUES ('002087', 'Perkins Post-Program Placement Indicator', NULL, 'An indication of the post-program status of a CTE Concentrator in the second quarter after exiting from secondary education.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25076', '12', '25076', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002001', 'Early Learning Age 2 and Older Capacity', NULL, 'The maximum number of children ages two and above that can be served.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22976', '11', '22976', 'New', 'Added new element to DES.') +VALUES ('002026', 'Projected High School Diploma Type', NULL, 'The type of projected diploma/credential a person would be awarded in recognition of his/her completion of the curricular requirements.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25077', '12', '25077', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002002', 'Early Learning Age Under 2 Capacity', NULL, 'The maximum number of children under the age of two that can be served.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22977', '11', '22977', 'New', 'Added new element to DES.') +VALUES ('002101', 'Recess Minutes Per Day', NULL, 'The number of recess minutes in the day in which the school is normally in session.', 'Integer- greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25078', '12', '25078', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001997', 'EDFacts Certification Status', NULL, 'An indication of whether an educator holds the certification or licensure required by their assignment.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22978', '11', '22978', 'New', 'Added new element to DES.') +VALUES ('002030', 'Record Reference Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes to refer to a record.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25079', '12', '25079', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002012', 'Enrollment Capacity', NULL, 'Maximum number of age-appropriate students who can be enrolled. ', 'Integer', '0', 'Enrollment capacity can be collected at a variety of levels, such as classroom, grade, school, and facility.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22979', '11', '22979', 'New', 'Added new element to DES.') +VALUES ('002029', 'Record Reference Identifier', NULL, 'A unique number or alphanumeric code assigned to a record.', 'Alphanumeric - 40 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25080', '12', '25080', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002010', 'Federal Program Subgrant Code', NULL, 'An additional code appended to the Federal Program Code used to identify a subgrant of the grant identified by the Federal Program Code.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22980', '11', '22980', 'New', 'Added new element to DES.') +VALUES ('002107', 'Salary Schedule Criterion Description', NULL, 'A description given to a specific criterion used to determine a salary provided or offered.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25081', '12', '25081', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002011', 'Financial Account Coding System Organization Type', NULL, 'The type of organization that created the coding system for the financial account information.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22981', '11', '22981', 'New', 'Added new element to DES.') +VALUES ('002106', 'Salary Schedule Criterion Name', NULL, 'A name given to a specific criterion used to determine a salary provided or offered.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25082', '12', '25082', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002007', 'Financial Account Local Balance Sheet Code', NULL, 'A local code used to describe balance sheet accounts and statement of net position accounts which are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22982', '11', '22982', 'New', 'Added new element to DES.') +VALUES ('002108', 'Salary Schedule Criterion Value', NULL, 'A unique value or code assigned to a salary schedule criterion used to differentiate between the achievable levels of the criterion.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25083', '12', '25083', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002008', 'Financial Account Local Fund Classification', NULL, 'A local code used to classify a fund which is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22983', '11', '22983', 'New', 'Added new element to DES.') +VALUES ('002109', 'Salary Schedule Salary Value', NULL, 'The salary or wage determined by the salary schedule criteria.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25084', '12', '25084', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002009', 'Financial Account Local Program Code', NULL, 'A local code used to describe a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22984', '11', '22984', 'New', 'Added new element to DES.') +VALUES ('002023', 'Sequence of Course', NULL, 'Where a specific course lies when it is part of a consecutive sequence of courses. ', 'Alphanumeric- 10 characters maximum', '0', 'For example: if a school offers 4 years of Theater, Theater 3 within this school would be indicated in the sequence elements as 3 4, denoting the 3rd part of a 4-part sequence of courses.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25085', '12', '25085', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002003', 'Financial Account Local Revenue Code', NULL, 'A local code used to record revenue and other receivables by source.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22985', '11', '22985', 'New', 'Added new element to DES.') +VALUES ('002021', 'Session Sequence Number', NULL, 'The position of this session in a sequence of sessions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25086', '12', '25086', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002004', 'Financial Expenditure Local Function Code', NULL, 'A local code used to describe the activity for which a service or material object is acquired.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22986', '11', '22986', 'New', 'Added new element to DES.') +VALUES ('002064', 'Staff Compensation Annual Supplement Description', NULL, 'A description of the annual supplement awarded to a staff member.', 'Alphanumeric - 300 characters maximum', '0', 'Used in relation to the element Staff Compensation Annual Supplement.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25087', '12', '25087', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002006', 'Financial Expenditure Local Level of Instruction Code', NULL, 'A local code used to classify the segregation of expenditures by instructional level.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22987', '11', '22987', 'New', 'Added new element to DES.') +VALUES ('002068', 'Student Dropout Status', NULL, 'An indication of the status of this student as dropout.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25088', '12', '25088', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002005', 'Financial Expenditure Local Object Code', NULL, 'A local code used to describe the service or commodity obtained as the result of a specific expenditure.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22988', '11', '22988', 'New', 'Added new element to DES.') +VALUES ('002062', 'Teen Parent Indicator', NULL, 'The child''s parent or guardian is a teen parent between ages 10 to 19 years.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25089', '12', '25089', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001993', 'Interdisciplinary Indicator', NULL, 'An indication that the course, projects, and/or learning activities develop knowledge and skills across multiple subject areas and highlight connections between subject area domains, with formal collaboration among teachers across subject areas.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22989', '11', '22989', 'New', 'Added new element to DES.') +VALUES ('002024', 'Temperature Controlled Building Area', NULL, 'The sum of the Building Area capable of being regulated and maintained within a specific temperature range for a designated purpose, employing heating, cooling, insulation, or climate control systems.', 'Alphanumeric - 30 characters maximum', '0', 'Use in conjunction with the element: Building Area.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25090', '12', '25090', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('002013', 'Primary Program Indicator', NULL, 'An indication that the associated program is the primary function of this organization.', 'Option Set', '1', 'This element is used in conjunction with Program Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22990', '11', '22990', 'New', 'Added new element to DES.') +VALUES ('002018', 'Transportation Public Expense Eligibility Type', NULL, 'The type of eligibility for transporting a person at public expense.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25091', '12', '25091', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001991', 'Project-Based Learning Indicator', NULL, 'An indication that an instructional model is being implemented wherein a student learns through answering complex questions or solving for real-world problems. Also called problem-based learning, inquiry-based learning, or learning-by-doing.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22991', '11', '22991', 'New', 'Added new element to DES.') +VALUES ('002020', 'Transportation State Aid Qualification Type', NULL, 'The qualification status for the transportation of a person that entitles an organization to receive state transportation aid.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25092', '12', '25092', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001992', 'Project-Based Learning Type', NULL, 'The type of project-based instruction being offered.', 'Option Set', '1', 'Select all that apply.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22992', '11', '22992', 'New', 'Added new element to DES.') +VALUES ('002019', 'Transportation Status Type', NULL, 'The transportation status of the person.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25093', '12', '25093', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001996', 'Special Education Teacher Qualification Status', NULL, 'An indication of whether special education teachers are fully certified in the State..', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22993', '11', '22993', 'New', 'Added new element to DES.') +VALUES ('002061', 'Years of Prior Professional Experience', NULL, 'The total number of years that an individual has previously held a similar professional position in one or more education institutions prior to the current school year.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25094', '12', '25094', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001998', 'Student Support Service Availability Type', NULL, 'The group of students to whom related or ancillary service is offered within the formal educational system or by an outside agency which provides non-instructional service to support the general welfare of students.', 'Option Set', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22994', '11', '22994', 'New', 'Added new element to DES.') +VALUES ('002060', 'Years of Total Experience', NULL, 'The total number of years that a person has held this position or a similar position in one or more organizations.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=25095', '12', '25095', 'New', 'Added new element to DES.') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000436', 'Designated Graduation School Identifier', NULL, 'The NCES school identification number that identifies the school or facility from which a student expects to graduate.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21426', '11', '21426', NULL, NULL) +VALUES ('000482', 'Terminated Title III Programs Due to Failure', NULL, 'An indication of whether a Title III program or activity was terminated due to failure to meet goals.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23473', '12', '23473', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000437', 'Migrant Education Program Enrollment Type', 'MEP Enrollment Type', 'The type of school/migrant education project in which instruction and/or support services are provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21427', '11', '21427', NULL, NULL) +VALUES ('000484', 'Neglected or Delinquent Obtained Employment', NULL, 'An indication that a Neglected or Delinquent student obtained employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23475', '12', '23475', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000438', 'Immunization Record Flag', NULL, 'Indicates whether the school or MEP program has immunization records on file for the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21428', '11', '21428', NULL, NULL) +VALUES ('000485', 'Program in Multiple Purpose Facility', NULL, 'An institution/facility/program that serves more than one programming purpose. For example, the same facility may run both a juvenile correction program and a juvenile detention program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23476', '12', '23476', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000439', 'Medical Alert Indicator', NULL, 'Alert indicator for a medical/health condition.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21429', '11', '21429', NULL, NULL) +VALUES ('000486', 'Type of Use of the Rural Low-Income Schools Program', 'Type of Use of the RLIS Program', 'The type of use of the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23477', '12', '23477', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000440', 'Migrant Education Program Project Based', 'MEP Project Based', 'Indicates the type of MEP project based on the location where the MEP services are held.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21430', '11', '21430', NULL, NULL) +VALUES ('000487', 'Title III Professional Development Type', NULL, 'The type of Title III professional development utilized.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23478', '12', '23478', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000442', 'Appealed Adequate Yearly Progress Designation', 'Appealed AYP Designation', 'An indication that a school or district appealed its AYP designation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21432', '11', '21432', NULL, NULL) +VALUES ('000488', 'Disciplinary Action Taken', NULL, 'Identifies the consequences of an incident for the student(s) involved in an incident as perpetrator(s).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23479', '12', '23479', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000443', 'Adequate Yearly Progress Appeal Changed Designation', 'AYP Appeal Changed Designation', 'An indication that the appeal resulted in a change in a school or district''s AYP designation.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21433', '11', '21433', NULL, NULL) +VALUES ('000490', 'Prekindergarten Daily Length', NULL, 'The portion of a day that a pre-kindergarten program is provided to the students it serves.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23481', '12', '23481', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000444', 'Adequate Yearly Progress Appeal Process Date', 'AYP Appeal Process Date', 'The last date that an appeal of an AYP designation was processed.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21434', '11', '21434', NULL, NULL) +VALUES ('000491', 'Kindergarten Daily Length', NULL, 'The portion of a day that a kindergarten program is provided to the students it serves.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23482', '12', '23482', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000445', 'State Transferability of Funds', NULL, 'Did the State transfer funds under the State Transferability authority of Section 6123(a)', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21435', '11', '21435', NULL, NULL) +VALUES ('000494', 'Calendar Code', NULL, 'A unique number assigned by a school district to a school calendar.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23485', '12', '23485', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000446', 'Local Education Agency Transferability of Funds', 'LEA Transferability of Funds', 'LEA notified the State that they were transferring funds under the LEA Transferability authority of Section 6123(b).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21436', '11', '21436', NULL, NULL) +VALUES ('000495', 'Calendar Description', NULL, 'A description or identification of the calendar.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23486', '12', '23486', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000447', 'Title III Language Instruction Program Type', NULL, 'The type of Title III language instructional education programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21437', '11', '21437', NULL, NULL) +VALUES ('000496', 'Days in Session', NULL, 'The total number of days that the school was or is anticipated to be in session during the school year. Also included are days on which the education institution facility is closed and the student body as a whole is engaged in planned activities off-campus under the guidance and direction of staff members.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23487', '12', '23487', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000448', 'Instruction Language', NULL, 'The language of instruction, other than English, used in the program or course.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21438', '11', '21438', NULL, NULL) +VALUES ('000497', 'First Instruction Date', NULL, 'The year, month and day of the first day of student instruction for the school year.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23488', '12', '23488', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000449', 'Barrier to Educating Homeless', NULL, 'Barriers to the enrollment and success of homeless children and youths.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21439', '11', '21439', NULL, NULL) +VALUES ('000498', 'Last Instruction Date', NULL, 'The year, month and day of the last day of student instruction (including days or times that students are present for purposes of testing and/or evaluation, but not including whole or part-days whose sole purposes is for distribution of report cards).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23489', '12', '23489', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000451', 'Local Education Agency Funds Transfer Type', 'LEA Funds Transfer Type', 'An indication of the type of transfer for an LEAs that transferred funds from an eligible program to another eligible program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21441', '11', '21441', NULL, NULL) +VALUES ('000499', 'Instructional Minutes', NULL, 'The total number of instruction minutes in a given session, as determined by time in class, time on task (e.g., engaged in a class), or as estimated by a qualified course designer.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23490', '12', '23490', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000452', 'Funds Transfer Amount', NULL, 'The total amount of FY appropriated funds transferred from and to each eligible program.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21442', '11', '21442', NULL, NULL) +VALUES ('000500', 'Minutes Per Day', NULL, 'The number of minutes in the day in which the school is normally in session.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23491', '12', '23491', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000453', 'State Assessment Standards Funding', NULL, 'The percentage of funds used to pay the costs of the development of the State assessments and standards required by section 1111(b).', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21443', '11', '21443', NULL, NULL) +VALUES ('000501', 'Incident Identifier', NULL, 'A locally assigned unique identifier (within the school or school district) to identify each specific incident or occurrence. The same identifier should be used to document the entire incident even if it included multiple offenses and multiple offenders.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23492', '12', '23492', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000454', 'State Assessment Administration Funding', NULL, 'The percentage of funds used to administer assessments required by section 1111(b) or to carry out other activities described in section 6111 and other activities related to ensuring that the State’s schools and local educational agencies are held accountable for results.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21444', '11', '21444', NULL, NULL) +VALUES ('000502', 'Incident Date', NULL, 'The year, month and day on which the incident occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23493', '12', '23493', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000455', 'Date State Received Title III Allocation', NULL, 'Annual date the State receives the Title III allocation from U.S. Department of Education (ED).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21445', '11', '21445', NULL, NULL) +VALUES ('000503', 'Incident Time', NULL, 'An indication of the time of day the incident took place.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23494', '12', '23494', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000456', 'Date Title III Funds Available to Subgrantees', NULL, 'Annual date that Title III funds are available to approved subgrantees.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21446', '11', '21446', NULL, NULL) +VALUES ('000504', 'Facilities Identifier', NULL, 'A locally assigned unique number or alphanumeric code used to capture precise information on locations specific to a school (e.g., building number, class number, hall number, school bus number, computer station number, or internet protocol (IP) address).', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23495', '12', '23495', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000457', 'Number of Days for Title III Subgrants', NULL, 'Average number of days for States receiving Title III funds to make subgrants to subgrantees beginning from July 1 of each year, except under conditions where funds are being withheld.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21447', '11', '21447', NULL, NULL) +VALUES ('000505', 'Incident Cost', NULL, 'The value of any quantifiable monetary loss directly resulting from the incident. Examples include the value of repairs necessitated by vandalism of a school facility, the value of personnel resources used for repairs or consumed by the incident, the value of stolen items, and the value of time consumed by an incident (e.g., instructional time involved in evacuating a school during a false fire alarm). Cost may be reported by specific monetary amount or range.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23496', '12', '23496', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000461', 'Innovative Dollars Spent', NULL, 'The total Title V, Part A funds expended by LEAs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21451', '11', '21451', NULL, NULL) +VALUES ('000506', 'Incident Reporter Type', NULL, 'Information on the type of person who reported the incident. When known and/or if useful, use a more specific option code (e.g., "Counselor" rather than "Professional Staff").', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23497', '12', '23497', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000462', 'Innovative Dollars Spent on Strategic Priorities', NULL, 'The total amount of Title V, Part A funds expended by LEAs for the four strategic priorities.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21452', '11', '21452', NULL, NULL) +VALUES ('000507', 'Reporter Identifier', NULL, 'Identifies the reporter of the incident using a pre-existing unique student identifier or unique staff identifier, when the reporter is a student or staff member.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23498', '12', '23498', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000463', 'Migrant Education Program Project Type', 'MEP Project Type', 'Type of project funded in whole or in part by MEP funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21453', '11', '21453', NULL, NULL) +VALUES ('000508', 'Incident Description', NULL, 'The description for an incident.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23499', '12', '23499', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000464', 'Innovative Programs Funds Received', NULL, 'The total Title V, Part A funds received by LEAs.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21454', '11', '21454', NULL, NULL) +VALUES ('000509', 'Incident Behavior', NULL, 'Categories of behavior coded for use in describing an incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23500', '12', '23500', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000466', 'Literacy Assessment Administered Type', NULL, 'The type of literacy test administered.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21456', '11', '21456', NULL, NULL) +VALUES ('000510', 'Incident Injury Type', NULL, 'An indication of the occurrence of physical injury to participants involved in the incident and, if so, the level of injury sustained.', NULL, '1', 'Incident Injury Type can be linked to any person involved in the incident.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23501', '12', '23501', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000467', 'Literacy Goal Met Status', NULL, 'The participant showed "significant learning gains" on measures of reading, the definition of which is determined at the State level.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21457', '11', '21457', NULL, NULL) +VALUES ('000511', 'Duration of Disciplinary Action', NULL, 'The length, in school days, of the disciplinary action.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23502', '12', '23502', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000468', 'Literacy Post Test Status', NULL, 'The participant completed a literacy post-test.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21458', '11', '21458', NULL, NULL) +VALUES ('000512', 'Related to Zero Tolerance Policy', NULL, 'An indication of whether or not any of the disciplinary actions taken against a student were imposed as a consequence of state or local zero tolerance policies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23503', '12', '23503', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000469', 'Literacy Pre Test Status', NULL, 'The participant completed a literacy pre-test.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21459', '11', '21459', NULL, NULL) +VALUES ('000513', 'Full Year Expulsion', NULL, 'An expulsion with or without services for a period of one full year (i.e., 365 days).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23504', '12', '23504', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000470', 'Number of Immigrant Program Subgrants', NULL, 'The number of immigrant program [3114(d)(1)] subgrants.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21460', '11', '21460', NULL, NULL) +VALUES ('000514', 'Shortened Expulsion', NULL, 'An expulsion with or without services that is shortened to a term of less than one year by the superintendent or chief administrator of a school district.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23505', '12', '23505', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000471', 'Safe and Drug Free Indicator Name', NULL, 'The name of the performance indicator for student behaviors under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21461', '11', '21461', NULL, NULL) +VALUES ('000515', 'Incident Time Description Code', NULL, 'A code for the description of the time of day that an incident took place.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23506', '12', '23506', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000472', 'Safe and Drug Free Instrument', NULL, 'The instrument or data source for reported performance indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21462', '11', '21462', NULL, NULL) +VALUES ('000364', 'Classroom Identifier', NULL, 'A unique number or alphanumeric code assigned to a room by a school, school system, state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23507', '12', '23507', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000473', 'Safe and Drug Free Collection Frequency', NULL, ' The frequency of data collection for performance indicator under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21463', '11', '21463', NULL, NULL) +VALUES ('000517', 'Course Description', NULL, 'A description of the course content and/or goals. Reference may be made to state or national content standards.', 'Alphanumeric-1024 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23508', '12', '23508', 'Updated', 'Update format') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000474', 'Safe and Drug Free Year Most Recent Collection', NULL, 'The academic year of the most recent collection of the performance indicator under the Sage and Drug-Free Schools and Communities Act.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21464', '11', '21464', NULL, NULL) +VALUES ('000518', 'Core Academic Course', NULL, 'The course meets the state definition of a core academic course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23509', '12', '23509', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000475', 'Safe and Drug Free Target', NULL, 'The targeted performance for the given indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21465', '11', '21465', NULL, NULL) +VALUES ('000519', 'Class Beginning Time', NULL, 'An indication of the time of day the class begins.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23510', '12', '23510', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000476', 'Safe and Drug Free Performance', NULL, 'Actual performance for the given indicator of student behavior under the Safe and Drug-Free Schools and Communities Act', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21466', '11', '21466', NULL, NULL) +VALUES ('000520', 'Class Ending Time', NULL, 'An indication of the time of day the class ends.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23511', '12', '23511', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000477', 'Safe and Drug Free Baseline', NULL, 'The baseline of the performance indicator of student behavior under the Safe and Drug-Free Schools and Communities Act.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21468', '11', '21468', NULL, NULL) +VALUES ('000521', 'Class Meeting Days', NULL, 'The day(s) of the week (e.g., Monday, Wednesday) that the class meets or an indication that a class meets "out-of-school" or "self-paced".', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23512', '12', '23512', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000478', 'Safe and Drug Free Baseline Year', NULL, 'The academic year the baseline was established.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21469', '11', '21469', NULL, NULL) +VALUES ('000522', 'Class Period', NULL, 'An indication of the portion of a typical daily session in which students receive instruction in a specified subject (e.g., morning, sixth period, block period, or AB schedules).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23513', '12', '23513', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000479', 'School Improvement Reserved Funds Percentage', NULL, 'An indication of the percentage of the Title I, Part A allocation that the SEA reserved in accordance with Section 1003(a) of ESEA and §200.100(a) of ED''s regulations governing the reservation of funds for school improvement under Section 1003(a) of ESEA.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21470', '11', '21470', NULL, NULL) +VALUES ('000523', 'Timetable Day Identifier', NULL, 'The unique identifier for the locally defined rotation cycle date code when the class meets (e.g., in a two day schedule, valid values could be "A" and "B", or "1" and "2").', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23514', '12', '23514', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000480', 'School Improvement Allocation', NULL, 'The amount of Section 1003(a) and 1003(g) allocations to LEAs and Schools.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21471', '11', '21471', NULL, NULL) +VALUES ('000524', 'Receiving Location of Instruction', NULL, 'The type of location at which instruction or service takes place.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23515', '12', '23515', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000481', 'School Improvement Exit Date', NULL, 'Date the school exited school improvement status.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21472', '11', '21472', NULL, NULL) +VALUES ('000525', 'Primary Assignment Indicator', NULL, 'An indication of whether the assignment is the staff member''s primary assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23516', '12', '23516', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000482', 'Terminated Title III Programs Due to Failure', NULL, 'An indication of whether a Title III program or activity was terminated due to failure to meet goals.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21473', '11', '21473', NULL, NULL) +VALUES ('000526', 'Assignment Start Date', NULL, 'The year, month and day from which the assignment is valid.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23517', '12', '23517', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000484', 'Neglected or Delinquent Obtained Employment', NULL, 'An indication that a Neglected or Delinquent student obtained employment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21475', '11', '21475', NULL, NULL) +VALUES ('000527', 'Assignment End Date', NULL, 'The last year, month and day on which the assignment is valid.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23518', '12', '23518', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000485', 'Program in Multiple Purpose Facility', NULL, 'An institution/facility/program that serves more than one programming purpose. For example, the same facility may run both a juvenile correction program and a juvenile detention program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21476', '11', '21476', NULL, NULL) +VALUES ('000528', 'Itinerant Teacher', NULL, 'An indication of whether a teacher provides instruction in more than one instructional site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23519', '12', '23519', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000486', 'Type of Use of the Rural Low-Income Schools Program', 'Type of Use of the RLIS Program', 'The type of use of the Rural Low-Income Schools Program (RLIS) (Title VI, Part B, Subpart 2) Grant Funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21477', '11', '21477', NULL, NULL) +VALUES ('000529', 'First Entry Date into a US School', NULL, 'The year, month and day of a person''s initial enrollment into a United States school.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23520', '12', '23520', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000487', 'Title III Professional Development Type', NULL, 'The type of Title III professional development utilized.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21478', '11', '21478', NULL, NULL) +VALUES ('000530', 'Promotion Reason', NULL, 'The nature of the student''s promotion or progress at the end of a given school term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23521', '12', '23521', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000488', 'Disciplinary Action Taken', NULL, 'Identifies the consequences of an incident for the student(s) involved in an incident as perpetrator(s).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21479', '11', '21479', NULL, NULL) +VALUES ('000531', 'Nonpromotion Reason', NULL, 'The primary reason as to why a staff member determined that a student should not be promoted (or be demoted).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23522', '12', '23522', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000490', 'Prekindergarten Daily Length', NULL, 'The portion of a day that a pre-kindergarten program is provided to the students it serves.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21481', '11', '21481', NULL, NULL) +VALUES ('000532', 'Public School Residence Status', NULL, 'An indication of the location of a persons legal residence relative to (within or outside) the boundaries of the public school attended and its administrative unit.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23523', '12', '23523', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000491', 'Kindergarten Daily Length', NULL, 'The portion of a day that a kindergarten program is provided to the students it serves.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21482', '11', '21482', NULL, NULL) +VALUES ('000533', 'School Operational Status', NULL, 'The current status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23524', '12', '23524', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000494', 'Calendar Code', NULL, 'A unique number assigned by a school district to a school calendar.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21485', '11', '21485', NULL, NULL) +VALUES ('000534', 'Operational Status Effective Date', NULL, 'The effective date for a change in operational status.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23525', '12', '23525', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000495', 'Calendar Description', NULL, 'A description or identification of the calendar.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21486', '11', '21486', NULL, NULL) +VALUES ('000535', 'IDEA Educational Environment for School Age', NULL, 'The setting in which children ages 6 through 21, receive special education and related services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23526', '12', '23526', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000496', 'Days in Session', NULL, 'The total number of days that the school was or is anticipated to be in session during the school year. Also included are days on which the education institution facility is closed and the student body as a whole is engaged in planned activities off-campus under the guidance and direction of staff members.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21487', '11', '21487', NULL, NULL) +VALUES ('000536', 'Title III Accountability Progress Status', NULL, 'An indication of the progress made by a student toward English proficiency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23527', '12', '23527', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000497', 'First Instruction Date', NULL, 'The year, month and day of the first day of student instruction for the school year.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21488', '11', '21488', NULL, NULL) +VALUES ('000537', 'Local Education Agency Type', NULL, ' The classification of education agencies within the geographic boundaries of a state according to the level of administrative and operational control.', NULL, '1', 'Option definitions from EDFacts documents
EDFacts Data Set for School Years 2016-17, 2017-18, and 2018-19 -- Attachment B-2 (February 2016).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23528', '12', '23528', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000498', 'Last Instruction Date', NULL, 'The year, month and day of the last day of student instruction (including days or times that students are present for purposes of testing and/or evaluation, but not including whole or part-days whose sole purposes is for distribution of report cards).', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21489', '11', '21489', NULL, NULL) +VALUES ('000538', 'Discipline Method of Children with Disabilities', NULL, 'The type of suspension or expulsion used for the discipline of children with disabilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23529', '12', '23529', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000499', 'Instructional Minutes', NULL, 'The total number of instruction minutes in a given session, as determined by time in class, time on task (e.g., engaged in a class), or as estimated by a qualified course designer.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21490', '11', '21490', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('000539', 'IDEA Interim Removal Reason', NULL, 'The reasons why children with disabilities were unilaterally removed from their current educational placement to an interim alternative educational setting.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23530', '12', '23530', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000500', 'Minutes Per Day', NULL, 'The number of minutes in the day in which the school is normally in session.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21491', '11', '21491', NULL, NULL) +VALUES ('000540', 'Assessment Registration Reason Not Completing', NULL, 'The primary reason a participant did not complete an assessment.', NULL, '1', 'This may apply to any learner, but is used particularly for reporting based on children with disabilities (IDEA).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23531', '12', '23531', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000501', 'Incident Identifier', NULL, 'A locally assigned unique identifier (within the school or school district) to identify each specific incident or occurrence. The same identifier should be used to document the entire incident even if it included multiple offenses and multiple offenders.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21492', '11', '21492', NULL, NULL) +VALUES ('000541', 'IDEA Interim Removal', NULL, 'The type of interim removal from current educational setting experienced by children with disabilities (IDEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23532', '12', '23532', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000502', 'Incident Date', NULL, 'The year, month and day on which the incident occurred.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21493', '11', '21493', NULL, NULL) +VALUES ('000542', 'Consolidated Migrant Education Program Funds Status', 'Consolidated MEP Funds Status', 'An indication of whether the school has a school-wide program, as defined by current law, in which federal Migrant Education Program (MEP) funds are consolidated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23533', '12', '23533', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000503', 'Incident Time', NULL, 'An indication of the time of day the incident took place.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21494', '11', '21494', NULL, NULL) +VALUES ('000543', 'Migrant Education Program Personnel Indicator', 'MEP Personnel Indicator', 'An indication that a staff member''s salary is paid by the Title I, Part C Migrant Education Program (MEP) of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23534', '12', '23534', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000504', 'Facilities Identifier', NULL, 'A locally assigned unique number or alphanumeric code used to capture precise information on locations specific to a school (e.g., building number, class number, hall number, school bus number, computer station number, or internet protocol (IP) address).', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21495', '11', '21495', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000545', 'Discipline Reason', NULL, 'The reason why the student was disciplined.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23536', '12', '23536', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000505', 'Incident Cost', NULL, 'The value of any quantifiable monetary loss directly resulting from the incident. Examples include the value of repairs necessitated by vandalism of a school facility, the value of personnel resources used for repairs or consumed by the incident, the value of stolen items, and the value of time consumed by an incident (e.g., instructional time involved in evacuating a school during a false fire alarm). Cost may be reported by specific monetary amount or range.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21496', '11', '21496', NULL, NULL) +VALUES ('000546', 'Technology Skills Standards Met', NULL, 'An indication that the person has achieved acceptable performance on a standards-based profile of technology user skills as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23537', '12', '23537', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000506', 'Incident Reporter Type', NULL, 'Information on the type of person who reported the incident. When known and/or if useful, use a more specific option code (e.g., "Counselor" rather than "Professional Staff").', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21497', '11', '21497', NULL, NULL) +VALUES ('000547', 'Federal Program Code', NULL, 'The unique five-digit number assigned to each federal program as listed in the Assistance Listings. See https://sam.gov/content/assistance-listings', 'Numeric - up to 2 digits before and 3 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23538', '12', '23538', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000507', 'Reporter Identifier', NULL, 'Identifies the reporter of the incident using a pre-existing unique student identifier or unique staff identifier, when the reporter is a student or staff member.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21498', '11', '21498', NULL, NULL) +VALUES ('000548', 'Federal Programs Funding Allocation Type', NULL, 'The type of federal program funding allocation or distribution made.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23539', '12', '23539', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000508', 'Incident Description', NULL, 'The description for an incident.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21499', '11', '21499', NULL, NULL) +VALUES ('000549', 'Federal Programs Funding Allocation', NULL, 'The amount of federal dollars distributed to local education agencies (LEAs), retained by the state education agency (SEA) for program administration or other approved state-level activities (including unallocated, transferred to another state agency, or distributed to entities other than LEAs).', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23540', '12', '23540', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000509', 'Incident Behavior', NULL, 'Categories of behavior coded for use in describing an incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21500', '11', '21500', NULL, NULL) +VALUES ('000550', 'Title I Schoolwide Program Participation', NULL, 'An indication that the student participates in and is served by a schoolwide program (SWP) under Title I of ESEA, Part A, Sections 1114.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23541', '12', '23541', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000510', 'Incident Injury Type', NULL, 'An indication of the occurrence of physical injury to participants involved in the incident and, if so, the level of injury sustained.', NULL, '1', 'Incident Injury Type can be linked to any person involved in the incident.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21501', '11', '21501', NULL, NULL) +VALUES ('000551', 'Title I Targeted Assistance Participation', NULL, 'An indication that the student participates in and is served by a targeted assistance (TAS) program under Title I of ESEA, Part A, Sections 1115.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23542', '12', '23542', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000511', 'Duration of Disciplinary Action', NULL, 'The length, in school days, of the disciplinary action.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21502', '11', '21502', NULL, NULL) +VALUES ('000552', 'Title I Targeted Assistance Staff Funded', NULL, 'An indication that a staff member is targeted assistance (TAS) program staff funded by Title I, Part A, Section 1115 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23543', '12', '23543', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000512', 'Related to Zero Tolerance Policy', NULL, 'An indication of whether or not any of the disciplinary actions taken against a student were imposed as a consequence of state or local zero tolerance policies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21503', '11', '21503', NULL, NULL) +VALUES ('000553', 'Proficiency Target Status for Reading and Language Arts', NULL, 'An indication of whether the school or district met the reading/language arts proficiency target in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23544', '12', '23544', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000513', 'Full Year Expulsion', NULL, 'An expulsion with or without services for a period of one full year (i.e., 365 days).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21504', '11', '21504', NULL, NULL) +VALUES ('000555', 'Discipline Method for Firearms Incidents', NULL, 'The method used to discipline students who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23546', '12', '23546', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000514', 'Shortened Expulsion', NULL, 'An expulsion with or without services that is shortened to a term of less than one year by the superintendent or chief administrator of a school district.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21505', '11', '21505', NULL, NULL) +VALUES ('000556', 'IDEA Discipline Method for Firearms Incidents', NULL, 'The methods used to discipline students who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23547', '12', '23547', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000515', 'Incident Time Description Code', NULL, 'A code for the description of the time of day that an incident took place.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21506', '11', '21506', NULL, NULL) +VALUES ('000557', 'Firearm Type', NULL, 'The type of firearm.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23548', '12', '23548', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000364', 'Classroom Identifier', NULL, 'A unique number or alphanumeric code assigned to a room by a school, school system, state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21507', '11', '21507', NULL, NULL) +VALUES ('000558', 'Special Education Support Services Category', NULL, 'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23549', '12', '23549', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000517', 'Course Description', NULL, 'A description of the course content and/or goals. Reference may be made to state or national content standards.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21508', '11', '21508', NULL, NULL) +VALUES ('000559', 'IDEA Educational Environment for Early Childhood', NULL, 'The program in which children ages 3 through 5 attend and in which these children receive special education and related services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23550', '12', '23550', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000518', 'Core Academic Course', NULL, 'The course meets the state definition of a core academic course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21509', '11', '21509', NULL, NULL) +VALUES ('000560', 'Rural Education Achievement Program Alternative Funding Status', 'REAP Alternative Funding Status', 'An indication that the local education agency (LEA) notified the state of the LEA''s intention to use REAP-Flex Alternative Uses of Funding Authority during the school year as specified in the Title VI, Section 6211 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23552', '12', '23552', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000519', 'Class Beginning Time', NULL, 'An indication of the time of day the class begins.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21510', '11', '21510', NULL, NULL) +VALUES ('000561', 'Progress Level', NULL, 'The amount of progress shown in academic subjects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23553', '12', '23553', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000520', 'Class Ending Time', NULL, 'An indication of the time of day the class ends.', 'HH:MM:SS', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21511', '11', '21511', NULL, NULL) +VALUES ('000562', 'Migrant Prioritized for Services', NULL, 'An indication that a migratory child 1) is failing to meet, or most at risk of failing to meet, the state''s challenging academic content standards and student academic achievement standards; and 2) has experienced interruptions in their education during the regular school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23554', '12', '23554', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000521', 'Class Meeting Days', NULL, 'The day(s) of the week (e.g., Monday, Wednesday) that the class meets or an indication that a class meets "out-of-school" or "self-paced".', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21512', '11', '21512', NULL, NULL) +VALUES ('000563', 'Migrant Education Program Continuation of Services Status', 'MEP Continuation of Services Status', 'An indication that migrant children are receiving instructional or support services under the continuation of services authority ESEA Title III Section 1304(e)(2)-(3).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23555', '12', '23555', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000522', 'Class Period', NULL, 'An indication of the portion of a typical daily session in which students receive instruction in a specified subject (e.g., morning, sixth period, block period, or AB schedules).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21513', '11', '21513', NULL, NULL) +VALUES ('000564', 'Special Education Age Group Taught', NULL, 'The age range of special education students taught.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23556', '12', '23556', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000523', 'Timetable Day Identifier', NULL, 'The unique identifier for the locally defined rotation cycle date code when the class meets (e.g., in a two day schedule, valid values could be "A" and "B", or "1" and "2").', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21514', '11', '21514', NULL, NULL) +VALUES ('000565', 'Title III English Learner Participation Status', NULL, 'An indication that an English Learner student is served by an English language instruction educational program supported with Title III of ESEA funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23557', '12', '23557', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000524', 'Receiving Location of Instruction', NULL, 'The type of location at which instruction or service takes place.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21515', '11', '21515', 'Updated', 'Added elements to DES context to support K12 Implementation.') +VALUES ('000566', 'Technology Literacy Status in 8th Grade', NULL, 'An indication of the technology literacy of 8th graders.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23558', '12', '23558', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000525', 'Primary Assignment Indicator', NULL, 'An indication of whether the assignment is the staff member''s primary assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21516', '11', '21516', NULL, NULL) +VALUES ('000567', 'Supplemental Educational Services Funds Spent', 'SES Funds Spent', 'The dollar amount spent on supplemental educational services during the school year under Title I, Part A, Section 1116 of ESEA as amended.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23559', '12', '23559', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000526', 'Assignment Start Date', NULL, 'The year, month and day from which the assignment is valid.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21517', '11', '21517', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000568', 'Public School Choice Funds Spent', NULL, 'The dollar amount spent on transportation for public school choice during the school year under Title I of ESEA as amended, Part A, Section 1116.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23560', '12', '23560', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000527', 'Assignment End Date', NULL, 'The last year, month and day on which the assignment is valid.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21518', '11', '21518', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000569', 'Truant Status', NULL, 'An indication that a student is identified as a truant as defined by state rules.', NULL, '1', 'Some data systems may require additional information on truancy based on local requirements. For example, capturing students who reach the statutory truancy status but then are in and out of attendance after that point, may require use of Number of Days in Attendance in conjunction with Truancy.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23561', '12', '23561', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000528', 'Itinerant Teacher', NULL, 'An indication of whether a teacher provides instruction in more than one instructional site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21519', '11', '21519', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000571', 'Pre and Post Test Indicator', NULL, 'An indication of whether students took both a pre-test and a post-test to measure academic improvement.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23563', '12', '23563', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000529', 'First Entry Date into a US School', NULL, 'The year, month and day of a person''s initial enrollment into a United States school.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21520', '11', '21520', NULL, NULL) +VALUES ('000572', 'Assessment Result Pretest Outcome', NULL, 'The results of a pre-test in academic subjects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23564', '12', '23564', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000530', 'Promotion Reason', NULL, 'The nature of the student''s promotion or progress at the end of a given school term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21521', '11', '21521', NULL, NULL) +VALUES ('000573', 'Proficiency Status', NULL, 'An indication of whether a student''s scores were proficient.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23565', '12', '23565', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000531', 'Nonpromotion Reason', NULL, 'The primary reason as to why a staff member determined that a student should not be promoted (or be demoted).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21522', '11', '21522', NULL, NULL) +VALUES ('000574', 'Supplemental Education Services Public School Choice Twenty Percent Obligation', 'SES Public School Choice Twenty Percent Obligation', 'The dollar amount of the 20 percent reservation for supplemental educational services and choice-related transportation.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23566', '12', '23566', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000532', 'Public School Residence Status', NULL, 'An indication of the location of a persons legal residence relative to (within or outside) the boundaries of the public school attended and its administrative unit.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21523', '11', '21523', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000575', 'Supplemental Educational Services Per Pupil Expenditure', 'SES Per Pupil Expenditure', 'The maximum dollar amount that may be spent per child for expenditures related to supplemental educational services under Title I of the ESEA.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23567', '12', '23567', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000533', 'School Operational Status', NULL, 'The current status of the school operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21524', '11', '21524', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000577', 'Disability Status', NULL, 'An indication of whether a person is classified as disabled under the American''s with Disability Act (ADA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23569', '12', '23569', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000534', 'Operational Status Effective Date', NULL, 'The effective date for a change in operational status.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21525', '11', '21525', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000578', 'Educational Services After Removal', NULL, 'An indication of whether children (students) were provided educational services when removed from the regular school program for disciplinary reasons.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23570', '12', '23570', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000535', 'IDEA Educational Environment for School Age', NULL, 'The setting in which children ages 6 through 21, receive special education and related services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21526', '11', '21526', NULL, NULL) +VALUES ('000580', 'Single Parent or Single Pregnant Woman Status', NULL, 'A student who, at some time during the school year, is either a pregnant female student who is unmarried; or a male or female student who is unmarried or legally separated from a spouse and has a minor child or children.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23573', '12', '23573', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000536', 'Title III Accountability Progress Status', NULL, 'An indication of the progress made by a student toward English proficiency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21527', '11', '21527', NULL, NULL) +VALUES ('000581', 'Perkins English Learner Status', NULL, 'A secondary student, an adult, or an out-of-school youth, who has limited ability in speaking, reading, writing, or understanding English language, and (a) whose native language is a language other than English, or (b) who lives in a family or community environment in which a language other than English is the dominant language.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23574', '12', '23574', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000537', 'Local Education Agency Type', NULL, ' The classification of education agencies within the geographic boundaries of a state according to the level of administrative and operational control.', NULL, '1', 'Option definitions from EDFacts documents
EDFacts Data Set for School Years 2016-17, 2017-18, and 2018-19 -- Attachment B-2 (February 2016).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21528', '11', '21528', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000584', 'Cohort Graduation Year', NULL, 'The year the cohort is expected to graduate.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23577', '12', '23577', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000538', 'Discipline Method of Children with Disabilities', NULL, 'The type of suspension or expulsion used for the discipline of children with disabilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21529', '11', '21529', NULL, NULL) +VALUES ('000585', 'State Poverty Designation', NULL, 'The designation of a school’s poverty quartile for purposes of determining classes taught by highly qualified teachers in high and low poverty schools, according to state’s indicator of poverty.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23578', '12', '23578', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000539', 'IDEA Interim Removal Reason', NULL, 'The reasons why children with disabilities were unilaterally removed from their current educational placement to an interim alternative educational setting.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21530', '11', '21530', NULL, NULL) +VALUES ('000586', 'Postsecondary Enrollment Action', NULL, 'The action taken with respect to postsecondary enrollment by the student who graduated from the school, LEA or state in the past two years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23579', '12', '23579', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000540', 'Assessment Registration Reason Not Completing', NULL, 'The primary reason a participant did not complete an assessment.', NULL, '1', 'This may apply to any learner, but is used particularly for reporting based on children with disabilities (IDEA).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21531', '11', '21531', NULL, NULL) +VALUES ('000587', 'Internet Access', NULL, 'The type of internet access available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23580', '12', '23580', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000541', 'IDEA Interim Removal', NULL, 'The type of interim removal from current educational setting experienced by children with disabilities (IDEA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21532', '11', '21532', NULL, NULL) +VALUES ('000588', 'Career Technical Education Nontraditional Gender Status', 'CTE Nontraditional Gender Status', 'An indication of whether CTE participants were members of an underrepresented gender group (where one gender comprises less than 25 percent of the persons employed in those occupations or field of work).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23581', '12', '23581', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000542', 'Consolidated Migrant Education Program Funds Status', 'Consolidated MEP Funds Status', 'An indication of whether the school has a school-wide program, as defined by current law, in which federal Migrant Education Program (MEP) funds are consolidated.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21533', '11', '21533', NULL, NULL) +VALUES ('000589', 'Faculty and Administration Performance Level', NULL, 'The levels used in district evaluation systems for assigning teacher or principal performance ratings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23582', '12', '23582', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000543', 'Migrant Education Program Personnel Indicator', 'MEP Personnel Indicator', 'An indication that a staff member''s salary is paid by the Title I, Part C Migrant Education Program (MEP) of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21534', '11', '21534', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000590', 'Program Participation Start Date', NULL, 'The year, month and day on which the person began to participate in a program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23583', '12', '23583', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000544', 'Annual Measurable Achievement Objective Proficiency Attainment Status for LEP Students', 'AMAO Proficiency Attainment Status for LEP Students', 'An indication whether the state, district or school met the Annual Measurable Achievement Objectives (AMAO) for attaining English proficiency for limited English proficient (LEP) students under Title III of ESEA.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21535', '11', '21535', 'Removed', 'Marked "Annual Measurable Achievement Objective Proficiency Attainment Status for LEP Students" as "Removed". Element is no longer in use.') +VALUES ('000591', 'Program Participation Exit Date', NULL, 'The year, month and day on which the person ceased to participate in a program.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23584', '12', '23584', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000545', 'Discipline Reason', NULL, 'The reason why the student was disciplined.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21536', '11', '21536', NULL, NULL) +VALUES ('000592', 'Career and Technical Education Participant', 'CTE Participant', 'An indication a student has met the state-defined threshold of Career and Technical Education participation as defined in the State''s approved Perkins IV State Plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23585', '12', '23585', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000546', 'Technology Skills Standards Met', NULL, 'An indication that the person has achieved acceptable performance on a standards-based profile of technology user skills as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21537', '11', '21537', NULL, NULL) +VALUES ('000593', 'Career and Technical Education Nontraditional Completion', 'CTE Nontraditional Completion', 'An indication that the CTE student has completed a CTE program in a nontraditional field (where one gender comprises less than 25 percent of the persons employed in those occupations or fields of work).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23586', '12', '23586', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000547', 'Federal Program Code', NULL, 'The unique five-digit number assigned to each federal program as listed in the Assistance Listings. See https://sam.gov/content/assistance-listings', 'Numeric - up to 2 digits before and 3 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21538', '11', '21538', 'Updated', 'Updated definition to change link to sam.gov.') +VALUES ('000594', 'Responsible District Type', NULL, 'The type of responsibility the district has for the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23587', '12', '23587', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000548', 'Federal Programs Funding Allocation Type', NULL, 'The type of federal program funding allocation or distribution made.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21539', '11', '21539', NULL, NULL) +VALUES ('000595', 'Responsible School Type', NULL, 'The type of services/instruction the school is responsible for providing to the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23588', '12', '23588', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000549', 'Federal Programs Funding Allocation', NULL, 'The amount of federal dollars distributed to local education agencies (LEAs), retained by the state education agency (SEA) for program administration or other approved state-level activities (including unallocated, transferred to another state agency, or distributed to entities other than LEAs).', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21540', '11', '21540', NULL, NULL) +VALUES ('000596', 'Additional Credit Type', NULL, 'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23589', '12', '23589', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000550', 'Title I Schoolwide Program Participation', NULL, 'An indication that the student participates in and is served by a schoolwide program (SWP) under Title I of ESEA, Part A, Sections 1114.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21541', '11', '21541', NULL, NULL) +VALUES ('000597', 'Assessment Session Location', NULL, ' The description of the place where an assessment is administered.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23590', '12', '23590', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000551', 'Title I Targeted Assistance Participation', NULL, 'An indication that the student participates in and is served by a targeted assistance (TAS) program under Title I of ESEA, Part A, Sections 1115.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21542', '11', '21542', NULL, NULL) +VALUES ('000598', 'Alternate Day Name', NULL, 'An alternate name used for the school day, typically used for the bell schedule (e.g., Blue day, Red day).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23591', '12', '23591', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000552', 'Title I Targeted Assistance Staff Funded', NULL, 'An indication that a staff member is targeted assistance (TAS) program staff funded by Title I, Part A, Section 1115 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21543', '11', '21543', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000599', 'Absent Attendance Category', NULL, ' The category that describes how the student spends his or her time not physically present on school grounds and not participating in instruction or instruction-related activities at an approved off-grounds location.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23592', '12', '23592', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000553', 'Proficiency Target Status for Reading and Language Arts', NULL, 'An indication of whether the school or district met the reading/language arts proficiency target in accordance with state definition for the purposes of determining AYP.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21544', '11', '21544', NULL, NULL) +VALUES ('000600', 'Present Attendance Category', NULL, 'The category that describes how the student spends his or her time when attending an instructional program approved by the state and/or school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23593', '12', '23593', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000554', 'Annual Measurable Achievement Objective Progress Attainment Status for LEP Students', 'AMAO Progress Attainment Status for LEP Students', 'An indication whether the state, district, or school met the Annual Measurable Achievement Objective (AMAO) for making progress in learning English for limited English proficient (LEP) students under Title III of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21545', '11', '21545', 'Removed', 'Marked "Annual Measurable Achievement Objective Progress Attainment Status for LEP Students" as "Removed". Element is no longer in use.') +VALUES ('000601', 'Attendance Event Type', NULL, 'The type of attendance event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23594', '12', '23594', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000555', 'Discipline Method for Firearms Incidents', NULL, 'The method used to discipline students who are not children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21546', '11', '21546', NULL, NULL) +VALUES ('000602', 'Building Site Number', NULL, 'The number of the building on the site, if more than one building shares the same address.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23595', '12', '23595', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000556', 'IDEA Discipline Method for Firearms Incidents', NULL, 'The methods used to discipline students who are children with disabilities (IDEA) involved in firearms and other outcomes of firearms incidents.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21547', '11', '21547', NULL, NULL) +VALUES ('000603', 'Calendar Event Type', NULL, 'A type of scheduled or unscheduled calendar event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23596', '12', '23596', 'Updated', 'Added new option to existing option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000557', 'Firearm Type', NULL, 'The type of firearm.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21548', '11', '21548', NULL, NULL) +VALUES ('000605', 'Assessment Content Standard Type', NULL, 'An indication as to whether an assessment conforms to a standard.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23598', '12', '23598', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000558', 'Special Education Support Services Category', NULL, 'Titles of personnel employed and contracted to provide special education and related services for children with disabilities.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21549', '11', '21549', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000606', 'Latitude', NULL, 'The north or south angular distance from the equator that, when combined with longitude, reflects an estimation of where the address is physically situated.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23599', '12', '23599', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000559', 'IDEA Educational Environment for Early Childhood', NULL, 'The program in which children ages 3 through 5 attend and in which these children receive special education and related services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21550', '11', '21550', NULL, NULL) +VALUES ('000607', 'Longitude', NULL, 'The east or west angular distance from the prime meridian that, when combined with latitude, reflects an estimation of where the address is physically situated.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23600', '12', '23600', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000560', 'Rural Education Achievement Program Alternative Funding Status', 'REAP Alternative Funding Status', 'An indication that the local education agency (LEA) notified the state of the LEA''s intention to use REAP-Flex Alternative Uses of Funding Authority during the school year as specified in the Title VI, Section 6211 of ESEA as amended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21552', '11', '21552', NULL, NULL) +VALUES ('000609', 'Discipline Action Length Difference Reason', NULL, 'The reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23602', '12', '23602', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000561', 'Progress Level', NULL, 'The amount of progress shown in academic subjects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21553', '11', '21553', NULL, NULL) +VALUES ('000610', 'Displaced Student Status', NULL, 'A student who was enrolled, or eligible for enrollment, but has enrolled in another place because of a crisis.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23603', '12', '23603', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000562', 'Migrant Prioritized for Services', NULL, 'An indication that a migratory child 1) is failing to meet, or most at risk of failing to meet, the state''s challenging academic content standards and student academic achievement standards; and 2) has experienced interruptions in their education during the regular school year.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21554', '11', '21554', NULL, NULL) +VALUES ('000611', 'Crisis Code', NULL, 'A unique number or alphanumeric code used to identify a crisis. This code should be able to accommodate numerous crises within a single school year. It is associated with the displaced student identifier in order to link a crisis to a student who was displaced or otherwise affected by the event. If the same code values are to be used over multiple years, it is important to have enough crisis-specific items (e.g., school year, date/time) to keep the events unique over time.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23604', '12', '23604', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000563', 'Migrant Education Program Continuation of Services Status', 'MEP Continuation of Services Status', 'An indication that migrant children are receiving instructional or support services under the continuation of services authority ESEA Title III Section 1304(e)(2)-(3).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21555', '11', '21555', NULL, NULL) +VALUES ('000612', 'Crisis Name', NULL, 'The name of the crisis that caused the displacement of students.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23605', '12', '23605', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000564', 'Special Education Age Group Taught', NULL, 'The age range of special education students taught.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21556', '11', '21556', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000613', 'Crisis Type', NULL, 'The type or category of crisis (ex., chemical, earthquake, flood, wildfire, etc.).', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23606', '12', '23606', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000565', 'Title III English Learner Participation Status', NULL, 'An indication that an English Learner student is served by an English language instruction educational program supported with Title III of ESEA funds.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21557', '11', '21557', 'Updated', 'Removed Alternate Name.') +VALUES ('000614', 'Crisis Start Date', NULL, 'The year, month and day on which the crisis affected the agency. This date may not be the same as the date the crisis occurred if evacuation orders are implemented in anticipation of a crisis.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23607', '12', '23607', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000566', 'Technology Literacy Status in 8th Grade', NULL, 'An indication of the technology literacy of 8th graders.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21558', '11', '21558', NULL, NULL) +VALUES ('000616', 'Grade Value Qualifier', NULL, 'The scale of equivalents, if applicable, for grades awarded as indicators of performance in schoolwork. For example, numerical equivalents for letter grades used in determining a student''s Grade Point Average (A=4, B=3, C=2, D=1 in a four-point system) or letter equivalents for percentage grades (90-100%=A, 80-90%=B, etc.)', 'Alphanumeric - 100 characters maximum', '0', 'A list of "Academic Grade Qualifiers" is available from the Association of American Medical Colleges, 2450 N St., N.W., Washington, DC 20037', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23609', '12', '23609', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000567', 'Supplemental Educational Services Funds Spent', 'SES Funds Spent', 'The dollar amount spent on supplemental educational services during the school year under Title I, Part A, Section 1116 of ESEA as amended.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21559', '11', '21559', NULL, NULL) +VALUES ('000617', 'Incident Location', NULL, 'Identifies where the incident occurred and whether or not it occurred on campus.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23610', '12', '23610', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000568', 'Public School Choice Funds Spent', NULL, 'The dollar amount spent on transportation for public school choice during the school year under Title I of ESEA as amended, Part A, Section 1116.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21560', '11', '21560', NULL, NULL) +VALUES ('000618', 'Personal Information Verification', NULL, 'The evidence by which a persons name, address, date of birth, etc. is confirmed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23611', '12', '23611', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000569', 'Truant Status', NULL, 'An indication that a student is identified as a truant as defined by state rules.', NULL, '1', 'Some data systems may require additional information on truancy based on local requirements. For example, capturing students who reach the statutory truancy status but then are in and out of attendance after that point, may require use of Number of Days in Attendance in conjunction with Truancy.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21561', '11', '21561', NULL, NULL) +VALUES ('000620', 'Employment Separation Reason', NULL, 'The primary reason for the termination of the employment relationship.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23613', '12', '23613', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000571', 'Pre and Post Test Indicator', NULL, 'An indication of whether students took both a pre-test and a post-test to measure academic improvement.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21563', '11', '21563', NULL, NULL) +VALUES ('000621', 'Employment Separation Type', NULL, 'A designation of the type of separation occurring between a person and the organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23614', '12', '23614', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000572', 'Assessment Result Pretest Outcome', NULL, 'The results of a pre-test in academic subjects.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21564', '11', '21564', NULL, NULL) +VALUES ('000622', 'Classroom Position Type', NULL, 'The type of position the staff member holds in the specific course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23615', '12', '23615', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000573', 'Proficiency Status', NULL, 'An indication of whether a student''s scores were proficient.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21565', '11', '21565', NULL, NULL) +VALUES ('000624', 'Leave Event Type', NULL, 'The type of the leave event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23617', '12', '23617', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000574', 'Supplemental Education Services Public School Choice Twenty Percent Obligation', 'SES Public School Choice Twenty Percent Obligation', 'The dollar amount of the 20 percent reservation for supplemental educational services and choice-related transportation.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21566', '11', '21566', NULL, NULL) +VALUES ('000625', 'Program Identifier', NULL, 'A unique number or alphanumeric code assigned to a program by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23618', '12', '23618', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000575', 'Supplemental Educational Services Per Pupil Expenditure', 'SES Per Pupil Expenditure', 'The maximum dollar amount that may be spent per child for expenditures related to supplemental educational services under Title I of the ESEA.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21567', '11', '21567', NULL, NULL) +VALUES ('000626', 'Program Name', NULL, 'The name of the program of instruction, training, services or benefits available through federal, state, or local agencies.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23619', '12', '23619', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000577', 'Disability Status', NULL, 'An indication of whether a person is classified as disabled under the American''s with Disability Act (ADA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21569', '11', '21569', NULL, NULL) +VALUES ('000627', 'Secondary Incident Behavior', NULL, 'Supplemental information about an incident when the primary offense is more serious in nature than alcohol or drug, etc. offenses.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23620', '12', '23620', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000578', 'Educational Services After Removal', NULL, 'An indication of whether children (students) were provided educational services when removed from the regular school program for disciplinary reasons.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21570', '11', '21570', NULL, NULL) +VALUES ('000630', 'Assessment Item Identifier', NULL, 'The identifier that uniquely identifies an assessment item.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23623', '12', '23623', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000579', 'Annual Measurable Achievement Objective AYP Progress Attainment Status for LEP Students', 'AMAO AYP Progress Attainment Status for LEP Students', 'An indication of whether the state or district met the annual measurable objectives for the Limited English Proficient (LEP) student subgroup in mathematics and reading/language arts.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21572', '11', '21572', 'Removed', 'Marked "Annual Measurable Achievement Objective AYP Progress Attainment Status for LEP Students" as "Removed". Element is no longer in use.') +VALUES ('000632', 'Site Name', NULL, 'The full, legally accepted name of the institution at the site level.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23625', '12', '23625', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000580', 'Single Parent or Single Pregnant Woman Status', NULL, 'A student who, at some time during the school year, is either a pregnant female student who is unmarried; or a male or female student who is unmarried or legally separated from a spouse and has a minor child or children.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21573', '11', '21573', NULL, NULL) +VALUES ('000633', 'Early Learning Youngest Age Authorized to Serve', NULL, 'The youngest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23626', '12', '23626', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000581', 'Perkins English Learner Status', NULL, 'A secondary student, an adult, or an out-of-school youth, who has limited ability in speaking, reading, writing, or understanding English language, and (a) whose native language is a language other than English, or (b) who lives in a family or community environment in which a language other than English is the dominant language.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21574', '11', '21574', 'Updated', 'Changed Name, Definition, Technical Name and removed Alternate Name.') +VALUES ('000634', 'Other Name Type', NULL, 'The types of previous, alternate or other names for a person.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23627', '12', '23627', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000584', 'Cohort Graduation Year', NULL, 'The year the cohort is expected to graduate.', 'YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21577', '11', '21577', NULL, NULL) +VALUES ('000635', 'Neglected or Delinquent Academic Achievement Indicator', NULL, 'Student was served by Title I, Part D, Subpart 1 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.', NULL, '1', 'The elements "Neglected or Delinquent Academic Achievement Indicator" and "Neglected or Delinquent Academic Outcome Indicator" are different, although similarly worded.
EDFacts guidance: The Neglected or Delinquent Academic Achievement indicator should only be used for Subpart 1; the Neglected or Delinquent Academic Outcome Indicator should be used for Subpart 2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23636', '12', '23636', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000585', 'State Poverty Designation', NULL, 'The designation of a school’s poverty quartile for purposes of determining classes taught by highly qualified teachers in high and low poverty schools, according to state’s indicator of poverty.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21578', '11', '21578', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000636', 'Neglected or Delinquent Academic Outcome Indicator', NULL, 'Student was served by Title I, Part D, Subpart 2 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.', NULL, '1', 'The elements "Neglected or Delinquent Academic Achievement Indicator" and "Neglected or Delinquent Academic Outcome Indicator" are different, although similarly worded.
EDFacts guidance: The Neglected or Delinquent Academic Achievement indicator should only be used for Subpart 1; the Neglected or Delinquent Academic Outcome Indicator should be used for Subpart 2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23638', '12', '23638', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000586', 'Postsecondary Enrollment Action', NULL, 'The action taken with respect to postsecondary enrollment by the student who graduated from the school, LEA or state in the past two years.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21579', '11', '21579', NULL, NULL) +VALUES ('000637', 'Responsible District Identifier', NULL, 'The district responsible for specific educational services and/or instruction of the student.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23639', '12', '23639', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000587', 'Internet Access', NULL, 'The type of internet access available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21580', '11', '21580', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000638', 'Responsible School Identifier', NULL, 'The school responsible for specific education services and/or instruction of the student.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23640', '12', '23640', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000588', 'Career Technical Education Nontraditional Gender Status', 'CTE Nontraditional Gender Status', 'An indication of whether CTE participants were members of an underrepresented gender group (where one gender comprises less than 25 percent of the persons employed in those occupations or field of work).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21581', '11', '21581', NULL, NULL) +VALUES ('001066', 'Address Type for Organization', NULL, 'The type of address listed for an organization.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23644', '12', '23644', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000589', 'Faculty and Administration Performance Level', NULL, 'The levels used in district evaluation systems for assigning teacher or principal performance ratings.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21582', '11', '21582', NULL, NULL) +VALUES ('000645', 'Teaching Assignment Start Date', NULL, 'The year, month and day on which a teaching assignment begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23647', '12', '23647', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000590', 'Program Participation Start Date', NULL, 'The year, month and day on which the person began to participate in a program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21583', '11', '21583', NULL, NULL) +VALUES ('000646', 'Teaching Assignment End Date', NULL, 'The year, month and day on which a teaching assignment ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was employed.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23648', '12', '23648', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000591', 'Program Participation Exit Date', NULL, 'The year, month and day on which the person ceased to participate in a program.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21584', '11', '21584', NULL, NULL) +VALUES ('000647', 'Teacher of Record', NULL, 'Staff member who has a Teacher of Record responsibility for a Class Section based upon the state''s definition of Teacher of Record.', NULL, '1', 'There is usually one Teacher of Record assignment in a Class Section except in the case of co-teaching/team-teaching.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23649', '12', '23649', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000592', 'Career and Technical Education Participant', 'CTE Participant', 'An indication a student has met the state-defined threshold of Career and Technical Education participation as defined in the State''s approved Perkins IV State Plan.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21585', '11', '21585', NULL, NULL) +VALUES ('000648', 'Teaching Assignment Role', NULL, 'The role that the Staff Member has been assigned for a Class Section. (A teacher may have the lead responsibility for one section and serve a supporting role for another section of the same course.)', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23650', '12', '23650', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000593', 'Career and Technical Education Nontraditional Completion', 'CTE Nontraditional Completion', 'An indication that the CTE student has completed a CTE program in a nontraditional field (where one gender comprises less than 25 percent of the persons employed in those occupations or fields of work).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21586', '11', '21586', NULL, NULL) +VALUES ('000649', 'Teaching Assignment Contribution Percentage', NULL, 'A percentage used to weight the educator''s assigned responsibility for student learning in a Class Section, particularly when more than one educator is assigned to the class section.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23651', '12', '23651', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000594', 'Responsible District Type', NULL, 'The type of responsibility the district has for the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21587', '11', '21587', NULL, NULL) +VALUES ('000650', 'Course Section Entry Type', NULL, 'The process by which a student enters a school (Course Section) during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23652', '12', '23652', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000595', 'Responsible School Type', NULL, 'The type of services/instruction the school is responsible for providing to the student.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21588', '11', '21588', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000651', 'Course Section Exit Withdrawal Date', NULL, 'The year, month and day of the first day after the date of a person''s last enrollment in a course section.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23653', '12', '23653', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000596', 'Additional Credit Type', NULL, 'The type of credits or units of value available for the completion of a course in addition to Carnegie Units.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21589', '11', '21589', NULL, NULL) +VALUES ('000652', 'Course Section Exit Type', NULL, 'The circumstances under which the student exited from membership in a course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23654', '12', '23654', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000597', 'Assessment Session Location', NULL, ' The description of the place where an assessment is administered.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21590', '11', '21590', NULL, NULL) +VALUES ('000016', 'American Indian or Alaska Native', 'Race American Indian or Alaska Native', 'A person having origins in any of the original peoples of North and South America (including Central America), and who maintains cultural identification through tribal affiliation or community attachment.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23655', '12', '23655', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000598', 'Alternate Day Name', NULL, 'An alternate name used for the school day, typically used for the bell schedule (e.g., Blue day, Red day).', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21591', '11', '21591', NULL, NULL) +VALUES ('000020', 'Asian', 'Race Asian', 'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian Subcontinent. This area includes, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23656', '12', '23656', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000599', 'Absent Attendance Category', NULL, ' The category that describes how the student spends his or her time not physically present on school grounds and not participating in instruction or instruction-related activities at an approved off-grounds location.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21592', '11', '21592', NULL, NULL) +VALUES ('000034', 'Black or African American', 'Race Black or African American', 'A person having origins in any of the black racial groups of Africa.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23657', '12', '23657', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000600', 'Present Attendance Category', NULL, 'The category that describes how the student spends his or her time when attending an instructional program approved by the state and/or school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21593', '11', '21593', NULL, NULL) +VALUES ('000192', 'Native Hawaiian or Other Pacific Islander', 'Race Native Hawaiian or Other Pacific Islander', 'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23658', '12', '23658', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000601', 'Attendance Event Type', NULL, 'The type of attendance event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21594', '11', '21594', NULL, NULL) +VALUES ('000301', 'White', 'Race White', 'A person having origins in any of the original peoples of Europe, Middle East, or North Africa.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23659', '12', '23659', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000602', 'Building Site Number', NULL, 'The number of the building on the site, if more than one building shares the same address.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21595', '11', '21595', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000653', 'Interscholastic Sports - Male Only', NULL, 'The number of interscholastic sports in which only male students participate. Sports include distinct sports such as football, basketball, soccer but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23660', '12', '23660', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000603', 'Calendar Event Type', NULL, 'A type of scheduled or unscheduled calendar event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21596', '11', '21596', NULL, NULL) +VALUES ('000654', 'Interscholastic Sports - Female Only', NULL, 'The number of interscholastic sports in which only female students participate. Sports include distinct sports such as football, basketball, soccer but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23661', '12', '23661', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000605', 'Assessment Content Standard Type', NULL, 'An indication as to whether an assessment conforms to a standard.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21598', '11', '21598', NULL, NULL) +VALUES ('000655', 'Interscholastic Teams - Male Only', NULL, 'The number of interscholastic teams in which only male students participate. Teams include each competitive level team in each sport, such as freshman team, junior varsity team, and varsity team but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23662', '12', '23662', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000606', 'Latitude', NULL, 'The north or south angular distance from the equator that, when combined with longitude, reflects an estimation of where the address is physically situated.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21599', '11', '21599', NULL, NULL) +VALUES ('000656', 'Interscholastic Teams - Female Only', NULL, 'The number of interscholastic teams in which only female students participate. Teams include each competitive level team in each sport, such as freshman team, junior varsity team, and varsity team but not intramural sports or cheerleading.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23663', '12', '23663', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000607', 'Longitude', NULL, 'The east or west angular distance from the prime meridian that, when combined with latitude, reflects an estimation of where the address is physically situated.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21600', '11', '21600', NULL, NULL) +VALUES ('000657', 'Interscholastic Sport Participants - Male Only', NULL, 'The number of male students who participated on an interscholastic team. A student should be counted once for each team he was on.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23664', '12', '23664', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000609', 'Discipline Action Length Difference Reason', NULL, 'The reason for the difference, if any, between the official and actual lengths of a student’s disciplinary assignment.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21602', '11', '21602', NULL, NULL) +VALUES ('000658', 'Interscholastic Sport Participants - Female Only', NULL, 'The number of female students who participated on an interscholastic team. A student should be counted once for each team she was on.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23665', '12', '23665', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000610', 'Displaced Student Status', NULL, 'A student who was enrolled, or eligible for enrollment, but has enrolled in another place because of a crisis.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21603', '11', '21603', NULL, NULL) +VALUES ('000689', 'Competency Definition Identifier', 'Learning Standard Item Identifier, Competency Item Identifier', 'The globally unique identifier (GUID) issued by the publisher of the competency framework that uniquely identifies the definition in the hierarchy of competency definitions using a RFC 4122 compliant 32-character hexadecimal string, such as 21EC2020-3AEA-1069-A2DD-08002B30309D.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23666', '12', '23666', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000611', 'Crisis Code', NULL, 'A unique number or alphanumeric code used to identify a crisis. This code should be able to accommodate numerous crises within a single school year. It is associated with the displaced student identifier in order to link a crisis to a student who was displaced or otherwise affected by the event. If the same code values are to be used over multiple years, it is important to have enough crisis-specific items (e.g., school year, date/time) to keep the events unique over time.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21604', '11', '21604', NULL, NULL) +VALUES ('000690', 'Competency Definition Statement', 'Learning Standard Item Statement, Competency Item Statement', 'The text of the statement. The textual content that either describes a specific competency or describes a less granular group of competencies within the taxonomy of the competency framework.', 'Alphanumeric', '0', 'Note: This element is designed to support statements from various learning standards frameworks. The Head Start Child Outcomes Framework includes statements for Domains, Elements, and Indicators. Examples from the K-12 Common Core State Standards are the domain: “Geometry", the cluster: “Understand and apply the Pythagorean Theorem,” and standard: “Apply the Pythagorean Theorem to determine unknown side lengths in right triangles in real-world and mathematical problems in two and three dimensions.”', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23667', '12', '23667', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000612', 'Crisis Name', NULL, 'The name of the crisis that caused the displacement of students.', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21605', '11', '21605', NULL, NULL) +VALUES ('000691', 'Competency Definition Type', 'Learning Standard Item Type, Competency Item Type', 'The class of statement in the structure of statements in the Competency Framework according to a controlled vocabulary, specified as a textual label.', 'Alphanumeric - 60 characters maximum', '0', 'This property points to a class, not to instances of that class. For example, where two competencies in a competency framework have been identified respectively as \"Strand: Renaissance\" and \"Strand: Social history\", the competencyCategory for both these competencies is \"Strand\"."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23668', '12', '23668', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000613', 'Crisis Type', NULL, 'The type or category of crisis (ex., chemical, earthquake, flood, wildfire, etc.).', 'Alphanumeric - 45 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21606', '11', '21606', NULL, NULL) +VALUES ('000692', 'Competency Definition Code', 'Learning Standard Item Code, Competency Item Code', 'A human-referenceable code designated by the publisher to identify the item in the hierarchy of competency definitions.', 'Alphanumeric - 30 characters maximum', '0', 'For example: "M.1.N.3" The code is usually not globally unique and usually has embedded meaning such as a number that represents a grade/level and letters that represent content strands.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23669', '12', '23669', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000614', 'Crisis Start Date', NULL, 'The year, month and day on which the crisis affected the agency. This date may not be the same as the date the crisis occurred if evacuation orders are implemented in anticipation of a crisis.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21607', '11', '21607', NULL, NULL) +VALUES ('000693', 'Competency Framework Identifier URI', 'Learning Standard Document Identifier URI', 'An unambiguous reference to the competency framework using a network-resolvable URI.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23670', '12', '23670', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000616', 'Grade Value Qualifier', NULL, 'The scale of equivalents, if applicable, for grades awarded as indicators of performance in schoolwork. For example, numerical equivalents for letter grades used in determining a student''s Grade Point Average (A=4, B=3, C=2, D=1 in a four-point system) or letter equivalents for percentage grades (90-100%=A, 80-90%=B, etc.)', 'Alphanumeric - 100 characters maximum', '0', 'A list of "Academic Grade Qualifiers" is available from the Association of American Medical Colleges, 2450 N St., N.W., Washington, DC 20037', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21609', '11', '21609', NULL, NULL) +VALUES ('000694', 'Competency Framework Title', 'Learning Standard Document Title', 'The name of the competency framework.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23671', '12', '23671', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000617', 'Incident Location', NULL, 'Identifies where the incident occurred and whether or not it occurred on campus.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21610', '11', '21610', NULL, NULL) +VALUES ('000695', 'Competency Framework Version', 'Learning Standard Document Version', 'Defines the revision of the competency framework as a version number or date.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23672', '12', '23672', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000618', 'Personal Information Verification', NULL, 'The evidence by which a persons name, address, date of birth, etc. is confirmed.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21611', '11', '21611', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000696', 'Competency Framework Creator', 'Learning Standard Document Creator', 'The person or organization chiefly responsible for the intellectual content of the competency framework.', 'Alphanumeric - 120 characters maximum', '0', 'Implementations may choose to model this element as a repeatable field to support the case of multiple authors. Others may just use a comma delimited string for multiple authors.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23673', '12', '23673', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000620', 'Employment Separation Reason', NULL, 'The primary reason for the termination of the employment relationship.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21613', '11', '21613', NULL, NULL) +VALUES ('000697', 'Competency Framework Description', 'Learning Standard Document Description', 'A textual description of the scope and contents of the competency framework.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23674', '12', '23674', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000621', 'Employment Separation Type', NULL, 'A designation of the type of separation occurring between a person and the organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21614', '11', '21614', NULL, NULL) +VALUES ('000698', 'Competency Framework Publication Status', 'Learning Standard Document Publication Status', 'The publication status of the competency framework.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23675', '12', '23675', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000622', 'Classroom Position Type', NULL, 'The type of position the staff member holds in the specific course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21615', '11', '21615', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000699', 'Competency Framework Jurisdiction', 'Learning Standard Document Jurisdiction', 'A legal, quasi-legal, organizational or institutional domain of the entity mandating the use of the statement--e.g., California.', 'Alphanumeric - 120 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23676', '12', '23676', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000624', 'Leave Event Type', NULL, 'The type of the leave event.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21617', '11', '21617', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000700', 'Competency Framework Valid Start Date', 'Learning Standard Document Valid Start Date', 'The year, month and day the competency framework was adopted by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23677', '12', '23677', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000625', 'Program Identifier', NULL, 'A unique number or alphanumeric code assigned to a program by a school, school system, a state, or other agency or entity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21618', '11', '21618', 'Updated', 'Added elements to DES contexts to support Early Learning and K12 implementation needs.') +VALUES ('000701', 'Competency Framework Valid End Date', 'Learning Standard Document Valid End Date', 'The year, month and day the competency framework was deprecated/replaced by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23678', '12', '23678', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000626', 'Program Name', NULL, 'The name of the program of instruction, training, services or benefits available through federal, state, or local agencies.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21619', '11', '21619', 'Updated', 'Added elements to DES contexts to support Early Learning and K12 implementation needs.') +VALUES ('000702', 'Competency Framework Subject', 'Learning Standard Document Subject', 'The topic or academic subject of the competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23679', '12', '23679', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000627', 'Secondary Incident Behavior', NULL, 'Supplemental information about an incident when the primary offense is more serious in nature than alcohol or drug, etc. offenses.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21620', '11', '21620', NULL, NULL) +VALUES ('000703', 'Vision Screening Date', NULL, 'The year, month and day of a vision screening.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23680', '12', '23680', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000630', 'Assessment Item Identifier', NULL, 'The identifier that uniquely identifies an assessment item.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21623', '11', '21623', NULL, NULL) +VALUES ('000705', 'Hearing Screening Date', NULL, 'The year, month and day of a hearing screening.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23681', '12', '23681', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000632', 'Site Name', NULL, 'The full, legally accepted name of the institution at the site level.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21625', '11', '21625', NULL, NULL) +VALUES ('000706', 'Dental Screening Date', NULL, 'The year, month and day of a dental screening', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23682', '12', '23682', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000633', 'Early Learning Youngest Age Authorized to Serve', NULL, 'The youngest age of children a class/group is authorized or licensed to serve. (Age is specified in months)', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21626', '11', '21626', NULL, NULL) +VALUES ('000707', 'Assessment Item Maximum Score', NULL, 'The maximum number of points possible for the assessment item.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23683', '12', '23683', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000634', 'Other Name Type', NULL, 'The types of previous, alternate or other names for a person.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21627', '11', '21627', NULL, NULL) +VALUES ('000708', 'Assessment Item Minimum Score', NULL, 'The minimum number of points possible for the assessment item.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23684', '12', '23684', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000635', 'Neglected or Delinquent Academic Achievement Indicator', NULL, 'Student was served by Title I, Part D, Subpart 1 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.', NULL, '1', 'The elements "Neglected or Delinquent Academic Achievement Indicator" and "Neglected or Delinquent Academic Outcome Indicator" are different, although similarly worded.
EDFacts guidance: The Neglected or Delinquent Academic Achievement indicator should only be used for Subpart 1; the Neglected or Delinquent Academic Outcome Indicator should be used for Subpart 2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21636', '11', '21636', NULL, NULL) +VALUES ('000709', 'Assessment Item Characteristic Value', NULL, 'A psychometric measure provided for an assessment item.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23685', '12', '23685', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000636', 'Neglected or Delinquent Academic Outcome Indicator', NULL, 'Student was served by Title I, Part D, Subpart 2 of ESEA as amended for at least 90 consecutive days during the reporting period who took both a pre- and post-test.', NULL, '1', 'The elements "Neglected or Delinquent Academic Achievement Indicator" and "Neglected or Delinquent Academic Outcome Indicator" are different, although similarly worded.
EDFacts guidance: The Neglected or Delinquent Academic Achievement indicator should only be used for Subpart 1; the Neglected or Delinquent Academic Outcome Indicator should be used for Subpart 2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21638', '11', '21638', NULL, NULL) +VALUES ('000710', 'Charter School Type', NULL, 'The category of charter school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23686', '12', '23686', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000637', 'Responsible District Identifier', NULL, 'The district responsible for specific educational services and/or instruction of the student.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21639', '11', '21639', NULL, NULL) +VALUES ('000711', 'Cohort Description', NULL, 'A description of the student cohort.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23687', '12', '23687', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000638', 'Responsible School Identifier', NULL, 'The school responsible for specific education services and/or instruction of the student.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21640', '11', '21640', NULL, NULL) +VALUES ('000712', 'Curriculum Framework Type', NULL, 'An indication of the standard curriculum used for this course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23688', '12', '23688', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001066', 'Address Type for Organization', NULL, 'The type of address listed for an organization.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21644', '11', '21644', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000713', 'High School Diploma Distinction Type', NULL, 'The distinction of the diploma or credential that is awarded to a student in recognition of their completion of the curricular requirements.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23689', '12', '23689', 'Updated', 'Add new options to option set') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000645', 'Teaching Assignment Start Date', NULL, 'The year, month and day on which a teaching assignment begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21647', '11', '21647', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000714', 'Kindergarten Program Participation Type ', NULL, 'The type of Kindergarten program the student is enrolled in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23690', '12', '23690', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000646', 'Teaching Assignment End Date', NULL, 'The year, month and day on which a teaching assignment ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was employed.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21648', '11', '21648', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000715', 'Competency Definition Prerequisite Identifier', 'Learning Standard Item Prerequisite Identifier, Competency Item Prerequisite Identifier', 'The unique identifier of an immediate prerequisite Competency Definition, a competency needed prior to learning this one. (Some items may have no prerequisites while others may have one or more prerequisites. This should only be used to represent the immediate predecessors in a competency-based pathway, i.e. not prerequisites of prerequisites.)', 'Alphanumeric - 40 characters maximum', '0', 'The recommended approach is to use the entity Learning Standard Item Association instead of this data element. Learning Standard Item Association also supports associating other entities, such as Learning Resources, to learning standard items. CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces. An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23691', '12', '23691', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000647', 'Teacher of Record', NULL, 'Staff member who has a Teacher of Record responsibility for a Class Section based upon the state''s definition of Teacher of Record.', NULL, '1', 'There is usually one Teacher of Record assignment in a Class Section except in the case of co-teaching/team-teaching.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21649', '11', '21649', NULL, NULL) +VALUES ('000716', 'Program Sponsor Type', NULL, 'A type of organization providing funds for a particular educational or service program or activity or for an individual''s participation in the program or activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23692', '12', '23692', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000648', 'Teaching Assignment Role', NULL, 'The role that the Staff Member has been assigned for a Class Section. (A teacher may have the lead responsibility for one section and serve a supporting role for another section of the same course.)', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21650', '11', '21650', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000717', 'Assessment Performance Level Identifier', NULL, 'A unique number or alphanumeric code assigned to an assessment performance level.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23693', '12', '23693', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000649', 'Teaching Assignment Contribution Percentage', NULL, 'A percentage used to weight the educator''s assigned responsibility for student learning in a Class Section, particularly when more than one educator is assigned to the class section.', 'Numeric - up to 3 digits before and 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21651', '11', '21651', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('000718', 'Assessment Performance Level Label', NULL, 'A label representing the performance level appropriate for use on a report.', 'Alphanumeric - 20 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23694', '12', '23694', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000650', 'Course Section Entry Type', NULL, 'The process by which a student enters a school (Course Section) during a given academic session.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21652', '11', '21652', NULL, NULL) +VALUES ('000719', 'Assessment Subtest Rules', NULL, 'A description of the rules to produce a student test/subtest score from for a grouping of student item scores.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23695', '12', '23695', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000651', 'Course Section Exit Withdrawal Date', NULL, 'The year, month and day of the first day after the date of a person''s last enrollment in a course section.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21653', '11', '21653', NULL, NULL) +VALUES ('000722', 'Address Type for Staff', NULL, 'The address type for a staff member.', 'Alphanumeric - 30 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23698', '12', '23698', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000652', 'Course Section Exit Type', NULL, 'The circumstances under which the student exited from membership in a course section.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21654', '11', '21654', NULL, NULL) +VALUES ('000724', 'Assessment Item Response Score Value', NULL, 'The score given to a person''s response to an assessment item.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23700', '12', '23700', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000016', 'American Indian or Alaska Native', 'Race American Indian or Alaska Native', 'A person having origins in any of the original peoples of North and South America (including Central America), and who maintains cultural identification through tribal affiliation or community attachment.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21655', '11', '21655', NULL, NULL) +VALUES ('000725', 'Competency Definition Education Level', 'Learning Standard Item Education Level, Competency Item Education Level', 'The education level, grade level or primary instructional level at which a Competency Definition is intended.', NULL, '1', 'More than one Learning Standard Grade Level may be associated with one Learning Standard Item.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23701', '12', '23701', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000020', 'Asian', 'Race Asian', 'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian Subcontinent. This area includes, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21656', '11', '21656', NULL, NULL) +VALUES ('000726', 'Academic Year Designator', NULL, 'The academic year for which the data apply.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23702', '12', '23702', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000034', 'Black or African American', 'Race Black or African American', 'A person having origins in any of the black racial groups of Africa.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21657', '11', '21657', NULL, NULL) +VALUES ('000727', 'Academic Term Designator', NULL, 'The academic term for which the data apply.', NULL, '1', 'Needs to be used in combination with Predominant Calendar System element in order to determine if the option set is referring to a semester, quarter, or some other term length.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=23703', '12', '23703', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('000192', 'Native Hawaiian or Other Pacific Islander', 'Race Native Hawaiian or Other Pacific Islander', 'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.', NULL, '1', 'K12: Use cases support Yes and No as options.

Postsecondary:
- Use cases support Yes and Not Selected as options
- As defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=21658', '11', '21658', NULL, NULL) +VALUES ('001323', 'Distance Education Program Enrollment Indicator', NULL, 'An individual''s enrollment in a program for which all the required coursework for program completion is able to be completed via distance education courses. Distance education is education that uses one or more technologies to deliver instruction to individuals who are separated from the instructor and to support regular and substantive interaction between the individuals and the instructor synchronously or asynchronously.', NULL, '1', 'Element defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24289', '12', '24289', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001260', 'Assessment Item Response Theory Parameter D6', NULL, 'For polytomous assessment items with more than six possible responses, this is the item response theory value representing the threshold between the sixth and seventh item characteristic functions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22226', '11', '22226', NULL, NULL) +VALUES ('001324', 'Doctoral Candidacy Admit Indicator', NULL, 'The individual''s status in being admitted as a doctoral candidate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24290', '12', '24290', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001261', 'Assessment Item Linking Item Indicator', NULL, 'Indicates that the item is intended to be administered in two different grades for the goal of establishing cross grade comparison.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22227', '11', '22227', NULL, NULL) +VALUES ('001325', 'Doctoral Candidacy Date', NULL, 'The date on which the individual was admitted to doctoral candidate status.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24291', '12', '24291', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001262', 'Assessment Item Response Theory Point Biserial Correlation Value', NULL, 'The correlation between correct answers on this item and total correct answers on the test during a previous administration. ', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22228', '11', '22228', NULL, NULL) +VALUES ('001326', 'Doctoral Exam Taken Date', NULL, 'The date on which the individual took an exam for advancement in, continuation or completion of a doctoral program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24292', '12', '24292', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001263', 'Assessment Item Release Status', NULL, 'Indicates that the assessment item has been released to the public.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22229', '11', '22229', NULL, NULL) +VALUES ('001327', 'Doctoral Exams Required Type', NULL, 'A qualifier identifying the types of exams required of doctoral level individuals.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24293', '12', '24293', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001264', 'Assessment Item Response Theory DIF Value', NULL, 'A value representing the Differential Item Functioning, also referred to as measurement bias, for the assessment item. The value represents differences in the functioning of the item across groups which are matched on the attribute being measure by the item. The value is calculated using Mantel-Haenszel approach or a comparable algorithm so that a value of 1.0 represents no bias.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22230', '11', '22230', NULL, NULL) +VALUES ('001328', 'Early Learning Federal Funding Type', NULL, 'Federal source, even if administered by state or local, that contributes to the EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24294', '12', '24294', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001265', 'Assessment Item Response Theory Kappa Value', NULL, 'The measure used to represent the degree of agreement among raters.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22231', '11', '22231', NULL, NULL) +VALUES ('001329', 'Early Learning Group Size', NULL, 'The number of slots/spaces available.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24295', '12', '24295', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001266', 'Assessment Item Response Theory Kappa Algorithm', NULL, 'The algorithm used to derive the Assessment Item Kappa Value', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22232', '11', '22232', NULL, NULL) +VALUES ('001330', 'Organization Monitoring Notifications', NULL, 'Whether the organization received notification about monitoring', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24296', '12', '24296', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001267', 'Assessment Item Body Text', NULL, 'The complete text of an assessment item including all applicable parts such as stimulus, stem, and possible response options presented.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22233', '11', '22233', NULL, NULL) +VALUES ('001331', 'Monitoring Visit Start Date', NULL, 'The date that monitoring visit began.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24297', '12', '24297', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001268', 'Assessment Item Stimulus', NULL, ' The text, source (e.g., video clip), and/or graphic about which the assessment item is written. The stimulus provides the context of the item/task to which the student must respond.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22234', '11', '22234', NULL, NULL) +VALUES ('001332', 'Monitoring Visit End Date', NULL, 'The date that monitoring visit ended.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24298', '12', '24298', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001269', 'Assessment Item Possible Response Option', NULL, 'The possible response presented to the participant within a selected-response/multiple-choice assessment item.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22235', '11', '22235', NULL, NULL) +VALUES ('001333', 'Purpose of Monitoring Visit', NULL, 'The purpose for the monitoring visit.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24299', '12', '24299', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001270', 'Session Code', NULL, 'A local code given to the session, usually for a session that represents a term within the school year such as a marking term.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22236', '11', '22236', NULL, NULL) +VALUES ('001334', 'Organization Type of Monitoring', NULL, 'The type of monitoring on the organization.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24300', '12', '24300', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001271', 'Session Description', NULL, 'A short description of the Session.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22237', '11', '22237', NULL, NULL) +VALUES ('001335', 'Early Learning Other Federal Funding Sources', NULL, 'The other contributing funding sources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24302', '12', '24302', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001272', 'Session Marking Term Indicator', NULL, 'Indicates that the session is a marking term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22238', '11', '22238', NULL, NULL) +VALUES ('001336', 'Early Learning Outcome Measurement Level', NULL, 'Use for outcome measures in early learning.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24303', '12', '24303', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001273', 'Session Scheduling Term Indicator', NULL, 'Indicates that the session is a scheduling term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22239', '11', '22239', NULL, NULL) +VALUES ('001337', 'Early Learning Professional Development Topic Area', NULL, 'The topical area of competence needed for Staff professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24304', '12', '24304', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001274', 'Session Attendance Term Indicator', NULL, 'Indicates that the session is an attendance term.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22240', '11', '22240', NULL, NULL) +VALUES ('001338', 'Early Learning Program Eligibility Expiration Date', NULL, 'The year, month, and day on which the child is no longer eligible for the Program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24305', '12', '24305', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001275', 'Calendar Event Date', NULL, 'The date of the scheduled or unscheduled calendar event.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22241', '11', '22241', NULL, NULL) +VALUES ('001339', 'Early Learning Program Eligibility Status', NULL, 'The status of eligibility for the child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24306', '12', '24306', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001276', 'Calendar Event Day Name', NULL, 'A name used for the day of the calendar event.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22242', '11', '22242', NULL, NULL) +VALUES ('001340', 'Early Learning Program Eligibility Status Date', NULL, 'The date of status of eligibility.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24307', '12', '24307', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001277', 'Accommodations Needed Type', NULL, 'Codes identifying the set of health accommodations.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22243', '11', '22243', NULL, NULL) +VALUES ('001341', 'Emergency Contact Indicator', NULL, 'Indicates whether or not the person is a designated emergency contact for the learner.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24308', '12', '24308', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001278', 'Advanced Placement Course Code', 'AP Course Code', 'Course areas for advanced placement or credit. For a list of codes see http://apcentral.collegeboard.com/apc/public/courses/teachers_corner/index.html .', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22244', '11', '22244', NULL, NULL) +VALUES ('001342', 'Employed Prior to Enrollment', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, before enrolling in secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources won''t tell you anything further about employment or unemployment, only that a record was "not found" or "not matched" thus “unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24309', '12', '24309', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001279', 'Professional Development Activity Education Levels Addressed', NULL, 'An age group or education level to which the professional development activity''s content pertains.', NULL, '1', 'Multiple options may be selected.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22245', '11', '22245', NULL, NULL) +VALUES ('001343', 'Employment Status While Enrolled', NULL, 'An indication of the individual''s employment status while enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24310', '12', '24310', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001280', 'Agency Course Identifier', NULL, 'The course identifier as it may be recorded at the regional or state level to conform to a standardized course classification system.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22246', '11', '22246', NULL, NULL) +VALUES ('001344', 'Family and Consumer Sciences Course Indicator', NULL, 'An indication that the course is associated with the Family and Consumer Sciences plan of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24311', '12', '24311', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001281', 'Allergy Reaction Description', NULL, 'Describes symptoms know to be associated with a person''s reaction to an allergen.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22247', '11', '22247', NULL, NULL) +VALUES ('001345', 'Financial Account Category', NULL, 'A label for a grouping of financial accounts, based on type and purpose.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24312', '12', '24312', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001282', 'Allergy Severity', NULL, 'The level of severity of a person''s reaction to an allergen.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22248', '11', '22248', NULL, NULL) +VALUES ('001346', 'Financial Account Description', NULL, 'The description for the financial account in an organization''s accounting system.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24313', '12', '24313', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001283', 'Allergy Type', NULL, 'Type of allergy condition attributed to a person as defined by the SNOWMED Clinical Terms(r) vocabulary.', NULL, '1', 'This material includes SNOMED Clinical Terms® (SNOMED CT®) which is used by permission of the International Health Terminology Standards Development Organization (IHTSDO). All rights reserved. SNOMED CT®, was originally created by The College of American Pathologists. “SNOMED” and “SNOMED CT” are registered trademarks of the IHTSDO.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22249', '11', '22249', NULL, NULL) +VALUES ('001347', 'Financial Account Fund Classification', NULL, 'A fund is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24314', '12', '24314', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001284', 'Assessment Item Result XML', NULL, 'The assessment item result formatted according to the IMS Global QTI Specification.', 'Alphanumeric', '0', 'See http://www.imsglobal.org/question/qtiv2p1/imsqti_resultv2p1.html#element10818', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22250', '11', '22250', NULL, NULL) +VALUES ('001348', 'Financial Account Name', NULL, 'The name given to the financial account in an organization''s accounting system.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24315', '12', '24315', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001287', 'Blended Learning Model Type', NULL, 'A type of formal education program in which a student learns at least in part through online learning, with some element of student control over time, place, path, and/or pace; at least in part in a supervised brick-and-mortar location away from home; and the modalities along each student’s learning path within a course or subject are connected to provide an integrated learning experience.', NULL, '1', 'This may be an attribute of a Course (as designed) or a Class Section (as delivered). It also may be attributed to a school, institution, or program for "whole-school" blended models.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22253', '11', '22253', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001349', 'Financial Account Program Code', NULL, 'A program is a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives. The program classification provides the organization with a framework to classify instructional and other expenditures by program to determine cost.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24316', '12', '24316', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001288', 'Career Cluster', NULL, 'The career cluster that defines the industry or occupational focus which may be associated with a career pathways program, plan of study, or course.', NULL, '1', 'Options from O*NET OnLine an application that was created for the general public to provide broad access to the O*NET database of occupational information. O*NET OnLine offers a variety of search options and occupational data, while My Next Move is a streamlined application for students and job seekers. Both applications were developed for the U.S. Department of Labor by the National Center for O*NET Development. See onetonline.org for more information.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22254', '11', '22254', NULL, NULL) +VALUES ('001350', 'Financial Accounting Period Actual Value', NULL, 'The actual value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24317', '12', '24317', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001289', 'Career Education Plan Date', NULL, 'The date on which an individual''s professional development career plan was last updated.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22255', '11', '22255', NULL, NULL) +VALUES ('001352', 'Financial Aid Income Level', NULL, 'The income level of an individual that is used by an institution''s financial aid office to determine an individual''s Expected Family Contribution (EFC). For dependent students this will include the parents'' adjusted gross income and the student''s adjusted gross income. For independent students this will include the student''s adjusted gross income.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24319', '12', '24319', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001290', 'Career Education Plan Type', NULL, 'An indication of whether an individual completed an individualized guidance and counseling plan', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22256', '11', '22256', NULL, NULL) +VALUES ('001353', 'Financial Account Balance Sheet Code', NULL, 'Balance sheet accounts and statement of net position accounts are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24320', '12', '24320', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001291', 'Career Pathways Program Participation Indicator', NULL, 'An indication of an individual who is participating in a program that is a component of or leads to a specific or recognized career pathway, as defined by the state.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22257', '11', '22257', NULL, NULL) +VALUES ('001354', 'Financial Expenditure Function Code', NULL, 'The function describes the activity for which a service or material object is acquired. The functions of an organization are classified into five broad areas: instruction, support services, operation of non-instructional services, facilities acquisition and construction, and debt service. Functions are further classified into sub functions.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24321', '12', '24321', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001292', 'Charter School Authorizer Type', NULL, 'The type of agency that authorized the establishment or continuation of a charter school.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22258', '11', '22258', NULL, NULL) +VALUES ('001355', 'Financial Expenditure Object Code', NULL, 'This classification is used to describe the service or commodity obtained as the result of a specific expenditure. Nine major object categories have codes ending in 00 and are further subdivided.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24322', '12', '24322', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001293', 'Charter School Approval Year', NULL, 'The school year in which a charter school was initially approved.', 'YYYY-YYYY', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22259', '11', '22259', NULL, NULL) +VALUES ('001356', 'Frequency of Service', NULL, 'The frequency at which a service is planned to occur or has occurred.', NULL, '1', 'This element is used to describe the planned frequency of services to be delivered and the actual frequency of services delivered.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24323', '12', '24323', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001296', 'Correctional Education Facility Type', NULL, 'The type of facility in which an inmate receives correctional education services.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22262', '11', '22262', NULL, NULL) +VALUES ('001357', 'Graduate or Doctoral Exam Results Status', NULL, 'The individual''s status in completing exams required for graduate or doctoral degree programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24324', '12', '24324', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001297', 'Correctional Education Reentry Services Participation Indicator', NULL, 'An indication of whether an adult correctional education student who receives instructional services (e.g., life skills, cognitive restructuring, etc.) to support reentry into society.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22263', '11', '22263', NULL, NULL) +VALUES ('001358', 'Health Screening Equipment Used', NULL, 'The screening equipment used for the hearing screening or the method used for the vision screening', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24325', '12', '24325', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001298', 'Course Academic Grade Scale Code', NULL, 'The grading scale used by an academic educational institution for an academic course.', 'Integer - 2 digits with leading zeros', '0', 'Based on the American Medical Colleges Admissions Services (AMCAS) grade scale, values 01 through 99. See Appendix E of the PESC XML High School Transcript Implementation Guide for a complete list of code values. 3-digit values (500 and above) established in earlier versions of the standard for miscellaneous grades are deprecated.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22264', '11', '22264', NULL, NULL) +VALUES ('001359', 'Health Screening Follow-up Recommendation', NULL, 'Recommendations for follow-up after a health screening.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24326', '12', '24326', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001299', 'Course Academic Grade Status Code', NULL, 'Additional information regarding the context of the given grade.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22265', '11', '22265', NULL, NULL) +VALUES ('001360', 'IDEA Part B 619 Potential Eligibility Indicator', NULL, 'The determination of whether a child is potentially eligible for Part B 619 services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24327', '12', '24327', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001300', 'Course Add Date', NULL, 'The date an individual was added to an academic course at a school.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22266', '11', '22266', NULL, NULL) +VALUES ('001363', 'IDEA Part C to Part B Notification Opt Out Indicator', NULL, 'Indicates whether parents of a child potentially eligible for Part B preschool services have opted out of the impending notification to the local education agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24330', '12', '24330', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001301', 'Course Applicable Education Level', NULL, 'The education level, grade level or primary instructional level at which a course is intended.', NULL, '1', 'This element is repeatable for most use cases. Examples: (1.) SCED identifiers may specify a grade span of two or more grades. (2) A postsecondary course designed to qualify a student for an associates degree and professional certification could be repeated with both of those options.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22267', '11', '22267', NULL, NULL) +VALUES ('001364', 'IDEA Part C to Part B Notification Opt Out Date', NULL, 'The date that parents of a child potentially eligible for Part B preschool services opt out of the impending notification to the local education agency.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24331', '12', '24331', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001302', 'Course Certification Description', NULL, 'A description of the certification or recognition associated with this course (ex. Networking, CAD, etc.)', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22268', '11', '22268', NULL, NULL) +VALUES ('001365', 'Transition Conference Date', NULL, 'The date of the transition conference from IDEA Part C to Part B 619 or another early learning program or service.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24333', '12', '24333', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001303', 'Course Credit Basis Type', NULL, 'The type of enrollment associated with the credit hours for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22269', '11', '22269', NULL, NULL) +VALUES ('001366', 'Transition Conference Decline Date', NULL, 'The date the parents declined approval for the transition conference from IDEA Part C to Part B 619 or another early learning program or service.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24334', '12', '24334', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001304', 'Course Credit Level Type', NULL, 'The level of credit associated with the credit hours earned for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22270', '11', '22270', NULL, NULL) +VALUES ('001367', 'Date of Transition Plan', NULL, 'The date transition steps and services were added to the individualized service plan.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24335', '12', '24335', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001305', 'Course Drop Date', NULL, 'The date on which the individual drops or withdraws from the course.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22271', '11', '22271', NULL, NULL) +VALUES ('001369', 'Incident Multiple Offense Type', NULL, 'An indication of whether the offense was primary or secondary in nature when a single incident included more than one type of offense.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24337', '12', '24337', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001306', 'Course Funding Program', NULL, 'A program through which the course is funded.', 'Alphanumeric - 30 characters maximum', '0', 'This may be a program targeted to a specific student population (e.g. SPED, ESOL) and the funding guidelines may specify that all or some of the students in the course are members of the subgroup.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22272', '11', '22272', NULL, NULL) +VALUES ('001370', 'Incident Perpetrator Identifier', NULL, 'Identifies the perpetrator of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24338', '12', '24338', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001307', 'Course Honors Type', NULL, 'An indication that the course is or can be counted as an honors course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22273', '11', '22273', NULL, NULL) +VALUES ('001371', 'Incident Perpetrator Injury Type', NULL, 'An indication of the occurrence of physical injury to the perpetrator(s) (participants) involved in the incident and‚ if so‚ the level of injury sustained.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24339', '12', '24339', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001308', 'Course Instruction Method', NULL, 'The primary method of instruction used for the course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22274', '11', '22274', NULL, NULL) +VALUES ('001372', 'Incident Perpetrator Type', NULL, 'Information on the type of individual who committed an incident. A “perpetrator” is an individual involved in an incident as an offender (the person who committed the infraction constituting the incident).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24340', '12', '24340', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001309', 'Course Instruction Site Name', NULL, 'The name of the location at which the course is taught.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22275', '11', '22275', NULL, NULL) +VALUES ('001373', 'Incident Person Role Type', NULL, 'The role or type of participation of a person in a discipline incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24341', '12', '24341', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001310', 'Course Instruction Site Type', NULL, 'An indication of the type of location at which the course is taught.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22276', '11', '22276', NULL, NULL) +VALUES ('001374', 'Incident Regulation Violated Description', NULL, 'A description of the rule‚ regulation‚ or standard that was violated when an incident occurred (e.g.‚ the identification of a relevant law‚ conduct standard‚ or acceptable use policy).', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24342', '12', '24342', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001311', 'Course Interaction Mode', NULL, 'The primary type of interaction, synchronous or asynchronous, defined for the course.', NULL, '1', 'This may be an attribute of a Course (as designed) or an instance of a Class Section (as delivered).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22277', '11', '22277', NULL, NULL) +VALUES ('001375', 'Incident Related to Disability Manifestation', NULL, 'An indication whether a student’s behavior (offense) was a manifestation of‚ or related to‚ a disability condition.', NULL, '1', 'Under IDEA §300.530(e), a manifestation determination must occur within 10 days of any decision to change the child’s placement because of a violation of a code of student conduct.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24343', '12', '24343', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001312', 'Course Level Type', NULL, 'The level of work which is reflected in the credits associated with the academic course being described or the level of the typical individual taking the academic course.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22278', '11', '22278', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001376', 'Incident Reported to Law Enforcement Indicator', NULL, 'An indication that the school resource officer or any other law enforcement official was notified about the incident‚ regardless of whether official action is taken.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24345', '12', '24345', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001313', 'Course Narrative Explanation Grade', NULL, 'The narrative of the grade awarded to an individual in an academic course in those cases where a course does not receive a letter or numeric grade included in the grading scale of the Course Academic Grade Qualifier.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22279', '11', '22279', NULL, NULL) +VALUES ('001377', 'Incident Victim Identifier', NULL, 'Identifies the victim of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24346', '12', '24346', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001314', 'Course Number', NULL, 'The official reference number portion of a course identifier. This number normally designates the level of the course as well as the level of the individual expected to enroll in the course.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22280', '11', '22280', NULL, NULL) +VALUES ('001378', 'Incident Victim Type', NULL, 'Information on the type of individual who was injured or otherwise harmed as a direct result of the incident. A “victim” is the individual who suffers injury or harm that directly results from the incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24347', '12', '24347', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001315', 'Course Section Number', NULL, 'The number assigned to differentiate among distinct occurrences of courses that have the same course abbreviation and number but are considered to be different courses.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22281', '11', '22281', NULL, NULL) +VALUES ('001379', 'Incident Witness Identifier', NULL, 'Identifies the witness of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district. Using this data element permits linkage to descriptive information about the individual in the student or staff database.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24348', '12', '24348', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001316', 'Course Total', NULL, 'The total number of courses listed on a transcript. Used as a check digit for integrity purposes.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22282', '11', '22282', NULL, NULL) +VALUES ('001380', 'Incident Witness Type', NULL, 'Information on the type of individual who witnessed the incident and can give a firsthand account of an incident that was seen‚ heard‚ or experienced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24349', '12', '24349', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001317', 'Credit Hours Applied Other Program', NULL, 'Codes identifying the set of credit hours taken in other programs or degrees that were applied to the individual''s degree.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22283', '11', '22283', NULL, NULL) +VALUES ('001381', 'Individualized Program Planned Service Start Date', NULL, 'The date the service is planned to begin.', 'YYYY-MM-DD', '0', 'As decided on by an IFSP/IEP team, including the parent.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24350', '12', '24350', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001318', 'Career and Technical Education Instructor Industry Certification', 'CTE Instructor Industry Certification', 'An indication of whether a Career and Technical Education (CTE) instructor holds a current industry-recognized credential related to their teaching field.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22284', '11', '22284', NULL, NULL) +VALUES ('001383', 'Individualized Program Planned Service Type', NULL, 'The types of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24352', '12', '24352', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001319', 'Disability Condition Status Type', 'Disability Condition Status Code', 'A code indicating the disability condition status.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22285', '11', '22285', NULL, NULL) +VALUES ('001384', 'Itinerant Provider', NULL, 'An indication of whether a person provides services at more than one site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24353', '12', '24353', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001320', 'Disability Condition Type', NULL, 'Codes identifying the set of disability conditions.', NULL, '1', 'Disability Conditional Type may be used in K12 to specify a disability other than Primary Disability Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22286', '11', '22286', NULL, NULL) +VALUES ('001386', 'K12 End of Course Requirement', NULL, 'An indication that this course has an end of course examination required by the SEA or LEA.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24355', '12', '24355', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001321', 'Disability Determination Source Type', NULL, 'Codes identifying the set of disability determination sources.', NULL, '1', 'Disability Conditional Type may be used in K12 to specify a disability other than Primary Disability Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22287', '11', '22287', NULL, NULL) +VALUES ('001388', 'Professional Development Session Language', NULL, 'The language in which the professional development session is delivered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24357', '12', '24357', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001322', 'Disciplinary Action IEP Placement Meeting Indicator', NULL, 'An indication as to whether an offense and/or disciplinary action resulted in a meeting of a student’s Individualized Education Program (IEP) team to determine appropriate placement.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22288', '11', '22288', NULL, NULL) +VALUES ('001389', 'Learning Resource Access API Type', NULL, 'Indicates that the learning resource is compatible with the referenced accessibility application programming interface (API).', NULL, '1', ' Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: apiInteroperable.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24358', '12', '24358', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001323', 'Distance Education Program Enrollment Indicator', NULL, 'An individual''s enrollment in a program for which all the required coursework for program completion is able to be completed via distance education courses. Distance education is education that uses one or more technologies to deliver instruction to individuals who are separated from the instructor and to support regular and substantive interaction between the individuals and the instructor synchronously or asynchronously.', NULL, '1', 'Element defined in IPEDS', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22289', '11', '22289', NULL, NULL) +VALUES ('001390', 'Learning Resource Access Hazard Type', NULL, 'A characteristic of the described learning resource that is physiologically dangerous to some users.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24359', '12', '24359', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001324', 'Doctoral Candidacy Admit Indicator', NULL, 'The individual''s status in being admitted as a doctoral candidate.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22290', '11', '22290', NULL, NULL) +VALUES ('001391', 'Learning Resource Access Mode Type', NULL, 'An access mode through which the intellectual content of a described learning resource or adaptation is communicated; if adaptations for the resource are known, the access modes of those adaptations are not included.', NULL, '1', 'Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: AccessModeRequired.Type/existingAccessMode.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24360', '12', '24360', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001325', 'Doctoral Candidacy Date', NULL, 'The date on which the individual was admitted to doctoral candidate status.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22291', '11', '22291', NULL, NULL) +VALUES ('001392', 'Learning Resource Adaptation URL', NULL, 'The Uniform Resource Locator of a learning resource that is an adaptation for this resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24361', '12', '24361', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001326', 'Doctoral Exam Taken Date', NULL, 'The date on which the individual took an exam for advancement in, continuation or completion of a doctoral program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22292', '11', '22292', NULL, NULL) +VALUES ('001393', 'Learning Resource Assistive Technologies Compatible Indicator', NULL, 'Indicates that the learning resource is compatible with assistive technologies.', NULL, '1', 'For example, that the resource complies to Web Content Accessibility Guidelines (WCAG) 2.0 checkpoints: 1.1.1, 1.3.1, 1.3.2, 2.4.4, 3.1.1, 3.1.2, 3.3.2, 4.1.1, 4.1.2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24362', '12', '24362', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001327', 'Doctoral Exams Required Type', NULL, 'A qualifier identifying the types of exams required of doctoral level individuals.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22293', '11', '22293', NULL, NULL) +VALUES ('001394', 'Learning Resource Book Format Type', NULL, 'Specifies the format for a learning resource that is a book. Other options may be considered for inclusion in the option set.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24363', '12', '24363', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001328', 'Early Learning Federal Funding Type', NULL, 'Federal source, even if administered by state or local, that contributes to the EL program.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22294', '11', '22294', 'Updated', 'Added new option to the existing option set.') +VALUES ('001395', 'Learning Resource Control Flexibility Type', NULL, 'Identifies a single input method that is sufficient to control the described learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24364', '12', '24364', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001329', 'Early Learning Group Size', NULL, 'The number of slots/spaces available.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22295', '11', '22295', NULL, NULL) +VALUES ('001396', 'Learning Resource Digital Media Sub Type', NULL, 'The media or file subtype of the digital resource being based on the Media Types and Subtypes, formerly known as MIME types, defined by the Internet Assigned Numbers Authority (IANA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24365', '12', '24365', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001330', 'Organization Monitoring Notifications', NULL, 'Whether the organization received notification about monitoring', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22296', '11', '22296', NULL, NULL) +VALUES ('001397', 'Learning Resource Digital Media Type', NULL, 'The media or file type of the digital resource being based on the media types defined by the Internet Assigned Numbers Authority (AINA) at http://www.iana.org/assignments/media-types.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24366', '12', '24366', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001331', 'Monitoring Visit Start Date', NULL, 'The date that monitoring visit began.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22297', '11', '22297', NULL, NULL) +VALUES ('001398', 'Learning Resource Adapted From URL', NULL, 'URL identifier of a learning resource for which this resource is an adaptation.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24367', '12', '24367', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001332', 'Monitoring Visit End Date', NULL, 'The date that monitoring visit ended.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22298', '11', '22298', NULL, NULL) +VALUES ('001399', 'Learning Resource Media Feature Type', NULL, 'Accessible content features included with the learning resource.', NULL, '1', 'Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: AdaptationTypeRequired.Type/adaptationRequest.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24368', '12', '24368', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001333', 'Purpose of Monitoring Visit', NULL, 'The purpose for the monitoring visit.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22299', '11', '22299', NULL, NULL) +VALUES ('001400', 'Learning Resource Peer Rating Sample Size', NULL, 'The sample size of a peer rating value. Only used when the Peer Rating Value is collected in aggregate as an average of multiple atomic/individual ratings.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24369', '12', '24369', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001334', 'Organization Type of Monitoring', NULL, 'The type of monitoring on the organization.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22300', '11', '22300', NULL, NULL) +VALUES ('001401', 'Learning Resource Physical Media Type', NULL, 'A type of physical media on which the Learning Resource is delivered or available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24370', '12', '24370', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001335', 'Early Learning Other Federal Funding Sources', NULL, 'The other contributing funding sources.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22302', '11', '22302', NULL, NULL) +VALUES ('001402', 'Competency Association Connection Citation', 'Learning Standard Item Association Connection Citation', 'Any citation appropriate to evidence the connection between nodes', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24371', '12', '24371', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001336', 'Early Learning Outcome Measurement Level', NULL, 'Use for outcome measures in early learning.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22303', '11', '22303', NULL, NULL) +VALUES ('001403', 'Competency Association Destination Node Name', 'Learning Standard Item Association Destination Node Name', 'Name of the destination node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24372', '12', '24372', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001337', 'Early Learning Professional Development Topic Area', NULL, 'The topical area of competence needed for Staff professional development.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22304', '11', '22304', NULL, NULL) +VALUES ('001404', 'Competency Association Destination Node URI', 'Learning Standard Item Association Destination Node URI', 'URI of the destination node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24373', '12', '24373', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001338', 'Early Learning Program Eligibility Expiration Date', NULL, 'The year, month, and day on which the child is no longer eligible for the Program.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22305', '11', '22305', NULL, NULL) +VALUES ('001405', 'Competency Association Origin Node Name', 'Learning Standard Item Association Origin Node Name', 'Name of the origin node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24374', '12', '24374', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001339', 'Early Learning Program Eligibility Status', NULL, 'The status of eligibility for the child.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22306', '11', '22306', NULL, NULL) +VALUES ('001406', 'Competency Association Origin Node URI', 'Learning Standard Item Association Origin Node URI', 'URI of the origin node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24375', '12', '24375', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001340', 'Early Learning Program Eligibility Status Date', NULL, 'The date of status of eligibility.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22307', '11', '22307', NULL, NULL) +VALUES ('001407', 'Competency Association Weight', 'Learning Standard Item Association Weight', 'Indicates the relative significance this connection has for the destination node in a learning map.', 'Numeric - up to 3 digits after decimal place', '0', 'This element is used to support learning maps and may be used in two ways 1) use a 1.000 to flag incoming nodes as important prerequisites/predecessors and 0.000 to indicate those with less significance, or 2) to indicate a levels of significance for the connection as a decimal between 0.000 and 1.000.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24376', '12', '24376', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001341', 'Emergency Contact Indicator', NULL, 'Indicates whether or not the person is a designated emergency contact for the learner.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22308', '11', '22308', NULL, NULL) +VALUES ('001408', 'Competency Definition Node Accessibility Profile', 'Learning Standard Item Node Accessibility Profile, Competency Item Node Accessibility Profile', 'When the Competency Definition is used as a node in a learning map, this element supports alternative pathways based on a learner''s accessibility profile. The type selected indicates which accessibility profile the node is designed to address.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24377', '12', '24377', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001342', 'Employed Prior to Enrollment', NULL, 'An individual who is a paid employee or works in his or her own business, profession, or farm, as reported through the State Unemployment Insurance Wage Report, FEDES, or WRIS, before enrolling in secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Individual-level data obtained by matching records with wage records, FEDES, or WRIS. The State Education Agency defines the time period for this collection around an exit period and a corresponding period for employment and earnings data to be obtained. The option set includes "Yes" for employment found via one of the resources listed in the source element. These sources won''t tell you anything further about employment or unemployment, only that a record was "not found" or "not matched" thus “unknown."', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22309', '11', '22309', NULL, NULL) +VALUES ('001409', 'Competency Definition Short Name', 'Learning Standard Item Node Name, Competency Item Node Name', 'The short name or label for the competency definition or its node in a competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24378', '12', '24378', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001343', 'Employment Status While Enrolled', NULL, 'An indication of the individual''s employment status while enrolled.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22310', '11', '22310', NULL, NULL) +VALUES ('001411', 'Competency Definition Testability Type', 'Learning Standard Item Testability Type, Competency Item Testability Type', 'Indicates if the competency described in the Competency Definition Statement can be tested using one or more assessment items.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24380', '12', '24380', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001344', 'Family and Consumer Sciences Course Indicator', NULL, 'An indication that the course is associated with the Family and Consumer Sciences plan of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22311', '11', '22311', NULL, NULL) +VALUES ('001412', 'Military Enlistment After Exit', NULL, 'An individual who is a member of the uniformed armed forces of the United States as reported through FEDES after exiting secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Information on military enlistment is collected as a part of the FEDES program which facilitates periodic matches with the Department of Defense Manpower Information Center. While the unemployment insurance data cannot be used to indicate that an individual is not employed, the DOD Enlistment data can suggest "not enlisted when there is no match." These data are included in FEDES matches and may need to be "unduplicated" from employment counts.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24381', '12', '24381', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001345', 'Financial Account Category', NULL, 'A label for a grouping of financial accounts, based on type and purpose.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22312', '11', '22312', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001413', 'National Collegiate Athletic Association Eligibility', 'NCAA Eligibility', 'An indication that the course is approved for determining NCAA eligibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24382', '12', '24382', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001346', 'Financial Account Description', NULL, 'The description for the financial account in an organization''s accounting system.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22313', '11', '22313', 'Updated', 'Changed definition and added elements to DES contexts to support Early Learning needs.') +VALUES ('001414', 'NCES College Course Map Code', NULL, 'A taxonomy system for coding postsecondary courses in NCES research studies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24383', '12', '24383', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001347', 'Financial Account Fund Classification', NULL, 'A fund is a separate fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances or changes therein.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22314', '11', '22314', 'Updated', 'Changed element name and technical name and added elements to DES contexts to support Early Learning needs.') +VALUES ('001415', 'Number of Dependents', NULL, 'The number of dependents who live with the student and receive more than half their support from them.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24384', '12', '24384', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001348', 'Financial Account Name', NULL, 'The name given to the financial account in an organization''s accounting system.', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22315', '11', '22315', 'Updated', 'Changed definition and added elements to DES contexts to support Early Learning needs.') +VALUES ('001416', 'Oral Defense Completed Indicator', NULL, 'An indication of the individual''s completion of an oral defense. The requirement to conduct an oral defense by doctoral individuals may vary across institutions, programs, or fields of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24385', '12', '24385', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001349', 'Financial Account Program Code', NULL, 'A program is a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives. The program classification provides the organization with a framework to classify instructional and other expenditures by program to determine cost.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22316', '11', '22316', 'Updated', 'Changed element name and technical name and added elements to DES contexts to support Early Learning needs.') +VALUES ('001417', 'Oral Defense Date', NULL, 'The date on which the individual gave an oral defense.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24386', '12', '24386', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001350', 'Financial Accounting Period Actual Value', NULL, 'The actual value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22317', '11', '22317', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001418', 'Organization Operational Status', NULL, 'The current status of the organization''s operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24387', '12', '24387', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001351', 'Financial Accounting Period Budgeted Value', NULL, 'The budgeted value of a financial account for the specified accounting period or fiscal year.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22318', '11', '22318', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001419', 'Organization Seeking Accreditation Date', NULL, 'The date in which accreditation process was started (but not officially approved or denied)', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24388', '12', '24388', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001352', 'Financial Aid Income Level', NULL, 'The income level of an individual that is used by an institution''s financial aid office to determine an individual''s Expected Family Contribution (EFC). For dependent students this will include the parents'' adjusted gross income and the student''s adjusted gross income. For independent students this will include the student''s adjusted gross income.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22319', '11', '22319', NULL, NULL) +VALUES ('001420', 'Original Course Identifier', NULL, 'The course identifier as it was listed when the credit was earned (e.g. before a system conversion) to show consistency between present transcripts and older ones.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24389', '12', '24389', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001353', 'Financial Account Balance Sheet Code', NULL, 'Balance sheet accounts and statement of net position accounts are used to track financial transactions for each fund. Such financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts and are considered "snapshots" of how these accounts stand as of a certain point in time.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22320', '11', '22320', 'Updated', 'Changed name of element and technical name.') +VALUES ('001421', 'Other Race Indicator', NULL, 'Race other than American Indian, Black, Asian, White, Native Pacific Islander', NULL, '1', 'This element only applies to Early Learning (Head Start). For non-ED early learning programs only.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24390', '12', '24390', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001354', 'Financial Expenditure Function Code', NULL, 'The function describes the activity for which a service or material object is acquired. The functions of an organization are classified into five broad areas: instruction, support services, operation of non-instructional services, facilities acquisition and construction, and debt service. Functions are further classified into sub functions.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22321', '11', '22321', 'Updated', 'Changed element name and technical name. Added elements to DES contexts to support Early Learning needs. Changed definition of element to support other domains.') +VALUES ('001422', 'Override School Course Number', NULL, 'An indication of the way an academic course was identified at an educational institution.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24391', '12', '24391', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001355', 'Financial Expenditure Object Code', NULL, 'This classification is used to describe the service or commodity obtained as the result of a specific expenditure. Nine major object categories have codes ending in 00 and are further subdivided.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22322', '11', '22322', 'Updated', 'Changed element name and technical name and added elements to DES contexts to support Early Learning needs.') +VALUES ('001423', 'Person Relationship to Learner Contact Priority Number', NULL, 'The numeric order in the preferred sequence and priority for contacting a person related to the learner.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24392', '12', '24392', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001356', 'Frequency of Service', NULL, 'The frequency at which a service is planned to occur or has occurred.', NULL, '1', 'This element is used to describe the planned frequency of services to be delivered and the actual frequency of services delivered.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22323', '11', '22323', 'Updated', 'Changed definition. Added usage note. Updated option set. Added elements to DES context to support K12 Implementation.') +VALUES ('001424', 'Person Relationship to Learner Contact Restrictions Description', NULL, 'Restrictions for student and/or teacher contact with the individual (e.g., the student may not be picked up by the individual)', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24393', '12', '24393', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001357', 'Graduate or Doctoral Exam Results Status', NULL, 'The individual''s status in completing exams required for graduate or doctoral degree programs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22324', '11', '22324', NULL, NULL) +VALUES ('001425', 'Person Relationship to Learner Lives with Indicator', NULL, 'Indicates whether or not the learner lives with the related person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24394', '12', '24394', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001358', 'Health Screening Equipment Used', NULL, 'The screening equipment used for the hearing screening or the method used for the vision screening', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22325', '11', '22325', NULL, NULL) +VALUES ('001426', 'Postsecondary Entering Student Indicator', NULL, 'The initial enrollment of an individual in credit bearing courses or developmental/remedial courses at an institution after completing high school or a high school equivalency program (e.g. GED, Adult High School Diploma).', NULL, '1', 'An individual can only be an entering student once at an institution at the undergraduate level.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24395', '12', '24395', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001359', 'Health Screening Follow-up Recommendation', NULL, 'Recommendations for follow-up after a health screening.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22326', '11', '22326', NULL, NULL) +VALUES ('001427', 'Postsecondary Student Entering Term', NULL, 'The term and year of the initial enrollment of an individual in credit bearing courses or developmental/remedial courses at an institution after completing high school or a high school equivalency program (e.g., GED, Adult High School Diploma).', 'Alphanumeric - 30 characters maximum', '0', 'An individual can only be an entering student once at an institution at the undergraduate level.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24396', '12', '24396', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001360', 'IDEA Part B 619 Potential Eligibility Indicator', NULL, 'The determination of whether a child is potentially eligible for Part B 619 services', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22327', '11', '22327', NULL, NULL) +VALUES ('001428', 'Primary Contact Indicator', NULL, 'Indicates that a person is a primary contact within the specified context, such as a primary parental contact specified in Person Relationship to Learner or a primary administrative contact for an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24397', '12', '24397', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001363', 'IDEA Part C to Part B Notification Opt Out Indicator', NULL, 'Indicates whether parents of a child potentially eligible for Part B preschool services have opted out of the impending notification to the local education agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22330', '11', '22330', NULL, NULL) +VALUES ('001429', 'Professional Certificate or License Number', NULL, 'The number issued by the credentialing/licensing agency.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24398', '12', '24398', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001364', 'IDEA Part C to Part B Notification Opt Out Date', NULL, 'The date that parents of a child potentially eligible for Part B preschool services opt out of the impending notification to the local education agency.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22331', '11', '22331', NULL, NULL) +VALUES ('001430', 'Professional Development Audience Type', NULL, 'The type of audience for the professional development activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24399', '12', '24399', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001365', 'Transition Conference Date', NULL, 'The date of the transition conference from IDEA Part C to Part B 619 or another early learning program or service.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22333', '11', '22333', NULL, NULL) +VALUES ('001431', 'Professional Development Delivery Method', NULL, 'The method by which a session is delivered', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24401', '12', '24401', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001366', 'Transition Conference Decline Date', NULL, 'The date the parents declined approval for the transition conference from IDEA Part C to Part B 619 or another early learning program or service.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22334', '11', '22334', NULL, NULL) +VALUES ('001432', 'Professional Development Activity Approval Code', NULL, 'A code given to an activity by an approval organization to designate it as an approved activity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24402', '12', '24402', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001367', 'Date of Transition Plan', NULL, 'The date transition steps and services were added to the individualized service plan.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22335', '11', '22335', NULL, NULL) +VALUES ('001433', 'Professional Development Activity Approved Purpose', NULL, 'The purposes for which an activity is approved.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24403', '12', '24403', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001369', 'Incident Multiple Offense Type', NULL, 'An indication of whether the offense was primary or secondary in nature when a single incident included more than one type of offense.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22337', '11', '22337', NULL, NULL) +VALUES ('001434', 'Professional Development Activity Code', NULL, 'A code assigned to an professional development activity by the organization offering the activity that is unique to the non-variable activity details.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24404', '12', '24404', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001370', 'Incident Perpetrator Identifier', NULL, 'Identifies the perpetrator of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22338', '11', '22338', NULL, NULL) +VALUES ('001435', 'Professional Development Activity Cost', NULL, 'The cost for an attendee to participate in a professional development activity.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24405', '12', '24405', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001371', 'Incident Perpetrator Injury Type', NULL, 'An indication of the occurrence of physical injury to the perpetrator(s) (participants) involved in the incident and‚ if so‚ the level of injury sustained.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22339', '11', '22339', NULL, NULL) +VALUES ('001436', 'Professional Development Activity Credit Type', NULL, 'The type of credit awarded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24406', '12', '24406', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001372', 'Incident Perpetrator Type', NULL, 'Information on the type of individual who committed an incident. A “perpetrator” is an individual involved in an incident as an offender (the person who committed the infraction constituting the incident).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22340', '11', '22340', NULL, NULL) +VALUES ('001437', 'Professional Development Activity Credits', NULL, 'The number of credits a professional development activity provides.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24407', '12', '24407', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001373', 'Incident Person Role Type', NULL, 'The role or type of participation of a person in a discipline incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22341', '11', '22341', NULL, NULL) +VALUES ('001438', 'Professional Development Activity Description', NULL, 'A description of the content covered in the professional development activity.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24408', '12', '24408', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001374', 'Incident Regulation Violated Description', NULL, 'A description of the rule‚ regulation‚ or standard that was violated when an incident occurred (e.g.‚ the identification of a relevant law‚ conduct standard‚ or acceptable use policy).', 'Alphanumeric - 100 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22342', '11', '22342', NULL, NULL) +VALUES ('001439', 'Professional Development Activity Level', NULL, 'An indicator of the level of a professional development activity on the beginner to advanced continuum.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24409', '12', '24409', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001375', 'Incident Related to Disability Manifestation', NULL, 'An indication whether a student’s behavior (offense) was a manifestation of‚ or related to‚ a disability condition.', NULL, '1', 'Under IDEA §300.530(e), a manifestation determination must occur within 10 days of any decision to change the child’s placement because of a violation of a code of student conduct.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22343', '11', '22343', NULL, NULL) +VALUES ('001440', 'Professional Development Activity Objective', NULL, 'The expected outcomes of a participant in an activity.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24410', '12', '24410', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001376', 'Incident Reported to Law Enforcement Indicator', NULL, 'An indication that the school resource officer or any other law enforcement official was notified about the incident‚ regardless of whether official action is taken.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22345', '11', '22345', NULL, NULL) +VALUES ('001442', 'Professional Development Activity Type', NULL, 'The indication of the type of professional development activity.', NULL, '1', 'The type of event should be determined based on the content of the event, not the delivery method.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24412', '12', '24412', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001377', 'Incident Victim Identifier', NULL, 'Identifies the victim of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22346', '11', '22346', NULL, NULL) +VALUES ('001443', 'Professional Development Funding Source', NULL, 'The primary source of funding for a professional development session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24413', '12', '24413', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001378', 'Incident Victim Type', NULL, 'Information on the type of individual who was injured or otherwise harmed as a direct result of the incident. A “victim” is the individual who suffers injury or harm that directly results from the incident.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22347', '11', '22347', NULL, NULL) +VALUES ('001444', 'Professional Development Instructor Identifier', NULL, 'Identifies an instructor of a professional development session.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24414', '12', '24414', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001379', 'Incident Witness Identifier', NULL, 'Identifies the witness of the incident by use of a pre-existing unique identifier assigned to a student or staff member by a school or district. Using this data element permits linkage to descriptive information about the individual in the student or staff database.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22348', '11', '22348', NULL, NULL) +VALUES ('001445', 'Professional Development Publish Activity Indicator', NULL, 'An indicator of whether the professional development activity should be published.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24415', '12', '24415', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001380', 'Incident Witness Type', NULL, 'Information on the type of individual who witnessed the incident and can give a firsthand account of an incident that was seen‚ heard‚ or experienced.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22349', '11', '22349', NULL, NULL) +VALUES ('001446', 'Professional Development Session Capacity', NULL, 'The total number of participants that can be accommodated by a professional development session.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24416', '12', '24416', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001381', 'Individualized Program Planned Service Start Date', NULL, 'The date the service is planned to begin.', 'YYYY-MM-DD', '0', 'As decided on by an IFSP/IEP team, including the parent.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22350', '11', '22350', NULL, NULL) +VALUES ('001447', 'Professional Development Session End Date', NULL, 'The year, month and day a professional development session ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24417', '12', '24417', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001383', 'Individualized Program Planned Service Type', NULL, 'The types of service that adapts the curriculum, materials, or instruction for students identified as needing special education because of a delay or disability.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22352', '11', '22352', NULL, NULL) +VALUES ('001448', 'Professional Development Session End Time', NULL, 'The time at which a professional development session ends.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24418', '12', '24418', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001384', 'Itinerant Provider', NULL, 'An indication of whether a person provides services at more than one site.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22353', '11', '22353', NULL, NULL) +VALUES ('001449', 'Professional Development Session Evaluation Method', NULL, 'The method used to evaluate a professional development session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24419', '12', '24419', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001386', 'K12 End of Course Requirement', NULL, 'An indication that this course has an end of course examination required by the SEA or LEA.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22355', '11', '22355', NULL, NULL) +VALUES ('001450', 'Professional Development Session Evaluation Score', NULL, 'The score or rating used to determine if a professional development session was successful.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24420', '12', '24420', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001388', 'Professional Development Session Language', NULL, 'The language in which the professional development session is delivered.', NULL, '1', 'The CEDS ISO 639-2 Language Code option set comes from the ISO 639-2 standard, the character encoding in ISO 8859-1 download. Discontinued codes from the ISO standard are not included in the CEDS list.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22357', '11', '22357', NULL, NULL) +VALUES ('001451', 'Professional Development Activity Expiration Date', NULL, 'The year, month, and day on which any certificate awarded as part of a professional development activity expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24421', '12', '24421', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001389', 'Learning Resource Access API Type', NULL, 'Indicates that the learning resource is compatible with the referenced accessibility application programming interface (API).', NULL, '1', ' Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: apiInteroperable.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22358', '11', '22358', NULL, NULL) +VALUES ('001509', 'Child Outcomes Summary Rating C', 'COS Rating C', 'Child''s level of functioning in the use of appropriate behaviors to meet their needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24481', '12', '24481', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001390', 'Learning Resource Access Hazard Type', NULL, 'A characteristic of the described learning resource that is physiologically dangerous to some users.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22359', '11', '22359', NULL, NULL) +VALUES ('001510', 'Method of Service Delivery', NULL, 'The method by which the services will be provided.', 'Alphanumeric - 60 characters maximum', '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24482', '12', '24482', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001391', 'Learning Resource Access Mode Type', NULL, 'An access mode through which the intellectual content of a described learning resource or adaptation is communicated; if adaptations for the resource are known, the access modes of those adaptations are not included.', NULL, '1', 'Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: AccessModeRequired.Type/existingAccessMode.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22360', '11', '22360', NULL, NULL) +VALUES ('001452', 'Professional Development Session Identifier', NULL, 'The unique, non-duplicated, identification number assigned by the registry data system for a session of a particular professional development activity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24422', '12', '24422', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001392', 'Learning Resource Adaptation URL', NULL, 'The Uniform Resource Locator of a learning resource that is an adaptation for this resource.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22361', '11', '22361', NULL, NULL) +VALUES ('001454', 'Professional Development Session Location Name', NULL, 'The name of a location where a professional development session will be held.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24424', '12', '24424', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001393', 'Learning Resource Assistive Technologies Compatible Indicator', NULL, 'Indicates that the learning resource is compatible with assistive technologies.', NULL, '1', 'For example, that the resource complies to Web Content Accessibility Guidelines (WCAG) 2.0 checkpoints: 1.1.1, 1.3.1, 1.3.2, 2.4.4, 3.1.1, 3.1.2, 3.3.2, 4.1.1, 4.1.2.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22362', '11', '22362', NULL, NULL) +VALUES ('001455', 'Professional Development Session Start Date', NULL, 'The year, month, and day a professional development session begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24426', '12', '24426', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001394', 'Learning Resource Book Format Type', NULL, 'Specifies the format for a learning resource that is a book. Other options may be considered for inclusion in the option set.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22363', '11', '22363', NULL, NULL) +VALUES ('001456', 'Professional Development Session Start Time', NULL, 'The time at which a professional development session begins.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24427', '12', '24427', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001395', 'Learning Resource Control Flexibility Type', NULL, 'Identifies a single input method that is sufficient to control the described learning resource.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22364', '11', '22364', NULL, NULL) +VALUES ('001457', 'Professional Development Session Status', NULL, 'The current status of a professional development session', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24428', '12', '24428', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001396', 'Learning Resource Digital Media Sub Type', NULL, 'The media or file subtype of the digital resource being based on the Media Types and Subtypes, formerly known as MIME types, defined by the Internet Assigned Numbers Authority (IANA).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22365', '11', '22365', NULL, NULL) +VALUES ('001458', 'Professional Development Instructional Delivery Mode', NULL, 'The primary setting or medium of professional development delivery.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24429', '12', '24429', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001397', 'Learning Resource Digital Media Type', NULL, 'The media or file type of the digital resource being based on the media types defined by the Internet Assigned Numbers Authority (AINA) at http://www.iana.org/assignments/media-types.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22366', '11', '22366', NULL, NULL) +VALUES ('001460', 'Quality Initiative Maximum Score', NULL, 'The maximum score option for the QRIS or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24432', '12', '24432', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001398', 'Learning Resource Adapted From URL', NULL, 'URL identifier of a learning resource for which this resource is an adaptation.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22367', '11', '22367', NULL, NULL) +VALUES ('001461', 'Quality Initiative Minimum Score', NULL, 'The minimum score option for the QRIS or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24433', '12', '24433', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001399', 'Learning Resource Media Feature Type', NULL, 'Accessible content features included with the learning resource.', NULL, '1', 'Options derive primarily from IMS Global''s Access for All (AfA) specification, specifically: AdaptationTypeRequired.Type/adaptationRequest.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22368', '11', '22368', NULL, NULL) +VALUES ('001462', 'Quality Initiative Score Level', NULL, 'The score, rating or level received by a program for its Quality Rating and Improvement System (QRIS) or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24434', '12', '24434', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001400', 'Learning Resource Peer Rating Sample Size', NULL, 'The sample size of a peer rating value. Only used when the Peer Rating Value is collected in aggregate as an average of multiple atomic/individual ratings.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22369', '11', '22369', NULL, NULL) +VALUES ('001463', 'Quality Initiative Participation Indicator', NULL, 'Site participates in a quality improvement initiative component other than QRIS.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24435', '12', '24435', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001401', 'Learning Resource Physical Media Type', NULL, 'A type of physical media on which the Learning Resource is delivered or available.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22370', '11', '22370', NULL, NULL) +VALUES ('001464', 'Quality Initiative Participation End Date', NULL, 'The quality initiative end date.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24436', '12', '24436', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001402', 'Competency Association Connection Citation', 'Learning Standard Item Association Connection Citation', 'Any citation appropriate to evidence the connection between nodes', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22371', '11', '22371', NULL, NULL) +VALUES ('001465', 'Quality Initiative Participation Start Date', NULL, 'The quality initiative start date.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24437', '12', '24437', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001403', 'Competency Association Destination Node Name', 'Learning Standard Item Association Destination Node Name', 'Name of the destination node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22372', '11', '22372', NULL, NULL) +VALUES ('001466', 'Responsible Organization Identifier', NULL, 'Identifies an organization responsible for specific educational services and/or instruction based on a type of responsibility specified in the Responsible Organization Type.', 'Alphanumeric - 40 characters maximum', '0', 'This may be used to specify responsibility when the organization is not a school (Responsible School) or school district (Responsible District).

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24438', '12', '24438', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001404', 'Competency Association Destination Node URI', 'Learning Standard Item Association Destination Node URI', 'URI of the destination node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22373', '11', '22373', NULL, NULL) +VALUES ('001467', 'Responsible Organization Type', NULL, 'The type of responsibility the organization has for the student.', NULL, '1', 'This may be used to specify responsibility when the organization is not a school (Responsible School) or school district (Responsible District).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24439', '12', '24439', 'Updated', 'Added new option to existing option set, change option set, add new DES locations') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001405', 'Competency Association Origin Node Name', 'Learning Standard Item Association Origin Node Name', 'Name of the origin node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22374', '11', '22374', NULL, NULL) +VALUES ('001468', 'Financial Account Revenue Code', NULL, 'These codes are for recording revenue and other receivables by source. Major revenue categories have codes ending in 00 and are further subdivided.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".

Early Learning: If related to an "in kind" contribution use codes 1920 or 100.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24440', '12', '24440', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001406', 'Competency Association Origin Node URI', 'Learning Standard Item Association Origin Node URI', 'URI of the origin node when the Competency Association is used as a connector in a learning map.', 'Alphanumeric - 512 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22375', '11', '22375', NULL, NULL) +VALUES ('001469', 'Rubric Criterion Category', NULL, 'A textual label for category by which Rubric Criterion may be grouped.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24441', '12', '24441', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001407', 'Competency Association Weight', 'Learning Standard Item Association Weight', 'Indicates the relative significance this connection has for the destination node in a learning map.', 'Numeric - up to 3 digits after decimal place', '0', 'This element is used to support learning maps and may be used in two ways 1) use a 1.000 to flag incoming nodes as important prerequisites/predecessors and 0.000 to indicate those with less significance, or 2) to indicate a levels of significance for the connection as a decimal between 0.000 and 1.000.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22376', '11', '22376', NULL, NULL) +VALUES ('001470', 'Rubric Criterion Description', NULL, 'Text describing a criterion that must be met to demonstrate quality for a product, process, or performance task.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24442', '12', '24442', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001408', 'Competency Definition Node Accessibility Profile', 'Learning Standard Item Node Accessibility Profile, Competency Item Node Accessibility Profile', 'When the Competency Definition is used as a node in a learning map, this element supports alternative pathways based on a learner''s accessibility profile. The type selected indicates which accessibility profile the node is designed to address.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22377', '11', '22377', NULL, NULL) +VALUES ('001471', 'Rubric Criterion Level Description', NULL, 'Text describing one or more benchmarks that must be met to achieve a degree of achievement on a product, process, or performance task.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24443', '12', '24443', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001409', 'Competency Definition Short Name', 'Learning Standard Item Node Name, Competency Item Node Name', 'The short name or label for the competency definition or its node in a competency framework.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22378', '11', '22378', NULL, NULL) +VALUES ('001472', 'Rubric Criterion Level Feedback', NULL, 'Pre-defined feedback text to be relayed to the person or organization being evaluated. This may include guidance and suggestions for improvement or development.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24444', '12', '24444', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001411', 'Competency Definition Testability Type', 'Learning Standard Item Testability Type, Competency Item Testability Type', 'Indicates if the competency described in the Competency Definition Statement can be tested using one or more assessment items.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22380', '11', '22380', NULL, NULL) +VALUES ('001473', 'Rubric Criterion Level Position', NULL, 'A numeric value representing the level''s position in the list of levels defined for the Rubric Criterion.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24445', '12', '24445', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001412', 'Military Enlistment After Exit', NULL, 'An individual who is a member of the uniformed armed forces of the United States as reported through FEDES after exiting secondary, postsecondary, or adult education or workforce programs.', NULL, '1', 'Information on military enlistment is collected as a part of the FEDES program which facilitates periodic matches with the Department of Defense Manpower Information Center. While the unemployment insurance data cannot be used to indicate that an individual is not employed, the DOD Enlistment data can suggest "not enlisted when there is no match." These data are included in FEDES matches and may need to be "unduplicated" from employment counts.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22381', '11', '22381', NULL, NULL) +VALUES ('001474', 'Rubric Criterion Level Quality Label', NULL, 'A qualitative description of this degree of achievement used for column headers or row labels in tabular rubrics.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24446', '12', '24446', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001413', 'National Collegiate Athletic Association Eligibility', 'NCAA Eligibility', 'An indication that the course is approved for determining NCAA eligibility.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22382', '11', '22382', NULL, NULL) +VALUES ('001475', 'Rubric Criterion Level Score', NULL, 'The points awarded for achieving this level.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24447', '12', '24447', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001414', 'NCES College Course Map Code', NULL, 'A taxonomy system for coding postsecondary courses in NCES research studies.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22383', '11', '22383', NULL, NULL) +VALUES ('001476', 'Rubric Criterion Position', NULL, 'A numeric value representing this criterion''s position in the criteria list for this rubric.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24448', '12', '24448', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001415', 'Number of Dependents', NULL, 'The number of dependents who live with the student and receive more than half their support from them.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22384', '11', '22384', NULL, NULL) +VALUES ('001477', 'Rubric Criterion Title', NULL, 'The title of the rubric criterion.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24449', '12', '24449', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001416', 'Oral Defense Completed Indicator', NULL, 'An indication of the individual''s completion of an oral defense. The requirement to conduct an oral defense by doctoral individuals may vary across institutions, programs, or fields of study.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22385', '11', '22385', NULL, NULL) +VALUES ('001478', 'Rubric Criterion Weight', NULL, 'A numeric weight assigned to this Rubric Criterion, used for scored rubrics.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24450', '12', '24450', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001417', 'Oral Defense Date', NULL, 'The date on which the individual gave an oral defense.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22386', '11', '22386', NULL, NULL) +VALUES ('001479', 'Rubric Description', NULL, 'Text describing the intended use of the rubric.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24451', '12', '24451', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001418', 'Organization Operational Status', NULL, 'The current status of the organization''s operations, exclusive of scheduled breaks, holidays, or other temporary interruptions.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22387', '11', '22387', 'Updated', 'Added elements to DES contexts to support Early Learning needs.') +VALUES ('001480', 'School Courses for the Exchange of Data Grade Span', 'SCED Grade Span', 'The grade span for which the course is appropriate.', 'Alphanumeric - exactly 4 characters in length', '0', 'The span is represented by a four-character code with no decimals. Each grade level from 1 through 12 is represented by a two-digit code, ranging from 01 to 12; kindergarten is represented by the letters KG and prekindergarten by the letters PK.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24452', '12', '24452', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001419', 'Organization Seeking Accreditation Date', NULL, 'The date in which accreditation process was started (but not officially approved or denied)', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22388', '11', '22388', NULL, NULL) +VALUES ('001481', 'Referral Date', NULL, 'The date of referral.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24453', '12', '24453', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001420', 'Original Course Identifier', NULL, 'The course identifier as it was listed when the credit was earned (e.g. before a system conversion) to show consistency between present transcripts and older ones.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22389', '11', '22389', NULL, NULL) +VALUES ('001482', 'Referral Outcome', NULL, 'The outcome of the referral.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24454', '12', '24454', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001421', 'Other Race Indicator', NULL, 'Race other than American Indian, Black, Asian, White, Native Pacific Islander', NULL, '1', 'This element only applies to Early Learning (Head Start). For non-ED early learning programs only.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22390', '11', '22390', NULL, NULL) +VALUES ('001483', 'Referral Reason', NULL, 'The reason for the referral.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24455', '12', '24455', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001422', 'Override School Course Number', NULL, 'An indication of the way an academic course was identified at an educational institution.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22391', '11', '22391', NULL, NULL) +VALUES ('001484', 'Referral Source', NULL, 'The person, program, or organization making the initial referral.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24456', '12', '24456', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001423', 'Person Relationship to Learner Contact Priority Number', NULL, 'The numeric order in the preferred sequence and priority for contacting a person related to the learner.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22392', '11', '22392', NULL, NULL) +VALUES ('001485', 'Referral Type Received', NULL, 'A type of service that a child or family has received a referral for.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24457', '12', '24457', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001424', 'Person Relationship to Learner Contact Restrictions Description', NULL, 'Restrictions for student and/or teacher contact with the individual (e.g., the student may not be picked up by the individual)', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22393', '11', '22393', NULL, NULL) +VALUES ('001486', 'Referred To', NULL, 'The program or organization to which the child/family was referred.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24458', '12', '24458', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001425', 'Person Relationship to Learner Lives with Indicator', NULL, 'Indicates whether or not the learner lives with the related person.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22394', '11', '22394', NULL, NULL) +VALUES ('001487', 'Short Name of Organization', NULL, 'The name of the organization, which could be abbreviated form of the full legally accepted name.', 'Alphanumeric - 30 characters maximum', '0', 'An abbreviated name of an institution is commonly used, especially in reports and applications, e.g. a K12 school with the full legal name "Dr. Martin Luther King, Jr. Elementary School" may use "King Elementary".', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24459', '12', '24459', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001426', 'Postsecondary Entering Student Indicator', NULL, 'The initial enrollment of an individual in credit bearing courses or developmental/remedial courses at an institution after completing high school or a high school equivalency program (e.g. GED, Adult High School Diploma).', NULL, '1', 'An individual can only be an entering student once at an institution at the undergraduate level.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22395', '11', '22395', NULL, NULL) +VALUES ('001488', 'Reason for Declined Services', NULL, 'The reason given for declining the recommended services.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24460', '12', '24460', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001427', 'Postsecondary Student Entering Term', NULL, 'The term and year of the initial enrollment of an individual in credit bearing courses or developmental/remedial courses at an institution after completing high school or a high school equivalency program (e.g., GED, Adult High School Diploma).', 'Alphanumeric - 30 characters maximum', '0', 'An individual can only be an entering student once at an institution at the undergraduate level.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22396', '11', '22396', NULL, NULL) +VALUES ('001489', 'Sponsoring Agency Name', NULL, 'The name of the sponsoring agency.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24461', '12', '24461', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001428', 'Primary Contact Indicator', NULL, 'Indicates that a person is a primary contact within the specified context, such as a primary parental contact specified in Person Relationship to Learner or a primary administrative contact for an organization.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22397', '11', '22397', NULL, NULL) +VALUES ('001490', 'State Agency Identifier', NULL, 'A unique number or alphanumeric code assigned to a state agency.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24462', '12', '24462', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001429', 'Professional Certificate or License Number', NULL, 'The number issued by the credentialing/licensing agency.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22398', '11', '22398', NULL, NULL) +VALUES ('001491', 'State Agency Identification System', NULL, 'A coding scheme that is used for identification and record-keeping purposes to refer to a state agency.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24463', '12', '24463', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001430', 'Professional Development Audience Type', NULL, 'The type of audience for the professional development activity.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22399', '11', '22399', NULL, NULL) +VALUES ('001492', 'Professional Development Activity Target Audience', NULL, 'A categorization of the audience for which the professional development activity is intended.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24464', '12', '24464', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001431', 'Professional Development Delivery Method', NULL, 'The method by which a session is delivered', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22401', '11', '22401', NULL, NULL) +VALUES ('001493', 'Technical Assistance Approved Indicator', NULL, 'Indicates whether or not the technical assistance was approved.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24465', '12', '24465', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001432', 'Professional Development Activity Approval Code', NULL, 'A code given to an activity by an approval organization to designate it as an approved activity.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22402', '11', '22402', NULL, NULL) +VALUES ('001494', 'Technical Assistance Delivery Type', NULL, 'The method of delivery of technical assistance received/provided', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24466', '12', '24466', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001433', 'Professional Development Activity Approved Purpose', NULL, 'The purposes for which an activity is approved.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22403', '11', '22403', NULL, NULL) +VALUES ('001495', 'Technical Assistance Type', NULL, 'The type of technical assistance provided.', NULL, '1', 'Technical assistance may be for organizations or staff depending on context. See the document https://ceds.ed.gov/pdf/ceds-addresses-professional-development-data-elements.pdf.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24467', '12', '24467', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001434', 'Professional Development Activity Code', NULL, 'A code assigned to an professional development activity by the organization offering the activity that is unique to the non-variable activity details.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22404', '11', '22404', NULL, NULL) +VALUES ('001496', 'Thesis or Dissertation Title', NULL, 'The title of the thesis or dissertation.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24468', '12', '24468', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001435', 'Professional Development Activity Cost', NULL, 'The cost for an attendee to participate in a professional development activity.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22405', '11', '22405', NULL, NULL) +VALUES ('001497', 'Union Membership Name', NULL, 'The name of the labor organization of which the person is a member.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24469', '12', '24469', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001436', 'Professional Development Activity Credit Type', NULL, 'The type of credit awarded.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22406', '11', '22406', NULL, NULL) +VALUES ('001498', 'Weeks Employed Per Year', NULL, 'The number of weeks employed by year.', 'Integer', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24470', '12', '24470', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001437', 'Professional Development Activity Credits', NULL, 'The number of credits a professional development activity provides.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22407', '11', '22407', NULL, NULL) +VALUES ('001499', 'Work-based Learning Opportunity Type', NULL, 'The type of work-based learning opportunity a student participated in.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24471', '12', '24471', 'Updated', 'Added new option to existing option set and add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001438', 'Professional Development Activity Description', NULL, 'A description of the content covered in the professional development activity.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22408', '11', '22408', NULL, NULL) +VALUES ('001500', 'IDEA Part C to Part B Notification Date', NULL, 'The date that notification is provided to the State Education Agency (SEA) and local education agency (LEA) of residence for a child potentially eligible for Part B (619) preschool services.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24472', '12', '24472', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001439', 'Professional Development Activity Level', NULL, 'An indicator of the level of a professional development activity on the beginner to advanced continuum.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22409', '11', '22409', NULL, NULL) +VALUES ('001501', 'IDEA IEP Status', NULL, 'The status of an individualized services plan for a specified reporting period or on a specified date.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24473', '12', '24473', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001440', 'Professional Development Activity Objective', NULL, 'The expected outcomes of a participant in an activity.', 'Alphanumeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22410', '11', '22410', NULL, NULL) +VALUES ('001503', 'Early Learning Outcome Time Point', NULL, 'The point in time for which the result is used for an outcome measure.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24475', '12', '24475', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001442', 'Professional Development Activity Type', NULL, 'The indication of the type of professional development activity.', NULL, '1', 'The type of event should be determined based on the content of the event, not the delivery method.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22412', '11', '22412', NULL, NULL) +VALUES ('001504', 'Child Outcomes Summary Progress A Indicator', 'COS Progress A Indicator', 'Indicates that the child demonstrates progress in positive social-emotional skills, including social relationships.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24476', '12', '24476', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001443', 'Professional Development Funding Source', NULL, 'The primary source of funding for a professional development session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22413', '11', '22413', NULL, NULL) +VALUES ('001505', 'Child Outcomes Summary Progress B Indicator', 'COS Progress B Indicator', 'Indicates that the child demonstrates progress in acquisition and use of knowledge and skills, including early language/communication.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24477', '12', '24477', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001444', 'Professional Development Instructor Identifier', NULL, 'Identifies an instructor of a professional development session.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22414', '11', '22414', NULL, NULL) +VALUES ('001506', 'Child Outcomes Summary Progress C Indicator', 'COS Progress C Indicator', 'Indicates that the child demonstrates progress in use of appropriate behaviors to meet their needs.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24478', '12', '24478', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001445', 'Professional Development Publish Activity Indicator', NULL, 'An indicator of whether the professional development activity should be published.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22415', '11', '22415', NULL, NULL) +VALUES ('001507', 'Child Outcomes Summary Rating A', 'COS Rating A', 'Child''s level of functioning in positive social-emotional skills (including social relationships).', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24479', '12', '24479', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001446', 'Professional Development Session Capacity', NULL, 'The total number of participants that can be accommodated by a professional development session.', 'Integer - greater than or equal to 0', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22416', '11', '22416', NULL, NULL) +VALUES ('001508', 'Child Outcomes Summary Rating B', 'COS Rating B', 'Child''s level of functioning in the acquisition and use of knowledge and skills (including early language/communication.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24480', '12', '24480', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001447', 'Professional Development Session End Date', NULL, 'The year, month and day a professional development session ends.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22417', '11', '22417', NULL, NULL) +VALUES ('001511', 'Competency Definition Valid End Date', 'Learning Standard Item Valid End Date, Competency Item Valid End Date', 'The year, month and day the competency definition was deprecated/replaced by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', 'When not specified, the entity is assumed to contain the most current version of the specified competency definition. All CEDS Exit and End Dates represent the last day of the date range specified, in this case the last day the competency definition was valid.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24483', '12', '24483', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001448', 'Professional Development Session End Time', NULL, 'The time at which a professional development session ends.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22418', '11', '22418', NULL, NULL) +VALUES ('001512', 'Competency Definition Valid Start Date', 'Learning Standard Item Valid Start Date, Competency Item Valid Start Date', 'The year, month and day the competency definition was adopted by the jurisdiction in which it was intended to apply.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24484', '12', '24484', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001449', 'Professional Development Session Evaluation Method', NULL, 'The method used to evaluate a professional development session.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22419', '11', '22419', NULL, NULL) +VALUES ('001513', 'Other Last Name', NULL, 'A last name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other Last Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24485', '12', '24485', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001450', 'Professional Development Session Evaluation Score', NULL, 'The score or rating used to determine if a professional development session was successful.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22420', '11', '22420', NULL, NULL) +VALUES ('001514', 'Other First Name', NULL, 'A first name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other First Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24486', '12', '24486', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001451', 'Professional Development Activity Expiration Date', NULL, 'The year, month, and day on which any certificate awarded as part of a professional development activity expires.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22421', '11', '22421', NULL, NULL) +VALUES ('001515', 'Other Middle Name', NULL, 'A middle name given to a person.', 'Alphanumeric - 35 characters maximum', '0', 'Other Middle Name may be repeatable and used with Other Name Type.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24487', '12', '24487', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001452', 'Professional Development Session Identifier', NULL, 'The unique, non-duplicated, identification number assigned by the registry data system for a session of a particular professional development activity.', 'Alphanumeric - 40 characters maximum', '0', 'CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22422', '11', '22422', NULL, NULL) +VALUES ('001516', 'School Courses for the Exchange of Data Course Level', 'SCED Course Level', ' The course''s level of rigor.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24488', '12', '24488', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001454', 'Professional Development Session Location Name', NULL, 'The name of a location where a professional development session will be held.', 'Alphanumeric - 60 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22424', '11', '22424', NULL, NULL) +VALUES ('001517', 'School Courses for the Exchange of Data Course Code', 'SCED Course Code', 'The five-digit SCED code. The first two-digits of the code represent the Course Subject Area and the next three digits identify the course number. These identifiers are fairly general but provide enough specificity to identify the course''s topic and to distinguish it from other courses in that subject area.', NULL, '1', 'https://nces.ed.gov/forum/SCED.asp', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24490', '12', '24490', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001455', 'Professional Development Session Start Date', NULL, 'The year, month, and day a professional development session begins.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22426', '11', '22426', NULL, NULL) +VALUES ('001518', 'School Courses for the Exchange of Data Course Subject Area', 'SCED Course Subject Area', 'The intended major subject area of the education course.', NULL, '1', 'This is a compilation of Secondary Course Subject Area and Prior to Secondary Course Subject Area. This version merges SCED and pSCED.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24491', '12', '24491', 'Updated', 'Add new DES location') INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001456', 'Professional Development Session Start Time', NULL, 'The time at which a professional development session begins.', 'HH:MM', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22427', '11', '22427', NULL, NULL) +VALUES ('001519', 'Individualized Program Planned Service Frequency', NULL, 'The frequency that a service is planned to be provided.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24492', '12', '24492', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001457', 'Professional Development Session Status', NULL, 'The current status of a professional development session', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22428', '11', '22428', NULL, NULL) +VALUES ('001520', 'Individualized Program Planned Service Duration', NULL, 'The length, in hours, that delivery of the service is planned.', 'Numeric - up to 2 digits after decimal place', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24493', '12', '24493', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001458', 'Professional Development Instructional Delivery Mode', NULL, 'The primary setting or medium of professional development delivery.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22429', '11', '22429', NULL, NULL) +VALUES ('001521', 'Reason for Delay of Transition Conference', NULL, 'The reasons for the delay of a transition conference.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24494', '12', '24494', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001460', 'Quality Initiative Maximum Score', NULL, 'The maximum score option for the QRIS or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22432', '11', '22432', NULL, NULL) +VALUES ('001524', 'Competency Definition Previous Version Identifier', 'Learning Standard Item Previous Version Identifier, Competency Item Previous Version Identifier', 'The unique identifier of the previous version of the Competency Definition if the statement was modified.', 'Alphanumeric - 40 characters maximum', '0', 'This element supports version histories at the statement level. If corrections have been made to individual items/statements that are not part of a new Competency Framework, the elements ''Competency Definition Previous Version Identifier'' and ''Competency Definition Current Version Indicator'' provide a reference to historical versions of the current statement. In such uses the ''Competency Definition Code'' could be the same for multiple versions of a statement and ''Competency Definition URL'' could resolve to the most current version of the statement.


CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.


An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24498', '12', '24498', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001461', 'Quality Initiative Minimum Score', NULL, 'The minimum score option for the QRIS or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22433', '11', '22433', NULL, NULL) +VALUES ('001525', 'Competency Definition Current Version Indicator', 'Learning Standard Item Current Version Indicator, Competency Item Current Version Indicator', 'Indicates that this is the most current version of the Competency Definition.', NULL, '1', 'This element supports version histories at the statement level. If corrections have been made to individual items/statements that are not part of a new Competency Framework, the elements ''Competency Definition Previous Version Identifier'' and ''Competency Definition Current Version Indicator'' provide a reference to historical versions of the current statement. In such uses the ''Competency Definition Code'' could be the same for multiple versions of a statement and ''Competency Definition URL'' could resolve to the most current version of the statement.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24499', '12', '24499', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001462', 'Quality Initiative Score Level', NULL, 'The score, rating or level received by a program for its Quality Rating and Improvement System (QRIS) or other quality initiative.', 'Alphanumeric - 30 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22434', '11', '22434', NULL, NULL) +VALUES ('001526', 'Accreditation Agency Name', NULL, 'The full name of an agency that accredited a school.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24500', '12', '24500', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001463', 'Quality Initiative Participation Indicator', NULL, 'Site participates in a quality improvement initiative component other than QRIS.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22435', '11', '22435', NULL, NULL) +VALUES ('001527', 'Activity Time Involved', NULL, 'The amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24502', '12', '24502', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001464', 'Quality Initiative Participation End Date', NULL, 'The quality initiative end date.', 'YYYY-MM-DD', '0', 'All CEDS Exit and End Dates represent the last day of the date range specified, such as the last day that a person was enrolled, participated, or received services.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22436', '11', '22436', NULL, NULL) +VALUES ('001528', 'Activity Time Measurement Type', NULL, 'The type of measurement for the amount of time the student participated in the events and procedures of an activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24503', '12', '24503', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001465', 'Quality Initiative Participation Start Date', NULL, 'The quality initiative start date.', 'YYYY-MM-DD', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22437', '11', '22437', NULL, NULL) +VALUES ('001529', 'APIP Interaction Sequence Number', NULL, 'The position of this APIP Interaction in a sequence of interactions.', 'Numeric', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24504', '12', '24504', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001466', 'Responsible Organization Identifier', NULL, 'Identifies an organization responsible for specific educational services and/or instruction based on a type of responsibility specified in the Responsible Organization Type.', 'Alphanumeric - 40 characters maximum', '0', 'This may be used to specify responsibility when the organization is not a school (Responsible School) or school district (Responsible District).

CEDS "Identifier" elements reflect the intent of the XSD:Token format, i.e. a string in which carriage return, line feed, and tab characters have been removed as well as any internal sequences of two or more spaces and any leading or trailing spaces.

An Identifier MAY be a Universally Unique Identifier (UUID) / Globally Unique Identifier (GUID), i.e.128-bit unique identifiers generated according to the algorithms and encoding standards of RFC 4122.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22438', '11', '22438', NULL, NULL) +VALUES ('001530', 'Activity Description', NULL, 'A description of the events and procedures that take place under the purview of an organized activity, such as a co-curricular or extra-curricular activity that is offered at an education institution.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24505', '12', '24505', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001467', 'Responsible Organization Type', NULL, 'The type of responsibility the organization has for the student.', NULL, '1', 'This may be used to specify responsibility when the organization is not a school (Responsible School) or school district (Responsible District).', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22439', '11', '22439', NULL, NULL) +VALUES ('001531', 'Assessment Administration Period Description', NULL, 'The period or window in which an assessment is supposed to be administered.', 'Alphanumeric - 300 characters maximum', '0', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24506', '12', '24506', NULL, NULL) INSERT INTO dbo.[_CEDSElements]([GlobalID], [ElementName], [AltName], [Definition], [Format], [HasOptionSet], [UsageNotes], [URL], [Version], [TermID], [ChangedInThisVersionInd], [ChangeNotes]) -VALUES ('001468', 'Financial Account Revenue Code', NULL, 'These codes are for recording revenue and other receivables by source. Major revenue categories have codes ending in 00 and are further subdivided.', NULL, '1', 'Based on codes specified in the NCES Handbook "Financial Accounting for Local and State School Systems: 2014 Edition".

Early Learning: If related to an "in kind" contribution use codes 1920 or 100.', 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=22440', '11', '22440', 'Updated', 'Changed element name and technical name and added elements to DES contexts to support Early Learning needs.') +VALUES ('001532', 'Assessment Form Adaptive Indicator', NULL, 'Indicates that the assessment form was generated using an algorithm rather than a fixed form.', NULL, '1', NULL, 'https://ceds.ed.gov/CEDSElementDetails.aspx?TermId=24507', '12', '24507', NULL, NULL) END GO SET IDENTITY_INSERT dbo._CEDSElements OFF; @@ -89350,8870 +79387,9596 @@ IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id(N'[dbo].[_CEDStoNDSM BEGIN DELETE FROM dbo._CEDStoNDSMapping INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Authentication', 'RecordEndDateTime', '11') +VALUES ('001917', 'CompetencySet', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Authorization', 'RecordEndDateTime', '11') +VALUES ('001917', 'CompetencySet_Rubric', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AuthorizationDocument', 'RecordEndDateTime', '11') +VALUES ('001917', 'CompetencySet_RubricCriterion', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSpace', 'RecordEndDateTime', '11') +VALUES ('001917', 'CoreKnowledgeArea', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSystemCategory', 'RecordEndDateTime', '11') +VALUES ('001917', 'Course', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSystemComponent', 'RecordEndDateTime', '11') +VALUES ('001917', 'CourseSection', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSystemComponentService', 'RecordEndDateTime', '11') +VALUES ('001917', 'CourseSectionAssessmentReporting', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyDefAssociation', 'RecordEndDateTime', '11') +VALUES ('001917', 'CourseSectionLevel', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyDefEducationLevel', 'RecordEndDateTime', '11') +VALUES ('001917', 'CourseSectionLocation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyDefinition', 'RecordEndDateTime', '11') +VALUES ('001917', 'CourseSectionSchedule', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyDefinition_CompetencySet', 'RecordEndDateTime', '11') +VALUES ('001917', 'CredentialAward', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencyFramework', 'RecordEndDateTime', '11') +VALUES ('001917', 'CredentialAwardCredit', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencySet', 'RecordEndDateTime', '11') +VALUES ('001917', 'CredentialAwardEvidence', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencySet_Rubric', 'RecordEndDateTime', '11') +VALUES ('001917', 'CredentialCriteriaCourse', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CompetencySet_RubricCriterion', 'RecordEndDateTime', '11') +VALUES ('001917', 'CredentialDefAgent', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CoreKnowledgeArea', 'RecordEndDateTime', '11') +VALUES ('001917', 'CredentialDefAgentCredential', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSectionAssessmentReporting', 'RecordEndDateTime', '11') +VALUES ('001917', 'CredentialDefCategory', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSectionLevel', 'RecordEndDateTime', '11') +VALUES ('001917', 'CredentialDefCriteria', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSectionLocation', 'RecordEndDateTime', '11') +VALUES ('001917', 'CredentialDefIdentifier', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSectionSchedule', 'RecordEndDateTime', '11') +VALUES ('001917', 'CredentialDefinition', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialAward', 'RecordEndDateTime', '11') +VALUES ('001917', 'CredentialIssuer', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialAwardCredit', 'RecordEndDateTime', '11') +VALUES ('001917', 'CredentialOffered', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialAwardEvidence', 'RecordEndDateTime', '11') +VALUES ('001917', 'CteCourse', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialCriteriaCourse', 'RecordEndDateTime', '11') +VALUES ('001917', 'CteStudentAcademicRecord', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefAgentCredential', 'RecordEndDateTime', '11') +VALUES ('001917', 'EarlyChildhoodCredential', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefCategory', 'RecordEndDateTime', '11') +VALUES ('001917', 'EarlyChildhoodProgramTypeOffered', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefCriteria', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELChildDemographic', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefIdentifier', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELChildDevelopmentalAssessment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefinition', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELChildHealth', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialOffered', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELChildIndividualizedProgram', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'EarlyChildhoodProgramTypeOffered', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELChildOutcomeSummary', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELClassSectionService', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELChildProgramEligibility', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELCourse', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELChildService', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELEnrollmentOtherFunding', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELChildServicesApplication', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELFacilityLicensing', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELChildTransitionPlan', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'EligibilityEvaluation', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELClassSection', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganizationMonitoring', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELClassSectionService', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELProgramLicensing', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELCourse', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELQualityInitiative', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELEnrollment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELQualityRatingImprovement', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELEnrollmentOtherFunding', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Facility', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELFacilityLicensing', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityAudit', 'RecordEndDateTime', '11') +VALUES ('001917', 'EligibilityEvaluation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityCompliance', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELOrganization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityDesign', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELOrganizationAvailability', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityDesignConstruction', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELOrganizationFunds', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityEnergy', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELOrganizationMonitoring', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityFinance', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELProgramLicensing', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityHazard', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELQualityInitiative', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityJointUse', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELQualityRatingImprovement', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityLease', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELServicePartner', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityLocation', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELStaff', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityManagementPlan', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELStaffAssignment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityMandate', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELStaffEducation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityMortgage', 'RecordEndDateTime', '11') +VALUES ('001917', 'ELStaffEmployment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityMortgageFee', 'RecordEndDateTime', '11') +VALUES ('001917', 'Facility', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityRelationship', 'RecordEndDateTime', '11') +VALUES ('001917', 'FacilityAudit', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilitySchoolDesign', 'RecordEndDateTime', '11') +VALUES ('001917', 'FacilityCompliance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilitySite', 'RecordEndDateTime', '11') +VALUES ('001917', 'FacilityDesign', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAccount', 'RecordEndDateTime', '11') +VALUES ('001917', 'FacilityDesignConstruction', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAccountProgram', 'RecordEndDateTime', '11') +VALUES ('001917', 'FacilityEnergy', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAidApplication', 'RecordEndDateTime', '11') +VALUES ('', 'K12School', 'K12CharterSchoolAuthorizerAgencyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAidAward', 'RecordEndDateTime', '11') +VALUES ('', 'K12School', 'K12SchoolId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Goal', 'RecordEndDateTime', '11') +VALUES ('', 'K12School', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'GoalMeasurement', 'RecordEndDateTime', '11') +VALUES ('', 'K12School', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'GoalMeasurementCriterion', 'RecordEndDateTime', '11') +VALUES ('', 'K12SchoolCorrectiveAction', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'GoalPerformance', 'RecordEndDateTime', '11') +VALUES ('', 'K12SchoolCorrectiveAction', 'K12SchoolCorrectiveActionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IDEAEligibilityEvaluationCategory', 'RecordEndDateTime', '11') +VALUES ('', 'K12SchoolCorrectiveAction', 'K12SchoolId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IEPAuthorization', 'RecordEndDateTime', '11') +VALUES ('', 'K12SchoolCorrectiveAction', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IEPAuthorizationRejected', 'RecordEndDateTime', '11') +VALUES ('', 'K12SchoolGradeLevelsApproved', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Incident', 'RecordEndDateTime', '11') +VALUES ('', 'K12SchoolGradeLevelsApproved', 'K12SchoolGradeLevelsApprovedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgram', 'RecordEndDateTime', '11') +VALUES ('', 'K12SchoolGradeLevelsApproved', 'K12SchoolId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'OrganizationPersonRoleId', '11') +VALUES ('', 'K12SchoolGradeLevelsApproved', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'RecordStatusId', '11') +VALUES ('', 'K12SchoolGradeOffered', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentHomeLanguageSurvey', 'DataCollectionId', '11') +VALUES ('', 'K12SchoolGradeOffered', 'K12SchoolGradeOfferedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentHomeLanguageSurvey', 'K12StudentHomeLanguageSurveyId', '11') +VALUES ('', 'K12SchoolGradeOffered', 'K12SchoolId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentHomeLanguageSurvey', 'OrganizationPersonRoleId', '11') +VALUES ('', 'K12SchoolGradeOffered', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentHomeLanguageSurvey', 'RecordStatusId', '11') +VALUES ('', 'K12SchoolImprovement', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentLiteracyAssessment', 'DataCollectionId', '11') +VALUES ('', 'K12SchoolImprovement', 'K12SchoolId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentLiteracyAssessment', 'K12StudentLiteracyAssessmentId', '11') +VALUES ('', 'K12SchoolImprovement', 'K12SchoolImprovementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentLiteracyAssessment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'K12SchoolImprovement', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentLiteracyAssessment', 'RecordStatusId', '11') +VALUES ('', 'K12SchoolIndicatorStatus', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'DataCollectionId', '11') +VALUES ('', 'K12SchoolIndicatorStatus', 'IndicatorStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'K12StudentSessionId', '11') +VALUES ('', 'K12SchoolIndicatorStatus', 'IndicatorStatusSubgroup', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'OrganizationCalendarSessionId', '11') +VALUES ('', 'K12SchoolIndicatorStatus', 'K12SchoolId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'OrganizationPersonRoleId', '11') +VALUES ('', 'K12SchoolIndicatorStatus', 'K12SchoolIndicatorStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentSession', 'RecordStatusId', '11') +VALUES ('', 'K12SchoolIndicatorStatus', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12TitleIIILanguageInstruction', 'DataCollectionId', '11') +VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStateDefinedStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12TitleIIILanguageInstruction', 'K12TitleIIILanguageInstructionId', '11') +VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusCustomTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12TitleIIILanguageInstruction', 'OrganizationId', '11') +VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusSubgroupTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12TitleIIILanguageInstruction', 'RecordStatusId', '11') +VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerAction', 'AssessmentItemResponseId', '11') +VALUES ('', 'K12SchoolStatus', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerAction', 'DataCollectionId', '11') +VALUES ('', 'K12SchoolStatus', 'K12SchoolId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerAction', 'LearnerActionId', '11') +VALUES ('', 'K12SchoolStatus', 'K12SchoolStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerAction', 'RecordStatusId', '11') +VALUES ('', 'K12SchoolStatus', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'AssessmentRegistrationId', '11') +VALUES ('', 'K12SchoolStatus', 'RefComprehensiveAndTargetedSupportId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'AssignedByPersonId', '11') +VALUES ('', 'K12SchoolStatus', 'RefComprehensiveSupportId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'CourseSectionId', '11') +VALUES ('', 'K12SchoolStatus', 'RefNSLPStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'DataCollectionId', '11') +VALUES ('', 'K12SchoolStatus', 'RefSchoolDangerousStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'LeaOrganizationId', '11') +VALUES ('', 'K12SchoolStatus', 'RefSchoolImprovementStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'LearnerActivityId', '11') +VALUES ('', 'K12SchoolStatus', 'RefTargetedSupportId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'OrganizationCalendarSessionId', '11') +VALUES ('', 'K12Sea', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'PersonId', '11') +VALUES ('', 'K12Sea', 'K12SeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'RecordStatusId', '11') +VALUES ('', 'K12Sea', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity', 'SchoolOrganizationId', '11') +VALUES ('', 'K12Sea', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'DataCollectionId', '11') +VALUES ('', 'K12SeaAlternateFundUse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'LearnerActivity_LearningResourceId', '11') +VALUES ('', 'K12SeaAlternateFundUse', 'K12SeaAlternateFundUseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'LearnerActivityId', '11') +VALUES ('', 'K12SeaAlternateFundUse', 'K12SeaFederalFundsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'LearningResourceId', '11') +VALUES ('', 'K12SeaAlternateFundUse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearnerActivity_LearningResource', 'RecordStatusId', '11') +VALUES ('', 'K12SeaAlternateFundUse', 'RefAlternateFundUsesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResource', 'DataCollectionId', '11') +VALUES ('', 'K12SeaFederalFunds', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResource', 'LearningResourceId', '11') +VALUES ('', 'K12SeaFederalFunds', 'K12SeaFederalFundsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResource', 'RecordStatusId', '11') +VALUES ('', 'K12SeaFederalFunds', 'K12SeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceAdaptation', 'DataCollectionId', '11') +VALUES ('', 'K12SeaFederalFunds', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceAdaptation', 'LearningResourceAdaptationId', '11') +VALUES ('', 'K12StaffAssignment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceAdaptation', 'LearningResourceId', '11') +VALUES ('', 'K12StaffAssignment', 'K12StaffAssignmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceAdaptation', 'RecordStatusId', '11') +VALUES ('', 'K12StaffAssignment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceEducationLevel', 'DataCollectionId', '11') +VALUES ('', 'K12StaffAssignment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceEducationLevel', 'LearningResourceEducationLevelId', '11') +VALUES ('', 'K12StaffAssignment', 'RefEmergencyOrProvisionalCredentialStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceEducationLevel', 'LearningResourceId', '11') +VALUES ('', 'K12StaffEmployment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceEducationLevel', 'RecordStatusId', '11') +VALUES ('', 'K12StaffEmployment', 'K12StaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceMediaFeature', 'DataCollectionId', '11') +VALUES ('', 'K12StaffEmployment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceMediaFeature', 'LearningResourceId', '11') +VALUES ('', 'K12StaffEmployment', 'StaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceMediaFeature', 'LearningResourceMediaFeatureId', '11') +VALUES ('', 'K12StudentAcademicHonor', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourceMediaFeature', 'RecordStatusId', '11') +VALUES ('', 'K12StudentAcademicHonor', 'K12StudentAcademicHonorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'DataCollectionId', '11') +VALUES ('', 'K12StudentAcademicHonor', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'LearningResourceId', '11') +VALUES ('', 'K12StudentAcademicHonor', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'LearningResourcePeerRatingId', '11') +VALUES ('', 'K12StudentAcademicRecord', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'PeerRatingSystemId', '11') +VALUES ('', 'K12StudentAcademicRecord', 'K12StudentAcademicRecordId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'PersonId', '11') +VALUES ('', 'K12StudentAcademicRecord', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePeerRating', 'RecordStatusId', '11') +VALUES ('', 'K12StudentAcademicRecord', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePhysicalMedia', 'DataCollectionId', '11') +VALUES ('', 'K12StudentActivity', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePhysicalMedia', 'LearningResourceId', '11') +VALUES ('', 'K12StudentActivity', 'K12StudentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePhysicalMedia', 'LearningResourcePhysicalMediaId', '11') +VALUES ('', 'K12StudentActivity', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LearningResourcePhysicalMedia', 'RecordStatusId', '11') +VALUES ('', 'K12StudentActivity', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Location', 'DataCollectionId', '11') +VALUES ('', 'K12StudentCohort', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Location', 'LocationId', '11') +VALUES ('', 'K12StudentCohort', 'K12StudentCohortId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Location', 'RecordStatusId', '11') +VALUES ('', 'K12StudentCohort', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'DataCollectionId', '11') +VALUES ('', 'K12StudentCohort', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'LocationAddressId', '11') +VALUES ('', 'K12StudentCourseSection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'LocationId', '11') +VALUES ('', 'K12StudentCourseSection', 'K12StudentCourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'RecordStatusId', '11') +VALUES ('', 'K12StudentCourseSection', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'RefCountryId', '11') +VALUES ('', 'K12StudentCourseSection', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'RefCountyId', '11') +VALUES ('', 'K12StudentCourseSectionMark', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'LocationAddress', 'RefStateId', '11') +VALUES ('', 'K12StudentCourseSectionMark', 'K12StudentCourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Organization', 'DataCollectionId', '11') +VALUES ('', 'K12StudentCourseSectionMark', 'K12StudentCourseSectionMarkId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Organization', 'OrganizationId', '11') +VALUES ('', 'K12StudentCourseSectionMark', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Organization', 'RecordStatusId', '11') +VALUES ('', 'K12StudentDiscipline', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'AccreditationStatus', '11') +VALUES ('', 'K12StudentDiscipline', 'IncidentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'DataCollectionId', '11') +VALUES ('', 'K12StudentDiscipline', 'K12StudentDisciplineId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'OrganizationAccreditationId', '11') +VALUES ('', 'K12StudentDiscipline', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'OrganizationId', '11') +VALUES ('', 'K12StudentDiscipline', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationAccreditation', 'RecordStatusId', '11') +VALUES ('', 'K12StudentDropout', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendar', 'DataCollectionId', '11') +VALUES ('', 'K12StudentDropout', 'K12StudentDropoutId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendar', 'OrganizationCalendarId', '11') +VALUES ('', 'K12StudentDropout', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendar', 'OrganizationId', '11') +VALUES ('', 'K12StudentDropout', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendar', 'RecordStatusId', '11') +VALUES ('', 'K12StudentDropout', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarCrisis', 'DataCollectionId', '11') +VALUES ('', 'K12StudentDropout', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarCrisis', 'OrganizationCalendarCrisisId', '11') +VALUES ('', 'K12StudentDropoutReason', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarCrisis', 'OrganizationId', '11') +VALUES ('', 'K12StudentDropoutReason', 'K12StudentDropoutReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarCrisis', 'RecordStatusId', '11') +VALUES ('', 'K12StudentDropoutReason', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'DataCollectionId', '11') +VALUES ('', 'K12StudentDropoutReason', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'DayName', '11') +VALUES ('', 'K12StudentDropoutReason', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'OrganizationCalendarDayId', '11') +VALUES ('', 'K12StudentDropoutReason', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'OrganizationCalendarId', '11') +VALUES ('', 'K12StudentEmployment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarDay', 'RecordStatusId', '11') +VALUES ('', 'K12StudentEmployment', 'K12StudentEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarEvent', 'DataCollectionId', '11') +VALUES ('', 'K12StudentEmployment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarEvent', 'OrganizationCalendarEventId', '11') +VALUES ('', 'K12StudentEmployment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarEvent', 'OrganizationCalendarId', '11') +VALUES ('', 'K12StudentEnrollment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarEvent', 'RecordStatusId', '11') +VALUES ('', 'K12StudentEnrollment', 'K12StudentEnrollmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarSession', 'DataCollectionId', '11') +VALUES ('', 'K12StudentEnrollment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarSession', 'OrganizationCalendarId', '11') +VALUES ('', 'K12StudentEnrollment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarSession', 'OrganizationCalendarSessionId', '11') +VALUES ('', 'K12StudentGraduationPlan', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationCalendarSession', 'RecordStatusId', '11') +VALUES ('', 'K12StudentGraduationPlan', 'K12CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'DataCollectionId', '11') +VALUES ('', 'K12StudentGraduationPlan', 'K12StudentGraduationPlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'OrganizationDetailId', '11') +VALUES ('', 'K12StudentGraduationPlan', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'OrganizationId', '11') +VALUES ('', 'K12StudentGraduationPlan', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'RecordStatusId', '11') +VALUES ('', 'K12StudentHomeLanguageSurvey', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationDetail', 'RefOrganizationTypeId', '11') +VALUES ('', 'K12StudentHomeLanguageSurvey', 'K12StudentHomeLanguageSurveyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmail', 'DataCollectionId', '11') +VALUES ('', 'K12StudentHomeLanguageSurvey', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmail', 'OrganizationEmailId', '11') +VALUES ('', 'K12StudentHomeLanguageSurvey', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmail', 'OrganizationId', '11') +VALUES ('', 'K12StudentLiteracyAssessment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmail', 'RecordStatusId', '11') +VALUES ('', 'K12StudentLiteracyAssessment', 'K12StudentLiteracyAssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmployeeBenefit', 'DataCollectionId', '11') +VALUES ('', 'K12StudentLiteracyAssessment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmployeeBenefit', 'OrganizationEmployeeBenefitId', '11') +VALUES ('', 'K12StudentLiteracyAssessment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmployeeBenefit', 'OrganizationId', '11') +VALUES ('', 'K12StudentSession', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationEmployeeBenefit', 'RecordStatusId', '11') +VALUES ('', 'K12StudentSession', 'K12StudentSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFederalAccountability', 'DataCollectionId', '11') +VALUES ('', 'K12StudentSession', 'OrganizationCalendarSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFederalAccountability', 'OrganizationFederalAccountabilityId', '11') +VALUES ('', 'K12StudentSession', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFederalAccountability', 'OrganizationId', '11') +VALUES ('', 'K12StudentSession', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFederalAccountability', 'RecordStatusId', '11') +VALUES ('', 'K12TitleIIILanguageInstruction', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'DataCollectionId', '11') +VALUES ('', 'K12TitleIIILanguageInstruction', 'K12TitleIIILanguageInstructionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'FinancialAccountId', '11') +VALUES ('', 'K12TitleIIILanguageInstruction', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'FinancialAccountProgramId', '11') +VALUES ('', 'K12TitleIIILanguageInstruction', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'OrganizationCalendarSessionId', '11') +VALUES ('', 'LearnerAction', 'AssessmentItemResponseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'OrganizationFinancialId', '11') +VALUES ('', 'LearnerAction', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancial', 'RecordStatusId', '11') +VALUES ('', 'LearnerAction', 'LearnerActionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'FinancialAccountLocalId', '11') +VALUES ('', 'LearnerAction', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'OrganizationFinancialFinancialAccountLocalId', '11') +VALUES ('', 'LearnerActivity', 'AssessmentRegistrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'OrganizationFinancialId', '11') +VALUES ('', 'LearnerActivity', 'AssignedByPersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIdentifier', 'DataCollectionId', '11') +VALUES ('', 'LearnerActivity', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIdentifier', 'OrganizationId', '11') +VALUES ('', 'LearnerActivity', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIdentifier', 'OrganizationIdentifierId', '11') +VALUES ('', 'LearnerActivity', 'LeaOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIdentifier', 'RecordStatusId', '11') +VALUES ('', 'LearnerActivity', 'LearnerActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationImage', 'DataCollectionId', '11') +VALUES ('', 'LearnerActivity', 'OrganizationCalendarSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationImage', 'OrganizationId', '11') +VALUES ('', 'LearnerActivity', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationImage', 'OrganizationImageId', '11') +VALUES ('', 'LearnerActivity', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationImage', 'RecordStatusId', '11') +VALUES ('', 'LearnerActivity', 'SchoolOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'DataCollectionId', '11') +VALUES ('', 'LearnerActivity_LearningResource', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'IndicatorValue', '11') +VALUES ('', 'LearnerActivity_LearningResource', 'LearnerActivity_LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'OrganizationId', '11') +VALUES ('', 'LearnerActivity_LearningResource', 'LearnerActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'OrganizationIndicatorId', '11') +VALUES ('', 'LearnerActivity_LearningResource', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationIndicator', 'RecordStatusId', '11') +VALUES ('', 'LearnerActivity_LearningResource', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'DataCollectionId', '11') +VALUES ('', 'LearningResource', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'LocationId', '11') +VALUES ('', 'LearningResource', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'OrganizationId', '11') +VALUES ('', 'LearningResource', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'OrganizationLocationId', '11') +VALUES ('', 'LearningResource', 'RefAccessibleFormatTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationLocation', 'RecordStatusId', '11') +VALUES ('', 'LearningResourceAdaptation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationOperationalStatus', 'DataCollectionId', '11') +VALUES ('', 'LearningResourceAdaptation', 'LearningResourceAdaptationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationOperationalStatus', 'OrganizationId', '11') +VALUES ('', 'LearningResourceAdaptation', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationOperationalStatus', 'OrganizationOperationalStatusId', '11') +VALUES ('', 'LearningResourceAdaptation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationOperationalStatus', 'RecordStatusId', '11') +VALUES ('', 'LearningResourceEducationLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'DataCollectionId', '11') +VALUES ('', 'LearningResourceEducationLevel', 'LearningResourceEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'OrganizationId', '11') +VALUES ('', 'LearningResourceEducationLevel', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'OrganizationPersonRoleId', '11') +VALUES ('', 'LearningResourceEducationLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'PersonId', '11') +VALUES ('', 'LearningResourceIdentifier', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'RecordStatusId', '11') +VALUES ('', 'LearningResourceIdentifier', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRole', 'RoleId', '11') +VALUES ('', 'LearningResourceIdentifier', 'LearningResourceIdentifierId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleApplication', 'DataCollectionId', '11') +VALUES ('', 'LearningResourceIdentifier', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleApplication', 'OrganizationPersonRoleApplicationId', '11') +VALUES ('', 'LearningResourceIdentifier', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleApplication', 'OrganizationPersonRoleId', '11') +VALUES ('', 'LearningResourceIdentifier', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleApplication', 'RecordStatusId', '11') +VALUES ('', 'LearningResourceIssued', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleFTE', 'DataCollectionId', '11') +VALUES ('', 'LearningResourceIssued', 'IssuedToPersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleFTE', 'OrganizationPersonRoleFTEId', '11') +VALUES ('', 'LearningResourceIssued', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleFTE', 'OrganizationPersonRoleId', '11') +VALUES ('', 'LearningResourceIssued', 'LearningResourceIssuedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleFTE', 'RecordStatusId', '11') +VALUES ('', 'LearningResourceIssued', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'DataCollectionId', '11') +VALUES ('', 'LearningResourceIssued', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleId', '11') +VALUES ('', 'LearningResourceIssued', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleId_Parent', '11') +VALUES ('', 'LearningResourceMediaFeature', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleRelationshipId', '11') +VALUES ('', 'LearningResourceMediaFeature', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPersonRoleRelationship', 'RecordEndDateTime', '11') +VALUES ('', 'LearningResourceMediaFeature', 'LearningResourceMediaFeatureId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPersonRoleRelationship', 'RecordStartDateTime', '11') +VALUES ('', 'LearningResourceMediaFeature', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'DataCollectionId', '11') +VALUES ('', 'LearningResourceOrder', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'OrganizationId', '11') +VALUES ('', 'LearningResourceOrder', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'OrganizationPolicyId', '11') +VALUES ('', 'LearningResourceOrder', 'LearningResourceOrderId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'RecordStatusId', '11') +VALUES ('', 'LearningResourceOrder', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPolicy', 'Value', '11') +VALUES ('', 'LearningResourceOrder', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'AgeUnit', '11') +VALUES ('', 'LearningResourceOrder', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'DataCollectionId', '11') +VALUES ('', 'LearningResourcePeerRating', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'OrganizationId', '11') +VALUES ('', 'LearningResourcePeerRating', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'OrganizationPopulationServedId', '11') +VALUES ('', 'LearningResourcePeerRating', 'LearningResourcePeerRatingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationPopulationServed', 'RecordStatusId', '11') +VALUES ('', 'LearningResourcePeerRating', 'PeerRatingSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProgramType', 'DataCollectionId', '11') +VALUES ('', 'LearningResourcePeerRating', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProgramType', 'OrganizationId', '11') +VALUES ('', 'LearningResourcePeerRating', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProgramType', 'OrganizationProgramTypeId', '11') +VALUES ('', 'LearningResourcePhysicalMedia', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProgramType', 'RecordStatusId', '11') +VALUES ('', 'LearningResourcePhysicalMedia', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationProjectBasedLearning', 'OrganizationId', '11') +VALUES ('', 'LearningResourcePhysicalMedia', 'LearningResourcePhysicalMediaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'DataCollectionId', '11') +VALUES ('', 'LearningResourcePhysicalMedia', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'OrganizationId', '11') +VALUES ('', 'LearningResourceStatus', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'OrganizationRelationshipId', '11') +VALUES ('', 'LearningResourceStatus', 'LearningResourceStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'Parent_OrganizationId', '11') +VALUES ('', 'LearningResourceStatus', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationRelationship', 'RecordStatusId', '11') +VALUES ('', 'LearningResourceStatus', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationService', 'DataCollectionId', '11') +VALUES ('', 'LearningResourceStatus', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationService', 'OrganizationId', '11') +VALUES ('', 'Location', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationService', 'OrganizationServiceId', '11') +VALUES ('', 'Location', 'LocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationService', 'RecordStatusId', '11') +VALUES ('', 'Location', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTechnicalAssistance', 'DataCollectionId', '11') +VALUES ('', 'LocationAddress', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTechnicalAssistance', 'OrganizationId', '11') +VALUES ('', 'LocationAddress', 'LocationAddressId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTechnicalAssistance', 'OrganizationTechnicalAssistanceId', '11') +VALUES ('', 'LocationAddress', 'LocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTechnicalAssistance', 'RecordStatusId', '11') +VALUES ('', 'LocationAddress', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTelephone', 'DataCollectionId', '11') +VALUES ('', 'LocationAddress', 'RefCountryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTelephone', 'OrganizationId', '11') +VALUES ('', 'LocationAddress', 'RefCountyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTelephone', 'OrganizationTelephoneId', '11') +VALUES ('', 'LocationAddress', 'RefStateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationTelephone', 'RecordStatusId', '11') +VALUES ('', 'Organization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationWebsite', 'DataCollectionId', '11') +VALUES ('', 'Organization', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationWebsite', 'OrganizationId', '11') +VALUES ('', 'Organization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationWebsite', 'OrganizationWebsiteId', '11') +VALUES ('', 'OrganizationAccreditation', 'AccreditationStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'OrganizationWebsite', 'RecordStatusId', '11') +VALUES ('', 'OrganizationAccreditation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PDActivityEducationLevel', 'DataCollectionId', '11') +VALUES ('', 'OrganizationAccreditation', 'OrganizationAccreditationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PDActivityEducationLevel', 'PDActivityEducationLevelId', '11') +VALUES ('', 'OrganizationAccreditation', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PDActivityEducationLevel', 'ProfessionalDevelopmentActivityId', '11') +VALUES ('', 'OrganizationAccreditation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PDActivityEducationLevel', 'RecordStatusId', '11') +VALUES ('', 'OrganizationCalendar', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PeerRatingSystem', 'DataCollectionId', '11') +VALUES ('', 'OrganizationCalendar', 'OrganizationCalendarId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PeerRatingSystem', 'PeerRatingSystemId', '11') +VALUES ('', 'OrganizationCalendar', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PeerRatingSystem', 'RecordStatusId', '11') +VALUES ('', 'OrganizationCalendar', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person', 'DataCollectionId', '11') +VALUES ('', 'OrganizationCalendarCrisis', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person', 'PersonId', '11') +VALUES ('', 'OrganizationCalendarCrisis', 'OrganizationCalendarCrisisId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person', 'PersonMasterId', '11') +VALUES ('', 'OrganizationCalendarCrisis', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person', 'RecordStatusId', '11') +VALUES ('', 'OrganizationCalendarCrisis', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'AssessmentPersonalNeedsProfileId', '11') +VALUES ('', 'OrganizationCalendarDay', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'DataCollectionId', '11') +VALUES ('', 'OrganizationCalendarDay', 'DayName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'Person_AssessmentPersonalNeedsProfileId', '11') +VALUES ('', 'OrganizationCalendarDay', 'OrganizationCalendarDayId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'PersonId', '11') +VALUES ('', 'OrganizationCalendarDay', 'OrganizationCalendarId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'RecordStatusId', '11') +VALUES ('', 'OrganizationCalendarDay', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'DataCollectionId', '11') +VALUES ('', 'OrganizationCalendarEvent', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'PersonAddressId', '11') +VALUES ('', 'OrganizationCalendarEvent', 'OrganizationCalendarEventId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'PersonId', '11') +VALUES ('', 'OrganizationCalendarEvent', 'OrganizationCalendarId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'RecordStatusId', '11') +VALUES ('', 'OrganizationCalendarEvent', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddress', 'RefCountyId', '11') +VALUES ('', 'OrganizationCalendarSession', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddressNcesSide', 'DataCollectionId', '11') +VALUES ('', 'OrganizationCalendarSession', 'OrganizationCalendarId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddressNcesSide', 'PersonAddressId', '11') +VALUES ('', 'OrganizationCalendarSession', 'OrganizationCalendarSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddressNcesSide', 'PersonAddressNcesSideId', '11') +VALUES ('', 'OrganizationCalendarSession', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAddressNcesSide', 'RecordStatusId', '11') +VALUES ('', 'OrganizationCalendarSessionRelationship', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAllergy', 'DataCollectionId', '11') +VALUES ('', 'OrganizationCalendarSessionRelationship', 'OrganizationCalendarSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAllergy', 'PersonAllergyId', '11') +VALUES ('', 'OrganizationCalendarSessionRelationship', 'OrganizationCalendarSessionRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAllergy', 'PersonId', '11') +VALUES ('', 'OrganizationCalendarSessionRelationship', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonAllergy', 'RecordStatusId', '11') +VALUES ('', 'OrganizationCalendarSessionRelationship', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonBirthplace', 'DataCollectionId', '11') +VALUES ('', 'OrganizationCalendarSessionRelationship', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonBirthplace', 'PersonBirthplaceId', '11') +VALUES ('', 'OrganizationCalendarSessionRelationship', 'RelatedOrganizationCalendarSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonBirthplace', 'PersonId', '11') +VALUES ('', 'OrganizationDetail', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonBirthplace', 'RecordStatusId', '11') +VALUES ('', 'OrganizationDetail', 'OrganizationDetailId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCareerEducationPlan', 'DataCollectionId', '11') +VALUES ('', 'OrganizationDetail', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCareerEducationPlan', 'PersonCareerEducationPlanId', '11') +VALUES ('', 'OrganizationDetail', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCareerEducationPlan', 'PersonId', '11') +VALUES ('', 'OrganizationDetail', 'RefOrganizationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCareerEducationPlan', 'RecordStatusId', '11') +VALUES ('', 'OrganizationEmail', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCredential', 'DataCollectionId', '11') +VALUES ('', 'OrganizationEmail', 'OrganizationEmailId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCredential', 'PersonCredentialId', '11') +VALUES ('', 'OrganizationEmail', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCredential', 'PersonId', '11') +VALUES ('', 'OrganizationEmail', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonCredential', 'RecordStatusId', '11') +VALUES ('', 'OrganizationEmployeeBenefit', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDegreeOrCertificate', 'DataCollectionId', '11') +VALUES ('', 'OrganizationEmployeeBenefit', 'OrganizationEmployeeBenefitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDegreeOrCertificate', 'PersonDegreeOrCertificateId', '11') +VALUES ('', 'OrganizationEmployeeBenefit', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDegreeOrCertificate', 'PersonId', '11') +VALUES ('', 'OrganizationEmployeeBenefit', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDegreeOrCertificate', 'RecordStatusId', '11') +VALUES ('', 'OrganizationEnrollmentCapacity', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDemographicRace', 'DataCollectionId', '11') +VALUES ('', 'OrganizationEnrollmentCapacity', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDemographicRace', 'PersonDemographicRaceId', '11') +VALUES ('', 'OrganizationFederalAccountability', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDemographicRace', 'PersonId', '11') +VALUES ('', 'OrganizationFederalAccountability', 'OrganizationFederalAccountabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDemographicRace', 'RecordStatusId', '11') +VALUES ('', 'OrganizationFederalAccountability', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001943', 'PersonDemographicRace', 'RefRaceId', '11') +VALUES ('', 'OrganizationFederalAccountability', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDetail', 'DataCollectionId', '11') +VALUES ('', 'OrganizationFinancial', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDetail', 'PersonDetailId', '11') +VALUES ('', 'OrganizationFinancial', 'FinancialAccountId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDetail', 'PersonId', '11') +VALUES ('', 'OrganizationFinancial', 'FinancialAccountProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDetail', 'RecordStatusId', '11') +VALUES ('', 'OrganizationFinancial', 'OrganizationCalendarSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'DataCollectionId', '11') +VALUES ('', 'OrganizationFinancial', 'OrganizationFinancialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'PersonAddressId', '11') +VALUES ('', 'OrganizationFinancial', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'PersonDigitalAccessId', '11') +VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'PersonId', '11') +VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'FinancialAccountLocalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccess', 'RecordStatusId', '11') +VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'OrganizationFinancialFinancialAccountLocalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'DataCollectionId', '11') +VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'OrganizationFinancialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'PersonDigitalAccessId', '11') +VALUES ('', 'OrganizationFinancialFinancialAccountLocal', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'PersonDigitalAccessSpeedId', '11') +VALUES ('', 'OrganizationIdentifier', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'PersonLearningDeviceId', '11') +VALUES ('', 'OrganizationIdentifier', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDigitalAccessSpeed', 'RecordStatusId', '11') +VALUES ('', 'OrganizationIdentifier', 'OrganizationIdentifierId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDisability', 'DataCollectionId', '11') +VALUES ('', 'OrganizationIdentifier', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDisability', 'PersonDisabilityId', '11') +VALUES ('', 'OrganizationImage', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDisability', 'PersonId', '11') +VALUES ('', 'OrganizationImage', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonDisability', 'RecordStatusId', '11') +VALUES ('', 'OrganizationImage', 'OrganizationImageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonEmailAddress', 'DataCollectionId', '11') +VALUES ('', 'OrganizationImage', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonEmailAddress', 'PersonEmailAddressId', '11') +VALUES ('', 'OrganizationIndicator', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonEmailAddress', 'PersonId', '11') +VALUES ('', 'OrganizationIndicator', 'IndicatorValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonEmailAddress', 'RecordStatusId', '11') +VALUES ('', 'OrganizationIndicator', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonFamily', 'DataCollectionId', '11') +VALUES ('', 'OrganizationIndicator', 'OrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonFamily', 'PersonFamilyId', '11') +VALUES ('', 'OrganizationIndicator', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonFamily', 'PersonId', '11') +VALUES ('', 'OrganizationJob', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonFamily', 'RecordStatusId', '11') +VALUES ('', 'OrganizationJob', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealth', 'DataCollectionId', '11') +VALUES ('', 'OrganizationJob', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealth', 'PersonHealthId', '11') +VALUES ('', 'OrganizationJob', 'OrganizationJobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealth', 'PersonId', '11') +VALUES ('', 'OrganizationJob', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealth', 'RecordStatusId', '11') +VALUES ('', 'OrganizationJob', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealthBirth', 'DataCollectionId', '11') +VALUES ('', 'OrganizationJob', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealthBirth', 'PersonHealthBirthId', '11') +VALUES ('', 'OrganizationJurisdiction', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealthBirth', 'PersonId', '11') +VALUES ('', 'OrganizationJurisdiction', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHealthBirth', 'RecordStatusId', '11') +VALUES ('', 'OrganizationJurisdiction', 'OrganizationJurisdictionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHomelessness', 'DataCollectionId', '11') +VALUES ('', 'OrganizationJurisdiction', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHomelessness', 'PersonHomelessnessId', '11') +VALUES ('', 'OrganizationJurisdiction', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHomelessness', 'PersonId', '11') +VALUES ('', 'OrganizationJurisdiction', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonHomelessness', 'RecordStatusId', '11') +VALUES ('', 'OrganizationLocation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonIdentifier', 'DataCollectionId', '11') +VALUES ('', 'OrganizationLocation', 'LocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonIdentifier', 'PersonId', '11') +VALUES ('', 'OrganizationLocation', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonIdentifier', 'PersonIdentifierId', '11') +VALUES ('', 'OrganizationLocation', 'OrganizationLocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonIdentifier', 'RecordStatusId', '11') +VALUES ('', 'OrganizationLocation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonImmunization', 'DataCollectionId', '11') +VALUES ('', 'OrganizationOperationalStatus', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonImmunization', 'PersonId', '11') +VALUES ('', 'OrganizationOperationalStatus', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonImmunization', 'PersonImmunizationId', '11') +VALUES ('', 'OrganizationOperationalStatus', 'OrganizationOperationalStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonImmunization', 'RecordStatusId', '11') +VALUES ('', 'OrganizationOperationalStatus', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLanguage', 'DataCollectionId', '11') +VALUES ('', 'OrganizationPersonRole', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLanguage', 'PersonId', '11') +VALUES ('', 'OrganizationPersonRole', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLanguage', 'PersonLanguageId', '11') +VALUES ('', 'OrganizationPersonRole', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLanguage', 'RecordStatusId', '11') +VALUES ('', 'OrganizationPersonRole', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLearningDevice', 'DataCollectionId', '11') +VALUES ('', 'OrganizationPersonRole', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLearningDevice', 'OrganizationPersonRoleId', '11') +VALUES ('', 'OrganizationPersonRole', 'RoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLearningDevice', 'PersonLearningDeviceId', '11') +VALUES ('', 'OrganizationPersonRoleApplication', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonLearningDevice', 'RecordStatusId', '11') +VALUES ('', 'OrganizationPersonRoleApplication', 'OrganizationPersonRoleApplicationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMaster', 'DataCollectionId', '11') +VALUES ('', 'OrganizationPersonRoleApplication', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMaster', 'PersonMasterId', '11') +VALUES ('', 'OrganizationPersonRoleApplication', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMaster', 'RecordStatusId', '11') +VALUES ('', 'OrganizationPersonRoleFTE', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMilitary', 'DataCollectionId', '11') +VALUES ('', 'OrganizationPersonRoleFTE', 'OrganizationPersonRoleFTEId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMilitary', 'PersonId', '11') +VALUES ('', 'OrganizationPersonRoleFTE', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMilitary', 'PersonMilitaryId', '11') +VALUES ('', 'OrganizationPersonRoleFTE', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonMilitary', 'RecordStatusId', '11') +VALUES ('', 'OrganizationPersonRoleRelationship', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonOtherName', 'DataCollectionId', '11') +VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonOtherName', 'PersonId', '11') +VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleId_Parent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonOtherName', 'PersonOtherNameId', '11') +VALUES ('', 'OrganizationPersonRoleRelationship', 'OrganizationPersonRoleRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonOtherName', 'RecordStatusId', '11') +VALUES ('', 'OrganizationPersonRoleRelationship', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'DataCollectionId', '11') +VALUES ('', 'OrganizationPersonRoleRelationship', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonAddressId', '11') +VALUES ('', 'OrganizationPersonRoleRelationship', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonDetailId', '11') +VALUES ('', 'OrganizationPolicy', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonId', '11') +VALUES ('', 'OrganizationPolicy', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonPersonalInformationVerificationId', '11') +VALUES ('', 'OrganizationPolicy', 'OrganizationPolicyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'PersonTelephoneId', '11') +VALUES ('', 'OrganizationPolicy', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonPersonalInformationVerification', 'RecordStatusId', '11') +VALUES ('', 'OrganizationPolicy', 'Value', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonProgramParticipation', 'DataCollectionId', '11') +VALUES ('', 'OrganizationPopulationServed', 'AgeUnit', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonProgramParticipation', 'OrganizationPersonRoleId', '11') +VALUES ('', 'OrganizationPopulationServed', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonProgramParticipation', 'PersonProgramParticipationId', '11') +VALUES ('', 'OrganizationPopulationServed', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonProgramParticipation', 'RecordStatusId', '11') +VALUES ('', 'OrganizationPopulationServed', 'OrganizationPopulationServedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonReferral', 'DataCollectionId', '11') +VALUES ('', 'OrganizationPopulationServed', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonReferral', 'PersonId', '11') +VALUES ('', 'OrganizationProgramType', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonReferral', 'PersonReferralId', '11') +VALUES ('', 'OrganizationProgramType', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonReferral', 'RecordStatusId', '11') +VALUES ('', 'OrganizationProgramType', 'OrganizationProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'DataCollectionId', '11') +VALUES ('', 'OrganizationProgramType', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'PersonId', '11') +VALUES ('', 'OrganizationProjectBasedLearning', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'PersonRelationshipId', '11') +VALUES ('', 'OrganizationProjectBasedLearning', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'RecordStatusId', '11') +VALUES ('', 'OrganizationRelationship', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonRelationship', 'RelatedPersonId', '11') +VALUES ('', 'OrganizationRelationship', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'DataCollectionId', '11') +VALUES ('', 'OrganizationRelationship', 'OrganizationRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'PersonId', '11') +VALUES ('', 'OrganizationRelationship', 'Parent_OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'PersonStatusId', '11') +VALUES ('', 'OrganizationRelationship', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'RecordStatusId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteria', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonStatus', 'StatusValue', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteria', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonTelephone', 'DataCollectionId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteria', 'OrganizationSalaryScheduleCriteriaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonTelephone', 'PersonId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteria', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonTelephone', 'PersonTelephoneId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteria', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PersonTelephone', 'RecordStatusId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteria', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'CourseId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValue', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'DataCollectionId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValue', 'OrganizationSalaryScheduleCriteriaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValue', 'OrganizationSalaryScheduleCriteriaValueId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentRequirementId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValue', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentActivity', 'RecordStatusId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValue', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'CompetencySetId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValue', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'DataCollectionId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValueSalary', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'OrganizationPersonRoleId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValueSalary', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'ProfessionalDevelopmentRequirementId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValueSalary', 'OrganizationSalaryScheduleCriteriaValueId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentRequirement', 'RecordStatusId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValueSalary', 'OrganizationSalaryScheduleCriteriaValueSalaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSession', 'DataCollectionId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValueSalary', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSession', 'ProfessionalDevelopmentActivityId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValueSalary', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSession', 'ProfessionalDevelopmentSessionId', '11') +VALUES ('', 'OrganizationSalaryScheduleCriteriaValueSalary', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSession', 'RecordStatusId', '11') +VALUES ('', 'OrganizationSalaryScheduleSalary', 'RefONETSOCOccupationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'DataCollectionId', '11') +VALUES ('', 'OrganizationSalaryScheduleSalary', 'RefStandardOccupationalClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'OrganizationPersonRoleId', '11') +VALUES ('', 'OrganizationService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'ProfessionalDevelopmentSessionId', '11') +VALUES ('', 'OrganizationService', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'ProfessionalDevelopmentSessionInstructorId', '11') +VALUES ('', 'OrganizationService', 'OrganizationServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'RecordStatusId', '11') +VALUES ('', 'OrganizationService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Program', 'DataCollectionId', '11') +VALUES ('', 'OrganizationTechnicalAssistance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Program', 'OrganizationId', '11') +VALUES ('', 'OrganizationTechnicalAssistance', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Program', 'ProgramId', '11') +VALUES ('', 'OrganizationTechnicalAssistance', 'OrganizationTechnicalAssistanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Program', 'RecordStatusId', '11') +VALUES ('', 'OrganizationTechnicalAssistance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAE', 'DataCollectionId', '11') +VALUES ('', 'OrganizationTelephone', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAE', 'PersonProgramParticipationId', '11') +VALUES ('', 'OrganizationTelephone', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAE', 'ProgramParticipationAEId', '11') +VALUES ('', 'OrganizationTelephone', 'OrganizationTelephoneId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAE', 'RecordStatusId', '11') +VALUES ('', 'OrganizationTelephone', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAttainment', 'DataCollectionId', '11') +VALUES ('', 'OrganizationWebsite', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAttainment', 'PersonProgramParticipationId', '11') +VALUES ('', 'OrganizationWebsite', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAttainment', 'ProgramParticipationAttainmentId', '11') +VALUES ('', 'OrganizationWebsite', 'OrganizationWebsiteId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationAttainment', 'RecordStatusId', '11') +VALUES ('', 'OrganizationWebsite', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationCte', 'DataCollectionId', '11') +VALUES ('', 'PDActivityEducationLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationCte', 'PersonProgramParticipationId', '11') +VALUES ('', 'PDActivityEducationLevel', 'PDActivityEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationCte', 'ProgramParticipationCteId', '11') +VALUES ('', 'PDActivityEducationLevel', 'ProfessionalDevelopmentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationCte', 'RecordStatusId', '11') +VALUES ('', 'PDActivityEducationLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationFoodService', 'DataCollectionId', '11') +VALUES ('', 'PeerRatingSystem', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationFoodService', 'PersonProgramParticipationId', '11') +VALUES ('', 'PeerRatingSystem', 'PeerRatingSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationFoodService', 'ProgramParticipationFoodServiceId', '11') +VALUES ('', 'PeerRatingSystem', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationFoodService', 'RecordStatusId', '11') +VALUES ('', 'Person', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationMigrant', 'DataCollectionId', '11') +VALUES ('', 'Person', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationMigrant', 'PersonProgramParticipationId', '11') +VALUES ('', 'Person', 'PersonMasterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationMigrant', 'ProgramParticipationMigrantId', '11') +VALUES ('', 'Person', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationMigrant', 'RecordStatusId', '11') +VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'AssessmentPersonalNeedsProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationNeglected', 'DataCollectionId', '11') +VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationNeglected', 'PersonProgramParticipationId', '11') +VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'Person_AssessmentPersonalNeedsProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationNeglected', 'ProgramParticipationNeglectedId', '11') +VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationNeglected', 'RecordStatusId', '11') +VALUES ('', 'Person_AssessmentPersonalNeedsProfile', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationSpecialEducation', 'DataCollectionId', '11') +VALUES ('', 'PersonAddress', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationSpecialEducation', 'PersonProgramParticipationId', '11') +VALUES ('', 'PersonAddress', 'PersonAddressId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationSpecialEducation', 'ProgramParticipationSpecialEducationId', '11') +VALUES ('', 'PersonAddress', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationSpecialEducation', 'RecordStatusId', '11') +VALUES ('', 'PersonAddress', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTeacherPrep', 'DataCollectionId', '11') +VALUES ('', 'PersonAddress', 'RefCountyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTeacherPrep', 'PersonProgramParticipationId', '11') +VALUES ('', 'PersonAddressNcesSide', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTeacherPrep', 'ProgramParticipationTeacherPrepId', '11') +VALUES ('', 'PersonAddressNcesSide', 'PersonAddressId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTeacherPrep', 'RecordStatusId', '11') +VALUES ('', 'PersonAddressNcesSide', 'PersonAddressNcesSideId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleI', 'DataCollectionId', '11') +VALUES ('', 'PersonAddressNcesSide', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleI', 'PersonProgramParticipationId', '11') +VALUES ('', 'PersonAllergy', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleI', 'ProgramParticipationTitleIId', '11') +VALUES ('', 'PersonAllergy', 'PersonAllergyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleI', 'RecordStatusId', '11') +VALUES ('', 'PersonAllergy', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleIIILep', 'DataCollectionId', '11') +VALUES ('', 'PersonAllergy', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleIIILep', 'PersonProgramParticipationId', '11') +VALUES ('', 'PersonBirthplace', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleIIILep', 'ProgramParticipationTitleIiiLepId', '11') +VALUES ('', 'PersonBirthplace', 'PersonBirthplaceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationTitleIIILep', 'RecordStatusId', '11') +VALUES ('', 'PersonBirthplace', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOA', 'DataCollectionId', '11') +VALUES ('', 'PersonBirthplace', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOA', 'PersonProgramParticipationId', '11') +VALUES ('', 'PersonCareerEducationPlan', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOA', 'ProgramParticipationWIOAId', '11') +VALUES ('', 'PersonCareerEducationPlan', 'PersonCareerEducationPlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOA', 'RecordStatusId', '11') +VALUES ('', 'PersonCareerEducationPlan', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOABarriers', 'DataCollectionId', '11') +VALUES ('', 'PersonCareerEducationPlan', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOABarriers', 'ProgramParticipationWIOABarriersId', '11') +VALUES ('', 'PersonCredential', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOABarriers', 'ProgramParticipationWIOAId', '11') +VALUES ('', 'PersonCredential', 'PersonCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ProgramParticipationWIOABarriers', 'RecordStatusId', '11') +VALUES ('', 'PersonCredential', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsCourse', 'CourseId', '11') +VALUES ('', 'PersonCredential', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsCourse', 'DataCollectionId', '11') +VALUES ('', 'PersonDegreeOrCertificate', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsCourse', 'PsCourseId', '11') +VALUES ('', 'PersonDegreeOrCertificate', 'PersonDegreeOrCertificateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsCourse', 'RecordStatusId', '11') +VALUES ('', 'PersonDegreeOrCertificate', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsInstitution', 'DataCollectionId', '11') +VALUES ('', 'PersonDegreeOrCertificate', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsInstitution', 'OrganizationId', '11') +VALUES ('', 'PersonDemographicRace', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsInstitution', 'PsInstitutionId', '11') +VALUES ('', 'PersonDemographicRace', 'PersonDemographicRaceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsInstitution', 'RecordStatusId', '11') +VALUES ('', 'PersonDemographicRace', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsPriceOfAttendance', 'DataCollectionId', '11') +VALUES ('', 'PersonDemographicRace', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsPriceOfAttendance', 'PsInstitutionId', '11') +VALUES ('', 'PersonDetail', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsPriceOfAttendance', 'PSPriceOfAttendanceId', '11') +VALUES ('', 'PersonDetail', 'PersonDetailId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsPriceOfAttendance', 'RecordStatusId', '11') +VALUES ('', 'PersonDetail', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsProgram', 'DataCollectionId', '11') +VALUES ('', 'PersonDetail', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsProgram', 'OrganizationId', '11') +VALUES ('', 'PersonDigitalAccess', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsProgram', 'PsProgramId', '11') +VALUES ('', 'PersonDigitalAccess', 'PersonAddressId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsProgram', 'RecordStatusId', '11') +VALUES ('', 'PersonDigitalAccess', 'PersonDigitalAccessId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSection', 'CourseSectionId', '11') +VALUES ('', 'PersonDigitalAccess', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSection', 'DataCollectionId', '11') +VALUES ('', 'PersonDigitalAccess', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSection', 'PsSectionId', '11') +VALUES ('', 'PersonDigitalAccessSpeed', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSection', 'RecordStatusId', '11') +VALUES ('', 'PersonDigitalAccessSpeed', 'PersonDigitalAccessId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSectionLocation', 'DataCollectionId', '11') +VALUES ('', 'PersonDigitalAccessSpeed', 'PersonDigitalAccessSpeedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSectionLocation', 'PsSectionId', '11') +VALUES ('', 'PersonDigitalAccessSpeed', 'PersonLearningDeviceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSectionLocation', 'PsSectionLocationId', '11') +VALUES ('', 'PersonDigitalAccessSpeed', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsSectionLocation', 'RecordStatusId', '11') +VALUES ('', 'PersonDisability', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStaffEmployment', 'DataCollectionId', '11') +VALUES ('', 'PersonDisability', 'PersonDisabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStaffEmployment', 'PsStaffEmploymentId', '11') +VALUES ('', 'PersonDisability', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStaffEmployment', 'RecordStatusId', '11') +VALUES ('', 'PersonDisability', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStaffEmployment', 'StaffEmploymentId', '11') +VALUES ('', 'PersonEmailAddress', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicAward', 'DataCollectionId', '11') +VALUES ('', 'PersonEmailAddress', 'PersonEmailAddressId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicAward', 'OrganizationPersonRoleId', '11') +VALUES ('', 'PersonEmailAddress', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicAward', 'PsStudentAcademicAwardId', '11') +VALUES ('', 'PersonEmailAddress', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicAward', 'RecordStatusId', '11') +VALUES ('', 'PersonFamily', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicRecord', 'DataCollectionId', '11') +VALUES ('', 'PersonFamily', 'PersonFamilyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicRecord', 'OrganizationPersonRoleId', '11') +VALUES ('', 'PersonFamily', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicRecord', 'PsStudentAcademicRecordId', '11') +VALUES ('', 'PersonFamily', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAcademicRecord', 'RecordStatusId', '11') +VALUES ('', 'PersonHealth', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAdmissionTest', 'DataCollectionId', '11') +VALUES ('', 'PersonHealth', 'PersonHealthId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAdmissionTest', 'OrganizationPersonRoleId', '11') +VALUES ('', 'PersonHealth', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAdmissionTest', 'PsStudentAdmissionTestId', '11') +VALUES ('', 'PersonHealth', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentAdmissionTest', 'RecordStatusId', '11') +VALUES ('', 'PersonHealthBirth', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentApplication', 'DataCollectionId', '11') +VALUES ('', 'PersonHealthBirth', 'PersonHealthBirthId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentApplication', 'OrganizationPersonRoleId', '11') +VALUES ('', 'PersonHealthBirth', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentApplication', 'PsStudentApplicationId', '11') +VALUES ('', 'PersonHealthBirth', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentApplication', 'RecordStatusId', '11') +VALUES ('', 'PersonHomelessness', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCohort', 'DataCollectionId', '11') +VALUES ('', 'PersonHomelessness', 'PersonHomelessnessId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCohort', 'OrganizationPersonRoleId', '11') +VALUES ('', 'PersonHomelessness', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCohort', 'PsStudentCohortId', '11') +VALUES ('', 'PersonHomelessness', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCohort', 'RecordStatusId', '11') +VALUES ('', 'PersonIdentifier', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCourseSectionMark', 'DataCollectionId', '11') +VALUES ('', 'PersonIdentifier', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCourseSectionMark', 'PsStudentCourseSectionMarkId', '11') +VALUES ('', 'PersonIdentifier', 'PersonIdentifierId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCourseSectionMark', 'PsStudentSectionId', '11') +VALUES ('', 'PersonIdentifier', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentCourseSectionMark', 'RecordStatusId', '11') +VALUES ('', 'PersonImmunization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentDemographic', 'DataCollectionId', '11') +VALUES ('', 'PersonImmunization', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentDemographic', 'OrganizationPersonRoleId', '11') +VALUES ('', 'PersonImmunization', 'PersonImmunizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentDemographic', 'PsStudentDemographicId', '11') +VALUES ('', 'PersonImmunization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentDemographic', 'RecordStatusId', '11') +VALUES ('', 'PersonLanguage', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEmployment', 'DataCollectionId', '11') +VALUES ('', 'PersonLanguage', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEmployment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'PersonLanguage', 'PersonLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEmployment', 'PsStudentEmploymentId', '11') +VALUES ('', 'PersonLanguage', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEmployment', 'RecordStatusId', '11') +VALUES ('', 'PersonLearningDevice', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEnrollment', 'DataCollectionId', '11') +VALUES ('', 'PersonLearningDevice', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEnrollment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'PersonLearningDevice', 'PersonLearningDeviceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEnrollment', 'PSStudentEnrollmentId', '11') +VALUES ('', 'PersonLearningDevice', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentEnrollment', 'RecordStatusId', '11') +VALUES ('', 'PersonMaster', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentFinancialAid', 'DataCollectionId', '11') +VALUES ('', 'PersonMaster', 'PersonMasterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentFinancialAid', 'OrganizationPersonRoleId', '11') +VALUES ('', 'PersonMaster', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentFinancialAid', 'PsStudentFinancialAidId', '11') +VALUES ('', 'PersonMilitary', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentFinancialAid', 'RecordStatusId', '11') +VALUES ('', 'PersonMilitary', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'DataCollectionId', '11') +VALUES ('', 'PersonMilitary', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'OrganizationPersonRoleId', '11') +VALUES ('', 'PersonMilitary', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'PsProgramId', '11') +VALUES ('', 'PersonMilitaryCampaigns', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'PSStudentProgramId', '11') +VALUES ('', 'PersonMilitaryCampaigns', 'PersonMilitaryCampaignsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PSStudentProgram', 'RecordStatusId', '11') +VALUES ('', 'PersonMilitaryCampaigns', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentSection', 'DataCollectionId', '11') +VALUES ('', 'PersonMilitaryCampaigns', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentSection', 'OrganizationPersonRoleId', '11') +VALUES ('', 'PersonMilitaryCampaigns', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentSection', 'PsStudentSectionId', '11') +VALUES ('', 'PersonMilitaryCampaigns', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'PsStudentSection', 'RecordStatusId', '11') +VALUES ('', 'PersonMilitaryDeployment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'QuarterlyEmploymentRecord', 'DataCollectionId', '11') +VALUES ('', 'PersonMilitaryDeployment', 'PersonMilitaryDeploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'QuarterlyEmploymentRecord', 'PersonId', '11') +VALUES ('', 'PersonMilitaryDeployment', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'QuarterlyEmploymentRecord', 'QuarterlyEmploymentRecordId', '11') +VALUES ('', 'PersonMilitaryDeployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'QuarterlyEmploymentRecord', 'RecordStatusId', '11') +VALUES ('', 'PersonMilitaryDeployment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatus', 'RecordStatusCreatorOrganizationId', '11') +VALUES ('', 'PersonMilitaryDeployment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatus', 'RecordStatusCreatorPersonId', '11') +VALUES ('', 'PersonMilitaryDuties', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatus', 'RecordStatusId', '11') +VALUES ('', 'PersonMilitaryDuties', 'PersonMilitaryDutiesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordId', '11') +VALUES ('', 'PersonMilitaryDuties', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordPKColumn', '11') +VALUES ('', 'PersonMilitaryDuties', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordStatusCreatorOrganizationId', '11') +VALUES ('', 'PersonMilitaryDuties', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordStatusCreatorPersonId', '11') +VALUES ('', 'PersonMilitaryDuties', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordStatusHistoryId', '11') +VALUES ('', 'PersonMilitaryExpertise', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordStatusId', '11') +VALUES ('', 'PersonMilitaryExpertise', 'PersonMilitaryExpertiseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RecordStatusHistory', 'RecordTable', '11') +VALUES ('', 'PersonMilitaryExpertise', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAccommodation', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryExpertise', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAccommodationSubject', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryExpertise', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAmendment', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryExpertise', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAssessment', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryHonors', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramAssessmentAccommodation', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryHonors', 'PersonMilitaryHonorsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramEligibility', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryHonors', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramEligibilityEvaluation', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryHonors', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramGoal', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryHonors', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramMeeting', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryHonors', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramMeetingAttendee', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryOccupationalSpecialties', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramProgressGoal', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryOccupationalSpecialties', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramProgressReport', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryOccupationalSpecialties', 'PersonMilitaryOccupationalSpecialtiesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramProgressReportPlan', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryOccupationalSpecialties', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramService', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryOccupationalSpecialties', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IndividualizedProgramServicesReceived', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryOccupationalSpecialties', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12CharterSchoolAuthorizerAgency', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryServiceLocations', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12CharterSchoolManagementOrganization', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryServiceLocations', 'PersonMilitaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaGradeLevelsApproved', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryServiceLocations', 'PersonMilitaryServiceLocationsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaGradeOffered', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryServiceLocations', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaPreKEligibility', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryServiceLocations', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaPreKEligibleAgesIDEA', 'RecordEndDateTime', '11') +VALUES ('', 'PersonMilitaryServiceLocations', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordEndDateTime', '11') +VALUES ('', 'PersonOtherName', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12OrganizationStudentResponsibility', 'RecordEndDateTime', '11') +VALUES ('', 'PersonOtherName', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolCorrectiveAction', 'RecordEndDateTime', '11') +VALUES ('', 'PersonOtherName', 'PersonOtherNameId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolGradeLevelsApproved', 'RecordEndDateTime', '11') +VALUES ('', 'PersonOtherName', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolGradeOffered', 'RecordEndDateTime', '11') +VALUES ('', 'PersonPersonalInformationVerification', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolImprovement', 'RecordEndDateTime', '11') +VALUES ('', 'PersonPersonalInformationVerification', 'PersonAddressId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StaffAssignment', 'RecordEndDateTime', '11') +VALUES ('', 'PersonPersonalInformationVerification', 'PersonDetailId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentAcademicHonor', 'RecordEndDateTime', '11') +VALUES ('', 'PersonPersonalInformationVerification', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentCourseSectionMark', 'RecordEndDateTime', '11') +VALUES ('', 'PersonPersonalInformationVerification', 'PersonPersonalInformationVerificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentDiscipline', 'RecordEndDateTime', '11') +VALUES ('', 'PersonPersonalInformationVerification', 'PersonTelephoneId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentHomeLanguageSurvey', 'RecordEndDateTime', '11') +VALUES ('', 'PersonPersonalInformationVerification', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentSession', 'RecordEndDateTime', '11') +VALUES ('', 'PersonProgramParticipation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12TitleIIILanguageInstruction', 'RecordEndDateTime', '11') +VALUES ('', 'PersonProgramParticipation', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearnerAction', 'RecordEndDateTime', '11') +VALUES ('', 'PersonProgramParticipation', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearnerActivity', 'RecordEndDateTime', '11') +VALUES ('', 'PersonProgramParticipation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearnerActivity_LearningResource', 'RecordEndDateTime', '11') +VALUES ('', 'PersonReferral', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResource', 'RecordEndDateTime', '11') +VALUES ('', 'PersonReferral', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourceAdaptation', 'RecordEndDateTime', '11') +VALUES ('', 'PersonReferral', 'PersonReferralId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourceEducationLevel', 'RecordEndDateTime', '11') +VALUES ('', 'PersonReferral', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourceMediaFeature', 'RecordEndDateTime', '11') +VALUES ('', 'PersonRelationship', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourcePeerRating', 'RecordEndDateTime', '11') +VALUES ('', 'PersonRelationship', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LearningResourcePhysicalMedia', 'RecordEndDateTime', '11') +VALUES ('', 'PersonRelationship', 'PersonRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Location', 'RecordEndDateTime', '11') +VALUES ('', 'PersonRelationship', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Organization', 'RecordEndDateTime', '11') +VALUES ('', 'PersonRelationship', 'RelatedPersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationAccreditation', 'RecordEndDateTime', '11') +VALUES ('', 'PersonStatus', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendar', 'RecordEndDateTime', '11') +VALUES ('', 'PersonStatus', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendarCrisis', 'RecordEndDateTime', '11') +VALUES ('', 'PersonStatus', 'PersonStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendarDay', 'RecordEndDateTime', '11') +VALUES ('', 'PersonStatus', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendarEvent', 'RecordEndDateTime', '11') +VALUES ('', 'PersonStatus', 'StatusValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationCalendarSession', 'RecordEndDateTime', '11') +VALUES ('', 'PersonTelephone', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationEmail', 'RecordEndDateTime', '11') +VALUES ('', 'PersonTelephone', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationEmployeeBenefit', 'RecordEndDateTime', '11') +VALUES ('', 'PersonTelephone', 'PersonTelephoneId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationFederalAccountability', 'RecordEndDateTime', '11') +VALUES ('', 'PersonTelephone', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationFinancial', 'RecordEndDateTime', '11') +VALUES ('', 'PersonTransportationEligibility', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationIndicator', 'RecordEndDateTime', '11') +VALUES ('', 'PersonTransportationEligibility', 'PersonTransportationEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationLocation', 'RecordEndDateTime', '11') +VALUES ('', 'PersonTransportationEligibility', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPersonRole', 'RecordEndDateTime', '11') +VALUES ('', 'PersonTransportationEligibility', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPersonRoleApplication', 'RecordEndDateTime', '11') +VALUES ('', 'PersonTransportationEligibility', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPersonRoleFTE', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentActivity', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPolicy', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentActivity', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationPopulationServed', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationService', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentRequirementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationTechnicalAssistance', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentActivity', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationTelephone', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentRequirement', 'CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PDActivityEducationLevel', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentRequirement', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PeerRatingSystem', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentRequirement', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Person', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentRequirement', 'ProfessionalDevelopmentRequirementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Person_AssessmentPersonalNeedsProfile', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentRequirement', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonAddress', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentSession', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonAddressNcesSide', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentSession', 'ProfessionalDevelopmentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonAllergy', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentSession', 'ProfessionalDevelopmentSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonCareerEducationPlan', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentSession', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonCredential', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDegreeOrCertificate', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDigitalAccess', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'ProfessionalDevelopmentSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDigitalAccessSpeed', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'ProfessionalDevelopmentSessionInstructorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonEmailAddress', 'RecordEndDateTime', '11') +VALUES ('', 'ProfessionalDevelopmentSessionInstructor', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonFamily', 'RecordEndDateTime', '11') +VALUES ('', 'Program', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonHealth', 'RecordEndDateTime', '11') +VALUES ('', 'Program', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonIdentifier', 'RecordEndDateTime', '11') +VALUES ('', 'Program', 'ProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonImmunization', 'RecordEndDateTime', '11') +VALUES ('', 'Program', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonLanguage', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationAE', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonLearningDevice', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationAE', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonMaster', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationAE', 'ProgramParticipationAEId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonOtherName', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationAE', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonPersonalInformationVerification', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationAttainment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonReferral', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationAttainment', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonRelationship', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationAttainment', 'ProgramParticipationAttainmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonStatus', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationAttainment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonTelephone', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationCte', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProfessionalDevelopmentActivity', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationCte', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProfessionalDevelopmentRequirement', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationCte', 'ProgramParticipationCteId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProfessionalDevelopmentSession', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationCte', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProfessionalDevelopmentSessionInstructor', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationFoodService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationAttainment', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationFoodService', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationWIOA', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationFoodService', 'ProgramParticipationFoodServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationWIOABarriers', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationFoodService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsPriceOfAttendance', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationMigrant', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsProgram', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationMigrant', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentAcademicAward', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationMigrant', 'ProgramParticipationMigrantId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentAcademicRecord', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationMigrant', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentAdmissionTest', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationNeglected', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentEnrollment', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationNeglected', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PSStudentProgram', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationNeglected', 'ProgramParticipationNeglectedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'QuarterlyEmploymentRecord', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationNeglected', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RequiredImmunization', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationSpecialEducation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Role', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationSpecialEducation', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RoleAttendance', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationSpecialEducation', 'ProgramParticipationSpecialEducationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RoleAttendanceEvent', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationSpecialEducation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RoleStatus', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationTeacherPrep', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Rubric', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationTeacherPrep', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RubricCriterion', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationTeacherPrep', 'ProgramParticipationTeacherPrepId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'RubricCriterionLevel', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationTeacherPrep', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServiceFrequency', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationTitleI', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServicePlan', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationTitleI', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServiceProvided', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationTitleI', 'ProgramParticipationTitleIId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServiceProvider', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationTitleI', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServicesReceived', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationTitleIIILep', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ServiceStaff', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationTitleIIILep', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffCompensation', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationTitleIIILep', 'ProgramParticipationTitleIiiLepId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffCredential', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationTitleIIILep', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffEmployment', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationWIOA', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffEvaluation', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationWIOA', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffEvaluationPart', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationWIOA', 'ProgramParticipationWIOAId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffExperience', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationWIOA', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffProfessionalDevelopmentActivity', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationWIOABarriers', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'StaffTechnicalAssistance', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationWIOABarriers', 'ProgramParticipationWIOABarriersId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'TeacherEducationCredentialExam', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationWIOABarriers', 'ProgramParticipationWIOAId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'TeacherStudentDataLinkExclusion', 'RecordEndDateTime', '11') +VALUES ('', 'ProgramParticipationWIOABarriers', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'WorkforceProgramParticipantCohort', 'RecordEndDateTime', '11') +VALUES ('', 'PsCourse', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001919', 'OrganizationCalendarEvent', 'StartTime', '11') +VALUES ('', 'PsCourse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001919', 'RoleAttendanceEvent', 'StartTime', '11') +VALUES ('', 'PsCourse', 'PsCourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001920', 'OrganizationCalendarEvent', 'EndTime', '11') +VALUES ('', 'PsCourse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001920', 'RoleAttendanceEvent', 'EndTime', '11') +VALUES ('', 'PsInstitution', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001921', 'OrganizationPersonRoleFTE', 'FullTimeEquivalency', '11') +VALUES ('', 'PsInstitution', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001922', 'PersonProgramParticipation', 'RefProgramEntryReasonId', '11') +VALUES ('', 'PsInstitution', 'PsInstitutionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001923', 'OrganizationFederalAccountability', 'RefComprehensiveSupportAndImprovementStatusId', '11') +VALUES ('', 'PsInstitution', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001924', 'OrganizationFederalAccountability', 'RefTargetedSupportAndImprovementStatusId', '11') +VALUES ('', 'PsPriceOfAttendance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001925', 'OrganizationFederalAccountability', 'RefAdditionalTargetedSupportAndImprovementStatusId', '11') +VALUES ('', 'PsPriceOfAttendance', 'PsInstitutionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001926', 'K12LeaGradeLevelsApproved', 'RefGradeLevelId', '11') +VALUES ('', 'PsPriceOfAttendance', 'PSPriceOfAttendanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001926', 'K12SchoolGradeLevelsApproved', 'RefGradeLevelId', '11') +VALUES ('', 'PsPriceOfAttendance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001927', 'OrganizationTelephone', 'RefTelephoneNumberListedStatusId', '11') +VALUES ('', 'PsProgram', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001927', 'PersonTelephone', 'RefTelephoneNumberListedStatusId', '11') +VALUES ('', 'PsProgram', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'LocationAddress', 'DoNotPublishIndicator', '11') +VALUES ('', 'PsProgram', 'PsProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'OrganizationEmail', 'DoNotPublishIndicator', '11') +VALUES ('', 'PsProgram', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'OrganizationTelephone', 'DoNotPublishIndicator', '11') +VALUES ('', 'PsSection', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'PersonAddress', 'DoNotPublishIndicator', '11') +VALUES ('', 'PsSection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'PersonEmailAddress', 'DoNotPublishIndicator', '11') +VALUES ('', 'PsSection', 'PsSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001928', 'PersonTelephone', 'DoNotPublishIndicator', '11') +VALUES ('', 'PsSection', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001930', 'ProgramParticipationAE', 'OutOfWorkforceIndicator', '11') +VALUES ('', 'PsSectionLocation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001930', 'ProgramParticipationCte', 'OutOfWorkforceIndicator', '11') +VALUES ('', 'PsSectionLocation', 'PsSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001931', 'PersonLearningDevice', 'RefPrimaryLearningDeviceAwayFromSchoolId', '11') +VALUES ('', 'PsSectionLocation', 'PsSectionLocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001932', 'PersonLearningDevice', 'RefPrimaryLearningDeviceAccessId', '11') +VALUES ('', 'PsSectionLocation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001933', 'PersonLearningDevice', 'RefPrimaryLearningDeviceProviderId', '11') +VALUES ('', 'PsStaffEmployment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001934', 'PersonDigitalAccess', 'InternetAccessInResidence', '11') +VALUES ('', 'PsStaffEmployment', 'PsStaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001935', 'PersonDigitalAccess', 'RefBarrierToInternetAccessInResidenceId', '11') +VALUES ('', 'PsStaffEmployment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001936', 'PersonDigitalAccess', 'RefInternetAccessTypeInResidenceId', '11') +VALUES ('', 'PsStaffEmployment', 'StaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001937', 'PersonDigitalAccess', 'RefInternetPerformanceInResidenceId', '11') +VALUES ('', 'PsStudentAcademicAward', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001938', 'WorkforceProgramParticipantCohort', 'CohortMedianEarnings', '11') +VALUES ('', 'PsStudentAcademicAward', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001939', 'ProgramParticipationAE', 'RefAdultEducationProgramExitReasonId', '11') +VALUES ('', 'PsStudentAcademicAward', 'PsStudentAcademicAwardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001940', 'ProgramParticipationWIOABarriers', 'RefWIOABarrierstoEmploymentId', '11') +VALUES ('', 'PsStudentAcademicAward', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001941', 'ProgramParticipationWIOA', 'WIOACareerServices', '11') +VALUES ('', 'PsStudentAcademicRecord', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001942', 'ProgramParticipationWIOA', 'WIOATrainingServices', '11') +VALUES ('', 'PsStudentAcademicRecord', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001944', 'PersonDemographicRace', 'FederalRaceAndEthnicityDeclined', '11') +VALUES ('', 'PsStudentAcademicRecord', 'PsStudentAcademicRecordId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001945', 'PersonPersonalInformationVerification', 'RefPersonalInformationTypeId', '11') +VALUES ('', 'PsStudentAcademicRecord', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001946', 'Role', 'RefRoleId', '11') +VALUES ('', 'PsStudentAdmissionTest', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001947', 'PsStudentDemographic', 'FirstGenerationCollegeStudent', '11') +VALUES ('', 'PsStudentAdmissionTest', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001948', 'PersonAddressNcesSide', 'NcesSideEstimate', '11') +VALUES ('', 'PsStudentAdmissionTest', 'PsStudentAdmissionTestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001949', 'PersonAddressNcesSide', 'NcesSideStandardError', '11') +VALUES ('', 'PsStudentAdmissionTest', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001950', 'PersonAddressNcesSide', 'NcesSideDateProcessed', '11') +VALUES ('', 'PsStudentApplication', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001951', 'PersonAddressNcesSide', 'NcesSideVintageBeginYear', '11') +VALUES ('', 'PsStudentApplication', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001952', 'PersonAddressNcesSide', 'NcesSideVintageEndYear', '11') +VALUES ('', 'PsStudentApplication', 'PsStudentApplicationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001953', 'CredentialDefinition', 'CredentialDefinitionTerminalDegreeIndicator', '11') +VALUES ('', 'PsStudentApplication', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001954', 'ProgramParticipationAttainment', 'AECredentialAttainmentPSEnrollmentIndicator', '11') +VALUES ('', 'PsStudentCohort', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001955', 'ProgramParticipationAttainment', 'AECredentialAttainmentEmployedIndicator', '11') +VALUES ('', 'PsStudentCohort', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001956', 'ProgramParticipationAttainment', 'AECredentialAttainmentPSCredentialIndicator', '11') +VALUES ('', 'PsStudentCohort', 'PsStudentCohortId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001957', 'RoleAttendance', 'NumberOfDaysTardy', '11') +VALUES ('', 'PsStudentCohort', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001958', 'StaffCompensation', 'RefStaffCompensationSourceTypeId', '11') +VALUES ('', 'PsStudentCourseSectionMark', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001959', 'StaffCompensation', 'StaffCompensationAnnualSupplement', '11') +VALUES ('', 'PsStudentCourseSectionMark', 'PsStudentCourseSectionMarkId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001960', 'StaffCompensation', 'StaffCompensationLongevity', '11') +VALUES ('', 'PsStudentCourseSectionMark', 'PsStudentSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001961', 'K12StaffAssignment', 'RefEDFactsTeacherInexperiencedStatusId', '11') +VALUES ('', 'PsStudentCourseSectionMark', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001962', 'K12StaffAssignment', 'RefOutOfFieldStatusId', '11') +VALUES ('', 'PsStudentDemographic', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001963', 'K12OrganizationStudentResponsibility', 'RefStudentSchoolAffiliationStateDefinedStatusId', '11') +VALUES ('', 'PsStudentDemographic', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001964', 'DataCollection', 'SourceSystemDataCollectionIdentifier', '11') +VALUES ('', 'PsStudentDemographic', 'PsStudentDemographicId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001965', 'DataCollection', 'SourceSystemName', '11') +VALUES ('', 'PsStudentDemographic', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001966', 'DataCollection', 'DataCollectionName', '11') +VALUES ('', 'PsStudentEmployment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001967', 'DataCollection', 'DataCollectionDescription', '11') +VALUES ('', 'PsStudentEmployment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001968', 'DataCollection', 'DataCollectionOpenDate', '11') +VALUES ('', 'PsStudentEmployment', 'PsStudentEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001969', 'DataCollection', 'DataCollectionCloseDate', '11') +VALUES ('', 'PsStudentEmployment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001970', 'DataCollection', 'DataCollectionAcademicSchoolYear', '11') +VALUES ('', 'PsStudentEnrollment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001971', 'DataCollection', 'DataCollectionSchoolYear', '11') +VALUES ('', 'PsStudentEnrollment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001972', 'RecordStatus', 'RefRecordStatusTypeId', '11') +VALUES ('', 'PsStudentEnrollment', 'PSStudentEnrollmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001972', 'RecordStatusHistory', 'RefRecordStatusTypeId', '11') +VALUES ('', 'PsStudentEnrollment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001973', 'RecordStatus', 'RecordStatusDate', '11') +VALUES ('', 'PsStudentFinancialAid', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001973', 'RecordStatusHistory', 'RecordStatusDate', '11') +VALUES ('', 'PsStudentFinancialAid', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001974', 'RecordStatus', 'RefRecordStatusCreatorEntityId', '11') +VALUES ('', 'PsStudentFinancialAid', 'PsStudentFinancialAidId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001974', 'RecordStatusHistory', 'RefRecordStatusCreatorEntityId', '11') +VALUES ('', 'PsStudentFinancialAid', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001975', 'PersonDigitalAccessSpeed', 'InternetUploadSpeed', '11') +VALUES ('', 'PSStudentProgram', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001976', 'PersonDigitalAccessSpeed', 'InternetDownloadSpeed', '11') +VALUES ('', 'PSStudentProgram', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001977', 'PersonDigitalAccessSpeed', 'InternetSpeedTestDateTime', '11') +VALUES ('', 'PSStudentProgram', 'PsProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001978', 'ProgramParticipationAttainment', 'RefEdFactsAcademicOrCareerAndTechnicalOutcomeTypeId', '11') +VALUES ('', 'PSStudentProgram', 'PSStudentProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001979', 'ProgramParticipationAttainment', 'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitTypeId', '11') +VALUES ('', 'PSStudentProgram', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001981', 'PsStudentDemographic', 'EmancipatedMinor', '11') +VALUES ('', 'PsStudentSection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001982', 'PersonFamily', 'NumberOfHouseholdCollegeStudents', '11') +VALUES ('', 'PsStudentSection', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001983', 'PsStudentDemographic', 'RefNumberOfDependentsTypeId', '11') +VALUES ('', 'PsStudentSection', 'PsStudentSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001984', 'PsStudentDemographic', 'ChildrenOfFallenHeroesIndicator', '11') +VALUES ('', 'PsStudentSection', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001985', 'StaffEvaluationPart', 'PartName', '11') +VALUES ('', 'QuarterlyEmploymentRecord', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001986', 'StaffEvaluationPart', 'ScoreOrRating', '11') +VALUES ('', 'QuarterlyEmploymentRecord', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001987', 'StaffEvaluationPart', 'Scale', '11') +VALUES ('', 'QuarterlyEmploymentRecord', 'QuarterlyEmploymentRecordId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001988', 'K12StudentHomeLanguageSurvey', 'HomeLanguageSurveyAdministrationIndicator', '11') +VALUES ('', 'QuarterlyEmploymentRecord', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001989', 'K12StudentHomeLanguageSurvey', 'HomeLanguageSurveyAdministrationDate', '11') +VALUES ('', 'RecordStatus', 'RecordStatusCreatorOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001990', 'DataCollection', 'RefDataCollectionStatusId', '11') +VALUES ('', 'RecordStatus', 'RecordStatusCreatorPersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001991', 'OrganizationProjectBasedLearning', 'ProjectBasedLearningIndicator', '11') +VALUES ('', 'RecordStatus', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001992', 'OrganizationProjectBasedLearning', 'OrganizationProjectBasedLearningId', '11') +VALUES ('', 'RecordStatusHistory', 'RecordId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001992', 'OrganizationProjectBasedLearning', 'RefProjectBasedLearningTypeId', '11') +VALUES ('', 'RecordStatusHistory', 'RecordPKColumn', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001994', 'Course', 'CourseLevelApprovalIndicator', '11') +VALUES ('', 'RecordStatusHistory', 'RecordStatusCreatorOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001995', 'Assessment', 'RefAssessmentTypeAdministeredToEnglishLearnersId', '11') +VALUES ('', 'RecordStatusHistory', 'RecordStatusCreatorPersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001996', 'K12StaffAssignment', 'RefSpecialEducationTeacherQualificationStatusId', '11') +VALUES ('', 'RecordStatusHistory', 'RecordStatusHistoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001997', 'K12StaffAssignment', 'RefEdFactsCertificationStatusId', '11') +VALUES ('', 'RecordStatusHistory', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001998', 'OrganizationPopulationServed', 'RefStudentSupportServiceAvailabilityTypeId', '11') +VALUES ('', 'RecordStatusHistory', 'RecordTable', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001999', 'OrganizationEnrollmentCapacity', 'AdjustedCapacity', '11') +VALUES ('001917', 'FacilityFinance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002000', 'OrganizationEnrollmentCapacity', 'RefAdjustedCapacityReasonTypeId', '11') +VALUES ('001917', 'FacilityFinancial', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002001', 'OrganizationEnrollmentCapacity', 'EarlyLearningAge2AndOlderCapacity', '11') +VALUES ('001917', 'FacilityHazard', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002002', 'OrganizationEnrollmentCapacity', 'EarlyLearningAgeUnder2Capacity', '11') +VALUES ('001917', 'FacilityJointUse', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002003', 'FinancialAccountLocal', 'RefFinancialAccountLocalRevenueCodeId', '11') +VALUES ('001917', 'FacilityLease', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002004', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalFunctionCodeId', '11') +VALUES ('001917', 'FacilityLocation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002005', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalObjectCodeId', '11') +VALUES ('001917', 'FacilityManagement', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002006', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalLevelOfInstructionCodeId', '11') +VALUES ('001917', 'FacilityManagementPlan', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002007', 'FinancialAccountLocal', 'RefFinancialAccountLocalBalanceSheetCodeId', '11') +VALUES ('001917', 'FacilityMandate', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002008', 'FinancialAccountLocal', 'RefFinancialAccountLocalFundClassificationId', '11') +VALUES ('001917', 'FacilityMortgage', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002009', 'FinancialAccountLocal', 'RefFinancialAccountLocalProgramCodeId', '11') +VALUES ('001917', 'FacilityMortgageFee', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002010', 'FinancialAccount', 'RefFederalProgramSubgrantCodeId', '11') +VALUES ('001917', 'FacilityRelationship', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002012', 'FacilityUtilization', 'EnrollmentCapacity', '11') +VALUES ('001917', 'FacilitySchoolDesign', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002012', 'OrganizationEnrollmentCapacity', 'EnrollmentCapacity', '11') +VALUES ('001917', 'FacilitySite', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002012', 'OrganizationEnrollmentCapacity', 'OrganizationCalendarSessionId', '11') +VALUES ('001917', 'FacilityUtilization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002012', 'OrganizationEnrollmentCapacity', 'OrganizationEnrollmentCapacityId', '11') +VALUES ('001917', 'FinancialAccount', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('002013', 'OrganizationProgramType', 'PrimaryProgramIndicator', '11') +VALUES ('001917', 'FinancialAccountProgram', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000055', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'FinancialAidApplication', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000067', 'OrganizationDetail', 'Name', '11') +VALUES ('001917', 'FinancialAidAward', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000096', 'RoleStatus', 'RefRoleStatusId', '11') +VALUES ('001917', 'Goal', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000097', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001917', 'GoalMeasurement', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000107', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001917', 'GoalMeasurementCriterion', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000111', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'GoalPerformance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000122', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001917', 'IDEAEligibilityEvaluationCategory', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000148', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'IEPAuthorization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000251', 'OrganizationCalendarSession', 'BeginDate', '11') +VALUES ('001917', 'IEPAuthorizationRejected', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000056', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'IEPPresentLevel', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000533', 'OrganizationOperationalStatus', 'RefOperationalStatusId', '11') +VALUES ('001917', 'Incident', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000595', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') +VALUES ('001917', 'IncidentPerson', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000845', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001917', 'IndividualizedProgram', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000847', 'OrganizationPolicy', 'PolicyType', '11') +VALUES ('001917', 'IndividualizedProgramAccommodation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000974', 'RoleStatus', 'StatusStartDate', '11') +VALUES ('001917', 'IndividualizedProgramAccommodationSubject', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000975', 'RoleStatus', 'StatusEndDate', '11') +VALUES ('001917', 'IndividualizedProgramAmendment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001059', 'PersonCredential', 'ExpirationDate', '11') +VALUES ('001917', 'IndividualizedProgramAssessment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001071', 'PersonIdentifier', 'Identifier', '11') +VALUES ('001917', 'IndividualizedProgramAssessmentAccommodation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001072', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') +VALUES ('001917', 'IndividualizedProgramEligibility', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001075', 'PersonIdentifier', 'RefPersonIdentificationSystemId', '11') +VALUES ('001917', 'IndividualizedProgramEligibilityEvaluation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001103', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'IndividualizedProgramGoal', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001104', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'IndividualizedProgramMeeting', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001377', 'IncidentPerson', 'Identifier', '11') +VALUES ('001917', 'IndividualizedProgramMeetingAttendee', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001378', 'IncidentPerson', 'RefIncidentPersonTypeId', '11') +VALUES ('001917', 'IndividualizedProgramProgressGoal', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000068', 'OrganizationDetail', 'Name', '11') +VALUES ('001917', 'IndividualizedProgramProgressReport', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000147', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001917', 'IndividualizedProgramProgressReportPlan', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000775', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'IndividualizedProgramService', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001118', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'IndividualizedProgramServicesReceived', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001119', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'IPEDSFinance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000777', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'K12CharterSchoolAuthorizerAgency', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001120', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'K12CharterSchoolManagementOrganization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001121', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'K12Course', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000778', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'K12FederalFundAllocation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001121', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'K12Lea', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001222', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'K12LeaFederalFunds', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000807', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'K12LeaFederalReporting', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001222', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'K12LeaGradeLevelsApproved', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000814', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'K12LeaGradeOffered', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000815', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'K12LeaPreKEligibility', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001929', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'K12LeaPreKEligibleAgesIDEA', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000637', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') +VALUES ('001917', 'K12LeaSafeDrugFree', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000848', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001917', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000849', 'OrganizationPolicy', 'PolicyType', '11') +VALUES ('001917', 'K12LeaTitleISupportService', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001068', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'K12OrganizationStudentResponsibility', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001073', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') +VALUES ('001917', 'K12ProgramOrService', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001104', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'K12School', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001105', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'K12SchoolCorrectiveAction', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000111', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'K12SchoolGradeLevelsApproved', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000180', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'K12SchoolGradeOffered', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000185', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001917', 'K12SchoolImprovement', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000191', 'OrganizationDetail', 'Name', '11') +VALUES ('001917', 'K12SchoolIndicatorStatus', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000346', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001917', 'K12SchoolStatus', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000411', 'PersonIdentifier', 'Identifier', '11') +VALUES ('001917', 'K12Sea', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000527', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001917', 'K12SeaAlternateFundUse', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000638', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') +VALUES ('001917', 'K12SeaFederalFunds', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000767', 'RoleStatus', 'RefRoleStatusId', '11') +VALUES ('001917', 'K12StaffAssignment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000781', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') +VALUES ('001917', 'K12StaffEmployment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000850', 'OrganizationPolicy', 'PolicyType', '11') +VALUES ('001917', 'K12StudentAcademicHonor', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000853', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001917', 'K12StudentAcademicRecord', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001069', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'K12StudentActivity', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001105', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'K12StudentCohort', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001106', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'K12StudentCourseSection', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000166', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'K12StudentCourseSectionMark', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000189', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'K12StudentDiscipline', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000193', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001917', 'K12StudentEmployment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000204', 'OrganizationDetail', 'Name', '11') +VALUES ('001917', 'K12StudentEnrollment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000526', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001917', 'K12StudentGraduationPlan', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000591', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001917', 'K12StudentHomeLanguageSurvey', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000827', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') +VALUES ('001917', 'K12StudentLiteracyAssessment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000854', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001917', 'K12StudentSession', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000859', 'OrganizationPolicy', 'PolicyType', '11') +VALUES ('001917', 'K12TitleIIILanguageInstruction', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001072', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'LearnerAction', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001080', 'PersonIdentifier', 'Identifier', '11') +VALUES ('001917', 'LearnerActivity', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001106', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'LearnerActivity_LearningResource', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001107', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'LearningResource', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000175', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'LearningResourceAdaptation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000235', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'LearningResourceEducationLevel', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000249', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001917', 'LearningResourceMediaFeature', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000590', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001917', 'LearningResourcePeerRating', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000626', 'OrganizationDetail', 'Name', '11') +VALUES ('001917', 'LearningResourcePhysicalMedia', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000646', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001917', 'Location', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000855', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001917', 'LocationAddress', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000983', 'OrganizationPolicy', 'PolicyType', '11') +VALUES ('001917', 'Organization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001073', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'OrganizationAccreditation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001107', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'OrganizationCalendar', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001108', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'OrganizationCalendarCrisis', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001444', 'PersonIdentifier', 'Identifier', '11') +VALUES ('001917', 'OrganizationCalendarDay', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000166', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'OrganizationCalendarEvent', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000236', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'OrganizationCalendarSession', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000290', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001917', 'OrganizationDetail', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000364', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'OrganizationEmail', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000645', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001917', 'OrganizationEmployeeBenefit', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000794', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001917', 'OrganizationEnrollmentCapacity', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000808', 'OrganizationDetail', 'Name', '11') +VALUES ('001917', 'OrganizationFederalAccountability', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000856', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001917', 'OrganizationFinancial', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001108', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'OrganizationFinancialFinancialAccountLocal', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001109', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'OrganizationIdentifier', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000175', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'OrganizationImage', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000237', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'OrganizationIndicator', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000550', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001917', 'OrganizationLocation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000625', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'OrganizationOperationalStatus', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000793', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001917', 'OrganizationPersonRole', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000795', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001917', 'OrganizationPersonRoleApplication', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000821', 'OrganizationDetail', 'Name', '11') +VALUES ('001917', 'OrganizationPersonRoleFTE', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000858', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001917', 'OrganizationPolicy', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001109', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'OrganizationPopulationServed', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001110', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'OrganizationProgramType', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000203', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'OrganizationProjectBasedLearning', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000286', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'OrganizationRelationship', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000551', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001917', 'OrganizationService', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000863', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001917', 'OrganizationTechnicalAssistance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000898', 'OrganizationDetail', 'Name', '11') +VALUES ('001917', 'OrganizationTelephone', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000974', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001917', 'OrganizationWebsite', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000999', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001917', 'PDActivityEducationLevel', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001076', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'PeerRatingSystem', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001110', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'Person', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001111', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'Person_AssessmentPersonalNeedsProfile', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000287', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'PersonAddress', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000565', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001917', 'PersonAddressNcesSide', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000625', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'PersonAllergy', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000820', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'PersonBirthplace', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000966', 'OrganizationDetail', 'Name', '11') +VALUES ('001917', 'PersonCareerEducationPlan', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000998', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001917', 'PersonCredential', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001111', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'PersonDegreeOrCertificate', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001112', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'PersonDemographicRace', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000288', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'PersonDetail', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000714', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001917', 'PersonDigitalAccess', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000781', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'PersonDigitalAccessSpeed', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000826', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'PersonDisability', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001112', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'PersonEmailAddress', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001114', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'PersonFamily', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001243', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001917', 'PersonHealth', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000291', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'PersonHealthBirth', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000827', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'PersonHomelessness', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000978', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'PersonIdentifier', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001114', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'PersonImmunization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001115', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'PersonLanguage', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001291', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001917', 'PersonLearningDevice', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000569', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'PersonMaster', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000978', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'PersonMilitary', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001115', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'PersonOtherName', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001116', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'PersonPersonalInformationVerification', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001315', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'PersonProgramParticipation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000580', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'PersonReferral', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001116', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'PersonRelationship', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001117', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'PersonStatus', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001280', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'PersonTelephone', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001466', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001917', 'ProfessionalDevelopmentActivity', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000581', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'ProfessionalDevelopmentRequirement', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001117', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'ProfessionalDevelopmentSession', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001118', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'ProfessionalDevelopmentSessionInstructor', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001315', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001917', 'Program', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000776', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001917', 'ProgramParticipationAE', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001119', 'ApipInteraction', 'Xml', '11') +VALUES ('001917', 'ProgramParticipationAttainment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001120', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('001917', 'ProgramParticipationCte', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RequiredImmunization', 'DataCollectionId', '11') +VALUES ('001917', 'ProgramParticipationFoodService', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RequiredImmunization', 'OrganizationId', '11') +VALUES ('001917', 'ProgramParticipationMigrant', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RequiredImmunization', 'RecordStatusId', '11') +VALUES ('001917', 'ProgramParticipationNeglected', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RequiredImmunization', 'RequiredImmunizationId', '11') +VALUES ('001917', 'ProgramParticipationSpecialEducation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'DataCollectionId', '11') +VALUES ('001917', 'ProgramParticipationTeacherPrep', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'Name', '11') +VALUES ('001917', 'ProgramParticipationTitleI', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'RecordStatusId', '11') +VALUES ('001917', 'ProgramParticipationTitleIIILep', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'RefJurisdictionId', '11') +VALUES ('001917', 'ProgramParticipationWIOA', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Role', 'RoleId', '11') +VALUES ('001917', 'ProgramParticipationWIOABarriers', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendance', 'DataCollectionId', '11') +VALUES ('001917', 'PsCourse', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendance', 'OrganizationPersonRoleId', '11') +VALUES ('001917', 'PsInstitution', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendance', 'RecordStatusId', '11') +VALUES ('001917', 'PsPriceOfAttendance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendance', 'RoleAttendanceId', '11') +VALUES ('001917', 'PsProgram', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendanceEvent', 'DataCollectionId', '11') +VALUES ('001917', 'PsSection', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendanceEvent', 'OrganizationPersonRoleId', '11') +VALUES ('001917', 'PsSectionLocation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendanceEvent', 'RecordStatusId', '11') +VALUES ('001917', 'PsStaffEmployment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleAttendanceEvent', 'RoleAttendanceEventId', '11') +VALUES ('001917', 'PsStudentAcademicAward', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleStatus', 'DataCollectionId', '11') +VALUES ('001917', 'PsStudentAcademicRecord', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleStatus', 'OrganizationPersonRoleId', '11') +VALUES ('001917', 'PsStudentAdmissionTest', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleStatus', 'RecordStatusId', '11') +VALUES ('001917', 'PsStudentApplication', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RoleStatus', 'RoleStatusId', '11') +VALUES ('001917', 'PsStudentCohort', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Rubric', 'DataCollectionId', '11') +VALUES ('001917', 'PsStudentCourseSectionMark', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Rubric', 'RecordStatusId', '11') +VALUES ('001917', 'PsStudentDemographic', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Rubric', 'RubricId', '11') +VALUES ('001917', 'PsStudentEmployment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterion', 'DataCollectionId', '11') +VALUES ('001917', 'PsStudentEnrollment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterion', 'RecordStatusId', '11') +VALUES ('001917', 'PsStudentFinancialAid', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterion', 'RubricCriterionId', '11') +VALUES ('001917', 'PSStudentProgram', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterion', 'RubricId', '11') +VALUES ('001917', 'PsStudentSection', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000490', 'K12ProgramOrService', 'RefPrekindergartenDailyLengthId', '11') +VALUES ('001917', 'QuarterlyEmploymentRecord', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000491', 'K12ProgramOrService', 'RefKindergartenDailyLengthId', '11') +VALUES ('000041', 'PsStudentApplication', 'HighSchoolStudentClassRank', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000494', 'OrganizationCalendar', 'CalendarCode', '11') +VALUES ('000042', 'K12StudentAcademicRecord', 'ClassRankingDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000495', 'OrganizationCalendar', 'CalendarDescription', '11') +VALUES ('000043', 'CredentialDefinition', 'RefCipCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000496', 'OrganizationCalendarSession', 'DaysInSession', '11') +VALUES ('000043', 'PsCourse', 'RefCipCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000497', 'OrganizationCalendarSession', 'FirstInstructionDate', '11') +VALUES ('000043', 'PsProgram', 'RefCipCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000498', 'OrganizationCalendarSession', 'LastInstructionDate', '11') +VALUES ('000043', 'PsSection', 'RefCipCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000499', 'Course', 'InstructionalMinutes', '11') +VALUES ('000044', 'PSStudentProgram', 'RefCipUseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000500', 'OrganizationCalendarSession', 'MinutesPerDay', '11') +VALUES ('000045', 'PsProgram', 'RefCipVersionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000501', 'Incident', 'IncidentIdentifier', '11') +VALUES ('000046', 'K12StudentCohort', 'CohortYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000502', 'Incident', 'IncidentDate', '11') +VALUES ('000047', 'ELStaffEmployment', 'ContractDaysOfServicePerYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000503', 'Incident', 'IncidentTime', '11') +VALUES ('000047', 'K12StaffEmployment', 'ContractDaysOfServicePerYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000504', 'Facility', 'Identifier', '11') +VALUES ('000048', 'ELOrganization', 'RefControlOfInstitutionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000505', 'Incident', 'IncidentCost', '11') +VALUES ('000048', 'PsInstitution', 'RefControlOfInstitutionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000506', 'Incident', 'RefIncidentReporterTypeId', '11') +VALUES ('000049', 'K12SchoolCorrectiveAction', 'RefCorrectiveActionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000507', 'Incident', 'IncidentReporterId', '11') +VALUES ('000050', 'PersonAddress', 'RefCountryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000508', 'Incident', 'IncidentDescription', '11') +VALUES ('000051', 'PersonBirthplace', 'RefCountryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000509', 'Incident', 'RefIncidentBehaviorId', '11') +VALUES ('000053', 'PsStudentSection', 'AcademicGrade', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000510', 'Incident', 'RefIncidentInjuryTypeId', '11') +VALUES ('000054', 'CourseSection', 'OrganizationCalendarSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000511', 'K12StudentDiscipline', 'DurationOfDisciplinaryAction', '11') +VALUES ('000054', 'OrganizationCalendarSession', 'BeginDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000512', 'K12StudentDiscipline', 'RelatedToZeroTolerancePolicy', '11') +VALUES ('000055', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000513', 'K12StudentDiscipline', 'FullYearExpulsion', '11') +VALUES ('000056', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000514', 'K12StudentDiscipline', 'ShortenedExpulsion', '11') +VALUES ('000057', 'Course', 'RefCourseCreditUnitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000515', 'Incident', 'RefIncidentTimeDescriptionCodeId', '11') +VALUES ('000057', 'ProfessionalDevelopmentActivity', 'RefCourseCreditUnitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000517', 'Course', 'Description', '11') +VALUES ('000057', 'StaffProfessionalDevelopmentActivity', 'RefCourseCreditUnitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000518', 'CteCourse', 'CoreAcademicCourse', '11') +VALUES ('000058', 'Course', 'CreditValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000518', 'K12Course', 'CoreAcademicCourse', '11') +VALUES ('000059', 'OrganizationCalendarSession', 'EndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000519', 'CourseSectionSchedule', 'ClassBeginningTime', '11') +VALUES ('000060', 'CteCourse', 'RefCourseGPAApplicabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000520', 'CourseSectionSchedule', 'ClassEndingTime', '11') +VALUES ('000060', 'K12Course', 'RefCourseGPAApplicabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000521', 'CourseSectionSchedule', 'ClassMeetingDays', '11') +VALUES ('000060', 'K12StudentCourseSection', 'RefCourseGPAApplicabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000522', 'CourseSectionSchedule', 'ClassPeriod', '11') +VALUES ('000060', 'PsSection', 'RefCourseGPAApplicabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000523', 'CourseSectionSchedule', 'TimeDayIdentifier', '11') +VALUES ('000061', 'Course', 'RefCourseLevelCharacteristicsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000524', 'CourseSectionLocation', 'RefInstructionLocationTypeId', '11') +VALUES ('000063', 'PsStudentSection', 'CourseOverrideSchool', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000525', 'K12StaffAssignment', 'PrimaryAssignment', '11') +VALUES ('000064', 'PsStudentSection', 'QualityPointsEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000528', 'ELStaffAssignment', 'ItinerantTeacher', '11') +VALUES ('000065', 'K12StudentCourseSection', 'RefCourseRepeatCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000528', 'K12StaffAssignment', 'ItinerantTeacher', '11') +VALUES ('000065', 'PsStudentSection', 'RefCourseRepeatCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000529', 'K12StudentEnrollment', 'FirstEntryDateIntoUSSchool', '11') +VALUES ('000066', 'Course', 'SubjectAbbreviation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000530', 'K12StudentEnrollment', 'RefPromotionReasonId', '11') +VALUES ('000069', 'PersonCredential', 'ExpirationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000531', 'K12StudentEnrollment', 'RefNonPromotionReasonId', '11') +VALUES ('000070', 'PersonCredential', 'IssuanceDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000532', 'ELEnrollment', 'RefPublicSchoolResidenceId', '11') +VALUES ('000071', 'PersonCredential', 'RefCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000532', 'K12StudentEnrollment', 'RefPublicSchoolResidenceId', '11') +VALUES ('000072', 'CteCourse', 'RefCreditTypeEarnedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000535', 'ProgramParticipationSpecialEducation', 'RefIDEAEducationalEnvironmentSchoolAgeId', '11') +VALUES ('000072', 'K12StudentCourseSection', 'RefCreditTypeEarnedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000536', 'ProgramParticipationTitleIIILep', 'RefTitleIIIAccountabilityId', '11') +VALUES ('000073', 'CteStudentAcademicRecord', 'CreditsAttemptedCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000537', 'ELOrganization', 'RefLeaTypeId', '11') +VALUES ('000073', 'K12StudentAcademicRecord', 'CreditsAttemptedCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000537', 'K12Lea', 'RefLeaTypeId', '11') +VALUES ('000073', 'PsStudentAcademicRecord', 'CreditsAttemptedCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000538', 'K12StudentDiscipline', 'RefDisciplineMethodOfCwdId', '11') +VALUES ('000074', 'CteStudentAcademicRecord', 'CreditsEarnedCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000539', 'K12StudentDiscipline', 'RefIdeaInterimRemovalReasonId', '11') +VALUES ('000074', 'K12StudentAcademicRecord', 'CreditsEarnedCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000540', 'AssessmentRegistration', 'RefAssessmentReasonNotCompletingId', '11') +VALUES ('000074', 'PsStudentAcademicRecord', 'CreditsEarnedCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000541', 'K12StudentDiscipline', 'RefIdeaInterimRemovalId', '11') +VALUES ('000075', 'OrganizationFederalAccountability', 'RefCteGraduationRateInclusionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000542', 'K12SchoolStatus', 'ConsolidatedMepFundsStatus', '11') +VALUES ('000076', 'RoleAttendanceEvent', 'RefAttendanceStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000543', 'ELStaffEmployment', 'MepPersonnelIndicator', '11') +VALUES ('000077', 'PsStudentSection', 'DegreeApplicability', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000543', 'K12StaffEmployment', 'MepPersonnelIndicator', '11') +VALUES ('000078', 'PsStudentEnrollment', 'DegreeOrCertificateSeekingStudent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000545', 'K12StudentDiscipline', 'RefDisciplineReasonId', '11') +VALUES ('000079', 'PsStudentDemographic', 'RefDependencyStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000546', 'StaffCredential', 'TechnologySkillsStandardsMet', '11') +VALUES ('000080', 'K12LeaFederalReporting', 'DesegregationOrderOrPlan', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000547', 'FinancialAccount', 'RefFederalProgramCodeId', '11') +VALUES ('000081', 'AeStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000552', 'ELStaffEmployment', 'TitleITargetedAssistanceStaffFunded', '11') +VALUES ('000081', 'CteStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000552', 'K12StaffEmployment', 'TitleITargetedAssistanceStaffFunded', '11') +VALUES ('000081', 'K12StudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000553', 'OrganizationFederalAccountability', 'RefProficiencyTargetStatusRLAId', '11') +VALUES ('000081', 'PsStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000555', 'K12StudentDiscipline', 'RefDisciplineMethodFirearmsId', '11') +VALUES ('000081', 'StaffCredential', 'DiplomaOrCredentialAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000556', 'K12StudentDiscipline', 'RefIDEADisciplineMethodFirearmId', '11') +VALUES ('000081', 'WorkforceProgramParticipation', 'DiplomaOrCredentialAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000557', 'Incident', 'RefFirearmTypeId', '11') +VALUES ('000081', 'PersonDegreeOrCertificate', 'AwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000558', 'ELStaffAssignment', 'RefSpecialEducationStaffCategoryId', '11') +VALUES ('000082', 'K12StudentDiscipline', 'DisciplinaryActionEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000558', 'K12StaffAssignment', 'RefSpecialEducationStaffCategoryId', '11') +VALUES ('000083', 'K12StudentDiscipline', 'DisciplinaryActionStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000558', 'ServiceStaff', 'RefSpecialEducationStaffCategoryId', '11') +VALUES ('000084', 'ProgramParticipationAE', 'DisplacedHomemakerIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000559', 'ELEnrollment', 'RefIDEAEnvironmentELId', '11') +VALUES ('000084', 'ProgramParticipationCte', 'DisplacedHomemakerIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000559', 'ProgramParticipationSpecialEducation', 'RefIDEAEducationalEnvironmentECId', '11') +VALUES ('000085', 'PsStudentAcademicRecord', 'DualCreditDualEnrollmentCredits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000561', 'K12StudentAcademicRecord', 'RefProgressLevelId', '11') +VALUES ('000086', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000561', 'K12StudentCourseSection', 'RefProgressLevelId', '11') +VALUES ('000087', 'ELStaffAssignment', 'RefK12StaffClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000562', 'ProgramParticipationMigrant', 'PrioritizedForServices', '11') +VALUES ('000087', 'K12StaffAssignment', 'RefK12StaffClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000563', 'ProgramParticipationMigrant', 'ContinuationOfServicesStatus', '11') +VALUES ('000087', 'K12StaffEmployment', 'RefK12StaffClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000564', 'ELStaffAssignment', 'RefSpecialEducationAgeGroupTaughtId', '11') +VALUES ('000088', 'OrganizationEmail', 'ElectronicMailAddress', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000564', 'K12StaffAssignment', 'RefSpecialEducationAgeGroupTaughtId', '11') +VALUES ('000088', 'PersonEmailAddress', 'EmailAddress', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000566', 'K12StudentAcademicRecord', 'RefTechnologyLiteracyStatusId', '11') +VALUES ('000089', 'OrganizationEmail', 'RefEmailTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000567', 'K12LeaFederalFunds', 'SesFundsSpent', '11') +VALUES ('000089', 'PersonEmailAddress', 'RefEmailTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000568', 'K12LeaFederalFunds', 'PublicSchoolChoiceFundsSpent', '11') +VALUES ('000091', 'OrganizationFederalAccountability', 'RefElementaryMiddleAdditionalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000571', 'K12StudentAcademicRecord', 'RefPreAndPostTestIndicatorId', '11') +VALUES ('000092', 'K12StudentEnrollment', 'RefFoodServiceEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000571', 'K12StudentCourseSection', 'RefPreAndPostTestIndicatorId', '11') +VALUES ('000093', 'K12StudentEnrollment', 'RefEndOfTermStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000572', 'AssessmentResult', 'RefAssessmentPretestOutcomeId', '11') +VALUES ('000094', 'K12StudentEnrollment', 'RefEnrollmentStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000573', 'AssessmentItemResponse', 'RefProficiencyStatusId', '11') +VALUES ('000094', 'RoleStatus', 'RefRoleStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000574', 'K12LeaFederalFunds', 'SesSchoolChoice20PercentObligation', '11') +VALUES ('000095', 'PsStudentEnrollment', 'RefPsEnrollmentTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000576', 'AssessmentResult', 'IncludedInAypCalculation', '11') +VALUES ('000096', 'PsStudentEnrollment', 'RefPsEnrollmentStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000577', 'PersonDisability', 'DisabilityStatus', '11') +VALUES ('000098', 'PsStudentEnrollment', 'EntryDateIntoPostsecondary', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000578', 'K12StudentDiscipline', 'EducationalServicesAfterRemoval', '11') +VALUES ('000099', 'K12StudentEnrollment', 'RefEntryType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000580', 'ProgramParticipationCte', 'SingleParentOrSinglePregnantWoman', '11') +VALUES ('000100', 'K12StudentEnrollment', 'RefEntryGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000584', 'K12StudentCohort', 'CohortGraduationYear', '11') +VALUES ('000101', 'CourseSection', 'TimeRequiredForCompletion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000584', 'PsStudentCohort', 'CohortGraduationYear', '11') +VALUES ('000102', 'StaffEvaluation', 'Outcome', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000585', 'ELOrganization', 'RefStatePovertyDesignationId', '11') +VALUES ('000103', 'StaffEvaluation', 'Scale', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000585', 'K12School', 'RefStatePovertyDesignationId', '11') +VALUES ('000104', 'StaffEvaluation', 'ScoreOrRating', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000586', 'K12StudentAcademicRecord', 'RefPsEnrollmentActionId', '11') +VALUES ('000105', 'StaffEvaluation', 'System', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000587', 'ELOrganization', 'RefInternetAccessId', '11') +VALUES ('000106', 'PsStudentDemographic', 'RefCohortExclusionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000587', 'K12SchoolStatus', 'RefInternetAccessId', '11') +VALUES ('000108', 'ELEnrollment', 'RefExitOrWithdrawalStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000588', 'ProgramParticipationCte', 'RefNonTraditionalGenderStatusId', '11') +VALUES ('000108', 'K12StudentCourseSection', 'RefExitOrWithdrawalStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000589', 'StaffEvaluation', 'RefStaffPerformanceLevelId', '11') +VALUES ('000108', 'K12StudentEnrollment', 'RefExitOrWithdrawalStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000592', 'ProgramParticipationCte', 'CteParticipant', '11') +VALUES ('000110', 'K12StudentEnrollment', 'RefExitOrWithdrawalTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000593', 'ProgramParticipationCte', 'CteNonTraditionalCompletion', '11') +VALUES ('000112', 'FinancialAidAward', 'FinancialAidAwardAmount', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000594', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') +VALUES ('000113', 'FinancialAidAward', 'RefFinancialAidAwardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000595', 'ELOrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '11') +VALUES ('000115', 'PersonDetail', 'FirstName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000596', 'CourseSection', 'RefAdditionalCreditTypeId', '11') +VALUES ('000117', 'PsStudentEnrollment', 'FirstTimePostsecondaryStudent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000596', 'CteCourse', 'RefAdditionalCreditTypeId', '11') +VALUES ('000118', 'ELStaffAssignment', 'FullTimeEquivalency', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000596', 'K12Course', 'RefAdditionalCreditTypeId', '11') +VALUES ('000118', 'K12StaffAssignment', 'FullTimeEquivalency', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000596', 'K12StudentCourseSection', 'RefAdditionalCreditTypeId', '11') +VALUES ('000118', 'StaffEmployment', 'FullTimeEquivalency', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000597', 'AssessmentParticipantSession', 'LocationId', '11') +VALUES ('000120', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000597', 'AssessmentSession', 'Location', '11') +VALUES ('000121', 'PersonDetail', 'GenerationCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000598', 'OrganizationCalendarDay', 'AlternateDayName', '11') +VALUES ('000122', 'PersonProgramParticipation', 'ParticipationStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000599', 'RoleAttendanceEvent', 'RefAbsentAttendanceCategoryId', '11') +VALUES ('000123', 'K12StudentAcademicRecord', 'RefGpaWeightedIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000600', 'RoleAttendanceEvent', 'RefPresentAttendanceCategoryId', '11') +VALUES ('000123', 'PsStudentApplication', 'RefGpaWeightedIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000601', 'RoleAttendanceEvent', 'RefAttendanceEventTypeId', '11') +VALUES ('000124', 'K12StudentCourseSection', 'GradeEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000602', 'Facility', 'BuildingSiteNumber', '11') +VALUES ('000124', 'K12StudentCourseSectionMark', 'GradeEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000602', 'LocationAddress', 'BuildingSiteNumber', '11') +VALUES ('000125', 'K12StudentCourseSection', 'RefGradeLevelWhenCourseTakenId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000603', 'OrganizationCalendarEvent', 'RefCalendarEventType', '11') +VALUES ('000125', 'K12StudentGraduationPlan', 'RefGradeLevelWhenCourseTakenId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000605', 'AssessmentSubtest', 'RefContentStandardTypeId', '11') +VALUES ('000126', 'AssessmentRegistration', 'RefGradeLevelToBeAssessedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000606', 'LocationAddress', 'Latitude', '11') +VALUES ('000126', 'AssessmentRegistration', 'RefGradeLevelWhenAssessedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000606', 'PersonAddress', 'Latitude', '11') +VALUES ('000127', 'PsStudentAcademicRecord', 'GradePointAverage', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000607', 'LocationAddress', 'Longitude', '11') +VALUES ('000128', 'K12StudentAcademicRecord', 'GradePointAverageCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000607', 'PersonAddress', 'Longitude', '11') +VALUES ('000128', 'PsStudentAcademicRecord', 'GradePointAverageCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000609', 'K12StudentDiscipline', 'RefDisciplineLengthDifferenceReasonId', '11') +VALUES ('000288', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000610', 'K12StudentEnrollment', 'DisplacedStudentStatus', '11') +VALUES ('000714', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000610', 'PsStudentEnrollment', 'DisplacedStudentStatus', '11') +VALUES ('000781', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000611', 'OrganizationCalendarCrisis', 'Code', '11') +VALUES ('000826', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000612', 'OrganizationCalendarCrisis', 'Name', '11') +VALUES ('000128', 'PsStudentApplication', 'GradePointAverageCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000613', 'OrganizationCalendarCrisis', 'Type', '11') +VALUES ('000129', 'K12StudentSession', 'GradePointAverageGivenSession', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000614', 'OrganizationCalendarCrisis', 'StartDate', '11') +VALUES ('000130', 'K12StudentAcademicRecord', 'GradePointsEarnedCumulative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000616', 'K12StudentCourseSection', 'GradeValueQualifier', '11') +VALUES ('000131', 'K12LeaGradeOffered', 'RefGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000616', 'K12StudentCourseSectionMark', 'GradeValueQualifier', '11') +VALUES ('000131', 'K12SchoolGradeOffered', 'RefGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000617', 'Incident', 'RefIncidentLocationId', '11') +VALUES ('000132', 'K12StudentCohort', 'GraduationRateSurveyCohortYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000618', 'PersonAddress', 'RefPersonalInformationVerificationId', '11') +VALUES ('000133', 'K12StudentCohort', 'GraduationRateSurveyIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000618', 'PersonIdentifier', 'RefPersonalInformationVerificationId', '11') +VALUES ('000134', 'OrganizationFederalAccountability', 'RefGunFreeSchoolsActReportingStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000618', 'PersonPersonalInformationVerification', 'RefPersonalInformationVerificationId', '11') +VALUES ('000135', 'K12LeaFederalReporting', 'HarassmentOrBullyingPolicy', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000620', 'StaffEmployment', 'RefEmploymentSeparationReasonId', '11') +VALUES ('000136', 'StaffCompensation', 'StaffCompensationHealthBenefits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000621', 'StaffEmployment', 'RefEmploymentSeparationTypeId', '11') +VALUES ('000137', 'CteCourse', 'HighSchoolCourseRequirement', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000622', 'ELStaffAssignment', 'RefClassroomPositionTypeId', '11') +VALUES ('000137', 'K12Course', 'HighSchoolCourseRequirement', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000622', 'K12StaffAssignment', 'RefClassroomPositionTypeId', '11') +VALUES ('000138', 'AeStudentAcademicRecord', 'RefHighSchoolDiplomaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000624', 'RoleAttendanceEvent', 'RefLeaveEventTypeId', '11') +VALUES ('000138', 'K12StudentAcademicRecord', 'RefHighSchoolDiplomaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000627', 'Incident', 'RefIncidentBehaviorSecondaryId', '11') +VALUES ('000140', 'OrganizationFederalAccountability', 'RefHighSchoolGraduationRateIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000630', 'AssessmentItem', 'Identifier', '11') +VALUES ('000141', 'PersonDetail', 'RefHighestEducationLevelCompletedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000632', 'Facility', 'BuildingName', '11') +VALUES ('000141', 'PersonFamily', 'RefHighestEducationLevelCompletedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000633', 'ELClassSectionService', 'YoungestAgeServed', '11') +VALUES ('000142', 'K12StaffAssignment', 'HighlyQualifiedTeacherIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000633', 'OrganizationPopulationServed', 'YoungestAgeServed', '11') +VALUES ('000143', 'StaffEmployment', 'HireDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000634', 'PersonOtherName', 'RefOtherNameTypeId', '11') +VALUES ('000144', 'PersonDetail', 'HispanicLatinoEthnicity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000635', 'ProgramParticipationNeglected', 'AchievementIndicator', '11') +VALUES ('000146', 'PersonHomelessness', 'RefHomelessNighttimeResidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000636', 'ProgramParticipationNeglected', 'OutcomeIndicator', '11') +VALUES ('000149', 'PersonHomelessness', 'HomelessnessStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000647', 'K12StaffAssignment', 'TeacherOfRecord', '11') +VALUES ('000150', 'K12StudentAcademicHonor', 'HonorDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000648', 'ELStaffAssignment', 'RefTeachingAssignmentRoleId', '11') +VALUES ('000164', 'K12School', 'RefIncreasedLearningTimeTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000648', 'K12StaffAssignment', 'RefTeachingAssignmentRoleId', '11') +VALUES ('000164', 'PsInstitution', 'RefIncreasedLearningTimeTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000649', 'ELStaffAssignment', 'ContributionPercentage', '11') +VALUES ('000165', 'PsStudentEnrollment', 'InitialEnrollmentTerm', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000649', 'K12StaffAssignment', 'ContributionPercentage', '11') +VALUES ('000167', 'OrganizationTelephone', 'RefInstitutionTelephoneTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000650', 'K12StudentCourseSection', 'RefCourseSectionEntryTypeId', '11') +VALUES ('000168', 'PsStudentEnrollment', 'InstructionalActivityHoursAttempted', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000651', 'K12StudentCourseSection', 'ExitWithdrawalDate', '11') +VALUES ('000169', 'PsStudentEnrollment', 'RefInstructionalActivityHoursId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000652', 'K12StudentCourseSection', 'RefCourseSectionExitTypeId', '11') +VALUES ('000170', 'K12LeaFederalReporting', 'RefIntegratedTechnologyStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000653', 'K12LeaFederalReporting', 'InterscholasticSportsMaleOnly', '11') +VALUES ('000171', 'ProgramParticipationMigrant', 'LastQualifyingMoveDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000654', 'K12LeaFederalReporting', 'InterscholasticSportsFemaleOnly', '11') +VALUES ('000172', 'PersonDetail', 'LastName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000655', 'K12LeaFederalReporting', 'InterscholasticTeamsMaleOnly', '11') +VALUES ('000173', 'K12Lea', 'RefLeaImprovementStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000656', 'K12LeaFederalReporting', 'InterscholasticTeamsFemaleOnly', '11') +VALUES ('000174', 'OrganizationOperationalStatus', 'RefOperationalStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000657', 'K12LeaFederalReporting', 'InterscholasticSportParticipantsMale', '11') +VALUES ('000175', 'K12Lea', 'SupervisoryUnionIdentificationNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000658', 'K12LeaFederalReporting', 'InterscholasticSportParticipantsFemale', '11') +VALUES ('000178', 'AeProvider', 'RefLevelOfInstitutionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000689', 'CompetencyDefinition', 'Identifier', '11') +VALUES ('000178', 'PsInstitution', 'RefLevelOfInstitutionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000690', 'CompetencyDefinition', 'Statement', '11') +VALUES ('000181', 'K12SchoolStatus', 'RefMagnetSpecialProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000691', 'CompetencyDefinition', 'Type', '11') +VALUES ('000182', 'K12StudentCourseSectionMark', 'MarkingPeriodName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000692', 'CompetencyDefinition', 'Code', '11') +VALUES ('000183', 'K12StudentCourseSectionMark', 'MidTermMark', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000693', 'CompetencyFramework', 'URI', '11') +VALUES ('000184', 'PersonDetail', 'MiddleName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000694', 'CompetencyFramework', 'Title', '11') +VALUES ('000186', 'ProgramParticipationMigrant', 'RefMepServiceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000695', 'CompetencyFramework', 'Version', '11') +VALUES ('000187', 'K12ProgramOrService', 'RefMepSessionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000696', 'CompetencyFramework', 'Creator', '11') +VALUES ('000188', 'K12StaffAssignment', 'RefMepStaffCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000697', 'CompetencyFramework', 'Description', '11') +VALUES ('000190', 'LocationAddress', 'CountyName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000698', 'CompetencyFramework', 'RefCompetencyFrameworkPublicationStatusId', '11') +VALUES ('000190', 'PersonAddress', 'AddressCountyName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000699', 'CompetencyFramework', 'Jurisdiction', '11') +VALUES ('000191', 'PersonDegreeOrCertificate', 'NameOfInstitution', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000700', 'CompetencyFramework', 'ValidStartDate', '11') +VALUES ('000194', 'ProgramParticipationNeglected', 'RefNeglectedOrDelinquentProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000701', 'CompetencyFramework', 'ValidEndDate', '11') +VALUES ('000196', 'PersonDetail', 'RefVisaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000702', 'CompetencyFramework', 'Subject', '11') +VALUES ('000197', 'PsProgram', 'NormalLengthTimeForCompletion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000703', 'PersonHealth', 'VisionScreeningDate', '11') +VALUES ('000198', 'PsProgram', 'RefTimeForCompletionUnitsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000704', 'OrganizationWebsite', 'Website', '11') +VALUES ('000199', 'K12StudentCourseSection', 'NumberOfCreditsAttempted', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000705', 'PersonHealth', 'HearingScreeningDate', '11') +VALUES ('000199', 'PsStudentAcademicRecord', 'NumberOfCreditsAttempted', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000706', 'PersonHealth', 'DentalScreeningDate', '11') +VALUES ('000199', 'PsStudentSection', 'NumberOfCreditsAttempted', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000707', 'AssessmentItem', 'MaximumScore', '11') +VALUES ('000200', 'K12StudentCourseSection', 'NumberOfCreditsEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000708', 'AssessmentItem', 'MinimumScore', '11') +VALUES ('000200', 'PsStudentSection', 'NumberOfCreditsEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000709', 'AssessmentItemCharacteristic', 'Value', '11') +VALUES ('000200', 'StaffProfessionalDevelopmentActivity', 'NumberOfCreditsEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000710', 'K12School', 'RefCharterSchoolTypeId', '11') +VALUES ('000201', 'RoleAttendance', 'NumberOfDaysAbsent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000711', 'K12StudentCohort', 'CohortDescription', '11') +VALUES ('000202', 'ELEnrollment', 'NumberOfDaysInAttendance', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000712', 'CteCourse', 'RefCurriculumFrameworkTypeId', '11') +VALUES ('000202', 'RoleAttendance', 'NumberOfDaysInAttendance', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000712', 'K12Course', 'RefCurriculumFrameworkTypeId', '11') +VALUES ('000205', 'StaffCompensation', 'StaffCompensationOtherBenefits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000713', 'K12StudentAcademicRecord', 'RefHighSchoolDiplomaDistinctionTypeId', '11') +VALUES ('000206', 'PersonOtherName', 'OtherName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000715', 'CompetencyDefAssociation', 'AssociatedEntityId', '11') +VALUES ('000207', 'StaffCredential', 'RefParaprofessionalQualificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000716', 'StaffCredential', 'RefProgramSponsorTypeId', '11') +VALUES ('000208', 'OrganizationFederalAccountability', 'RefParticipationStatusMathId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000717', 'AssessmentPerformanceLevel', 'Identifier', '11') +VALUES ('000209', 'OrganizationFederalAccountability', 'RefParticipationStatusRlaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000718', 'AssessmentPerformanceLevel', 'Label', '11') +VALUES ('000210', 'OrganizationFederalAccountability', 'PersistentlyDangerousStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000719', 'AssessmentSubtest', 'Rules', '11') +VALUES ('000211', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000724', 'AssessmentItemResponse', 'ScoreValue', '11') +VALUES ('000212', 'PersonDetail', 'Prefix', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000725', 'CompetencyDefEducationLevel', 'RefEducationLevelId', '11') +VALUES ('000213', 'StaffEmployment', 'PositionTitle', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000726', 'PsStudentAcademicRecord', 'AcademicYearDesignator', '11') +VALUES ('000214', 'LocationAddress', 'PostalCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000727', 'OrganizationCalendarSession', 'RefAcademicTermDesignatorId', '11') +VALUES ('000214', 'PersonAddress', 'PostalCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000727', 'PsStudentAcademicRecord', 'RefAcademicTermDesignatorId', '11') +VALUES ('000216', 'K12LeaPreKEligibility', 'RefPrekindergartenEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000728', 'PsStudentEnrollment', 'RefDistanceEducationCourseEnrollmentId', '11') +VALUES ('000217', 'K12LeaPreKEligibleAgesIDEA', 'RefPreKEligibleAgesNonIDEAId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000729', 'ELOrganization', 'RefPredominantCalendarSystemId', '11') +VALUES ('000218', 'PersonDisability', 'PrimaryDisabilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000729', 'PsInstitution', 'RefPredominantCalendarSystemId', '11') +VALUES ('000219', 'OrganizationTelephone', 'PrimaryTelephoneNumberIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000730', 'StaffEmployment', 'StandardOccupationalClassification', '11') +VALUES ('000219', 'PersonTelephone', 'PrimaryTelephoneNumberIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000731', 'ELStaffEmployment', 'RefIpedsOccupationalCategoryId', '11') +VALUES ('000220', 'ELStaffAssignment', 'RefProfessionalEducationJobClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000731', 'PsStaffEmployment', 'RefIpedsOccupationalCategoryId', '11') +VALUES ('000220', 'K12StaffAssignment', 'RefProfessionalEducationJobClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000732', 'PsStaffEmployment', 'InstructionalStaffStatus', '11') +VALUES ('000221', 'OrganizationFederalAccountability', 'RefProficiencyTargetStatusMathId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000733', 'PsStaffEmployment', 'MedicalSchoolStaffStatus', '11') +VALUES ('000222', 'PersonProgramParticipation', 'RefProgramExitReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000734', 'PsStaffEmployment', 'FacultyStatus', '11') +VALUES ('000223', 'PsProgram', 'ProgramLengthHours', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000735', 'ELStaffEmployment', 'RefInstructionalStaffContractLengthId', '11') +VALUES ('000224', 'PsProgram', 'RefProgramLengthHoursTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000735', 'PsStaffEmployment', 'RefInstructionalStaffContractLengthId', '11') +VALUES ('000225', 'OrganizationProgramType', 'RefProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000736', 'ELStaffEmployment', 'RefFullTimeStatusId', '11') +VALUES ('000226', 'K12StudentAcademicRecord', 'ProjectedGraduationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000736', 'PsStaffEmployment', 'RefFullTimeStatusId', '11') +VALUES ('000227', 'K12Lea', 'RefPublicSchoolChoiceStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000737', 'ELStaffEmployment', 'RefEmploymentContractTypeId', '11') +VALUES ('000228', 'AssessmentRegistration', 'RefAssessmentReasonNotTestedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000737', 'PsStaffEmployment', 'RefEmploymentContractTypeId', '11') +VALUES ('000229', 'ActivityRecognition', 'RefActivityRecognitionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000738', 'PsInstitution', 'RefTenureSystemId', '11') +VALUES ('000230', 'OrganizationFederalAccountability', 'RefReconstitutedStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000739', 'PsStaffEmployment', 'RefInstructionalStaffFacultyTenureId', '11') +VALUES ('000231', 'CourseSection', 'RelatedCompetencyDefinitions', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000740', 'PsStaffEmployment', 'RefAcademicRankId', '11') +VALUES ('000232', 'K12SchoolStatus', 'RefRestructuringActionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000741', 'PsStaffEmployment', 'RefInstructionCreditTypeId', '11') +VALUES ('000233', 'StaffCompensation', 'StaffCompensationRetirementBenefits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000742', 'PsStaffEmployment', 'GraduateAssistantStatus', '11') +VALUES ('000234', 'K12StaffEmployment', 'SalaryForTeachingAssignmentOnlyIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000743', 'PsStaffEmployment', 'RefGraduateAssistantIpedsCategoryId', '11') +VALUES ('000238', 'K12SchoolImprovement', 'RefSchoolImprovementFundsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000744', 'ELStaffEmployment', 'AnnualBaseContractualSalary', '11') +VALUES ('000239', 'K12SchoolImprovement', 'RefSigInterventionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000744', 'PsStaffEmployment', 'AnnualBaseContractualSalary', '11') +VALUES ('000240', 'K12SchoolImprovement', 'RefSchoolImprovementStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000745', 'PsPriceOfAttendance', 'TuitionPublished', '11') +VALUES ('000241', 'ELOrganization', 'RefSchoolLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000746', 'PsPriceOfAttendance', 'RefTuitionUnitId', '11') +VALUES ('000241', 'K12School', 'RefSchoolLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000747', 'PsPriceOfAttendance', 'RequiredStudentFees', '11') +VALUES ('000242', 'K12School', 'RefSchoolTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000748', 'PsInstitution', 'InstitutionallyControlledHousingStatus', '11') +VALUES ('000243', 'OrganizationCalendar', 'CalendarYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000749', 'PsPriceOfAttendance', 'RoomCharges', '11') +VALUES ('000244', 'OrganizationCalendarSession', 'InstructionalMinutes', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000750', 'PsPriceOfAttendance', 'BoardCharges', '11') +VALUES ('000245', 'AssessmentResult', 'ScoreValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000751', 'PsPriceOfAttendance', 'BooksAndSuppliesCosts', '11') +VALUES ('000250', 'Course', 'SCEDSequenceOfCourse', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000752', 'PsPriceOfAttendance', 'OtherStudentExpenses', '11') +VALUES ('000252', 'OrganizationCalendarSession', 'Designator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000753', 'PsPriceOfAttendance', 'PriceOfAttendance', '11') +VALUES ('000252', 'PsPriceOfAttendance', 'SessionDesignator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000754', 'PsPriceOfAttendance', 'ComprehensiveFee', '11') +VALUES ('000254', 'OrganizationCalendarSession', 'RefSessionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000755', 'PsStudentApplication', 'PostsecondaryApplicant', '11') +VALUES ('000255', 'PersonDetail', 'RefSexId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000756', 'PsStudentApplication', 'RefAdmittedStudentId', '11') +VALUES ('000258', 'CourseSection', 'RefSingleSexClassStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000757', 'PsStudentApplication', 'WaitListedStudent', '11') +VALUES ('000260', 'ProgramParticipationSpecialEducation', 'RefSpecialEducationExitReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000758', 'PsStudentApplication', 'RefGradePointAverageDomainId', '11') +VALUES ('000261', 'ELStaffAssignment', 'SpecialEducationParaprofessional', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000759', 'PsStudentApplication', 'HighSchoolPercentile', '11') +VALUES ('000261', 'K12StaffAssignment', 'SpecialEducationParaprofessional', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000760', 'PsStudentEnrollment', 'HousingOnCampus', '11') +VALUES ('000262', 'ELStaffAssignment', 'SpecialEducationRelatedServicesPersonnel', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000761', 'PsStudentEnrollment', 'FraternityParticipationStatus', '11') +VALUES ('000262', 'K12StaffAssignment', 'SpecialEducationRelatedServicesPersonnel', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000762', 'PsStudentEnrollment', 'SororityParticipationStatus', '11') +VALUES ('000263', 'ProgramParticipationSpecialEducation', 'SpecialEducationServicesExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000763', 'PsStudentFinancialAid', 'FinancialAidApplicant', '11') +VALUES ('000264', 'ELStaffAssignment', 'SpecialEducationTeacher', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000765', 'PsStudentFinancialAid', 'FinancialNeed', '11') +VALUES ('000264', 'K12StaffAssignment', 'SpecialEducationTeacher', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000766', 'TeacherEducationCredentialExam', 'RefTeacherEducationTestCompanyId', '11') +VALUES ('000265', 'PsStudentAdmissionTest', 'StandardizedAdmissionTestScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000767', 'ProgramParticipationTeacherPrep', 'RefTeacherPrepEnrollmentStatusId', '11') +VALUES ('000266', 'PsStudentAdmissionTest', 'RefStandardizedAdmissionTestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000768', 'ProgramParticipationTeacherPrep', 'RefTeacherPrepCompleterStatusId', '11') +VALUES ('000267', 'PersonAddress', 'RefStateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000769', 'ProgramParticipationTeacherPrep', 'RefAltRouteToCertificationOrLicensureId', '11') +VALUES ('000268', 'PersonDetail', 'RefStateOfResidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000770', 'ProgramParticipationTeacherPrep', 'RefCriticalTeacherShortageCandidateId', '11') +VALUES ('000269', 'LocationAddress', 'StreetNumberAndName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000771', 'ProgramParticipationTeacherPrep', 'RefSupervisedClinicalExperienceId', '11') +VALUES ('000269', 'PersonAddress', 'StreetNumberAndName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000772', 'ProgramParticipationTeacherPrep', 'ClinicalExperienceClockHours', '11') +VALUES ('000271', 'RoleAttendance', 'AttendanceRate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000773', 'TeacherEducationCredentialExam', 'RefTeacherEducationCredentialExamId', '11') +VALUES ('000272', 'PsStudentEnrollment', 'RefPsStudentLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000774', 'TeacherEducationCredentialExam', 'RefTeacherEducationExamScoreTypeId', '11') +VALUES ('000273', 'IndividualizedProgram', 'RefStudentSupportServiceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000779', 'ProgramParticipationAE', 'RefAeFunctioningLevelAtIntakeId', '11') +VALUES ('000273', 'OrganizationService', 'RefStudentSupportServiceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000780', 'ProgramParticipationAE', 'RefAeFunctioningLevelAtPosttestId', '11') +VALUES ('000273', 'ServiceProvided', 'RefStudentSupportServiceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000782', 'ProgramParticipationAE', 'RefAeSpecialProgramTypeId', '11') +VALUES ('000274', 'AssessmentSubtest', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'AeStudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '11') +VALUES ('000275', 'AssessmentSubtest', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'CteStudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '11') +VALUES ('000277', 'ProgramParticipationTeacherPrep', 'RefTeachingCredentialBasisId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'K12StudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '11') +VALUES ('000277', 'StaffCredential', 'RefTeachingCredentialBasisId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'PsStudentAcademicRecord', 'RefProfessionalTechCredentialTypeId', '11') +VALUES ('000278', 'ProgramParticipationTeacherPrep', 'RefTeachingCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000783', 'WorkforceProgramParticipation', 'RefProfessionalTechnicalCredentialTypeId', '11') +VALUES ('000278', 'StaffCredential', 'RefTeachingCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000784', 'ProgramParticipationAE', 'RefAePostsecondaryTransitionActionId', '11') +VALUES ('000279', 'OrganizationTelephone', 'TelephoneNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000786', 'AeStaff', 'RefAeStaffClassificationId', '11') +VALUES ('000279', 'PersonTelephone', 'TelephoneNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000787', 'PersonFamily', 'FamilyIdentifier', '11') +VALUES ('000280', 'PersonTelephone', 'RefPersonTelephoneNumberTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000788', 'AeStaff', 'YearsOfPriorAeTeachingExperience', '11') +VALUES ('000281', 'ProgramParticipationTitleI', 'RefTitleIIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000788', 'StaffExperience', 'YearsOfPriorAETeachingExperience', '11') +VALUES ('000282', 'K12ProgramOrService', 'RefTitleIInstructionalServicesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000789', 'ELStaffEducation', 'ECDegreeOrCertificateHolder', '11') +VALUES ('000283', 'ELStaffAssignment', 'RefTitleIProgramStaffCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000790', 'ProgramParticipationAE', 'ProxyContactHours', '11') +VALUES ('000283', 'K12StaffAssignment', 'RefTitleIProgramStaffCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000792', 'ELStaffEducation', 'TotalCollegeCreditsEarned', '11') +VALUES ('000284', 'K12ProgramOrService', 'RefTitleIProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000795', 'RoleStatus', 'StatusEndDate', '11') +VALUES ('000285', 'K12SchoolStatus', 'RefTitleISchoolStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000796', 'ELStaffEmployment', 'HoursWorkedPerWeek', '11') +VALUES ('000289', 'K12LeaTitleISupportService', 'RefK12LeaTitleISupportServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000797', 'ELStaffEmployment', 'HourlyWage', '11') +VALUES ('000292', 'PsStudentFinancialAid', 'TitleIVParticipantAndRecipient', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000798', 'ELStaffEmployment', 'RefWageCollectionMethodId', '11') +VALUES ('000293', 'StaffCompensation', 'StaffCompensationTotalBenefits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000799', 'ELStaffEmployment', 'UnionMembershipStatus', '11') +VALUES ('000294', 'K12StudentAcademicRecord', 'TotalNumberInClass', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000804', 'ProfessionalDevelopmentRequirement', 'RequiredTrainingClockHours', '11') +VALUES ('000294', 'PsStudentApplication', 'HighSchoolGraduatingClassSize', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000805', 'PersonCredential', 'RefIssuingStateId', '11') +VALUES ('000295', 'StaffCompensation', 'StaffCompensationTotalSalary', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000806', 'ELStaff', 'RefChildDevelopmentAssociateTypeId', '11') +VALUES ('000296', 'PsStudentEnrollment', 'RefTransferReadyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000806', 'StaffCredential', 'RefChildDevAssociateTypeId', '11') +VALUES ('000297', 'PsStudentDemographic', 'RefTuitionResidencyTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000809', 'ProfessionalDevelopmentActivity', 'ActivityIdentifier', '11') +VALUES ('000299', 'PersonDetail', 'RefUSCitizenshipStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000809', 'StaffProfessionalDevelopmentActivity', 'ActivityIdentifier', '11') +VALUES ('000302', 'StaffExperience', 'YearsOfPriorTeachingExperience', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000810', 'ProfessionalDevelopmentActivity', 'Title', '11') +VALUES ('000304', 'PersonFamily', 'RefELProgramEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000810', 'StaffProfessionalDevelopmentActivity', 'ActivityTitle', '11') +VALUES ('000305', 'PersonDetail', 'RefProofOfResidencyTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000811', 'ProfessionalDevelopmentActivity', 'ScholarshipStatus', '11') +VALUES ('000305', 'PersonFamily', 'RefProofOfResidencyTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000811', 'StaffProfessionalDevelopmentActivity', 'ScholarshipStatus', '11') +VALUES ('000306', 'PersonImmunization', 'ImmunizationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000812', 'ProfessionalDevelopmentActivity', 'RefProfessionalDevelopmentFinancialSupportId', '11') +VALUES ('000307', 'RequiredImmunization', 'RefImmunizationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000812', 'StaffProfessionalDevelopmentActivity', 'RefProfessionalDevelopmentFinancialSupportId', '11') +VALUES ('000308', 'PersonHealth', 'RefVisionScreeningStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000813', 'CoreKnowledgeArea', 'RefCoreKnowledgeAreaId', '11') +VALUES ('000309', 'PersonHealth', 'RefHearingScreeningStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000816', 'ELStaffEducation', 'SchoolAgeEducationPSCredits', '11') +VALUES ('000310', 'PersonHealth', 'RefDentalScreeningStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000816', 'ProgramParticipationTeacherPrep', 'SchoolAgeEducationPSCredits', '11') +VALUES ('000312', 'PersonHealthBirth', 'WeightAtBirth', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000818', 'OrganizationAccreditation', 'RefHigherEducationInstitutionAccreditationStatusId', '11') +VALUES ('000313', 'PersonHealthBirth', 'WeeksOfGestation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000818', 'PersonDegreeOrCertificate', 'RefHigherEducationInstitutionAccreditationStatusId', '11') +VALUES ('000314', 'ELChildDevelopmentalAssessment', 'RefChildDevelopmentalScreeningStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000819', 'ELStaffEmployment', 'RefWageVerificationId', '11') +VALUES ('000315', 'ELChildDevelopmentalAssessment', 'RefDevelopmentalEvaluationFindingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000822', 'ELClassSectionService', 'ServesChildrenWithSpecialNeeds', '11') +VALUES ('000316', 'PersonLanguage', 'RefLanguageUseTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000823', 'ELClassSectionService', 'ELClassGroupCurriculumType', '11') +VALUES ('000317', 'PersonLanguage', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000824', 'ELClassSectionService', 'RefELGroupSizeStandardMetId', '11') +VALUES ('000320', 'IndividualizedProgram', 'RefIndividualizedProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000825', 'ELClassSection', 'ELProgramAnnualOperatingWeeks', '11') +VALUES ('000321', 'ELChildService', 'RefEarlyChildhoodServicesReceivedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000825', 'ELOrganizationAvailability', 'AnnualOperatingWeeks', '11') +VALUES ('000321', 'ServiceProvided', 'RefServicesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000828', 'ELProgramLicensing', 'RefELProgramLicenseStatusId', '11') +VALUES ('000323', 'ELChildServicesApplication', 'ApplicationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000829', 'EarlyChildhoodProgramTypeOffered', 'RefEarlyChildhoodProgramEnrollmentTypeId', '11') +VALUES ('000323', 'OrganizationPersonRoleApplication', 'ApplicationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000830', 'ELQualityRatingImprovement', 'QrisAwardDate', '11') +VALUES ('000324', 'ELEnrollment', 'EnrollmentDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000831', 'ELQualityRatingImprovement', 'QRISExpirationDate', '11') +VALUES ('000325', 'ELEnrollment', 'RefFoodServiceParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000834', 'ELOrganization', 'RefProfitStatusId', '11') +VALUES ('000325', 'ProgramParticipationFoodService', 'RefSchoolFoodServiceProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000835', 'ELProgramLicensing', 'NumberOfFatalities', '11') +VALUES ('000329', 'PersonRelationship', 'CustodialRelationshipIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000836', 'ELProgramLicensing', 'NumberOfInjuries', '11') +VALUES ('000330', 'PersonFamily', 'NumberOfPeopleInFamily', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000837', 'ELProgramLicensing', 'LicenseSuspensionStatus', '11') +VALUES ('000331', 'PersonFamily', 'NumberOfPeopleInHousehold', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000838', 'ELProgramLicensing', 'LicenseRevocationStatus', '11') +VALUES ('000332', 'PersonFamily', 'FamilyIncome', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000840', 'OrganizationAccreditation', 'AccreditationAwardDate', '11') +VALUES ('000333', 'PersonFamily', 'RefFamilyIncomeSourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000841', 'OrganizationAccreditation', 'AccreditationExpirationDate', '11') +VALUES ('000334', 'PersonFamily', 'RefIncomeCalculationMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000842', 'OrganizationPolicy', 'PolicyType', '11') +VALUES ('000335', 'PersonHealth', 'RefHealthInsuranceCoverageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000843', 'ELQualityRatingImprovement', 'NumberQrisLevels', '11') +VALUES ('000336', 'PersonHealth', 'RefDentalInsuranceCoverageTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000844', 'ELOrganizationAvailability', 'NumberOfClassrooms', '11') +VALUES ('000341', 'ELStaffEducation', 'RefELLevelOfSpecializationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000851', 'ELQualityInitiative', 'ProgramHeathSafetyChecklistUseStatus', '11') +VALUES ('000342', 'PersonDegreeOrCertificate', 'DegreeOrCertificateTitleOrSubject', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000852', 'OrganizationPopulationServed', 'RefPopulationServedId', '11') +VALUES ('000343', 'PersonDegreeOrCertificate', 'RefDegreeOrCertificateTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000857', 'PersonFamily', 'RefCommunicationMethodId', '11') +VALUES ('000345', 'EarlyChildhoodCredential', 'RefEarlyChildhoodCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000862', 'LocationAddress', 'RefERSRuralUrbanContinuumCodeId', '11') +VALUES ('000346', 'RoleStatus', 'StatusStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000865', 'ELFacilityLicensing', 'StateLicensedFacilityCapacity', '11') +VALUES ('000347', 'ELStaffEmployment', 'RefEmploymentStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000866', 'OrganizationEmployeeBenefit', 'FullTimeBenefitIndicator', '11') +VALUES ('000347', 'K12StaffEmployment', 'RefEmploymentStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000866', 'OrganizationEmployeeBenefit', 'RefEmployeeBenefitId', '11') +VALUES ('000348', 'ELFacilityLicensing', 'InitialLicensingDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000867', 'OrganizationEmployeeBenefit', 'PartTimeBenefitIndicator', '11') +VALUES ('000348', 'ELProgramLicensing', 'InitialLicenseDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000869', 'CompetencyDefAssociation', 'RefCompetencyDefAssociationTypeId', '11') +VALUES ('000349', 'ELFacilityLicensing', 'ContinuingLicenseDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000870', 'CompetencyDefinition', 'TypicalAgeRange', '11') +VALUES ('000349', 'ELProgramLicensing', 'ContinuingLicenseDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000871', 'CompetencyDefAssociation', 'CompetencyDefAssociationIdentifierURI', '11') +VALUES ('000350', 'ELFacilityLicensing', 'RefLicenseExemptId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000872', 'CompetencyDefinition', 'CompetencyDefParentId', '11') +VALUES ('000350', 'ELProgramLicensing', 'RefLicenseExemptId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000873', 'CompetencyDefinition', 'CompetencyDefParentCode', '11') +VALUES ('000351', 'OrganizationOperationalStatus', 'OperationalStatusEffectiveDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000874', 'CompetencyDefinition', 'URL', '11') +VALUES ('000353', 'ELClassSection', 'RefServiceOptionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000875', 'CompetencyDefinition', 'RefBloomsTaxonomyDomainId', '11') +VALUES ('000353', 'ELEnrollment', 'RefServiceOptionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000876', 'CompetencyDefinition', 'RefMultipleIntelligenceTypeId', '11') +VALUES ('000353', 'ELOrganizationAvailability', 'RefServiceOptionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000877', 'CompetencySet', 'RefCompletionCriteriaId', '11') +VALUES ('000354', 'ELClassSection', 'HoursAvailablePerDay', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000878', 'CompetencySet', 'CompletionCriteriaThreshold', '11') +VALUES ('000354', 'ELOrganizationAvailability', 'HoursAvailablePerDay', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000879', 'CompetencyDefAssociation', 'RefLearningResourceCompetencyAlignmentTypeId', '11') +VALUES ('000355', 'ELClassSection', 'DaysAvailablePerWeek', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000880', 'CompetencyFramework', 'RefLanguageId', '11') +VALUES ('000355', 'ELOrganizationAvailability', 'DaysAvailablePerWeek', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000881', 'CompetencyDefinition', 'RefLanguageId', '11') +VALUES ('000356', 'ELClassSection', 'RefEnvironmentSettingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000882', 'CompetencyFramework', 'License', '11') +VALUES ('000356', 'ELOrganizationAvailability', 'RefEnvironmentSettingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000883', 'CompetencyDefinition', 'License', '11') +VALUES ('000357', 'ELQualityRatingImprovement', 'RefQrisParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000884', 'CompetencyFramework', 'Publisher', '11') +VALUES ('000358', 'ELQualityRatingImprovement', 'QrisScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000885', 'CompetencyFramework', 'Rights', '11') +VALUES ('000361', 'PsStudentEnrollment', 'RefPsEnrollmentAwardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000886', 'CompetencyFramework', 'RightsHolder', '11') +VALUES ('000362', 'ProgramParticipationAE', 'InstructionalActivityHoursCompleted', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000887', 'CompetencyDefinition', 'ConceptKeyword', '11') +VALUES ('000362', 'PsStudentEnrollment', 'InstructionalActivityHoursCompleted', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000888', 'CompetencyDefinition', 'ConceptTerm', '11') +VALUES ('000363', 'FinancialAidAward', 'RefFinancialAidStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000889', 'AssessmentRegistration', 'AssignedByPersonId', '11') +VALUES ('000364', 'Classroom', 'ClassroomIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000890', 'AssessmentResult', 'DescriptiveFeedback', '11') +VALUES ('000364', 'CourseSectionLocation', 'ClassroomId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000891', 'AssessmentItemResponse', 'DescriptiveFeedback', '11') +VALUES ('000365', 'Assessment', 'IdentificationSystem', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000892', 'CredentialDefCategory', 'Category', '11') +VALUES ('000366', 'AssessmentForm', 'FormNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000893', 'CredentialDefinition', 'Title', '11') +VALUES ('000367', 'AssessmentSubtest', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000894', 'CredentialDefinition', 'ImageUrl', '11') +VALUES ('000368', 'AssessmentSubtest', 'Abbreviation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000895', 'CredentialDefinition', 'Description', '11') +VALUES ('000369', 'AssessmentResult', 'RefScoreMetricTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000896', 'CredentialDefCriteria', 'Criteria', '11') +VALUES ('000369', 'AssessmentSubtest', 'RefScoreMetricTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000900', 'CredentialIssuer', 'AwardIssuerOriginURL', '11') +VALUES ('000370', 'AssessmentResult', 'InstructionalRecommendation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000901', 'CredentialAwardEvidence', 'Statement', '11') +VALUES ('000371', 'AssessmentParticipantSession', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000902', 'GoalMeasurement', 'SuccessCriteria', '11') +VALUES ('000382', 'Assessment', 'Objective', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000903', 'Goal', 'Description', '11') +VALUES ('000383', 'AssessmentAccommodation', 'RefAssessmentAccommodationCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000904', 'AssessmentItemPossibleResponse', 'FeedbackMessage', '11') +VALUES ('000384', 'AssessmentAdministration', 'AssessmentSecureIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000905', 'AssessmentItemPossibleResponse', 'SequenceNumber', '11') +VALUES ('000384', 'AssessmentForm', 'AssessmentSecureIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000906', 'AssessmentItem', 'TextComplexityValue', '11') +VALUES ('000385', 'AssessmentAccommodation', 'RefAccommodationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000907', 'AssessmentItem', 'RefTextComplexitySystemId', '11') +VALUES ('000385', 'IndividualizedProgramAccommodation', 'RefAccommodationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000908', 'AssessmentItemPossibleResponse', 'Value', '11') +VALUES ('000386', 'AssessmentParticipantSession', 'RefAssessmentPlatformTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000910', 'CompetencyDefinition', 'TextComplexitySystem', '11') +VALUES ('000388', 'AssessmentSubtest', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000911', 'LearningResource', 'Url', '11') +VALUES ('000389', 'AssessmentParticipantSession', 'RefAssessmentSessionSpecialCircumstanceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000912', 'LearningResource', 'Title', '11') +VALUES ('000389', 'AssessmentSession', 'RefAssessmentSessionSpecialCircumstanceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000913', 'LearningResource', 'SubjectName', '11') +VALUES ('000390', 'AssessmentItem', 'RefAssessmentItemTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000914', 'LearningResource', 'SubjectCode', '11') +VALUES ('000391', 'AssessmentItem', 'Difficulty', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000915', 'LearningResource', 'SubjectCodeSystem', '11') +VALUES ('000392', 'AssessmentItemCharacteristic', 'RefAssessmentItemCharacteristicTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000916', 'LearningResource', 'DateCreated', '11') +VALUES ('000393', 'AssessmentItemCharacteristic', 'ResponseChoicePattern', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000917', 'LearningResource', 'Creator', '11') +VALUES ('000395', 'AssessmentSubtest', 'MaximumValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000918', 'LearningResource', 'PublisherName', '11') +VALUES ('000396', 'AssessmentSubtest', 'MinimumValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000919', 'LearningResource', 'RefLanguageId', '11') +VALUES ('000397', 'AssessmentSubtest', 'OptimalValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000921', 'LearningResource', 'LearningResourceLicenseURL', '11') +VALUES ('000398', 'AssessmentItem', 'DistractorAnalysis', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000922', 'LearningResource', 'BasedOnUrl', '11') +VALUES ('000400', 'AssessmentItem', 'Stem', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000923', 'LearningResource', 'RefLearningResourceIntendedEndUserRoleId', '11') +VALUES ('000402', 'AssessmentItemResponse', 'Duration', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000924', 'LearningResource', 'TimeRequired', '11') +VALUES ('000403', 'AssessmentItem', 'AllottedTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000925', 'LearningResource', 'TypicalAgeRangeMinimum', '11') +VALUES ('000405', 'AssessmentItemResponse', 'RefAssessItemResponseStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000926', 'LearningResource', 'TypicalAgeRangeMaximum', '11') +VALUES ('000406', 'AssessmentItemResponse', 'AidSetUsed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000927', 'LearningResource', 'RefLearningResourceInteractivityTypeId', '11') +VALUES ('000407', 'AssessmentParticipantSession', 'TimeAssessed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000928', 'LearningResource', 'RefLearningResourceTypeId', '11') +VALUES ('000408', 'AssessmentSession', 'AllottedTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000929', 'LearningResource', 'TextComplexityValue', '11') +VALUES ('000415', 'Assessment', 'RefAssessmentTypeAdministeredId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000930', 'LearningResource', 'TextComplexitySystem', '11') +VALUES ('000417', 'AssessmentPerformanceLevel', 'ScoreMetric', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000931', 'Assessment', 'ShortName', '11') +VALUES ('000418', 'AssessmentPerformanceLevel', 'LowerCutScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000932', 'Assessment', 'AssessmentFamilyTitle', '11') +VALUES ('000419', 'AssessmentPerformanceLevel', 'UpperCutScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000933', 'Assessment', 'AssessmentFamilyShortName', '11') +VALUES ('000421', 'Rubric', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000934', 'LearnerAction', 'RefLearnerActionTypeId', '11') +VALUES ('000422', 'Rubric', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000935', 'LearnerAction', 'Value', '11') +VALUES ('000423', 'Rubric', 'UrlReference', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000937', 'LearnerAction', 'LearnerActionDateTime', '11') +VALUES ('000424', 'K12Sea', 'RefStateANSICodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000938', 'LearnerActivity', 'RefLanguageId', '11') +VALUES ('000425', 'PersonRelationship', 'RefPersonRelationshipTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000939', 'LearnerActivity', 'Title', '11') +VALUES ('000426', 'PersonBirthplace', 'City', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000940', 'LearnerActivity', 'Description', '11') +VALUES ('000427', 'PersonBirthplace', 'RefStateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000941', 'LearnerActivity', 'Prerequisite', '11') +VALUES ('000428', 'PersonDetail', 'BirthdateVerification', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000942', 'LearnerActivity', 'RefLearnerActivityTypeId', '11') +VALUES ('000428', 'ProgramParticipationMigrant', 'BirthdateVerification', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000943', 'LearnerActivity', 'CreationDate', '11') +VALUES ('000429', 'ProgramParticipationMigrant', 'RefContinuationOfServicesReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000944', 'LearnerActivity', 'MaximumTimeAllowed', '11') +VALUES ('000430', 'ProgramParticipationMigrant', 'MepEligibilityExpirationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000945', 'LearnerActivity', 'RefLearnerActivityMaximumTimeAllowedUnitsId', '11') +VALUES ('000431', 'PersonHealthBirth', 'MultipleBirthIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000946', 'LearnerActivity', 'DueDate', '11') +VALUES ('000432', 'ProgramParticipationMigrant', 'MigrantStudentQualifyingArrivalDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000947', 'LearnerActivity', 'DueTime', '11') +VALUES ('000433', 'ProgramParticipationMigrant', 'QualifyingMoveFromCity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000948', 'LearnerActivity', 'MaximumAttemptsAllowed', '11') +VALUES ('000434', 'ProgramParticipationMigrant', 'RefQualifyingMoveFromCountryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000949', 'LearnerActivity', 'RefLearnerActivityAddToGradeBookFlagId', '11') +VALUES ('000435', 'ProgramParticipationMigrant', 'RefQualifyingMoveFromStateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000950', 'LearnerActivity', 'ReleaseDate', '11') +VALUES ('000436', 'ProgramParticipationMigrant', 'DesignatedGraduationSchoolId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000951', 'LearnerActivity', 'Weight', '11') +VALUES ('000437', 'ProgramParticipationMigrant', 'RefMepEnrollmentTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000952', 'LearnerActivity', 'PossiblePoints', '11') +VALUES ('000438', 'ProgramParticipationMigrant', 'ImmunizationRecordFlag', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000953', 'LearnerActivity', 'RubricUrl', '11') +VALUES ('000439', 'PersonHealth', 'RefMedicalAlertIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000954', 'AssessmentItemResponse', 'ScaffoldingItemFlag', '11') +VALUES ('000440', 'ProgramParticipationMigrant', 'RefMepProjectBasedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000955', 'AssessmentItemResponse', 'HintCount', '11') +VALUES ('000442', 'OrganizationFederalAccountability', 'AypAppealProcessDesignation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000956', 'AssessmentItemResponse', 'HintIncludedAnswer', '11') +VALUES ('000443', 'OrganizationFederalAccountability', 'AypAppealChangedDesignation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000957', 'AssessmentItemResponse', 'FirstAttemptDuration', '11') +VALUES ('000444', 'OrganizationFederalAccountability', 'AypAppealProcessDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000958', 'AssessmentItemResponse', 'StartTime', '11') +VALUES ('000445', 'K12SeaFederalFunds', 'StateTransferabilityOfFunds', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000959', 'AssessmentItemResponse', 'StartDate', '11') +VALUES ('000447', 'K12TitleIIILanguageInstruction', 'RefTitleIIILanguageInstructionProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000961', 'AssessmentAdministration', 'Code', '11') +VALUES ('000447', 'ProgramParticipationTitleIIILep', 'RefTitleIIILanguageInstructionProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000962', 'AssessmentAdministration', 'StartDate', '11') +VALUES ('000448', 'Course', 'RefInstructionLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000963', 'AssessmentAdministration', 'StartTime', '11') +VALUES ('000448', 'CourseSection', 'RefInstructionLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000964', 'AssessmentAdministration', 'FinishDate', '11') +VALUES ('000449', 'K12LeaFederalReporting', 'RefBarrierToEducatingHomelessId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000965', 'AssessmentAdministration', 'FinishTime', '11') +VALUES ('000453', 'K12LeaFederalReporting', 'StateAssessStandardsFunding', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000968', 'AssessmentSession', 'SecurityIssue', '11') +VALUES ('000454', 'K12LeaFederalReporting', 'StateAssessmentAdminFunding', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000969', 'AssessmentItemResponse', 'SecurityIssue', '11') +VALUES ('000455', 'K12SeaFederalFunds', 'DateStateReceivedTitleIIIAllocation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000970', 'AssessmentResult', 'DateUpdated', '11') +VALUES ('000456', 'K12SeaFederalFunds', 'DateTitleIIIFundsAvailableToSubgrantees', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000971', 'AssessmentResult', 'DateCreated', '11') +VALUES ('000457', 'K12SeaFederalFunds', 'NumberOfDaysForTitleIIISubgrants', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000976', 'K12StudentCourseSection', 'RefCourseSectionEnrollmentStatusTypeId', '11') +VALUES ('000461', 'K12LeaFederalFunds', 'InnovativeDollarsSpent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000977', 'AssessmentAdministration', 'Name', '11') +VALUES ('000462', 'K12LeaFederalFunds', 'InnovativeDollarsSpentOnStrategicPriorities', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000979', 'AssessmentForm_AssessmentFormSection', 'SequenceNumber', '11') +VALUES ('000463', 'K12ProgramOrService', 'RefMepProjectTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000979', 'AssessmentFormSection_AssessmentItem', 'SequenceNumber', '11') +VALUES ('000464', 'K12LeaFederalFunds', 'InnovativeProgramsFundsReceived', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000980', 'AssessmentFormSection', 'GUID', '11') +VALUES ('000466', 'K12StudentLiteracyAssessment', 'RefLiteracyAssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000981', 'Assessment', 'GUID', '11') +VALUES ('000467', 'K12StudentLiteracyAssessment', 'LiteracyGoalMetStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000982', 'OrganizationAccreditation', 'RefAccreditationAgencyId', '11') +VALUES ('000468', 'K12StudentLiteracyAssessment', 'LiteracyPostTestStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000984', 'ELFacilityLicensing', 'RefELFacilityLicensingStatusId', '11') +VALUES ('000469', 'K12StudentLiteracyAssessment', 'LiteracyPreTestStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000985', 'OrganizationCalendarSession', 'SessionStartTime', '11') +VALUES ('000471', 'K12LeaSafeDrugFree', 'IndicatorName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000986', 'OrganizationCalendarSession', 'SessionEndTime', '11') +VALUES ('000472', 'K12LeaSafeDrugFree', 'Instrument', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000987', 'AeStudentEmployment', 'RefEmployedWhileEnrolledId', '11') +VALUES ('000473', 'K12LeaSafeDrugFree', 'CollectionFrequency', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000987', 'K12StudentEmployment', 'RefEmployedWhileEnrolledId', '11') +VALUES ('000474', 'K12LeaSafeDrugFree', 'MostRecentCollection', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000987', 'PsStudentEmployment', 'RefEmployedWhileEnrolledId', '11') +VALUES ('000475', 'K12LeaSafeDrugFree', 'Target', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000987', 'WorkforceEmploymentQuarterlyData', 'RefEmployedWhileEnrolledId', '11') +VALUES ('000476', 'K12LeaSafeDrugFree', 'Performance', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000988', 'AeStudentEmployment', 'RefEmployedAfterExitId', '11') +VALUES ('000477', 'K12LeaSafeDrugFree', 'Baseline', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000988', 'K12StudentEmployment', 'RefEmployedAfterExitId', '11') +VALUES ('000478', 'K12LeaSafeDrugFree', 'BaselineYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000988', 'PsStudentEmployment', 'RefEmployedAfterExitId', '11') +VALUES ('000481', 'K12SchoolImprovement', 'SchoolImprovementExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000988', 'WorkforceEmploymentQuarterlyData', 'RefEmployedAfterExitId', '11') +VALUES ('000482', 'K12LeaFederalReporting', 'TerminatedTitleIIIProgramFailure', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000989', 'QuarterlyEmploymentRecord', 'Earnings', '11') +VALUES ('000484', 'ProgramParticipationNeglected', 'ObtainedEmployment', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000990', 'QuarterlyEmploymentRecord', 'RefEmploymentLocationId', '11') +VALUES ('000485', 'K12ProgramOrService', 'ProgramInMultiplePurposeFacility', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000991', 'WorkforceEmploymentQuarterlyData', 'EmployedInMultipleJobsCount', '11') +VALUES ('000486', 'K12LeaFederalFunds', 'RefRlisProgramUseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000992', 'QuarterlyEmploymentRecord', 'ReferencePeriodStartDate', '11') +VALUES ('000487', 'K12LeaTitleIIIProfessionalDevelopment', 'RefTitleIIIProfessionalDevelopmentTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000993', 'QuarterlyEmploymentRecord', 'ReferencePeriodEndDate', '11') +VALUES ('000488', 'K12StudentDiscipline', 'RefDisciplinaryActionTakenId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000994', 'QuarterlyEmploymentRecord', 'RefERAdministrativeDataSourceId', '11') +VALUES ('000490', 'K12ProgramOrService', 'RefPrekindergartenDailyLengthId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000997', 'WorkforceProgramParticipation', 'RefWfProgramParticipationId', '11') +VALUES ('000491', 'K12ProgramOrService', 'RefKindergartenDailyLengthId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001002', 'LearningResource', 'RefLearningResourceEducationalUseId', '11') +VALUES ('000494', 'OrganizationCalendar', 'CalendarCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001003', 'AssessmentParticipantSession', 'DeliveryDeviceDetails', '11') +VALUES ('000495', 'OrganizationCalendar', 'CalendarDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001004', 'AssessmentNeedApipDisplay', 'EncouragementAssignedSupportIndicator', '11') +VALUES ('000496', 'OrganizationCalendarSession', 'DaysInSession', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001004', 'AssessmentNeedApipDisplay', 'MaskingAssignedSupportIndicator', '11') +VALUES ('000497', 'OrganizationCalendarSession', 'FirstInstructionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001004', 'AssessmentPersonalNeedLanguageLearner', 'AssignedSupport', '11') +VALUES ('000498', 'OrganizationCalendarSession', 'LastInstructionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001004', 'AssessmentPersonalNeedsProfile', 'AssignedSupportFlag', '11') +VALUES ('000499', 'Course', 'InstructionalMinutes', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001005', 'AssessmentNeedApipDisplay', 'EncouragementActivateByDefaultIndicator', '11') +VALUES ('000500', 'OrganizationCalendarSession', 'MinutesPerDay', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001005', 'AssessmentNeedApipDisplay', 'MaskingActivateByDefaultIndicator', '11') +VALUES ('000501', 'Incident', 'IncidentIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001005', 'AssessmentPersonalNeedLanguageLearner', 'ActivateByDefault', '11') +VALUES ('000502', 'Incident', 'IncidentDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001005', 'AssessmentPersonalNeedsProfile', 'ActivateByDefault', '11') +VALUES ('000503', 'Incident', 'IncidentTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001006', 'Assessment', 'Provider', '11') +VALUES ('000504', 'Facility', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001007', 'AssessmentResult', 'PreliminaryIndicator', '11') +VALUES ('000505', 'Incident', 'IncidentCost', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001008', 'AssessmentResult', 'DiagnosticStatementSource', '11') +VALUES ('000506', 'Incident', 'RefIncidentReporterTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001009', 'AssessmentResult', 'NumberOfResponses', '11') +VALUES ('000507', 'Incident', 'IncidentReporterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001010', 'AssessmentSubtest_AssessmentItem', 'ItemWeightCorrect', '11') +VALUES ('000508', 'Incident', 'IncidentDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001012', 'AssessmentSubtest_AssessmentItem', 'ItemWeightIncorrect', '11') +VALUES ('000509', 'Incident', 'RefIncidentBehaviorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001013', 'AssessmentSubtest_AssessmentItem', 'ItemWeightNotAttempted', '11') +VALUES ('000510', 'Incident', 'RefIncidentInjuryTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001014', 'AssessmentSubtest', 'RefAssessmentSubtestIdentifierTypeId', '11') +VALUES ('000511', 'K12StudentDiscipline', 'DurationOfDisciplinaryAction', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001015', 'AssessmentRegistration', 'DaysOfInstructionPriorToAssessment', '11') +VALUES ('000512', 'K12StudentDiscipline', 'RelatedToZeroTolerancePolicy', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001016', 'AssessmentRegistration', 'RetestIndicator', '11') +VALUES ('000513', 'K12StudentDiscipline', 'FullYearExpulsion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001017', 'AssessmentRegistration', 'CreationDate', '11') +VALUES ('000514', 'K12StudentDiscipline', 'ShortenedExpulsion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001018', 'AssessmentSession', 'RefAssessmentSessionTypeId', '11') +VALUES ('000515', 'Incident', 'RefIncidentTimeDescriptionCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001019', 'AssessmentSession', 'ScheduledStartDateTime', '11') +VALUES ('000517', 'Course', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001020', 'AssessmentSession', 'ScheduledEndDateTime', '11') +VALUES ('000518', 'CteCourse', 'CoreAcademicCourse', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001021', 'AssessmentParticipantSession', 'ActualStartDateTime', '11') +VALUES ('000518', 'K12Course', 'CoreAcademicCourse', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001021', 'AssessmentSession', 'ActualStartDateTime', '11') +VALUES ('000519', 'CourseSectionSchedule', 'ClassBeginningTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001022', 'AssessmentParticipantSession', 'ActualEndDateTime', '11') +VALUES ('000520', 'CourseSectionSchedule', 'ClassEndingTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001022', 'AssessmentSession', 'ActualEndDateTime', '11') +VALUES ('000521', 'CourseSectionSchedule', 'ClassMeetingDays', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001023', 'AssessmentPersonalNeedLanguageLearner', 'RefAssessmentNeedsProfileContentLanguageLearnerTypeId', '11') +VALUES ('000522', 'CourseSectionSchedule', 'ClassPeriod', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001024', 'AssessmentPersonalNeedsProfileContent', 'RefAssessmentNeedHazardTypeId', '11') +VALUES ('000523', 'CourseSectionSchedule', 'TimeDayIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001025', 'AssessmentPersonalNeedsProfileContent', 'RefAssessmentNeedSupportToolId', '11') +VALUES ('000524', 'CourseSectionLocation', 'RefInstructionLocationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001026', 'AssessmentNeedBraille', 'RefAssessmentNeedUsageTypeId', '11') +VALUES ('000525', 'K12StaffAssignment', 'PrimaryAssignment', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001026', 'AssessmentPersonalNeedScreenReader', 'RefAssessmentNeedUsageTypeId', '11') +VALUES ('000528', 'ELStaffAssignment', 'ItinerantTeacher', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001027', 'AssessmentPersonalNeedScreenReader', 'RefAssessmentNeedLinkIndicationTypeId', '11') +VALUES ('000528', 'K12StaffAssignment', 'ItinerantTeacher', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001028', 'AssessmentPersonalNeedScreenReader', 'SpeechRate', '11') +VALUES ('000529', 'K12StudentEnrollment', 'FirstEntryDateIntoUSSchool', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001029', 'AssessmentPersonalNeedScreenReader', 'Volume', '11') +VALUES ('000530', 'K12StudentEnrollment', 'RefPromotionReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001030', 'AssessmentNeedScreenEnhancement', 'InvertColorChoice', '11') +VALUES ('000531', 'K12StudentEnrollment', 'RefNonPromotionReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001031', 'AssessmentNeedScreenEnhancement', 'Magnification', '11') +VALUES ('000532', 'ELEnrollment', 'RefPublicSchoolResidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001032', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleGradeTypeId', '11') +VALUES ('000532', 'K12StudentEnrollment', 'RefPublicSchoolResidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001033', 'AssessmentNeedBraille', 'RefAssessmentNeedNumberOfBrailleDotsId', '11') +VALUES ('000535', 'ProgramParticipationSpecialEducation', 'RefIDEAEducationalEnvironmentSchoolAgeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001034', 'AssessmentNeedBraille', 'NumberOfBrailleCells', '11') +VALUES ('000536', 'ProgramParticipationTitleIIILep', 'RefTitleIIIAccountabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001035', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleMarkTypeId', '11') +VALUES ('000537', 'ELOrganization', 'RefLeaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001036', 'AssessmentNeedBraille', 'BrailleDotPressure', '11') +VALUES ('000537', 'K12Lea', 'RefLeaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001037', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleStatusCellTypeId', '11') +VALUES ('000538', 'K12StudentDiscipline', 'RefDisciplineMethodOfCwdId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001038', 'AssessmentNeedApipContent', 'ItemTranslationDisplayLanguageTypeId', '11') +VALUES ('000539', 'K12StudentDiscipline', 'RefIdeaInterimRemovalReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001039', 'AssessmentNeedApipContent', 'KeywordTranslationLanguageTypeId', '11') +VALUES ('000540', 'AssessmentRegistration', 'RefAssessmentReasonNotCompletingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001039', 'AssessmentPersonalNeedsProfileContent', 'RefKeywordTranslationsLanguageId', '11') +VALUES ('000541', 'K12StudentDiscipline', 'RefIdeaInterimRemovalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001040', 'AssessmentNeedApipContent', 'RefAssessmentNeedSigningTypeId', '11') +VALUES ('000542', 'K12SchoolStatus', 'ConsolidatedMepFundsStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001041', 'AssessmentNeedApipContent', 'RefAssessmentNeedAlternativeRepresentationTypeId', '11') +VALUES ('000543', 'ELStaffEmployment', 'MepPersonnelIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001042', 'AssessmentNeedApipContent', 'RefAssessmentNeedSpokenSourcePreferenceTypeId', '11') +VALUES ('000543', 'K12StaffEmployment', 'MepPersonnelIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001043', 'AssessmentNeedApipContent', 'ReadAtStartPreferenceIndicator', '11') +VALUES ('000545', 'K12StudentDiscipline', 'RefDisciplineReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001044', 'AssessmentNeedApipContent', 'RefAssessmentNeedUserSpokenPreferenceTypeId', '11') +VALUES ('000546', 'StaffCredential', 'TechnologySkillsStandardsMet', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001045', 'AssessmentNeedApipContent', 'AssessmentNeedDirectionsOnlyIndicator', '11') +VALUES ('000547', 'FinancialAccount', 'RefFederalProgramCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001046', 'AssessmentNeedApipDisplay', 'RefAssessmentNeedMaskingTypeId', '11') +VALUES ('000552', 'ELStaffEmployment', 'TitleITargetedAssistanceStaffFunded', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001047', 'AssessmentNeedApipDisplay', 'EncouragementTextMessagingString', '11') +VALUES ('000552', 'K12StaffEmployment', 'TitleITargetedAssistanceStaffFunded', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001048', 'AssessmentNeedApipDisplay', 'EncouragementSoundFileUrl', '11') +VALUES ('000553', 'OrganizationFederalAccountability', 'RefProficiencyTargetStatusRLAId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001049', 'AssessmentNeedApipControl', 'AssessmentNeedTimeMultiplier', '11') +VALUES ('000555', 'K12StudentDiscipline', 'RefDisciplineMethodFirearmsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001050', 'AssessmentNeedApipControl', 'LineReaderHighlightColor', '11') +VALUES ('000556', 'K12StudentDiscipline', 'RefIDEADisciplineMethodFirearmId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001051', 'AssessmentNeedApipControl', 'OverlayColor', '11') +VALUES ('000557', 'Incident', 'RefFirearmTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001052', 'AssessmentNeedScreenEnhancement', 'ForegroundColor', '11') +VALUES ('000558', 'ELStaffAssignment', 'RefSpecialEducationStaffCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001053', 'AssessmentNeedApipControl', 'BackgroundColor', '11') +VALUES ('000558', 'K12StaffAssignment', 'RefSpecialEducationStaffCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001054', 'AssessmentNeedApipControl', 'RefAssessmentNeedIncreasedWhitespacingTypeId', '11') +VALUES ('000558', 'ServiceStaff', 'RefSpecialEducationStaffCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001055', 'AssessmentRegistration', 'TestingIndicator', '11') +VALUES ('000559', 'ELEnrollment', 'RefIDEAEnvironmentELId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001056', 'AssessmentRegistration', 'ScorePublishDate', '11') +VALUES ('000559', 'ProgramParticipationSpecialEducation', 'RefIDEAEducationalEnvironmentECId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001058', 'PersonCredential', 'CredentialName', '11') +VALUES ('000561', 'K12StudentAcademicRecord', 'RefProgressLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001059', 'StaffCredential', 'CardiopulmonaryResuscitationCertification', '11') +VALUES ('000561', 'K12StudentCourseSection', 'RefProgressLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001060', 'StaffCredential', 'FirstAidCertification', '11') +VALUES ('000562', 'ProgramParticipationMigrant', 'PrioritizedForServices', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001061', 'StaffProfessionalDevelopmentActivity', 'ActivityStartDate', '11') +VALUES ('000563', 'ProgramParticipationMigrant', 'ContinuationOfServicesStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001062', 'StaffProfessionalDevelopmentActivity', 'ActivityCompletionDate', '11') +VALUES ('000564', 'ELStaffAssignment', 'RefSpecialEducationAgeGroupTaughtId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001063', 'AssessmentItemResponse', 'Value', '11') +VALUES ('000564', 'K12StaffAssignment', 'RefSpecialEducationAgeGroupTaughtId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'AeStudentEmployment', 'EmploymentNaicsCode', '11') +VALUES ('000566', 'K12StudentAcademicRecord', 'RefTechnologyLiteracyStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'CredentialDefinition', 'EmploymentNAICSCode', '11') +VALUES ('000567', 'K12LeaFederalFunds', 'SesFundsSpent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'K12StudentEmployment', 'EmploymentNaicsCode', '11') +VALUES ('000568', 'K12LeaFederalFunds', 'PublicSchoolChoiceFundsSpent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'PsStudentEmployment', 'EmploymentNaicsCode', '11') +VALUES ('000571', 'K12StudentAcademicRecord', 'RefPreAndPostTestIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001064', 'QuarterlyEmploymentRecord', 'EmploymentNAICSCode', '11') +VALUES ('000571', 'K12StudentCourseSection', 'RefPreAndPostTestIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001066', 'OrganizationLocation', 'RefOrganizationLocationTypeId', '11') +VALUES ('000572', 'AssessmentResult', 'RefAssessmentPretestOutcomeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001067', 'Assessment', 'Identifier', '11') +VALUES ('000573', 'AssessmentItemResponse', 'RefProficiencyStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001070', 'PersonIdentifier', 'Identifier', '11') +VALUES ('000574', 'K12LeaFederalFunds', 'SesSchoolChoice20PercentObligation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001074', 'PersonIdentifier', 'RefPersonIdentificationSystemId', '11') +VALUES ('000576', 'AssessmentResult', 'IncludedInAypCalculation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001077', 'ProgramParticipationAE', 'RefAeInstructionalProgramTypeId', '11') +VALUES ('000577', 'PersonDisability', 'DisabilityStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001079', 'ProgramParticipationAE', 'RefGoalsForAttendingAdultEducationId', '11') +VALUES ('000578', 'K12StudentDiscipline', 'EducationalServicesAfterRemoval', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001081', 'ProgramParticipationAE', 'PostsecondaryTransitionDate', '11') +VALUES ('000580', 'ProgramParticipationCte', 'SingleParentOrSinglePregnantWoman', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001083', 'AeStaff', 'RefAeStaffEmploymentStatusId', '11') +VALUES ('000584', 'K12StudentCohort', 'CohortGraduationYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001085', 'StaffCredential', 'RefAeCertificationTypeId', '11') +VALUES ('000584', 'PsStudentCohort', 'CohortGraduationYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001086', 'ELStaffEducation', 'TotalApprovedECCreditsEarned', '11') +VALUES ('000585', 'ELOrganization', 'RefStatePovertyDesignationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001087', 'AssessmentPersonalNeedScreenReader', 'Pitch', '11') +VALUES ('000585', 'K12School', 'RefStatePovertyDesignationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001088', 'AssessmentItem', 'RefNaepMathComplexityLevelId', '11') +VALUES ('000586', 'K12StudentAcademicRecord', 'RefPsEnrollmentActionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001089', 'AssessmentAsset', 'RefAssessmentLanguageId', '11') +VALUES ('000587', 'ELOrganization', 'RefInternetAccessId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001089', 'AssessmentForm', 'RefAssessmentLanguageId', '11') +VALUES ('000587', 'K12SchoolStatus', 'RefInternetAccessId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001091', 'AssessmentSubtest', 'PublishedDate', '11') +VALUES ('000588', 'ProgramParticipationCte', 'RefNonTraditionalGenderStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001092', 'AssessmentResult', 'DescriptiveFeedbackSource', '11') +VALUES ('000589', 'StaffEvaluation', 'RefStaffPerformanceLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001093', 'AssessmentParticipantSession', 'SpecialEventDescription', '11') +VALUES ('000592', 'ProgramParticipationCte', 'CteParticipant', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001093', 'AssessmentSession', 'SpecialEventDescription', '11') +VALUES ('000593', 'ProgramParticipationCte', 'CteNonTraditionalCompletion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001094', 'CompetencyDefinition', 'CompetencyDefParentUrl', '11') +VALUES ('000594', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001102', 'ApipInteraction', 'Xml', '11') +VALUES ('000595', 'ELOrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001103', 'ApipInteraction', 'RefApipInteractionTypeId', '11') +VALUES ('000596', 'CourseSection', 'RefAdditionalCreditTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001122', 'AssessmentItem', 'RefNaepAspectsOfReadingId', '11') +VALUES ('000596', 'CteCourse', 'RefAdditionalCreditTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001127', 'AssessmentPersonalNeedsProfile', 'AssessmentNeedType', '11') +VALUES ('000596', 'K12Course', 'RefAdditionalCreditTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001130', 'AssessmentParticipantSession', 'SecurityIssue', '11') +VALUES ('000596', 'K12StudentCourseSection', 'RefAdditionalCreditTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001131', 'AssessmentItemApip', 'ResponseProcessingTemplateUrl', '11') +VALUES ('000597', 'AssessmentParticipantSession', 'LocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001132', 'AssessmentItemApip', 'ResponseProcessingXml', '11') +VALUES ('000597', 'AssessmentSession', 'Location', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001133', 'AssessmentItemApip', 'ResponseDeclarationXml', '11') +VALUES ('000598', 'OrganizationCalendarDay', 'AlternateDayName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001134', 'AssessmentItemApip', 'OutcomeDeclarationXml', '11') +VALUES ('000599', 'RoleAttendanceEvent', 'RefAbsentAttendanceCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001135', 'AssessmentItemApip', 'TemplateDeclarationXml', '11') +VALUES ('000600', 'RoleAttendanceEvent', 'RefPresentAttendanceCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001136', 'AssessmentItemApip', 'TemplateProcessingXml', '11') +VALUES ('000601', 'RoleAttendanceEvent', 'RefAttendanceEventTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001137', 'AssessmentItemApip', 'ModalFeedbackXml', '11') +VALUES ('000602', 'Facility', 'BuildingSiteNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001138', 'AssessmentItemApip', 'ItemBodyXml', '11') +VALUES ('000602', 'LocationAddress', 'BuildingSiteNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001139', 'AssessmentItem', 'AdaptiveIndicator', '11') +VALUES ('000603', 'OrganizationCalendarEvent', 'RefCalendarEventType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001139', 'AssessmentItemApip', 'AdaptiveIndicator', '11') +VALUES ('000605', 'AssessmentSubtest', 'RefContentStandardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001142', 'K12StudentCourseSectionMark', 'FinalIndicator', '11') +VALUES ('000606', 'LocationAddress', 'Latitude', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001143', 'LearningResource', 'Description', '11') +VALUES ('000606', 'PersonAddress', 'Latitude', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001144', 'LearningResource', 'CopyrightHolderName', '11') +VALUES ('000607', 'LocationAddress', 'Longitude', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001145', 'LearningResource', 'CopyrightYear', '11') +VALUES ('000607', 'PersonAddress', 'Longitude', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001146', 'LearningResource', 'ConceptKeyword', '11') +VALUES ('000609', 'K12StudentDiscipline', 'RefDisciplineLengthDifferenceReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001147', 'PeerRatingSystem', 'Name', '11') +VALUES ('000610', 'K12StudentEnrollment', 'DisplacedStudentStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001148', 'LearningResourcePeerRating', 'Value', '11') +VALUES ('000610', 'PsStudentEnrollment', 'DisplacedStudentStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001149', 'PeerRatingSystem', 'MaximumValue', '11') +VALUES ('000611', 'OrganizationCalendarCrisis', 'Code', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001150', 'PeerRatingSystem', 'MinimumValue', '11') +VALUES ('000612', 'OrganizationCalendarCrisis', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001151', 'PeerRatingSystem', 'OptimumValue', '11') +VALUES ('000613', 'OrganizationCalendarCrisis', 'Type', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001152', 'AssessmentParticipantSession', 'PlatformUserAgent', '11') +VALUES ('000614', 'OrganizationCalendarCrisis', 'StartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001153', 'CredentialDefCriteria', 'CriteriaUrl', '11') +VALUES ('000616', 'K12StudentCourseSection', 'GradeValueQualifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001154', 'CompetencyDefinition', 'TextComplexityMinimumValue', '11') +VALUES ('000616', 'K12StudentCourseSectionMark', 'GradeValueQualifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001155', 'CompetencyDefinition', 'TextComplexityMaximumValue', '11') +VALUES ('000617', 'Incident', 'RefIncidentLocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001157', 'AssessmentAccommodation', 'OtherDescription', '11') +VALUES ('000618', 'PersonAddress', 'RefPersonalInformationVerificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001160', 'CourseSection', 'VirtualIndicator', '11') +VALUES ('000618', 'PersonIdentifier', 'RefPersonalInformationVerificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001160', 'PsInstitution', 'VirtualIndicator', '11') +VALUES ('000618', 'PersonPersonalInformationVerification', 'RefPersonalInformationVerificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001161', 'CourseSection', 'RefCourseSectionDeliveryModeId', '11') +VALUES ('000620', 'StaffEmployment', 'RefEmploymentSeparationReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001162', 'AssessmentRegistration', 'TestAttemptIdentifier', '11') +VALUES ('000621', 'StaffEmployment', 'RefEmploymentSeparationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001163', 'CredentialAward', 'CredentialAwardStartDate', '11') +VALUES ('000622', 'ELStaffAssignment', 'RefClassroomPositionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001164', 'CredentialAward', 'CredentialAwardEndDate', '11') +VALUES ('000622', 'K12StaffAssignment', 'RefClassroomPositionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001165', 'Goal', 'StartDate', '11') +VALUES ('000624', 'RoleAttendanceEvent', 'RefLeaveEventTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001166', 'Goal', 'EndDate', '11') +VALUES ('000627', 'Incident', 'RefIncidentBehaviorSecondaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001167', 'LearningResourcePeerRating', 'Date', '11') +VALUES ('000630', 'AssessmentItem', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001168', 'Authentication', 'IdentityProviderName', '11') +VALUES ('000632', 'Facility', 'BuildingName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001169', 'Authentication', 'IdentityProviderUri', '11') +VALUES ('000633', 'ELClassSectionService', 'YoungestAgeServed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001170', 'Authentication', 'LoginIdentifier', '11') +VALUES ('000633', 'OrganizationPopulationServed', 'YoungestAgeServed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001171', 'Authentication', 'StartDate', '11') +VALUES ('000634', 'PersonOtherName', 'RefOtherNameTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001172', 'Authentication', 'EndDate', '11') +VALUES ('000635', 'ProgramParticipationNeglected', 'AchievementIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001173', 'Application', 'Name', '11') +VALUES ('000636', 'ProgramParticipationNeglected', 'OutcomeIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001174', 'Application', 'Uri', '11') +VALUES ('000647', 'K12StaffAssignment', 'TeacherOfRecord', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001175', 'Authorization', 'ApplicationRoleName', '11') +VALUES ('000648', 'ELStaffAssignment', 'RefTeachingAssignmentRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001176', 'Authorization', 'StartDate', '11') +VALUES ('000648', 'K12StaffAssignment', 'RefTeachingAssignmentRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001177', 'Authorization', 'EndDate', '11') +VALUES ('000649', 'ELStaffAssignment', 'ContributionPercentage', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001181', 'AssessmentForm', 'AssessmentItemBankIdentifier', '11') +VALUES ('000649', 'K12StaffAssignment', 'ContributionPercentage', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001181', 'AssessmentFormSection', 'AssessmentItemBankIdentifier', '11') +VALUES ('000650', 'K12StudentCourseSection', 'RefCourseSectionEntryTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001181', 'AssessmentItem', 'AssessmentItemBankIdentifier', '11') +VALUES ('000651', 'K12StudentCourseSection', 'ExitWithdrawalDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001182', 'AssessmentForm', 'AssessmentItemBankName', '11') +VALUES ('000652', 'K12StudentCourseSection', 'RefCourseSectionExitTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001182', 'AssessmentFormSection', 'AssessmentItemBankName', '11') +VALUES ('000653', 'K12LeaFederalReporting', 'InterscholasticSportsMaleOnly', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001182', 'AssessmentItem', 'AssessmentItemBankName', '11') +VALUES ('000654', 'K12LeaFederalReporting', 'InterscholasticSportsFemaleOnly', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001183', 'AssessmentForm', 'Version', '11') +VALUES ('000655', 'K12LeaFederalReporting', 'InterscholasticTeamsMaleOnly', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001184', 'AssessmentForm', 'PublishedDate', '11') +VALUES ('000656', 'K12LeaFederalReporting', 'InterscholasticTeamsFemaleOnly', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001184', 'AssessmentFormSection', 'PublishedDate', '11') +VALUES ('000657', 'K12LeaFederalReporting', 'InterscholasticSportParticipantsMale', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001184', 'LearningResource', 'PublishedDate', '11') +VALUES ('000658', 'K12LeaFederalReporting', 'InterscholasticSportParticipantsFemale', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001185', 'AssessmentForm', 'AccommodationList', '11') +VALUES ('000689', 'CompetencyDefinition', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001186', 'AssessmentForm', 'IntendedAdministrationStartDate', '11') +VALUES ('000690', 'CompetencyDefinition', 'Statement', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001187', 'AssessmentForm', 'IntendedAdministrationEndDate', '11') +VALUES ('000691', 'CompetencyDefinition', 'Type', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001188', 'AssessmentForm', 'PlatformsSupported', '11') +VALUES ('000692', 'CompetencyDefinition', 'Code', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001189', 'AssessmentFormSection', 'Version', '11') +VALUES ('000693', 'CompetencyFramework', 'URI', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001190', 'AssessmentFormSection', 'RefAssessmentFormSectionIdentificationSystemId', '11') +VALUES ('000694', 'CompetencyFramework', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001191', 'AssessmentFormSection', 'Identifier', '11') +VALUES ('000695', 'CompetencyFramework', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001192', 'AssessmentFormSection', 'SectionTimeLimit', '11') +VALUES ('000696', 'CompetencyFramework', 'Creator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001193', 'AssessmentFormSection', 'SectionSealed', '11') +VALUES ('000697', 'CompetencyFramework', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001194', 'AssessmentFormSection', 'SectionReentry', '11') +VALUES ('000698', 'CompetencyFramework', 'RefCompetencyFrameworkPublicationStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001195', 'AssessmentAsset', 'Version', '11') +VALUES ('000699', 'CompetencyFramework', 'Jurisdiction', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001196', 'AssessmentAsset', 'RefAssessmentAssetTypeId', '11') +VALUES ('000700', 'CompetencyFramework', 'ValidStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001197', 'AssessmentAsset', 'PublishedDate', '11') +VALUES ('000701', 'CompetencyFramework', 'ValidEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001198', 'AssessmentAsset', 'Identifier', '11') +VALUES ('000702', 'CompetencyFramework', 'Subject', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001199', 'AssessmentAsset', 'RefAssessmentAssestIdentifierType', '11') +VALUES ('000703', 'PersonHealth', 'VisionScreeningDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001200', 'AssessmentAsset', 'Name', '11') +VALUES ('000704', 'OrganizationWebsite', 'Website', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001201', 'AssessmentAsset', 'Owner', '11') +VALUES ('000705', 'PersonHealth', 'HearingScreeningDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001202', 'AssessmentAsset', 'ContentXML', '11') +VALUES ('000706', 'PersonHealth', 'DentalScreeningDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001203', 'AssessmentAsset', 'ContentMimeType', '11') +VALUES ('000707', 'AssessmentItem', 'MaximumScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001204', 'AssessmentAsset', 'ContentUrl', '11') +VALUES ('000708', 'AssessmentItem', 'MinimumScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001206', 'Facility', 'RefBuildingUseTypeId', '11') +VALUES ('000709', 'AssessmentItemCharacteristic', 'Value', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001207', 'BuildingSpace', 'SpaceDescription', '11') +VALUES ('000710', 'K12School', 'RefCharterSchoolTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001208', 'BuildingSpace', 'RefSpaceUseTypeId', '11') +VALUES ('000711', 'K12StudentCohort', 'CohortDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001210', 'K12StudentEnrollment', 'RefExitGradeLevelId', '11') +VALUES ('000712', 'CteCourse', 'RefCurriculumFrameworkTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001211', 'Incident', 'RefWeaponTypeId', '11') +VALUES ('000712', 'K12Course', 'RefCurriculumFrameworkTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001212', 'AssessmentSessionStaffRole', 'RefAssessmentSessionStaffRoleTypeId', '11') +VALUES ('000713', 'K12StudentAcademicRecord', 'RefHighSchoolDiplomaDistinctionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001214', 'AssessmentSubtest', 'Tier', '11') +VALUES ('000715', 'CompetencyDefAssociation', 'AssociatedEntityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001215', 'AssessmentSubtest', 'ContainerOnly', '11') +VALUES ('000716', 'StaffCredential', 'RefProgramSponsorTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001216', 'LearningResource', 'Version', '11') +VALUES ('000717', 'AssessmentPerformanceLevel', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001217', 'AssessmentItemPossibleResponse', 'CorrectIndicator', '11') +VALUES ('000718', 'AssessmentPerformanceLevel', 'Label', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001218', 'AssessmentPerformanceLevel', 'DescriptiveFeedback', '11') +VALUES ('000719', 'AssessmentSubtest', 'Rules', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001219', 'AssessmentResult', 'DiagnosticStatement', '11') +VALUES ('000724', 'AssessmentItemResponse', 'ScoreValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001223', 'FinancialAidApplication', 'RefFinancialAidApplicationTypeId', '11') +VALUES ('000725', 'CompetencyDefEducationLevel', 'RefEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001224', 'PsStudentFinancialAid', 'RefNeedDeterminationMethodId', '11') +VALUES ('000726', 'PsStudentAcademicRecord', 'AcademicYearDesignator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001225', 'ELClassSectionService', 'OldestAgeServed', '11') +VALUES ('000727', 'OrganizationCalendarSession', 'RefAcademicTermDesignatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001225', 'OrganizationPopulationServed', 'OldestAgeServed', '11') +VALUES ('000727', 'PsStudentAcademicRecord', 'RefAcademicTermDesignatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001226', 'ELClassSection', 'LanguageTranslationPolicy', '11') +VALUES ('000728', 'PsStudentEnrollment', 'RefDistanceEducationCourseEnrollmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001227', 'PersonStatus', 'StatusStartDate', '11') +VALUES ('000729', 'ELOrganization', 'RefPredominantCalendarSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001228', 'PersonStatus', 'StatusEndDate', '11') +VALUES ('000729', 'PsInstitution', 'RefPredominantCalendarSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001229', 'PsStudentDemographic', 'RefMaternalEducationLevelId', '11') +VALUES ('000730', 'StaffEmployment', 'StandardOccupationalClassification', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001230', 'PsStudentDemographic', 'RefPaternalEducationLevelId', '11') +VALUES ('000731', 'ELStaffEmployment', 'RefIpedsOccupationalCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001231', 'IndividualizedProgram', 'RefIndividualizedProgramDateType', '11') +VALUES ('000731', 'PsStaffEmployment', 'RefIpedsOccupationalCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001232', 'IndividualizedProgram', 'IndividualizedProgramDate', '11') +VALUES ('000732', 'PsStaffEmployment', 'InstructionalStaffStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001233', 'IndividualizedProgram', 'NonInclusionMinutesPerWeek', '11') +VALUES ('000733', 'PsStaffEmployment', 'MedicalSchoolStaffStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001234', 'IndividualizedProgram', 'InclusionMinutesPerWeek', '11') +VALUES ('000734', 'PsStaffEmployment', 'FacultyStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001235', 'IndividualizedProgram', 'RefIndividualizedProgramTransitionTypeId', '11') +VALUES ('000735', 'ELStaffEmployment', 'RefInstructionalStaffContractLengthId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001236', 'IndividualizedProgram', 'ServicePlanDate', '11') +VALUES ('000735', 'PsStaffEmployment', 'RefInstructionalStaffContractLengthId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001237', 'IndividualizedProgram', 'RefIndividualizedProgramLocationId', '11') +VALUES ('000736', 'ELStaffEmployment', 'RefFullTimeStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001238', 'IndividualizedProgram', 'ServicePlanMeetingParticipants', '11') +VALUES ('000736', 'PsStaffEmployment', 'RefFullTimeStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001239', 'IndividualizedProgram', 'ServicePlanSignedBy', '11') +VALUES ('000737', 'ELStaffEmployment', 'RefEmploymentContractTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001240', 'IndividualizedProgram', 'ServicePlanSignatureDate', '11') +VALUES ('000737', 'PsStaffEmployment', 'RefEmploymentContractTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001241', 'IndividualizedProgram', 'ServicePlanReevaluationDate', '11') +VALUES ('000738', 'PsInstitution', 'RefTenureSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001242', 'ProgramParticipationSpecialEducation', 'SpecialEducationFTE', '11') +VALUES ('000739', 'PsStaffEmployment', 'RefInstructionalStaffFacultyTenureId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001242', 'ServicesReceived', 'FullTimeEquivalency', '11') +VALUES ('000740', 'PsStaffEmployment', 'RefAcademicRankId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001244', 'K12ProgramOrService', 'RefProgramGiftedEligibilityId', '11') +VALUES ('000741', 'PsStaffEmployment', 'RefInstructionCreditTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001245', 'CredentialDefCategory', 'CategorySystem', '11') +VALUES ('000742', 'PsStaffEmployment', 'GraduateAssistantStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001246', 'LearningResourceEducationLevel', 'RefEducationLevelId', '11') +VALUES ('000743', 'PsStaffEmployment', 'RefGraduateAssistantIpedsCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001248', 'PersonImmunization', 'RefImmunizationTypeId', '11') +VALUES ('000744', 'ELStaffEmployment', 'AnnualBaseContractualSalary', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001249', 'CompetencyDefinition', 'Notes', '11') +VALUES ('000744', 'PsStaffEmployment', 'AnnualBaseContractualSalary', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001250', 'CompetencyDefinition', 'Version', '11') +VALUES ('000745', 'PsPriceOfAttendance', 'TuitionPublished', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001251', 'AssessmentItemResponseTheory', 'ParameterA', '11') +VALUES ('000746', 'PsPriceOfAttendance', 'RefTuitionUnitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001252', 'AssessmentItemResponseTheory', 'ParameterB', '11') +VALUES ('000747', 'PsPriceOfAttendance', 'RequiredStudentFees', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001253', 'AssessmentItemResponseTheory', 'RefItemResponseTheoryDifficultyCategoryId', '11') +VALUES ('000748', 'PsInstitution', 'InstitutionallyControlledHousingStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001254', 'AssessmentItemResponseTheory', 'ParameterC', '11') +VALUES ('000749', 'PsPriceOfAttendance', 'RoomCharges', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001255', 'AssessmentItemResponseTheory', 'ParameterD1', '11') +VALUES ('000750', 'PsPriceOfAttendance', 'BoardCharges', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001256', 'AssessmentItemResponseTheory', 'ParameterD2', '11') +VALUES ('000751', 'PsPriceOfAttendance', 'BooksAndSuppliesCosts', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001257', 'AssessmentItemResponseTheory', 'ParameterD3', '11') +VALUES ('000752', 'PsPriceOfAttendance', 'OtherStudentExpenses', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001258', 'AssessmentItemResponseTheory', 'ParameterD4', '11') +VALUES ('000753', 'PsPriceOfAttendance', 'PriceOfAttendance', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001259', 'AssessmentItemResponseTheory', 'ParameterD5', '11') +VALUES ('000754', 'PsPriceOfAttendance', 'ComprehensiveFee', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001260', 'AssessmentItemResponseTheory', 'ParameterD6', '11') +VALUES ('000755', 'PsStudentApplication', 'PostsecondaryApplicant', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001261', 'AssessmentItem', 'LinkingItemIndicator', '11') +VALUES ('000756', 'PsStudentApplication', 'RefAdmittedStudentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001262', 'AssessmentItemResponseTheory', 'PointBiserialCorrelationValue', '11') +VALUES ('000757', 'PsStudentApplication', 'WaitListedStudent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001263', 'AssessmentItem', 'ReleaseStatus', '11') +VALUES ('000758', 'PsStudentApplication', 'RefGradePointAverageDomainId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001264', 'AssessmentItemResponseTheory', 'DIFValue', '11') +VALUES ('000759', 'PsStudentApplication', 'HighSchoolPercentile', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001265', 'AssessmentItemResponseTheory', 'KappaValue', '11') +VALUES ('000760', 'PsStudentEnrollment', 'HousingOnCampus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001266', 'AssessmentItemResponseTheory', 'RefItemResponseTheoryKappaAlgorithmId', '11') +VALUES ('000761', 'PsStudentEnrollment', 'FraternityParticipationStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001267', 'AssessmentItem', 'BodyText', '11') +VALUES ('000762', 'PsStudentEnrollment', 'SororityParticipationStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001268', 'AssessmentItem', 'Stimulus', '11') +VALUES ('000763', 'PsStudentFinancialAid', 'FinancialAidApplicant', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001269', 'AssessmentItemPossibleResponse', 'PossibleResponseOption', '11') +VALUES ('000765', 'PsStudentFinancialAid', 'FinancialNeed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001270', 'OrganizationCalendarSession', 'Code', '11') +VALUES ('000766', 'TeacherEducationCredentialExam', 'RefTeacherEducationTestCompanyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001271', 'OrganizationCalendarSession', 'Description', '11') +VALUES ('000767', 'ProgramParticipationTeacherPrep', 'RefTeacherPrepEnrollmentStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001272', 'OrganizationCalendarSession', 'MarkingTermIndicator', '11') +VALUES ('000768', 'ProgramParticipationTeacherPrep', 'RefTeacherPrepCompleterStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001273', 'OrganizationCalendarSession', 'SchedulingTermIndicator', '11') +VALUES ('000769', 'ProgramParticipationTeacherPrep', 'RefAltRouteToCertificationOrLicensureId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001274', 'OrganizationCalendarSession', 'AttendanceTermIndicator', '11') +VALUES ('000770', 'ProgramParticipationTeacherPrep', 'RefCriticalTeacherShortageCandidateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001275', 'OrganizationCalendarEvent', 'EventDate', '11') +VALUES ('000771', 'ProgramParticipationTeacherPrep', 'RefSupervisedClinicalExperienceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001276', 'OrganizationCalendarEvent', 'Name', '11') +VALUES ('000772', 'ProgramParticipationTeacherPrep', 'ClinicalExperienceClockHours', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001277', 'PersonDisability', 'RefAccommodationsNeededTypeId', '11') +VALUES ('000773', 'TeacherEducationCredentialExam', 'RefTeacherEducationCredentialExamId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001278', 'CourseSection', 'RefAdvancedPlacementCourseCodeId', '11') +VALUES ('000774', 'TeacherEducationCredentialExam', 'RefTeacherEducationExamScoreTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001279', 'PDActivityEducationLevel', 'RefPDActivityEducationLevelsAddressedId', '11') +VALUES ('000779', 'ProgramParticipationAE', 'RefAeFunctioningLevelAtIntakeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001281', 'PersonAllergy', 'ReactionDescription', '11') +VALUES ('000780', 'ProgramParticipationAE', 'RefAeFunctioningLevelAtPosttestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001282', 'PersonAllergy', 'RefAllergySeverityId', '11') +VALUES ('000782', 'ProgramParticipationAE', 'RefAeSpecialProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001283', 'PersonAllergy', 'RefAllergyTypeId', '11') +VALUES ('000783', 'AeStudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001284', 'AssessmentItemResponse', 'ResultXML', '11') +VALUES ('000783', 'CteStudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001287', 'ELCourse', 'RefBlendedLearningModelTypeId', '11') +VALUES ('000783', 'K12StudentAcademicRecord', 'RefProfessionalTechnicalCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001287', 'K12Course', 'RefBlendedLearningModelTypeId', '11') +VALUES ('000783', 'PsStudentAcademicRecord', 'RefProfessionalTechCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001287', 'K12SchoolStatus', 'RefBlendedLearningModelTypeId', '11') +VALUES ('000783', 'WorkforceProgramParticipation', 'RefProfessionalTechnicalCredentialTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'AeCourse', 'RefCareerClusterId', '11') +VALUES ('000784', 'ProgramParticipationAE', 'RefAePostsecondaryTransitionActionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'CredentialDefinition', 'RefCareerClusterId', '11') +VALUES ('000786', 'AeStaff', 'RefAeStaffClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'CteCourse', 'RefCareerClusterId', '11') +VALUES ('000787', 'PersonFamily', 'FamilyIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'K12Course', 'RefCareerClusterId', '11') +VALUES ('000788', 'AeStaff', 'YearsOfPriorAeTeachingExperience', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001288', 'PSStudentProgram', 'RefCareerClusterId', '11') +VALUES ('000788', 'StaffExperience', 'YearsOfPriorAETeachingExperience', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001289', 'PersonCareerEducationPlan', 'LastUpdated', '11') +VALUES ('000789', 'ELStaffEducation', 'ECDegreeOrCertificateHolder', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001290', 'PersonCareerEducationPlan', 'RefCareerEducationPlanTypeId', '11') +VALUES ('000790', 'ProgramParticipationAE', 'ProxyContactHours', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001292', 'K12CharterSchoolAuthorizerAgency', 'K12CharterSchoolAuthorizerAgencyId', '11') +VALUES ('000792', 'ELStaffEducation', 'TotalCollegeCreditsEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001292', 'K12CharterSchoolAuthorizerAgency', 'RefCharterSchoolAuthorizerTypeId', '11') +VALUES ('000795', 'RoleStatus', 'StatusEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001293', 'K12School', 'CharterSchoolApprovalYear', '11') +VALUES ('000796', 'ELStaffEmployment', 'HoursWorkedPerWeek', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001296', 'ProgramParticipationAE', 'RefCorrectionalEducationFacilityTypeId', '11') +VALUES ('000797', 'ELStaffEmployment', 'HourlyWage', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001298', 'PsSection', 'GradeValueQualifier', '11') +VALUES ('000798', 'ELStaffEmployment', 'RefWageCollectionMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001299', 'PsStudentCourseSectionMark', 'RefCourseAcademicGradeStatusCodeId', '11') +VALUES ('000799', 'ELStaffEmployment', 'UnionMembershipStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001299', 'PsStudentSection', 'RefCourseAcademicGradeStatusCodeId', '11') +VALUES ('000804', 'ProfessionalDevelopmentRequirement', 'RequiredTrainingClockHours', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001301', 'Course', 'RefCourseApplicableEducationLevelId', '11') +VALUES ('000805', 'PersonCredential', 'RefIssuingStateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001302', 'Course', 'CertificationDescription', '11') +VALUES ('000806', 'ELStaff', 'RefChildDevelopmentAssociateTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001303', 'PsCourse', 'RefCourseCreditBasisTypeId', '11') +VALUES ('000806', 'StaffCredential', 'RefChildDevAssociateTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001304', 'PsCourse', 'RefCourseCreditLevelTypeId', '11') +VALUES ('000809', 'ProfessionalDevelopmentActivity', 'ActivityIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001306', 'K12Course', 'FundingProgram', '11') +VALUES ('000809', 'StaffProfessionalDevelopmentActivity', 'ActivityIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001307', 'PsSection', 'RefCourseHonorsTypeId', '11') +VALUES ('000810', 'ProfessionalDevelopmentActivity', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001308', 'PsSection', 'RefCourseInstructionMethodId', '11') +VALUES ('000810', 'StaffProfessionalDevelopmentActivity', 'ActivityTitle', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001309', 'PsSectionLocation', 'CourseInstructionSiteName', '11') +VALUES ('000811', 'ProfessionalDevelopmentActivity', 'ScholarshipStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001310', 'PsSectionLocation', 'RefCourseInstructionSiteTypeId', '11') +VALUES ('000811', 'StaffProfessionalDevelopmentActivity', 'ScholarshipStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001311', 'K12Course', 'RefCourseInteractionModeId', '11') +VALUES ('000812', 'ProfessionalDevelopmentActivity', 'RefProfessionalDevelopmentFinancialSupportId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001312', 'AeCourse', 'RefCourseLevelTypeId', '11') +VALUES ('000812', 'StaffProfessionalDevelopmentActivity', 'RefProfessionalDevelopmentFinancialSupportId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001312', 'Course', 'RefCourseLevelTypeId', '11') +VALUES ('000813', 'CoreKnowledgeArea', 'RefCoreKnowledgeAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001312', 'CourseSectionLevel', 'RefCourseLevelTypeId', '11') +VALUES ('000816', 'ELStaffEducation', 'SchoolAgeEducationPSCredits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001312', 'PsSection', 'RefCourseLevelTypeId', '11') +VALUES ('000816', 'ProgramParticipationTeacherPrep', 'SchoolAgeEducationPSCredits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001313', 'PsStudentCourseSectionMark', 'CourseNarrativeExplanationGrade', '11') +VALUES ('000818', 'OrganizationAccreditation', 'RefHigherEducationInstitutionAccreditationStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001314', 'PsCourse', 'CourseNumber', '11') +VALUES ('000818', 'PersonDegreeOrCertificate', 'RefHigherEducationInstitutionAccreditationStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001316', 'PsStudentAcademicRecord', 'CourseTotal', '11') +VALUES ('000819', 'ELStaffEmployment', 'RefWageVerificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001317', 'PsStudentAcademicRecord', 'RefCreditHoursAppliedOtherProgramId', '11') +VALUES ('000822', 'ELClassSectionService', 'ServesChildrenWithSpecialNeeds', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001318', 'StaffCredential', 'CTEInstructorIndustryCertification', '11') +VALUES ('000823', 'ELClassSectionService', 'ELClassGroupCurriculumType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001319', 'PersonDisability', 'RefDisabilityConditionStatusCodeId', '11') +VALUES ('000824', 'ELClassSectionService', 'RefELGroupSizeStandardMetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001320', 'PersonDisability', 'RefDisabilityConditionTypeId', '11') +VALUES ('000825', 'ELClassSection', 'ELProgramAnnualOperatingWeeks', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001321', 'PersonDisability', 'RefDisabilityDeterminationSourceTypeId', '11') +VALUES ('000825', 'ELOrganizationAvailability', 'AnnualOperatingWeeks', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001322', 'K12StudentDiscipline', 'IEPPlacementMeetingIndicator', '11') +VALUES ('000828', 'ELProgramLicensing', 'RefELProgramLicenseStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001323', 'PsStudentEnrollment', 'DistanceEducationProgramEnrollmentInd', '11') +VALUES ('000829', 'EarlyChildhoodProgramTypeOffered', 'RefEarlyChildhoodProgramEnrollmentTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001324', 'PsStudentEnrollment', 'DoctoralCandidacyAdmitInd', '11') +VALUES ('000830', 'ELQualityRatingImprovement', 'QrisAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001325', 'PsStudentEnrollment', 'DoctoralCandidacyDate', '11') +VALUES ('000831', 'ELQualityRatingImprovement', 'QRISExpirationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001326', 'PsStudentEnrollment', 'DoctoralExamTakenDate', '11') +VALUES ('000834', 'ELOrganization', 'RefProfitStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001327', 'PsStudentEnrollment', 'RefDoctoralExamsRequiredCodeId', '11') +VALUES ('000835', 'ELProgramLicensing', 'NumberOfFatalities', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001328', 'ELEnrollment', 'RefELFederalFundingTypeId', '11') +VALUES ('000836', 'ELProgramLicensing', 'NumberOfInjuries', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001328', 'ELOrganizationFunds', 'RefELFederalFundingTypeId', '11') +VALUES ('000837', 'ELProgramLicensing', 'LicenseSuspensionStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001329', 'ELClassSection', 'GroupSize', '11') +VALUES ('000838', 'ELProgramLicensing', 'LicenseRevocationStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001330', 'ELOrganizationMonitoring', 'RefOrganizationMonitoringNotificationsId', '11') +VALUES ('000840', 'OrganizationAccreditation', 'AccreditationAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001331', 'ELOrganizationMonitoring', 'VisitStartDate', '11') +VALUES ('000841', 'OrganizationAccreditation', 'AccreditationExpirationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001332', 'ELOrganizationMonitoring', 'VisitEndDate', '11') +VALUES ('000842', 'OrganizationPolicy', 'PolicyType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001333', 'ELOrganizationMonitoring', 'RefPurposeOfMonitoringVisitId', '11') +VALUES ('000843', 'ELQualityRatingImprovement', 'NumberQrisLevels', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001334', 'ELOrganizationMonitoring', 'TypeOfMonitoring', '11') +VALUES ('000844', 'ELOrganizationAvailability', 'NumberOfClassrooms', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001335', 'ELEnrollmentOtherFunding', 'RefELOtherFederalFundingSourcesId', '11') +VALUES ('000851', 'ELQualityInitiative', 'ProgramHeathSafetyChecklistUseStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001335', 'ELOrganizationFunds', 'RefELOtherFederalFundingSourcesId', '11') +VALUES ('000852', 'OrganizationPopulationServed', 'RefPopulationServedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001336', 'AssessmentResult', 'RefELOutcomeMeasurementLevelId', '11') +VALUES ('000857', 'PersonFamily', 'RefCommunicationMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001337', 'ELStaffEducation', 'RefELProfessionalDevelopmentTopicAreaId', '11') +VALUES ('000862', 'LocationAddress', 'RefERSRuralUrbanContinuumCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001338', 'ELChildProgramEligibility', 'ExpirationDate', '11') +VALUES ('000865', 'ELFacilityLicensing', 'StateLicensedFacilityCapacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001339', 'ELChildProgramEligibility', 'RefELProgramEligibilityStatusId', '11') +VALUES ('000866', 'OrganizationEmployeeBenefit', 'FullTimeBenefitIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001340', 'ELChildProgramEligibility', 'StatusDate', '11') +VALUES ('000866', 'OrganizationEmployeeBenefit', 'RefEmployeeBenefitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001341', 'PersonRelationship', 'EmergencyContactInd', '11') +VALUES ('000867', 'OrganizationEmployeeBenefit', 'PartTimeBenefitIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001342', 'QuarterlyEmploymentRecord', 'RefEmployedPriorToEnrollmentId', '11') +VALUES ('000869', 'CompetencyDefAssociation', 'RefCompetencyDefAssociationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001343', 'PsStudentEmployment', 'RefEmploymentStatusWhileEnrolledId', '11') +VALUES ('000870', 'CompetencyDefinition', 'TypicalAgeRange', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001344', 'K12Course', 'FamilyConsumerSciencesCourseInd', '11') +VALUES ('000871', 'CompetencyDefAssociation', 'CompetencyDefAssociationIdentifierURI', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001345', 'FinancialAccount', 'RefFinancialAccountCategoryId', '11') +VALUES ('000872', 'CompetencyDefinition', 'CompetencyDefParentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001346', 'FinancialAccount', 'Description', '11') +VALUES ('000873', 'CompetencyDefinition', 'CompetencyDefParentCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001347', 'FinancialAccount', 'RefFinancialAccountFundClassificationId', '11') +VALUES ('000874', 'CompetencyDefinition', 'URL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001348', 'FinancialAccount', 'Name', '11') +VALUES ('000875', 'CompetencyDefinition', 'RefBloomsTaxonomyDomainId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001349', 'FinancialAccount', 'RefFinancialAccountProgramCodeId', '11') +VALUES ('000876', 'CompetencyDefinition', 'RefMultipleIntelligenceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001350', 'OrganizationFinancial', 'ActualValue', '11') +VALUES ('000877', 'CompetencySet', 'RefCompletionCriteriaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001351', 'OrganizationFinancial', 'BudgetedValue', '11') +VALUES ('000878', 'CompetencySet', 'CompletionCriteriaThreshold', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001352', 'PsStudentFinancialAid', 'FinancialAidIncomeLevel', '11') +VALUES ('000879', 'CompetencyDefAssociation', 'RefLearningResourceCompetencyAlignmentTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001353', 'FinancialAccount', 'RefFinancialAccountBalanceSheetCodeId', '11') +VALUES ('000880', 'CompetencyFramework', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001354', 'FinancialAccount', 'RefFinancialExpenditureFunctionCodeId', '11') +VALUES ('000881', 'CompetencyDefinition', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001355', 'FinancialAccount', 'RefFinancialExpenditureObjectCodeId', '11') +VALUES ('000882', 'CompetencyFramework', 'License', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001356', 'ELClassSectionService', 'RefFrequencyOfServiceId', '11') +VALUES ('000883', 'CompetencyDefinition', 'License', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001357', 'PsStudentEnrollment', 'RefGraduateOrDoctoralExamResultsStatusId', '11') +VALUES ('000884', 'CompetencyFramework', 'Publisher', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001358', 'PersonHealth', 'HealthScreeningEquipmentUsed', '11') +VALUES ('000885', 'CompetencyFramework', 'Rights', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001359', 'PersonHealth', 'HealthScreeningFollowUpRecommendation', '11') +VALUES ('000886', 'CompetencyFramework', 'RightsHolder', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001360', 'ELChildTransitionPlan', 'PartB619PotentialEligibilityInd', '11') +VALUES ('000887', 'CompetencyDefinition', 'ConceptKeyword', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001363', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationOptOutIndicator', '11') +VALUES ('000888', 'CompetencyDefinition', 'ConceptTerm', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001364', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationOptOutDate', '11') +VALUES ('000889', 'AssessmentRegistration', 'AssignedByPersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001365', 'ELChildTransitionPlan', 'TransitionConferenceDate', '11') +VALUES ('000890', 'AssessmentResult', 'DescriptiveFeedback', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001366', 'ELChildTransitionPlan', 'TransitionConferenceDeclineDate', '11') +VALUES ('000891', 'AssessmentItemResponse', 'DescriptiveFeedback', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001367', 'ELChildTransitionPlan', 'DateOfTransitionPlan', '11') +VALUES ('000892', 'CredentialDefCategory', 'Category', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001369', 'Incident', 'RefIncidentMultipleOffenseTypeId', '11') +VALUES ('000893', 'CredentialDefinition', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001370', 'IncidentPerson', 'Identifier', '11') +VALUES ('000894', 'CredentialDefinition', 'ImageUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001371', 'Incident', 'RefIncidentPerpetratorInjuryTypeId', '11') +VALUES ('000895', 'CredentialDefinition', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001372', 'IncidentPerson', 'RefIncidentPersonTypeId', '11') +VALUES ('000896', 'CredentialDefCriteria', 'Criteria', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001373', 'IncidentPerson', 'RefIncidentPersonRoleTypeId', '11') +VALUES ('000900', 'CredentialIssuer', 'AwardIssuerOriginURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001374', 'Incident', 'RegulationViolatedDescription', '11') +VALUES ('000901', 'CredentialAwardEvidence', 'Statement', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001375', 'Incident', 'RelatedToDisabilityManifestationInd', '11') +VALUES ('000902', 'GoalMeasurement', 'SuccessCriteria', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001376', 'Incident', 'ReportedToLawEnforcementInd', '11') +VALUES ('000903', 'Goal', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001381', 'IndividualizedProgramService', 'PlannedServiceStartDate', '11') +VALUES ('000904', 'AssessmentItemPossibleResponse', 'FeedbackMessage', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001383', 'IndividualizedProgramService', 'RefIndividualizedProgramPlannedServiceTypeId', '11') +VALUES ('000905', 'AssessmentItemPossibleResponse', 'SequenceNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001384', 'ELStaffAssignment', 'ItinerantProvider', '11') +VALUES ('000906', 'AssessmentItem', 'TextComplexityValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001386', 'K12Course', 'RefK12EndOfCourseRequirementId', '11') +VALUES ('000907', 'AssessmentItem', 'RefTextComplexitySystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001388', 'ProfessionalDevelopmentSession', 'RefLanguageId', '11') +VALUES ('000908', 'AssessmentItemPossibleResponse', 'Value', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001389', 'LearningResource', 'RefLearningResourceAccessAPITypeId', '11') +VALUES ('000910', 'CompetencyDefinition', 'TextComplexitySystem', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001390', 'LearningResource', 'RefLearningResourceAccessHazardTypeId', '11') +VALUES ('000911', 'LearningResource', 'Url', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001391', 'LearningResource', 'RefLearningResourceAccessModeTypeId', '11') +VALUES ('000912', 'LearningResource', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001392', 'LearningResourceAdaptation', 'AdaptationURL', '11') +VALUES ('000913', 'LearningResource', 'SubjectName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001393', 'LearningResource', 'AssistiveTechnologiesCompatibleInd', '11') +VALUES ('000914', 'LearningResource', 'SubjectCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001394', 'LearningResource', 'RefLearningResourceBookFormatTypeId', '11') +VALUES ('000915', 'LearningResource', 'SubjectCodeSystem', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001395', 'LearningResource', 'RefLearningResourceControlFlexibilityTypeId', '11') +VALUES ('000916', 'LearningResource', 'DateCreated', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001396', 'LearningResource', 'RefLearningResourceDigitalMediaSubTypeId', '11') +VALUES ('000917', 'LearningResource', 'Creator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001397', 'LearningResource', 'RefLearningResourceDigitalMediaTypeId', '11') +VALUES ('000918', 'LearningResource', 'PublisherName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001398', 'LearningResource', 'AdaptedFromURL', '11') +VALUES ('000919', 'LearningResource', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001399', 'LearningResourceMediaFeature', 'RefLearningResourceMediaFeatureTypeId', '11') +VALUES ('000921', 'LearningResource', 'LearningResourceLicenseURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001400', 'LearningResource', 'PeerRatingSampleSize', '11') +VALUES ('000922', 'LearningResource', 'BasedOnUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001401', 'LearningResourcePhysicalMedia', 'RefLearningResourcePhysicalMediaTypeId', '11') +VALUES ('000923', 'LearningResource', 'RefLearningResourceIntendedEndUserRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001402', 'CompetencyDefAssociation', 'ConnectionCitation', '11') +VALUES ('000924', 'LearningResource', 'TimeRequired', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001403', 'CompetencyDefAssociation', 'DestinationNodeName', '11') +VALUES ('000925', 'LearningResource', 'TypicalAgeRangeMinimum', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001404', 'CompetencyDefAssociation', 'DestinationNodeURI', '11') +VALUES ('000926', 'LearningResource', 'TypicalAgeRangeMaximum', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001405', 'CompetencyDefAssociation', 'OriginNodeName', '11') +VALUES ('000927', 'LearningResource', 'RefLearningResourceInteractivityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001406', 'CompetencyDefAssociation', 'OriginNodeURI', '11') +VALUES ('000928', 'LearningResource', 'RefLearningResourceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001407', 'CompetencyDefAssociation', 'Weight', '11') +VALUES ('000929', 'LearningResource', 'TextComplexityValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001408', 'CompetencyDefinition', 'RefCompetencyDefNodeAccessibilityProfileId', '11') +VALUES ('000930', 'LearningResource', 'TextComplexitySystem', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001409', 'CompetencyDefinition', 'ShortName', '11') +VALUES ('000931', 'Assessment', 'ShortName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001411', 'CompetencyDefinition', 'RefCompetencyDefTestabilityTypeId', '11') +VALUES ('000932', 'Assessment', 'AssessmentFamilyTitle', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001412', 'WorkforceEmploymentQuarterlyData', 'MilitaryEnlistmentAfterExit', '11') +VALUES ('000933', 'Assessment', 'AssessmentFamilyShortName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001413', 'PsCourse', 'NCAAEligibilityInd', '11') +VALUES ('000934', 'LearnerAction', 'RefLearnerActionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001414', 'PsCourse', 'RefNCESCollegeCourseMapCodeId', '11') +VALUES ('000935', 'LearnerAction', 'Value', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001415', 'PsStudentDemographic', 'NumberOfDependents', '11') +VALUES ('000937', 'LearnerAction', 'LearnerActionDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001416', 'PsStudentEnrollment', 'OralDefenseCompletedIndicator', '11') +VALUES ('000938', 'LearnerActivity', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001417', 'PsStudentEnrollment', 'OralDefenseDate', '11') +VALUES ('000939', 'LearnerActivity', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001419', 'OrganizationAccreditation', 'SeekingAccreditationDate', '11') +VALUES ('000940', 'LearnerActivity', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001420', 'PsCourse', 'OriginalCourseIdentifier', '11') +VALUES ('000941', 'LearnerActivity', 'Prerequisite', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001421', 'ELChildDemographic', 'OtherRaceIndicator', '11') +VALUES ('000942', 'LearnerActivity', 'RefLearnerActivityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001422', 'PsCourse', 'OverrideSchoolCourseNumber', '11') +VALUES ('000943', 'LearnerActivity', 'CreationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001423', 'PersonRelationship', 'ContactPriorityNumber', '11') +VALUES ('000944', 'LearnerActivity', 'MaximumTimeAllowed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001424', 'PersonRelationship', 'ContactRestrictions', '11') +VALUES ('000945', 'LearnerActivity', 'RefLearnerActivityMaximumTimeAllowedUnitsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001425', 'PersonRelationship', 'LivesWithIndicator', '11') +VALUES ('000946', 'LearnerActivity', 'DueDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001426', 'PsStudentEnrollment', 'PostsecondaryEnteringStudentInd', '11') +VALUES ('000947', 'LearnerActivity', 'DueTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001427', 'PsStudentAcademicRecord', 'EnteringTerm', '11') +VALUES ('000948', 'LearnerActivity', 'MaximumAttemptsAllowed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001428', 'PersonRelationship', 'PrimaryContactIndicator', '11') +VALUES ('000949', 'LearnerActivity', 'RefLearnerActivityAddToGradeBookFlagId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001429', 'PersonCredential', 'ProfessionalCertificateOrLicenseNumber', '11') +VALUES ('000950', 'LearnerActivity', 'ReleaseDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001430', 'ProfessionalDevelopmentActivity', 'RefPDAudienceTypeId', '11') +VALUES ('000951', 'LearnerActivity', 'Weight', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001431', 'ProfessionalDevelopmentSession', 'RefPDDeliveryMethodId', '11') +VALUES ('000952', 'LearnerActivity', 'PossiblePoints', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001432', 'ProfessionalDevelopmentActivity', 'ApprovalCode', '11') +VALUES ('000953', 'LearnerActivity', 'RubricUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001433', 'ProfessionalDevelopmentActivity', 'RefPDActivityApprovedPurposeId', '11') +VALUES ('000954', 'AssessmentItemResponse', 'ScaffoldingItemFlag', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001434', 'ProfessionalDevelopmentActivity', 'ActivityCode', '11') +VALUES ('000955', 'AssessmentItemResponse', 'HintCount', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001435', 'ProfessionalDevelopmentActivity', 'Cost', '11') +VALUES ('000956', 'AssessmentItemResponse', 'HintIncludedAnswer', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001436', 'ProfessionalDevelopmentActivity', 'RefPDActivityCreditTypeId', '11') +VALUES ('000957', 'AssessmentItemResponse', 'FirstAttemptDuration', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001437', 'ProfessionalDevelopmentActivity', 'Credits', '11') +VALUES ('000958', 'AssessmentItemResponse', 'StartTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001438', 'ProfessionalDevelopmentActivity', 'Description', '11') +VALUES ('000959', 'AssessmentItemResponse', 'StartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001439', 'ProfessionalDevelopmentActivity', 'RefPDActivityLevelId', '11') +VALUES ('000961', 'AssessmentAdministration', 'Code', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001440', 'ProfessionalDevelopmentActivity', 'Objective', '11') +VALUES ('000962', 'AssessmentAdministration', 'StartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001442', 'ProfessionalDevelopmentActivity', 'RefPDActivityTypeId', '11') +VALUES ('000963', 'AssessmentAdministration', 'StartTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001443', 'ProfessionalDevelopmentSession', 'FundingSource', '11') +VALUES ('000964', 'AssessmentAdministration', 'FinishDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001445', 'ProfessionalDevelopmentActivity', 'PublishIndicator', '11') +VALUES ('000965', 'AssessmentAdministration', 'FinishTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001446', 'ProfessionalDevelopmentSession', 'Capacity', '11') +VALUES ('000968', 'AssessmentSession', 'SecurityIssue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001447', 'ProfessionalDevelopmentSession', 'EndDate', '11') +VALUES ('000969', 'AssessmentItemResponse', 'SecurityIssue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001448', 'ProfessionalDevelopmentSession', 'EndTime', '11') +VALUES ('000970', 'AssessmentResult', 'DateUpdated', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001449', 'ProfessionalDevelopmentSession', 'EvaluationMethod', '11') +VALUES ('000971', 'AssessmentResult', 'DateCreated', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001450', 'ProfessionalDevelopmentSession', 'EvaluationScore', '11') +VALUES ('000976', 'K12StudentCourseSection', 'RefCourseSectionEnrollmentStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001451', 'ProfessionalDevelopmentSession', 'ExpirationDate', '11') +VALUES ('000977', 'AssessmentAdministration', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001452', 'ProfessionalDevelopmentSession', 'SessionIdentifier', '11') +VALUES ('000979', 'AssessmentForm_AssessmentFormSection', 'SequenceNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001454', 'ProfessionalDevelopmentSession', 'LocationName', '11') +VALUES ('000979', 'AssessmentFormSection_AssessmentItem', 'SequenceNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001455', 'ProfessionalDevelopmentSession', 'StartDate', '11') +VALUES ('000980', 'AssessmentFormSection', 'GUID', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001456', 'ProfessionalDevelopmentSession', 'StartTime', '11') +VALUES ('000981', 'Assessment', 'GUID', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001457', 'ProfessionalDevelopmentSession', 'RefPDSessionStatusId', '11') +VALUES ('000982', 'OrganizationAccreditation', 'RefAccreditationAgencyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001458', 'ProfessionalDevelopmentSession', 'RefPDInstructionalDeliveryModeId', '11') +VALUES ('000984', 'ELFacilityLicensing', 'RefELFacilityLicensingStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001460', 'ELQualityInitiative', 'MaximumScore', '11') +VALUES ('000985', 'OrganizationCalendarSession', 'SessionStartTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001461', 'ELQualityInitiative', 'MinimumScore', '11') +VALUES ('000986', 'OrganizationCalendarSession', 'SessionEndTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001462', 'ELQualityInitiative', 'ScoreLevel', '11') +VALUES ('000987', 'AeStudentEmployment', 'RefEmployedWhileEnrolledId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001463', 'ELQualityInitiative', 'ParticipationIndicator', '11') +VALUES ('000987', 'K12StudentEmployment', 'RefEmployedWhileEnrolledId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001464', 'ELQualityInitiative', 'ParticipationEndDate', '11') +VALUES ('000987', 'PsStudentEmployment', 'RefEmployedWhileEnrolledId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001465', 'ELQualityInitiative', 'ParticipationStartDate', '11') +VALUES ('000987', 'WorkforceEmploymentQuarterlyData', 'RefEmployedWhileEnrolledId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001468', 'FinancialAccount', 'RefFinancialAccountRevenueCodeId', '11') +VALUES ('000988', 'AeStudentEmployment', 'RefEmployedAfterExitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001469', 'RubricCriterion', 'Category', '11') +VALUES ('000988', 'K12StudentEmployment', 'RefEmployedAfterExitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001470', 'RubricCriterion', 'Description', '11') +VALUES ('000988', 'PsStudentEmployment', 'RefEmployedAfterExitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001471', 'RubricCriterionLevel', 'Description', '11') +VALUES ('000988', 'WorkforceEmploymentQuarterlyData', 'RefEmployedAfterExitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001472', 'RubricCriterionLevel', 'Feedback', '11') +VALUES ('000989', 'QuarterlyEmploymentRecord', 'Earnings', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001473', 'RubricCriterionLevel', 'Position', '11') +VALUES ('000990', 'QuarterlyEmploymentRecord', 'RefEmploymentLocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001474', 'RubricCriterionLevel', 'Quality', '11') +VALUES ('000991', 'WorkforceEmploymentQuarterlyData', 'EmployedInMultipleJobsCount', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001475', 'RubricCriterionLevel', 'Score', '11') +VALUES ('000992', 'QuarterlyEmploymentRecord', 'ReferencePeriodStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001476', 'RubricCriterion', 'Position', '11') +VALUES ('000993', 'QuarterlyEmploymentRecord', 'ReferencePeriodEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001477', 'RubricCriterion', 'Title', '11') +VALUES ('000994', 'QuarterlyEmploymentRecord', 'RefERAdministrativeDataSourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001478', 'RubricCriterion', 'Weight', '11') +VALUES ('000997', 'WorkforceProgramParticipation', 'RefWfProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001479', 'Rubric', 'Description', '11') +VALUES ('001002', 'LearningResource', 'RefLearningResourceEducationalUseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001480', 'K12Course', 'SCEDGradeSpan', '11') +VALUES ('001003', 'AssessmentParticipantSession', 'DeliveryDeviceDetails', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001481', 'PersonReferral', 'ReferralDate', '11') +VALUES ('001004', 'AssessmentNeedApipDisplay', 'EncouragementAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001482', 'PersonReferral', 'RefReferralOutcomeId', '11') +VALUES ('001004', 'AssessmentNeedApipDisplay', 'MaskingAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001483', 'PersonReferral', 'Reason', '11') +VALUES ('001004', 'AssessmentPersonalNeedLanguageLearner', 'AssignedSupport', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001484', 'PersonReferral', 'Source', '11') +VALUES ('001004', 'AssessmentPersonalNeedsProfile', 'AssignedSupportFlag', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001485', 'PersonReferral', 'ReferralTypeReceived', '11') +VALUES ('001005', 'AssessmentNeedApipDisplay', 'EncouragementActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001486', 'PersonReferral', 'ReferredTo', '11') +VALUES ('001005', 'AssessmentNeedApipDisplay', 'MaskingActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001487', 'OrganizationDetail', 'ShortName', '11') +VALUES ('001005', 'AssessmentPersonalNeedLanguageLearner', 'ActivateByDefault', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001488', 'ServicePlan', 'ReasonForDeclinedServices', '11') +VALUES ('001005', 'AssessmentPersonalNeedsProfile', 'ActivateByDefault', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001489', 'ProfessionalDevelopmentSession', 'SponsoringAgencyName', '11') +VALUES ('001006', 'Assessment', 'Provider', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001493', 'OrganizationTechnicalAssistance', 'TechnicalAssistanceApprovedInd', '11') +VALUES ('001007', 'AssessmentResult', 'PreliminaryIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001493', 'StaffTechnicalAssistance', 'TechnicalAssistanceApprovedInd', '11') +VALUES ('001008', 'AssessmentResult', 'DiagnosticStatementSource', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001494', 'OrganizationTechnicalAssistance', 'RefTechnicalAssistanceDeliveryTypeId', '11') +VALUES ('001009', 'AssessmentResult', 'NumberOfResponses', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001494', 'StaffTechnicalAssistance', 'RefTechnicalAssistanceDeliveryTypeId', '11') +VALUES ('001010', 'AssessmentSubtest_AssessmentItem', 'ItemWeightCorrect', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001495', 'OrganizationTechnicalAssistance', 'RefTechnicalAssistanceTypeId', '11') +VALUES ('001012', 'AssessmentSubtest_AssessmentItem', 'ItemWeightIncorrect', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001495', 'StaffTechnicalAssistance', 'RefTechnicalAssistanceTypeId', '11') +VALUES ('001013', 'AssessmentSubtest_AssessmentItem', 'ItemWeightNotAttempted', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001496', 'PsStudentEnrollment', 'ThesisOrDissertationTitle', '11') +VALUES ('001014', 'AssessmentSubtest', 'RefAssessmentSubtestIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001497', 'StaffEmployment', 'UnionMembershipName', '11') +VALUES ('001015', 'AssessmentRegistration', 'DaysOfInstructionPriorToAssessment', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001498', 'StaffEmployment', 'WeeksEmployedPerYear', '11') +VALUES ('001016', 'AssessmentRegistration', 'RetestIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'K12Course', 'RefWorkbasedLearningOpportunityTypeId', '11') +VALUES ('001017', 'AssessmentRegistration', 'CreationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'ProgramParticipationAE', 'RefWorkbasedLearningOpportunityTypeId', '11') +VALUES ('001018', 'AssessmentSession', 'RefAssessmentSessionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'ProgramParticipationCte', 'RefWorkbasedLearningOpportunityTypeId', '11') +VALUES ('001019', 'AssessmentSession', 'ScheduledStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'PsSection', 'RefWorkbasedLearningOpportunityTypeId', '11') +VALUES ('001020', 'AssessmentSession', 'ScheduledEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001499', 'PSStudentProgram', 'RefWorkbasedLearningOpportunityTypeId', '11') +VALUES ('001021', 'AssessmentParticipantSession', 'ActualStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001500', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationDate', '11') +VALUES ('001021', 'AssessmentSession', 'ActualStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001501', 'ELChildIndividualizedProgram', 'RefIDEAIEPStatusId', '11') +VALUES ('001022', 'AssessmentParticipantSession', 'ActualEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001503', 'AssessmentResult', 'RefOutcomeTimePointId', '11') +VALUES ('001022', 'AssessmentSession', 'ActualEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001504', 'ELChildOutcomeSummary', 'COSProgressAIndicator', '11') +VALUES ('001023', 'AssessmentPersonalNeedLanguageLearner', 'RefAssessmentNeedsProfileContentLanguageLearnerTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001505', 'ELChildOutcomeSummary', 'COSProgressBIndicator', '11') +VALUES ('001024', 'AssessmentPersonalNeedsProfileContent', 'RefAssessmentNeedHazardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001506', 'ELChildOutcomeSummary', 'COSProgressCIndicator', '11') +VALUES ('001025', 'AssessmentPersonalNeedsProfileContent', 'RefAssessmentNeedSupportToolId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001507', 'ELChildOutcomeSummary', 'COSRatingAId', '11') +VALUES ('001026', 'AssessmentNeedBraille', 'RefAssessmentNeedUsageTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001508', 'ELChildOutcomeSummary', 'COSRatingBId', '11') +VALUES ('001026', 'AssessmentPersonalNeedScreenReader', 'RefAssessmentNeedUsageTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001509', 'ELChildOutcomeSummary', 'COSRatingCId', '11') +VALUES ('001027', 'AssessmentPersonalNeedScreenReader', 'RefAssessmentNeedLinkIndicationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001510', 'IndividualizedProgramService', 'RefMethodOfServiceDeliveryId', '11') +VALUES ('001028', 'AssessmentPersonalNeedScreenReader', 'SpeechRate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001511', 'CompetencyDefinition', 'ValidEndDate', '11') +VALUES ('001029', 'AssessmentPersonalNeedScreenReader', 'Volume', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001512', 'CompetencyDefinition', 'ValidStartDate', '11') +VALUES ('001030', 'AssessmentNeedScreenEnhancement', 'InvertColorChoice', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001513', 'PersonOtherName', 'LastName', '11') +VALUES ('001031', 'AssessmentNeedScreenEnhancement', 'Magnification', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001514', 'PersonOtherName', 'FirstName', '11') +VALUES ('001032', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleGradeTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001515', 'PersonOtherName', 'MiddleName', '11') +VALUES ('001033', 'AssessmentNeedBraille', 'RefAssessmentNeedNumberOfBrailleDotsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001516', 'CteCourse', 'RefSCEDCourseLevelId', '11') +VALUES ('001034', 'AssessmentNeedBraille', 'NumberOfBrailleCells', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001516', 'ELCourse', 'RefSCEDCourseLevelId', '11') +VALUES ('001035', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleMarkTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001516', 'K12Course', 'RefSCEDCourseLevelId', '11') +VALUES ('001036', 'AssessmentNeedBraille', 'BrailleDotPressure', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'CteCourse', 'RefSCEDCourseCodeId', '11') +VALUES ('001037', 'AssessmentNeedBraille', 'RefAssessmentNeedBrailleStatusCellTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'CteCourse', 'SCEDCourseCode', '11') +VALUES ('001038', 'AssessmentNeedApipContent', 'ItemTranslationDisplayLanguageTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'ELCourse', 'RefSCEDCourseCodeId', '11') +VALUES ('001039', 'AssessmentNeedApipContent', 'KeywordTranslationLanguageTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'K12Course', 'RefSCEDCourseCodeId', '11') +VALUES ('001039', 'AssessmentPersonalNeedsProfileContent', 'RefKeywordTranslationsLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001517', 'K12Course', 'SCEDCourseCode', '11') +VALUES ('001040', 'AssessmentNeedApipContent', 'RefAssessmentNeedSigningTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'CteCourse', 'RefSCEDCourseSubjectAreaId', '11') +VALUES ('001041', 'AssessmentNeedApipContent', 'RefAssessmentNeedAlternativeRepresentationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'ELCourse', 'RefSCEDCourseSubjectAreaId', '11') +VALUES ('001042', 'AssessmentNeedApipContent', 'RefAssessmentNeedSpokenSourcePreferenceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'IndividualizedProgramAccommodationSubject', 'RefSCEDCourseSubjectAreaId', '11') +VALUES ('001043', 'AssessmentNeedApipContent', 'ReadAtStartPreferenceIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'K12Course', 'RefSCEDCourseSubjectAreaId', '11') +VALUES ('001044', 'AssessmentNeedApipContent', 'RefAssessmentNeedUserSpokenPreferenceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001518', 'K12StudentGraduationPlan', 'RefSCEDCourseSubjectAreaId', '11') +VALUES ('001045', 'AssessmentNeedApipContent', 'AssessmentNeedDirectionsOnlyIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001519', 'IndividualizedProgramService', 'RefServiceFrequencyId', '11') +VALUES ('001046', 'AssessmentNeedApipDisplay', 'RefAssessmentNeedMaskingTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001520', 'IndividualizedProgramService', 'PlannedServiceDuration', '11') +VALUES ('001047', 'AssessmentNeedApipDisplay', 'EncouragementTextMessagingString', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001521', 'ELChildTransitionPlan', 'RefReasonDelayTransitionConfId', '11') +VALUES ('001048', 'AssessmentNeedApipDisplay', 'EncouragementSoundFileUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001524', 'CompetencyDefinition', 'PreviousVersionIdentifier', '11') +VALUES ('001049', 'AssessmentNeedApipControl', 'AssessmentNeedTimeMultiplier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001525', 'CompetencyDefinition', 'CurrentVersionIndicator', '11') +VALUES ('001050', 'AssessmentNeedApipControl', 'LineReaderHighlightColor', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001526', 'K12School', 'AccreditationAgencyName', '11') +VALUES ('001051', 'AssessmentNeedApipControl', 'OverlayColor', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001526', 'OrganizationAccreditation', 'AccreditationAgencyName', '11') +VALUES ('001052', 'AssessmentNeedScreenEnhancement', 'ForegroundColor', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001527', 'K12StudentActivity', 'ActivityTimeInvolved', '11') +VALUES ('001053', 'AssessmentNeedApipControl', 'BackgroundColor', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001528', 'K12StudentActivity', 'RefActivityTimeMeasurementTypeId', '11') +VALUES ('001054', 'AssessmentNeedApipControl', 'RefAssessmentNeedIncreasedWhitespacingTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001529', 'ApipInteraction', 'APIPInteractionSequenceNumber', '11') +VALUES ('001055', 'AssessmentRegistration', 'TestingIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001530', 'Activity', 'ActivityDescription', '11') +VALUES ('001056', 'AssessmentRegistration', 'ScorePublishDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001531', 'AssessmentAdministration', 'AssessmentAdministrationPeriodDescription', '11') +VALUES ('001058', 'PersonCredential', 'CredentialName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001532', 'AssessmentForm', 'AssessmentFormAdaptiveIndicator', '11') +VALUES ('001059', 'StaffCredential', 'CardiopulmonaryResuscitationCertification', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001533', 'AssessmentForm', 'AssessmentFormAlgorithmIdentifier', '11') +VALUES ('001060', 'StaffCredential', 'FirstAidCertification', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001534', 'AssessmentForm', 'AssessmentFormAlgorithmVersion', '11') +VALUES ('001061', 'StaffProfessionalDevelopmentActivity', 'ActivityStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001535', 'AssessmentForm', 'AssessmentFormGUID', '11') +VALUES ('001062', 'StaffProfessionalDevelopmentActivity', 'ActivityCompletionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001536', 'AssessmentItem', 'AssessmentFormSectionItemFieldTestIndicator', '11') +VALUES ('001917', 'RequiredImmunization', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001537', 'AssessmentItemResponse', 'AssessmentItemResponseDescriptiveFeedbackDate', '11') +VALUES ('001917', 'Role', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001538', 'AssessmentItemResponse', 'RefAssessmentItemResponseScoreStatusId', '11') +VALUES ('001917', 'RoleAttendance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001539', 'AssessmentParticipantSession', 'AssessmentParticipantSessionDatabaseName', '11') +VALUES ('001917', 'RoleAttendanceEvent', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001540', 'AssessmentParticipantSession', 'AssessmentParticipantSessionGUID', '11') +VALUES ('001917', 'RoleStatus', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001541', 'AssessmentRegistration', 'RefAssessmentRegistrationCompletionStatusId', '11') +VALUES ('001917', 'Rubric', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001542', 'AssessmentRegistration', 'AssessmentRegistrationCompletionStatusDateTime', '11') +VALUES ('001917', 'RubricCriterion', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001543', 'AssessmentResult', 'RefAssessmentResultDataTypeId', '11') +VALUES ('001917', 'RubricCriterionLevel', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001544', 'Assessment', 'AssessmentRevisionDate', '11') +VALUES ('001917', 'ServiceFrequency', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001545', 'AssessmentResult', 'AssessmentResultDescriptiveFeedbackDateTime', '11') +VALUES ('001917', 'ServicePlan', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterionLevel', 'DataCollectionId', '11') +VALUES ('001917', 'ServiceProvided', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterionLevel', 'RecordStatusId', '11') +VALUES ('001917', 'ServiceProvider', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterionLevel', 'RubricCriterionId', '11') +VALUES ('001917', 'ServicesReceived', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'RubricCriterionLevel', 'RubricCriterionLevelId', '11') +VALUES ('001917', 'ServiceStaff', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceFrequency', 'DataCollectionId', '11') +VALUES ('001917', 'StaffCompensation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceFrequency', 'RecordStatusId', '11') +VALUES ('001917', 'StaffCredential', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceFrequency', 'ServiceFrequencyId', '11') +VALUES ('001917', 'StaffEmployment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceFrequency', 'ServicePlanId', '11') +VALUES ('001917', 'StaffEvaluation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicePlan', 'DataCollectionId', '11') +VALUES ('001917', 'StaffEvaluationPart', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicePlan', 'OrganizationPersonRoleId', '11') +VALUES ('001917', 'StaffExperience', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicePlan', 'RecordStatusId', '11') +VALUES ('001917', 'StaffProfessionalDevelopmentActivity', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicePlan', 'ServicePlanId', '11') +VALUES ('001917', 'StaffTechnicalAssistance', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvided', 'DataCollectionId', '11') +VALUES ('001917', 'TeacherEducationCredentialExam', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvided', 'RecordStatusId', '11') +VALUES ('001917', 'TeacherStudentDataLinkExclusion', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvided', 'ServiceProvidedId', '11') +VALUES ('001917', 'WorkforceEmploymentQuarterlyData', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvided', 'ServicesReceivedId', '11') +VALUES ('001917', 'WorkforceProgramParticipantCohort', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'DataCollectionId', '11') +VALUES ('001917', 'WorkforceProgramParticipation', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'OrganizationId', '11') +VALUES ('001918', 'Activity', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'RecordStatusId', '11') +VALUES ('001918', 'ActivityRecognition', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'ServiceProvidedId', '11') +VALUES ('001918', 'AeCourse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'ServiceProviderId', '11') +VALUES ('001918', 'AeProvider', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceProvider', 'ServiceStaffId', '11') +VALUES ('001918', 'AeStaff', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'DataCollectionId', '11') +VALUES ('001918', 'AeStudentAcademicRecord', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'AeStudentEmployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'RecordStatusId', '11') +VALUES ('001918', 'ApipInteraction', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'ServicePlanId', '11') +VALUES ('001918', 'Application', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServicesReceived', 'ServicesReceivedId', '11') +VALUES ('001918', 'Assessment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceStaff', 'DataCollectionId', '11') +VALUES ('001918', 'Assessment_AssessmentAdministration', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceStaff', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'AssessmentAccommodation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceStaff', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentAdministration', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ServiceStaff', 'ServiceStaffId', '11') +VALUES ('001918', 'AssessmentAdministration_Organization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCompensation', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentAsset', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCompensation', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentELDevelopmentalDomain', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCompensation', 'StaffCompensationId', '11') +VALUES ('001918', 'AssessmentForm', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCompensation', 'StaffEmploymentId', '11') +VALUES ('001918', 'AssessmentForm_AssessmentAsset', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCredential', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentForm_AssessmentFormSection', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCredential', 'PersonCredentialId', '11') +VALUES ('001918', 'AssessmentFormSection', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCredential', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentFormSection_AssessmentAsset', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffCredential', 'StaffCredentialId', '11') +VALUES ('001918', 'AssessmentFormSection_AssessmentItem', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEmployment', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentItem', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEmployment', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'AssessmentItemApip', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEmployment', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentItemApipDescription', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEmployment', 'StaffEmploymentId', '11') +VALUES ('001918', 'AssessmentItemCharacteristic', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluation', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentItemPossibleResponse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluation', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'AssessmentItemResponse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluation', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentItemResponseTheory', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluation', 'StaffEvaluationId', '11') +VALUES ('001918', 'AssessmentItemRubricCriterionResult', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentLanguage', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'AssessmentLevelsForWhichDesigned', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentNeedApipContent', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'StaffEvaluationId', '11') +VALUES ('001918', 'AssessmentNeedApipControl', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffEvaluationPart', 'StaffEvaluationPartId', '11') +VALUES ('001918', 'AssessmentNeedApipDisplay', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffExperience', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentNeedBraille', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffExperience', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'AssessmentNeedScreenEnhancement', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffExperience', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentParticipantSession', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffExperience', 'StaffExperienceId', '11') +VALUES ('001918', 'AssessmentParticipantSession_Accommodation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentPerformanceLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'AssessmentPersonalNeedLanguageLearner', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityId', '11') +VALUES ('001918', 'AssessmentPersonalNeedScreenReader', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentRequirementId', '11') +VALUES ('001918', 'AssessmentPersonalNeedsProfile', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentSessionId', '11') +VALUES ('001918', 'AssessmentPersonalNeedsProfileContent', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentPersonalNeedsProfileControl', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffProfessionalDevelopmentActivity', 'StaffProfessionalDevelopmentActivityId', '11') +VALUES ('001918', 'AssessmentPersonalNeedsProfileDisplay', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffTechnicalAssistance', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffTechnicalAssistance', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'AssessmentRegistration', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffTechnicalAssistance', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentRegistration_Accommodation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'StaffTechnicalAssistance', 'StaffTechnicalAssistanceId', '11') +VALUES ('001918', 'AssessmentResult', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'AssessmentResultId', '11') +VALUES ('001918', 'AssessmentResult_PerformanceLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentResultRubricCriterionResult', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'ProgramParticipationTeacherPrepId', '11') +VALUES ('001918', 'AssessmentSession', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentSessionStaffRole', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherEducationCredentialExam', 'TeacherEducationCredentialExamId', '11') +VALUES ('001918', 'AssessmentSubtest', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'DataCollectionId', '11') +VALUES ('001918', 'AssessmentSubtest_AssessmentItem', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'K12StaffAssignmentId', '11') +VALUES ('001918', 'AssessmentSubtest_CompetencyDefinition', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'K12StudentCourseSectionId', '11') +VALUES ('001918', 'AssessmentSubtestELDevelopmentalDomain', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'RecordStatusId', '11') +VALUES ('001918', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'TeacherStudentDataLinkExclusion', 'TeacherStudentDataLinkExclusionId', '11') +VALUES ('001918', 'Authentication', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceEmploymentQuarterlyData', 'DataCollectionId', '11') +VALUES ('001918', 'Authorization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceEmploymentQuarterlyData', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'AuthorizationDocument', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceEmploymentQuarterlyData', 'RecordStatusId', '11') +VALUES ('001918', 'BuildingSpace', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceEmploymentQuarterlyData', 'WorkforceEmploymentQuarterlyDataId', '11') +VALUES ('001918', 'BuildingSpaceUtilization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'CohortDescription', '11') +VALUES ('001918', 'BuildingSystemCategory', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'DataCollectionId', '11') +VALUES ('001918', 'BuildingSystemComponent', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'OrganizationPersonRoleId', '11') +VALUES ('001918', 'BuildingSystemComponentService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'RecordStatusId', '11') +VALUES ('001918', 'Classroom', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipantCohort', 'WorkforceProgramParticipantCohortId', '11') +VALUES ('001918', 'CompetencyDefAssociation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipation', 'DataCollectionId', '11') +VALUES ('001918', 'CompetencyDefEducationLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipation', 'PersonProgramParticipationId', '11') +VALUES ('001918', 'CompetencyDefinition', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipation', 'RecordStatusId', '11') +VALUES ('001918', 'CompetencyDefinition_CompetencySet', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'WorkforceProgramParticipation', 'WorkforceProgramParticipationId', '11') +VALUES ('001918', 'CompetencyFramework', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000001', 'PsStudentAcademicAward', 'AcademicAwardDate', '11') +VALUES ('001918', 'CompetencySet', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000002', 'PsStudentAcademicAward', 'RefAcademicAwardLevelId', '11') +VALUES ('001918', 'CompetencySet_Rubric', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000003', 'PsStudentAcademicAward', 'AcademicAwardTitle', '11') +VALUES ('001918', 'CompetencySet_RubricCriterion', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000004', 'K12StudentAcademicHonor', 'RefAcademicHonorTypeId', '11') +VALUES ('001918', 'CoreKnowledgeArea', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000005', 'OrganizationFederalAccountability', 'AccountabilityReportTitle', '11') +VALUES ('001918', 'Course', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000006', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '11') +VALUES ('001918', 'CourseSection', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000007', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001918', 'CourseSectionAssessmentReporting', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000008', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001918', 'CourseSectionLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000009', 'OrganizationDetail', 'Name', '11') +VALUES ('001918', 'CourseSectionLocation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000010', 'PersonAddress', 'RefPersonLocationTypeId', '11') +VALUES ('001918', 'CourseSectionSchedule', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000011', 'OrganizationFederalAccountability', 'RefAypStatusId', '11') +VALUES ('001918', 'CredentialAward', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000012', 'ELOrganizationFunds', 'RefAdministrativeFundingControlId', '11') +VALUES ('001918', 'CredentialAwardCredit', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000012', 'K12School', 'RefAdministrativeFundingControlId', '11') +VALUES ('001918', 'CredentialAwardEvidence', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000012', 'PsInstitution', 'RefAdministrativeFundingControlId', '11') +VALUES ('001918', 'CredentialCriteriaCourse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000013', 'CteCourse', 'CourseAlignedWithStandards', '11') +VALUES ('001918', 'CredentialDefAgent', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000013', 'K12Course', 'CourseAlignedWithStandards', '11') +VALUES ('001918', 'CredentialDefAgentCredential', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000014', 'OrganizationFederalAccountability', 'AlternateAypApproachIndicator', '11') +VALUES ('001918', 'CredentialDefCategory', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000015', 'K12SchoolStatus', 'RefAlternativeSchoolFocusId', '11') +VALUES ('001918', 'CredentialDefCriteria', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000018', 'PsStudentAcademicRecord', 'AdvancedPlacementCreditsAwarded', '11') +VALUES ('001918', 'CredentialDefIdentifier', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000019', 'LocationAddress', 'ApartmentRoomOrSuiteNumber', '11') +VALUES ('001918', 'CredentialDefinition', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000019', 'PersonAddress', 'ApartmentRoomOrSuiteNumber', '11') +VALUES ('001918', 'CredentialIssuer', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000021', 'Assessment', 'RefAcademicSubjectId', '11') +VALUES ('001918', 'CredentialOffered', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000021', 'AssessmentSubtest', 'RefAcademicSubjectId', '11') +VALUES ('001918', 'CteCourse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000024', 'AssessmentForm', 'Name', '11') +VALUES ('001918', 'CteStudentAcademicRecord', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000025', 'AssessmentRegistration', 'RefAssessmentParticipationIndicatorId', '11') +VALUES ('001918', 'EarlyChildhoodCredential', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000026', 'Assessment', 'RefAssessmentPurposeId', '11') +VALUES ('001918', 'EarlyChildhoodProgramTypeOffered', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000026', 'AssessmentRegistration', 'RefAssessmentPurposeId', '11') +VALUES ('001918', 'ELChildDemographic', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000026', 'AssessmentSubtest', 'RefAssessmentPurposeId', '11') +VALUES ('001918', 'ELChildDevelopmentalAssessment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000027', 'CourseSectionAssessmentReporting', 'RefCourseSectionAssessmentReportingMethodId', '11') +VALUES ('001918', 'ELChildHealth', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000028', 'Assessment', 'Title', '11') +VALUES ('001918', 'ELChildIndividualizedProgram', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000029', 'Assessment', 'RefAssessmentTypeId', '11') +VALUES ('001918', 'ELChildOutcomeSummary', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000030', 'CourseSection', 'AvailableCarnegieUnitCredit', '11') +VALUES ('001918', 'ELChildProgramEligibility', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000030', 'CteCourse', 'AvailableCarnegieUnitCredit', '11') +VALUES ('001918', 'ELChildService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000030', 'K12Course', 'AvailableCarnegieUnitCredit', '11') +VALUES ('001918', 'ELChildServicesApplication', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000031', 'ProgramParticipationSpecialEducation', 'AwaitingInitialIDEAEvaluationStatus', '11') +VALUES ('001918', 'ELChildTransitionPlan', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000032', 'StaffCompensation', 'StaffCompensationBaseSalary', '11') +VALUES ('001918', 'ELClassSection', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000033', 'PersonDetail', 'Birthdate', '11') +VALUES ('001918', 'ELClassSectionService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000035', 'PsStudentDemographic', 'RefCampusResidencyTypeId', '11') +VALUES ('001918', 'ELCourse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000036', 'ProgramParticipationCte', 'CteCompleter', '11') +VALUES ('001918', 'ELEnrollment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000037', 'ProgramParticipationCte', 'CteConcentrator', '11') +VALUES ('001918', 'ELEnrollmentOtherFunding', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000038', 'PsInstitution', 'RefCarnegieBasicClassificationId', '11') +VALUES ('001918', 'ELFacilityLicensing', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000039', 'K12Lea', 'CharterSchoolIndicator', '11') +VALUES ('001918', 'EligibilityEvaluation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000039', 'K12School', 'CharterSchoolIndicator', '11') +VALUES ('001918', 'ELOrganization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000040', 'LocationAddress', 'City', '11') +VALUES ('001918', 'ELOrganizationAvailability', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000040', 'PersonAddress', 'City', '11') +VALUES ('001918', 'ELOrganizationFunds', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000041', 'K12StudentAcademicRecord', 'HighSchoolStudentClassRank', '11') +VALUES ('001918', 'ELOrganizationMonitoring', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000041', 'PsStudentApplication', 'HighSchoolStudentClassRank', '11') +VALUES ('001918', 'ELProgramLicensing', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000042', 'K12StudentAcademicRecord', 'ClassRankingDate', '11') +VALUES ('001918', 'ELQualityInitiative', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000043', 'CredentialDefinition', 'RefCipCodeId', '11') +VALUES ('001918', 'ELQualityRatingImprovement', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000043', 'PsCourse', 'RefCipCodeId', '11') +VALUES ('001918', 'ELServicePartner', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000043', 'PsProgram', 'RefCipCodeId', '11') +VALUES ('001918', 'ELStaff', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000043', 'PsSection', 'RefCipCodeId', '11') +VALUES ('001918', 'ELStaffAssignment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000044', 'PSStudentProgram', 'RefCipUseId', '11') +VALUES ('001918', 'ELStaffEducation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000045', 'PsProgram', 'RefCipVersionId', '11') +VALUES ('001918', 'ELStaffEmployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000046', 'K12StudentCohort', 'CohortYear', '11') +VALUES ('001918', 'Facility', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000047', 'ELStaffEmployment', 'ContractDaysOfServicePerYear', '11') +VALUES ('001918', 'FacilityAudit', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000047', 'K12StaffEmployment', 'ContractDaysOfServicePerYear', '11') +VALUES ('001918', 'FacilityCompliance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000048', 'ELOrganization', 'RefControlOfInstitutionId', '11') +VALUES ('001918', 'FacilityDesign', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000048', 'PsInstitution', 'RefControlOfInstitutionId', '11') +VALUES ('001918', 'FacilityDesignConstruction', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000049', 'K12SchoolCorrectiveAction', 'RefCorrectiveActionTypeId', '11') +VALUES ('001918', 'FacilityEnergy', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000050', 'PersonAddress', 'RefCountryId', '11') +VALUES ('001918', 'FacilityFinance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000051', 'PersonBirthplace', 'RefCountryId', '11') +VALUES ('001918', 'FacilityFinancial', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000053', 'PsStudentSection', 'AcademicGrade', '11') +VALUES ('001918', 'FacilityHazard', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000054', 'CourseSection', 'OrganizationCalendarSessionId', '11') +VALUES ('001918', 'FacilityJointUse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000054', 'OrganizationCalendarSession', 'BeginDate', '11') +VALUES ('001918', 'FacilityLease', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000055', 'OrganizationIdentifier', 'Identifier', '11') +VALUES ('001918', 'FacilityLocation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000056', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '11') +VALUES ('001918', 'FacilityManagement', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000057', 'Course', 'RefCourseCreditUnitId', '11') +VALUES ('001918', 'FacilityManagementPlan', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000057', 'ProfessionalDevelopmentActivity', 'RefCourseCreditUnitId', '11') +VALUES ('001918', 'FacilityMandate', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000057', 'StaffProfessionalDevelopmentActivity', 'RefCourseCreditUnitId', '11') +VALUES ('001918', 'FacilityMortgage', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000058', 'Course', 'CreditValue', '11') +VALUES ('001918', 'FacilityMortgageFee', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000059', 'OrganizationCalendarSession', 'EndDate', '11') +VALUES ('001918', 'FacilityRelationship', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000060', 'CteCourse', 'RefCourseGPAApplicabilityId', '11') +VALUES ('001918', 'FacilitySchoolDesign', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000060', 'K12Course', 'RefCourseGPAApplicabilityId', '11') +VALUES ('001918', 'FacilitySite', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000060', 'K12StudentCourseSection', 'RefCourseGPAApplicabilityId', '11') +VALUES ('001918', 'FacilityUtilization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000060', 'PsSection', 'RefCourseGPAApplicabilityId', '11') +VALUES ('001918', 'FinancialAccount', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000061', 'Course', 'RefCourseLevelCharacteristicsId', '11') +VALUES ('001918', 'FinancialAccountProgram', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000063', 'PsStudentSection', 'CourseOverrideSchool', '11') +VALUES ('001918', 'FinancialAidApplication', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000064', 'PsStudentSection', 'QualityPointsEarned', '11') +VALUES ('001918', 'FinancialAidAward', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000065', 'K12StudentCourseSection', 'RefCourseRepeatCodeId', '11') +VALUES ('001918', 'Goal', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000065', 'PsStudentSection', 'RefCourseRepeatCodeId', '11') +VALUES ('001918', 'GoalMeasurement', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000066', 'Course', 'SubjectAbbreviation', '11') +VALUES ('001918', 'GoalMeasurementCriterion', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000069', 'PersonCredential', 'ExpirationDate', '11') +VALUES ('001918', 'GoalPerformance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000070', 'PersonCredential', 'IssuanceDate', '11') +VALUES ('001918', 'IDEAEligibilityEvaluationCategory', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000071', 'PersonCredential', 'RefCredentialTypeId', '11') +VALUES ('001918', 'IEPAuthorization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000072', 'CteCourse', 'RefCreditTypeEarnedId', '11') +VALUES ('001918', 'IEPAuthorizationRejected', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000072', 'K12StudentCourseSection', 'RefCreditTypeEarnedId', '11') +VALUES ('001918', 'IEPPresentLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000073', 'CteStudentAcademicRecord', 'CreditsAttemptedCumulative', '11') +VALUES ('001918', 'Incident', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000073', 'K12StudentAcademicRecord', 'CreditsAttemptedCumulative', '11') +VALUES ('001918', 'IncidentPerson', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000073', 'PsStudentAcademicRecord', 'CreditsAttemptedCumulative', '11') +VALUES ('001918', 'IndividualizedProgram', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000074', 'CteStudentAcademicRecord', 'CreditsEarnedCumulative', '11') +VALUES ('001918', 'IndividualizedProgramAccommodation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000074', 'K12StudentAcademicRecord', 'CreditsEarnedCumulative', '11') +VALUES ('001918', 'IndividualizedProgramAccommodationSubject', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000074', 'PsStudentAcademicRecord', 'CreditsEarnedCumulative', '11') +VALUES ('001918', 'IndividualizedProgramAmendment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000075', 'OrganizationFederalAccountability', 'RefCteGraduationRateInclusionId', '11') +VALUES ('001918', 'IndividualizedProgramAssessment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000076', 'RoleAttendanceEvent', 'RefAttendanceStatusId', '11') +VALUES ('001918', 'IndividualizedProgramAssessmentAccommodation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000077', 'PsStudentSection', 'DegreeApplicability', '11') +VALUES ('001918', 'IndividualizedProgramEligibility', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000078', 'PsStudentEnrollment', 'DegreeOrCertificateSeekingStudent', '11') +VALUES ('001918', 'IndividualizedProgramEligibilityEvaluation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000079', 'PsStudentDemographic', 'RefDependencyStatusId', '11') +VALUES ('001918', 'IndividualizedProgramGoal', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000080', 'K12LeaFederalReporting', 'DesegregationOrderOrPlan', '11') +VALUES ('001918', 'IndividualizedProgramMeeting', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'AeStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '11') +VALUES ('001918', 'IndividualizedProgramMeetingAttendee', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'CteStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '11') +VALUES ('001918', 'IndividualizedProgramProgressGoal', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'K12StudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '11') +VALUES ('001918', 'IndividualizedProgramProgressReport', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'PsStudentAcademicRecord', 'DiplomaOrCredentialAwardDate', '11') +VALUES ('001918', 'IndividualizedProgramProgressReportPlan', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'StaffCredential', 'DiplomaOrCredentialAwardDate', '11') +VALUES ('001918', 'IndividualizedProgramService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'WorkforceProgramParticipation', 'DiplomaOrCredentialAwardDate', '11') +VALUES ('001918', 'IndividualizedProgramServicesReceived', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000081', 'PersonDegreeOrCertificate', 'AwardDate', '11') +VALUES ('001918', 'IPEDSFinance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000082', 'K12StudentDiscipline', 'DisciplinaryActionEndDate', '11') +VALUES ('001918', 'K12CharterSchoolAuthorizerAgency', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000083', 'K12StudentDiscipline', 'DisciplinaryActionStartDate', '11') +VALUES ('001918', 'K12CharterSchoolManagementOrganization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000084', 'ProgramParticipationAE', 'DisplacedHomemakerIndicator', '11') +VALUES ('001918', 'K12Course', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000084', 'ProgramParticipationCte', 'DisplacedHomemakerIndicator', '11') +VALUES ('001918', 'K12FederalFundAllocation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000085', 'PsStudentAcademicRecord', 'DualCreditDualEnrollmentCredits', '11') +VALUES ('001918', 'K12Lea', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000086', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001918', 'K12LeaFederalFunds', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000087', 'ELStaffAssignment', 'RefK12StaffClassificationId', '11') +VALUES ('001918', 'K12LeaFederalReporting', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000087', 'K12StaffAssignment', 'RefK12StaffClassificationId', '11') +VALUES ('001918', 'K12LeaGradeLevelsApproved', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000087', 'K12StaffEmployment', 'RefK12StaffClassificationId', '11') +VALUES ('001918', 'K12LeaGradeOffered', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000088', 'OrganizationEmail', 'ElectronicMailAddress', '11') +VALUES ('001918', 'K12LeaPreKEligibility', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000151', 'PersonStatus', 'RefPersonStatusTypeId', '11') +VALUES ('001918', 'K12LeaPreKEligibleAgesIDEA', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000326', 'OrganizationPersonRole', 'EntryDate', '11') +VALUES ('001918', 'K12LeaSafeDrugFree', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000327', 'OrganizationPersonRole', 'ExitDate', '11') +VALUES ('001918', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000347', 'RoleStatus', 'RefRoleStatusId', '11') +VALUES ('001918', 'K12LeaTitleISupportService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000410', 'PersonIdentifier', 'Identifier', '11') +VALUES ('001918', 'K12OrganizationStudentResponsibility', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000088', 'PersonEmailAddress', 'EmailAddress', '11') +VALUES ('001918', 'K12ProgramOrService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000089', 'OrganizationEmail', 'RefEmailTypeId', '11') +VALUES ('001918', 'K12School', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000089', 'PersonEmailAddress', 'RefEmailTypeId', '11') +VALUES ('001918', 'K12SchoolCorrectiveAction', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000091', 'OrganizationFederalAccountability', 'RefElementaryMiddleAdditionalId', '11') +VALUES ('001918', 'K12SchoolGradeLevelsApproved', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000092', 'K12StudentEnrollment', 'RefFoodServiceEligibilityId', '11') +VALUES ('001918', 'K12SchoolGradeOffered', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000093', 'K12StudentEnrollment', 'RefEndOfTermStatusId', '11') +VALUES ('001918', 'K12SchoolImprovement', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000094', 'K12StudentEnrollment', 'RefEnrollmentStatusId', '11') +VALUES ('001918', 'K12SchoolIndicatorStatus', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000094', 'RoleStatus', 'RefRoleStatusId', '11') +VALUES ('001918', 'K12SchoolStatus', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000095', 'PsStudentEnrollment', 'RefPsEnrollmentTypeId', '11') +VALUES ('001918', 'K12Sea', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000096', 'PsStudentEnrollment', 'RefPsEnrollmentStatusId', '11') +VALUES ('001918', 'K12SeaAlternateFundUse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000098', 'PsStudentEnrollment', 'EntryDateIntoPostsecondary', '11') +VALUES ('001918', 'K12SeaFederalFunds', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000099', 'K12StudentEnrollment', 'RefEntryType', '11') +VALUES ('001918', 'K12StaffAssignment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000100', 'K12StudentEnrollment', 'RefEntryGradeLevelId', '11') +VALUES ('001918', 'K12StaffEmployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000101', 'CourseSection', 'TimeRequiredForCompletion', '11') +VALUES ('001918', 'K12StudentAcademicHonor', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000102', 'StaffEvaluation', 'Outcome', '11') +VALUES ('001918', 'K12StudentAcademicRecord', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000103', 'StaffEvaluation', 'Scale', '11') +VALUES ('001918', 'K12StudentActivity', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000104', 'StaffEvaluation', 'ScoreOrRating', '11') +VALUES ('001918', 'K12StudentCohort', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000105', 'StaffEvaluation', 'System', '11') +VALUES ('001918', 'K12StudentCourseSection', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000106', 'PsStudentDemographic', 'RefCohortExclusionId', '11') +VALUES ('001918', 'K12StudentCourseSectionMark', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000108', 'ELEnrollment', 'RefExitOrWithdrawalStatusId', '11') +VALUES ('001918', 'K12StudentDiscipline', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000108', 'K12StudentCourseSection', 'RefExitOrWithdrawalStatusId', '11') +VALUES ('001918', 'K12StudentEmployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000108', 'K12StudentEnrollment', 'RefExitOrWithdrawalStatusId', '11') +VALUES ('001918', 'K12StudentEnrollment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000110', 'K12StudentEnrollment', 'RefExitOrWithdrawalTypeId', '11') +VALUES ('001918', 'K12StudentGraduationPlan', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000112', 'FinancialAidAward', 'FinancialAidAwardAmount', '11') +VALUES ('001918', 'K12StudentHomeLanguageSurvey', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000113', 'FinancialAidAward', 'RefFinancialAidAwardTypeId', '11') +VALUES ('001918', 'K12StudentLiteracyAssessment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000115', 'PersonDetail', 'FirstName', '11') +VALUES ('001918', 'K12StudentSession', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000117', 'PsStudentEnrollment', 'FirstTimePostsecondaryStudent', '11') +VALUES ('001918', 'K12TitleIIILanguageInstruction', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000118', 'ELStaffAssignment', 'FullTimeEquivalency', '11') +VALUES ('001918', 'LearnerAction', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000118', 'K12StaffAssignment', 'FullTimeEquivalency', '11') +VALUES ('001918', 'LearnerActivity', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000118', 'StaffEmployment', 'FullTimeEquivalency', '11') +VALUES ('001918', 'LearnerActivity_LearningResource', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000120', 'PersonProgramParticipation', 'RefParticipationTypeId', '11') +VALUES ('001918', 'LearningResource', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000121', 'PersonDetail', 'GenerationCode', '11') +VALUES ('001918', 'LearningResourceAdaptation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000122', 'PersonProgramParticipation', 'ParticipationStatus', '11') +VALUES ('001918', 'LearningResourceEducationLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000123', 'K12StudentAcademicRecord', 'RefGpaWeightedIndicatorId', '11') +VALUES ('001918', 'LearningResourceMediaFeature', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000123', 'PsStudentApplication', 'RefGpaWeightedIndicatorId', '11') +VALUES ('001918', 'LearningResourcePeerRating', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000124', 'K12StudentCourseSection', 'GradeEarned', '11') +VALUES ('001918', 'LearningResourcePhysicalMedia', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000124', 'K12StudentCourseSectionMark', 'GradeEarned', '11') +VALUES ('001918', 'Location', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000125', 'K12StudentCourseSection', 'RefGradeLevelWhenCourseTakenId', '11') +VALUES ('001918', 'LocationAddress', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000125', 'K12StudentGraduationPlan', 'RefGradeLevelWhenCourseTakenId', '11') +VALUES ('001918', 'Organization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000126', 'AssessmentRegistration', 'RefGradeLevelToBeAssessedId', '11') +VALUES ('001918', 'OrganizationAccreditation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000126', 'AssessmentRegistration', 'RefGradeLevelWhenAssessedId', '11') +VALUES ('001918', 'OrganizationCalendar', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000127', 'PsStudentAcademicRecord', 'GradePointAverage', '11') +VALUES ('001918', 'OrganizationCalendarCrisis', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000128', 'K12StudentAcademicRecord', 'GradePointAverageCumulative', '11') +VALUES ('001918', 'OrganizationCalendarDay', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000128', 'PsStudentAcademicRecord', 'GradePointAverageCumulative', '11') +VALUES ('001918', 'OrganizationCalendarEvent', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000128', 'PsStudentApplication', 'GradePointAverageCumulative', '11') +VALUES ('001918', 'OrganizationCalendarSession', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000129', 'K12StudentSession', 'GradePointAverageGivenSession', '11') +VALUES ('001918', 'OrganizationDetail', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000130', 'K12StudentAcademicRecord', 'GradePointsEarnedCumulative', '11') +VALUES ('001918', 'OrganizationEmail', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000131', 'K12LeaGradeOffered', 'RefGradeLevelId', '11') +VALUES ('001918', 'OrganizationEmployeeBenefit', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000131', 'K12SchoolGradeOffered', 'RefGradeLevelId', '11') +VALUES ('001918', 'OrganizationEnrollmentCapacity', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000132', 'K12StudentCohort', 'GraduationRateSurveyCohortYear', '11') +VALUES ('001918', 'OrganizationFederalAccountability', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000133', 'K12StudentCohort', 'GraduationRateSurveyIndicator', '11') +VALUES ('001918', 'OrganizationFinancial', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000134', 'OrganizationFederalAccountability', 'RefGunFreeSchoolsActReportingStatusId', '11') +VALUES ('001918', 'OrganizationFinancialFinancialAccountLocal', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000135', 'K12LeaFederalReporting', 'HarassmentOrBullyingPolicy', '11') +VALUES ('001918', 'OrganizationIdentifier', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000136', 'StaffCompensation', 'StaffCompensationHealthBenefits', '11') +VALUES ('001918', 'OrganizationImage', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000137', 'CteCourse', 'HighSchoolCourseRequirement', '11') +VALUES ('001918', 'OrganizationIndicator', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000137', 'K12Course', 'HighSchoolCourseRequirement', '11') +VALUES ('001918', 'OrganizationLocation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000138', 'AeStudentAcademicRecord', 'RefHighSchoolDiplomaTypeId', '11') +VALUES ('001918', 'OrganizationOperationalStatus', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000138', 'K12StudentAcademicRecord', 'RefHighSchoolDiplomaTypeId', '11') +VALUES ('001918', 'OrganizationPersonRole', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000140', 'OrganizationFederalAccountability', 'RefHighSchoolGraduationRateIndicatorId', '11') +VALUES ('001918', 'OrganizationPersonRoleApplication', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000141', 'PersonDetail', 'RefHighestEducationLevelCompletedId', '11') +VALUES ('001918', 'OrganizationPersonRoleFTE', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000141', 'PersonFamily', 'RefHighestEducationLevelCompletedId', '11') +VALUES ('001918', 'OrganizationPolicy', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000142', 'K12StaffAssignment', 'HighlyQualifiedTeacherIndicator', '11') +VALUES ('001918', 'OrganizationPopulationServed', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000143', 'StaffEmployment', 'HireDate', '11') +VALUES ('001918', 'OrganizationProgramType', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000144', 'PersonDetail', 'HispanicLatinoEthnicity', '11') +VALUES ('001918', 'OrganizationProjectBasedLearning', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000146', 'PersonHomelessness', 'RefHomelessNighttimeResidenceId', '11') +VALUES ('001918', 'OrganizationRelationship', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000149', 'PersonHomelessness', 'HomelessnessStatus', '11') +VALUES ('001918', 'OrganizationService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000150', 'K12StudentAcademicHonor', 'HonorDescription', '11') +VALUES ('001918', 'OrganizationTechnicalAssistance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000164', 'K12School', 'RefIncreasedLearningTimeTypeId', '11') +VALUES ('001918', 'OrganizationTelephone', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000164', 'PsInstitution', 'RefIncreasedLearningTimeTypeId', '11') +VALUES ('001918', 'OrganizationWebsite', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000165', 'PsStudentEnrollment', 'InitialEnrollmentTerm', '11') +VALUES ('001918', 'PDActivityEducationLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000167', 'OrganizationTelephone', 'RefInstitutionTelephoneTypeId', '11') +VALUES ('001918', 'PeerRatingSystem', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000168', 'PsStudentEnrollment', 'InstructionalActivityHoursAttempted', '11') +VALUES ('001918', 'Person', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000169', 'PsStudentEnrollment', 'RefInstructionalActivityHoursId', '11') +VALUES ('001918', 'Person_AssessmentPersonalNeedsProfile', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000170', 'K12LeaFederalReporting', 'RefIntegratedTechnologyStatusId', '11') +VALUES ('001918', 'PersonAddress', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000171', 'ProgramParticipationMigrant', 'LastQualifyingMoveDate', '11') +VALUES ('001918', 'PersonAddressNcesSide', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000172', 'PersonDetail', 'LastName', '11') +VALUES ('001918', 'PersonAllergy', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000173', 'K12Lea', 'RefLeaImprovementStatusId', '11') +VALUES ('001918', 'PersonBirthplace', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000174', 'OrganizationOperationalStatus', 'RefOperationalStatusId', '11') +VALUES ('001918', 'PersonCareerEducationPlan', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000175', 'K12Lea', 'SupervisoryUnionIdentificationNumber', '11') +VALUES ('001918', 'PersonCredential', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000178', 'AeProvider', 'RefLevelOfInstitutionId', '11') +VALUES ('001918', 'PersonDegreeOrCertificate', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000178', 'PsInstitution', 'RefLevelOfInstitutionId', '11') +VALUES ('001918', 'PersonDemographicRace', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000181', 'K12SchoolStatus', 'RefMagnetSpecialProgramId', '11') +VALUES ('001918', 'PersonDetail', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000182', 'K12StudentCourseSectionMark', 'MarkingPeriodName', '11') +VALUES ('001918', 'PersonDigitalAccess', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000183', 'K12StudentCourseSectionMark', 'MidTermMark', '11') +VALUES ('001918', 'PersonDigitalAccessSpeed', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000184', 'PersonDetail', 'MiddleName', '11') +VALUES ('001918', 'PersonDisability', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000186', 'ProgramParticipationMigrant', 'RefMepServiceTypeId', '11') +VALUES ('001918', 'PersonEmailAddress', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000187', 'K12ProgramOrService', 'RefMepSessionTypeId', '11') +VALUES ('001918', 'PersonFamily', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000188', 'K12StaffAssignment', 'RefMepStaffCategoryId', '11') +VALUES ('001918', 'PersonHealth', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000190', 'LocationAddress', 'CountyName', '11') +VALUES ('001918', 'PersonHealthBirth', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000190', 'PersonAddress', 'AddressCountyName', '11') +VALUES ('001918', 'PersonHomelessness', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000191', 'PersonDegreeOrCertificate', 'NameOfInstitution', '11') +VALUES ('001918', 'PersonIdentifier', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000194', 'ProgramParticipationNeglected', 'RefNeglectedProgramTypeId', '11') +VALUES ('001918', 'PersonImmunization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000196', 'PersonDetail', 'RefVisaTypeId', '11') +VALUES ('001918', 'PersonLanguage', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000197', 'PsProgram', 'NormalLengthTimeForCompletion', '11') +VALUES ('001918', 'PersonLearningDevice', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000198', 'PsProgram', 'RefTimeForCompletionUnitsId', '11') +VALUES ('001918', 'PersonMaster', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000199', 'K12StudentCourseSection', 'NumberOfCreditsAttempted', '11') +VALUES ('001918', 'PersonMilitary', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000199', 'PsStudentAcademicRecord', 'NumberOfCreditsAttempted', '11') +VALUES ('001918', 'PersonOtherName', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000199', 'PsStudentSection', 'NumberOfCreditsAttempted', '11') +VALUES ('001918', 'PersonPersonalInformationVerification', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000200', 'K12StudentCourseSection', 'NumberOfCreditsEarned', '11') +VALUES ('001918', 'PersonProgramParticipation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000200', 'PsStudentSection', 'NumberOfCreditsEarned', '11') +VALUES ('001918', 'PersonReferral', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000200', 'StaffProfessionalDevelopmentActivity', 'NumberOfCreditsEarned', '11') +VALUES ('001918', 'PersonRelationship', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000201', 'RoleAttendance', 'NumberOfDaysAbsent', '11') +VALUES ('001918', 'PersonStatus', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000202', 'ELEnrollment', 'NumberOfDaysInAttendance', '11') +VALUES ('001918', 'PersonTelephone', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000202', 'RoleAttendance', 'NumberOfDaysInAttendance', '11') +VALUES ('001918', 'ProfessionalDevelopmentActivity', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000205', 'StaffCompensation', 'StaffCompensationOtherBenefits', '11') +VALUES ('001918', 'ProfessionalDevelopmentRequirement', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000206', 'PersonOtherName', 'OtherName', '11') +VALUES ('001918', 'ProfessionalDevelopmentSession', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000207', 'StaffCredential', 'RefParaprofessionalQualificationId', '11') +VALUES ('001918', 'ProfessionalDevelopmentSessionInstructor', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000208', 'OrganizationFederalAccountability', 'RefParticipationStatusMathId', '11') +VALUES ('001918', 'Program', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000209', 'OrganizationFederalAccountability', 'RefParticipationStatusRlaId', '11') +VALUES ('001918', 'ProgramParticipationAE', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000210', 'OrganizationFederalAccountability', 'PersistentlyDangerousStatus', '11') +VALUES ('001918', 'ProgramParticipationAttainment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000211', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '11') +VALUES ('001918', 'ProgramParticipationCte', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000212', 'PersonDetail', 'Prefix', '11') +VALUES ('001918', 'ProgramParticipationFoodService', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000213', 'StaffEmployment', 'PositionTitle', '11') +VALUES ('001918', 'ProgramParticipationMigrant', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000214', 'LocationAddress', 'PostalCode', '11') +VALUES ('001918', 'ProgramParticipationNeglected', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000214', 'PersonAddress', 'PostalCode', '11') +VALUES ('001918', 'ProgramParticipationSpecialEducation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000216', 'K12LeaPreKEligibility', 'RefPrekindergartenEligibilityId', '11') +VALUES ('001918', 'ProgramParticipationTeacherPrep', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000217', 'K12LeaPreKEligibleAgesIDEA', 'RefPreKEligibleAgesNonIDEAId', '11') +VALUES ('001918', 'ProgramParticipationTitleI', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000218', 'PersonDisability', 'PrimaryDisabilityTypeId', '11') +VALUES ('001918', 'ProgramParticipationTitleIIILep', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000219', 'OrganizationTelephone', 'PrimaryTelephoneNumberIndicator', '11') +VALUES ('001918', 'ProgramParticipationWIOA', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000219', 'PersonTelephone', 'PrimaryTelephoneNumberIndicator', '11') +VALUES ('001918', 'ProgramParticipationWIOABarriers', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000220', 'ELStaffAssignment', 'RefProfessionalEducationJobClassificationId', '11') +VALUES ('001918', 'PsCourse', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000220', 'K12StaffAssignment', 'RefProfessionalEducationJobClassificationId', '11') +VALUES ('001918', 'PsInstitution', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000221', 'OrganizationFederalAccountability', 'RefProficiencyTargetStatusMathId', '11') +VALUES ('001918', 'PsPriceOfAttendance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000222', 'PersonProgramParticipation', 'RefProgramExitReasonId', '11') +VALUES ('001918', 'PsProgram', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000223', 'PsProgram', 'ProgramLengthHours', '11') +VALUES ('001918', 'PsSection', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000224', 'PsProgram', 'RefProgramLengthHoursTypeId', '11') +VALUES ('001918', 'PsSectionLocation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000225', 'OrganizationProgramType', 'RefProgramTypeId', '11') +VALUES ('001918', 'PsStaffEmployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000226', 'K12StudentAcademicRecord', 'ProjectedGraduationDate', '11') +VALUES ('001918', 'PsStudentAcademicAward', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000227', 'K12Lea', 'RefPublicSchoolChoiceStatusId', '11') +VALUES ('001918', 'PsStudentAcademicRecord', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000228', 'AssessmentRegistration', 'RefAssessmentReasonNotTestedId', '11') +VALUES ('001918', 'PsStudentAdmissionTest', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000229', 'ActivityRecognition', 'RefActivityRecognitionTypeId', '11') +VALUES ('001918', 'PsStudentApplication', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000230', 'OrganizationFederalAccountability', 'RefReconstitutedStatusId', '11') +VALUES ('001918', 'PsStudentCohort', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000231', 'CourseSection', 'RelatedCompetencyDefinitions', '11') +VALUES ('001918', 'PsStudentCourseSectionMark', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000232', 'K12SchoolStatus', 'RefRestructuringActionId', '11') +VALUES ('001918', 'PsStudentDemographic', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000233', 'StaffCompensation', 'StaffCompensationRetirementBenefits', '11') +VALUES ('001918', 'PsStudentEmployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000234', 'K12StaffEmployment', 'SalaryForTeachingAssignmentOnlyIndicator', '11') +VALUES ('001918', 'PsStudentEnrollment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000238', 'K12SchoolImprovement', 'RefSchoolImprovementFundsId', '11') +VALUES ('001918', 'PsStudentFinancialAid', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000239', 'K12SchoolImprovement', 'RefSigInterventionTypeId', '11') +VALUES ('001918', 'PSStudentProgram', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000240', 'K12SchoolImprovement', 'RefSchoolImprovementStatusId', '11') +VALUES ('001918', 'PsStudentSection', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000241', 'ELOrganization', 'RefSchoolLevelId', '11') +VALUES ('001918', 'QuarterlyEmploymentRecord', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000241', 'K12School', 'RefSchoolLevelId', '11') +VALUES ('001918', 'RequiredImmunization', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000242', 'K12School', 'RefSchoolTypeId', '11') +VALUES ('001918', 'Role', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000243', 'OrganizationCalendar', 'CalendarYear', '11') +VALUES ('001918', 'RoleAttendance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000244', 'OrganizationCalendarSession', 'InstructionalMinutes', '11') +VALUES ('001918', 'RoleAttendanceEvent', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000245', 'AssessmentResult', 'ScoreValue', '11') +VALUES ('001918', 'RoleStatus', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000250', 'Course', 'SCEDSequenceOfCourse', '11') +VALUES ('001918', 'Rubric', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000252', 'OrganizationCalendarSession', 'Designator', '11') +VALUES ('001918', 'RubricCriterion', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000252', 'PsPriceOfAttendance', 'SessionDesignator', '11') +VALUES ('001918', 'RubricCriterionLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000254', 'OrganizationCalendarSession', 'RefSessionTypeId', '11') +VALUES ('001918', 'ServiceFrequency', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000255', 'PersonDetail', 'RefSexId', '11') +VALUES ('001918', 'ServicePlan', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000258', 'CourseSection', 'RefSingleSexClassStatusId', '11') +VALUES ('001918', 'ServiceProvided', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000260', 'ProgramParticipationSpecialEducation', 'RefSpecialEducationExitReasonId', '11') +VALUES ('001918', 'ServiceProvider', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000261', 'ELStaffAssignment', 'SpecialEducationParaprofessional', '11') +VALUES ('001918', 'ServicesReceived', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000261', 'K12StaffAssignment', 'SpecialEducationParaprofessional', '11') +VALUES ('001918', 'ServiceStaff', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000262', 'ELStaffAssignment', 'SpecialEducationRelatedServicesPersonnel', '11') +VALUES ('001918', 'StaffCompensation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000262', 'K12StaffAssignment', 'SpecialEducationRelatedServicesPersonnel', '11') +VALUES ('001918', 'StaffCredential', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000263', 'ProgramParticipationSpecialEducation', 'SpecialEducationServicesExitDate', '11') +VALUES ('001918', 'StaffEmployment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000264', 'ELStaffAssignment', 'SpecialEducationTeacher', '11') +VALUES ('001918', 'StaffEvaluation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000264', 'K12StaffAssignment', 'SpecialEducationTeacher', '11') +VALUES ('001918', 'StaffEvaluationPart', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000265', 'PsStudentAdmissionTest', 'StandardizedAdmissionTestScore', '11') +VALUES ('001918', 'StaffExperience', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000266', 'PsStudentAdmissionTest', 'RefStandardizedAdmissionTestId', '11') +VALUES ('001918', 'StaffProfessionalDevelopmentActivity', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000267', 'PersonAddress', 'RefStateId', '11') +VALUES ('001918', 'StaffTechnicalAssistance', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000268', 'PersonDetail', 'RefStateOfResidenceId', '11') +VALUES ('001918', 'TeacherEducationCredentialExam', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000269', 'LocationAddress', 'StreetNumberAndName', '11') +VALUES ('001918', 'TeacherStudentDataLinkExclusion', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000269', 'PersonAddress', 'StreetNumberAndName', '11') +VALUES ('001918', 'WorkforceEmploymentQuarterlyData', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000271', 'RoleAttendance', 'AttendanceRate', '11') +VALUES ('001918', 'WorkforceProgramParticipantCohort', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000272', 'PsStudentEnrollment', 'RefPsStudentLevelId', '11') +VALUES ('001918', 'WorkforceProgramParticipation', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000273', 'IndividualizedProgram', 'RefStudentSupportServiceTypeId', '11') +VALUES ('001919', 'OrganizationCalendarEvent', 'StartTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000273', 'OrganizationService', 'RefStudentSupportServiceTypeId', '11') +VALUES ('001919', 'RoleAttendanceEvent', 'StartTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000273', 'ServiceProvided', 'RefStudentSupportServiceTypeId', '11') +VALUES ('001920', 'OrganizationCalendarEvent', 'EndTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000274', 'AssessmentSubtest', 'Description', '11') +VALUES ('001920', 'RoleAttendanceEvent', 'EndTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000275', 'AssessmentSubtest', 'Title', '11') +VALUES ('001921', 'OrganizationPersonRoleFTE', 'FullTimeEquivalency', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000277', 'ProgramParticipationTeacherPrep', 'RefTeachingCredentialBasisId', '11') +VALUES ('001922', 'PersonProgramParticipation', 'RefProgramEntryReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000277', 'StaffCredential', 'RefTeachingCredentialBasisId', '11') +VALUES ('001923', 'OrganizationFederalAccountability', 'RefComprehensiveSupportAndImprovementStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000278', 'ProgramParticipationTeacherPrep', 'RefTeachingCredentialTypeId', '11') +VALUES ('001924', 'OrganizationFederalAccountability', 'RefTargetedSupportAndImprovementStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000278', 'StaffCredential', 'RefTeachingCredentialTypeId', '11') +VALUES ('001925', 'OrganizationFederalAccountability', 'RefAdditionalTargetedSupportAndImprovementStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000279', 'OrganizationTelephone', 'TelephoneNumber', '11') +VALUES ('001926', 'K12LeaGradeLevelsApproved', 'RefGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000279', 'PersonTelephone', 'TelephoneNumber', '11') +VALUES ('001926', 'K12SchoolGradeLevelsApproved', 'RefGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000280', 'PersonTelephone', 'RefPersonTelephoneNumberTypeId', '11') +VALUES ('001927', 'OrganizationTelephone', 'RefTelephoneNumberListedStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000281', 'ProgramParticipationTitleI', 'RefTitleIIndicatorId', '11') +VALUES ('001927', 'PersonTelephone', 'RefTelephoneNumberListedStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000282', 'K12ProgramOrService', 'RefTitleIInstructionalServicesId', '11') +VALUES ('001928', 'LocationAddress', 'DoNotPublishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000283', 'ELStaffAssignment', 'RefTitleIProgramStaffCategoryId', '11') +VALUES ('001928', 'OrganizationEmail', 'DoNotPublishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000283', 'K12StaffAssignment', 'RefTitleIProgramStaffCategoryId', '11') +VALUES ('001928', 'OrganizationTelephone', 'DoNotPublishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000284', 'K12ProgramOrService', 'RefTitleIProgramTypeId', '11') +VALUES ('001928', 'PersonAddress', 'DoNotPublishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000285', 'K12SchoolStatus', 'RefTitleISchoolStatusId', '11') +VALUES ('001928', 'PersonEmailAddress', 'DoNotPublishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000289', 'K12LeaTitleISupportService', 'RefK12LeaTitleISupportServiceId', '11') +VALUES ('001928', 'PersonTelephone', 'DoNotPublishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000292', 'PsStudentFinancialAid', 'TitleIVParticipantAndRecipient', '11') +VALUES ('001930', 'ProgramParticipationAE', 'OutOfWorkforceIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000293', 'StaffCompensation', 'StaffCompensationTotalBenefits', '11') +VALUES ('001930', 'ProgramParticipationCte', 'OutOfWorkforceIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000294', 'K12StudentAcademicRecord', 'TotalNumberInClass', '11') +VALUES ('001931', 'PersonLearningDevice', 'RefPrimaryLearningDeviceAwayFromSchoolId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000294', 'PsStudentApplication', 'HighSchoolGraduatingClassSize', '11') +VALUES ('001932', 'PersonLearningDevice', 'RefPrimaryLearningDeviceAccessId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000295', 'StaffCompensation', 'StaffCompensationTotalSalary', '11') +VALUES ('001933', 'PersonLearningDevice', 'RefPrimaryLearningDeviceProviderId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000296', 'PsStudentEnrollment', 'RefTransferReadyId', '11') +VALUES ('001934', 'PersonDigitalAccess', 'InternetAccessInResidence', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000297', 'PsStudentDemographic', 'RefTuitionResidencyTypeId', '11') +VALUES ('001935', 'PersonDigitalAccess', 'RefBarrierToInternetAccessInResidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000299', 'PersonDetail', 'RefUSCitizenshipStatusId', '11') +VALUES ('001936', 'PersonDigitalAccess', 'RefInternetAccessTypeInResidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000302', 'StaffExperience', 'YearsOfPriorTeachingExperience', '11') +VALUES ('001937', 'PersonDigitalAccess', 'RefInternetPerformanceInResidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000304', 'PersonFamily', 'RefELProgramEligibilityId', '11') +VALUES ('001938', 'WorkforceProgramParticipantCohort', 'CohortMedianEarnings', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000305', 'PersonDetail', 'RefProofOfResidencyTypeId', '11') +VALUES ('001939', 'ProgramParticipationAE', 'RefAdultEducationProgramExitReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000305', 'PersonFamily', 'RefProofOfResidencyTypeId', '11') +VALUES ('001940', 'ProgramParticipationWIOABarriers', 'RefWIOABarrierstoEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000306', 'PersonImmunization', 'ImmunizationDate', '11') +VALUES ('001941', 'ProgramParticipationWIOA', 'WIOACareerServices', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000307', 'RequiredImmunization', 'RefImmunizationTypeId', '11') +VALUES ('001942', 'ProgramParticipationWIOA', 'WIOATrainingServices', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000308', 'PersonHealth', 'RefVisionScreeningStatusId', '11') +VALUES ('001943', 'PersonDemographicRace', 'RefRaceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000309', 'PersonHealth', 'RefHearingScreeningStatusId', '11') +VALUES ('001944', 'PersonDemographicRace', 'FederalRaceAndEthnicityDeclined', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000310', 'PersonHealth', 'RefDentalScreeningStatusId', '11') +VALUES ('001945', 'PersonPersonalInformationVerification', 'RefPersonalInformationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000312', 'PersonHealthBirth', 'WeightAtBirth', '11') +VALUES ('001946', 'Role', 'RefRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000313', 'PersonHealthBirth', 'WeeksOfGestation', '11') +VALUES ('001947', 'PsStudentDemographic', 'FirstGenerationCollegeStudent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000314', 'ELChildDevelopmentalAssessment', 'RefChildDevelopmentalScreeningStatusId', '11') +VALUES ('001948', 'PersonAddressNcesSide', 'NcesSideEstimate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000315', 'ELChildDevelopmentalAssessment', 'RefDevelopmentalEvaluationFindingId', '11') +VALUES ('001949', 'PersonAddressNcesSide', 'NcesSideStandardError', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000316', 'PersonLanguage', 'RefLanguageUseTypeId', '11') +VALUES ('001950', 'PersonAddressNcesSide', 'NcesSideDateProcessed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000317', 'PersonLanguage', 'RefLanguageId', '11') +VALUES ('001951', 'PersonAddressNcesSide', 'NcesSideVintageBeginYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000320', 'IndividualizedProgram', 'RefIndividualizedProgramTypeId', '11') +VALUES ('001952', 'PersonAddressNcesSide', 'NcesSideVintageEndYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000321', 'ELChildService', 'RefEarlyChildhoodServicesReceivedId', '11') +VALUES ('001953', 'CredentialDefinition', 'CredentialDefinitionTerminalDegreeIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000321', 'ServiceProvided', 'RefServicesId', '11') +VALUES ('001954', 'ProgramParticipationAttainment', 'AECredentialAttainmentPSEnrollmentIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000323', 'ELChildServicesApplication', 'ApplicationDate', '11') +VALUES ('001955', 'ProgramParticipationAttainment', 'AECredentialAttainmentEmployedIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000323', 'OrganizationPersonRoleApplication', 'ApplicationDate', '11') +VALUES ('001956', 'ProgramParticipationAttainment', 'AECredentialAttainmentPSCredentialIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000324', 'ELEnrollment', 'EnrollmentDate', '11') +VALUES ('001957', 'RoleAttendance', 'NumberOfDaysTardy', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000325', 'ELEnrollment', 'RefFoodServiceParticipationId', '11') +VALUES ('001958', 'StaffCompensation', 'RefStaffCompensationSourceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000325', 'ProgramParticipationFoodService', 'RefSchoolFoodServiceProgramId', '11') +VALUES ('001959', 'StaffCompensation', 'StaffCompensationAnnualSupplement', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000329', 'PersonRelationship', 'CustodialRelationshipIndicator', '11') +VALUES ('001960', 'StaffCompensation', 'StaffCompensationLongevity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000330', 'PersonFamily', 'NumberOfPeopleInFamily', '11') +VALUES ('001961', 'K12StaffAssignment', 'RefEDFactsTeacherInexperiencedStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000331', 'PersonFamily', 'NumberOfPeopleInHousehold', '11') +VALUES ('001962', 'K12StaffAssignment', 'RefOutOfFieldStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000332', 'PersonFamily', 'FamilyIncome', '11') +VALUES ('001963', 'K12OrganizationStudentResponsibility', 'RefStudentSchoolAffiliationStateDefinedStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000333', 'PersonFamily', 'RefFamilyIncomeSourceId', '11') +VALUES ('001964', 'DataCollection', 'SourceSystemDataCollectionIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000334', 'PersonFamily', 'RefIncomeCalculationMethodId', '11') +VALUES ('001965', 'DataCollection', 'SourceSystemName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000335', 'PersonHealth', 'RefHealthInsuranceCoverageId', '11') +VALUES ('001966', 'DataCollection', 'DataCollectionName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000336', 'PersonHealth', 'RefDentalInsuranceCoverageTypeId', '11') +VALUES ('001967', 'DataCollection', 'DataCollectionDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000341', 'ELStaffEducation', 'RefELLevelOfSpecializationId', '11') +VALUES ('001968', 'DataCollection', 'DataCollectionOpenDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000342', 'PersonDegreeOrCertificate', 'DegreeOrCertificateTitleOrSubject', '11') +VALUES ('001969', 'DataCollection', 'DataCollectionCloseDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000343', 'PersonDegreeOrCertificate', 'RefDegreeOrCertificateTypeId', '11') +VALUES ('001970', 'DataCollection', 'DataCollectionAcademicSchoolYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000345', 'EarlyChildhoodCredential', 'RefEarlyChildhoodCredentialId', '11') +VALUES ('001971', 'DataCollection', 'DataCollectionSchoolYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000346', 'RoleStatus', 'StatusStartDate', '11') +VALUES ('001972', 'RecordStatus', 'RefRecordStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000347', 'ELStaffEmployment', 'RefEmploymentStatusId', '11') +VALUES ('001972', 'RecordStatusHistory', 'RefRecordStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000347', 'K12StaffEmployment', 'RefEmploymentStatusId', '11') +VALUES ('001973', 'RecordStatus', 'RecordStatusDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000348', 'ELFacilityLicensing', 'InitialLicensingDate', '11') +VALUES ('001973', 'RecordStatusHistory', 'RecordStatusDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000348', 'ELProgramLicensing', 'InitialLicenseDate', '11') +VALUES ('001974', 'RecordStatus', 'RefRecordStatusCreatorEntityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000349', 'ELFacilityLicensing', 'ContinuingLicenseDate', '11') +VALUES ('001974', 'RecordStatusHistory', 'RefRecordStatusCreatorEntityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000349', 'ELProgramLicensing', 'ContinuingLicenseDate', '11') +VALUES ('001975', 'PersonDigitalAccessSpeed', 'InternetUploadSpeed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000350', 'ELFacilityLicensing', 'RefLicenseExemptId', '11') +VALUES ('001976', 'PersonDigitalAccessSpeed', 'InternetDownloadSpeed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000350', 'ELProgramLicensing', 'RefLicenseExemptId', '11') +VALUES ('001977', 'PersonDigitalAccessSpeed', 'InternetSpeedTestDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000351', 'OrganizationOperationalStatus', 'OperationalStatusEffectiveDate', '11') +VALUES ('001978', 'ProgramParticipationAttainment', 'RefEdFactsAcademicOrCareerAndTechnicalOutcomeTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000353', 'ELClassSection', 'RefServiceOptionId', '11') +VALUES ('001979', 'ProgramParticipationAttainment', 'RefEdFactsAcademicOrCareerAndTechnicalOutcomeExitTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000353', 'ELEnrollment', 'RefServiceOptionId', '11') +VALUES ('001981', 'PsStudentDemographic', 'EmancipatedMinor', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000353', 'ELOrganizationAvailability', 'RefServiceOptionId', '11') +VALUES ('001982', 'PersonFamily', 'NumberOfHouseholdCollegeStudents', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000354', 'ELClassSection', 'HoursAvailablePerDay', '11') +VALUES ('001983', 'PsStudentDemographic', 'RefNumberOfDependentsTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000354', 'ELOrganizationAvailability', 'HoursAvailablePerDay', '11') +VALUES ('001984', 'PsStudentDemographic', 'ChildrenOfFallenHeroesIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000355', 'ELClassSection', 'DaysAvailablePerWeek', '11') +VALUES ('001985', 'StaffEvaluationPart', 'PartName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000355', 'ELOrganizationAvailability', 'DaysAvailablePerWeek', '11') +VALUES ('001986', 'StaffEvaluationPart', 'ScoreOrRating', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000356', 'ELClassSection', 'RefEnvironmentSettingId', '11') +VALUES ('001987', 'StaffEvaluationPart', 'Scale', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000356', 'ELOrganizationAvailability', 'RefEnvironmentSettingId', '11') +VALUES ('001988', 'K12StudentHomeLanguageSurvey', 'HomeLanguageSurveyAdministrationIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000357', 'ELQualityRatingImprovement', 'RefQrisParticipationId', '11') +VALUES ('001989', 'K12StudentHomeLanguageSurvey', 'HomeLanguageSurveyAdministrationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000358', 'ELQualityRatingImprovement', 'QrisScore', '11') +VALUES ('001990', 'DataCollection', 'RefDataCollectionStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000361', 'PsStudentEnrollment', 'RefPsEnrollmentAwardTypeId', '11') +VALUES ('001991', 'OrganizationProjectBasedLearning', 'ProjectBasedLearningIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000362', 'ProgramParticipationAE', 'InstructionalActivityHoursCompleted', '11') +VALUES ('001992', 'OrganizationProjectBasedLearning', 'OrganizationProjectBasedLearningId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000362', 'PsStudentEnrollment', 'InstructionalActivityHoursCompleted', '11') +VALUES ('001992', 'OrganizationProjectBasedLearning', 'RefProjectBasedLearningTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000363', 'FinancialAidAward', 'RefFinancialAidStatusId', '11') +VALUES ('001994', 'Course', 'CourseLevelApprovalIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000364', 'Classroom', 'ClassroomIdentifier', '11') +VALUES ('001995', 'Assessment', 'RefAssessmentTypeAdministeredToEnglishLearnersId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000364', 'CourseSectionLocation', 'ClassroomId', '11') +VALUES ('001996', 'K12StaffAssignment', 'RefSpecialEducationTeacherQualificationStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000365', 'Assessment', 'IdentificationSystem', '11') +VALUES ('001997', 'K12StaffAssignment', 'RefEdFactsCertificationStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000366', 'AssessmentForm', 'FormNumber', '11') +VALUES ('001998', 'OrganizationPopulationServed', 'RefStudentSupportServiceAvailabilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000367', 'AssessmentSubtest', 'Identifier', '11') +VALUES ('001999', 'OrganizationEnrollmentCapacity', 'AdjustedCapacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000368', 'AssessmentSubtest', 'Abbreviation', '11') +VALUES ('002000', 'OrganizationEnrollmentCapacity', 'RefAdjustedCapacityReasonTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000369', 'AssessmentResult', 'RefScoreMetricTypeId', '11') +VALUES ('002001', 'OrganizationEnrollmentCapacity', 'EarlyLearningAge2AndOlderCapacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000369', 'AssessmentSubtest', 'RefScoreMetricTypeId', '11') +VALUES ('002002', 'OrganizationEnrollmentCapacity', 'EarlyLearningAgeUnder2Capacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000370', 'AssessmentResult', 'InstructionalRecommendation', '11') +VALUES ('002003', 'FinancialAccountLocal', 'RefFinancialAccountLocalRevenueCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000371', 'AssessmentParticipantSession', 'RefLanguageId', '11') +VALUES ('002004', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalFunctionCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000382', 'Assessment', 'Objective', '11') +VALUES ('002005', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalObjectCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000383', 'AssessmentAccommodation', 'RefAssessmentAccommodationCategoryId', '11') +VALUES ('002006', 'FinancialAccountLocal', 'RefFinancialExpenditureLocalLevelOfInstructionCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000384', 'AssessmentAdministration', 'AssessmentSecureIndicator', '11') +VALUES ('002007', 'FinancialAccountLocal', 'RefFinancialAccountLocalBalanceSheetCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000384', 'AssessmentForm', 'AssessmentSecureIndicator', '11') +VALUES ('002008', 'FinancialAccountLocal', 'RefFinancialAccountLocalFundClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000385', 'AssessmentAccommodation', 'RefAccommodationTypeId', '11') +VALUES ('002009', 'FinancialAccountLocal', 'RefFinancialAccountLocalProgramCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000385', 'IndividualizedProgramAccommodation', 'RefAccommodationTypeId', '11') +VALUES ('002010', 'FinancialAccount', 'RefFederalProgramSubgrantCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000386', 'AssessmentParticipantSession', 'RefAssessmentPlatformTypeId', '11') +VALUES ('002012', 'FacilityUtilization', 'EnrollmentCapacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000388', 'AssessmentSubtest', 'Version', '11') +VALUES ('002012', 'OrganizationEnrollmentCapacity', 'EnrollmentCapacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000389', 'AssessmentParticipantSession', 'RefAssessmentSessionSpecialCircumstanceTypeId', '11') +VALUES ('002012', 'OrganizationEnrollmentCapacity', 'OrganizationCalendarSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000389', 'AssessmentSession', 'RefAssessmentSessionSpecialCircumstanceTypeId', '11') +VALUES ('002012', 'OrganizationEnrollmentCapacity', 'OrganizationEnrollmentCapacityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000390', 'AssessmentItem', 'RefAssessmentItemTypeId', '11') +VALUES ('002013', 'OrganizationProgramType', 'PrimaryProgramIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000391', 'AssessmentItem', 'Difficulty', '11') +VALUES ('002014', 'RoleAttendanceEvent', 'AttendanceEventDurationMinutes', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000392', 'AssessmentItemCharacteristic', 'RefAssessmentItemCharacteristicTypeId', '11') +VALUES ('002015', 'RoleAttendanceEvent', 'AttendanceEventDurationHours', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000393', 'AssessmentItemCharacteristic', 'ResponseChoicePattern', '11') +VALUES ('002016', 'OrganizationPolicy', 'RefDEIPolicyIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000395', 'AssessmentSubtest', 'MaximumValue', '11') +VALUES ('002017', 'K12StudentEnrollment', 'RefAdjustedExitOrWithdrawalTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000396', 'AssessmentSubtest', 'MinimumValue', '11') +VALUES ('002018', 'PersonTransportationEligibility', 'RefTransportationPublicExpenseEligibilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000397', 'AssessmentSubtest', 'OptimalValue', '11') +VALUES ('002019', 'PersonTransportationEligibility', 'RefTransportationStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000398', 'AssessmentItem', 'DistractorAnalysis', '11') +VALUES ('002020', 'PersonTransportationEligibility', 'RefTransportationStateAidQualificationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000400', 'AssessmentItem', 'Stem', '11') +VALUES ('002021', 'OrganizationCalendarSession', 'SessionSequenceNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000402', 'AssessmentItemResponse', 'Duration', '11') +VALUES ('002022', 'RoleAttendance', 'RefChronicStudentAbsenteeismIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000403', 'AssessmentItem', 'AllottedTime', '11') +VALUES ('002023', 'Course', 'SequenceOfCourse', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000405', 'AssessmentItemResponse', 'RefAssessItemResponseStatusId', '11') +VALUES ('002024', 'Facility', 'TemperatureControlledBuildingArea', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000406', 'AssessmentItemResponse', 'AidSetUsed', '11') +VALUES ('002025', 'PsInstitution', 'RefMostPrevalentLevelOfInstitutionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000407', 'AssessmentParticipantSession', 'TimeAssessed', '11') +VALUES ('002026', 'K12StudentAcademicRecord', 'RefProjectedHighSchoolDiplomaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000408', 'AssessmentSession', 'AllottedTime', '11') +VALUES ('002027', 'LearningResourceIdentifier', 'LearningResourceIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000415', 'Assessment', 'RefAssessmentTypeAdministeredId', '11') +VALUES ('002028', 'LearningResourceIdentifier', 'RefLearningResourceIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000417', 'AssessmentPerformanceLevel', 'ScoreMetric', '11') +VALUES ('002031', 'LearningResourceStatus', 'RefLearningResourceStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000418', 'AssessmentPerformanceLevel', 'LowerCutScore', '11') +VALUES ('002032', 'LearningResource', 'RefHighQualityInstructionalMaterialIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000419', 'AssessmentPerformanceLevel', 'UpperCutScore', '11') +VALUES ('002033', 'LearningResourceStatus', 'LearningResourceStatusQuantity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000421', 'Rubric', 'Title', '11') +VALUES ('002033', 'PersonMilitary', 'MilitaryServiceNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000422', 'Rubric', 'Identifier', '11') +VALUES ('002035', 'PersonMilitaryOccupationalSpecialties', 'MilitaryOccupationalSpecialties', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000423', 'Rubric', 'UrlReference', '11') +VALUES ('002036', 'PersonMilitaryExpertise', 'RefMilitaryExpertiseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000424', 'K12Sea', 'RefStateANSICodeId', '11') +VALUES ('002037', 'PersonMilitaryDuties', 'RefMilitaryDutiesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000425', 'PersonRelationship', 'RefPersonRelationshipTypeId', '11') +VALUES ('002038', 'PersonMilitaryServiceLocations', 'MilitaryServiceLocations', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000426', 'PersonBirthplace', 'City', '11') +VALUES ('002039', 'PersonMilitary', 'MilitaryInductionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000427', 'PersonBirthplace', 'RefStateId', '11') +VALUES ('002040', 'PersonMilitary', 'MilitaryDischargeDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000428', 'PersonDetail', 'BirthdateVerification', '11') +VALUES ('002041', 'PersonMilitary', 'MilitaryReleaseDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000428', 'ProgramParticipationMigrant', 'BirthdateVerification', '11') +VALUES ('002042', 'PersonMilitaryDeployment', 'MilitaryDeploymentStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000429', 'ProgramParticipationMigrant', 'RefContinuationOfServicesReasonId', '11') +VALUES ('002043', 'PersonMilitaryDeployment', 'MilitaryDeploymentEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000430', 'ProgramParticipationMigrant', 'MepEligibilityExpirationDate', '11') +VALUES ('002044', 'PersonMilitary', 'RefMilitaryDischargeCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000431', 'PersonHealthBirth', 'MultipleBirthIndicator', '11') +VALUES ('002045', 'PersonMilitary', 'MilitaryInductionRank', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000432', 'ProgramParticipationMigrant', 'MigrantStudentQualifyingArrivalDate', '11') +VALUES ('002046', 'PersonMilitary', 'MilitaryDischargeRank', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000433', 'ProgramParticipationMigrant', 'QualifyingMoveFromCity', '11') +VALUES ('002047', 'PersonMilitary', 'MilitaryHighestRank', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000434', 'ProgramParticipationMigrant', 'RefQualifyingMoveFromCountryId', '11') +VALUES ('002048', 'PersonMilitary', 'MilitaryCurrentRank', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000435', 'ProgramParticipationMigrant', 'RefQualifyingMoveFromStateId', '11') +VALUES ('002049', 'PersonMilitaryHonors', 'MilitaryHonors', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000436', 'ProgramParticipationMigrant', 'DesignatedGraduationSchoolId', '11') +VALUES ('002050', 'PersonMilitaryCampaigns', 'RefMilitaryCampaignsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000437', 'ProgramParticipationMigrant', 'RefMepEnrollmentTypeId', '11') +VALUES ('002051', 'PersonMilitaryDeployment', 'RefMilitaryDeploymentStatusCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000438', 'ProgramParticipationMigrant', 'ImmunizationRecordFlag', '11') +VALUES ('002052', 'PersonMilitaryDeployment', 'MilitaryDeploymentDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000439', 'PersonHealth', 'RefMedicalAlertIndicatorId', '11') +VALUES ('002053', 'PersonMilitaryDeployment', 'MilitaryDeploymentOrderDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000440', 'ProgramParticipationMigrant', 'RefMepProjectBasedId', '11') +VALUES ('002054', 'PersonMilitaryDeployment', 'MilitaryDeploymentRequestedBy', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000442', 'OrganizationFederalAccountability', 'AypAppealProcessDesignation', '11') +VALUES ('002055', 'PersonMilitaryDeployment', 'MilitaryDeploymentActivityCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000443', 'OrganizationFederalAccountability', 'AypAppealChangedDesignation', '11') +VALUES ('002056', 'PersonMilitaryDeployment', 'MilitaryDeploymentActivityName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000444', 'OrganizationFederalAccountability', 'AypAppealProcessDate', '11') +VALUES ('002057', 'PersonMilitary', 'RefNationalGuardIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000445', 'K12SeaFederalFunds', 'StateTransferabilityOfFunds', '11') +VALUES ('002058', 'StaffCompensationFundingSource', 'StaffCompensationFundingSourcePercentage', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000447', 'K12TitleIIILanguageInstruction', 'RefTitleIIILanguageInstructionProgramTypeId', '11') +VALUES ('002059', 'StaffCompensationFundingSource', 'StaffCompensationFundingSourceAmount', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000447', 'ProgramParticipationTitleIIILep', 'RefTitleIIILanguageInstructionProgramTypeId', '11') +VALUES ('002060', 'StaffExperience', 'YearsOfTotalExperience', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000448', 'Course', 'RefInstructionLanguageId', '11') +VALUES ('002061', 'StaffExperience', 'YearsOfPriorProfessionalExperience', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000448', 'CourseSection', 'RefInstructionLanguageId', '11') +VALUES ('002062', 'PersonFamily', 'RefTeenParentIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000449', 'K12LeaFederalReporting', 'RefBarrierToEducatingHomelessId', '11') +VALUES ('002063', 'OrganizationJurisdiction', 'OrganizationJurisdictionSquareMiles', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000453', 'K12LeaFederalReporting', 'StateAssessStandardsFunding', '11') +VALUES ('002064', 'StaffCompensation', 'StaffCompensationAnnualSupplementDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000454', 'K12LeaFederalReporting', 'StateAssessmentAdminFunding', '11') +VALUES ('002065', 'CourseFundingSource', 'RefCourseFundingProgramAllowedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000455', 'K12SeaFederalFunds', 'DateStateReceivedTitleIIIAllocation', '11') +VALUES ('002066', 'FinancialAccount', 'RefFinancialAccountGASBRevenueClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000456', 'K12SeaFederalFunds', 'DateTitleIIIFundsAvailableToSubgrantees', '11') +VALUES ('002067', 'FinancialAccountLocal', 'RefFinancialAccountLocalGASBRevenueClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000457', 'K12SeaFederalFunds', 'NumberOfDaysForTitleIIISubgrants', '11') +VALUES ('002068', 'K12StudentDropout', 'RefStudentDropoutStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000461', 'K12LeaFederalFunds', 'InnovativeDollarsSpent', '11') +VALUES ('002069', 'JobIdentifier', 'JobIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000462', 'K12LeaFederalFunds', 'InnovativeDollarsSpentOnStrategicPriorities', '11') +VALUES ('002070', 'JobIdentifier', 'RefJobIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000463', 'K12ProgramOrService', 'RefMepProjectTypeId', '11') +VALUES ('002071', 'JobDetail', 'RefLocalJobCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000464', 'K12LeaFederalFunds', 'InnovativeProgramsFundsReceived', '11') +VALUES ('002072', 'JobDetail', 'RefLocalJobFunctionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000466', 'K12StudentLiteracyAssessment', 'RefLiteracyAssessmentId', '11') +VALUES ('002073', 'JobDetail', 'RefCodingSystemOrganizationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000467', 'K12StudentLiteracyAssessment', 'LiteracyGoalMetStatus', '11') +VALUES ('002074', 'JobDetail', 'RefEducationJobTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000468', 'K12StudentLiteracyAssessment', 'LiteracyPostTestStatus', '11') +VALUES ('002075', 'JobPositionIdentifier', 'JobPositionIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000469', 'K12StudentLiteracyAssessment', 'LiteracyPreTestStatus', '11') +VALUES ('002076', 'JobPositionIdentifier', 'RefJobPositionIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000471', 'K12LeaSafeDrugFree', 'IndicatorName', '11') +VALUES ('002077', 'JobPositionDetail', 'JobPositionExpectedStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000472', 'K12LeaSafeDrugFree', 'Instrument', '11') +VALUES ('002078', 'JobPositionStatus', 'RefJobPositionStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000473', 'K12LeaSafeDrugFree', 'CollectionFrequency', '11') +VALUES ('002079', 'JobPositionStatus', 'JobPositionStatusDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000474', 'K12LeaSafeDrugFree', 'MostRecentCollection', '11') +VALUES ('002080', 'JobPositionStatus', 'RefJobPositionStatusCancelledReasonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000475', 'K12LeaSafeDrugFree', 'Target', '11') +VALUES ('002081', 'CredentialAwardRelationship', 'CredentialAwardRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000476', 'K12LeaSafeDrugFree', 'Performance', '11') +VALUES ('002082', 'CredentialDefGradeLevel', 'RefLowGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000477', 'K12LeaSafeDrugFree', 'Baseline', '11') +VALUES ('002083', 'CredentialDefGradeLevel', 'RefHighGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000478', 'K12LeaSafeDrugFree', 'BaselineYear', '11') +VALUES ('002084', 'ProgramParticipationNeglected', 'RefNeglectedProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000481', 'K12SchoolImprovement', 'SchoolImprovementExitDate', '11') +VALUES ('002085', 'ProgramParticipationNeglected', 'RefDelinquentProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000482', 'K12LeaFederalReporting', 'TerminatedTitleIIIProgramFailure', '11') +VALUES ('002086', 'ProgramParticipationSpecialEducation', 'RefPartBPostsecondaryOutcomesIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000484', 'ProgramParticipationNeglected', 'ObtainedEmployment', '11') +VALUES ('002087', 'ProgramParticipationCte', 'RefPerkinsPostProgramPlacementIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000485', 'K12ProgramOrService', 'ProgramInMultiplePurposeFacility', '11') +VALUES ('002088', 'IndividualizedProgramAccessibleFormat', 'RefAccessibleFormatIssuedIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000486', 'K12LeaFederalFunds', 'RefRlisProgramUseId', '11') +VALUES ('002089', 'IndividualizedProgramAccessibleFormat', 'RefAccessibleFormatTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000487', 'K12LeaTitleIIIProfessionalDevelopment', 'RefTitleIIIProfessionalDevelopmentTypeId', '11') +VALUES ('002090', 'IndividualizedProgramAccessibleFormat', 'AccessibleFormatIssuedBeginDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('000488', 'K12StudentDiscipline', 'RefDisciplinaryActionTakenId', '11') +VALUES ('002091', 'IndividualizedProgramAccessibleFormat', 'AccessibleFormatIssuedEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001546', 'AssessmentResult', 'AssessmentResultScoreStandardError', '11') +VALUES ('002092', 'IndividualizedProgramAccessibleFormat', 'RefAccessibleFormatRequiredIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001547', 'AssessmentResult', 'RefAssessmentResultScoreTypeId', '11') +VALUES ('002093', 'LearningResourceIssued', 'LearningResourceIssuedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001548', 'K12School', 'CharterSchoolOpenEnrollmentIndicator', '11') +VALUES ('002094', 'LearningResourceOrder', 'LearningResourceReceivedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001549', 'CteCourse', 'CourseDepartmentName', '11') +VALUES ('002095', 'LearningResourceOrder', 'LearningResourceOrderedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001549', 'K12Course', 'CourseDepartmentName', '11') +VALUES ('002096', 'K12LeaPolicy', 'RefLEAGFSAAssuranceofComplianceIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001550', 'OrganizationCalendarCrisis', 'CrisisDescription', '11') +VALUES ('002097', 'K12LeaPolicy', 'RefLEAGFSAPolicyAssuranceIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001552', 'OrganizationCalendarCrisis', 'CrisisEndDate', '11') +VALUES ('002098', 'RoleAttendanceEvent', 'AttendanceEventDurationDay', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001552', 'OrganizationCalendarCrisis', 'EndDate', '11') +VALUES ('002099', 'OrganizationCalendarSession', 'InstructionalMinutesPerDay', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001553', 'ELChildService', 'RefEarlyChildhoodServicesOfferedId', '11') +VALUES ('002100', 'OrganizationCalendarSession', 'LunchMinutesPerDay', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001554', 'FinancialAccount', 'AccountNumber', '11') +VALUES ('002101', 'OrganizationCalendarSession', 'RecessMinutesPerDay', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001554', 'FinancialAccount', 'FinancialAccountNumber', '11') +VALUES ('002102', 'BoardMembership', 'BoardMemberTermStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001555', 'FinancialAccount', 'RefFinancialExpenditureLevelOfInstructionCodeId', '11') +VALUES ('002103', 'BoardMembership', 'BoardMemberTermEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001556', 'FinancialAccount', 'FinancialExpenditureProjectReportingCode', '11') +VALUES ('002104', 'BoardMembership', 'RefBoardMemberPositionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001557', 'LearnerAction', 'LearnerActionActorIdentifier', '11') +VALUES ('002105', 'BoardMembership', 'RefBoardMembershipTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001558', 'LearnerAction', 'LearnerActionObjectDescription', '11') +VALUES ('002106', 'OrganizationSalaryScheduleCriteria', 'SalaryScheduleCriterionName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001559', 'LearnerAction', 'LearnerActionObjectIdentifier', '11') +VALUES ('002107', 'OrganizationSalaryScheduleCriteria', 'SalaryScheduleCriterionDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001560', 'LearnerAction', 'LearnerActionObjectType', '11') +VALUES ('002108', 'OrganizationSalaryScheduleCriteriaValue', 'SalaryScheduleCriterionValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001561', 'LearningResource', 'RefLearningResourceAccessRightsUrlId', '11') +VALUES ('002109', 'OrganizationSalaryScheduleSalary', 'SalaryScheduleSalaryValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001562', 'LearningResource', 'RefLearningResourceAuthorTypeId', '11') +VALUES ('002110', 'IncidentActivity', 'RefIncidentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'AltName', '11') +VALUES ('002111', 'FacilityJointUse', 'RefFacilityJointUseIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'ChangedInThisVersionInd', '11') +VALUES ('', 'RequiredImmunization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'ChangeNotes', '11') +VALUES ('', 'RequiredImmunization', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'Definition', '11') +VALUES ('', 'RequiredImmunization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'ElementName', '11') +VALUES ('', 'RequiredImmunization', 'RequiredImmunizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'Format', '11') +VALUES ('', 'Role', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'GlobalID', '11') +VALUES ('', 'Role', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'HasOptionSet', '11') +VALUES ('', 'Role', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'TermID', '11') +VALUES ('', 'Role', 'RefJurisdictionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'URL', '11') +VALUES ('', 'Role', 'RoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'UsageNotes', '11') +VALUES ('', 'RoleAttendance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDSElements', 'Version', '11') +VALUES ('', 'RoleAttendance', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDStoNDSMapping', 'ColumnName', '11') +VALUES ('', 'RoleAttendance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDStoNDSMapping', 'GlobalID', '11') +VALUES ('', 'RoleAttendance', 'RoleAttendanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDStoNDSMapping', 'TableName', '11') +VALUES ('', 'RoleAttendanceEvent', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', '_CEDStoNDSMapping', 'Version', '11') +VALUES ('', 'RoleAttendanceEvent', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Activity', 'ActivityId', '11') +VALUES ('', 'RoleAttendanceEvent', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Activity', 'DataCollectionId', '11') +VALUES ('', 'RoleAttendanceEvent', 'RoleAttendanceEventId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Activity', 'OrganizationId', '11') +VALUES ('', 'RoleStatus', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Activity', 'RecordStatusId', '11') +VALUES ('', 'RoleStatus', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ActivityRecognition', 'ActivityRecognitionId', '11') +VALUES ('', 'RoleStatus', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ActivityRecognition', 'DataCollectionId', '11') +VALUES ('', 'RoleStatus', 'RoleStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ActivityRecognition', 'OrganizationPersonRoleId', '11') +VALUES ('', 'Rubric', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ActivityRecognition', 'RecordStatusId', '11') +VALUES ('', 'Rubric', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeCourse', 'AeCourseId', '11') +VALUES ('', 'Rubric', 'RubricId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeCourse', 'DataCollectionId', '11') +VALUES ('', 'RubricCriterion', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeCourse', 'OrganizationId', '11') +VALUES ('', 'RubricCriterion', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeCourse', 'RecordStatusId', '11') +VALUES ('', 'RubricCriterion', 'RubricCriterionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeProvider', 'AeProviderId', '11') +VALUES ('', 'RubricCriterion', 'RubricId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeProvider', 'DataCollectionId', '11') +VALUES ('', 'RubricCriterionLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeProvider', 'OrganizationId', '11') +VALUES ('', 'RubricCriterionLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeProvider', 'RecordStatusId', '11') +VALUES ('', 'RubricCriterionLevel', 'RubricCriterionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStaff', 'AeStaffId', '11') +VALUES ('', 'RubricCriterionLevel', 'RubricCriterionLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStaff', 'DataCollectionId', '11') +VALUES ('', 'ServiceFrequency', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStaff', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ServiceFrequency', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStaff', 'RecordStatusId', '11') +VALUES ('', 'ServiceFrequency', 'ServiceFrequencyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentAcademicRecord', 'AeStudentAcademicRecordId', '11') +VALUES ('', 'ServiceFrequency', 'ServicePlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentAcademicRecord', 'DataCollectionId', '11') +VALUES ('', 'ServicePlan', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentAcademicRecord', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ServicePlan', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentAcademicRecord', 'RecordStatusId', '11') +VALUES ('', 'ServicePlan', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentEmployment', 'AeStudentEmploymentId', '11') +VALUES ('', 'ServicePlan', 'ServicePlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentEmployment', 'DataCollectionId', '11') +VALUES ('', 'ServiceProvided', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentEmployment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ServiceProvided', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AeStudentEmployment', 'RecordStatusId', '11') +VALUES ('', 'ServiceProvided', 'ServiceProvidedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'ApipInteractionId', '11') +VALUES ('', 'ServiceProvided', 'ServicesReceivedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'AssessmentItemApipId', '11') +VALUES ('', 'ServiceProvider', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'DataCollectionId', '11') +VALUES ('', 'ServiceProvider', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'RecordStatusId', '11') +VALUES ('', 'ServiceProvider', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ApipInteraction', 'SequenceNumber', '11') +VALUES ('', 'ServiceProvider', 'ServiceProvidedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Application', 'ApplicationId', '11') +VALUES ('', 'ServiceProvider', 'ServiceProviderId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Application', 'DataCollectionId', '11') +VALUES ('', 'ServiceProvider', 'ServiceStaffId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Application', 'RecordStatusId', '11') +VALUES ('', 'ServicesReceived', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment', 'AssessmentId', '11') +VALUES ('', 'ServicesReceived', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment', 'DataCollectionId', '11') +VALUES ('', 'ServicesReceived', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment', 'RecordStatusId', '11') +VALUES ('', 'ServicesReceived', 'ServicePlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'Assessment_AssessmentAdministrationId', '11') +VALUES ('', 'ServicesReceived', 'ServicesReceivedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'AssessmentAdministrationId', '11') +VALUES ('', 'ServiceStaff', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'AssessmentId', '11') +VALUES ('', 'ServiceStaff', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'DataCollectionId', '11') +VALUES ('', 'ServiceStaff', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Assessment_AssessmentAdministration', 'RecordStatusId', '11') +VALUES ('', 'ServiceStaff', 'ServiceStaffId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAccommodation', 'AssessmentAccommodationId', '11') +VALUES ('', 'StaffCompensation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAccommodation', 'DataCollectionId', '11') +VALUES ('', 'StaffCompensation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAccommodation', 'RecordStatusId', '11') +VALUES ('', 'StaffCompensation', 'StaffCompensationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'AssessmentAdministrationId', '11') +VALUES ('', 'StaffCompensation', 'StaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'AssessmentId', '11') +VALUES ('', 'StaffCompensationFundingSource', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'DataCollectionId', '11') +VALUES ('', 'StaffCompensationFundingSource', 'FinancialAccountId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'RecordStatusId', '11') +VALUES ('', 'StaffCompensationFundingSource', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration', 'RefAssessmentReportingMethodId', '11') +VALUES ('', 'StaffCompensationFundingSource', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'AssessmentAdministration_OrganizationId', '11') +VALUES ('', 'StaffCompensationFundingSource', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'AssessmentAdministrationId', '11') +VALUES ('', 'StaffCompensationFundingSource', 'StaffCompensationFundingSourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'DataCollectionId', '11') +VALUES ('', 'StaffCompensationFundingSource', 'StaffCompensationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'OrganizationId', '11') +VALUES ('', 'StaffCredential', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAdministration_Organization', 'RecordStatusId', '11') +VALUES ('', 'StaffCredential', 'PersonCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAsset', 'AssessmentAssetId', '11') +VALUES ('', 'StaffCredential', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAsset', 'DataCollectionId', '11') +VALUES ('', 'StaffCredential', 'StaffCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAsset', 'LearningResourceId', '11') +VALUES ('', 'StaffEmployment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentAsset', 'RecordStatusId', '11') +VALUES ('', 'StaffEmployment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'AssessmentELDevelopmentalDomainId', '11') +VALUES ('', 'StaffEmployment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'AssessmentId', '11') +VALUES ('', 'StaffEmployment', 'RefStandardOccupationalClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'DataCollectionId', '11') +VALUES ('', 'StaffEmployment', 'StaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'RecordStatusId', '11') +VALUES ('', 'StaffEmploymentJobPosition', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentELDevelopmentalDomain', 'RefAssessmentELDevelopmentalDomainId', '11') +VALUES ('', 'StaffEmploymentJobPosition', 'JobPositionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'AssessmentFormId', '11') +VALUES ('', 'StaffEmploymentJobPosition', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'AssessmentId', '11') +VALUES ('', 'StaffEmploymentJobPosition', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'DataCollectionId', '11') +VALUES ('', 'StaffEmploymentJobPosition', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'LearningResourceId', '11') +VALUES ('', 'StaffEmploymentJobPosition', 'StaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm', 'RecordStatusId', '11') +VALUES ('', 'StaffEmploymentJobPosition', 'StaffEmploymentJobPositionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentAssetId', '11') +VALUES ('', 'StaffEvaluation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentForm_AssessmentAssetId', '11') +VALUES ('', 'StaffEvaluation', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentFormId', '11') +VALUES ('', 'StaffEvaluation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'DataCollectionId', '11') +VALUES ('', 'StaffEvaluation', 'StaffEvaluationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentAsset', 'RecordStatusId', '11') +VALUES ('', 'StaffEvaluationPart', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentForm_AssessmentFormSectionId', '11') +VALUES ('', 'StaffEvaluationPart', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentFormId', '11') +VALUES ('', 'StaffEvaluationPart', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentFormSectionId', '11') +VALUES ('', 'StaffEvaluationPart', 'StaffEvaluationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'DataCollectionId', '11') +VALUES ('', 'StaffEvaluationPart', 'StaffEvaluationPartId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentForm_AssessmentFormSection', 'RecordStatusId', '11') +VALUES ('', 'StaffExperience', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'AssessmentFormSectionId', '11') +VALUES ('', 'StaffExperience', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'ChildOf_FormSectionId', '11') +VALUES ('', 'StaffExperience', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'DataCollectionId', '11') +VALUES ('', 'StaffExperience', 'StaffExperienceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'LearningResourceId', '11') +VALUES ('', 'StaffProfessionalDevelopmentActivity', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection', 'RecordStatusId', '11') +VALUES ('', 'StaffProfessionalDevelopmentActivity', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentAssetId', '11') +VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentFormSection_AssessmentAssetId', '11') +VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentRequirementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentFormSectionId', '11') +VALUES ('', 'StaffProfessionalDevelopmentActivity', 'ProfessionalDevelopmentSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'DataCollectionId', '11') +VALUES ('', 'StaffProfessionalDevelopmentActivity', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'RecordStatusId', '11') +VALUES ('', 'StaffProfessionalDevelopmentActivity', 'StaffProfessionalDevelopmentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentFormSectionId', '11') +VALUES ('', 'StaffTechnicalAssistance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentFormSectionItemId', '11') +VALUES ('', 'StaffTechnicalAssistance', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentItemId', '11') +VALUES ('', 'StaffTechnicalAssistance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'DataCollectionId', '11') +VALUES ('', 'StaffTechnicalAssistance', 'StaffTechnicalAssistanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentFormSection_AssessmentItem', 'RecordStatusId', '11') +VALUES ('', 'TeacherEducationCredentialExam', 'AssessmentResultId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'AssessmentItemId', '11') +VALUES ('', 'TeacherEducationCredentialExam', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'DataCollectionId', '11') +VALUES ('', 'TeacherEducationCredentialExam', 'ProgramParticipationTeacherPrepId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'LearningResourceId', '11') +VALUES ('', 'TeacherEducationCredentialExam', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'RecordStatusId', '11') +VALUES ('', 'TeacherEducationCredentialExam', 'TeacherEducationCredentialExamId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItem', 'RubricId', '11') +VALUES ('', 'TeacherStudentDataLinkExclusion', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApip', 'AssessmentItemApipId', '11') +VALUES ('', 'TeacherStudentDataLinkExclusion', 'K12StaffAssignmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApip', 'AssessmentItemId', '11') +VALUES ('', 'TeacherStudentDataLinkExclusion', 'K12StudentCourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApip', 'DataCollectionId', '11') +VALUES ('', 'TeacherStudentDataLinkExclusion', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApip', 'RecordStatusId', '11') +VALUES ('', 'TeacherStudentDataLinkExclusion', 'TeacherStudentDataLinkExclusionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'AslIndicator', '11') +VALUES ('', 'WorkforceEmploymentQuarterlyData', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'AslOnDemandIndicator', '11') +VALUES ('', 'WorkforceEmploymentQuarterlyData', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'AssessmentItemApipDescriptionId', '11') +VALUES ('', 'WorkforceEmploymentQuarterlyData', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'AssessmentItemApipId', '11') +VALUES ('', 'WorkforceEmploymentQuarterlyData', 'WorkforceEmploymentQuarterlyDataId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'BrailleIndicator', '11') +VALUES ('', 'WorkforceProgramParticipantCohort', 'CohortDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ChunkingActivateByDefaultIndicator', '11') +VALUES ('', 'WorkforceProgramParticipantCohort', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ChunkingAssignedSupportIndicator', '11') +VALUES ('', 'WorkforceProgramParticipantCohort', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'CognitiveGuidanceActivateByDefaultIndicator', '11') +VALUES ('', 'WorkforceProgramParticipantCohort', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'CognitiveGuidanceAssignedSupportIndicator', '11') +VALUES ('', 'WorkforceProgramParticipantCohort', 'WorkforceProgramParticipantCohortId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'DataCollectionId', '11') +VALUES ('', 'WorkforceProgramParticipation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'GraphicsOnlyIndicator', '11') +VALUES ('', 'WorkforceProgramParticipation', 'PersonProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'KeywordEmphasisActivateByDefaultIndicator', '11') +VALUES ('', 'WorkforceProgramParticipation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'KeywordEmphasisAssignedSupportIndicator', '11') +VALUES ('', 'WorkforceProgramParticipation', 'WorkforceProgramParticipationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'KeywordTranslationsActivateByDefaultIndicator', '11') +VALUES ('000001', 'PsStudentAcademicAward', 'AcademicAwardDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'KeywordTranslationsAssignedSupportIndicator', '11') +VALUES ('000002', 'PsStudentAcademicAward', 'RefAcademicAwardLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'NegativesRemovedActivateByDefaultIndicator', '11') +VALUES ('000003', 'PsStudentAcademicAward', 'AcademicAwardTitle', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'NegativesRemovedAssignedSupportIndicator', '11') +VALUES ('000004', 'K12StudentAcademicHonor', 'RefAcademicHonorTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'NonVisualIndicator', '11') +VALUES ('000005', 'OrganizationFederalAccountability', 'AccountabilityReportTitle', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'RecordStatusId', '11') +VALUES ('000006', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ReducedAnswersActivateByDefaultIndicator', '11') +VALUES ('000007', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ReducedAnswersAssignedSupportIndicator', '11') +VALUES ('000008', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'RefHazardTypeId', '11') +VALUES ('000009', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'RefKeywordTranslationLanguageId', '11') +VALUES ('000010', 'PersonAddress', 'RefPersonLocationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'RefSupportToolTypeId', '11') +VALUES ('000011', 'OrganizationFederalAccountability', 'RefAypStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ScaffoldingActivateByDefaultIndicator', '11') +VALUES ('000012', 'ELOrganizationFunds', 'RefAdministrativeFundingControlId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'ScaffoldingAssignedSupportIndicator', '11') +VALUES ('000012', 'K12School', 'RefAdministrativeFundingControlId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'SignedEnglishIndicator', '11') +VALUES ('000012', 'PsInstitution', 'RefAdministrativeFundingControlId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'SignedEnglishOnDemandIndicator', '11') +VALUES ('000013', 'CteCourse', 'CourseAlignedWithStandards', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'TextGraphicsIndicator', '11') +VALUES ('000013', 'K12Course', 'CourseAlignedWithStandards', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'TextOnlyIndicator', '11') +VALUES ('000014', 'OrganizationFederalAccountability', 'AlternateAypApproachIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemApipDescription', 'TextOnlyOnDemandIndicator', '11') +VALUES ('000015', 'K12SchoolStatus', 'RefAlternativeSchoolFocusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemCharacteristic', 'AssessmentItemCharacteristicId', '11') +VALUES ('000018', 'PsStudentAcademicRecord', 'AdvancedPlacementCreditsAwarded', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemCharacteristic', 'AssessmentItemId', '11') +VALUES ('000019', 'LocationAddress', 'ApartmentRoomOrSuiteNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemCharacteristic', 'DataCollectionId', '11') +VALUES ('000019', 'PersonAddress', 'ApartmentRoomOrSuiteNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemCharacteristic', 'RecordStatusId', '11') +VALUES ('000021', 'Assessment', 'RefAcademicSubjectId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemPossibleResponse', 'AssessmentItemId', '11') +VALUES ('000021', 'AssessmentSubtest', 'RefAcademicSubjectId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemPossibleResponse', 'AssessmentItemPossibleResponseId', '11') +VALUES ('000024', 'AssessmentForm', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemPossibleResponse', 'DataCollectionId', '11') +VALUES ('000025', 'AssessmentRegistration', 'RefAssessmentParticipationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemPossibleResponse', 'RecordStatusId', '11') +VALUES ('000026', 'Assessment', 'RefAssessmentPurposeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'AssessmentItemId', '11') +VALUES ('000026', 'AssessmentRegistration', 'RefAssessmentPurposeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'AssessmentItemResponseId', '11') +VALUES ('000026', 'AssessmentSubtest', 'RefAssessmentPurposeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'AssessmentParticipantSessionId', '11') +VALUES ('000027', 'CourseSectionAssessmentReporting', 'RefCourseSectionAssessmentReportingMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'DataCollectionId', '11') +VALUES ('000028', 'Assessment', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponse', 'RecordStatusId', '11') +VALUES ('000029', 'Assessment', 'RefAssessmentTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponseTheory', 'AssessmentItemId', '11') +VALUES ('000030', 'CourseSection', 'AvailableCarnegieUnitCredit', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponseTheory', 'AssessmentItemResponseTheoryId', '11') +VALUES ('000030', 'CteCourse', 'AvailableCarnegieUnitCredit', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponseTheory', 'DataCollectionId', '11') +VALUES ('000030', 'K12Course', 'AvailableCarnegieUnitCredit', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemResponseTheory', 'RecordStatusId', '11') +VALUES ('000031', 'ProgramParticipationSpecialEducation', 'AwaitingInitialIDEAEvaluationStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemRubricCriterionResult', 'AssessmentItemResponseId', '11') +VALUES ('000032', 'StaffCompensation', 'StaffCompensationBaseSalary', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemRubricCriterionResult', 'DataCollectionId', '11') +VALUES ('000033', 'PersonDetail', 'Birthdate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemRubricCriterionResult', 'RecordStatusId', '11') +VALUES ('000035', 'PsStudentDemographic', 'RefCampusResidencyTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentItemRubricCriterionResult', 'RubricCriterionLevelId', '11') +VALUES ('000036', 'ProgramParticipationCte', 'CteCompleter', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'AssessmentId', '11') +VALUES ('000037', 'ProgramParticipationCte', 'CteConcentrator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'AssessmentLanguageId', '11') +VALUES ('000038', 'PsInstitution', 'RefCarnegieBasicClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'DataCollectionId', '11') +VALUES ('000039', 'K12Lea', 'CharterSchoolIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'RecordStatusId', '11') +VALUES ('000039', 'K12School', 'CharterSchoolIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLanguage', 'RefLanguageId', '11') +VALUES ('000040', 'LocationAddress', 'City', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'AssessmentId', '11') +VALUES ('000040', 'PersonAddress', 'City', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'AssessmentLevelsForWhichDesignedId', '11') +VALUES ('000041', 'K12StudentAcademicRecord', 'HighSchoolStudentClassRank', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'DataCollectionId', '11') +VALUES ('002112', 'FacilityJointUse', 'FacilityJointUseDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'RecordStatusId', '11') +VALUES ('002113', 'K12StudentDropoutReason', 'RefDropoutReasonTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentLevelsForWhichDesigned', 'RefGradeLevelId', '11') +VALUES ('001110', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipContent', 'AssessmentNeedApipContentId', '11') +VALUES ('001111', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipContent', 'AssessmentPersonalNeedsProfileContentId', '11') +VALUES ('001111', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipContent', 'DataCollectionId', '11') +VALUES ('001112', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipContent', 'RecordStatusId', '11') +VALUES ('000055', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipControl', 'AssessmentNeedApipControlId', '11') +VALUES ('000067', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipControl', 'AssessmentPersonalNeedsProfileControlId', '11') +VALUES ('000096', 'RoleStatus', 'RefRoleStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipControl', 'DataCollectionId', '11') +VALUES ('000097', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipControl', 'RecordStatusId', '11') +VALUES ('000107', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipDisplay', 'AssessmentNeedApipDisplayId', '11') +VALUES ('000111', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipDisplay', 'AssessmentPersonalNeedsProfileDisplayId', '11') +VALUES ('000122', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipDisplay', 'DataCollectionId', '11') +VALUES ('000148', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedApipDisplay', 'RecordStatusId', '11') +VALUES ('000251', 'OrganizationCalendarSession', 'BeginDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedBraille', 'AssessmentNeedBrailleId', '11') +VALUES ('000533', 'OrganizationOperationalStatus', 'RefOperationalStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedBraille', 'AssessmentPersonalNeedsProfileDisplayId', '11') +VALUES ('000595', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedBraille', 'DataCollectionId', '11') +VALUES ('000845', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedBraille', 'RecordStatusId', '11') +VALUES ('000847', 'OrganizationPolicy', 'PolicyType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentNeedScreenEnhancementId', '11') +VALUES ('000974', 'RoleStatus', 'StatusStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentPersonalNeedsProfileDisplayId', '11') +VALUES ('000975', 'RoleStatus', 'StatusEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentPersonalNeedsProfileScreenEnhancementId', '11') +VALUES ('001059', 'PersonCredential', 'ExpirationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'DataCollectionId', '11') +VALUES ('001071', 'PersonIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentNeedScreenEnhancement', 'RecordStatusId', '11') +VALUES ('001072', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'AssessmentFormSectionId', '11') +VALUES ('001075', 'PersonIdentifier', 'RefPersonIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'AssessmentParticipantSessionId', '11') +VALUES ('001103', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'AssessmentRegistrationId', '11') +VALUES ('001104', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'AssessmentSessionId', '11') +VALUES ('001377', 'IncidentPerson', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'DataCollectionId', '11') +VALUES ('001378', 'IncidentPerson', 'RefIncidentPersonTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession', 'RecordStatusId', '11') +VALUES ('000056', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentAccommodationId', '11') +VALUES ('000068', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentParticipantSession_AccommodationId', '11') +VALUES ('000147', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentParticipantSessionId', '11') +VALUES ('000151', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'DataCollectionId', '11') +VALUES ('000326', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentParticipantSession_Accommodation', 'RecordStatusId', '11') +VALUES ('000327', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPerformanceLevel', 'AssessmentPerformanceLevelId', '11') +VALUES ('000347', 'RoleStatus', 'RefRoleStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPerformanceLevel', 'AssessmentSubtestId', '11') +VALUES ('000410', 'PersonIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPerformanceLevel', 'DataCollectionId', '11') +VALUES ('000637', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPerformanceLevel', 'RecordStatusId', '11') +VALUES ('000848', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'AssessmentNeedsProfileContentId', '11') +VALUES ('000849', 'OrganizationPolicy', 'PolicyType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'AssessmentPersonalNeedLanguageLearnerId', '11') +VALUES ('001068', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'DataCollectionId', '11') +VALUES ('001073', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'RecordStatusId', '11') +VALUES ('001104', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedScreenReader', 'AssessmentPersonalNeedScreenReaderId', '11') +VALUES ('001105', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedScreenReader', 'AssessmentPersonalNeedsProfileDisplayId', '11') +VALUES ('000111', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedScreenReader', 'DataCollectionId', '11') +VALUES ('000180', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedScreenReader', 'RecordStatusId', '11') +VALUES ('000185', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfile', 'AssessmentPersonalNeedsProfileId', '11') +VALUES ('000191', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfile', 'DataCollectionId', '11') +VALUES ('000346', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfile', 'RecordStatusId', '11') +VALUES ('000411', 'PersonIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'AssessmentPersonalNeedsProfileContentId', '11') +VALUES ('000527', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'AssessmentPersonalNeedsProfileId', '11') +VALUES ('000638', 'K12OrganizationStudentResponsibility', 'RefK12ResponsibilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ChunkingActivateByDefaultIndicator', '11') +VALUES ('000767', 'RoleStatus', 'RefRoleStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ChunkingAssignedSupportIndicator', '11') +VALUES ('000781', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'CognitiveGuidanceActivateByDefaultIndicator', '11') +VALUES ('000850', 'OrganizationPolicy', 'PolicyType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'CognitiveGuidanceAssignedSupportIndicator', '11') +VALUES ('000853', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'DataCollectionId', '11') +VALUES ('001069', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordEmphasisActivateByDefaultIndicator', '11') +VALUES ('001105', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordEmphasisAssignedSupportIndicator', '11') +VALUES ('001106', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordTranslationsActivateByDefaultIndicator', '11') +VALUES ('000166', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordTranslationsAssignedSupportIndicator', '11') +VALUES ('000189', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'NegativesRemovedActivateByDefaultIndicator', '11') +VALUES ('000193', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'NegativesRemovedAssignedSupportIndicator', '11') +VALUES ('000204', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'RecordStatusId', '11') +VALUES ('000526', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ReducedAnswersActivateByDefaultIndicator', '11') +VALUES ('000591', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ReducedAnswersAssignedSupportIndicator', '11') +VALUES ('000827', 'OrganizationIdentifier', 'RefOrganizationIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ScaffoldingActivateByDefaultIndicator', '11') +VALUES ('000854', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ScaffoldingAssignedSupportIndicator', '11') +VALUES ('000859', 'OrganizationPolicy', 'PolicyType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'AssessmentPersonalNeedsProfileControlId', '11') +VALUES ('001072', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'AssessmentPersonalNeedsProfileId', '11') +VALUES ('001080', 'PersonIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'DataCollectionId', '11') +VALUES ('001106', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'RecordStatusId', '11') +VALUES ('001107', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'AssessmentPersonalNeedsProfileDisplayId', '11') +VALUES ('000175', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'AssessmentPersonalNeedsProfileId', '11') +VALUES ('000235', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'DataCollectionId', '11') +VALUES ('000249', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'RecordStatusId', '11') +VALUES ('000590', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'AssessmentPersonalNeedsProfileId', '11') +VALUES ('000626', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'AssessmentPersonalNeedsProfileScreenEnhancementId', '11') +VALUES ('000646', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'DataCollectionId', '11') +VALUES ('000855', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordStatusId', '11') +VALUES ('000983', 'OrganizationPolicy', 'PolicyType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'AssessmentAdministrationId', '11') +VALUES ('001073', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'AssessmentFormId', '11') +VALUES ('001107', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'AssessmentRegistrationId', '11') +VALUES ('001108', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'CourseSectionId', '11') +VALUES ('001444', 'PersonIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'DataCollectionId', '11') +VALUES ('000166', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'LeaOrganizationId', '11') +VALUES ('000236', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'OrganizationId', '11') +VALUES ('000290', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'PersonId', '11') +VALUES ('000364', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'RecordStatusId', '11') +VALUES ('000645', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration', 'SchoolOrganizationId', '11') +VALUES ('000794', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentAccommodationId', '11') +VALUES ('000808', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentRegistration_AccommodationId', '11') +VALUES ('000856', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentRegistrationId', '11') +VALUES ('001108', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'DataCollectionId', '11') +VALUES ('001109', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentRegistration_Accommodation', 'RecordStatusId', '11') +VALUES ('000175', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'AssessmentRegistrationId', '11') +VALUES ('000237', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'AssessmentResultId', '11') +VALUES ('000550', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'AssessmentSubtestId', '11') +VALUES ('000625', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'DataCollectionId', '11') +VALUES ('000793', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult', 'RecordStatusId', '11') +VALUES ('000795', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentPerformanceLevelId', '11') +VALUES ('000821', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentResult_PerformanceLevelId', '11') +VALUES ('000858', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentResultId', '11') +VALUES ('001109', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'DataCollectionId', '11') +VALUES ('001110', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResult_PerformanceLevel', 'RecordStatusId', '11') +VALUES ('000203', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'AssessmentResultId', '11') +VALUES ('000286', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'AssessmentResultRubricCriterionResultId', '11') +VALUES ('000551', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'DataCollectionId', '11') +VALUES ('000863', 'OrganizationIndicator', 'RefOrganizationIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'RecordStatusId', '11') +VALUES ('000898', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentResultRubricCriterionResult', 'RubricCriterionLevelId', '11') +VALUES ('000974', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'AssessmentAdministrationId', '11') +VALUES ('000999', 'OrganizationPersonRole', 'ExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'AssessmentSessionId', '11') +VALUES ('001076', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'DataCollectionId', '11') +VALUES ('000287', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'Lea_OrganizationId', '11') +VALUES ('000565', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'OrganizationId', '11') +VALUES ('000625', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'RecordStatusId', '11') +VALUES ('000820', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSession', 'School_OrganizationId', '11') +VALUES ('000966', 'OrganizationDetail', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentParticipantSessionId', '11') +VALUES ('000998', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentSessionId', '11') +VALUES ('001112', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentSessionStaffRoleId', '11') +VALUES ('001114', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'DataCollectionId', '11') +VALUES ('001243', 'OrganizationPersonRole', 'EntryDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'PersonId', '11') +VALUES ('000291', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSessionStaffRole', 'RecordStatusId', '11') +VALUES ('000827', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'AssessmentFormId', '11') +VALUES ('000978', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'AssessmentSubtestId', '11') +VALUES ('001114', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'ChildOf_AssessmentSubtestId', '11') +VALUES ('001115', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'DataCollectionId', '11') +VALUES ('001291', 'PersonProgramParticipation', 'RefParticipationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest', 'RecordStatusId', '11') +VALUES ('000569', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentItemId', '11') +VALUES ('000978', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentSubtestId', '11') +VALUES ('001115', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentSubtestItemId', '11') +VALUES ('001116', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'DataCollectionId', '11') +VALUES ('001315', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_AssessmentItem', 'RecordStatusId', '11') +VALUES ('000580', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'AssessmentSubtest_CompetencyDefinitionId', '11') +VALUES ('001116', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'AssessmentSubtestId', '11') +VALUES ('001117', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'CompetencyDefinitionId', '11') +VALUES ('001280', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'DataCollectionId', '11') +VALUES ('001466', 'OrganizationIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'RecordStatusId', '11') +VALUES ('000581', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'AssessmentSubtestELDevelopmentalDomainId', '11') +VALUES ('001117', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'AssessmentSubtestId', '11') +VALUES ('001118', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'DataCollectionId', '11') +VALUES ('001315', 'OrganizationIdentifier', 'RefOrganizationIdentifierTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'RecordStatusId', '11') +VALUES ('000775', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'RefAssessmentELDevelopmentalDomainId', '11') +VALUES ('001118', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'AssessmentSubTestId', '11') +VALUES ('001119', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'AssessmentSubtestLevelsForWhichDesignedId', '11') +VALUES ('000776', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'DataCollectionId', '11') +VALUES ('001119', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordStatusId', '11') +VALUES ('001120', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'RefGradeId', '11') +VALUES ('000777', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authentication', 'AuthenticationId', '11') +VALUES ('001120', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authentication', 'DataCollectionId', '11') +VALUES ('001121', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authentication', 'OrganizationPersonRoleId', '11') +VALUES ('000778', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authentication', 'RecordStatusId', '11') +VALUES ('001121', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'ApplicationId', '11') +VALUES ('001222', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'AuthorizationId', '11') +VALUES ('000807', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'DataCollectionId', '11') +VALUES ('001222', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'OrganizationPersonRoleId', '11') +VALUES ('000814', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Authorization', 'RecordStatusId', '11') +VALUES ('000815', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AuthorizationDocument', 'AuthorizationDocumentId', '11') +VALUES ('001929', 'PersonStatus', 'RefPersonStatusTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AuthorizationDocument', 'DataCollectionId', '11') +VALUES ('001063', 'AssessmentItemResponse', 'Value', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AuthorizationDocument', 'OrganizationPersonRoleId', '11') +VALUES ('001064', 'AeStudentEmployment', 'EmploymentNaicsCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'AuthorizationDocument', 'RecordStatusId', '11') +VALUES ('001064', 'CredentialDefinition', 'EmploymentNAICSCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpace', 'BuildingSpaceId', '11') +VALUES ('001064', 'K12StudentEmployment', 'EmploymentNaicsCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpace', 'DataCollectionId', '11') +VALUES ('001064', 'PsStudentEmployment', 'EmploymentNaicsCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpace', 'FacilityId', '11') +VALUES ('001064', 'QuarterlyEmploymentRecord', 'EmploymentNAICSCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpace', 'RecordStatusId', '11') +VALUES ('001066', 'OrganizationLocation', 'RefOrganizationLocationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpaceUtilization', 'BuildingSpaceId', '11') +VALUES ('001067', 'Assessment', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpaceUtilization', 'BuildingSpaceUtilizationId', '11') +VALUES ('001070', 'PersonIdentifier', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpaceUtilization', 'DataCollectionId', '11') +VALUES ('001074', 'PersonIdentifier', 'RefPersonIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSpaceUtilization', 'RecordStatusId', '11') +VALUES ('001077', 'ProgramParticipationAE', 'RefAeInstructionalProgramTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemCategory', 'BuildingSystemCategoryId', '11') +VALUES ('001079', 'ProgramParticipationAE', 'RefGoalsForAttendingAdultEducationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemCategory', 'BuildingSystemComponentId', '11') +VALUES ('', '_CEDSElements', 'AltName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemCategory', 'DataCollectionId', '11') +VALUES ('', '_CEDSElements', 'ChangedInThisVersionInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemCategory', 'RecordStatusId', '11') +VALUES ('', '_CEDSElements', 'ChangeNotes', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'BuildingSystemComponentId', '11') +VALUES ('', '_CEDSElements', 'Definition', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'DataCollectionId', '11') +VALUES ('', '_CEDSElements', 'ElementName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'Description', '11') +VALUES ('', '_CEDSElements', 'Format', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'FacilityId', '11') +VALUES ('', '_CEDSElements', 'GlobalID', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponent', 'RecordStatusId', '11') +VALUES ('', '_CEDSElements', 'HasOptionSet', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponentService', 'BuildingSystemComponentId', '11') +VALUES ('', '_CEDSElements', 'TermID', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponentService', 'BuildingSystemComponentServiceId', '11') +VALUES ('', '_CEDSElements', 'URL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponentService', 'DataCollectionId', '11') +VALUES ('', '_CEDSElements', 'UsageNotes', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'BuildingSystemComponentService', 'RecordStatusId', '11') +VALUES ('', '_CEDSElements', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Classroom', 'ClassroomId', '11') +VALUES ('', '_CEDStoNDSMapping', 'ColumnName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Classroom', 'DataCollectionId', '11') +VALUES ('', '_CEDStoNDSMapping', 'GlobalID', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Classroom', 'LocationId', '11') +VALUES ('', '_CEDStoNDSMapping', 'TableName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Classroom', 'RecordStatusId', '11') +VALUES ('', '_CEDStoNDSMapping', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'CompetencyDefAssociationId', '11') +VALUES ('', 'Activity', 'ActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'CompetencyDefinitionId', '11') +VALUES ('', 'Activity', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'DataCollectionId', '11') +VALUES ('', 'Activity', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'RecordStatusId', '11') +VALUES ('', 'Activity', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefAssociation', 'RefEntityTypeId', '11') +VALUES ('', 'ActivityRecognition', 'ActivityRecognitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefEducationLevel', 'CompetencyDefEducationLevelId', '11') +VALUES ('', 'ActivityRecognition', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefEducationLevel', 'CompetencyDefinitionId', '11') +VALUES ('', 'ActivityRecognition', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefEducationLevel', 'DataCollectionId', '11') +VALUES ('', 'ActivityRecognition', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefEducationLevel', 'RecordStatusId', '11') +VALUES ('', 'AeCourse', 'AeCourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'ChildOf_CompetencyDefinitionId', '11') +VALUES ('', 'AeCourse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'CompetencyDefinitionId', '11') +VALUES ('', 'AeCourse', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'CompetencyFrameworkId', '11') +VALUES ('', 'AeCourse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'DataCollectionId', '11') +VALUES ('', 'AeProvider', 'AeProviderId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition', 'RecordStatusId', '11') +VALUES ('', 'AeProvider', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencyDefinition_CompetencySetId', '11') +VALUES ('', 'AeProvider', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencyDefinitionId', '11') +VALUES ('', 'AeProvider', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencySetId', '11') +VALUES ('', 'AeStaff', 'AeStaffId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'DataCollectionId', '11') +VALUES ('', 'AeStaff', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyDefinition_CompetencySet', 'RecordStatusId', '11') +VALUES ('', 'AeStaff', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyFramework', 'CompetencyFrameworkId', '11') +VALUES ('', 'AeStaff', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyFramework', 'DataCollectionId', '11') +VALUES ('', 'AeStudentAcademicRecord', 'AeStudentAcademicRecordId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencyFramework', 'RecordStatusId', '11') +VALUES ('', 'AeStudentAcademicRecord', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet', 'ChildOf_CompetencySet', '11') +VALUES ('', 'AeStudentAcademicRecord', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet', 'CompetencySetId', '11') +VALUES ('', 'AeStudentAcademicRecord', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet', 'DataCollectionId', '11') +VALUES ('', 'AeStudentEmployment', 'AeStudentEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet', 'RecordStatusId', '11') +VALUES ('', 'AeStudentEmployment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'CompetencySet_RubricId', '11') +VALUES ('', 'AeStudentEmployment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'CompetencySetId', '11') +VALUES ('', 'AeStudentEmployment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'DataCollectionId', '11') +VALUES ('', 'ApipInteraction', 'ApipInteractionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'RecordStatusId', '11') +VALUES ('', 'ApipInteraction', 'AssessmentItemApipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_Rubric', 'RubricId', '11') +VALUES ('', 'ApipInteraction', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'CompetencySet_RubricCriterionId', '11') +VALUES ('', 'ApipInteraction', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'CompetencySetId', '11') +VALUES ('', 'ApipInteraction', 'SequenceNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'DataCollectionId', '11') +VALUES ('', 'Application', 'ApplicationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'RecordStatusId', '11') +VALUES ('', 'Application', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CompetencySet_RubricCriterion', 'RubricCriterionId', '11') +VALUES ('', 'Application', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CoreKnowledgeArea', 'CoreKnowledgeAreaId', '11') +VALUES ('', 'Assessment', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CoreKnowledgeArea', 'DataCollectionId', '11') +VALUES ('', 'Assessment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CoreKnowledgeArea', 'ProfessionalDevelopmentActivityId', '11') +VALUES ('', 'Assessment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CoreKnowledgeArea', 'RecordStatusId', '11') +VALUES ('', 'Assessment_AssessmentAdministration', 'Assessment_AssessmentAdministrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Course', 'CourseId', '11') +VALUES ('', 'Assessment_AssessmentAdministration', 'AssessmentAdministrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Course', 'DataCollectionId', '11') +VALUES ('', 'Assessment_AssessmentAdministration', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Course', 'OrganizationId', '11') +VALUES ('', 'Assessment_AssessmentAdministration', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Course', 'RecordStatusId', '11') +VALUES ('', 'Assessment_AssessmentAdministration', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'CourseId', '11') +VALUES ('', 'AssessmentAccommodation', 'AssessmentAccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'CourseSectionId', '11') +VALUES ('', 'AssessmentAccommodation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'DataCollectionId', '11') +VALUES ('', 'AssessmentAccommodation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'OrganizationId', '11') +VALUES ('', 'AssessmentAdministration', 'AssessmentAdministrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'RecordStatusId', '11') +VALUES ('', 'AssessmentAdministration', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSection', 'RefCreditTypeEarnedId', '11') +VALUES ('', 'AssessmentAdministration', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionAssessmentReporting', 'CourseSectionAssessmentReportingId', '11') +VALUES ('', 'AssessmentAdministration', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionAssessmentReporting', 'CourseSectionId', '11') +VALUES ('', 'AssessmentAdministration', 'RefAssessmentReportingMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionAssessmentReporting', 'DataCollectionId', '11') +VALUES ('', 'AssessmentAdministration_Organization', 'AssessmentAdministration_OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionAssessmentReporting', 'RecordStatusId', '11') +VALUES ('', 'AssessmentAdministration_Organization', 'AssessmentAdministrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLevel', 'CourseSectionId', '11') +VALUES ('', 'AssessmentAdministration_Organization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLevel', 'CourseSectionLevelId', '11') +VALUES ('', 'AssessmentAdministration_Organization', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLevel', 'DataCollectionId', '11') +VALUES ('', 'AssessmentAdministration_Organization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLevel', 'RecordStatusId', '11') +VALUES ('', 'AssessmentAsset', 'AssessmentAssetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLocation', 'CourseSectionId', '11') +VALUES ('', 'AssessmentAsset', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLocation', 'CourseSectionLocationId', '11') +VALUES ('', 'AssessmentAsset', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLocation', 'DataCollectionId', '11') +VALUES ('', 'AssessmentAsset', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionLocation', 'RecordStatusId', '11') +VALUES ('', 'AssessmentELDevelopmentalDomain', 'AssessmentELDevelopmentalDomainId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionSchedule', 'CourseSectionId', '11') +VALUES ('', 'AssessmentELDevelopmentalDomain', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionSchedule', 'CourseSectionScheduleId', '11') +VALUES ('', 'AssessmentELDevelopmentalDomain', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionSchedule', 'DataCollectionId', '11') +VALUES ('', 'AssessmentELDevelopmentalDomain', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CourseSectionSchedule', 'RecordStatusId', '11') +VALUES ('', 'AssessmentELDevelopmentalDomain', 'RefAssessmentELDevelopmentalDomainId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'CredentialAwardId', '11') +VALUES ('', 'AssessmentForm', 'AssessmentFormId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'CredentialDefinitionId', '11') +VALUES ('', 'AssessmentForm', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'CredentialIssuerId', '11') +VALUES ('', 'AssessmentForm', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'DataCollectionId', '11') +VALUES ('', 'AssessmentForm', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'OrganizationId', '11') +VALUES ('', 'AssessmentForm', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'PersonId', '11') +VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentAssetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAward', 'RecordStatusId', '11') +VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentForm_AssessmentAssetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'CredentialAwardCreditId', '11') +VALUES ('', 'AssessmentForm_AssessmentAsset', 'AssessmentFormId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'CredentialAwardId', '11') +VALUES ('', 'AssessmentForm_AssessmentAsset', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'CredentialCriteriaCourseId', '11') +VALUES ('', 'AssessmentForm_AssessmentAsset', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'DataCollectionId', '11') +VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentForm_AssessmentFormSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentFormId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardCredit', 'RecordStatusId', '11') +VALUES ('', 'AssessmentForm_AssessmentFormSection', 'AssessmentFormSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'AssessmentResultId', '11') +VALUES ('', 'AssessmentForm_AssessmentFormSection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'CredentialAwardEvidenceId', '11') +VALUES ('', 'AssessmentForm_AssessmentFormSection', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'CredentialAwardId', '11') +VALUES ('', 'AssessmentFormSection', 'AssessmentFormSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'DataCollectionId', '11') +VALUES ('', 'AssessmentFormSection', 'ChildOf_FormSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialAwardEvidence', 'RecordStatusId', '11') +VALUES ('', 'AssessmentFormSection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'CourseId', '11') +VALUES ('', 'AssessmentFormSection', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'CredentialCriteriaCourseId', '11') +VALUES ('', 'AssessmentFormSection', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'CredentialDefCriteriaId', '11') +VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentAssetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'DataCollectionId', '11') +VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentFormSection_AssessmentAssetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialCriteriaCourse', 'RecordStatusId', '11') +VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'AssessmentFormSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'CredentialDefAgentId', '11') +VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'DataCollectionId', '11') +VALUES ('', 'AssessmentFormSection_AssessmentAsset', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'OrganizationId', '11') +VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentFormSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'PersonId', '11') +VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentFormSectionItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgent', 'RecordStatusId', '11') +VALUES ('', 'AssessmentFormSection_AssessmentItem', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefAgentCredentialId', '11') +VALUES ('', 'AssessmentFormSection_AssessmentItem', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefAgentId', '11') +VALUES ('', 'AssessmentFormSection_AssessmentItem', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefinitionId', '11') +VALUES ('', 'AssessmentItem', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItem', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefAgentCredential', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItem', 'LearningResourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCategory', 'CredentialDefCategoryId', '11') +VALUES ('', 'AssessmentItem', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCategory', 'CredentialDefinitionId', '11') +VALUES ('', 'AssessmentItem', 'RubricId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCategory', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApip', 'AssessmentItemApipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCategory', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApip', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'CompetencySetId', '11') +VALUES ('', 'AssessmentItemApip', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'CredentialDefCriteriaId', '11') +VALUES ('', 'AssessmentItemApip', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'CredentialDefinitionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'AslIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'AslOnDemandIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefCriteria', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'AssessmentItemApipDescriptionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefIdentifier', 'CredentialDefIdentifierId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'AssessmentItemApipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefIdentifier', 'CredentialDefinitionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'BrailleIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefIdentifier', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'ChunkingActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefIdentifier', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'ChunkingAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefinition', 'CredentialDefinitionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'CognitiveGuidanceActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefinition', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'CognitiveGuidanceAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialDefinition', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialIssuer', 'CredentialIssuerId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'GraphicsOnlyIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialIssuer', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'KeywordEmphasisActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialIssuer', 'OrganizationId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'KeywordEmphasisAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialIssuer', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'KeywordTranslationsActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'CredentialDefinitionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'KeywordTranslationsAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'CredentialIssuerId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'NegativesRemovedActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'CredentialOfferedId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'NegativesRemovedAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'NonVisualIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CredentialOffered', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteCourse', 'CourseId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'ReducedAnswersActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteCourse', 'CteCourseId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'ReducedAnswersAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteCourse', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'RefHazardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteCourse', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'RefKeywordTranslationLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteStudentAcademicRecord', 'CteStudentAcademicRecordId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'RefSupportToolTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteStudentAcademicRecord', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'ScaffoldingActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteStudentAcademicRecord', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'ScaffoldingAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'CteStudentAcademicRecord', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'SignedEnglishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'DataCollection', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'SignedEnglishOnDemandIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodCredential', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'TextGraphicsIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodCredential', 'EarlyChildhoodCredentialId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'TextOnlyIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodCredential', 'PersonCredentialId', '11') +VALUES ('', 'AssessmentItemApipDescription', 'TextOnlyOnDemandIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodCredential', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemCharacteristic', 'AssessmentItemCharacteristicId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemCharacteristic', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'EarlyChildhoodProgramTypeOfferedId', '11') +VALUES ('', 'AssessmentItemCharacteristic', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'OrganizationId', '11') +VALUES ('', 'AssessmentItemCharacteristic', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemPossibleResponse', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemPossibleResponse', 'AssessmentItemPossibleResponseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'ELChildDemographicId', '11') +VALUES ('', 'AssessmentItemPossibleResponse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'FosterCareEndDate', '11') +VALUES ('', 'AssessmentItemPossibleResponse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'FosterCareStartDate', '11') +VALUES ('', 'AssessmentItemResponse', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'PersonId', '11') +VALUES ('', 'AssessmentItemResponse', 'AssessmentItemResponseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDemographic', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemResponse', 'AssessmentParticipantSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDevelopmentalAssessment', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemResponse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDevelopmentalAssessment', 'ELChildDevelopmentalAssessmentId', '11') +VALUES ('', 'AssessmentItemResponse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDevelopmentalAssessment', 'PersonId', '11') +VALUES ('', 'AssessmentItemResponseTheory', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildDevelopmentalAssessment', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemResponseTheory', 'AssessmentItemResponseTheoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildHealth', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemResponseTheory', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildHealth', 'ELChildHealthId', '11') +VALUES ('', 'AssessmentItemResponseTheory', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildHealth', 'PersonId', '11') +VALUES ('', 'AssessmentItemRubricCriterionResult', 'AssessmentItemResponseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildHealth', 'RecordStatusId', '11') +VALUES ('', 'AssessmentItemRubricCriterionResult', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'DataCollectionId', '11') +VALUES ('', 'AssessmentItemRubricCriterionResult', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'ELChildIndividualizedProgramId', '11') +VALUES ('', 'AssessmentItemRubricCriterionResult', 'RubricCriterionLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'IndividualizedProgramId', '11') +VALUES ('', 'AssessmentLanguage', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'PersonId', '11') +VALUES ('', 'AssessmentLanguage', 'AssessmentLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildIndividualizedProgram', 'RecordStatusId', '11') +VALUES ('', 'AssessmentLanguage', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildOutcomeSummary', 'DataCollectionId', '11') +VALUES ('', 'AssessmentLanguage', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildOutcomeSummary', 'ELChildOutcomeSummaryId', '11') +VALUES ('', 'AssessmentLanguage', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildOutcomeSummary', 'PersonId', '11') +VALUES ('', 'AssessmentLevelsForWhichDesigned', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildOutcomeSummary', 'RecordStatusId', '11') +VALUES ('', 'AssessmentLevelsForWhichDesigned', 'AssessmentLevelsForWhichDesignedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildProgramEligibility', 'DataCollectionId', '11') +VALUES ('', 'AssessmentLevelsForWhichDesigned', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildProgramEligibility', 'ELChildProgramEligibilityId', '11') +VALUES ('', 'AssessmentLevelsForWhichDesigned', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildProgramEligibility', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentLevelsForWhichDesigned', 'RefGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildProgramEligibility', 'RecordStatusId', '11') +VALUES ('', 'AssessmentNeedApipContent', 'AssessmentNeedApipContentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildService', 'DataCollectionId', '11') +VALUES ('', 'AssessmentNeedApipContent', 'AssessmentPersonalNeedsProfileContentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildService', 'ELChildServiceId', '11') +VALUES ('', 'AssessmentNeedApipContent', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildService', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentNeedApipContent', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildService', 'RecordStatusId', '11') +VALUES ('', 'AssessmentNeedApipControl', 'AssessmentNeedApipControlId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildServicesApplication', 'DataCollectionId', '11') +VALUES ('', 'AssessmentNeedApipControl', 'AssessmentPersonalNeedsProfileControlId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildServicesApplication', 'ELChildServicesApplicationId', '11') +VALUES ('', 'AssessmentNeedApipControl', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildServicesApplication', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentNeedApipControl', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildServicesApplication', 'RecordStatusId', '11') +VALUES ('', 'AssessmentNeedApipDisplay', 'AssessmentNeedApipDisplayId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'DataCollectionId', '11') +VALUES ('', 'AssessmentNeedApipDisplay', 'AssessmentPersonalNeedsProfileDisplayId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'ELChildTransitionPlanId', '11') +VALUES ('', 'AssessmentNeedApipDisplay', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'IndividualizedProgramId', '11') +VALUES ('', 'AssessmentNeedApipDisplay', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'PersonId', '11') +VALUES ('', 'AssessmentNeedBraille', 'AssessmentNeedBrailleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELChildTransitionPlan', 'RecordStatusId', '11') +VALUES ('', 'AssessmentNeedBraille', 'AssessmentPersonalNeedsProfileDisplayId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSection', 'DataCollectionId', '11') +VALUES ('', 'AssessmentNeedBraille', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSection', 'ELClassSectionId', '11') +VALUES ('', 'AssessmentNeedBraille', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSection', 'OrganizationId', '11') +VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentNeedScreenEnhancementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSection', 'RecordStatusId', '11') +VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentPersonalNeedsProfileDisplayId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSectionService', 'DataCollectionId', '11') +VALUES ('', 'AssessmentNeedScreenEnhancement', 'AssessmentPersonalNeedsProfileScreenEnhancementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSectionService', 'ELClassSectionId', '11') +VALUES ('', 'AssessmentNeedScreenEnhancement', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSectionService', 'ELClassSectionServiceId', '11') +VALUES ('', 'AssessmentNeedScreenEnhancement', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELClassSectionService', 'RecordStatusId', '11') +VALUES ('', 'AssessmentParticipantSession', 'AssessmentFormSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELCourse', 'CourseId', '11') +VALUES ('', 'AssessmentParticipantSession', 'AssessmentParticipantSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELCourse', 'DataCollectionId', '11') +VALUES ('', 'AssessmentParticipantSession', 'AssessmentRegistrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELCourse', 'ELCourseId', '11') +VALUES ('', 'AssessmentParticipantSession', 'AssessmentSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELCourse', 'RecordStatusId', '11') +VALUES ('', 'AssessmentParticipantSession', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'DataCollectionId', '11') +VALUES ('', 'AssessmentParticipantSession', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'ELClassSectionId', '11') +VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentAccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'ELEnrollmentId', '11') +VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentParticipantSession_AccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentParticipantSession_Accommodation', 'AssessmentParticipantSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollment', 'RecordStatusId', '11') +VALUES ('', 'AssessmentParticipantSession_Accommodation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollmentOtherFunding', 'DataCollectionId', '11') +VALUES ('', 'AssessmentParticipantSession_Accommodation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollmentOtherFunding', 'ELEnrollmentOtherFundingId', '11') +VALUES ('', 'AssessmentPerformanceLevel', 'AssessmentPerformanceLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollmentOtherFunding', 'PersonId', '11') +VALUES ('', 'AssessmentPerformanceLevel', 'AssessmentSubtestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELEnrollmentOtherFunding', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPerformanceLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELFacilityLicensing', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPerformanceLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELFacilityLicensing', 'ELFacilityLicensingId', '11') +VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'AssessmentNeedsProfileContentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELFacilityLicensing', 'OrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'AssessmentPersonalNeedLanguageLearnerId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELFacilityLicensing', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EligibilityEvaluation', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedLanguageLearner', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EligibilityEvaluation', 'EligibilityEvaluationId', '11') +VALUES ('', 'AssessmentPersonalNeedScreenReader', 'AssessmentPersonalNeedScreenReaderId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'EligibilityEvaluation', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedScreenReader', 'AssessmentPersonalNeedsProfileDisplayId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganization', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedScreenReader', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganization', 'ELOrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedScreenReader', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganization', 'OrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfile', 'AssessmentPersonalNeedsProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganization', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfile', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationAvailability', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfile', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationAvailability', 'ELOrganizationAvailabilityId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'AssessmentPersonalNeedsProfileContentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationAvailability', 'OrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'AssessmentPersonalNeedsProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationAvailability', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ChunkingActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationFunds', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ChunkingAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationFunds', 'ELOrganizationFundsId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'CognitiveGuidanceActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationFunds', 'OrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'CognitiveGuidanceAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationFunds', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationMonitoring', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordEmphasisActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationMonitoring', 'ELOrganizationMonitoringId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordEmphasisAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationMonitoring', 'OrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordTranslationsActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationMonitoring', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'KeywordTranslationsAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'NegativesRemovedActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'ELOrganizationStudentResponsibilityId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'NegativesRemovedAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganizationStudentResponsibility', 'RecordEndDateTime', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ReducedAnswersActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'RecordStartDateTime', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ReducedAnswersAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELOrganizationStudentResponsibility', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ScaffoldingActivateByDefaultIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELProgramLicensing', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileContent', 'ScaffoldingAssignedSupportIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELProgramLicensing', 'ELProgramLicensingId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'AssessmentPersonalNeedsProfileControlId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELProgramLicensing', 'OrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'AssessmentPersonalNeedsProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELProgramLicensing', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityInitiative', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileControl', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityInitiative', 'ELQualityInitiativeId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'AssessmentPersonalNeedsProfileDisplayId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityInitiative', 'OrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'AssessmentPersonalNeedsProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityInitiative', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityRatingImprovement', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileDisplay', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityRatingImprovement', 'ELQualityRatingImprovementId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'AssessmentPersonalNeedsProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityRatingImprovement', 'OrganizationId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'AssessmentPersonalNeedsProfileScreenEnhancementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELQualityRatingImprovement', 'RecordStatusId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELServicePartner', 'DataCollectionId', '11') +VALUES ('', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELServicePartner', 'ELServicePartnerId', '11') +VALUES ('', 'AssessmentRegistration', 'AssessmentAdministrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELServicePartner', 'OrganizationId', '11') +VALUES ('', 'AssessmentRegistration', 'AssessmentFormId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELServicePartner', 'RecordStatusId', '11') +VALUES ('', 'AssessmentRegistration', 'AssessmentRegistrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaff', 'DataCollectionId', '11') +VALUES ('', 'AssessmentRegistration', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaff', 'ELStaffId', '11') +VALUES ('', 'AssessmentRegistration', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaff', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentRegistration', 'LeaOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaff', 'RecordStatusId', '11') +VALUES ('', 'AssessmentRegistration', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffAssignment', 'DataCollectionId', '11') +VALUES ('', 'AssessmentRegistration', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffAssignment', 'ELStaffAssignmentId', '11') +VALUES ('', 'AssessmentRegistration', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffAssignment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'AssessmentRegistration', 'SchoolOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffAssignment', 'RecordStatusId', '11') +VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentAccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEducation', 'DataCollectionId', '11') +VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentRegistration_AccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEducation', 'ELStaffEducationId', '11') +VALUES ('', 'AssessmentRegistration_Accommodation', 'AssessmentRegistrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEducation', 'ELStaffId', '11') +VALUES ('', 'AssessmentRegistration_Accommodation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEducation', 'RecordStatusId', '11') +VALUES ('', 'AssessmentRegistration_Accommodation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEmployment', 'DataCollectionId', '11') +VALUES ('', 'AssessmentResult', 'AssessmentRegistrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEmployment', 'ELStaffEmploymentId', '11') +VALUES ('', 'AssessmentResult', 'AssessmentResultId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEmployment', 'RecordStatusId', '11') +VALUES ('', 'AssessmentResult', 'AssessmentSubtestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'ELStaffEmployment', 'StaffEmploymentId', '11') +VALUES ('', 'AssessmentResult', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Facility', 'DataCollectionId', '11') +VALUES ('', 'AssessmentResult', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Facility', 'FacilityId', '11') +VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentPerformanceLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Facility', 'OrganizationId', '11') +VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentResult_PerformanceLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Facility', 'RecordStatusId', '11') +VALUES ('', 'AssessmentResult_PerformanceLevel', 'AssessmentResultId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityAudit', 'DataCollectionId', '11') +VALUES ('', 'AssessmentResult_PerformanceLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityAudit', 'FacilityAuditId', '11') +VALUES ('', 'AssessmentResult_PerformanceLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityAudit', 'FacilityId', '11') +VALUES ('', 'AssessmentResultRubricCriterionResult', 'AssessmentResultId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityAudit', 'RecordStatusId', '11') +VALUES ('', 'AssessmentResultRubricCriterionResult', 'AssessmentResultRubricCriterionResultId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'BuildingSystemComponentId', '11') +VALUES ('', 'AssessmentResultRubricCriterionResult', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'DataCollectionId', '11') +VALUES ('', 'AssessmentResultRubricCriterionResult', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'FacilityComplianceId', '11') +VALUES ('', 'AssessmentResultRubricCriterionResult', 'RubricCriterionLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'FacilityMandateId', '11') +VALUES ('', 'AssessmentSession', 'AssessmentAdministrationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityCompliance', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSession', 'AssessmentSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesign', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSession', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesign', 'FacilityDesignId', '11') +VALUES ('', 'AssessmentSession', 'Lea_OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesign', 'FacilityId', '11') +VALUES ('', 'AssessmentSession', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesign', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSession', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesignConstruction', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSession', 'School_OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesignConstruction', 'FacilityDesignConstructionId', '11') +VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentParticipantSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesignConstruction', 'FacilityDesignId', '11') +VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityDesignConstruction', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSessionStaffRole', 'AssessmentSessionStaffRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityEnergy', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSessionStaffRole', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityEnergy', 'FacilityEnergyId', '11') +VALUES ('', 'AssessmentSessionStaffRole', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityEnergy', 'FacilityId', '11') +VALUES ('', 'AssessmentSessionStaffRole', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityEnergy', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSubtest', 'AssessmentFormId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinance', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSubtest', 'AssessmentSubtestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinance', 'FacilityFinanceId', '11') +VALUES ('', 'AssessmentSubtest', 'ChildOf_AssessmentSubtestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinance', 'FacilityId', '11') +VALUES ('', 'AssessmentSubtest', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinance', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSubtest', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'FacilityFinancialId', '11') +VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentSubtestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'FacilityLeaseId', '11') +VALUES ('', 'AssessmentSubtest_AssessmentItem', 'AssessmentSubtestItemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'FacilityMortgageFeeId', '11') +VALUES ('', 'AssessmentSubtest_AssessmentItem', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'FacilityMortgageId', '11') +VALUES ('', 'AssessmentSubtest_AssessmentItem', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'OrganizationFinancialId', '11') +VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'AssessmentSubtest_CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityFinancial', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'AssessmentSubtestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityHazard', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityHazard', 'FacilityHazardId', '11') +VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityHazard', 'FacilityId', '11') +VALUES ('', 'AssessmentSubtest_CompetencyDefinition', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityHazard', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'AssessmentSubtestELDevelopmentalDomainId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityJointUse', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'AssessmentSubtestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityJointUse', 'FacilityId', '11') +VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityJointUse', 'FacilityJointUseId', '11') +VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityJointUse', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSubtestELDevelopmentalDomain', 'RefAssessmentELDevelopmentalDomainId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLease', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'AssessmentSubTestId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLease', 'FacilityId', '11') +VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'AssessmentSubtestLevelsForWhichDesignedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLease', 'FacilityLeaseId', '11') +VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLease', 'RecordStatusId', '11') +VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'DataCollectionId', '11') +VALUES ('', 'AssessmentSubtestLevelsForWhichDesigned', 'RefGradeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'FacilityId', '11') +VALUES ('', 'Authentication', 'AuthenticationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'FacilityLocationId', '11') +VALUES ('', 'Authentication', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'LocationId', '11') +VALUES ('', 'Authentication', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityLocation', 'RecordStatusId', '11') +VALUES ('', 'Authentication', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagement', 'DataCollectionId', '11') +VALUES ('', 'Authorization', 'ApplicationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagement', 'FacilityId', '11') +VALUES ('', 'Authorization', 'AuthorizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagement', 'FacilityManagementId', '11') +VALUES ('', 'Authorization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagement', 'RecordStatusId', '11') +VALUES ('', 'Authorization', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagementPlan', 'DataCollectionId', '11') +VALUES ('', 'Authorization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagementPlan', 'FacilityManagementId', '11') +VALUES ('', 'AuthorizationDocument', 'AuthorizationDocumentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagementPlan', 'FacilityManagementPlanId', '11') +VALUES ('', 'AuthorizationDocument', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityManagementPlan', 'RecordStatusId', '11') +VALUES ('', 'AuthorizationDocument', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMandate', 'DataCollectionId', '11') +VALUES ('', 'AuthorizationDocument', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMandate', 'FacilityId', '11') +VALUES ('', 'BoardMembership', 'BoardMembershipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMandate', 'FacilityMandateId', '11') +VALUES ('', 'BoardMembership', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMandate', 'RecordStatusId', '11') +VALUES ('', 'BoardMembership', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgage', 'DataCollectionId', '11') +VALUES ('', 'BoardMembership', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgage', 'FacilityId', '11') +VALUES ('', 'BoardMembership', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgage', 'FacilityMortgageId', '11') +VALUES ('', 'BoardMembership', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgage', 'RecordStatusId', '11') +VALUES ('', 'BuildingSpace', 'BuildingSpaceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgageFee', 'DataCollectionId', '11') +VALUES ('', 'BuildingSpace', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgageFee', 'FacilityMortgageFeeId', '11') +VALUES ('', 'BuildingSpace', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgageFee', 'FacilityMortgageId', '11') +VALUES ('', 'BuildingSpace', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityMortgageFee', 'RecordStatusId', '11') +VALUES ('', 'BuildingSpaceUtilization', 'BuildingSpaceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'DataCollectionId', '11') +VALUES ('', 'BuildingSpaceUtilization', 'BuildingSpaceUtilizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'FacilityId', '11') +VALUES ('', 'BuildingSpaceUtilization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'FacilityRelationshipId', '11') +VALUES ('', 'BuildingSpaceUtilization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'Parent_FacilityId', '11') +VALUES ('', 'BuildingSystemCategory', 'BuildingSystemCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityRelationship', 'RecordStatusId', '11') +VALUES ('', 'BuildingSystemCategory', 'BuildingSystemComponentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySchoolDesign', 'DataCollectionId', '11') +VALUES ('', 'BuildingSystemCategory', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySchoolDesign', 'FacilityDesignId', '11') +VALUES ('', 'BuildingSystemCategory', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySchoolDesign', 'FacilitySchoolDesignId', '11') +VALUES ('', 'BuildingSystemComponent', 'BuildingSystemComponentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySchoolDesign', 'RecordStatusId', '11') +VALUES ('', 'BuildingSystemComponent', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySite', 'DataCollectionId', '11') +VALUES ('', 'BuildingSystemComponent', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySite', 'FacilityId', '11') +VALUES ('', 'BuildingSystemComponent', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySite', 'FacilitySiteId', '11') +VALUES ('', 'BuildingSystemComponent', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilitySite', 'RecordStatusId', '11') +VALUES ('', 'BuildingSystemComponentService', 'BuildingSystemComponentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityUtilization', 'DataCollectionId', '11') +VALUES ('', 'BuildingSystemComponentService', 'BuildingSystemComponentServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityUtilization', 'FacilityId', '11') +VALUES ('', 'BuildingSystemComponentService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityUtilization', 'FacilityUtilizationId', '11') +VALUES ('', 'BuildingSystemComponentService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FacilityUtilization', 'RecordStatusId', '11') +VALUES ('', 'Classroom', 'ClassroomId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccount', 'DataCollectionId', '11') +VALUES ('', 'Classroom', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccount', 'FederalProgramCode', '11') +VALUES ('', 'Classroom', 'LocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccount', 'FinancialAccountId', '11') +VALUES ('', 'Classroom', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccount', 'RecordStatusId', '11') +VALUES ('', 'CompetencyDefAssociation', 'CompetencyDefAssociationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'AccountNumber', '11') +VALUES ('', 'CompetencyDefAssociation', 'CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'DataCollectionId', '11') +VALUES ('', 'CompetencyDefAssociation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'Description', '11') +VALUES ('', 'CompetencyDefAssociation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'FinancialAccountLocalId', '11') +VALUES ('', 'CompetencyDefAssociation', 'RefEntityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'Name', '11') +VALUES ('', 'CompetencyDefEducationLevel', 'CompetencyDefEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FinancialAccountLocal', 'RecordEndDateTime', '11') +VALUES ('', 'CompetencyDefEducationLevel', 'CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'RecordStartDateTime', '11') +VALUES ('', 'CompetencyDefEducationLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountLocal', 'RecordStatusId', '11') +VALUES ('', 'CompetencyDefEducationLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountProgram', 'DataCollectionId', '11') +VALUES ('', 'CompetencyDefinition', 'ChildOf_CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountProgram', 'FinancialAccountProgramId', '11') +VALUES ('', 'CompetencyDefinition', 'CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAccountProgram', 'RecordStatusId', '11') +VALUES ('', 'CompetencyDefinition', 'CompetencyFrameworkId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidApplication', 'DataCollectionId', '11') +VALUES ('', 'CompetencyDefinition', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidApplication', 'FinancialAidApplicationId', '11') +VALUES ('', 'CompetencyDefinition', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidApplication', 'OrganizationPersonRoleId', '11') +VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencyDefinition_CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidApplication', 'RecordStatusId', '11') +VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidAward', 'DataCollectionId', '11') +VALUES ('', 'CompetencyDefinition_CompetencySet', 'CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidAward', 'FinancialAidAwardId', '11') +VALUES ('', 'CompetencyDefinition_CompetencySet', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidAward', 'OrganizationPersonRoleId', '11') +VALUES ('', 'CompetencyDefinition_CompetencySet', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'FinancialAidAward', 'RecordStatusId', '11') +VALUES ('', 'CompetencyFramework', 'CompetencyFrameworkId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'CompetencySetId', '11') +VALUES ('', 'CompetencyFramework', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'DataCollectionId', '11') +VALUES ('', 'CompetencyFramework', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'GoalId', '11') +VALUES ('', 'CompetencySet', 'ChildOf_CompetencySet', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'OrganizationPersonRoleId', '11') +VALUES ('', 'CompetencySet', 'CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Goal', 'RecordStatusId', '11') +VALUES ('', 'CompetencySet', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurement', 'DataCollectionId', '11') +VALUES ('', 'CompetencySet', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurement', 'GoalId', '11') +VALUES ('', 'CompetencySet_Rubric', 'CompetencySet_RubricId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurement', 'GoalMeasurementId', '11') +VALUES ('', 'CompetencySet_Rubric', 'CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurement', 'RecordStatusId', '11') +VALUES ('', 'CompetencySet_Rubric', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurementCriterion', 'DataCollectionId', '11') +VALUES ('', 'CompetencySet_Rubric', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurementCriterion', 'GoalMeasurementCriterionId', '11') +VALUES ('', 'CompetencySet_Rubric', 'RubricId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurementCriterion', 'GoalMeasurementId', '11') +VALUES ('', 'CompetencySet_RubricCriterion', 'CompetencySet_RubricCriterionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalMeasurementCriterion', 'RecordStatusId', '11') +VALUES ('', 'CompetencySet_RubricCriterion', 'CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'DataCollectionId', '11') +VALUES ('', 'CompetencySet_RubricCriterion', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'Date', '11') +VALUES ('', 'CompetencySet_RubricCriterion', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'GoalId', '11') +VALUES ('', 'CompetencySet_RubricCriterion', 'RubricCriterionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'GoalPerformanceId', '11') +VALUES ('', 'CoreKnowledgeArea', 'CoreKnowledgeAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'GoalPerformance', 'RecordStatusId', '11') +VALUES ('', 'CoreKnowledgeArea', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDEAEligibilityEvaluationCategory', 'DataCollectionId', '11') +VALUES ('', 'CoreKnowledgeArea', 'ProfessionalDevelopmentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDEAEligibilityEvaluationCategory', 'EligibilityEvaluationId', '11') +VALUES ('', 'CoreKnowledgeArea', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDEAEligibilityEvaluationCategory', 'IDEAEligibilityEvaluationCategoryId', '11') +VALUES ('', 'Course', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDEAEligibilityEvaluationCategory', 'RecordStatusId', '11') +VALUES ('', 'Course', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDSVersion', 'CurrentVersion', '11') +VALUES ('', 'Course', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDSVersion', 'IDSVersionDate', '11') +VALUES ('', 'Course', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDSVersion', 'IDSVersionId', '11') +VALUES ('', 'CourseFundingSource', 'CourseFundingSourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IDSVersion', 'IDSVersionNumber', '11') +VALUES ('', 'CourseFundingSource', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'AuthorizationDocumentId', '11') +VALUES ('', 'CourseFundingSource', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'DataCollectionId', '11') +VALUES ('', 'CourseFundingSource', 'FinancialAccountId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'IEPAuthorizationId', '11') +VALUES ('', 'CourseFundingSource', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'IndividualizedProgramId', '11') +VALUES ('', 'CourseFundingSource', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorization', 'RecordStatusId', '11') +VALUES ('', 'CourseFundingSource', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorizationRejected', 'DataCollectionId', '11') +VALUES ('', 'CourseRelationship', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorizationRejected', 'IEPAuthorizationId', '11') +VALUES ('', 'CourseRelationship', 'CourseRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorizationRejected', 'IEPAuthorizationRejectedId', '11') +VALUES ('', 'CourseRelationship', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPAuthorizationRejected', 'RecordStatusId', '11') +VALUES ('', 'CourseRelationship', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPPresentLevel', 'DataCollectionId', '11') +VALUES ('', 'CourseRelationship', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPPresentLevel', 'IEPPresentLevelId', '11') +VALUES ('', 'CourseRelationship', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPPresentLevel', 'IndividualizedProgramId', '11') +VALUES ('', 'CourseRelationship', 'RelatedCourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IEPPresentLevel', 'RecordStatusId', '11') +VALUES ('', 'CourseSection', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Incident', 'DataCollectionId', '11') +VALUES ('', 'CourseSection', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Incident', 'IncidentId', '11') +VALUES ('', 'CourseSection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Incident', 'OrganizationPersonRoleId', '11') +VALUES ('', 'CourseSection', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'Incident', 'RecordStatusId', '11') +VALUES ('', 'CourseSection', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'DataCollectionId', '11') +VALUES ('', 'CourseSection', 'RefCreditTypeEarnedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'IncidentId', '11') +VALUES ('', 'CourseSectionAssessmentReporting', 'CourseSectionAssessmentReportingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'IncidentPersonId', '11') +VALUES ('', 'CourseSectionAssessmentReporting', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'PersonId', '11') +VALUES ('', 'CourseSectionAssessmentReporting', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IncidentPerson', 'RecordStatusId', '11') +VALUES ('', 'CourseSectionAssessmentReporting', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgram', 'DataCollectionId', '11') +VALUES ('', 'CourseSectionLevel', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgram', 'IndividualizedProgramId', '11') +VALUES ('', 'CourseSectionLevel', 'CourseSectionLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgram', 'OrganizationPersonRoleId', '11') +VALUES ('', 'CourseSectionLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgram', 'RecordStatusId', '11') +VALUES ('', 'CourseSectionLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodation', 'DataCollectionId', '11') +VALUES ('', 'CourseSectionLocation', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodation', 'IndividualizedProgramAccommodationId', '11') +VALUES ('', 'CourseSectionLocation', 'CourseSectionLocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodation', 'IndividualizedProgramId', '11') +VALUES ('', 'CourseSectionLocation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodation', 'RecordStatusId', '11') +VALUES ('', 'CourseSectionLocation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodationSubject', 'DataCollectionId', '11') +VALUES ('', 'CourseSectionSchedule', 'CourseSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodationSubject', 'IndividualizedProgramAccommodationId', '11') +VALUES ('', 'CourseSectionSchedule', 'CourseSectionScheduleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodationSubject', 'IndividualizedProgramAccommodationSubjectId', '11') +VALUES ('', 'CourseSectionSchedule', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAccommodationSubject', 'RecordStatusId', '11') +VALUES ('', 'CourseSectionSchedule', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAmendment', 'DataCollectionId', '11') +VALUES ('', 'CredentialAward', 'CredentialAwardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAmendment', 'IndividualizedProgramAmendmentId', '11') +VALUES ('', 'CredentialAward', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAmendment', 'IndividualizedProgramId', '11') +VALUES ('', 'CredentialAward', 'CredentialIssuerId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAmendment', 'RecordStatusId', '11') +VALUES ('', 'CredentialAward', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'AssessmentId', '11') +VALUES ('', 'CredentialAward', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'DataCollectionId', '11') +VALUES ('', 'CredentialAward', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'IndividualizedProgramAssessmentId', '11') +VALUES ('', 'CredentialAward', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'IndividualizedProgramId', '11') +VALUES ('', 'CredentialAwardCredit', 'CredentialAwardCreditId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessment', 'RecordStatusId', '11') +VALUES ('', 'CredentialAwardCredit', 'CredentialAwardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'AssessmentAccommodationId', '11') +VALUES ('', 'CredentialAwardCredit', 'CredentialCriteriaCourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'DataCollectionId', '11') +VALUES ('', 'CredentialAwardCredit', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'IndividualizedProgramAssessmentAccommodationId', '11') +VALUES ('', 'CredentialAwardCredit', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'IndividualizedProgramAssessmentId', '11') +VALUES ('', 'CredentialAwardCredit', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'RecordStatusId', '11') +VALUES ('', 'CredentialAwardEvidence', 'AssessmentResultId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibility', 'DataCollectionId', '11') +VALUES ('', 'CredentialAwardEvidence', 'CredentialAwardEvidenceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibility', 'IndividualizedProgramEligibilityId', '11') +VALUES ('', 'CredentialAwardEvidence', 'CredentialAwardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibility', 'IndividualizedProgramId', '11') +VALUES ('', 'CredentialAwardEvidence', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibility', 'RecordStatusId', '11') +VALUES ('', 'CredentialAwardEvidence', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'DataCollectionId', '11') +VALUES ('', 'CredentialAwardRelationship', 'CredentialAwardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'EligibilityEvaluationId', '11') +VALUES ('', 'CredentialAwardRelationship', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'IndividualizedProgramEligibilityEvaluationId', '11') +VALUES ('', 'CredentialAwardRelationship', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'IndividualizedProgramEligibilityId', '11') +VALUES ('', 'CredentialAwardRelationship', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'RecordStatusId', '11') +VALUES ('', 'CredentialAwardRelationship', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'DataCollectionId', '11') +VALUES ('', 'CredentialAwardRelationship', 'RefCredentialAwardRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'GoalId', '11') +VALUES ('', 'CredentialAwardRelationship', 'RelatedCredentialAwardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'IndividualizedProgramGoalId', '11') +VALUES ('', 'CredentialCriteriaCourse', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'IndividualizedProgramId', '11') +VALUES ('', 'CredentialCriteriaCourse', 'CredentialCriteriaCourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramGoal', 'RecordStatusId', '11') +VALUES ('', 'CredentialCriteriaCourse', 'CredentialDefCriteriaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeeting', 'DataCollectionId', '11') +VALUES ('', 'CredentialCriteriaCourse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeeting', 'IndividualizedProgramId', '11') +VALUES ('', 'CredentialCriteriaCourse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeeting', 'IndividualizedProgramMeetingId', '11') +VALUES ('', 'CredentialDefAgent', 'CredentialDefAgentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeeting', 'RecordStatusId', '11') +VALUES ('', 'CredentialDefAgent', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'DataCollectionId', '11') +VALUES ('', 'CredentialDefAgent', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'IndividualizedProgramMeetingAttendeeId', '11') +VALUES ('', 'CredentialDefAgent', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'IndividualizedProgramMeetingId', '11') +VALUES ('', 'CredentialDefAgent', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'OrganizationPersonRoleId', '11') +VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefAgentCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramMeetingAttendee', 'RecordStatusId', '11') +VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefAgentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'DataCollectionId', '11') +VALUES ('', 'CredentialDefAgentCredential', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'GoalPerformanceId', '11') +VALUES ('', 'CredentialDefAgentCredential', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'IndividualizedProgramProgressGoalId', '11') +VALUES ('', 'CredentialDefAgentCredential', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'IndividualizedProgramProgressReportId', '11') +VALUES ('', 'CredentialDefCategory', 'CredentialDefCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressGoal', 'RecordStatusId', '11') +VALUES ('', 'CredentialDefCategory', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'DataCollectionId', '11') +VALUES ('', 'CredentialDefCategory', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramId', '11') +VALUES ('', 'CredentialDefCategory', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramProgressReportId', '11') +VALUES ('', 'CredentialDefCriteria', 'CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramProgressReportPlanId', '11') +VALUES ('', 'CredentialDefCriteria', 'CredentialDefCriteriaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReport', 'RecordStatusId', '11') +VALUES ('', 'CredentialDefCriteria', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReportPlan', 'DataCollectionId', '11') +VALUES ('', 'CredentialDefCriteria', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReportPlan', 'IndividualizedProgramId', '11') +VALUES ('', 'CredentialDefCriteria', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReportPlan', 'IndividualizedProgramProgressReportPlanId', '11') +VALUES ('', 'CredentialDefGradeLevel', 'CredentialDefGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramProgressReportPlan', 'RecordStatusId', '11') +VALUES ('', 'CredentialDefGradeLevel', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramService', 'DataCollectionId', '11') +VALUES ('', 'CredentialDefGradeLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramService', 'IndividualizedProgramServiceId', '11') +VALUES ('', 'CredentialDefGradeLevel', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramService', 'PersonId', '11') +VALUES ('', 'CredentialDefGradeLevel', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramService', 'RecordStatusId', '11') +VALUES ('', 'CredentialDefGradeLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'DataCollectionId', '11') +VALUES ('', 'CredentialDefGradeLevel', 'RefGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'IndividualizedProgramId', '11') +VALUES ('', 'CredentialDefIdentifier', 'CredentialDefIdentifierId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'IndividualizedProgramServicesReceivedId', '11') +VALUES ('', 'CredentialDefIdentifier', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'RecordStatusId', '11') +VALUES ('', 'CredentialDefIdentifier', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IndividualizedProgramServicesReceived', 'ServicesReceivedId', '11') +VALUES ('', 'CredentialDefIdentifier', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IPEDSFinance', 'DataCollectionId', '11') +VALUES ('', 'CredentialDefinition', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IPEDSFinance', 'IPEDSFinanceId', '11') +VALUES ('', 'CredentialDefinition', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IPEDSFinance', 'OrganizationFinancialId', '11') +VALUES ('', 'CredentialDefinition', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'IPEDSFinance', 'RecordStatusId', '11') +VALUES ('', 'CredentialIssuer', 'CredentialIssuerId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'DataCollectionId', '11') +VALUES ('', 'CredentialIssuer', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'OrganizationId', '11') +VALUES ('', 'CredentialIssuer', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'RecordStatusId', '11') +VALUES ('', 'CredentialIssuer', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'DataCollectionId', '11') +VALUES ('', 'CredentialOffered', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'K12CharterSchoolManagementOrganizationId', '11') +VALUES ('', 'CredentialOffered', 'CredentialIssuerId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'OrganizationId', '11') +VALUES ('', 'CredentialOffered', 'CredentialOfferedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'RecordStatusId', '11') +VALUES ('', 'CredentialOffered', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12CharterSchoolManagementOrganization', 'RefCharterSchoolManagementOrganizationTypeId', '11') +VALUES ('', 'CredentialOffered', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'CourseId', '11') +VALUES ('', 'CteCourse', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'DataCollectionId', '11') +VALUES ('', 'CteCourse', 'CteCourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'K12CourseId', '11') +VALUES ('', 'CteCourse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'RecordStatusId', '11') +VALUES ('', 'CteCourse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Course', 'RefCreditTypeEarnedId', '11') +VALUES ('', 'CteStudentAcademicRecord', 'CteStudentAcademicRecordId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'DataCollectionId', '11') +VALUES ('', 'CteStudentAcademicRecord', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'FederalProgramCode', '11') +VALUES ('', 'CteStudentAcademicRecord', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'FederalProgramsFundingAllocation', '11') +VALUES ('', 'CteStudentAcademicRecord', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'FundsTransferAmount', '11') +VALUES ('', 'DataCollection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'K12FederalFundAllocationId', '11') +VALUES ('', 'EarlyChildhoodCredential', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'LeaTransferabilityOfFunds', '11') +VALUES ('', 'EarlyChildhoodCredential', 'EarlyChildhoodCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'NumberOfImmigrantProgramSubgrants', '11') +VALUES ('', 'EarlyChildhoodCredential', 'PersonCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'OrganizationCalendarSessionId', '11') +VALUES ('', 'EarlyChildhoodCredential', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'RecordStatusId', '11') +VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'RefFederalProgramFundingAllocationTypeId', '11') +VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'EarlyChildhoodProgramTypeOfferedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'RefLeaFundsTransferTypeId', '11') +VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'RefReapAlternativeFundingStatusId', '11') +VALUES ('', 'EarlyChildhoodProgramTypeOffered', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'SchoolImprovementAllocation', '11') +VALUES ('', 'ELChildDemographic', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'SchoolImprovementReservedPercent', '11') +VALUES ('', 'ELChildDemographic', 'ELChildDemographicId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12FederalFundAllocation', 'SesPerPupilExpenditure', '11') +VALUES ('', 'ELChildDemographic', 'FosterCareEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'DataCollectionId', '11') +VALUES ('', 'ELChildDemographic', 'FosterCareStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'K12LeaId', '11') +VALUES ('', 'ELChildDemographic', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'OrganizationId', '11') +VALUES ('', 'ELChildDemographic', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'RecordStatusId', '11') +VALUES ('', 'ELChildDevelopmentalAssessment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Lea', 'RefCharterLeaStatusId', '11') +VALUES ('', 'ELChildDevelopmentalAssessment', 'ELChildDevelopmentalAssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'DataCollectionId', '11') +VALUES ('', 'ELChildDevelopmentalAssessment', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'K12LeaFederalFundsId', '11') +VALUES ('', 'ELChildDevelopmentalAssessment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'OrganizationCalendarSessionId', '11') +VALUES ('', 'ELChildHealth', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'ParentalInvolvementReservationFunds', '11') +VALUES ('', 'ELChildHealth', 'ELChildHealthId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalFunds', 'RecordStatusId', '11') +VALUES ('', 'ELChildHealth', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalReporting', 'DataCollectionId', '11') +VALUES ('', 'ELChildHealth', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalReporting', 'K12LeaFederalReportingId', '11') +VALUES ('', 'ELChildIndividualizedProgram', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalReporting', 'K12LeaId', '11') +VALUES ('', 'ELChildIndividualizedProgram', 'ELChildIndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaFederalReporting', 'RecordStatusId', '11') +VALUES ('', 'ELChildIndividualizedProgram', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeLevelsApproved', 'DataCollectionId', '11') +VALUES ('', 'ELChildIndividualizedProgram', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeLevelsApproved', 'K12LeaGradeLevelsApprovedId', '11') +VALUES ('', 'ELChildIndividualizedProgram', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeLevelsApproved', 'K12LeaId', '11') +VALUES ('', 'ELChildOutcomeSummary', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeLevelsApproved', 'RecordStatusId', '11') +VALUES ('', 'ELChildOutcomeSummary', 'ELChildOutcomeSummaryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeOffered', 'DataCollectionId', '11') +VALUES ('', 'ELChildOutcomeSummary', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeOffered', 'K12LeaGradeOfferedId', '11') +VALUES ('', 'ELChildOutcomeSummary', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeOffered', 'K12LeaId', '11') +VALUES ('', 'ELChildProgramEligibility', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaGradeOffered', 'RecordStatusId', '11') +VALUES ('', 'ELChildProgramEligibility', 'ELChildProgramEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibility', 'DataCollectionId', '11') +VALUES ('', 'ELChildProgramEligibility', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibility', 'K12LeaId', '11') +VALUES ('', 'ELChildProgramEligibility', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibility', 'K12LEAPreKEligibilityId', '11') +VALUES ('', 'ELChildService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibility', 'RecordStatusId', '11') +VALUES ('', 'ELChildService', 'ELChildServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'DataCollectionId', '11') +VALUES ('', 'ELChildService', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'K12LeaId', '11') +VALUES ('', 'ELChildService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'K12LEAPreKEligibleAgesIDEAId', '11') +VALUES ('', 'ELChildServicesApplication', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'RecordStatusId', '11') +VALUES ('', 'ELChildServicesApplication', 'ELChildServicesApplicationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaSafeDrugFree', 'DataCollectionId', '11') +VALUES ('', 'ELChildServicesApplication', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaSafeDrugFree', 'K12LeaId', '11') +VALUES ('', 'ELChildServicesApplication', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaSafeDrugFree', 'K12LeaSafeDrugFreeId', '11') +VALUES ('', 'ELChildTransitionPlan', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaSafeDrugFree', 'RecordStatusId', '11') +VALUES ('', 'ELChildTransitionPlan', 'ELChildTransitionPlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'DataCollectionId', '11') +VALUES ('', 'ELChildTransitionPlan', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'K12LeaId', '11') +VALUES ('', 'ELChildTransitionPlan', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'K12LEATitleIIIProfessionalDevelopmentId', '11') +VALUES ('', 'ELChildTransitionPlan', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordStatusId', '11') +VALUES ('', 'ELClassSection', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleISupportService', 'DataCollectionId', '11') +VALUES ('', 'ELClassSection', 'ELClassSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleISupportService', 'K12LeaId', '11') +VALUES ('', 'ELClassSection', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleISupportService', 'K12LeaTitleISupportServiceId', '11') +VALUES ('', 'ELClassSection', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12LeaTitleISupportService', 'RecordStatusId', '11') +VALUES ('', 'ELClassSectionService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12OrganizationStudentResponsibility', 'DataCollectionId', '11') +VALUES ('', 'ELClassSectionService', 'ELClassSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12OrganizationStudentResponsibility', 'K12OrganizationStudentResponsibilityId', '11') +VALUES ('', 'ELClassSectionService', 'ELClassSectionServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12OrganizationStudentResponsibility', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ELClassSectionService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12OrganizationStudentResponsibility', 'RecordStatusId', '11') +VALUES ('', 'ELCourse', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12ProgramOrService', 'DataCollectionId', '11') +VALUES ('', 'ELCourse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12ProgramOrService', 'K12ProgramOrServiceId', '11') +VALUES ('', 'ELCourse', 'ELCourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12ProgramOrService', 'OrganizationId', '11') +VALUES ('', 'ELCourse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12ProgramOrService', 'RecordStatusId', '11') +VALUES ('', 'ELEnrollment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'DataCollectionId', '11') +VALUES ('', 'ELEnrollment', 'ELClassSectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'K12CharterSchoolAuthorizerAgencyId', '11') +VALUES ('', 'ELEnrollment', 'ELEnrollmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'K12SchoolId', '11') +VALUES ('', 'ELEnrollment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'OrganizationId', '11') +VALUES ('', 'ELEnrollment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12School', 'RecordStatusId', '11') +VALUES ('', 'ELEnrollmentOtherFunding', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolCorrectiveAction', 'DataCollectionId', '11') +VALUES ('', 'ELEnrollmentOtherFunding', 'ELEnrollmentOtherFundingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolCorrectiveAction', 'K12SchoolCorrectiveActionId', '11') +VALUES ('', 'ELEnrollmentOtherFunding', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolCorrectiveAction', 'K12SchoolId', '11') +VALUES ('', 'ELEnrollmentOtherFunding', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolCorrectiveAction', 'RecordStatusId', '11') +VALUES ('', 'ELFacilityLicensing', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeLevelsApproved', 'DataCollectionId', '11') +VALUES ('', 'ELFacilityLicensing', 'ELFacilityLicensingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeLevelsApproved', 'K12SchoolGradeLevelsApprovedId', '11') +VALUES ('', 'ELFacilityLicensing', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeLevelsApproved', 'K12SchoolId', '11') +VALUES ('', 'ELFacilityLicensing', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeLevelsApproved', 'RecordStatusId', '11') +VALUES ('', 'EligibilityEvaluation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeOffered', 'DataCollectionId', '11') +VALUES ('', 'EligibilityEvaluation', 'EligibilityEvaluationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeOffered', 'K12SchoolGradeOfferedId', '11') +VALUES ('', 'EligibilityEvaluation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeOffered', 'K12SchoolId', '11') +VALUES ('', 'ELOrganization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolGradeOffered', 'RecordStatusId', '11') +VALUES ('', 'ELOrganization', 'ELOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolImprovement', 'DataCollectionId', '11') +VALUES ('', 'ELOrganization', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolImprovement', 'K12SchoolId', '11') +VALUES ('', 'ELOrganization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolImprovement', 'K12SchoolImprovementId', '11') +VALUES ('', 'ELOrganizationAvailability', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolImprovement', 'RecordStatusId', '11') +VALUES ('', 'ELOrganizationAvailability', 'ELOrganizationAvailabilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'DataCollectionId', '11') +VALUES ('', 'ELOrganizationAvailability', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'IndicatorStatus', '11') +VALUES ('', 'ELOrganizationAvailability', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'IndicatorStatusSubgroup', '11') +VALUES ('', 'ELOrganizationFunds', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'K12SchoolId', '11') +VALUES ('', 'ELOrganizationFunds', 'ELOrganizationFundsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'K12SchoolIndicatorStatusId', '11') +VALUES ('', 'ELOrganizationFunds', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RecordStatusId', '11') +VALUES ('', 'ELOrganizationFunds', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStateDefinedStatusId', '11') +VALUES ('', 'ELOrganizationMonitoring', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusCustomTypeId', '11') +VALUES ('', 'ELOrganizationMonitoring', 'ELOrganizationMonitoringId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusSubgroupTypeId', '11') +VALUES ('', 'ELOrganizationMonitoring', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolIndicatorStatus', 'RefIndicatorStatusTypeId', '11') +VALUES ('', 'ELOrganizationMonitoring', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'DataCollectionId', '11') +VALUES ('', 'ELOrganizationStudentResponsibility', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'K12SchoolId', '11') +VALUES ('', 'ELOrganizationStudentResponsibility', 'ELOrganizationStudentResponsibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'K12SchoolStatusId', '11') +VALUES ('', 'ELOrganizationStudentResponsibility', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RecordStatusId', '11') +VALUES ('', 'ELOrganizationStudentResponsibility', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefComprehensiveAndTargetedSupportId', '11') +VALUES ('', 'ELOrganizationStudentResponsibility', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefComprehensiveSupportId', '11') +VALUES ('', 'ELOrganizationStudentResponsibility', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefNSLPStatusId', '11') +VALUES ('', 'ELProgramLicensing', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefSchoolDangerousStatusId', '11') +VALUES ('', 'ELProgramLicensing', 'ELProgramLicensingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefSchoolImprovementStatusId', '11') +VALUES ('', 'ELProgramLicensing', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SchoolStatus', 'RefTargetedSupportId', '11') +VALUES ('', 'ELProgramLicensing', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Sea', 'DataCollectionId', '11') +VALUES ('', 'ELQualityInitiative', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Sea', 'K12SeaId', '11') +VALUES ('', 'ELQualityInitiative', 'ELQualityInitiativeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Sea', 'OrganizationId', '11') +VALUES ('', 'ELQualityInitiative', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12Sea', 'RecordStatusId', '11') +VALUES ('', 'ELQualityInitiative', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'DataCollectionId', '11') +VALUES ('', 'ELQualityRatingImprovement', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'K12SeaAlternateFundUseId', '11') +VALUES ('', 'ELQualityRatingImprovement', 'ELQualityRatingImprovementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'K12SeaFederalFundsId', '11') +VALUES ('', 'ELQualityRatingImprovement', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'RecordStatusId', '11') +VALUES ('', 'ELQualityRatingImprovement', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaAlternateFundUse', 'RefAlternateFundUsesId', '11') +VALUES ('', 'ELServicePartner', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaFederalFunds', 'DataCollectionId', '11') +VALUES ('', 'ELServicePartner', 'ELServicePartnerId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaFederalFunds', 'K12SeaFederalFundsId', '11') +VALUES ('', 'ELServicePartner', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaFederalFunds', 'K12SeaId', '11') +VALUES ('', 'ELServicePartner', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12SeaFederalFunds', 'RecordStatusId', '11') +VALUES ('', 'ELStaff', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'DataCollectionId', '11') +VALUES ('', 'ELStaff', 'ELStaffId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'K12StaffAssignmentId', '11') +VALUES ('', 'ELStaff', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ELStaff', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'RecordStatusId', '11') +VALUES ('', 'ELStaffAssignment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffAssignment', 'RefEmergencyOrProvisionalCredentialStatusId', '11') +VALUES ('', 'ELStaffAssignment', 'ELStaffAssignmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffEmployment', 'DataCollectionId', '11') +VALUES ('', 'ELStaffAssignment', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffEmployment', 'K12StaffEmploymentId', '11') +VALUES ('', 'ELStaffAssignment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffEmployment', 'RecordStatusId', '11') +VALUES ('', 'ELStaffEducation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StaffEmployment', 'StaffEmploymentId', '11') +VALUES ('', 'ELStaffEducation', 'ELStaffEducationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicHonor', 'DataCollectionId', '11') +VALUES ('', 'ELStaffEducation', 'ELStaffId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicHonor', 'K12StudentAcademicHonorId', '11') +VALUES ('', 'ELStaffEducation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicHonor', 'OrganizationPersonRoleId', '11') +VALUES ('', 'ELStaffEmployment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicHonor', 'RecordStatusId', '11') +VALUES ('', 'ELStaffEmployment', 'ELStaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicRecord', 'DataCollectionId', '11') +VALUES ('', 'ELStaffEmployment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicRecord', 'K12StudentAcademicRecordId', '11') +VALUES ('', 'ELStaffEmployment', 'StaffEmploymentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicRecord', 'OrganizationPersonRoleId', '11') +VALUES ('', 'Facility', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentAcademicRecord', 'RecordStatusId', '11') +VALUES ('', 'Facility', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentActivity', 'DataCollectionId', '11') +VALUES ('', 'Facility', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentActivity', 'K12StudentActivityId', '11') +VALUES ('', 'Facility', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentActivity', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityAudit', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentActivity', 'RecordStatusId', '11') +VALUES ('', 'FacilityAudit', 'FacilityAuditId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCohort', 'DataCollectionId', '11') +VALUES ('', 'FacilityAudit', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCohort', 'K12StudentCohortId', '11') +VALUES ('', 'FacilityAudit', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCohort', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityCompliance', 'BuildingSystemComponentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCohort', 'RecordStatusId', '11') +VALUES ('', 'FacilityCompliance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSection', 'DataCollectionId', '11') +VALUES ('', 'FacilityCompliance', 'FacilityComplianceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSection', 'K12StudentCourseSectionId', '11') +VALUES ('', 'FacilityCompliance', 'FacilityMandateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSection', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityCompliance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSection', 'RecordStatusId', '11') +VALUES ('', 'FacilityDesign', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSectionMark', 'DataCollectionId', '11') +VALUES ('', 'FacilityDesign', 'FacilityDesignId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSectionMark', 'K12StudentCourseSectionId', '11') +VALUES ('', 'FacilityDesign', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSectionMark', 'K12StudentCourseSectionMarkId', '11') +VALUES ('', 'FacilityDesign', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentCourseSectionMark', 'RecordStatusId', '11') +VALUES ('', 'FacilityDesignConstruction', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'DataCollectionId', '11') +VALUES ('', 'FacilityDesignConstruction', 'FacilityDesignConstructionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'IncidentId', '11') +VALUES ('', 'FacilityDesignConstruction', 'FacilityDesignId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'K12StudentDisciplineId', '11') +VALUES ('', 'FacilityDesignConstruction', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityEnergy', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentDiscipline', 'RecordStatusId', '11') +VALUES ('', 'FacilityEnergy', 'FacilityEnergyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEmployment', 'DataCollectionId', '11') +VALUES ('', 'FacilityEnergy', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEmployment', 'K12StudentEmploymentId', '11') +VALUES ('', 'FacilityEnergy', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEmployment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityFinance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEmployment', 'RecordStatusId', '11') +VALUES ('', 'FacilityFinance', 'FacilityFinanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEnrollment', 'DataCollectionId', '11') +VALUES ('', 'FacilityFinance', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEnrollment', 'K12StudentEnrollmentId', '11') +VALUES ('', 'FacilityFinance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEnrollment', 'OrganizationPersonRoleId', '11') +VALUES ('', 'FacilityFinancial', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentEnrollment', 'RecordStatusId', '11') +VALUES ('', 'FacilityFinancial', 'FacilityFinancialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'DataCollectionId', '11') +VALUES ('', 'FacilityFinancial', 'FacilityLeaseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'K12CourseId', '11') +VALUES ('', 'FacilityFinancial', 'FacilityMortgageFeeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('', 'K12StudentGraduationPlan', 'K12StudentGraduationPlanId', '11') +VALUES ('', 'FacilityFinancial', 'FacilityMortgageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001563', 'LearningResource', 'LearningResourceAuthorURL', '11') +VALUES ('', 'FacilityFinancial', 'OrganizationFinancialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001564', 'LearningResource', 'LearningResourceDateModified', '11') +VALUES ('', 'FacilityFinancial', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001565', 'LearningResource', 'RefLearningResourceInteractionModeId', '11') +VALUES ('', 'FacilityHazard', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001566', 'LearningResource', 'LearningResourceAuthorEmail', '11') +VALUES ('', 'FacilityHazard', 'FacilityHazardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001567', 'LearningResource', 'LearningResourcePublisherEmail', '11') +VALUES ('', 'FacilityHazard', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001568', 'LearningResource', 'LearningResourcePublisherURL', '11') +VALUES ('', 'FacilityHazard', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001569', 'CompetencyFramework', 'CompetencyFrameworkPublicationDate', '11') +VALUES ('', 'FacilityJointUse', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001570', 'CompetencyDefinition', 'CompetencyDefSequence', '11') +VALUES ('', 'FacilityJointUse', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001573', 'K12StudentCourseSectionMark', 'StudentCourseSectionGradeNarrative', '11') +VALUES ('', 'FacilityJointUse', 'FacilityJointUseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001573', 'PsStudentCourseSectionMark', 'StudentCourseSectionGradeNarrative', '11') +VALUES ('', 'FacilityJointUse', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001574', 'K12StudentGraduationPlan', 'CreditsRequired', '11') +VALUES ('', 'FacilityLease', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001574', 'Program', 'CreditsRequired', '11') +VALUES ('', 'FacilityLease', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001575', 'K12StudentCourseSection', 'TuitionFunded', '11') +VALUES ('', 'FacilityLease', 'FacilityLeaseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001575', 'PersonCareerEducationPlan', 'TuitionFunded', '11') +VALUES ('', 'FacilityLease', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001576', 'PersonMilitary', 'RefMilitaryConnectedStudentIndicatorId', '11') +VALUES ('', 'FacilityLocation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001577', 'PersonMilitary', 'RefMilitaryActiveStudentIndicatorId', '11') +VALUES ('', 'FacilityLocation', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001578', 'PersonMilitary', 'RefMilitaryVeteranStudentIndicatorId', '11') +VALUES ('', 'FacilityLocation', 'FacilityLocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001579', 'PsInstitution', 'RefAdmissionConsiderationLevelId', '11') +VALUES ('', 'FacilityLocation', 'LocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001580', 'PsInstitution', 'RefAdmissionConsiderationTypeId', '11') +VALUES ('', 'FacilityLocation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001581', 'ELStaffEmployment', 'StaffApprovalIndicator', '11') +VALUES ('', 'FacilityManagement', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001582', 'ELOrganizationFunds', 'RefBillableBasisTypeId', '11') +VALUES ('', 'FacilityManagement', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001583', 'ProgramParticipationCte', 'CareerPathwaysProgramParticipationExitDate', '11') +VALUES ('', 'FacilityManagement', 'FacilityManagementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001584', 'ProgramParticipationCte', 'CareerPathwaysProgramParticipationStartDate', '11') +VALUES ('', 'FacilityManagement', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001587', 'PersonCredential', 'CredentialOrLicenseAwardEntity', '11') +VALUES ('', 'FacilityManagementPlan', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001588', 'PsStudentEnrollment', 'RefDevelopmentalEducationReferralStatusId', '11') +VALUES ('', 'FacilityManagementPlan', 'FacilityManagementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001589', 'PsSection', 'RefDevelopmentalEducationTypeId', '11') +VALUES ('', 'FacilityManagementPlan', 'FacilityManagementPlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001589', 'PsStudentEnrollment', 'RefDevelopmentalEducationTypeId', '11') +VALUES ('', 'FacilityManagementPlan', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001590', 'K12StudentEnrollment', 'RefDirectoryInformationBlockStatusId', '11') +VALUES ('', 'FacilityMandate', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001591', 'ELChildService', 'ECEAPEligibility', '11') +VALUES ('', 'FacilityMandate', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001592', 'ELChildServicesApplication', 'ELEnrollmentApplicationVerificationDate', '11') +VALUES ('', 'FacilityMandate', 'FacilityMandateId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001593', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentIdentifier', '11') +VALUES ('', 'FacilityMandate', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001594', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentName', '11') +VALUES ('', 'FacilityMortgage', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001595', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentType', '11') +VALUES ('', 'FacilityMortgage', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001597', 'ELChildServicesApplication', 'ELApplicationIdentifier', '11') +VALUES ('', 'FacilityMortgage', 'FacilityMortgageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001599', 'ELChildServicesApplication', 'ELApplicationRequiredDocument', '11') +VALUES ('', 'FacilityMortgage', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001600', 'ELChildServicesApplication', 'ELEnrollmentApplicationVerificationReasonType', '11') +VALUES ('', 'FacilityMortgageFee', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001602', 'ELStaffEmployment', 'RefELEducationStaffClassificationId', '11') +VALUES ('', 'FacilityMortgageFee', 'FacilityMortgageFeeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001603', 'ELOrganizationFunds', 'RefELLocalRevenueSourceId', '11') +VALUES ('', 'FacilityMortgageFee', 'FacilityMortgageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001604', 'ELChildService', 'RefELServiceTypeId', '11') +VALUES ('', 'FacilityMortgageFee', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001605', 'ELOrganizationFunds', 'RefELStateRevenueSourceId', '11') +VALUES ('', 'FacilityRelationship', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001606', 'ProfessionalDevelopmentSession', 'RefELTrainerCoreKnowledgeAreaId', '11') +VALUES ('', 'FacilityRelationship', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001607', 'PersonDegreeOrCertificate', 'RefEducationVerificationMethodId', '11') +VALUES ('', 'FacilityRelationship', 'FacilityRelationshipId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001609', 'PsStudentFinancialAid', 'RefFinancialAidVeteransBenefitStatusId', '11') +VALUES ('', 'FacilityRelationship', 'Parent_FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001610', 'PsStudentFinancialAid', 'RefFinancialAidVeteransBenefitTypeId', '11') +VALUES ('', 'FacilityRelationship', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001611', 'FinancialAidApplication', 'FinancialAidYearDesignator', '11') +VALUES ('', 'FacilitySchoolDesign', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001611', 'FinancialAidAward', 'FinancialAidYearDesignator', '11') +VALUES ('', 'FacilitySchoolDesign', 'FacilityDesignId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001612', 'PersonFamily', 'IncludedInCountedFamilySize', '11') +VALUES ('', 'FacilitySchoolDesign', 'FacilitySchoolDesignId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001613', 'PsPriceOfAttendance', 'IPEDSCollectionYearDesignator', '11') +VALUES ('', 'FacilitySchoolDesign', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001614', 'ELServicePartner', 'MemorandumOfUnderstandingEndDate', '11') +VALUES ('', 'FacilitySite', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001615', 'ELServicePartner', 'MemorandumOfUnderstandingStartDate', '11') +VALUES ('', 'FacilitySite', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001616', 'PsProgram', 'RefPSProgramLevelId', '11') +VALUES ('', 'FacilitySite', 'FacilitySiteId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001617', 'PsStudentEnrollment', 'RefPSExitOrWithdrawalTypeId', '11') +VALUES ('', 'FacilitySite', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001618', 'ELChildService', 'EligibilityPriorityPoints', '11') +VALUES ('', 'FacilityUtilization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001619', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityStateApprovedStatus', '11') +VALUES ('', 'FacilityUtilization', 'FacilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001620', 'PersonCareerEducationPlan', 'ProfessionalDevelopmentPlanApprovedBySupervisor', '11') +VALUES ('', 'FacilityUtilization', 'FacilityUtilizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001621', 'PersonCareerEducationPlan', 'ProfessionalDevelopmentPlanCompletion', '11') +VALUES ('', 'FacilityUtilization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001622', 'ELOrganizationFunds', 'RefReimbursementTypeId', '11') +VALUES ('', 'FinancialAccount', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001623', 'ELChildHealth', 'RefScheduledWellChildScreeningId', '11') +VALUES ('', 'FinancialAccount', 'FederalProgramCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001624', 'ELServicePartner', 'ServicePartnerDescription', '11') +VALUES ('', 'FinancialAccount', 'FinancialAccountId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001625', 'ELServicePartner', 'ServicePartnerName', '11') +VALUES ('', 'FinancialAccount', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001627', 'ELChildServicesApplication', 'SitePreferenceRank', '11') +VALUES ('', 'FinancialAccountLocal', 'AccountNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001628', 'ProfessionalDevelopmentSession', 'TrainingAndTechnicalAssistanceLevel', '11') +VALUES ('', 'FinancialAccountLocal', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001629', 'PSStudentProgram', 'RefTransferOutIndicatorId', '11') +VALUES ('', 'FinancialAccountLocal', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001630', 'PersonHealthBirth', 'RefTrimesterWhenPrenatalCareBeganId', '11') +VALUES ('', 'FinancialAccountLocal', 'FinancialAccountLocalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001631', 'ELChildHealth', 'WellChildScreeningReceivedDate', '11') +VALUES ('', 'FinancialAccountLocal', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001632', 'ELStaffEmployment', 'RefELEmploymentSeparationReasonId', '11') +VALUES ('', 'FinancialAccountLocal', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001633', 'EarlyChildhoodProgramTypeOffered', 'RefCommunityBasedTypeId', '11') +VALUES ('', 'FinancialAccountLocal', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001634', 'EarlyChildhoodProgramTypeOffered', 'InclusiveSettingIndicator', '11') +VALUES ('', 'FinancialAccountLocal', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001634', 'IndividualizedProgram', 'InclusiveSettingIndicator', '11') +VALUES ('', 'FinancialAccountProgram', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001634', 'ServicePlan', 'InclusiveSettingIndicator', '11') +VALUES ('', 'FinancialAccountProgram', 'FinancialAccountProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001635', 'ELChildService', 'ServiceDate', '11') +VALUES ('', 'FinancialAccountProgram', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001636', 'ELStaffEmployment', 'RefELServiceProfessionalStaffClassificationId', '11') +VALUES ('', 'FinancialAidApplication', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001639', 'OrganizationFinancial', 'FiscalYear', '11') +VALUES ('', 'FinancialAidApplication', 'FinancialAidApplicationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001640', 'PersonMilitary', 'RefMilitaryBranchId', '11') +VALUES ('', 'FinancialAidApplication', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001641', 'PsProgram', 'RefDQPCategoriesOfLearningId', '11') +VALUES ('', 'FinancialAidApplication', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001642', 'OrganizationFinancial', 'FiscalPeriodBeginDate', '11') +VALUES ('', 'FinancialAidAward', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001643', 'OrganizationFinancial', 'FiscalPeriodEndDate', '11') +VALUES ('', 'FinancialAidAward', 'FinancialAidAwardId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001644', 'OrganizationFinancial', 'EncumberedValue', '11') +VALUES ('', 'FinancialAidAward', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001645', 'FinancialAccountProgram', 'Name', '11') +VALUES ('', 'FinancialAidAward', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001646', 'FinancialAccountProgram', 'ProgramNumber', '11') +VALUES ('', 'Goal', 'CompetencySetId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001647', 'OrganizationFinancial', 'Value', '11') +VALUES ('', 'Goal', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001648', 'OrganizationFinancial', 'Date', '11') +VALUES ('', 'Goal', 'GoalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001649', 'RoleAttendanceEvent', 'Date', '11') +VALUES ('', 'Goal', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001650', 'K12School', 'K12CharterSchoolManagementOrganizationId', '11') +VALUES ('', 'Goal', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001651', 'K12School', 'CharterSchoolContractIdNumber', '11') +VALUES ('', 'GoalMeasurement', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001652', 'K12School', 'CharterSchoolContractApprovalDate', '11') +VALUES ('', 'GoalMeasurement', 'GoalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001653', 'K12School', 'CharterSchoolContractRenewalDate', '11') +VALUES ('', 'GoalMeasurement', 'GoalMeasurementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001654', 'K12StudentEnrollment', 'NSLPDirectCertificationIndicator', '11') +VALUES ('', 'GoalMeasurement', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001655', 'CourseSection', 'MaximumCapacity', '11') +VALUES ('', 'GoalMeasurementCriterion', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001656', 'ELChildIndividualizedProgram', 'RefIDEAPartCEligibilityCategoryId', '11') +VALUES ('', 'GoalMeasurementCriterion', 'GoalMeasurementCriterionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001657', 'PersonDetail', 'RefTribalAffiliationId', '11') +VALUES ('', 'GoalMeasurementCriterion', 'GoalMeasurementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001658', 'CredentialDefIdentifier', 'Identifier', '11') +VALUES ('', 'GoalMeasurementCriterion', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001659', 'IPEDSFinance', 'RefIPEDSFASBFunctionalExpenseId', '11') +VALUES ('', 'GoalPerformance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001660', 'CredentialAward', 'RevokedDate', '11') +VALUES ('', 'GoalPerformance', 'Date', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001661', 'CredentialAward', 'RevokedReason', '11') +VALUES ('', 'GoalPerformance', 'GoalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001662', 'CredentialIssuer', 'RevocationListURL', '11') +VALUES ('', 'GoalPerformance', 'GoalPerformanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001663', 'OrganizationImage', 'URL', '11') +VALUES ('', 'GoalPerformance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001664', 'CredentialAward', 'CompletionDate', '11') +VALUES ('', 'IDEAEligibilityEvaluationCategory', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001665', 'PsStudentAcademicAward', 'RequirementsURL', '11') +VALUES ('', 'IDEAEligibilityEvaluationCategory', 'EligibilityEvaluationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001666', 'PsStudentAcademicAward', 'RefAcademicAwardPrerequisiteTypeId', '11') +VALUES ('', 'IDEAEligibilityEvaluationCategory', 'IDEAEligibilityEvaluationCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001667', 'Course', 'RepeatabilityMaximumNumber', '11') +VALUES ('', 'IDEAEligibilityEvaluationCategory', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001668', 'PsStudentAcademicAward', 'RefPESCAwardLevelTypeId', '11') +VALUES ('', 'IDSVersion', 'CurrentVersion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001669', 'CredentialAward', 'EvidenceURL', '11') +VALUES ('', 'IDSVersion', 'IDSVersionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001670', 'IPEDSFinance', 'RefIPEDSGASBFinancialPositionId', '11') +VALUES ('', 'IDSVersion', 'IDSVersionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001671', 'IPEDSFinance', 'RefIPEDSFASBFinancialPositionId', '11') +VALUES ('', 'IDSVersion', 'IDSVersionNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001672', 'IPEDSFinance', 'RefIPEDSGASBRevenueId', '11') +VALUES ('', 'IEPAuthorization', 'AuthorizationDocumentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001673', 'IPEDSFinance', 'RefIPEDSFASBRevenueId', '11') +VALUES ('', 'IEPAuthorization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001674', 'IPEDSFinance', 'RefIPEDSFASBRevenueRestrictionId', '11') +VALUES ('', 'IEPAuthorization', 'IEPAuthorizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001675', 'IPEDSFinance', 'RefIPEDSGASBFunctionalExpenseId', '11') +VALUES ('', 'IEPAuthorization', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001676', 'IPEDSFinance', 'RefIPEDSNaturalExpenseId', '11') +VALUES ('', 'IEPAuthorization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001677', 'IPEDSFinance', 'RefIPEDSGASBScholarshipsandFellowshipsRevenueId', '11') +VALUES ('', 'IEPAuthorizationRejected', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001678', 'IPEDSFinance', 'RefIPEDSFASBScholarshipsandFellowshipsRevenueId', '11') +VALUES ('', 'IEPAuthorizationRejected', 'IEPAuthorizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001679', 'IPEDSFinance', 'RefIPEDSIntercollegiateAthleticsExpensesId', '11') +VALUES ('', 'IEPAuthorizationRejected', 'IEPAuthorizationRejectedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001680', 'IPEDSFinance', 'RefIPEDSFASBPellGrantTransactionsId', '11') +VALUES ('', 'IEPAuthorizationRejected', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001681', 'IndividualizedProgramProgressReportPlan', 'RefIPSPProgressReportScheduleId', '11') +VALUES ('', 'IEPPresentLevel', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001682', 'IndividualizedProgram', 'TransferOfRightsStatement', '11') +VALUES ('', 'IEPPresentLevel', 'IEPPresentLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001683', 'IndividualizedProgram', 'ServicePlanEndDate', '11') +VALUES ('', 'IEPPresentLevel', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001684', 'IndividualizedProgramMeeting', 'MeetingDate', '11') +VALUES ('', 'IEPPresentLevel', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001685', 'IndividualizedProgramAccommodation', 'Description', '11') +VALUES ('', 'Incident', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001686', 'IndividualizedProgramAccommodation', 'Applicability', '11') +VALUES ('', 'Incident', 'IncidentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001687', 'IndividualizedProgramAssessment', 'IEPAlternativeAssessmentRationale', '11') +VALUES ('', 'Incident', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001688', 'IndividualizedProgramAmendment', 'ReasonDescription', '11') +VALUES ('', 'Incident', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001689', 'IndividualizedProgramAmendment', 'Description', '11') +VALUES ('', 'IncidentActivity', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001690', 'GoalPerformance', 'CurrentPerformanceDescription', '11') +VALUES ('', 'IncidentActivity', 'IncidentActivityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001691', 'GoalMeasurementCriterion', 'AccuracyPercent', '11') +VALUES ('', 'IncidentActivity', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001692', 'GoalMeasurementCriterion', 'AttemptsCount', '11') +VALUES ('', 'IncidentActivity', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001693', 'GoalMeasurementCriterion', 'Metric', '11') +VALUES ('', 'IncidentActivity', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001694', 'GoalMeasurementCriterion', 'SuccessCount', '11') +VALUES ('', 'IncidentPerson', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001695', 'GoalMeasurement', 'Description', '11') +VALUES ('', 'IncidentPerson', 'IncidentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001696', 'GoalMeasurement', 'Schedule', '11') +VALUES ('', 'IncidentPerson', 'IncidentPersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001697', 'GoalMeasurement', 'RefGoalMeasurementTypeId', '11') +VALUES ('', 'IncidentPerson', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001698', 'IndividualizedProgramGoal', 'RefIEPGoalTypeId', '11') +VALUES ('', 'IncidentPerson', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001699', 'IndividualizedProgramProgressReport', 'ProgressReportDate', '11') +VALUES ('', 'IndividualizedProgram', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001700', 'IndividualizedProgramProgressReport', 'ProgressDescription', '11') +VALUES ('', 'IndividualizedProgram', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001701', 'IndividualizedProgramProgressReport', 'RefIPSPProgressReportTypeId', '11') +VALUES ('', 'IndividualizedProgram', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001701', 'IndividualizedProgramProgressReportPlan', 'RefIPSPProgressReportTypeId', '11') +VALUES ('', 'IndividualizedProgram', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001702', 'GoalPerformance', 'RefGoalStatusTypeId', '11') +VALUES ('', 'IndividualizedProgramAccessibleFormat', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001703', 'GoalPerformance', 'Status', '11') +VALUES ('', 'IndividualizedProgramAccessibleFormat', 'IndividualizedProgramAccessibleFormatId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001704', 'ProgramParticipationSpecialEducation', 'IDEAPlacementRationale', '11') +VALUES ('', 'IndividualizedProgramAccessibleFormat', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001705', 'IEPPresentLevel', 'AcademicDescription', '11') +VALUES ('', 'IndividualizedProgramAccessibleFormat', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001706', 'IEPPresentLevel', 'FunctionalDescription', '11') +VALUES ('', 'IndividualizedProgramAccessibleFormat', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001707', 'IEPPresentLevel', 'GeneralEducationDescription', '11') +VALUES ('', 'IndividualizedProgramAccommodation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001708', 'IEPPresentLevel', 'PreschoolDescription', '11') +VALUES ('', 'IndividualizedProgramAccommodation', 'IndividualizedProgramAccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001709', 'IEPPresentLevel', 'StudentStrengthsDescription', '11') +VALUES ('', 'IndividualizedProgramAccommodation', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001710', 'IEPPresentLevel', 'ParentConcernDescription', '11') +VALUES ('', 'IndividualizedProgramAccommodation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001711', 'IEPPresentLevel', 'StudentConcernDescription', '11') +VALUES ('', 'IndividualizedProgramAccommodationSubject', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001712', 'ServicePlan', 'DeclinedServicesDate', '11') +VALUES ('', 'IndividualizedProgramAccommodationSubject', 'IndividualizedProgramAccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001713', 'ServiceFrequency', 'RefFrequencyUnitId', '11') +VALUES ('', 'IndividualizedProgramAccommodationSubject', 'IndividualizedProgramAccommodationSubjectId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001714', 'ServiceFrequency', 'InstancesPerCycle', '11') +VALUES ('', 'IndividualizedProgramAccommodationSubject', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001715', 'ServiceFrequency', 'FrequencyLength', '11') +VALUES ('', 'IndividualizedProgramAmendment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001716', 'ServiceFrequency', 'DurationInMinutes', '11') +VALUES ('', 'IndividualizedProgramAmendment', 'IndividualizedProgramAmendmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001717', 'ServicePlan', 'ExtendsOutsideSchoolYear', '11') +VALUES ('', 'IndividualizedProgramAmendment', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001718', 'ServicePlan', 'SettingDescription', '11') +VALUES ('', 'IndividualizedProgramAmendment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001719', 'IEPAuthorization', 'RefIEPAuthorizationDocumentTypeId', '11') +VALUES ('', 'IndividualizedProgramAssessment', 'AssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001720', 'AuthorizationDocument', 'RefAuthorizerTypeId', '11') +VALUES ('', 'IndividualizedProgramAssessment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001721', 'AuthorizationDocument', 'AcceptanceIndicator', '11') +VALUES ('', 'IndividualizedProgramAssessment', 'IndividualizedProgramAssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001722', 'AuthorizationDocument', 'DecisionExplanation', '11') +VALUES ('', 'IndividualizedProgramAssessment', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001723', 'IEPAuthorizationRejected', 'PortionDescription', '11') +VALUES ('', 'IndividualizedProgramAssessment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001724', 'IEPAuthorizationRejected', 'PortionExplanation', '11') +VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'AssessmentAccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001725', 'AuthorizationDocument', 'AuthorizationDate', '11') +VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001726', 'IndividualizedProgramEligibility', 'ConsentToEvaluateIndicator', '11') +VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'IndividualizedProgramAssessmentAccommodationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001727', 'IndividualizedProgramEligibility', 'ConsentToEvaluateDate', '11') +VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'IndividualizedProgramAssessmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001728', 'IndividualizedProgramEligibilityEvaluation', 'RefIEPEligibilityEvaluationTypeId', '11') +VALUES ('', 'IndividualizedProgramAssessmentAccommodation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001729', 'IDEAEligibilityEvaluationCategory', 'RefIDEAEligibilityEvaluationCategoryId', '11') +VALUES ('', 'IndividualizedProgramEligibility', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001730', 'EligibilityEvaluation', 'Description', '11') +VALUES ('', 'IndividualizedProgramEligibility', 'IndividualizedProgramEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001731', 'EligibilityEvaluation', 'EvaluationDate', '11') +VALUES ('', 'IndividualizedProgramEligibility', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001732', 'IndividualizedProgramEligibility', 'ParentObservations', '11') +VALUES ('', 'IndividualizedProgramEligibility', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001733', 'PersonDisability', 'RefIDEADisabilityTypeId', '11') +VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001734', 'CredentialAward', 'AdvancedStandingDescription', '11') +VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'EligibilityEvaluationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001735', 'CredentialAward', 'AdvancedStandingURL', '11') +VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'IndividualizedProgramEligibilityEvaluationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001736', 'CredentialDefinition', 'AlternateName', '11') +VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'IndividualizedProgramEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001737', 'CredentialAward', 'ApproverName', '11') +VALUES ('', 'IndividualizedProgramEligibilityEvaluation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001738', 'CredentialDefCriteria', 'RefCredentialDefAssessMethodTypeId', '11') +VALUES ('', 'IndividualizedProgramGoal', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001739', 'CredentialDefIdentifier', 'RefCredentialIdentifierSystemId', '11') +VALUES ('', 'IndividualizedProgramGoal', 'GoalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001740', 'CredentialDefinition', 'RefCredentialDefStatusTypeId', '11') +VALUES ('', 'IndividualizedProgramGoal', 'IndividualizedProgramGoalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001741', 'CredentialDefCriteria', 'EstimatedDuration', '11') +VALUES ('', 'IndividualizedProgramGoal', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001742', 'CredentialDefinition', 'CredentialNAICSIndustryType', '11') +VALUES ('', 'IndividualizedProgramGoal', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001743', 'CredentialDefinition', 'JurisdictionRegion', '11') +VALUES ('', 'IndividualizedProgramMeeting', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001744', 'CredentialDefinition', 'JurisdictionRegionException', '11') +VALUES ('', 'IndividualizedProgramMeeting', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001745', 'CredentialDefinition', 'Keywords', '11') +VALUES ('', 'IndividualizedProgramMeeting', 'IndividualizedProgramMeetingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001746', 'CredentialDefCriteria', 'MaximumDuration', '11') +VALUES ('', 'IndividualizedProgramMeeting', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001747', 'CredentialDefCriteria', 'MinimumAge', '11') +VALUES ('', 'IndividualizedProgramMeetingAttendee', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001748', 'CredentialDefCriteria', 'MinimumDuration', '11') +VALUES ('', 'IndividualizedProgramMeetingAttendee', 'IndividualizedProgramMeetingAttendeeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001749', 'CredentialDefinition', 'RefCredentialDefIntendedPurposeTypeId', '11') +VALUES ('', 'IndividualizedProgramMeetingAttendee', 'IndividualizedProgramMeetingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001750', 'OrganizationDetail', 'RegionGeoJSON', '11') +VALUES ('', 'IndividualizedProgramMeetingAttendee', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001751', 'CredentialAward', 'RevokedIndicator', '11') +VALUES ('', 'IndividualizedProgramMeetingAttendee', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001752', 'CredentialDefinition', 'ValidationMethodDescription', '11') +VALUES ('', 'IndividualizedProgramProgressGoal', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001753', 'CredentialDefinition', 'RefCredentialDefVerificationTypeId', '11') +VALUES ('', 'IndividualizedProgramProgressGoal', 'GoalPerformanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001754', 'CredentialDefinition', 'Version', '11') +VALUES ('', 'IndividualizedProgramProgressGoal', 'IndividualizedProgramProgressGoalId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001755', 'CredentialDefAgent', 'RefCTDLOrganizationTypeId', '11') +VALUES ('', 'IndividualizedProgramProgressGoal', 'IndividualizedProgramProgressReportId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001755', 'CredentialIssuer', 'RefCTDLOrganizationTypeId', '11') +VALUES ('', 'IndividualizedProgramProgressGoal', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001756', 'CredentialDefinition', 'RefONETSOCOccupationTypeId', '11') +VALUES ('', 'IndividualizedProgramProgressReport', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001757', 'CompetencyDefinition', 'TypeURL', '11') +VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001761', 'AssessmentRegistration', 'StateFullAcademicYear', '11') +VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramProgressReportId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001762', 'AssessmentRegistration', 'LEAFullAcademicYear', '11') +VALUES ('', 'IndividualizedProgramProgressReport', 'IndividualizedProgramProgressReportPlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001763', 'AssessmentRegistration', 'SchoolFullAcademicYear', '11') +VALUES ('', 'IndividualizedProgramProgressReport', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001764', 'Facility', 'BuildingArea', '11') +VALUES ('', 'IndividualizedProgramProgressReportPlan', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001765', 'PersonDisability', 'SignificantCognitiveDisabilityIndicator', '11') +VALUES ('', 'IndividualizedProgramProgressReportPlan', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001766', 'ELOrganization', 'RefVirtualSchoolStatusId', '11') +VALUES ('', 'IndividualizedProgramProgressReportPlan', 'IndividualizedProgramProgressReportPlanId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001766', 'K12SchoolStatus', 'RefVirtualSchoolStatusId', '11') +VALUES ('', 'IndividualizedProgramProgressReportPlan', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001767', 'ELOrganization', 'RefNationalSchoolLunchProgramStatusId', '11') +VALUES ('', 'IndividualizedProgramService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001767', 'K12SchoolStatus', 'RefNationalSchoolLunchProgramStatusId', '11') +VALUES ('', 'IndividualizedProgramService', 'IndividualizedProgramServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001768', 'Facility', 'FacilityAcquisitionDate', '11') +VALUES ('', 'IndividualizedProgramService', 'PersonId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001769', 'FacilityDesignConstruction', 'FacilityAdditionYear', '11') +VALUES ('', 'IndividualizedProgramService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001770', 'Facility', 'FacilityBuildingPermanency', '11') +VALUES ('', 'IndividualizedProgramServicesReceived', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001771', 'FacilityDesignConstruction', 'FacilityConstructionYear', '11') +VALUES ('', 'IndividualizedProgramServicesReceived', 'IndividualizedProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001772', 'Facility', 'RefBuildingHistoricStatusId', '11') +VALUES ('', 'IndividualizedProgramServicesReceived', 'IndividualizedProgramServicesReceivedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001773', 'FacilitySite', 'FacilitySiteArea', '11') +VALUES ('', 'IndividualizedProgramServicesReceived', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001774', 'LocationAddress', 'FacilityBlockNumberArea', '11') +VALUES ('', 'IndividualizedProgramServicesReceived', 'ServicesReceivedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001775', 'FacilityDesignConstruction', 'BuildingAdditionDescription', '11') +VALUES ('', 'IPEDSFinance', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001776', 'FacilityDesignConstruction', 'BuildingAdditionCode', '11') +VALUES ('', 'IPEDSFinance', 'IPEDSFinanceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001777', 'Facility', 'RefBuildingPrimaryUseTypeId', '11') +VALUES ('', 'IPEDSFinance', 'OrganizationFinancialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001778', 'Facility', 'RefCampusStatusId', '11') +VALUES ('', 'IPEDSFinance', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001779', 'LocationAddress', 'FacilityCensusTract', '11') +VALUES ('', 'Job', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001780', 'FacilityDesignConstruction', 'FacilityConstructionDate', '11') +VALUES ('', 'JobCompetency', 'CompetencyDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001781', 'FacilityDesignConstruction', 'RefFacilityConstructionDateTypeId', '11') +VALUES ('', 'JobCompetency', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001782', 'FacilityDesignConstruction', 'RefFacilityConstructionMaterialTypeId', '11') +VALUES ('', 'JobCompetency', 'JobCompetencyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001783', 'Facility', 'FacilityExpectedLife', '11') +VALUES ('', 'JobCompetency', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001784', 'FacilityFinance', 'FacilityReplacementValue', '11') +VALUES ('', 'JobCompetency', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001785', 'Facility', 'BuildingNumberOfStories', '11') +VALUES ('', 'JobCompetency', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001786', 'FacilitySite', 'FacilitySiteIdentifier', '11') +VALUES ('', 'JobCompetency', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001787', 'FacilityDesignConstruction', 'RefFacilitySiteImprovementLocationTypeId', '11') +VALUES ('', 'JobCredential', 'CredentialDefinitionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001788', 'Facility', 'BuildingYearBuilt', '11') +VALUES ('', 'JobCredential', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001789', 'Facility', 'BuildingYearOfLastModernization', '11') +VALUES ('', 'JobCredential', 'JobCredentialId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001790', 'BuildingSystemCategory', 'RefBuildingAirDistributionSystemTypeId', '11') +VALUES ('', 'JobCredential', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001791', 'BuildingSystemCategory', 'RefBuildingCommMgmtComponentSystemTypeId', '11') +VALUES ('', 'JobCredential', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001792', 'FacilityCompliance', 'RefFacilityComplianceStatusId', '11') +VALUES ('', 'JobCredential', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001793', 'BuildingSystemComponent', 'RefFacilitySystemOrComponentConditionId', '11') +VALUES ('', 'JobCredential', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001794', 'BuildingSystemCategory', 'RefBuildingCoolingGenerationSystemTypeId', '11') +VALUES ('', 'JobDetail', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001795', 'BuildingSystemCategory', 'RefBuildingElectricalSystemTypeId', '11') +VALUES ('', 'JobDetail', 'JobDetailId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001796', 'FacilityMandate', 'RefFacilityApplicableFederalMandateTypeId', '11') +VALUES ('', 'JobDetail', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001797', 'FacilityMandate', 'RefFacilityFederalMandateInterestTypeId', '11') +VALUES ('', 'JobDetail', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001798', 'BuildingSystemCategory', 'RefBuildingFireProtectionSystemTypeId', '11') +VALUES ('', 'JobDetail', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001799', 'BuildingSystemCategory', 'RefBuildingHeatingGenerationSystemTypeId', '11') +VALUES ('', 'JobDetail', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001800', 'BuildingSystemCategory', 'RefBuildingHVACSystemTypeId', '11') +VALUES ('', 'JobDetail', 'RefK12StaffClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001801', 'BuildingSystemComponent', 'BuildingInstitutionalEquipmentDescription', '11') +VALUES ('', 'JobDetail', 'RefStandardOccupationalClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001802', 'BuildingSystemCategory', 'RefBuildingMechanicalConveyingSystemTypeId', '11') +VALUES ('', 'JobIdentifier', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001803', 'BuildingSystemCategory', 'RefBuildingPlumbingSystemTypeId', '11') +VALUES ('', 'JobIdentifier', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001804', 'BuildingSystemCategory', 'RefBuildingSecuritySystemTypeId', '11') +VALUES ('', 'JobIdentifier', 'JobIdentifierId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001805', 'FacilityMandate', 'RefFacilityStateOrLocalMandateInterestTypeId', '11') +VALUES ('', 'JobIdentifier', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001806', 'FacilityMandate', 'FacilityStateOrLocalMandateName', '11') +VALUES ('', 'JobIdentifier', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001807', 'BuildingSystemCategory', 'RefBuildingTechnologyWiringSystemTypeId', '11') +VALUES ('', 'JobIdentifier', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001808', 'FacilityHazard', 'FacilityLocationOfHazardousMaterials', '11') +VALUES ('', 'JobK12StaffAssignment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001809', 'BuildingSystemCategory', 'RefBuildingMechanicalSystemTypeId', '11') +VALUES ('', 'JobK12StaffAssignment', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001810', 'FacilityHazard', 'FacilityNearbyEnvHazardDescription', '11') +VALUES ('', 'JobK12StaffAssignment', 'JobK12StaffAssignmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001811', 'BuildingSystemCategory', 'RefBuildingSystemTypeId', '11') +VALUES ('', 'JobK12StaffAssignment', 'K12StaffAssignmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001812', 'BuildingSystemCategory', 'RefBuildingVerticalTransportationSystemTypeId', '11') +VALUES ('', 'JobK12StaffAssignment', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001813', 'BuildingSpace', 'RefBuildingAdministrativeSpaceTypeId', '11') +VALUES ('', 'JobK12StaffAssignment', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001814', 'BuildingSpace', 'RefBuildingArtSpecialtySpaceTypeId', '11') +VALUES ('', 'JobK12StaffAssignment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001815', 'BuildingSpace', 'RefBuildingBasicClassroomDesignTypeId', '11') +VALUES ('', 'JobPosition', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001816', 'FacilityDesign', 'RefBuildingDesignTypeId', '11') +VALUES ('', 'JobPosition', 'JobId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001817', 'BuildingSpace', 'RefBuildingCareerTechEducationSpaceTypeId', '11') +VALUES ('', 'JobPosition', 'JobPositionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001818', 'BuildingSpace', 'RefBuildingCirculationSpaceTypeId', '11') +VALUES ('', 'JobPosition', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001819', 'FacilityDesign', 'RefBuildingEnvOrEnergyPerformanceRatingCatId', '11') +VALUES ('', 'JobPosition', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001820', 'BuildingSystemComponent', 'RefFacilityFurnishingsTypeId', '11') +VALUES ('', 'JobPosition', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001821', 'BuildingSpace', 'RefBuildingFoodServiceSpaceTypeId', '11') +VALUES ('', 'JobPositionDetail', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001822', 'BuildingSpace', 'RefBuildingIndoorAthleticOrPhysEdSpaceTypeId', '11') +VALUES ('', 'JobPositionDetail', 'JobPositionDetailId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001823', 'BuildingSpace', 'RefBuildingLibMediaCenterSpecialtySpaceTypeId', '11') +VALUES ('', 'JobPositionDetail', 'JobPositionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001824', 'BuildingSpace', 'RefBuildingOperationsOrMaintSpaceTypeId', '11') +VALUES ('', 'JobPositionDetail', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001825', 'BuildingSpace', 'RefBuildingOutdoorAthleticOrPhysEdSpaceTypeId', '11') +VALUES ('', 'JobPositionDetail', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001826', 'BuildingSpace', 'RefBuildingOutdoorOrNonathleticSpaceTypeId', '11') +VALUES ('', 'JobPositionDetail', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001827', 'BuildingSpace', 'RefBuildingPerformingArtsSpecialtySpaceTypeId', '11') +VALUES ('', 'JobPositionIdentifier', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001828', 'FacilitySchoolDesign', 'RefBuildingSchoolDesignTypeId', '11') +VALUES ('', 'JobPositionIdentifier', 'JobPositionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001829', 'BuildingSpace', 'RefBuildingScienceSpecialtySpaceTypeId', '11') +VALUES ('', 'JobPositionIdentifier', 'JobPositionIdentifierId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001830', 'FacilitySite', 'RefFacilitySiteOutdoorAreaTypeId', '11') +VALUES ('', 'JobPositionIdentifier', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001831', 'BuildingSpace', 'RefBuildingSpaceDesignTypeId', '11') +VALUES ('', 'JobPositionIdentifier', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001832', 'BuildingSpace', 'RefBuildingSpecEdSpecialtySpaceTypeId', '11') +VALUES ('', 'JobPositionIdentifier', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001833', 'BuildingSpace', 'RefBuildingStudentSupportSpaceTypeId', '11') +VALUES ('', 'JobPositionStatus', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001834', 'FacilityDesign', 'BuildingArchitectName', '11') +VALUES ('', 'JobPositionStatus', 'JobPositionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001835', 'FacilityDesign', 'BuildingArchitecturalFirmName', '11') +VALUES ('', 'JobPositionStatus', 'JobPositionStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001836', 'BuildingSpace', 'RefBuildingAssemblySpaceTypeId', '11') +VALUES ('', 'JobPositionStatus', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001837', 'FacilityCompliance', 'FacilityComplianceDeterminationDate', '11') +VALUES ('', 'JobPositionStatus', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001838', 'FacilityCompliance', 'FacilityComplianceName', '11') +VALUES ('', 'JobPositionStatus', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001839', 'FacilityCompliance', 'FacilityComponentDeficiencyDescription', '11') +VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001840', 'BuildingSystemComponent', 'Identifier', '11') +VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001841', 'FacilityCompliance', 'FacilityEstimatedCostToEliminateDeferredMaint', '11') +VALUES ('', 'K12CharterSchoolAuthorizerAgency', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001842', 'FacilityHazard', 'FacilityHazardousCondExpectedRemediationDate', '11') +VALUES ('', 'K12CharterSchoolManagementOrganization', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001843', 'BuildingSpace', 'RefBuildingFullServiceKitchenTypeId', '11') +VALUES ('', 'K12CharterSchoolManagementOrganization', 'K12CharterSchoolManagementOrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001844', 'FacilityHazard', 'HazardousMaterialOrConditionDescription', '11') +VALUES ('', 'K12CharterSchoolManagementOrganization', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001845', 'FacilityHazard', 'HazardousMaterialOrConditionTestingDate', '11') +VALUES ('', 'K12CharterSchoolManagementOrganization', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001846', 'FacilityCompliance', 'FacilityInspectionScoreResultDescription', '11') +VALUES ('', 'K12CharterSchoolManagementOrganization', 'RefCharterSchoolManagementOrganizationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001847', 'FacilityCompliance', 'FacilityInspectionViolationDescription', '11') +VALUES ('', 'K12Course', 'CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001848', 'BuildingSystemComponent', 'InstallationDate', '11') +VALUES ('', 'K12Course', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001849', 'BuildingSystemComponent', 'LifecycleCost', '11') +VALUES ('', 'K12Course', 'K12CourseId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001850', 'FacilityDesignConstruction', 'BuildingSiteImprovementDescription', '11') +VALUES ('', 'K12Course', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001851', 'BuildingSpaceUtilization', 'RefBuildingInstructionalSpaceFactorTypeId', '11') +VALUES ('', 'K12Course', 'RefCreditTypeEarnedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001852', 'FacilityJointUse', 'RefBuildingJointUseRationaleTypeId', '11') +VALUES ('', 'K12FederalFundAllocation', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001853', 'FacilityJointUse', 'RefBuildingJointUseSchedulingTypeId', '11') +VALUES ('', 'K12FederalFundAllocation', 'FederalProgramCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001854', 'FacilityJointUse', 'RefBuildingJointUserTypeId', '11') +VALUES ('', 'K12FederalFundAllocation', 'FederalProgramsFundingAllocation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001855', 'BuildingSpaceUtilization', 'RefBuildingCommunityUseSpaceTypeId', '11') +VALUES ('', 'K12FederalFundAllocation', 'FundsTransferAmount', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001856', 'FacilityUtilization', 'BuildingHoursOfPublicUsePerWeek', '11') +VALUES ('', 'K12FederalFundAllocation', 'K12FederalFundAllocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001857', 'FacilityUtilization', 'BuildingNetAreaOfInstructionalSpace', '11') +VALUES ('', 'K12FederalFundAllocation', 'LeaTransferabilityOfFunds', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001858', 'FacilityUtilization', 'BuildingNumberOfTeachingStations', '11') +VALUES ('', 'K12FederalFundAllocation', 'NumberOfImmigrantProgramSubgrants', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001859', 'FacilityUtilization', 'BuildingPublicUsePolicyDescription', '11') +VALUES ('', 'K12FederalFundAllocation', 'OrganizationCalendarSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001860', 'FacilitySite', 'RefBuildingSiteUseRestrictionsTypeId', '11') +VALUES ('', 'K12FederalFundAllocation', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001861', 'BuildingSpaceUtilization', 'BuildingSpaceUtilizationArea', '11') +VALUES ('', 'K12FederalFundAllocation', 'RefFederalProgramFundingAllocationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001862', 'K12StudentEnrollment', 'RefStudentEnrollmentAccessTypeId', '11') +VALUES ('', 'K12FederalFundAllocation', 'RefLeaFundsTransferTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001863', 'BuildingSpaceUtilization', 'BuildingUnassignedSpaceIndicator', '11') +VALUES ('', 'K12FederalFundAllocation', 'RefReapAlternativeFundingStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001864', 'FacilityAudit', 'RefFacilityAuditTypeId', '11') +VALUES ('', 'K12FederalFundAllocation', 'SchoolImprovementAllocation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001865', 'FacilityManagement', 'RefBuildingCharterSchoolRealtyAccessTypeId', '11') +VALUES ('', 'K12FederalFundAllocation', 'SchoolImprovementReservedPercent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001866', 'FacilityManagement', 'RefBuildingCleaningStandardTypeId', '11') +VALUES ('', 'K12FederalFundAllocation', 'SesPerPupilExpenditure', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001867', 'FacilityManagement', 'RefFacilityComplianceAgencyTypeId', '11') +VALUES ('', 'K12Lea', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001868', 'FacilityDesignConstruction', 'RefBuildingEnergyConservationMeasureTypeId', '11') +VALUES ('', 'K12Lea', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001869', 'FacilityEnergy', 'BuildingEnergyServiceCompanyName', '11') +VALUES ('', 'K12Lea', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001870', 'FacilityEnergy', 'RefBuildingEnergySourceTypeId', '11') +VALUES ('', 'K12Lea', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001871', 'FacilityManagementPlan', 'RefFacilitiesMgmtEmergencyTypeId', '11') +VALUES ('', 'K12Lea', 'RefCharterLeaStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001872', 'FacilityManagement', 'RefFacilityCapitalProgramMgmtTypeId', '11') +VALUES ('', 'K12LeaFederalFunds', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001873', 'FacilityManagement', 'RefFacilityOperationsMgmtTypeId', '11') +VALUES ('', 'K12LeaFederalFunds', 'K12LeaFederalFundsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001874', 'FacilityHazard', 'RefFacilityHazardousMaterialsOrCondTypeId', '11') +VALUES ('', 'K12LeaFederalFunds', 'OrganizationCalendarSessionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001875', 'FacilityDesignConstruction', 'RefFacilityJointDevelopmentTypeId', '11') +VALUES ('', 'K12LeaFederalFunds', 'ParentalInvolvementReservationFunds', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001876', 'FacilityCompliance', 'RefFacilityMaintStandardTypeId', '11') +VALUES ('', 'K12LeaFederalFunds', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001877', 'FacilityHazard', 'RefFacilityNaturallyOccurringHazardTypeId', '11') +VALUES ('', 'K12LeaFederalReporting', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001878', 'FacilityEnergy', 'RefFacilityUtilityProviderTypeId', '11') +VALUES ('', 'K12LeaFederalReporting', 'K12LeaFederalReportingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001879', 'FacilityEnergy', 'RefFacilityUtilityTypeId', '11') +VALUES ('', 'K12LeaFederalReporting', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001880', 'FacilityDesign', 'BuildingDateOfCertificateOfOccupancy', '11') +VALUES ('', 'K12LeaFederalReporting', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001881', 'FacilityAudit', 'FacilityAuditDate', '11') +VALUES ('', 'K12LeaGradeLevelsApproved', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001882', 'FacilityManagementPlan', 'FacilitiesPlanDescription', '11') +VALUES ('', 'K12LeaGradeLevelsApproved', 'K12LeaGradeLevelsApprovedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001883', 'FacilityManagementPlan', 'RefFacilitiesPlanTypeId', '11') +VALUES ('', 'K12LeaGradeLevelsApproved', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001884', 'FacilityDesignConstruction', 'RefFacilityStandardTypeId', '11') +VALUES ('', 'K12LeaGradeLevelsApproved', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001885', 'FacilityMandate', 'RefFacilitiesMandateAuthorityTypeId', '11') +VALUES ('', 'K12LeaGradeOffered', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001886', 'FacilityMortgageFee', 'RefFacilityFinancingFeeTypeId', '11') +VALUES ('', 'K12LeaGradeOffered', 'K12LeaGradeOfferedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001887', 'FacilityLease', 'FacilityLeaseAmount', '11') +VALUES ('', 'K12LeaGradeOffered', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001888', 'FacilityLease', 'RefFacilityLeaseAmountCategoryId', '11') +VALUES ('', 'K12LeaGradeOffered', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001889', 'FacilityLease', 'RefFacilityLeaseTypeId', '11') +VALUES ('', 'K12LeaPolicy', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001890', 'FacilityMortgage', 'FacilityMortgageInterestAmount', '11') +VALUES ('', 'K12LeaPolicy', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001891', 'FacilityMortgage', 'RefFacilityMortgageInterestTypeId', '11') +VALUES ('', 'K12LeaPolicy', 'K12LeaPolicyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001892', 'FacilityMortgage', 'RefFacilityMortgageTypeId', '11') +VALUES ('', 'K12LeaPolicy', 'RecordEndDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001893', 'FacilityFinance', 'IndebtednessAmountAllowed', '11') +VALUES ('', 'K12LeaPolicy', 'RecordStartDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001894', 'FacilityFinance', 'InsuranceDeductible', '11') +VALUES ('', 'K12LeaPolicy', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001895', 'FacilityFinance', 'PublicEducationMillRate', '11') +VALUES ('', 'K12LeaPreKEligibility', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001896', 'FacilityMortgage', 'FacilityTotalAssessedValue', '11') +VALUES ('', 'K12LeaPreKEligibility', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001897', 'Facility', 'RefCampusTypeId', '11') +VALUES ('', 'K12LeaPreKEligibility', 'K12LEAPreKEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001898', 'FacilityCompliance', 'ComponentOrFixtureCheckDate', '11') +VALUES ('', 'K12LeaPreKEligibility', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001899', 'BuildingSystemComponentService', 'ComponentOrFixtureServicedDate', '11') +VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001900', 'BuildingSystemComponentService', 'ComponentOrFixtureScheduledServicedDate', '11') +VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001901', 'BuildingSystemComponent', 'ComponentOrFixtureUsefulLife', '11') +VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'K12LEAPreKEligibleAgesIDEAId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001902', 'BuildingSpaceUtilization', 'AvailableUtilizedInstructionalSpace', '11') +VALUES ('', 'K12LeaPreKEligibleAgesIDEA', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001903', 'BuildingSpaceUtilization', 'BuildingCapacityFactorIndicator', '11') +VALUES ('', 'K12LeaSafeDrugFree', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001904', 'FacilityUtilization', 'FacilityEnrollmentCapacity', '11') +VALUES ('', 'K12LeaSafeDrugFree', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001905', 'OrganizationRelationship', 'RefOrganizationRelationshipId', '11') +VALUES ('', 'K12LeaSafeDrugFree', 'K12LeaSafeDrugFreeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001906', 'Facility', 'FacilityOwnershipIndicator', '11') +VALUES ('', 'K12LeaSafeDrugFree', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001907', 'CompetencyFramework', 'CompetencyFrameworkSourceUrl', '11') +VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001908', 'CompetencyDefinition', 'TypicalAgeRangeMinimum', '11') +VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001909', 'CompetencyDefinition', 'TypicalAgeRangeMaximum', '11') +VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'K12LEATitleIIIProfessionalDevelopmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001910', 'CredentialDefinition', 'CredentialDefDateEffective', '11') +VALUES ('', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001911', 'CredentialOffered', 'CredentialOfferedStartDate', '11') +VALUES ('', 'K12LeaTitleISupportService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001912', 'CredentialOffered', 'CredentialOfferedEndDate', '11') +VALUES ('', 'K12LeaTitleISupportService', 'K12LeaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001913', 'CredentialDefinition', 'RefCTDLAudienceLevelTypeId', '11') +VALUES ('', 'K12LeaTitleISupportService', 'K12LeaTitleISupportServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001914', 'CredentialDefAgent', 'RefCredentialDefAgentRoleTypeId', '11') +VALUES ('', 'K12LeaTitleISupportService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001915', 'K12SchoolStatus', 'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatusId', '11') +VALUES ('', 'K12OrganizationStudentResponsibility', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001916', 'K12SchoolStatus', 'ProgressAcheivingEnglishLearnerProficiencyStateDefinedStatus', '11') +VALUES ('', 'K12OrganizationStudentResponsibility', 'K12OrganizationStudentResponsibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Activity', 'RecordStartDateTime', '11') +VALUES ('', 'K12OrganizationStudentResponsibility', 'OrganizationPersonRoleId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ActivityRecognition', 'RecordStartDateTime', '11') +VALUES ('', 'K12OrganizationStudentResponsibility', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeCourse', 'RecordStartDateTime', '11') +VALUES ('', 'K12ProgramOrService', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeProvider', 'RecordStartDateTime', '11') +VALUES ('', 'K12ProgramOrService', 'K12ProgramOrServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeStaff', 'RecordStartDateTime', '11') +VALUES ('', 'K12ProgramOrService', 'OrganizationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeStudentAcademicRecord', 'RecordStartDateTime', '11') +VALUES ('', 'K12ProgramOrService', 'RecordStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AeStudentEmployment', 'RecordStartDateTime', '11') +VALUES ('', 'K12School', 'DataCollectionId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ApipInteraction', 'RecordStartDateTime', '11') +VALUES ('001081', 'ProgramParticipationAE', 'PostsecondaryTransitionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Application', 'RecordStartDateTime', '11') +VALUES ('001083', 'AeStaff', 'RefAeStaffEmploymentStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Assessment', 'RecordStartDateTime', '11') +VALUES ('001085', 'StaffCredential', 'RefAeCertificationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Assessment_AssessmentAdministration', 'RecordStartDateTime', '11') +VALUES ('001086', 'ELStaffEducation', 'TotalApprovedECCreditsEarned', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentAccommodation', 'RecordStartDateTime', '11') +VALUES ('001087', 'AssessmentPersonalNeedScreenReader', 'Pitch', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentAdministration', 'RecordStartDateTime', '11') +VALUES ('001088', 'AssessmentItem', 'RefNaepMathComplexityLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentAdministration_Organization', 'RecordStartDateTime', '11') +VALUES ('001089', 'AssessmentAsset', 'RefAssessmentLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentAsset', 'RecordStartDateTime', '11') +VALUES ('001089', 'AssessmentForm', 'RefAssessmentLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentELDevelopmentalDomain', 'RecordStartDateTime', '11') +VALUES ('001091', 'AssessmentSubtest', 'PublishedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentForm', 'RecordStartDateTime', '11') +VALUES ('001092', 'AssessmentResult', 'DescriptiveFeedbackSource', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentForm_AssessmentAsset', 'RecordStartDateTime', '11') +VALUES ('001093', 'AssessmentParticipantSession', 'SpecialEventDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentForm_AssessmentFormSection', 'RecordStartDateTime', '11') +VALUES ('001093', 'AssessmentSession', 'SpecialEventDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentFormSection', 'RecordStartDateTime', '11') +VALUES ('001094', 'CompetencyDefinition', 'CompetencyDefParentUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentFormSection_AssessmentAsset', 'RecordStartDateTime', '11') +VALUES ('001102', 'ApipInteraction', 'Xml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentFormSection_AssessmentItem', 'RecordStartDateTime', '11') +VALUES ('001103', 'ApipInteraction', 'RefApipInteractionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItem', 'RecordStartDateTime', '11') +VALUES ('001122', 'AssessmentItem', 'RefNaepAspectsOfReadingId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemApip', 'RecordStartDateTime', '11') +VALUES ('001127', 'AssessmentPersonalNeedsProfile', 'AssessmentNeedType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemApipDescription', 'RecordStartDateTime', '11') +VALUES ('001130', 'AssessmentParticipantSession', 'SecurityIssue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemCharacteristic', 'RecordStartDateTime', '11') +VALUES ('001131', 'AssessmentItemApip', 'ResponseProcessingTemplateUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemPossibleResponse', 'RecordStartDateTime', '11') +VALUES ('001132', 'AssessmentItemApip', 'ResponseProcessingXml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemResponse', 'RecordStartDateTime', '11') +VALUES ('001133', 'AssessmentItemApip', 'ResponseDeclarationXml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemResponseTheory', 'RecordStartDateTime', '11') +VALUES ('001134', 'AssessmentItemApip', 'OutcomeDeclarationXml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentItemRubricCriterionResult', 'RecordStartDateTime', '11') +VALUES ('001135', 'AssessmentItemApip', 'TemplateDeclarationXml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentLanguage', 'RecordStartDateTime', '11') +VALUES ('001136', 'AssessmentItemApip', 'TemplateProcessingXml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentLevelsForWhichDesigned', 'RecordStartDateTime', '11') +VALUES ('001137', 'AssessmentItemApip', 'ModalFeedbackXml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedApipContent', 'RecordStartDateTime', '11') +VALUES ('001138', 'AssessmentItemApip', 'ItemBodyXml', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedApipControl', 'RecordStartDateTime', '11') +VALUES ('001139', 'AssessmentItem', 'AdaptiveIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedApipDisplay', 'RecordStartDateTime', '11') +VALUES ('001139', 'AssessmentItemApip', 'AdaptiveIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedBraille', 'RecordStartDateTime', '11') +VALUES ('001142', 'K12StudentCourseSectionMark', 'FinalIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentNeedScreenEnhancement', 'RecordStartDateTime', '11') +VALUES ('001143', 'LearningResource', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentParticipantSession', 'RecordStartDateTime', '11') +VALUES ('001144', 'LearningResource', 'CopyrightHolderName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentParticipantSession_Accommodation', 'RecordStartDateTime', '11') +VALUES ('001145', 'LearningResource', 'CopyrightYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPerformanceLevel', 'RecordStartDateTime', '11') +VALUES ('001146', 'LearningResource', 'ConceptKeyword', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedLanguageLearner', 'RecordStartDateTime', '11') +VALUES ('001147', 'PeerRatingSystem', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedScreenReader', 'RecordStartDateTime', '11') +VALUES ('001148', 'LearningResourcePeerRating', 'Value', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfile', 'RecordStartDateTime', '11') +VALUES ('001149', 'PeerRatingSystem', 'MaximumValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfileContent', 'RecordStartDateTime', '11') +VALUES ('001150', 'PeerRatingSystem', 'MinimumValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfileControl', 'RecordStartDateTime', '11') +VALUES ('001151', 'PeerRatingSystem', 'OptimumValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfileDisplay', 'RecordStartDateTime', '11') +VALUES ('001152', 'AssessmentParticipantSession', 'PlatformUserAgent', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordStartDateTime', '11') +VALUES ('001153', 'CredentialDefCriteria', 'CriteriaUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentRegistration', 'RecordStartDateTime', '11') +VALUES ('001154', 'CompetencyDefinition', 'TextComplexityMinimumValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentRegistration_Accommodation', 'RecordStartDateTime', '11') +VALUES ('001155', 'CompetencyDefinition', 'TextComplexityMaximumValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentResult', 'RecordStartDateTime', '11') +VALUES ('001157', 'AssessmentAccommodation', 'OtherDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentResult_PerformanceLevel', 'RecordStartDateTime', '11') +VALUES ('001160', 'CourseSection', 'VirtualIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentResultRubricCriterionResult', 'RecordStartDateTime', '11') +VALUES ('001160', 'PsInstitution', 'VirtualIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSession', 'RecordStartDateTime', '11') +VALUES ('001161', 'CourseSection', 'RefCourseSectionDeliveryModeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSessionStaffRole', 'RecordStartDateTime', '11') +VALUES ('001162', 'AssessmentRegistration', 'TestAttemptIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtest', 'RecordStartDateTime', '11') +VALUES ('001163', 'CredentialAward', 'CredentialAwardStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtest_AssessmentItem', 'RecordStartDateTime', '11') +VALUES ('001164', 'CredentialAward', 'CredentialAwardEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtest_CompetencyDefinition', 'RecordStartDateTime', '11') +VALUES ('001165', 'Goal', 'StartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtestELDevelopmentalDomain', 'RecordStartDateTime', '11') +VALUES ('001166', 'Goal', 'EndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordStartDateTime', '11') +VALUES ('001167', 'LearningResourcePeerRating', 'Date', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Authentication', 'RecordStartDateTime', '11') +VALUES ('001168', 'Authentication', 'IdentityProviderName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Authorization', 'RecordStartDateTime', '11') +VALUES ('001169', 'Authentication', 'IdentityProviderUri', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'AuthorizationDocument', 'RecordStartDateTime', '11') +VALUES ('001170', 'Authentication', 'LoginIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSpace', 'RecordStartDateTime', '11') +VALUES ('001171', 'Authentication', 'StartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSpaceUtilization', 'RecordStartDateTime', '11') +VALUES ('001172', 'Authentication', 'EndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSystemCategory', 'RecordStartDateTime', '11') +VALUES ('001173', 'Application', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSystemComponent', 'RecordStartDateTime', '11') +VALUES ('001174', 'Application', 'Uri', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'BuildingSystemComponentService', 'RecordStartDateTime', '11') +VALUES ('001175', 'Authorization', 'ApplicationRoleName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Classroom', 'RecordStartDateTime', '11') +VALUES ('001176', 'Authorization', 'StartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyDefAssociation', 'RecordStartDateTime', '11') +VALUES ('001177', 'Authorization', 'EndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyDefEducationLevel', 'RecordStartDateTime', '11') +VALUES ('001181', 'AssessmentForm', 'AssessmentItemBankIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyDefinition', 'RecordStartDateTime', '11') +VALUES ('001181', 'AssessmentFormSection', 'AssessmentItemBankIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyDefinition_CompetencySet', 'RecordStartDateTime', '11') +VALUES ('001181', 'AssessmentItem', 'AssessmentItemBankIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencyFramework', 'RecordStartDateTime', '11') +VALUES ('001182', 'AssessmentForm', 'AssessmentItemBankName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencySet', 'RecordStartDateTime', '11') +VALUES ('001182', 'AssessmentFormSection', 'AssessmentItemBankName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencySet_Rubric', 'RecordStartDateTime', '11') +VALUES ('001182', 'AssessmentItem', 'AssessmentItemBankName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CompetencySet_RubricCriterion', 'RecordStartDateTime', '11') +VALUES ('001183', 'AssessmentForm', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CoreKnowledgeArea', 'RecordStartDateTime', '11') +VALUES ('001184', 'AssessmentForm', 'PublishedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Course', 'RecordStartDateTime', '11') +VALUES ('001184', 'AssessmentFormSection', 'PublishedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSection', 'RecordStartDateTime', '11') +VALUES ('001184', 'LearningResource', 'PublishedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSectionAssessmentReporting', 'RecordStartDateTime', '11') +VALUES ('001185', 'AssessmentForm', 'AccommodationList', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSectionLevel', 'RecordStartDateTime', '11') +VALUES ('001186', 'AssessmentForm', 'IntendedAdministrationStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSectionLocation', 'RecordStartDateTime', '11') +VALUES ('001187', 'AssessmentForm', 'IntendedAdministrationEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CourseSectionSchedule', 'RecordStartDateTime', '11') +VALUES ('001188', 'AssessmentForm', 'PlatformsSupported', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialAward', 'RecordStartDateTime', '11') +VALUES ('001189', 'AssessmentFormSection', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialAwardCredit', 'RecordStartDateTime', '11') +VALUES ('001190', 'AssessmentFormSection', 'RefAssessmentFormSectionIdentificationSystemId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialAwardEvidence', 'RecordStartDateTime', '11') +VALUES ('001191', 'AssessmentFormSection', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialCriteriaCourse', 'RecordStartDateTime', '11') +VALUES ('001192', 'AssessmentFormSection', 'SectionTimeLimit', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefAgent', 'RecordStartDateTime', '11') +VALUES ('001193', 'AssessmentFormSection', 'SectionSealed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefAgentCredential', 'RecordStartDateTime', '11') +VALUES ('001194', 'AssessmentFormSection', 'SectionReentry', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefCategory', 'RecordStartDateTime', '11') +VALUES ('001195', 'AssessmentAsset', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefCriteria', 'RecordStartDateTime', '11') +VALUES ('001196', 'AssessmentAsset', 'RefAssessmentAssetTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefIdentifier', 'RecordStartDateTime', '11') +VALUES ('001197', 'AssessmentAsset', 'PublishedDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialDefinition', 'RecordStartDateTime', '11') +VALUES ('001198', 'AssessmentAsset', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialIssuer', 'RecordStartDateTime', '11') +VALUES ('001199', 'AssessmentAsset', 'RefAssessmentAssestIdentifierType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CredentialOffered', 'RecordStartDateTime', '11') +VALUES ('001200', 'AssessmentAsset', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CteCourse', 'RecordStartDateTime', '11') +VALUES ('001201', 'AssessmentAsset', 'Owner', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'CteStudentAcademicRecord', 'RecordStartDateTime', '11') +VALUES ('001202', 'AssessmentAsset', 'ContentXML', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'EarlyChildhoodCredential', 'RecordStartDateTime', '11') +VALUES ('001203', 'AssessmentAsset', 'ContentMimeType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'EarlyChildhoodProgramTypeOffered', 'RecordStartDateTime', '11') +VALUES ('001204', 'AssessmentAsset', 'ContentUrl', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildDemographic', 'RecordStartDateTime', '11') +VALUES ('001206', 'Facility', 'RefBuildingUseTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildDevelopmentalAssessment', 'RecordStartDateTime', '11') +VALUES ('001207', 'BuildingSpace', 'SpaceDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildHealth', 'RecordStartDateTime', '11') +VALUES ('001208', 'BuildingSpace', 'RefSpaceUseTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildIndividualizedProgram', 'RecordStartDateTime', '11') +VALUES ('001210', 'K12StudentEnrollment', 'RefExitGradeLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildOutcomeSummary', 'RecordStartDateTime', '11') +VALUES ('001211', 'Incident', 'RefWeaponTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildProgramEligibility', 'RecordStartDateTime', '11') +VALUES ('001212', 'AssessmentSessionStaffRole', 'RefAssessmentSessionStaffRoleTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildService', 'RecordStartDateTime', '11') +VALUES ('001214', 'AssessmentSubtest', 'Tier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildServicesApplication', 'RecordStartDateTime', '11') +VALUES ('001215', 'AssessmentSubtest', 'ContainerOnly', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELChildTransitionPlan', 'RecordStartDateTime', '11') +VALUES ('001216', 'LearningResource', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELClassSection', 'RecordStartDateTime', '11') +VALUES ('001217', 'AssessmentItemPossibleResponse', 'CorrectIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELClassSectionService', 'RecordStartDateTime', '11') +VALUES ('001218', 'AssessmentPerformanceLevel', 'DescriptiveFeedback', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELCourse', 'RecordStartDateTime', '11') +VALUES ('001219', 'AssessmentResult', 'DiagnosticStatement', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELEnrollment', 'RecordStartDateTime', '11') +VALUES ('001223', 'FinancialAidApplication', 'RefFinancialAidApplicationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELEnrollmentOtherFunding', 'RecordStartDateTime', '11') +VALUES ('001224', 'PsStudentFinancialAid', 'RefNeedDeterminationMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELFacilityLicensing', 'RecordStartDateTime', '11') +VALUES ('001225', 'ELClassSectionService', 'OldestAgeServed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'EligibilityEvaluation', 'RecordStartDateTime', '11') +VALUES ('001225', 'OrganizationPopulationServed', 'OldestAgeServed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELOrganization', 'RecordStartDateTime', '11') +VALUES ('001226', 'ELClassSection', 'LanguageTranslationPolicy', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELOrganizationAvailability', 'RecordStartDateTime', '11') +VALUES ('001227', 'LearningResourceStatus', 'StatusStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELOrganizationFunds', 'RecordStartDateTime', '11') +VALUES ('001227', 'PersonStatus', 'StatusStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELOrganizationMonitoring', 'RecordStartDateTime', '11') +VALUES ('001228', 'LearningResourceStatus', 'StatusEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELProgramLicensing', 'RecordStartDateTime', '11') +VALUES ('001228', 'PersonStatus', 'StatusEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELQualityInitiative', 'RecordStartDateTime', '11') +VALUES ('001229', 'PsStudentDemographic', 'RefMaternalEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELQualityRatingImprovement', 'RecordStartDateTime', '11') +VALUES ('001230', 'PsStudentDemographic', 'RefPaternalEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELServicePartner', 'RecordStartDateTime', '11') +VALUES ('001231', 'IndividualizedProgram', 'RefIndividualizedProgramDateType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELStaff', 'RecordStartDateTime', '11') +VALUES ('001232', 'IndividualizedProgram', 'IndividualizedProgramDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELStaffAssignment', 'RecordStartDateTime', '11') +VALUES ('001233', 'IndividualizedProgram', 'NonInclusionMinutesPerWeek', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELStaffEducation', 'RecordStartDateTime', '11') +VALUES ('001234', 'IndividualizedProgram', 'InclusionMinutesPerWeek', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ELStaffEmployment', 'RecordStartDateTime', '11') +VALUES ('001235', 'IndividualizedProgram', 'RefIndividualizedProgramTransitionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Facility', 'RecordStartDateTime', '11') +VALUES ('001236', 'IndividualizedProgram', 'ServicePlanDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityAudit', 'RecordStartDateTime', '11') +VALUES ('001237', 'IndividualizedProgram', 'RefIndividualizedProgramLocationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityCompliance', 'RecordStartDateTime', '11') +VALUES ('001238', 'IndividualizedProgram', 'ServicePlanMeetingParticipants', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityDesign', 'RecordStartDateTime', '11') +VALUES ('001239', 'IndividualizedProgram', 'ServicePlanSignedBy', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityDesignConstruction', 'RecordStartDateTime', '11') +VALUES ('001240', 'IndividualizedProgram', 'ServicePlanSignatureDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityEnergy', 'RecordStartDateTime', '11') +VALUES ('001241', 'IndividualizedProgram', 'ServicePlanReevaluationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityFinance', 'RecordStartDateTime', '11') +VALUES ('001242', 'ProgramParticipationSpecialEducation', 'SpecialEducationFTE', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityFinancial', 'RecordStartDateTime', '11') +VALUES ('001242', 'ServicesReceived', 'FullTimeEquivalency', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityHazard', 'RecordStartDateTime', '11') +VALUES ('001244', 'K12ProgramOrService', 'RefProgramGiftedEligibilityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityJointUse', 'RecordStartDateTime', '11') +VALUES ('001245', 'CredentialDefCategory', 'CategorySystem', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityLease', 'RecordStartDateTime', '11') +VALUES ('001246', 'LearningResourceEducationLevel', 'RefEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityLocation', 'RecordStartDateTime', '11') +VALUES ('001248', 'PersonImmunization', 'RefImmunizationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityManagement', 'RecordStartDateTime', '11') +VALUES ('001249', 'CompetencyDefinition', 'Notes', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityManagementPlan', 'RecordStartDateTime', '11') +VALUES ('001250', 'CompetencyDefinition', 'Version', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityMandate', 'RecordStartDateTime', '11') +VALUES ('001251', 'AssessmentItemResponseTheory', 'ParameterA', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityMortgage', 'RecordStartDateTime', '11') +VALUES ('001252', 'AssessmentItemResponseTheory', 'ParameterB', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityMortgageFee', 'RecordStartDateTime', '11') +VALUES ('001253', 'AssessmentItemResponseTheory', 'RefItemResponseTheoryDifficultyCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityRelationship', 'RecordStartDateTime', '11') +VALUES ('001254', 'AssessmentItemResponseTheory', 'ParameterC', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilitySchoolDesign', 'RecordStartDateTime', '11') +VALUES ('001255', 'AssessmentItemResponseTheory', 'ParameterD1', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilitySite', 'RecordStartDateTime', '11') +VALUES ('001256', 'AssessmentItemResponseTheory', 'ParameterD2', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FacilityUtilization', 'RecordStartDateTime', '11') +VALUES ('001257', 'AssessmentItemResponseTheory', 'ParameterD3', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FinancialAccount', 'RecordStartDateTime', '11') +VALUES ('001258', 'AssessmentItemResponseTheory', 'ParameterD4', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FinancialAccountProgram', 'RecordStartDateTime', '11') +VALUES ('001259', 'AssessmentItemResponseTheory', 'ParameterD5', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FinancialAidApplication', 'RecordStartDateTime', '11') +VALUES ('001260', 'AssessmentItemResponseTheory', 'ParameterD6', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'FinancialAidAward', 'RecordStartDateTime', '11') +VALUES ('001261', 'AssessmentItem', 'LinkingItemIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Goal', 'RecordStartDateTime', '11') +VALUES ('001262', 'AssessmentItemResponseTheory', 'PointBiserialCorrelationValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'GoalMeasurement', 'RecordStartDateTime', '11') +VALUES ('001263', 'AssessmentItem', 'ReleaseStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'GoalMeasurementCriterion', 'RecordStartDateTime', '11') +VALUES ('001264', 'AssessmentItemResponseTheory', 'DIFValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'GoalPerformance', 'RecordStartDateTime', '11') +VALUES ('001265', 'AssessmentItemResponseTheory', 'KappaValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IDEAEligibilityEvaluationCategory', 'RecordStartDateTime', '11') +VALUES ('001266', 'AssessmentItemResponseTheory', 'RefItemResponseTheoryKappaAlgorithmId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IEPAuthorization', 'RecordStartDateTime', '11') +VALUES ('001267', 'AssessmentItem', 'BodyText', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IEPAuthorizationRejected', 'RecordStartDateTime', '11') +VALUES ('001268', 'AssessmentItem', 'Stimulus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IEPPresentLevel', 'RecordStartDateTime', '11') +VALUES ('001269', 'AssessmentItemPossibleResponse', 'PossibleResponseOption', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Incident', 'RecordStartDateTime', '11') +VALUES ('001270', 'OrganizationCalendarSession', 'Code', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IncidentPerson', 'RecordStartDateTime', '11') +VALUES ('001271', 'OrganizationCalendarSession', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgram', 'RecordStartDateTime', '11') +VALUES ('001272', 'OrganizationCalendarSession', 'MarkingTermIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAccommodation', 'RecordStartDateTime', '11') +VALUES ('001273', 'OrganizationCalendarSession', 'SchedulingTermIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAccommodationSubject', 'RecordStartDateTime', '11') +VALUES ('001274', 'OrganizationCalendarSession', 'AttendanceTermIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAmendment', 'RecordStartDateTime', '11') +VALUES ('001275', 'OrganizationCalendarEvent', 'EventDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAssessment', 'RecordStartDateTime', '11') +VALUES ('001276', 'OrganizationCalendarEvent', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramAssessmentAccommodation', 'RecordStartDateTime', '11') +VALUES ('001277', 'PersonDisability', 'RefAccommodationsNeededTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramEligibility', 'RecordStartDateTime', '11') +VALUES ('001278', 'CourseSection', 'RefAdvancedPlacementCourseCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramEligibilityEvaluation', 'RecordStartDateTime', '11') +VALUES ('001279', 'PDActivityEducationLevel', 'RefPDActivityEducationLevelsAddressedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramGoal', 'RecordStartDateTime', '11') +VALUES ('001281', 'PersonAllergy', 'ReactionDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramMeeting', 'RecordStartDateTime', '11') +VALUES ('001282', 'PersonAllergy', 'RefAllergySeverityId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramMeetingAttendee', 'RecordStartDateTime', '11') +VALUES ('001283', 'PersonAllergy', 'RefAllergyTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramProgressGoal', 'RecordStartDateTime', '11') +VALUES ('001284', 'AssessmentItemResponse', 'ResultXML', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramProgressReport', 'RecordStartDateTime', '11') +VALUES ('001287', 'ELCourse', 'RefBlendedLearningModelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramProgressReportPlan', 'RecordStartDateTime', '11') +VALUES ('001287', 'K12Course', 'RefBlendedLearningModelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramService', 'RecordStartDateTime', '11') +VALUES ('001287', 'K12SchoolStatus', 'RefBlendedLearningModelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IndividualizedProgramServicesReceived', 'RecordStartDateTime', '11') +VALUES ('001288', 'AeCourse', 'RefCareerClusterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'IPEDSFinance', 'RecordStartDateTime', '11') +VALUES ('001288', 'CredentialDefinition', 'RefCareerClusterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12CharterSchoolAuthorizerAgency', 'RecordStartDateTime', '11') +VALUES ('001288', 'CteCourse', 'RefCareerClusterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12CharterSchoolManagementOrganization', 'RecordStartDateTime', '11') +VALUES ('001288', 'K12Course', 'RefCareerClusterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12Course', 'RecordStartDateTime', '11') +VALUES ('001288', 'PSStudentProgram', 'RefCareerClusterId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12FederalFundAllocation', 'RecordStartDateTime', '11') +VALUES ('001289', 'PersonCareerEducationPlan', 'LastUpdated', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12Lea', 'RecordStartDateTime', '11') +VALUES ('001290', 'PersonCareerEducationPlan', 'RefCareerEducationPlanTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaFederalFunds', 'RecordStartDateTime', '11') +VALUES ('001292', 'K12CharterSchoolAuthorizerAgency', 'K12CharterSchoolAuthorizerAgencyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaFederalReporting', 'RecordStartDateTime', '11') +VALUES ('001292', 'K12CharterSchoolAuthorizerAgency', 'RefCharterSchoolAuthorizerTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaGradeLevelsApproved', 'RecordStartDateTime', '11') +VALUES ('001293', 'K12School', 'CharterSchoolApprovalYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaGradeOffered', 'RecordStartDateTime', '11') +VALUES ('001296', 'ProgramParticipationAE', 'RefCorrectionalEducationFacilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaPreKEligibility', 'RecordStartDateTime', '11') +VALUES ('001298', 'PsSection', 'GradeValueQualifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaPreKEligibleAgesIDEA', 'RecordStartDateTime', '11') +VALUES ('001299', 'PsStudentCourseSectionMark', 'RefCourseAcademicGradeStatusCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaSafeDrugFree', 'RecordStartDateTime', '11') +VALUES ('001299', 'PsStudentSection', 'RefCourseAcademicGradeStatusCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaTitleIIIProfessionalDevelopment', 'RecordStartDateTime', '11') +VALUES ('001301', 'Course', 'RefCourseApplicableEducationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12LeaTitleISupportService', 'RecordStartDateTime', '11') +VALUES ('001302', 'Course', 'CertificationDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12OrganizationStudentResponsibility', 'RecordStartDateTime', '11') +VALUES ('001303', 'PsCourse', 'RefCourseCreditBasisTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12ProgramOrService', 'RecordStartDateTime', '11') +VALUES ('001304', 'PsCourse', 'RefCourseCreditLevelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12School', 'RecordStartDateTime', '11') +VALUES ('001306', 'K12Course', 'FundingProgram', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolCorrectiveAction', 'RecordStartDateTime', '11') +VALUES ('001307', 'PsSection', 'RefCourseHonorsTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolGradeLevelsApproved', 'RecordStartDateTime', '11') +VALUES ('001308', 'PsSection', 'RefCourseInstructionMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolGradeOffered', 'RecordStartDateTime', '11') +VALUES ('001309', 'PsSectionLocation', 'CourseInstructionSiteName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolImprovement', 'RecordStartDateTime', '11') +VALUES ('001310', 'PsSectionLocation', 'RefCourseInstructionSiteTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolIndicatorStatus', 'RecordStartDateTime', '11') +VALUES ('001311', 'K12Course', 'RefCourseInteractionModeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SchoolStatus', 'RecordStartDateTime', '11') +VALUES ('001312', 'AeCourse', 'RefCourseLevelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12Sea', 'RecordStartDateTime', '11') +VALUES ('001312', 'Course', 'RefCourseLevelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SeaAlternateFundUse', 'RecordStartDateTime', '11') +VALUES ('001312', 'CourseSectionLevel', 'RefCourseLevelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12SeaFederalFunds', 'RecordStartDateTime', '11') +VALUES ('001312', 'PsSection', 'RefCourseLevelTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StaffAssignment', 'RecordStartDateTime', '11') +VALUES ('001313', 'PsStudentCourseSectionMark', 'CourseNarrativeExplanationGrade', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StaffEmployment', 'RecordStartDateTime', '11') +VALUES ('001314', 'PsCourse', 'CourseNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentAcademicHonor', 'RecordStartDateTime', '11') +VALUES ('001316', 'PsStudentAcademicRecord', 'CourseTotal', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentAcademicRecord', 'RecordStartDateTime', '11') +VALUES ('001317', 'PsStudentAcademicRecord', 'RefCreditHoursAppliedOtherProgramId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentActivity', 'RecordStartDateTime', '11') +VALUES ('001318', 'StaffCredential', 'CTEInstructorIndustryCertification', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentCohort', 'RecordStartDateTime', '11') +VALUES ('001319', 'PersonDisability', 'RefDisabilityConditionStatusCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentCourseSection', 'RecordStartDateTime', '11') +VALUES ('001320', 'PersonDisability', 'RefDisabilityConditionTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentCourseSectionMark', 'RecordStartDateTime', '11') +VALUES ('001321', 'PersonDisability', 'RefDisabilityDeterminationSourceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentDiscipline', 'RecordStartDateTime', '11') +VALUES ('001322', 'K12StudentDiscipline', 'IEPPlacementMeetingIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentEmployment', 'RecordStartDateTime', '11') +VALUES ('001323', 'PsStudentEnrollment', 'DistanceEducationProgramEnrollmentInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentEnrollment', 'RecordStartDateTime', '11') +VALUES ('001324', 'PsStudentEnrollment', 'DoctoralCandidacyAdmitInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentGraduationPlan', 'RecordStartDateTime', '11') +VALUES ('001325', 'PsStudentEnrollment', 'DoctoralCandidacyDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentHomeLanguageSurvey', 'RecordStartDateTime', '11') +VALUES ('001326', 'PsStudentEnrollment', 'DoctoralExamTakenDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentLiteracyAssessment', 'RecordStartDateTime', '11') +VALUES ('001327', 'PsStudentEnrollment', 'RefDoctoralExamsRequiredCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12StudentSession', 'RecordStartDateTime', '11') +VALUES ('001328', 'ELEnrollment', 'RefELFederalFundingTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'K12TitleIIILanguageInstruction', 'RecordStartDateTime', '11') +VALUES ('001328', 'ELOrganizationFunds', 'RefELFederalFundingTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearnerAction', 'RecordStartDateTime', '11') +VALUES ('001329', 'ELClassSection', 'GroupSize', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearnerActivity', 'RecordStartDateTime', '11') +VALUES ('001330', 'ELOrganizationMonitoring', 'RefOrganizationMonitoringNotificationsId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearnerActivity_LearningResource', 'RecordStartDateTime', '11') +VALUES ('001331', 'ELOrganizationMonitoring', 'VisitStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResource', 'RecordStartDateTime', '11') +VALUES ('001332', 'ELOrganizationMonitoring', 'VisitEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourceAdaptation', 'RecordStartDateTime', '11') +VALUES ('001333', 'ELOrganizationMonitoring', 'RefPurposeOfMonitoringVisitId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourceEducationLevel', 'RecordStartDateTime', '11') +VALUES ('001334', 'ELOrganizationMonitoring', 'TypeOfMonitoring', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourceMediaFeature', 'RecordStartDateTime', '11') +VALUES ('001335', 'ELEnrollmentOtherFunding', 'RefELOtherFederalFundingSourcesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourcePeerRating', 'RecordStartDateTime', '11') +VALUES ('001335', 'ELOrganizationFunds', 'RefELOtherFederalFundingSourcesId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LearningResourcePhysicalMedia', 'RecordStartDateTime', '11') +VALUES ('001336', 'AssessmentResult', 'RefELOutcomeMeasurementLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Location', 'RecordStartDateTime', '11') +VALUES ('001337', 'ELStaffEducation', 'RefELProfessionalDevelopmentTopicAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'LocationAddress', 'RecordStartDateTime', '11') +VALUES ('001338', 'ELChildProgramEligibility', 'ExpirationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Organization', 'RecordStartDateTime', '11') +VALUES ('001339', 'ELChildProgramEligibility', 'RefELProgramEligibilityStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationAccreditation', 'RecordStartDateTime', '11') +VALUES ('001340', 'ELChildProgramEligibility', 'StatusDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendar', 'RecordStartDateTime', '11') +VALUES ('001341', 'PersonRelationship', 'EmergencyContactInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendarCrisis', 'RecordStartDateTime', '11') +VALUES ('001342', 'QuarterlyEmploymentRecord', 'RefEmployedPriorToEnrollmentId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendarDay', 'RecordStartDateTime', '11') +VALUES ('001343', 'PsStudentEmployment', 'RefEmploymentStatusWhileEnrolledId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendarEvent', 'RecordStartDateTime', '11') +VALUES ('001344', 'K12Course', 'FamilyConsumerSciencesCourseInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationCalendarSession', 'RecordStartDateTime', '11') +VALUES ('001345', 'FinancialAccount', 'RefFinancialAccountCategoryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationDetail', 'RecordStartDateTime', '11') +VALUES ('001346', 'FinancialAccount', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationEmail', 'RecordStartDateTime', '11') +VALUES ('001347', 'FinancialAccount', 'RefFinancialAccountFundClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationEmployeeBenefit', 'RecordStartDateTime', '11') +VALUES ('001348', 'FinancialAccount', 'Name', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationFederalAccountability', 'RecordStartDateTime', '11') +VALUES ('001349', 'FinancialAccount', 'RefFinancialAccountProgramCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationFinancial', 'RecordStartDateTime', '11') +VALUES ('001350', 'OrganizationFinancial', 'ActualValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationIdentifier', 'RecordStartDateTime', '11') +VALUES ('001351', 'OrganizationFinancial', 'BudgetedValue', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationImage', 'RecordStartDateTime', '11') +VALUES ('001352', 'PsStudentFinancialAid', 'FinancialAidIncomeLevel', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationIndicator', 'RecordStartDateTime', '11') +VALUES ('001353', 'FinancialAccount', 'RefFinancialAccountBalanceSheetCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationLocation', 'RecordStartDateTime', '11') +VALUES ('001354', 'FinancialAccount', 'RefFinancialExpenditureFunctionCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationOperationalStatus', 'RecordStartDateTime', '11') +VALUES ('001355', 'FinancialAccount', 'RefFinancialExpenditureObjectCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPersonRole', 'RecordStartDateTime', '11') +VALUES ('001356', 'ELClassSectionService', 'RefFrequencyOfServiceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPersonRoleApplication', 'RecordStartDateTime', '11') +VALUES ('001357', 'PsStudentEnrollment', 'RefGraduateOrDoctoralExamResultsStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPersonRoleFTE', 'RecordStartDateTime', '11') +VALUES ('001358', 'PersonHealth', 'HealthScreeningEquipmentUsed', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPolicy', 'RecordStartDateTime', '11') +VALUES ('001359', 'PersonHealth', 'HealthScreeningFollowUpRecommendation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationPopulationServed', 'RecordStartDateTime', '11') +VALUES ('001360', 'ELChildTransitionPlan', 'PartB619PotentialEligibilityInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationProgramType', 'RecordStartDateTime', '11') +VALUES ('001363', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationOptOutIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationRelationship', 'RecordStartDateTime', '11') +VALUES ('001364', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationOptOutDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationService', 'RecordStartDateTime', '11') +VALUES ('001365', 'ELChildTransitionPlan', 'TransitionConferenceDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationTechnicalAssistance', 'RecordStartDateTime', '11') +VALUES ('001366', 'ELChildTransitionPlan', 'TransitionConferenceDeclineDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationTelephone', 'RecordStartDateTime', '11') +VALUES ('001367', 'ELChildTransitionPlan', 'DateOfTransitionPlan', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'OrganizationWebsite', 'RecordStartDateTime', '11') +VALUES ('001369', 'Incident', 'RefIncidentMultipleOffenseTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PDActivityEducationLevel', 'RecordStartDateTime', '11') +VALUES ('001370', 'IncidentPerson', 'Identifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PeerRatingSystem', 'RecordStartDateTime', '11') +VALUES ('001371', 'Incident', 'RefIncidentPerpetratorInjuryTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Person', 'RecordStartDateTime', '11') +VALUES ('001372', 'IncidentPerson', 'RefIncidentPersonTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Person_AssessmentPersonalNeedsProfile', 'RecordStartDateTime', '11') +VALUES ('001373', 'IncidentPerson', 'RefIncidentPersonRoleTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonAddress', 'RecordStartDateTime', '11') +VALUES ('001374', 'Incident', 'RegulationViolatedDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonAddressNcesSide', 'RecordStartDateTime', '11') +VALUES ('001375', 'Incident', 'RelatedToDisabilityManifestationInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonAllergy', 'RecordStartDateTime', '11') +VALUES ('001376', 'Incident', 'ReportedToLawEnforcementInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonBirthplace', 'RecordStartDateTime', '11') +VALUES ('001381', 'IndividualizedProgramService', 'PlannedServiceStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonCareerEducationPlan', 'RecordStartDateTime', '11') +VALUES ('001383', 'IndividualizedProgramService', 'RefIndividualizedProgramPlannedServiceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonCredential', 'RecordStartDateTime', '11') +VALUES ('001384', 'ELStaffAssignment', 'ItinerantProvider', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDegreeOrCertificate', 'RecordStartDateTime', '11') +VALUES ('001386', 'K12Course', 'RefK12EndOfCourseRequirementId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDemographicRace', 'RecordStartDateTime', '11') +VALUES ('001388', 'ProfessionalDevelopmentSession', 'RefLanguageId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDetail', 'RecordStartDateTime', '11') +VALUES ('001389', 'LearningResource', 'RefLearningResourceAccessAPITypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDigitalAccess', 'RecordStartDateTime', '11') +VALUES ('001390', 'LearningResource', 'RefLearningResourceAccessHazardTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDigitalAccessSpeed', 'RecordStartDateTime', '11') +VALUES ('001391', 'LearningResource', 'RefLearningResourceAccessModeTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonDisability', 'RecordStartDateTime', '11') +VALUES ('001392', 'LearningResourceAdaptation', 'AdaptationURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonEmailAddress', 'RecordStartDateTime', '11') +VALUES ('001393', 'LearningResource', 'AssistiveTechnologiesCompatibleInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonFamily', 'RecordStartDateTime', '11') +VALUES ('001394', 'LearningResource', 'RefLearningResourceBookFormatTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonHealth', 'RecordStartDateTime', '11') +VALUES ('001395', 'LearningResource', 'RefLearningResourceControlFlexibilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonHealthBirth', 'RecordStartDateTime', '11') +VALUES ('001396', 'LearningResource', 'RefLearningResourceDigitalMediaSubTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonHomelessness', 'RecordStartDateTime', '11') +VALUES ('001397', 'LearningResource', 'RefLearningResourceDigitalMediaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonIdentifier', 'RecordStartDateTime', '11') +VALUES ('001398', 'LearningResource', 'AdaptedFromURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonImmunization', 'RecordStartDateTime', '11') +VALUES ('001399', 'LearningResourceMediaFeature', 'RefLearningResourceMediaFeatureTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonLanguage', 'RecordStartDateTime', '11') +VALUES ('001400', 'LearningResource', 'PeerRatingSampleSize', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonLearningDevice', 'RecordStartDateTime', '11') +VALUES ('001401', 'LearningResourcePhysicalMedia', 'RefLearningResourcePhysicalMediaTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonMaster', 'RecordStartDateTime', '11') +VALUES ('001402', 'CompetencyDefAssociation', 'ConnectionCitation', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonMilitary', 'RecordStartDateTime', '11') +VALUES ('001403', 'CompetencyDefAssociation', 'DestinationNodeName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonOtherName', 'RecordStartDateTime', '11') +VALUES ('001404', 'CompetencyDefAssociation', 'DestinationNodeURI', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonPersonalInformationVerification', 'RecordStartDateTime', '11') +VALUES ('001405', 'CompetencyDefAssociation', 'OriginNodeName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonProgramParticipation', 'RecordStartDateTime', '11') +VALUES ('001406', 'CompetencyDefAssociation', 'OriginNodeURI', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonReferral', 'RecordStartDateTime', '11') +VALUES ('001407', 'CompetencyDefAssociation', 'Weight', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonRelationship', 'RecordStartDateTime', '11') +VALUES ('001408', 'CompetencyDefinition', 'RefCompetencyDefNodeAccessibilityProfileId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonStatus', 'RecordStartDateTime', '11') +VALUES ('001409', 'CompetencyDefinition', 'ShortName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PersonTelephone', 'RecordStartDateTime', '11') +VALUES ('001411', 'CompetencyDefinition', 'RefCompetencyDefTestabilityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProfessionalDevelopmentActivity', 'RecordStartDateTime', '11') +VALUES ('001412', 'WorkforceEmploymentQuarterlyData', 'MilitaryEnlistmentAfterExit', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProfessionalDevelopmentRequirement', 'RecordStartDateTime', '11') +VALUES ('001413', 'PsCourse', 'NCAAEligibilityInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProfessionalDevelopmentSession', 'RecordStartDateTime', '11') +VALUES ('001414', 'PsCourse', 'RefNCESCollegeCourseMapCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProfessionalDevelopmentSessionInstructor', 'RecordStartDateTime', '11') +VALUES ('001415', 'PsStudentDemographic', 'NumberOfDependents', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Program', 'RecordStartDateTime', '11') +VALUES ('001416', 'PsStudentEnrollment', 'OralDefenseCompletedIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationAE', 'RecordStartDateTime', '11') +VALUES ('001417', 'PsStudentEnrollment', 'OralDefenseDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationAttainment', 'RecordStartDateTime', '11') +VALUES ('001419', 'OrganizationAccreditation', 'SeekingAccreditationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationCte', 'RecordStartDateTime', '11') +VALUES ('001420', 'PsCourse', 'OriginalCourseIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationFoodService', 'RecordStartDateTime', '11') +VALUES ('001421', 'ELChildDemographic', 'OtherRaceIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationMigrant', 'RecordStartDateTime', '11') +VALUES ('001422', 'PsCourse', 'OverrideSchoolCourseNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationNeglected', 'RecordStartDateTime', '11') +VALUES ('001423', 'PersonRelationship', 'ContactPriorityNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationSpecialEducation', 'RecordStartDateTime', '11') +VALUES ('001424', 'PersonRelationship', 'ContactRestrictions', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationTeacherPrep', 'RecordStartDateTime', '11') +VALUES ('001425', 'PersonRelationship', 'LivesWithIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationTitleI', 'RecordStartDateTime', '11') +VALUES ('001426', 'PsStudentEnrollment', 'PostsecondaryEnteringStudentInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationTitleIIILep', 'RecordStartDateTime', '11') +VALUES ('001427', 'PsStudentAcademicRecord', 'EnteringTerm', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationWIOA', 'RecordStartDateTime', '11') +VALUES ('001428', 'PersonRelationship', 'PrimaryContactIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ProgramParticipationWIOABarriers', 'RecordStartDateTime', '11') +VALUES ('001429', 'PersonCredential', 'ProfessionalCertificateOrLicenseNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsCourse', 'RecordStartDateTime', '11') +VALUES ('001430', 'ProfessionalDevelopmentActivity', 'RefPDAudienceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsInstitution', 'RecordStartDateTime', '11') +VALUES ('001431', 'ProfessionalDevelopmentSession', 'RefPDDeliveryMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsPriceOfAttendance', 'RecordStartDateTime', '11') +VALUES ('001432', 'ProfessionalDevelopmentActivity', 'ApprovalCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsProgram', 'RecordStartDateTime', '11') +VALUES ('001433', 'ProfessionalDevelopmentActivity', 'RefPDActivityApprovedPurposeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsSection', 'RecordStartDateTime', '11') +VALUES ('001434', 'ProfessionalDevelopmentActivity', 'ActivityCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsSectionLocation', 'RecordStartDateTime', '11') +VALUES ('001435', 'ProfessionalDevelopmentActivity', 'Cost', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStaffEmployment', 'RecordStartDateTime', '11') +VALUES ('001436', 'ProfessionalDevelopmentActivity', 'RefPDActivityCreditTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentAcademicAward', 'RecordStartDateTime', '11') +VALUES ('001437', 'ProfessionalDevelopmentActivity', 'Credits', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentAcademicRecord', 'RecordStartDateTime', '11') +VALUES ('001438', 'ProfessionalDevelopmentActivity', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentAdmissionTest', 'RecordStartDateTime', '11') +VALUES ('001439', 'ProfessionalDevelopmentActivity', 'RefPDActivityLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentApplication', 'RecordStartDateTime', '11') +VALUES ('001440', 'ProfessionalDevelopmentActivity', 'Objective', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentCohort', 'RecordStartDateTime', '11') +VALUES ('001442', 'ProfessionalDevelopmentActivity', 'RefPDActivityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentCourseSectionMark', 'RecordStartDateTime', '11') +VALUES ('001443', 'ProfessionalDevelopmentSession', 'FundingSource', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentDemographic', 'RecordStartDateTime', '11') +VALUES ('001445', 'ProfessionalDevelopmentActivity', 'PublishIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentEmployment', 'RecordStartDateTime', '11') +VALUES ('001446', 'ProfessionalDevelopmentSession', 'Capacity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentEnrollment', 'RecordStartDateTime', '11') +VALUES ('001447', 'ProfessionalDevelopmentSession', 'EndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentFinancialAid', 'RecordStartDateTime', '11') +VALUES ('001448', 'ProfessionalDevelopmentSession', 'EndTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PSStudentProgram', 'RecordStartDateTime', '11') +VALUES ('001449', 'ProfessionalDevelopmentSession', 'EvaluationMethod', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'PsStudentSection', 'RecordStartDateTime', '11') +VALUES ('001450', 'ProfessionalDevelopmentSession', 'EvaluationScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'QuarterlyEmploymentRecord', 'RecordStartDateTime', '11') +VALUES ('001451', 'ProfessionalDevelopmentSession', 'ExpirationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RequiredImmunization', 'RecordStartDateTime', '11') +VALUES ('001452', 'ProfessionalDevelopmentSession', 'SessionIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Role', 'RecordStartDateTime', '11') +VALUES ('001454', 'ProfessionalDevelopmentSession', 'LocationName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RoleAttendance', 'RecordStartDateTime', '11') +VALUES ('001455', 'ProfessionalDevelopmentSession', 'StartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RoleAttendanceEvent', 'RecordStartDateTime', '11') +VALUES ('001456', 'ProfessionalDevelopmentSession', 'StartTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RoleStatus', 'RecordStartDateTime', '11') +VALUES ('001457', 'ProfessionalDevelopmentSession', 'RefPDSessionStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'Rubric', 'RecordStartDateTime', '11') +VALUES ('001458', 'ProfessionalDevelopmentSession', 'RefPDInstructionalDeliveryModeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RubricCriterion', 'RecordStartDateTime', '11') +VALUES ('001460', 'ELQualityInitiative', 'MaximumScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'RubricCriterionLevel', 'RecordStartDateTime', '11') +VALUES ('001461', 'ELQualityInitiative', 'MinimumScore', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServiceFrequency', 'RecordStartDateTime', '11') +VALUES ('001462', 'ELQualityInitiative', 'ScoreLevel', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServicePlan', 'RecordStartDateTime', '11') +VALUES ('001463', 'ELQualityInitiative', 'ParticipationIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServiceProvided', 'RecordStartDateTime', '11') +VALUES ('001464', 'ELQualityInitiative', 'ParticipationEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServiceProvider', 'RecordStartDateTime', '11') +VALUES ('001465', 'ELQualityInitiative', 'ParticipationStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServicesReceived', 'RecordStartDateTime', '11') +VALUES ('001468', 'FinancialAccount', 'RefFinancialAccountRevenueCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'ServiceStaff', 'RecordStartDateTime', '11') +VALUES ('001469', 'RubricCriterion', 'Category', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffCompensation', 'RecordStartDateTime', '11') +VALUES ('001470', 'RubricCriterion', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffCredential', 'RecordStartDateTime', '11') +VALUES ('001471', 'RubricCriterionLevel', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffEmployment', 'RecordStartDateTime', '11') +VALUES ('001472', 'RubricCriterionLevel', 'Feedback', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffEvaluation', 'RecordStartDateTime', '11') +VALUES ('001473', 'RubricCriterionLevel', 'Position', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffEvaluationPart', 'RecordStartDateTime', '11') +VALUES ('001474', 'RubricCriterionLevel', 'Quality', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffExperience', 'RecordStartDateTime', '11') +VALUES ('001475', 'RubricCriterionLevel', 'Score', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffProfessionalDevelopmentActivity', 'RecordStartDateTime', '11') +VALUES ('001476', 'RubricCriterion', 'Position', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'StaffTechnicalAssistance', 'RecordStartDateTime', '11') +VALUES ('001477', 'RubricCriterion', 'Title', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'TeacherEducationCredentialExam', 'RecordStartDateTime', '11') +VALUES ('001478', 'RubricCriterion', 'Weight', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'TeacherStudentDataLinkExclusion', 'RecordStartDateTime', '11') +VALUES ('001479', 'Rubric', 'Description', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'WorkforceEmploymentQuarterlyData', 'RecordStartDateTime', '11') +VALUES ('001480', 'K12Course', 'SCEDGradeSpan', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'WorkforceProgramParticipantCohort', 'RecordStartDateTime', '11') +VALUES ('001481', 'PersonReferral', 'ReferralDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001917', 'WorkforceProgramParticipation', 'RecordStartDateTime', '11') +VALUES ('001482', 'PersonReferral', 'RefReferralOutcomeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Activity', 'RecordEndDateTime', '11') +VALUES ('001483', 'PersonReferral', 'Reason', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeCourse', 'RecordEndDateTime', '11') +VALUES ('001484', 'PersonReferral', 'Source', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeProvider', 'RecordEndDateTime', '11') +VALUES ('001485', 'PersonReferral', 'ReferralTypeReceived', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeStaff', 'RecordEndDateTime', '11') +VALUES ('001486', 'PersonReferral', 'ReferredTo', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeStudentAcademicRecord', 'RecordEndDateTime', '11') +VALUES ('001487', 'OrganizationDetail', 'ShortName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AeStudentEmployment', 'RecordEndDateTime', '11') +VALUES ('001488', 'ServicePlan', 'ReasonForDeclinedServices', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemApip', 'RecordEndDateTime', '11') +VALUES ('001489', 'ProfessionalDevelopmentSession', 'SponsoringAgencyName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemApipDescription', 'RecordEndDateTime', '11') +VALUES ('001493', 'OrganizationTechnicalAssistance', 'TechnicalAssistanceApprovedInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemResponseTheory', 'RecordEndDateTime', '11') +VALUES ('001493', 'StaffTechnicalAssistance', 'TechnicalAssistanceApprovedInd', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'BuildingSpaceUtilization', 'RecordEndDateTime', '11') +VALUES ('001494', 'OrganizationTechnicalAssistance', 'RefTechnicalAssistanceDeliveryTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Classroom', 'RecordEndDateTime', '11') +VALUES ('001494', 'StaffTechnicalAssistance', 'RefTechnicalAssistanceDeliveryTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Course', 'RecordEndDateTime', '11') +VALUES ('001495', 'OrganizationTechnicalAssistance', 'RefTechnicalAssistanceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CourseSection', 'RecordEndDateTime', '11') +VALUES ('001495', 'StaffTechnicalAssistance', 'RefTechnicalAssistanceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialDefAgent', 'RecordEndDateTime', '11') +VALUES ('001496', 'PsStudentEnrollment', 'ThesisOrDissertationTitle', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CredentialIssuer', 'RecordEndDateTime', '11') +VALUES ('001497', 'StaffEmployment', 'UnionMembershipName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CteCourse', 'RecordEndDateTime', '11') +VALUES ('001498', 'StaffEmployment', 'WeeksEmployedPerYear', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'CteStudentAcademicRecord', 'RecordEndDateTime', '11') +VALUES ('001499', 'K12Course', 'RefWorkbasedLearningOpportunityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'EarlyChildhoodCredential', 'RecordEndDateTime', '11') +VALUES ('001499', 'ProgramParticipationAE', 'RefWorkbasedLearningOpportunityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildDemographic', 'RecordEndDateTime', '11') +VALUES ('001499', 'ProgramParticipationCte', 'RefWorkbasedLearningOpportunityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildDevelopmentalAssessment', 'RecordEndDateTime', '11') +VALUES ('001499', 'PsSection', 'RefWorkbasedLearningOpportunityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildHealth', 'RecordEndDateTime', '11') +VALUES ('001499', 'PSStudentProgram', 'RefWorkbasedLearningOpportunityTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildIndividualizedProgram', 'RecordEndDateTime', '11') +VALUES ('001500', 'ELChildTransitionPlan', 'IDEAPartCToPartBNotificationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildOutcomeSummary', 'RecordEndDateTime', '11') +VALUES ('001501', 'ELChildIndividualizedProgram', 'RefIDEAIEPStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildProgramEligibility', 'RecordEndDateTime', '11') +VALUES ('001503', 'AssessmentResult', 'RefOutcomeTimePointId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildService', 'RecordEndDateTime', '11') +VALUES ('001504', 'ELChildOutcomeSummary', 'COSProgressAIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildServicesApplication', 'RecordEndDateTime', '11') +VALUES ('001505', 'ELChildOutcomeSummary', 'COSProgressBIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELChildTransitionPlan', 'RecordEndDateTime', '11') +VALUES ('001506', 'ELChildOutcomeSummary', 'COSProgressCIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELClassSection', 'RecordEndDateTime', '11') +VALUES ('001507', 'ELChildOutcomeSummary', 'COSRatingAId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELEnrollment', 'RecordEndDateTime', '11') +VALUES ('001508', 'ELChildOutcomeSummary', 'COSRatingBId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganization', 'RecordEndDateTime', '11') +VALUES ('001509', 'ELChildOutcomeSummary', 'COSRatingCId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganizationAvailability', 'RecordEndDateTime', '11') +VALUES ('001510', 'IndividualizedProgramService', 'RefMethodOfServiceDeliveryId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELOrganizationFunds', 'RecordEndDateTime', '11') +VALUES ('001511', 'CompetencyDefinition', 'ValidEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELServicePartner', 'RecordEndDateTime', '11') +VALUES ('001512', 'CompetencyDefinition', 'ValidStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELStaff', 'RecordEndDateTime', '11') +VALUES ('001513', 'PersonOtherName', 'LastName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELStaffAssignment', 'RecordEndDateTime', '11') +VALUES ('001514', 'PersonOtherName', 'FirstName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELStaffEducation', 'RecordEndDateTime', '11') +VALUES ('001515', 'PersonOtherName', 'MiddleName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ELStaffEmployment', 'RecordEndDateTime', '11') +VALUES ('001516', 'CteCourse', 'RefSCEDCourseLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityFinancial', 'RecordEndDateTime', '11') +VALUES ('001516', 'ELCourse', 'RefSCEDCourseLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityManagement', 'RecordEndDateTime', '11') +VALUES ('001516', 'K12Course', 'RefSCEDCourseLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'FacilityUtilization', 'RecordEndDateTime', '11') +VALUES ('001517', 'CteCourse', 'RefSCEDCourseCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IEPPresentLevel', 'RecordEndDateTime', '11') +VALUES ('001517', 'CteCourse', 'SCEDCourseCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IncidentPerson', 'RecordEndDateTime', '11') +VALUES ('001517', 'ELCourse', 'RefSCEDCourseCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'IPEDSFinance', 'RecordEndDateTime', '11') +VALUES ('001517', 'K12Course', 'RefSCEDCourseCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12Course', 'RecordEndDateTime', '11') +VALUES ('001517', 'K12Course', 'SCEDCourseCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12FederalFundAllocation', 'RecordEndDateTime', '11') +VALUES ('001518', 'CteCourse', 'RefSCEDCourseSubjectAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12Lea', 'RecordEndDateTime', '11') +VALUES ('001518', 'ELCourse', 'RefSCEDCourseSubjectAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaFederalFunds', 'RecordEndDateTime', '11') +VALUES ('001518', 'IndividualizedProgramAccommodationSubject', 'RefSCEDCourseSubjectAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaFederalReporting', 'RecordEndDateTime', '11') +VALUES ('001518', 'K12Course', 'RefSCEDCourseSubjectAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaSafeDrugFree', 'RecordEndDateTime', '11') +VALUES ('001518', 'K12StudentGraduationPlan', 'RefSCEDCourseSubjectAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12LeaTitleISupportService', 'RecordEndDateTime', '11') +VALUES ('001519', 'IndividualizedProgramService', 'RefServiceFrequencyId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12ProgramOrService', 'RecordEndDateTime', '11') +VALUES ('001520', 'IndividualizedProgramService', 'PlannedServiceDuration', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12School', 'RecordEndDateTime', '11') +VALUES ('001521', 'ELChildTransitionPlan', 'RefReasonDelayTransitionConfId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolIndicatorStatus', 'RecordEndDateTime', '11') +VALUES ('001524', 'CompetencyDefinition', 'PreviousVersionIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SchoolStatus', 'RecordEndDateTime', '11') +VALUES ('001525', 'CompetencyDefinition', 'CurrentVersionIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12Sea', 'RecordEndDateTime', '11') +VALUES ('001526', 'K12School', 'AccreditationAgencyName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SeaAlternateFundUse', 'RecordEndDateTime', '11') +VALUES ('001526', 'OrganizationAccreditation', 'AccreditationAgencyName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12SeaFederalFunds', 'RecordEndDateTime', '11') +VALUES ('001527', 'K12StudentActivity', 'ActivityTimeInvolved', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StaffEmployment', 'RecordEndDateTime', '11') +VALUES ('001528', 'K12StudentActivity', 'RefActivityTimeMeasurementTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentAcademicRecord', 'RecordEndDateTime', '11') +VALUES ('001529', 'ApipInteraction', 'APIPInteractionSequenceNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentActivity', 'RecordEndDateTime', '11') +VALUES ('001530', 'Activity', 'ActivityDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentCohort', 'RecordEndDateTime', '11') +VALUES ('001531', 'AssessmentAdministration', 'AssessmentAdministrationPeriodDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentCourseSection', 'RecordEndDateTime', '11') +VALUES ('001532', 'AssessmentForm', 'AssessmentFormAdaptiveIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentEmployment', 'RecordEndDateTime', '11') +VALUES ('001533', 'AssessmentForm', 'AssessmentFormAlgorithmIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentEnrollment', 'RecordEndDateTime', '11') +VALUES ('001534', 'AssessmentForm', 'AssessmentFormAlgorithmVersion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentGraduationPlan', 'RecordEndDateTime', '11') +VALUES ('001535', 'AssessmentForm', 'AssessmentFormGUID', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'K12StudentLiteracyAssessment', 'RecordEndDateTime', '11') +VALUES ('001536', 'AssessmentItem', 'AssessmentFormSectionItemFieldTestIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'LocationAddress', 'RecordEndDateTime', '11') +VALUES ('001537', 'AssessmentItemResponse', 'AssessmentItemResponseDescriptiveFeedbackDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationDetail', 'RecordEndDateTime', '11') +VALUES ('001538', 'AssessmentItemResponse', 'RefAssessmentItemResponseScoreStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationIdentifier', 'RecordEndDateTime', '11') +VALUES ('001539', 'AssessmentParticipantSession', 'AssessmentParticipantSessionDatabaseName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationImage', 'RecordEndDateTime', '11') +VALUES ('001540', 'AssessmentParticipantSession', 'AssessmentParticipantSessionGUID', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationOperationalStatus', 'RecordEndDateTime', '11') +VALUES ('001541', 'AssessmentRegistration', 'RefAssessmentRegistrationCompletionStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationProgramType', 'RecordEndDateTime', '11') +VALUES ('001542', 'AssessmentRegistration', 'AssessmentRegistrationCompletionStatusDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationRelationship', 'RecordEndDateTime', '11') +VALUES ('001543', 'AssessmentResult', 'RefAssessmentResultDataTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'OrganizationWebsite', 'RecordEndDateTime', '11') +VALUES ('001544', 'Assessment', 'AssessmentRevisionDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonBirthplace', 'RecordEndDateTime', '11') +VALUES ('001545', 'AssessmentResult', 'AssessmentResultDescriptiveFeedbackDateTime', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDemographicRace', 'RecordEndDateTime', '11') +VALUES ('001546', 'AssessmentResult', 'AssessmentResultScoreStandardError', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDetail', 'RecordEndDateTime', '11') +VALUES ('001547', 'AssessmentResult', 'RefAssessmentResultScoreTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonDisability', 'RecordEndDateTime', '11') +VALUES ('001548', 'K12School', 'CharterSchoolOpenEnrollmentIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonHealthBirth', 'RecordEndDateTime', '11') +VALUES ('001549', 'CteCourse', 'CourseDepartmentName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonHomelessness', 'RecordEndDateTime', '11') +VALUES ('001549', 'K12Course', 'CourseDepartmentName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonMilitary', 'RecordEndDateTime', '11') +VALUES ('001550', 'OrganizationCalendarCrisis', 'CrisisDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PersonProgramParticipation', 'RecordEndDateTime', '11') +VALUES ('001552', 'OrganizationCalendarCrisis', 'CrisisEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Program', 'RecordEndDateTime', '11') +VALUES ('001552', 'OrganizationCalendarCrisis', 'EndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationAE', 'RecordEndDateTime', '11') +VALUES ('001553', 'ELChildService', 'RefEarlyChildhoodServicesOfferedId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationCte', 'RecordEndDateTime', '11') +VALUES ('001554', 'FinancialAccount', 'AccountNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationFoodService', 'RecordEndDateTime', '11') +VALUES ('001554', 'FinancialAccount', 'FinancialAccountNumber', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationMigrant', 'RecordEndDateTime', '11') +VALUES ('001555', 'FinancialAccount', 'RefFinancialExpenditureLevelOfInstructionCodeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationNeglected', 'RecordEndDateTime', '11') +VALUES ('001556', 'FinancialAccount', 'FinancialExpenditureProjectReportingCode', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationSpecialEducation', 'RecordEndDateTime', '11') +VALUES ('001557', 'LearnerAction', 'LearnerActionActorIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationTeacherPrep', 'RecordEndDateTime', '11') +VALUES ('001558', 'LearnerAction', 'LearnerActionObjectDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationTitleI', 'RecordEndDateTime', '11') +VALUES ('001559', 'LearnerAction', 'LearnerActionObjectIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ProgramParticipationTitleIIILep', 'RecordEndDateTime', '11') +VALUES ('001560', 'LearnerAction', 'LearnerActionObjectType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsCourse', 'RecordEndDateTime', '11') +VALUES ('001561', 'LearningResource', 'RefLearningResourceAccessRightsUrlId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsInstitution', 'RecordEndDateTime', '11') +VALUES ('001562', 'LearningResource', 'RefLearningResourceAuthorTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsSection', 'RecordEndDateTime', '11') +VALUES ('001563', 'LearningResource', 'LearningResourceAuthorURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsSectionLocation', 'RecordEndDateTime', '11') +VALUES ('001564', 'LearningResource', 'LearningResourceDateModified', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStaffEmployment', 'RecordEndDateTime', '11') +VALUES ('001565', 'LearningResource', 'RefLearningResourceInteractionModeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentApplication', 'RecordEndDateTime', '11') +VALUES ('001566', 'LearningResource', 'LearningResourceAuthorEmail', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentCohort', 'RecordEndDateTime', '11') +VALUES ('001567', 'LearningResource', 'LearningResourcePublisherEmail', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentCourseSectionMark', 'RecordEndDateTime', '11') +VALUES ('001568', 'LearningResource', 'LearningResourcePublisherURL', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentDemographic', 'RecordEndDateTime', '11') +VALUES ('001569', 'CompetencyFramework', 'CompetencyFrameworkPublicationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentEmployment', 'RecordEndDateTime', '11') +VALUES ('001570', 'CompetencyDefinition', 'CompetencyDefSequence', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentFinancialAid', 'RecordEndDateTime', '11') +VALUES ('001573', 'K12StudentCourseSectionMark', 'StudentCourseSectionGradeNarrative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'PsStudentSection', 'RecordEndDateTime', '11') +VALUES ('001573', 'PsStudentCourseSectionMark', 'StudentCourseSectionGradeNarrative', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'WorkforceEmploymentQuarterlyData', 'RecordEndDateTime', '11') +VALUES ('001574', 'K12StudentGraduationPlan', 'CreditsRequired', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'WorkforceProgramParticipation', 'RecordEndDateTime', '11') +VALUES ('001574', 'Program', 'CreditsRequired', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ActivityRecognition', 'RecordEndDateTime', '11') +VALUES ('001575', 'K12StudentCourseSection', 'TuitionFunded', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'ApipInteraction', 'RecordEndDateTime', '11') +VALUES ('001575', 'PersonCareerEducationPlan', 'TuitionFunded', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Application', 'RecordEndDateTime', '11') +VALUES ('001576', 'PersonMilitary', 'RefMilitaryConnectedStudentIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Assessment', 'RecordEndDateTime', '11') +VALUES ('001577', 'PersonMilitary', 'RefActiveMilitaryStatusIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'Assessment_AssessmentAdministration', 'RecordEndDateTime', '11') +VALUES ('001578', 'PersonMilitary', 'RefMilitaryVeteranStatusIndicatorId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentAccommodation', 'RecordEndDateTime', '11') +VALUES ('001579', 'PsInstitution', 'RefAdmissionConsiderationLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentAdministration', 'RecordEndDateTime', '11') +VALUES ('001580', 'PsInstitution', 'RefAdmissionConsiderationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentAdministration_Organization', 'RecordEndDateTime', '11') +VALUES ('001581', 'ELStaffEmployment', 'StaffApprovalIndicator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentAsset', 'RecordEndDateTime', '11') +VALUES ('001582', 'ELOrganizationFunds', 'RefBillableBasisTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentELDevelopmentalDomain', 'RecordEndDateTime', '11') +VALUES ('001583', 'ProgramParticipationCte', 'CareerPathwaysProgramParticipationExitDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentForm', 'RecordEndDateTime', '11') +VALUES ('001584', 'ProgramParticipationCte', 'CareerPathwaysProgramParticipationStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentForm_AssessmentAsset', 'RecordEndDateTime', '11') +VALUES ('001587', 'PersonCredential', 'CredentialOrLicenseAwardEntity', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentForm_AssessmentFormSection', 'RecordEndDateTime', '11') +VALUES ('001588', 'PsStudentEnrollment', 'RefDevelopmentalEducationReferralStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentFormSection', 'RecordEndDateTime', '11') +VALUES ('001589', 'PsSection', 'RefDevelopmentalEducationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentFormSection_AssessmentAsset', 'RecordEndDateTime', '11') +VALUES ('001589', 'PsStudentEnrollment', 'RefDevelopmentalEducationTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentFormSection_AssessmentItem', 'RecordEndDateTime', '11') +VALUES ('001590', 'K12StudentEnrollment', 'RefDirectoryInformationBlockStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItem', 'RecordEndDateTime', '11') +VALUES ('001591', 'ELChildService', 'ECEAPEligibility', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemCharacteristic', 'RecordEndDateTime', '11') +VALUES ('001592', 'ELChildServicesApplication', 'ELEnrollmentApplicationVerificationDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemPossibleResponse', 'RecordEndDateTime', '11') +VALUES ('001593', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemResponse', 'RecordEndDateTime', '11') +VALUES ('001594', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentItemRubricCriterionResult', 'RecordEndDateTime', '11') +VALUES ('001595', 'ELChildServicesApplication', 'ELEnrollmentApplicationDocumentType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentLanguage', 'RecordEndDateTime', '11') +VALUES ('001597', 'ELChildServicesApplication', 'ELApplicationIdentifier', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentLevelsForWhichDesigned', 'RecordEndDateTime', '11') +VALUES ('001599', 'ELChildServicesApplication', 'ELApplicationRequiredDocument', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedApipContent', 'RecordEndDateTime', '11') +VALUES ('001600', 'ELChildServicesApplication', 'ELEnrollmentApplicationVerificationReasonType', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedApipControl', 'RecordEndDateTime', '11') +VALUES ('001602', 'ELStaffEmployment', 'RefELEducationStaffClassificationId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedApipDisplay', 'RecordEndDateTime', '11') +VALUES ('001603', 'ELOrganizationFunds', 'RefELLocalRevenueSourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedBraille', 'RecordEndDateTime', '11') +VALUES ('001604', 'ELChildService', 'RefELServiceTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentNeedScreenEnhancement', 'RecordEndDateTime', '11') +VALUES ('001605', 'ELOrganizationFunds', 'RefELStateRevenueSourceId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentParticipantSession', 'RecordEndDateTime', '11') +VALUES ('001606', 'ProfessionalDevelopmentSession', 'RefELTrainerCoreKnowledgeAreaId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentParticipantSession_Accommodation', 'RecordEndDateTime', '11') +VALUES ('001607', 'PersonDegreeOrCertificate', 'RefEducationVerificationMethodId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPerformanceLevel', 'RecordEndDateTime', '11') +VALUES ('001609', 'PsStudentFinancialAid', 'RefFinancialAidVeteransBenefitStatusId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedLanguageLearner', 'RecordEndDateTime', '11') +VALUES ('001610', 'PsStudentFinancialAid', 'RefFinancialAidVeteransBenefitTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedScreenReader', 'RecordEndDateTime', '11') +VALUES ('001611', 'FinancialAidApplication', 'FinancialAidYearDesignator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfile', 'RecordEndDateTime', '11') +VALUES ('001611', 'FinancialAidAward', 'FinancialAidYearDesignator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfileContent', 'RecordEndDateTime', '11') +VALUES ('001612', 'PersonFamily', 'IncludedInCountedFamilySize', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfileControl', 'RecordEndDateTime', '11') +VALUES ('001613', 'PsPriceOfAttendance', 'IPEDSCollectionYearDesignator', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfileDisplay', 'RecordEndDateTime', '11') +VALUES ('001614', 'ELServicePartner', 'MemorandumOfUnderstandingEndDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordEndDateTime', '11') +VALUES ('001615', 'ELServicePartner', 'MemorandumOfUnderstandingStartDate', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentRegistration', 'RecordEndDateTime', '11') +VALUES ('001616', 'PsProgram', 'RefPSProgramLevelId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentRegistration_Accommodation', 'RecordEndDateTime', '11') +VALUES ('001617', 'PsStudentEnrollment', 'RefPSExitOrWithdrawalTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentResult', 'RecordEndDateTime', '11') +VALUES ('001618', 'ELChildService', 'EligibilityPriorityPoints', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentResult_PerformanceLevel', 'RecordEndDateTime', '11') +VALUES ('001619', 'ProfessionalDevelopmentActivity', 'ProfessionalDevelopmentActivityStateApprovedStatus', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentResultRubricCriterionResult', 'RecordEndDateTime', '11') +VALUES ('001620', 'PersonCareerEducationPlan', 'ProfessionalDevelopmentPlanApprovedBySupervisor', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSession', 'RecordEndDateTime', '11') +VALUES ('001621', 'PersonCareerEducationPlan', 'ProfessionalDevelopmentPlanCompletion', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSessionStaffRole', 'RecordEndDateTime', '11') +VALUES ('001622', 'ELOrganizationFunds', 'RefReimbursementTypeId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtest', 'RecordEndDateTime', '11') +VALUES ('001623', 'ELChildHealth', 'RefScheduledWellChildScreeningId', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtest_AssessmentItem', 'RecordEndDateTime', '11') +VALUES ('001624', 'ELServicePartner', 'ServicePartnerDescription', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtest_CompetencyDefinition', 'RecordEndDateTime', '11') +VALUES ('001625', 'ELServicePartner', 'ServicePartnerName', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtestELDevelopmentalDomain', 'RecordEndDateTime', '11') +VALUES ('001627', 'ELChildServicesApplication', 'SitePreferenceRank', '12') INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) -VALUES ('001918', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordEndDateTime', '11') +VALUES ('001628', 'ProfessionalDevelopmentSession', 'TrainingAndTechnicalAssistanceLevel', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001629', 'PSStudentProgram', 'RefTransferOutIndicatorId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001630', 'PersonHealthBirth', 'RefTrimesterWhenPrenatalCareBeganId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001631', 'ELChildHealth', 'WellChildScreeningReceivedDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001632', 'ELStaffEmployment', 'RefELEmploymentSeparationReasonId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001633', 'EarlyChildhoodProgramTypeOffered', 'RefCommunityBasedTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001634', 'EarlyChildhoodProgramTypeOffered', 'InclusiveSettingIndicator', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001634', 'IndividualizedProgram', 'InclusiveSettingIndicator', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001634', 'ServicePlan', 'InclusiveSettingIndicator', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001635', 'ELChildService', 'ServiceDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001636', 'ELStaffEmployment', 'RefELServiceProfessionalStaffClassificationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001639', 'OrganizationFinancial', 'FiscalYear', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001640', 'PersonMilitary', 'RefMilitaryBranchId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001641', 'PsProgram', 'RefDQPCategoriesOfLearningId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001642', 'OrganizationFinancial', 'FiscalPeriodBeginDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001643', 'OrganizationFinancial', 'FiscalPeriodEndDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001644', 'OrganizationFinancial', 'EncumberedValue', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001645', 'FinancialAccountProgram', 'Name', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001646', 'FinancialAccountProgram', 'ProgramNumber', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001647', 'OrganizationFinancial', 'Value', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001648', 'OrganizationFinancial', 'Date', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001649', 'RoleAttendanceEvent', 'Date', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001650', 'K12School', 'K12CharterSchoolManagementOrganizationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001651', 'K12School', 'CharterSchoolContractIdNumber', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001652', 'K12School', 'CharterSchoolContractApprovalDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001653', 'K12School', 'CharterSchoolContractRenewalDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001654', 'K12StudentEnrollment', 'NSLPDirectCertificationIndicator', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001655', 'CourseSection', 'MaximumCapacity', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001656', 'ELChildIndividualizedProgram', 'RefIDEAPartCEligibilityCategoryId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001657', 'PersonDetail', 'RefTribalAffiliationId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001658', 'CredentialDefIdentifier', 'Identifier', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001659', 'IPEDSFinance', 'RefIPEDSFASBFunctionalExpenseId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001660', 'CredentialAward', 'RevokedDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001661', 'CredentialAward', 'RevokedReason', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001662', 'CredentialIssuer', 'RevocationListURL', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001663', 'OrganizationImage', 'URL', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001664', 'CredentialAward', 'CompletionDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001665', 'PsStudentAcademicAward', 'RequirementsURL', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001666', 'PsStudentAcademicAward', 'RefAcademicAwardPrerequisiteTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001667', 'Course', 'RepeatabilityMaximumNumber', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001668', 'PsStudentAcademicAward', 'RefPESCAwardLevelTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001669', 'CredentialAward', 'EvidenceURL', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001670', 'IPEDSFinance', 'RefIPEDSGASBFinancialPositionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001671', 'IPEDSFinance', 'RefIPEDSFASBFinancialPositionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001672', 'IPEDSFinance', 'RefIPEDSGASBRevenueId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001673', 'IPEDSFinance', 'RefIPEDSFASBRevenueId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001674', 'IPEDSFinance', 'RefIPEDSFASBRevenueRestrictionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001675', 'IPEDSFinance', 'RefIPEDSGASBFunctionalExpenseId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001676', 'IPEDSFinance', 'RefIPEDSNaturalExpenseId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001677', 'IPEDSFinance', 'RefIPEDSGASBScholarshipsandFellowshipsRevenueId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001678', 'IPEDSFinance', 'RefIPEDSFASBScholarshipsandFellowshipsRevenueId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001679', 'IPEDSFinance', 'RefIPEDSIntercollegiateAthleticsExpensesId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001680', 'IPEDSFinance', 'RefIPEDSFASBPellGrantTransactionsId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001681', 'IndividualizedProgramProgressReportPlan', 'RefIPSPProgressReportScheduleId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001682', 'IndividualizedProgram', 'TransferOfRightsStatement', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001683', 'IndividualizedProgram', 'ServicePlanEndDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001684', 'IndividualizedProgramMeeting', 'MeetingDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001685', 'IndividualizedProgramAccommodation', 'Description', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001686', 'IndividualizedProgramAccommodation', 'Applicability', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001687', 'IndividualizedProgramAssessment', 'IEPAlternativeAssessmentRationale', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001688', 'IndividualizedProgramAmendment', 'ReasonDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001689', 'IndividualizedProgramAmendment', 'Description', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001690', 'GoalPerformance', 'CurrentPerformanceDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001691', 'GoalMeasurementCriterion', 'AccuracyPercent', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001692', 'GoalMeasurementCriterion', 'AttemptsCount', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001693', 'GoalMeasurementCriterion', 'Metric', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001694', 'GoalMeasurementCriterion', 'SuccessCount', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001695', 'GoalMeasurement', 'Description', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001696', 'GoalMeasurement', 'Schedule', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001697', 'GoalMeasurement', 'RefGoalMeasurementTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001698', 'IndividualizedProgramGoal', 'RefIEPGoalTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001699', 'IndividualizedProgramProgressReport', 'ProgressReportDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001700', 'IndividualizedProgramProgressReport', 'ProgressDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001701', 'IndividualizedProgramProgressReport', 'RefIPSPProgressReportTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001701', 'IndividualizedProgramProgressReportPlan', 'RefIPSPProgressReportTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001702', 'GoalPerformance', 'RefGoalStatusTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001703', 'GoalPerformance', 'Status', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001704', 'ProgramParticipationSpecialEducation', 'IDEAPlacementRationale', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001705', 'IEPPresentLevel', 'AcademicDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001706', 'IEPPresentLevel', 'FunctionalDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001707', 'IEPPresentLevel', 'GeneralEducationDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001708', 'IEPPresentLevel', 'PreschoolDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001709', 'IEPPresentLevel', 'StudentStrengthsDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001710', 'IEPPresentLevel', 'ParentConcernDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001711', 'IEPPresentLevel', 'StudentConcernDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001712', 'ServicePlan', 'DeclinedServicesDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001713', 'ServiceFrequency', 'RefFrequencyUnitId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001714', 'ServiceFrequency', 'InstancesPerCycle', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001715', 'ServiceFrequency', 'FrequencyLength', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001716', 'ServiceFrequency', 'DurationInMinutes', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001717', 'ServicePlan', 'ExtendsOutsideSchoolYear', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001718', 'ServicePlan', 'SettingDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001719', 'IEPAuthorization', 'RefIEPAuthorizationDocumentTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001720', 'AuthorizationDocument', 'RefAuthorizerTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001721', 'AuthorizationDocument', 'AcceptanceIndicator', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001722', 'AuthorizationDocument', 'DecisionExplanation', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001723', 'IEPAuthorizationRejected', 'PortionDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001724', 'IEPAuthorizationRejected', 'PortionExplanation', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001725', 'AuthorizationDocument', 'AuthorizationDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001726', 'IndividualizedProgramEligibility', 'ConsentToEvaluateIndicator', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001727', 'IndividualizedProgramEligibility', 'ConsentToEvaluateDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001728', 'IndividualizedProgramEligibilityEvaluation', 'RefIEPEligibilityEvaluationTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001729', 'IDEAEligibilityEvaluationCategory', 'RefIDEAEligibilityEvaluationCategoryId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001730', 'EligibilityEvaluation', 'Description', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001731', 'EligibilityEvaluation', 'EvaluationDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001732', 'IndividualizedProgramEligibility', 'ParentObservations', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001733', 'PersonDisability', 'RefIDEADisabilityTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001734', 'CredentialAward', 'AdvancedStandingDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001735', 'CredentialAward', 'AdvancedStandingURL', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001736', 'CredentialDefinition', 'AlternateName', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001737', 'CredentialAward', 'ApproverName', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001738', 'CredentialDefCriteria', 'RefCredentialDefAssessMethodTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001739', 'CredentialDefIdentifier', 'RefCredentialIdentifierSystemId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001740', 'CredentialDefinition', 'RefCredentialDefStatusTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001741', 'CredentialDefCriteria', 'EstimatedDuration', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001742', 'CredentialDefinition', 'CredentialNAICSIndustryType', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001743', 'CredentialDefinition', 'JurisdictionRegion', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001744', 'CredentialDefinition', 'JurisdictionRegionException', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001745', 'CredentialDefinition', 'Keywords', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001746', 'CredentialDefCriteria', 'MaximumDuration', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001747', 'CredentialDefCriteria', 'MinimumAge', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001748', 'CredentialDefCriteria', 'MinimumDuration', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001749', 'CredentialDefinition', 'RefCredentialDefIntendedPurposeTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001750', 'OrganizationDetail', 'RegionGeoJSON', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001751', 'CredentialAward', 'RevokedIndicator', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001752', 'CredentialDefinition', 'ValidationMethodDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001753', 'CredentialDefinition', 'RefCredentialDefVerificationTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001754', 'CredentialDefinition', 'Version', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001755', 'CredentialDefAgent', 'RefCTDLOrganizationTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001755', 'CredentialIssuer', 'RefCTDLOrganizationTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001756', 'CredentialDefinition', 'RefONETSOCOccupationTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001757', 'CompetencyDefinition', 'TypeURL', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001761', 'AssessmentRegistration', 'StateFullAcademicYear', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001762', 'AssessmentRegistration', 'LEAFullAcademicYear', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001763', 'AssessmentRegistration', 'SchoolFullAcademicYear', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001764', 'Facility', 'BuildingArea', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001765', 'PersonDisability', 'SignificantCognitiveDisabilityIndicator', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001766', 'ELOrganization', 'RefVirtualSchoolStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001766', 'K12SchoolStatus', 'RefVirtualSchoolStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001767', 'ELOrganization', 'RefNationalSchoolLunchProgramStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001767', 'K12SchoolStatus', 'RefNationalSchoolLunchProgramStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001768', 'Facility', 'FacilityAcquisitionDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001769', 'FacilityDesignConstruction', 'FacilityAdditionYear', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001770', 'Facility', 'FacilityBuildingPermanency', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001771', 'FacilityDesignConstruction', 'FacilityConstructionYear', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001772', 'Facility', 'RefBuildingHistoricStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001773', 'FacilitySite', 'FacilitySiteArea', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001774', 'LocationAddress', 'FacilityBlockNumberArea', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001775', 'FacilityDesignConstruction', 'BuildingAdditionDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001776', 'FacilityDesignConstruction', 'BuildingAdditionCode', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001777', 'Facility', 'RefBuildingPrimaryUseTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001778', 'Facility', 'RefCampusStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001779', 'LocationAddress', 'FacilityCensusTract', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001780', 'FacilityDesignConstruction', 'FacilityConstructionDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001781', 'FacilityDesignConstruction', 'RefFacilityConstructionDateTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001782', 'FacilityDesignConstruction', 'RefFacilityConstructionMaterialTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001783', 'Facility', 'FacilityExpectedLife', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001784', 'FacilityFinance', 'FacilityReplacementValue', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001785', 'Facility', 'BuildingNumberOfStories', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001786', 'FacilitySite', 'FacilitySiteIdentifier', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001787', 'FacilityDesignConstruction', 'RefFacilitySiteImprovementLocationTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001788', 'Facility', 'BuildingYearBuilt', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001789', 'Facility', 'BuildingYearOfLastModernization', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001790', 'BuildingSystemCategory', 'RefBuildingAirDistributionSystemTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001791', 'BuildingSystemCategory', 'RefBuildingCommMgmtComponentSystemTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001792', 'FacilityCompliance', 'RefFacilityComplianceStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001793', 'BuildingSystemComponent', 'RefFacilitySystemOrComponentConditionId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001794', 'BuildingSystemCategory', 'RefBuildingCoolingGenerationSystemTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001795', 'BuildingSystemCategory', 'RefBuildingElectricalSystemTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001796', 'FacilityMandate', 'RefFacilityApplicableFederalMandateTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001797', 'FacilityMandate', 'RefFacilityFederalMandateInterestTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001798', 'BuildingSystemCategory', 'RefBuildingFireProtectionSystemTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001799', 'BuildingSystemCategory', 'RefBuildingHeatingGenerationSystemTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001800', 'BuildingSystemCategory', 'RefBuildingHVACSystemTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001801', 'BuildingSystemComponent', 'BuildingInstitutionalEquipmentDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001802', 'BuildingSystemCategory', 'RefBuildingMechanicalConveyingSystemTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001803', 'BuildingSystemCategory', 'RefBuildingPlumbingSystemTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001804', 'BuildingSystemCategory', 'RefBuildingSecuritySystemTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001805', 'FacilityMandate', 'RefFacilityStateOrLocalMandateInterestTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001806', 'FacilityMandate', 'FacilityStateOrLocalMandateName', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001807', 'BuildingSystemCategory', 'RefBuildingTechnologyWiringSystemTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001808', 'FacilityHazard', 'FacilityLocationOfHazardousMaterials', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001809', 'BuildingSystemCategory', 'RefBuildingMechanicalSystemTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001810', 'FacilityHazard', 'FacilityNearbyEnvHazardDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001811', 'BuildingSystemCategory', 'RefBuildingSystemTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001812', 'BuildingSystemCategory', 'RefBuildingVerticalTransportationSystemTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001813', 'BuildingSpace', 'RefBuildingAdministrativeSpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001814', 'BuildingSpace', 'RefBuildingArtSpecialtySpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001815', 'BuildingSpace', 'RefBuildingBasicClassroomDesignTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001816', 'FacilityDesign', 'RefBuildingDesignTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001817', 'BuildingSpace', 'RefBuildingCareerTechEducationSpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001818', 'BuildingSpace', 'RefBuildingCirculationSpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001819', 'FacilityDesign', 'RefBuildingEnvOrEnergyPerformanceRatingCatId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001820', 'BuildingSystemComponent', 'RefFacilityFurnishingsTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001821', 'BuildingSpace', 'RefBuildingFoodServiceSpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001822', 'BuildingSpace', 'RefBuildingIndoorAthleticOrPhysEdSpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001823', 'BuildingSpace', 'RefBuildingLibMediaCenterSpecialtySpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001824', 'BuildingSpace', 'RefBuildingOperationsOrMaintSpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001825', 'BuildingSpace', 'RefBuildingOutdoorAthleticOrPhysEdSpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001826', 'BuildingSpace', 'RefBuildingOutdoorOrNonathleticSpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001827', 'BuildingSpace', 'RefBuildingPerformingArtsSpecialtySpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001828', 'FacilitySchoolDesign', 'RefBuildingSchoolDesignTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001829', 'BuildingSpace', 'RefBuildingScienceSpecialtySpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001830', 'FacilitySite', 'RefFacilitySiteOutdoorAreaTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001831', 'BuildingSpace', 'RefBuildingSpaceDesignTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001832', 'BuildingSpace', 'RefBuildingSpecEdSpecialtySpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001833', 'BuildingSpace', 'RefBuildingStudentSupportSpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001834', 'FacilityDesign', 'BuildingArchitectName', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001835', 'FacilityDesign', 'BuildingArchitecturalFirmName', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001836', 'BuildingSpace', 'RefBuildingAssemblySpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001837', 'FacilityCompliance', 'FacilityComplianceDeterminationDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001838', 'FacilityCompliance', 'FacilityComplianceName', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001839', 'FacilityCompliance', 'FacilityComponentDeficiencyDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001840', 'BuildingSystemComponent', 'Identifier', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001841', 'FacilityCompliance', 'FacilityEstimatedCostToEliminateDeferredMaint', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001842', 'FacilityHazard', 'FacilityHazardousCondExpectedRemediationDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001843', 'BuildingSpace', 'RefBuildingFullServiceKitchenTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001844', 'FacilityHazard', 'HazardousMaterialOrConditionDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001845', 'FacilityHazard', 'HazardousMaterialOrConditionTestingDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001846', 'FacilityCompliance', 'FacilityInspectionScoreResultDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001847', 'FacilityCompliance', 'FacilityInspectionViolationDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001848', 'BuildingSystemComponent', 'InstallationDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001849', 'BuildingSystemComponent', 'LifecycleCost', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001850', 'FacilityDesignConstruction', 'BuildingSiteImprovementDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001851', 'BuildingSpaceUtilization', 'RefBuildingInstructionalSpaceFactorTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001852', 'FacilityJointUse', 'RefBuildingJointUseRationaleTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001853', 'FacilityJointUse', 'RefBuildingJointUseSchedulingTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001854', 'FacilityJointUse', 'RefBuildingJointUserTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001855', 'BuildingSpaceUtilization', 'RefBuildingCommunityUseSpaceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001856', 'FacilityUtilization', 'BuildingHoursOfPublicUsePerWeek', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001857', 'FacilityUtilization', 'BuildingNetAreaOfInstructionalSpace', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001858', 'FacilityUtilization', 'BuildingNumberOfTeachingStations', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001859', 'FacilityUtilization', 'BuildingPublicUsePolicyDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001860', 'FacilitySite', 'RefBuildingSiteUseRestrictionsTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001861', 'BuildingSpaceUtilization', 'BuildingSpaceUtilizationArea', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001862', 'K12StudentEnrollment', 'RefStudentEnrollmentAccessTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001863', 'BuildingSpaceUtilization', 'BuildingUnassignedSpaceIndicator', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001864', 'FacilityAudit', 'RefFacilityAuditTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001865', 'FacilityManagement', 'RefBuildingCharterSchoolRealtyAccessTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001866', 'FacilityManagement', 'RefBuildingCleaningStandardTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001867', 'FacilityManagement', 'RefFacilityComplianceAgencyTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001868', 'FacilityDesignConstruction', 'RefBuildingEnergyConservationMeasureTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001869', 'FacilityEnergy', 'BuildingEnergyServiceCompanyName', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001870', 'FacilityEnergy', 'RefBuildingEnergySourceTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001871', 'FacilityManagementPlan', 'RefFacilitiesMgmtEmergencyTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001872', 'FacilityManagement', 'RefFacilityCapitalProgramMgmtTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001873', 'FacilityManagement', 'RefFacilityOperationsMgmtTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001874', 'FacilityHazard', 'RefFacilityHazardousMaterialsOrCondTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001875', 'FacilityDesignConstruction', 'RefFacilityJointDevelopmentTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001876', 'FacilityCompliance', 'RefFacilityMaintStandardTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001877', 'FacilityHazard', 'RefFacilityNaturallyOccurringHazardTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001878', 'FacilityEnergy', 'RefFacilityUtilityProviderTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001879', 'FacilityEnergy', 'RefFacilityUtilityTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001880', 'FacilityDesign', 'BuildingDateOfCertificateOfOccupancy', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001881', 'FacilityAudit', 'FacilityAuditDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001882', 'FacilityManagementPlan', 'FacilitiesPlanDescription', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001883', 'FacilityManagementPlan', 'RefFacilitiesPlanTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001884', 'FacilityDesignConstruction', 'RefFacilityStandardTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001885', 'FacilityMandate', 'RefFacilitiesMandateAuthorityTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001886', 'FacilityMortgageFee', 'RefFacilityFinancingFeeTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001887', 'FacilityLease', 'FacilityLeaseAmount', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001888', 'FacilityLease', 'RefFacilityLeaseAmountCategoryId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001889', 'FacilityLease', 'RefFacilityLeaseTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001890', 'FacilityMortgage', 'FacilityMortgageInterestAmount', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001891', 'FacilityMortgage', 'RefFacilityMortgageInterestTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001892', 'FacilityMortgage', 'RefFacilityMortgageTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001893', 'FacilityFinance', 'IndebtednessAmountAllowed', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001894', 'FacilityFinance', 'InsuranceDeductible', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001895', 'FacilityFinance', 'PublicEducationMillRate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001896', 'FacilityMortgage', 'FacilityTotalAssessedValue', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001897', 'Facility', 'RefCampusTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001898', 'FacilityCompliance', 'ComponentOrFixtureCheckDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001899', 'BuildingSystemComponentService', 'ComponentOrFixtureServicedDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001900', 'BuildingSystemComponentService', 'ComponentOrFixtureScheduledServicedDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001901', 'BuildingSystemComponent', 'ComponentOrFixtureUsefulLife', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001902', 'BuildingSpaceUtilization', 'AvailableUtilizedInstructionalSpace', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001903', 'BuildingSpaceUtilization', 'BuildingCapacityFactorIndicator', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001904', 'FacilityUtilization', 'FacilityEnrollmentCapacity', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001905', 'OrganizationRelationship', 'RefOrganizationRelationshipId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001906', 'Facility', 'FacilityOwnershipIndicator', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001907', 'CompetencyFramework', 'CompetencyFrameworkSourceUrl', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001908', 'CompetencyDefinition', 'TypicalAgeRangeMinimum', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001909', 'CompetencyDefinition', 'TypicalAgeRangeMaximum', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001910', 'CredentialDefinition', 'CredentialDefDateEffective', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001911', 'CredentialOffered', 'CredentialOfferedStartDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001912', 'CredentialOffered', 'CredentialOfferedEndDate', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001913', 'CredentialDefinition', 'RefCTDLAudienceLevelTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001914', 'CredentialDefAgent', 'RefCredentialDefAgentRoleTypeId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001915', 'K12SchoolStatus', 'RefProgressAchievingEnglishLanguageProficiencyIndicatorStatusId', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001916', 'K12SchoolStatus', 'ProgressAcheivingEnglishLearnerProficiencyStateDefinedStatus', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'Activity', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ActivityRecognition', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AeCourse', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AeProvider', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AeStaff', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AeStudentAcademicRecord', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AeStudentEmployment', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'ApipInteraction', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'Application', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'Assessment', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'Assessment_AssessmentAdministration', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentAccommodation', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentAdministration', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentAdministration_Organization', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentAsset', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentELDevelopmentalDomain', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentForm', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentForm_AssessmentAsset', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentForm_AssessmentFormSection', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentFormSection', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentFormSection_AssessmentAsset', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentFormSection_AssessmentItem', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentItem', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentItemApip', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentItemApipDescription', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentItemCharacteristic', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentItemPossibleResponse', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentItemResponse', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentItemResponseTheory', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentItemRubricCriterionResult', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentLanguage', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentLevelsForWhichDesigned', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentNeedApipContent', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentNeedApipControl', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentNeedApipDisplay', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentNeedBraille', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentNeedScreenEnhancement', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentParticipantSession', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentParticipantSession_Accommodation', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentPerformanceLevel', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentPersonalNeedLanguageLearner', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentPersonalNeedScreenReader', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentPersonalNeedsProfile', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentPersonalNeedsProfileContent', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentPersonalNeedsProfileControl', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentPersonalNeedsProfileDisplay', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentPersonalNeedsProfileScreenEnhancement', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentRegistration', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentRegistration_Accommodation', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentResult', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentResult_PerformanceLevel', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentResultRubricCriterionResult', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentSession', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentSessionStaffRole', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentSubtest', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentSubtest_AssessmentItem', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentSubtest_CompetencyDefinition', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentSubtestELDevelopmentalDomain', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AssessmentSubtestLevelsForWhichDesigned', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'Authentication', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'Authorization', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'AuthorizationDocument', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'BuildingSpace', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'BuildingSpaceUtilization', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'BuildingSystemCategory', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'BuildingSystemComponent', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'BuildingSystemComponentService', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'Classroom', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CompetencyDefAssociation', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CompetencyDefEducationLevel', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CompetencyDefinition', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CompetencyDefinition_CompetencySet', 'RecordStartDateTime', '12') +INSERT INTO dbo.[_CEDStoNDSMapping]([GlobalID], [TableName], [ColumnName],[Version]) +VALUES ('001917', 'CompetencyFramework', 'RecordStartDateTime', '12') END --------------------------------------------- + + +---------------------------------------------------- ----Section 8 Update the Version ---------- --------------------------------------------- +---------------------------------------------------- PRINT N'Update IDSVersion table' GO @@ -98223,7 +88986,7 @@ BEGIN WHERE [CurrentVersion] = 1 INSERT INTO dbo.[IDSVersion]([CurrentVersion], [IDSVersionDate], [IDSVersionNumber]) - VALUES (1, GETDATE(), '11.0.0.0') + VALUES (1, GETDATE(), '12.0.0.0') END GO